diff --git a/NPLib/Core/NPInputParser.cxx b/NPLib/Core/NPInputParser.cxx
index 87f6f348ec3f1f17c2c879dd1338876969d3a3fa..afe07e3833cc9accedcf8cd901cd10409e77ecfc 100644
--- a/NPLib/Core/NPInputParser.cxx
+++ b/NPLib/Core/NPInputParser.cxx
@@ -221,7 +221,23 @@ TVector3 NPL::InputBlock::GetTVector3(std::string Token, std::string default_uni
   return TVector3(x, y, z);
 }
 ////////////////////////////////////////////////////////////////////////////////
-std::vector<std::string> NPL::InputBlock::GetVectorString(std::string Token) {
+std::vector<std::string> NPL::InputBlock::GetVectorList(std::string Token, std::string separator) {
+  auto line = GetValue(Token);
+  std::vector<std::string> val;
+  while (line.find("(") != std::string::npos) {
+    auto start = line.find_first_of("(");
+    auto stop = line.find_first_of(")");
+    auto b = line.begin();
+    auto v = line.substr(start, stop - start + 1);
+    v.replace(v.find("("), 1, "");
+    v.replace(v.find(")"), 1, "");
+    val.push_back(v);
+    line.erase(b + start, b + stop + 1);
+  }
+  return val;
+}
+////////////////////////////////////////////////////////////////////////////////
+std::vector<std::string> NPL::InputBlock::GetVectorString(std::string Token, std::string separator) {
   int verbose = 1; // NPOptionManager::getInstance()->GetVerboseLevel();
 
   std::stringstream iss(GetValue(Token));
@@ -397,6 +413,9 @@ void NPL::InputParser::TreatAliases() {
     name += alias[i]->GetMainValue();
     std::string action = alias[i]->GetString("Action");
     std::vector<std::string> value = alias[i]->GetVectorString("Value");
+    if (value[0].find("(") != std::string::npos)
+      value = alias[i]->GetVectorList("Value");
+
     if (action == "Replace" && value.size() != 1)
       NPL::SendErrorAndExit("NPL::InputParser", "Inplace alias can only take one value");
 
diff --git a/NPLib/Core/NPInputParser.h b/NPLib/Core/NPInputParser.h
index 788dd3ec763a624b90065ba95db48d959bb223e7..c60c3a9cb1999b854d1c250dda224bd5aebd5634 100644
--- a/NPLib/Core/NPInputParser.h
+++ b/NPLib/Core/NPInputParser.h
@@ -80,7 +80,8 @@ namespace NPL {
     TVector3 GetTVector3(std::string Token, std::string default_unit);
     std::vector<double> GetVectorDouble(std::string Token, std::string default_unit);
     std::vector<int> GetVectorInt(std::string Token);
-    std::vector<std::string> GetVectorString(std::string Token);
+    std::vector<std::string> GetVectorString(std::string Token, std::string separator = " ");
+    std::vector<std::string> GetVectorList(std::string Token, std::string separator = " ");
     std::vector<NPL::InputBlock*> GetSubBlock(std::string Token);
     std::vector<std::string> GetLines() { return m_Lines; };
 
diff --git a/NPLib/Detectors/EdinburghDSSD/CMakeLists.txt b/NPLib/Detectors/EdinburghDSSD/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..fb4477305e2438552f9fbe2a89fd11c6804d5cd9
--- /dev/null
+++ b/NPLib/Detectors/EdinburghDSSD/CMakeLists.txt
@@ -0,0 +1,5 @@
+add_custom_command(OUTPUT TEdinburghDSSDPhysicsDict.cxx COMMAND ../../scripts/build_dict.sh TEdinburghDSSDPhysics.h TEdinburghDSSDPhysicsDict.cxx TEdinburghDSSDPhysics.rootmap libNPEdinburghDSSD.dylib DEPENDS TEdinburghDSSDPhysics.h)
+add_custom_command(OUTPUT TEdinburghDSSDDataDict.cxx COMMAND ../../scripts/build_dict.sh TEdinburghDSSDData.h TEdinburghDSSDDataDict.cxx TEdinburghDSSDData.rootmap libNPEdinburghDSSD.dylib DEPENDS TEdinburghDSSDData.h)
+add_library(NPEdinburghDSSD SHARED TEdinburghDSSDSpectra.cxx TEdinburghDSSDData.cxx TEdinburghDSSDPhysics.cxx TEdinburghDSSDDataDict.cxx TEdinburghDSSDPhysicsDict.cxx )
+target_link_libraries(NPEdinburghDSSD ${ROOT_LIBRARIES} NPCore)
+install(FILES EdinburghDSSDMap.h TEdinburghDSSDSpectra.h TEdinburghDSSDData.h TEdinburghDSSDPhysics.h DESTINATION ${CMAKE_INCLUDE_OUTPUT_DIRECTORY})
diff --git a/NPLib/Detectors/EdinburghDSSD/EdinburghDSSDMap.h b/NPLib/Detectors/EdinburghDSSD/EdinburghDSSDMap.h
new file mode 100644
index 0000000000000000000000000000000000000000..6b18cef01d07e0ec395bf80a57863ccb5a5b57d3
--- /dev/null
+++ b/NPLib/Detectors/EdinburghDSSD/EdinburghDSSDMap.h
@@ -0,0 +1,39 @@
+#ifndef MUSETTMAP
+#define MUSETTMAP
+
+
+namespace EDIN_MAP{
+
+  const int MapX[128] ={
+    33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,
+    62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,
+    1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,
+    30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,
+    97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,
+    126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,
+    65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,
+    94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64
+    };
+     // Changed 64 and 67
+  //const int MapY[128] ={
+  //62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,
+  // 30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,
+  //  1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,
+  // 33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,
+  //126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,
+  // 94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,
+  // 65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,
+  // 97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127
+  //};
+  const int MapY[128] ={
+   30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,
+     1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,
+      62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,
+     33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,
+    94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,
+    65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,
+     126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,
+     97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127
+  };
+}
+#endif
diff --git a/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDData.cxx b/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDData.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..c3c34ab4bc4d7576159c7c143401d7aa3bb58cd6
--- /dev/null
+++ b/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDData.cxx
@@ -0,0 +1,103 @@
+/*****************************************************************************
+ * Copyright (C) 2009-2024   this file is part of the NPTool Project       *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
+
+/*****************************************************************************
+ * Original Author: Louis Heitz  contact address: louis.heitz@ijclab.in2p3.fr                        *
+ *                                                                           *
+ * Creation Date  : mars 2024                                           *
+ * Last update    :                                                          *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *  This class hold EdinburghDSSD Raw data                                    *
+ *                                                                           *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *                                                                           *
+ *****************************************************************************/
+#include "TEdinburghDSSDData.h"
+
+#include <iostream>
+#include <fstream>
+#include <sstream>
+#include <string>
+using namespace std;
+
+ClassImp(TEdinburghDSSDData)
+
+
+//////////////////////////////////////////////////////////////////////
+TEdinburghDSSDData::TEdinburghDSSDData() {
+}
+
+
+
+//////////////////////////////////////////////////////////////////////
+TEdinburghDSSDData::~TEdinburghDSSDData() {
+}
+
+
+
+//////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDData::Clear() {
+
+  fEdin_DSSDXE_DetectorNbr.clear();
+  fEdin_DSSDXE_StripNbr.clear();
+  fEdin_DSSDXE_Energy.clear();
+
+
+
+  fEdin_DSSDXT_DetectorNbr.clear();
+  fEdin_DSSDXT_StripNbr.clear();
+  fEdin_DSSDXT_Time.clear();
+
+
+  fEdin_DSSDX_TimeStamp.clear();
+  fEdin_DSSDX_IsInterstrip.clear();
+
+
+  fEdin_DSSDYE_DetectorNbr.clear();
+  fEdin_DSSDYE_StripNbr.clear();
+  fEdin_DSSDYE_Energy.clear();
+
+
+  fEdin_DSSDYT_DetectorNbr.clear();
+  fEdin_DSSDYT_StripNbr.clear();
+  fEdin_DSSDYT_Time.clear();
+
+  fEdin_DSSDY_TimeStamp.clear();
+  fEdin_DSSDY_IsInterstrip.clear();
+}
+
+
+
+//////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDData::Dump() const {
+  std::cout << "XXXXXXXXXXXXXXXXXXXXXXXX MUSETT Event XXXXXXXXXXXXXXXXX" << std::endl;
+
+  std::cout << "// First Layer " << std::endl;
+  // (X,E)
+  std::cout << " DSSDXE_Mult = " << fEdin_DSSDXE_DetectorNbr.size() << std::endl;
+  for (UShort_t i = 0; i < fEdin_DSSDXE_DetectorNbr.size(); i++)
+    std::cout << "  DetNbr: " << fEdin_DSSDXE_DetectorNbr[i] << " strip: " << fEdin_DSSDXE_StripNbr[i]
+         << " Energy: " << fEdin_DSSDXE_Energy[i] << std::endl;
+  // (X,T)
+  std::cout << " DSSDXT_Mult = " << fEdin_DSSDXT_DetectorNbr.size() << std::endl;
+  for (UShort_t i = 0; i < fEdin_DSSDXT_DetectorNbr.size(); i++)
+    std::cout << "  DetNbr: " << fEdin_DSSDXT_DetectorNbr[i] << " DSSD: " << fEdin_DSSDXT_StripNbr[i]
+         << " Time: " << fEdin_DSSDXT_Time[i] << std::endl;
+  // (Y,E)
+  std::cout << " DSSDYE_Mult = " << fEdin_DSSDYE_DetectorNbr.size() << std::endl;
+  for (UShort_t i = 0; i < fEdin_DSSDYE_DetectorNbr.size(); i++)
+    std::cout << "  DetNbr: " << fEdin_DSSDYE_DetectorNbr[i] << " DSSD: " << fEdin_DSSDYE_StripNbr[i]
+         << " Energy: " << fEdin_DSSDYE_Energy[i] << std::endl;
+  // (Y,T)
+  std::cout << " DSSDYT_Mult = " << fEdin_DSSDYT_DetectorNbr.size() << std::endl;
+  for (UShort_t i = 0; i < fEdin_DSSDYT_DetectorNbr.size(); i++)
+    std::cout << "  DetNbr: " << fEdin_DSSDYT_DetectorNbr[i] << " DSSD: " << fEdin_DSSDYT_StripNbr[i]
+         << " Time: " << fEdin_DSSDYT_Time[i] << std::endl;
+}
diff --git a/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDData.h b/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDData.h
new file mode 100644
index 0000000000000000000000000000000000000000..814133bad8966c03c2e26140e7d45ef958d75100
--- /dev/null
+++ b/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDData.h
@@ -0,0 +1,209 @@
+#ifndef __EdinburghDSSDDATA__
+#define __EdinburghDSSDDATA__
+/*****************************************************************************
+ * Copyright (C) 2009-2024   this file is part of the NPTool Project       *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
+
+/*****************************************************************************
+ * Original Author: Louis Heitz  contact address: louis.heitz@ijclab.in2p3.fr                        *
+ *                                                                           *
+ * Creation Date  : mars 2024                                           *
+ * Last update    :                                                          *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *  This class hold EdinburghDSSD Raw data                                    *
+ *                                                                           *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *                                                                           *
+ *****************************************************************************/
+
+// STL
+#include <vector>
+#include <map>
+using namespace std;
+
+// ROOT
+#include "TObject.h"
+
+class TEdinburghDSSDData : public TObject {
+  //////////////////////////////////////////////////////////////
+  // data members are hold into vectors in order
+  // to allow multiplicity treatment
+private:
+   // First Layer
+   // X strips
+   // Energy
+   std::vector<unsigned short>   fEdin_DSSDXE_DetectorNbr; // Ce qui apparait
+   std::vector<unsigned short>   fEdin_DSSDXE_StripNbr; // Dans l'arbre root
+   std::vector<double>           fEdin_DSSDXE_Energy;
+   // Time
+   std::vector<unsigned short>   fEdin_DSSDXT_DetectorNbr;
+   std::vector<unsigned short>   fEdin_DSSDXT_StripNbr;
+   std::vector<double>           fEdin_DSSDXT_Time;
+
+   std::vector<double>           fEdin_DSSDX_TimeStamp;
+   std::vector<bool>             fEdin_DSSDX_IsInterstrip;
+   // Y strips
+   // Energy
+   std::vector<unsigned short>   fEdin_DSSDYE_DetectorNbr;
+   std::vector<unsigned short>   fEdin_DSSDYE_StripNbr;
+   std::vector<double>           fEdin_DSSDYE_Energy;
+
+   // Time
+   std::vector<unsigned short>   fEdin_DSSDYT_DetectorNbr;
+   std::vector<unsigned short>   fEdin_DSSDYT_StripNbr;
+   std::vector<double>           fEdin_DSSDYT_Time;
+
+   std::vector<double>           fEdin_DSSDY_TimeStamp;
+   std::vector<bool>             fEdin_DSSDY_IsInterstrip;
+
+
+ private:
+    std::map<unsigned int, unsigned int> fEDIN_MapX;//!   // Pour éviter d'écrire dans l'abre ROOT
+    std::map<unsigned int, unsigned int> fEDIN_MapY;//!
+
+/////////////////////////////////
+  // Constructor and destructor
+  public:
+    TEdinburghDSSDData();
+    ~TEdinburghDSSDData();
+
+
+  //////////////////////////////////////////////////////////////
+  // Inherited from TObject and overriden to avoid warnings
+  public:
+    void Clear();
+    void Clear(const Option_t*) {};
+    void Dump() const;
+
+
+  //////////////////////////////////////////////////////////////
+  // Getters and Setters
+  // Prefer inline declaration to avoid unnecessary called of
+  // frequently used methods
+  // add //! to avoid ROOT creating dictionnary for the methods
+  // (X,E)
+      public:
+      inline void   SetDSSDXE(const bool Map, const unsigned short& DetNbr, const unsigned short& StripNbr, const double& Energy){
+      if(Map)
+        SetDSSDXE(DetNbr,fEDIN_MapX[StripNbr],Energy);
+      else
+        SetDSSDXE(DetNbr,StripNbr,Energy);
+      }
+      private:
+      inline void   SetDSSDXE(const unsigned short& DetNbr, const unsigned short& StripNbr, const double& Energy){
+        fEdin_DSSDXE_DetectorNbr.push_back(DetNbr);
+        fEdin_DSSDXE_StripNbr.push_back(StripNbr);
+        fEdin_DSSDXE_Energy.push_back(Energy);
+      }
+
+      // (X,T)
+      public:
+      inline void   SetDSSDXT(const bool Map, const unsigned short& DetNbr, const unsigned short& StripNbr, const double& Time){
+      if(Map)
+        SetDSSDXT(DetNbr,fEDIN_MapX[StripNbr],Time);
+      else
+        SetDSSDXT(DetNbr,StripNbr,Time);
+
+      }
+      private:
+      inline void   SetDSSDXT(const unsigned short& DetNbr, const unsigned short& StripNbr, const double& Time){
+        fEdin_DSSDXT_DetectorNbr.push_back(DetNbr);
+        fEdin_DSSDXT_StripNbr.push_back(StripNbr);
+        fEdin_DSSDXT_Time.push_back(Time);
+      }
+
+
+      //(X timestamp )
+      public :
+      inline void   SetDSSDX_Tstamp(const double &Tstamp){
+          fEdin_DSSDX_TimeStamp.push_back(Tstamp);
+        }
+      inline void   SetDSSDX_Interstrip(const bool &inter){
+              fEdin_DSSDX_IsInterstrip.push_back(inter);
+            }
+
+      // (Y,E)
+      public:
+      inline void   SetDSSDYE(const bool Map, const unsigned short& DetNbr, const unsigned short& StripNbr, const double& Energy){
+      if(Map)
+        SetDSSDYE(DetNbr,fEDIN_MapY[StripNbr],Energy);
+      else
+        SetDSSDYE(DetNbr,StripNbr,Energy);
+
+      }
+      private:
+      inline void   SetDSSDYE(const unsigned short& DetNbr, const unsigned short& StripNbr, const double& Energy){
+        fEdin_DSSDYE_DetectorNbr.push_back(DetNbr);
+        fEdin_DSSDYE_StripNbr.push_back(StripNbr);
+        fEdin_DSSDYE_Energy.push_back(Energy);
+      }
+
+      // (Y,T)
+      public:
+      inline void   SetDSSDYT(const bool Map, const unsigned short& DetNbr, const unsigned short& StripNbr, const double& Time){
+      if(Map)
+        SetDSSDYT(DetNbr,fEDIN_MapY[StripNbr],Time);
+      else
+        SetDSSDYT(DetNbr,StripNbr,Time);
+
+      }
+      private:
+      inline void   SetDSSDYT(const unsigned short& DetNbr, const unsigned short& StripNbr, const double& Time){
+        fEdin_DSSDYT_DetectorNbr.push_back(DetNbr);
+        fEdin_DSSDYT_StripNbr.push_back(StripNbr);
+        fEdin_DSSDYT_Time.push_back(Time);
+      }
+
+
+      //(Y timestamp )
+      public :
+      inline void   SetDSSDY_Tstamp(const double &Tstamp){
+          fEdin_DSSDY_TimeStamp.push_back(Tstamp);
+        }
+      inline void   SetDSSDY_Interstrip(const bool &inter){
+            fEdin_DSSDY_IsInterstrip.push_back(inter);
+          }
+
+
+      public:
+            /////////////////////           GETTERS           ////////////////////////
+            // DSSD
+            // (X,E)
+            inline unsigned short   GetDSSDXEMult()                      const {return fEdin_DSSDXE_DetectorNbr.size();}
+            inline unsigned short   GetDSSDXEDetectorNbr(const int& i)   const {return fEdin_DSSDXE_DetectorNbr[i];}
+            inline unsigned short   GetDSSDXEStripNbr(const int& i)      const {return fEdin_DSSDXE_StripNbr[i];}
+            inline double           GetDSSDXEEnergy(const int& i)        const {return fEdin_DSSDXE_Energy[i];}
+            // (X,T)
+            inline unsigned short   GetDSSDXTMult()                      const {return fEdin_DSSDXT_DetectorNbr.size();}
+            inline unsigned short   GetDSSDXTDetectorNbr(const int& i)   const {return fEdin_DSSDXT_DetectorNbr[i];}
+            inline unsigned short   GetDSSDXTStripNbr(const int& i)      const {return fEdin_DSSDXT_StripNbr[i];}
+            inline double           GetDSSDXTTime(const int& i)          const {return fEdin_DSSDXT_Time[i];}
+            // (X, Timestamp)
+            inline double           GetDSSDX_TStamp(const int& i)          const {return fEdin_DSSDX_TimeStamp[i];}
+            inline double           GetDSSDX_Interstrip(const int& i)      const {return fEdin_DSSDX_IsInterstrip[i];}
+            // (Y,E)
+            inline unsigned short   GetDSSDYEMult()                      const {return fEdin_DSSDYE_DetectorNbr.size();}
+            inline unsigned short   GetDSSDYEDetectorNbr(const int& i)   const {return fEdin_DSSDYE_DetectorNbr[i];}
+            inline unsigned short   GetDSSDYEStripNbr(const int& i)       const {return fEdin_DSSDYE_StripNbr[i];}
+            inline double           GetDSSDYEEnergy(const int& i)        const {return fEdin_DSSDYE_Energy[i];}
+            // (Y,T)
+            inline unsigned short   GetDSSDYTMult()                      const {return fEdin_DSSDYT_DetectorNbr.size();}
+            inline unsigned short   GetDSSDYTDetectorNbr(const int& i)   const {return fEdin_DSSDYT_DetectorNbr[i];}
+            inline unsigned short   GetDSSDYTStripNbr(const int& i)       const {return fEdin_DSSDYT_StripNbr[i];}
+            inline double           GetDSSDYTTime(const int& i)          const {return fEdin_DSSDYT_Time[i];}
+            // (Y, Timestamp)
+            inline double           GetDSSDY_TStamp(const int& i)          const {return fEdin_DSSDY_TimeStamp[i];}
+            inline double           GetDSSDY_Interstrip(const int& i)     const {return fEdin_DSSDY_IsInterstrip[i];}
+
+  //////////////////////////////////////////////////////////////
+  // Required for ROOT dictionnary
+  ClassDef(TEdinburghDSSDData,1)  // EdinburghDSSDData structure
+};
+
+#endif
diff --git a/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDPhysics.cxx b/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDPhysics.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..e528fcc05d279ee094782b05d1007ce009d791a1
--- /dev/null
+++ b/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDPhysics.cxx
@@ -0,0 +1,873 @@
+/*****************************************************************************
+ * Copyright (C) 2009-2024   this file is part of the NPTool Project       *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
+
+/*****************************************************************************
+ * Original Author: Louis Heitz  contact address: louis.heitz@ijclab.in2p3.fr                        *
+ *                                                                           *
+ * Creation Date  : mars 2024                                           *
+ * Last update    :                                                          *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *  This class hold EdinburghDSSD Treated  data                               *
+ *                                                                           *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *                                                                           *
+ *****************************************************************************/
+
+#include "TEdinburghDSSDPhysics.h"
+using namespace EDIN_LOCAL;
+//   STL
+#include <sstream>
+#include <iostream>
+#include <cmath>
+#include <stdlib.h>
+#include <limits>
+using namespace std;
+
+//   NPL
+#include "RootInput.h"
+#include "RootOutput.h"
+#include "NPDetectorFactory.h"
+#include "NPOptionManager.h"
+
+//   ROOT
+#include "TChain.h"
+
+ClassImp(TEdinburghDSSDPhysics)
+
+
+///////////////////////////////////////////////////////////////////////////
+TEdinburghDSSDPhysics::TEdinburghDSSDPhysics(){
+  EventMultiplicity                  = 0;
+  m_EventData                        = new TEdinburghDSSDData;
+  m_PreTreatedData                   = new TEdinburghDSSDData;
+  m_random                           = new TRandom3();
+  m_EventPhysics                     = this;
+  // m_Spectra                          = NULL;
+  m_NumberOfDetector                = 0;
+  m_MaximumStripMultiplicityAllowed  = 10;
+  m_StripEnergyMatching = 0.050;
+  // Raw Threshold
+  m_DSSD_X_E_RAW_Threshold = 8200;
+  m_DSSD_Y_E_RAW_Threshold = 8200;
+  m_SecondLayer_E_RAW_Threshold = 8200;
+  // Calibrated Threshold
+  m_DSSD_X_E_Threshold = 0;
+  m_DSSD_Y_E_Threshold = 0;
+  m_SecondLayer_E_Threshold  = 0;
+
+  m_Take_E_Y = false;
+  m_Take_T_Y = true;
+}
+
+
+///////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDPhysics::BuildSimplePhysicalEvent() { BuildPhysicalEvent(); }
+
+///////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDPhysics::PreTreat() {
+  ClearPreTreatedData();
+  static unsigned int DSSDX_EMult, DSSDY_EMult, SecondLayer_EMult;
+  static unsigned int DSSDX_TMult, DSSDY_TMult, SecondLayer_TMult;
+  DSSDX_EMult = m_EventData->GetDSSDXEMult();
+  DSSDY_EMult = m_EventData->GetDSSDYEMult();
+  DSSDX_TMult = m_EventData->GetDSSDXTMult();
+  DSSDY_TMult = m_EventData->GetDSSDYTMult();
+
+  //   X
+  //   E
+  for (unsigned int i = 0; i < DSSDX_EMult; ++i) {
+    if (m_EventData->GetDSSDXEEnergy(i) > m_DSSD_X_E_RAW_Threshold){
+        //&& IsValidChannel(0, m_EventData->GetDSSDXEDetectorNbr(i),
+          //m_EventData->GetDSSDXEStripNbr(i))) {
+      double EX = fDSSD_X_E(m_EventData, i);
+      if (EX > m_DSSD_X_E_Threshold)
+        m_PreTreatedData->SetDSSDXE(false,
+            m_EventData->GetDSSDXEDetectorNbr(i),
+            m_EventData->GetDSSDXEStripNbr(i), EX);
+    }
+  }
+
+  //   T
+  for (unsigned int i = 0; i < DSSDX_TMult; ++i) {
+    //if (IsValidChannel(0, m_EventData->GetDSSDXTDetectorNbr(i),
+    //      m_EventData->GetDSSDXTStripNbr(i)))
+      m_PreTreatedData->SetDSSDXT(false,
+          m_EventData->GetDSSDXTDetectorNbr(i),
+          m_EventData->GetDSSDXTStripNbr(i),
+          fDSSD_X_T(m_EventData, i));
+  }
+
+  //   Y
+  //   E
+  for (unsigned int i = 0; i < DSSDY_EMult; ++i) {
+    if (m_EventData->GetDSSDYEEnergy(i) < m_DSSD_Y_E_RAW_Threshold){
+        //&& IsValidChannel(1, m_EventData->GetDSSDYEDetectorNbr(i),
+          //m_EventData->GetDSSDYEStripNbr(i))) {
+      double EY = fDSSD_Y_E(m_EventData, i);
+      if (EY > m_DSSD_Y_E_Threshold)
+
+        m_PreTreatedData->SetDSSDYE(false,
+            m_EventData->GetDSSDYEDetectorNbr(i),
+            m_EventData->GetDSSDYEStripNbr(i), EY);
+    }
+  }
+
+  //   T
+  for (unsigned int i = 0; i < DSSDY_TMult; ++i) {
+    //if (IsValidChannel(1, m_EventData->GetDSSDYTDetectorNbr(i),
+    //      m_EventData->GetDSSDYTStripNbr(i)))
+      m_PreTreatedData->SetDSSDYT(false,
+          m_EventData->GetDSSDYTDetectorNbr(i),
+          m_EventData->GetDSSDYTStripNbr(i),
+          fDSSD_Y_T(m_EventData, i));
+  }
+
+  return;
+}
+
+///////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDPhysics::BuildPhysicalEvent() {
+  PreTreat();
+
+  bool check_SecondLayer  = false;
+  static unsigned int DSSDXEMult, DSSDYEMult, DSSDXTMult, DSSDYTMult,SecondLayerEMult,SecondLayerTMult;
+  DSSDXEMult = m_PreTreatedData->GetDSSDXEMult();
+  DSSDYEMult = m_PreTreatedData->GetDSSDYEMult();
+  DSSDXTMult = m_PreTreatedData->GetDSSDXTMult();
+  DSSDYTMult = m_PreTreatedData->GetDSSDYTMult();
+
+
+  if (1 /*CheckEvent() == 1*/) {
+    vector<TVector2> couple = Match_X_Y();
+    EventMultiplicity = couple.size();
+    for (unsigned int i = 0; i < couple.size(); ++i) {
+      check_SecondLayer  = false;
+
+      int N = m_PreTreatedData->GetDSSDXEDetectorNbr(couple[i].X());
+
+      int X = m_PreTreatedData->GetDSSDXEStripNbr(couple[i].X());
+      int Y = m_PreTreatedData->GetDSSDYEStripNbr(couple[i].Y());
+      double DSSD_X_E = m_PreTreatedData->GetDSSDXEEnergy(couple[i].X());
+      double DSSD_Y_E = m_PreTreatedData->GetDSSDYEEnergy(couple[i].Y());
+
+
+
+
+      //  Search for associate Time
+      double DSSD_X_T = -1000;
+      for (unsigned int t = 0; t < DSSDXTMult; ++t) {
+        if (m_PreTreatedData->GetDSSDXTStripNbr(couple[i].X())
+            == m_PreTreatedData->GetDSSDXTStripNbr(t)
+            && m_PreTreatedData->GetDSSDXTDetectorNbr(couple[i].X())
+            == m_PreTreatedData->GetDSSDXTDetectorNbr(t)) {
+          DSSD_X_T = m_PreTreatedData->GetDSSDXTTime(t);
+          break;
+        }
+      }
+
+      double DSSD_Y_T = -1000;
+      for (unsigned int t = 0; t < DSSDYTMult; ++t) {
+        if (m_PreTreatedData->GetDSSDYTStripNbr(couple[i].Y())
+            == m_PreTreatedData->GetDSSDYTStripNbr(t)
+            && m_PreTreatedData->GetDSSDYTDetectorNbr(couple[i].Y())
+            == m_PreTreatedData->GetDSSDYTDetectorNbr(t)) {
+          DSSD_Y_T = m_PreTreatedData->GetDSSDYTTime(t);
+          //cout << DSSD_Y_T << endl;
+          break;
+        }
+      }
+
+      DSSD_X.push_back(X);
+      DSSD_Y.push_back(Y);
+      DetectorNumber.push_back(N);
+
+
+      PosX.push_back(GetPositionOfInteraction(i).x());
+      PosY.push_back(GetPositionOfInteraction(i).y());
+      PosZ.push_back(GetPositionOfInteraction(i).z());
+
+      DSSD_E_X.push_back(DSSD_X_E);
+      DSSD_E_Y.push_back(DSSD_Y_E);
+      DSSD_T_X.push_back(DSSD_X_T);
+      DSSD_T_Y.push_back(DSSD_Y_T);
+
+
+
+      if (m_Take_E_Y){
+        DSSD_E.push_back(DSSD_Y_E);
+      }
+      else{
+        DSSD_E.push_back(DSSD_X_E);
+      }
+
+      if (m_Take_T_Y)
+        DSSD_T.push_back(DSSD_Y_T);
+      else{
+        DSSD_T.push_back(DSSD_X_T);
+      }
+
+    } // loop on couples
+
+  } // if (CheckEvent)
+
+  return;
+}
+
+
+///////////////////////////////////////////////////////////////////////////
+vector<TVector2> TEdinburghDSSDPhysics::Match_X_Y() {
+  vector<TVector2> ArrayOfGoodCouple;
+  static unsigned int m_DSSDXEMult,m_DSSDYEMult;
+  m_DSSDXEMult = m_PreTreatedData->GetDSSDXEMult();
+  m_DSSDYEMult = m_PreTreatedData->GetDSSDYEMult();
+
+  // Prevent code from treating very high multiplicity Event
+  // Those event are not physical anyway and that improve speed.
+  if (m_DSSDXEMult > m_MaximumStripMultiplicityAllowed
+      || m_DSSDYEMult > m_MaximumStripMultiplicityAllowed) {
+    return ArrayOfGoodCouple;
+  }
+
+  for (unsigned int i = 0; i < m_DSSDXEMult; i++) {
+    for (unsigned int j = 0; j < m_DSSDYEMult; j++) {
+
+      // Declaration of variable for clarity
+      double DSSDXDetNbr = m_PreTreatedData->GetDSSDXEDetectorNbr(i);
+      double DSSDYDetNbr = m_PreTreatedData->GetDSSDYEDetectorNbr(j);
+
+      //   if same detector check energy
+      if (DSSDXDetNbr == DSSDYDetNbr) {
+
+        // Declaration of variable for clarity
+        double DSSDXEnergy = m_PreTreatedData->GetDSSDXEEnergy(i);
+        double DSSDXNbr    = m_PreTreatedData->GetDSSDXEStripNbr(i);
+        double DSSDYEnergy = m_PreTreatedData->GetDSSDYEEnergy(j);
+        double DSSDYNbr    = m_PreTreatedData->GetDSSDYEStripNbr(j);
+
+
+        //   Look if energy match
+        if (abs((DSSDXEnergy - DSSDYEnergy) / 2.)
+            < m_StripEnergyMatching) {
+          // Gives a unique ID for every telescope and strip combination
+          int IDX = m_NumberOfDetector * DSSDXNbr + DSSDXDetNbr;
+          int IDY = m_NumberOfDetector * DSSDYNbr + DSSDYDetNbr;
+
+          m_HitDSSDX[IDX]++;
+          m_HitDSSDY[IDY]++;
+
+          ArrayOfGoodCouple.push_back(TVector2(i, j));
+        }
+      }
+    }
+  }
+  /*
+  // Prevent to treat event with ambiguous matching beetween X and Y
+  map<int, int>::iterator itX = m_HitDSSDX.begin();
+  for (; itX != m_HitDSSDX.end(); itX++) {
+    if (itX->second > 1) {
+      ArrayOfGoodCouple.clear();
+    }
+  }
+
+  map<int, int>::iterator itY = m_HitDSSDY.begin();
+  for (; itY != m_HitDSSDY.end(); itY++) {
+    if (itY->second > 1) {
+      ArrayOfGoodCouple.clear();
+    }
+  }
+  */
+
+  m_HitDSSDX.clear();
+  m_HitDSSDY.clear();
+
+  return ArrayOfGoodCouple;
+}
+///////////////////////////////////////////////////////////////////////////
+int TEdinburghDSSDPhysics::CheckEvent() {
+  // Check the size of the different elements
+  if (m_PreTreatedData->GetDSSDXEMult()
+      == m_PreTreatedData->GetDSSDYEMult())
+    return 1; // Regular Event
+
+  // INterstrip management is not coded, so waste of time to make this test
+  /*  else if(   m_PreTreatedData->GetMMStripXEMult() ==
+      m_PreTreatedData->GetMMStripYEMult()+1
+      || m_PreTreatedData->GetMMStripXEMult() ==
+      m_PreTreatedData->GetMMStripYEMult()-1  )
+      return 2 ; // Pseudo Event, potentially interstrip*/
+
+  else
+    return -1; // Rejected Event
+}
+///////////////////////////////////////////////////////////////////////////
+bool TEdinburghDSSDPhysics::IsValidChannel(const int& Type, const int& telescope, const int& channel) {
+
+  if (Type == 0 && channel >= StripLimit && channel <= 127 - StripLimit){
+    return *(m_XChannelStatus[telescope].begin() + channel);
+  }
+  else if (Type == 1&& channel >= StripLimit && channel <= 127 - StripLimit){
+    return *(m_YChannelStatus[telescope].begin() + channel);
+  }
+
+  else
+    return false;
+}
+
+
+///////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDPhysics::ReadAnalysisConfig() {
+
+  NPL::InputParser parser("./DataConfig/ConfigEDIN.dat",false);
+  vector<NPL::InputBlock*> blocks = parser.GetAllBlocksWithToken("ConfigEDIN");
+
+  cout << endl << "//// Read Edin analysis configuration" <<endl;
+
+  for (unsigned int i = 0; i < blocks.size(); i++) {
+    if(blocks[i]->HasToken("MAX_STRIP_MULTIPLICITY"))
+      m_MaximumStripMultiplicityAllowed = blocks[i]->GetInt("MAX_STRIP_MULTIPLICITY");
+
+    if(blocks[i]->HasToken("STRIP_ENERGY_MATCHING"))
+      m_StripEnergyMatching = blocks[i]->GetDouble("STRIP_ENERGY_MATCHING","MeV");
+
+    if(blocks[i]->HasToken("DISABLE_CHANNEL_X")){
+      vector<int> v = blocks[i]->GetVectorInt("DISABLE_CHANNEL_X");
+      *(m_XChannelStatus[v[0]].begin() + v[1] - 1) = false;
+    }
+
+    if(blocks[i]->HasToken("DISABLE_CHANNEL_Y")){
+      vector<int> v = blocks[i]->GetVectorInt("DISABLE_CHANNEL_Y");
+      *(m_YChannelStatus[v[0]].begin() + v[1] - 1) = false;
+    }
+
+    if(blocks[i]->HasToken("DISABLE_ALL")){
+      int telescope = blocks[i]->GetInt("DISABLE_ALL");
+      vector<bool> ChannelStatus;
+      ChannelStatus.resize(16, false);
+      m_XChannelStatus[telescope] = ChannelStatus;
+      m_YChannelStatus[telescope] = ChannelStatus;
+      ChannelStatus.resize(16, false);
+    }
+
+    if (blocks[i]->HasToken("TAKE_E_Y"))
+      m_Take_E_Y = blocks[i]->GetInt("TAKE_E_Y");
+
+    if (blocks[i]->HasToken("TAKE_T_Y"))
+      m_Take_T_Y = blocks[i]->GetInt("TAKE_T_Y");
+
+    if (blocks[i]->HasToken("TAKE_E_X"))
+      m_Take_E_Y = !(blocks[i]->GetInt("TAKE_E_X"));
+
+    if (blocks[i]->HasToken("TAKE_T_X"))
+      m_Take_T_Y = !(blocks[i]->GetInt("TAKE_T_X"));
+
+    if (blocks[i]->HasToken("DSSD_X_E_RAW_THRESHOLD"))
+      m_DSSD_X_E_RAW_Threshold = blocks[i]->GetInt("DSSD_X_E_RAW_THRESHOLD");
+
+    if (blocks[i]->HasToken("DSSD_Y_E_RAW_THRESHOLD"))
+      m_DSSD_Y_E_RAW_Threshold = blocks[i]->GetInt("DSSD_Y_E_RAW_THRESHOLD");
+
+    if (blocks[i]->HasToken("SECONDLAYER_E_RAW_THRESHOLD"))
+      m_SecondLayer_E_RAW_Threshold = blocks[i]->GetInt("SECONDLAYER_E_RAW_THRESHOLD");
+
+    if (blocks[i]->HasToken("DSSD_X_E_THRESHOLD"))
+      m_DSSD_X_E_Threshold = blocks[i]->GetDouble("DSSD_X_E_THRESHOLD","MeV");
+
+    if (blocks[i]->HasToken("DSSD_Y_E_THRESHOLD"))
+      m_DSSD_Y_E_Threshold = blocks[i]->GetDouble("DSSD_Y_E_THRESHOLD","MeV");
+
+  }
+}
+
+
+///////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDPhysics::Clear() {
+  EventMultiplicity = 0;
+  DetectorNumber.clear();
+
+  PosX.clear();
+  PosY.clear();
+  PosZ.clear();
+
+  // DSSD
+  DSSD_E.clear();
+  DSSD_E_X.clear();
+  DSSD_E_Y.clear();
+  DSSD_T.clear();
+  DSSD_T_X.clear();
+  DSSD_T_Y.clear();
+  DSSD_X.clear();
+  DSSD_Y.clear();
+
+
+}
+
+////   Innherited from VDetector Class   ////
+
+///////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDPhysics::ReadConfiguration(NPL::InputParser parser) {
+  vector<NPL::InputBlock*> blocks = parser.GetAllBlocksWithToken("EdinburghDSSD");
+  std::cout << "READING FILE" << std::endl;
+  if (NPOptionManager::getInstance()->GetVerboseLevel())
+    cout << "//// " << blocks.size() << " EDIN found " << endl;
+
+  // Cartesian Case
+  vector<string> cart = {"X1_Y1", "X1_Y16", "X16_Y1", "X16_Y16"};
+  // Spherical Case
+  vector<string> sphe = {"R", "THETA", "PHI", "BETA"};
+
+  for (unsigned int i = 0; i < blocks.size(); i++) {
+    if (blocks[i]->HasTokenList(cart)) {
+      if (NPOptionManager::getInstance()->GetVerboseLevel())
+        cout << endl << "////  Edin Detector " << i + 1 << endl;
+      TVector3 A = blocks[i]->GetTVector3("X1_Y1", "mm");
+      TVector3 B = blocks[i]->GetTVector3("X16_Y1", "mm");
+      TVector3 C = blocks[i]->GetTVector3("X1_Y16", "mm");
+      TVector3 D = blocks[i]->GetTVector3("X16_Y16", "mm");
+      AddDetector(A, B, C, D);
+    }
+
+    else if (blocks[i]->HasTokenList(sphe)) {
+      if (NPOptionManager::getInstance()->GetVerboseLevel())
+        cout << endl << "////  EDIN Detector " << i + 1 << endl;
+
+      double Theta = blocks[i]->GetDouble("THETA", "deg");
+      double Phi = blocks[i]->GetDouble("PHI", "deg");
+      double R = blocks[i]->GetDouble("R", "mm");
+      vector<double> beta = blocks[i]->GetVectorDouble("BETA", "deg");
+      cout << Theta << " " << Phi << endl;
+      AddDetector(Theta, Phi, R, beta[0], beta[1], beta[2]);
+    }
+
+    else {
+      cout << "ERROR: Missing token for EDIN blocks, check your "
+              "input "
+              "file"
+           << endl;
+      exit(1);
+    }
+  }
+
+  InitializeStandardParameter();
+  ReadAnalysisConfig();
+}
+//////////////////////////////////////////////////////////////////////////
+//void TEdinburghDSSDPhysics::InitSpectra() {
+//  m_Spectra = new TEdinburghDSSDSpectra(m_DetectorNumberIndex);
+//}
+
+///////////////////////////////////////////////////////////////////////////
+/*void TEdinburghDSSDPhysics::FillSpectra() {
+  m_Spectra->FillRawSpectra(m_EventData);
+  m_Spectra->FillPreTreatedSpectra(m_PreTreatedData);
+  m_Spectra->FillPhysicsSpectra(m_EventPhysics);
+}
+///////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDPhysics::CheckSpectra() { m_Spectra->CheckSpectra(); }
+///////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDPhysics::ClearSpectra() {
+  // To be done
+}
+
+///////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDPhysics::WriteSpectra() {
+  if (m_Spectra)
+    m_Spectra->WriteSpectra();
+}
+
+///////////////////////////////////////////////////////////////////////////
+map<string, TH1*> TEdinburghDSSDPhysics::GetSpectra() {
+  if(m_Spectra)
+    return m_Spectra->GetMapHisto();
+  else {
+    map<string, TH1*> empty;
+    return empty;
+  }
+}
+*/
+///////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDPhysics::AddParameterToCalibrationManager() {
+  CalibrationManager* Cal = CalibrationManager::getInstance();
+  // Good for simulation, close to typical values
+  vector<double> standardX    = {-63, 63. / 8192.};
+  vector<double> standardY    = {63, -63. / 8192.};
+  vector<double> standardSecondLayer  = {-63, 63. / 8192.};
+  vector<double> standardT    = {-1000, 1000. / 8192.};
+
+
+  for (int i = 0; i < m_NumberOfDetector; i++) {
+
+    for (int j = 0; j < 16; j++) {
+      Cal->AddParameter(
+          "EdinburghDSSD", "T" + NPL::itoa(i) + "_DSSD_X" + NPL::itoa(j ) + "_E",
+          "EdinburghDSSD_T" + NPL::itoa(i) + "_DSSD_X" + NPL::itoa(j ) + "_E",
+          standardX);
+      Cal->AddParameter(
+          "EdinburghDSSD", "T" + NPL::itoa(i) + "_DSSD_Y" + NPL::itoa(j ) + "_E",
+          "EdinburghDSSD_T" + NPL::itoa(i) + "_DSSD_Y" + NPL::itoa(j ) + "_E",
+          standardY);
+      Cal->AddParameter(
+          "EdinburghDSSD", "T" + NPL::itoa(i) + "_DSSD_X" + NPL::itoa(j ) + "_T",
+          "EdinburghDSSD_T" + NPL::itoa(i) + "_DSSD_X" + NPL::itoa(j ) + "_T",
+          standardT);
+      Cal->AddParameter(
+          "EdinburghDSSD", "T" + NPL::itoa(i) + "_DSSD_Y" + NPL::itoa(j ) + "_T",
+          "EdinburghDSSD_T" + NPL::itoa(i) + "_DSSD_Y" + NPL::itoa(j ) + "_T",
+          standardT);
+    }
+
+  }
+
+  return;
+}
+
+///////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDPhysics::InitializeRootInputRaw() {
+  TChain* inputChain = RootInput::getInstance()->GetChain();
+  inputChain->SetBranchStatus("EdinburghDSSD", true);
+  inputChain->SetBranchStatus("fMM_*", true);
+  inputChain->SetBranchAddress("EdinburghDSSD", &m_EventData);
+}
+
+///////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDPhysics::InitializeRootInputPhysics() {
+  TChain* inputChain = RootInput::getInstance()->GetChain();
+  inputChain->SetBranchStatus("EdinburghDSSD", true);
+  inputChain->SetBranchStatus("EventMultiplicity", true);
+  inputChain->SetBranchStatus("EventType", true);
+  inputChain->SetBranchStatus("DetectorNumber", true);
+  inputChain->SetBranchStatus("Si_E", true);
+  inputChain->SetBranchStatus("Si_T", true);
+  inputChain->SetBranchStatus("Si_X", true);
+  inputChain->SetBranchStatus("Si_Y", true);
+  inputChain->SetBranchStatus("Si_EX", true);
+  inputChain->SetBranchStatus("Si_TX", true);
+  inputChain->SetBranchStatus("Si_EY", true);
+  inputChain->SetBranchStatus("Si_TY", true);
+  inputChain->SetBranchStatus("DetectorNumber_X", true);
+  inputChain->SetBranchStatus("DetectorNumber_Y", true);
+  inputChain->SetBranchStatus("TotalEnergy", true);
+  inputChain->SetBranchAddress("EdinburghDSSD", &m_EventPhysics);
+}
+
+///////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDPhysics::InitializeRootOutput() {
+  TTree* outputTree = RootOutput::getInstance()->GetTree();
+  outputTree->Branch("EdinburghDSSD", "TEdinburghDSSDPhysics", &m_EventPhysics);
+}
+
+/////   Specific to EdinArray   ////
+void TEdinburghDSSDPhysics::AddDetector(TVector3 C_X1_Y1, TVector3 C_X16_Y1,
+    TVector3 C_X1_Y16, TVector3 C_X16_Y16) {
+  // To avoid warning
+  C_X16_Y16 *= 1;
+
+  m_NumberOfDetector++;
+
+  // Vector U parallel to BaseLarge
+  TVector3 U = C_X16_Y1 - C_X1_Y1;
+  U = U.Unit();
+
+  // Vector V parallel to height
+  TVector3 V = 0.5 * (C_X1_Y16 + C_X16_Y16 - C_X1_Y1 - C_X16_Y1);
+  V = V.Unit();
+
+  //   Position Vector of Strip Center
+  TVector3 StripCenter = TVector3(0, 0, 0);
+  //   Position Vector of X=1 Y=1 Strip
+  TVector3 Strip_1_1;
+
+  //   Geometry Parameter
+  double Base,Height;
+  Base          = 100.00; // mm
+  Height        = 100.00; // mm
+
+  //double Face          = 98; // mm
+  double NumberOfStrip = 16;
+  double StripPitchBase    = Base / NumberOfStrip; // mm
+  double StripPitchHeight  = Height / NumberOfStrip; // mm
+  //   Buffer object to fill Position Array
+  vector<double> lineX;
+  vector<double> lineY;
+  vector<double> lineZ;
+
+  vector<vector<double>> OneDetectorStripPositionX;
+  vector<vector<double>> OneDetectorStripPositionY;
+  vector<vector<double>> OneDetectorStripPositionZ;
+
+  //   Moving StripCenter to 1.1 corner:
+ // Strip_1_1 = C_X1_Y1 + U  * (StripPitchBase / 2.) + V * (StripPitchHeight / 2.);
+  // This calculation recenter the strip around the detector center.
+  // This account for cases where the provided corner coordinates
+  // does not match the detector size
+  TVector3 Center = 0.25*(C_X1_Y16 + C_X16_Y16 + C_X1_Y1 + C_X16_Y1);
+  Strip_1_1 = Center-(0.5*Base*U+0.5*Height*V) + U  * (StripPitchBase / 2.) + V * (StripPitchHeight / 2.);
+
+  for (int i = 0; i < 16; ++i) {
+    lineX.clear();
+    lineY.clear();
+    lineZ.clear();
+
+    for (int j = 0; j < 16; ++j) {
+      //StripCenter = Strip_1_1 + StripPitch * (i * U + j * V);
+      StripCenter = Strip_1_1 + i*U*StripPitchBase  + j*V*StripPitchHeight;
+      lineX.push_back(StripCenter.X());
+      lineY.push_back(StripCenter.Y());
+      lineZ.push_back(StripCenter.Z());
+    }
+
+    OneDetectorStripPositionX.push_back(lineX);
+    OneDetectorStripPositionY.push_back(lineY);
+    OneDetectorStripPositionZ.push_back(lineZ);
+  }
+  m_StripPositionX.push_back(OneDetectorStripPositionX);
+  m_StripPositionY.push_back(OneDetectorStripPositionY);
+  m_StripPositionZ.push_back(OneDetectorStripPositionZ);
+}
+
+void TEdinburghDSSDPhysics::InitializeStandardParameter() {
+  //   Enable all channel
+  vector<bool> ChannelStatus;
+  m_XChannelStatus.clear();
+  m_YChannelStatus.clear();
+
+  ChannelStatus.resize(16, true);
+  for (int i = 0; i < m_NumberOfDetector; ++i) {
+    m_XChannelStatus[i] = ChannelStatus;
+    m_YChannelStatus[i] = ChannelStatus;
+  }
+
+
+  m_MaximumStripMultiplicityAllowed = m_NumberOfDetector;
+
+  return;
+}
+
+////////////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDPhysics::AddDetector(double theta, double phi, double distance,
+    double beta_u, double beta_v, double beta_w) {
+
+  m_NumberOfDetector++;
+
+  double Pi = 3.141592654;
+
+  // convert from degree to radian:
+  theta = theta * Pi / 180.;
+  phi   = phi * Pi / 180.;
+
+  // Vector U on Detector Face (paralelle to Y Strip) (NB: remember that Y
+  // strip are allong X axis)
+  TVector3 U;
+  // Vector V on Detector Face (parallele to X Strip)
+  TVector3 V;
+  // Vector W normal to Detector Face (pointing CsI)
+  TVector3 W;
+  // Vector position of Detector Face center
+  TVector3 C;
+
+  C = TVector3(distance * sin(theta) * cos(phi),
+      distance * sin(theta) * sin(phi), distance * cos(theta));
+
+  TVector3 P
+    = TVector3(cos(theta) * cos(phi), cos(theta) * sin(phi), -sin(theta));
+
+  W = C.Unit();
+  U = W.Cross(P);
+  V = W.Cross(U);
+
+  U = U.Unit();
+  V = V.Unit();
+
+  U.Rotate(beta_u * Pi / 180., U);
+  V.Rotate(beta_u * Pi / 180., U);
+
+  U.Rotate(beta_v * Pi / 180., V);
+  V.Rotate(beta_v * Pi / 180., V);
+
+  U.Rotate(beta_w * Pi / 180., W);
+  V.Rotate(beta_w * Pi / 180., W);
+
+  double Face          = 98; // mm
+  double NumberOfStrip = 16;
+  double StripPitch    = Face / NumberOfStrip; // mm
+
+  vector<double> lineX;
+  vector<double> lineY;
+  vector<double> lineZ;
+
+  vector<vector<double>> OneDetectorStripPositionX;
+  vector<vector<double>> OneDetectorStripPositionY;
+  vector<vector<double>> OneDetectorStripPositionZ;
+
+  double X, Y, Z;
+
+  // Moving C to the 1.1 corner:
+  C.SetX(C.X() - (Face / 2 - StripPitch / 2) * (V.X() + U.X()));
+  C.SetY(C.Y() - (Face / 2 - StripPitch / 2) * (V.Y() + U.Y()));
+  C.SetZ(C.Z() - (Face / 2 - StripPitch / 2) * (V.Z() + U.Z()));
+
+  for (int i = 0; i < 16; ++i) {
+
+    lineX.clear();
+    lineY.clear();
+    lineZ.clear();
+
+    for (int j = 0; j < 16; ++j) {
+      X = C.X() + StripPitch * (U.X() * i + V.X() * j);
+      Y = C.Y() + StripPitch * (U.Y() * i + V.Y() * j);
+      Z = C.Z() + StripPitch * (U.Z() * i + V.Z() * j);
+
+      lineX.push_back(X);
+      lineY.push_back(Y);
+      lineZ.push_back(Z);
+    }
+
+    OneDetectorStripPositionX.push_back(lineX);
+    OneDetectorStripPositionY.push_back(lineY);
+    OneDetectorStripPositionZ.push_back(lineZ);
+  }
+  m_StripPositionX.push_back(OneDetectorStripPositionX);
+  m_StripPositionY.push_back(OneDetectorStripPositionY);
+  m_StripPositionZ.push_back(OneDetectorStripPositionZ);
+}
+
+///////////////////////////////////////////////////////////////////////////////
+TVector3 TEdinburghDSSDPhysics::GetPositionOfInteraction(const int i,bool random) {
+  TVector3 Position
+    = TVector3(GetStripPositionX(DetectorNumber[i], DSSD_X[i], DSSD_Y[i]),
+        GetStripPositionY(DetectorNumber[i], DSSD_X[i], DSSD_Y[i]),
+        GetStripPositionZ(DetectorNumber[i], DSSD_X[i], DSSD_Y[i]));
+
+  return Position;
+}
+
+///////////////////////////////////////////////////////////////////////////////
+/*double TEdinburghDSSDPhysics::GetRelativeAngle() {
+  TVector3 Position0= TVector3(PosX[0],PosY[0],PosZ[0]);
+  TVector3 Position1= TVector3(PosX[1],PosY[1],PosZ[1]);
+
+  //std::cout << Position0.Angle(Position1)/(TMath::Pi())*180 << std::endl;
+  //std::cout << DetectorNumber[0] << " " << DetectorNumber[0] << std::endl;
+  //std::cout << DetectorNumber[1] << " " << DetectorNumber[1] << std::endl;
+
+  //std::cout << PosX[0] << " " << PosY[0] << " " << PosZ[0] << std::endl;
+  //std::cout << PosX[1] << " " << PosY[1] << " " << PosZ[1] << std::endl;
+  //std::cout << std::endl;
+  return Position0.Angle(Position1)/(TMath::Pi())*180;
+}
+*/
+/*
+double TEdinburghDSSDPhysics::GetS(const unsigned int A, const unsigned int Q2A) {
+  double eta = DSSD_E[0]/DSSD_E[1];
+  if(eta > 1) eta = 1./eta;
+  double epsilon = 4./A;
+  return Q2A/(1.+epsilon+ (2.*epsilon*pow(eta,1./2.)*cos(RelativeAngle*TMath::Pi()/180.))/(eta + 1.));
+
+}
+*/
+///////////////////////////////////////////////////////////////////////////////
+TVector3 TEdinburghDSSDPhysics::GetDetectorNormal(const int i) {
+  TVector3 U = TVector3(GetStripPositionX(DetectorNumber[i], 16, 1),
+      GetStripPositionY(DetectorNumber[i], 16, 1),
+      GetStripPositionZ(DetectorNumber[i], 16, 1))
+
+    - TVector3(GetStripPositionX(DetectorNumber[i], 1, 1),
+        GetStripPositionY(DetectorNumber[i], 1, 1),
+        GetStripPositionZ(DetectorNumber[i], 1, 1));
+
+  TVector3 V = TVector3(GetStripPositionX(DetectorNumber[i], 16, 16),
+      GetStripPositionY(DetectorNumber[i], 16, 16),
+      GetStripPositionZ(DetectorNumber[i], 16, 16))
+
+    - TVector3(GetStripPositionX(DetectorNumber[i], 16, 1),
+        GetStripPositionY(DetectorNumber[i], 16, 1),
+        GetStripPositionZ(DetectorNumber[i], 16, 1));
+
+  TVector3 Normal = U.Cross(V);
+
+  return (Normal.Unit());
+}
+
+///////////////////////////////////////////////////////////////////////////////
+namespace EDIN_LOCAL {
+  //   DSSD
+  //   X
+  double fDSSD_X_E(const TEdinburghDSSDData* m_EventData, const int& i) {
+    static string name;
+    name = "EdinburghDSSD/T";
+    name += NPL::itoa(m_EventData->GetDSSDXEDetectorNbr(i));
+    name += "_DSSD_X";
+    name += NPL::itoa(m_EventData->GetDSSDXEStripNbr(i));
+    name += "_E";
+
+    //std::cout << " input =  " << m_EventData->GetDSSDXEEnergy(i);
+    //std::cout << ", ouptut = " << CalibrationManager::getInstance()->ApplyCalibration(
+      //  name, m_EventData->GetDSSDXEEnergy(i),0);
+    //std::cout << ", strip = " << m_EventData->GetDSSDXEStripNbr(i) << std::endl;
+    return CalibrationManager::getInstance()->ApplyCalibration(
+        name, m_EventData->GetDSSDXEEnergy(i),0);
+  }
+
+  double fDSSD_X_T(const TEdinburghDSSDData* m_EventData, const int& i) {
+    static string name;
+    name = "EdinburghDSSD/T";
+    name += NPL::itoa(m_EventData->GetDSSDXTDetectorNbr(i));
+    name += "_DSSD_X";
+    name += NPL::itoa(m_EventData->GetDSSDXTStripNbr(i));
+    name += "_T";
+    return CalibrationManager::getInstance()->ApplyCalibration(
+        name, m_EventData->GetDSSDXTTime(i),0);
+  }
+
+  //   Y
+  double fDSSD_Y_E(const TEdinburghDSSDData* m_EventData, const int& i) {
+    static string name;
+    name = "EdinburghDSSD/T";
+    name += NPL::itoa(m_EventData->GetDSSDYEDetectorNbr(i));
+    name += "_DSSD_Y";
+    name += NPL::itoa(m_EventData->GetDSSDYEStripNbr(i));
+    name += "_E";
+    return CalibrationManager::getInstance()->ApplyCalibration(
+        name, m_EventData->GetDSSDYEEnergy(i),0);
+  }
+
+  double fDSSD_Y_T(const TEdinburghDSSDData* m_EventData, const int& i) {
+    static string name;
+    name = "EdinburghDSSD/T";
+    name += NPL::itoa(m_EventData->GetDSSDYTDetectorNbr(i));
+    name += "_DSSD_Y";
+    name += NPL::itoa(m_EventData->GetDSSDYTStripNbr(i));
+    name += "_T";
+    return CalibrationManager::getInstance()->ApplyCalibration(
+        name, m_EventData->GetDSSDYTTime(i),0);
+  }
+}
+////////////////////////////////////////////////////////////////////////////////
+//            Construct Method to be pass to the DetectorFactory              //
+////////////////////////////////////////////////////////////////////////////////
+NPL::VDetector* TEdinburghDSSDPhysics::Construct() {
+  return (NPL::VDetector*) new TEdinburghDSSDPhysics();
+}
+
+
+
+////////////////////////////////////////////////////////////////////////////////
+//            Registering the construct method to the factory                 //
+////////////////////////////////////////////////////////////////////////////////
+extern "C"{
+class proxy_EdinburghDSSD{
+  public:
+    proxy_EdinburghDSSD(){
+      NPL::DetectorFactory::getInstance()->AddToken("EdinburghDSSD","EdinburghDSSD");
+      NPL::DetectorFactory::getInstance()->AddDetector("EdinburghDSSD",TEdinburghDSSDPhysics::Construct);
+    }
+};
+
+proxy_EdinburghDSSD p_EdinburghDSSD;
+}
diff --git a/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDPhysics.h b/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDPhysics.h
new file mode 100644
index 0000000000000000000000000000000000000000..a20da16adfdf63e07d227d3d6358663be71ea581
--- /dev/null
+++ b/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDPhysics.h
@@ -0,0 +1,294 @@
+#ifndef TEdinburghDSSDPHYSICS_H
+#define TEdinburghDSSDPHYSICS_H
+/*****************************************************************************
+ * Copyright (C) 2009-2024   this file is part of the NPTool Project       *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
+
+/*****************************************************************************
+ * Original Author: Louis Heitz  contact address: louis.heitz@ijclab.in2p3.fr                        *
+ *                                                                           *
+ * Creation Date  : mars 2024                                           *
+ * Last update    :                                                          *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *  This class hold EdinburghDSSD Treated data                                *
+ *                                                                           *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *                                                                           *
+ *****************************************************************************/
+
+// C++ headers
+#include <vector>
+#include <map>
+#include <string>
+using namespace std;
+
+// ROOT headers
+#include "TObject.h"
+#include "TH1.h"
+#include "TVector3.h"
+// NPTool headers
+#include "TEdinburghDSSDData.h"
+#include "TEdinburghDSSDSpectra.h"
+#include "NPCalibrationManager.h"
+#include "NPVDetector.h"
+#include "NPInputParser.h"
+#include "TRandom3.h"
+// forward declaration
+class TEdinburghDSSDSpectra;
+
+
+
+class TEdinburghDSSDPhysics : public TObject, public NPL::VDetector {
+  //////////////////////////////////////////////////////////////
+  // constructor and destructor
+  public:
+    TEdinburghDSSDPhysics();
+    ~TEdinburghDSSDPhysics() {};
+
+
+  //////////////////////////////////////////////////////////////
+  // Inherited from TObject and overriden to avoid warnings
+  public:
+    void Clear();
+    void Clear(const Option_t*) {};
+
+
+  //////////////////////////////////////////////////////////////
+  // data obtained after BuildPhysicalEvent() and stored in
+  // output ROOT file
+  public:
+    vector<TVector2> Match_X_Y();
+    int  CheckEvent();
+
+    TRandom3* m_random; //!
+
+  public:
+    //   Provide Physical Multiplicity
+    Int_t EventMultiplicity;
+
+  /// A usefull method to bundle all operation to add a detector
+  void AddDetector(TVector3 POS, string shape);
+  void AddDetector(double R, double Theta, double Phi, string shape);
+
+
+    // Detector
+    vector<int> DetectorNumber;
+     //   DSSD
+    vector<double> DSSD_E;
+    vector<double> DSSD_E_X;
+    vector<double> DSSD_E_Y;
+    vector<double> DSSD_T;
+    vector<double> DSSD_T_X;
+    vector<double> DSSD_T_Y;
+    vector<int>    DSSD_X;
+    vector<int>    DSSD_Y;
+
+
+
+    vector<double> PosX;
+    vector<double> PosY;
+    vector<double> PosZ;
+    vector<double> Theta;//!
+
+    public: //   Innherited from VDetector Class
+    //   Read stream at ConfigFile to pick-up parameters of detector
+    //   (Position,...) using Token
+    void ReadConfiguration(NPL::InputParser parser);
+
+    //   Add Parameter to the CalibrationManger
+    void AddParameterToCalibrationManager();
+
+    //   Activated associated Branches and link it to the private member
+    //   DetectorData address
+    //   In this method mother Branches (Detector) AND daughter leaf
+    //   (fDetector_parameter) have to be activated
+    void InitializeRootInputRaw();
+
+    //   Activated associated Branches and link it to the private member
+    //   DetectorPhysics address
+    //   In this method mother Branches (Detector) AND daughter leaf (parameter)
+    //   have to be activated
+    void InitializeRootInputPhysics();
+
+    //   Create associated branches and associated private member DetectorPhysics
+    //   address
+    void InitializeRootOutput();
+
+    //   This method is called at each event read from the Input Tree. Aime is to
+    //   build treat Raw dat in order to extract physical parameter.
+    void BuildPhysicalEvent();
+
+    //   Same as above, but only the simplest event and/or simple method are used
+    //   (low multiplicity, faster algorythm but less efficient ...).
+    //   This method aimed to be used for analysis performed during experiment,
+    //   when speed is requiered.
+    //   NB: This method can eventually be the same as BuildPhysicalEvent.
+    void BuildSimplePhysicalEvent();
+
+    // Same as above but for online analysis
+    void BuildOnlinePhysicalEvent() { BuildPhysicalEvent(); };
+
+    //   Those two method all to clear the Event Physics or Data
+    void ClearEventPhysics() { Clear(); }
+    void ClearEventData() { m_EventData->Clear(); }
+
+    // Method related to the TSpectra classes, aimed at providing a framework for
+    // online applications
+    // Instantiate the Spectra class and the histogramm throught it
+    // void InitSpectra();
+    // Fill the spectra hold by the spectra class
+    // void FillSpectra();
+    // Used for Online mainly, perform check on the histo and for example change
+    // their color if issues are found
+    // void CheckSpectra();
+    // Used for Online only, clear all the spectra hold by the Spectra class
+    // void ClearSpectra();
+
+    public: //   Specific to Edin Array
+    //   Clear The PreTeated object
+    void ClearPreTreatedData() { m_PreTreatedData->Clear(); }
+
+    //   Remove bad channel, calibrate the data and apply threshold
+    void PreTreat();
+
+    //   Return false if the channel is disabled by user
+    //   Frist argument is either 0 for X,1 Y,2 SecondLayer 3
+    bool IsValidChannel(const int& Type, const int& telescope,
+                        const int& channel);
+
+    //   Initialize the standard parameter for analysis
+    //   ie: all channel enable, maximum multiplicity for strip = number of
+    //   telescope
+    void InitializeStandardParameter();
+
+    //   Read the user configuration file; if no file found, load standard one
+    void ReadAnalysisConfig();
+
+    //   Add a Detector using Corner Coordinate information
+    void AddDetector(TVector3 C_X1_Y1, TVector3 C_X16_Y1, TVector3 C_X1_Y16,
+                      TVector3 C_X16_Y16);
+
+    //   Add a Detector using R Theta Phi of Si center information
+    void AddDetector(double theta, double phi, double distance, double beta_u,
+                      double beta_v, double beta_w);
+
+   //   Special Method for Annular S1
+    void AddDetector(TVector3 C_Center);
+
+    // Give and external TMustData object to TEdinburghDSSDPhysics. Needed for online
+    // analysis for example.
+    void SetRawDataPointer(void* rawDataPointer) {
+      m_EventData = (TEdinburghDSSDData*)rawDataPointer;
+    }
+    // Retrieve raw and pre-treated data
+    TEdinburghDSSDData* GetRawData() const { return m_EventData; }
+    TEdinburghDSSDData* GetPreTreatedData() const { return m_PreTreatedData; }
+
+
+    // Use to access the strip position
+    double GetStripPositionX(const int N, const int X, const int Y) {
+      // if (N==9)
+      // cout << N << " " << X << " " << Y << " " << m_DetectorNumberIndex[N] << " " << m_StripPositionX[ m_DetectorNumberIndex[N] - 1][X - 1][Y - 1] << endl;
+      return m_StripPositionX[N][X][Y];
+    };
+    double GetStripPositionY(const int N, const int X, const int Y) {
+      return m_StripPositionY[N][X][Y];
+    };
+    double GetStripPositionZ(const int N, const int X, const int Y) {
+      return m_StripPositionZ[N][X][Y];
+    };
+
+    double GetNumberOfDetector() const { return m_NumberOfDetector; };
+
+    // To be called after a build Physical Even
+    int GetEventMultiplicity() const { return EventMultiplicity; };
+
+
+    //double GetEnergyDeposit(const int i) const { return TotalEnergy[i]; };
+
+    TVector3 GetPositionOfInteraction(const int i,bool random=false) ;
+    TVector3 GetDetectorNormal(const int i) ;
+    double GetRelativeAngle();
+    double GetS(const unsigned int A, const unsigned int Q2A);
+
+    private: //   Parameter used in the analysis
+    // Shape of the detector Trapezoid or Square
+
+    // By default take EX and TY.
+    bool m_Take_E_Y; //!
+    bool m_Take_T_Y; //!
+
+    UShort_t StripLimit = 0; //!
+
+    //   Event over this value after pre-treatment are not treated / avoid long
+    //   treatment time on spurious event
+    unsigned int m_MaximumStripMultiplicityAllowed; //!
+    //   Give the allowance in percent of the difference in energy between X and Y
+    double m_StripEnergyMatching; //!
+
+    // Raw Threshold
+    int m_DSSD_X_E_RAW_Threshold; //!
+    int m_DSSD_Y_E_RAW_Threshold; //!
+    int m_SecondLayer_E_RAW_Threshold; //!
+
+    // Calibrated Threshold
+    double m_DSSD_X_E_Threshold; //!
+    double m_DSSD_Y_E_Threshold; //!
+    double m_SecondLayer_E_Threshold; //!
+
+    private: //   Root Input and Output tree classes
+    TEdinburghDSSDData*    m_EventData; //!
+    TEdinburghDSSDData*    m_PreTreatedData; //!
+    TEdinburghDSSDPhysics* m_EventPhysics; //!
+
+    private: //   Map of activated channel
+    map<int, vector<bool>> m_XChannelStatus; //!
+    map<int, vector<bool>> m_YChannelStatus; //!
+
+    private: // Spatial Position of Strip Calculated on bases of detector position
+    int m_NumberOfDetector; //!
+
+    vector<vector<vector<double>>> m_StripPositionX; //!
+    vector<vector<vector<double>>> m_StripPositionY; //!
+    vector<vector<vector<double>>> m_StripPositionZ; //!
+
+    private:
+    map<int, int>    m_HitDSSDX; //!
+    map<int, int>    m_HitDSSDY; //!
+
+    private: // Spectra Class
+    // TEdinburghDSSDSpectra* m_Spectra; //!
+
+    public:
+    // void WriteSpectra(); //!
+
+    public: // Spectra Getter
+    // map<string, TH1*> GetSpectra();
+
+    public: // Static constructor to be passed to the Detector Factory
+    static NPL::VDetector* Construct();
+
+    ClassDef(TEdinburghDSSDPhysics,1)  // EdinburghDSSDPhysics structure
+};
+
+namespace EDIN_LOCAL {
+  //   DSSD
+  //   X
+  double fDSSD_X_E(const TEdinburghDSSDData* Data, const int& i);
+  double fDSSD_X_T(const TEdinburghDSSDData* Data, const int& i);
+
+  //   Y
+  double fDSSD_Y_E(const TEdinburghDSSDData* Data, const int& i);
+  double fDSSD_Y_T(const TEdinburghDSSDData* Data, const int& i);
+
+  //  Second Layer
+  double fSecondLayer_E(const TEdinburghDSSDData* Data, const int& i);
+  double fSecondLayer_T(const TEdinburghDSSDData* Data, const int& i);
+}
+#endif
diff --git a/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDSpectra.cxx b/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDSpectra.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..ea96659c91124ff2c5c0b295a6eca964af3238f0
--- /dev/null
+++ b/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDSpectra.cxx
@@ -0,0 +1,348 @@
+/*****************************************************************************
+ * Copyright (C) 2009-2024   this file is part of the NPTool Project       *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
+
+/*****************************************************************************
+ * Original Author: Louis Heitz  contact address: louis.heitz@ijclab.in2p3.fr                        *
+ *                                                                           *
+ * Creation Date  : mars 2024                                           *
+ * Last update    :                                                          *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *  This class hold EdinburghDSSD Spectra                                     *
+ *                                                                           *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *                                                                           *
+ *****************************************************************************/
+
+// class header
+#include "TEdinburghDSSDSpectra.h"
+#include "NPOptionManager.h"
+#include "NPGlobalSystemOfUnits.h"
+#include "NPPhysicalConstants.h"
+#ifdef NP_SYSTEM_OF_UNITS_H
+using namespace NPUNITS;
+#endif
+
+// STL
+#include <stdexcept>
+#include <iostream>
+#include <cstdlib>
+#include <string>
+#include <map>
+
+using namespace std;
+
+// NPTool header
+#include "NPOptionManager.h"
+
+
+
+////////////////////////////////////////////////////////////////////////////////
+TEdinburghDSSDSpectra::TEdinburghDSSDSpectra(){
+  SetName("EdinburghDSSD");
+  fStripX=16;
+  fStripY=16;
+  fStripSecondLayer=16;
+}
+
+
+
+////////////////////////////////////////////////////////////////////////////////
+TEdinburghDSSDSpectra::TEdinburghDSSDSpectra(std::map<int,int> DetectorIndex) {
+  if(NPOptionManager::getInstance()->GetVerboseLevel()>0)
+  std::cout << "************************************************" << std::endl
+    << "TEdinburghDSSDSpectra : Initalising control spectra for "
+    << DetectorIndex.size() << " Detectors" << std::endl
+    << "************************************************" << std::endl ;
+
+  SetName("EdinburghDSSD");
+  for(std::map<int,int>::iterator it=DetectorIndex.begin() ; it!=DetectorIndex.end() ; it++){
+    fDetectorToIndex[it->second-1]=it->first;
+    }
+
+    fIndexToDetector=DetectorIndex;
+    fNumberOfDetector=fDetectorToIndex.size();
+    fStripX=16;
+    fStripY=16;
+    fStripSecondLayer=16;
+
+
+  InitRawSpectra();
+  InitPreTreatedSpectra();
+  InitPhysicsSpectra();
+}
+
+
+
+////////////////////////////////////////////////////////////////////////////////
+TEdinburghDSSDSpectra::~TEdinburghDSSDSpectra() {
+}
+
+
+
+////////////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDSpectra::InitRawSpectra() {
+
+  static string name;
+  for (unsigned int i = 0; i < fDetectorToIndex.size(); i++) { // loop on number of detectors
+    TString nbr = NPL::itoa(fDetectorToIndex[i]);
+
+    // STRX_E_RAW
+    name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_STRX_E_RAW";
+    // AddHisto2D(name, name, fStripX, 1, fStripX+1, 512, 8192, 16384,  "EDIN/RAW/STRXE");
+    AddHisto2D(name, name, fStripX, 1, fStripX+1, 10000, 7000, 17000,  "EDIN/RAW/STRXE");
+
+    // STRY_E_RAW
+    name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_STRY_E_RAW";
+    // AddHisto2D(name, name, fStripY, 1, fStripY+1, 512, 0, 8192, "EDIN/RAW/STRYE");
+    AddHisto2D(name, name, fStripY, 1, fStripY+1,10000, 0, 10000, "EDIN/RAW/STRYE");
+
+    // STRX_T_RAW
+    name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_STRX_T_RAW";
+    AddHisto2D(name, name, fStripX, 1, fStripX+1, 512, 0, 8192, "EDIN/RAW/STRXT");
+
+    // STRY_T_RAW
+    name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_STRY_T_RAW";
+    AddHisto2D(name, name, fStripY, 1, fStripY+1, 512, 0, 8192, "EDIN/RAW/STRYT");
+
+    // SDLR_E_RAW
+    name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_SDLR_E_RAW";
+    AddHisto2D(name, name, fStripSecondLayer, 1, fStripSecondLayer+1, 512, 0, 8192, "EDIN/RAW/SDLRE");
+
+    // SDLR_T_RAW
+    name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_SDLR_T_RAW";
+    AddHisto2D(name, name, fStripSecondLayer, 1, fStripSecondLayer+1, 512, 0, 8192, "EDIN/RAW/SDLRT");
+  }
+}
+
+
+
+////////////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDSpectra::InitPreTreatedSpectra() {
+
+    string name;
+    for (unsigned int i = 0; i < fNumberOfDetector; i++) { // loop on number of detectors
+      // STRX_E_CAL
+      name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_STRX_E_CAL";
+      AddHisto2D(name, name, fStripX, 1, fStripX+1, 10000, 0, 50, "EDIN/CAL/STRXE");
+
+      // STRY_E_CAL
+      name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_STRY_E_CAL";
+      AddHisto2D(name, name, fStripY, 1, fStripY+1, 10000, 0, 50, "EDIN/CAL/STRYE");
+
+      // STR X-Y Correlation
+      name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_STRXY_CORR_CAL";
+      AddHisto2D(name, name, 500, 0, 50, 500, 0, 50, "EDIN/CAL/STRXY");
+
+      // STRX_T_CAL
+      name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_STRX_T_CAL";
+      AddHisto2D(name, name, fStripX, 1, fStripX+1, 1000, 0, 1000, "EDIN/CAL/STRXT");
+
+      // STRY_T_CAL
+      name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_STRY_T_CAL";
+      AddHisto2D(name, name, fStripY, 1, fStripY+1, 1000, 0, 1000, "EDIN/CAL/STRYT");
+
+      // SDLR_E_CAL
+      name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_SDLR_E_CAL";
+      AddHisto2D(name, name, fStripSecondLayer, 1, fStripSecondLayer+1, 500, 0, 50, "EDIN/CAL/SDLRE");
+
+      // SDLR_T_CAL
+      name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_SDLR_T_CAL";
+      AddHisto2D(name, name, fStripSecondLayer, 1, fStripSecondLayer+1, 500, 0, 50, "EDIN/CAL/SDLRT");
+
+    }  // end loop on number of detectors
+
+}
+
+
+
+////////////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDSpectra::InitPhysicsSpectra() {
+
+  static string name;
+  // X-Y Impact Matrix
+  name = "MG_IMPACT_MATRIX";
+  AddHisto2D(name, name,500,-150,150,500,-150,150, "EDIN/PHY");
+
+  // X-Y Impact Matrix
+  name = "MG_THETA_E";
+  AddHisto2D(name, name,360,0,180,500,0,50,"EDIN/PHY");
+
+  // ID Plot
+  // E-TOF:
+  name = "MG_E_TOF";
+  AddHisto2D(name, name,500,0,50,500,200,1200,"EDIN/PHY");
+
+  // SDLRE-DE:
+  name = "MG_SDLRE_E";
+  AddHisto2D(name, name,500,0,200,500,0,50,"EDIN/PHY");
+
+  // Etot-DE:
+  name = "MG_Etot_E";
+  AddHisto2D(name, name,500,0,500,500,0,50,"EDIN/PHY");
+
+
+  // ID plot detector by detector
+  for (unsigned int i = 0; i < fNumberOfDetector; i++) { // loop on number of detectors
+    // E-TOF:
+    name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_E_TOF";
+    AddHisto2D(name, name,500,0,50,500,200,1200,"EDIN/PHY");
+
+    // SDLRE-DE:
+    name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_SDLRE_E";
+    AddHisto2D(name, name,500,0,200,500,0,50,"EDIN/PHY");
+
+    // Etot-DE:
+    name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_Etot_E";
+    AddHisto2D(name, name,500,0,500,500,0,50,"EDIN/PHY");
+  }
+
+}
+
+
+
+////////////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDSpectra::FillRawSpectra(TEdinburghDSSDData* RawData) {
+
+    static string name;
+    static string family;
+
+    // STRX_E
+    unsigned int size = RawData->GetDSSDXEMult();
+    for (unsigned int i = 0; i < size ; i++) {
+      name = "MG"+NPL::itoa( RawData->GetDSSDXEDetectorNbr(i))+"_STRX_E_RAW";
+      family = "EDIN/RAW/STRXE";
+
+      FillSpectra(family,name
+          ,RawData->GetDSSDXEStripNbr(i),
+          RawData->GetDSSDXEEnergy(i));
+    }
+
+    // STRY_E
+    size = RawData->GetDSSDYEMult();
+    for (unsigned int i = 0; i < size ; i++) {
+      name = "MG"+NPL::itoa( RawData->GetDSSDYEDetectorNbr(i) )+"_STRY_E_RAW";
+      family = "EDIN/RAW/STRYE";
+
+      FillSpectra(family,name
+          ,RawData->GetDSSDYEStripNbr(i),
+          RawData->GetDSSDYEEnergy(i));
+    }
+
+    // STRX_T
+    size = RawData->GetDSSDXTMult();
+    for (unsigned int i = 0; i < size; i++) {
+      name = "MG"+NPL::itoa(RawData->GetDSSDXTDetectorNbr(i))+"_STRX_T_RAW";
+      family = "EDIN/RAW/STRXT";
+
+      FillSpectra(family,name
+          ,RawData->GetDSSDXTStripNbr(i),
+          RawData->GetDSSDXTTime(i));
+    }
+
+    // STRY_T
+    size = RawData->GetDSSDYTMult();
+    for (unsigned int i = 0; i < size ; i++) {
+      name = "MG"+NPL::itoa( RawData->GetDSSDYTDetectorNbr(i))+"_STRY_T_RAW";
+      family = "EDIN/RAW/STRYT";
+
+      FillSpectra(family,name
+          ,RawData->GetDSSDYTStripNbr(i),
+          RawData->GetDSSDYTTime(i));
+    }
+
+}
+
+
+
+////////////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDSpectra::FillPreTreatedSpectra(TEdinburghDSSDData* PreTreatedData) {
+
+  static string name ;
+  static string family;
+  // STRX_E
+  unsigned int sizeX = PreTreatedData->GetDSSDXEMult();
+  for (unsigned int i = 0; i < sizeX ; i++) {
+    name = "MG"+NPL::itoa( PreTreatedData->GetDSSDXEDetectorNbr(i))+"_STRX_E_CAL";
+    family = "EDIN/CAL/STRXE";
+
+    FillSpectra(family,name
+        ,PreTreatedData->GetDSSDXEStripNbr(i),
+        PreTreatedData->GetDSSDXEEnergy(i));
+  }
+  // STRY_E
+  unsigned int sizeY = PreTreatedData->GetDSSDYEMult();
+  for (unsigned int i = 0; i < sizeY; i++) {
+    name = "MG"+NPL::itoa( PreTreatedData->GetDSSDYEDetectorNbr(i))+"_STRY_E_CAL";
+    family = "EDIN/CAL/STRYE";
+
+    FillSpectra(family,name
+        ,PreTreatedData->GetDSSDYEStripNbr(i),
+        PreTreatedData->GetDSSDYEEnergy(i));
+  }
+
+  // STR XY Correlation
+  for (unsigned int i = 0; i < sizeX; i++) {
+    for (unsigned int j = 0; j < sizeY; j++) {
+      if(PreTreatedData->GetDSSDXEDetectorNbr(i)==PreTreatedData->GetDSSDYEDetectorNbr(j))
+    name = "MG"+NPL::itoa( PreTreatedData->GetDSSDXEDetectorNbr(i) )+"_STRXY_CORR_CAL";
+    family = "EDIN/CAL/STRXY";
+    FillSpectra(family,name
+        ,PreTreatedData->GetDSSDXEEnergy(i),
+        PreTreatedData->GetDSSDYEEnergy(j));
+    }
+  }
+
+
+  // STRX_T
+  unsigned int size = PreTreatedData->GetDSSDXTMult();
+  for (unsigned int i = 0; i < size; i++) {
+    name = "MG"+NPL::itoa( PreTreatedData->GetDSSDXTDetectorNbr(i))+"_STRX_T_CAL";
+    family = "EDIN/CAL/STRXT";
+
+    FillSpectra(family,name
+        ,PreTreatedData->GetDSSDXTStripNbr(i),
+        PreTreatedData->GetDSSDXTTime(i));
+  }
+  // STRY_T
+  size = PreTreatedData->GetDSSDYTMult();
+  for (unsigned int i = 0; i < size; i++) {
+    name = "MG"+NPL::itoa( PreTreatedData->GetDSSDYTDetectorNbr(i))+"_STRY_T_CAL";
+    family = "EDIN/CAL/STRYT";
+
+    FillSpectra(family,name
+        ,PreTreatedData->GetDSSDYTStripNbr(i),
+        PreTreatedData->GetDSSDYTTime(i));
+  }
+}
+
+
+
+////////////////////////////////////////////////////////////////////////////////
+void TEdinburghDSSDSpectra::FillPhysicsSpectra(TEdinburghDSSDPhysics* Physics) {
+
+  static string name;
+  static string family= "EDIN/PHY";
+  // X-Y Impact Matrix
+
+  for(unsigned int i = 0 ; i < Physics->DSSD_E.size(); i++){
+    name = "MG_IMPACT_MATRIX";
+    double x = Physics->GetPositionOfInteraction(i).x();
+    double y = Physics->GetPositionOfInteraction(i).y();
+    FillSpectra(family,name,x,y);
+
+    name = "MG_THETA_E";
+    double Theta = Physics->GetPositionOfInteraction(i).Angle(TVector3(0,0,1));
+    Theta = Theta/deg;
+    FillSpectra(family,name,Theta,Physics->DSSD_E[i]);
+
+
+  }
+
+}
diff --git a/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDSpectra.h b/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDSpectra.h
new file mode 100644
index 0000000000000000000000000000000000000000..aad5cd5fa3b7f9c4148ddc5cfd0bce639880d8d2
--- /dev/null
+++ b/NPLib/Detectors/EdinburghDSSD/TEdinburghDSSDSpectra.h
@@ -0,0 +1,67 @@
+#ifndef TEdinburghDSSDSPECTRA_H
+#define TEdinburghDSSDSPECTRA_H
+/*****************************************************************************
+ * Copyright (C) 2009-2024   this file is part of the NPTool Project       *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
+
+/*****************************************************************************
+ * Original Author: Louis Heitz  contact address: louis.heitz@ijclab.in2p3.fr                        *
+ *                                                                           *
+ * Creation Date  : mars 2024                                           *
+ * Last update    :                                                          *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *  This class hold EdinburghDSSD Spectra                                     *
+ *                                                                           *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *                                                                           *
+ *****************************************************************************/
+
+// NPLib headers
+#include "NPVSpectra.h"
+#include "TEdinburghDSSDData.h"
+#include "TEdinburghDSSDPhysics.h"
+
+// Forward Declaration
+class TEdinburghDSSDPhysics;
+
+
+class TEdinburghDSSDSpectra : public VSpectra {
+  //////////////////////////////////////////////////////////////
+  // constructor and destructor
+  public:
+    TEdinburghDSSDSpectra();
+    TEdinburghDSSDSpectra(std::map<int,int> DetectorIndex);
+    ~TEdinburghDSSDSpectra();
+
+  //////////////////////////////////////////////////////////////
+  // Initialization methods
+  private:
+    void InitRawSpectra();
+    void InitPreTreatedSpectra();
+    void InitPhysicsSpectra();
+
+  //////////////////////////////////////////////////////////////
+  // Filling methods
+  public:
+    void FillRawSpectra(TEdinburghDSSDData*);
+    void FillPreTreatedSpectra(TEdinburghDSSDData*);
+    void FillPhysicsSpectra(TEdinburghDSSDPhysics*);
+
+  //////////////////////////////////////////////////////////////
+  // Detector parameters
+  private:
+    std::map<int,int> fDetectorToIndex;
+    std::map<int,int> fIndexToDetector;
+    unsigned int fNumberOfDetector;
+    unsigned int fStripX;
+    unsigned int fStripY;
+    unsigned int fStripSecondLayer;
+};
+
+#endif
diff --git a/NPLib/Detectors/EdinburghDSSD/ressources/Mask.cxx b/NPLib/Detectors/EdinburghDSSD/ressources/Mask.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..b0beafec3dbf00e4694a95c6b25a88a9ceef0771
--- /dev/null
+++ b/NPLib/Detectors/EdinburghDSSD/ressources/Mask.cxx
@@ -0,0 +1,62 @@
+void Mask(){
+
+  unsigned int strips = 16 ;
+  double dimension = 55.50;
+  double active = 49.50;
+  double pitch = active/strips;
+  double width = 3.0;
+
+//
+//  double dimension = 100;
+//  double active = 97;
+//  double pitch = 97/97;
+//  double width = 0.5;
+
+  // mm per pixel
+  double scale = active/12800;
+  //pitch in pixel
+  unsigned int spitch = pitch/scale;
+  unsigned int swidth  = width/scale;
+  unsigned int sinter = (pitch - width)/(scale);
+  cout << spitch << " " << swidth << " " << sinter << endl;
+  // image size
+  unsigned int size = dimension/scale;
+  cout << "Image size: " << size << "x" << size<< endl ;
+  double* zargb = new double[size*size];
+  TASImage* mask = new TASImage("mask",zargb,size,size,0);
+  unsigned int* argb = mask->GetArgbArray();
+  unsigned int* argb2 = mask->GetArgbArray();
+  unsigned int index = 0;
+  double border1 = 0.5*(dimension-active);
+  double border2 = (border1+strips*pitch); //(active)/scale+border1;
+  unsigned int sborder1=border1/scale;
+  unsigned int sborder2=border2/scale;
+
+  for(unsigned int px = 0 ; px < size ; px++){
+    for(unsigned int py = 0 ; py < size ; py++){
+      if(px%1000==0)
+        cout << "\r" << px << "/" << size << flush;
+      // Compute array index
+      index = px * size + py;
+      // Inactive sides
+      if(px < sborder1|| py < sborder1 || px > sborder2 || py > sborder2)
+        argb[index] = 0xffff0000;
+      else{ // strips
+        unsigned int coord = px-border1;
+        unsigned int nbr = coord/spitch;
+       // cout << coord << " " << nbr*spitch+sinter << " " << spitch << " " << sinter << " " << spitch << " " << sinter << endl;
+        if(coord<(nbr*spitch+sinter))
+        // interstrip
+          argb[index] = 0xffff0000+(((nbr-1))<<8)+nbr-2;
+        else if (nbr-1 < strips+1)
+          argb[index] = 0xff000000 + nbr-1;
+        else
+          argb[index] = 0xffff0000;
+      }
+    }
+  }
+  mask->WriteImage("mask.png");
+  delete[] zargb;
+  //mask->Draw();
+
+}
diff --git a/NPLib/Detectors/Exogam/TExogamData.h b/NPLib/Detectors/Exogam/TExogamData.h
index e29da96ce2d0a50799250b1f29ef8ba96f3d871a..3b22ef67a6814064367b6f867ae57d1ed6a32b67 100644
--- a/NPLib/Detectors/Exogam/TExogamData.h
+++ b/NPLib/Detectors/Exogam/TExogamData.h
@@ -39,23 +39,23 @@ class TExogamData : public TObject {
 
  public:
   std::vector<unsigned int> fExo_Crystal;
-  std::vector<unsigned int> fExo_E;
-  std::vector<unsigned int> fExo_E_HG; // High gain x20
+  std::vector<float> fExo_E;
+  std::vector<float> fExo_E_HG; // High gain x20
   std::vector<unsigned long long> fExo_TS;
-  std::vector<unsigned int> fExo_TDC;
+  std::vector<float> fExo_TDC;
   std::vector<unsigned int> fExo_BGO;
   std::vector<unsigned int> fExo_CsI;
-  std::vector<unsigned int> fExo_Outer1;
-  std::vector<unsigned int> fExo_Outer2;
-  std::vector<unsigned int> fExo_Outer3;
-  std::vector<unsigned int> fExo_Outer4;
+  std::vector<float> fExo_Outer1;
+  std::vector<float> fExo_Outer2;
+  std::vector<float> fExo_Outer3;
+  std::vector<float> fExo_Outer4;
 
 
   /////////////////////           SETTERS           ////////////////////////
-  inline void SetExo(const unsigned int& Crystal,const unsigned int& Energy,
-  const unsigned int& Energy_HG,const unsigned long long& TS,const unsigned int& TDC,
-  const unsigned int& BGO,const unsigned int& CsI,const unsigned int& Outer1,
-  const unsigned int& Outer2,const unsigned int& Outer3,const unsigned int& Outer4) { 
+  inline void SetExo(const unsigned int& Crystal,const float& Energy,
+  const float& Energy_HG,const unsigned long long& TS,const float& TDC,
+  const unsigned int& BGO,const unsigned int& CsI,const float& Outer1,
+  const float& Outer2,const float& Outer3,const float& Outer4) { 
   fExo_Crystal.push_back(Crystal);
   fExo_E.push_back(Energy);
   fExo_E_HG.push_back(Energy_HG);
@@ -71,16 +71,16 @@ class TExogamData : public TObject {
   /////////////////////           GETTERS           ////////////////////////
   inline unsigned int GetExoMult() { return fExo_Crystal.size(); }
   inline unsigned int GetExoCrystal(const unsigned int& i) const  { return fExo_Crystal[i]; }
-  inline unsigned int GetExoE(const unsigned int& i) const  { return fExo_E[i]; }
-  inline unsigned int GetExoEHG(const unsigned int& i) const  { return fExo_E_HG[i]; }
+  inline float GetExoE(const unsigned int& i) const  { return fExo_E[i]; }
+  inline float GetExoEHG(const unsigned int& i) const  { return fExo_E_HG[i]; }
   inline unsigned long long GetExoTS(const unsigned int& i) const  { return fExo_TS[i]; }
-  inline unsigned int GetExoTDC(const unsigned int& i) const  { return fExo_TDC[i]; }
+  inline float GetExoTDC(const unsigned int& i) const  { return fExo_TDC[i]; }
   inline unsigned int GetExoBGO(const unsigned int& i) const  { return fExo_BGO[i]; }
   inline unsigned int GetExoCsI(const unsigned int& i) const  { return fExo_CsI[i]; }
-  inline unsigned int GetExoOuter1(const unsigned int& i) const { return fExo_Outer1[i]; }
-  inline unsigned int GetExoOuter2(const unsigned int& i) const  { return fExo_Outer2[i]; }
-  inline unsigned int GetExoOuter3(const unsigned int& i) const  { return fExo_Outer3[i]; }
-  inline unsigned int GetExoOuter4(const unsigned int& i) const  { return fExo_Outer4[i]; }
+  inline float GetExoOuter1(const unsigned int& i) const { return fExo_Outer1[i]; }
+  inline float GetExoOuter2(const unsigned int& i) const  { return fExo_Outer2[i]; }
+  inline float GetExoOuter3(const unsigned int& i) const  { return fExo_Outer3[i]; }
+  inline float GetExoOuter4(const unsigned int& i) const  { return fExo_Outer4[i]; }
 
   ClassDef(TExogamData, 1) // ExogamData structure
 };
diff --git a/NPLib/Detectors/Exogam/TExogamPhysics.cxx b/NPLib/Detectors/Exogam/TExogamPhysics.cxx
index 85a94153dbc8ccb3daba7cfc7a86e703b178cbcd..b0a24af1f8ab6dac2383d896093aa0e436fa69b1 100644
--- a/NPLib/Detectors/Exogam/TExogamPhysics.cxx
+++ b/NPLib/Detectors/Exogam/TExogamPhysics.cxx
@@ -39,16 +39,16 @@ using namespace EXOGAM_LOCAL;
 
 ///////////////////////////////////////////////////////////////////////////
 ClassImp(TExogamPhysics)
-    ///////////////////////////////////////////////////////////////////////////
-    TExogamPhysics::TExogamPhysics() {
-  m_Spectra = NULL;
-  m_EXO_E_RAW_Threshold = 0;
-  m_EXO_E_Threshold = 0;
-  m_EXO_EHG_RAW_Threshold = 0;
-  m_EXO_TDC_RAW_Threshold = 0;
-  m_ExoTDC_HighThreshold = 0;
-  m_ExoTDC_LowThreshold = 0;
-  m_EXO_OuterUp_RAW_Threshold = 1e5;
+  ///////////////////////////////////////////////////////////////////////////
+  TExogamPhysics::TExogamPhysics() {
+    m_Spectra = NULL;
+    m_EXO_E_RAW_Threshold = 0;
+    m_EXO_E_Threshold = 0;
+    m_EXO_EHG_RAW_Threshold = 0;
+    m_EXO_TDC_RAW_Threshold = 0;
+    m_ExoTDC_HighThreshold = 1e6;
+    m_ExoTDC_LowThreshold = 0;
+    m_EXO_OuterUp_RAW_Threshold = 1e5;
 
   m_PreTreatedData = new TExogamData;
   m_EventData = new TExogamData;
@@ -58,6 +58,7 @@ ClassImp(TExogamPhysics)
 
 ///////////////////////////////////////////////////////////////////////////
 void TExogamPhysics::BuildSimplePhysicalEvent() { BuildPhysicalEvent(); }
+
 ///////////////////////////////////////////////////////////////////////////
 void TExogamPhysics::PreTreat() {
   // Clearing PreTreat TExogamData
@@ -126,6 +127,7 @@ void TExogamPhysics::PreTreat() {
     } 
   }
 }
+
 ///////////////////////////////////////////////////////////////////////////
 void TExogamPhysics::ResetPreTreatVariable(){
   EXO_E = -1000;
@@ -137,6 +139,7 @@ void TExogamPhysics::ResetPreTreatVariable(){
   EXO_Outer4 = -1000;
 }
 
+///////////////////////////////////////////////////////////////////////////
 void TExogamPhysics::BuildPhysicalEvent() {
   ClaimReaderData();
   
@@ -152,7 +155,6 @@ void TExogamPhysics::BuildPhysicalEvent() {
       // Doing flange and crystal matching
       flange_nbr = MapCrystalFlangeCLover[m_PreTreatedData->GetExoCrystal(i)].first;
       crystal_nbr = MapCrystalFlangeCLover[m_PreTreatedData->GetExoCrystal(i)].second;
-    
       E.push_back(m_PreTreatedData->GetExoE(i));
       EHG.push_back(m_PreTreatedData->GetExoEHG(i));
       Outer1.push_back(m_PreTreatedData->GetExoOuter1(i));
@@ -163,8 +165,7 @@ void TExogamPhysics::BuildPhysicalEvent() {
       TS.push_back(m_PreTreatedData->GetExoTS(i));
       Flange.push_back(flange_nbr);
       Crystal.push_back(crystal_nbr);
-    
-    
+
       HitsID[flange_nbr].push_back(i);
     }
   }
@@ -185,7 +186,7 @@ void TExogamPhysics::BuildPhysicalEvent() {
     // Doing it again for this loop, it's a bit unhappy but didnt find a better way to do it yet
     flange_nbr = (*it).first;
     crystal_nbr = MapCrystalFlangeCLover[m_PreTreatedData->GetExoCrystal(Id_Max)].second;
-    
+
     // Adding all AddBack (AB) related stuff
     E_AB.push_back(E_AddBack);
     Flange_AB.push_back(flange_nbr);
@@ -197,11 +198,23 @@ void TExogamPhysics::BuildPhysicalEvent() {
     Crystal_AB.push_back(crystal_nbr);
     int MaxOuterId = GetMaxOuter(Id_Max);
     Outer_AB.push_back(GetMaxOuter(Id_Max));
-    
+
     if(MaxOuterId > -1){
-      Exogam_struc = Ask_For_Angles(flange_nbr, ComputeMeanFreePath(E_AddBack),147,0.0); //147 default value of Emmanuel's code
-      double Theta_seg = Exogam_struc.Theta_Crystal_Seg[crystal_nbr][MaxOuterId];
-      double Phi_seg = Exogam_struc.Phi_Crystal_Seg[crystal_nbr][MaxOuterId];
+      double Theta_seg;
+      double Phi_seg;
+      if(m_flange.size()>0){
+        unsigned int index = MapFlangeToCloverNumber[flange_nbr];
+        if(index>0){
+          Theta_seg = m_pos_segment[crystal_nbr][MaxOuterId].at(index-1).Theta();
+          Phi_seg = m_pos_segment[crystal_nbr][MaxOuterId].at(index-1).Phi();
+        }
+      }
+      else{
+        Exogam_struc = Ask_For_Angles(flange_nbr, ComputeMeanFreePath(E_AddBack));
+        Theta_seg = Exogam_struc.Theta_Crystal_Seg[crystal_nbr][MaxOuterId];
+        Phi_seg = Exogam_struc.Phi_Crystal_Seg[crystal_nbr][MaxOuterId];
+      }
+
       Theta.push_back(Theta_seg);
       Phi.push_back(Phi_seg);
     }
@@ -218,10 +231,18 @@ void TExogamPhysics::ClaimReaderData() {
   }
 }
 
+void TExogamPhysics::ClaimReaderData() {
+  if (NPOptionManager::getInstance()->IsReader() == true) {
+    m_EventData = &(**r_ReaderEventData);
+  }
+}
+
+///////////////////////////////////////////////////////////////////////////
 bool TExogamPhysics::TDCMatch(unsigned int event){
   return m_PreTreatedData->GetExoTDC(event) > m_ExoTDC_LowThreshold && m_PreTreatedData->GetExoTDC(event) < m_ExoTDC_HighThreshold;
 }
 
+///////////////////////////////////////////////////////////////////////////
 int TExogamPhysics::GetMaxOuter(unsigned int EventId){
   // somehow starting at 50 to get something equivalent to a 50keV threshold
   double OuterMax = 50;
@@ -245,6 +266,7 @@ int TExogamPhysics::GetMaxOuter(unsigned int EventId){
   return OuterId;
 }
 
+///////////////////////////////////////////////////////////////////////////
 double TExogamPhysics::GetDoppler(double Energy, unsigned int Flange, unsigned int Crystal, unsigned int Outer){
   Exogam_struc = Ask_For_Angles(Flange, ComputeMeanFreePath(Energy),147.0,0.0); // same
   double Theta_seg = Exogam_struc.Theta_Crystal_Seg[Crystal][Outer];
@@ -252,6 +274,7 @@ double TExogamPhysics::GetDoppler(double Energy, unsigned int Flange, unsigned i
   return Doppler_Correction(Theta_seg,Phi_seg,0,0,Beta,Energy);
 }
 
+///////////////////////////////////////////////////////////////////////////
 double TExogamPhysics::ComputeMeanFreePath(double Energy){
   auto b = Map_PhotonCS.lower_bound(Energy);
   auto a = prev(b);
@@ -273,6 +296,7 @@ double TExogamPhysics::ComputeMeanFreePath(double Energy){
 
 // }
 
+///////////////////////////////////////////////////////////////////////////
 double TExogamPhysics::DopplerCorrection(double E, double Theta) {
   double Pi = 3.141592654;
   TString filename = "configs/beta.txt";
@@ -293,7 +317,21 @@ double TExogamPhysics::DopplerCorrection(double E, double Theta) {
 }
 
 ///////////////////////////////////////////////////////////////////////////
+// Routine of doppler correction
+///////////////////////////////////////////////////////////////////////////
+double TExogamPhysics::CorrectionDoppler(double theta_gamma, double phi_gamma, double theta_part, double phi_part, double beta_part, double E){  //rad, v/c
+  double Ecorr,cosinusPSI;
+
+  cosinusPSI =TMath::Sin(theta_part)*TMath::Cos(phi_part)*TMath::Sin(theta_gamma)*TMath::Cos(phi_gamma)+
+    TMath::Sin(theta_part)*TMath::Sin(phi_part)*TMath::Sin(theta_gamma)*TMath::Sin(phi_gamma)+
+    TMath::Cos(theta_part)*TMath::Cos(theta_gamma);
+
+  Ecorr = E*(1.-beta_part*cosinusPSI)/sqrt(1.-beta_part*beta_part);
 
+  return Ecorr;
+}
+
+///////////////////////////////////////////////////////////////////////////
 void TExogamPhysics::Clear() {
   // Exogam_struc = {};
 
@@ -318,37 +356,46 @@ void TExogamPhysics::Clear() {
   TDC_AB.clear();
   TS_AB.clear();
 }
-///////////////////////////////////////////////////////////////////////////
-
-////	Innherited from VDetector Class	////
 
+///////////////////////////////////////////////////////////////////////////
 //	Read stream at ConfigFile to pick-up parameters of detector (Position,...) using Token
+///////////////////////////////////////////////////////////////////////////
 void TExogamPhysics::ReadConfiguration(NPL::InputParser parser) {
   vector<NPL::InputBlock*> blocks = parser.GetAllBlocksWithToken("Exogam");
   if (NPOptionManager::getInstance()->GetVerboseLevel())
     cout << "//// " << blocks.size() << " Exogam clover found " << endl;
 
-  // FIXME ANGLE FILE??? NOT SURE I GET IT...
-  // For Doppler I guess... Something like that should be added later
-  // But maybe the more stand R,THETA,PHI or X,Y,Z 
-  // vector<string> token = {"ANGLE_FILE"};
-  vector<string> token = {"Board, Flange, Channel0, Channel1"};
-  // FIXME To be implemented in the future
-  // vector<string> token = {"Board, Flange, Channel0, Channel1, R, THETA, PHI"};
-
-  //for (unsigned int i = 0; i < blocks.size(); i++) {
-  //  if (blocks[i]->HasTokenList(token)) {
-  //    int Board, Flange, Channel0, Channel1; // FIXME!!!! Should come from Data...
-  //    AddClover(Board, Flange, Channel0, Channel1);
-  //  }
-  //  else {
-  //    cout << "ERROR: check your input file formatting " << endl;
-  //    exit(1);
-  //  }
-  //}
+  for(unsigned int i=0; i<blocks.size(); i++){
+    if(NPOptionManager::getInstance()->GetVerboseLevel())
+      cout << endl << "//// EXOGAM Clover " << i+1 << endl;
+
+    m_NumberOfClovers++;
+    int flange = blocks[i]->GetInt("FLANGE");
+    m_flange.push_back(flange);
+    m_pos_segment[0][0].push_back(blocks[i]->GetTVector3("POS_CRYSTALA_SEG1","mm"));
+    m_pos_segment[0][1].push_back(blocks[i]->GetTVector3("POS_CRYSTALA_SEG2","mm"));
+    m_pos_segment[0][2].push_back(blocks[i]->GetTVector3("POS_CRYSTALA_SEG3","mm"));
+    m_pos_segment[0][3].push_back(blocks[i]->GetTVector3("POS_CRYSTALA_SEG4","mm"));
+    m_pos_segment[1][0].push_back(blocks[i]->GetTVector3("POS_CRYSTALB_SEG1","mm"));
+    m_pos_segment[1][1].push_back(blocks[i]->GetTVector3("POS_CRYSTALB_SEG2","mm"));
+    m_pos_segment[1][2].push_back(blocks[i]->GetTVector3("POS_CRYSTALB_SEG3","mm"));
+    m_pos_segment[1][3].push_back(blocks[i]->GetTVector3("POS_CRYSTALB_SEG4","mm"));
+    m_pos_segment[2][0].push_back(blocks[i]->GetTVector3("POS_CRYSTALC_SEG1","mm"));
+    m_pos_segment[2][1].push_back(blocks[i]->GetTVector3("POS_CRYSTALC_SEG2","mm"));
+    m_pos_segment[2][2].push_back(blocks[i]->GetTVector3("POS_CRYSTALC_SEG3","mm"));
+    m_pos_segment[2][3].push_back(blocks[i]->GetTVector3("POS_CRYSTALC_SEG4","mm"));
+    m_pos_segment[3][0].push_back(blocks[i]->GetTVector3("POS_CRYSTALD_SEG1","mm"));
+    m_pos_segment[3][1].push_back(blocks[i]->GetTVector3("POS_CRYSTALD_SEG2","mm"));
+    m_pos_segment[3][2].push_back(blocks[i]->GetTVector3("POS_CRYSTALD_SEG3","mm"));
+    m_pos_segment[3][3].push_back(blocks[i]->GetTVector3("POS_CRYSTALD_SEG4","mm"));
+
+    MapFlangeToCloverNumber[flange] = m_NumberOfClovers; 
+  }
+
   ReadAnalysisConfig();
 }
 
+///////////////////////////////////////////////////////////////////////////
 void TExogamPhysics::ReadAnalysisConfig() {
   bool ReadingStatus = false;
 
@@ -359,10 +406,10 @@ void TExogamPhysics::ReadAnalysisConfig() {
 
   ifstream CSFile;
   CSFile.open(CSFilename.c_str());
-  
+
   if (!CSFile.is_open()) {
     cout << " No CS file found "
-         << CSFilename << endl;
+      << CSFilename << endl;
     return;
   }
   while(CSFile.good()){
@@ -383,12 +430,12 @@ void TExogamPhysics::ReadAnalysisConfig() {
 
   if (!AnalysisConfigFile.is_open()) {
     cout << " No ConfigExogam.dat found: Default parameters loaded for "
-            "Analysis "
-         << FileName << endl;
+      "Analysis "
+      << FileName << endl;
     return;
   }
-  
-  
+
+
   string DataBuffer, whatToDo;
   while (!AnalysisConfigFile.eof()) {
     // Pick-up next line
@@ -417,17 +464,17 @@ void TExogamPhysics::ReadAnalysisConfig() {
         unsigned int CrystalNb;
         unsigned int Flange;
         unsigned int CrystalNb2;
-        
+
         AnalysisConfigFile >> DataBuffer;
         CrystalNb = stoi(DataBuffer);
-        
+
         AnalysisConfigFile >> DataBuffer;
         Flange = stoi(DataBuffer);
-        
+
         AnalysisConfigFile >> DataBuffer;
         CrystalNb2 = stoi(DataBuffer);
         MapCrystalFlangeCLover[CrystalNb] = std::make_pair(Flange,CrystalNb2);
-        // cout << whatToDo << " " << atoi(DataBuffer.substr(0,1).c_str()) << " " << atoi(DataBuffer.substr(1,1).c_str()) << endl;
+        cout << whatToDo << " / " << "crystal= " << CrystalNb << " && flange= " << Flange << endl;
       }
       else if (whatToDo == "TDC_THRESHOLDS") {
         AnalysisConfigFile >> DataBuffer;
@@ -531,29 +578,34 @@ void TExogamPhysics::AddClover(int Board, int Flange, int Channel0, int Channel1
 //   NumberOfClover++;
 // }
 
+//////////////////////////////////////////////////////////////////////////
 //	Add Parameter to the CalibrationManger
+//////////////////////////////////////////////////////////////////////////
 void TExogamPhysics::AddParameterToCalibrationManager() {
 
   CalibrationManager* Cal = CalibrationManager::getInstance();
 
   for (auto it = MapCrystalFlangeCLover.begin(); it != MapCrystalFlangeCLover.end(); it++)
-   {  unsigned int i = it->first;
-      Cal->AddParameter("EXO", "E" + NPL::itoa(i),
-                        "EXO_E" + NPL::itoa(i));
-      Cal->AddParameter("EXO", "EHG" + NPL::itoa(i),
-                        "EXO_EHG" + NPL::itoa(i));
-      // Cal->AddParameter("EXOGAM", "Cl" + NPL::itoa(i) + "_Cr" + NPL::itoa(j) + "_T",
-                        // "EXOGAM_Cl" + NPL::itoa(i) + "_Cr" + NPL::itoa(j) + "_T");
+  {  unsigned int i = it->first;
+    Cal->AddParameter("EXO", "E" + NPL::itoa(i),
+        "EXO_E" + NPL::itoa(i));
+    Cal->AddParameter("EXO", "EHG" + NPL::itoa(i),
+        "EXO_EHG" + NPL::itoa(i));
+    // Cal->AddParameter("EXOGAM", "Cl" + NPL::itoa(i) + "_Cr" + NPL::itoa(j) + "_T",
+    // "EXOGAM_Cl" + NPL::itoa(i) + "_Cr" + NPL::itoa(j) + "_T");
 
     for (int j = 0; j < 4; j++) {
       Cal->AddParameter("EXO", "Outer" + NPL::itoa(i) + "_" + NPL::itoa(j),
-                        "EXO_Outer" + NPL::itoa(i) + "_" + NPL::itoa(j));
+          "EXO_Outer" + NPL::itoa(i) + "_" + NPL::itoa(j));
     }
   }
 }
 
+
+//////////////////////////////////////////////////////////////////////////
 //	Activated associated Branches and link it to the private member DetectorData address
 //	In this method mother Branches (Detector) AND daughter leaf (fDetector_parameter) have to be activated
+//////////////////////////////////////////////////////////////////////////
 void TExogamPhysics::InitializeRootInputRaw() {
   TChain* inputChain = RootInput::getInstance()->GetChain();
   // Option to use the nptreereader anaysis
@@ -563,18 +615,18 @@ void TExogamPhysics::InitializeRootInputRaw() {
   }
   // Option to use the standard npanalysis
   else{
-  TChain* inputChain = RootInput::getInstance()->GetChain();
-  inputChain->SetBranchStatus("Exogam", true);
-  inputChain->SetBranchStatus("fEXO_*", true);
-  inputChain->SetBranchAddress("Exogam", &m_EventData);
-
-  /*
-  TList* outputList = RootOutput::getInstance()->GetList();
-   clover_mult = new TH1F("clover_mult","clover_mult",20,0,20);
-    outputList->Add(clover_mult);
-  cristal_mult = new TH1F("cristal_mult","cristal_mult",20,0,20);
-  outputList->Add(cristal_mult);
-  */
+    TChain* inputChain = RootInput::getInstance()->GetChain();
+    inputChain->SetBranchStatus("Exogam", true);
+    inputChain->SetBranchStatus("fEXO_*", true);
+    inputChain->SetBranchAddress("Exogam", &m_EventData);
+
+    /*
+       TList* outputList = RootOutput::getInstance()->GetList();
+       clover_mult = new TH1F("clover_mult","clover_mult",20,0,20);
+       outputList->Add(clover_mult);
+       cristal_mult = new TH1F("cristal_mult","cristal_mult",20,0,20);
+       outputList->Add(cristal_mult);
+       */
   }
 }
 
@@ -602,53 +654,53 @@ void TExogamPhysics::InitializeRootInputPhysics() {
   }
   // Option to use the standard npanalysis
   else{
-  TChain* inputChain = RootInput::getInstance()->GetChain();
-  inputChain->SetBranchStatus("Exogam" , true );
-  inputChain->SetBranchStatus("EventMultiplicty", true);
-  inputChain->SetBranchStatus("ECC_Multiplicity", true);
-  inputChain->SetBranchStatus("GOCCE_Multiplicity", true);
-  inputChain->SetBranchStatus("ECC_CloverNumber", true);
-  inputChain->SetBranchStatus("ECC_CristalNumber", true);
-  inputChain->SetBranchStatus("GOCCE_CloverNumber", true);
-  inputChain->SetBranchStatus("GOCCE_CristalNumber", true);
-  inputChain->SetBranchStatus("GOCCE_SegmentNumber", true);
-  inputChain->SetBranchStatus("ECC_E", true);
-  inputChain->SetBranchStatus("ECC_T", true);
-  inputChain->SetBranchStatus("GOCCE_E", true);
-  inputChain->SetBranchStatus("CristalNumber", true);
-  inputChain->SetBranchStatus("SegmentNumber", true);
-  inputChain->SetBranchStatus("CloverNumber", true);
-  inputChain->SetBranchStatus("CloverMult", true);
-  inputChain->SetBranchStatus("TotalEnergy_lab", true);
-  inputChain->SetBranchStatus("Time", true);
-  inputChain->SetBranchStatus("DopplerCorrectedEnergy", true);
-  inputChain->SetBranchStatus("Position", true);
-  inputChain->SetBranchStatus("Theta", true);
-  inputChain->SetBranchAddress("Exogam", &m_EventPhysics);
+    TChain* inputChain = RootInput::getInstance()->GetChain();
+    inputChain->SetBranchStatus("Exogam" , true );
+    inputChain->SetBranchStatus("EventMultiplicty", true);
+    inputChain->SetBranchStatus("ECC_Multiplicity", true);
+    inputChain->SetBranchStatus("GOCCE_Multiplicity", true);
+    inputChain->SetBranchStatus("ECC_CloverNumber", true);
+    inputChain->SetBranchStatus("ECC_CristalNumber", true);
+    inputChain->SetBranchStatus("GOCCE_CloverNumber", true);
+    inputChain->SetBranchStatus("GOCCE_CristalNumber", true);
+    inputChain->SetBranchStatus("GOCCE_SegmentNumber", true);
+    inputChain->SetBranchStatus("ECC_E", true);
+    inputChain->SetBranchStatus("ECC_T", true);
+    inputChain->SetBranchStatus("GOCCE_E", true);
+    inputChain->SetBranchStatus("CristalNumber", true);
+    inputChain->SetBranchStatus("SegmentNumber", true);
+    inputChain->SetBranchStatus("CloverNumber", true);
+    inputChain->SetBranchStatus("CloverMult", true);
+    inputChain->SetBranchStatus("TotalEnergy_lab", true);
+    inputChain->SetBranchStatus("Time", true);
+    inputChain->SetBranchStatus("DopplerCorrectedEnergy", true);
+    inputChain->SetBranchStatus("Position", true);
+    inputChain->SetBranchStatus("Theta", true);
+    inputChain->SetBranchAddress("Exogam", &m_EventPhysics);
   }
 }
 
 /////////////////////////////////////////////////////////////////////
-
 //	Create associated branches and associated private member DetectorPhysics address
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::InitializeRootOutput() {
   TTree* outputTree = RootOutput::getInstance()->GetTree();
   outputTree->Branch("Exogam", "TExogamPhysics", &m_EventPhysics);
 
   // control histograms if needed
   /*
-  TList* outputList = RootOutput::getInstance()->GetList();
-  controle = new TH1F("controle","histo de controle",20,0,20);
-  outputList->Add(controle);
-  */
+     TList* outputList = RootOutput::getInstance()->GetList();
+     controle = new TH1F("controle","histo de controle",20,0,20);
+     outputList->Add(controle);
+     */
 }
 
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::SetTreeReader(TTreeReader* TreeReader) {
-   TExogamPhysicsReader::r_SetTreeReader(TreeReader);
- }
+  TExogamPhysicsReader::r_SetTreeReader(TreeReader);
+}
 
 /////////////////////////////// DoCalibration Part //////////////////////////:
-
 void TExogamPhysics::InitializeRootHistogramsCalib() {
   std::cout << "Initialize Exogam Histograms" << std::endl;
   map<int, bool>::iterator it;
@@ -677,13 +729,15 @@ void TExogamPhysics::InitializeRootHistogramsCalib() {
   }
 }
 
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::FillHistogramsCalib() {
   if (NPOptionManager::getInstance()->IsReader())
     m_EventData = &(**r_ReaderEventData);
-  
+
   FillRootHistogramsCalib_F();
 }
 
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::InitializeRootHistogramsE_F(unsigned int DetectorNumber) {
   auto TH1Map = RootHistogramsCalib::getInstance()->GetTH1Map();
 
@@ -692,6 +746,7 @@ void TExogamPhysics::InitializeRootHistogramsE_F(unsigned int DetectorNumber) {
   (*TH1Map)["Exogam"][hnameEXOE] = new TH1F(hnameEXOE, htitleEXOE, 65536, 0, 65536);
 }
 
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::InitializeRootHistogramsOuter_F(unsigned int DetectorNumber, unsigned int OuterNumber) {
   auto TH1Map = RootHistogramsCalib::getInstance()->GetTH1Map();
 
@@ -700,6 +755,7 @@ void TExogamPhysics::InitializeRootHistogramsOuter_F(unsigned int DetectorNumber
   (*TH1Map)["Exogam"][hnameEXOOuter] = new TH1F(hnameEXOOuter, htitleEXOOuter, 65536, 0, 65536);
 }
 
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::InitializeRootHistogramsEHG_F(unsigned int DetectorNumber) {
   auto TH1Map = RootHistogramsCalib::getInstance()->GetTH1Map();
 
@@ -708,10 +764,12 @@ void TExogamPhysics::InitializeRootHistogramsEHG_F(unsigned int DetectorNumber)
   (*TH1Map)["Exogam"][hnameEXOEHG] = new TH1F(hnameEXOEHG, htitleEXOEHG, 65536, 0, 65536);
 
 }
+
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::FillRootHistogramsCalib_F(){
   auto TH1Map = RootHistogramsCalib::getInstance()->GetTH1Map();
   TString hname;
-  
+
   for (UShort_t i = 0; i < m_EventData->GetExoMult(); i++) {
     unsigned int DetectorNbr = m_EventData->GetExoCrystal(i);
 
@@ -742,12 +800,13 @@ void TExogamPhysics::FillRootHistogramsCalib_F(){
   }
 }
 
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::DoCalibration() {
   std::cout << "Do Calibration Exogam" << std::endl;
   DefineCalibrationSource(Source_name);
   map<int, bool>::iterator it;
   map<int, map<int,bool>>::iterator it2;
-  
+
   std::string Path = NPOptionManager::getInstance()->GetCalibrationOutputPath();
   std::string OutputName = NPOptionManager::getInstance()->GetOutputFile();
   if (OutputName.size() > 5) {
@@ -756,12 +815,12 @@ void TExogamPhysics::DoCalibration() {
     }
   }
   std::string make_folder = "mkdir " + Path + OutputName;
-  
+
   MakeInitialCalibFolder(make_folder);
-  
+
   ofstream* calib_file = new ofstream;
   ofstream* dispersion_file = new ofstream;
-  
+
   if(!DoCalibrationE.empty()){
     MakeECalibFolders(make_folder);
     CreateCalibrationEFiles(calib_file, dispersion_file);
@@ -785,7 +844,7 @@ void TExogamPhysics::DoCalibration() {
   }
   calib_file->close();
   dispersion_file->close();
-  
+
   if(!DoCalibrationOuter.empty()){
     MakeOuterCalibFolders(make_folder);
     CreateCalibrationOuterFiles(calib_file, dispersion_file);
@@ -801,21 +860,27 @@ void TExogamPhysics::DoCalibration() {
   dispersion_file->close();
 }
 
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::MakeInitialCalibFolder(std::string make_folder) {
   int sys = system(make_folder.c_str());
 }
 
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::MakeECalibFolders(std::string make_folder) {
   int sys =system((make_folder+"/Exogam_E").c_str()); 
 }
 
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::MakeEHGCalibFolders(std::string make_folder) {
   int sys =system((make_folder+"/Exogam_EHG").c_str());
 }
+
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::MakeOuterCalibFolders(std::string make_folder) {
   int sys =system((make_folder+"/Exogam_Outer").c_str());
 }
 
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::DoCalibrationE_F(unsigned int DetectorNumber,std::string CalibType, ofstream* calib_file, ofstream* dispersion_file, unsigned int Threshold) {
   auto TH1Map = RootHistogramsCalib::getInstance()->GetTH1Map();
   auto TGraphMap = RootHistogramsCalib::getInstance()->GetTGraphMap();
@@ -824,44 +889,44 @@ void TExogamPhysics::DoCalibrationE_F(unsigned int DetectorNumber,std::string Ca
   CubixEnergyCal->Reset();
   std::string hnameEXOE = Form("EXO_%s%d",CalibType.c_str(), DetectorNumber);
   std::string htitleEXOE = Form("EXO_%s%d",CalibType.c_str(), DetectorNumber);
-  
+
   auto hist = ((*TH1Map)["Exogam"][hnameEXOE]);
 
   CubixEnergyCal->SetDataFromHistTH1(hist,0);
-    
+
   for (auto ie : Source_E)
     CubixEnergyCal->AddPeak(ie);
-  
+
   CubixEnergyCal->SetGain(1.);
   CubixEnergyCal->SetVerbosityLevel(1);
-    
+
   CubixEnergyCal->SetFitPlynomialOrder(FitPolOrder);
   CubixEnergyCal->SetNoOffset(false);
   CubixEnergyCal->UseLeftTail(true);
   CubixEnergyCal->UseRightTail(true);
 
   CubixEnergyCal->UseFirstDerivativeSearch();
-  
+
   CubixEnergyCal->SetGlobalChannelLimits(hist->GetXaxis()->GetBinLowEdge(1)+Threshold,hist->GetXaxis()->GetBinLowEdge(hist->GetXaxis()->GetNbins()));      // limit the search to this range in channels
   CubixEnergyCal->SetGlobalPeaksLimits(15,5);   // default fwhm and minmum amplitude for the peaksearch [15 5]
 
   CubixEnergyCal->StartCalib();
   vector < Fitted > FitResults = CubixEnergyCal->GetFitResults();
-  
-  
-  
+
+
+
   std:: cout << calib_file << " " << (*calib_file).is_open() << std::endl;
   std:: cout << hnameEXOE << " ";
   (*calib_file) << hnameEXOE << " ";
   if(FitResults.size() > 1)
-    {
+  {
     for(unsigned int i = 0; i <= FitPolOrder; i++){
       (*calib_file) << scientific << setprecision(6) << setw(14) << CubixEnergyCal->fCalibFunction->GetParameter(i) << " ";
       std::cout << scientific << setprecision(6) << setw(14) << CubixEnergyCal->fCalibFunction->GetParameter(i) << " ";
     }
   }
   else
-    {
+  {
     for(unsigned int i = 0; i <= FitPolOrder; i++){
       (*calib_file) << scientific << setprecision(6) << setw(14) << 0. << " ";
       std::cout << scientific << setprecision(6) << setw(14) << 0. << " ";
@@ -870,30 +935,30 @@ void TExogamPhysics::DoCalibrationE_F(unsigned int DetectorNumber,std::string Ca
   (*calib_file) << "\n";
   std::cout << "\n";
 
-    
+
   if(FitResults.size()>1 && CubixEnergyCal->fCalibFunction) {
-      auto c = new TCanvas;
-      c->SetName("CalibrationResults");
-      c->SetTitle("Calibration Results");
-      c->Divide(1,2,0.0001,0.0001);
-      c->cd(1);
-      CubixEnergyCal->fCalibGraph->Draw("ap");
-      CubixEnergyCal->fCalibFunction->Draw("same");
-      c->cd(2);
-      CubixEnergyCal->fResidueGraph->Draw("ape");
-      c->Update();
-      c->Modified();
+    auto c = new TCanvas;
+    c->SetName("CalibrationResults");
+    c->SetTitle("Calibration Results");
+    c->Divide(1,2,0.0001,0.0001);
+    c->cd(1);
+    CubixEnergyCal->fCalibGraph->Draw("ap");
+    CubixEnergyCal->fCalibFunction->Draw("same");
+    c->cd(2);
+    CubixEnergyCal->fResidueGraph->Draw("ape");
+    c->Update();
+    c->Modified();
   }
   if(FitResults.size() > 1)
   {
-  (*TGraphMap)["Exogam"][Form("Calib_Graph_%s",hnameEXOE.c_str())] = (TGraphErrors*)(CubixEnergyCal->fCalibGraph->Clone());
-  (*TGraphMap)["Exogam"][Form("Calib_Graph_%s",hnameEXOE.c_str())]->GetYaxis()->SetTitle("Energy (MeV)");
-  (*TGraphMap)["Exogam"][Form("Calib_Graph_%s",hnameEXOE.c_str())]->SetTitle(Form("Calibration_Graph_%s",hnameEXOE.c_str()));
-
-  (*TGraphMap)["Exogam"][Form("Residue_Graph_%s",hnameEXOE.c_str())] = (TGraphErrors*)(CubixEnergyCal->fResidueGraph->Clone());
-  (*TGraphMap)["Exogam"][Form("Residue_Graph_%s",hnameEXOE.c_str())]->GetXaxis()->SetTitle("Energy (MeV)");
-  (*TGraphMap)["Exogam"][Form("Residue_Graph_%s",hnameEXOE.c_str())]->GetYaxis()->SetTitle("Residue (MeV)");
-  (*TGraphMap)["Exogam"][Form("Residue_Graph_%s",hnameEXOE.c_str())]->SetTitle(Form("Residue_Graph_%s",hnameEXOE.c_str()));
+    (*TGraphMap)["Exogam"][Form("Calib_Graph_%s",hnameEXOE.c_str())] = (TGraphErrors*)(CubixEnergyCal->fCalibGraph->Clone());
+    (*TGraphMap)["Exogam"][Form("Calib_Graph_%s",hnameEXOE.c_str())]->GetYaxis()->SetTitle("Energy (MeV)");
+    (*TGraphMap)["Exogam"][Form("Calib_Graph_%s",hnameEXOE.c_str())]->SetTitle(Form("Calibration_Graph_%s",hnameEXOE.c_str()));
+
+    (*TGraphMap)["Exogam"][Form("Residue_Graph_%s",hnameEXOE.c_str())] = (TGraphErrors*)(CubixEnergyCal->fResidueGraph->Clone());
+    (*TGraphMap)["Exogam"][Form("Residue_Graph_%s",hnameEXOE.c_str())]->GetXaxis()->SetTitle("Energy (MeV)");
+    (*TGraphMap)["Exogam"][Form("Residue_Graph_%s",hnameEXOE.c_str())]->GetYaxis()->SetTitle("Residue (MeV)");
+    (*TGraphMap)["Exogam"][Form("Residue_Graph_%s",hnameEXOE.c_str())]->SetTitle(Form("Residue_Graph_%s",hnameEXOE.c_str()));
   }
 #else
   std::cout << "Exogam calibration currently not supported without CUBIX. Download CUBIX and set -DCUBIX=1 to use EXOGAM calibration\n";
@@ -903,6 +968,7 @@ void TExogamPhysics::DoCalibrationE_F(unsigned int DetectorNumber,std::string Ca
 
 }
 
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::DefineCalibrationSource(std::string source) {
   // 239Pu
   if(source == "60Co"){
@@ -910,7 +976,7 @@ void TExogamPhysics::DefineCalibrationSource(std::string source) {
     Source_E.push_back(1.17322);
     Source_Sig.push_back(0.0001);
     Source_branching_ratio.push_back(99.85);
-    
+
     Source_isotope.push_back("$^{60}$Co");
     Source_E.push_back(1.33249);
     Source_Sig.push_back(0.0001);
@@ -921,72 +987,72 @@ void TExogamPhysics::DefineCalibrationSource(std::string source) {
     Source_E.push_back(0.121782);
     Source_Sig.push_back(0.0001);
     Source_branching_ratio.push_back(28.58);
-    
+
     Source_isotope.push_back("$^{152}$Eu");
     Source_E.push_back(0.344279);
     Source_Sig.push_back(0.0001);
     Source_branching_ratio.push_back(26.5);
-    
+
     Source_isotope.push_back("$^{152}$Eu");
     Source_E.push_back(1.40801);
     Source_Sig.push_back(0.0001);
     Source_branching_ratio.push_back(21.0);
-    
+
     Source_isotope.push_back("$^{152}$Eu");
     Source_E.push_back(0.964079);
     Source_Sig.push_back(0.0001);
     Source_branching_ratio.push_back(14.6);
-    
+
     Source_isotope.push_back("$^{152}$Eu");
     Source_E.push_back(1.11207);
     Source_Sig.push_back(0.0001);
     Source_branching_ratio.push_back(13.64);
-    
+
     Source_isotope.push_back("$^{152}$Eu");
     Source_E.push_back(0.778904);
     Source_Sig.push_back(0.0001);
     Source_branching_ratio.push_back(12.94);
-    
+
     Source_isotope.push_back("$^{152}$Eu");
     Source_E.push_back(1.08587);
     Source_Sig.push_back(0.0001);
     Source_branching_ratio.push_back(10.21);
-    
+
     Source_isotope.push_back("$^{152}$Eu");
     Source_E.push_back(0.244698);
     Source_Sig.push_back(0.0001);
     Source_branching_ratio.push_back(7.58);
-    
+
     Source_isotope.push_back("$^{152}$Eu");
     Source_E.push_back(0.867378);
     Source_Sig.push_back(0.0001);
     Source_branching_ratio.push_back(4.25);
-    
+
     Source_isotope.push_back("$^{152}$Eu");
     Source_E.push_back(0.443965);
     Source_Sig.push_back(0.0001);
     Source_branching_ratio.push_back(2.82);
-    
+
     Source_isotope.push_back("$^{152}$Eu");
     Source_E.push_back(0.411116);
     Source_Sig.push_back(0.0001);
     Source_branching_ratio.push_back(2.23);
-    
+
     Source_isotope.push_back("$^{152}$Eu");
     Source_E.push_back(1.08974);
     Source_Sig.push_back(0.0001);
     Source_branching_ratio.push_back(1.73);
-    
+
     Source_isotope.push_back("$^{152}$Eu");
     Source_E.push_back(1.29914);
     Source_Sig.push_back(0.0001);
     Source_branching_ratio.push_back(1.62);
-    
+
     Source_isotope.push_back("$^{152}$Eu");
     Source_E.push_back(1.21295);
     Source_Sig.push_back(0.0001);
     Source_branching_ratio.push_back(1.42);
-    
+
   }
   else{
     std::cout << "Please enter a valid source for gamma ray calibration\nCurrently supported sources are 60Co and 152Eu\n";
@@ -995,9 +1061,11 @@ void TExogamPhysics::DefineCalibrationSource(std::string source) {
 }
 
 
+/////////////////////////////////////////////////////////////////////
 // FIXME Probably could be done better, currently a but inelegant
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::CreateCalibrationEFiles(ofstream* calib_file,
-                                                 ofstream* dispersion_file) {
+    ofstream* dispersion_file) {
   std::string Path = NPOptionManager::getInstance()->GetCalibrationOutputPath();
   std::string OutputName = NPOptionManager::getInstance()->GetOutputFile();
   if (OutputName.size() > 5) {
@@ -1011,7 +1079,7 @@ void TExogamPhysics::CreateCalibrationEFiles(ofstream* calib_file,
 }
 
 void TExogamPhysics::CreateCalibrationEHGFiles(ofstream* calib_file,
-                                                 ofstream* dispersion_file) {
+    ofstream* dispersion_file) {
   std::string Path = NPOptionManager::getInstance()->GetCalibrationOutputPath();
   std::string OutputName = NPOptionManager::getInstance()->GetOutputFile();
   if (OutputName.size() > 5) {
@@ -1025,7 +1093,7 @@ void TExogamPhysics::CreateCalibrationEHGFiles(ofstream* calib_file,
 }
 
 void TExogamPhysics::CreateCalibrationOuterFiles(ofstream* calib_file,
-                                                 ofstream* dispersion_file) {
+    ofstream* dispersion_file) {
   std::string Path = NPOptionManager::getInstance()->GetCalibrationOutputPath();
   std::string OutputName = NPOptionManager::getInstance()->GetOutputFile();
   if (OutputName.size() > 5) {
@@ -1061,25 +1129,27 @@ void TExogamPhysics::ReadDoCalibration(NPL::InputParser parser) {
         DoCalibrationEHG[k] = true; 
         for(unsigned int p = FirstOuter; p <= LastOuter; p++){
           DoCalibrationOuter[k][p] = true; 
+        }
       }
     }
-    }
     else {
       cout << "ERROR: Missing token for Exogam DoCalibration blocks, check your "
-              "input "
-              "file"
-           << endl;
+        "input "
+        "file"
+        << endl;
       exit(1);
     }
   }
 }
 
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::WriteHistogramsCalib() {
   std::cout << "Writing Exogam Histograms\n";
   WriteHistogramsE();
   RootHistogramsCalib::getInstance()->GetFile()->Close();
 }
 
+/////////////////////////////////////////////////////////////////////
 void TExogamPhysics::WriteHistogramsE() {
   auto File = RootHistogramsCalib::getInstance()->GetFile();
   auto TH1Map = RootHistogramsCalib::getInstance()->GetTH1Map();
@@ -1096,11 +1166,11 @@ void TExogamPhysics::WriteHistogramsE() {
   for (it = DoCalibrationE.begin(); it != DoCalibrationE.end(); it++) {
     if (it->second) {
       hnameEXOE = Form("EXO_E%d", it->first);
-  
+
       if (!gDirectory->GetDirectory(Form("EXO_Cr%d", it->first)))
         gDirectory->mkdir(Form("EXO_Cr%d", it->first));
       gDirectory->cd(Form("EXO_Cr%d", it->first));
-      
+
       (*TH1Map)["Exogam"][hnameEXOE]->Write();
       if((*TGraphMap)["Exogam"][Form("Calib_Graph_EXO_E%d",it->first)]!= nullptr)
         (*TGraphMap)["Exogam"][Form("Calib_Graph_EXO_E%d",it->first)]->Write();
@@ -1109,15 +1179,15 @@ void TExogamPhysics::WriteHistogramsE() {
     }
     File->cd("Exogam");
   }
-  
+
   for (it = DoCalibrationEHG.begin(); it != DoCalibrationEHG.end(); it++) {
     if (it->second) {
       hnameEXOE = Form("EXO_EHG%d", it->first);
-  
+
       if (!gDirectory->GetDirectory(Form("EXO_Cr%d", it->first)))
         gDirectory->mkdir(Form("EXO_Cr%d", it->first));
       gDirectory->cd(Form("EXO_Cr%d", it->first));
-      
+
       (*TH1Map)["Exogam"][hnameEXOE]->Write();
       if((*TGraphMap)["Exogam"][Form("Calib_Graph_EXO_EHG%d",it->first)]!= nullptr)
         (*TGraphMap)["Exogam"][Form("Calib_Graph_EXO_EHG%d",it->first)]->Write();
@@ -1128,25 +1198,25 @@ void TExogamPhysics::WriteHistogramsE() {
   }
   for (it2 = DoCalibrationOuter.begin(); it2 != DoCalibrationOuter.end(); it2++) {
     for (it = (it2->second).begin(); it != (it2->second).end(); it++) {
-    if (it->second) {
-      hnameEXOE = Form("EXO_Outer%d_%d",it2->first,it->first);
-  
-      if (!gDirectory->GetDirectory(Form("EXO_Cr%d", it2->first)))
-        gDirectory->mkdir(Form("EXO_Cr%d", it2->first));
-      gDirectory->cd(Form("EXO_Cr%d", it2->first));
-      
-      if (!gDirectory->GetDirectory("Outers"))
-        gDirectory->mkdir("Outer");
-      gDirectory->cd("Outer");
-      
-      (*TH1Map)["Exogam"][hnameEXOE]->Write();
-      if((*TGraphMap)["Exogam"][Form("Calib_Graph_%s",hnameEXOE.c_str())]!= nullptr)
-        (*TGraphMap)["Exogam"][Form("Calib_Graph_%s",hnameEXOE.c_str())]->Write();
-      if((*TGraphMap)["Exogam"][Form("Residue_Graph_%s",hnameEXOE.c_str())]!= nullptr)
-        (*TGraphMap)["Exogam"][Form("Residue_Graph_%s",hnameEXOE.c_str())]->Write();
+      if (it->second) {
+        hnameEXOE = Form("EXO_Outer%d_%d",it2->first,it->first);
+
+        if (!gDirectory->GetDirectory(Form("EXO_Cr%d", it2->first)))
+          gDirectory->mkdir(Form("EXO_Cr%d", it2->first));
+        gDirectory->cd(Form("EXO_Cr%d", it2->first));
+
+        if (!gDirectory->GetDirectory("Outers"))
+          gDirectory->mkdir("Outer");
+        gDirectory->cd("Outer");
+
+        (*TH1Map)["Exogam"][hnameEXOE]->Write();
+        if((*TGraphMap)["Exogam"][Form("Calib_Graph_%s",hnameEXOE.c_str())]!= nullptr)
+          (*TGraphMap)["Exogam"][Form("Calib_Graph_%s",hnameEXOE.c_str())]->Write();
+        if((*TGraphMap)["Exogam"][Form("Residue_Graph_%s",hnameEXOE.c_str())]!= nullptr)
+          (*TGraphMap)["Exogam"][Form("Residue_Graph_%s",hnameEXOE.c_str())]->Write();
+      }
+      File->cd("Exogam");
     }
-    File->cd("Exogam");
-  }
   }
 }
 ///////////////////////////////////////////////////////////////////////////
@@ -1158,14 +1228,14 @@ namespace EXOGAM_LOCAL {
     name += NPL::itoa(m_EventData->GetExoCrystal(i));
     return CalibrationManager::getInstance()->ApplyCalibration(name, m_EventData->GetExoE(i),1);
   }
-  
+
   double fEXO_EHG(const TExogamData* m_EventData, const unsigned int& i) {
     static string name;
     name = "EXO/EHG";
     name += NPL::itoa(m_EventData->GetExoCrystal(i));
     return CalibrationManager::getInstance()->ApplyCalibration(name, m_EventData->GetExoEHG(i),1);
   }
-  
+
   double fEXO_T(const TExogamData* m_EventData, const unsigned int& i) {
     static string name;
     name = "EXOGAM/Cr_";
@@ -1173,7 +1243,7 @@ namespace EXOGAM_LOCAL {
     name += "_TDC";
     return CalibrationManager::getInstance()->ApplyCalibration(name, m_EventData->GetExoTDC(i),1);
   }
-  
+
   double fEXO_Outer(const TExogamData* m_EventData, const unsigned int& i, const unsigned int OuterNumber) {
     static string name;
     name = "EXO/Outer";
@@ -1193,7 +1263,7 @@ namespace EXOGAM_LOCAL {
       return 0;
     };
   }
-  
+
   string itoa(int value) {
     std::ostringstream o;
 
@@ -1216,14 +1286,14 @@ NPL::VTreeReader* TExogamPhysics::ConstructReader() { return (NPL::VTreeReader*)
 //            Registering the construct method to the factory                 //
 ////////////////////////////////////////////////////////////////////////////////
 extern "C" {
-class proxy_exogam {
- public:
-  proxy_exogam() {
-    NPL::DetectorFactory::getInstance()->AddToken("Exogam", "Exogam");
-    NPL::DetectorFactory::getInstance()->AddDetector("Exogam", TExogamPhysics::Construct);
-    NPL::DetectorFactory::getInstance()->AddDetectorReader("Exogam", TExogamPhysics::ConstructReader);
-  }
-};
+  class proxy_exogam {
+    public:
+      proxy_exogam() {
+        NPL::DetectorFactory::getInstance()->AddToken("Exogam", "Exogam");
+        NPL::DetectorFactory::getInstance()->AddDetector("Exogam", TExogamPhysics::Construct);
+        NPL::DetectorFactory::getInstance()->AddDetectorReader("Exogam", TExogamPhysics::ConstructReader);
+      }
+  };
 
-proxy_exogam p;
+  proxy_exogam p;
 }
diff --git a/NPLib/Detectors/Exogam/TExogamPhysics.h b/NPLib/Detectors/Exogam/TExogamPhysics.h
index 78a2b473bf886626aac1c7f76507231348318349..6a7ea95fcc5d343c2a41d0d29406536e844fc81d 100644
--- a/NPLib/Detectors/Exogam/TExogamPhysics.h
+++ b/NPLib/Detectors/Exogam/TExogamPhysics.h
@@ -72,7 +72,7 @@ class TExogamPhysics : public TObject, public NPL::VDetector, public TExogamPhys
   std::vector<double> Outer4;
   std::vector<unsigned int> Flange;
   std::vector<unsigned int> Crystal;
-  std::vector<unsigned int> TDC;
+  std::vector<double> TDC;
   std::vector<unsigned long long> TS;
   
   // Previous treatment + Add_Back (size of vectors are not the same because of AB !)
@@ -85,7 +85,7 @@ class TExogamPhysics : public TObject, public NPL::VDetector, public TExogamPhys
   // Crystal with highest E
   std::vector<unsigned int> Crystal_AB;
   // TDC AddBack
-  std::vector<unsigned int> TDC_AB;
+  std::vector<double> TDC_AB;
   // TS AddBack
   std::vector<unsigned long long> TS_AB;
   // Outer with highest E
@@ -139,6 +139,9 @@ class TExogamPhysics : public TObject, public NPL::VDetector, public TExogamPhys
 
   double DopplerCorrection(double Energy, double Theta); //!
   
+  /// Routine for doppler correction
+  double CorrectionDoppler(double theta_gamma, double phi_gamma, double theta_part, double phi_part, double beta_part, double E); //!
+  
   bool TDCMatch(unsigned int event); //!
 
   //	Those two method all to clear the Event Physics or Data
@@ -252,8 +255,9 @@ class TExogamPhysics : public TObject, public NPL::VDetector, public TExogamPhys
   double m_EXO_E_Threshold;//!
   double m_EXO_EHG_RAW_Threshold;//!
   double m_EXO_TDC_RAW_Threshold;//!
-  int m_ExoTDC_LowThreshold;//!
-  int m_ExoTDC_HighThreshold;//!
+  double m_ExoTDC_LowThreshold;//!
+  double m_ExoTDC_HighThreshold;//!
+  int m_NumberOfClovers;//!
   double EXO_E;//!
   double EXO_EHG;//!
   double EXO_TDC;//!
@@ -264,7 +268,9 @@ class TExogamPhysics : public TObject, public NPL::VDetector, public TExogamPhys
   unsigned int flange_nbr;//!
   unsigned int crystal_nbr;//!
   double Beta = 0.257;//!
-
+  vector<TVector3> m_pos_segment[4][4];//!
+  vector<int> m_flange;//!
+  map<unsigned int, int> MapFlangeToCloverNumber;//!
   Clover_struc Exogam_struc;//!
   
   std::map<unsigned int,std::pair<unsigned int,unsigned int>> MapCrystalFlangeCLover;//! Map key is raw crystal nbr, pair associated is flange nbr and crystal nbr in the flange
diff --git a/NPLib/Detectors/MUSETT/MUSETTMap.h b/NPLib/Detectors/MUSETT/MUSETTMap.h
index 468ec5d29dfb15ae8325925f24d060e316e6cee6..992d420ef547a27d076557b5b3c0359e6dbc2915 100644
--- a/NPLib/Detectors/MUSETT/MUSETTMap.h
+++ b/NPLib/Detectors/MUSETT/MUSETTMap.h
@@ -14,7 +14,7 @@ namespace MUSETT_MAP{
     65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,
     94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64
     };
-
+     // Changed 64 and 67
   //const int MapY[128] ={
   //62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,
   // 30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,
@@ -36,4 +36,4 @@ namespace MUSETT_MAP{
      97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127
   };
 }
-#endif
\ No newline at end of file
+#endif
diff --git a/NPLib/Detectors/MUSETT/TMUSETTData.cxx b/NPLib/Detectors/MUSETT/TMUSETTData.cxx
index 0ebf192bfa4a0fcf15ca62ce3bb12bf4f7b5932b..452686c4d50b3ad39815b71f6d09925afc6d4a24 100644
--- a/NPLib/Detectors/MUSETT/TMUSETTData.cxx
+++ b/NPLib/Detectors/MUSETT/TMUSETTData.cxx
@@ -16,7 +16,7 @@
  *                                                                           *
  *---------------------------------------------------------------------------*
  * Comment:                                                                  *
- *                                                                           *   
+ *                                                                           *
  *                                                                           *
  *****************************************************************************/
 #include "TMUSETTData.h"
@@ -29,36 +29,51 @@ ClassImp(TMUSETTData)
     TMUSETTData::TMUSETTData() {
   // Init the correspondace table
   for (unsigned int i = 0; i < 128; i++) {
-    fMUMU_MapX[i+1] = MUSETT_MAP::MapX[i];
-    fMUMU_MapY[i+1] = MUSETT_MAP::MapY[i];
+    fMUMU_MapX[i] = MUSETT_MAP::MapX[i];
+    fMUMU_MapY[i] = MUSETT_MAP::MapY[i];
   }
 }
 ////////////////////////////////////////////////////////////////////////////////
 TMUSETTData::~TMUSETTData() {}
 ////////////////////////////////////////////////////////////////////////////////
 void TMUSETTData::Clear() {
+  fMUMU_TRIGGER = 137;
   fMUMU_DSSDXE_DetectorNbr.clear();
   fMUMU_DSSDXE_StripNbr.clear();
   fMUMU_DSSDXE_Energy.clear();
+
+
+
   fMUMU_DSSDXT_DetectorNbr.clear();
   fMUMU_DSSDXT_StripNbr.clear();
   fMUMU_DSSDXT_Time.clear();
+
+
+  fMUMU_DSSDX_TimeStamp.clear();
+  fMUMU_DSSDX_IsInterstrip.clear();
+
+
   fMUMU_DSSDYE_DetectorNbr.clear();
   fMUMU_DSSDYE_StripNbr.clear();
   fMUMU_DSSDYE_Energy.clear();
+
+
   fMUMU_DSSDYT_DetectorNbr.clear();
   fMUMU_DSSDYT_StripNbr.clear();
   fMUMU_DSSDYT_Time.clear();
+
+  fMUMU_DSSDY_TimeStamp.clear();
+  fMUMU_DSSDY_IsInterstrip.clear();
 }
 ////////////////////////////////////////////////////////////////////////////////
 void TMUSETTData::Dump() const {
-  std::cout << "XXXXXXXXXXXXXXXXXXXXXXXX MUSETT Event XXXXXXXXXXXXXXXXX" << std::endl;
+  std::cout << "XXXXXXXXXXXXXXXXXXXXXXXX Hey MUSETT Event XXXXXXXXXXXXXXXXX" << std::endl;
 
   std::cout << "// First Layer " << std::endl;
   // (X,E)
   std::cout << " DSSDXE_Mult = " << fMUMU_DSSDXE_DetectorNbr.size() << std::endl;
   for (UShort_t i = 0; i < fMUMU_DSSDXE_DetectorNbr.size(); i++)
-    std::cout << "  DetNbr: " << fMUMU_DSSDXE_DetectorNbr[i] << " DSSD: " << fMUMU_DSSDXE_StripNbr[i]
+    std::cout << "  DetNbr: " << fMUMU_DSSDXE_DetectorNbr[i] << " strip: " << fMUMU_DSSDXE_StripNbr[i]
          << " Energy: " << fMUMU_DSSDXE_Energy[i] << std::endl;
   // (X,T)
   std::cout << " DSSDXT_Mult = " << fMUMU_DSSDXT_DetectorNbr.size() << std::endl;
diff --git a/NPLib/Detectors/MUSETT/TMUSETTData.h b/NPLib/Detectors/MUSETT/TMUSETTData.h
index 75e6c592b38dd5f5a2af7f575fd0c4e416d3730c..8a2f73ad531b10e358bf7816101285c3f75482d9 100644
--- a/NPLib/Detectors/MUSETT/TMUSETTData.h
+++ b/NPLib/Detectors/MUSETT/TMUSETTData.h
@@ -18,7 +18,7 @@
  *                                                                           *
  *---------------------------------------------------------------------------*
  * Comment:                                                                  *
- *                                                                           *   
+ *                                                                           *
  *                                                                           *
  *****************************************************************************/
 
@@ -31,33 +31,41 @@
 #include "TObject.h"
 
 class TMUSETTData : public TObject {
-
    private:
       // First Layer
       // X strips
       // Energy
-      std::vector<unsigned short>   fMUMU_DSSDXE_DetectorNbr;
-      std::vector<unsigned short>   fMUMU_DSSDXE_StripNbr;
+      std::vector<unsigned short>   fMUMU_DSSDXE_DetectorNbr; // Ce qui apparait
+      std::vector<unsigned short>   fMUMU_DSSDXE_StripNbr; // Dans l'arbre root
       std::vector<double>           fMUMU_DSSDXE_Energy;
       // Time
       std::vector<unsigned short>   fMUMU_DSSDXT_DetectorNbr;
       std::vector<unsigned short>   fMUMU_DSSDXT_StripNbr;
       std::vector<double>           fMUMU_DSSDXT_Time;
+
+      std::vector<double>           fMUMU_DSSDX_TimeStamp;
+      std::vector<bool>             fMUMU_DSSDX_IsInterstrip;
       // Y strips
       // Energy
       std::vector<unsigned short>   fMUMU_DSSDYE_DetectorNbr;
       std::vector<unsigned short>   fMUMU_DSSDYE_StripNbr;
       std::vector<double>           fMUMU_DSSDYE_Energy;
+
       // Time
       std::vector<unsigned short>   fMUMU_DSSDYT_DetectorNbr;
       std::vector<unsigned short>   fMUMU_DSSDYT_StripNbr;
       std::vector<double>           fMUMU_DSSDYT_Time;
 
+      unsigned short                fMUMU_TRIGGER;
+
+      std::vector<double>           fMUMU_DSSDY_TimeStamp;
+      std::vector<bool>             fMUMU_DSSDY_IsInterstrip;
+
+
+    private:
+     std::map<unsigned int, unsigned int> fMUMU_MapX;//!
+     std::map<unsigned int, unsigned int> fMUMU_MapY;//!
 
-   private:
-      std::map<unsigned int, unsigned int> fMUMU_MapX;//!
-      std::map<unsigned int, unsigned int> fMUMU_MapY;//!
-  
 
    public:
       TMUSETTData();
@@ -69,13 +77,18 @@ class TMUSETTData : public TObject {
 
       /////////////////////           SETTERS           ////////////////////////
       // FirstLayer
+
       // (X,E)
       public:
+      inline void SetTRIGGER(const unsigned int Trig)
+      {
+        fMUMU_TRIGGER = Trig;
+      }
       inline void   SetDSSDXE(const bool Map, const unsigned short& DetNbr, const unsigned short& StripNbr, const double& Energy){
       if(Map)
-        SetDSSDXE(DetNbr,fMUMU_MapX[StripNbr],Energy); 
+        SetDSSDXE(DetNbr,fMUMU_MapX[StripNbr],Energy);
       else
-        SetDSSDXE(DetNbr,StripNbr,Energy); 
+        SetDSSDXE(DetNbr,StripNbr,Energy);
       }
       private:
       inline void   SetDSSDXE(const unsigned short& DetNbr, const unsigned short& StripNbr, const double& Energy){
@@ -83,14 +96,14 @@ class TMUSETTData : public TObject {
         fMUMU_DSSDXE_StripNbr.push_back(StripNbr);
         fMUMU_DSSDXE_Energy.push_back(Energy);
       }
-      
+
       // (X,T)
       public:
       inline void   SetDSSDXT(const bool Map, const unsigned short& DetNbr, const unsigned short& StripNbr, const double& Time){
       if(Map)
-        SetDSSDXT(DetNbr,fMUMU_MapX[StripNbr],Time); 
+        SetDSSDXT(DetNbr,fMUMU_MapX[StripNbr],Time);
       else
-        SetDSSDXT(DetNbr,StripNbr,Time); 
+        SetDSSDXT(DetNbr,StripNbr,Time);
 
       }
       private:
@@ -99,14 +112,24 @@ class TMUSETTData : public TObject {
         fMUMU_DSSDXT_StripNbr.push_back(StripNbr);
         fMUMU_DSSDXT_Time.push_back(Time);
       }
-      
+
+
+      //(X timestamp )
+      public :
+      inline void   SetDSSDX_Tstamp(const double &Tstamp){
+          fMUMU_DSSDX_TimeStamp.push_back(Tstamp);
+        }
+      inline void   SetDSSDX_Interstrip(const bool &inter){
+              fMUMU_DSSDX_IsInterstrip.push_back(inter);
+            }
+
       // (Y,E)
       public:
       inline void   SetDSSDYE(const bool Map, const unsigned short& DetNbr, const unsigned short& StripNbr, const double& Energy){
       if(Map)
-        SetDSSDYE(DetNbr,fMUMU_MapY[StripNbr],Energy); 
+        SetDSSDYE(DetNbr,fMUMU_MapY[StripNbr],Energy);
       else
-        SetDSSDYE(DetNbr,StripNbr,Energy); 
+        SetDSSDYE(DetNbr,StripNbr,Energy);
 
       }
       private:
@@ -115,14 +138,14 @@ class TMUSETTData : public TObject {
         fMUMU_DSSDYE_StripNbr.push_back(StripNbr);
         fMUMU_DSSDYE_Energy.push_back(Energy);
       }
-      
+
       // (Y,T)
       public:
       inline void   SetDSSDYT(const bool Map, const unsigned short& DetNbr, const unsigned short& StripNbr, const double& Time){
       if(Map)
-        SetDSSDYT(DetNbr,fMUMU_MapY[StripNbr],Time); 
+        SetDSSDYT(DetNbr,fMUMU_MapY[StripNbr],Time);
       else
-        SetDSSDYT(DetNbr,StripNbr,Time); 
+        SetDSSDYT(DetNbr,StripNbr,Time);
 
       }
       private:
@@ -131,10 +154,20 @@ class TMUSETTData : public TObject {
         fMUMU_DSSDYT_StripNbr.push_back(StripNbr);
         fMUMU_DSSDYT_Time.push_back(Time);
       }
-      
- 
+
+
+      //(Y timestamp, interstrip [for simulation] )
+      public :
+      inline void   SetDSSDY_Tstamp(const double &Tstamp){
+          fMUMU_DSSDY_TimeStamp.push_back(Tstamp);
+        }
+      inline void   SetDSSDY_Interstrip(const bool &inter){
+            fMUMU_DSSDY_IsInterstrip.push_back(inter);
+          }
+
 public:
       /////////////////////           GETTERS           ////////////////////////
+      inline unsigned short   GetDSSDTRIG()                      const {return fMUMU_TRIGGER;}
       // DSSD
       // (X,E)
       inline unsigned short   GetDSSDXEMult()                      const {return fMUMU_DSSDXE_DetectorNbr.size();}
@@ -146,6 +179,9 @@ public:
       inline unsigned short   GetDSSDXTDetectorNbr(const int& i)   const {return fMUMU_DSSDXT_DetectorNbr[i];}
       inline unsigned short   GetDSSDXTStripNbr(const int& i)      const {return fMUMU_DSSDXT_StripNbr[i];}
       inline double           GetDSSDXTTime(const int& i)          const {return fMUMU_DSSDXT_Time[i];}
+      // (X, Timestamp/Interstrip)
+      inline double           GetDSSDX_TStamp(const int& i)          const {return fMUMU_DSSDX_TimeStamp[i];}
+      inline double           GetDSSDX_Interstrip(const int& i)      const {return fMUMU_DSSDX_IsInterstrip[i];}
       // (Y,E)
       inline unsigned short   GetDSSDYEMult()                      const {return fMUMU_DSSDYE_DetectorNbr.size();}
       inline unsigned short   GetDSSDYEDetectorNbr(const int& i)   const {return fMUMU_DSSDYE_DetectorNbr[i];}
@@ -156,6 +192,9 @@ public:
       inline unsigned short   GetDSSDYTDetectorNbr(const int& i)   const {return fMUMU_DSSDYT_DetectorNbr[i];}
       inline unsigned short   GetDSSDYTStripNbr(const int& i)       const {return fMUMU_DSSDYT_StripNbr[i];}
       inline double           GetDSSDYTTime(const int& i)          const {return fMUMU_DSSDYT_Time[i];}
+      // (Y, Timestamp/Interstrip)
+      inline double           GetDSSDY_TStamp(const int& i)          const {return fMUMU_DSSDY_TimeStamp[i];}
+      inline double           GetDSSDY_Interstrip(const int& i)     const {return fMUMU_DSSDY_IsInterstrip[i];}
 
 
 
@@ -163,4 +202,3 @@ public:
 };
 
 #endif
-
diff --git a/NPLib/Detectors/MUSETT/TMUSETTPhysics.cxx b/NPLib/Detectors/MUSETT/TMUSETTPhysics.cxx
index fa3c2fd04fda5e03c590ff57392095a1ef209c49..bc2dec9989b82c3892ef879a5b814e7944a68e87 100644
--- a/NPLib/Detectors/MUSETT/TMUSETTPhysics.cxx
+++ b/NPLib/Detectors/MUSETT/TMUSETTPhysics.cxx
@@ -16,7 +16,7 @@
  *                                                                           *
  *---------------------------------------------------------------------------*
  * Comment:                                                                  *
- *                                                                           *   
+ *                                                                           *
  *                                                                           *
  *****************************************************************************/
 
@@ -51,6 +51,7 @@ ClassImp(TMUSETTPhysics)
   ///////////////////////////////////////////////////////////////////////////
   TMUSETTPhysics::TMUSETTPhysics() {
     EventMultiplicity                  = 0;
+    EventTrigger                       = 0;
     m_EventData                        = new TMUSETTData;
     m_PreTreatedData                   = new TMUSETTData;
     m_random                           = new TRandom3();
@@ -70,6 +71,7 @@ ClassImp(TMUSETTPhysics)
 
     m_Take_E_Y = false;
     m_Take_T_Y = true;
+
   }
 
 ///////////////////////////////////////////////////////////////////////////
@@ -86,52 +88,103 @@ void TMUSETTPhysics::PreTreat() {
   DSSDY_EMult = m_EventData->GetDSSDYEMult();
   DSSDX_TMult = m_EventData->GetDSSDXTMult();
   DSSDY_TMult = m_EventData->GetDSSDYTMult();
+  m_PreTreatedData->SetTRIGGER(m_EventData->GetDSSDTRIG());
   //   X
   //   E
+
   for (unsigned int i = 0; i < DSSDX_EMult; ++i) {
-    if (m_EventData->GetDSSDXEEnergy(i) > m_DSSD_X_E_RAW_Threshold
-        && IsValidChannel(0, m_EventData->GetDSSDXEDetectorNbr(i),
-          m_EventData->GetDSSDXEStripNbr(i))) {
+    if (m_EventData->GetDSSDXEEnergy(i) > m_DSSD_X_E_RAW_Threshold){
+        //&& IsValidChannel(0, m_EventData->GetDSSDXEDetectorNbr(i),
+          //m_EventData->GetDSSDXEStripNbr(i))) {
       double EX = fDSSD_X_E(m_EventData, i);
       if (EX > m_DSSD_X_E_Threshold)
-        m_PreTreatedData->SetDSSDXE(false,
+      {
+
+        //Fo r DATA
+        /*
+        m_PreTreatedData->SetDSSDXE(true,
             m_EventData->GetDSSDXEDetectorNbr(i),
             m_EventData->GetDSSDXEStripNbr(i), EX);
+        */
+
+
+
+        //For Simu
+        m_PreTreatedData->SetDSSDXE(false,
+            m_EventData->GetDSSDXEDetectorNbr(i),
+            m_EventData->GetDSSDXEStripNbr(i)-1, EX);
+
+      }
     }
   }
 
   //   T
   for (unsigned int i = 0; i < DSSDX_TMult; ++i) {
-    if (IsValidChannel(0, m_EventData->GetDSSDXTDetectorNbr(i),
-          m_EventData->GetDSSDXTStripNbr(i)))
-      m_PreTreatedData->SetDSSDXT(false,
+    //if (IsValidChannel(0, m_EventData->GetDSSDXTDetectorNbr(i),
+    //      m_EventData->GetDSSDXTStripNbr(i)))
+
+    //For Data
+    /*
+      m_PreTreatedData->SetDSSDXT(true,
           m_EventData->GetDSSDXTDetectorNbr(i),
           m_EventData->GetDSSDXTStripNbr(i),
           fDSSD_X_T(m_EventData, i));
+    */
+    //For Simu
+
+      m_PreTreatedData->SetDSSDXT(false,
+          m_EventData->GetDSSDXTDetectorNbr(i),
+          m_EventData->GetDSSDXTStripNbr(i)-1,
+          fDSSD_X_T(m_EventData, i));
+
   }
 
   //   Y
   //   E
   for (unsigned int i = 0; i < DSSDY_EMult; ++i) {
-    if (m_EventData->GetDSSDYEEnergy(i) < m_DSSD_Y_E_RAW_Threshold
-        && IsValidChannel(1, m_EventData->GetDSSDYEDetectorNbr(i),
-          m_EventData->GetDSSDYEStripNbr(i))) {
+    //std::cout << "EY = " << m_EventData->GetDSSDYEEnergy(i) ;
+    if (m_EventData->GetDSSDYEEnergy(i) < m_DSSD_Y_E_RAW_Threshold){
+        //&& IsValidChannel(1, m_EventData->GetDSSDYEDetectorNbr(i),
+          //m_EventData->GetDSSDYEStripNbr(i))) {
+          //std::cout << "-> OK  " << std::endl;
       double EY = fDSSD_Y_E(m_EventData, i);
       if (EY > m_DSSD_Y_E_Threshold)
+
+      //For DATA
+      /*
+      m_PreTreatedData->SetDSSDYE(true,
+          m_EventData->GetDSSDYEDetectorNbr(i),
+          m_EventData->GetDSSDYEStripNbr(i), EY);
+
+      */
+      //For Simu
         m_PreTreatedData->SetDSSDYE(false,
             m_EventData->GetDSSDYEDetectorNbr(i),
-            m_EventData->GetDSSDYEStripNbr(i), EY);
+            m_EventData->GetDSSDYEStripNbr(i)-1, EY);
+
     }
   }
 
   //   T
   for (unsigned int i = 0; i < DSSDY_TMult; ++i) {
-    if (IsValidChannel(1, m_EventData->GetDSSDYTDetectorNbr(i),
-          m_EventData->GetDSSDYTStripNbr(i)))
-      m_PreTreatedData->SetDSSDYT(false,
+    //if (IsValidChannel(1, m_EventData->GetDSSDYTDetectorNbr(i),
+    //      m_EventData->GetDSSDYTStripNbr(i)))
+    double TY = fDSSD_Y_T(m_EventData, i);
+
+    //For Data
+    /*
+      m_PreTreatedData->SetDSSDYT(true,
           m_EventData->GetDSSDYTDetectorNbr(i),
-          m_EventData->GetDSSDYTStripNbr(i),
-          fDSSD_Y_T(m_EventData, i));
+          m_EventData->GetDSSDYTStripNbr(i),TY);
+
+
+    */
+    //For Simu
+    m_PreTreatedData->SetDSSDYT(false,
+        m_EventData->GetDSSDYTDetectorNbr(i),
+        m_EventData->GetDSSDYTStripNbr(i)-1,TY);
+    
+
   }
 
   return;
@@ -142,21 +195,19 @@ void TMUSETTPhysics::PreTreat() {
 
 void TMUSETTPhysics::BuildPhysicalEvent() {
   PreTreat();
-
   bool check_SecondLayer  = false;
-  static unsigned int DSSDXEMult, DSSDYEMult, DSSDXTMult, DSSDYTMult,SecondLayerEMult,SecondLayerTMult; 
+  static unsigned int DSSDXEMult, DSSDYEMult, DSSDXTMult, DSSDYTMult,SecondLayerEMult,SecondLayerTMult;
   DSSDXEMult = m_PreTreatedData->GetDSSDXEMult();
   DSSDYEMult = m_PreTreatedData->GetDSSDYEMult();
   DSSDXTMult = m_PreTreatedData->GetDSSDXTMult();
   DSSDYTMult = m_PreTreatedData->GetDSSDYTMult();
-
   // random->SetSeed(42);
 
   // srand(time(NULL));
 
   if (1 /*CheckEvent() == 1*/) {
     vector<TVector2> couple = Match_X_Y();
-
+    EventTrigger = m_PreTreatedData->GetDSSDTRIG();
     EventMultiplicity = couple.size();
     for (unsigned int i = 0; i < couple.size(); ++i) {
       check_SecondLayer  = false;
@@ -165,9 +216,14 @@ void TMUSETTPhysics::BuildPhysicalEvent() {
 
       int X = m_PreTreatedData->GetDSSDXEStripNbr(couple[i].X());
       int Y = m_PreTreatedData->GetDSSDYEStripNbr(couple[i].Y());
-
       double DSSD_X_E = m_PreTreatedData->GetDSSDXEEnergy(couple[i].X());
       double DSSD_Y_E = m_PreTreatedData->GetDSSDYEEnergy(couple[i].Y());
+      /*
+      int TRIG_X_E = m_PreTreatedData->GETDSSDXETrig(couple[i].X());
+      int TRIG_X_T = m_PreTreatedData->GETDSSDXTTrig(couple[i].X());
+      int TRIG_Y_E = m_PreTreatedData->GETDSSDYETrig(couple[i].Y());
+      int TRIG_Y_T = m_PreTreatedData->GETDSSDYTTrig(couple[i].Y());
+      */
 
       //  Search for associate Time
       double DSSD_X_T = -1000;
@@ -177,10 +233,10 @@ void TMUSETTPhysics::BuildPhysicalEvent() {
             && m_PreTreatedData->GetDSSDXTDetectorNbr(couple[i].X())
             == m_PreTreatedData->GetDSSDXTDetectorNbr(t)) {
           DSSD_X_T = m_PreTreatedData->GetDSSDXTTime(t);
+          //  std::cout << "X :  " << DSSD_X_T << std::endl;
           break;
         }
       }
-
       double DSSD_Y_T = -1000;
       for (unsigned int t = 0; t < DSSDYTMult; ++t) {
         if (m_PreTreatedData->GetDSSDYTStripNbr(couple[i].Y())
@@ -188,27 +244,37 @@ void TMUSETTPhysics::BuildPhysicalEvent() {
             && m_PreTreatedData->GetDSSDYTDetectorNbr(couple[i].Y())
             == m_PreTreatedData->GetDSSDYTDetectorNbr(t)) {
           DSSD_Y_T = m_PreTreatedData->GetDSSDYTTime(t);
+          //cout << DSSD_Y_T << endl;
           break;
         }
       }
-
       DSSD_X.push_back(X);
       DSSD_Y.push_back(Y);
       DetectorNumber.push_back(N);
 
-      
+
       PosX.push_back(GetPositionOfInteraction(i).x());
       PosY.push_back(GetPositionOfInteraction(i).y());
       PosZ.push_back(GetPositionOfInteraction(i).z());
-      
+
+
+      DSSD_E_X.push_back(DSSD_X_E);
+      DSSD_E_Y.push_back(DSSD_Y_E);
+      DSSD_T_X.push_back(DSSD_X_T);
+      DSSD_T_Y.push_back(DSSD_Y_T);
+
+      /*
+      DSSD_E_X_TRIG.push_back(TRIG_X_E);
+      DSSD_E_Y_TRIG.push_back(TRIG_Y_E);
+      DSSD_T_X_TRIG.push_back(TRIG_X_T);
+      DSSD_T_Y_TRIG.push_back(TRIG_Y_T);
+      */
 
       if (m_Take_E_Y){
         DSSD_E.push_back(DSSD_Y_E);
-        TotalEnergy.push_back(DSSD_Y_E);
       }
       else{
         DSSD_E.push_back(DSSD_X_E);
-        TotalEnergy.push_back(DSSD_X_E);
       }
 
       if (m_Take_T_Y)
@@ -218,11 +284,7 @@ void TMUSETTPhysics::BuildPhysicalEvent() {
       }
 
     } // loop on couples
-    if(EventMultiplicity == 2){
-      RelativeAngle = GetRelativeAngle();
-      SRa220 = GetS(220,15.79);
-      SRn216 = GetS(216,17.15);
-    }
+
   } // if (CheckEvent)
   return;
 }
@@ -260,6 +322,8 @@ vector<TVector2> TMUSETTPhysics::Match_X_Y() {
     return ArrayOfGoodCouple;
   }
 
+
+  //std::cout << "multX = " << m_DSSDXEMult << ", multY = " << m_DSSDYEMult << std::endl;
   for (unsigned int i = 0; i < m_DSSDXEMult; i++) {
     for (unsigned int j = 0; j < m_DSSDYEMult; j++) {
 
@@ -275,7 +339,7 @@ vector<TVector2> TMUSETTPhysics::Match_X_Y() {
         double DSSDXNbr    = m_PreTreatedData->GetDSSDXEStripNbr(i);
         double DSSDYEnergy = m_PreTreatedData->GetDSSDYEEnergy(j);
         double DSSDYNbr    = m_PreTreatedData->GetDSSDYEStripNbr(j);
-        
+
 
         //   Look if energy match
         if (abs((DSSDXEnergy - DSSDYEnergy) / 2.)
@@ -293,20 +357,33 @@ vector<TVector2> TMUSETTPhysics::Match_X_Y() {
     }
   }
 
+  //std::cout << "Size before treatment : " << ArrayOfGoodCouple.size() << std::endl;
+  //m_all+=ArrayOfGoodCouple.size();
   // Prevent to treat event with ambiguous matching beetween X and Y
+  /*
   map<int, int>::iterator itX = m_HitDSSDX.begin();
   for (; itX != m_HitDSSDX.end(); itX++) {
     if (itX->second > 1) {
+      m_rejected+=ArrayOfGoodCouple.size();
       ArrayOfGoodCouple.clear();
     }
   }
 
+  //std::cout << "    Size after X : " << ArrayOfGoodCouple.size() << std::endl;
+
+
   map<int, int>::iterator itY = m_HitDSSDY.begin();
   for (; itY != m_HitDSSDY.end(); itY++) {
     if (itY->second > 1) {
+      m_rejected+=ArrayOfGoodCouple.size();
       ArrayOfGoodCouple.clear();
     }
   }
+  */
+
+  //std::cout << "    Size after Y : " << ArrayOfGoodCouple.size() << std::endl;
+  //std::cout << "-> rej/all = " << (double) m_rejected/m_all << std::endl;
+  //std::cout << std::endl;
 
   m_HitDSSDX.clear();
   m_HitDSSDY.clear();
@@ -316,7 +393,7 @@ vector<TVector2> TMUSETTPhysics::Match_X_Y() {
 
 ////////////////////////////////////////////////////////////////////////////
 bool TMUSETTPhysics::IsValidChannel(const int& Type, const int& telescope, const int& channel) {
-  
+
   if (Type == 0 && channel >= StripLimit && channel <= 127 - StripLimit){
     return *(m_XChannelStatus[telescope].begin() + channel);
   }
@@ -339,20 +416,20 @@ void TMUSETTPhysics::ReadAnalysisConfig() {
   for (unsigned int i = 0; i < blocks.size(); i++) {
     if(blocks[i]->HasToken("MAX_STRIP_MULTIPLICITY"))
       m_MaximumStripMultiplicityAllowed = blocks[i]->GetInt("MAX_STRIP_MULTIPLICITY");
-    
+
     if(blocks[i]->HasToken("STRIP_ENERGY_MATCHING"))
       m_StripEnergyMatching = blocks[i]->GetDouble("STRIP_ENERGY_MATCHING","MeV");
-    
+
     if(blocks[i]->HasToken("DISABLE_CHANNEL_X")){
       vector<int> v = blocks[i]->GetVectorInt("DISABLE_CHANNEL_X");
       *(m_XChannelStatus[v[0]].begin() + v[1] - 1) = false;
     }
-    
+
     if(blocks[i]->HasToken("DISABLE_CHANNEL_Y")){
       vector<int> v = blocks[i]->GetVectorInt("DISABLE_CHANNEL_Y");
       *(m_YChannelStatus[v[0]].begin() + v[1] - 1) = false;
     }
-    
+
     if(blocks[i]->HasToken("DISABLE_ALL")){
       int telescope = blocks[i]->GetInt("DISABLE_ALL");
       vector<bool> ChannelStatus;
@@ -396,23 +473,28 @@ void TMUSETTPhysics::ReadAnalysisConfig() {
 ///////////////////////////////////////////////////////////////////////////
 void TMUSETTPhysics::Clear() {
   EventMultiplicity = 0;
-  RelativeAngle = -1000;
+  EventTrigger = 0;
   DetectorNumber.clear();
-  EventType.clear();
-  TotalEnergy.clear();
 
   PosX.clear();
   PosY.clear();
   PosZ.clear();
 
-  // DSSD 
+  // DSSD
   DSSD_E.clear();
+  DSSD_E_X.clear();
+  DSSD_E_Y.clear();
   DSSD_T.clear();
+  DSSD_T_X.clear();
+  DSSD_T_Y.clear();
   DSSD_X.clear();
   DSSD_Y.clear();
-  SRa220 = -1000;
-  SRn216 = -1000;
-
+  /*
+  DSSD_E_X_TRIG.clear();
+  DSSD_E_Y_TRIG.clear();
+  DSSD_T_X_TRIG.clear();
+  DSSD_T_Y_TRIG.clear();
+  */
 
 }
 
@@ -508,6 +590,7 @@ void TMUSETTPhysics::AddParameterToCalibrationManager() {
   vector<double> standardT    = {-1000, 1000. / 8192.};
 
 
+
   for (int i = 0; i < m_NumberOfDetector; i++) {
 
     for (int j = 0; j < 128; j++) {
@@ -547,6 +630,7 @@ void TMUSETTPhysics::InitializeRootInputPhysics() {
   TChain* inputChain = RootInput::getInstance()->GetChain();
   inputChain->SetBranchStatus("MUSETT", true);
   inputChain->SetBranchStatus("EventMultiplicity", true);
+  inputChain->SetBranchStatus("EventTrigger", true);
   inputChain->SetBranchStatus("EventType", true);
   inputChain->SetBranchStatus("DetectorNumber", true);
   inputChain->SetBranchStatus("Si_E", true);
@@ -594,7 +678,7 @@ void TMUSETTPhysics::AddDetector(TVector3 C_X1_Y1, TVector3 C_X128_Y1,
   double Base,Height;
   Base          = 100.00; // mm
   Height        = 100.00; // mm
-  
+
   //double Face          = 98; // mm
   double NumberOfStrip = 128;
   double StripPitchBase    = Base / NumberOfStrip; // mm
@@ -610,12 +694,12 @@ void TMUSETTPhysics::AddDetector(TVector3 C_X1_Y1, TVector3 C_X128_Y1,
 
   //   Moving StripCenter to 1.1 corner:
  // Strip_1_1 = C_X1_Y1 + U  * (StripPitchBase / 2.) + V * (StripPitchHeight / 2.);
-  // This calculation recenter the strip around the detector center. 
+  // This calculation recenter the strip around the detector center.
   // This account for cases where the provided corner coordinates
   // does not match the detector size
   TVector3 Center = 0.25*(C_X1_Y128 + C_X128_Y128 + C_X1_Y1 + C_X128_Y1);
   Strip_1_1 = Center-(0.5*Base*U+0.5*Height*V) + U  * (StripPitchBase / 2.) + V * (StripPitchHeight / 2.);
- 
+
   for (int i = 0; i < 128; ++i) {
     lineX.clear();
     lineY.clear();
@@ -750,33 +834,33 @@ TVector3 TMUSETTPhysics::GetPositionOfInteraction(const int i,bool random) {
     = TVector3(GetStripPositionX(DetectorNumber[i], DSSD_X[i], DSSD_Y[i]),
         GetStripPositionY(DetectorNumber[i], DSSD_X[i], DSSD_Y[i]),
         GetStripPositionZ(DetectorNumber[i], DSSD_X[i], DSSD_Y[i]));
-
   return Position;
 }
 
 ///////////////////////////////////////////////////////////////////////////////
-double TMUSETTPhysics::GetRelativeAngle() {
+/*double TMUSETTPhysics::GetRelativeAngle() {
   TVector3 Position0= TVector3(PosX[0],PosY[0],PosZ[0]);
   TVector3 Position1= TVector3(PosX[1],PosY[1],PosZ[1]);
-  
+
   //std::cout << Position0.Angle(Position1)/(TMath::Pi())*180 << std::endl;
   //std::cout << DetectorNumber[0] << " " << DetectorNumber[0] << std::endl;
   //std::cout << DetectorNumber[1] << " " << DetectorNumber[1] << std::endl;
-  
+
   //std::cout << PosX[0] << " " << PosY[0] << " " << PosZ[0] << std::endl;
   //std::cout << PosX[1] << " " << PosY[1] << " " << PosZ[1] << std::endl;
   //std::cout << std::endl;
   return Position0.Angle(Position1)/(TMath::Pi())*180;
 }
-
+*/
+/*
 double TMUSETTPhysics::GetS(const unsigned int A, const unsigned int Q2A) {
   double eta = DSSD_E[0]/DSSD_E[1];
   if(eta > 1) eta = 1./eta;
   double epsilon = 4./A;
-  return Q2A/(1.+epsilon+ (2.*epsilon*pow(eta,1./2.)*cos(RelativeAngle*TMath::Pi()/180.))/(eta + 1.));  
-  
-}
+  return Q2A/(1.+epsilon+ (2.*epsilon*pow(eta,1./2.)*cos(RelativeAngle*TMath::Pi()/180.))/(eta + 1.));
 
+}
+*/
 ///////////////////////////////////////////////////////////////////////////////
 TVector3 TMUSETTPhysics::GetDetectorNormal(const int i) {
   TVector3 U = TVector3(GetStripPositionX(DetectorNumber[i], 128, 1),
@@ -812,7 +896,7 @@ namespace MUSETT_LOCAL {
     name += NPL::itoa(m_EventData->GetDSSDXEStripNbr(i));
     name += "_E";
     return CalibrationManager::getInstance()->ApplyCalibration(
-        name, m_EventData->GetDSSDXEEnergy(i),1);
+        name, m_EventData->GetDSSDXEEnergy(i),0);
   }
 
   double fDSSD_X_T(const TMUSETTData* m_EventData, const int& i) {
@@ -823,7 +907,7 @@ namespace MUSETT_LOCAL {
     name += NPL::itoa(m_EventData->GetDSSDXTStripNbr(i));
     name += "_T";
     return CalibrationManager::getInstance()->ApplyCalibration(
-        name, m_EventData->GetDSSDXTTime(i),1);
+        name, m_EventData->GetDSSDXTTime(i),0);
   }
 
   //   Y
@@ -835,7 +919,7 @@ namespace MUSETT_LOCAL {
     name += NPL::itoa(m_EventData->GetDSSDYEStripNbr(i));
     name += "_E";
     return CalibrationManager::getInstance()->ApplyCalibration(
-        name, m_EventData->GetDSSDYEEnergy(i),1);
+        name, m_EventData->GetDSSDYEEnergy(i),0);
   }
 
   double fDSSD_Y_T(const TMUSETTData* m_EventData, const int& i) {
@@ -846,7 +930,7 @@ namespace MUSETT_LOCAL {
     name += NPL::itoa(m_EventData->GetDSSDYTStripNbr(i));
     name += "_T";
     return CalibrationManager::getInstance()->ApplyCalibration(
-        name, m_EventData->GetDSSDYTTime(i),1);
+        name, m_EventData->GetDSSDYTTime(i),0);
   }
 }
 
@@ -871,4 +955,4 @@ extern "C" {
   };
 
   proxy_MUSETT p_MUSETT;
-}
\ No newline at end of file
+}
diff --git a/NPLib/Detectors/MUSETT/TMUSETTPhysics.h b/NPLib/Detectors/MUSETT/TMUSETTPhysics.h
index faeee33ea40363b080e4efe7d0ea392e8297e1cc..9ec02fd96d2cd7cd95bfdffa86c04862c4168a9f 100644
--- a/NPLib/Detectors/MUSETT/TMUSETTPhysics.h
+++ b/NPLib/Detectors/MUSETT/TMUSETTPhysics.h
@@ -18,13 +18,14 @@
  *                                                                           *
  *---------------------------------------------------------------------------*
  * Comment:                                                                  *
- *                                                                           *   
+ *                                                                           *
  *                                                                           *
  *****************************************************************************/
 
 // STL
 #include <map>
 #include <vector>
+#include <string>
 // NPL
 #include "NPCalibrationManager.h"
 #include "NPInputParser.h"
@@ -62,30 +63,36 @@ class TMUSETTPhysics : public TObject, public NPL::VDetector {
   //   Provide Physical Multiplicity
   Int_t EventMultiplicity;
 
-  //   Provide a Classification of Event
-  vector<int> EventType;
+  Int_t EventTrigger;
+
 
   // Detector
   vector<int> DetectorNumber;
    //   DSSD
   vector<double> DSSD_E;
+  vector<double> DSSD_E_X;
+  vector<double> DSSD_E_Y;
   vector<double> DSSD_T;
+  vector<double> DSSD_T_X;
+  vector<double> DSSD_T_Y;
   vector<int>    DSSD_X;
   vector<int>    DSSD_Y;
 
+  //Garder E_x, E_y, T_x, T_y
+
+
+  //Rajouter strip number
   vector<double> PosX;
   vector<double> PosY;
   vector<double> PosZ;
   vector<double> Theta;//!
 
-  // Physical Value
-  vector<double> TotalEnergy;
-  double RelativeAngle;
-  double SRa220;
-  double SRn216;
+
+
+
 
   private:
- 
+
 
   public: //   Innherited from VDetector Class
   //   Read stream at ConfigFile to pick-up parameters of detector
@@ -157,7 +164,7 @@ class TMUSETTPhysics : public TObject, public NPL::VDetector {
   //   ie: all channel enable, maximum multiplicity for strip = number of
   //   telescope
   void InitializeStandardParameter();
-  
+
   //   Read the user configuration file; if no file found, load standard one
   void ReadAnalysisConfig();
 
@@ -181,11 +188,11 @@ class TMUSETTPhysics : public TObject, public NPL::VDetector {
   TMUSETTData* GetRawData() const { return m_EventData; }
   TMUSETTData* GetPreTreatedData() const { return m_PreTreatedData; }
 
-  
+
   // Use to access the strip position
   double GetStripPositionX(const int N, const int X, const int Y) {
     // if (N==9)
-    // cout << N << " " << X << " " << Y << " " << m_DetectorNumberIndex[N] << " " << m_StripPositionX[ m_DetectorNumberIndex[N] - 1][X - 1][Y - 1] << endl; 
+    // cout << N << " " << X << " " << Y << " " << m_DetectorNumberIndex[N] << " " << m_StripPositionX[ m_DetectorNumberIndex[N] - 1][X - 1][Y - 1] << endl;
     return m_StripPositionX[N][X][Y];
   };
   double GetStripPositionY(const int N, const int X, const int Y) {
@@ -200,7 +207,10 @@ class TMUSETTPhysics : public TObject, public NPL::VDetector {
   // To be called after a build Physical Even
   int GetEventMultiplicity() const { return EventMultiplicity; };
 
-  double GetEnergyDeposit(const int i) const { return TotalEnergy[i]; };
+  int GetEventTrigger() const {return EventTrigger;};
+
+
+  //double GetEnergyDeposit(const int i) const { return TotalEnergy[i]; };
 
   TVector3 GetPositionOfInteraction(const int i,bool random=false) ;
   TVector3 GetDetectorNormal(const int i) ;
@@ -214,7 +224,7 @@ class TMUSETTPhysics : public TObject, public NPL::VDetector {
   bool m_Take_E_Y; //!
   bool m_Take_T_Y; //!
 
-  UShort_t StripLimit = 10;
+  UShort_t StripLimit = 0; //!
 
   //   Event over this value after pre-treatment are not treated / avoid long
   //   treatment time on spurious event
@@ -232,6 +242,7 @@ class TMUSETTPhysics : public TObject, public NPL::VDetector {
   double m_DSSD_Y_E_Threshold; //!
   double m_SecondLayer_E_Threshold; //!
 
+
   private: //   Root Input and Output tree classes
   TMUSETTData*    m_EventData; //!
   TMUSETTData*    m_PreTreatedData; //!
@@ -276,9 +287,9 @@ namespace MUSETT_LOCAL {
   double fDSSD_Y_E(const TMUSETTData* Data, const int& i);
   double fDSSD_Y_T(const TMUSETTData* Data, const int& i);
 
-  //  Second Layer 
+  //  Second Layer
   double fSecondLayer_E(const TMUSETTData* Data, const int& i);
   double fSecondLayer_T(const TMUSETTData* Data, const int& i);
 }
 
-#endif
\ No newline at end of file
+#endif
diff --git a/NPLib/Detectors/MUSETT/TMUSETTSpectra.cxx b/NPLib/Detectors/MUSETT/TMUSETTSpectra.cxx
index 4829174ac2fa4d743bf2221526825958dabc7797..b94e73c16a9adc45c970c782005444cc657c905a 100644
--- a/NPLib/Detectors/MUSETT/TMUSETTSpectra.cxx
+++ b/NPLib/Detectors/MUSETT/TMUSETTSpectra.cxx
@@ -31,7 +31,7 @@ using namespace NPUNITS;
 
 // STL
 #include <stdexcept>
-#include <iostream>  
+#include <iostream>
 #include <cstdlib>
 #include <string>
 #include <map>
@@ -49,13 +49,13 @@ TMUSETTSpectra::TMUSETTSpectra(){
 TMUSETTSpectra::TMUSETTSpectra(std::map<int,int> DetectorIndex){
   if(NPOptionManager::getInstance()->GetVerboseLevel()>0)
     std::cout << "************************************************" << std::endl
-      << "TMUSETTSpectra : Initalising control spectra for " 
+      << "TMUSETTSpectra : Initalising control spectra for "
       << DetectorIndex.size() << " Detectors" << std::endl
       << "************************************************" << std::endl ;
 
   SetName("MUSETT");
   for(std::map<int,int>::iterator it=DetectorIndex.begin() ; it!=DetectorIndex.end() ; it++){
-    fDetectorToIndex[it->second-1]=it->first; 
+    fDetectorToIndex[it->second-1]=it->first;
     }
 
   fIndexToDetector=DetectorIndex;
@@ -79,7 +79,7 @@ void TMUSETTSpectra::InitRawSpectra(){
   static string name;
   for (unsigned int i = 0; i < fDetectorToIndex.size(); i++) { // loop on number of detectors
     TString nbr = NPL::itoa(fDetectorToIndex[i]);
-    
+
     // STRX_E_RAW
     name = "MG"+NPL::itoa(fDetectorToIndex[i])+"_STRX_E_RAW";
     // AddHisto2D(name, name, fStripX, 1, fStripX+1, 512, 8192, 16384,  "MUSETT/RAW/STRXE");
@@ -196,14 +196,14 @@ void TMUSETTSpectra::FillRawSpectra(TMUSETTData* RawData){
   static string name;
   static string family;
 
-  // STRX_E 
+  // STRX_E
   unsigned int size = RawData->GetDSSDXEMult();
   for (unsigned int i = 0; i < size ; i++) {
     name = "MG"+NPL::itoa( RawData->GetDSSDXEDetectorNbr(i))+"_STRX_E_RAW";
     family = "MUSETT/RAW/STRXE";
 
     FillSpectra(family,name
-        ,RawData->GetDSSDXEStripNbr(i), 
+        ,RawData->GetDSSDXEStripNbr(i),
         RawData->GetDSSDXEEnergy(i));
   }
 
@@ -254,7 +254,7 @@ void TMUSETTSpectra::FillPreTreatedSpectra(TMUSETTData* PreTreatedData){
     family = "MUSETT/CAL/STRXE";
 
     FillSpectra(family,name
-        ,PreTreatedData->GetDSSDXEStripNbr(i), 
+        ,PreTreatedData->GetDSSDXEStripNbr(i),
         PreTreatedData->GetDSSDXEEnergy(i));
   }
   // STRY_E
@@ -264,7 +264,7 @@ void TMUSETTSpectra::FillPreTreatedSpectra(TMUSETTData* PreTreatedData){
     family = "MUSETT/CAL/STRYE";
 
     FillSpectra(family,name
-        ,PreTreatedData->GetDSSDYEStripNbr(i), 
+        ,PreTreatedData->GetDSSDYEStripNbr(i),
         PreTreatedData->GetDSSDYEEnergy(i));
   }
 
@@ -288,7 +288,7 @@ void TMUSETTSpectra::FillPreTreatedSpectra(TMUSETTData* PreTreatedData){
     family = "MUSETT/CAL/STRXT";
 
     FillSpectra(family,name
-        ,PreTreatedData->GetDSSDXTStripNbr(i), 
+        ,PreTreatedData->GetDSSDXTStripNbr(i),
         PreTreatedData->GetDSSDXTTime(i));
   }
   // STRY_T
@@ -298,7 +298,7 @@ void TMUSETTSpectra::FillPreTreatedSpectra(TMUSETTData* PreTreatedData){
     family = "MUSETT/CAL/STRYT";
 
     FillSpectra(family,name
-        ,PreTreatedData->GetDSSDYTStripNbr(i), 
+        ,PreTreatedData->GetDSSDYTStripNbr(i),
         PreTreatedData->GetDSSDYTTime(i));
   }
 }
@@ -325,4 +325,3 @@ void TMUSETTSpectra::FillPhysicsSpectra(TMUSETTPhysics* Physics){
   }
 
 }
-
diff --git a/NPLib/Detectors/MUSETT/ressources/Mask.cxx b/NPLib/Detectors/MUSETT/ressources/Mask.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..f04ccde3759eda15136db45bea23a558b8f4ee00
--- /dev/null
+++ b/NPLib/Detectors/MUSETT/ressources/Mask.cxx
@@ -0,0 +1,66 @@
+void Mask(){
+
+  unsigned int strips = 128 ;
+  double dimension = 100.42;
+  double active = 97.22;
+  double pitch = active/strips;
+  double width = 0.7;
+//
+//  double dimension = 100;
+//  double active = 97;
+//  double pitch = 97/97;
+//  double width = 0.5;
+
+  // mm per pixel
+  double scale = 97.22/12800;
+  //pitch in pixel
+  unsigned int spitch = pitch/scale;
+  unsigned int swidth  = width/scale;
+  unsigned int sinter = (pitch - width)/(scale);
+  cout << spitch << " " << swidth << " " << sinter << endl;
+  // image size
+  unsigned int size = dimension/scale;
+  cout << "Image size: " << size << "x" << size<< endl ;
+  double* zargb = new double[size*size];
+  TASImage* mask = new TASImage("mask",zargb,size,size,0);
+  unsigned int* argb = mask->GetArgbArray();
+  unsigned int* argb2 = mask->GetArgbArray();
+  unsigned int index = 0;
+  double border1 = 0.5*(dimension-active);
+  double border2 = (border1+strips*pitch); //(active)/scale+border1;
+  unsigned int sborder1=border1/scale;
+  unsigned int sborder2=border2/scale;
+
+  for(unsigned int px = 0 ; px < size ; px++){
+    for(unsigned int py = 0 ; py < size ; py++){
+      if(px%1000==0)
+        cout << "\r" << px << "/" << size << flush;
+      // Compute array index
+      index = px * size + py;
+      // Inactive sides
+      if(px < sborder1|| py < sborder1 || px > sborder2 || py > sborder2)
+        //argb[index] = 0xffff0000;
+        argb[index] = 0;
+      else{ // strips
+        unsigned int coord = px-border1;
+        unsigned int nbr = coord/spitch;
+       // cout << coord << " " << nbr*spitch+sinter << " " << spitch << " " << sinter << " " << spitch << " " << sinter << endl;
+
+        if(coord<(nbr*spitch+sinter))
+        // interstrip
+          //argb[index] = 0xffff0000+(((nbr-1))<<8)+nbr-2;
+          argb[index] = (((nbr-1))<<8)+nbr-2;
+        else if (nbr-1 < strips+1)
+          //argb[index] = 0xff000000 + nbr-1;
+          argb[index] = nbr-1;
+        else
+          //argb[index] = 0xffff0000;
+          argb[index] = 0;
+      }
+    }
+  }
+  mask->WriteImage("mask.png");
+  delete[] zargb;
+  //mask->Draw();
+
+}
diff --git a/NPLib/Detectors/PISTA/TFPMWPhysics.cxx b/NPLib/Detectors/PISTA/TFPMWPhysics.cxx
index 566ef5aabd376f41bb4202267ea03bde16cb60cf..dfd33c0f420d04c7a4981d25c303500b69a030a4 100644
--- a/NPLib/Detectors/PISTA/TFPMWPhysics.cxx
+++ b/NPLib/Detectors/PISTA/TFPMWPhysics.cxx
@@ -28,8 +28,9 @@
 #include <cmath>
 #include <stdlib.h>
 #include <limits>
+#include <filesystem>
 using namespace std;
-
+ 
 //   NPL
 #include "RootInput.h"
 #include "RootOutput.h"
@@ -82,7 +83,6 @@ void TFPMWPhysics::BuildSimplePhysicalEvent() {
 ///////////////////////////////////////////////////////////////////////////
 void TFPMWPhysics::BuildPhysicalEvent() {
   PreTreat();
-
   unsigned int sizeX = m_PreTreatedData->GetFPMWMultX();
   for(unsigned int i=0; i<sizeX; i++){
     DetectorHitX.insert(m_PreTreatedData->GetFPMW_DetX(i));
@@ -96,7 +96,6 @@ void TFPMWPhysics::BuildPhysicalEvent() {
   }
   unsigned int sizeDet = DetectorHit.size();
 
-
   for(unsigned int i=0; i<sizeX; i++){
     int StrX = m_PreTreatedData->GetFPMW_StripX(i);
     int NX = m_PreTreatedData->GetFPMW_DetX(i);
@@ -104,6 +103,8 @@ void TFPMWPhysics::BuildPhysicalEvent() {
     if(DetectorHit.find(NX) != DetectorHit.end()){
       MapX[NX].push_back(std::make_pair(StrX,QX));
       QSumX[NX] += QX;
+      ChargeX.push_back(QX);
+      DetX.push_back(NX);
       if(MaxQX.find(NX)==MaxQX.end() || MaxQX[NX].second<QX){
         MaxQX[NX] = make_pair(StrX,QX);
         //QXmax[NX] = QX;
@@ -118,6 +119,8 @@ void TFPMWPhysics::BuildPhysicalEvent() {
     if(DetectorHit.find(NY) != DetectorHit.end()){
       MapY[NY].push_back(std::make_pair(StrY,QY));
       QSumY[NY] += QY;
+      ChargeY.push_back(QY);
+      DetY.push_back(NY);
       if(MaxQY.find(NY)==MaxQY.end() || MaxQY[NY].second<QY){
         MaxQY[NY] = make_pair(StrY,QY);
         //QYmax[NY] = QY;
@@ -149,16 +152,199 @@ void TFPMWPhysics::BuildPhysicalEvent() {
     int sy1 = sy0+1;
 
     DetectorNbr.push_back(DetN);
-    ChargeX.push_back(QSumX[DetN]);
-    ChargeY.push_back(QSumY[DetN]);
+    //ChargeX.push_back(QSumX[DetN]);
+    //ChargeY.push_back(QSumY[DetN]);
     PositionX.push_back(PosX);
     PositionY.push_back(PosY);
-  }
+    
+    //Here we linearise the position if the yaml file is found
+    if (LoadLinea == true){
+      int IndexX = (DetN-1) * 2;
+      double LinPosX = -1000, LinPosY = -1000;
+      if (PosX > -1000){
+        for (int binX = 0; binX < EdgeBinDet[IndexX].size() - 1; binX++) {
+          // If X is in the correct range
+          if (EdgeBinDet[IndexX][binX].size() != 0) {
+            if (PosX >= EdgeBinDet[IndexX][binX][0] &&
+                PosX < EdgeBinDet[IndexX][binX]
+                [EdgeBinDet[IndexX][binX].size() - 1]) {
+              // Apply the coorect transformation to X
+              LinPosX = LinearisePos(PosX, EdgeBinDet[IndexX][binX],
+                  NewEdgeBinDet[IndexX][binX]);
+              LinPositionX.push_back(LinPosX);
+
+            } // end check in range
+          }   // end check empty
+        }     // end loop mmX
+      } // END CHECK
+      else {
+        LinPositionX.push_back(-1000);
+      } 
+      int IndexY = (DetN-1) * 2 + 1;
+      if (PosY > -1000){
+        for (int binY = 0; binY < EdgeBinDet[IndexY].size() - 1;
+            binY++) {
+          if (EdgeBinDet[IndexY][binY].size() != 0) {
+            if (PosY >= EdgeBinDet[IndexY][binY][0] &&
+                PosY < EdgeBinDet[IndexY][binY]
+                [EdgeBinDet[IndexY][binY].size() - 1]) {
+              LinPosY = LinearisePos(PosY, EdgeBinDet[IndexY][binY],
+                  NewEdgeBinDet[IndexY][binY]);
+              LinPositionY.push_back(LinPosY);
+            } // end check in range
+          }   // End non empty
+        }     // End loop BINY
+      }       // If real event END
+      else {
+        LinPositionY.push_back(-1000);
+      }
+    }
+    else {
+      LinPositionX.push_back(-1000);  
+      LinPositionY.push_back(-1000);
+    }
+  } //End Linea
 
   CalculateFocalPlanePosition(m_Zf);
   CalculateTargetPosition();
 }
+/////////////////////////////////////////////////////////////////////
+double TFPMWPhysics::LinearisePos(double X, vector<double> &EdgeBin,
+    vector<double> &NewEdgeBin) {
+  // ************************************************************************
+  // Transform an inputed reconstructed position in order to linearise the
+  // distribution of event in a FPMW.
+  //
+  // Input :
+  //    EdgeBin : The range of the bin of the FPMW to treat, this vector is
+  //    generated by LinearisationYaml.cxx
+  //
+  //    NewEdgeBin : The corresponding vector of new bin associated to each old
+  //    bin of the FPMW. Those bins have a size made to linearise the
+  //    distribution. They are also generated by LinearisationYaml.cxx
+  //
+  //    X : The reconstructed position before linearisation
+  // Output :
+  //    Xnew : The reconstructed position after linearisation.
+  // ************************************************************************
+  double XNew = -1000;
+  bool TransfoDone = false;
+  for (int i = 0; i < EdgeBin.size() - 1; i++) {
+    if (X >= EdgeBin[i] && X < EdgeBin[i + 1]) {
+
+      if (TransfoDone == true ) {
+        continue;
+      }
 
+      double Xold = X;
+      double Scale2 = (X - EdgeBin[i]) / (EdgeBin[i + 1] - EdgeBin[i]);
+      XNew = Scale2 * (NewEdgeBin[i + 1] - NewEdgeBin[i]) + NewEdgeBin[i];
+      TransfoDone = true;
+    }
+  }
+  return XNew;
+} // end transfo x
+
+
+/////////////////////////////////////////////////////////////////////////
+
+void TFPMWPhysics::LoadLineaFromFile(vector<vector<vector<double>>> &vec1, vector<vector<vector<double>>> &vec2, const string &filename) {
+  ifstream inFile(filename);
+  if (!inFile.is_open()) {
+    cerr << "Unable to open file for reading: " << filename << endl;
+    return;
+  }
+
+  vec1.clear();
+  vec2.clear();
+  vector<vector<vector<double>>>* currentVec = &vec1;
+  string line;
+  vector<vector<double>> det;
+  vector<double> bin;
+
+  while (getline(inFile, line)) {
+    if (line.find("Vector 2:") != string::npos) {
+      if (!bin.empty()) {
+        det.push_back(bin);
+        bin.clear();
+      }
+      if (!det.empty()) {
+        vec1.push_back(det);
+        det.clear();
+      }
+      currentVec = &vec2;
+      continue;
+    }
+
+    if (line.find("Det") != string::npos) {
+      if (!bin.empty()) {
+        det.push_back(bin);
+        bin.clear();
+      }
+      if (!det.empty()) {
+        currentVec->push_back(det);
+        det.clear();
+      }
+      continue;
+    }
+
+    if (line.find("Bin") != string::npos) {
+      if (!bin.empty()) {
+        det.push_back(bin);
+        bin.clear();
+      }
+      istringstream iss(line.substr(line.find(":") + 1));
+      double value;
+      while (iss >> value) {
+        bin.push_back(value);
+      }
+      det.push_back(bin);
+      bin.clear();
+      continue;
+    }
+
+    if (line.empty()) {
+      if (!bin.empty()) {
+        det.push_back(bin);
+        bin.clear();
+      }
+      if (!det.empty()) {
+        currentVec->push_back(det);
+        det.clear();
+      }
+    }
+  }
+
+  if (!bin.empty()) {
+    det.push_back(bin);
+  }
+  if (!det.empty()) {
+    currentVec->push_back(det);
+  }
+
+  inFile.close();
+}
+
+/////////////////////////////////////////////////////////////////////////
+// Function to calculate memory usage of a 3D vector
+double TFPMWPhysics::calculate_memory_usage(vector<vector<vector<double>>>& vec) {
+  double total_memory = 0;
+
+  // Memory for the outer vector
+  total_memory += vec.capacity() * sizeof(vector<vector<double>>);
+
+  for (auto& mid_vec : vec) {
+    // Memory for the middle vectors
+    total_memory += mid_vec.capacity() * sizeof(vector<double>);
+
+    for (auto& inner_vec : mid_vec) {
+      // Memory for the inner vectors
+      total_memory += inner_vec.capacity() * sizeof(double);
+    }
+  }
+
+  return total_memory;
+}
 /////////////////////////////////////////////////////////////////////
 void TFPMWPhysics::CalculateFocalPlanePosition(double Zf){
 
@@ -173,18 +359,35 @@ void TFPMWPhysics::CalculateFocalPlanePosition(double Zf){
     double t = (Z3-Zf)/(Z2-Zf);
     Xf = 1./(t-1)*(t*X2-X3);
     Thetaf = atan((X3-X2)/(Z3-Z2));
-    
+
     Z2 = DetPosZ[2]+m_GapSize;
     Z3 = DetPosZ[3]+m_GapSize;
     Yf = 1./(t-1)*(t*Y2-Y3);
-  }
 
+    if (LoadLinea == true){
+      Z2 = DetPosZ[2]-m_GapSize;
+      Z3 = DetPosZ[3]-m_GapSize; 
+      double X2Lin = LinPositionX[2];
+      double X3Lin = LinPositionX[3];
+      double Y2Lin = LinPositionY[2];
+      double Y3Lin = LinPositionY[3];
+
+      double t = (Z3-Zf)/(Z2-Zf);
+      XfLin = 1./(t-1)*(t*X2Lin-X3Lin);
+      ThetafLin = atan((X3Lin-X2Lin)/(Z3-Z2));
+
+      Z2 = DetPosZ[2]+m_GapSize;
+      Z3 = DetPosZ[3]+m_GapSize;
+      YfLin = 1./(t-1)*(t*Y2Lin-Y3Lin);
+
+    } //end load yaml true
+  }
 }
 
 /////////////////////////////////////////////////////////////////////
 void TFPMWPhysics::CalculateTargetPosition(){
 
-  if(PositionX.size()>1){
+  if(PositionX.size()>1 && PositionY.size()>1){
     double Z0 = DetPosZ[0]-m_GapSize;
     double Z1 = DetPosZ[1]-m_GapSize;
     double X0 = PositionX[0];
@@ -196,12 +399,31 @@ void TFPMWPhysics::CalculateTargetPosition(){
     Z0 = DetPosZ[0]+m_GapSize;
     Z1 = DetPosZ[1]+m_GapSize;
     Yt = (1./(Z1-Z0))*(Y0*Z1-Y1*Z0);
-
     Z0 = DetPosZ[0];
     Z1 = DetPosZ[1];
     //TVector3 vFF = TVector3(X1-X0,Y1-Y0,Z1-Z0);
     Theta_in = atan((X1-X0)/(Z1-Z0));
     Phi_in = atan((Y1-Y0)/(Z1-Z0));
+
+    if (LoadLinea == true){
+      double Z0Lin = DetPosZ[0]-m_GapSize;
+      double Z1Lin = DetPosZ[1]-m_GapSize;
+      double X0Lin = LinPositionX[0];
+      double X1Lin = LinPositionX[1];
+      double Y0Lin = LinPositionY[0];
+      double Y1Lin = LinPositionY[1];
+      XtLin = (1./(Z1Lin-Z0Lin))*(X0Lin*Z1Lin-X1Lin*Z0Lin);
+
+      Z0Lin = DetPosZ[0]+m_GapSize;
+      Z1Lin = DetPosZ[1]+m_GapSize;
+      YtLin = (1./(Z1Lin-Z0Lin))*(Y0Lin*Z1Lin-Y1Lin*Z0Lin);
+
+      Z0Lin = DetPosZ[0];
+      Z1Lin = DetPosZ[1];
+      //TVector3 vFF = TVector3(X1-X0,Y1-Y0,Z1-Z0);
+      Theta_in_Lin = atan((X1Lin-X0Lin)/(Z1Lin-Z0Lin));
+      Phi_in_Lin = atan((Y1Lin-Y0Lin)/(Z1Lin-Z0Lin));
+    } //End Yaml
   }
 
 }
@@ -325,17 +547,26 @@ void TFPMWPhysics::PreTreat() {
     int det = m_EventData->GetFPMW_DetX(i);
     int strip = m_EventData->GetFPMW_StripX(i);
     double QX = m_EventData->GetFPMW_ChargeX(i);
-    
     double a0 = Cal->GetValue("FPMW/DET"+NPL::itoa(det)+"_STRIPX"+NPL::itoa(strip),0);
     double a1 = Cal->GetValue("FPMW/DET"+NPL::itoa(det)+"_STRIPX"+NPL::itoa(strip),1);
     double a2 = Cal->GetValue("FPMW/DET"+NPL::itoa(det)+"_STRIPX"+NPL::itoa(strip),2);
     double scale = Cal->GetValue("FPMW/DET"+NPL::itoa(det)+"_STRIPX"+NPL::itoa(strip),3);
-    double Qcal = (QX-a0)*a1 + pow(QX-a0,2)*a2;
+    QX = QX - a0 + rand.Uniform();
+    double Qcal = QX*a1 + pow(QX,2)*a2;
     Qcal = scale*Qcal;
 
-    m_PreTreatedData->SetFPMW_DetX(det);
-    m_PreTreatedData->SetFPMW_StripX(strip);
-    m_PreTreatedData->SetFPMW_ChargeX(Qcal);
+    /*if(det==1){
+      cout << "*******************" << endl;
+      cout << "strip= " << strip << endl;
+      cout << a0 << " " << a1 << " " << a2 << " " << scale << endl;
+      cout << "QX= " << QX << endl;
+      cout << "Qcal= " << Qcal << endl;
+      }*/
+    if(Qcal>100){
+      m_PreTreatedData->SetFPMW_DetX(det);
+      m_PreTreatedData->SetFPMW_StripX(strip);
+      m_PreTreatedData->SetFPMW_ChargeX(Qcal);
+    }
   }
 
   unsigned int mysizeY = m_EventData->GetFPMWMultY();
@@ -343,17 +574,20 @@ void TFPMWPhysics::PreTreat() {
     int det = m_EventData->GetFPMW_DetY(i);
     int strip = m_EventData->GetFPMW_StripY(i);
     double QY = m_EventData->GetFPMW_ChargeY(i);
-        
+
     double a0 = Cal->GetValue("FPMW/DET"+NPL::itoa(det)+"_STRIPY"+NPL::itoa(strip),0);
     double a1 = Cal->GetValue("FPMW/DET"+NPL::itoa(det)+"_STRIPY"+NPL::itoa(strip),1);
     double a2 = Cal->GetValue("FPMW/DET"+NPL::itoa(det)+"_STRIPY"+NPL::itoa(strip),2);
     double scale = Cal->GetValue("FPMW/DET"+NPL::itoa(det)+"_STRIPY"+NPL::itoa(strip),3);
-    double Qcal = (QY-a0)*a1 + pow(QY-a0,2)*a2;
+    QY = QY - a0 + rand.Uniform();
+    double Qcal = QY*a1 + pow(QY,2)*a2;
     Qcal = scale*Qcal;
 
-    m_PreTreatedData->SetFPMW_DetY(det);
-    m_PreTreatedData->SetFPMW_StripY(strip);
-    m_PreTreatedData->SetFPMW_ChargeY(Qcal);
+    if(Qcal>100){
+      m_PreTreatedData->SetFPMW_DetY(det);
+      m_PreTreatedData->SetFPMW_StripY(strip);
+      m_PreTreatedData->SetFPMW_ChargeY(Qcal);
+    }
   }
 
 }
@@ -409,6 +643,23 @@ void TFPMWPhysics::ReadAnalysisConfig() {
         cout << whatToDo << " " << m_E_Threshold << endl;
       }
 
+      else if (whatToDo == "LINEA_PATH") {
+        AnalysisConfigFile >> DataBuffer;
+
+        // ******************** Linearisation init******************
+        string FileNameLinea = DataBuffer;
+        ifstream LineaFile (FileName.c_str());	  
+        if (LineaFile){
+          cout << endl <<"/////////// Yaml Linearisation File opened ///////////" << endl;
+          LoadLineaFromFile(EdgeBinDet, NewEdgeBinDet, FileNameLinea);
+          LoadLinea = true ;
+        }
+        else if (!LineaFile){
+          perror ( "Stream didnt open");	
+        }
+        //**********************************************************
+      }
+
       else {
         ReadingStatus = false;
       }
@@ -420,11 +671,16 @@ void TFPMWPhysics::ReadAnalysisConfig() {
 ///////////////////////////////////////////////////////////////////////////
 void TFPMWPhysics::Clear() {
   DetectorNbr.clear();
+  DetX.clear();
+  DetY.clear();
   PositionX.clear();
   PositionY.clear();
   ChargeX.clear();
   ChargeY.clear();
 
+  LinPositionX.clear();
+  LinPositionY.clear();
+
   DetectorHitX.clear();
   DetectorHit.clear();
 
@@ -435,12 +691,19 @@ void TFPMWPhysics::Clear() {
 
   Xf = -1000;
   Yf = -1000;
+  XfLin = -1000;
+  YfLin = -1000; 
   Thetaf = -1000;
   Theta_in = -1000;
   Phi_in = -1000;
+  ThetafLin = -1000;
+  Theta_in_Lin = -1000;
+  Phi_in_Lin = -1000;
+
   Xt = -1000;
   Yt = -1000;
-
+  XtLin = -1000;
+  YtLin = -1000;
   /*for(int i=0; i<4; i++){
     QXmax[i] = -1;
   //QYmax[i] = -1;
diff --git a/NPLib/Detectors/PISTA/TFPMWPhysics.h b/NPLib/Detectors/PISTA/TFPMWPhysics.h
index b55f47a58eb629b03326b0d50445fca1d2f344e6..2957538a1d8caa7300e2a93029b6bbdc42606470 100644
--- a/NPLib/Detectors/PISTA/TFPMWPhysics.h
+++ b/NPLib/Detectors/PISTA/TFPMWPhysics.h
@@ -11,14 +11,14 @@
  * Original Author: P. Morfouace  contact address: pierre.morfouace@cea.fr   *
  *                                                                           *
  * Creation Date  : October 2023                                             *
- * Last update    :                                                          *
+ * Last update    : June 2024                                                *
  *---------------------------------------------------------------------------*
  * Decription:                                                               *
- *  This class hold FPMW Treated data                                *
+ *  This class hold FPMW Treated data                                        *
  *                                                                           *
  *---------------------------------------------------------------------------*
  * Comment:                                                                  *
- *                                                                           *   
+ * Don't forget  //!  On newly defined private variable                      *  
  *                                                                           *
  *****************************************************************************/
 
@@ -29,12 +29,15 @@
 #include <string>
 using namespace std;
 
+
 // ROOT headers
 #include "TObject.h"
 #include "TH1.h"
 #include "TF1.h"
 #include "TVector3.h"
 #include "TSpline.h"
+#include "TRandom3.h"
+
 // NPTool headers
 #include "TFPMWData.h"
 #include "NPCalibrationManager.h"
@@ -61,23 +64,35 @@ class TFPMWPhysics : public TObject, public NPL::VDetector {
   //////////////////////////////////////////////////////////////
   // data obtained after BuildPhysicalEvent() and stored in
   // output ROOT file
+  // NB that the order matter so if you add something do it at the end.
   public:
     vector<int>      DetectorNbr;
+    vector<int>      DetX;
+    vector<int>      DetY;
     vector<double>   PositionX;
     vector<double>   PositionY;
     vector<double>   ChargeX;
     vector<double>   ChargeY;
+    vector<double>   LinPositionX;
+    vector<double>   LinPositionY;  
     //double QXmax[4];
     //int StripXmax[4];
     //double QYmax[4];
     //int StripYmax[4];
     double Xf;
     double Yf;
+    double XfLin;
+    double YfLin;
     double Thetaf;
+    double ThetafLin;
     double Xt;
     double Yt;
+    double XtLin;
+    double YtLin;
     double Theta_in;
     double Phi_in;
+    double Theta_in_Lin;
+    double Phi_in_Lin;
 
 
   private:
@@ -88,7 +103,8 @@ class TFPMWPhysics : public TObject, public NPL::VDetector {
     vector<double>   DetPosZ;//!
     vector<vector<double>> Buffer_X_Q;//!
     vector<vector<double>> Buffer_Y_Q;//!
-    
+
+
     map<int, vector<pair<int,double>>> MapX;//!
     map<int, vector<pair<int,double>>> MapY;//!
     map<int, pair<int, double>> MaxQX;//!
@@ -96,15 +112,22 @@ class TFPMWPhysics : public TObject, public NPL::VDetector {
     map<int, double> QSumX;//!
     map<int, double> QSumY;//!
 
-
-    /// A usefull method to bundle all operation to add a detector
-  void AddDetector(TVector3 Pos); 
-  void AddDetector(double R, double Theta, double Phi); 
-  void CalculateFocalPlanePosition(double Zf);
-  void CalculateTargetPosition();
-
-  //////////////////////////////////////////////////////////////
-  // methods inherited from the VDetector ABC class
+    TRandom3 rand; //!
+    vector<vector<vector<double>>> EdgeBinDet; //! 
+    vector<vector<vector<double>>> NewEdgeBinDet; //!
+    bool LoadLinea = false;//! 
+                          /// A usefull method to bundle all operation to add a detector
+    void AddDetector(TVector3 Pos); 
+    void AddDetector(double R, double Theta, double Phi); 
+    void CalculateFocalPlanePosition(double Zf);
+    void CalculateTargetPosition();
+
+    double calculate_memory_usage(vector<vector<vector<double>>>& vec) ;
+    
+    
+    void LoadLineaFromFile(vector<vector<vector<double>>> &vec1, vector<vector<vector<double>>> &vec2, const string &filename);
+    //////////////////////////////////////////////////////////////
+    // methods inherited from the VDetector ABC class
   public:
     // read stream from ConfigFile to pick-up detector parameters
     void ReadConfiguration(NPL::InputParser);
@@ -146,8 +169,8 @@ class TFPMWPhysics : public TObject, public NPL::VDetector {
     double GetDetectorPositionZ(int Det) {return DetPosZ[Det];}
 
 
-  //////////////////////////////////////////////////////////////
-  // specific methods to FPMW array
+    //////////////////////////////////////////////////////////////
+    // specific methods to FPMW array
   public:
     // remove bad channels, calibrate the data and apply thresholds
     void PreTreat();
@@ -169,29 +192,37 @@ class TFPMWPhysics : public TObject, public NPL::VDetector {
     double AnalyticHyperbolicSecant(std::pair<int,double>& MaxQ, std::vector<std::pair<int, double>>& Map);
     double FittedHyperbolicSecant(std::pair<int,double>& MaxQ, std::vector<std::pair<int, double>>& Map);
 
+    //Linearise the reconstructed position if the yaml configuration file is
+    //present in the project.
+    //The yaml file should be in the configs directory and generated with
+    //the affiliated macro.
+
+    double LinearisePos(double X,
+        vector<double> &EdgeBin,
+        vector<double> & NewEdgeBin);
 
-  // objects are not written in the TTree
+    // objects are not written in the TTree
   private:
     TFPMWData*         m_EventData;        //!
     TFPMWData*         m_PreTreatedData;   //!
     TFPMWPhysics*      m_EventPhysics;     //!
 
-  // getters for raw and pre-treated data object
+    // getters for raw and pre-treated data object
   public:
     TFPMWData* GetRawData()        const {return m_EventData;}
     TFPMWData* GetPreTreatedData() const {return m_PreTreatedData;}
 
-  // parameters used in the analysis
+    // parameters used in the analysis
   private:
     double m_E_Threshold;     //!
     double m_Zf; //! Z focal plane position
     double m_GapSize;
 
-  // number of detectors
+    // number of detectors
   private:
     int m_NumberOfDetectors;  //!
 
-  // Static constructor to be passed to the Detector Factory
+    // Static constructor to be passed to the Detector Factory
   public:
     static NPL::VDetector* Construct();
 
diff --git a/NPLib/Detectors/PISTA/TICPhysics.cxx b/NPLib/Detectors/PISTA/TICPhysics.cxx
index 147a309c4764549a6fe889142c77c70a61ea8eca..fa6d76b07ca71f72c76358f93a312875fd3dc003 100644
--- a/NPLib/Detectors/PISTA/TICPhysics.cxx
+++ b/NPLib/Detectors/PISTA/TICPhysics.cxx
@@ -47,6 +47,7 @@ TICPhysics::TICPhysics()
   m_PreTreatedData(new TICData),
   m_EventPhysics(this),
   m_FPMW_Section(-1),
+  m_Z_SPLINE_CORRECTION(false),
   m_NumberOfDetectors(0){
   }
 
@@ -91,28 +92,33 @@ void TICPhysics::BuildPhysicalEvent() {
 
     fIC_raw[i] = m_PreTreatedData->GetIC_Charge(i);
     fIC[i] = gain*m_PreTreatedData->GetIC_Charge(i);
-
+    //fIC[i] = m_PreTreatedData->GetIC_Charge(i);
   }
 
   if(fIC[1]>0 && fIC[5]>0){
     DE = 0.5*(fIC_raw[0] + fIC_raw[1] + fIC_raw[2] + fIC_raw[3]) + fIC_raw[4];
     Eres = fIC_raw[5] + fIC_raw[6] + fIC_raw[7] + fIC_raw[8] + fIC_raw[9];
 
-    double scalor = Cal->GetValue("IC/ETOT_SCALING",0);
+    double scalor = Cal->GetValue("IC/ETOT_SCALING_SEC"+NPL::itoa(m_FPMW_Section),0);
 
     for(int i=0; i<10; i++){
       Etot += fIC[i];
     }
+    Etot = scalor*Etot;
 
-    //DE = 0.5*(fIC[0] + fIC[1] + fIC[2] + fIC[3]) + fIC[4];
-    //Eres = fIC[5] + fIC[6] + fIC[7] + fIC[8] + fIC[9];
     //Etot = 0.02411*(0.8686*fIC_raw[0]+0.7199*fIC_raw[1]+0.6233*fIC_raw[2]+0.4697*fIC_raw[3]+0.9787*fIC_raw[4]+0.9892*fIC_raw[5]+2.1038*fIC_raw[6]+1.9429*fIC_raw[7]+1.754*fIC_raw[8]+2.5*fIC_raw[9]); 
+    
+    if(m_Z_SPLINE_CORRECTION && Eres>3000 && Eres<15000){
+      Chio_Z = DE*m_Zspline->Eval(8000)/m_Zspline->Eval(Eres);
+    }
+    else Chio_Z = -1000;
 
   }
   else{
     DE = -100;
     Eres = -100;
     Etot = -100;
+    Chio_Z = -1000;
   }
 
   m_FPMW_Section = -1;
@@ -191,7 +197,12 @@ void TICPhysics::ReadAnalysisConfig() {
         m_E_Threshold = atof(DataBuffer.c_str());
         cout << whatToDo << " " << m_E_Threshold << endl;
       }
-
+      else if (whatToDo=="LOAD_Z_SPLINE"){
+        AnalysisConfigFile >> DataBuffer;
+        m_Z_SPLINE_PATH = DataBuffer;
+        cout << "*** Loading Z spline ***" << endl;
+        LoadZSpline();
+      }
       else {
         ReadingStatus = false;
       }
@@ -200,11 +211,28 @@ void TICPhysics::ReadAnalysisConfig() {
 }
 
 
+///////////////////////////////////////////////////////////////////////////
+void TICPhysics::LoadZSpline(){
+  TString filename = m_Z_SPLINE_PATH;
+  TFile* ifile = new TFile(filename,"read");
+
+  if(ifile->IsOpen()){
+    m_Z_SPLINE_CORRECTION = true;
+    m_Zspline = (TSpline3*) ifile->FindObjectAny("Z_spline");
+    cout << "*** " << m_Zspline->GetName() << " is loaded!" << endl;
+      
+  }
+  else
+    cout << "File " << filename << " not found!" << endl;
+  ifile->Close();
+}
+
 ///////////////////////////////////////////////////////////////////////////
 void TICPhysics::Clear() {
   DE = 0;
   Eres = 0;
   Etot = 0;
+  Chio_Z = 0;
   for(int i=0; i<11; i++){
     fIC[i] = 0;
     fIC_raw[i] = 0;
@@ -253,11 +281,11 @@ void TICPhysics::AddParameterToCalibrationManager() {
   CalibrationManager* Cal = CalibrationManager::getInstance();
 
   for(int section = 0; section<20; section++){
+  Cal->AddParameter("IC","ETOT_SCALING_SEC"+NPL::itoa(section),"IC_ETOT_SCALING_SEC"+NPL::itoa(section));
     for(int segment = 0; segment<11; segment++){
       Cal->AddParameter("IC","SEC"+NPL::itoa(section)+"_SEG"+NPL::itoa(segment+1)+"_ALIGN","IC_SEC"+NPL::itoa(section)+"_SEG"+NPL::itoa(segment+1)+"_ALIGN");
     }
   }
-  Cal->AddParameter("IC","ETOT_SCALING","IC_ETOT_SCALING");
 }
 
 ///////////////////////////////////////////////////////////////////////////
diff --git a/NPLib/Detectors/PISTA/TICPhysics.h b/NPLib/Detectors/PISTA/TICPhysics.h
index 9c5a0bbcc11c1357b9da8fdb81097ee1ace91867..a99d89050ad35a577053b30b1e5ad382b48205f8 100644
--- a/NPLib/Detectors/PISTA/TICPhysics.h
+++ b/NPLib/Detectors/PISTA/TICPhysics.h
@@ -64,6 +64,7 @@ class TICPhysics : public TObject, public NPL::VDetector {
     double DE;
     double Eres;
     double Etot;
+    double Chio_Z;
     double fIC[11];
     double fIC_raw[11];//! 
   private:
@@ -128,6 +129,7 @@ class TICPhysics : public TObject, public NPL::VDetector {
 
     void SetFPMWSection(int section) {m_FPMW_Section = section;}
     int GetFPMWSection() {return m_FPMW_Section;}
+    void LoadZSpline();
 
   // objects are not written in the TTree
   private:
@@ -148,6 +150,9 @@ class TICPhysics : public TObject, public NPL::VDetector {
   private:
     int m_NumberOfDetectors;  //!
     int m_FPMW_Section; //!
+    string m_Z_SPLINE_PATH; //!
+    bool m_Z_SPLINE_CORRECTION; //!
+    TSpline3* m_Zspline; //!
 
   // Static constructor to be passed to the Detector Factory
   public:
diff --git a/NPLib/Detectors/PISTA/TPISTAPhysics.cxx b/NPLib/Detectors/PISTA/TPISTAPhysics.cxx
index cffd614446e43d1a1a10cc6336ee26dea9e94fa7..01002b4e51fc4d273ff5f0f7e149b4b0bff7246b 100644
--- a/NPLib/Detectors/PISTA/TPISTAPhysics.cxx
+++ b/NPLib/Detectors/PISTA/TPISTAPhysics.cxx
@@ -48,7 +48,7 @@ ClassImp(TPISTAPhysics)
     m_EventPhysics = this;
     m_Spectra = NULL;
     m_E_RAW_Threshold = 0; // adc channels
-    m_E_Threshold = 0;     // MeV
+    m_E_Threshold = 1;     // MeV
     m_NumberOfDetectors = 0;
     m_NumberOfStripsX = 57;
     m_NumberOfStripsY = 91;
@@ -62,7 +62,7 @@ ClassImp(TPISTAPhysics)
 
 ///////////////////////////////////////////////////////////////////////////
 /// A usefull method to bundle all operation to add a detector
-void TPISTAPhysics::AddDetector(TVector3 A, TVector3 B, TVector3 C, TVector3 D){
+void TPISTAPhysics::AddDetector(TVector3 A, TVector3 B, TVector3 C, TVector3 D, int version){
   // Front Face 
   //  A------------------------B
   //   *----------------------*                      
@@ -77,11 +77,18 @@ void TPISTAPhysics::AddDetector(TVector3 A, TVector3 B, TVector3 C, TVector3 D){
   double Height = 57.7; // mm
   //double LongBase = 78.1; // mm
   double LongBase = 72.3; // mm
-  double NumberOfStripsX = m_NumberOfStripsX;
-  double NumberOfStripsY = m_NumberOfStripsY;
-  double StripPitchY = Height/NumberOfStripsY; // mm
-  double StripPitchX = LongBase/NumberOfStripsX; // mm
-
+  //double NumberOfStripsX = m_NumberOfStripsX;
+  //double NumberOfStripsY = m_NumberOfStripsY;
+ 
+  if(version==2){
+    Height= 27;
+    LongBase= 53;
+    m_NumberOfStripsX= 45;
+    m_NumberOfStripsY= 49;
+  }
+  double StripPitchY = Height/m_NumberOfStripsY; // mm
+  double StripPitchX = LongBase/m_NumberOfStripsX; // mm
+ 
   m_NumberOfDetectors++;
   m_A.push_back(A);
   m_B.push_back(B);
@@ -109,19 +116,19 @@ void TPISTAPhysics::AddDetector(TVector3 A, TVector3 B, TVector3 C, TVector3 D){
 
   TVector3 Strip_1_1;
   double ContractedStripPitchX = StripPitchX*norm/(norm+m_DistanceBetweenDEandE);
-  double ContractedLongBase = NumberOfStripsX*ContractedStripPitchX;
+  double ContractedLongBase = m_NumberOfStripsX*ContractedStripPitchX;
   double deltaX = LongBase/2-ContractedLongBase/2;
 
   //Strip_1_1 = A + u*(StripPitchX / 2.) + v*(StripPitchY / 2.);
-  Strip_1_1 = A + u*deltaX + u*(ContractedStripPitchX / 2.) + v*(NumberOfStripsY*StripPitchY - StripPitchY / 2.);
-  //Strip_1_1 = A + u*(StripPitchX / 2.) + v*(NumberOfStripsY*StripPitchY - StripPitchY / 2.);
+  Strip_1_1 = A + u*deltaX + u*(ContractedStripPitchX / 2.) + v*(m_NumberOfStripsY*StripPitchY - StripPitchY / 2.);
+  //Strip_1_1 = A + u*(StripPitchX / 2.) + v*(m_NumberOfStripsY*StripPitchY - StripPitchY / 2.);
 
   TVector3 StripPos;
-  for(int i=0; i<NumberOfStripsX; i++){
+  for(int i=0; i<m_NumberOfStripsX; i++){
     lineX.clear();
     lineY.clear();
     lineZ.clear();
-    for(int j=0; j<NumberOfStripsY; j++){
+    for(int j=0; j<m_NumberOfStripsY; j++){
       //StripPos = Strip_1_1 + i*u*StripPitchX - j*v*StripPitchY;
       StripPos = Strip_1_1 + i*u*ContractedStripPitchX - j*v*StripPitchY;
       lineX.push_back(StripPos.X());
@@ -143,40 +150,52 @@ void TPISTAPhysics::AddDetector(TVector3 A, TVector3 B, TVector3 C, TVector3 D){
 } 
 
 ///////////////////////////////////////////////////////////////////////////
-void TPISTAPhysics::AddDetector(double R, double Theta, double Phi){
+void TPISTAPhysics::AddDetector(double R, double Theta, double Phi, int version){
   m_NumberOfDetectors++;
 
+
   double Height = 61.7; // mm
-  double Base = 78.1; // mm
-  double NumberOfStripsX = 57;
-  double NumberOfStripsY = 91;
-  
-  double StripPitchHeight = Height / NumberOfStripsY; // mm
-  double StripPitchBase = Base / NumberOfStripsX; // mm
+  double LongBase = 78.1; // mm
 
+  if(version==2){
+    Height= 27;
+    LongBase= 53;
+    m_NumberOfStripsX= 45;
+    m_NumberOfStripsY= 49;
+  }
+  
+  double StripPitchY = Height/m_NumberOfStripsY; // mm
+  double StripPitchX = LongBase/m_NumberOfStripsX; // mm
+ 
 
   // Vector U on detector face (parallel to Y strips) Y strips are along X axis
-  TVector3 U;
+  TVector3 u;
   // Vector V on detector face (parallel to X strips)
-  TVector3 V;
+  TVector3 v;
   // Vector W normal to detector face (pointing to the back)
   TVector3 W;
   // Vector C position of detector face center
   TVector3 C;
+  /*C = TVector3(R*sin(Theta)*cos(Phi),
+        R*sin(Theta)*sin(Phi),
+        Height*0.5+R*cos(Theta));*/
   C = TVector3(R*sin(Theta)*cos(Phi),
         R*sin(Theta)*sin(Phi),
-        Height*0.5+R*cos(Theta));
+        R*cos(Theta));
 
-  TVector3 P = TVector3(cos(Theta)*cos(Phi),
-      cos(Theta)*sin(Phi),
-      -sin(Theta));
+
+  TVector3 P = TVector3(-cos(Theta)*cos(Phi),
+      -cos(Theta)*sin(Phi),
+      sin(Theta));
 
   W = C.Unit();
-  U = W.Cross(P);
-  V = W.Cross(U);
+  u = W.Cross(P);
+  v = W.Cross(u);
+
+  u = u.Unit();
+  v = v.Unit();
 
-  U = U.Unit();
-  V = V.Unit();
+  double norm = C.Mag();
 
   vector<double> lineX;
   vector<double> lineY;
@@ -186,21 +205,27 @@ void TPISTAPhysics::AddDetector(double R, double Theta, double Phi){
   vector<vector<double>> OneDetectorStripPositionY;
   vector<vector<double>> OneDetectorStripPositionZ;
 
-  double X, Y, Z;
-
-  // Moving C to the 1.1 Corner;
+  //double X, Y, Z;
   TVector3 Strip_1_1;
-  Strip_1_1 = C - (0.5*Base*U + 0.5*Height*V) + U*(StripPitchBase / 2.) + V*(StripPitchHeight / 2.);
+  double ContractedStripPitchX = StripPitchX*norm/(norm+m_DistanceBetweenDEandE);
+  double ContractedLongBase = m_NumberOfStripsX*ContractedStripPitchX;
+  double deltaX = LongBase/2-ContractedLongBase/2;
+
+  TVector3 A = C - 0.5*LongBase*u - 0.5*Height*v;
+  Strip_1_1 = A + u*deltaX + u*(ContractedStripPitchX / 2.) + v*(m_NumberOfStripsY*StripPitchY - StripPitchY / 2.);
 
   TVector3 StripPos;
-  for(int i=0; i<NumberOfStripsX; i++){
+  for(int i=0; i<m_NumberOfStripsX; i++){
     lineX.clear();
     lineY.clear();
     lineZ.clear();
-    for(int j=0; j<NumberOfStripsY; j++){
-      StripPos = Strip_1_1 + i*U*StripPitchBase + j*V*StripPitchHeight;
+    for(int j=0; j<m_NumberOfStripsY; j++){
+      //StripPos = Strip_1_1 + i*u*StripPitchX - j*v*StripPitchY;
+      StripPos = Strip_1_1 + i*u*ContractedStripPitchX - j*v*StripPitchY;
       lineX.push_back(StripPos.X());
+      //lineX.push_back(StripPos.X()*norm/(norm+4*abs(sin(n.Phi()))));
       lineY.push_back(StripPos.Y());
+      //lineY.push_back(StripPos.Y()*norm/(norm+4*abs(cos(n.Phi()))));
       lineZ.push_back(StripPos.Z());
     }
 
@@ -236,22 +261,6 @@ TVector3 TPISTAPhysics::GetDetectorNormal(const int i){
   v = v.Unit();
 
 
-  /*TVector3 U = TVector3(GetStripPositionX(DetectorNumber[i],57,1),
-      GetStripPositionY(DetectorNumber[i],57,1),
-      GetStripPositionZ(DetectorNumber[i],57,1))
-
-    -TVector3(GetStripPositionX(DetectorNumber[i],57,1),
-      GetStripPositionY(DetectorNumber[i],57,1),
-      GetStripPositionZ(DetectorNumber[i],57,1));
-
-  TVector3 V = TVector3(GetStripPositionX(DetectorNumber[i],57,91),
-      GetStripPositionY(DetectorNumber[i],57,91),
-      GetStripPositionZ(DetectorNumber[i],57,91))
-
-    -TVector3(GetStripPositionX(DetectorNumber[i],57,1),
-      GetStripPositionY(DetectorNumber[i],57,1),
-      GetStripPositionZ(DetectorNumber[i],57,1));*/
-
   TVector3 Normal = u.Cross(v);
 
   return (Normal.Unit());
@@ -346,7 +355,7 @@ void TPISTAPhysics::BuildPhysicalEvent() {
           E_Time.push_back(m_PreTreatedData->GetPISTA_E_StripTime(j));
           back_E_Time.push_back(m_PreTreatedData->GetPISTA_E_BackTime(j));
 
-          if(StripNbr_DE>0 && StripNbr_DE<92 && StripNbr_E>0 && StripNbr_E<58){
+          if(StripNbr_DE>0 && StripNbr_DE<m_NumberOfStripsY+1 && StripNbr_E>0 && StripNbr_E<m_NumberOfStripsX+1){
             PosX.push_back(GetPositionOfInteraction(DE_DetNbr, StripNbr_E, StripNbr_DE).X());
             PosY.push_back(GetPositionOfInteraction(DE_DetNbr, StripNbr_E, StripNbr_DE).Y());
             PosZ.push_back(GetPositionOfInteraction(DE_DetNbr, StripNbr_E, StripNbr_DE).Z());
@@ -553,10 +562,6 @@ void TPISTAPhysics::ReadAnalysisConfig() {
         m_CALIB_BACK_E_PER_STRIP = atoi(DataBuffer.c_str());
         cout << whatToDo << " " << m_CALIB_BACK_E_PER_STRIP << endl;
       }
-
-
-
-
       else if(whatToDo=="DISABLE_CHANNEL"){
         AnalysisConfigFile >> DataBuffer;
         cout << whatToDo << " " << DataBuffer << endl;
@@ -627,21 +632,24 @@ void TPISTAPhysics::ReadConfiguration(NPL::InputParser parser) {
       if(NPOptionManager::getInstance()->GetVerboseLevel())
         cout << endl << "////  PISTA " << i+1 <<  endl;
 
+      int version = blocks[i]->GetInt("VERSION");
       TVector3 A = blocks[i]->GetTVector3("POS_A","mm");
       TVector3 B = blocks[i]->GetTVector3("POS_B","mm");
       TVector3 C = blocks[i]->GetTVector3("POS_C","mm");
       TVector3 D = blocks[i]->GetTVector3("POS_D","mm");
 
-      AddDetector(A,B,C,D);
+      AddDetector(A,B,C,D,version);
     }
     else if(blocks[i]->HasTokenList(sphe)){
       if(NPOptionManager::getInstance()->GetVerboseLevel())
         cout << endl << "////  PISTA " << i+1 <<  endl;
+      
+      int version = blocks[i]->GetInt("VERSION");
       double R = blocks[i]->GetDouble("R","mm");
       double Theta = blocks[i]->GetDouble("Theta","deg");
       double Phi = blocks[i]->GetDouble("Phi","deg");
 
-      AddDetector(R, Theta, Phi);
+      AddDetector(R, Theta, Phi, version);
     }
     else{
       cout << "ERROR: check your input file formatting " << endl;
@@ -662,13 +670,13 @@ void TPISTAPhysics::InitializeStandardParameter() {
   m_DEChannelStatus.clear();
   m_EChannelStatus.clear();
 
-  ChannelStatusDE.resize(91,true);
-  ChannelStatusE.resize(57,true);
+  ChannelStatusDE.resize(m_NumberOfStripsY,true);
+  ChannelStatusE.resize(m_NumberOfStripsX,true);
 
-  for(int i=0; i<91; i++){
+  for(int i=0; i<m_NumberOfStripsY; i++){
     m_DEChannelStatus[i] = ChannelStatusDE;
   }
-  for(int i=0; i<57; i++){
+  for(int i=0; i<m_NumberOfStripsX; i++){
     m_EChannelStatus[i] = ChannelStatusE;
   }
 
diff --git a/NPLib/Detectors/PISTA/TPISTAPhysics.h b/NPLib/Detectors/PISTA/TPISTAPhysics.h
index 8009cb3615531fe7427fb2e63319184381d59462..8d453090bfc300088423bcf7eefe0cd91b9c8df6 100644
--- a/NPLib/Detectors/PISTA/TPISTAPhysics.h
+++ b/NPLib/Detectors/PISTA/TPISTAPhysics.h
@@ -95,8 +95,8 @@ class TPISTAPhysics : public TObject, public NPL::VDetector {
     void ReadConfiguration(NPL::InputParser);
 
     /// A usefull method to bundle all operation to add a detector
-    void AddDetector(TVector3 A, TVector3 B, TVector3 C, TVector3 D); 
-    void AddDetector(double R, double Theta, double Phi); 
+    void AddDetector(TVector3 A, TVector3 B, TVector3 C, TVector3 D, int version); 
+    void AddDetector(double R, double Theta, double Phi, int version); 
  
     // add parameters to the CalibrationManger
     void AddParameterToCalibrationManager();
diff --git a/NPLib/Physics/NPParticle.h b/NPLib/Physics/NPParticle.h
index 1ead42c8ae5d07e95dea2a1be16fc48e8d0b6741..0f31c179bf0023a6dcaafb621e13f2fdbb9695f5 100644
--- a/NPLib/Physics/NPParticle.h
+++ b/NPLib/Physics/NPParticle.h
@@ -45,139 +45,158 @@ using namespace std;
 #include <iostream>
 namespace NPL {
   class Particle {
-    
-  public:
-    Particle();
-    Particle(string isotope);
-    Particle(string isotope, const string& pathENSDF);
-    Particle(int Z, int A);
-    Particle(string name, vector<string> subpart, double binding,double Ex=0, string SpinParity="", double Spin=0, string Parity="", double LifeTime=-1);
-    virtual ~Particle();
-  
-  public:
-    void SetUp(string isotope);
-    void LoadENSDF(const string& isotope, const string& pathENSDF);
-    
-  private :
-    //intrinsic properties
-    string fName;         // Particle name
-    string fParticleName;
-    int    fCharge;       // Particle charge
-    int    fAtomicWeight; // Particle atomic weight
-    double fMassExcess;   // Particle mass excess in keV
-    double fMass;
-    string fSpinParity;   // Particle spin and parity
-    double fSpin;         // Particle spin
-    string fParity;       // Particle parity
-    double fLifeTime;     // life time
-    double fLifeTimeErr;     // life time error
-    double fExcitationEnergy; // Excitation Energy
-    //kinematic properties
-    double fKineticEnergy;
-    double fBeta;
-    double fGamma;
-    double fBrho;
-    double fTimeOfFlight;
-    double fVelocity;
-    TLorentzVector fEnergyImpulsion;
-    // ENSDF list of levels
-    vector<double> fLevelEnergy;             // list of level energies
-    vector<double> fLevelEnergyUncertainty;  // list of level energies uncertainty
-    
-  public:
-    void EnergyToBrho(double Q=-1000);
-    void EnergyToTof();
-    void BetaToVelocity();
-    void BrhoToEnergy(double Q=-1000);
-    void BrhoToTof()    {BrhoToEnergy(); EnergyToTof();}
-    void TofToEnergy();
-    void TofToBrho()    {TofToEnergy(); EnergyToBrho();}
-    void EnergyToBeta();
-    void BetaToEnergy();
-    void BetaToGamma();
-    double DopplerCorrection(double EnergyLabGamma, double ThetaLabGamma);
-    
-    
-  protected :
-    void Extract(string line);
-    
+
+    public:
+      Particle();
+      Particle(string isotope);
+      Particle(string isotope, const string& pathENSDF);
+      Particle(int Z, int A);
+      Particle(string name, vector<string> subpart, double binding,double Ex=0, string SpinParity="", double Spin=0, string Parity="", double LifeTime=-1);
+      virtual ~Particle();
+
+    public:
+      void SetUp(string isotope);
+      void LoadENSDF(const string& isotope, const string& pathENSDF);
+
+    private :
+      //intrinsic properties
+      string fName;         // Particle name
+      string fParticleName;
+      int    fCharge;       // Particle charge
+      int    fAtomicWeight; // Particle atomic weight
+      double fMassExcess;   // Particle mass excess in keV
+      double fMass;
+      string fSpinParity;   // Particle spin and parity
+      double fSpin;         // Particle spin
+      string fParity;       // Particle parity
+      double fLifeTime;     // life time
+      double fLifeTimeErr;     // life time error
+      double fExcitationEnergy; // Excitation Energy
+      //kinematic properties
+      double fKineticEnergy;
+      double fBeta;
+      double fGamma;
+      double fBrho;
+      double fTimeOfFlight;
+      double fVelocity;
+      TLorentzVector fEnergyImpulsion;
+      // ENSDF list of levels
+      vector<double> fLevelEnergy;             // list of level energies
+      vector<double> fLevelEnergyUncertainty;  // list of level energies uncertainty
+
+    public:
+      void EnergyToBrho(double Q=-1000);
+      void EnergyToTof();
+      void BetaToVelocity();
+      void BrhoToEnergy(double Q=-1000);
+      void BrhoToTof(){BrhoToEnergy(); EnergyToTof();}
+      void TofToEnergy();
+      void TofToBrho(){TofToEnergy(); EnergyToBrho();}
+      void EnergyToBeta();
+      void BetaToEnergy();
+      void BetaToGamma();
+      double DopplerCorrection(double EnergyLabGamma, double ThetaLabGamma);
+
+
+    protected :
+      void Extract(string line);
+
     public :
-    void				   GetParticleName();
-    string			   GetName()			      const	{return fName;}
-    int			  	   GetZ()				      const	{return fCharge;}
-    int			  	   GetA()				      const	{return fAtomicWeight;}
-    double			   GetMassExcess()		   const {return fMassExcess;}
-    string   		   GetSpinParity()		   const	{return fSpinParity;}
-    double			   GetSpin()			      const	{return fSpin;}
-    string   		   GetParity()			      const	{return fParity;}
-    double         GetLifeTime()           const {return fLifeTime;}
-    double         GetLifeTimeError()           const {return fLifeTimeErr;}
-    double			   GetEnergy()			      const	{return fKineticEnergy;}
-    double			   GetBrho()			      const	{return fBrho;}
-    double			   GetTimeOfFlight()	      const {return fTimeOfFlight;}
-    double			   GetBeta()			      const	{return fBeta;}
-    double			   GetGamma()			      const	{return fGamma;}
-    double			   GetVelocity()	   	   const	{return fVelocity;}
-    TLorentzVector GetEnergyImpulsion()    const {return fEnergyImpulsion;}
-    TVector3       GetImpulsion()          const {return fEnergyImpulsion.Vect();}
-    double         GetExcitationEnergy()   const {return fExcitationEnergy;}
-    void				SetName(const char* name)	{fName = name;}
-    void				SetZ(int charge)					{fCharge = charge;}
-    void				SetA(int mass)						{fAtomicWeight = mass;}
-    void				SetMassExcess(double massexcess) {fMassExcess = massexcess;}
-    void				SetSpinParity(const char* spinparity)	{fSpinParity = spinparity;}
-    void				SetSpin(double spin) {fSpin = spin;}
-    void				SetParity(const char* parity)	{fParity = parity;}
-    void        SetLifeTime(double LifeTime) {fLifeTime=LifeTime;}
-    void        SetLifeTimeError(double LifeTimeErr) {fLifeTimeErr=LifeTimeErr;}
-    void				SetKineticEnergy(double energy)	{fKineticEnergy = energy; EnergyToBrho(); EnergyToTof(); EnergyToBeta(); BetaToGamma();BetaToVelocity();}
-    void				SetBrho(double brho) {fBrho = brho; BrhoToEnergy(); BrhoToTof(); EnergyToBeta(); BetaToGamma();BetaToVelocity();}
-    void				SetTimeOfFlight(double tof) {fTimeOfFlight = tof; TofToEnergy(); TofToBrho(); EnergyToBeta(); BetaToGamma();BetaToVelocity();}
-    void				SetEnergyImpulsion(TLorentzVector P) 	{fEnergyImpulsion = P;
-      fKineticEnergy = P.E() - Mass();
-      EnergyToBrho();
-      EnergyToTof();
-      EnergyToBeta();
-      BetaToGamma();
-      BetaToVelocity();}
-
-    void SetExcitationEnergy(double Ex) {fExcitationEnergy=Ex;}
-    void				SetBeta(double beta)					{fBeta = beta; BetaToGamma(); BetaToEnergy(); EnergyToTof(); EnergyToBrho();BetaToVelocity();}
+      void   GetParticleName();
+      string GetName() const {return fName;}
+      int GetZ() const{return fCharge;}
+      int GetA() const {return fAtomicWeight;}
+      double GetMassExcess() const {return fMassExcess;}
+      string GetSpinParity() const {return fSpinParity;}
+      double GetSpin() const {return fSpin;}
+      string GetParity() const {return fParity;}
+      double GetLifeTime() const {return fLifeTime;}
+      double GetLifeTimeError() const {return fLifeTimeErr;}
+      double GetEnergy() const {return fKineticEnergy;}
+      double GetBrho() const {return fBrho;}
+      double GetTimeOfFlight() const {return fTimeOfFlight;}
+      double GetBeta() const {return fBeta;}
+      double GetGamma() const {return fGamma;}
+      double GetVelocity() const {return fVelocity;}
+      TLorentzVector GetEnergyImpulsion() const {return fEnergyImpulsion;}
+      TVector3 GetImpulsion() const {return fEnergyImpulsion.Vect();}
+      double GetExcitationEnergy() const {return fExcitationEnergy;}
+      void SetName(const char* name) {fName = name;}
+      void SetZ(int charge) {fCharge = charge;}
+      void SetA(int mass) {fAtomicWeight = mass;}
+      void SetMassExcess(double massexcess) {fMassExcess = massexcess;}
+      void SetSpinParity(const char* spinparity) {fSpinParity = spinparity;}
+      void SetSpin(double spin) {fSpin = spin;}
+      void SetParity(const char* parity)	{fParity = parity;}
+      void SetLifeTime(double LifeTime) {fLifeTime=LifeTime;}
+      void SetLifeTimeError(double LifeTimeErr) {fLifeTimeErr=LifeTimeErr;}
+      void SetKineticEnergy(double energy){
+        fKineticEnergy = energy; 
+        EnergyToBrho(); 
+        EnergyToTof(); 
+        EnergyToBeta(); 
+        BetaToGamma();
+        BetaToVelocity();}
+      void SetBrho(double brho){
+        fBrho = brho; 
+        BrhoToEnergy(); 
+        BrhoToTof(); 
+        EnergyToBeta(); 
+        BetaToGamma();
+        BetaToVelocity();}
+      void SetTimeOfFlight(double tof){
+        fTimeOfFlight = tof; 
+        TofToEnergy(); 
+        TofToBrho(); 
+        EnergyToBeta(); 
+        BetaToGamma();
+        BetaToVelocity();}
+      void SetEnergyImpulsion(TLorentzVector P){
+        fEnergyImpulsion = P;
+        fKineticEnergy = P.E() - Mass();
+        EnergyToBrho();
+        EnergyToTof();
+        EnergyToBeta();
+        BetaToGamma();
+        BetaToVelocity();}
+
+      void SetExcitationEnergy(double Ex) {fExcitationEnergy=Ex;}
+      void SetBeta(double beta) {fBeta = beta; BetaToGamma(); BetaToEnergy(); EnergyToTof(); EnergyToBrho();BetaToVelocity();}
       double GetEnergyCM(double EnergyLab, double ThetaLab, double PhiLab, double relativisticboost);
       double GetThetaCM(double EnergyLab, double ThetaLab, double PhiLab, double relativisticboost);
-    
-    // Nuclear mass in MeV
-    double      Mass() const {return (fAtomicWeight*amu_c2 + fMassExcess/1000. - fCharge*electron_mass_c2+fExcitationEnergy);}
+
+      // Nuclear mass in MeV
+      double Mass() const {return (fAtomicWeight*amu_c2 + fMassExcess/1000. - fCharge*electron_mass_c2+fExcitationEnergy);}
       double GetBindingEnergy() const {return (fCharge*proton_mass_c2 + (fAtomicWeight-fCharge)*neutron_mass_c2 + fCharge*electron_mass_c2 - fAtomicWeight*amu_c2 - fMassExcess/1000);}
-    void        Print() const   ;
-
-  public:
-    void DefineMassByThreshold(const vector<string>& v); // Define the mass as the sum of the mass of the particle named in v
-    void DefineMassByThreshold(const vector<NPL::Particle>& N); // Define the mass as the sum of the mass of the particle defined in N
-
-  public:
-    TGraph* GetStableNuclei();
-    double GetSn() const;
-    double GetSp() const;
-    double GetS2n() const;
-    double GetS2p() const;
-    double GetSt() const;
-    double GetS3He() const;
-    double GetSa() const;
-    double GetSXn(unsigned int X) const;
-    double GetSXp(unsigned int X) const;
-    void   PrintThreshold() const;
-
-
-    // methods for ENSDF
-  public:
-    unsigned int    GetNumberOfLevels()               {return fLevelEnergy.size();}
-    vector<double>  GetLevelEnergyList()              {return fLevelEnergy;}
-    vector<double>  GetLevelEnergyUncertaintyList()   {return fLevelEnergyUncertainty;}
-    double          GetLevelEnergy(Int_t i)           {return fLevelEnergy[i];}
-    double          GetLevelEnergyUncertainty(Int_t i){return fLevelEnergyUncertainty[i];}
-
-    ClassDef(Particle,0)
+      void Print() const   ;
+
+    public:
+      void DefineMassByThreshold(const vector<string>& v); // Define the mass as the sum of the mass of the particle named in v
+      void DefineMassByThreshold(const vector<NPL::Particle>& N); // Define the mass as the sum of the mass of the particle defined in N
+
+    public:
+      TGraph* GetStableNuclei();
+      double GetSn() const;
+      double GetSp() const;
+      double GetS2n() const;
+      double GetS2p() const;
+      double GetSt() const;
+      double GetS3He() const;
+      double GetSa() const;
+      double GetSXn(unsigned int X) const;
+      double GetSXp(unsigned int X) const;
+      void   PrintThreshold() const;
+
+
+      // methods for ENSDF
+    public:
+      unsigned int    GetNumberOfLevels()               {return fLevelEnergy.size();}
+      vector<double>  GetLevelEnergyList()              {return fLevelEnergy;}
+      vector<double>  GetLevelEnergyUncertaintyList()   {return fLevelEnergyUncertainty;}
+      double          GetLevelEnergy(Int_t i)           {return fLevelEnergy[i];}
+      double          GetLevelEnergyUncertainty(Int_t i){return fLevelEnergyUncertainty[i];}
+
+      ClassDef(Particle,0)
   };
 }
 #endif
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeCache.txt b/NPSimulation/Detectors/EdinburghDSSD/CMakeCache.txt
new file mode 100644
index 0000000000000000000000000000000000000000..3d9ae6525a1216f171c8abc25493a570ef58d11d
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/CMakeCache.txt
@@ -0,0 +1,364 @@
+# This is the CMakeCache file.
+# For build in directory: /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD
+# It was generated by CMake: /opt/homebrew/Cellar/cmake/3.23.1_1/bin/cmake
+# You can edit this file to change values found and used by cmake.
+# If you do not want to change any of the values, simply exit the editor.
+# If you do want to change a value, simply edit, save, and exit the editor.
+# The syntax for the file is as follows:
+# KEY:TYPE=VALUE
+# KEY is the name of a variable in the cache.
+# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
+# VALUE is the current value for the KEY.
+
+########################
+# EXTERNAL cache entries
+########################
+
+//Path to a program.
+CMAKE_ADDR2LINE:FILEPATH=CMAKE_ADDR2LINE-NOTFOUND
+
+//Path to a program.
+CMAKE_AR:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar
+
+//Choose the type of build, options are: None Debug Release RelWithDebInfo
+// MinSizeRel ...
+CMAKE_BUILD_TYPE:STRING=
+
+//Enable/Disable color output during build.
+CMAKE_COLOR_MAKEFILE:BOOL=ON
+
+//CXX compiler
+CMAKE_CXX_COMPILER:STRING=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
+
+//Flags used by the CXX compiler during all build types.
+CMAKE_CXX_FLAGS:STRING=
+
+//Flags used by the CXX compiler during DEBUG builds.
+CMAKE_CXX_FLAGS_DEBUG:STRING=-g
+
+//Flags used by the CXX compiler during MINSIZEREL builds.
+CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
+
+//Flags used by the CXX compiler during RELEASE builds.
+CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
+
+//Flags used by the CXX compiler during RELWITHDEBINFO builds.
+CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
+
+//C compiler
+CMAKE_C_COMPILER:STRING=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
+
+//Flags used by the C compiler during all build types.
+CMAKE_C_FLAGS:STRING=
+
+//Flags used by the C compiler during DEBUG builds.
+CMAKE_C_FLAGS_DEBUG:STRING=-g
+
+//Flags used by the C compiler during MINSIZEREL builds.
+CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
+
+//Flags used by the C compiler during RELEASE builds.
+CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
+
+//Flags used by the C compiler during RELWITHDEBINFO builds.
+CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
+
+//Path to a program.
+CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
+
+//Flags used by the linker during all build types.
+CMAKE_EXE_LINKER_FLAGS:STRING=
+
+//Flags used by the linker during DEBUG builds.
+CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during MINSIZEREL builds.
+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during RELEASE builds.
+CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during RELWITHDEBINFO builds.
+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//Enable/Disable output of compile commands during generation.
+CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
+
+//Path to a program.
+CMAKE_INSTALL_NAME_TOOL:FILEPATH=/usr/bin/install_name_tool
+
+//Install path prefix, prepended onto install directories.
+CMAKE_INSTALL_PREFIX:PATH=/usr/local
+
+//Path to a program.
+CMAKE_LINKER:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
+
+//Path to a program.
+CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
+
+//Flags used by the linker during the creation of modules during
+// all build types.
+CMAKE_MODULE_LINKER_FLAGS:STRING=
+
+//Flags used by the linker during the creation of modules during
+// DEBUG builds.
+CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during the creation of modules during
+// MINSIZEREL builds.
+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during the creation of modules during
+// RELEASE builds.
+CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during the creation of modules during
+// RELWITHDEBINFO builds.
+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//Path to a program.
+CMAKE_NM:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/nm
+
+//Path to a program.
+CMAKE_OBJCOPY:FILEPATH=CMAKE_OBJCOPY-NOTFOUND
+
+//Path to a program.
+CMAKE_OBJDUMP:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/objdump
+
+//Build architectures for OSX
+CMAKE_OSX_ARCHITECTURES:STRING=
+
+//Minimum OS X version to target for deployment (at runtime); newer
+// APIs weak linked. Set to empty string for default value.
+CMAKE_OSX_DEPLOYMENT_TARGET:STRING=14.2
+
+//The product will be built against the headers and libraries located
+// inside the indicated SDK.
+CMAKE_OSX_SYSROOT:PATH=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk
+
+//Value Computed by CMake
+CMAKE_PROJECT_DESCRIPTION:STATIC=
+
+//Value Computed by CMake
+CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
+
+//Value Computed by CMake
+CMAKE_PROJECT_NAME:STATIC=Project
+
+//Path to a program.
+CMAKE_RANLIB:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib
+
+//Path to a program.
+CMAKE_READELF:FILEPATH=CMAKE_READELF-NOTFOUND
+
+//Flags used by the linker during the creation of shared libraries
+// during all build types.
+CMAKE_SHARED_LINKER_FLAGS:STRING=
+
+//Flags used by the linker during the creation of shared libraries
+// during DEBUG builds.
+CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during the creation of shared libraries
+// during MINSIZEREL builds.
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during the creation of shared libraries
+// during RELEASE builds.
+CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during the creation of shared libraries
+// during RELWITHDEBINFO builds.
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//If set, runtime paths are not added when installing shared libraries,
+// but are added when building.
+CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
+
+//If set, runtime paths are not added when using shared libraries.
+CMAKE_SKIP_RPATH:BOOL=NO
+
+//Flags used by the linker during the creation of static libraries
+// during all build types.
+CMAKE_STATIC_LINKER_FLAGS:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during DEBUG builds.
+CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during MINSIZEREL builds.
+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during RELEASE builds.
+CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during RELWITHDEBINFO builds.
+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//Path to a program.
+CMAKE_STRIP:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip
+
+//If this value is on, makefiles will be generated without the
+// .SILENT directive, and all commands will be echoed to the console
+// during the make.  This is useful for debugging only. With Visual
+// Studio IDE projects all commands are done without /nologo.
+CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
+
+//Dependencies for the target
+NPSEdinburghDSSD_LIB_DEPENDS:STATIC=general;NPSCore;general;-lNPEdinburghDSSD;
+
+//Value Computed by CMake
+Project_BINARY_DIR:STATIC=/Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD
+
+//Value Computed by CMake
+Project_IS_TOP_LEVEL:STATIC=ON
+
+//Value Computed by CMake
+Project_SOURCE_DIR:STATIC=/Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD
+
+
+########################
+# INTERNAL cache entries
+########################
+
+//ADVANCED property for variable: CMAKE_ADDR2LINE
+CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_AR
+CMAKE_AR-ADVANCED:INTERNAL=1
+//This is the directory where this CMakeCache.txt was created
+CMAKE_CACHEFILE_DIR:INTERNAL=/Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD
+//Major version of cmake used to create the current loaded cache
+CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
+//Minor version of cmake used to create the current loaded cache
+CMAKE_CACHE_MINOR_VERSION:INTERNAL=23
+//Patch version of cmake used to create the current loaded cache
+CMAKE_CACHE_PATCH_VERSION:INTERNAL=1
+//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
+CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
+//Path to CMake executable.
+CMAKE_COMMAND:INTERNAL=/opt/homebrew/Cellar/cmake/3.23.1_1/bin/cmake
+//Path to cpack program executable.
+CMAKE_CPACK_COMMAND:INTERNAL=/opt/homebrew/Cellar/cmake/3.23.1_1/bin/cpack
+//Path to ctest program executable.
+CMAKE_CTEST_COMMAND:INTERNAL=/opt/homebrew/Cellar/cmake/3.23.1_1/bin/ctest
+//ADVANCED property for variable: CMAKE_CXX_COMPILER
+CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS
+CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
+CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
+CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
+CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
+CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_COMPILER
+CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS
+CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
+CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
+CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
+CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
+CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_DLLTOOL
+CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
+//Path to cache edit program executable.
+CMAKE_EDIT_COMMAND:INTERNAL=/opt/homebrew/Cellar/cmake/3.23.1_1/bin/ccmake
+//Executable file format
+CMAKE_EXECUTABLE_FORMAT:INTERNAL=MACHO
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
+CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
+CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
+CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
+CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
+//Name of external makefile project generator.
+CMAKE_EXTRA_GENERATOR:INTERNAL=
+//Name of generator.
+CMAKE_GENERATOR:INTERNAL=Unix Makefiles
+//Generator instance identifier.
+CMAKE_GENERATOR_INSTANCE:INTERNAL=
+//Name of generator platform.
+CMAKE_GENERATOR_PLATFORM:INTERNAL=
+//Name of generator toolset.
+CMAKE_GENERATOR_TOOLSET:INTERNAL=
+//Source directory with the top level CMakeLists.txt file for this
+// project
+CMAKE_HOME_DIRECTORY:INTERNAL=/Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD
+//ADVANCED property for variable: CMAKE_INSTALL_NAME_TOOL
+CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_LINKER
+CMAKE_LINKER-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
+CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
+CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
+CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
+CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_NM
+CMAKE_NM-ADVANCED:INTERNAL=1
+//number of local generators
+CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
+//ADVANCED property for variable: CMAKE_OBJCOPY
+CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_OBJDUMP
+CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
+//Platform information initialized
+CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RANLIB
+CMAKE_RANLIB-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_READELF
+CMAKE_READELF-ADVANCED:INTERNAL=1
+//Path to CMake installation.
+CMAKE_ROOT:INTERNAL=/opt/homebrew/Cellar/cmake/3.23.1_1/share/cmake
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
+CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
+CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
+CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
+CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_RPATH
+CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
+CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
+CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
+CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STRIP
+CMAKE_STRIP-ADVANCED:INTERNAL=1
+//uname command
+CMAKE_UNAME:INTERNAL=/usr/bin/uname
+//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
+CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
+
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/CMakeDirectoryInformation.cmake b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/CMakeDirectoryInformation.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..2bcec431527b1a9e71aeabe25fffc006bfa81a8d
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/CMakeDirectoryInformation.cmake
@@ -0,0 +1,16 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.29
+
+# Relative path conversion top directories.
+set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/lh270370/Software/nptool/NPSimulation")
+set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/lh270370/Software/nptool/NPSimulation")
+
+# Force unix paths in dependencies.
+set(CMAKE_FORCE_UNIX_PATHS 1)
+
+
+# The C and CXX include file regular expressions for this directory.
+set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
+set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
+set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
+set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/DependInfo.cmake b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/DependInfo.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..e5dadf51352cee7ba491e781e82261e040b49182
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/DependInfo.cmake
@@ -0,0 +1,23 @@
+
+# Consider dependencies only in project.
+set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
+
+# The set of languages for which implicit dependencies are needed:
+set(CMAKE_DEPENDS_LANGUAGES
+  )
+
+# The set of dependency files which are needed:
+set(CMAKE_DEPENDS_DEPENDENCY_FILES
+  "/Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD/EdinburghDSSD.cc" "Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o" "gcc" "Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o.d"
+  )
+
+# Targets to which this target links which contain Fortran sources.
+set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
+  )
+
+# Targets to which this target links which contain Fortran sources.
+set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
+  )
+
+# Fortran module output directory.
+set(CMAKE_Fortran_TARGET_MODULE_DIR "")
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o
new file mode 100644
index 0000000000000000000000000000000000000000..b26c2053d9e32e570a9a5cee5de8c2e15d47759a
Binary files /dev/null and b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o differ
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o.d b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o.d
new file mode 100644
index 0000000000000000000000000000000000000000..e63f19367dc7f06a0b11a60b934a466677a09eb4
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o.d
@@ -0,0 +1,1359 @@
+Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o: \
+  /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD/EdinburghDSSD.cc \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cmath \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__assert \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__config \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__config_site \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__verbose_abort \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__availability \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/enable_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_arithmetic.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/integral_constant.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_floating_point.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_cv.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_const.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_volatile.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_integral.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_constant_evaluated.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_same.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/promote.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/declval.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/version \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/math.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/math.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/cdefs.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_symbol_aliasing.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_posix_availability.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/Availability.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityVersions.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityInternal.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityInternalLegacy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/limits \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_signed.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__undef_macros \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/type_traits \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/hash.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_const.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_cv.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_lvalue_reference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_referenceable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_pointer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_void.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_reference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstddef \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stddef.h \
+  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/stddef.h \
+  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/__stddef_max_align_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_rvalue_reference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_volatile.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/aligned_storage.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/conditional.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/nat.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/type_list.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/aligned_union.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/alignment_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/apply_cv.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_const.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_volatile.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/can_extract_key.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/pair.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_const_ref.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/common_reference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/common_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/decay.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_array.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_function.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_reference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_extent.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_cvref.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/void_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/copy_cv.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/copy_cvref.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_convertible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/conjunction.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/dependent_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/disjunction.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/extent.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/has_unique_object_representation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_all_extents.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/has_virtual_destructor.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/invoke.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_base_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_core_convertible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_member_function_pointer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_member_object_pointer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_reference_wrapper.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/forward.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_abstract.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_aggregate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_bounded_array.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_callable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_char_like_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_standard_layout.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivial.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_class.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_compound.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_fundamental.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_null_pointer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_copy_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_copy_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_default_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_destructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_empty.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_enum.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_final.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_implicitly_default_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_literal_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_member_pointer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_move_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_move_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_convertible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/lazy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_copy_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_copy_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_default_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_destructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_scalar.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_pointer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_move_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_move_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_object.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_union.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_pod.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_polymorphic.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_scoped_enum.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/underlying_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_specialization.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_swappable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_copy_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_copy_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_copyable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdint \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdint.h \
+  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/stdint.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/stdint.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int8_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int16_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int32_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int64_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint8_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint16_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint32_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint64_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_intptr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int8_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int16_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int32_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int64_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_uintptr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_intmax_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uintmax_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_default_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_destructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_move_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_move_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_unbounded_array.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_unsigned.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_const_lvalue_ref.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_signed.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_unsigned.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/maybe_const.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/negation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/rank.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_pointer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/result_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/invoke.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/type_identity.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/unwrap_ref.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdlib.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/stdlib.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/wait.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_pid_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_id_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/signal.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/appleapiopts.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/signal.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/signal.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/_mcontext.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/_mcontext.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/mach/machine/_structs.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/mach/arm/_structs.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_sigaltstack.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ucontext.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_sigset_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_size_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_uid_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/resource.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_timeval.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/endian.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/endian.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_endian.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/libkern/_OSByteOrder.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/libkern/arm/OSByteOrder.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/arch.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/alloca.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ct_rune_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_rune_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_wchar_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_null.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/malloc/_malloc.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/malloc/_malloc_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/malloc/_ptrcheck.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_dev_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_mode_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/sstream \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/sstream.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/string.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/memory_resource.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/swap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/move.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/istream \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/istream.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/istreambuf_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/default_sentinel.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iterator_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/arithmetic.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_signed_integer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_unsigned_integer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/convertible_to.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/destructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/copyable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/common_reference_with.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/same_as.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/movable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/swappable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/class_or_enum.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/exchange.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/equality_comparable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/boolean_testable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/totally_ordered.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/incrementable_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_primary_template.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_valid_expansion.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/readable_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iosfwd \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/fstream.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/ios.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/ostream.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/streambuf.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__std_mbstate_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mbstate_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_mbstate_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ostream \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/operations.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/shared_ptr.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_three_way.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/three_way_comparable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/common_comparison_category.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/ordering.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binary_function.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/operations.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/unary_function.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/operation_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/predicate_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/reference_wrapper.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/weak_result_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/addressof.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/access.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocation_guard.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/construct_at.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/voidify.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/new \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/exception.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdlib \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/exception \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/exception_ptr.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/nested_exception.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/terminate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/pointer_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocate_at_least.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator_destructor.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/auto_ptr.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/compressed_pair.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/get.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/array.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/subrange.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/tuple.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_indices.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/integer_sequence.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/piecewise_construct.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/uninitialized_algorithms.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_move_common.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/iterator_operations.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/iter_swap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_iterator_concept.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/concepts.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/derived_from.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/invocable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/predicate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/regular.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/semiregular.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/relation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iter_move.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/advance.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/convert_to_integral.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/unreachable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/distance.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/access.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/enable_borrowed_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/auto_cast.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/concepts.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/data.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/enable_view.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/size.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/initializer_list \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iter_swap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/next.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/prev.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unwrap_iter.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unwrap_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/pair.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/synth_three_way.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/different_from.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/pair_like.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_like.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_size.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/sfinae_helpers.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/make_tuple_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_like_ext.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__string/constexpr_c_functions.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/datasizeof.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_always_bitcastable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_equality_comparable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_lexicographically_comparable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/is_pointer_in_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/comp.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/for_each_segment.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/segmented_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/min.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/comp_ref_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/min_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/identity.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/move.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/reverse_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_three_way_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/subrange.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/dangling.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/view_interface.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/empty.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/exception_guard.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/unique_ptr.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/hash.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstring \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/string.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/string.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_rsize_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_errno_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ssize_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/strings.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdexcept \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/typeinfo \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/memory_order.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/error_code.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/errc.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cerrno \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/errno.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/errno.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/errno.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/error_category.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/string \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/max.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/max_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cwchar \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cwctype \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cctype \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/ctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_ctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/runetype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_wint_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/wctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/wctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_wctrans_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_wctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/__wctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_wctype_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/wchar.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/wchar.h \
+  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/stdarg.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdio.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/stdio.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_stdio.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_va_list.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/stdio.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_seek_set.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_ctermid.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_off_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/time.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_clock_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_time_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_timespec.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/enable_insertable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ios/fpos.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/wrap_iter.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/swap_allocator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory_resource/polymorphic_allocator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory_resource/memory_resource.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/tuple \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator_arg_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/uses_allocator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/compare \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_partial_order_fallback.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/partial_order.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/weak_order.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/strong_order.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_cast.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/priority_tag.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_strong_order_fallback.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_weak_order_fallback.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/is_eq.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/utility \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/as_const.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/cmp.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/forward_like.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/in_place.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/rel_ops.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/to_underlying.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/container_compatible_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/from_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__string/char_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/fill_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_end.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/search.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_first_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdio \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__string/extern_template_lists.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_allocator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/noexcept_move_assign_container.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/climits \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/limits.h \
+  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/limits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/limits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/limits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/limits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/_limits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/syslimits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/string_view \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/string_view.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/bounded_iter.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/data.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/empty.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/reverse_access.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/size.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/algorithm \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/adjacent_find.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/all_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/any_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/binary_search.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/lower_bound.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/half_positive.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/clamp.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_backward.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/count.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/count_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/equal.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/equal_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/upper_bound.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/fill.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_if_not.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/for_each.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/for_each_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/generate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/generate_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_found_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_fun_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_in_out_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_in_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_out_out_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_out_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/includes.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/inplace_merge.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/rotate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/move_backward.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/swap_ranges.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/destruct_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/temporary_buffer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_heap_until.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_partitioned.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_permutation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_sorted.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_sorted_until.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/lexicographical_compare.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/lexicographical_compare_three_way.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/three_way_comp_ref_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/make_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sift_down.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/merge.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/min_max_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/minmax.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/minmax_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/mismatch.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/next_permutation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/reverse.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/none_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/nth_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partial_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sort_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pop_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/push_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__debug_utils/strict_weak_ordering_check.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__debug_utils/randomize_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/blsr.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/countl.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/rotate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/countr.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/ranges_operations.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partial_sort_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/make_projected.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partition.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partition_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partition_point.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/prev_permutation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_any_all_none_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_find.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backend.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backend.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/any_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/backend.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/libdispatch.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_base.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_sync.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/contention_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/cxx_atomic_impl.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/is_always_lock_free.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/duration.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ratio \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/poll_with_backoff.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/high_resolution_clock.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/steady_clock.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/time_point.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/system_clock.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ctime \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__threading_support \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/convert_to_timespec.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread/sched.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread/pthread_impl.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_key_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_once_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread/qos.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/qos.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_mach_port_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sched.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/check_memory_order.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/move_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/move_sentinel.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__numeric/reduce.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/terminate_on_exception.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_execution_policy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/fill.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/find_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/for_each.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/merge.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/stable_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/stable_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/transform.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/transform.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/transform_reduce.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__numeric/transform_reduce.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/execution \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_frontend_dispatch.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/cpp17_iterator_concepts.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_transform.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_count.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_for_each.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__numeric/pstl_transform_reduce.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_fill.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_generate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_is_partitioned.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_merge.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_replace.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_stable_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_adjacent_find.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/projected.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_all_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_any_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_binary_search.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_clamp.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy_backward.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/unreachable_sentinel.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_count.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_count_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_equal.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/indirectly_comparable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_equal_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_fill.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_fill_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_end.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_first_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_if_not.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_for_each.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_for_each_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_generate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_generate_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_includes.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_inplace_merge.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/sortable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/permutable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_heap_until.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_partitioned.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_permutation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_sorted.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_sorted_until.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_lexicographical_compare.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_lower_bound.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_make_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_max.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_min_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_max_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_merge.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/mergeable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_min.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_minmax.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_minmax_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_mismatch.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_move.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_move_backward.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_next_permutation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_none_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_nth_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partial_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partial_sort_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partition.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partition_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partition_point.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_pop_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_prev_permutation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_push_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove_copy_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove_copy_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace_copy_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_reverse.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_reverse_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_rotate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_rotate_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_sample.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sample.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/uniform_int_distribution.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/is_valid.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/log2.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/uniform_random_bit_generator_adaptor.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/uniform_random_bit_generator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_search.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_search_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/search_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_difference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_difference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_intersection.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_intersection.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_symmetric_difference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_symmetric_difference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_union.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_union.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_shuffle.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/shuffle.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_sort_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_stable_partition.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/stable_partition.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_stable_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_starts_with.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_swap_ranges.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_transform.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_unique.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unique.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_unique_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unique_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_upper_bound.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace_copy_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/reverse_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/rotate_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/shift_left.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/shift_right.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/atomic \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/aliases.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_lock_free.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_flag.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_init.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/fence.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/kill_dependency.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/bit \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_ceil.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_floor.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_log2.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_width.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/byteswap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/endian.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/has_single_bit.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/popcount.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/concepts \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/common_with.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iterator \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/back_insert_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/common_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/variant \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__variant/monostate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/counted_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/erase_if_container.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/front_insert_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/insert_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/istream_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/ostream_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/ostreambuf_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/memory \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/align.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/assume_aligned.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/concepts.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/ranges_construct_at.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/ranges_uninitialized_algorithms.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/raw_storage_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/uses_allocator_construction.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/error_condition.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/bitset \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit_reference \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ios \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__locale \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/clocale \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/locale.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/locale.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_locale.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/mutex \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__condition_variable/condition_variable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/mutex.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/unique_lock.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/tag_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/system_error.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/lock_guard.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/id.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/system_error \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_xlocale.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_ctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/__wctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_stdio.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_stdlib.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_string.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_time.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_wchar.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_wctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/locale \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/streambuf \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/nl_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_char.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_short.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_caddr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_blkcnt_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_blksize_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_gid_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_in_addr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_in_port_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ino_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ino64_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_key_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_nlink_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_useconds_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_suseconds_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_def.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_setsize.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_set.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_clr.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_zero.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_isset.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fsblkcnt_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fsfilcnt_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_nl_item.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__locale_dir/locale_base_api/bsd_locale_defaults.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdarg \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Box.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GeomTypes.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GeomConfig.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4CSGSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Types.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GlobalConfig.hh \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/complex \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/tls.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4String.hh \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iostream \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4String.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/geomdefs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/globals.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ios.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/templates.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Exception.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ExceptionSeverity.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4EnvironmentUtils.hh \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iomanip \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/map \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/is_transparent.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/ranges_iterator_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__node_handle \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/optional \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tree \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/functional \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binary_negate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/bind.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/bind_back.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/perfect_forward.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/bind_front.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binder1st.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binder2nd.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/boyer_moore_searcher.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/array \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/unordered_map \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__hash_table \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/vector \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_fwd.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter_bool.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/concepts.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_parse_context.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_error.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter_integral.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/to_chars_integral.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/tables.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/to_chars_base_10.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/to_chars_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_32_64_or_128_bit.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter_output.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/buffer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_to_n_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/parser_std_format_spec.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_arg.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_string.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/unicode.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/extended_grapheme_cluster_table.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/width_estimation_table.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/temp_value.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__split_buffer \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/compose.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/default_searcher.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/function.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/builtin_new_allocator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/strip_signature.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/mem_fn.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/mem_fun_ref.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/not_fn.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/pointer_to_binary_function.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/pointer_to_unary_function.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/unary_negate.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ThreeVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/ThreeVector.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Utility/defs.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/ThreeVector.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSolid.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Polyhedron.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/HepPolyhedron.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TwoVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/TwoVector.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/TwoVector.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Point3D.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Point3D.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/BasicVector3D.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Normal3D.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Normal3D.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Transform3D.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Transform3D.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Transform3D.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/Rotation.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationInterfaces.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/LorentzVector.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/LorentzVector.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/AxisAngle.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/AxisAngle.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationInterfaces.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationX.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationX.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Units/PhysicalConstants.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Units/SystemOfUnits.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationY.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationY.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationZ.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationZ.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/Rotation.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Vector3D.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Visible.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Visible.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Box.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Trap.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Trap.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Tubs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Tubs.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Cons.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Cons.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Polycone.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VCSGfaceted.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PolyconeSide.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VCSGface.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GeomSplitter.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/geomwdefs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AutoLock.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Threading.hh \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/chrono \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/calendar.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/convert_to_tm.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/concepts.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/hh_mm_ss.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/day.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/file_clock.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/month.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/month_weekday.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/weekday.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/monthday.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/statically_widen.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year_month.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year_month_day.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year_month_weekday.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/literals.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/condition_variable \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/future \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/thread \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/formatter.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/this_thread.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/thread.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PolyconeHistorical.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Polycone.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UnionSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BooleanSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DisplacedSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RotationMatrix.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AffineTransform.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AffineTransform.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VBooleanProcessor.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BooleanSolid.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MultiFunctionalDetector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4HCofThisEvent.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Allocator.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AllocatorPool.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VHitsCollection.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Step.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPhysicalVolume.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPhysicalVolume.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StepPoint.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SteppingControl.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StepStatus.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TouchableHandle.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VTouchable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TouchableHistory.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationHistory.hh \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/assert.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevel.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevelRep.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevelRep.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevel.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationHistoryPool.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationHistory.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4LogicalVolume.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Region.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Region.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4LogicalVolume.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TouchableHistory.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ReferenceCountedHandle.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Material.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Element.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ElementTable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ElementVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4IonisParamElm.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Isotope.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4IsotopeVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4IonisParamMat.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DensityEffectCalculator.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialPropertiesTable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialPropertiesIndex.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialPropertyVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsFreeVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsVector.hh \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/fstream \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/filesystem \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/copy_options.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/directory_entry.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/file_status.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/file_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/perms.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/file_time_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/filesystem_error.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/path.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/operations.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/perm_options.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/space_info.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/directory_options.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/path_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/u8path.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Log.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsVectorType.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsVector.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialTable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SandiaTable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4OrderedTable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DataVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DataVector.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StepPoint.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Profiler.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Profiler.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/PTL/Globals.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/PTL/Types.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/PTL/Utility.hh \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/set \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Step.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Track.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/trkdefs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DynamicParticle.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ElectronOccupancy.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/pwdefs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4LorentzVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleDefinition.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PDefManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleDefinition.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleMomentum.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DynamicParticle.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackStatus.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VUserTrackInformation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsModelCatalog.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Track.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VHit.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VReadOutGeometry.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SensitiveVolumeList.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSensitiveDetector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4CollectionNameVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSDFilter.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SDManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4HCtable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SDStructure.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Colour.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ExtrudedSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TessellatedSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Voxelizer.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SurfBits.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VFacet.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/windefs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Voxelizer.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ExtrudedSolid.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PVPlacement.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SubtractionSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VisAttributes.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/graphics_reps_defs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Color.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VisAttributes.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NistManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ICRU90StoppingData.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NistElementBuilder.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NistMaterialBuilder.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Pow.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Exp.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserLimits.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserLimits.icc \
+  /Users/lh270370/Software/nptool/NPSimulation/Scorers/DSSDScorers.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPrimitiveScorer.hh \
+  /Users/lh270370/Software/nptool/NPLib/include/NPImage.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TASImage.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TImage.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TNamed.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TObject.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/Rtypes.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/RtypesCore.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RConfig.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/../RVersion.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RVersion.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/RConfigure.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityMacros.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/TargetConditionals.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/DllImport.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/strtok.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/strlcpy.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/snprintf.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TGenericClassInfo.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TSchemaHelper.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TIsAProxy.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualIsAProxy.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TStorage.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVersionCheck.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/RVersion.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TString.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMathBase.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RStringView.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TypeTraits.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TAttImage.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/GuiTypes.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVectorDfwd.h \
+  /Users/lh270370/Software/nptool/NPSimulation/Scorers/NPSHitsMap.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4THitsCollection.hh \
+  /Users/lh270370/Software/nptool/NPSimulation/Scorers/InteractionScorers.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RunManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Event.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/evtdefs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PrimaryVertex.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PrimaryParticle.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DCofThisEvent.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VDigiCollection.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrajectoryContainer.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VTrajectory.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VUserEventInformation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4EventManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StackManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserStackingAction.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ClassificationOfNewTrack.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StackedTrack.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackStack.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartTrackStack.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SubEventTrackStack.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SubEvent.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PrimaryTransformer.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleTable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleTableIterator.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleTable.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackingManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SteppingManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Navigator.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NormalNavigation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VNavigation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AuxiliaryNavServices.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AuxiliaryNavServices.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NormalNavigation.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VoxelNavigation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLogger.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BlockingList.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BlockingList.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelProxy.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelProxy.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelNode.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelNode.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelHeader.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelHeader.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VoxelNavigation.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParameterisedNavigation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPVParameterisation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VVolumeMaterialScanner.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParameterisedNavigation.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ReplicaNavigation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ReplicaNavigation.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RegularNavigation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VExternalNavigation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Navigator.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NoProcess.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VProcess.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/Randomize.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Randomize.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/DualRand.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandomEngine.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandomEngine.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/JamesRandom.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/MixMaxRng.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/MTwistEngine.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanecuEngine.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanluxEngine.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Ranlux64Engine.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanluxppEngine.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanshiEngine.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBinomial.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Random.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Random.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Utility/memory.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBinomial.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBreitWigner.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandFlat.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Utility/thread_local.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandFlat.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBreitWigner.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandChiSquare.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandChiSquare.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandExponential.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandExponential.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandExpZiggurat.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBit.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBit.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGamma.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGamma.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGauss.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGauss.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGaussQ.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGaussQ.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGaussZiggurat.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGeneral.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGeneral.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandLandau.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandLandau.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoissonQ.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoisson.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoisson.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoissonQ.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandStudentT.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandStudentT.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsTable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsTable.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VParticleChange.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VParticleChange.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ForceCondition.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GPILSelection.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleChange.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleChange.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessType.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessVector.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessManager.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserSteppingAction.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSteppingVerbose.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/trkgdefs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackingMessenger.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UImessenger.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UIdirectory.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UIcommand.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ApplicationState.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UIparameter.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UItokenNum.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserTrackingAction.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RunManagerKernel.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/rundefs.hh \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/list \
+  /Users/lh270370/Software/nptool/NPLib/include/TInteractionCoordinates.h \
+  /Users/lh270370/Software/nptool/NPLib/include/NPFunction.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TH1F.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TH1.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TAxis.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TAttAxis.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayD.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TArray.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TAttLine.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TAttFill.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TAttMarker.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayC.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayS.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayI.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayF.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/Foption.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/EExecutionPolicy.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVectorFfwd.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TFitResultPtr.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cfloat \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/float.h \
+  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/float.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/float.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TH2F.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TH2.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFBasefwd.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixDBasefwd.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TFile.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/Compression.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TDirectoryFile.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TDirectory.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TClass.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TDictionary.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ESTLType.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TObjArray.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TSeqCollection.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TCollection.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TIterator.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualRWMutex.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualMutex.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RRangeCast.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RSpan.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/span.hxx \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cassert \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/unordered_set \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TUUID.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TList.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TBuffer.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TDataType.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/Bytes.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TDatime.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TUrl.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RConcurrentHashColl.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TRWSpinLock.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TSpinMutex.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TRandom.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/Math/TRandomEngine.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TRandom2.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVector3.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TError.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVector2.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrix.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixF.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixT.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixTBase.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixTUtils.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFfwd.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFUtils.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFUtilsfwd.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMath.h \
+  /Users/lh270370/Software/nptool/NPSimulation/Core/MaterialManager.hh \
+  /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD/EdinburghDSSD.hh \
+  /Users/lh270370/Software/nptool/NPSimulation/Core/NPSVDetector.hh \
+  /Users/lh270370/Software/nptool/NPLib/include/NPInputParser.h \
+  /Users/lh270370/Software/nptool/NPSimulation/Core/NPSFunction.hh \
+  /Users/lh270370/Software/nptool/NPLib/include/TEdinburghDSSDData.h \
+  /Users/lh270370/Software/nptool/NPLib/include/EdinburghDSSDMap.h \
+  /Users/lh270370/Software/nptool/NPLib/include/NPCore.h \
+  /Users/lh270370/Software/nptool/NPLib/include/NPOptionManager.h \
+  /Users/lh270370/Software/nptool/NPSimulation/Core/NPSDetectorFactory.hh \
+  /Users/lh270370/Software/nptool/NPLib/include/RootOutput.h \
+  /Users/lh270370/Software/nptool/NPLib/include/TAsciiFile.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TTree.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TIOFeatures.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualTreePlayer.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TBranch.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TBranchCacheInfo.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TBits.h
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/build.make b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/build.make
new file mode 100644
index 0000000000000000000000000000000000000000..33b84fde9775ddc52f6b3e2fc2b86519f4466eae
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/build.make
@@ -0,0 +1,152 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.29
+
+# Delete rule output on recipe failure.
+.DELETE_ON_ERROR:
+
+#=============================================================================
+# Special targets provided by cmake.
+
+# Disable implicit rules so canonical targets will work.
+.SUFFIXES:
+
+# Disable VCS-based implicit rules.
+% : %,v
+
+# Disable VCS-based implicit rules.
+% : RCS/%
+
+# Disable VCS-based implicit rules.
+% : RCS/%,v
+
+# Disable VCS-based implicit rules.
+% : SCCS/s.%
+
+# Disable VCS-based implicit rules.
+% : s.%
+
+.SUFFIXES: .hpux_make_needs_suffix_list
+
+# Command-line flag to silence nested $(MAKE).
+$(VERBOSE)MAKESILENT = -s
+
+#Suppress display of executed commands.
+$(VERBOSE).SILENT:
+
+# A target that is always out of date.
+cmake_force:
+.PHONY : cmake_force
+
+#=============================================================================
+# Set environment variables for the build.
+
+# The shell in which to execute make rules.
+SHELL = /bin/sh
+
+# The CMake executable.
+CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.29.0/bin/cmake
+
+# The command to remove a file.
+RM = /opt/homebrew/Cellar/cmake/3.29.0/bin/cmake -E rm -f
+
+# Escaping for special characters.
+EQUALS = =
+
+# The top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /Users/lh270370/Software/nptool/NPSimulation
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /Users/lh270370/Software/nptool/NPSimulation
+
+# Include any dependencies generated for this target.
+include Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/depend.make
+# Include any dependencies generated by the compiler for this target.
+include Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/compiler_depend.make
+
+# Include the progress variables for this target.
+include Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/progress.make
+
+# Include the compile flags for this target's objects.
+include Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/flags.make
+
+Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o: Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/flags.make
+Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o: Detectors/EdinburghDSSD/EdinburghDSSD.cc
+Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o: Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/compiler_depend.ts
+	@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/lh270370/Software/nptool/NPSimulation/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o"
+	cd /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o -MF CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o.d -o CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o -c /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD/EdinburghDSSD.cc
+
+Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.i: cmake_force
+	@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.i"
+	cd /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD/EdinburghDSSD.cc > CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.i
+
+Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.s: cmake_force
+	@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.s"
+	cd /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD/EdinburghDSSD.cc -o CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.s
+
+# Object files for target NPSEdinburghDSSD
+NPSEdinburghDSSD_OBJECTS = \
+"CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o"
+
+# External object files for target NPSEdinburghDSSD
+NPSEdinburghDSSD_EXTERNAL_OBJECTS =
+
+lib/libNPSEdinburghDSSD.dylib: Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o
+lib/libNPSEdinburghDSSD.dylib: Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/build.make
+lib/libNPSEdinburghDSSD.dylib: lib/libNPSCore.dylib
+lib/libNPSEdinburghDSSD.dylib: lib/libNPSScorers.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4Tree.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4FR.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4GMocren.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4visHepRep.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4RayTracer.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4VRML.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4ToolsSG.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4OpenGL.dylib
+lib/libNPSEdinburghDSSD.dylib: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/System/Library/Frameworks/OpenGL.framework
+lib/libNPSEdinburghDSSD.dylib: /opt/homebrew/opt/qt@5/lib/QtOpenGL.framework/QtOpenGL
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4visQt3D.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4vis_management.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4modeling.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4interfaces.dylib
+lib/libNPSEdinburghDSSD.dylib: /opt/homebrew/opt/qt@5/lib/QtWidgets.framework/QtWidgets
+lib/libNPSEdinburghDSSD.dylib: /opt/homebrew/opt/qt@5/lib/QtGui.framework/QtGui
+lib/libNPSEdinburghDSSD.dylib: /opt/homebrew/opt/qt@5/lib/QtCore.framework/QtCore
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4mctruth.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4geomtext.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4error_propagation.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4readout.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4physicslists.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4run.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4event.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4tracking.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4parmodels.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4processes.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4analysis.dylib
+lib/libNPSEdinburghDSSD.dylib: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/lib/libexpat.tbd
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4digits_hits.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4track.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4particles.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4geometry.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4materials.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4graphics_reps.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4intercoms.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4global.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4clhep.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4zlib.dylib
+lib/libNPSEdinburghDSSD.dylib: /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4ptl.2.3.3.dylib
+lib/libNPSEdinburghDSSD.dylib: Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/link.txt
+	@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/lh270370/Software/nptool/NPSimulation/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared library ../../lib/libNPSEdinburghDSSD.dylib"
+	cd /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/NPSEdinburghDSSD.dir/link.txt --verbose=$(VERBOSE)
+
+# Rule to build all files generated by this target.
+Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/build: lib/libNPSEdinburghDSSD.dylib
+.PHONY : Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/build
+
+Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/clean:
+	cd /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD && $(CMAKE_COMMAND) -P CMakeFiles/NPSEdinburghDSSD.dir/cmake_clean.cmake
+.PHONY : Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/clean
+
+Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/depend:
+	cd /Users/lh270370/Software/nptool/NPSimulation && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/lh270370/Software/nptool/NPSimulation /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD /Users/lh270370/Software/nptool/NPSimulation /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/DependInfo.cmake "--color=$(COLOR)"
+.PHONY : Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/depend
+
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/cmake_clean.cmake b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/cmake_clean.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..7de035172cc98a1a949d6a70b358d9fcb3c52883
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/cmake_clean.cmake
@@ -0,0 +1,11 @@
+file(REMOVE_RECURSE
+  "../../lib/libNPSEdinburghDSSD.dylib"
+  "../../lib/libNPSEdinburghDSSD.pdb"
+  "CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o"
+  "CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o.d"
+)
+
+# Per-language clean rules from dependency scanning.
+foreach(lang CXX)
+  include(CMakeFiles/NPSEdinburghDSSD.dir/cmake_clean_${lang}.cmake OPTIONAL)
+endforeach()
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/compiler_depend.internal b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/compiler_depend.internal
new file mode 100644
index 0000000000000000000000000000000000000000..3274b5fdac9fa188d20fdb59a8516d393e6ba2ba
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/compiler_depend.internal
@@ -0,0 +1,1363 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.29
+
+Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o
+ /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD/EdinburghDSSD.cc
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/Availability.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityInternal.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityInternalLegacy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityMacros.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityVersions.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/TargetConditionals.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/__wctype.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_ctermid.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_ctype.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_locale.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_stdio.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_intmax_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_nl_item.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint16_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint32_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint64_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint8_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uintmax_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_wctrans_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_wctype_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_wctype.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_xlocale.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/alloca.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/_limits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/_mcontext.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/_types.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/arch.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/endian.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/limits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/signal.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/types.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/assert.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/adjacent_find.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/all_of.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/any_of.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/binary_search.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/clamp.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/comp.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/comp_ref_type.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_backward.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_move_common.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_n.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/count.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/count_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/equal.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/equal_range.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/fill.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/fill_n.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_end.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_first_of.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_if_not.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/for_each.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/for_each_n.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/for_each_segment.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/generate.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/generate_n.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/half_positive.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_found_result.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_fun_result.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_in_out_result.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_in_result.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_out_out_result.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_out_result.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/includes.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/inplace_merge.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_heap.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_heap_until.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_partitioned.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_permutation.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_sorted.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_sorted_until.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/iter_swap.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/iterator_operations.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/lexicographical_compare.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/lexicographical_compare_three_way.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/lower_bound.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/make_heap.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/make_projected.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/max.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/max_element.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/merge.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/min.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/min_element.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/min_max_result.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/minmax.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/minmax_element.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/mismatch.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/move.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/move_backward.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/next_permutation.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/none_of.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/nth_element.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partial_sort.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partial_sort_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partition.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partition_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partition_point.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pop_heap.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/prev_permutation.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_any_all_none_of.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backend.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backend.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/any_of.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/backend.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/fill.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/find_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/for_each.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/libdispatch.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/merge.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/stable_sort.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/transform.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/transform_reduce.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_count.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_fill.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_find.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_for_each.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_frontend_dispatch.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_generate.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_is_partitioned.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_merge.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_replace.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_sort.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_stable_sort.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_transform.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/push_heap.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_adjacent_find.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_all_of.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_any_of.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_binary_search.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_clamp.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy_backward.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy_n.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_count.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_count_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_equal.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_equal_range.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_fill.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_fill_n.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_end.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_first_of.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_if_not.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_for_each.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_for_each_n.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_generate.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_generate_n.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_includes.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_inplace_merge.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_heap.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_heap_until.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_partitioned.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_permutation.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_sorted.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_sorted_until.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_iterator_concept.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_lexicographical_compare.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_lower_bound.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_make_heap.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_max.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_max_element.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_merge.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_min.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_min_element.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_minmax.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_minmax_element.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_mismatch.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_move.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_move_backward.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_next_permutation.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_none_of.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_nth_element.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partial_sort.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partial_sort_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partition.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partition_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partition_point.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_pop_heap.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_prev_permutation.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_push_heap.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove_copy_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace_copy_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_reverse.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_reverse_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_rotate.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_rotate_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_sample.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_search.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_search_n.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_difference.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_intersection.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_symmetric_difference.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_union.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_shuffle.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_sort.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_sort_heap.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_stable_partition.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_stable_sort.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_starts_with.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_swap_ranges.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_transform.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_unique.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_unique_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_upper_bound.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove_copy_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace_copy_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/reverse.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/reverse_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/rotate.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/rotate_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sample.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/search.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/search_n.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_difference.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_intersection.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_symmetric_difference.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_union.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/shift_left.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/shift_right.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/shuffle.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sift_down.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sort.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sort_heap.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/stable_partition.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/stable_sort.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/swap_ranges.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/three_way_comp_ref_type.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/transform.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/uniform_random_bit_generator_adaptor.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unique.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unique_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unwrap_iter.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unwrap_range.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/upper_bound.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__assert
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/aliases.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_base.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_flag.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_init.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_lock_free.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_sync.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/check_memory_order.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/contention_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/cxx_atomic_impl.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/fence.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/is_always_lock_free.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/kill_dependency.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/memory_order.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__availability
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_cast.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_ceil.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_floor.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_log2.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_width.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/blsr.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/byteswap.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/countl.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/countr.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/endian.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/has_single_bit.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/popcount.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/rotate.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit_reference
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/tables.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/to_chars_base_10.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/to_chars_integral.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/to_chars_result.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/traits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/calendar.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/concepts.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/convert_to_timespec.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/convert_to_tm.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/day.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/duration.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/file_clock.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/hh_mm_ss.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/high_resolution_clock.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/literals.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/month.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/month_weekday.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/monthday.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/statically_widen.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/steady_clock.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/system_clock.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/time_point.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/weekday.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year_month.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year_month_day.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year_month_weekday.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/common_comparison_category.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_partial_order_fallback.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_strong_order_fallback.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_three_way.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_three_way_result.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_weak_order_fallback.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/is_eq.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/ordering.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/partial_order.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/strong_order.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/synth_three_way.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/three_way_comparable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/weak_order.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/arithmetic.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/assignable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/boolean_testable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/class_or_enum.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/common_reference_with.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/common_with.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/constructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/convertible_to.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/copyable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/derived_from.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/destructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/different_from.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/equality_comparable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/invocable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/movable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/predicate.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/regular.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/relation.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/same_as.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/semiregular.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/swappable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/totally_ordered.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__condition_variable/condition_variable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__config
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__config_site
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__debug_utils/randomize_range.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__debug_utils/strict_weak_ordering_check.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/exception.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/exception_ptr.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/nested_exception.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/operations.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/terminate.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/copy_options.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/directory_entry.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/directory_options.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/file_status.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/file_time_type.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/file_type.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/filesystem_error.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/operations.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/path.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/path_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/perm_options.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/perms.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/space_info.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/u8path.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/buffer.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/concepts.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/enable_insertable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/extended_grapheme_cluster_table.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_arg.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_error.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_fwd.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_parse_context.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_string.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_to_n_result.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter_bool.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter_integral.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter_output.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/parser_std_format_spec.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/unicode.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/width_estimation_table.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binary_function.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binary_negate.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/bind.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/bind_back.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/bind_front.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binder1st.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binder2nd.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/boyer_moore_searcher.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/compose.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/default_searcher.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/function.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/hash.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/identity.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/invoke.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/is_transparent.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/mem_fn.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/mem_fun_ref.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/not_fn.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/operations.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/perfect_forward.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/pointer_to_binary_function.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/pointer_to_unary_function.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/ranges_operations.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/reference_wrapper.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/unary_function.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/unary_negate.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/weak_result_type.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/array.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/fstream.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/get.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/hash.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/ios.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/istream.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/memory_resource.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/ostream.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/pair.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/sstream.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/streambuf.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/string.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/string_view.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/subrange.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/tuple.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__hash_table
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ios/fpos.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/access.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/advance.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/back_insert_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/bounded_iter.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/common_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/concepts.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/counted_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/cpp17_iterator_concepts.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/data.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/default_sentinel.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/distance.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/empty.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/erase_if_container.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/front_insert_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/incrementable_traits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/indirectly_comparable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/insert_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/istream_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/istreambuf_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iter_move.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iter_swap.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iterator_traits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/mergeable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/move_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/move_sentinel.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/next.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/ostream_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/ostreambuf_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/permutable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/prev.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/projected.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/ranges_iterator_traits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/readable_traits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/reverse_access.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/reverse_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/segmented_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/size.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/sortable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/unreachable_sentinel.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/wrap_iter.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__locale
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__locale_dir/locale_base_api/bsd_locale_defaults.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mbstate_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/addressof.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/align.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocate_at_least.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocation_guard.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator_arg_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator_destructor.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator_traits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/assume_aligned.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/auto_ptr.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/builtin_new_allocator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/compressed_pair.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/concepts.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/construct_at.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/destruct_n.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/pointer_traits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/ranges_construct_at.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/ranges_uninitialized_algorithms.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/raw_storage_iterator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/shared_ptr.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/swap_allocator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/temp_value.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/temporary_buffer.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/uninitialized_algorithms.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/unique_ptr.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/uses_allocator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/uses_allocator_construction.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/voidify.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory_resource/memory_resource.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory_resource/polymorphic_allocator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/lock_guard.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/mutex.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/tag_types.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/unique_lock.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__node_handle
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__numeric/pstl_transform_reduce.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__numeric/reduce.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__numeric/transform_reduce.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/is_valid.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/log2.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/uniform_int_distribution.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/uniform_random_bit_generator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/access.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/concepts.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/container_compatible_range.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/dangling.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/data.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/empty.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/enable_borrowed_range.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/enable_view.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/from_range.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/size.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/subrange.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/view_interface.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__split_buffer
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__std_mbstate_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__string/char_traits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__string/constexpr_c_functions.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__string/extern_template_lists.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/errc.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/error_category.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/error_code.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/error_condition.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/system_error.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/formatter.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/id.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/poll_with_backoff.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/this_thread.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/thread.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__threading_support
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tree
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/make_tuple_types.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/pair_like.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/sfinae_helpers.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_element.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_indices.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_like.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_like_ext.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_size.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_types.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_const.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_cv.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_lvalue_reference.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_pointer.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_rvalue_reference.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_volatile.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/aligned_storage.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/aligned_union.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/alignment_of.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/apply_cv.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/can_extract_key.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/common_reference.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/common_type.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/conditional.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/conjunction.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/copy_cv.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/copy_cvref.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/datasizeof.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/decay.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/dependent_type.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/disjunction.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/enable_if.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/extent.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/has_unique_object_representation.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/has_virtual_destructor.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/integral_constant.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/invoke.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_abstract.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_aggregate.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_allocator.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_always_bitcastable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_arithmetic.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_array.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_assignable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_base_of.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_bounded_array.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_callable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_char_like_type.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_class.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_compound.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_const.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_constant_evaluated.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_constructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_convertible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_copy_assignable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_copy_constructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_core_convertible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_default_constructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_destructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_empty.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_enum.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_equality_comparable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_execution_policy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_final.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_floating_point.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_function.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_fundamental.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_implicitly_default_constructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_integral.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_literal_type.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_member_function_pointer.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_member_object_pointer.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_member_pointer.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_move_assignable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_move_constructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_assignable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_constructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_convertible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_copy_assignable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_copy_constructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_default_constructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_destructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_move_assignable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_move_constructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_null_pointer.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_object.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_pod.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_pointer.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_polymorphic.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_primary_template.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_reference.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_reference_wrapper.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_referenceable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_same.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_scalar.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_scoped_enum.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_signed.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_signed_integer.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_specialization.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_standard_layout.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_swappable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivial.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_assignable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_constructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_copy_assignable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_copy_constructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_copyable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_default_constructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_destructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_lexicographically_comparable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_move_assignable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_move_constructible.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_unbounded_array.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_union.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_unsigned.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_unsigned_integer.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_valid_expansion.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_void.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_volatile.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/lazy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_32_64_or_128_bit.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_const_lvalue_ref.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_signed.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_unsigned.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/maybe_const.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/nat.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/negation.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/noexcept_move_assign_container.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/operation_traits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/predicate_traits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/promote.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/rank.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_all_extents.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_const.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_const_ref.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_cv.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_cvref.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_extent.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_pointer.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_reference.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_volatile.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/result_of.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/strip_signature.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/type_identity.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/type_list.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/underlying_type.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/unwrap_ref.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/void_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__undef_macros
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/as_const.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/auto_cast.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/cmp.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/convert_to_integral.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/declval.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/exception_guard.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/exchange.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/forward.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/forward_like.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/in_place.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/integer_sequence.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/is_pointer_in_range.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/move.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/pair.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/piecewise_construct.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/priority_tag.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/rel_ops.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/swap.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/terminate_on_exception.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/to_underlying.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/unreachable.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__variant/monostate.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__verbose_abort
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/algorithm
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/array
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/atomic
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/bit
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/bitset
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cassert
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cctype
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cerrno
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cfloat
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/chrono
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/climits
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/clocale
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cmath
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/compare
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/complex
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/concepts
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/condition_variable
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdarg
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstddef
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdint
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdio
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdlib
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstring
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ctime
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ctype.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cwchar
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cwctype
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/errno.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/exception
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/execution
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/filesystem
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/float.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/fstream
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/functional
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/future
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/initializer_list
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iomanip
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ios
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iosfwd
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iostream
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/istream
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iterator
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/limits
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/limits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/list
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/locale
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/locale.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/map
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/math.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/memory
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/mutex
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/new
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/optional
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ostream
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ratio
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/set
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/sstream
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stddef.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdexcept
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdint.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdio.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdlib.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/streambuf
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/string
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/string.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/string_view
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/system_error
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/thread
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/tuple
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/type_traits
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/typeinfo
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/unordered_map
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/unordered_set
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/utility
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/variant
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/vector
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/version
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/wchar.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/wctype.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/ctype.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/errno.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/float.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/libkern/_OSByteOrder.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/libkern/arm/OSByteOrder.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/limits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/locale.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/mach/arm/_structs.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/mach/machine/_structs.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/_mcontext.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/_types.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/endian.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/limits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/signal.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/types.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/malloc/_malloc.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/malloc/_malloc_type.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/malloc/_ptrcheck.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/math.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/nl_types.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread/pthread_impl.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread/qos.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread/sched.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/runetype.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sched.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/stdint.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/stdio.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/stdlib.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/string.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/strings.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_endian.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_posix_availability.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_attr_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_cond_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_key_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_once_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_types.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_symbol_aliasing.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_blkcnt_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_blksize_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_caddr_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_clock_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ct_rune_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_dev_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_errno_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_clr.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_copy.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_def.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_isset.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_set.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_setsize.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_zero.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fsblkcnt_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fsfilcnt_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_gid_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_id_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_in_addr_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_in_port_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ino64_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ino_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int16_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int32_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int64_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int8_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_intptr_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_key_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_mach_port_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_mbstate_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_mode_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_nlink_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_null.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_off_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_pid_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_rsize_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_rune_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_seek_set.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_sigaltstack.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_sigset_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_size_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ssize_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_suseconds_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_time_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_timespec.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_timeval.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_char.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int16_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int32_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int64_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int8_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_short.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ucontext.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_uid_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_uintptr_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_useconds_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_va_list.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_wchar_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_wint_t.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/appleapiopts.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/cdefs.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/errno.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/qos.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/resource.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/signal.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/stdio.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/syslimits.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/types.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/wait.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/time.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/wchar.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/wctype.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/__wctype.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_ctype.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_stdio.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_stdlib.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_string.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_time.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_wchar.h
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_wctype.h
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/__stddef_max_align_t.h
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/float.h
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/limits.h
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/stdarg.h
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/stddef.h
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/stdint.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/BasicVector3D.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Normal3D.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Point3D.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Transform3D.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Transform3D.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Vector3D.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/DualRand.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/JamesRandom.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/MTwistEngine.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/MixMaxRng.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBinomial.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBinomial.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBit.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBit.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBreitWigner.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBreitWigner.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandChiSquare.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandChiSquare.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandExpZiggurat.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandExponential.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandExponential.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandFlat.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandFlat.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGamma.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGamma.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGauss.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGauss.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGaussQ.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGaussQ.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGaussZiggurat.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGeneral.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGeneral.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandLandau.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandLandau.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoisson.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoisson.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoissonQ.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoissonQ.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandStudentT.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandStudentT.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Random.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Random.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandomEngine.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandomEngine.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Randomize.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanecuEngine.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Ranlux64Engine.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanluxEngine.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanluxppEngine.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanshiEngine.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Units/PhysicalConstants.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Units/SystemOfUnits.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Utility/defs.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Utility/memory.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Utility/thread_local.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/AxisAngle.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/AxisAngle.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/LorentzVector.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/LorentzVector.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/Rotation.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/Rotation.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationInterfaces.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationInterfaces.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationX.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationX.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationY.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationY.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationZ.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationZ.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/ThreeVector.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/ThreeVector.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/TwoVector.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/TwoVector.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AffineTransform.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AffineTransform.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Allocator.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AllocatorPool.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ApplicationState.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AutoLock.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AuxiliaryNavServices.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AuxiliaryNavServices.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BlockingList.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BlockingList.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BooleanSolid.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BooleanSolid.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Box.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Box.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4CSGSolid.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ClassificationOfNewTrack.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4CollectionNameVector.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Color.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Colour.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Cons.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Cons.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DCofThisEvent.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DataVector.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DataVector.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DensityEffectCalculator.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DisplacedSolid.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DynamicParticle.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DynamicParticle.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ElectronOccupancy.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Element.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ElementTable.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ElementVector.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4EnvironmentUtils.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Event.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4EventManager.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Exception.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ExceptionSeverity.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Exp.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ExtrudedSolid.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ExtrudedSolid.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ForceCondition.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GPILSelection.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GeomConfig.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GeomSplitter.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GeomTypes.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GlobalConfig.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4HCofThisEvent.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4HCtable.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ICRU90StoppingData.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4IonisParamElm.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4IonisParamMat.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Isotope.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4IsotopeVector.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Log.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4LogicalVolume.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4LogicalVolume.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4LorentzVector.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Material.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialPropertiesIndex.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialPropertiesTable.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialPropertyVector.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialTable.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MultiFunctionalDetector.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationHistory.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationHistory.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationHistoryPool.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevel.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevel.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevelRep.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevelRep.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLogger.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Navigator.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Navigator.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NistElementBuilder.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NistManager.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NistMaterialBuilder.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NoProcess.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Normal3D.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NormalNavigation.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NormalNavigation.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4OrderedTable.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PDefManager.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PVPlacement.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParameterisedNavigation.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParameterisedNavigation.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleChange.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleChange.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleDefinition.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleDefinition.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleMomentum.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleTable.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleTable.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleTableIterator.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsFreeVector.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsModelCatalog.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsTable.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsTable.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsVector.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsVector.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsVectorType.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Point3D.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Polycone.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Polycone.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PolyconeHistorical.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PolyconeSide.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Polyhedron.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Pow.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PrimaryParticle.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PrimaryTransformer.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PrimaryVertex.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessManager.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessManager.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessType.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessVector.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessVector.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Profiler.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Profiler.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ReferenceCountedHandle.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Region.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Region.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RegularNavigation.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ReplicaNavigation.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ReplicaNavigation.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RotationMatrix.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RunManager.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RunManagerKernel.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SDManager.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SDStructure.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SandiaTable.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SensitiveVolumeList.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartTrackStack.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelHeader.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelHeader.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelNode.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelNode.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelProxy.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelProxy.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StackManager.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StackedTrack.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Step.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Step.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StepPoint.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StepPoint.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StepStatus.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SteppingControl.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SteppingManager.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4String.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4String.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SubEvent.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SubEventTrackStack.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SubtractionSolid.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SurfBits.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4THitsCollection.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TessellatedSolid.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Threading.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ThreeVector.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TouchableHandle.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TouchableHistory.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TouchableHistory.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Track.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Track.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackStack.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackStatus.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackVector.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackingManager.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackingMessenger.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrajectoryContainer.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Transform3D.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Trap.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Trap.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Tubs.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Tubs.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TwoVector.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Types.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UIcommand.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UIdirectory.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UImessenger.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UIparameter.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UItokenNum.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UnionSolid.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserLimits.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserLimits.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserStackingAction.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserSteppingAction.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserTrackingAction.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VBooleanProcessor.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VCSGface.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VCSGfaceted.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VDigiCollection.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VExternalNavigation.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VFacet.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VHit.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VHitsCollection.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VNavigation.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPVParameterisation.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VParticleChange.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VParticleChange.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPhysicalVolume.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPhysicalVolume.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPrimitiveScorer.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VProcess.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VReadOutGeometry.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSDFilter.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSensitiveDetector.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSolid.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSolid.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSteppingVerbose.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VTouchable.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VTrajectory.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VUserEventInformation.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VUserTrackInformation.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VVolumeMaterialScanner.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VisAttributes.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VisAttributes.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Visible.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Visible.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VoxelNavigation.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VoxelNavigation.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Voxelizer.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Voxelizer.icc
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ios.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/HepPolyhedron.h
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/PTL/Globals.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/PTL/Types.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/PTL/Utility.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/Randomize.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/evtdefs.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/geomdefs.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/geomwdefs.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/globals.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/graphics_reps_defs.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/pwdefs.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/rundefs.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/templates.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/tls.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/trkdefs.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/trkgdefs.hh
+ /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/windefs.hh
+ /Users/lh270370/Software/nptool/NPLib/include/EdinburghDSSDMap.h
+ /Users/lh270370/Software/nptool/NPLib/include/NPCore.h
+ /Users/lh270370/Software/nptool/NPLib/include/NPFunction.h
+ /Users/lh270370/Software/nptool/NPLib/include/NPImage.h
+ /Users/lh270370/Software/nptool/NPLib/include/NPInputParser.h
+ /Users/lh270370/Software/nptool/NPLib/include/NPOptionManager.h
+ /Users/lh270370/Software/nptool/NPLib/include/RootOutput.h
+ /Users/lh270370/Software/nptool/NPLib/include/TAsciiFile.h
+ /Users/lh270370/Software/nptool/NPLib/include/TEdinburghDSSDData.h
+ /Users/lh270370/Software/nptool/NPLib/include/TInteractionCoordinates.h
+ /Users/lh270370/Software/nptool/NPSimulation/Core/MaterialManager.hh
+ /Users/lh270370/Software/nptool/NPSimulation/Core/NPSDetectorFactory.hh
+ /Users/lh270370/Software/nptool/NPSimulation/Core/NPSFunction.hh
+ /Users/lh270370/Software/nptool/NPSimulation/Core/NPSVDetector.hh
+ /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD/EdinburghDSSD.hh
+ /Users/lh270370/Software/nptool/NPSimulation/Scorers/DSSDScorers.hh
+ /Users/lh270370/Software/nptool/NPSimulation/Scorers/InteractionScorers.hh
+ /Users/lh270370/Software/nptool/NPSimulation/Scorers/NPSHitsMap.hh
+ /opt/homebrew/Cellar/root/6.30.04/include/root/Bytes.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/Compression.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/DllImport.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/ESTLType.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/Foption.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/GuiTypes.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/Math/TRandomEngine.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/RConfigure.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/RVersion.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/EExecutionPolicy.hxx
+ /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RConcurrentHashColl.hxx
+ /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RConfig.hxx
+ /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RRangeCast.hxx
+ /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RSpan.hxx
+ /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RStringView.hxx
+ /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RVersion.hxx
+ /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TIOFeatures.hxx
+ /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TRWSpinLock.hxx
+ /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TSpinMutex.hxx
+ /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TypeTraits.hxx
+ /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/span.hxx
+ /opt/homebrew/Cellar/root/6.30.04/include/root/RVersion.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/Rtypes.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/RtypesCore.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TASImage.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TArray.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayC.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayD.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayF.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayI.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayS.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TAttAxis.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TAttFill.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TAttImage.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TAttLine.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TAttMarker.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TAxis.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TBits.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TBranch.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TBranchCacheInfo.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TBuffer.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TClass.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TCollection.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TDataType.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TDatime.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TDictionary.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TDirectory.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TDirectoryFile.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TError.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TFile.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TFitResultPtr.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TGenericClassInfo.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TH1.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TH1F.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TH2.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TH2F.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TImage.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TIsAProxy.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TIterator.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TList.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TMath.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TMathBase.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrix.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixDBasefwd.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixF.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFBasefwd.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFUtils.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFUtilsfwd.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFfwd.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixT.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixTBase.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixTUtils.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TNamed.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TObjArray.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TObject.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TRandom.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TRandom2.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TSchemaHelper.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TSeqCollection.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TStorage.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TString.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TTree.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TUUID.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TUrl.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TVector2.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TVector3.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TVectorDfwd.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TVectorFfwd.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TVersionCheck.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualIsAProxy.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualMutex.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualRWMutex.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualTreePlayer.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/snprintf.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/strlcpy.h
+ /opt/homebrew/Cellar/root/6.30.04/include/root/strtok.h
+
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/compiler_depend.make b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/compiler_depend.make
new file mode 100644
index 0000000000000000000000000000000000000000..43c1d2ecbae8faa75fc02283af73d7ebc9689544
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/compiler_depend.make
@@ -0,0 +1,4076 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.29
+
+Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o: Detectors/EdinburghDSSD/EdinburghDSSD.cc \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/Availability.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityInternal.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityInternalLegacy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityMacros.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityVersions.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/TargetConditionals.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/__wctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_ctermid.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_ctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_locale.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_stdio.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_intmax_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_nl_item.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint16_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint32_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint64_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint8_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uintmax_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_wctrans_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_wctype_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_wctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_xlocale.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/alloca.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/_limits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/_mcontext.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/arch.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/endian.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/limits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/signal.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/assert.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/adjacent_find.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/all_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/any_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/binary_search.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/clamp.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/comp.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/comp_ref_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_backward.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_move_common.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/count.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/count_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/equal.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/equal_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/fill.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/fill_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_end.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_first_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_if_not.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/for_each.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/for_each_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/for_each_segment.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/generate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/generate_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/half_positive.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_found_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_fun_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_in_out_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_in_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_out_out_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_out_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/includes.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/inplace_merge.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_heap_until.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_partitioned.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_permutation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_sorted.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_sorted_until.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/iter_swap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/iterator_operations.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/lexicographical_compare.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/lexicographical_compare_three_way.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/lower_bound.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/make_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/make_projected.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/max.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/max_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/merge.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/min.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/min_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/min_max_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/minmax.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/minmax_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/mismatch.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/move.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/move_backward.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/next_permutation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/none_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/nth_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partial_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partial_sort_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partition.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partition_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partition_point.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pop_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/prev_permutation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_any_all_none_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backend.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backend.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/any_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/backend.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/fill.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/find_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/for_each.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/libdispatch.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/merge.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/stable_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/transform.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/transform_reduce.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_count.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_fill.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_find.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_for_each.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_frontend_dispatch.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_generate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_is_partitioned.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_merge.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_replace.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_stable_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_transform.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/push_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_adjacent_find.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_all_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_any_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_binary_search.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_clamp.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy_backward.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_count.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_count_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_equal.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_equal_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_fill.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_fill_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_end.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_first_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_if_not.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_for_each.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_for_each_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_generate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_generate_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_includes.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_inplace_merge.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_heap_until.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_partitioned.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_permutation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_sorted.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_sorted_until.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_iterator_concept.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_lexicographical_compare.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_lower_bound.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_make_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_max.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_max_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_merge.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_min.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_min_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_minmax.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_minmax_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_mismatch.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_move.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_move_backward.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_next_permutation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_none_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_nth_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partial_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partial_sort_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partition.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partition_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partition_point.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_pop_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_prev_permutation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_push_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove_copy_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace_copy_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_reverse.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_reverse_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_rotate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_rotate_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_sample.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_search.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_search_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_difference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_intersection.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_symmetric_difference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_union.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_shuffle.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_sort_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_stable_partition.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_stable_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_starts_with.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_swap_ranges.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_transform.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_unique.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_unique_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_upper_bound.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove_copy_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace_copy_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/reverse.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/reverse_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/rotate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/rotate_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sample.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/search.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/search_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_difference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_intersection.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_symmetric_difference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_union.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/shift_left.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/shift_right.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/shuffle.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sift_down.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sort_heap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/stable_partition.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/stable_sort.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/swap_ranges.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/three_way_comp_ref_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/transform.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/uniform_random_bit_generator_adaptor.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unique.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unique_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unwrap_iter.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unwrap_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/upper_bound.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__assert \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/aliases.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_base.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_flag.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_init.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_lock_free.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_sync.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/check_memory_order.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/contention_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/cxx_atomic_impl.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/fence.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/is_always_lock_free.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/kill_dependency.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/memory_order.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__availability \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_cast.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_ceil.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_floor.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_log2.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_width.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/blsr.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/byteswap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/countl.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/countr.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/endian.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/has_single_bit.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/popcount.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/rotate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit_reference \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/tables.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/to_chars_base_10.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/to_chars_integral.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/to_chars_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/calendar.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/concepts.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/convert_to_timespec.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/convert_to_tm.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/day.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/duration.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/file_clock.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/hh_mm_ss.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/high_resolution_clock.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/literals.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/month.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/month_weekday.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/monthday.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/statically_widen.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/steady_clock.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/system_clock.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/time_point.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/weekday.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year_month.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year_month_day.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year_month_weekday.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/common_comparison_category.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_partial_order_fallback.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_strong_order_fallback.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_three_way.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_three_way_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_weak_order_fallback.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/is_eq.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/ordering.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/partial_order.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/strong_order.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/synth_three_way.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/three_way_comparable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/weak_order.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/arithmetic.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/boolean_testable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/class_or_enum.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/common_reference_with.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/common_with.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/convertible_to.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/copyable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/derived_from.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/destructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/different_from.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/equality_comparable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/invocable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/movable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/predicate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/regular.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/relation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/same_as.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/semiregular.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/swappable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/totally_ordered.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__condition_variable/condition_variable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__config \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__config_site \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__debug_utils/randomize_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__debug_utils/strict_weak_ordering_check.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/exception.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/exception_ptr.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/nested_exception.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/operations.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/terminate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/copy_options.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/directory_entry.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/directory_options.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/file_status.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/file_time_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/file_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/filesystem_error.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/operations.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/path.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/path_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/perm_options.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/perms.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/space_info.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/u8path.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/buffer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/concepts.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/enable_insertable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/extended_grapheme_cluster_table.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_arg.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_error.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_fwd.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_parse_context.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_string.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_to_n_result.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter_bool.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter_integral.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter_output.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/parser_std_format_spec.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/unicode.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/width_estimation_table.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binary_function.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binary_negate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/bind.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/bind_back.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/bind_front.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binder1st.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binder2nd.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/boyer_moore_searcher.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/compose.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/default_searcher.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/function.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/hash.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/identity.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/invoke.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/is_transparent.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/mem_fn.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/mem_fun_ref.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/not_fn.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/operations.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/perfect_forward.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/pointer_to_binary_function.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/pointer_to_unary_function.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/ranges_operations.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/reference_wrapper.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/unary_function.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/unary_negate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/weak_result_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/array.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/fstream.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/get.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/hash.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/ios.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/istream.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/memory_resource.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/ostream.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/pair.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/sstream.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/streambuf.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/string.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/string_view.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/subrange.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/tuple.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__hash_table \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ios/fpos.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/access.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/advance.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/back_insert_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/bounded_iter.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/common_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/concepts.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/counted_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/cpp17_iterator_concepts.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/data.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/default_sentinel.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/distance.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/empty.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/erase_if_container.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/front_insert_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/incrementable_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/indirectly_comparable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/insert_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/istream_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/istreambuf_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iter_move.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iter_swap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iterator_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/mergeable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/move_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/move_sentinel.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/next.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/ostream_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/ostreambuf_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/permutable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/prev.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/projected.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/ranges_iterator_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/readable_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/reverse_access.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/reverse_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/segmented_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/size.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/sortable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/unreachable_sentinel.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/wrap_iter.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__locale \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__locale_dir/locale_base_api/bsd_locale_defaults.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mbstate_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/addressof.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/align.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocate_at_least.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocation_guard.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator_arg_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator_destructor.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/assume_aligned.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/auto_ptr.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/builtin_new_allocator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/compressed_pair.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/concepts.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/construct_at.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/destruct_n.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/pointer_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/ranges_construct_at.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/ranges_uninitialized_algorithms.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/raw_storage_iterator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/shared_ptr.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/swap_allocator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/temp_value.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/temporary_buffer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/uninitialized_algorithms.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/unique_ptr.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/uses_allocator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/uses_allocator_construction.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/voidify.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory_resource/memory_resource.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory_resource/polymorphic_allocator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/lock_guard.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/mutex.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/tag_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/unique_lock.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__node_handle \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__numeric/pstl_transform_reduce.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__numeric/reduce.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__numeric/transform_reduce.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/is_valid.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/log2.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/uniform_int_distribution.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/uniform_random_bit_generator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/access.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/concepts.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/container_compatible_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/dangling.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/data.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/empty.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/enable_borrowed_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/enable_view.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/from_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/size.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/subrange.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/view_interface.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__split_buffer \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__std_mbstate_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__string/char_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__string/constexpr_c_functions.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__string/extern_template_lists.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/errc.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/error_category.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/error_code.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/error_condition.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/system_error.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/formatter.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/id.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/poll_with_backoff.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/this_thread.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/thread.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__threading_support \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tree \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/make_tuple_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/pair_like.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/sfinae_helpers.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_element.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_indices.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_like.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_like_ext.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_size.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_const.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_cv.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_lvalue_reference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_pointer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_rvalue_reference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_volatile.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/aligned_storage.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/aligned_union.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/alignment_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/apply_cv.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/can_extract_key.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/common_reference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/common_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/conditional.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/conjunction.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/copy_cv.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/copy_cvref.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/datasizeof.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/decay.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/dependent_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/disjunction.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/enable_if.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/extent.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/has_unique_object_representation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/has_virtual_destructor.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/integral_constant.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/invoke.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_abstract.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_aggregate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_allocator.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_always_bitcastable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_arithmetic.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_array.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_base_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_bounded_array.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_callable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_char_like_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_class.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_compound.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_const.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_constant_evaluated.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_convertible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_copy_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_copy_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_core_convertible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_default_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_destructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_empty.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_enum.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_equality_comparable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_execution_policy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_final.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_floating_point.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_function.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_fundamental.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_implicitly_default_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_integral.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_literal_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_member_function_pointer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_member_object_pointer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_member_pointer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_move_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_move_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_convertible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_copy_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_copy_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_default_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_destructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_move_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_move_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_null_pointer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_object.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_pod.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_pointer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_polymorphic.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_primary_template.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_reference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_reference_wrapper.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_referenceable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_same.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_scalar.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_scoped_enum.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_signed.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_signed_integer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_specialization.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_standard_layout.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_swappable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivial.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_copy_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_copy_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_copyable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_default_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_destructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_lexicographically_comparable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_move_assignable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_move_constructible.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_unbounded_array.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_union.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_unsigned.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_unsigned_integer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_valid_expansion.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_void.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_volatile.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/lazy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_32_64_or_128_bit.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_const_lvalue_ref.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_signed.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_unsigned.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/maybe_const.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/nat.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/negation.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/noexcept_move_assign_container.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/operation_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/predicate_traits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/promote.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/rank.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_all_extents.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_const.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_const_ref.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_cv.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_cvref.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_extent.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_pointer.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_reference.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_volatile.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/result_of.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/strip_signature.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/type_identity.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/type_list.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/underlying_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/unwrap_ref.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/void_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__undef_macros \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/as_const.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/auto_cast.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/cmp.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/convert_to_integral.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/declval.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/exception_guard.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/exchange.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/forward.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/forward_like.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/in_place.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/integer_sequence.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/is_pointer_in_range.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/move.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/pair.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/piecewise_construct.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/priority_tag.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/rel_ops.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/swap.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/terminate_on_exception.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/to_underlying.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/unreachable.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__variant/monostate.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__verbose_abort \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/algorithm \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/array \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/atomic \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/bit \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/bitset \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cassert \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cctype \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cerrno \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cfloat \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/chrono \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/climits \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/clocale \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cmath \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/compare \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/complex \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/concepts \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/condition_variable \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdarg \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstddef \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdint \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdio \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdlib \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstring \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ctime \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cwchar \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cwctype \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/errno.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/exception \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/execution \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/filesystem \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/float.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/fstream \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/functional \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/future \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/initializer_list \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iomanip \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ios \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iosfwd \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iostream \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/istream \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iterator \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/limits \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/limits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/list \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/locale \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/locale.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/map \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/math.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/memory \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/mutex \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/new \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/optional \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ostream \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ratio \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/set \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/sstream \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stddef.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdexcept \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdint.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdio.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdlib.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/streambuf \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/string \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/string.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/string_view \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/system_error \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/thread \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/tuple \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/type_traits \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/typeinfo \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/unordered_map \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/unordered_set \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/utility \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/variant \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/vector \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/version \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/wchar.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/wctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/ctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/errno.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/float.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/libkern/_OSByteOrder.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/libkern/arm/OSByteOrder.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/limits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/locale.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/mach/arm/_structs.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/mach/machine/_structs.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/_mcontext.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/endian.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/limits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/signal.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/malloc/_malloc.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/malloc/_malloc_type.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/malloc/_ptrcheck.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/math.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/nl_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread/pthread_impl.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread/qos.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread/sched.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/runetype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sched.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/stdint.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/stdio.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/stdlib.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/string.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/strings.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_endian.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_posix_availability.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_key_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_once_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_symbol_aliasing.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_blkcnt_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_blksize_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_caddr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_clock_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ct_rune_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_dev_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_errno_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_clr.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_copy.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_def.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_isset.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_set.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_setsize.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_zero.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fsblkcnt_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fsfilcnt_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_gid_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_id_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_in_addr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_in_port_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ino64_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ino_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int16_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int32_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int64_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int8_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_intptr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_key_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_mach_port_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_mbstate_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_mode_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_nlink_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_null.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_off_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_pid_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_rsize_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_rune_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_seek_set.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_sigaltstack.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_sigset_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_size_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ssize_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_suseconds_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_time_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_timespec.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_timeval.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_char.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int16_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int32_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int64_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int8_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_short.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ucontext.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_uid_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_uintptr_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_useconds_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_va_list.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_wchar_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_wint_t.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/appleapiopts.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/cdefs.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/errno.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/qos.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/resource.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/signal.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/stdio.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/syslimits.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/types.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/wait.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/time.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/wchar.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/wctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/__wctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_ctype.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_stdio.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_stdlib.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_string.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_time.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_wchar.h \
+  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_wctype.h \
+  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/__stddef_max_align_t.h \
+  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/float.h \
+  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/limits.h \
+  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/stdarg.h \
+  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/stddef.h \
+  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/stdint.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/BasicVector3D.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Normal3D.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Point3D.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Transform3D.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Transform3D.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Vector3D.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/DualRand.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/JamesRandom.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/MTwistEngine.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/MixMaxRng.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBinomial.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBinomial.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBit.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBit.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBreitWigner.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBreitWigner.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandChiSquare.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandChiSquare.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandExpZiggurat.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandExponential.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandExponential.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandFlat.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandFlat.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGamma.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGamma.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGauss.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGauss.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGaussQ.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGaussQ.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGaussZiggurat.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGeneral.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGeneral.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandLandau.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandLandau.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoisson.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoisson.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoissonQ.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoissonQ.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandStudentT.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandStudentT.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Random.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Random.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandomEngine.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandomEngine.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Randomize.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanecuEngine.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Ranlux64Engine.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanluxEngine.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanluxppEngine.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanshiEngine.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Units/PhysicalConstants.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Units/SystemOfUnits.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Utility/defs.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Utility/memory.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Utility/thread_local.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/AxisAngle.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/AxisAngle.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/LorentzVector.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/LorentzVector.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/Rotation.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/Rotation.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationInterfaces.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationInterfaces.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationX.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationX.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationY.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationY.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationZ.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationZ.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/ThreeVector.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/ThreeVector.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/TwoVector.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/TwoVector.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AffineTransform.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AffineTransform.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Allocator.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AllocatorPool.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ApplicationState.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AutoLock.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AuxiliaryNavServices.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AuxiliaryNavServices.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BlockingList.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BlockingList.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BooleanSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BooleanSolid.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Box.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Box.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4CSGSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ClassificationOfNewTrack.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4CollectionNameVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Color.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Colour.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Cons.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Cons.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DCofThisEvent.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DataVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DataVector.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DensityEffectCalculator.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DisplacedSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DynamicParticle.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DynamicParticle.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ElectronOccupancy.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Element.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ElementTable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ElementVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4EnvironmentUtils.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Event.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4EventManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Exception.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ExceptionSeverity.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Exp.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ExtrudedSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ExtrudedSolid.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ForceCondition.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GPILSelection.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GeomConfig.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GeomSplitter.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GeomTypes.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GlobalConfig.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4HCofThisEvent.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4HCtable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ICRU90StoppingData.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4IonisParamElm.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4IonisParamMat.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Isotope.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4IsotopeVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Log.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4LogicalVolume.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4LogicalVolume.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4LorentzVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Material.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialPropertiesIndex.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialPropertiesTable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialPropertyVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialTable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MultiFunctionalDetector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationHistory.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationHistory.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationHistoryPool.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevel.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevel.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevelRep.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevelRep.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLogger.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Navigator.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Navigator.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NistElementBuilder.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NistManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NistMaterialBuilder.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NoProcess.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Normal3D.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NormalNavigation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NormalNavigation.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4OrderedTable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PDefManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PVPlacement.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParameterisedNavigation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParameterisedNavigation.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleChange.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleChange.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleDefinition.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleDefinition.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleMomentum.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleTable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleTable.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleTableIterator.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsFreeVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsModelCatalog.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsTable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsTable.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsVector.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsVectorType.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Point3D.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Polycone.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Polycone.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PolyconeHistorical.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PolyconeSide.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Polyhedron.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Pow.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PrimaryParticle.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PrimaryTransformer.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PrimaryVertex.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessManager.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessType.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessVector.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Profiler.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Profiler.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ReferenceCountedHandle.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Region.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Region.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RegularNavigation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ReplicaNavigation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ReplicaNavigation.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RotationMatrix.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RunManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RunManagerKernel.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SDManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SDStructure.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SandiaTable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SensitiveVolumeList.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartTrackStack.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelHeader.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelHeader.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelNode.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelNode.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelProxy.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelProxy.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StackManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StackedTrack.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Step.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Step.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StepPoint.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StepPoint.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StepStatus.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SteppingControl.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SteppingManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4String.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4String.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SubEvent.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SubEventTrackStack.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SubtractionSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SurfBits.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4THitsCollection.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TessellatedSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Threading.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ThreeVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TouchableHandle.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TouchableHistory.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TouchableHistory.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Track.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Track.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackStack.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackStatus.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackingManager.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackingMessenger.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrajectoryContainer.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Transform3D.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Trap.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Trap.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Tubs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Tubs.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TwoVector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Types.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UIcommand.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UIdirectory.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UImessenger.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UIparameter.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UItokenNum.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UnionSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserLimits.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserLimits.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserStackingAction.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserSteppingAction.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserTrackingAction.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VBooleanProcessor.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VCSGface.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VCSGfaceted.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VDigiCollection.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VExternalNavigation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VFacet.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VHit.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VHitsCollection.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VNavigation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPVParameterisation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VParticleChange.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VParticleChange.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPhysicalVolume.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPhysicalVolume.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPrimitiveScorer.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VProcess.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VReadOutGeometry.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSDFilter.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSensitiveDetector.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSolid.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSolid.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSteppingVerbose.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VTouchable.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VTrajectory.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VUserEventInformation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VUserTrackInformation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VVolumeMaterialScanner.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VisAttributes.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VisAttributes.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Visible.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Visible.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VoxelNavigation.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VoxelNavigation.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Voxelizer.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Voxelizer.icc \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ios.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/HepPolyhedron.h \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/PTL/Globals.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/PTL/Types.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/PTL/Utility.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/Randomize.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/evtdefs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/geomdefs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/geomwdefs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/globals.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/graphics_reps_defs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/pwdefs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/rundefs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/templates.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/tls.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/trkdefs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/trkgdefs.hh \
+  /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/windefs.hh \
+  /Users/lh270370/Software/nptool/NPLib/include/EdinburghDSSDMap.h \
+  /Users/lh270370/Software/nptool/NPLib/include/NPCore.h \
+  /Users/lh270370/Software/nptool/NPLib/include/NPFunction.h \
+  /Users/lh270370/Software/nptool/NPLib/include/NPImage.h \
+  /Users/lh270370/Software/nptool/NPLib/include/NPInputParser.h \
+  /Users/lh270370/Software/nptool/NPLib/include/NPOptionManager.h \
+  /Users/lh270370/Software/nptool/NPLib/include/RootOutput.h \
+  /Users/lh270370/Software/nptool/NPLib/include/TAsciiFile.h \
+  /Users/lh270370/Software/nptool/NPLib/include/TEdinburghDSSDData.h \
+  /Users/lh270370/Software/nptool/NPLib/include/TInteractionCoordinates.h \
+  Core/MaterialManager.hh \
+  Core/NPSDetectorFactory.hh \
+  Core/NPSFunction.hh \
+  Core/NPSVDetector.hh \
+  Detectors/EdinburghDSSD/EdinburghDSSD.hh \
+  Scorers/DSSDScorers.hh \
+  Scorers/InteractionScorers.hh \
+  Scorers/NPSHitsMap.hh \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/Bytes.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/Compression.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/DllImport.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ESTLType.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/Foption.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/GuiTypes.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/Math/TRandomEngine.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/RConfigure.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/RVersion.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/EExecutionPolicy.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RConcurrentHashColl.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RConfig.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RRangeCast.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RSpan.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RStringView.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RVersion.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TIOFeatures.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TRWSpinLock.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TSpinMutex.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TypeTraits.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/span.hxx \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/RVersion.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/Rtypes.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/RtypesCore.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TASImage.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TArray.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayC.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayD.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayF.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayI.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayS.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TAttAxis.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TAttFill.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TAttImage.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TAttLine.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TAttMarker.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TAxis.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TBits.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TBranch.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TBranchCacheInfo.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TBuffer.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TClass.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TCollection.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TDataType.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TDatime.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TDictionary.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TDirectory.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TDirectoryFile.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TError.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TFile.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TFitResultPtr.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TGenericClassInfo.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TH1.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TH1F.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TH2.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TH2F.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TImage.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TIsAProxy.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TIterator.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TList.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMath.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMathBase.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrix.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixDBasefwd.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixF.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFBasefwd.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFUtils.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFUtilsfwd.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFfwd.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixT.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixTBase.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixTUtils.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TNamed.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TObjArray.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TObject.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TRandom.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TRandom2.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TSchemaHelper.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TSeqCollection.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TStorage.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TString.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TTree.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TUUID.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TUrl.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVector2.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVector3.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVectorDfwd.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVectorFfwd.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVersionCheck.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualIsAProxy.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualMutex.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualRWMutex.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualTreePlayer.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/snprintf.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/strlcpy.h \
+  /opt/homebrew/Cellar/root/6.30.04/include/root/strtok.h
+
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/snprintf.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualTreePlayer.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualRWMutex.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualIsAProxy.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TVectorDfwd.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TVector2.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TString.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TStorage.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixTUtils.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixTBase.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixT.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFUtils.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFBasefwd.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TMathBase.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TIsAProxy.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TImage.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TH2F.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TH1.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TFitResultPtr.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TDirectoryFile.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFfwd.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TDirectory.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TDatime.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TClass.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TBuffer.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TBranchCacheInfo.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TRandom2.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TAttImage.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TAttFill.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TArrayD.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TArrayC.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TArray.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/span.hxx:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RStringView.hxx:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RSpan.hxx:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/RConfigure.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/Math/TRandomEngine.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RRangeCast.hxx:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/GuiTypes.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/Foption.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/ESTLType.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/Bytes.h:
+
+Scorers/InteractionScorers.hh:
+
+Detectors/EdinburghDSSD/EdinburghDSSD.hh:
+
+Core/NPSVDetector.hh:
+
+Core/NPSFunction.hh:
+
+Core/NPSDetectorFactory.hh:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TAttAxis.h:
+
+Core/MaterialManager.hh:
+
+/Users/lh270370/Software/nptool/NPLib/include/RootOutput.h:
+
+/Users/lh270370/Software/nptool/NPLib/include/NPOptionManager.h:
+
+/Users/lh270370/Software/nptool/NPLib/include/NPInputParser.h:
+
+/Users/lh270370/Software/nptool/NPLib/include/NPImage.h:
+
+/Users/lh270370/Software/nptool/NPLib/include/NPFunction.h:
+
+/Users/lh270370/Software/nptool/NPLib/include/EdinburghDSSDMap.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/tls.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/graphics_reps_defs.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/geomwdefs.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/geomdefs.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Voxelizer.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VisAttributes.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VUserTrackInformation.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VTrajectory.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSteppingVerbose.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSolid.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSensitiveDetector.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPrimitiveScorer.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPVParameterisation.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VNavigation.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VHit.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VFacet.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VCSGfaceted.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserTrackingAction.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserLimits.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UItokenNum.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UIparameter.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UImessenger.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/HepPolyhedron.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UIdirectory.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Tubs.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Trap.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Trap.hh:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixF.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Transform3D.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrajectoryContainer.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackingManager.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UnionSolid.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackVector.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackStatus.hh:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TAttMarker.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Track.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Track.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TouchableHistory.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TouchableHandle.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ThreeVector.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TessellatedSolid.hh:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/RtypesCore.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4String.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4String.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SteppingManager.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StepPoint.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StackedTrack.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StackManager.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelProxy.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelHeader.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SensitiveVolumeList.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SDStructure.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RotationMatrix.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ReplicaNavigation.icc:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TArrayS.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RegularNavigation.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Region.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessVector.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessVector.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessManager.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PrimaryTransformer.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Pow.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Polyhedron.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PolyconeHistorical.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Polycone.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Polycone.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsVector.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsVector.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsTable.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsModelCatalog.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/trkdefs.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsFreeVector.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleTable.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleChange.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleChange.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParameterisedNavigation.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PVPlacement.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PDefManager.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NormalNavigation.hh:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TDataType.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NoProcess.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NistManager.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NistElementBuilder.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Navigator.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Navigator.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLogger.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevelRep.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationHistoryPool.hh:
+
+Scorers/NPSHitsMap.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationHistory.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationHistory.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MultiFunctionalDetector.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialTable.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Material.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4LorentzVector.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4LogicalVolume.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Isotope.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ICRU90StoppingData.hh:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TObjArray.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4HCtable.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GeomTypes.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GeomConfig.hh:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TBits.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ForceCondition.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ExtrudedSolid.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Exp.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Event.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4EnvironmentUtils.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ElementVector.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ElementTable.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DynamicParticle.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DisplacedSolid.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DataVector.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VisAttributes.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VHitsCollection.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Cons.icc:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TObject.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Colour.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4CollectionNameVector.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ClassificationOfNewTrack.hh:
+
+/Users/lh270370/Software/nptool/NPLib/include/TEdinburghDSSDData.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Box.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BlockingList.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AuxiliaryNavServices.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ApplicationState.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RunManagerKernel.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GeomSplitter.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AllocatorPool.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AffineTransform.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Box.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/TwoVector.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/ThreeVector.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/ThreeVector.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationZ.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationX.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TIOFeatures.hxx:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/LorentzVector.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Utility/defs.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TBranch.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Units/PhysicalConstants.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Normal3D.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanshiEngine.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanluxppEngine.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Ranlux64Engine.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanecuEngine.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VParticleChange.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandomEngine.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandomEngine.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleDefinition.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/LorentzVector.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Random.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Random.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandStudentT.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandStudentT.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoissonQ.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoisson.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialPropertyVector.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoisson.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StepPoint.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandLandau.icc:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TNamed.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandLandau.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGeneral.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGaussZiggurat.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGaussQ.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGauss.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGamma.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandExponential.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandExpZiggurat.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandChiSquare.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBreitWigner.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DataVector.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBit.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/Randomize.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/DualRand.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Point3D.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Normal3D.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/BasicVector3D.h:
+
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/float.h:
+
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/__stddef_max_align_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_wctype.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_wchar.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_time.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_stdio.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/__wctype.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/wctype.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NormalNavigation.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/wchar.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VParticleChange.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Color.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/time.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/wait.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/types.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/stdio.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/qos.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4EventManager.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/errno.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Visible.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_wint_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_uintptr_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_uid_t.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4THitsCollection.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_short.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_timeval.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_timespec.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserLimits.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_time_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ssize_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_size_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_sigaltstack.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_rune_t.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationX.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_rsize_t.h:
+
+/Users/lh270370/Software/nptool/NPLib/include/NPCore.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_null.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_mode_t.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PrimaryVertex.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_mach_port_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_intptr_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int8_t.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPhysicalVolume.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandChiSquare.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int32_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int16_t.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TAxis.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ino_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ino64_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_in_port_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/appleapiopts.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_in_addr_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_id_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_gid_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fsfilcnt_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_zero.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BlockingList.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_setsize.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_set.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_isset.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_clr.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_errno_t.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleTable.icc:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandExponential.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_clock_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_caddr_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_blksize_t.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSDFilter.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_types.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessManager.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_t.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TMath.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_once_t.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SteppingControl.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ucontext.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BooleanSolid.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_attr_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_endian.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/string.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandPoissonQ.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/stdlib.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/stdio.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/stdint.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread/qos.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_key_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread/pthread_impl.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/nl_types.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/math.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/malloc/_ptrcheck.h:
+
+Scorers/DSSDScorers.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/malloc/_malloc_type.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/malloc/_malloc.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/types.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TRandom.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/signal.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/limits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/endian.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/_types.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/mach/arm/_structs.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/limits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/libkern/arm/OSByteOrder.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/libkern/_OSByteOrder.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/ctype.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/wctype.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/wchar.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/vector:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/variant:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Transform3D.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/utility:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/unordered_set:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/typeinfo:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/string:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/swap.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdlib.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdint.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ProcessType.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdexcept:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ratio:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/system_error:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_floating_point.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ostream:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/locale.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/locale:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_mbstate_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/new:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/limits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iosfwd:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove_if.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ios:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TSpinMutex.hxx:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/initializer_list:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/future:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/float.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/RVersion.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/execution:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/exception:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cwchar:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4BooleanSolid.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_if_not.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ctype.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/concepts:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/shift_right.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cmath:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/chrono:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/binary_search.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_literal_type.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cerrno:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/tuple.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__hash_table:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/bit:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBinomial.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/lower_bound.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/atomic:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_specialization.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cwctype:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelNode.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_equal.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_unbounded_array.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/unreachable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/type_traits:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/string_view:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleMomentum.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/terminate_on_exception.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/is_pointer_in_range.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/sstream:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Vector3D.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/exchange.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/convert_to_integral.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__string/char_traits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/auto_cast.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_difference.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__numeric/pstl_transform_reduce.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/void_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/unwrap_ref.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityVersions.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/strip_signature.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_volatile.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/make_projected.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_extent.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_cvref.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AuxiliaryNavServices.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_const.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/error_condition.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_array.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/rank.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/predicate_traits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/operation_traits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/clocale:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fd_def.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_union.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/noexcept_move_assign_container.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/dependent_type.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/negation.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/AxisAngle.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/nat.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserSteppingAction.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_default_constructible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_unsigned.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/equal_range.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/inplace_merge.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_signed.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/system_clock.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstddef:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_valid_expansion.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_unsigned_integer.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_move_assignable.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/Rotation.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_lexicographically_comparable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_destructible.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SubtractionSolid.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_intersection.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_copyable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/to_underlying.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PolyconeSide.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_copy_constructible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_sort.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_constructible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivial.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_standard_layout.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SandiaTable.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_signed_integer.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VVolumeMaterialScanner.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_signed.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_primary_template.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_polymorphic.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_pointer.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_pod.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ReferenceCountedHandle.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/log2.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_move_constructible.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TASImage.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_default_constructible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_copy_assignable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/array:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/countr.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_move_constructible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/fill_n.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_object.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBreitWigner.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_move_assignable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/wrap_iter.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/reverse_iterator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_member_object_pointer.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_member_function_pointer.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/machine/_mcontext.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/unary_function.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_pointer.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_assignable.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GlobalConfig.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_integral.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_implicitly_default_constructible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_fundamental.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/JamesRandom.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_function.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdlib:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/trkgdefs.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/list:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__numeric/transform_reduce.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_enum.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_permutation.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_copy_constructible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_convertible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/three_way_comp_ref_type.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_bounded_array.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ExtrudedSolid.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/in_place.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/count.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/alloca.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_heap.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityMacros.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_reverse.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unique.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_assignable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_allocator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_aggregate.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleDefinition.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/bind_back.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_abstract.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/invoke.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/integral_constant.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/has_virtual_destructor.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RConfig.hxx:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/PTL/Globals.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/as_const.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unique_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/extent.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/month_weekday.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_unsigned.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_in_result.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/enable_if.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SubEventTrackStack.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/copy_cv.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iostream:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/conditional.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/common_type.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_blkcnt_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/enable_insertable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/common_reference.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/apply_cv.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_volatile.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParameterisedNavigation.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_rvalue_reference.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_all_extents.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_lvalue_reference.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_const.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__config_site:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/sfinae_helpers.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/type_identity.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_types.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_size.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Types.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_like.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/globals.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_indices.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/pair_like.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/this_thread.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandFlat.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_wchar_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_constant_evaluated.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/formatter.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__string/extern_template_lists.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__split_buffer:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/day.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_null_pointer.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_convertible.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationZ.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/subrange.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/time_point.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/size.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/empty.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tree:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/dangling.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/for_each_n.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cctype:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/container_compatible_range.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_pid_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/file_clock.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/concepts.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/uniform_random_bit_generator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/is_valid.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_const.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/pwdefs.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__numeric/reduce.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_int64_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_cv.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ios.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_find.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__node_handle:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/unique_lock.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/algorithm:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/tag_types.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/lock_guard.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory_resource/polymorphic_allocator.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TSeqCollection.h:
+
+/Users/lh270370/Software/nptool/NPLib/include/TInteractionCoordinates.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelNode.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory_resource/memory_resource.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/voidify.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/PTL/Types.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/byteswap.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/uses_allocator_construction.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/literals.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/uses_allocator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/unique_ptr.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/temporary_buffer.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/temp_value.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/limits:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/segmented_iterator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/shared_ptr.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ios/fpos.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/raw_storage_iterator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/thread.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/ranges_construct_at.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/EExecutionPolicy.hxx:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4RunManager.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/compressed_pair.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/identity.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/builtin_new_allocator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int8_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/auto_ptr.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/assume_aligned.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TIterator.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VBooleanProcessor.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/align.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_string.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/addressof.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/MixMaxRng.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_symbol_aliasing.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mbstate_t.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4LogicalVolume.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/error_code.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/unary_negate.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__locale:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/size.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/check_memory_order.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/memory_order.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/compose.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/reverse_access.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TError.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_const_lvalue_ref.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/destruct_n.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/ranges_iterator_traits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/conjunction.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/convertible_to.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/permutable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/declval.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TH2.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_cv.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_suseconds_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/alignment_of.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/front_insert_iterator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/ostreambuf_iterator.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationY.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/next.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/move_sentinel.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/different_from.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/mergeable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/cmp.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iterator.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VUserEventInformation.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ReplicaNavigation.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/assert.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iter_swap.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/optional:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_permutation.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/insert_iterator.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Profiler.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/copy_cvref.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DensityEffectCalculator.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/search_n.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/indirectly_comparable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/swap_allocator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/empty.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/for_each_segment.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_reference.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4IonisParamElm.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/find_if.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/distance.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TDictionary.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NistMaterialBuilder.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/construct_at.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/data.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Element.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_fill.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/move.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/cpp17_iterator_concepts.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/counted_iterator.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Threading.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/signal.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/concepts.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/common_iterator.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TAttLine.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/access.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/month.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/istream_iterator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/nth_element.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/bounded_iter.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VReadOutGeometry.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/advance.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/data.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/ostream_iterator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/enable_borrowed_range.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/templates.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/subrange.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/string_view.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_base.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/string.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/streambuf.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/ostream.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/istreambuf_iterator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/memory_resource.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/istream.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Units/SystemOfUnits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/disjunction.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/hash.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TTree.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/streambuf:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/array.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/reference_wrapper.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/tuple:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/ranges_operations.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/search.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/pointer_to_unary_function.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/erase_if_container.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SDManager.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/AxisAngle.h:
+
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/stdint.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/access.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/pointer_to_binary_function.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelHeader.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/tables.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/perfect_forward.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/not_fn.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/mem_fn.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocate_at_least.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/invoke.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/MTwistEngine.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_log2.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/hash.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/boyer_moore_searcher.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy_n.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binder1st.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binary_negate.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binary_function.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_locale.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/predicate.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/unicode.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_is_partitioned.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/default_sentinel.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uintmax_t.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RVersion.hxx:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocation_guard.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_to_n_result.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TVectorFfwd.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/promote.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partial_sort_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_string.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iomanip:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TypeTraits.hxx:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/buffer.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/u8path.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Profiler.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iterator_traits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/path_iterator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/constructible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/filesystem_error.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/copy_options.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/terminate.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/windefs.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/nested_exception.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_pop_heap.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__string/constexpr_c_functions.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/exception.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_if.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__debug_utils/strict_weak_ordering_check.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_backward.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_move_backward.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__debug_utils/randomize_range.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/PTL/Utility.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Visible.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/errno.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_sorted.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/readable_traits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_rotate_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__config:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace_if.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/same_as.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_class.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/derived_from.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/operations.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/common_with.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/class_or_enum.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/math.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/prev_permutation.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/cxx_atomic_impl.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/convert_to_tm.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/assignable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_max_element.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/three_way_comparable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/piecewise_construct.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ExceptionSeverity.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/synth_three_way.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/operations.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/syslimits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/partial_order.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/get.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_three_way_result.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_three_way.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/directory_entry.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_strong_order_fallback.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/common_comparison_category.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/types.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year_month_day.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_out_out_result.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year_month.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/locale.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_copy_assignable.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationInterfaces.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/operations.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_va_list.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_intersection.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_callable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/arithmetic.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_move_constructible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_trivially_default_constructible.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TouchableHistory.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/strings.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_count.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DynamicParticle.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_heap_until.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/weekday.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/steady_clock.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4OrderedTable.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/iter_move.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/monthday.h:
+
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/stddef.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/high_resolution_clock.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_same.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter_bool.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/incrementable_traits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sched.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/concepts.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_sync.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/traits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_transform.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/fstream.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/to_chars_integral.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/perm_options.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_sorted.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_equality_comparable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int64_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/concepts.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/to_chars_base_10.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/file_type.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/strong_order.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit_reference:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackStack.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_if.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_void.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/merge.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/rotate.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backend.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_partial_order_fallback.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandFlat.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/popcount.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGaussQ.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/endian.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AutoLock.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_clamp.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/forward_like.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/countl.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/ios.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/equality_comparable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/blsr.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/forward.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/Rtypes.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__std_mbstate_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_final.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ElectronOccupancy.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/pair.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_like_ext.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/boolean_testable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_lock_free.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_any_all_none_of.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_width.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/parser_std_format_spec.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/rel_ops.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int32_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/push_heap.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_ceil.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_cast.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4AffineTransform.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_parse_context.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/thread:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/kill_dependency.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/space_info.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/bitset:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__availability:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/fence.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_arg.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator_traits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_flag.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_reference_wrapper.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/aliases.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/hh_mm_ss.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/add_pointer.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/contention_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/exception_guard.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unwrap_range.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/tuple_element.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VDigiCollection.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_always_bitcastable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/comp_ref_type.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_off_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_inplace_merge.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/swap_ranges.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/stable_sort.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/runetype.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/stable_partition.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sort_heap.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/TwoVector.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sort.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/duration.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/any_of.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_copy_assignable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/shuffle.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/shift_left.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/aligned_storage.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBinomial.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/prev.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_union.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/enable_view.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/sortable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sample.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/rotate.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__variant/monostate.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/reverse.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixFUtilsfwd.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/fill.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/lexicographical_compare_three_way.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VTouchable.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__fwd/sstream.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_assignable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_any_of.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevel.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace_copy_if.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/underlying_type.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/make_32_64_or_128_bit.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_wctrans_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/remove_copy_if.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TUUID.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4GPILSelection.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Allocator.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_unique.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4DCofThisEvent.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/unwrap_iter.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_starts_with.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_stable_sort.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UserStackingAction.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_compound.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/destructible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_ct_rune_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_stable_partition.h:
+
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/stdarg.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_union.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_shuffle.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_copy_constructible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/mach/machine/_structs.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_symmetric_difference.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/generate_n.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_heap.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_set_difference.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_search_n.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/ordering.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/compare_weak_order_fallback.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_search.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/none_of.h:
+
+Detectors/EdinburghDSSD/EdinburghDSSD.cc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/half_positive.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_rotate.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VSolid.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_constructible.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4UIcommand.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/common_reference_with.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_useconds_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdio:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter_integral.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_reverse_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_referenceable.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/Randomize.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Step.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator_arg_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__locale_dir/locale_base_api/bsd_locale_defaults.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__condition_variable/condition_variable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_min.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsTable.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace_copy_if.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partition.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_nlink_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partition_point.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__undef_macros:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/can_extract_key.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/Compression.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/convert_to_timespec.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove_copy_if.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_merge.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/climits:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VExternalNavigation.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/mem_fun_ref.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VCSGface.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_nth_element.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_error.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/string.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_none_of.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/__wctype.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/concepts.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cassert:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/semiregular.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/for_each.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_move.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/arch.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_partitioned.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialPropertiesIndex.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/move_iterator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_minmax_element.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__random/uniform_int_distribution.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/iter_swap.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/set_symmetric_difference.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_minmax.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_pthread/_pthread_cond_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_execution_policy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_make_heap.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_volatile.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/system_error.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TMatrix.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/year_month_weekday.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VoxelNavigation.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/comp.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_is_sorted_until.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_next_permutation.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/_limits.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TList.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__threading_support:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TwoVector.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_end.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/iterator:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_replace_if.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_member_pointer.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Geometry/Transform3D.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_if_not.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/evtdefs.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint64_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/file_status.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partition_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/maybe_const.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_equal_range.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationInterfaces.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_count_if.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/relation.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy_if.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SubEvent.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevel.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_for_each_n.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/equal.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_n.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partition_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_char_like_type.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_iterator_concept.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/errc.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/default_searcher.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/decay.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/Availability.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TArrayF.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PrimaryParticle.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/replace_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_upper_bound.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/upper_bound.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/formatter_output.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__tuple/make_tuple_types.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy_backward.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Utility/memory.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/adjacent_find.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Exception.hh:
+
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/limits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/pair.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/clamp.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_first_of.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_fill_n.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/generate.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/fstream:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_constructible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_adjacent_find.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RanluxEngine.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/is_always_lock_free.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VProcess.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SurfBits.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/mutex:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_replace.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartTrackStack.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_char.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/memory:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/from_range.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/copyable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_generate.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_for_each.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TUrl.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TCollection.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4SmartVoxelProxy.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/mismatch.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__ranges/view_interface.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/lazy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/path.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/compare:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/strtok.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/aligned_union.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/transform_reduce.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/transform.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/poll_with_backoff.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/allocator_destructor.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_xlocale.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_if.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove_if.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__mutex/mutex.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/invocable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/map:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pop_heap.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/min_max_result.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TSchemaHelper.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Cons.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/libdispatch.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/weak_result_type.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_scoped_enum.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TH1F.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Voxelizer.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_arithmetic.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/ranges_uninitialized_algorithms.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/bit_floor.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_reference.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_stdio.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/any_of.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backend.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__charconv/to_chars_result.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_ctype.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_stable_sort.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_sort.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_fill.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_mismatch.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partition_point.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4PhysicsVectorType.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_in_out_result.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/pointer_traits.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_push_heap.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_min_element.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_scalar.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partial_sort_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stdio.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__memory/uninitialized_algorithms.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_empty.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_binary_search.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/strlcpy.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGauss.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__system_error/error_category.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Utility/thread_local.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_posix_availability.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partial_sort.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/pthread/sched.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/_types.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint16_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/swappable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/bind_front.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/condition_variable:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/priority_tag.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4NavigationLevelRep.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_partitioned.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/next_permutation.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/RotationY.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/move.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/minmax_element.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_wctype.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/function.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_swap_ranges.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4CSGSolid.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/min_element.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Region.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/errno.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/max.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/stddef.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/make_heap.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Vector/Rotation.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdarg:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/min.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_unique_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_swappable.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4IsotopeVector.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/move_backward.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/lexicographical_compare.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_remove.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_frontend_dispatch.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/type_list.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/includes.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/result_of.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/iterator_operations.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/unordered_map:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/back_insert_iterator.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic_init.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_max.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__verbose_abort:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/transform.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TFile.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VoxelNavigation.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_base_of.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/reverse_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_heap_until.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/ctime:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_move_assignable.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/rundefs.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/cdefs.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/merge.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/extended_grapheme_cluster_table.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__assert:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/DllImport.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_intmax_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/movable.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_dev_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_count.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__bit/has_single_bit.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4StepStatus.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/has_unique_object_representation.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/is_transparent.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_fun_result.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/xlocale/_stdlib.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_out_result.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/remove_const_ref.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/weak_order.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/float.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cfloat:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_transform.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/partition.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/in_found_result.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/complex:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/_mcontext.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/version:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/uniform_random_bit_generator_adaptor.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/minmax.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualMutex.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/file_time_type.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGamma.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_lexicographical_compare.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/bind.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TRWSpinLock.hxx:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_sigset_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/is_sorted_until.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_find_first_of.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_merge.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/filesystem:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__utility/integer_sequence.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Log.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_sample.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TMatrixDBasefwd.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/backend.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TArrayI.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_prev_permutation.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityInternal.h:
+
+/Users/lh270370/Software/nptool/NPLib/include/TAsciiFile.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_ctermid.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/projected.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/count_if.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_nothrow_destructible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_key_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/datasizeof.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/all_of.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Point3D.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/istream:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4TrackingMessenger.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstring:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/perms.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/functional:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4VPhysicalVolume.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/max_element.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/resource.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/find_end.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4MaterialPropertiesTable.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__functional/binder2nd.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/sift_down.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandBit.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_lower_bound.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/copy_move_common.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TVector3.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_fsblkcnt_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_destructible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/calendar.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint8_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_seek_set.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__type_traits/is_core_convertible.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/format_fwd.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TVersionCheck.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/signal.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RConcurrentHashColl.hxx:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/limits.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4IonisParamMat.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__filesystem/directory_options.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_ctype.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_sort_heap.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/arm/endian.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_all_of.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/set:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/totally_ordered.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Tubs.hh:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4HCofThisEvent.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__format/width_estimation_table.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_generate_n.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/fill.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/pstl_backends/cpu_backends/stable_sort.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_partial_sort.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__atomic/atomic.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/rotate_copy.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__concepts/regular.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_includes.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4Step.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/AvailabilityInternalLegacy.h:
+
+/opt/homebrew/Cellar/root/6.30.04/include/root/TGenericClassInfo.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/G4ParticleTableIterator.hh:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__iterator/unreachable_sentinel.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__compare/is_eq.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__thread/id.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_uint32_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_generate.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/cstdint:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_nl_item.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__chrono/statically_widen.h:
+
+/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4/CLHEP/Random/RandGeneral.icc:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/TargetConditionals.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/sys/_types/_u_int16_t.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/for_each.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__exception/exception_ptr.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1/__algorithm/ranges_for_each.h:
+
+/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/_types/_wctype_t.h:
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/compiler_depend.ts b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/compiler_depend.ts
new file mode 100644
index 0000000000000000000000000000000000000000..c35cc08bcbf9d2f15bd2c3b9d5b0abd97f4fa526
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/compiler_depend.ts
@@ -0,0 +1,2 @@
+# CMAKE generated file: DO NOT EDIT!
+# Timestamp file for compiler generated dependencies management for NPSEdinburghDSSD.
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/depend.make b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/depend.make
new file mode 100644
index 0000000000000000000000000000000000000000..a3c92abbf5f532e3f2c999094ec97d59af40e8dd
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/depend.make
@@ -0,0 +1,2 @@
+# Empty dependencies file for NPSEdinburghDSSD.
+# This may be replaced when dependencies are built.
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/flags.make b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/flags.make
new file mode 100644
index 0000000000000000000000000000000000000000..753a6beeb78b013d99f3b2933d570506f4d55acb
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/flags.make
@@ -0,0 +1,12 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.29
+
+# compile CXX with /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
+CXX_DEFINES = -DG4LIB_BUILD_DLL -DG4UI_USE_QT -DG4VIS_USE_OPENGLQT -DG4VIS_USE_QT3D -DG4VIS_USE_TOOLSSG_QT_GLES -DG4VIS_USE_TOOLSSG_QT_ZB -DNPSEdinburghDSSD_EXPORTS -DPTL_BUILD_DLL -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_WIDGETS_LIB
+
+CXX_INCLUDES = -I/Users/lh270370/Software/nptool/NPLib/include -I/Users/lh270370/Software/nptool/NPSimulation/Core -I/Users/lh270370/Software/nptool/NPSimulation/Process -I/Users/lh270370/Software/nptool/NPSimulation/EventGenerator -I/Users/lh270370/Software/nptool/NPSimulation/Scorers -isystem /opt/homebrew/Cellar/root/6.30.04/include/root -isystem /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/include/Geant4 -iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/System/Library/Frameworks -iframework /opt/homebrew/opt/qt@5/lib -isystem /opt/homebrew/opt/qt@5/lib/QtGui.framework/Headers -isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/System/Library/Frameworks/OpenGL.framework/Headers -isystem /opt/homebrew/opt/qt@5/lib/QtCore.framework/Headers -isystem /opt/homebrew/opt/qt@5/./mkspecs/macx-clang -isystem /opt/homebrew/opt/qt@5/lib/QtOpenGL.framework/Headers -isystem /opt/homebrew/opt/qt@5/lib/QtWidgets.framework/Headers
+
+CXX_FLAGSarm64 = -O3 -DNDEBUG -stdlib=libc++ -pthread -std=c++17 -m64 -I/opt/homebrew/Cellar/root/6.30.04/include/root -DCUBIX=0 -Qunused-arguments -fcolor-diagnostics -stdlib=libc++ -fPIC -DNPS_GEANT4_VERSION_MAJOR=11 -Qunused-arguments -fcolor-diagnostics -Wno-deprecated-register -Wno-shadow -O3 -DNDEBUG -std=gnu++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk -mmacosx-version-min=14.4 -fPIC -fPIC
+
+CXX_FLAGS = -O3 -DNDEBUG -stdlib=libc++ -pthread -std=c++17 -m64 -I/opt/homebrew/Cellar/root/6.30.04/include/root -DCUBIX=0 -Qunused-arguments -fcolor-diagnostics -stdlib=libc++ -fPIC -DNPS_GEANT4_VERSION_MAJOR=11 -Qunused-arguments -fcolor-diagnostics -Wno-deprecated-register -Wno-shadow -O3 -DNDEBUG -std=gnu++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk -mmacosx-version-min=14.4 -fPIC -fPIC
+
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/link.txt b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/link.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2b77954982a16127eed4c969a0b5f3f336a558cb
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/link.txt
@@ -0,0 +1 @@
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -O3 -DNDEBUG -stdlib=libc++ -pthread -std=c++17 -m64 -I/opt/homebrew/Cellar/root/6.30.04/include/root -DCUBIX=0 -Qunused-arguments -fcolor-diagnostics -stdlib=libc++ -fPIC -DNPS_GEANT4_VERSION_MAJOR=11 -Qunused-arguments -fcolor-diagnostics -Wno-deprecated-register -Wno-shadow -O3 -DNDEBUG -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk -mmacosx-version-min=14.4 -dynamiclib -Wl,-headerpad_max_install_names -o ../../lib/libNPSEdinburghDSSD.dylib -install_name @rpath/libNPSEdinburghDSSD.dylib CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o -F/opt/homebrew/opt/qt@5/lib   -L/opt/homebrew/Cellar/root/6.30.04/lib/root  -L/Users/lh270370/Software/nptool/NPLib/lib  -Wl,-rpath,/opt/homebrew/Cellar/root/6.30.04/lib/root -Wl,-rpath,/Users/lh270370/Software/nptool/NPLib/lib -Wl,-rpath,/Users/lh270370/Software/nptool/NPSimulation/lib -Wl,-rpath,/Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib ../../lib/libNPSCore.dylib -L/Users/lh270370/Software/nptool/NPLib/lib -lNPCore -lNPPhysics -lNPEdinburghDSSD ../../lib/libNPSScorers.dylib -ldl -lGui -lCore -lRIO -lNet -lHist -lGpad -lTree -lPhysics -lMathCore -lThread -lASImage /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4Tree.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4FR.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4GMocren.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4visHepRep.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4RayTracer.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4VRML.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4ToolsSG.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4OpenGL.dylib -framework OpenGL /opt/homebrew/opt/qt@5/lib/QtOpenGL.framework/QtOpenGL /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4visQt3D.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4vis_management.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4modeling.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4interfaces.dylib /opt/homebrew/opt/qt@5/lib/QtWidgets.framework/QtWidgets /opt/homebrew/opt/qt@5/lib/QtGui.framework/QtGui /opt/homebrew/opt/qt@5/lib/QtCore.framework/QtCore /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4mctruth.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4geomtext.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4error_propagation.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4readout.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4physicslists.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4run.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4event.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4tracking.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4parmodels.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4processes.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4analysis.dylib /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/lib/libexpat.tbd /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4digits_hits.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4track.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4particles.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4geometry.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4materials.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4graphics_reps.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4intercoms.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4global.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4clhep.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4zlib.dylib /Users/lh270370/Software/Geant4_3/geant4-v11.2.1_install/lib/libG4ptl.2.3.3.dylib -L/Users/lh270370/Software/nptool/NPLib/lib -lNPCore -lNPPhysics -lNPInitialConditions -lNPInteractionCoordinates -lNPInitialConditions -lNPInteractionCoordinates -lNPReactionConditions -lNPFissionConditions -lNPTrackInfo
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/progress.make b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/progress.make
new file mode 100644
index 0000000000000000000000000000000000000000..48b3d8a54961adb9cc4e043cbf8aaaf7484fc44a
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/progress.make
@@ -0,0 +1,3 @@
+CMAKE_PROGRESS_1 = 19
+CMAKE_PROGRESS_2 = 20
+
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/progress.marks b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/progress.marks
new file mode 100644
index 0000000000000000000000000000000000000000..f6b91e0e1f8dddaac700b51aa7a66f29fc135a02
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/CMakeFiles/progress.marks
@@ -0,0 +1 @@
+56
diff --git a/NPSimulation/Detectors/EdinburghDSSD/CMakeLists.txt b/NPSimulation/Detectors/EdinburghDSSD/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..525be62149b74219d57f2f6f02147c15245a0495
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/CMakeLists.txt
@@ -0,0 +1,2 @@
+add_library(NPSEdinburghDSSD SHARED  EdinburghDSSD.cc)
+target_link_libraries(NPSEdinburghDSSD NPSCore ${ROOT_LIBRARIES} ${Geant4_LIBRARIES} ${NPLib_LIBRARIES} -lNPEdinburghDSSD)
diff --git a/NPSimulation/Detectors/EdinburghDSSD/EdinburghDSSD.cc b/NPSimulation/Detectors/EdinburghDSSD/EdinburghDSSD.cc
new file mode 100644
index 0000000000000000000000000000000000000000..677e29b1fd004060b315254b9b2499493ced2d6f
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/EdinburghDSSD.cc
@@ -0,0 +1,883 @@
+/*****************************************************************************
+ * Copyright (C) 2009-2024   this file is part of the NPTool Project       *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
+
+/*****************************************************************************
+ * Original Author: Louis Heitz  contact address: louis.heitz@ijclab.in2p3.fr                        *
+ *                                                                           *
+ * Creation Date  : mars 2024                                           *
+ * Last update    :                                                          *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *  This class describe  EdinburghDSSD simulation                             *
+ *                                                                           *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *****************************************************************************/
+
+
+// C++ headers
+#include <cmath>
+#include <limits>
+#include <sstream>
+// G4 Geometry object
+#include "G4Box.hh"
+#include "G4Trap.hh"
+#include "G4Tubs.hh"
+#include "G4Cons.hh"
+#include "G4Polycone.hh"
+#include "G4UnionSolid.hh"
+// G4 sensitive
+#include "G4MultiFunctionalDetector.hh"
+#include "G4SDManager.hh"
+
+// G4 various object
+#include "G4Colour.hh"
+#include "G4ExtrudedSolid.hh"
+#include "G4Material.hh"
+#include "G4PVPlacement.hh"
+#include "G4SubtractionSolid.hh"
+#include "G4Transform3D.hh"
+#include "G4TwoVector.hh"
+#include "G4VisAttributes.hh"
+#include "G4NistManager.hh"
+#include "G4UserLimits.hh"
+
+// NPTool header
+#include "DSSDScorers.hh"
+#include "InteractionScorers.hh"
+#include "MaterialManager.hh"
+#include "EdinburghDSSD.hh"
+#include "EdinburghDSSDMap.h"
+#include "NPCore.h"
+#include "NPOptionManager.h"
+#include "NPSDetectorFactory.hh"
+#include "NPSHitsMap.hh"
+#include "RootOutput.h"
+
+// CLHEP header
+#include "CLHEP/Random/RandGauss.h"
+#include "CLHEP/Random/RandFlat.h"
+#include "CLHEP/Random/Random.h"
+
+using namespace std;
+using namespace CLHEP;
+using namespace EDIN_NS;
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+
+
+using namespace EDIN_NS;
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+// EdinburghDSSD Specific Method
+EdinburghDSSD::EdinburghDSSD(){
+  m_Event = new TEdinburghDSSDData();
+  m_SquareScorer = 0;
+  m_SquareDetector = 0;
+  m_SquareDeadLayer =0;
+  m_subWorld = 0;
+  m_substract = 0;
+  m_Foil = 0;
+  m_FoilHolder = 0;
+  m_FirstSledge = 0;
+  m_SecondSledge = 0;
+  m_Filler = 0;
+  m_bar = 0;
+
+  // RGB Color + Transparency
+  m_VisSquare = new G4VisAttributes(G4Colour(0, 0, 1, 0.8));
+
+  m_VisDeadLayer = new G4VisAttributes(G4Colour(0, 1, 0, 0.5));
+}
+
+EdinburghDSSD::~EdinburghDSSD(){
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+void EdinburghDSSD::AddDetector(int DetectorNumber, G4ThreeVector PX1_Y1, G4ThreeVector PX1_Y16,G4ThreeVector PX16_Y1, G4ThreeVector PX16_Y16) {
+  m_X1_Y1.push_back(PX1_Y1);         // Top Left Corner Position Vector
+  m_X1_Y16.push_back(PX1_Y16);     // Bottom Left Corner Position Vector
+  m_X16_Y1.push_back(PX16_Y1);     // Bottom Right Corner Position Vector
+  m_X16_Y16.push_back(PX16_Y16); // Center Corner Position Vector
+  m_DetectorNumber.push_back(DetectorNumber);
+}
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+G4LogicalVolume* EdinburghDSSD::BuildSubWorld() {
+  if(!m_subWorld)
+  {
+    G4Tubs* subWorldSolid = new G4Tubs("sub_world", 0., (BarHeight + 0.5) * 0.5, (BarLength + 0.5) * 0.5, 0., twopi);
+
+    // Find or build the material for the SubWorld (e.g., vacuum)
+    G4Material* subWorldMaterial = G4NistManager::Instance()->FindOrBuildMaterial("G4_Galactic");
+
+    // Create the logical volume for the SubWorld
+    m_subWorld = new G4LogicalVolume(subWorldSolid, subWorldMaterial, "sub_world");
+
+    // Set visualization attributes for the SubWorld (optional)
+    m_subWorld->SetVisAttributes(G4VisAttributes::GetInvisible());
+  }
+    return m_subWorld;
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+G4LogicalVolume* EdinburghDSSD::BuildSquareDetector() {
+  if (!m_SquareDetector) {
+    G4String Name = "EDIN";
+
+    G4Box* solidSquare = new G4Box(Name, 0.5 * SquareLength, 0.5 * SquareLength, 0.5 * SiliconThickness);
+
+    G4LogicalVolume* logicSquare = new G4LogicalVolume(
+    solidSquare, MaterialManager::getInstance()->GetMaterialFromLibrary("Vacuum"), Name, 0, 0, 0);
+
+
+    logicSquare->SetVisAttributes(m_VisSquare);
+
+    G4ThreeVector positionFirstStage = G4ThreeVector(0, 0, 0);
+
+    G4Box* solidFirstStage = new G4Box("solidFirstStage", 0.5 * SquareLength, 0.5 * SquareLength, 0.5 * (SiliconThickness));
+    G4LogicalVolume* logicFirstStage = new G4LogicalVolume(
+        solidFirstStage, MaterialManager::getInstance()->GetMaterialFromLibrary("Si"), "logicFirstStage", 0, 0, 0);
+
+
+    logicFirstStage->SetVisAttributes(m_VisSquare);
+    new G4PVPlacement(0, positionFirstStage, logicFirstStage, Name + "_FirstStage", logicSquare, false, 0);
+
+    m_SquareDetector = logicSquare;
+
+    G4UserLimits* stepLimit = new G4UserLimits(10*um);
+    logicFirstStage->SetUserLimits(stepLimit);
+    // Set First Stage sensible
+    logicFirstStage->SetSensitiveDetector(m_SquareScorer);
+
+
+  }
+
+  return m_SquareDetector;
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+G4LogicalVolume* EdinburghDSSD::BuildDeadLayer(){
+  if (!m_SquareDeadLayer) {
+    G4String Name = "EDIN";
+
+    // Step 1: Create the Square Solid
+    G4Box* solidSquare = new G4Box(Name, 0.5 * SquareLength, 0.5 * SquareLength, 0.5 * DeadLayerThickness);
+    G4LogicalVolume* logicSquare = new G4LogicalVolume(
+      solidSquare, MaterialManager::getInstance()->GetMaterialFromLibrary("Vacuum"), Name, 0, 0, 0);
+
+    // Step 2: Create the Boron Dead Layer Solid
+    G4Box* solidDeadLayer = new G4Box("solidDeadLayer", 0.5 * SquareLength, 0.5 * SquareLength, 0.5 * DeadLayerThickness);
+
+    // Step 3: Create Logical Volume for the Dead Layer
+    G4NistManager* nistManager = G4NistManager::Instance();
+    G4Material* deadLayerMaterial = nistManager->FindOrBuildMaterial("G4_Si");
+
+    G4LogicalVolume* logicDeadLayer = new G4LogicalVolume(solidDeadLayer, deadLayerMaterial, "logicDeadLayer");
+
+    // Set the visualization attributes for the Dead Layer
+    G4VisAttributes* DeadLayerVisAtt = new G4VisAttributes(G4Colour(0.1, 0.90, 0.90));
+    //DeadLayerVisAtt->SetForceWireframe(true);
+    logicDeadLayer->SetVisAttributes(DeadLayerVisAtt);
+
+    // Step 4: Position the Dead Layer - Assuming it's placed on top of the first stage
+    G4ThreeVector positionDeadLayer = G4ThreeVector(0, 0, 0.5 * SiliconThickness + 0.5 * DeadLayerThickness);
+    new G4PVPlacement(0, positionDeadLayer, logicDeadLayer, (Name + "_DeadLayer").c_str(), logicSquare, false, 0);
+
+    m_SquareDeadLayer = logicDeadLayer;
+
+  }
+  return m_SquareDeadLayer;
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+G4LogicalVolume* EdinburghDSSD::BuildFoil() {
+  if(!m_Foil)
+  {
+    // Create the foil solid
+    G4Tubs* solidFoil = new G4Tubs("Foil", 0., FoilRadius, FoilThickness * 0.5, 0., twopi);
+
+    // Find or build the carbon material for the foil
+    G4Material* C_material = G4NistManager::Instance()->FindOrBuildMaterial("G4_C");
+
+    // Create the logical volume for the foil
+    G4LogicalVolume* logicFoil = new G4LogicalVolume(solidFoil, C_material, "Foil");
+
+    // Set visualization attributes for the foil
+    logicFoil->SetVisAttributes(G4Colour(1.0, 0.0, 0.0, 1.0));  // Red color for the foil
+    m_Foil = logicFoil;
+  }
+    return m_Foil;  // Return the logical volume
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+G4LogicalVolume* EdinburghDSSD::BuildNozzle() {
+
+    const G4int num_n = 8;
+    G4double r_n[num_n] = {1.363, 1.932, 3.799, 6.839, 6.839, 16.986, 16.935, 1.363};
+    G4double z_n[num_n] = {35., 35., 31.355, 4.262, 2.019, 1.969, 0.011, 0.011};
+
+    G4VSolid* solidNozzle = new G4Polycone("Nozzle", 0., twopi, num_n, r_n, z_n);
+    G4NistManager* nistManager = G4NistManager::Instance();
+    G4Material* HolderMaterial = nistManager->FindOrBuildMaterial("G4_Al");
+    G4LogicalVolume* logicNozzle = new G4LogicalVolume(solidNozzle, HolderMaterial, "Nozzel");
+
+
+    return logicNozzle;
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+G4LogicalVolume* EdinburghDSSD::BuildFoilHolder() {
+  if(!m_FoilHolder)
+  {
+  G4NistManager* nistManager = G4NistManager::Instance();
+  G4Material* FoilHolderMaterial = nistManager->FindOrBuildMaterial("G4_Al");
+
+  double halfHeight = FoilHolderThickness / 2;
+  G4Tubs* Cylinder = new G4Tubs("Cylinder", FoilHolderInnerRadius, FoilHolderOuterRadius, halfHeight, 0.*deg, 360.*deg);
+  G4LogicalVolume* logicFoilHolder = new G4LogicalVolume(Cylinder, FoilHolderMaterial, "FoilHolderLV");
+  logicFoilHolder->SetVisAttributes(G4Colour(1.0, 0.5, 0.0));
+  m_FoilHolder = logicFoilHolder;
+  }
+  return m_FoilHolder;  // Return the logical volume
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+G4LogicalVolume* EdinburghDSSD::BuildFirstSledge() {
+  if(!m_FirstSledge)
+  {
+  G4NistManager* nistManager = G4NistManager::Instance();
+  G4Material* SledgeMaterial = nistManager->FindOrBuildMaterial("G4_Al");
+
+  double halfHeight = FirstSledgeThickness / 2;
+  G4Tubs* Cylinder = new G4Tubs("Cylinder", FirstSledgeInnerRadius, FirstSledgeOuterRadius, halfHeight, 0.*deg, 360.*deg);
+  G4LogicalVolume* logicFirstSledge = new G4LogicalVolume(Cylinder, SledgeMaterial, "FirtSledgeLV");
+  m_FirstSledge = logicFirstSledge;
+  }
+  return m_FirstSledge;  // Return the logical volume
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+G4LogicalVolume* EdinburghDSSD::BuildSecondSledge() {
+  if(!m_SecondSledge)
+  {
+  G4NistManager* nistManager = G4NistManager::Instance();
+  G4Material* SledgeMaterial = nistManager->FindOrBuildMaterial("G4_Al");
+
+  double halfHeight = SecondSledgeThickness / 2;
+  double Rmin1 = SecondSledgeOuterRadius;
+  double Rmax1 = SecondSledgeOuterRadius;
+  double Rmin2 = SecondSledgeInnerRadius;
+  double Rmax2 = SecondSledgeOuterRadius;
+  G4Cons* cutCylinder = new G4Cons("CutCylinder", Rmin1,Rmax1,Rmin2,Rmax2, halfHeight, 0.*deg, 360.*deg);
+  G4LogicalVolume* logicSecondSledge = new G4LogicalVolume(cutCylinder, SledgeMaterial, "SecondSledgeLV");
+  m_SecondSledge = logicSecondSledge;
+  }
+  return m_SecondSledge;  // Return the logical volume
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+G4LogicalVolume* EdinburghDSSD::BuildFiller() {
+  if(!m_Filler)
+  {
+  G4NistManager* nistManager = G4NistManager::Instance();
+  G4Material* FillerMaterial = nistManager->FindOrBuildMaterial("G4_Al");
+
+  double halfHeight = FillerThickness / 2;
+  G4Tubs* Cylinder = new G4Tubs("Cylinder", FillerInnerRadius, FillerOuterRadius, halfHeight, 0.*deg, 360.*deg);
+  G4LogicalVolume* logicFiller = new G4LogicalVolume(Cylinder, FillerMaterial, "FillerLV");
+
+  m_Filler = logicFiller;
+  }
+  return m_Filler;
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+G4LogicalVolume* EdinburghDSSD::BuildBarHoler() {
+  if(!m_substract)
+  {
+    G4NistManager* nistManager = G4NistManager::Instance();
+    G4Material* HolderMaterial = nistManager->FindOrBuildMaterial("G4_Al");
+
+
+    G4VSolid* sBarMain = new G4Box("bar_main", BarHeight * 0.5, BarLength * 0.5, BarWidth * 0.5);
+
+
+    G4Tubs* hole = new G4Tubs("hole", 0, FirstSledgeOuterRadius, BarWidth, 0.*deg, 360.*deg);
+
+
+
+
+    //G4VSolid* hole = new G4Polycone("hole", 0., twopi, numHole, holeRadius, holeZ);
+
+    G4VSolid* subtract = new G4SubtractionSolid("Bar-Hole", sBarMain, hole, 0, G4ThreeVector(0., 0.,0.0));
+    m_substract = new G4LogicalVolume(subtract, HolderMaterial, "Subtract");
+
+    m_substract->SetVisAttributes(G4Colour(0.2, 0.2, 0.2));
+  }
+    return m_substract;  // Return the logical volume
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+/*
+G4LogicalVolume* EdinburghDSSD::BuildBar(){
+  if(!m_bar)
+  {
+  G4NistManager* nistManager = G4NistManager::Instance();
+  G4Material* HolderMaterial = nistManager->FindOrBuildMaterial("G4_Al");
+
+  G4VSolid* solidBar = new G4Box("solidBar1",
+           Bar1Height*0.5,Bar1Length*0.5,Bar1Width*0.5);
+  m_bar = new G4LogicalVolume(solidBar,           //shape
+                          HolderMaterial,              //material
+                          "Bar1");                 //
+  }
+  return m_bar;
+}
+*/
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+// Virtual Method of NPS::VDetector class
+
+// Read stream at Configfile to pick-up parameters of detector (Position,...)
+// Called in DetecorConstruction::ReadDetextorConfiguration Method
+void EdinburghDSSD::ReadConfiguration(NPL::InputParser parser) {
+  vector<NPL::InputBlock*> blocks = parser.GetAllBlocksWithToken("EdinburghDSSD");
+  if (NPOptionManager::getInstance()->GetVerboseLevel())
+    cout << "//// " << blocks.size() << " EDIN found " << endl;
+
+  // Cartesian Case
+  vector<string> cart = {"X1_Y1", "X1_Y16", "X16_Y1", "X16_Y16"};
+  // Spherical Case
+  vector<string> sphe = {"R", "THETA", "PHI", "BETA"};
+
+  for (unsigned int i = 0; i < blocks.size(); i++) {
+    if (blocks[i]->HasTokenList(cart)) {
+      if (NPOptionManager::getInstance()->GetVerboseLevel())
+        cout << endl << "////  EDIN Detector " << i + 1 << endl;
+        TVector3 A = blocks[i]->GetTVector3("X1_Y1", "mm");
+        TVector3 B = blocks[i]->GetTVector3("X16_Y1", "mm");
+        TVector3 C = blocks[i]->GetTVector3("X1_Y16", "mm");
+        TVector3 D = blocks[i]->GetTVector3("X16_Y16", "mm");
+
+        G4ThreeVector g4_A(A.X(), A.Y(), A.Z());
+        G4ThreeVector g4_B(B.X(), B.Y(), B.Z());
+        G4ThreeVector g4_C(C.X(), C.Y(), C.Z());
+        G4ThreeVector g4_D(D.X(), D.Y(), D.Z());
+
+        // Now, you can use g4_A, g4_B, g4_C, and g4_D as G4ThreeVector objects
+        // For example, to call AddDetector
+  AddDetector(i, g4_A, g4_B, g4_C, g4_D);
+    }
+
+    else {
+      cout << "ERROR: Missing token for EdinburghDSSD blocks, check your "
+              "input "
+              "file"
+           << endl;
+      exit(1);
+    }
+  }
+}
+
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+
+// Construct detector and inialise sensitive part.
+// Called After DetecorConstruction::AddDetector Method
+void EdinburghDSSD::ConstructDetector(G4LogicalVolume* world) {
+
+  for (unsigned short i = 0; i < m_DetectorNumber.size(); i++) {
+      G4RotationMatrix* rot = NULL;
+      G4ThreeVector pos = G4ThreeVector(0, 0, 0);
+      G4ThreeVector u = G4ThreeVector(0, 0, 0);
+      G4ThreeVector v = G4ThreeVector(0, 0, 0);
+      G4ThreeVector w = G4ThreeVector(0, 0, 0);
+      G4ThreeVector Center = G4ThreeVector(0, 0, 0);
+      // (u,v,w) unitary vector associated to telescope referencial
+      // (u,v) // to silicon plan
+      // w perpendicular to (u,v) plan and pointing ThirdStage
+      u = (m_X1_Y16[i] + m_X16_Y16[i] - m_X1_Y1[i] - m_X16_Y1[i]);
+      u = u.unit();
+
+      v = m_X16_Y1[i] - m_X1_Y1[i];
+      v = v.unit();
+
+      w = u.cross(v);
+      w = w.unit();
+
+      Center = (m_X1_Y1[i] + m_X1_Y16[i] + m_X16_Y1[i] + m_X16_Y16[i]) / 4;
+
+      // Passage Matrix from Lab Referential to Telescope Referential
+      rot = new G4RotationMatrix(u, v, w);
+      // translation to place Telescope
+      pos = w * SiliconThickness * 0.5 + Center;
+      new G4PVPlacement(G4Transform3D(*rot, pos), BuildSquareDetector(), "EDINSquare", world, false,m_DetectorNumber[i]);
+      G4ThreeVector deadLayerPos = pos + w * (SiliconThickness * 0.5 + DeadLayerThickness * 0.5);
+      new G4PVPlacement(G4Transform3D(*rot, deadLayerPos), BuildDeadLayer(), "EDINDeadLayer", world, false, m_DetectorNumber[i]);
+
+
+    }
+
+
+    G4ThreeVector global_shift = G4ThreeVector(-1.9,35.5,-0.99);
+
+    // OOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOO
+    //                    Construct Nozzle
+    // OOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOO
+
+    G4RotationMatrix* yRotNoz = new G4RotationMatrix();
+    yRotNoz->rotateZ(180.0 * deg);
+    yRotNoz->rotateX(90*deg);
+    G4double shift_nozzle = 66.396 - 21.694;
+
+    G4ThreeVector posNoz = G4ThreeVector(0, shift_nozzle, 0.);
+    posNoz += global_shift;
+    new G4PVPlacement(yRotNoz, posNoz, BuildNozzle(), "Nozzle", world, false, 0);
+
+    G4ThreeVector positionTarget = G4ThreeVector(0, 0, 0);
+    positionTarget +=global_shift;
+
+    // OOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOO
+    //                    Construct subWorld
+    // OOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOO
+
+    G4RotationMatrix* yRot = new G4RotationMatrix();
+    yRot->rotateY(90.*deg);
+    yRot->rotateZ(FoilAngle+90*deg);
+
+    G4LogicalVolume* subWorldLV = BuildSubWorld();
+    G4ThreeVector positionSubWorld = G4ThreeVector(0, 0, 0);
+    positionSubWorld+=global_shift;
+    new G4PVPlacement(yRot, positionSubWorld,subWorldLV,"SubWorld",world,false,0);
+
+    // OOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOO
+    //                    Construct Foil
+    // OOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOO
+
+    G4LogicalVolume* foilLV = BuildFoil();
+
+    G4RotationMatrix* Rot_foil = new G4RotationMatrix();
+    Rot_foil->rotateY(90. * deg);
+
+    G4ThreeVector foilPosition = G4ThreeVector(0., 0, 0.);
+    new G4PVPlacement(Rot_foil, foilPosition, foilLV, "Foil", BuildSubWorld(), false, 0);
+
+
+    // OOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOO
+    //                Construct Foil Holder
+    // OOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOO
+
+    G4RotationMatrix* rotHolder = new G4RotationMatrix();
+    rotHolder->rotateY(90.*deg);
+    double offsetHolder = FoilHolderThickness/2 + FoilThickness/2;
+    double offsetFirstSledge = -FirstSledgeThickness/2 - FoilThickness/2;
+    double offsetSecondSledge = -FirstSledgeThickness - FoilThickness/2 - SecondSledgeThickness/2;
+    double offsetFiller = 0;
+    new G4PVPlacement(rotHolder, G4ThreeVector(offsetHolder,0., 0.), BuildFoilHolder(), "Holder", BuildSubWorld(), false, 0);
+    new G4PVPlacement(rotHolder, G4ThreeVector(offsetFirstSledge,0., 0.), BuildFirstSledge(), "FirstSledge", BuildSubWorld(), false, 0);
+    new G4PVPlacement(rotHolder, G4ThreeVector(offsetSecondSledge ,0., 0.), BuildSecondSledge(), "SecondSledge", BuildSubWorld(), false, 0);
+    new G4PVPlacement(rotHolder, G4ThreeVector(offsetFiller ,0., 0.), BuildFiller(), "Filler", BuildSubWorld(), false, 0);
+
+    G4RotationMatrix* rotSub = new G4RotationMatrix();
+    rotSub->rotateY(90.*deg);
+    rotSub->rotateZ(90.*deg);
+
+
+    // OOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOO
+    //                Construct bar holder
+    // OOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOOOOoooOOOooOOOO
+
+    //G4ThreeVector(0.,0.,FirstSledgeThickness- FoilThickness/2),
+    new G4PVPlacement(rotSub,                      //no rotation
+             G4ThreeVector(-BarWidth/2+ FoilThickness/2,0.,0.),
+             BuildBarHoler(),                //logical volume
+             "BarHolder",                    //name
+             BuildSubWorld(),                      //mother  volume
+             false,                       //no boolean operation
+               0);
+
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+// Add Detector branch to the EventTree.
+// Called After DetecorConstruction::AddDetector Method
+void EdinburghDSSD::InitializeRootOutput(){
+  RootOutput *pAnalysis = RootOutput::getInstance();
+  TTree *pTree = pAnalysis->GetTree();
+  if(!pTree->FindBranch("EdinburghDSSD")){
+    pTree->Branch("EdinburghDSSD", "TEdinburghDSSDData", &m_Event) ;
+  }
+  pTree->SetBranchAddress("EdinburghDSSD", &m_Event) ;
+}
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+void EdinburghDSSD::ProcessStrip(std::map<unsigned int, std::pair<double, double>>& map, int key, double energy, double time) {
+    auto& entry = map[key];
+    if (entry.second == 0) {  // Check if this is the first time this strip is hit
+        entry = std::make_pair(energy, time);
+        //std::cout << "Initial hit processed for key " << key << ": energy = " << energy << ", time = " << time << std::endl;
+    } else {
+        entry.first += energy;  // Accumulate energy
+        //std::cout << "Energy accumulated for key " << key << ": total energy = " << entry.first << std::endl;
+    }
+}
+
+void EdinburghDSSD::UpdateMap(bool X_Y,std::map<unsigned int, std::pair<double, double>>& map,
+                       std::map<unsigned int, bool>& mapInterstrip, int key, double energy,
+                       double time, double t0, bool interstrip) {
+    // X_Y = 0 for X, 1 for Y.
+    int det = key / static_cast<int>(1e6);
+    int strip = key % static_cast<int>(1e6);
+
+    // Check if the key already exists in the map
+    auto it = map.find(key);
+    if (it == map.end()) {
+        // If key does not exist, initialize it directly
+        map[key] = std::make_pair(energy, time);
+        mapInterstrip[key] = interstrip;
+        //std::cout << "New entry added for (det,strip) = (" << det << "," << strip << ") with energy " << energy << " and time " << time << std::endl;
+        return; // Exit the function after setting new data
+    }
+
+    // Key exists, process based on time difference
+    double last_energy = it->second.first;
+    double last_time = it->second.second;
+
+    //std::cout << "In UpdateMap, (det,strip) = (" << det << "," << strip << ")";
+    //std::cout << "∆T = " << time - last_time << std::endl;
+
+    if (time - last_time < T_sum) {
+        //std::cout << "Adding energy " << energy << std::endl;
+        it->second.first += energy;  // Accumulate energy if within time sum
+        if (interstrip) {
+            mapInterstrip[key] = true;
+        }
+        if(it->second.first > 8)
+        {
+          std::cout << "UPDATE MAP : energy of event: " << it->second.first ;
+          std::cout << ", (det,strip) = (" << det << "," << strip << ")";
+
+        }
+        //std::cout << "After adding energy " << map[key].first << std::endl;
+    } else {
+        // Set event data if time difference is greater than T_sum
+
+        //std::cout << "Push event " << std::endl;
+        //std::cout << "energy of event: " << last_energy << std::endl;
+        if(X_Y==0)
+        {
+        m_Event->SetDSSDX_Tstamp(t0);
+        m_Event->SetDSSDX_Interstrip(mapInterstrip[key]);
+        m_Event->SetDSSDXE(false, det, strip, last_energy);
+        m_Event->SetDSSDXT(false, det, strip, last_time);
+        }
+        else
+        {
+          m_Event->SetDSSDY_Tstamp(t0);
+          m_Event->SetDSSDY_Interstrip(mapInterstrip[key]);
+          m_Event->SetDSSDYE(false, det, strip, last_energy);
+          m_Event->SetDSSDYT(false, det, strip, last_time);
+        }
+        // Update the map with the new energy and current time
+        map[key] = std::make_pair(energy, time);
+        mapInterstrip[key] = interstrip;
+    }
+}
+
+
+// Read sensitive part and fill the Root tree.
+// Called at in the EventAction::EndOfEventAvtion
+void EdinburghDSSD::ReadSensitive(const G4Event*) {
+  m_Event->Clear();
+
+  G4double t0 =  RandFlat::shoot()*1;
+  //std::cout << "T0 = " << t0 << std::endl;
+  ///////////
+  // Square
+  DSSDScorers::PS_Images* SiScorer = (DSSDScorers::PS_Images*)m_SquareScorer->GetPrimitive(0);
+
+  // Loop on the Square map
+
+
+  unsigned int sizeFront = SiScorer->GetFrontMult();
+  unsigned int sizeBack = SiScorer->GetBackMult();
+
+  std::map<unsigned int, std::pair<double, double>> mapFront;
+  std::map<unsigned int, std::pair<double, double>> mapBack;
+
+  std::map<unsigned int, std::pair<double, double>> mapTempo;
+
+  std::map<unsigned int, bool> mapInterstripFront;
+  std::map<unsigned int, bool> mapInterstripBack;
+  std::set<std::pair<int, int>> interstripCouples;  // Stores interstrip pairs
+
+
+  std::map<unsigned int, std::pair<double, double>>::iterator it;
+
+
+  int strip1,strip2;
+  double E_b, E_g;
+  int refTrack;
+  unsigned int j, a,r, g, b;
+
+  double energy,time;
+  int det, b_key, g_key;
+  int key, partner_key,partner_det, partner_strip;
+
+  double E_tot,rand, E1,E2;
+
+  for (unsigned int i = 0; i < sizeFront; i++) {
+      refTrack = SiScorer->GetTrackId(i);
+      //std::cout << std::endl  << "i = " << i << std::endl;
+      //std::cout << "Processing Track ID = " << refTrack << std::endl;
+
+      j = i;
+
+      while (j < sizeFront && SiScorer->GetTrackId(j) == refTrack) {
+          energy = SiScorer->GetEnergyFront(j);
+          det = SiScorer->GetDetectorFront(j);
+          time = SiScorer->GetTimeFront(j);
+          SiScorer->GetARGBFront(j, a, r, g, b);
+
+          b_key = b + det * 1e6;
+          g_key = g + det * 1e6;
+          if (r == 0) { // no interstrip
+              ProcessStrip(mapTempo,b_key, energy, time);
+          } else { // interstrip
+              if (g > 0 && g < 17 && b > 0 && b < 17) { // both in detector
+                  interstripCouples.insert(std::make_pair(b_key, g_key));
+                  ProcessStrip(mapTempo,b_key, energy, time);
+                  ProcessStrip(mapTempo,g_key, 0, time); // To set Time
+              }
+              else if ((g<= 0 || g >= 17)&&(b>0 && b < 17))
+              {
+                ProcessStrip(mapTempo,b_key, energy, time);
+              }
+              else if ((b<= 0 || b >= 17) && (g>0 && g < 17))
+              {
+                ProcessStrip(mapTempo,g_key, energy, time);
+              }
+          }
+          j++;
+      }
+
+      std::set<int> treatedKeys; // Tracks which keys have been processedx
+
+      // Processing entries in mapTempo
+      for (const auto& entry : mapTempo) {
+          key = entry.first;
+          if (treatedKeys.find(key) != treatedKeys.end()) {
+              continue; // Skip this key if it has already been processed
+          }
+
+          auto it = std::find_if(interstripCouples.begin(), interstripCouples.end(),
+              [key](const std::pair<int, int>& pair) {
+                  return pair.first == key || pair.second == key;
+              }); // function to find if pair in couples
+
+          if (it != interstripCouples.end()) { // It is an interstrip couple
+
+              partner_key = (it->first == key) ? it->second : it->first;
+              E_tot = entry.second.first + mapTempo[partner_key].first;
+              rand = G4UniformRand();
+              E1 = rand * E_tot;
+              E2 = E_tot - E1;
+              //std::cout << "IS || Track ID = " << refTrack << ", ";
+              //std::cout << "(det,strip) = (" << det << "," << strip << ")";
+              //std::cout << " || PARTNER = (" << partner_det << "," << partner_strip << ")" ;
+              //std::cout << "E = " << entry.second.first << ", E(part) =" <<  mapTempo[partner_key].first << std::endl;
+              //std::cout << "T = " << entry.second.second << ", T(part) =" <<  mapTempo[partner_key].second << std::endl;
+              if (E1 < E2) {
+                  E1 *= -1;
+              } else {
+                  E2 *= -1;
+              }
+
+              UpdateMap(0,mapFront, mapInterstripFront, key, E1,mapTempo[key].second, t0, true);
+              UpdateMap(0,mapFront, mapInterstripFront, partner_key, E2,mapTempo[partner_key].second, t0, true);
+
+              treatedKeys.insert(key);
+              treatedKeys.insert(partner_key);
+
+              //std::cout << "Processed interstrip pair: det " << det << ", strip " << strip
+              //          << " and det " << partner_det << ", strip " << partner_strip
+              //          << " with energies: " << E1 << ", " << E2 << std::endl;
+          } else {
+              //int det = key / static_cast<int>(1e6);
+              //int strip = key % static_cast<int>(1e6);
+              //std::cout << "Not IS (det,strip) = " << det << "," << strip ;
+              //std::cout << ", Energy = " << entry.second.first << std::endl;
+              UpdateMap(0,mapFront, mapInterstripFront,key,
+                entry.second.first, entry.second.second,t0, false);
+              //std::cout << "Transferred non-interstrip det " << det << ", strip " << strip << " with energy " << entry.second.first << std::endl;
+          }
+      }
+
+      mapTempo.clear(); // Clear temporary storage after processing
+      interstripCouples.clear();
+      //std::cout << "Cleared temporary storage for next track." << std::endl;
+      //std::cout << "After while j = " << j  << std::endl;
+      i = j-1;
+  }
+
+
+  double energyX, timeX;
+  unsigned int detX, stripX;
+  bool bool_interstrip;
+  for (it = mapFront.begin(); it != mapFront.end(); it++) {
+    energyX = RandGauss::shoot(it->second.first, SigmaEnergy);
+    timeX = RandGauss::shoot(it->second.second, SigmaTime);
+    bool_interstrip = mapInterstripFront[it->first];
+    stripX = it->first - 1000000 * (it->first / 1000000);
+    detX = it->first / 1000000;
+
+    m_Event->SetDSSDX_Tstamp(t0);
+    m_Event->SetDSSDX_Interstrip(bool_interstrip);
+    m_Event->SetDSSDXE(false,detX, stripX,energyX);
+    m_Event->SetDSSDXT(false,detX, stripX,timeX);
+  }
+
+  mapTempo.clear();
+
+  for (unsigned int i = 0; i < sizeBack; i++) {
+      refTrack = SiScorer->GetTrackId(i);
+      //std::cout << std::endl  << "i = " << i << std::endl;
+      //std::cout << "Processing Track ID = " << refTrack << std::endl;
+
+      j = i;
+
+      while (j < sizeBack && SiScorer->GetTrackId(j) == refTrack) {
+          energy = SiScorer->GetEnergyBack(j);
+          det = SiScorer->GetDetectorBack(j);
+          time = SiScorer->GetTimeBack(j);
+          SiScorer->GetARGBBack(j, a, r, g, b);
+
+          b_key = b + det * 1e6;
+          g_key = g + det * 1e6;
+
+          if (r == 0) { // no interstrip
+              ProcessStrip(mapTempo,b_key, energy, time);
+          } else { // interstrip
+              if (g > 0 && g < 17 && b > 0 && b < 17) { // both in detector
+                  interstripCouples.insert(std::make_pair(b_key, g_key));
+                  ProcessStrip(mapTempo,b_key, energy, time);
+                  ProcessStrip(mapTempo,g_key, 0, time); // To set Time
+              }
+              else if ((g<= 0 || g >= 17)&&(b>0 && b < 17))
+              {
+                ProcessStrip(mapTempo,b_key, energy, time);
+              }
+              else if ((b<= 0 || b >= 17) && (g>0 && g < 17))
+              {
+                ProcessStrip(mapTempo,g_key, energy, time);
+              }
+          }
+          j++;
+      }
+
+      std::set<int> treatedKeys; // Tracks which keys have been processedx
+
+      // Processing entries in mapTempo
+      for (const auto& entry : mapTempo) {
+          int key = entry.first;
+          if (treatedKeys.find(key) != treatedKeys.end()) {
+              continue; // Skip this key if it has already been processed
+          }
+
+          auto it = std::find_if(interstripCouples.begin(), interstripCouples.end(),
+              [key](const std::pair<int, int>& pair) {
+                  return pair.first == key || pair.second == key;
+              }); // function to find if pair in couples
+
+          if (it != interstripCouples.end()) { // It is an interstrip couple
+
+              partner_key = (it->first == key) ? it->second : it->first;
+              E_tot = entry.second.first + mapTempo[partner_key].first;
+              rand = G4UniformRand();
+              E1 = rand * E_tot;
+              E2 = E_tot - E1;
+
+              UpdateMap(1,mapBack, mapInterstripBack, key, E1,mapTempo[key].second, t0, true);
+              UpdateMap(1,mapBack, mapInterstripBack, partner_key, E2,mapTempo[partner_key].second, t0, true);
+
+              treatedKeys.insert(key);
+              treatedKeys.insert(partner_key);
+
+              //std::cout << "Processed interstrip pair: det " << det << ", strip " << strip
+              //          << " and det " << partner_det << ", strip " << partner_strip
+              //          << " with energies: " << E1 << ", " << E2 << std::endl;
+          } else {
+              UpdateMap(1,mapBack, mapInterstripBack,key,
+              entry.second.first, entry.second.second,t0, false);
+              //std::cout << "Transferred non-interstrip det " << det << ", strip " << strip << " with energy " << entry.second.first << std::endl;
+          }
+      }
+
+      mapTempo.clear(); // Clear temporary storage after processing
+      interstripCouples.clear();
+      //std::cout << "Cleared temporary storage for next track." << std::endl;
+      //std::cout << "After while j = " << j  << std::endl;
+      i = j-1;
+  }
+
+  double energyY, timeY;
+  unsigned int stripY,detY;
+
+
+  for (it = mapBack.begin(); it != mapBack.end(); it++) {
+      energyY = RandGauss::shoot(it->second.first, SigmaEnergy);
+      timeY = RandGauss::shoot(it->second.second, SigmaTime);
+      bool_interstrip = mapInterstripBack[it->first];
+      stripY = it->first - 1000000 * (it->first / 1000000);
+      detY = it->first / 1000000;
+      m_Event->SetDSSDY_Tstamp(t0);
+      m_Event->SetDSSDY_Interstrip(bool_interstrip);
+      m_Event->SetDSSDYE(false,detY, stripY,energyY);
+      m_Event->SetDSSDYT(false,detY, stripY,timeY);
+    }
+
+
+}
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+////////////////////////////////////////////////////////////////
+void EdinburghDSSD::InitializeScorers() {
+  // This check is necessary in case the geometry is reloaded
+  bool already_exist = false;
+  m_SquareScorer = CheckScorer("SquareScorer", already_exist);
+
+  if (already_exist)
+    return;
+
+  string nptool = getenv("NPTOOL");
+  G4VPrimitiveScorer* SiScorer = new DSSDScorers::PS_Images(
+        "SquareScorer", nptool + "/NPLib/Detectors/EdinburghDSSD/ressources/maskFront.png",
+        nptool + "/NPLib/Detectors/EdinburghDSSD/ressources/maskBack.png", 49.50 / 12800, 49.50 / 12800, 0, 0, 0xffff0000, 1, true);
+
+  //G4VPrimitiveScorer* InterScorer = new InteractionScorers::PS_Interactions("SiScorer", ms_InterCoord, 0);
+
+  m_SquareScorer->RegisterPrimitive(SiScorer);
+  //m_SquareScorer->RegisterPrimitive(InterScorer);
+  G4SDManager::GetSDMpointer()->AddNewDetector(m_SquareScorer);
+
+
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+////////////////////////////////////////////////////////////////////////////////
+//            Construct Method to be pass to the DetectorFactory              //
+////////////////////////////////////////////////////////////////////////////////
+NPS::VDetector* EdinburghDSSD::Construct(){
+  return  (NPS::VDetector*) new EdinburghDSSD();
+}
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+////////////////////////////////////////////////////////////////////////////////
+//            Registering the construct method to the factory                 //
+////////////////////////////////////////////////////////////////////////////////
+extern"C" {
+  class proxy_nps_EdinburghDSSD{
+    public:
+      proxy_nps_EdinburghDSSD(){
+        NPS::DetectorFactory::getInstance()->AddToken("EdinburghDSSD","EdinburghDSSD");
+        NPS::DetectorFactory::getInstance()->AddDetector("EdinburghDSSD",EdinburghDSSD::Construct);
+      }
+  };
+
+  proxy_nps_EdinburghDSSD p_nps_EdinburghDSSD;
+}
diff --git a/NPSimulation/Detectors/EdinburghDSSD/EdinburghDSSD.hh b/NPSimulation/Detectors/EdinburghDSSD/EdinburghDSSD.hh
new file mode 100644
index 0000000000000000000000000000000000000000..9678091906a8842decd36a016a7dea6ebfeb5d4e
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/EdinburghDSSD.hh
@@ -0,0 +1,196 @@
+#ifndef EdinburghDSSD_h
+#define EdinburghDSSD_h 1
+/*****************************************************************************
+ * Copyright (C) 2009-2024   this file is part of the NPTool Project       *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
+
+/*****************************************************************************
+ * Original Author: Louis Heitz  contact address: louis.heitz@ijclab.in2p3.fr                        *
+ *                                                                           *
+ * Creation Date  : mars 2024                                           *
+ * Last update    :                                                          *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *  This class describe  EdinburghDSSD simulation                             *
+ *                                                                           *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *****************************************************************************/
+
+// C++ header
+#include <string>
+#include <vector>
+using namespace std;
+
+// G4 headersTEdinburghDSSDData
+#include "G4ThreeVector.hh"
+#include "G4RotationMatrix.hh"
+#include "G4LogicalVolume.hh"
+#include "G4MultiFunctionalDetector.hh"
+
+// NPTool header
+#include "NPSVDetector.hh"
+#include "TEdinburghDSSDData.h"
+#include "NPInputParser.h"
+ namespace EDIN_NS{
+   // Resolution
+   const G4double SigmaTime =  0 * ns; //
+   const G4double SigmaEnergy = 5 * keV;     //
+
+   // Threshold
+   const G4double EnergyThreshold = 0 * MeV;
+   const double T_sum = 0.0000000001 * ns; // if ∆T < T_sum in same strip : sum events
+
+   // Geometry
+   // Detector + Dead Layer
+   const G4double SiliconThickness    = 1 * mm;
+   const G4double SquareLength  = 4.95 * cm;
+
+
+   const G4double DeadLayerThickness  = 0.8 * micrometer;
+
+
+   //Foil (=carbon target)
+   const double FoilThickness = 100. * nm;
+   const double FoilRadius = 4.5 * mm; //0.5 mm in addition is covered by holder.
+   const double FoilAngle = 35. * deg;
+
+   const double InnerRadius = 4.5 * mm ;
+   const double OuterRadius = 6.4 * mm;
+   //Foil Holder
+   const double FoilHolderThickness = 0.3 * mm ;
+   const double FoilHolderInnerRadius = InnerRadius;
+   const double FoilHolderOuterRadius = OuterRadius;
+
+   //First Sledge
+   const double FirstSledgeThickness = 0.37 * mm ;
+   const double FirstSledgeInnerRadius = InnerRadius;
+   const double FirstSledgeOuterRadius = OuterRadius;
+
+   //Second Sledge
+   const double SecondSledgeThickness = 0.73 * mm ;
+   const double SecondSledgeInnerRadius = InnerRadius;
+   const double SecondSledgeOuterRadius = OuterRadius;
+
+   //Filler
+   const double FillerThickness = FoilThickness ;
+   const double FillerInnerRadius = InnerRadius;
+   const double FillerOuterRadius = OuterRadius;
+
+
+   //Bar
+   const double BarLength = 50.0 * mm;
+   const double BarWidth = 1.1 * mm;
+   const double BarHeight = 14.5 * mm;
+ }
+
+class EdinburghDSSD : public NPS::VDetector{
+  ////////////////////////////////////////////////////
+  /////// Default Constructor and Destructor /////////
+  ////////////////////////////////////////////////////
+  public:
+    EdinburghDSSD() ;
+    virtual ~EdinburghDSSD() ;
+
+    ////////////////////////////////////////////////////
+    /////// Specific Function of this Class ///////////
+    ////////////////////////////////////////////////////
+  public:
+    // Cartesian
+    void AddDetector(int DetectorNumber,
+      G4ThreeVector PX1_Y1 ,
+      G4ThreeVector PX1_Y16=G4ThreeVector() ,
+      G4ThreeVector PX16_Y1=G4ThreeVector(),
+      G4ThreeVector PX16_Y16=G4ThreeVector());
+
+    G4LogicalVolume* BuildSubWorld();
+    G4LogicalVolume* BuildSquareDetector();
+    G4LogicalVolume* BuildDeadLayer();
+    G4LogicalVolume* BuildFoil();
+    G4LogicalVolume* BuildNozzle();
+    G4LogicalVolume* BuildFirstSledge();
+    G4LogicalVolume* BuildSecondSledge();
+    G4LogicalVolume* BuildFiller();
+    G4LogicalVolume* BuildFoilHolder();
+    G4LogicalVolume* BuildBarHoler();
+    //G4LogicalVolume* BuildBar();
+
+
+  private:
+    G4LogicalVolume* m_SquareDetector;
+    G4LogicalVolume* m_SquareDeadLayer;
+    G4LogicalVolume* m_Foil;
+    G4LogicalVolume* m_FoilHolder;
+    G4LogicalVolume* m_FirstSledge;
+    G4LogicalVolume* m_SecondSledge;
+    G4LogicalVolume* m_Filler;
+    G4LogicalVolume* m_subWorld;
+    G4LogicalVolume* m_substract;
+    G4LogicalVolume* m_bar;
+
+    G4Tubs* solidTarget;
+
+    ////////////////////////////////////////////////////
+    //////  Inherite from NPS::VDetector class /////////
+    ////////////////////////////////////////////////////
+  public:
+    // Read stream at Configfile to pick-up parameters of detector (Position,...)
+    // Called in DetecorConstruction::ReadDetextorConfiguration Method
+    void ReadConfiguration(NPL::InputParser) ;
+
+    // Construct detector and inialise sensitive part.
+    // Called After DetecorConstruction::AddDetector Method
+    void ConstructDetector(G4LogicalVolume* world) ;
+
+    // Add Detector branch to the EventTree.
+    // Called After DetecorConstruction::AddDetector Method
+    void InitializeRootOutput() ;
+
+    // Read sensitive part and fill the Root tree.
+    // Called at in the EventAction::EndOfEventAvtion
+    void ProcessStrip(std::map<unsigned int, std::pair<double, double>>& map, int key,
+                      double energy, double time);
+    void UpdateMap(bool X_Y, std::map<unsigned int, std::pair<double, double>>& map,
+                         std::map<unsigned int, bool>& mapInterstrip, int key, double energy,
+                        double time, double t0,bool interstrip);
+    void ReadSensitive(const G4Event* event) ;
+
+  public:   // Scorer
+    //   Initialize all Scorer used by the MUST2Array
+    void InitializeScorers() ;
+
+    //   Associated Scorer
+    G4MultiFunctionalDetector* m_SquareScorer ;
+    ////////////////////////////////////////////////////
+    ///////////Event class to store Data////////////////
+    ////////////////////////////////////////////////////
+    private:
+      TEdinburghDSSDData* m_Event;
+      // Geometry
+        // Detector Coordinate
+        // Used for "By Point Definition"
+        vector<G4ThreeVector>   m_X1_Y1     ; // Top Left Corner Position Vector
+        vector<G4ThreeVector>   m_X1_Y16   ; // Bottom Left Corner Position Vector
+        vector<G4ThreeVector>   m_X16_Y1   ; // Bottom Right Corner Position Vector
+        vector<G4ThreeVector>   m_X16_Y16 ; // Center Corner Position Vector
+
+        //   Shape type
+        vector<string> m_Shape ;
+        // DetectorNumber
+        vector<int>    m_DetectorNumber;
+        // Visualisation Attribute
+        G4VisAttributes* m_VisSquare;
+        G4VisAttributes* m_VisDeadLayer;
+        /////// Default Constructor and Destructor /////////
+        std::map<unsigned int, unsigned int> fMUMU_MapX;//!   // Pour éviter d'écirre dans l'abre ROOT
+        std::map<unsigned int, unsigned int> fMUMU_MapY;//!
+
+      // Needed for dynamic loading of the library
+      public:
+        static NPS::VDetector* Construct();
+    };
+#endif
diff --git a/NPSimulation/Detectors/EdinburghDSSD/Makefile b/NPSimulation/Detectors/EdinburghDSSD/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..287c4520b69af8afb2b3c94184bbfa658967b5ea
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/Makefile
@@ -0,0 +1,231 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.29
+
+# Default target executed when no arguments are given to make.
+default_target: all
+.PHONY : default_target
+
+# Allow only one "make -f Makefile2" at a time, but pass parallelism.
+.NOTPARALLEL:
+
+#=============================================================================
+# Special targets provided by cmake.
+
+# Disable implicit rules so canonical targets will work.
+.SUFFIXES:
+
+# Disable VCS-based implicit rules.
+% : %,v
+
+# Disable VCS-based implicit rules.
+% : RCS/%
+
+# Disable VCS-based implicit rules.
+% : RCS/%,v
+
+# Disable VCS-based implicit rules.
+% : SCCS/s.%
+
+# Disable VCS-based implicit rules.
+% : s.%
+
+.SUFFIXES: .hpux_make_needs_suffix_list
+
+# Command-line flag to silence nested $(MAKE).
+$(VERBOSE)MAKESILENT = -s
+
+#Suppress display of executed commands.
+$(VERBOSE).SILENT:
+
+# A target that is always out of date.
+cmake_force:
+.PHONY : cmake_force
+
+#=============================================================================
+# Set environment variables for the build.
+
+# The shell in which to execute make rules.
+SHELL = /bin/sh
+
+# The CMake executable.
+CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.29.0/bin/cmake
+
+# The command to remove a file.
+RM = /opt/homebrew/Cellar/cmake/3.29.0/bin/cmake -E rm -f
+
+# Escaping for special characters.
+EQUALS = =
+
+# The top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /Users/lh270370/Software/nptool/NPSimulation
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /Users/lh270370/Software/nptool/NPSimulation
+
+#=============================================================================
+# Targets provided globally by CMake.
+
+# Special rule for the target edit_cache
+edit_cache:
+	@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
+	/opt/homebrew/Cellar/cmake/3.29.0/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
+.PHONY : edit_cache
+
+# Special rule for the target edit_cache
+edit_cache/fast: edit_cache
+.PHONY : edit_cache/fast
+
+# Special rule for the target rebuild_cache
+rebuild_cache:
+	@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
+	/opt/homebrew/Cellar/cmake/3.29.0/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
+.PHONY : rebuild_cache
+
+# Special rule for the target rebuild_cache
+rebuild_cache/fast: rebuild_cache
+.PHONY : rebuild_cache/fast
+
+# Special rule for the target list_install_components
+list_install_components:
+	@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\""
+.PHONY : list_install_components
+
+# Special rule for the target list_install_components
+list_install_components/fast: list_install_components
+.PHONY : list_install_components/fast
+
+# Special rule for the target install
+install: preinstall
+	@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
+	/opt/homebrew/Cellar/cmake/3.29.0/bin/cmake -P cmake_install.cmake
+.PHONY : install
+
+# Special rule for the target install
+install/fast: preinstall/fast
+	@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
+	/opt/homebrew/Cellar/cmake/3.29.0/bin/cmake -P cmake_install.cmake
+.PHONY : install/fast
+
+# Special rule for the target install/local
+install/local: preinstall
+	@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
+	/opt/homebrew/Cellar/cmake/3.29.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
+.PHONY : install/local
+
+# Special rule for the target install/local
+install/local/fast: preinstall/fast
+	@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
+	/opt/homebrew/Cellar/cmake/3.29.0/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
+.PHONY : install/local/fast
+
+# Special rule for the target install/strip
+install/strip: preinstall
+	@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
+	/opt/homebrew/Cellar/cmake/3.29.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
+.PHONY : install/strip
+
+# Special rule for the target install/strip
+install/strip/fast: preinstall/fast
+	@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
+	/opt/homebrew/Cellar/cmake/3.29.0/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
+.PHONY : install/strip/fast
+
+# The main all target
+all: cmake_check_build_system
+	cd /Users/lh270370/Software/nptool/NPSimulation && $(CMAKE_COMMAND) -E cmake_progress_start /Users/lh270370/Software/nptool/NPSimulation/CMakeFiles /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD//CMakeFiles/progress.marks
+	cd /Users/lh270370/Software/nptool/NPSimulation && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Detectors/EdinburghDSSD/all
+	$(CMAKE_COMMAND) -E cmake_progress_start /Users/lh270370/Software/nptool/NPSimulation/CMakeFiles 0
+.PHONY : all
+
+# The main clean target
+clean:
+	cd /Users/lh270370/Software/nptool/NPSimulation && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Detectors/EdinburghDSSD/clean
+.PHONY : clean
+
+# The main clean target
+clean/fast: clean
+.PHONY : clean/fast
+
+# Prepare targets for installation.
+preinstall: all
+	cd /Users/lh270370/Software/nptool/NPSimulation && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Detectors/EdinburghDSSD/preinstall
+.PHONY : preinstall
+
+# Prepare targets for installation.
+preinstall/fast:
+	cd /Users/lh270370/Software/nptool/NPSimulation && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Detectors/EdinburghDSSD/preinstall
+.PHONY : preinstall/fast
+
+# clear depends
+depend:
+	cd /Users/lh270370/Software/nptool/NPSimulation && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
+.PHONY : depend
+
+# Convenience name for target.
+Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/rule:
+	cd /Users/lh270370/Software/nptool/NPSimulation && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/rule
+.PHONY : Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/rule
+
+# Convenience name for target.
+NPSEdinburghDSSD: Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/rule
+.PHONY : NPSEdinburghDSSD
+
+# fast build rule for target.
+NPSEdinburghDSSD/fast:
+	cd /Users/lh270370/Software/nptool/NPSimulation && $(MAKE) $(MAKESILENT) -f Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/build.make Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/build
+.PHONY : NPSEdinburghDSSD/fast
+
+EdinburghDSSD.o: EdinburghDSSD.cc.o
+.PHONY : EdinburghDSSD.o
+
+# target to build an object file
+EdinburghDSSD.cc.o:
+	cd /Users/lh270370/Software/nptool/NPSimulation && $(MAKE) $(MAKESILENT) -f Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/build.make Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.o
+.PHONY : EdinburghDSSD.cc.o
+
+EdinburghDSSD.i: EdinburghDSSD.cc.i
+.PHONY : EdinburghDSSD.i
+
+# target to preprocess a source file
+EdinburghDSSD.cc.i:
+	cd /Users/lh270370/Software/nptool/NPSimulation && $(MAKE) $(MAKESILENT) -f Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/build.make Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.i
+.PHONY : EdinburghDSSD.cc.i
+
+EdinburghDSSD.s: EdinburghDSSD.cc.s
+.PHONY : EdinburghDSSD.s
+
+# target to generate assembly for a file
+EdinburghDSSD.cc.s:
+	cd /Users/lh270370/Software/nptool/NPSimulation && $(MAKE) $(MAKESILENT) -f Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/build.make Detectors/EdinburghDSSD/CMakeFiles/NPSEdinburghDSSD.dir/EdinburghDSSD.cc.s
+.PHONY : EdinburghDSSD.cc.s
+
+# Help Target
+help:
+	@echo "The following are some of the valid targets for this Makefile:"
+	@echo "... all (the default if no target is provided)"
+	@echo "... clean"
+	@echo "... depend"
+	@echo "... edit_cache"
+	@echo "... install"
+	@echo "... install/local"
+	@echo "... install/strip"
+	@echo "... list_install_components"
+	@echo "... rebuild_cache"
+	@echo "... NPSEdinburghDSSD"
+	@echo "... EdinburghDSSD.o"
+	@echo "... EdinburghDSSD.i"
+	@echo "... EdinburghDSSD.s"
+.PHONY : help
+
+
+
+#=============================================================================
+# Special targets to cleanup operation of make.
+
+# Special rule to run CMake to check the build system integrity.
+# No rule that depends on this can have commands that come from listfiles
+# because they might be regenerated.
+cmake_check_build_system:
+	cd /Users/lh270370/Software/nptool/NPSimulation && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
+.PHONY : cmake_check_build_system
+
diff --git a/NPSimulation/Detectors/EdinburghDSSD/cmake_install.cmake b/NPSimulation/Detectors/EdinburghDSSD/cmake_install.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..84d8a81ded01de0a079e5ae5b7290e58a0f3ef9f
--- /dev/null
+++ b/NPSimulation/Detectors/EdinburghDSSD/cmake_install.cmake
@@ -0,0 +1,39 @@
+# Install script for directory: /Users/lh270370/Software/nptool/NPSimulation/Detectors/EdinburghDSSD
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+  set(CMAKE_INSTALL_PREFIX "/usr/local")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+  if(BUILD_TYPE)
+    string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+           CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+  else()
+    set(CMAKE_INSTALL_CONFIG_NAME "Release")
+  endif()
+  message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+  if(COMPONENT)
+    message(STATUS "Install component: \"${COMPONENT}\"")
+    set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+  else()
+    set(CMAKE_INSTALL_COMPONENT)
+  endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+  set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
+# Set default install directory permissions.
+if(NOT DEFINED CMAKE_OBJDUMP)
+  set(CMAKE_OBJDUMP "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/objdump")
+endif()
+
diff --git a/NPSimulation/Detectors/MUSETT/CMakeCache.txt b/NPSimulation/Detectors/MUSETT/CMakeCache.txt
new file mode 100644
index 0000000000000000000000000000000000000000..3436284eaafc4c08c8f1298ba53c22fa711cbeb8
--- /dev/null
+++ b/NPSimulation/Detectors/MUSETT/CMakeCache.txt
@@ -0,0 +1,364 @@
+# This is the CMakeCache file.
+# For build in directory: /Users/lh270370/Software/nptool/NPSimulation/Detectors/MUSETT
+# It was generated by CMake: /opt/homebrew/Cellar/cmake/3.23.1_1/bin/cmake
+# You can edit this file to change values found and used by cmake.
+# If you do not want to change any of the values, simply exit the editor.
+# If you do want to change a value, simply edit, save, and exit the editor.
+# The syntax for the file is as follows:
+# KEY:TYPE=VALUE
+# KEY is the name of a variable in the cache.
+# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
+# VALUE is the current value for the KEY.
+
+########################
+# EXTERNAL cache entries
+########################
+
+//Path to a program.
+CMAKE_ADDR2LINE:FILEPATH=CMAKE_ADDR2LINE-NOTFOUND
+
+//Path to a program.
+CMAKE_AR:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar
+
+//Choose the type of build, options are: None Debug Release RelWithDebInfo
+// MinSizeRel ...
+CMAKE_BUILD_TYPE:STRING=
+
+//Enable/Disable color output during build.
+CMAKE_COLOR_MAKEFILE:BOOL=ON
+
+//CXX compiler
+CMAKE_CXX_COMPILER:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
+
+//Flags used by the CXX compiler during all build types.
+CMAKE_CXX_FLAGS:STRING=
+
+//Flags used by the CXX compiler during DEBUG builds.
+CMAKE_CXX_FLAGS_DEBUG:STRING=-g
+
+//Flags used by the CXX compiler during MINSIZEREL builds.
+CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
+
+//Flags used by the CXX compiler during RELEASE builds.
+CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
+
+//Flags used by the CXX compiler during RELWITHDEBINFO builds.
+CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
+
+//C compiler
+CMAKE_C_COMPILER:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
+
+//Flags used by the C compiler during all build types.
+CMAKE_C_FLAGS:STRING=
+
+//Flags used by the C compiler during DEBUG builds.
+CMAKE_C_FLAGS_DEBUG:STRING=-g
+
+//Flags used by the C compiler during MINSIZEREL builds.
+CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
+
+//Flags used by the C compiler during RELEASE builds.
+CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
+
+//Flags used by the C compiler during RELWITHDEBINFO builds.
+CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
+
+//Path to a program.
+CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
+
+//Flags used by the linker during all build types.
+CMAKE_EXE_LINKER_FLAGS:STRING=
+
+//Flags used by the linker during DEBUG builds.
+CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during MINSIZEREL builds.
+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during RELEASE builds.
+CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during RELWITHDEBINFO builds.
+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//Enable/Disable output of compile commands during generation.
+CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
+
+//Path to a program.
+CMAKE_INSTALL_NAME_TOOL:FILEPATH=/usr/bin/install_name_tool
+
+//Install path prefix, prepended onto install directories.
+CMAKE_INSTALL_PREFIX:PATH=/usr/local
+
+//Path to a program.
+CMAKE_LINKER:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
+
+//Path to a program.
+CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
+
+//Flags used by the linker during the creation of modules during
+// all build types.
+CMAKE_MODULE_LINKER_FLAGS:STRING=
+
+//Flags used by the linker during the creation of modules during
+// DEBUG builds.
+CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during the creation of modules during
+// MINSIZEREL builds.
+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during the creation of modules during
+// RELEASE builds.
+CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during the creation of modules during
+// RELWITHDEBINFO builds.
+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//Path to a program.
+CMAKE_NM:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/nm
+
+//Path to a program.
+CMAKE_OBJCOPY:FILEPATH=CMAKE_OBJCOPY-NOTFOUND
+
+//Path to a program.
+CMAKE_OBJDUMP:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/objdump
+
+//Build architectures for OSX
+CMAKE_OSX_ARCHITECTURES:STRING=
+
+//Minimum OS X version to target for deployment (at runtime); newer
+// APIs weak linked. Set to empty string for default value.
+CMAKE_OSX_DEPLOYMENT_TARGET:STRING=14.2
+
+//The product will be built against the headers and libraries located
+// inside the indicated SDK.
+CMAKE_OSX_SYSROOT:PATH=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk
+
+//Value Computed by CMake
+CMAKE_PROJECT_DESCRIPTION:STATIC=
+
+//Value Computed by CMake
+CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
+
+//Value Computed by CMake
+CMAKE_PROJECT_NAME:STATIC=Project
+
+//Path to a program.
+CMAKE_RANLIB:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib
+
+//Path to a program.
+CMAKE_READELF:FILEPATH=CMAKE_READELF-NOTFOUND
+
+//Flags used by the linker during the creation of shared libraries
+// during all build types.
+CMAKE_SHARED_LINKER_FLAGS:STRING=
+
+//Flags used by the linker during the creation of shared libraries
+// during DEBUG builds.
+CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during the creation of shared libraries
+// during MINSIZEREL builds.
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during the creation of shared libraries
+// during RELEASE builds.
+CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during the creation of shared libraries
+// during RELWITHDEBINFO builds.
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//If set, runtime paths are not added when installing shared libraries,
+// but are added when building.
+CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
+
+//If set, runtime paths are not added when using shared libraries.
+CMAKE_SKIP_RPATH:BOOL=NO
+
+//Flags used by the linker during the creation of static libraries
+// during all build types.
+CMAKE_STATIC_LINKER_FLAGS:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during DEBUG builds.
+CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during MINSIZEREL builds.
+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during RELEASE builds.
+CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during RELWITHDEBINFO builds.
+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//Path to a program.
+CMAKE_STRIP:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip
+
+//If this value is on, makefiles will be generated without the
+// .SILENT directive, and all commands will be echoed to the console
+// during the make.  This is useful for debugging only. With Visual
+// Studio IDE projects all commands are done without /nologo.
+CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
+
+//Dependencies for the target
+NPSMUSETT_LIB_DEPENDS:STATIC=general;NPSCore;general;-lNPMUSETT;
+
+//Value Computed by CMake
+Project_BINARY_DIR:STATIC=/Users/lh270370/Software/nptool/NPSimulation/Detectors/MUSETT
+
+//Value Computed by CMake
+Project_IS_TOP_LEVEL:STATIC=ON
+
+//Value Computed by CMake
+Project_SOURCE_DIR:STATIC=/Users/lh270370/Software/nptool/NPSimulation/Detectors/MUSETT
+
+
+########################
+# INTERNAL cache entries
+########################
+
+//ADVANCED property for variable: CMAKE_ADDR2LINE
+CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_AR
+CMAKE_AR-ADVANCED:INTERNAL=1
+//This is the directory where this CMakeCache.txt was created
+CMAKE_CACHEFILE_DIR:INTERNAL=/Users/lh270370/Software/nptool/NPSimulation/Detectors/MUSETT
+//Major version of cmake used to create the current loaded cache
+CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
+//Minor version of cmake used to create the current loaded cache
+CMAKE_CACHE_MINOR_VERSION:INTERNAL=23
+//Patch version of cmake used to create the current loaded cache
+CMAKE_CACHE_PATCH_VERSION:INTERNAL=1
+//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
+CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
+//Path to CMake executable.
+CMAKE_COMMAND:INTERNAL=/opt/homebrew/Cellar/cmake/3.23.1_1/bin/cmake
+//Path to cpack program executable.
+CMAKE_CPACK_COMMAND:INTERNAL=/opt/homebrew/Cellar/cmake/3.23.1_1/bin/cpack
+//Path to ctest program executable.
+CMAKE_CTEST_COMMAND:INTERNAL=/opt/homebrew/Cellar/cmake/3.23.1_1/bin/ctest
+//ADVANCED property for variable: CMAKE_CXX_COMPILER
+CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS
+CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
+CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
+CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
+CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
+CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_COMPILER
+CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS
+CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
+CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
+CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
+CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
+CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_DLLTOOL
+CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
+//Path to cache edit program executable.
+CMAKE_EDIT_COMMAND:INTERNAL=/opt/homebrew/Cellar/cmake/3.23.1_1/bin/ccmake
+//Executable file format
+CMAKE_EXECUTABLE_FORMAT:INTERNAL=MACHO
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
+CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
+CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
+CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
+CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
+//Name of external makefile project generator.
+CMAKE_EXTRA_GENERATOR:INTERNAL=
+//Name of generator.
+CMAKE_GENERATOR:INTERNAL=Unix Makefiles
+//Generator instance identifier.
+CMAKE_GENERATOR_INSTANCE:INTERNAL=
+//Name of generator platform.
+CMAKE_GENERATOR_PLATFORM:INTERNAL=
+//Name of generator toolset.
+CMAKE_GENERATOR_TOOLSET:INTERNAL=
+//Source directory with the top level CMakeLists.txt file for this
+// project
+CMAKE_HOME_DIRECTORY:INTERNAL=/Users/lh270370/Software/nptool/NPSimulation/Detectors/MUSETT
+//ADVANCED property for variable: CMAKE_INSTALL_NAME_TOOL
+CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_LINKER
+CMAKE_LINKER-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
+CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
+CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
+CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
+CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_NM
+CMAKE_NM-ADVANCED:INTERNAL=1
+//number of local generators
+CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
+//ADVANCED property for variable: CMAKE_OBJCOPY
+CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_OBJDUMP
+CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
+//Platform information initialized
+CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RANLIB
+CMAKE_RANLIB-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_READELF
+CMAKE_READELF-ADVANCED:INTERNAL=1
+//Path to CMake installation.
+CMAKE_ROOT:INTERNAL=/opt/homebrew/Cellar/cmake/3.23.1_1/share/cmake
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
+CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
+CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
+CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
+CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_RPATH
+CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
+CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
+CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
+CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STRIP
+CMAKE_STRIP-ADVANCED:INTERNAL=1
+//uname command
+CMAKE_UNAME:INTERNAL=/usr/bin/uname
+//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
+CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
+
diff --git a/NPSimulation/Detectors/MUSETT/CMakeLists.txt b/NPSimulation/Detectors/MUSETT/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8f6ea2b8fa67fb696432d2744ec99d348a182f9b
--- /dev/null
+++ b/NPSimulation/Detectors/MUSETT/CMakeLists.txt
@@ -0,0 +1,2 @@
+add_library(NPSMUSETT SHARED  MUSETT.cc)
+target_link_libraries(NPSMUSETT NPSCore ${ROOT_LIBRARIES} ${Geant4_LIBRARIES} ${NPLib_LIBRARIES} -lNPMUSETT)
diff --git a/NPSimulation/Detectors/MUSETT/MUSETT.cc b/NPSimulation/Detectors/MUSETT/MUSETT.cc
new file mode 100644
index 0000000000000000000000000000000000000000..767f092bde3e5ca101c78bb7d4e189008d1c5155
--- /dev/null
+++ b/NPSimulation/Detectors/MUSETT/MUSETT.cc
@@ -0,0 +1,842 @@
+/*****************************************************************************
+ * Copyright (C) 2009-2023   this file is part of the NPTool Project         *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
+
+/*****************************************************************************
+ * Original Author: Louis Heitz  contact address: louis.heitz@ijclab.in2p3.fr*
+ *                                                                           *
+ * Creation Date  : January 2024                                             *
+ * Last update    :                                                          *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *  This class describe  MUSETT simulation for double alpha decay            *
+ *                                                                           *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *****************************************************************************/
+
+// C++ headers
+#include <cmath>
+#include <limits>
+#include <sstream>
+// G4 Geometry object
+#include "G4Box.hh"
+#include "G4Trap.hh"
+#include "G4Tubs.hh"
+
+// G4 sensitive
+#include "G4MultiFunctionalDetector.hh"
+#include "G4SDManager.hh"
+
+
+// G4 various object
+#include "G4Colour.hh"
+#include "G4ExtrudedSolid.hh"
+#include "G4Material.hh"
+#include "G4PVPlacement.hh"
+#include "G4SubtractionSolid.hh"
+#include "G4Transform3D.hh"
+#include "G4TwoVector.hh"
+#include "G4VisAttributes.hh"
+#include "G4NistManager.hh"
+#include "G4UserLimits.hh"
+
+
+// NPTool header
+#include "DSSDScorers.hh"
+#include "InteractionScorers.hh"
+#include "MaterialManager.hh"
+#include "MUSETT.hh"
+#include "MUSETTMap.h"
+#include "NPCore.h"
+#include "NPOptionManager.h"
+#include "NPSDetectorFactory.hh"
+#include "NPSHitsMap.hh"
+#include "RootOutput.h"
+
+// CLHEP header
+#include "CLHEP/Random/RandGauss.h"
+#include "CLHEP/Random/RandFlat.h"
+#include "CLHEP/Random/Random.h"
+
+using namespace std;
+using namespace CLHEP;
+using namespace MUSETT_NS;
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+// MUSETT Specific Method
+MUSETT::MUSETT() {
+  m_Event = new TMUSETTData();
+  InitializeMaterial();
+  m_SquareScorer = 0;
+  m_SquareDetector = 0;
+  m_SquareDeadLayer =0;
+
+  // RGB Color + Transparency
+  m_VisSquare = new G4VisAttributes(G4Colour(0, 0, 1, 0.8));
+
+  m_VisDeadLayer = new G4VisAttributes(G4Colour(0, 1, 0, 0.5));
+}
+
+MUSETT::~MUSETT() {}
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+void MUSETT::AddDetector(int DetectorNumber, G4ThreeVector PX1_Y1, G4ThreeVector PX1_Y128,G4ThreeVector PX128_Y1, G4ThreeVector PX128_Y128) {
+  m_X1_Y1.push_back(PX1_Y1);         // Top Left Corner Position Vector
+  m_X1_Y128.push_back(PX1_Y128);     // Bottom Left Corner Position Vector
+  m_X128_Y1.push_back(PX128_Y1);     // Bottom Right Corner Position Vector
+  m_X128_Y128.push_back(PX128_Y128); // Center Corner Position Vector
+  m_DetectorNumber.push_back(DetectorNumber);
+
+}
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+G4LogicalVolume* MUSETT::BuildSquareDetector() {
+  if (!m_SquareDetector) {
+    G4String Name = "MUSETT";
+
+
+    G4Box* solidSquare = new G4Box(Name, 0.5 * SquareLength, 0.5 * SquareLength, 0.5 * SiliconThickness);
+
+    G4LogicalVolume* logicSquare = new G4LogicalVolume(
+    solidSquare, m_MaterialVacuum, Name, 0, 0, 0);
+
+
+    logicSquare->SetVisAttributes(m_VisSquare);
+
+    G4ThreeVector positionFirstStage = G4ThreeVector(0, 0, 0);
+
+    G4Box* solidFirstStage = new G4Box("solidFirstStage", 0.5 * SquareLength, 0.5 * SquareLength, 0.5 * SiliconThickness);
+    G4LogicalVolume* logicFirstStage = new G4LogicalVolume(
+        solidFirstStage, m_MaterialSilicon, "logicFirstStage", 0, 0, 0);
+
+
+    logicFirstStage->SetVisAttributes(m_VisSquare);
+    new G4PVPlacement(0, positionFirstStage, logicFirstStage, Name + "_FirstStage", logicSquare, false, 0);
+
+    m_SquareDetector = logicSquare;
+    // Set First Stage sensible
+    logicFirstStage->SetSensitiveDetector(m_SquareScorer);
+
+    G4UserLimits* stepLimit = new G4UserLimits(1*um);
+
+    logicFirstStage->SetUserLimits(stepLimit);
+
+  }
+
+  return m_SquareDetector;
+}
+
+G4LogicalVolume* MUSETT::BuildDeadLayer(){
+  if (!m_SquareDeadLayer) {
+    G4String Name = "MUSETT";
+
+    // Step 1: Create the Square Solid
+    G4Box* solidSquare = new G4Box(Name, 0.5 * SquareLength, 0.5 * SquareLength, 0.5 * DeadLayerThickness);
+    G4LogicalVolume* logicSquare = new G4LogicalVolume(
+      solidSquare, m_MaterialVacuum, Name, 0, 0, 0);
+
+    // Step 2: Create the Boron Dead Layer Solid
+    G4Box* solidDeadLayer = new G4Box("solidDeadLayer", 0.5 * SquareLength, 0.5 * SquareLength, 0.5 * DeadLayerThickness);
+
+
+    G4LogicalVolume* logicDeadLayer = new G4LogicalVolume(solidDeadLayer, m_MaterialBoron, "logicDeadLayer");
+
+    // Set the visualization attributes for the Dead Layer
+    G4VisAttributes* DeadLayerVisAtt = new G4VisAttributes(G4Colour(0.1, 0.90, 0.90));
+    //DeadLayerVisAtt->SetForceWireframe(true);
+    logicDeadLayer->SetVisAttributes(DeadLayerVisAtt);
+
+    // Step 4: Position the Dead Layer - Assuming it's placed on top of the first stage
+    G4ThreeVector positionDeadLayer = G4ThreeVector(0, 0, 0.5 * SiliconThickness + 0.5 * DeadLayerThickness);
+    new G4PVPlacement(0, positionDeadLayer, logicDeadLayer, (Name + "_DeadLayer").c_str(), logicSquare, false, 0);
+
+    m_SquareDeadLayer = logicDeadLayer;
+  }
+  return m_SquareDeadLayer;
+}
+
+
+G4LogicalVolume* MUSETT::BuildTarget() {
+  // Define target properties
+  G4String Name = "FoilTarget";
+
+
+  // Create the solid foil target (cylinder)
+ solidTarget = new G4Tubs(Name, 0.0, targetRadius, targetHalfThickness, 0.0, 360.0 * deg);
+
+
+ // Create the logical volume for the foil target
+ G4LogicalVolume* logicTarget = new G4LogicalVolume(solidTarget, m_MaterialCarbon, Name);
+
+ // Set the visualization attributes to make it red
+ G4VisAttributes* targetVisAtt = new G4VisAttributes(G4Colour(1.0, 0.5, 0.0)); // Red color
+ logicTarget->SetVisAttributes(targetVisAtt);
+
+ return logicTarget;
+}
+
+G4LogicalVolume* MUSETT::BuildTargetHolder() {
+  // Define TargetHolder properties
+  G4String Name = "TargetHolder";
+
+
+  // Position of the lower part
+
+  // Create the solid TargetHolder (box)
+  G4Box* solidTargetHolder = new G4Box(Name,0.5 * holderLength, 0.5 * holderWidth , 0.5 * holderHeight);
+
+G4ThreeVector holePosition(0, 0, -holderHeight/2+lowerPartZPosition);
+//G4ThreeVector holePosition(0, 0, 0);
+
+// Create a tubular hole centered at the origin with a specified radius
+G4Tubs* solidHole = new G4Tubs("Hole", 0, targetRadius, holderWidth, 0, 360 * degree);
+
+// Create a rotation matrix to rotate the hole by 90 degrees around the x-axis
+G4RotationMatrix* rotation = new G4RotationMatrix();
+rotation->rotateX(90 * degree);
+
+// Apply the rotation to the solidHole
+G4Transform3D transform(*rotation, holePosition);
+
+// Create a subtraction solid to remove the hole from the TargetHolder
+G4SubtractionSolid* solidTargetHolderWithHole = new G4SubtractionSolid("TargetHolderWithHole", solidTargetHolder, solidHole, transform);
+
+//G4SubtractionSolid* solidTargetHolderWithHole = new G4SubtractionSolid("TargetHolderWithHole", solidTargetHolder, solidHole);
+
+// Create a logical volume for the TargetHolder
+G4LogicalVolume* logicTargetHolderWithHole = new G4LogicalVolume(solidTargetHolderWithHole, m_MaterialAluminium, "TargetHolderWithHole");
+
+
+
+
+  // Create the logical volume for the TargetHolder
+  //G4LogicalVolume* logicTargetHolder = new G4LogicalVolume(solidTargetHolder, holderMaterial, Name);
+
+
+  // Set the visualization attributes to make it light gray
+  G4VisAttributes* holderVisAtt = new G4VisAttributes(G4Colour(0.8, 0.8, 0.8)); // Light gray color
+  logicTargetHolderWithHole->SetVisAttributes(holderVisAtt);
+
+  // Position the TargetHolder // Replace "yourMotherLogicalVolume" with the actual parent logical volume
+
+  return logicTargetHolderWithHole;
+}
+
+G4LogicalVolume* MUSETT::BuildAlLattice() {
+
+    // Define dimensions of Xstick and Ystick
+
+    // Create Xstick and Ystick solids
+    G4Box* solidXstick = new G4Box("Xstick", 0.5 * XstickWidth, 0.5 * XstickLength, 0.5 * XstickHeight);
+    G4Box* solidYstick = new G4Box("Ystick", 0.5 * YstickWidth, 0.5 * YstickLength, 0.5 * YstickHeight);
+    G4Box* solidBondPad = new G4Box("BondPad", 0.5 * BondPadSize, 0.5 * BondPadSize, 0.5 * BondPadHeight);
+
+    // Create logical volume for Xstick and Ystick
+    G4LogicalVolume* logicXstick = new G4LogicalVolume(solidXstick, m_MaterialAluminium, "Xstick");
+    G4LogicalVolume* logicYstick = new G4LogicalVolume(solidYstick, m_MaterialAluminium, "Ystick");
+    G4LogicalVolume* logicBondPad = new G4LogicalVolume(solidBondPad, m_MaterialAluminium, "BondPad");
+
+    // Set visualization attributes
+    //logicXstick->SetVisAttributes(new G4VisAttributes(G4Colour(1.0, 0.0, 0.0))); // Red color for Xsticks
+    //logicYstick->SetVisAttributes(new G4VisAttributes(G4Colour(0.0, 0.0, 1.0))); // Blue color for Ysticks
+
+    // Define lattice parameters
+
+
+    //int numXsticks = static_cast<int> (SquareLength / (XstickWidth + spacingX)) ;
+
+    //G4int numXsticks = 6;
+
+    //G4int numYsticks = 2;
+    //G4cout << '@@@@@@@'<< G4endl;
+    //G4cout << "number X sticks = " << numXsticks << G4endl;
+    //G4cout << "number Y sticks = " << numYsticks << G4endl;
+
+    // Calculate total width of Xsticks and total length of Ysticks
+    const G4double totalXstickWidth = SquareLength ;
+    const G4double totalYstickLength =  SquareLength ;
+    // Create lattice volume
+    G4Box* solidLattice = new G4Box("Lattice", totalXstickWidth/2, totalYstickLength/2, XstickHeight/2);
+    G4LogicalVolume* logicLattice = new G4LogicalVolume(solidLattice, m_MaterialVacuum, "Lattice");
+
+
+    // Placement of Ysticks in the lattice
+    const G4double x0 = -totalXstickWidth/2 + YstickWidth/2;
+    const G4double x_up_down = XstickWidth + YstickWidth;
+    const G4double x_down_down = x_up_down + InterStrip + YstickWidth;
+    const G4double y0_y = 0;
+    const G4double y0_x = -totalYstickLength/2;
+    const G4double step_y = 2890/3*um + XstickLength;
+    G4int cnt_y = 0;
+    G4int cnt_x = 0;
+    G4int cnt_pad = 0;
+    for (G4int i = 0; i < numYsticks ; i++) {
+    //for (G4int i = 0; i < 2 ; i++) {
+            G4double xDown = x0 + i*x_down_down ;
+            G4double Xup = xDown +x_up_down;
+            new G4PVPlacement(0, G4ThreeVector(xDown, y0_y, 0), logicYstick, "Ystick", logicLattice, false, cnt_y++);
+            new G4PVPlacement(0, G4ThreeVector(Xup, y0_y, 0), logicYstick, "Ystick", logicLattice, false, cnt_y++);
+            G4double xPos = (xDown + Xup)/2;
+
+            // First and last sticks are different from the others
+            G4double yPos = y0_x +XstickLength/2;//;+ 550*um + XstickLength/2;
+            new G4PVPlacement(0, G4ThreeVector(xPos, yPos, 0), logicXstick, "Xstick", logicLattice, false, cnt_x++);
+            yPos += 550*um + XstickLength/2;
+            G4double new_y0 = yPos+ XstickLength/2;
+            new G4PVPlacement(0, G4ThreeVector(xPos, yPos, 0), logicXstick, "Xstick", logicLattice, false, cnt_x++);
+            G4double y =0;
+
+            for (G4int j = 1; j < numXsticks+1; j++)
+            {
+              G4double yPos = new_y0 + j * step_y;
+              new G4PVPlacement(0, G4ThreeVector(xPos, yPos, 0), logicXstick, "Xstick", logicLattice, false, cnt_x++);
+            }
+
+            yPos = y0_x + totalYstickLength - XstickLength/2;
+            new G4PVPlacement(0, G4ThreeVector(xPos, yPos, 0), logicXstick, "Xstick", logicLattice, false, cnt_x++);
+            G4double YposPadLeft = y0_x + XstickLength +BondPadSize/2;
+            G4double YposPadRight = y0_x + totalYstickLength - XstickLength  -BondPadSize/2;
+            new G4PVPlacement(0, G4ThreeVector(xPos, YposPadLeft, 0), logicBondPad, "BondPad", logicLattice, false, cnt_pad++);
+            new G4PVPlacement(0, G4ThreeVector(xPos, YposPadRight, 0), logicBondPad, "BondPad", logicLattice, false, cnt_pad++);
+
+    }
+
+
+    G4VisAttributes* latticeVisAtt = new G4VisAttributes(G4Colour(1.0, 1.0, 1.0, 0.1)); // White color with 50% transparency
+    latticeVisAtt->SetForceSolid(false); // Allow transparency
+    logicLattice->SetVisAttributes(latticeVisAtt);
+    return logicLattice;
+}
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+// Virtual Method of NPS::VDetector class
+
+// Read stream at Configfile to pick-up parameters of detector (Position,...)
+// Called in DetecorConstruction::ReadDetextorConfiguration Method
+void MUSETT::ReadConfiguration(NPL::InputParser parser) {
+  vector<NPL::InputBlock*> blocks = parser.GetAllBlocksWithToken("MUSETT");
+  if (NPOptionManager::getInstance()->GetVerboseLevel())
+    cout << "//// " << blocks.size() << " MUSETT found " << endl;
+
+  // Cartesian Case
+  vector<string> cart = {"X1_Y1", "X1_Y128", "X128_Y1", "X128_Y128"};
+  // Spherical Case
+  vector<string> sphe = {"R", "THETA", "PHI", "BETA"};
+
+  for (unsigned int i = 0; i < blocks.size(); i++) {
+    if (blocks[i]->HasTokenList(cart)) {
+      if (NPOptionManager::getInstance()->GetVerboseLevel())
+        cout << endl << "////  MUSETT Detector " << i + 1 << endl;
+        TVector3 A = blocks[i]->GetTVector3("X1_Y1", "mm");
+        TVector3 B = blocks[i]->GetTVector3("X128_Y1", "mm");
+        TVector3 C = blocks[i]->GetTVector3("X1_Y128", "mm");
+        TVector3 D = blocks[i]->GetTVector3("X128_Y128", "mm");
+
+        G4ThreeVector g4_A(A.X(), A.Y(), A.Z());
+        G4ThreeVector g4_B(B.X(), B.Y(), B.Z());
+        G4ThreeVector g4_C(C.X(), C.Y(), C.Z());
+        G4ThreeVector g4_D(D.X(), D.Y(), D.Z());
+
+        // Now, you can use g4_A, g4_B, g4_C, and g4_D as G4ThreeVector objects
+        // For example, to call AddDetector
+  AddDetector(i, g4_A, g4_B, g4_C, g4_D);
+    }
+
+    else {
+      cout << "ERROR: Missing token for MUSETT blocks, check your "
+              "input "
+              "file"
+           << endl;
+      exit(1);
+    }
+  }
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+
+// Construct detector and inialise sensitive part.
+// Called After Detecor
+// onstruction::AddDetector Method
+void MUSETT::ConstructDetector(G4LogicalVolume* world) {
+  for (unsigned short i = 0; i < m_DetectorNumber.size(); i++) {
+      G4RotationMatrix* rot = NULL;
+      G4ThreeVector pos = G4ThreeVector(0, 0, 0);
+      G4ThreeVector u = G4ThreeVector(0, 0, 0);
+      G4ThreeVector v = G4ThreeVector(0, 0, 0);
+      G4ThreeVector w = G4ThreeVector(0, 0, 0);
+      G4ThreeVector Center = G4ThreeVector(0, 0, 0);
+      // (u,v,w) unitary vector associated to telescope referencial
+      // (u,v) // to silicon plan
+      // w perpendicular to (u,v) plan and pointing ThirdStage
+      u = (m_X1_Y128[i] + m_X128_Y128[i] - m_X1_Y1[i] - m_X128_Y1[i]);
+      u = u.unit();
+
+      v = m_X128_Y1[i] - m_X1_Y1[i];
+      v = v.unit();
+
+      w = u.cross(v);
+      w = w.unit();
+
+      Center = (m_X1_Y1[i] + m_X1_Y128[i] + m_X128_Y1[i] + m_X128_Y128[i]) / 4;
+
+      // Passage Matrix from Lab Referential to Telescope Referential
+      rot = new G4RotationMatrix(u, v, w);
+      // translation to place Telescope
+      pos = w * SiliconThickness * 0.5 + Center;
+
+
+      new G4PVPlacement(G4Transform3D(*rot, pos), BuildSquareDetector(), "MUSETTSquare", world, false,                  m_DetectorNumber[i]);
+
+
+
+
+
+      G4ThreeVector deadLayerPos = pos + w * (SiliconThickness * 0.5 + DeadLayerThickness * 0.5);
+      new G4PVPlacement(G4Transform3D(*rot, deadLayerPos), BuildDeadLayer(), "MUSETTDeadLayer", world, false, m_DetectorNumber[i]);
+
+
+      // Define the rotation matrix for rotating the lattice by 90 degrees around the z-axis
+      G4RotationMatrix* rotation90Z = new G4RotationMatrix();
+      //rotation90Z->rotateZ(90 * degree);
+
+      // Combine the rotations
+      G4RotationMatrix* combinedRotation = new G4RotationMatrix(*rotation90Z);
+      combinedRotation->transform(*rot);
+
+      // Apply the combined rotation
+      G4ThreeVector LatticePos = deadLayerPos + w * (DeadLayerThickness * 0.5 + YstickHeight*0.5);
+      new G4PVPlacement(G4Transform3D(*combinedRotation, LatticePos), BuildAlLattice(), "MUSETT_lattice", world, false, m_DetectorNumber[i]);
+
+    }
+
+
+    double rotationAngle = 0.00000000 * deg;
+    G4RotationMatrix* TargetAngle = new G4RotationMatrix();
+    TargetAngle->rotateZ(rotationAngle);
+
+    double offsetTargetX = -3.00000000 * mm;
+    double offsetTargetY = 6.00000000 * mm;
+    //offsetTargetY += targetHalfThickness;
+    G4ThreeVector positionTarget = G4ThreeVector(offsetTargetX, offsetTargetY, 0);
+
+
+    G4RotationMatrix* initialTarget = new G4RotationMatrix();
+    initialTarget->rotateX(90.0 * deg);
+
+    G4RotationMatrix* TargetTotalRotation = new G4RotationMatrix(*TargetAngle);
+    TargetTotalRotation->transform(*initialTarget);
+
+    new G4PVPlacement(TargetTotalRotation, positionTarget, BuildTarget(), "MUSETT_Target", world, false, 0);
+
+    double holder_shift = 0.50000000 * mm;
+    double offsetTargetHolderX = holder_shift * TMath::Sin(rotationAngle);
+    double offsetTargetHolderY = holder_shift * TMath::Cos(rotationAngle);
+    G4ThreeVector positionTargetHolder = G4ThreeVector(offsetTargetX-offsetTargetHolderX,offsetTargetY-offsetTargetHolderY, -lowerPartZPosition + 0.5 * holderHeight);
+
+    new G4PVPlacement(TargetAngle, positionTargetHolder, BuildTargetHolder(), "Musett_TargetHolder", world, false, 0);
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+// Add Detector branch to the EventTree.
+// Called After DetecorConstruction::AddDetector Method
+void MUSETT::InitializeRootOutput() {
+  RootOutput* pAnalysis = RootOutput::getInstance();
+  TTree* pTree = pAnalysis->GetTree();
+  if (!pTree->FindBranch("MUSETT")) {
+    pTree->Branch("MUSETT", "TMUSETTData", &m_Event);
+  }
+  pTree->SetBranchAddress("MUSETT", &m_Event);
+}
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+// Read sensitive part and fill the Root tree.
+void MUSETT::ProcessStrip(std::map<unsigned int, std::pair<double, double>>& map, int key, double energy, double time) {
+    auto& entry = map[key];
+    if (entry.second == 0) {  // Check if this is the first time this strip is hit
+        entry = std::make_pair(energy, time);
+        //std::cout << "Initial hit processed for key " << key << ": energy = " << energy << ", time = " << time << std::endl;
+    } else {
+        entry.first += energy;  // Accumulate energy
+        //std::cout << "Energy accumulated for key " << key << ": total energy = " << entry.first << std::endl;
+    }
+}
+
+void MUSETT::UpdateMap(bool X_Y,std::map<unsigned int, std::pair<double, double>>& map,
+                       std::map<unsigned int, bool>& mapInterstrip, int key, double energy,
+                       double time, double t0, bool interstrip) {
+    // X_Y = 0 for X, 1 for Y.
+    int det = key / static_cast<int>(1e6);
+    int strip = key % static_cast<int>(1e6);
+
+    // Check if the key already exists in the map
+    auto it = map.find(key);
+    if (it == map.end()) {
+        // If key does not exist, initialize it directly
+        map[key] = std::make_pair(energy, time);
+        mapInterstrip[key] = interstrip;
+        //std::cout << "New entry added for (det,strip) = (" << det << "," << strip << ") with energy " << energy << " and time " << time << std::endl;
+        return; // Exit the function after setting new data
+    }
+
+    // Key exists, process based on time difference
+    double last_energy = it->second.first;
+    double last_time = it->second.second;
+
+    //std::cout << "In UpdateMap, (det,strip) = (" << det << "," << strip << ")";
+    //std::cout << "∆T = " << time - last_time << std::endl;
+
+    if (time - last_time < T_sum) {
+        //std::cout << "Adding energy " << energy << std::endl;
+        it->second.first += energy;  // Accumulate energy if within time sum
+        if (interstrip) {
+            mapInterstrip[key] = true;
+        }
+        if(it->second.first > 8)
+        {
+          std::cout << "UPDATE MAP : energy of event: " << it->second.first ;
+          std::cout << ", (det,strip) = (" << det << "," << strip << ")";
+          std::cout << std::endl;
+
+        }
+        //std::cout << "After adding energy " << map[key].first << std::endl;
+    } else {
+        // Set event data if time difference is greater than T_sum
+
+        //std::cout << "Push event " << std::endl;
+        //std::cout << "energy of event: " << last_energy << std::endl;
+        if(X_Y==0)
+        {
+        m_Event->SetDSSDX_Tstamp(t0);
+        m_Event->SetDSSDX_Interstrip(mapInterstrip[key]);
+        m_Event->SetDSSDXE(false, det, strip, last_energy);
+        m_Event->SetDSSDXT(false, det, strip, last_time);
+        }
+        else
+        {
+          m_Event->SetDSSDY_Tstamp(t0);
+          m_Event->SetDSSDY_Interstrip(mapInterstrip[key]);
+          m_Event->SetDSSDYE(false, det, strip, last_energy);
+          m_Event->SetDSSDYT(false, det, strip, last_time);
+        }
+        // Update the map with the new energy and current time
+        map[key] = std::make_pair(energy, time);
+        mapInterstrip[key] = interstrip;
+    }
+}
+
+
+
+// Called at in the EventAction::EndOfEventAvtion
+void MUSETT::ReadSensitive(const G4Event*) {
+  m_Event->Clear();
+
+  G4double t0 =  RandFlat::shoot()*1;
+  //std::cout << "✅ New event" << std::endl;
+  ///////////
+  // Square
+  DSSDScorers::PS_Images* SiScorer = (DSSDScorers::PS_Images*)m_SquareScorer->GetPrimitive(0);
+
+  // Loop on the Square map
+
+
+  unsigned int sizeFront = SiScorer->GetFrontMult();
+  unsigned int sizeBack = SiScorer->GetBackMult();
+
+  std::map<unsigned int, std::pair<double, double>> mapFront;
+  std::map<unsigned int, std::pair<double, double>> mapBack;
+
+  std::map<unsigned int, std::pair<double, double>> mapTempo;
+
+  std::map<unsigned int, bool> mapInterstripFront;
+  std::map<unsigned int, bool> mapInterstripBack;
+  std::set<std::pair<int, int>> interstripCouples;  // Stores interstrip pairs
+
+
+  std::map<unsigned int, std::pair<double, double>>::iterator it;
+
+
+  int strip1,strip2;
+  double E_b, E_g;
+  int refTrack;
+  unsigned int j, a,r, g, b;
+
+  double energy,time;
+  int det, b_key, g_key;
+  int key, partner_key,partner_det, partner_strip;
+
+  double E_tot,rand, E1,E2;
+
+  for (unsigned int i = 0; i < sizeFront; i++) {
+      refTrack = SiScorer->GetTrackId(i);
+      //std::cout << std::endl  << "i = " << i << std::endl;
+      //std::cout << "Processing Track ID = " << refTrack << std::endl;
+
+      j = i;
+
+      while (j < sizeFront && SiScorer->GetTrackId(j) == refTrack) {
+          energy = SiScorer->GetEnergyFront(j);
+          det = SiScorer->GetDetectorFront(j);
+          time = SiScorer->GetTimeFront(j);
+          SiScorer->GetARGBFront(j, a, r, g, b);
+
+          b_key = b + det * 1e6;
+          g_key = g + det * 1e6;
+
+          if (r == 0) { // no interstrip
+              ProcessStrip(mapTempo,b_key, energy, time);
+          } else { // interstrip
+              if (g > 0 && g < 129 && b > 0 && b < 129) { // both in detector
+                  interstripCouples.insert(std::make_pair(b_key, g_key));
+                  ProcessStrip(mapTempo,b_key, energy, time);
+                  ProcessStrip(mapTempo,g_key, 0, time); // To set Time
+              }
+              else if ((g<= 0 || g >= 129)&&(b>0 && b < 129))
+              {
+                ProcessStrip(mapTempo,b_key, energy, time);
+              }
+              else if ((b<= 0 || b >= 129) && (g>0 && g < 129))
+              {
+                ProcessStrip(mapTempo,g_key, energy, time);
+              }
+          }
+          j++;
+      }
+
+      std::set<int> treatedKeys; // Tracks which keys have been processedx
+
+      // Processing entries in mapTempo
+      for (const auto& entry : mapTempo) {
+          key = entry.first;
+          if (treatedKeys.find(key) != treatedKeys.end()) {
+              continue; // Skip this key if it has already been processed
+          }
+
+          auto it = std::find_if(interstripCouples.begin(), interstripCouples.end(),
+              [key](const std::pair<int, int>& pair) {
+                  return pair.first == key || pair.second == key;
+              }); // function to find if pair in couples
+
+          if (it != interstripCouples.end()) { // It is an interstrip couple
+
+              partner_key = (it->first == key) ? it->second : it->first;
+              E_tot = entry.second.first + mapTempo[partner_key].first;
+              rand = G4UniformRand();
+              E1 = rand * E_tot;
+              E2 = E_tot - E1;
+              //std::cout << "IS || Track ID = " << refTrack << ", ";
+              //std::cout << "(det,strip) = (" << det << "," << strip << ")";
+              //std::cout << " || PARTNER = (" << partner_det << "," << partner_strip << ")" ;
+              //std::cout << "E = " << entry.second.first << ", E(part) =" <<  mapTempo[partner_key].first << std::endl;
+              //std::cout << "T = " << entry.second.second << ", T(part) =" <<  mapTempo[partner_key].second << std::endl;
+              if (E1 < E2) {
+                  E1 *= -1;
+              } else {
+                  E2 *= -1;
+              }
+
+              UpdateMap(0,mapFront, mapInterstripFront, key, E1,mapTempo[key].second, t0, true);
+              UpdateMap(0,mapFront, mapInterstripFront, partner_key, E2,mapTempo[partner_key].second, t0, true);
+
+              treatedKeys.insert(key);
+              treatedKeys.insert(partner_key);
+
+              //std::cout << "Processed interstrip pair: det " << det << ", strip " << strip
+              //          << " and det " << partner_det << ", strip " << partner_strip
+              //          << " with energies: " << E1 << ", " << E2 << std::endl;
+          } else {
+              //int det = key / static_cast<int>(1e6);
+              //int strip = key % static_cast<int>(1e6);
+              //std::cout << "Not IS (det,strip) = " << det << "," << strip ;
+              //std::cout << ", Energy = " << entry.second.first << std::endl;
+              UpdateMap(0,mapFront, mapInterstripFront,key,
+                entry.second.first, entry.second.second,t0, false);
+              //std::cout << "Transferred non-interstrip det " << det << ", strip " << strip << " with energy " << entry.second.first << std::endl;
+          }
+      }
+
+      mapTempo.clear(); // Clear temporary storage after processing
+      interstripCouples.clear();
+      //std::cout << "Cleared temporary storage for next track." << std::endl;
+      //std::cout << "After while j = " << j  << std::endl;
+      i = j-1;
+  }
+
+
+  double energyX, timeX;
+  unsigned int detX, stripX;
+  bool bool_interstrip;
+  for (it = mapFront.begin(); it != mapFront.end(); it++) {
+    energyX = RandGauss::shoot(it->second.first, SigmaEnergy);
+    timeX = RandGauss::shoot(it->second.second, SigmaTime);
+    bool_interstrip = mapInterstripFront[it->first];
+    stripX = it->first - 1000000 * (it->first / 1000000);
+    detX = it->first / 1000000;
+    m_Event->SetDSSDX_Tstamp(t0);
+    m_Event->SetDSSDX_Interstrip(bool_interstrip);
+    m_Event->SetDSSDXE(false,detX, stripX,energyX);
+    m_Event->SetDSSDXT(false,detX, stripX,timeX);
+  }
+
+  mapTempo.clear();
+
+  for (unsigned int i = 0; i < sizeBack; i++) {
+      refTrack = SiScorer->GetTrackId(i);
+      //std::cout << std::endl  << "i = " << i << std::endl;
+      //std::cout << "Processing Track ID = " << refTrack << std::endl;
+
+      j = i;
+
+      while (j < sizeBack && SiScorer->GetTrackId(j) == refTrack) {
+          energy = SiScorer->GetEnergyBack(j);
+          det = SiScorer->GetDetectorBack(j);
+          time = SiScorer->GetTimeBack(j);
+          SiScorer->GetARGBBack(j, a, r, g, b);
+
+          b_key = b + det * 1e6;
+          g_key = g + det * 1e6;
+
+          if (r == 0) { // no interstrip
+              ProcessStrip(mapTempo,b_key, energy, time);
+          } else { // interstrip
+              if (g > 0 && g < 129 && b > 0 && b < 129) { // both in detector
+                  interstripCouples.insert(std::make_pair(b_key, g_key));
+                  ProcessStrip(mapTempo,b_key, energy, time);
+                  ProcessStrip(mapTempo,g_key, 0, time); // To set Time
+              }
+              else if ((g<= 0 || g >= 129)&&(b>0 && b < 129))
+              {
+                ProcessStrip(mapTempo,b_key, energy, time);
+              }
+              else if ((b<= 0 || b >= 129) && (g>0 && g < 129))
+              {
+                ProcessStrip(mapTempo,g_key, energy, time);
+              }
+          }
+          j++;
+      }
+
+      std::set<int> treatedKeys; // Tracks which keys have been processedx
+
+      // Processing entries in mapTempo
+      for (const auto& entry : mapTempo) {
+          int key = entry.first;
+          if (treatedKeys.find(key) != treatedKeys.end()) {
+              continue; // Skip this key if it has already been processed
+          }
+
+          auto it = std::find_if(interstripCouples.begin(), interstripCouples.end(),
+              [key](const std::pair<int, int>& pair) {
+                  return pair.first == key || pair.second == key;
+              }); // function to find if pair in couples
+
+          if (it != interstripCouples.end()) { // It is an interstrip couple
+
+              partner_key = (it->first == key) ? it->second : it->first;
+              E_tot = entry.second.first + mapTempo[partner_key].first;
+              rand = G4UniformRand();
+              E1 = rand * E_tot;
+              E2 = E_tot - E1;
+
+              UpdateMap(1,mapBack, mapInterstripBack, key, E1,mapTempo[key].second, t0, true);
+              UpdateMap(1,mapBack, mapInterstripBack, partner_key, E2,mapTempo[partner_key].second, t0, true);
+
+              treatedKeys.insert(key);
+              treatedKeys.insert(partner_key);
+
+              //std::cout << "Processed interstrip pair: det " << det << ", strip " << strip
+              //          << " and det " << partner_det << ", strip " << partner_strip
+              //          << " with energies: " << E1 << ", " << E2 << std::endl;
+          } else {
+              UpdateMap(1,mapBack, mapInterstripBack,key,
+              entry.second.first, entry.second.second,t0, false);
+              //std::cout << "Transferred non-interstrip det " << det << ", strip " << strip << " with energy " << entry.second.first << std::endl;
+          }
+      }
+
+      mapTempo.clear(); // Clear temporary storage after processing
+      interstripCouples.clear();
+      //std::cout << "Cleared temporary storage for next track." << std::endl;
+      //std::cout << "After while j = " << j  << std::endl;
+      i = j-1;
+  }
+
+  double energyY, timeY;
+  unsigned int stripY,detY;
+  for (it = mapBack.begin(); it != mapBack.end(); it++) {
+    energyY = RandGauss::shoot(it->second.first, SigmaEnergy);
+    timeY = RandGauss::shoot(it->second.second, SigmaTime);
+    bool_interstrip = mapInterstripBack[it->first];
+    stripY = it->first - 1000000 * (it->first / 1000000);
+    detY = it->first / 1000000;
+    m_Event->SetDSSDY_Tstamp(t0);
+    m_Event->SetDSSDY_Interstrip(bool_interstrip);
+    m_Event->SetDSSDYE(false,detY, stripY,energyY);
+    m_Event->SetDSSDYT(false,detY, stripY,timeY);
+  }
+
+
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+////////////////////////////////////////////////////////////////
+void MUSETT::InitializeScorers() {
+  // This check is necessary in case the geometry is reloaded
+  bool already_exist = false;
+  m_SquareScorer = CheckScorer("MUSETT", already_exist);
+
+  if (already_exist)
+    return;
+
+  string nptool = getenv("NPTOOL");
+  G4VPrimitiveScorer* SiScorer = new DSSDScorers::PS_Images(
+        "SquareScorer", nptool + "/NPLib/Detectors/MUSETT/ressources/maskFront.png",
+        nptool + "/NPLib/Detectors/MUSETT/ressources/maskBack.png", 97.22 / 12800, 97.22 / 12800, 0, 0, 0xffff0000, 1,true);
+
+  G4VPrimitiveScorer* InterScorer = new InteractionScorers::PS_Interactions("SiScorer", ms_InterCoord, 0);
+
+  m_SquareScorer->RegisterPrimitive(SiScorer);
+  m_SquareScorer->RegisterPrimitive(InterScorer);
+  G4SDManager::GetSDMpointer()->AddNewDetector(m_SquareScorer);
+
+
+
+}
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+////////////////////////////////////////////////////////////////
+void MUSETT::InitializeMaterial(){
+  m_MaterialSilicon = MaterialManager::getInstance()->GetMaterialFromLibrary("G4_Si");
+  m_MaterialAluminium = MaterialManager::getInstance()->GetMaterialFromLibrary("G4_Al");
+  m_MaterialBoron = MaterialManager::getInstance()->GetMaterialFromLibrary("G4_B");
+  m_MaterialVacuum = MaterialManager::getInstance()->GetMaterialFromLibrary("Vacuum");
+  m_MaterialCarbon = MaterialManager::getInstance()->GetMaterialFromLibrary("G4_C");
+}
+
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+////////////////////////////////////////////////////////////////////////////////
+//            Construct Method to be pass to the DetectorFactory              //
+////////////////////////////////////////////////////////////////////////////////
+NPS::VDetector* MUSETT::Construct() { return (NPS::VDetector*)new MUSETT(); }
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+////////////////////////////////////////////////////////////////////////////////
+//            Registering the construct method to the factory                 //
+////////////////////////////////////////////////////////////////////////////////
+extern "C" {
+class proxy_nps_MUSETT {
+ public:
+  proxy_nps_MUSETT() {
+    NPS::DetectorFactory::getInstance()->AddToken("MUSETT", "MUSETT");
+    NPS::DetectorFactory::getInstance()->AddDetector("MUSETT", MUSETT::Construct);
+  }
+};
+
+proxy_nps_MUSETT p_nps_MUSETT;
+}
diff --git a/NPSimulation/Detectors/MUSETT/MUSETT.hh b/NPSimulation/Detectors/MUSETT/MUSETT.hh
new file mode 100644
index 0000000000000000000000000000000000000000..fe6796b0959fcbba47cc7764a447090aaf59ea0f
--- /dev/null
+++ b/NPSimulation/Detectors/MUSETT/MUSETT.hh
@@ -0,0 +1,199 @@
+#ifndef MUSETT_h
+#define MUSETT_h 1
+/*****************************************************************************
+ * Copyright (C) 2009-2023   this file is part of the NPTool Project         *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
+
+/*****************************************************************************
+ * Original Author: Louis Heitz  contact address: louis.heitz@ijclab.in2p3.fr*
+ *                                                                           *
+ * Creation Date  : January 2024                                             *
+ * Last update    :                                                          *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *  This class describe  MUSETT simulation for double alpha decay            *
+ *                                                                           *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *****************************************************************************/
+// C++ header
+#include <string>
+#include <vector>
+using namespace std;
+
+// G4 headers
+#include "G4ThreeVector.hh"
+#include "G4RotationMatrix.hh"
+#include "G4LogicalVolume.hh"
+#include "G4MultiFunctionalDetector.hh"
+
+// NPTool header
+#include "NPSVDetector.hh"
+#include "TMUSETTData.h"
+#include "NPInputParser.h"
+namespace MUSETT_NS {
+
+
+
+
+  // Resolution
+  const G4double SigmaTime =  0 * ns; //
+  const G4double SigmaEnergy = 15 * keV;     //
+
+  // Threshold
+  const G4double EnergyThreshold = 0 * MeV;
+  const double T_sum = 0.0000000001 * ns; // if ∆T < T_sum in same strip : sum events
+
+  // Geometry
+  // Detector + Dead Layer
+  const G4double SiliconThickness    = 300 * micrometer;
+  const G4double DeadLayerThickness  = 0.1 * micrometer;
+
+  const G4double SquareLength  = 97220 * micrometer;
+
+  //Target
+  const G4double targetRadius = 1.2 * cm / 2 ;
+  const G4double targetHalfThickness = 88 * nanometer /2;
+
+
+  // Target Holder
+  const G4double lowerPartZPosition = 17 * mm;
+  const G4double holderWidth = 1 * mm;
+  const G4double holderLength = 34 * mm;
+  const G4double holderHeight = 135.47 * mm;
+
+  //Aluminium lattice in front of dead layer
+  const G4double AluHeight = 0.625 * um;
+
+  const G4double XstickWidth = 660 * um;
+  const G4double XstickLength = 110/3 * um;
+  const G4double XstickHeight = AluHeight;
+
+  const G4double YstickWidth = 20 * um;
+  const G4double YstickLength = 97220 * um; // Adjusted Ystick length
+  const G4double YstickHeight = AluHeight;
+
+
+  const G4double BondPadSize = 300* um;
+  const G4double BondPadHeight = 0.625*um;
+
+
+  const G4double InterStrip = 60 * um;
+
+  const G4int numXsticks = 96;
+  const G4int numYsticks = 128;
+} // namespace MUSETT_NS
+
+
+class MUSETT : public NPS::VDetector{
+  ////////////////////////////////////////////////////
+  /////// Default Constructor and Destructor /////////
+  ////////////////////////////////////////////////////
+  public:
+    MUSETT() ;
+    virtual ~MUSETT() ;
+
+    ////////////////////////////////////////////////////
+    /////// Specific Function of this Class ///////////
+    ////////////////////////////////////////////////////
+  public:
+    // Cartesian
+    void AddDetector(int DetectorNumber,
+      G4ThreeVector PX1_Y1 ,
+      G4ThreeVector PX1_Y128=G4ThreeVector() ,
+      G4ThreeVector PX128_Y1=G4ThreeVector(),
+      G4ThreeVector PX128_Y128=G4ThreeVector());
+
+    G4LogicalVolume* BuildSquareDetector();
+    G4LogicalVolume* BuildDeadLayer();
+    G4LogicalVolume* BuildTarget();
+    G4LogicalVolume* BuildTargetHolder();
+    G4LogicalVolume* BuildAlLattice();
+
+
+
+  private:
+    G4LogicalVolume* m_SquareDetector;
+    G4LogicalVolume* m_SquareDeadLayer;
+
+    G4Tubs* solidTarget;
+
+    ////////////////////////////////////////////////////
+    //////  Inherite from NPS::VDetector class /////////
+    ////////////////////////////////////////////////////
+  public:
+    // Read stream at Configfile to pick-up parameters of detector (Position,...)
+    // Called in DetecorConstruction::ReadDetextorConfiguration Method
+    void ReadConfiguration(NPL::InputParser) ;
+
+    // Construct detector and inialise sensitive part.
+    // Called After DetecorConstruction::AddDetector Method
+    void ConstructDetector(G4LogicalVolume* world) ;
+
+    // Add Detector branch to the EventTree.
+    // Called After DetecorConstruction::AddDetector Method
+    void InitializeRootOutput() ;
+
+    // Read sensitive part and fill the Root tree.
+    // Called at in the EventAction::EndOfEventAvtion
+    void ProcessStrip(std::map<unsigned int, std::pair<double, double>>& map, int key,
+                      double energy, double time);
+    void UpdateMap(bool X_Y, std::map<unsigned int, std::pair<double, double>>& map,
+                         std::map<unsigned int, bool>& mapInterstrip, int key, double energy,
+                        double time, double t0,bool interstrip);
+    void ReadSensitive(const G4Event* event) ;
+
+  public:   // Scorer
+    //   Initialize all Scorer used by the MUST2Array
+    void InitializeScorers() ;
+
+    //   Associated Scorer
+    G4MultiFunctionalDetector* m_SquareScorer;
+    ////////////////////////////////////////////////////
+    ///////////Event class to store Data////////////////
+    ////////////////////////////////////////////////////
+  private:
+    TMUSETTData* m_Event ;
+
+    ////////////////////////////////////////////////////
+    ///////////////Private intern Data//////////////////
+    ////////////////////////////////////////////////////
+  private: // Geometry
+    // Detector Coordinate
+    // Used for "By Point Definition"
+    vector<G4ThreeVector>   m_X1_Y1     ; // Top Left Corner Position Vector
+    vector<G4ThreeVector>   m_X1_Y128   ; // Bottom Left Corner Position Vector
+    vector<G4ThreeVector>   m_X128_Y1   ; // Bottom Right Corner Position Vector
+    vector<G4ThreeVector>   m_X128_Y128 ; // Center Corner Position Vector
+
+    //   Shape type
+    vector<string> m_Shape ;
+    // DetectorNumber
+    vector<int>    m_DetectorNumber;
+    // Visualisation Attribute
+    G4VisAttributes* m_VisSquare;
+    G4VisAttributes* m_VisDeadLayer;
+    /////// Default Constructor and Destructor /////////
+    std::map<unsigned int, unsigned int> fMUMU_MapX;//!   // Pour éviter d'écirre dans l'abre ROOT
+    std::map<unsigned int, unsigned int> fMUMU_MapY;//!
+
+    ////////////////////////////////////////////////////
+    //////////////////// Material //////////////////////
+    ////////////////////////////////////////////////////
+  private :
+    void InitializeMaterial();
+
+    G4Material* m_MaterialSilicon;
+    G4Material* m_MaterialBoron;
+    G4Material* m_MaterialCarbon;
+    G4Material* m_MaterialAluminium;
+    G4Material* m_MaterialVacuum;
+  // Needed for dynamic loading of the library
+  public:
+    static NPS::VDetector* Construct();
+};
+#endif
diff --git a/NPSimulation/Detectors/PISTA/PISTA.cc b/NPSimulation/Detectors/PISTA/PISTA.cc
index 378df04b49d4fb2c402016320dc39b28ea220a4a..462352433a3b06907ccf06ca0755d23f3dcb879d 100644
--- a/NPSimulation/Detectors/PISTA/PISTA.cc
+++ b/NPSimulation/Detectors/PISTA/PISTA.cc
@@ -63,16 +63,27 @@ namespace PISTA_NS{
   const double DE_ResoEnergy = 0.040*MeV ;
   const double E_ResoEnergy  = 0.018*MeV ;
 
-  // Trapezoid dimension
-  const double TrapezoidBaseLarge = 72.3*mm;
-  const double TrapezoidBaseSmall = 41.0*mm;
-  const double TrapezoidHeight = 57.7*mm;
+  // Trapezoid dimension PISTA1
+  //const double TrapezoidBaseLarge = 72.3*mm;
+  //const double TrapezoidBaseSmall = 41.0*mm;
+  //const double TrapezoidHeight = 57.7*mm;
+  //const double TrapezoidLength = 1*cm;
+  //const double FirstStageThickness = 300*um;
+  //const double SecondStageThickness = 1.5*mm;
+  //const double DistanceBetweenSi = 4*mm;
+  //const double FirstStageNbrOfStrips = 91;
+  //const double SecondStageNbrOfStrips = 57;
+
+  // Trapezoid dimension PISTA2
+  const double TrapezoidBaseLarge = 53*mm;
+  const double TrapezoidBaseSmall = 34.0*mm;
+  const double TrapezoidHeight = 27*mm;
   const double TrapezoidLength = 1*cm;
-  const double FirstStageThickness = 300*um;
+  const double FirstStageThickness = 0.3*mm;
   const double SecondStageThickness = 1.5*mm;
-  const double DistanceBetweenSi = 4*mm;
-  const double FirstStageNbrOfStrips = 91;
-  const double SecondStageNbrOfStrips = 57;
+  const double DistanceBetweenSi = 3*mm;
+  const double FirstStageNbrOfStrips = 49;
+  const double SecondStageNbrOfStrips = 45;
 }
 using namespace PISTA_NS;
 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -325,7 +336,7 @@ void PISTA::ReadSensitive(const G4Event* ){
     if(EnergyFront>EnergyThreshold){
       double Time = RandGauss::shoot(FirstStageScorer->GetTimeWidth(i), ResoTime);
       int DetNbr  = FirstStageScorer->GetDetectorWidth(i);
-      int StripFront = 92-FirstStageScorer->GetStripWidth(i);
+      int StripFront = FirstStageScorer->GetStripWidth(i);
       m_Event->SetPISTA_DE_DetectorNbr(DetNbr);
       m_Event->SetPISTA_DE_StripNbr(StripFront);
       m_Event->SetPISTA_DE_StripEnergy(EnergyFront);
diff --git a/NPSimulation/EventGenerator/EventGeneratorIsotropic.cc b/NPSimulation/EventGenerator/EventGeneratorIsotropic.cc
index 40a540f87efd06bd1a48d62a71c4cdff062566c4..24342b9650b7769df9ea75e202281b8908d8cf9b 100644
--- a/NPSimulation/EventGenerator/EventGeneratorIsotropic.cc
+++ b/NPSimulation/EventGenerator/EventGeneratorIsotropic.cc
@@ -65,7 +65,9 @@ EventGeneratorIsotropic::SourceParameters::SourceParameters(){
   m_z0           =  0  ;
   m_SigmaX       =  0  ;
   m_SigmaY       =  0  ;
+  m_SigmaZ       =  0  ;
   m_particle     = NULL;
+  m_direction    = 'z' ;
 }
 
 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -73,7 +75,7 @@ void EventGeneratorIsotropic::ReadConfiguration(NPL::InputParser parser){
   vector<NPL::InputBlock*> blocks = parser.GetAllBlocksWithToken("Isotropic");
   m_Parameters.reserve(blocks.size());
   if(NPOptionManager::getInstance()->GetVerboseLevel())
-    cout << endl << "\033[1;35m//// Isotropic reaction found " << endl; 
+    cout << endl << "\033[1;35m//// Isotropic reaction found " << endl;
 
   vector<string> token = {"EnergyLow","EnergyHigh","HalfOpenAngleMin","HalfOpenAngleMax","x0","y0","z0","Particle"};
   for(unsigned int i = 0 ; i < blocks.size() ; i++){
@@ -89,6 +91,8 @@ void EventGeneratorIsotropic::ReadConfiguration(NPL::InputParser parser){
         vector<string> file = blocks[i]->GetVectorString("EnergyDistributionHist");
         m_EnergyDistributionHist = NPL::Read1DProfile(file[0],file[1]);
       }
+      if(blocks[i]->HasToken("Direction"))
+        it->m_direction=blocks[i]->GetString("Direction");
       it->m_HalfOpenAngleMin  =blocks[i]->GetDouble("HalfOpenAngleMin","deg");
       it->m_HalfOpenAngleMax  =blocks[i]->GetDouble("HalfOpenAngleMax","deg");
       it->m_x0                =blocks[i]->GetDouble("x0","mm");
@@ -96,7 +100,7 @@ void EventGeneratorIsotropic::ReadConfiguration(NPL::InputParser parser){
       it->m_z0                =blocks[i]->GetDouble("z0","mm");
       vector<string> particleName =blocks[i]->GetVectorString("Particle");
       for(unsigned int j = 0 ; j < particleName.size() ; j++){
-        if(particleName[j]=="proton"){ it->m_particleName.push_back("1H")  ;} 
+        if(particleName[j]=="proton"){ it->m_particleName.push_back("1H")  ;}
         else if(particleName[j]=="deuton"){ it->m_particleName.push_back("2H")  ; }
         else if(particleName[j]=="triton"){ it->m_particleName.push_back("3H")  ; }
         else if(particleName[j]=="3He" || particleName[j]=="He3") { it->m_particleName.push_back("3He") ; }
@@ -116,11 +120,13 @@ void EventGeneratorIsotropic::ReadConfiguration(NPL::InputParser parser){
         it->m_SigmaX=blocks[i]->GetDouble("SigmaX","mm");
       if(blocks[i]->HasToken("SigmaY"))
         it->m_SigmaY=blocks[i]->GetDouble("SigmaY","mm");
+      if(blocks[i]->HasToken("SigmaZ"))
+        it->m_SigmaZ=blocks[i]->GetDouble("SigmaZ","mm");
       if(blocks[i]->HasToken("Multiplicity"))
         it->m_Multiplicty=blocks[i]->GetVectorInt("Multiplicity");
     }
     else{
-      cout << "ERROR: check your input file formatting \033[0m" << endl; 
+      cout << "ERROR: check your input file formatting \033[0m" << endl;
       exit(1);
     }
   }
@@ -138,7 +144,7 @@ void EventGeneratorIsotropic::ReadConfiguration(NPL::InputParser parser){
         fEnergyDist = new TF1("fDist", par.m_EnergyDistribution, par.m_EnergyLow, par.m_EnergyHigh);
       }
 
-    }	
+    }
   }
 }
 
@@ -181,19 +187,37 @@ void EventGeneratorIsotropic::GenerateEvent(G4Event*){
           particle_energy = fEnergyDist->GetRandom();
         }
 
+        G4double x0, y0, z0;
+        G4double momentum_x, momentum_y, momentum_z;
 
+        x0 = RandGauss::shoot(par.m_x0,par.m_SigmaX);
+        y0 = RandGauss::shoot(par.m_y0,par.m_SigmaY);
+        z0 = RandGauss::shoot(par.m_z0,par.m_SigmaZ);
+        if(par.m_direction == 'z')
+        {
+          // Direction of particle, energy and laboratory angle
+          momentum_x = sin(theta) * cos(phi)  ;
+          momentum_y = sin(theta) * sin(phi)  ;
+          momentum_z = cos(theta)             ;
 
-        // Direction of particle, energy and laboratory angle
-        G4double momentum_x = sin(theta) * cos(phi)  ;
-        G4double momentum_y = sin(theta) * sin(phi)  ;
-        G4double momentum_z = cos(theta)             ;
-
-        G4double x0 = RandGauss::shoot(par.m_x0,par.m_SigmaX);
-        G4double y0 = RandGauss::shoot(par.m_y0,par.m_SigmaY);
-
-        Particle particle(par.m_particle, theta,particle_energy,G4ThreeVector(momentum_x, momentum_y, momentum_z),G4ThreeVector(x0, y0, par.m_z0));
+        }
+        else if(par.m_direction == 'y')
+        {
+          // Direction of particle, energy and laboratory angle
+          momentum_z = sin(theta) * cos(phi)  ;
+          momentum_x = sin(theta) * sin(phi)  ;
+          momentum_y = cos(theta)             ;
+        }
+        else // = 'x'
+        {
+          // Direction of particle, energy and laboratory angle
+          momentum_y = sin(theta) * cos(phi)  ;
+          momentum_z = sin(theta) * sin(phi)  ;
+          momentum_x = cos(theta)             ;
+        }
 
 
+        Particle particle(par.m_particle, theta,particle_energy,G4ThreeVector(momentum_x, momentum_y, momentum_z),G4ThreeVector(x0, y0, z0));
         m_ParticleStack->AddParticleToStack(particle);
       }
     }
diff --git a/NPSimulation/EventGenerator/EventGeneratorIsotropic.hh b/NPSimulation/EventGenerator/EventGeneratorIsotropic.hh
index 8c63b026d25d0cb9db77f00f510916c04917892b..31cb553543c02f1e5638e98b7a2cf97d9378d52e 100644
--- a/NPSimulation/EventGenerator/EventGeneratorIsotropic.hh
+++ b/NPSimulation/EventGenerator/EventGeneratorIsotropic.hh
@@ -45,19 +45,19 @@ class EventGeneratorIsotropic : public NPS::VEventGenerator{
 public:     // Constructor and destructor
     EventGeneratorIsotropic() ;
     virtual ~EventGeneratorIsotropic();
-    
+
 public:     // Inherit from VEventGenerator Class
     void ReadConfiguration(NPL::InputParser)               ;
     void GenerateEvent(G4Event*) ;
     void InitializeRootOutput()                  ;
-	
+
 private:    // Source parameter from input file
     G4int event_ID;
 	struct SourceParameters {
 		SourceParameters()                          ;
     G4double                 m_EnergyLow        ;  // Lower limit of energy range
     G4double                 m_EnergyHigh       ;  // Upper limit of energy range
-    TString		     m_EnergyDistribution;
+    TString		               m_EnergyDistribution;
     G4double                 m_HalfOpenAngleMin ;  // Min Half open angle of the source
     G4double                 m_HalfOpenAngleMax ;  // Max Half open angle of the source
     G4double                 m_x0               ;  // Vertex Position X
@@ -65,6 +65,8 @@ private:    // Source parameter from input file
     G4double                 m_z0               ;  // Vertex Position Z
     G4double                 m_SigmaX           ;
     G4double                 m_SigmaY           ;
+    G4double                 m_SigmaZ           ;
+    TString                  m_direction        ;
     G4ParticleDefinition*    m_particle         ;  // Kind of particle to shoot isotropically
     vector<G4double>         m_ExcitationEnergy ;  // Excitation energy of the emitted particle
     vector<string>           m_particleName     ;
diff --git a/NPSimulation/Scorers/DSSDScorers.cc b/NPSimulation/Scorers/DSSDScorers.cc
index f89ec91d0d296c6ff648602c82a9caeca20dcc32..033852be23f2c2b48c0cf153b80c18f0a0c3e1ee 100644
--- a/NPSimulation/Scorers/DSSDScorers.cc
+++ b/NPSimulation/Scorers/DSSDScorers.cc
@@ -22,6 +22,7 @@
 #include "DSSDScorers.hh"
 #include "G4UnitsTable.hh"
 using namespace DSSDScorers;
+
 vector<DSSDData>::iterator DSSDDataVector::find(const unsigned int& index) {
   for (vector<DSSDData>::iterator it = m_Data.begin(); it != m_Data.end(); it++) {
     if ((*it).GetIndex() == index)
@@ -30,9 +31,10 @@ vector<DSSDData>::iterator DSSDDataVector::find(const unsigned int& index) {
   return m_Data.end();
 }
 
+
 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 PS_Images::PS_Images(G4String name, string imageFront, string imageBack, double scalingFront, double scalingBack,
-                     double centerOffsetX, double centerOffsetY, unsigned int ignoreValue, G4int depth)
+                     double centerOffsetX, double centerOffsetY, unsigned int ignoreValue, G4int depth,bool saveAll)
     : G4VPrimitiveScorer(name, depth) {
   m_ImageFront = new NPL::Image(imageFront, scalingFront, scalingFront);
   m_ImageBack = new NPL::Image(imageBack, scalingBack, scalingBack);
@@ -42,6 +44,7 @@ PS_Images::PS_Images(G4String name, string imageFront, string imageBack, double
   m_CenterOffsetY = centerOffsetY;
   m_IgnoreValue = ignoreValue;
   m_Level = depth;
+  m_SaveAll = saveAll;
 }
 
 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -49,44 +52,68 @@ G4bool PS_Images::ProcessHits(G4Step* aStep, G4TouchableHistory*) {
 
   // contain Energy Time, DetNbr, PixelFront and PixelBack
   t_Energy = aStep->GetTotalEnergyDeposit();
+  G4Track* track = aStep->GetTrack();
+
+  // Get the track ID
+  t_trackID = track->GetTrackID();
+
+
+  if(t_Energy == 0)
+  {
+    return FALSE;
+  }
+  //std::cout << "In scrorer, energy = " << t_Energy << std::endl;
   t_Time = aStep->GetPreStepPoint()->GetGlobalTime();
 
   t_DetectorNbr = aStep->GetPreStepPoint()->GetTouchableHandle()->GetCopyNumber(m_Level);
+
   t_Position = aStep->GetPreStepPoint()->GetPosition();
 
   // transforming the position to the local volume
   t_Position =
       aStep->GetPreStepPoint()->GetTouchableHandle()->GetHistory()->GetTopTransform().TransformPoint(t_Position);
-  t_PixelFront = m_ImageFront->GetPixelAtCoordinate(t_Position.x(), t_Position.y());
-  t_PixelBack = m_ImageBack->GetPixelAtCoordinate(t_Position.x(), t_Position.y());
+  t_PixelFront = m_ImageFront->GetPixelAtCoordinate(t_Position.x()-m_CenterOffsetX, t_Position.y()-m_CenterOffsetY);
+  t_PixelBack = m_ImageBack->GetPixelAtCoordinate(t_Position.x()-m_CenterOffsetX, t_Position.y()-m_CenterOffsetY);
 
   // If front and back are in inactive part of the wafer,
   // nothing is added to the unordered_map
   if (t_PixelFront == m_IgnoreValue && t_PixelBack == m_IgnoreValue)
     return FALSE;
 
-  // Check if the particle has interact before, if yes, add up the energies.
+
   vector<DSSDData>::iterator it;
 
   it = m_HitFront.find(DSSDData::CalculateIndex(t_PixelFront, t_DetectorNbr));
-  if (it != m_HitFront.end()) {
-    it->Add(t_Energy);
+  if(m_SaveAll) // In that case, save every energy deposit
+  {
+  m_HitFront.Set(t_Energy, t_Time, t_PixelFront, t_DetectorNbr);
+  m_TrackId.push_back(t_trackID);
   }
-
-  else {
-    m_HitFront.Set(t_Energy, t_Time, t_PixelFront, t_DetectorNbr);
+  else //Add up energies if necessary
+  {
+    if (it != m_HitFront.end()) {// Check if the particle has interact before, if yes, add up the energies.
+      it->Add(t_Energy);
+    }
+    else {
+      m_HitFront.Set(t_Energy, t_Time, t_PixelFront, t_DetectorNbr);
+    }
   }
 
-  // Check if the particle has interact before, if yes, add up the energies.
+
   it = m_HitBack.find(DSSDData::CalculateIndex(t_PixelBack, t_DetectorNbr));
-  if (it != m_HitBack.end()) {
-    it->Add(t_Energy);
+  if(m_SaveAll) // Save every step
+  {
+  m_HitBack.Set(t_Energy, t_Time, t_PixelBack, t_DetectorNbr);
   }
-
-  else {
-    m_HitBack.Set(t_Energy, t_Time, t_PixelBack, t_DetectorNbr);
+  else // Add up energies if conditions are met
+  {
+    if (it != m_HitBack.end()) {// Check if the particle has interact before, if yes, add up the energies.
+      it->Add(t_Energy);
+    }
+    else {
+      m_HitBack.Set(t_Energy, t_Time, t_PixelBack, t_DetectorNbr);
+    }
   }
-
   return TRUE;
 }
 
@@ -100,6 +127,7 @@ void PS_Images::EndOfEvent(G4HCofThisEvent*) {}
 void PS_Images::clear() {
   m_HitFront.clear();
   m_HitBack.clear();
+  m_TrackId.clear();
 }
 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 void PS_Images::GetARGBFront(unsigned int& i, unsigned int& a, unsigned int& r, unsigned int& g, unsigned int& b) {
@@ -122,11 +150,12 @@ void PS_Images::GetARGBBack(unsigned int& i, unsigned int& a, unsigned int& r, u
 PS_Rectangle::PS_Rectangle(G4String name, G4int Level, G4double StripPlaneLength, G4double StripPlaneWidth,
                            G4int NumberOfStripLength, G4int NumberOfStripWidth, G4int depth, G4String axis)
     : G4VPrimitiveScorer(name, depth) {
+
   m_StripPlaneLength = StripPlaneLength;
   m_StripPlaneWidth = StripPlaneWidth;
   m_NumberOfStripLength = NumberOfStripLength;
   m_NumberOfStripWidth = NumberOfStripWidth;
-  m_StripPitchLength = m_StripPlaneLength / m_NumberOfStripLength;
+  m_StripPitchLength = m_StripPlaneLength / m_NumberOfStripLength ;
   m_StripPitchWidth = m_StripPlaneWidth / m_NumberOfStripWidth;
   m_Level = Level;
   if (axis == "xy")
@@ -142,7 +171,6 @@ PS_Rectangle::~PS_Rectangle() {}
 
 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 G4bool PS_Rectangle::ProcessHits(G4Step* aStep, G4TouchableHistory*) {
-
   // contain Energy Time, DetNbr, StripFront and StripBack
   t_Energy = aStep->GetTotalEnergyDeposit();
   t_Time = aStep->GetPreStepPoint()->GetGlobalTime();
@@ -152,11 +180,11 @@ G4bool PS_Rectangle::ProcessHits(G4Step* aStep, G4TouchableHistory*) {
 
   t_Position =
       aStep->GetPreStepPoint()->GetTouchableHandle()->GetHistory()->GetTopTransform().TransformPoint(t_Position);
-
   if (m_Axis == ps_xy) {
+
     t_StripLengthNumber = (int)((t_Position.x() + m_StripPlaneLength / 2.) / m_StripPitchLength) + 1;
     t_StripWidthNumber = (int)((t_Position.y() + m_StripPlaneWidth / 2.) / m_StripPitchWidth) + 1;
-  }
+    }
   else if (m_Axis == ps_yz) {
     t_StripLengthNumber = (int)((t_Position.y() + m_StripPlaneLength / 2.) / m_StripPitchLength) + 1;
     t_StripWidthNumber = (int)((t_Position.z() + m_StripPlaneWidth / 2.) / m_StripPitchWidth) + 1;
@@ -165,30 +193,36 @@ G4bool PS_Rectangle::ProcessHits(G4Step* aStep, G4TouchableHistory*) {
     t_StripLengthNumber = (int)((t_Position.x() + m_StripPlaneLength / 2.) / m_StripPitchLength) + 1;
     t_StripWidthNumber = (int)((t_Position.z() + m_StripPlaneWidth / 2.) / m_StripPitchWidth) + 1;
   }
-
   // Rare case where particle is close to edge of silicon plan
   if (t_StripLengthNumber > m_NumberOfStripLength)
     t_StripLengthNumber = m_NumberOfStripLength;
   if (t_StripWidthNumber > m_NumberOfStripWidth)
     t_StripWidthNumber = m_NumberOfStripWidth;
 
+
   // Check if the particle has interact before, if yes, add up the energies.
   vector<DSSDData>::iterator it;
   // Length
   it = m_HitLength.find(DSSDData::CalculateIndex(t_StripLengthNumber, t_DetectorNumber));
+
   if (it != m_HitLength.end()) {
     it->Add(t_Energy);
   }
   else
-    m_HitLength.Set(t_Energy, t_Time, t_StripLengthNumber, t_DetectorNumber);
-  // Width
+  {
+    m_HitLength.Set(t_Energy, t_Time, t_StripWidthNumber, t_DetectorNumber);
+  }
+
   it = m_HitWidth.find(DSSDData::CalculateIndex(t_StripWidthNumber, t_DetectorNumber));
+
   if (it != m_HitWidth.end()) {
     it->Add(t_Energy);
   }
   else
+    {
     m_HitWidth.Set(t_Energy, t_Time, t_StripWidthNumber, t_DetectorNumber);
-
+  }
+  //}
   return TRUE;
 }
 
@@ -356,7 +390,7 @@ G4bool PS_Resistive::ProcessHits(G4Step* aStep, G4TouchableHistory*) {
   else if (m_dir == "z")
     P = (t_Position.z()) / (0.5 * m_StripPlaneLength);
   else {
-    std::cout << "Error : Resistive strip DSSD scorer direction incorrect, should be x,y, or z " << std::endl;
+    G4cout << "Error : Resistive strip DSSD scorer direction incorrect, should be x,y, or z " << G4endl;
     exit(1);
   }
 
diff --git a/NPSimulation/Scorers/DSSDScorers.hh b/NPSimulation/Scorers/DSSDScorers.hh
index c1c4f3a1f823852d0c76fcf5aa60dae49163d15d..4c5d1586d0f2602309bd88bfe297427b47279d2d 100644
--- a/NPSimulation/Scorers/DSSDScorers.hh
+++ b/NPSimulation/Scorers/DSSDScorers.hh
@@ -87,6 +87,7 @@ namespace DSSDScorers {
     vector<DSSDData> m_Data;
 
    public:
+
     vector<DSSDData>::iterator find(const unsigned int& index);
     inline void clear() { m_Data.clear(); };
     inline vector<DSSDData>::iterator end() { return m_Data.end(); };
@@ -104,7 +105,7 @@ namespace DSSDScorers {
 
    public: // with description
     PS_Images(G4String name, string imageFront, string imageBack, double scalingFront, double scalingBack,
-              double centerOffsetX, double centerOffsetY, unsigned int ignoreValue, G4int depth = 0);
+              double centerOffsetX, double centerOffsetY, unsigned int ignoreValue, G4int depth = 0, bool saveAll = false);
     ~PS_Images(){};
 
    protected: // with description
@@ -125,6 +126,7 @@ namespace DSSDScorers {
     double m_CenterOffsetX;
     double m_CenterOffsetY;
     unsigned int m_IgnoreValue;
+    bool m_SaveAll;
 
     // Level at which to find the copy number linked to the detector number
     G4int m_Level;
@@ -132,11 +134,13 @@ namespace DSSDScorers {
    private: // inherited from G4VPrimitiveScorer
     DSSDDataVector m_HitFront;
     DSSDDataVector m_HitBack;
+    std::vector<int> m_TrackId;
 
    private: // Needed for intermediate calculation (avoid multiple instantiation in Processing Hit)
     G4ThreeVector t_Position;
     double t_Energy;
     double t_Time;
+    int t_trackID;
     unsigned int t_DetectorNbr;
     unsigned int t_PixelFront;
     unsigned int t_PixelBack;
@@ -152,6 +156,7 @@ namespace DSSDScorers {
     inline unsigned int GetDetectorBack(const unsigned int& i) { return m_HitBack[i]->GetDetector(); };
     inline double GetEnergyBack(const unsigned int& i) { return m_HitBack[i]->GetEnergy(); };
     inline double GetTimeBack(const unsigned int& i) { return m_HitBack[i]->GetTime(); };
+    inline int GetTrackId(const unsigned int& i){return m_TrackId[i]; };
 
     void GetARGBFront(unsigned int& i, unsigned int& a, unsigned int& r, unsigned int& g, unsigned int& b);
     void GetARGBBack(unsigned int& i, unsigned int& a, unsigned int& r, unsigned int& g, unsigned int& b);
diff --git a/Projects/EdinburghDSSD/Analysis.cxx b/Projects/EdinburghDSSD/Analysis.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..1d5f48260db17db410cede5dcf3a6c5f0d57f243
--- /dev/null
+++ b/Projects/EdinburghDSSD/Analysis.cxx
@@ -0,0 +1,67 @@
+/*****************************************************************************
+ * Copyright (C) 2009-2016    this file is part of the NPTool Project        *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
+
+/*****************************************************************************
+ * Original Author: XAUTHORX  contact address: XMAILX                        *
+ *                                                                           *
+ * Creation Date  : XMONTHX XYEARX                                           *
+ * Last update    :                                                          *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *  This class describe  EdinburghDSSD analysis project                       *
+ *                                                                           *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *****************************************************************************/
+
+#include<iostream>
+using namespace std;
+#include"Analysis.h"
+#include"NPAnalysisFactory.h"
+#include"NPDetectorManager.h"
+////////////////////////////////////////////////////////////////////////////////
+Analysis::Analysis(){
+}
+////////////////////////////////////////////////////////////////////////////////
+Analysis::~Analysis(){
+}
+
+////////////////////////////////////////////////////////////////////////////////
+void Analysis::Init(){
+   EdinburghDSSD= (TEdinburghDSSDPhysics*) m_DetectorManager->GetDetector("EdinburghDSSD");
+}
+
+////////////////////////////////////////////////////////////////////////////////
+void Analysis::TreatEvent(){
+}
+
+////////////////////////////////////////////////////////////////////////////////
+void Analysis::End(){
+}
+
+
+////////////////////////////////////////////////////////////////////////////////
+//            Construct Method to be pass to the DetectorFactory              //
+////////////////////////////////////////////////////////////////////////////////
+NPL::VAnalysis* Analysis::Construct(){
+  return (NPL::VAnalysis*) new Analysis();
+}
+
+////////////////////////////////////////////////////////////////////////////////
+//            Registering the construct method to the factory                 //
+////////////////////////////////////////////////////////////////////////////////
+extern "C"{
+class proxy{
+  public:
+    proxy(){
+      NPL::AnalysisFactory::getInstance()->SetConstructor(Analysis::Construct);
+    }
+};
+
+proxy p;
+}
diff --git a/Projects/EdinburghDSSD/Analysis.h b/Projects/EdinburghDSSD/Analysis.h
new file mode 100644
index 0000000000000000000000000000000000000000..924df5fbcfb3fdb2e385084fc5c731181c453f14
--- /dev/null
+++ b/Projects/EdinburghDSSD/Analysis.h
@@ -0,0 +1,42 @@
+#ifndef Analysis_h 
+#define Analysis_h
+/*****************************************************************************
+ * Copyright (C) 2009-2016    this file is part of the NPTool Project        *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
+
+/*****************************************************************************
+ * Original Author: XAUTHORX  contact address: XMAILX                        *
+ *                                                                           *
+ * Creation Date  : XMONTHX XYEARX                                           *
+ * Last update    :                                                          *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *  This class describe  EdinburghDSSD analysis project                       *
+ *                                                                           *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *****************************************************************************/
+
+#include"NPVAnalysis.h"
+#include"TEdinburghDSSDPhysics.h"
+class Analysis: public NPL::VAnalysis{
+  public:
+    Analysis();
+    ~Analysis();
+
+  public: 
+    void Init();
+    void TreatEvent();
+    void End();
+
+   static NPL::VAnalysis* Construct();
+
+  private:
+   TEdinburghDSSDPhysics* EdinburghDSSD;
+
+};
+#endif
diff --git a/Projects/EdinburghDSSD/AnalysisConfig/ConfigEDIN.dat b/Projects/EdinburghDSSD/AnalysisConfig/ConfigEDIN.dat
new file mode 100644
index 0000000000000000000000000000000000000000..349c07f0a732223bae38a212c4a7134c117aa972
--- /dev/null
+++ b/Projects/EdinburghDSSD/AnalysisConfig/ConfigEDIN.dat
@@ -0,0 +1,7 @@
+ConfigEDIN
+ TAKE_E_X= 1
+ TAKE_T_X= 0
+ MAX_STRIP_MULTIPLICITY= 100
+ STRIP_ENERGY_MATCHING= 0.05 MeV
+ DSSD_X_E_RAW_THRESHOLD= -5
+ DSSD_Y_E_RAW_THRESHOLD= 1000
diff --git a/Projects/EdinburghDSSD/Beam/Ra224.beam b/Projects/EdinburghDSSD/Beam/Ra224.beam
new file mode 100644
index 0000000000000000000000000000000000000000..88e8b741ca938539606cf866605079ae8bb59085
--- /dev/null
+++ b/Projects/EdinburghDSSD/Beam/Ra224.beam
@@ -0,0 +1,19 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%      Energy are given in MeV , Position in mm      %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Isotropic
+ EnergyLow=  0.01
+ EnergyHigh= 0.01
+ HalfOpenAngleMin= 180
+ HalfOpenAngleMax= 180
+ x0= -1.9
+ y0= 100
+ z0= -0.71747
+ sigmaX = 0
+ sigmaY = 0
+ particle= 224Ra
+ direction = y
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Supported particle type: proton, neutron, deuton, triton, He3 , alpha
diff --git a/Projects/EdinburghDSSD/Beam/Ra224.source b/Projects/EdinburghDSSD/Beam/Ra224.source
new file mode 100644
index 0000000000000000000000000000000000000000..394fb119fd791fcabe2f3455275a43d32075ef69
--- /dev/null
+++ b/Projects/EdinburghDSSD/Beam/Ra224.source
@@ -0,0 +1,18 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%      Energy are given in MeV , Position in mm      %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Isotropic
+ EnergyLow=  0.0
+ EnergyHigh= 0.0
+ HalfOpenAngleMin= 0
+ HalfOpenAngleMax= 0
+ x0= 0
+ y0= 0
+ z0= 0
+ sigmaX = 0
+ sigmaY = 0
+ particle= 224Ra
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Supported particle type: proton, neutron, deuton, triton, He3 , alpha
diff --git a/Projects/EdinburghDSSD/Beam/alpha7_5.source b/Projects/EdinburghDSSD/Beam/alpha7_5.source
new file mode 100644
index 0000000000000000000000000000000000000000..e0d2041ed9bf38de54357353ce2cd731625890e5
--- /dev/null
+++ b/Projects/EdinburghDSSD/Beam/alpha7_5.source
@@ -0,0 +1,18 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%      Energy are given in MeV , Position in mm      %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Isotropic
+ EnergyLow=  7.5
+ EnergyHigh= 7.5
+ HalfOpenAngleMin= 0
+ HalfOpenAngleMax= 180
+ x0= 0
+ y0= 0
+ z0= 0
+ sigmaX = 0
+ sigmaY = 0
+ particle= alpha
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Supported particle type: proton, neutron, deuton, triton, He3 , alpha
diff --git a/Projects/EdinburghDSSD/Beam/alpha_224Ra.source b/Projects/EdinburghDSSD/Beam/alpha_224Ra.source
new file mode 100644
index 0000000000000000000000000000000000000000..a16cb11e0592cf9e61850d50775a53419b85c8f8
--- /dev/null
+++ b/Projects/EdinburghDSSD/Beam/alpha_224Ra.source
@@ -0,0 +1,18 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%      Energy are given in MeV , Position in mm      %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Isotropic
+ EnergyLow=  6.558
+ EnergyHigh= 6.558
+ HalfOpenAngleMin= 0
+ HalfOpenAngleMax= 180
+ x0= -1.9
+ y0= 35.69083
+ z0= -0.71747
+ sigmaX = 0
+ sigmaY = 0
+ particle= alpha
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Supported particle type: proton, neutron, deuton, triton, He3 , alpha
diff --git a/Projects/EdinburghDSSD/Beam/compute_source_position.py b/Projects/EdinburghDSSD/Beam/compute_source_position.py
new file mode 100644
index 0000000000000000000000000000000000000000..25f386da594129de128ade838e3d3e5d1c08c88f
--- /dev/null
+++ b/Projects/EdinburghDSSD/Beam/compute_source_position.py
@@ -0,0 +1,42 @@
+import numpy as np
+
+x_prime = 1.68414
+y_prime = 0.3327
+file = "alpha_224Ra.source"
+
+def compute_pos_source(x_prime,y_prime):
+    x_FC = -1.9
+    y_FC = 35.5
+    z_FC = -0.99
+    angle_FC = 35 * np.pi / 180
+
+    x_source = x_FC
+    y_source = y_FC + y_prime*np.sin(angle_FC)
+    z_source = z_FC + y_prime*np.cos(angle_FC)
+    return x_source,y_source,z_source
+
+
+def update_position(filename, new_x0, new_y0, new_z0):
+    # Read the file content
+    new_x0 = round(new_x0, 5)
+    new_y0 = round(new_y0, 5)
+    new_z0 = round(new_z0, 5)
+    with open(filename, 'r') as file:
+        lines = file.readlines()
+
+    # Update the lines with new x0, y0, z0 values
+    for i in range(len(lines)):
+        if lines[i].startswith(" x0="):
+            lines[i] = f" x0= {new_x0}\n"
+        elif lines[i].startswith(" y0="):
+            lines[i] = f" y0= {new_y0}\n"
+        elif lines[i].startswith(" z0="):
+            lines[i] = f" z0= {new_z0}\n"
+
+    # Write the updated content back to the file
+    with open(filename, 'w') as file:
+        file.writelines(lines)
+
+
+x,y,z = compute_pos_source(x_prime,y_prime)
+update_position(file,x,y,z)
diff --git a/Projects/EdinburghDSSD/CMakeLists.txt b/Projects/EdinburghDSSD/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..22c74affdfc45019bdda2594f8439c52d4ab97ec
--- /dev/null
+++ b/Projects/EdinburghDSSD/CMakeLists.txt
@@ -0,0 +1,5 @@
+cmake_minimum_required (VERSION 2.8) 
+# Setting the policy to match Cmake version
+cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
+# include the default NPAnalysis cmake file
+include("../../NPLib/ressources/CMake/NPAnalysis.cmake")
diff --git a/Projects/EdinburghDSSD/Calibration/.DS_Store b/Projects/EdinburghDSSD/Calibration/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/EdinburghDSSD/Calibration/.DS_Store differ
diff --git a/Projects/EdinburghDSSD/Calibration/CalibrationRaw.txt b/Projects/EdinburghDSSD/Calibration/CalibrationRaw.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8849c162ab1aeebe19550534b85edeedb2978318
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/CalibrationRaw.txt
@@ -0,0 +1,12 @@
+CalibrationFilePath
+  calibration/calib_raw/M0_E/Cal_Str_X_E_MM0.cal
+  calibration/calib_raw/M1_E/Cal_Str_X_E_MM1.cal
+
+  calibration/calib_raw/M0_E/Cal_Str_Y_E_MM0.cal
+  calibration/calib_raw/M1_E/Cal_Str_Y_E_MM1.cal
+
+  calibration/calib_raw/M0_T/Cal_Str_X_T_MM0.cal
+  calibration/calib_raw/M1_T/Cal_Str_X_T_MM1.cal
+
+  calibration/calib_raw/M0_T/Cal_Str_Y_T_MM0.cal
+  calibration/calib_raw/M1_T/Cal_Str_Y_T_MM1.cal
diff --git a/Projects/EdinburghDSSD/Calibration/CalibrationSimu.txt b/Projects/EdinburghDSSD/Calibration/CalibrationSimu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..fcd123bda2d7b5cede014acb10dd962afa6e21a9
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/CalibrationSimu.txt
@@ -0,0 +1,12 @@
+CalibrationFilePath
+  calibration/calib_simu/M0_E/Cal_Str_X_E_MM0.cal
+  calibration/calib_simu/M1_E/Cal_Str_X_E_MM1.cal
+
+  calibration/calib_simu/M0_E/Cal_Str_Y_E_MM0.cal
+  calibration/calib_simu/M1_E/Cal_Str_Y_E_MM1.cal
+
+  calibration/calib_simu/M0_T/Cal_Str_X_T_MM0.cal
+  calibration/calib_simu/M1_T/Cal_Str_X_T_MM1.cal
+
+  calibration/calib_simu/M0_T/Cal_Str_Y_T_MM0.cal
+  calibration/calib_simu/M1_T/Cal_Str_Y_T_MM1.cal
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M0_E/Cal_Str_X_E_MM0.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..306937afd16d1e900d33ce7fb9b46e24cfff3226
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T0_DSSD_X0_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_X1_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_X2_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_X3_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_X4_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_X5_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_X6_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_X7_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_X8_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_X9_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_X10_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_X11_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_X12_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_X13_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_X14_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_X15_E 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M0_E/Cal_Str_Y_E_MM0.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..14799e2d2ebaa401cec7dbe4ed57d9dcf7ded8e7
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T0_DSSD_Y0_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y1_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y2_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y3_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y4_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y5_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y6_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y7_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y8_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y9_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y10_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y11_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y12_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y13_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y14_E 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y15_E 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M0_T/Cal_Str_X_T_MM0.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e7832634b338def180a4b1591ef794345c31584e
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T0_DSSD_X0_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X1_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X2_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X3_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X4_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X5_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X6_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X7_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X8_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X9_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X10_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X11_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X12_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X13_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X14_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X15_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e6e29887234b427d08990f60ddc23107650b5b47
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T0_DSSD_Y0_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y1_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y2_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y3_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y4_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y5_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y6_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y7_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y8_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y9_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y10_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y11_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y12_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y13_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y14_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y15_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M1_E/Cal_Str_X_E_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c6d854cf1db0af8bc46f3c2cddc25a5db8caaad4
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T1_DSSD_X0_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_X1_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_X2_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_X3_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_X4_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_X5_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_X6_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_X7_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_X8_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_X9_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_X10_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_X11_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_X12_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_X13_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_X14_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_X15_E 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M1_E/Cal_Str_Y_E_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2ba08f1360c1a89ec0fcf7931d0f68a37a15a434
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T1_DSSD_Y0_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y1_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y2_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y3_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y4_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y5_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y6_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y7_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y8_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y9_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y10_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y11_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y12_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y13_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y14_E 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y15_E 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M1_T/Cal_Str_X_T_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c3cd77ea92a9a6a74adb4221d054209b8481766a
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T1_DSSD_X0_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X1_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X2_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X3_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X4_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X5_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X6_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X7_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X8_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X9_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X10_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X11_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X12_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X13_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X14_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X15_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..adf3c97b9504eb4a409b9c5a6cda45acff09b3a0
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T1_DSSD_Y0_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y1_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y2_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y3_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y4_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y5_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y6_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y7_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y8_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y9_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y10_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y11_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y12_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y13_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y14_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y15_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M2_E/Cal_Str_X_E_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..ed80570d51baccf16fbc4a32894f40a02999c581
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_X0_E 0.0 1.0
+EDIN_T2_DSSD_X1_E 0.0 1.0
+EDIN_T2_DSSD_X2_E 0.0 1.0
+EDIN_T2_DSSD_X3_E 0.0 1.0
+EDIN_T2_DSSD_X4_E 0.0 1.0
+EDIN_T2_DSSD_X5_E 0.0 1.0
+EDIN_T2_DSSD_X6_E 0.0 1.0
+EDIN_T2_DSSD_X7_E 0.0 1.0
+EDIN_T2_DSSD_X8_E 0.0 1.0
+EDIN_T2_DSSD_X9_E 0.0 1.0
+EDIN_T2_DSSD_X10_E 0.0 1.0
+EDIN_T2_DSSD_X11_E 0.0 1.0
+EDIN_T2_DSSD_X12_E 0.0 1.0
+EDIN_T2_DSSD_X13_E 0.0 1.0
+EDIN_T2_DSSD_X14_E 0.0 1.0
+EDIN_T2_DSSD_X15_E 0.0 1.0
+EDIN_T2_DSSD_X16_E 0.0 1.0
+EDIN_T2_DSSD_X17_E 0.0 1.0
+EDIN_T2_DSSD_X18_E 0.0 1.0
+EDIN_T2_DSSD_X19_E 0.0 1.0
+EDIN_T2_DSSD_X20_E 0.0 1.0
+EDIN_T2_DSSD_X21_E 0.0 1.0
+EDIN_T2_DSSD_X22_E 0.0 1.0
+EDIN_T2_DSSD_X23_E 0.0 1.0
+EDIN_T2_DSSD_X24_E 0.0 1.0
+EDIN_T2_DSSD_X25_E 0.0 1.0
+EDIN_T2_DSSD_X26_E 0.0 1.0
+EDIN_T2_DSSD_X27_E 0.0 1.0
+EDIN_T2_DSSD_X28_E 0.0 1.0
+EDIN_T2_DSSD_X29_E 0.0 1.0
+EDIN_T2_DSSD_X30_E 0.0 1.0
+EDIN_T2_DSSD_X31_E 0.0 1.0
+EDIN_T2_DSSD_X32_E 0.0 1.0
+EDIN_T2_DSSD_X33_E 0.0 1.0
+EDIN_T2_DSSD_X34_E 0.0 1.0
+EDIN_T2_DSSD_X35_E 0.0 1.0
+EDIN_T2_DSSD_X36_E 0.0 1.0
+EDIN_T2_DSSD_X37_E 0.0 1.0
+EDIN_T2_DSSD_X38_E 0.0 1.0
+EDIN_T2_DSSD_X39_E 0.0 1.0
+EDIN_T2_DSSD_X40_E 0.0 1.0
+EDIN_T2_DSSD_X41_E 0.0 1.0
+EDIN_T2_DSSD_X42_E 0.0 1.0
+EDIN_T2_DSSD_X43_E 0.0 1.0
+EDIN_T2_DSSD_X44_E 0.0 1.0
+EDIN_T2_DSSD_X45_E 0.0 1.0
+EDIN_T2_DSSD_X46_E 0.0 1.0
+EDIN_T2_DSSD_X47_E 0.0 1.0
+EDIN_T2_DSSD_X48_E 0.0 1.0
+EDIN_T2_DSSD_X49_E 0.0 1.0
+EDIN_T2_DSSD_X50_E 0.0 1.0
+EDIN_T2_DSSD_X51_E 0.0 1.0
+EDIN_T2_DSSD_X52_E 0.0 1.0
+EDIN_T2_DSSD_X53_E 0.0 1.0
+EDIN_T2_DSSD_X54_E 0.0 1.0
+EDIN_T2_DSSD_X55_E 0.0 1.0
+EDIN_T2_DSSD_X56_E 0.0 1.0
+EDIN_T2_DSSD_X57_E 0.0 1.0
+EDIN_T2_DSSD_X58_E 0.0 1.0
+EDIN_T2_DSSD_X59_E 0.0 1.0
+EDIN_T2_DSSD_X60_E 0.0 1.0
+EDIN_T2_DSSD_X61_E 0.0 1.0
+EDIN_T2_DSSD_X62_E 0.0 1.0
+EDIN_T2_DSSD_X63_E 0.0 1.0
+EDIN_T2_DSSD_X64_E 0.0 1.0
+EDIN_T2_DSSD_X65_E 0.0 1.0
+EDIN_T2_DSSD_X66_E 0.0 1.0
+EDIN_T2_DSSD_X67_E 0.0 1.0
+EDIN_T2_DSSD_X68_E 0.0 1.0
+EDIN_T2_DSSD_X69_E 0.0 1.0
+EDIN_T2_DSSD_X70_E 0.0 1.0
+EDIN_T2_DSSD_X71_E 0.0 1.0
+EDIN_T2_DSSD_X72_E 0.0 1.0
+EDIN_T2_DSSD_X73_E 0.0 1.0
+EDIN_T2_DSSD_X74_E 0.0 1.0
+EDIN_T2_DSSD_X75_E 0.0 1.0
+EDIN_T2_DSSD_X76_E 0.0 1.0
+EDIN_T2_DSSD_X77_E 0.0 1.0
+EDIN_T2_DSSD_X78_E 0.0 1.0
+EDIN_T2_DSSD_X79_E 0.0 1.0
+EDIN_T2_DSSD_X80_E 0.0 1.0
+EDIN_T2_DSSD_X81_E 0.0 1.0
+EDIN_T2_DSSD_X82_E 0.0 1.0
+EDIN_T2_DSSD_X83_E 0.0 1.0
+EDIN_T2_DSSD_X84_E 0.0 1.0
+EDIN_T2_DSSD_X85_E 0.0 1.0
+EDIN_T2_DSSD_X86_E 0.0 1.0
+EDIN_T2_DSSD_X87_E 0.0 1.0
+EDIN_T2_DSSD_X88_E 0.0 1.0
+EDIN_T2_DSSD_X89_E 0.0 1.0
+EDIN_T2_DSSD_X90_E 0.0 1.0
+EDIN_T2_DSSD_X91_E 0.0 1.0
+EDIN_T2_DSSD_X92_E 0.0 1.0
+EDIN_T2_DSSD_X93_E 0.0 1.0
+EDIN_T2_DSSD_X94_E 0.0 1.0
+EDIN_T2_DSSD_X95_E 0.0 1.0
+EDIN_T2_DSSD_X96_E 0.0 1.0
+EDIN_T2_DSSD_X97_E 0.0 1.0
+EDIN_T2_DSSD_X98_E 0.0 1.0
+EDIN_T2_DSSD_X99_E 0.0 1.0
+EDIN_T2_DSSD_X100_E 0.0 1.0
+EDIN_T2_DSSD_X101_E 0.0 1.0
+EDIN_T2_DSSD_X102_E 0.0 1.0
+EDIN_T2_DSSD_X103_E 0.0 1.0
+EDIN_T2_DSSD_X104_E 0.0 1.0
+EDIN_T2_DSSD_X105_E 0.0 1.0
+EDIN_T2_DSSD_X106_E 0.0 1.0
+EDIN_T2_DSSD_X107_E 0.0 1.0
+EDIN_T2_DSSD_X108_E 0.0 1.0
+EDIN_T2_DSSD_X109_E 0.0 1.0
+EDIN_T2_DSSD_X110_E 0.0 1.0
+EDIN_T2_DSSD_X111_E 0.0 1.0
+EDIN_T2_DSSD_X112_E 0.0 1.0
+EDIN_T2_DSSD_X113_E 0.0 1.0
+EDIN_T2_DSSD_X114_E 0.0 1.0
+EDIN_T2_DSSD_X115_E 0.0 1.0
+EDIN_T2_DSSD_X116_E 0.0 1.0
+EDIN_T2_DSSD_X117_E 0.0 1.0
+EDIN_T2_DSSD_X118_E 0.0 1.0
+EDIN_T2_DSSD_X119_E 0.0 1.0
+EDIN_T2_DSSD_X120_E 0.0 1.0
+EDIN_T2_DSSD_X121_E 0.0 1.0
+EDIN_T2_DSSD_X122_E 0.0 1.0
+EDIN_T2_DSSD_X123_E 0.0 1.0
+EDIN_T2_DSSD_X124_E 0.0 1.0
+EDIN_T2_DSSD_X125_E 0.0 1.0
+EDIN_T2_DSSD_X126_E 0.0 1.0
+EDIN_T2_DSSD_X127_E 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M2_E/Cal_Str_Y_E_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..9e97c08beeaa6049c85f64402e17a783e4cbc9dd
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_Y0_E 0.0 1.0
+EDIN_T2_DSSD_Y1_E 0.0 1.0
+EDIN_T2_DSSD_Y2_E 0.0 1.0
+EDIN_T2_DSSD_Y3_E 0.0 1.0
+EDIN_T2_DSSD_Y4_E 0.0 1.0
+EDIN_T2_DSSD_Y5_E 0.0 1.0
+EDIN_T2_DSSD_Y6_E 0.0 1.0
+EDIN_T2_DSSD_Y7_E 0.0 1.0
+EDIN_T2_DSSD_Y8_E 0.0 1.0
+EDIN_T2_DSSD_Y9_E 0.0 1.0
+EDIN_T2_DSSD_Y10_E 0.0 1.0
+EDIN_T2_DSSD_Y11_E 0.0 1.0
+EDIN_T2_DSSD_Y12_E 0.0 1.0
+EDIN_T2_DSSD_Y13_E 0.0 1.0
+EDIN_T2_DSSD_Y14_E 0.0 1.0
+EDIN_T2_DSSD_Y15_E 0.0 1.0
+EDIN_T2_DSSD_Y16_E 0.0 1.0
+EDIN_T2_DSSD_Y17_E 0.0 1.0
+EDIN_T2_DSSD_Y18_E 0.0 1.0
+EDIN_T2_DSSD_Y19_E 0.0 1.0
+EDIN_T2_DSSD_Y20_E 0.0 1.0
+EDIN_T2_DSSD_Y21_E 0.0 1.0
+EDIN_T2_DSSD_Y22_E 0.0 1.0
+EDIN_T2_DSSD_Y23_E 0.0 1.0
+EDIN_T2_DSSD_Y24_E 0.0 1.0
+EDIN_T2_DSSD_Y25_E 0.0 1.0
+EDIN_T2_DSSD_Y26_E 0.0 1.0
+EDIN_T2_DSSD_Y27_E 0.0 1.0
+EDIN_T2_DSSD_Y28_E 0.0 1.0
+EDIN_T2_DSSD_Y29_E 0.0 1.0
+EDIN_T2_DSSD_Y30_E 0.0 1.0
+EDIN_T2_DSSD_Y31_E 0.0 1.0
+EDIN_T2_DSSD_Y32_E 0.0 1.0
+EDIN_T2_DSSD_Y33_E 0.0 1.0
+EDIN_T2_DSSD_Y34_E 0.0 1.0
+EDIN_T2_DSSD_Y35_E 0.0 1.0
+EDIN_T2_DSSD_Y36_E 0.0 1.0
+EDIN_T2_DSSD_Y37_E 0.0 1.0
+EDIN_T2_DSSD_Y38_E 0.0 1.0
+EDIN_T2_DSSD_Y39_E 0.0 1.0
+EDIN_T2_DSSD_Y40_E 0.0 1.0
+EDIN_T2_DSSD_Y41_E 0.0 1.0
+EDIN_T2_DSSD_Y42_E 0.0 1.0
+EDIN_T2_DSSD_Y43_E 0.0 1.0
+EDIN_T2_DSSD_Y44_E 0.0 1.0
+EDIN_T2_DSSD_Y45_E 0.0 1.0
+EDIN_T2_DSSD_Y46_E 0.0 1.0
+EDIN_T2_DSSD_Y47_E 0.0 1.0
+EDIN_T2_DSSD_Y48_E 0.0 1.0
+EDIN_T2_DSSD_Y49_E 0.0 1.0
+EDIN_T2_DSSD_Y50_E 0.0 1.0
+EDIN_T2_DSSD_Y51_E 0.0 1.0
+EDIN_T2_DSSD_Y52_E 0.0 1.0
+EDIN_T2_DSSD_Y53_E 0.0 1.0
+EDIN_T2_DSSD_Y54_E 0.0 1.0
+EDIN_T2_DSSD_Y55_E 0.0 1.0
+EDIN_T2_DSSD_Y56_E 0.0 1.0
+EDIN_T2_DSSD_Y57_E 0.0 1.0
+EDIN_T2_DSSD_Y58_E 0.0 1.0
+EDIN_T2_DSSD_Y59_E 0.0 1.0
+EDIN_T2_DSSD_Y60_E 0.0 1.0
+EDIN_T2_DSSD_Y61_E 0.0 1.0
+EDIN_T2_DSSD_Y62_E 0.0 1.0
+EDIN_T2_DSSD_Y63_E 0.0 1.0
+EDIN_T2_DSSD_Y64_E 0.0 1.0
+EDIN_T2_DSSD_Y65_E 0.0 1.0
+EDIN_T2_DSSD_Y66_E 0.0 1.0
+EDIN_T2_DSSD_Y67_E 0.0 1.0
+EDIN_T2_DSSD_Y68_E 0.0 1.0
+EDIN_T2_DSSD_Y69_E 0.0 1.0
+EDIN_T2_DSSD_Y70_E 0.0 1.0
+EDIN_T2_DSSD_Y71_E 0.0 1.0
+EDIN_T2_DSSD_Y72_E 0.0 1.0
+EDIN_T2_DSSD_Y73_E 0.0 1.0
+EDIN_T2_DSSD_Y74_E 0.0 1.0
+EDIN_T2_DSSD_Y75_E 0.0 1.0
+EDIN_T2_DSSD_Y76_E 0.0 1.0
+EDIN_T2_DSSD_Y77_E 0.0 1.0
+EDIN_T2_DSSD_Y78_E 0.0 1.0
+EDIN_T2_DSSD_Y79_E 0.0 1.0
+EDIN_T2_DSSD_Y80_E 0.0 1.0
+EDIN_T2_DSSD_Y81_E 0.0 1.0
+EDIN_T2_DSSD_Y82_E 0.0 1.0
+EDIN_T2_DSSD_Y83_E 0.0 1.0
+EDIN_T2_DSSD_Y84_E 0.0 1.0
+EDIN_T2_DSSD_Y85_E 0.0 1.0
+EDIN_T2_DSSD_Y86_E 0.0 1.0
+EDIN_T2_DSSD_Y87_E 0.0 1.0
+EDIN_T2_DSSD_Y88_E 0.0 1.0
+EDIN_T2_DSSD_Y89_E 0.0 1.0
+EDIN_T2_DSSD_Y90_E 0.0 1.0
+EDIN_T2_DSSD_Y91_E 0.0 1.0
+EDIN_T2_DSSD_Y92_E 0.0 1.0
+EDIN_T2_DSSD_Y93_E 0.0 1.0
+EDIN_T2_DSSD_Y94_E 0.0 1.0
+EDIN_T2_DSSD_Y95_E 0.0 1.0
+EDIN_T2_DSSD_Y96_E 0.0 1.0
+EDIN_T2_DSSD_Y97_E 0.0 1.0
+EDIN_T2_DSSD_Y98_E 0.0 1.0
+EDIN_T2_DSSD_Y99_E 0.0 1.0
+EDIN_T2_DSSD_Y100_E 0.0 1.0
+EDIN_T2_DSSD_Y101_E 0.0 1.0
+EDIN_T2_DSSD_Y102_E 0.0 1.0
+EDIN_T2_DSSD_Y103_E 0.0 1.0
+EDIN_T2_DSSD_Y104_E 0.0 1.0
+EDIN_T2_DSSD_Y105_E 0.0 1.0
+EDIN_T2_DSSD_Y106_E 0.0 1.0
+EDIN_T2_DSSD_Y107_E 0.0 1.0
+EDIN_T2_DSSD_Y108_E 0.0 1.0
+EDIN_T2_DSSD_Y109_E 0.0 1.0
+EDIN_T2_DSSD_Y110_E 0.0 1.0
+EDIN_T2_DSSD_Y111_E 0.0 1.0
+EDIN_T2_DSSD_Y112_E 0.0 1.0
+EDIN_T2_DSSD_Y113_E 0.0 1.0
+EDIN_T2_DSSD_Y114_E 0.0 1.0
+EDIN_T2_DSSD_Y115_E 0.0 1.0
+EDIN_T2_DSSD_Y116_E 0.0 1.0
+EDIN_T2_DSSD_Y117_E 0.0 1.0
+EDIN_T2_DSSD_Y118_E 0.0 1.0
+EDIN_T2_DSSD_Y119_E 0.0 1.0
+EDIN_T2_DSSD_Y120_E 0.0 1.0
+EDIN_T2_DSSD_Y121_E 0.0 1.0
+EDIN_T2_DSSD_Y122_E 0.0 1.0
+EDIN_T2_DSSD_Y123_E 0.0 1.0
+EDIN_T2_DSSD_Y124_E 0.0 1.0
+EDIN_T2_DSSD_Y125_E 0.0 1.0
+EDIN_T2_DSSD_Y126_E 0.0 1.0
+EDIN_T2_DSSD_Y127_E 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M2_T/Cal_Str_X_T_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d066b95e49391059ca0357961a0602d88ef8c571
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_X0_T 0.0 1.0
+EDIN_T2_DSSD_X1_T 0.0 1.0
+EDIN_T2_DSSD_X2_T 0.0 1.0
+EDIN_T2_DSSD_X3_T 0.0 1.0
+EDIN_T2_DSSD_X4_T 0.0 1.0
+EDIN_T2_DSSD_X5_T 0.0 1.0
+EDIN_T2_DSSD_X6_T 0.0 1.0
+EDIN_T2_DSSD_X7_T 0.0 1.0
+EDIN_T2_DSSD_X8_T 0.0 1.0
+EDIN_T2_DSSD_X9_T 0.0 1.0
+EDIN_T2_DSSD_X10_T 0.0 1.0
+EDIN_T2_DSSD_X11_T 0.0 1.0
+EDIN_T2_DSSD_X12_T 0.0 1.0
+EDIN_T2_DSSD_X13_T 0.0 1.0
+EDIN_T2_DSSD_X14_T 0.0 1.0
+EDIN_T2_DSSD_X15_T 0.0 1.0
+EDIN_T2_DSSD_X16_T 0.0 1.0
+EDIN_T2_DSSD_X17_T 0.0 1.0
+EDIN_T2_DSSD_X18_T 0.0 1.0
+EDIN_T2_DSSD_X19_T 0.0 1.0
+EDIN_T2_DSSD_X20_T 0.0 1.0
+EDIN_T2_DSSD_X21_T 0.0 1.0
+EDIN_T2_DSSD_X22_T 0.0 1.0
+EDIN_T2_DSSD_X23_T 0.0 1.0
+EDIN_T2_DSSD_X24_T 0.0 1.0
+EDIN_T2_DSSD_X25_T 0.0 1.0
+EDIN_T2_DSSD_X26_T 0.0 1.0
+EDIN_T2_DSSD_X27_T 0.0 1.0
+EDIN_T2_DSSD_X28_T 0.0 1.0
+EDIN_T2_DSSD_X29_T 0.0 1.0
+EDIN_T2_DSSD_X30_T 0.0 1.0
+EDIN_T2_DSSD_X31_T 0.0 1.0
+EDIN_T2_DSSD_X32_T 0.0 1.0
+EDIN_T2_DSSD_X33_T 0.0 1.0
+EDIN_T2_DSSD_X34_T 0.0 1.0
+EDIN_T2_DSSD_X35_T 0.0 1.0
+EDIN_T2_DSSD_X36_T 0.0 1.0
+EDIN_T2_DSSD_X37_T 0.0 1.0
+EDIN_T2_DSSD_X38_T 0.0 1.0
+EDIN_T2_DSSD_X39_T 0.0 1.0
+EDIN_T2_DSSD_X40_T 0.0 1.0
+EDIN_T2_DSSD_X41_T 0.0 1.0
+EDIN_T2_DSSD_X42_T 0.0 1.0
+EDIN_T2_DSSD_X43_T 0.0 1.0
+EDIN_T2_DSSD_X44_T 0.0 1.0
+EDIN_T2_DSSD_X45_T 0.0 1.0
+EDIN_T2_DSSD_X46_T 0.0 1.0
+EDIN_T2_DSSD_X47_T 0.0 1.0
+EDIN_T2_DSSD_X48_T 0.0 1.0
+EDIN_T2_DSSD_X49_T 0.0 1.0
+EDIN_T2_DSSD_X50_T 0.0 1.0
+EDIN_T2_DSSD_X51_T 0.0 1.0
+EDIN_T2_DSSD_X52_T 0.0 1.0
+EDIN_T2_DSSD_X53_T 0.0 1.0
+EDIN_T2_DSSD_X54_T 0.0 1.0
+EDIN_T2_DSSD_X55_T 0.0 1.0
+EDIN_T2_DSSD_X56_T 0.0 1.0
+EDIN_T2_DSSD_X57_T 0.0 1.0
+EDIN_T2_DSSD_X58_T 0.0 1.0
+EDIN_T2_DSSD_X59_T 0.0 1.0
+EDIN_T2_DSSD_X60_T 0.0 1.0
+EDIN_T2_DSSD_X61_T 0.0 1.0
+EDIN_T2_DSSD_X62_T 0.0 1.0
+EDIN_T2_DSSD_X63_T 0.0 1.0
+EDIN_T2_DSSD_X64_T 0.0 1.0
+EDIN_T2_DSSD_X65_T 0.0 1.0
+EDIN_T2_DSSD_X66_T 0.0 1.0
+EDIN_T2_DSSD_X67_T 0.0 1.0
+EDIN_T2_DSSD_X68_T 0.0 1.0
+EDIN_T2_DSSD_X69_T 0.0 1.0
+EDIN_T2_DSSD_X70_T 0.0 1.0
+EDIN_T2_DSSD_X71_T 0.0 1.0
+EDIN_T2_DSSD_X72_T 0.0 1.0
+EDIN_T2_DSSD_X73_T 0.0 1.0
+EDIN_T2_DSSD_X74_T 0.0 1.0
+EDIN_T2_DSSD_X75_T 0.0 1.0
+EDIN_T2_DSSD_X76_T 0.0 1.0
+EDIN_T2_DSSD_X77_T 0.0 1.0
+EDIN_T2_DSSD_X78_T 0.0 1.0
+EDIN_T2_DSSD_X79_T 0.0 1.0
+EDIN_T2_DSSD_X80_T 0.0 1.0
+EDIN_T2_DSSD_X81_T 0.0 1.0
+EDIN_T2_DSSD_X82_T 0.0 1.0
+EDIN_T2_DSSD_X83_T 0.0 1.0
+EDIN_T2_DSSD_X84_T 0.0 1.0
+EDIN_T2_DSSD_X85_T 0.0 1.0
+EDIN_T2_DSSD_X86_T 0.0 1.0
+EDIN_T2_DSSD_X87_T 0.0 1.0
+EDIN_T2_DSSD_X88_T 0.0 1.0
+EDIN_T2_DSSD_X89_T 0.0 1.0
+EDIN_T2_DSSD_X90_T 0.0 1.0
+EDIN_T2_DSSD_X91_T 0.0 1.0
+EDIN_T2_DSSD_X92_T 0.0 1.0
+EDIN_T2_DSSD_X93_T 0.0 1.0
+EDIN_T2_DSSD_X94_T 0.0 1.0
+EDIN_T2_DSSD_X95_T 0.0 1.0
+EDIN_T2_DSSD_X96_T 0.0 1.0
+EDIN_T2_DSSD_X97_T 0.0 1.0
+EDIN_T2_DSSD_X98_T 0.0 1.0
+EDIN_T2_DSSD_X99_T 0.0 1.0
+EDIN_T2_DSSD_X100_T 0.0 1.0
+EDIN_T2_DSSD_X101_T 0.0 1.0
+EDIN_T2_DSSD_X102_T 0.0 1.0
+EDIN_T2_DSSD_X103_T 0.0 1.0
+EDIN_T2_DSSD_X104_T 0.0 1.0
+EDIN_T2_DSSD_X105_T 0.0 1.0
+EDIN_T2_DSSD_X106_T 0.0 1.0
+EDIN_T2_DSSD_X107_T 0.0 1.0
+EDIN_T2_DSSD_X108_T 0.0 1.0
+EDIN_T2_DSSD_X109_T 0.0 1.0
+EDIN_T2_DSSD_X110_T 0.0 1.0
+EDIN_T2_DSSD_X111_T 0.0 1.0
+EDIN_T2_DSSD_X112_T 0.0 1.0
+EDIN_T2_DSSD_X113_T 0.0 1.0
+EDIN_T2_DSSD_X114_T 0.0 1.0
+EDIN_T2_DSSD_X115_T 0.0 1.0
+EDIN_T2_DSSD_X116_T 0.0 1.0
+EDIN_T2_DSSD_X117_T 0.0 1.0
+EDIN_T2_DSSD_X118_T 0.0 1.0
+EDIN_T2_DSSD_X119_T 0.0 1.0
+EDIN_T2_DSSD_X120_T 0.0 1.0
+EDIN_T2_DSSD_X121_T 0.0 1.0
+EDIN_T2_DSSD_X122_T 0.0 1.0
+EDIN_T2_DSSD_X123_T 0.0 1.0
+EDIN_T2_DSSD_X124_T 0.0 1.0
+EDIN_T2_DSSD_X125_T 0.0 1.0
+EDIN_T2_DSSD_X126_T 0.0 1.0
+EDIN_T2_DSSD_X127_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c569be484efd61e7fd57ed0475b990626f59b352
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_Y0_T 0.0 1.0
+EDIN_T2_DSSD_Y1_T 0.0 1.0
+EDIN_T2_DSSD_Y2_T 0.0 1.0
+EDIN_T2_DSSD_Y3_T 0.0 1.0
+EDIN_T2_DSSD_Y4_T 0.0 1.0
+EDIN_T2_DSSD_Y5_T 0.0 1.0
+EDIN_T2_DSSD_Y6_T 0.0 1.0
+EDIN_T2_DSSD_Y7_T 0.0 1.0
+EDIN_T2_DSSD_Y8_T 0.0 1.0
+EDIN_T2_DSSD_Y9_T 0.0 1.0
+EDIN_T2_DSSD_Y10_T 0.0 1.0
+EDIN_T2_DSSD_Y11_T 0.0 1.0
+EDIN_T2_DSSD_Y12_T 0.0 1.0
+EDIN_T2_DSSD_Y13_T 0.0 1.0
+EDIN_T2_DSSD_Y14_T 0.0 1.0
+EDIN_T2_DSSD_Y15_T 0.0 1.0
+EDIN_T2_DSSD_Y16_T 0.0 1.0
+EDIN_T2_DSSD_Y17_T 0.0 1.0
+EDIN_T2_DSSD_Y18_T 0.0 1.0
+EDIN_T2_DSSD_Y19_T 0.0 1.0
+EDIN_T2_DSSD_Y20_T 0.0 1.0
+EDIN_T2_DSSD_Y21_T 0.0 1.0
+EDIN_T2_DSSD_Y22_T 0.0 1.0
+EDIN_T2_DSSD_Y23_T 0.0 1.0
+EDIN_T2_DSSD_Y24_T 0.0 1.0
+EDIN_T2_DSSD_Y25_T 0.0 1.0
+EDIN_T2_DSSD_Y26_T 0.0 1.0
+EDIN_T2_DSSD_Y27_T 0.0 1.0
+EDIN_T2_DSSD_Y28_T 0.0 1.0
+EDIN_T2_DSSD_Y29_T 0.0 1.0
+EDIN_T2_DSSD_Y30_T 0.0 1.0
+EDIN_T2_DSSD_Y31_T 0.0 1.0
+EDIN_T2_DSSD_Y32_T 0.0 1.0
+EDIN_T2_DSSD_Y33_T 0.0 1.0
+EDIN_T2_DSSD_Y34_T 0.0 1.0
+EDIN_T2_DSSD_Y35_T 0.0 1.0
+EDIN_T2_DSSD_Y36_T 0.0 1.0
+EDIN_T2_DSSD_Y37_T 0.0 1.0
+EDIN_T2_DSSD_Y38_T 0.0 1.0
+EDIN_T2_DSSD_Y39_T 0.0 1.0
+EDIN_T2_DSSD_Y40_T 0.0 1.0
+EDIN_T2_DSSD_Y41_T 0.0 1.0
+EDIN_T2_DSSD_Y42_T 0.0 1.0
+EDIN_T2_DSSD_Y43_T 0.0 1.0
+EDIN_T2_DSSD_Y44_T 0.0 1.0
+EDIN_T2_DSSD_Y45_T 0.0 1.0
+EDIN_T2_DSSD_Y46_T 0.0 1.0
+EDIN_T2_DSSD_Y47_T 0.0 1.0
+EDIN_T2_DSSD_Y48_T 0.0 1.0
+EDIN_T2_DSSD_Y49_T 0.0 1.0
+EDIN_T2_DSSD_Y50_T 0.0 1.0
+EDIN_T2_DSSD_Y51_T 0.0 1.0
+EDIN_T2_DSSD_Y52_T 0.0 1.0
+EDIN_T2_DSSD_Y53_T 0.0 1.0
+EDIN_T2_DSSD_Y54_T 0.0 1.0
+EDIN_T2_DSSD_Y55_T 0.0 1.0
+EDIN_T2_DSSD_Y56_T 0.0 1.0
+EDIN_T2_DSSD_Y57_T 0.0 1.0
+EDIN_T2_DSSD_Y58_T 0.0 1.0
+EDIN_T2_DSSD_Y59_T 0.0 1.0
+EDIN_T2_DSSD_Y60_T 0.0 1.0
+EDIN_T2_DSSD_Y61_T 0.0 1.0
+EDIN_T2_DSSD_Y62_T 0.0 1.0
+EDIN_T2_DSSD_Y63_T 0.0 1.0
+EDIN_T2_DSSD_Y64_T 0.0 1.0
+EDIN_T2_DSSD_Y65_T 0.0 1.0
+EDIN_T2_DSSD_Y66_T 0.0 1.0
+EDIN_T2_DSSD_Y67_T 0.0 1.0
+EDIN_T2_DSSD_Y68_T 0.0 1.0
+EDIN_T2_DSSD_Y69_T 0.0 1.0
+EDIN_T2_DSSD_Y70_T 0.0 1.0
+EDIN_T2_DSSD_Y71_T 0.0 1.0
+EDIN_T2_DSSD_Y72_T 0.0 1.0
+EDIN_T2_DSSD_Y73_T 0.0 1.0
+EDIN_T2_DSSD_Y74_T 0.0 1.0
+EDIN_T2_DSSD_Y75_T 0.0 1.0
+EDIN_T2_DSSD_Y76_T 0.0 1.0
+EDIN_T2_DSSD_Y77_T 0.0 1.0
+EDIN_T2_DSSD_Y78_T 0.0 1.0
+EDIN_T2_DSSD_Y79_T 0.0 1.0
+EDIN_T2_DSSD_Y80_T 0.0 1.0
+EDIN_T2_DSSD_Y81_T 0.0 1.0
+EDIN_T2_DSSD_Y82_T 0.0 1.0
+EDIN_T2_DSSD_Y83_T 0.0 1.0
+EDIN_T2_DSSD_Y84_T 0.0 1.0
+EDIN_T2_DSSD_Y85_T 0.0 1.0
+EDIN_T2_DSSD_Y86_T 0.0 1.0
+EDIN_T2_DSSD_Y87_T 0.0 1.0
+EDIN_T2_DSSD_Y88_T 0.0 1.0
+EDIN_T2_DSSD_Y89_T 0.0 1.0
+EDIN_T2_DSSD_Y90_T 0.0 1.0
+EDIN_T2_DSSD_Y91_T 0.0 1.0
+EDIN_T2_DSSD_Y92_T 0.0 1.0
+EDIN_T2_DSSD_Y93_T 0.0 1.0
+EDIN_T2_DSSD_Y94_T 0.0 1.0
+EDIN_T2_DSSD_Y95_T 0.0 1.0
+EDIN_T2_DSSD_Y96_T 0.0 1.0
+EDIN_T2_DSSD_Y97_T 0.0 1.0
+EDIN_T2_DSSD_Y98_T 0.0 1.0
+EDIN_T2_DSSD_Y99_T 0.0 1.0
+EDIN_T2_DSSD_Y100_T 0.0 1.0
+EDIN_T2_DSSD_Y101_T 0.0 1.0
+EDIN_T2_DSSD_Y102_T 0.0 1.0
+EDIN_T2_DSSD_Y103_T 0.0 1.0
+EDIN_T2_DSSD_Y104_T 0.0 1.0
+EDIN_T2_DSSD_Y105_T 0.0 1.0
+EDIN_T2_DSSD_Y106_T 0.0 1.0
+EDIN_T2_DSSD_Y107_T 0.0 1.0
+EDIN_T2_DSSD_Y108_T 0.0 1.0
+EDIN_T2_DSSD_Y109_T 0.0 1.0
+EDIN_T2_DSSD_Y110_T 0.0 1.0
+EDIN_T2_DSSD_Y111_T 0.0 1.0
+EDIN_T2_DSSD_Y112_T 0.0 1.0
+EDIN_T2_DSSD_Y113_T 0.0 1.0
+EDIN_T2_DSSD_Y114_T 0.0 1.0
+EDIN_T2_DSSD_Y115_T 0.0 1.0
+EDIN_T2_DSSD_Y116_T 0.0 1.0
+EDIN_T2_DSSD_Y117_T 0.0 1.0
+EDIN_T2_DSSD_Y118_T 0.0 1.0
+EDIN_T2_DSSD_Y119_T 0.0 1.0
+EDIN_T2_DSSD_Y120_T 0.0 1.0
+EDIN_T2_DSSD_Y121_T 0.0 1.0
+EDIN_T2_DSSD_Y122_T 0.0 1.0
+EDIN_T2_DSSD_Y123_T 0.0 1.0
+EDIN_T2_DSSD_Y124_T 0.0 1.0
+EDIN_T2_DSSD_Y125_T 0.0 1.0
+EDIN_T2_DSSD_Y126_T 0.0 1.0
+EDIN_T2_DSSD_Y127_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M3_E/Cal_Str_X_E_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1ae4b8f69b9f412305c6a7612d24d24424164dac
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_X0_E 0.0 1.0
+EDIN_T3_DSSD_X1_E 0.0 1.0
+EDIN_T3_DSSD_X2_E 0.0 1.0
+EDIN_T3_DSSD_X3_E 0.0 1.0
+EDIN_T3_DSSD_X4_E 0.0 1.0
+EDIN_T3_DSSD_X5_E 0.0 1.0
+EDIN_T3_DSSD_X6_E 0.0 1.0
+EDIN_T3_DSSD_X7_E 0.0 1.0
+EDIN_T3_DSSD_X8_E 0.0 1.0
+EDIN_T3_DSSD_X9_E 0.0 1.0
+EDIN_T3_DSSD_X10_E 0.0 1.0
+EDIN_T3_DSSD_X11_E 0.0 1.0
+EDIN_T3_DSSD_X12_E 0.0 1.0
+EDIN_T3_DSSD_X13_E 0.0 1.0
+EDIN_T3_DSSD_X14_E 0.0 1.0
+EDIN_T3_DSSD_X15_E 0.0 1.0
+EDIN_T3_DSSD_X16_E 0.0 1.0
+EDIN_T3_DSSD_X17_E 0.0 1.0
+EDIN_T3_DSSD_X18_E 0.0 1.0
+EDIN_T3_DSSD_X19_E 0.0 1.0
+EDIN_T3_DSSD_X20_E 0.0 1.0
+EDIN_T3_DSSD_X21_E 0.0 1.0
+EDIN_T3_DSSD_X22_E 0.0 1.0
+EDIN_T3_DSSD_X23_E 0.0 1.0
+EDIN_T3_DSSD_X24_E 0.0 1.0
+EDIN_T3_DSSD_X25_E 0.0 1.0
+EDIN_T3_DSSD_X26_E 0.0 1.0
+EDIN_T3_DSSD_X27_E 0.0 1.0
+EDIN_T3_DSSD_X28_E 0.0 1.0
+EDIN_T3_DSSD_X29_E 0.0 1.0
+EDIN_T3_DSSD_X30_E 0.0 1.0
+EDIN_T3_DSSD_X31_E 0.0 1.0
+EDIN_T3_DSSD_X32_E 0.0 1.0
+EDIN_T3_DSSD_X33_E 0.0 1.0
+EDIN_T3_DSSD_X34_E 0.0 1.0
+EDIN_T3_DSSD_X35_E 0.0 1.0
+EDIN_T3_DSSD_X36_E 0.0 1.0
+EDIN_T3_DSSD_X37_E 0.0 1.0
+EDIN_T3_DSSD_X38_E 0.0 1.0
+EDIN_T3_DSSD_X39_E 0.0 1.0
+EDIN_T3_DSSD_X40_E 0.0 1.0
+EDIN_T3_DSSD_X41_E 0.0 1.0
+EDIN_T3_DSSD_X42_E 0.0 1.0
+EDIN_T3_DSSD_X43_E 0.0 1.0
+EDIN_T3_DSSD_X44_E 0.0 1.0
+EDIN_T3_DSSD_X45_E 0.0 1.0
+EDIN_T3_DSSD_X46_E 0.0 1.0
+EDIN_T3_DSSD_X47_E 0.0 1.0
+EDIN_T3_DSSD_X48_E 0.0 1.0
+EDIN_T3_DSSD_X49_E 0.0 1.0
+EDIN_T3_DSSD_X50_E 0.0 1.0
+EDIN_T3_DSSD_X51_E 0.0 1.0
+EDIN_T3_DSSD_X52_E 0.0 1.0
+EDIN_T3_DSSD_X53_E 0.0 1.0
+EDIN_T3_DSSD_X54_E 0.0 1.0
+EDIN_T3_DSSD_X55_E 0.0 1.0
+EDIN_T3_DSSD_X56_E 0.0 1.0
+EDIN_T3_DSSD_X57_E 0.0 1.0
+EDIN_T3_DSSD_X58_E 0.0 1.0
+EDIN_T3_DSSD_X59_E 0.0 1.0
+EDIN_T3_DSSD_X60_E 0.0 1.0
+EDIN_T3_DSSD_X61_E 0.0 1.0
+EDIN_T3_DSSD_X62_E 0.0 1.0
+EDIN_T3_DSSD_X63_E 0.0 1.0
+EDIN_T3_DSSD_X64_E 0.0 1.0
+EDIN_T3_DSSD_X65_E 0.0 1.0
+EDIN_T3_DSSD_X66_E 0.0 1.0
+EDIN_T3_DSSD_X67_E 0.0 1.0
+EDIN_T3_DSSD_X68_E 0.0 1.0
+EDIN_T3_DSSD_X69_E 0.0 1.0
+EDIN_T3_DSSD_X70_E 0.0 1.0
+EDIN_T3_DSSD_X71_E 0.0 1.0
+EDIN_T3_DSSD_X72_E 0.0 1.0
+EDIN_T3_DSSD_X73_E 0.0 1.0
+EDIN_T3_DSSD_X74_E 0.0 1.0
+EDIN_T3_DSSD_X75_E 0.0 1.0
+EDIN_T3_DSSD_X76_E 0.0 1.0
+EDIN_T3_DSSD_X77_E 0.0 1.0
+EDIN_T3_DSSD_X78_E 0.0 1.0
+EDIN_T3_DSSD_X79_E 0.0 1.0
+EDIN_T3_DSSD_X80_E 0.0 1.0
+EDIN_T3_DSSD_X81_E 0.0 1.0
+EDIN_T3_DSSD_X82_E 0.0 1.0
+EDIN_T3_DSSD_X83_E 0.0 1.0
+EDIN_T3_DSSD_X84_E 0.0 1.0
+EDIN_T3_DSSD_X85_E 0.0 1.0
+EDIN_T3_DSSD_X86_E 0.0 1.0
+EDIN_T3_DSSD_X87_E 0.0 1.0
+EDIN_T3_DSSD_X88_E 0.0 1.0
+EDIN_T3_DSSD_X89_E 0.0 1.0
+EDIN_T3_DSSD_X90_E 0.0 1.0
+EDIN_T3_DSSD_X91_E 0.0 1.0
+EDIN_T3_DSSD_X92_E 0.0 1.0
+EDIN_T3_DSSD_X93_E 0.0 1.0
+EDIN_T3_DSSD_X94_E 0.0 1.0
+EDIN_T3_DSSD_X95_E 0.0 1.0
+EDIN_T3_DSSD_X96_E 0.0 1.0
+EDIN_T3_DSSD_X97_E 0.0 1.0
+EDIN_T3_DSSD_X98_E 0.0 1.0
+EDIN_T3_DSSD_X99_E 0.0 1.0
+EDIN_T3_DSSD_X100_E 0.0 1.0
+EDIN_T3_DSSD_X101_E 0.0 1.0
+EDIN_T3_DSSD_X102_E 0.0 1.0
+EDIN_T3_DSSD_X103_E 0.0 1.0
+EDIN_T3_DSSD_X104_E 0.0 1.0
+EDIN_T3_DSSD_X105_E 0.0 1.0
+EDIN_T3_DSSD_X106_E 0.0 1.0
+EDIN_T3_DSSD_X107_E 0.0 1.0
+EDIN_T3_DSSD_X108_E 0.0 1.0
+EDIN_T3_DSSD_X109_E 0.0 1.0
+EDIN_T3_DSSD_X110_E 0.0 1.0
+EDIN_T3_DSSD_X111_E 0.0 1.0
+EDIN_T3_DSSD_X112_E 0.0 1.0
+EDIN_T3_DSSD_X113_E 0.0 1.0
+EDIN_T3_DSSD_X114_E 0.0 1.0
+EDIN_T3_DSSD_X115_E 0.0 1.0
+EDIN_T3_DSSD_X116_E 0.0 1.0
+EDIN_T3_DSSD_X117_E 0.0 1.0
+EDIN_T3_DSSD_X118_E 0.0 1.0
+EDIN_T3_DSSD_X119_E 0.0 1.0
+EDIN_T3_DSSD_X120_E 0.0 1.0
+EDIN_T3_DSSD_X121_E 0.0 1.0
+EDIN_T3_DSSD_X122_E 0.0 1.0
+EDIN_T3_DSSD_X123_E 0.0 1.0
+EDIN_T3_DSSD_X124_E 0.0 1.0
+EDIN_T3_DSSD_X125_E 0.0 1.0
+EDIN_T3_DSSD_X126_E 0.0 1.0
+EDIN_T3_DSSD_X127_E 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M3_E/Cal_Str_Y_E_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e92cfb619e555d1016bc0755487fd9489a56d42b
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_Y0_E 0.0 1.0
+EDIN_T3_DSSD_Y1_E 0.0 1.0
+EDIN_T3_DSSD_Y2_E 0.0 1.0
+EDIN_T3_DSSD_Y3_E 0.0 1.0
+EDIN_T3_DSSD_Y4_E 0.0 1.0
+EDIN_T3_DSSD_Y5_E 0.0 1.0
+EDIN_T3_DSSD_Y6_E 0.0 1.0
+EDIN_T3_DSSD_Y7_E 0.0 1.0
+EDIN_T3_DSSD_Y8_E 0.0 1.0
+EDIN_T3_DSSD_Y9_E 0.0 1.0
+EDIN_T3_DSSD_Y10_E 0.0 1.0
+EDIN_T3_DSSD_Y11_E 0.0 1.0
+EDIN_T3_DSSD_Y12_E 0.0 1.0
+EDIN_T3_DSSD_Y13_E 0.0 1.0
+EDIN_T3_DSSD_Y14_E 0.0 1.0
+EDIN_T3_DSSD_Y15_E 0.0 1.0
+EDIN_T3_DSSD_Y16_E 0.0 1.0
+EDIN_T3_DSSD_Y17_E 0.0 1.0
+EDIN_T3_DSSD_Y18_E 0.0 1.0
+EDIN_T3_DSSD_Y19_E 0.0 1.0
+EDIN_T3_DSSD_Y20_E 0.0 1.0
+EDIN_T3_DSSD_Y21_E 0.0 1.0
+EDIN_T3_DSSD_Y22_E 0.0 1.0
+EDIN_T3_DSSD_Y23_E 0.0 1.0
+EDIN_T3_DSSD_Y24_E 0.0 1.0
+EDIN_T3_DSSD_Y25_E 0.0 1.0
+EDIN_T3_DSSD_Y26_E 0.0 1.0
+EDIN_T3_DSSD_Y27_E 0.0 1.0
+EDIN_T3_DSSD_Y28_E 0.0 1.0
+EDIN_T3_DSSD_Y29_E 0.0 1.0
+EDIN_T3_DSSD_Y30_E 0.0 1.0
+EDIN_T3_DSSD_Y31_E 0.0 1.0
+EDIN_T3_DSSD_Y32_E 0.0 1.0
+EDIN_T3_DSSD_Y33_E 0.0 1.0
+EDIN_T3_DSSD_Y34_E 0.0 1.0
+EDIN_T3_DSSD_Y35_E 0.0 1.0
+EDIN_T3_DSSD_Y36_E 0.0 1.0
+EDIN_T3_DSSD_Y37_E 0.0 1.0
+EDIN_T3_DSSD_Y38_E 0.0 1.0
+EDIN_T3_DSSD_Y39_E 0.0 1.0
+EDIN_T3_DSSD_Y40_E 0.0 1.0
+EDIN_T3_DSSD_Y41_E 0.0 1.0
+EDIN_T3_DSSD_Y42_E 0.0 1.0
+EDIN_T3_DSSD_Y43_E 0.0 1.0
+EDIN_T3_DSSD_Y44_E 0.0 1.0
+EDIN_T3_DSSD_Y45_E 0.0 1.0
+EDIN_T3_DSSD_Y46_E 0.0 1.0
+EDIN_T3_DSSD_Y47_E 0.0 1.0
+EDIN_T3_DSSD_Y48_E 0.0 1.0
+EDIN_T3_DSSD_Y49_E 0.0 1.0
+EDIN_T3_DSSD_Y50_E 0.0 1.0
+EDIN_T3_DSSD_Y51_E 0.0 1.0
+EDIN_T3_DSSD_Y52_E 0.0 1.0
+EDIN_T3_DSSD_Y53_E 0.0 1.0
+EDIN_T3_DSSD_Y54_E 0.0 1.0
+EDIN_T3_DSSD_Y55_E 0.0 1.0
+EDIN_T3_DSSD_Y56_E 0.0 1.0
+EDIN_T3_DSSD_Y57_E 0.0 1.0
+EDIN_T3_DSSD_Y58_E 0.0 1.0
+EDIN_T3_DSSD_Y59_E 0.0 1.0
+EDIN_T3_DSSD_Y60_E 0.0 1.0
+EDIN_T3_DSSD_Y61_E 0.0 1.0
+EDIN_T3_DSSD_Y62_E 0.0 1.0
+EDIN_T3_DSSD_Y63_E 0.0 1.0
+EDIN_T3_DSSD_Y64_E 0.0 1.0
+EDIN_T3_DSSD_Y65_E 0.0 1.0
+EDIN_T3_DSSD_Y66_E 0.0 1.0
+EDIN_T3_DSSD_Y67_E 0.0 1.0
+EDIN_T3_DSSD_Y68_E 0.0 1.0
+EDIN_T3_DSSD_Y69_E 0.0 1.0
+EDIN_T3_DSSD_Y70_E 0.0 1.0
+EDIN_T3_DSSD_Y71_E 0.0 1.0
+EDIN_T3_DSSD_Y72_E 0.0 1.0
+EDIN_T3_DSSD_Y73_E 0.0 1.0
+EDIN_T3_DSSD_Y74_E 0.0 1.0
+EDIN_T3_DSSD_Y75_E 0.0 1.0
+EDIN_T3_DSSD_Y76_E 0.0 1.0
+EDIN_T3_DSSD_Y77_E 0.0 1.0
+EDIN_T3_DSSD_Y78_E 0.0 1.0
+EDIN_T3_DSSD_Y79_E 0.0 1.0
+EDIN_T3_DSSD_Y80_E 0.0 1.0
+EDIN_T3_DSSD_Y81_E 0.0 1.0
+EDIN_T3_DSSD_Y82_E 0.0 1.0
+EDIN_T3_DSSD_Y83_E 0.0 1.0
+EDIN_T3_DSSD_Y84_E 0.0 1.0
+EDIN_T3_DSSD_Y85_E 0.0 1.0
+EDIN_T3_DSSD_Y86_E 0.0 1.0
+EDIN_T3_DSSD_Y87_E 0.0 1.0
+EDIN_T3_DSSD_Y88_E 0.0 1.0
+EDIN_T3_DSSD_Y89_E 0.0 1.0
+EDIN_T3_DSSD_Y90_E 0.0 1.0
+EDIN_T3_DSSD_Y91_E 0.0 1.0
+EDIN_T3_DSSD_Y92_E 0.0 1.0
+EDIN_T3_DSSD_Y93_E 0.0 1.0
+EDIN_T3_DSSD_Y94_E 0.0 1.0
+EDIN_T3_DSSD_Y95_E 0.0 1.0
+EDIN_T3_DSSD_Y96_E 0.0 1.0
+EDIN_T3_DSSD_Y97_E 0.0 1.0
+EDIN_T3_DSSD_Y98_E 0.0 1.0
+EDIN_T3_DSSD_Y99_E 0.0 1.0
+EDIN_T3_DSSD_Y100_E 0.0 1.0
+EDIN_T3_DSSD_Y101_E 0.0 1.0
+EDIN_T3_DSSD_Y102_E 0.0 1.0
+EDIN_T3_DSSD_Y103_E 0.0 1.0
+EDIN_T3_DSSD_Y104_E 0.0 1.0
+EDIN_T3_DSSD_Y105_E 0.0 1.0
+EDIN_T3_DSSD_Y106_E 0.0 1.0
+EDIN_T3_DSSD_Y107_E 0.0 1.0
+EDIN_T3_DSSD_Y108_E 0.0 1.0
+EDIN_T3_DSSD_Y109_E 0.0 1.0
+EDIN_T3_DSSD_Y110_E 0.0 1.0
+EDIN_T3_DSSD_Y111_E 0.0 1.0
+EDIN_T3_DSSD_Y112_E 0.0 1.0
+EDIN_T3_DSSD_Y113_E 0.0 1.0
+EDIN_T3_DSSD_Y114_E 0.0 1.0
+EDIN_T3_DSSD_Y115_E 0.0 1.0
+EDIN_T3_DSSD_Y116_E 0.0 1.0
+EDIN_T3_DSSD_Y117_E 0.0 1.0
+EDIN_T3_DSSD_Y118_E 0.0 1.0
+EDIN_T3_DSSD_Y119_E 0.0 1.0
+EDIN_T3_DSSD_Y120_E 0.0 1.0
+EDIN_T3_DSSD_Y121_E 0.0 1.0
+EDIN_T3_DSSD_Y122_E 0.0 1.0
+EDIN_T3_DSSD_Y123_E 0.0 1.0
+EDIN_T3_DSSD_Y124_E 0.0 1.0
+EDIN_T3_DSSD_Y125_E 0.0 1.0
+EDIN_T3_DSSD_Y126_E 0.0 1.0
+EDIN_T3_DSSD_Y127_E 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M3_T/Cal_Str_X_T_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..67ada2c46f4b6fa7b88dabcca667760680a1a643
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_X0_T 0.0 1.0
+EDIN_T3_DSSD_X1_T 0.0 1.0
+EDIN_T3_DSSD_X2_T 0.0 1.0
+EDIN_T3_DSSD_X3_T 0.0 1.0
+EDIN_T3_DSSD_X4_T 0.0 1.0
+EDIN_T3_DSSD_X5_T 0.0 1.0
+EDIN_T3_DSSD_X6_T 0.0 1.0
+EDIN_T3_DSSD_X7_T 0.0 1.0
+EDIN_T3_DSSD_X8_T 0.0 1.0
+EDIN_T3_DSSD_X9_T 0.0 1.0
+EDIN_T3_DSSD_X10_T 0.0 1.0
+EDIN_T3_DSSD_X11_T 0.0 1.0
+EDIN_T3_DSSD_X12_T 0.0 1.0
+EDIN_T3_DSSD_X13_T 0.0 1.0
+EDIN_T3_DSSD_X14_T 0.0 1.0
+EDIN_T3_DSSD_X15_T 0.0 1.0
+EDIN_T3_DSSD_X16_T 0.0 1.0
+EDIN_T3_DSSD_X17_T 0.0 1.0
+EDIN_T3_DSSD_X18_T 0.0 1.0
+EDIN_T3_DSSD_X19_T 0.0 1.0
+EDIN_T3_DSSD_X20_T 0.0 1.0
+EDIN_T3_DSSD_X21_T 0.0 1.0
+EDIN_T3_DSSD_X22_T 0.0 1.0
+EDIN_T3_DSSD_X23_T 0.0 1.0
+EDIN_T3_DSSD_X24_T 0.0 1.0
+EDIN_T3_DSSD_X25_T 0.0 1.0
+EDIN_T3_DSSD_X26_T 0.0 1.0
+EDIN_T3_DSSD_X27_T 0.0 1.0
+EDIN_T3_DSSD_X28_T 0.0 1.0
+EDIN_T3_DSSD_X29_T 0.0 1.0
+EDIN_T3_DSSD_X30_T 0.0 1.0
+EDIN_T3_DSSD_X31_T 0.0 1.0
+EDIN_T3_DSSD_X32_T 0.0 1.0
+EDIN_T3_DSSD_X33_T 0.0 1.0
+EDIN_T3_DSSD_X34_T 0.0 1.0
+EDIN_T3_DSSD_X35_T 0.0 1.0
+EDIN_T3_DSSD_X36_T 0.0 1.0
+EDIN_T3_DSSD_X37_T 0.0 1.0
+EDIN_T3_DSSD_X38_T 0.0 1.0
+EDIN_T3_DSSD_X39_T 0.0 1.0
+EDIN_T3_DSSD_X40_T 0.0 1.0
+EDIN_T3_DSSD_X41_T 0.0 1.0
+EDIN_T3_DSSD_X42_T 0.0 1.0
+EDIN_T3_DSSD_X43_T 0.0 1.0
+EDIN_T3_DSSD_X44_T 0.0 1.0
+EDIN_T3_DSSD_X45_T 0.0 1.0
+EDIN_T3_DSSD_X46_T 0.0 1.0
+EDIN_T3_DSSD_X47_T 0.0 1.0
+EDIN_T3_DSSD_X48_T 0.0 1.0
+EDIN_T3_DSSD_X49_T 0.0 1.0
+EDIN_T3_DSSD_X50_T 0.0 1.0
+EDIN_T3_DSSD_X51_T 0.0 1.0
+EDIN_T3_DSSD_X52_T 0.0 1.0
+EDIN_T3_DSSD_X53_T 0.0 1.0
+EDIN_T3_DSSD_X54_T 0.0 1.0
+EDIN_T3_DSSD_X55_T 0.0 1.0
+EDIN_T3_DSSD_X56_T 0.0 1.0
+EDIN_T3_DSSD_X57_T 0.0 1.0
+EDIN_T3_DSSD_X58_T 0.0 1.0
+EDIN_T3_DSSD_X59_T 0.0 1.0
+EDIN_T3_DSSD_X60_T 0.0 1.0
+EDIN_T3_DSSD_X61_T 0.0 1.0
+EDIN_T3_DSSD_X62_T 0.0 1.0
+EDIN_T3_DSSD_X63_T 0.0 1.0
+EDIN_T3_DSSD_X64_T 0.0 1.0
+EDIN_T3_DSSD_X65_T 0.0 1.0
+EDIN_T3_DSSD_X66_T 0.0 1.0
+EDIN_T3_DSSD_X67_T 0.0 1.0
+EDIN_T3_DSSD_X68_T 0.0 1.0
+EDIN_T3_DSSD_X69_T 0.0 1.0
+EDIN_T3_DSSD_X70_T 0.0 1.0
+EDIN_T3_DSSD_X71_T 0.0 1.0
+EDIN_T3_DSSD_X72_T 0.0 1.0
+EDIN_T3_DSSD_X73_T 0.0 1.0
+EDIN_T3_DSSD_X74_T 0.0 1.0
+EDIN_T3_DSSD_X75_T 0.0 1.0
+EDIN_T3_DSSD_X76_T 0.0 1.0
+EDIN_T3_DSSD_X77_T 0.0 1.0
+EDIN_T3_DSSD_X78_T 0.0 1.0
+EDIN_T3_DSSD_X79_T 0.0 1.0
+EDIN_T3_DSSD_X80_T 0.0 1.0
+EDIN_T3_DSSD_X81_T 0.0 1.0
+EDIN_T3_DSSD_X82_T 0.0 1.0
+EDIN_T3_DSSD_X83_T 0.0 1.0
+EDIN_T3_DSSD_X84_T 0.0 1.0
+EDIN_T3_DSSD_X85_T 0.0 1.0
+EDIN_T3_DSSD_X86_T 0.0 1.0
+EDIN_T3_DSSD_X87_T 0.0 1.0
+EDIN_T3_DSSD_X88_T 0.0 1.0
+EDIN_T3_DSSD_X89_T 0.0 1.0
+EDIN_T3_DSSD_X90_T 0.0 1.0
+EDIN_T3_DSSD_X91_T 0.0 1.0
+EDIN_T3_DSSD_X92_T 0.0 1.0
+EDIN_T3_DSSD_X93_T 0.0 1.0
+EDIN_T3_DSSD_X94_T 0.0 1.0
+EDIN_T3_DSSD_X95_T 0.0 1.0
+EDIN_T3_DSSD_X96_T 0.0 1.0
+EDIN_T3_DSSD_X97_T 0.0 1.0
+EDIN_T3_DSSD_X98_T 0.0 1.0
+EDIN_T3_DSSD_X99_T 0.0 1.0
+EDIN_T3_DSSD_X100_T 0.0 1.0
+EDIN_T3_DSSD_X101_T 0.0 1.0
+EDIN_T3_DSSD_X102_T 0.0 1.0
+EDIN_T3_DSSD_X103_T 0.0 1.0
+EDIN_T3_DSSD_X104_T 0.0 1.0
+EDIN_T3_DSSD_X105_T 0.0 1.0
+EDIN_T3_DSSD_X106_T 0.0 1.0
+EDIN_T3_DSSD_X107_T 0.0 1.0
+EDIN_T3_DSSD_X108_T 0.0 1.0
+EDIN_T3_DSSD_X109_T 0.0 1.0
+EDIN_T3_DSSD_X110_T 0.0 1.0
+EDIN_T3_DSSD_X111_T 0.0 1.0
+EDIN_T3_DSSD_X112_T 0.0 1.0
+EDIN_T3_DSSD_X113_T 0.0 1.0
+EDIN_T3_DSSD_X114_T 0.0 1.0
+EDIN_T3_DSSD_X115_T 0.0 1.0
+EDIN_T3_DSSD_X116_T 0.0 1.0
+EDIN_T3_DSSD_X117_T 0.0 1.0
+EDIN_T3_DSSD_X118_T 0.0 1.0
+EDIN_T3_DSSD_X119_T 0.0 1.0
+EDIN_T3_DSSD_X120_T 0.0 1.0
+EDIN_T3_DSSD_X121_T 0.0 1.0
+EDIN_T3_DSSD_X122_T 0.0 1.0
+EDIN_T3_DSSD_X123_T 0.0 1.0
+EDIN_T3_DSSD_X124_T 0.0 1.0
+EDIN_T3_DSSD_X125_T 0.0 1.0
+EDIN_T3_DSSD_X126_T 0.0 1.0
+EDIN_T3_DSSD_X127_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..fcf2c872677050893aca7c1509cd78c9585f6d94
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_Y0_T 0.0 1.0
+EDIN_T3_DSSD_Y1_T 0.0 1.0
+EDIN_T3_DSSD_Y2_T 0.0 1.0
+EDIN_T3_DSSD_Y3_T 0.0 1.0
+EDIN_T3_DSSD_Y4_T 0.0 1.0
+EDIN_T3_DSSD_Y5_T 0.0 1.0
+EDIN_T3_DSSD_Y6_T 0.0 1.0
+EDIN_T3_DSSD_Y7_T 0.0 1.0
+EDIN_T3_DSSD_Y8_T 0.0 1.0
+EDIN_T3_DSSD_Y9_T 0.0 1.0
+EDIN_T3_DSSD_Y10_T 0.0 1.0
+EDIN_T3_DSSD_Y11_T 0.0 1.0
+EDIN_T3_DSSD_Y12_T 0.0 1.0
+EDIN_T3_DSSD_Y13_T 0.0 1.0
+EDIN_T3_DSSD_Y14_T 0.0 1.0
+EDIN_T3_DSSD_Y15_T 0.0 1.0
+EDIN_T3_DSSD_Y16_T 0.0 1.0
+EDIN_T3_DSSD_Y17_T 0.0 1.0
+EDIN_T3_DSSD_Y18_T 0.0 1.0
+EDIN_T3_DSSD_Y19_T 0.0 1.0
+EDIN_T3_DSSD_Y20_T 0.0 1.0
+EDIN_T3_DSSD_Y21_T 0.0 1.0
+EDIN_T3_DSSD_Y22_T 0.0 1.0
+EDIN_T3_DSSD_Y23_T 0.0 1.0
+EDIN_T3_DSSD_Y24_T 0.0 1.0
+EDIN_T3_DSSD_Y25_T 0.0 1.0
+EDIN_T3_DSSD_Y26_T 0.0 1.0
+EDIN_T3_DSSD_Y27_T 0.0 1.0
+EDIN_T3_DSSD_Y28_T 0.0 1.0
+EDIN_T3_DSSD_Y29_T 0.0 1.0
+EDIN_T3_DSSD_Y30_T 0.0 1.0
+EDIN_T3_DSSD_Y31_T 0.0 1.0
+EDIN_T3_DSSD_Y32_T 0.0 1.0
+EDIN_T3_DSSD_Y33_T 0.0 1.0
+EDIN_T3_DSSD_Y34_T 0.0 1.0
+EDIN_T3_DSSD_Y35_T 0.0 1.0
+EDIN_T3_DSSD_Y36_T 0.0 1.0
+EDIN_T3_DSSD_Y37_T 0.0 1.0
+EDIN_T3_DSSD_Y38_T 0.0 1.0
+EDIN_T3_DSSD_Y39_T 0.0 1.0
+EDIN_T3_DSSD_Y40_T 0.0 1.0
+EDIN_T3_DSSD_Y41_T 0.0 1.0
+EDIN_T3_DSSD_Y42_T 0.0 1.0
+EDIN_T3_DSSD_Y43_T 0.0 1.0
+EDIN_T3_DSSD_Y44_T 0.0 1.0
+EDIN_T3_DSSD_Y45_T 0.0 1.0
+EDIN_T3_DSSD_Y46_T 0.0 1.0
+EDIN_T3_DSSD_Y47_T 0.0 1.0
+EDIN_T3_DSSD_Y48_T 0.0 1.0
+EDIN_T3_DSSD_Y49_T 0.0 1.0
+EDIN_T3_DSSD_Y50_T 0.0 1.0
+EDIN_T3_DSSD_Y51_T 0.0 1.0
+EDIN_T3_DSSD_Y52_T 0.0 1.0
+EDIN_T3_DSSD_Y53_T 0.0 1.0
+EDIN_T3_DSSD_Y54_T 0.0 1.0
+EDIN_T3_DSSD_Y55_T 0.0 1.0
+EDIN_T3_DSSD_Y56_T 0.0 1.0
+EDIN_T3_DSSD_Y57_T 0.0 1.0
+EDIN_T3_DSSD_Y58_T 0.0 1.0
+EDIN_T3_DSSD_Y59_T 0.0 1.0
+EDIN_T3_DSSD_Y60_T 0.0 1.0
+EDIN_T3_DSSD_Y61_T 0.0 1.0
+EDIN_T3_DSSD_Y62_T 0.0 1.0
+EDIN_T3_DSSD_Y63_T 0.0 1.0
+EDIN_T3_DSSD_Y64_T 0.0 1.0
+EDIN_T3_DSSD_Y65_T 0.0 1.0
+EDIN_T3_DSSD_Y66_T 0.0 1.0
+EDIN_T3_DSSD_Y67_T 0.0 1.0
+EDIN_T3_DSSD_Y68_T 0.0 1.0
+EDIN_T3_DSSD_Y69_T 0.0 1.0
+EDIN_T3_DSSD_Y70_T 0.0 1.0
+EDIN_T3_DSSD_Y71_T 0.0 1.0
+EDIN_T3_DSSD_Y72_T 0.0 1.0
+EDIN_T3_DSSD_Y73_T 0.0 1.0
+EDIN_T3_DSSD_Y74_T 0.0 1.0
+EDIN_T3_DSSD_Y75_T 0.0 1.0
+EDIN_T3_DSSD_Y76_T 0.0 1.0
+EDIN_T3_DSSD_Y77_T 0.0 1.0
+EDIN_T3_DSSD_Y78_T 0.0 1.0
+EDIN_T3_DSSD_Y79_T 0.0 1.0
+EDIN_T3_DSSD_Y80_T 0.0 1.0
+EDIN_T3_DSSD_Y81_T 0.0 1.0
+EDIN_T3_DSSD_Y82_T 0.0 1.0
+EDIN_T3_DSSD_Y83_T 0.0 1.0
+EDIN_T3_DSSD_Y84_T 0.0 1.0
+EDIN_T3_DSSD_Y85_T 0.0 1.0
+EDIN_T3_DSSD_Y86_T 0.0 1.0
+EDIN_T3_DSSD_Y87_T 0.0 1.0
+EDIN_T3_DSSD_Y88_T 0.0 1.0
+EDIN_T3_DSSD_Y89_T 0.0 1.0
+EDIN_T3_DSSD_Y90_T 0.0 1.0
+EDIN_T3_DSSD_Y91_T 0.0 1.0
+EDIN_T3_DSSD_Y92_T 0.0 1.0
+EDIN_T3_DSSD_Y93_T 0.0 1.0
+EDIN_T3_DSSD_Y94_T 0.0 1.0
+EDIN_T3_DSSD_Y95_T 0.0 1.0
+EDIN_T3_DSSD_Y96_T 0.0 1.0
+EDIN_T3_DSSD_Y97_T 0.0 1.0
+EDIN_T3_DSSD_Y98_T 0.0 1.0
+EDIN_T3_DSSD_Y99_T 0.0 1.0
+EDIN_T3_DSSD_Y100_T 0.0 1.0
+EDIN_T3_DSSD_Y101_T 0.0 1.0
+EDIN_T3_DSSD_Y102_T 0.0 1.0
+EDIN_T3_DSSD_Y103_T 0.0 1.0
+EDIN_T3_DSSD_Y104_T 0.0 1.0
+EDIN_T3_DSSD_Y105_T 0.0 1.0
+EDIN_T3_DSSD_Y106_T 0.0 1.0
+EDIN_T3_DSSD_Y107_T 0.0 1.0
+EDIN_T3_DSSD_Y108_T 0.0 1.0
+EDIN_T3_DSSD_Y109_T 0.0 1.0
+EDIN_T3_DSSD_Y110_T 0.0 1.0
+EDIN_T3_DSSD_Y111_T 0.0 1.0
+EDIN_T3_DSSD_Y112_T 0.0 1.0
+EDIN_T3_DSSD_Y113_T 0.0 1.0
+EDIN_T3_DSSD_Y114_T 0.0 1.0
+EDIN_T3_DSSD_Y115_T 0.0 1.0
+EDIN_T3_DSSD_Y116_T 0.0 1.0
+EDIN_T3_DSSD_Y117_T 0.0 1.0
+EDIN_T3_DSSD_Y118_T 0.0 1.0
+EDIN_T3_DSSD_Y119_T 0.0 1.0
+EDIN_T3_DSSD_Y120_T 0.0 1.0
+EDIN_T3_DSSD_Y121_T 0.0 1.0
+EDIN_T3_DSSD_Y122_T 0.0 1.0
+EDIN_T3_DSSD_Y123_T 0.0 1.0
+EDIN_T3_DSSD_Y124_T 0.0 1.0
+EDIN_T3_DSSD_Y125_T 0.0 1.0
+EDIN_T3_DSSD_Y126_T 0.0 1.0
+EDIN_T3_DSSD_Y127_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/.DS_Store b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..18187193b9adbafae392d0563b75c3ad7c8e4415
Binary files /dev/null and b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/.DS_Store differ
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/.root_hist b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..26bba7ed330471cd0bf9199205dbefbd3ba696f7
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/.root_hist
@@ -0,0 +1,35 @@
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0012","MUST2")
+.ls
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0012","MUST2")
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0012","MUST2")
+.q
+.L TimeCalibrator.C+
+TimeCalibrator("r0012","X")
+.q
+.L TimeCalibrator.C+
+TimeCalibrator("r0013","Y")
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0013","MUST2")
+TimeCalibrator("r0013","Y")
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0015","MUST2")
+.L TimeCalibrator.C+
+TimeCalibrator("r0015","X",32,"MUST2",3,3)
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0016","MUST2")
+.L TimeCalibrator.C+
+TimeCalibrator("r0016","Y",32,"MUST2",3,3)
+ExtractMust2Histos("r0017","MUST2")
+TimeCalibrator("r0017","Y",32,"MUST2",3,3)
+TimeCalibrator("r0017","X",32,"MUST2",4,4)
+ExtractMust2Histos("r0018","MUST2")
+TimeCalibrator("r0018","Y",32,"MUST2",4,4)
+.q
+.q
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/.DS_Store b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/.DS_Store differ
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2006456bd1355a61abcd41fe2b8e83596625fc3d
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+EDIN_T0_DSSD_X1_T 926.099 -0.111982
+EDIN_T0_DSSD_X2_T 869.874 -0.105192
+EDIN_T0_DSSD_X3_T 867.818 -0.104955
+EDIN_T0_DSSD_X4_T 937.107 -0.113338
+EDIN_T0_DSSD_X5_T 887.963 -0.107397
+EDIN_T0_DSSD_X6_T 935.505 -0.11314
+EDIN_T0_DSSD_X7_T 876.58 -0.106033
+EDIN_T0_DSSD_X8_T 932.855 -0.112807
+EDIN_T0_DSSD_X9_T 878.364 -0.106227
+EDIN_T0_DSSD_X10_T 925.852 -0.111943
+EDIN_T0_DSSD_X11_T 892.804 -0.108005
+EDIN_T0_DSSD_X12_T 921.22 -0.111378
+EDIN_T0_DSSD_X13_T 894.475 -0.108195
+EDIN_T0_DSSD_X14_T 913.548 -0.110456
+EDIN_T0_DSSD_X15_T 892.476 -0.107979
+EDIN_T0_DSSD_X16_T 922.196 -0.111499
+EDIN_T0_DSSD_X17_T 895.157 -0.108302
+EDIN_T0_DSSD_X18_T 913.814 -0.110458
+EDIN_T0_DSSD_X19_T 895.419 -0.108334
+EDIN_T0_DSSD_X20_T 909.716 -0.109955
+EDIN_T0_DSSD_X21_T 894.752 -0.108243
+EDIN_T0_DSSD_X22_T 907.059 -0.109652
+EDIN_T0_DSSD_X23_T 901.721 -0.109095
+EDIN_T0_DSSD_X24_T 903.944 -0.109295
+EDIN_T0_DSSD_X25_T 896.865 -0.108505
+EDIN_T0_DSSD_X26_T 903.08 -0.109464
+EDIN_T0_DSSD_X27_T 891.69 -0.107877
+EDIN_T0_DSSD_X28_T 890.381 -0.107622
+EDIN_T0_DSSD_X29_T 894.258 -0.108187
+EDIN_T0_DSSD_X30_T 884.86 -0.106942
+EDIN_T0_DSSD_X31_T 881.631 -0.106556
+EDIN_T0_DSSD_X32_T 894.901 -0.10826
+EDIN_T0_DSSD_X33_T 991.094 -0.119947
+EDIN_T0_DSSD_X34_T 943.498 -0.114176
+EDIN_T0_DSSD_X35_T 954.542 -0.115529
+EDIN_T0_DSSD_X36_T 995.135 -0.12045
+EDIN_T0_DSSD_X37_T 955.481 -0.115657
+EDIN_T0_DSSD_X38_T 998.458 -0.120851
+EDIN_T0_DSSD_X39_T 969.726 -0.117409
+EDIN_T0_DSSD_X40_T 1000.07 -0.121021
+EDIN_T0_DSSD_X41_T 969.528 -0.117367
+EDIN_T0_DSSD_X42_T 1004.27 -0.121545
+EDIN_T0_DSSD_X43_T 969.351 -0.117353
+EDIN_T0_DSSD_X44_T 1000.4 -0.121057
+EDIN_T0_DSSD_X45_T 974.621 -0.117969
+EDIN_T0_DSSD_X46_T 998.041 -0.120777
+EDIN_T0_DSSD_X47_T 976.758 -0.118246
+EDIN_T0_DSSD_X48_T 987.033 -0.119427
+EDIN_T0_DSSD_X49_T 975.237 -0.118065
+EDIN_T0_DSSD_X50_T 991.826 -0.120005
+EDIN_T0_DSSD_X51_T 979.286 -0.118546
+EDIN_T0_DSSD_X52_T 990.352 -0.119845
+EDIN_T0_DSSD_X53_T 984.065 -0.119138
+EDIN_T0_DSSD_X54_T 979.666 -0.118555
+EDIN_T0_DSSD_X55_T 983.533 -0.119075
+EDIN_T0_DSSD_X56_T 985.306 -0.119233
+EDIN_T0_DSSD_X57_T 991.106 -0.119996
+EDIN_T0_DSSD_X58_T 976.043 -0.118125
+EDIN_T0_DSSD_X59_T 976.115 -0.118174
+EDIN_T0_DSSD_X60_T 975.677 -0.118044
+EDIN_T0_DSSD_X61_T 987.246 -0.119531
+EDIN_T0_DSSD_X62_T 963.333 -0.116527
+EDIN_T0_DSSD_X63_T 952.87 -0.115275
+EDIN_T0_DSSD_X64_T 978.41 -0.118448
+EDIN_T0_DSSD_X65_T 919.481 -0.111151
+EDIN_T0_DSSD_X66_T 868.319 -0.105013
+EDIN_T0_DSSD_X67_T 877.769 -0.106169
+EDIN_T0_DSSD_X68_T 914.799 -0.110613
+EDIN_T0_DSSD_X69_T 878.126 -0.106212
+EDIN_T0_DSSD_X70_T 919.575 -0.11118
+EDIN_T0_DSSD_X71_T 883.907 -0.106905
+EDIN_T0_DSSD_X72_T 917.725 -0.110972
+EDIN_T0_DSSD_X73_T 893.227 -0.108043
+EDIN_T0_DSSD_X74_T 914.821 -0.110604
+EDIN_T0_DSSD_X75_T 900.551 -0.108935
+EDIN_T0_DSSD_X76_T 922.429 -0.111529
+EDIN_T0_DSSD_X77_T 896.432 -0.108442
+EDIN_T0_DSSD_X78_T 914.168 -0.1105
+EDIN_T0_DSSD_X79_T 894.569 -0.108194
+EDIN_T0_DSSD_X80_T 908.954 -0.109898
+EDIN_T0_DSSD_X81_T 903.782 -0.109336
+EDIN_T0_DSSD_X82_T 914.714 -0.110579
+EDIN_T0_DSSD_X83_T 901.487 -0.109053
+EDIN_T0_DSSD_X84_T 913.375 -0.110413
+EDIN_T0_DSSD_X85_T 907.332 -0.109771
+EDIN_T0_DSSD_X86_T 898.889 -0.108648
+EDIN_T0_DSSD_X87_T 904.852 -0.109449
+EDIN_T0_DSSD_X88_T 905.323 -0.109423
+EDIN_T0_DSSD_X89_T 902.075 -0.109128
+EDIN_T0_DSSD_X90_T 901.831 -0.109007
+EDIN_T0_DSSD_X91_T 906.169 -0.109641
+EDIN_T0_DSSD_X92_T 891.715 -0.107782
+EDIN_T0_DSSD_X93_T 902.566 -0.109177
+EDIN_T0_DSSD_X94_T 891.484 -0.107748
+EDIN_T0_DSSD_X95_T 888.355 -0.107364
+EDIN_T0_DSSD_X96_T 904.912 -0.109478
+EDIN_T0_DSSD_X97_T 965.16 -0.116744
+EDIN_T0_DSSD_X98_T 957.155 -0.115846
+EDIN_T0_DSSD_X99_T 962.206 -0.11646
+EDIN_T0_DSSD_X100_T 974.188 -0.117868
+EDIN_T0_DSSD_X101_T 971.895 -0.117644
+EDIN_T0_DSSD_X102_T 960.173 -0.116152
+EDIN_T0_DSSD_X103_T 973.151 -0.117791
+EDIN_T0_DSSD_X104_T 961.407 -0.116299
+EDIN_T0_DSSD_X105_T 976.443 -0.118174
+EDIN_T0_DSSD_X106_T 961.03 -0.11625
+EDIN_T0_DSSD_X107_T 989.114 -0.119717
+EDIN_T0_DSSD_X108_T 964.341 -0.11664
+EDIN_T0_DSSD_X109_T 993.741 -0.120284
+EDIN_T0_DSSD_X110_T 956.784 -0.115728
+EDIN_T0_DSSD_X111_T 994.917 -0.120426
+EDIN_T0_DSSD_X112_T 949.288 -0.114813
+EDIN_T0_DSSD_X113_T 1005.69 -0.121763
+EDIN_T0_DSSD_X114_T 942.586 -0.113978
+EDIN_T0_DSSD_X115_T 986.82 -0.119445
+EDIN_T0_DSSD_X116_T 949.396 -0.114818
+EDIN_T0_DSSD_X117_T 1003.89 -0.121535
+EDIN_T0_DSSD_X118_T 941.329 -0.113819
+EDIN_T0_DSSD_X119_T 994.316 -0.120381
+EDIN_T0_DSSD_X120_T 930.333 -0.112468
+EDIN_T0_DSSD_X121_T 1001.66 -0.121262
+EDIN_T0_DSSD_X122_T 936.88 -0.113281
+EDIN_T0_DSSD_X123_T 1005.75 -0.121766
+EDIN_T0_DSSD_X124_T 924.498 -0.111774
+EDIN_T0_DSSD_X125_T 996.228 -0.120615
+EDIN_T0_DSSD_X126_T 932.405 -0.112746
+EDIN_T0_DSSD_X127_T 922.493 -0.111515
+EDIN_T0_DSSD_X128_T 999.032 -0.120952
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..424fc6641f5ca9e3867e92ec2a43b0fcde60f557
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+EDIN_T0_DSSD_Y1_T 983.277 -0.118761
+EDIN_T0_DSSD_Y2_T 938.109 -0.113175
+EDIN_T0_DSSD_Y3_T 947.448 -0.114309
+EDIN_T0_DSSD_Y4_T 976.65 -0.117944
+EDIN_T0_DSSD_Y5_T 956.035 -0.115351
+EDIN_T0_DSSD_Y6_T 974.115 -0.117633
+EDIN_T0_DSSD_Y7_T 947.978 -0.11436
+EDIN_T0_DSSD_Y8_T 978.32 -0.11814
+EDIN_T0_DSSD_Y9_T 950.631 -0.114686
+EDIN_T0_DSSD_Y10_T 980.648 -0.118398
+EDIN_T0_DSSD_Y11_T 953.963 -0.115103
+EDIN_T0_DSSD_Y12_T 974.23 -0.117632
+EDIN_T0_DSSD_Y13_T 959.973 -0.115832
+EDIN_T0_DSSD_Y14_T 971.457 -0.117316
+EDIN_T0_DSSD_Y15_T 959.848 -0.115841
+EDIN_T0_DSSD_Y16_T 975.83 -0.117842
+EDIN_T0_DSSD_Y17_T 964.52 -0.116398
+EDIN_T0_DSSD_Y18_T 969.183 -0.117018
+EDIN_T0_DSSD_Y19_T 962.989 -0.116195
+EDIN_T0_DSSD_Y20_T 971.85 -0.117339
+EDIN_T0_DSSD_Y21_T 959.157 -0.115516
+EDIN_T0_DSSD_Y22_T 973.261 -0.117481
+EDIN_T0_DSSD_Y23_T 973.941 -0.117562
+EDIN_T0_DSSD_Y24_T 957.491 -0.115563
+EDIN_T0_DSSD_Y25_T 976.25 -0.117834
+EDIN_T0_DSSD_Y26_T 962.012 -0.116104
+EDIN_T0_DSSD_Y27_T 971.294 -0.11722
+EDIN_T0_DSSD_Y28_T 944.005 -0.113921
+EDIN_T0_DSSD_Y29_T 974.292 -0.11759
+EDIN_T0_DSSD_Y30_T 944.925 -0.114033
+EDIN_T0_DSSD_Y32_T 968.991 -0.116928
+EDIN_T0_DSSD_Y33_T 903.665 -0.109056
+EDIN_T0_DSSD_Y34_T 859.176 -0.103507
+EDIN_T0_DSSD_Y35_T 870.909 -0.104888
+EDIN_T0_DSSD_Y36_T 915.646 -0.110513
+EDIN_T0_DSSD_Y37_T 866.307 -0.104347
+EDIN_T0_DSSD_Y38_T 905.186 -0.10924
+EDIN_T0_DSSD_Y39_T 883.056 -0.106391
+EDIN_T0_DSSD_Y40_T 910.71 -0.109895
+EDIN_T0_DSSD_Y41_T 885.647 -0.106718
+EDIN_T0_DSSD_Y42_T 913.208 -0.110196
+EDIN_T0_DSSD_Y43_T 886.974 -0.106878
+EDIN_T0_DSSD_Y44_T 902.655 -0.108924
+EDIN_T0_DSSD_Y45_T 883.169 -0.106441
+EDIN_T0_DSSD_Y46_T 903.864 -0.109045
+EDIN_T0_DSSD_Y47_T 891.212 -0.107426
+EDIN_T0_DSSD_Y48_T 905.49 -0.109285
+EDIN_T0_DSSD_Y49_T 892.785 -0.107608
+EDIN_T0_DSSD_Y50_T 908.071 -0.109567
+EDIN_T0_DSSD_Y51_T 897.104 -0.108136
+EDIN_T0_DSSD_Y52_T 889.86 -0.107347
+EDIN_T0_DSSD_Y53_T 904.326 -0.109012
+EDIN_T0_DSSD_Y54_T 889.448 -0.107278
+EDIN_T0_DSSD_Y55_T 903.135 -0.108611
+EDIN_T0_DSSD_Y56_T 889.979 -0.107363
+EDIN_T0_DSSD_Y57_T 901.746 -0.108719
+EDIN_T0_DSSD_Y58_T 878.496 -0.105955
+EDIN_T0_DSSD_Y59_T 908.712 -0.109581
+EDIN_T0_DSSD_Y60_T 888.383 -0.107174
+EDIN_T0_DSSD_Y61_T 903.269 -0.108895
+EDIN_T0_DSSD_Y62_T 871.608 -0.105113
+EDIN_T0_DSSD_Y63_T 871.769 -0.105131
+EDIN_T0_DSSD_Y64_T 908.687 -0.109543
+EDIN_T0_DSSD_Y65_T 1001.6 -0.121097
+EDIN_T0_DSSD_Y66_T 970.056 -0.117145
+EDIN_T0_DSSD_Y67_T 986.117 -0.119118
+EDIN_T0_DSSD_Y68_T 994.499 -0.120247
+EDIN_T0_DSSD_Y69_T 981.373 -0.118534
+EDIN_T0_DSSD_Y70_T 997.331 -0.120579
+EDIN_T0_DSSD_Y71_T 995.859 -0.12031
+EDIN_T0_DSSD_Y72_T 995.389 -0.120327
+EDIN_T0_DSSD_Y73_T 999.672 -0.120777
+EDIN_T0_DSSD_Y74_T 1000.31 -0.120924
+EDIN_T0_DSSD_Y75_T 1002.22 -0.121085
+EDIN_T0_DSSD_Y76_T 989.884 -0.119656
+EDIN_T0_DSSD_Y77_T 998.019 -0.120569
+EDIN_T0_DSSD_Y78_T 981.143 -0.118591
+EDIN_T0_DSSD_Y79_T 1008.32 -0.121839
+EDIN_T0_DSSD_Y80_T 989.544 -0.119628
+EDIN_T0_DSSD_Y81_T 1004.28 -0.121339
+EDIN_T0_DSSD_Y82_T 985.816 -0.119156
+EDIN_T0_DSSD_Y83_T 1014.52 -0.122592
+EDIN_T0_DSSD_Y84_T 982.64 -0.118781
+EDIN_T0_DSSD_Y85_T 1025.22 -0.123897
+EDIN_T0_DSSD_Y86_T 983.206 -0.118825
+EDIN_T0_DSSD_Y87_T 1024.79 -0.123866
+EDIN_T0_DSSD_Y88_T 979.506 -0.118378
+EDIN_T0_DSSD_Y89_T 1019.8 -0.123256
+EDIN_T0_DSSD_Y90_T 976.674 -0.118028
+EDIN_T0_DSSD_Y91_T 1024.3 -0.123786
+EDIN_T0_DSSD_Y92_T 976.574 -0.118012
+EDIN_T0_DSSD_Y93_T 1021.08 -0.123408
+EDIN_T0_DSSD_Y94_T 970.82 -0.117302
+EDIN_T0_DSSD_Y95_T 963.864 -0.116469
+EDIN_T0_DSSD_Y96_T 1016.6 -0.122879
+EDIN_T0_DSSD_Y97_T 917.078 -0.110803
+EDIN_T0_DSSD_Y98_T 891.216 -0.107535
+EDIN_T0_DSSD_Y99_T 899.129 -0.108466
+EDIN_T0_DSSD_Y100_T 915.137 -0.110572
+EDIN_T0_DSSD_Y101_T 898.718 -0.108438
+EDIN_T0_DSSD_Y102_T 909.547 -0.109894
+EDIN_T0_DSSD_Y103_T 904.591 -0.109158
+EDIN_T0_DSSD_Y104_T 913.859 -0.110421
+EDIN_T0_DSSD_Y105_T 916.06 -0.110566
+EDIN_T0_DSSD_Y106_T 914.704 -0.11051
+EDIN_T0_DSSD_Y107_T 909.441 -0.109757
+EDIN_T0_DSSD_Y108_T 910.27 -0.109981
+EDIN_T0_DSSD_Y109_T 929.211 -0.112167
+EDIN_T0_DSSD_Y110_T 914.99 -0.110544
+EDIN_T0_DSSD_Y111_T 920.724 -0.111146
+EDIN_T0_DSSD_Y112_T 901.739 -0.108916
+EDIN_T0_DSSD_Y113_T 931.107 -0.112407
+EDIN_T0_DSSD_Y114_T 907.124 -0.10959
+EDIN_T0_DSSD_Y115_T 930.357 -0.112337
+EDIN_T0_DSSD_Y116_T 895.168 -0.108105
+EDIN_T0_DSSD_Y117_T 932.102 -0.112539
+EDIN_T0_DSSD_Y118_T 890.686 -0.10757
+EDIN_T0_DSSD_Y119_T 935.662 -0.112978
+EDIN_T0_DSSD_Y120_T 891.724 -0.107707
+EDIN_T0_DSSD_Y121_T 930.191 -0.112316
+EDIN_T0_DSSD_Y122_T 894.625 -0.108041
+EDIN_T0_DSSD_Y123_T 929.054 -0.112192
+EDIN_T0_DSSD_Y124_T 878.021 -0.106028
+EDIN_T0_DSSD_Y125_T 926.166 -0.111821
+EDIN_T0_DSSD_Y126_T 878.942 -0.106139
+EDIN_T0_DSSD_Y127_T 882.25 -0.106544
+EDIN_T0_DSSD_Y128_T 929.013 -0.112162
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0ffcc662b4d8c9e4a2b933405eb53eaeda853faa
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+EDIN_T1_DSSD_X1_T 916.574 -0.110777
+EDIN_T1_DSSD_X2_T 878.025 -0.106165
+EDIN_T1_DSSD_X3_T 877.927 -0.10618
+EDIN_T1_DSSD_X4_T 908.514 -0.109791
+EDIN_T1_DSSD_X5_T 893.294 -0.108064
+EDIN_T1_DSSD_X6_T 909.067 -0.109867
+EDIN_T1_DSSD_X7_T 876.051 -0.105941
+EDIN_T1_DSSD_X8_T 917.556 -0.110894
+EDIN_T1_DSSD_X9_T 893.827 -0.108105
+EDIN_T1_DSSD_X10_T 904.646 -0.109308
+EDIN_T1_DSSD_X11_T 899.59 -0.108823
+EDIN_T1_DSSD_X12_T 912.271 -0.110244
+EDIN_T1_DSSD_X13_T 891.87 -0.107861
+EDIN_T1_DSSD_X14_T 903.537 -0.10916
+EDIN_T1_DSSD_X15_T 896.377 -0.10842
+EDIN_T1_DSSD_X16_T 907.775 -0.1097
+EDIN_T1_DSSD_X17_T 899.273 -0.108779
+EDIN_T1_DSSD_X18_T 901.392 -0.108878
+EDIN_T1_DSSD_X19_T 898.912 -0.108754
+EDIN_T1_DSSD_X20_T 895.39 -0.10819
+EDIN_T1_DSSD_X21_T 907.617 -0.109783
+EDIN_T1_DSSD_X22_T 891.534 -0.107699
+EDIN_T1_DSSD_X23_T 899.789 -0.108855
+EDIN_T1_DSSD_X24_T 891.233 -0.107685
+EDIN_T1_DSSD_X25_T 909.299 -0.110019
+EDIN_T1_DSSD_X26_T 888.452 -0.107338
+EDIN_T1_DSSD_X27_T 907.769 -0.109854
+EDIN_T1_DSSD_X28_T 885.913 -0.107015
+EDIN_T1_DSSD_X29_T 905.232 -0.109528
+EDIN_T1_DSSD_X30_T 873.224 -0.105455
+EDIN_T1_DSSD_X31_T 868.163 -0.104838
+EDIN_T1_DSSD_X32_T 909.577 -0.110055
+EDIN_T1_DSSD_X33_T 984.794 -0.119148
+EDIN_T1_DSSD_X34_T 928.571 -0.11232
+EDIN_T1_DSSD_X35_T 942.493 -0.114015
+EDIN_T1_DSSD_X36_T 977.151 -0.118198
+EDIN_T1_DSSD_X37_T 944.985 -0.114341
+EDIN_T1_DSSD_X38_T 978.26 -0.118324
+EDIN_T1_DSSD_X39_T 956.226 -0.115712
+EDIN_T1_DSSD_X40_T 981.073 -0.118677
+EDIN_T1_DSSD_X41_T 956.679 -0.115744
+EDIN_T1_DSSD_X42_T 977.242 -0.11821
+EDIN_T1_DSSD_X43_T 958.458 -0.115962
+EDIN_T1_DSSD_X44_T 973.502 -0.117737
+EDIN_T1_DSSD_X45_T 971.702 -0.117589
+EDIN_T1_DSSD_X46_T 974.918 -0.117923
+EDIN_T1_DSSD_X47_T 966.768 -0.116998
+EDIN_T1_DSSD_X48_T 971.664 -0.117531
+EDIN_T1_DSSD_X49_T 970.872 -0.117498
+EDIN_T1_DSSD_X50_T 973.476 -0.117739
+EDIN_T1_DSSD_X51_T 979.817 -0.118577
+EDIN_T1_DSSD_X52_T 957.223 -0.115762
+EDIN_T1_DSSD_X53_T 976.301 -0.118143
+EDIN_T1_DSSD_X54_T 967.911 -0.117052
+EDIN_T1_DSSD_X55_T 975.435 -0.118071
+EDIN_T1_DSSD_X56_T 954.686 -0.115464
+EDIN_T1_DSSD_X57_T 987.534 -0.11954
+EDIN_T1_DSSD_X58_T 946.29 -0.114439
+EDIN_T1_DSSD_X59_T 988.145 -0.119597
+EDIN_T1_DSSD_X60_T 948.76 -0.114738
+EDIN_T1_DSSD_X61_T 985.177 -0.119236
+EDIN_T1_DSSD_X62_T 947.862 -0.114612
+EDIN_T1_DSSD_X63_T 924.661 -0.111777
+EDIN_T1_DSSD_X64_T 984.559 -0.119179
+EDIN_T1_DSSD_X65_T 928.424 -0.111864
+EDIN_T1_DSSD_X66_T 892.824 -0.107613
+EDIN_T1_DSSD_X67_T 890.901 -0.107373
+EDIN_T1_DSSD_X68_T 934.329 -0.112614
+EDIN_T1_DSSD_X69_T 894.556 -0.107838
+EDIN_T1_DSSD_X70_T 931.059 -0.112193
+EDIN_T1_DSSD_X71_T 905.994 -0.109224
+EDIN_T1_DSSD_X72_T 925.186 -0.111483
+EDIN_T1_DSSD_X73_T 905.741 -0.1092
+EDIN_T1_DSSD_X74_T 927.829 -0.111775
+EDIN_T1_DSSD_X75_T 910.629 -0.109791
+EDIN_T1_DSSD_X76_T 932.559 -0.11236
+EDIN_T1_DSSD_X77_T 906.206 -0.109268
+EDIN_T1_DSSD_X78_T 931.448 -0.112226
+EDIN_T1_DSSD_X79_T 921.692 -0.111151
+EDIN_T1_DSSD_X80_T 923.868 -0.111325
+EDIN_T1_DSSD_X81_T 922.784 -0.11128
+EDIN_T1_DSSD_X82_T 918.363 -0.110659
+EDIN_T1_DSSD_X83_T 924.5 -0.111467
+EDIN_T1_DSSD_X84_T 935.93 -0.112781
+EDIN_T1_DSSD_X85_T 928.983 -0.112035
+EDIN_T1_DSSD_X86_T 923.812 -0.111304
+EDIN_T1_DSSD_X87_T 924.661 -0.111519
+EDIN_T1_DSSD_X88_T 929.323 -0.111977
+EDIN_T1_DSSD_X89_T 925.485 -0.111616
+EDIN_T1_DSSD_X90_T 914.468 -0.110136
+EDIN_T1_DSSD_X91_T 917.32 -0.110627
+EDIN_T1_DSSD_X92_T 908.74 -0.10946
+EDIN_T1_DSSD_X93_T 920.078 -0.110941
+EDIN_T1_DSSD_X94_T 901.745 -0.108567
+EDIN_T1_DSSD_X95_T 900.671 -0.108476
+EDIN_T1_DSSD_X96_T 926.646 -0.11176
+EDIN_T1_DSSD_X97_T 1008.1 -0.12163
+EDIN_T1_DSSD_X98_T 951.079 -0.114723
+EDIN_T1_DSSD_X99_T 952.897 -0.114949
+EDIN_T1_DSSD_X100_T 1019.96 -0.123096
+EDIN_T1_DSSD_X101_T 966.461 -0.116629
+EDIN_T1_DSSD_X102_T 1020.31 -0.123127
+EDIN_T1_DSSD_X103_T 965.985 -0.116557
+EDIN_T1_DSSD_X104_T 1017.49 -0.12279
+EDIN_T1_DSSD_X105_T 968.322 -0.116827
+EDIN_T1_DSSD_X106_T 1018.04 -0.12282
+EDIN_T1_DSSD_X107_T 976.11 -0.117811
+EDIN_T1_DSSD_X108_T 1011.77 -0.122082
+EDIN_T1_DSSD_X109_T 975.867 -0.117758
+EDIN_T1_DSSD_X110_T 1016.22 -0.12261
+EDIN_T1_DSSD_X111_T 981.064 -0.118392
+EDIN_T1_DSSD_X112_T 1013.91 -0.122345
+EDIN_T1_DSSD_X113_T 978.32 -0.118063
+EDIN_T1_DSSD_X114_T 999.416 -0.12057
+EDIN_T1_DSSD_X115_T 992.972 -0.119853
+EDIN_T1_DSSD_X116_T 1007.52 -0.121554
+EDIN_T1_DSSD_X117_T 989.034 -0.119377
+EDIN_T1_DSSD_X118_T 1006.21 -0.121389
+EDIN_T1_DSSD_X119_T 987.234 -0.119141
+EDIN_T1_DSSD_X120_T 996.925 -0.120215
+EDIN_T1_DSSD_X121_T 994.058 -0.119982
+EDIN_T1_DSSD_X122_T 997.371 -0.120307
+EDIN_T1_DSSD_X123_T 995.957 -0.120199
+EDIN_T1_DSSD_X124_T 983.919 -0.118652
+EDIN_T1_DSSD_X125_T 995.79 -0.1202
+EDIN_T1_DSSD_X126_T 978.841 -0.118024
+EDIN_T1_DSSD_X127_T 976.704 -0.117775
+EDIN_T1_DSSD_X128_T 1000.15 -0.120722
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0862b09b705d7dd27baec08898f720156aa91ab0
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+EDIN_T1_DSSD_Y1_T 966.891 -0.116717
+EDIN_T1_DSSD_Y2_T 968.928 -0.116883
+EDIN_T1_DSSD_Y3_T 971.207 -0.117128
+EDIN_T1_DSSD_Y4_T 969.17 -0.116981
+EDIN_T1_DSSD_Y5_T 975.423 -0.117665
+EDIN_T1_DSSD_Y6_T 967.943 -0.116827
+EDIN_T1_DSSD_Y7_T 976.249 -0.117743
+EDIN_T1_DSSD_Y8_T 972.184 -0.117358
+EDIN_T1_DSSD_Y9_T 987.572 -0.119146
+EDIN_T1_DSSD_Y10_T 972.004 -0.117327
+EDIN_T1_DSSD_Y11_T 984.536 -0.118747
+EDIN_T1_DSSD_Y12_T 964.104 -0.116368
+EDIN_T1_DSSD_Y13_T 987.751 -0.119189
+EDIN_T1_DSSD_Y14_T 968.288 -0.116854
+EDIN_T1_DSSD_Y15_T 994.23 -0.119964
+EDIN_T1_DSSD_Y16_T 958.21 -0.11562
+EDIN_T1_DSSD_Y17_T 995.905 -0.120158
+EDIN_T1_DSSD_Y18_T 950.839 -0.114726
+EDIN_T1_DSSD_Y19_T 995.946 -0.120176
+EDIN_T1_DSSD_Y20_T 960.868 -0.115938
+EDIN_T1_DSSD_Y21_T 1000.5 -0.120728
+EDIN_T1_DSSD_Y22_T 957.621 -0.115533
+EDIN_T1_DSSD_Y23_T 995.25 -0.120113
+EDIN_T1_DSSD_Y24_T 954.252 -0.115122
+EDIN_T1_DSSD_Y25_T 997.145 -0.120339
+EDIN_T1_DSSD_Y26_T 952.035 -0.114834
+EDIN_T1_DSSD_Y27_T 988.864 -0.119308
+EDIN_T1_DSSD_Y28_T 948.029 -0.114361
+EDIN_T1_DSSD_Y29_T 995.199 -0.120108
+EDIN_T1_DSSD_Y30_T 937.191 -0.113022
+EDIN_T1_DSSD_Y31_T 935.35 -0.11282
+EDIN_T1_DSSD_Y32_T 990.383 -0.119515
+EDIN_T1_DSSD_Y33_T 905.741 -0.109257
+EDIN_T1_DSSD_Y34_T 887.986 -0.10696
+EDIN_T1_DSSD_Y35_T 887.216 -0.106852
+EDIN_T1_DSSD_Y36_T 910.732 -0.109844
+EDIN_T1_DSSD_Y37_T 883.77 -0.106436
+EDIN_T1_DSSD_Y38_T 906.33 -0.109312
+EDIN_T1_DSSD_Y39_T 896.97 -0.108049
+EDIN_T1_DSSD_Y40_T 911.966 -0.109989
+EDIN_T1_DSSD_Y41_T 903.022 -0.108781
+EDIN_T1_DSSD_Y42_T 909.45 -0.10969
+EDIN_T1_DSSD_Y43_T 904.319 -0.108923
+EDIN_T1_DSSD_Y44_T 900.767 -0.108623
+EDIN_T1_DSSD_Y45_T 904.183 -0.108922
+EDIN_T1_DSSD_Y46_T 908.035 -0.109521
+EDIN_T1_DSSD_Y47_T 904.336 -0.108949
+EDIN_T1_DSSD_Y48_T 895.245 -0.107957
+EDIN_T1_DSSD_Y49_T 916.034 -0.110395
+EDIN_T1_DSSD_Y50_T 907.451 -0.10944
+EDIN_T1_DSSD_Y51_T 915.216 -0.110294
+EDIN_T1_DSSD_Y52_T 897.171 -0.108164
+EDIN_T1_DSSD_Y53_T 910.734 -0.109746
+EDIN_T1_DSSD_Y54_T 907.311 -0.109433
+EDIN_T1_DSSD_Y55_T 913.293 -0.109802
+EDIN_T1_DSSD_Y56_T 848677000000.0 -103827000.0
+EDIN_T1_DSSD_Y57_T 910.448 -0.109742
+EDIN_T1_DSSD_Y58_T 896.019 -0.108037
+EDIN_T1_DSSD_Y59_T 918.647 -0.11072
+EDIN_T1_DSSD_Y60_T 886.581 -0.106848
+EDIN_T1_DSSD_Y61_T 920.049 -0.110879
+EDIN_T1_DSSD_Y62_T 884.995 -0.106691
+EDIN_T1_DSSD_Y63_T 1002.87 -0.141377
+EDIN_T1_DSSD_Y64_T 921.093 -0.111037
+EDIN_T1_DSSD_Y65_T 991.793 -0.120194
+EDIN_T1_DSSD_Y66_T 947.005 -0.114646
+EDIN_T1_DSSD_Y67_T 955.512 -0.115676
+EDIN_T1_DSSD_Y68_T 986.667 -0.119601
+EDIN_T1_DSSD_Y69_T 954.266 -0.115551
+EDIN_T1_DSSD_Y70_T 985.922 -0.119505
+EDIN_T1_DSSD_Y71_T 961.213 -0.116392
+EDIN_T1_DSSD_Y72_T 988.378 -0.11981
+EDIN_T1_DSSD_Y73_T 960.803 -0.116344
+EDIN_T1_DSSD_Y74_T 985.147 -0.119391
+EDIN_T1_DSSD_Y75_T 971.068 -0.117589
+EDIN_T1_DSSD_Y76_T 988.169 -0.119777
+EDIN_T1_DSSD_Y77_T 971.908 -0.117699
+EDIN_T1_DSSD_Y78_T 986.47 -0.119552
+EDIN_T1_DSSD_Y79_T 978.963 -0.118567
+EDIN_T1_DSSD_Y80_T 983.419 -0.119163
+EDIN_T1_DSSD_Y81_T 980.181 -0.118705
+EDIN_T1_DSSD_Y82_T 982.479 -0.119038
+EDIN_T1_DSSD_Y83_T 972.849 -0.117807
+EDIN_T1_DSSD_Y84_T 974.345 -0.118053
+EDIN_T1_DSSD_Y85_T 977.401 -0.118376
+EDIN_T1_DSSD_Y86_T 978.784 -0.118609
+EDIN_T1_DSSD_Y87_T 985.257 -0.119333
+EDIN_T1_DSSD_Y88_T 970.687 -0.117617
+EDIN_T1_DSSD_Y89_T 986.001 -0.119429
+EDIN_T1_DSSD_Y90_T 967.43 -0.117211
+EDIN_T1_DSSD_Y91_T 978.94 -0.118576
+EDIN_T1_DSSD_Y92_T 963.945 -0.116788
+EDIN_T1_DSSD_Y93_T 982.604 -0.119031
+EDIN_T1_DSSD_Y94_T 958.17 -0.116053
+EDIN_T1_DSSD_Y95_T 950.903 -0.115194
+EDIN_T1_DSSD_Y96_T 994.308 -0.120471
+EDIN_T1_DSSD_Y97_T 906.635 -0.109824
+EDIN_T1_DSSD_Y98_T 862.399 -0.104291
+EDIN_T1_DSSD_Y99_T 856.141 -0.103549
+EDIN_T1_DSSD_Y100_T 900.796 -0.109108
+EDIN_T1_DSSD_Y101_T 866.517 -0.104798
+EDIN_T1_DSSD_Y102_T 910.268 -0.110268
+EDIN_T1_DSSD_Y103_T 861.488 -0.10419
+EDIN_T1_DSSD_Y104_T 903.241 -0.109417
+EDIN_T1_DSSD_Y105_T 869.88 -0.105221
+EDIN_T1_DSSD_Y106_T 896.217 -0.108536
+EDIN_T1_DSSD_Y107_T 879.073 -0.106354
+EDIN_T1_DSSD_Y108_T 905.347 -0.10967
+EDIN_T1_DSSD_Y109_T 883.458 -0.1069
+EDIN_T1_DSSD_Y110_T 902.144 -0.10926
+EDIN_T1_DSSD_Y111_T 878.318 -0.106252
+EDIN_T1_DSSD_Y112_T 905.296 -0.109653
+EDIN_T1_DSSD_Y113_T 895.691 -0.108379
+EDIN_T1_DSSD_Y114_T 895.11 -0.108406
+EDIN_T1_DSSD_Y115_T 896.571 -0.108492
+EDIN_T1_DSSD_Y116_T 891.891 -0.108005
+EDIN_T1_DSSD_Y117_T 894.464 -0.108225
+EDIN_T1_DSSD_Y118_T 884.05 -0.107044
+EDIN_T1_DSSD_Y119_T 893.509 -0.108132
+EDIN_T1_DSSD_Y120_T 891.902 -0.10801
+EDIN_T1_DSSD_Y121_T 895.809 -0.108412
+EDIN_T1_DSSD_Y122_T 894.071 -0.108263
+EDIN_T1_DSSD_Y123_T 891.015 -0.10784
+EDIN_T1_DSSD_Y124_T 880.13 -0.106555
+EDIN_T1_DSSD_Y125_T 888.724 -0.107526
+EDIN_T1_DSSD_Y126_T 875.524 -0.106
+EDIN_T1_DSSD_Y127_T 876.691 -0.106136
+EDIN_T1_DSSD_Y128_T 899.797 -0.109448
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..110ede9d2e530bbadf6dc4ab17e255c9ffd164a0
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_X1_T 893.403 -0.107885
+EDIN_T2_DSSD_X2_T 884.424 -0.106884
+EDIN_T2_DSSD_X3_T 881.912 -0.106588
+EDIN_T2_DSSD_X4_T 896.224 -0.10824
+EDIN_T2_DSSD_X5_T 891.212 -0.10771
+EDIN_T2_DSSD_X6_T 899.711 -0.108665
+EDIN_T2_DSSD_X7_T 888.472 -0.10739
+EDIN_T2_DSSD_X8_T 900.163 -0.108721
+EDIN_T2_DSSD_X9_T 902.325 -0.109058
+EDIN_T2_DSSD_X10_T 898.738 -0.108543
+EDIN_T2_DSSD_X11_T 899.193 -0.108685
+EDIN_T2_DSSD_X12_T 888.44 -0.107279
+EDIN_T2_DSSD_X13_T 906.762 -0.109605
+EDIN_T2_DSSD_X14_T 896.907 -0.108307
+EDIN_T2_DSSD_X15_T 903.506 -0.109211
+EDIN_T2_DSSD_X16_T 894.49 -0.108024
+EDIN_T2_DSSD_X17_T 903.2 -0.109168
+EDIN_T2_DSSD_X18_T 885.543 -0.106931
+EDIN_T2_DSSD_X19_T 907.04 -0.109617
+EDIN_T2_DSSD_X20_T 877.811 -0.105984
+EDIN_T2_DSSD_X21_T 913.192 -0.1104
+EDIN_T2_DSSD_X22_T 875.93 -0.105755
+EDIN_T2_DSSD_X23_T 912.001 -0.110254
+EDIN_T2_DSSD_X24_T 875.67 -0.105723
+EDIN_T2_DSSD_X25_T 920.039 -0.111219
+EDIN_T2_DSSD_X26_T 866.918 -0.10464
+EDIN_T2_DSSD_X27_T 918.464 -0.111043
+EDIN_T2_DSSD_X28_T 872.886 -0.105362
+EDIN_T2_DSSD_X29_T 921.268 -0.111378
+EDIN_T2_DSSD_X30_T 863.294 -0.104191
+EDIN_T2_DSSD_X31_T 853.022 -0.102956
+EDIN_T2_DSSD_X32_T 917.17 -0.11089
+EDIN_T2_DSSD_X33_T 949.489 -0.114725
+EDIN_T2_DSSD_X34_T 937.316 -0.113282
+EDIN_T2_DSSD_X35_T 934.385 -0.112935
+EDIN_T2_DSSD_X36_T 950.078 -0.114801
+EDIN_T2_DSSD_X37_T 942.34 -0.113903
+EDIN_T2_DSSD_X38_T 948.307 -0.114577
+EDIN_T2_DSSD_X39_T 954.458 -0.11541
+EDIN_T2_DSSD_X40_T 952.149 -0.115049
+EDIN_T2_DSSD_X41_T 950.139 -0.114834
+EDIN_T2_DSSD_X42_T 944.632 -0.114127
+EDIN_T2_DSSD_X43_T 967.561 -0.116968
+EDIN_T2_DSSD_X44_T 948.456 -0.114587
+EDIN_T2_DSSD_X45_T 960.77 -0.116144
+EDIN_T2_DSSD_X46_T 947.97 -0.114529
+EDIN_T2_DSSD_X47_T 965.567 -0.116738
+EDIN_T2_DSSD_X48_T 939.674 -0.113523
+EDIN_T2_DSSD_X49_T 957.421 -0.115736
+EDIN_T2_DSSD_X50_T 948.676 -0.114596
+EDIN_T2_DSSD_X51_T 969.399 -0.117191
+EDIN_T2_DSSD_X52_T 940.462 -0.113604
+EDIN_T2_DSSD_X53_T 971.909 -0.117505
+EDIN_T2_DSSD_X54_T 942.935 -0.113893
+EDIN_T2_DSSD_X55_T 966.623 -0.116868
+EDIN_T2_DSSD_X56_T 947.225 -0.114433
+EDIN_T2_DSSD_X57_T 972.522 -0.117596
+EDIN_T2_DSSD_X58_T 936.381 -0.11311
+EDIN_T2_DSSD_X59_T 966.551 -0.116864
+EDIN_T2_DSSD_X60_T 937.478 -0.113239
+EDIN_T2_DSSD_X61_T 967.053 -0.116934
+EDIN_T2_DSSD_X62_T 934.725 -0.1129
+EDIN_T2_DSSD_X63_T 919.521 -0.111042
+EDIN_T2_DSSD_X64_T 976.535 -0.118078
+EDIN_T2_DSSD_X65_T 944.971 -0.114186
+EDIN_T2_DSSD_X66_T 901.312 -0.10895
+EDIN_T2_DSSD_X67_T 917.986 -0.11099
+EDIN_T2_DSSD_X68_T 944.748 -0.114176
+EDIN_T2_DSSD_X69_T 913.934 -0.110483
+EDIN_T2_DSSD_X70_T 936.181 -0.113143
+EDIN_T2_DSSD_X71_T 913.949 -0.110494
+EDIN_T2_DSSD_X72_T 936.518 -0.113174
+EDIN_T2_DSSD_X73_T 923.435 -0.11163
+EDIN_T2_DSSD_X74_T 946.851 -0.11443
+EDIN_T2_DSSD_X75_T 922.621 -0.111573
+EDIN_T2_DSSD_X76_T 940.75 -0.113673
+EDIN_T2_DSSD_X77_T 921.076 -0.111368
+EDIN_T2_DSSD_X78_T 949.44 -0.114745
+EDIN_T2_DSSD_X79_T 925.346 -0.111888
+EDIN_T2_DSSD_X80_T 940.564 -0.113666
+EDIN_T2_DSSD_X81_T 935.581 -0.113122
+EDIN_T2_DSSD_X82_T 940.971 -0.113698
+EDIN_T2_DSSD_X83_T 932.485 -0.112764
+EDIN_T2_DSSD_X84_T 938.012 -0.113333
+EDIN_T2_DSSD_X85_T 937.5 -0.113373
+EDIN_T2_DSSD_X86_T 932.582 -0.11267
+EDIN_T2_DSSD_X87_T 932.715 -0.112797
+EDIN_T2_DSSD_X88_T 929.709 -0.112323
+EDIN_T2_DSSD_X89_T 935.979 -0.113176
+EDIN_T2_DSSD_X90_T 914.139 -0.110414
+EDIN_T2_DSSD_X91_T 942.445 -0.113973
+EDIN_T2_DSSD_X92_T 914.61 -0.110461
+EDIN_T2_DSSD_X93_T 943.181 -0.114066
+EDIN_T2_DSSD_X94_T 906.889 -0.109531
+EDIN_T2_DSSD_X95_T 902.2 -0.108961
+EDIN_T2_DSSD_X96_T 942.414 -0.113973
+EDIN_T2_DSSD_X97_T 987.604 -0.119394
+EDIN_T2_DSSD_X98_T 971.844 -0.117533
+EDIN_T2_DSSD_X99_T 971.845 -0.117545
+EDIN_T2_DSSD_X100_T 1002.51 -0.12123
+EDIN_T2_DSSD_X101_T 983.582 -0.118957
+EDIN_T2_DSSD_X102_T 1001.7 -0.12112
+EDIN_T2_DSSD_X103_T 988.69 -0.119584
+EDIN_T2_DSSD_X104_T 997.508 -0.120614
+EDIN_T2_DSSD_X105_T 990.616 -0.119902
+EDIN_T2_DSSD_X106_T 982.481 -0.118788
+EDIN_T2_DSSD_X107_T 992.058 -0.12002
+EDIN_T2_DSSD_X108_T 992.615 -0.120011
+EDIN_T2_DSSD_X109_T 993.193 -0.120171
+EDIN_T2_DSSD_X110_T 993.652 -0.120143
+EDIN_T2_DSSD_X111_T 998.567 -0.120802
+EDIN_T2_DSSD_X112_T 993.933 -0.120152
+EDIN_T2_DSSD_X113_T 991.75 -0.119977
+EDIN_T2_DSSD_X114_T 983.229 -0.118879
+EDIN_T2_DSSD_X115_T 1000.28 -0.12102
+EDIN_T2_DSSD_X116_T 984.429 -0.118997
+EDIN_T2_DSSD_X117_T 996.389 -0.12055
+EDIN_T2_DSSD_X118_T 970.748 -0.117336
+EDIN_T2_DSSD_X119_T 995.946 -0.12048
+EDIN_T2_DSSD_X120_T 969.333 -0.117159
+EDIN_T2_DSSD_X121_T 1005.69 -0.121688
+EDIN_T2_DSSD_X122_T 969.343 -0.117158
+EDIN_T2_DSSD_X123_T 1009.38 -0.122136
+EDIN_T2_DSSD_X124_T 965.866 -0.116735
+EDIN_T2_DSSD_X125_T 1012.08 -0.122472
+EDIN_T2_DSSD_X126_T 964.034 -0.116512
+EDIN_T2_DSSD_X127_T 952.869 -0.115148
+EDIN_T2_DSSD_X128_T 1003.93 -0.121488
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e3537742e8681e3df5bbf3f4aa0393373d15b222
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_Y1_T 1024.2 -0.123744
+EDIN_T2_DSSD_Y2_T 942.022 -0.113632
+EDIN_T2_DSSD_Y3_T 941.851 -0.11359
+EDIN_T2_DSSD_Y4_T 1023.43 -0.123621
+EDIN_T2_DSSD_Y5_T 941.301 -0.113546
+EDIN_T2_DSSD_Y6_T 1024.68 -0.123746
+EDIN_T2_DSSD_Y7_T 941.196 -0.113526
+EDIN_T2_DSSD_Y8_T 1019.48 -0.12312
+EDIN_T2_DSSD_Y9_T 956.339 -0.115367
+EDIN_T2_DSSD_Y10_T 1017.56 -0.122898
+EDIN_T2_DSSD_Y11_T 972.159 -0.117305
+EDIN_T2_DSSD_Y12_T 1012.4 -0.122275
+EDIN_T2_DSSD_Y13_T 968.071 -0.11682
+EDIN_T2_DSSD_Y14_T 1006.22 -0.121307
+EDIN_T2_DSSD_Y15_T 963.198 -0.116216
+EDIN_T2_DSSD_Y16_T 1014.58 -0.122539
+EDIN_T2_DSSD_Y17_T 978.802 -0.118134
+EDIN_T2_DSSD_Y18_T 1013.44 -0.122366
+EDIN_T2_DSSD_Y19_T 981.332 -0.118446
+EDIN_T2_DSSD_Y20_T 1006.43 -0.121526
+EDIN_T2_DSSD_Y21_T 978.515 -0.117858
+EDIN_T2_DSSD_Y22_T 1001.78 -0.120947
+EDIN_T2_DSSD_Y23_T 985.445 -0.11895
+EDIN_T2_DSSD_Y24_T 1003.53 -0.121165
+EDIN_T2_DSSD_Y25_T 979.656 -0.118238
+EDIN_T2_DSSD_Y26_T 998.524 -0.120524
+EDIN_T2_DSSD_Y27_T 981.57 -0.118468
+EDIN_T2_DSSD_Y28_T 992.258 -0.119776
+EDIN_T2_DSSD_Y29_T 980.383 -0.118337
+EDIN_T2_DSSD_Y30_T 993.077 -0.119903
+EDIN_T2_DSSD_Y31_T 989.947 -0.119525
+EDIN_T2_DSSD_Y32_T 968.968 -0.116905
+EDIN_T2_DSSD_Y33_T 918.091 -0.110791
+EDIN_T2_DSSD_Y34_T 896.545 -0.108016
+EDIN_T2_DSSD_Y35_T 905.921 -0.109155
+EDIN_T2_DSSD_Y36_T 922.863 -0.111371
+EDIN_T2_DSSD_Y37_T 903.191 -0.108834
+EDIN_T2_DSSD_Y38_T 919.243 -0.110907
+EDIN_T2_DSSD_Y39_T 916.514 -0.110471
+EDIN_T2_DSSD_Y40_T 915.986 -0.110532
+EDIN_T2_DSSD_Y41_T 909.698 -0.109622
+EDIN_T2_DSSD_Y42_T 913.535 -0.110231
+EDIN_T2_DSSD_Y43_T 918.472 -0.110708
+EDIN_T2_DSSD_Y44_T 910.049 -0.10979
+EDIN_T2_DSSD_Y45_T 921.934 -0.111116
+EDIN_T2_DSSD_Y46_T 914.061 -0.110304
+EDIN_T2_DSSD_Y47_T 917.791 -0.11061
+EDIN_T2_DSSD_Y48_T 909.649 -0.109756
+EDIN_T2_DSSD_Y49_T 930.463 -0.11216
+EDIN_T2_DSSD_Y50_T 906.817 -0.109401
+EDIN_T2_DSSD_Y51_T 921.545 -0.111079
+EDIN_T2_DSSD_Y52_T 908.152 -0.109574
+EDIN_T2_DSSD_Y53_T 924.357 -0.111393
+EDIN_T2_DSSD_Y54_T 892.44 -0.107628
+EDIN_T2_DSSD_Y55_T 928.134 -0.11168
+EDIN_T2_DSSD_Y56_T 897.82 -0.108297
+EDIN_T2_DSSD_Y57_T 944.074 -0.11386
+EDIN_T2_DSSD_Y58_T 894.339 -0.10786
+EDIN_T2_DSSD_Y59_T 929.497 -0.112068
+EDIN_T2_DSSD_Y60_T 893.026 -0.107711
+EDIN_T2_DSSD_Y61_T 925.938 -0.111623
+EDIN_T2_DSSD_Y62_T 880.638 -0.106206
+EDIN_T2_DSSD_Y63_T 874.116 -0.105393
+EDIN_T2_DSSD_Y64_T 933.858 -0.112593
+EDIN_T2_DSSD_Y65_T 971.01 -0.117343
+EDIN_T2_DSSD_Y66_T 946.074 -0.114246
+EDIN_T2_DSSD_Y67_T 940.751 -0.113582
+EDIN_T2_DSSD_Y68_T 968.878 -0.117092
+EDIN_T2_DSSD_Y69_T 952.983 -0.115097
+EDIN_T2_DSSD_Y70_T 977.792 -0.118194
+EDIN_T2_DSSD_Y71_T 948.889 -0.114574
+EDIN_T2_DSSD_Y72_T 975.406 -0.117892
+EDIN_T2_DSSD_Y73_T 957.63 -0.115653
+EDIN_T2_DSSD_Y74_T 979.2 -0.118324
+EDIN_T2_DSSD_Y75_T 968.091 -0.11692
+EDIN_T2_DSSD_Y76_T 966.385 -0.116762
+EDIN_T2_DSSD_Y77_T 966.176 -0.116695
+EDIN_T2_DSSD_Y78_T 960.237 -0.115989
+EDIN_T2_DSSD_Y79_T 971.862 -0.117388
+EDIN_T2_DSSD_Y80_T 958.107 -0.115747
+EDIN_T2_DSSD_Y81_T 974.809 -0.117739
+EDIN_T2_DSSD_Y82_T 966.661 -0.116783
+EDIN_T2_DSSD_Y83_T 976.466 -0.11797
+EDIN_T2_DSSD_Y84_T 969.683 -0.117144
+EDIN_T2_DSSD_Y85_T 981.048 -0.118525
+EDIN_T2_DSSD_Y86_T 962.11 -0.116242
+EDIN_T2_DSSD_Y87_T 971.816 -0.117371
+EDIN_T2_DSSD_Y88_T 974.181 -0.117701
+EDIN_T2_DSSD_Y89_T 979.537 -0.118331
+EDIN_T2_DSSD_Y90_T 947.803 -0.114477
+EDIN_T2_DSSD_Y91_T 979.044 -0.118283
+EDIN_T2_DSSD_Y92_T 950.053 -0.114763
+EDIN_T2_DSSD_Y93_T 986.328 -0.119174
+EDIN_T2_DSSD_Y94_T 945.736 -0.114242
+EDIN_T2_DSSD_Y95_T 926.3 -0.111864
+EDIN_T2_DSSD_Y96_T 991.309 -0.119806
+EDIN_T2_DSSD_Y97_T 914.871 -0.110525
+EDIN_T2_DSSD_Y98_T 854.155 -0.102981
+EDIN_T2_DSSD_Y99_T 870.733 -0.104976
+EDIN_T2_DSSD_Y100_T 924.467 -0.111703
+EDIN_T2_DSSD_Y101_T 878.476 -0.105936
+EDIN_T2_DSSD_Y102_T 928.251 -0.11214
+EDIN_T2_DSSD_Y103_T 876.793 -0.10575
+EDIN_T2_DSSD_Y104_T 927.531 -0.112066
+EDIN_T2_DSSD_Y105_T 884.881 -0.106741
+EDIN_T2_DSSD_Y106_T 924.057 -0.111623
+EDIN_T2_DSSD_Y107_T 881.171 -0.10628
+EDIN_T2_DSSD_Y108_T 924.408 -0.111663
+EDIN_T2_DSSD_Y109_T 893.636 -0.107805
+EDIN_T2_DSSD_Y110_T 923.243 -0.111507
+EDIN_T2_DSSD_Y111_T 894.919 -0.107966
+EDIN_T2_DSSD_Y112_T 927.33 -0.112025
+EDIN_T2_DSSD_Y113_T 885.067 -0.106759
+EDIN_T2_DSSD_Y114_T 932.767 -0.112691
+EDIN_T2_DSSD_Y115_T 898.226 -0.108381
+EDIN_T2_DSSD_Y116_T 916.909 -0.110746
+EDIN_T2_DSSD_Y117_T 896.617 -0.108195
+EDIN_T2_DSSD_Y118_T 926.674 -0.111938
+EDIN_T2_DSSD_Y119_T 896.617 -0.108195
+EDIN_T2_DSSD_Y120_T 919.012 -0.110997
+EDIN_T2_DSSD_Y121_T 899.421 -0.108519
+EDIN_T2_DSSD_Y122_T 905.068 -0.109308
+EDIN_T2_DSSD_Y123_T 900.193 -0.10863
+EDIN_T2_DSSD_Y124_T 906.665 -0.109474
+EDIN_T2_DSSD_Y125_T 901.229 -0.108768
+EDIN_T2_DSSD_Y126_T 896.011 -0.108189
+EDIN_T2_DSSD_Y127_T 899.526 -0.108639
+EDIN_T2_DSSD_Y128_T 897.311 -0.108297
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2e8f91728f8cdb84508472cd2b10fdc565874c8e
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_X1_T 900.293 -0.108862
+EDIN_T3_DSSD_X2_T 898.105 -0.108693
+EDIN_T3_DSSD_X3_T 904.446 -0.109485
+EDIN_T3_DSSD_X4_T 891.538 -0.107803
+EDIN_T3_DSSD_X5_T 912.143 -0.110421
+EDIN_T3_DSSD_X6_T 905.108 -0.109445
+EDIN_T3_DSSD_X7_T 905.421 -0.109588
+EDIN_T3_DSSD_X8_T 903.963 -0.109312
+EDIN_T3_DSSD_X9_T 911.321 -0.110301
+EDIN_T3_DSSD_X10_T 897.274 -0.10849
+EDIN_T3_DSSD_X11_T 919.499 -0.111327
+EDIN_T3_DSSD_X12_T 897.684 -0.108538
+EDIN_T3_DSSD_X13_T 921.109 -0.111495
+EDIN_T3_DSSD_X14_T 902.052 -0.10908
+EDIN_T3_DSSD_X15_T 929.489 -0.112521
+EDIN_T3_DSSD_X16_T 896.795 -0.10844
+EDIN_T3_DSSD_X17_T 937.068 -0.11347
+EDIN_T3_DSSD_X18_T 899.348 -0.108733
+EDIN_T3_DSSD_X19_T 930.942 -0.112717
+EDIN_T3_DSSD_X20_T 896.431 -0.108382
+EDIN_T3_DSSD_X21_T 927.894 -0.112335
+EDIN_T3_DSSD_X22_T 884.13 -0.106861
+EDIN_T3_DSSD_X23_T 932.632 -0.112964
+EDIN_T3_DSSD_X24_T 888.209 -0.107368
+EDIN_T3_DSSD_X25_T 935.332 -0.113245
+EDIN_T3_DSSD_X26_T 888.186 -0.107364
+EDIN_T3_DSSD_X27_T 929.857 -0.11258
+EDIN_T3_DSSD_X28_T 878.223 -0.106155
+EDIN_T3_DSSD_X29_T 937.136 -0.113476
+EDIN_T3_DSSD_X30_T 865.76 -0.104634
+EDIN_T3_DSSD_X31_T 866.015 -0.104661
+EDIN_T3_DSSD_X32_T 935.398 -0.113256
+EDIN_T3_DSSD_X33_T 996.617 -0.120654
+EDIN_T3_DSSD_X34_T 938.354 -0.113591
+EDIN_T3_DSSD_X35_T 952.054 -0.115254
+EDIN_T3_DSSD_X36_T 1001.37 -0.121233
+EDIN_T3_DSSD_X37_T 956.534 -0.115822
+EDIN_T3_DSSD_X38_T 999.766 -0.121035
+EDIN_T3_DSSD_X39_T 958.488 -0.116042
+EDIN_T3_DSSD_X40_T 1006.69 -0.121885
+EDIN_T3_DSSD_X41_T 950.724 -0.115096
+EDIN_T3_DSSD_X42_T 996.509 -0.120628
+EDIN_T3_DSSD_X43_T 965.196 -0.11686
+EDIN_T3_DSSD_X44_T 1000.74 -0.12115
+EDIN_T3_DSSD_X45_T 969.308 -0.117385
+EDIN_T3_DSSD_X46_T 987.489 -0.119523
+EDIN_T3_DSSD_X47_T 974.569 -0.118019
+EDIN_T3_DSSD_X48_T 986.58 -0.119405
+EDIN_T3_DSSD_X49_T 972.643 -0.117779
+EDIN_T3_DSSD_X50_T 988.858 -0.119693
+EDIN_T3_DSSD_X51_T 970.352 -0.117496
+EDIN_T3_DSSD_X52_T 984.595 -0.119177
+EDIN_T3_DSSD_X53_T 972.778 -0.117795
+EDIN_T3_DSSD_X54_T 992.422 -0.120114
+EDIN_T3_DSSD_X55_T 984.9 -0.119273
+EDIN_T3_DSSD_X56_T 985.228 -0.119229
+EDIN_T3_DSSD_X57_T 974.806 -0.118031
+EDIN_T3_DSSD_X58_T 978.048 -0.118386
+EDIN_T3_DSSD_X59_T 981.032 -0.118805
+EDIN_T3_DSSD_X60_T 982.136 -0.11886
+EDIN_T3_DSSD_X61_T 978.727 -0.118524
+EDIN_T3_DSSD_X62_T 963.403 -0.116582
+EDIN_T3_DSSD_X63_T 967.055 -0.117029
+EDIN_T3_DSSD_X64_T 983.561 -0.119127
+EDIN_T3_DSSD_X65_T 894.433 -0.107896
+EDIN_T3_DSSD_X66_T 862.689 -0.104124
+EDIN_T3_DSSD_X67_T 867.813 -0.104728
+EDIN_T3_DSSD_X68_T 885.342 -0.106793
+EDIN_T3_DSSD_X69_T 867.895 -0.104753
+EDIN_T3_DSSD_X70_T 898.089 -0.108336
+EDIN_T3_DSSD_X71_T 873.835 -0.105492
+EDIN_T3_DSSD_X72_T 891.27 -0.107522
+EDIN_T3_DSSD_X73_T 883.843 -0.106693
+EDIN_T3_DSSD_X74_T 897.245 -0.108252
+EDIN_T3_DSSD_X75_T 879.494 -0.10614
+EDIN_T3_DSSD_X76_T 887.829 -0.107093
+EDIN_T3_DSSD_X77_T 883.805 -0.106708
+EDIN_T3_DSSD_X78_T 892.007 -0.107599
+EDIN_T3_DSSD_X79_T 882.86 -0.106567
+EDIN_T3_DSSD_X80_T 888.126 -0.107137
+EDIN_T3_DSSD_X81_T 891.887 -0.107671
+EDIN_T3_DSSD_X82_T 884.874 -0.10675
+EDIN_T3_DSSD_X83_T 896.27 -0.108216
+EDIN_T3_DSSD_X84_T 887.525 -0.107055
+EDIN_T3_DSSD_X85_T 888.15 -0.107225
+EDIN_T3_DSSD_X86_T 880.15 -0.106145
+EDIN_T3_DSSD_X87_T 899.039 -0.108561
+EDIN_T3_DSSD_X88_T 788.143 -0.126949
+EDIN_T3_DSSD_X89_T 899.371 -0.108609
+EDIN_T3_DSSD_X90_T 876.122 -0.105647
+EDIN_T3_DSSD_X91_T 896.002 -0.108191
+EDIN_T3_DSSD_X92_T 869.978 -0.1049
+EDIN_T3_DSSD_X93_T 905.511 -0.109337
+EDIN_T3_DSSD_X94_T 869.213 -0.10481
+EDIN_T3_DSSD_X95_T 859.472 -0.103629
+EDIN_T3_DSSD_X96_T 900.32 -0.108709
+EDIN_T3_DSSD_X97_T 979.288 -0.118278
+EDIN_T3_DSSD_X98_T 985.824 -0.119126
+EDIN_T3_DSSD_X99_T 991.541 -0.119789
+EDIN_T3_DSSD_X100_T 984.211 -0.118879
+EDIN_T3_DSSD_X101_T 991.866 -0.119851
+EDIN_T3_DSSD_X102_T 986.603 -0.119186
+EDIN_T3_DSSD_X103_T 1007.5 -0.121753
+EDIN_T3_DSSD_X104_T 987.195 -0.119241
+EDIN_T3_DSSD_X105_T 1008.13 -0.121824
+EDIN_T3_DSSD_X106_T 987.225 -0.119256
+EDIN_T3_DSSD_X107_T 1004.87 -0.121446
+EDIN_T3_DSSD_X108_T 979.507 -0.118304
+EDIN_T3_DSSD_X109_T 1008.48 -0.121893
+EDIN_T3_DSSD_X110_T 974.374 -0.117687
+EDIN_T3_DSSD_X111_T 1012.14 -0.122347
+EDIN_T3_DSSD_X112_T 978.317 -0.118161
+EDIN_T3_DSSD_X113_T 1008.38 -0.121883
+EDIN_T3_DSSD_X114_T 967.787 -0.116863
+EDIN_T3_DSSD_X115_T 1014.86 -0.122684
+EDIN_T3_DSSD_X116_T 962.99 -0.116299
+EDIN_T3_DSSD_X117_T 1023.57 -0.123722
+EDIN_T3_DSSD_X118_T 968.345 -0.11693
+EDIN_T3_DSSD_X119_T 1033.42 -0.124938
+EDIN_T3_DSSD_X120_T 965.822 -0.116619
+EDIN_T3_DSSD_X121_T 1015.34 -0.122709
+EDIN_T3_DSSD_X122_T 951.022 -0.114804
+EDIN_T3_DSSD_X123_T 1014.72 -0.12265
+EDIN_T3_DSSD_X124_T 952.48 -0.114986
+EDIN_T3_DSSD_X125_T 1026.27 -0.124061
+EDIN_T3_DSSD_X126_T 949.104 -0.114558
+EDIN_T3_DSSD_X127_T 942.714 -0.11381
+EDIN_T3_DSSD_X128_T 1019.9 -0.123313
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..6cab45be06a98a0ed0f768fa0ff08e75c0b86d0b
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_Y1_T 983.985 -0.118941
+EDIN_T3_DSSD_Y2_T 970.371 -0.117174
+EDIN_T3_DSSD_Y3_T 984.045 -0.118815
+EDIN_T3_DSSD_Y4_T 977.123 -0.118075
+EDIN_T3_DSSD_Y5_T 985.023 -0.118931
+EDIN_T3_DSSD_Y6_T 985.112 -0.119048
+EDIN_T3_DSSD_Y7_T 990.894 -0.119638
+EDIN_T3_DSSD_Y8_T 978.827 -0.118272
+EDIN_T3_DSSD_Y9_T 996.439 -0.12034
+EDIN_T3_DSSD_Y10_T 969.011 -0.117093
+EDIN_T3_DSSD_Y11_T 1006.18 -0.121551
+EDIN_T3_DSSD_Y12_T 970.24 -0.117251
+EDIN_T3_DSSD_Y13_T 1001.89 -0.120998
+EDIN_T3_DSSD_Y14_T 968.513 -0.117006
+EDIN_T3_DSSD_Y15_T 996.258 -0.120321
+EDIN_T3_DSSD_Y16_T 964.281 -0.116506
+EDIN_T3_DSSD_Y17_T 1002.35 -0.121073
+EDIN_T3_DSSD_Y18_T 956.368 -0.115546
+EDIN_T3_DSSD_Y19_T 1008.58 -0.121839
+EDIN_T3_DSSD_Y20_T 956.591 -0.115552
+EDIN_T3_DSSD_Y21_T 1008.51 -0.121856
+EDIN_T3_DSSD_Y22_T 951.968 -0.114994
+EDIN_T3_DSSD_Y23_T 1015.07 -0.122649
+EDIN_T3_DSSD_Y24_T 944.162 -0.114032
+EDIN_T3_DSSD_Y25_T 1018.24 -0.12302
+EDIN_T3_DSSD_Y26_T 947.224 -0.114409
+EDIN_T3_DSSD_Y27_T 1007.23 -0.121668
+EDIN_T3_DSSD_Y28_T 937.754 -0.113241
+EDIN_T3_DSSD_Y29_T 1016.39 -0.122794
+EDIN_T3_DSSD_Y30_T 928.777 -0.112154
+EDIN_T3_DSSD_Y31_T 920.954 -0.11121
+EDIN_T3_DSSD_Y32_T 1017.37 -0.122927
+EDIN_T3_DSSD_Y33_T 905.69 -0.109382
+EDIN_T3_DSSD_Y34_T 879.206 -0.105997
+EDIN_T3_DSSD_Y35_T 885.638 -0.106772
+EDIN_T3_DSSD_Y36_T 912.926 -0.110263
+EDIN_T3_DSSD_Y37_T 897.352 -0.108217
+EDIN_T3_DSSD_Y38_T 909.287 -0.109804
+EDIN_T3_DSSD_Y39_T 900.017 -0.108527
+EDIN_T3_DSSD_Y40_T 899.078 -0.108568
+EDIN_T3_DSSD_Y41_T 894.065 -0.107825
+EDIN_T3_DSSD_Y42_T 904.332 -0.109195
+EDIN_T3_DSSD_Y43_T 902.563 -0.108862
+EDIN_T3_DSSD_Y44_T 907.563 -0.109593
+EDIN_T3_DSSD_Y45_T 907.447 -0.109456
+EDIN_T3_DSSD_Y46_T 898.134 -0.10846
+EDIN_T3_DSSD_Y47_T 913.155 -0.110152
+EDIN_T3_DSSD_Y48_T 894.272 -0.10799
+EDIN_T3_DSSD_Y49_T 917.884 -0.110718
+EDIN_T3_DSSD_Y50_T 897.411 -0.108361
+EDIN_T3_DSSD_Y51_T 916.39 -0.11056
+EDIN_T3_DSSD_Y52_T 888.675 -0.107294
+EDIN_T3_DSSD_Y53_T 925.29 -0.111636
+EDIN_T3_DSSD_Y54_T 883.52 -0.106654
+EDIN_T3_DSSD_Y55_T 911.348 -0.109934
+EDIN_T3_DSSD_Y56_T 884.229 -0.106744
+EDIN_T3_DSSD_Y57_T 924.685 -0.111581
+EDIN_T3_DSSD_Y58_T 872.76 -0.105345
+EDIN_T3_DSSD_Y59_T 925.584 -0.111694
+EDIN_T3_DSSD_Y60_T 875.902 -0.10573
+EDIN_T3_DSSD_Y61_T 920.738 -0.1111
+EDIN_T3_DSSD_Y62_T 870.737 -0.105092
+EDIN_T3_DSSD_Y63_T 873.601 -0.105446
+EDIN_T3_DSSD_Y64_T 923.494 -0.11144
+EDIN_T3_DSSD_Y65_T 951.047 -0.114947
+EDIN_T3_DSSD_Y66_T 970.943 -0.117288
+EDIN_T3_DSSD_Y67_T 982.69 -0.118727
+EDIN_T3_DSSD_Y68_T 945.988 -0.114343
+EDIN_T3_DSSD_Y69_T 988.906 -0.119474
+EDIN_T3_DSSD_Y70_T 953.345 -0.115232
+EDIN_T3_DSSD_Y71_T 992.522 -0.119909
+EDIN_T3_DSSD_Y72_T 964.745 -0.116618
+EDIN_T3_DSSD_Y73_T 994.13 -0.120116
+EDIN_T3_DSSD_Y74_T 952.282 -0.115086
+EDIN_T3_DSSD_Y75_T 1001.12 -0.120975
+EDIN_T3_DSSD_Y76_T 955.625 -0.115517
+EDIN_T3_DSSD_Y77_T 998.108 -0.120606
+EDIN_T3_DSSD_Y78_T 939.764 -0.11354
+EDIN_T3_DSSD_Y79_T 999.312 -0.12076
+EDIN_T3_DSSD_Y80_T 947.183 -0.114462
+EDIN_T3_DSSD_Y81_T 1004.15 -0.121336
+EDIN_T3_DSSD_Y82_T 931.288 -0.112491
+EDIN_T3_DSSD_Y83_T 1015.36 -0.122713
+EDIN_T3_DSSD_Y84_T 932.714 -0.112672
+EDIN_T3_DSSD_Y85_T 1018.49 -0.1231
+EDIN_T3_DSSD_Y86_T 939.668 -0.113544
+EDIN_T3_DSSD_Y87_T 1006.74 -0.121678
+EDIN_T3_DSSD_Y88_T 931.355 -0.11252
+EDIN_T3_DSSD_Y89_T 1015.03 -0.122697
+EDIN_T3_DSSD_Y90_T 920.222 -0.11114
+EDIN_T3_DSSD_Y91_T 1018.29 -0.123087
+EDIN_T3_DSSD_Y92_T 911.599 -0.110106
+EDIN_T3_DSSD_Y93_T 1010.39 -0.122144
+EDIN_T3_DSSD_Y94_T 911.098 -0.110026
+EDIN_T3_DSSD_Y95_T 904.406 -0.109216
+EDIN_T3_DSSD_Y96_T 1011.64 -0.122274
+EDIN_T3_DSSD_Y97_T 905.657 -0.109416
+EDIN_T3_DSSD_Y98_T 891.482 -0.107554
+EDIN_T3_DSSD_Y99_T 898.972 -0.108473
+EDIN_T3_DSSD_Y100_T 899.215 -0.108625
+EDIN_T3_DSSD_Y101_T 902.164 -0.108848
+EDIN_T3_DSSD_Y102_T 903.69 -0.109168
+EDIN_T3_DSSD_Y103_T 897.423 -0.108292
+EDIN_T3_DSSD_Y104_T 905.571 -0.109439
+EDIN_T3_DSSD_Y105_T 905.477 -0.109288
+EDIN_T3_DSSD_Y106_T 903.343 -0.109125
+EDIN_T3_DSSD_Y107_T 910.936 -0.109943
+EDIN_T3_DSSD_Y108_T 894.177 -0.108006
+EDIN_T3_DSSD_Y109_T 909.486 -0.109765
+EDIN_T3_DSSD_Y110_T 894.856 -0.108068
+EDIN_T3_DSSD_Y111_T 908.693 -0.109672
+EDIN_T3_DSSD_Y112_T 902.34 -0.108999
+EDIN_T3_DSSD_Y113_T 915.535 -0.110512
+EDIN_T3_DSSD_Y114_T 895.161 -0.108126
+EDIN_T3_DSSD_Y115_T 924.289 -0.111588
+EDIN_T3_DSSD_Y116_T 903.16 -0.109085
+EDIN_T3_DSSD_Y117_T 926.875 -0.111915
+EDIN_T3_DSSD_Y118_T 892.165 -0.107742
+EDIN_T3_DSSD_Y119_T 909.469 -0.109772
+EDIN_T3_DSSD_Y120_T 892.528 -0.107789
+EDIN_T3_DSSD_Y121_T 913.618 -0.11029
+EDIN_T3_DSSD_Y122_T 885.298 -0.106904
+EDIN_T3_DSSD_Y123_T 919.137 -0.110947
+EDIN_T3_DSSD_Y124_T 876.164 -0.105791
+EDIN_T3_DSSD_Y125_T 920.413 -0.111116
+EDIN_T3_DSSD_Y126_T 871.593 -0.105224
+EDIN_T3_DSSD_Y127_T 874.337 -0.105573
+EDIN_T3_DSSD_Y128_T 928.523 -0.112131
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..41a240bd16153c9d1639408d41ef7dd448c49cd1
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
@@ -0,0 +1,140 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 0
+Tcal = 1
+clean = 1
+if Ecal :
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]+1
+            else :
+                strip = MapY[int(ch)-1]+1
+
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"EDIN_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]+1
+            else :
+                strip = MapY[int(ch)-1]+1
+
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"EDIN_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/calibE0.cal1 b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/calibE0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..5f77c3d04858dd864b1411813497cfbbcbbac345
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/calibE0.cal1
@@ -0,0 +1,1024 @@
+-61662.3 7.52711 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61862.3 7.5515 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61786 7.54225 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61488.6 7.50587 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61896.8 7.55579 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61641.5 7.52453 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61399.4 7.49501 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61236.4 7.47509 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-60986.5 7.4446 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62681.3 7.65148 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62393.5 7.61631 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61925.3 7.55919 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62029.9 7.57195 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62417.6 7.61932 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61275.3 7.47982 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63058.3 7.69749 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62722.2 7.65646 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62134.9 7.58477 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62458.1 7.62423 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63902.7 7.80057 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62519.9 7.63181 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62297.5 7.60463 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62659.6 7.64878 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62852.3 7.67238 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62985.4 7.68854 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63073.7 7.69941 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62632 7.64548 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-63013.4 7.69203 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62579 7.63901 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63401.5 7.7394 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62630 7.64523 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56399 6.88462 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56789.2 6.93221 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55564.2 6.78269 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56333.4 6.87654 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-56040.6 6.84084 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+-10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55909.7 6.82487 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55658.4 6.79421 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56211.8 6.86172 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55874 6.82053 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56164.8 6.85597 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56307.5 6.87343 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56382 6.88247 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+-10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+-10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55911.5 6.82508 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57927.5 7.07116 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57924.8 7.07081 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57746 7.049 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57343.1 6.99988 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58172.2 7.10106 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57237.7 6.98697 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57876.3 7.06488 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57523.5 7.02188 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58500.7 7.14114 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57786.5 7.05393 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57300.4 6.99465 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57790.9 7.05448 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57203.4 6.9828 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57985 7.0782 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57888.7 7.06644 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58127.1 7.09555 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63452.4 7.74561 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63612.1 7.76511 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63338.7 7.73174 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64021.8 7.81515 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63197.4 7.71456 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63968.4 7.80864 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63853.8 7.79469 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63356.4 7.73397 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64117.7 7.82683 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63242.6 7.72007 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63972.5 7.80918 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63941.4 7.8053 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63651.8 7.77009 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63754.3 7.78255 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64292.8 7.84837 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64690.6 7.89693 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61215.8 7.47271 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60865.1 7.42995 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61147.3 7.46434 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61469.6 7.50369 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61379.1 7.49269 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61888.7 7.55484 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61403.2 7.49554 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62166.5 7.58877 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61896.4 7.55578 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61572.1 7.51618 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61720.5 7.53424 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62796.5 7.66557 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61868.1 7.55224 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60999.1 7.44621 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61368.2 7.49129 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62166.8 7.58877 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57169.7 6.97872 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57564 7.02681 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57724.2 7.04642 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57113.1 6.97176 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58126.5 7.0955 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57746.5 7.04909 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57665.4 7.03921 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57244.7 6.98784 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57357.8 7.00171 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57943.6 7.0732 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57279.1 6.99197 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57628.2 7.03471 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58567.7 7.1494 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58013.5 7.08178 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57681.5 7.04111 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57795.4 7.05508 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59002.3 7.20244 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59192.2 7.22562 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58512.8 7.14267 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58671.3 7.16207 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58171.6 7.10101 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58350.5 7.12281 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.4 7.11445 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58508.2 7.1421 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58511.7 7.14253 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58653.9 7.15989 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58550.4 7.14724 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59318.4 7.24097 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57853 7.06214 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58498.4 7.14087 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58426.4 7.13213 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59512.6 7.26467 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60443.5 -7.37839 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60908.5 -7.43514 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61060.2 -7.45367 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59984.4 -7.32237 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60129.5 -7.3401 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60783.1 -7.41989 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60431 -7.37691 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60140.7 -7.34142 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59998.4 -7.32403 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60395.7 -7.37254 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60028.3 -7.32774 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60887.8 -7.43267 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61066.5 -7.45441 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61164 -7.46632 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60739.8 -7.41458 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60443.5 -7.37838 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60544.4 -7.39071 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60303 -7.3612 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60143.3 -7.34174 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60328.6 -7.3644 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60395.9 -7.37256 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60276 -7.35798 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59684.2 -7.28572 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60187.9 -7.34719 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.4 -7.29698 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60128.6 -7.33997 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60450.5 -7.37922 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59890.5 -7.31089 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59647.3 -7.2812 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59834.9 -7.30412 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60999.1 -7.44624 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56552.5 -6.90341 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57074.5 -6.96718 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56536.5 -6.9015 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57036.3 -6.96248 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57405.1 -7.0075 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57259.2 -6.98972 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56419.6 -6.88718 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56461.1 -6.89226 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56951.6 -6.95213 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56800 -6.93367 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56600.5 -6.90927 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56511.5 -6.8984 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56870.5 -6.94221 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56993.6 -6.95727 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57679.7 -7.04103 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56560.6 -6.90438 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57546.6 -7.02477 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57035.8 -6.96245 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56800.6 -6.93377 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56505.8 -6.89773 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57161.4 -6.97779 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56855 -6.94036 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56619.7 -6.91168 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57621.8 -7.03399 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57359.7 -7.00197 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56825.9 -6.93676 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57031.5 -6.96191 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57239.3 -6.98735 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57254.8 -6.98918 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57074.4 -6.96716 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57574.5 -7.02822 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57912.4 -7.06943 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+61002.8 -7.44668 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61155.3 -7.4653 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61053.3 -7.45282 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61373.4 -7.4919 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60489.7 -7.38403 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61580.3 -7.51716 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60895.6 -7.4336 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60400.3 -7.3731 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61676.2 -7.52889 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61107.3 -7.45944 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61113.2 -7.46014 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61230.4 -7.47441 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60593.4 -7.39669 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61412.2 -7.49666 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61676.7 -7.52894 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61114.5 -7.46029 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62335.5 -7.60932 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61110.8 -7.45984 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61589.5 -7.51825 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62064.5 -7.57624 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61004.9 -7.44692 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60900.3 -7.43416 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61810.8 -7.54524 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61439.5 -7.49992 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61153 -7.46501 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61309.9 -7.48418 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61160.3 -7.46589 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61470.5 -7.50377 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61862.5 -7.55157 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61676 -7.52886 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62387.3 -7.61565 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60904.4 -7.43464 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56381.2 -6.88248 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56647.7 -6.91501 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56593.9 -6.90848 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56466.6 -6.8929 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56205.1 -6.86097 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56339.2 -6.87735 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56071.1 -6.84463 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56586.9 -6.90762 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56922.8 -6.94858 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56073.7 -6.84493 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57080.7 -6.96791 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57414.3 -7.00859 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56582.5 -6.9071 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56583.6 -6.90725 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56679.2 -6.91888 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56421.5 -6.8874 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56904.4 -6.94638 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57127.8 -6.97364 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56965.6 -6.9538 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56822.1 -6.93632 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57302 -6.99491 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.2 -6.90362 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56421.8 -6.88745 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56645.4 -6.91475 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57398.8 -7.00675 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57237.3 -6.98696 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56689 -6.92007 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56011.6 -6.83742 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56467.7 -6.89303 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55922.3 -6.8265 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56957.2 -6.95281 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56586.5 -6.90758 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62384.5 7.61517 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62210.4 7.59389 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62273.5 7.60161 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62019.1 7.5706 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61476.5 7.50432 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61597 7.51908 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62319.3 7.60717 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61416.3 7.49697 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61327.1 7.48611 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61486.5 7.50558 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61673.4 7.52832 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61732.6 7.53556 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61963.2 7.56376 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61418.2 7.49719 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61209 7.47165 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61987.6 7.56667 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62554.4 7.63592 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61756 7.53848 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62264.1 7.60048 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61953.7 7.56258 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62913.2 7.67967 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62120.9 7.583 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62709 7.65477 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62390 7.61587 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62229.7 7.59629 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61997.7 7.56794 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-62036.5 7.57262 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61752 7.53798 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61655.6 7.52623 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62767.5 7.66194 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61803 7.54422 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62761.8 7.66122 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58303.5 7.11703 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58372.5 7.12549 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58359.9 7.12397 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58262.2 7.11204 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58041 7.08509 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58261 7.11167 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58055.7 7.0867 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58647.4 7.15904 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58203.9 7.10488 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58893.9 7.18895 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58051.5 7.08632 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58539.4 7.14586 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58554.4 7.14758 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59335.9 7.24309 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58725.8 7.16875 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58465.7 7.13677 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.8 7.06394 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58529.8 7.14462 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-57972.8 7.07665 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57725.1 7.04637 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57946.6 7.07339 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57919.5 7.07013 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57971 7.07643 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57812.9 7.05708 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58059.5 7.08722 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57860.9 7.06295 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58481.2 7.13869 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57673.5 7.04005 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57733.9 7.04747 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58243 7.10961 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.2 7.09391 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58246.7 7.11007 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61009.3 7.44733 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61630.7 7.52317 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61471.8 7.50372 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61716.9 7.53361 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61893.5 7.55524 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.6 7.48633 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61623.4 7.52221 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61911.8 7.55752 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61279.1 7.48026 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62438.1 7.62175 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61937.8 7.56062 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62078.7 7.57786 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61496.4 7.50682 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61721.2 7.53417 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61321.1 7.48534 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61930.9 7.55971 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63425.9 7.7423 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63726 7.77898 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.8 7.83822 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63931 7.80396 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64114.7 7.8264 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63881.4 7.7979 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64089.1 7.82321 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64226 7.83998 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64162.8 7.83225 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64227.3 7.84014 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63324.3 7.72992 0.00 !Mu1ChX91ERaw[C.o2At2Ch11]
+-63377.9 7.73646 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64592.4 7.88475 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64051.2 7.81864 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63785.3 7.78625 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63425.1 7.74221 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56277.1 6.86963 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56696.4 6.92087 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56524.2 6.89973 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56421.9 6.88734 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56516.9 6.89896 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-56987.1 6.95627 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57341.9 6.99957 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56590.4 6.90785 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56842.5 6.93859 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57029.9 6.96151 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57840.1 7.06034 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57754.1 7.04987 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57718.4 7.04556 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57495 7.01832 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57673.7 7.0401 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-58035.2 7.08421 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57254.3 6.98888 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57309.6 6.99565 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56813.7 6.93513 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57684.3 7.04141 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57273.6 6.99128 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57263.3 6.99002 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56331.2 6.87626 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58331 7.12035 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57448.3 7.0126 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57763.7 7.05109 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57724.2 7.04628 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57458.3 7.01385 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57586.5 7.02947 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57671.5 7.03982 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57076.6 6.9672 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57818.9 7.05784 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59628.2 -7.27891 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60484.2 -7.3834 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59719.3 -7.29006 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59358 -7.24601 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60209.4 -7.34991 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60023.9 -7.32724 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59427.4 -7.25442 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59479.8 -7.26081 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.6 -7.25995 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59661.5 -7.28303 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59523 -7.2661 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59520.7 -7.26582 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60207.7 -7.3497 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59281.6 -7.23662 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59499.5 -7.26329 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59822.2 -7.30262 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62231 -7.59672 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62517.6 -7.63166 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62462.5 -7.62493 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62047 -7.57417 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62207.3 -7.59375 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62362.9 -7.61277 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62017.5 -7.57064 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61713.9 -7.53355 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61449.1 -7.50123 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62086.1 -7.57898 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62077.7 -7.57796 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62287.6 -7.60362 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62027.9 -7.5719 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61668.6 -7.52799 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61804.8 -7.54468 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115.7 -6.85022 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56255.7 -6.86728 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55634.9 -6.79153 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55640.9 -6.79227 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55384.3 -6.76092 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56420.4 -6.88745 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55380.9 -6.76051 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55934.8 -6.82817 0.00 !Mu1ChY40ERaw[C.o3At3Ch8]
+56036.5 -6.84053 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56149.2 -6.85434 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55509.9 -6.77625 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56637.3 -6.9139 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55637.9 -6.79188 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55730.3 -6.80315 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55751.6 -6.80582 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55760.9 -6.80693 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.7 -6.9819 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56616.7 -6.91132 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56565.1 -6.90504 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56007.5 -6.83694 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56838.9 -6.93846 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56277 -6.86982 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56475.8 -6.89415 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56394.9 -6.88425 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57286.1 -6.99307 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57107.7 -6.97128 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56704.7 -6.92209 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57329.2 -6.99832 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57398.8 -7.00677 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57025.8 -6.96125 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56179.4 -6.85794 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57294.5 -6.99407 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61036 -7.45079 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61615.2 -7.52147 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61327.7 -7.48646 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61616.9 -7.52169 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61289.5 -7.48175 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60072.3 -7.33313 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60461.8 -7.38072 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61147.5 -7.46439 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60324.6 -7.36394 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61243.3 -7.47609 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60892.2 -7.43321 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60362.6 -7.36861 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60563.4 -7.39312 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60969.5 -7.44272 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60632 -7.40146 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61354.5 -7.48966 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61129 -7.46218 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61142.4 -7.46376 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61098.2 -7.45836 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60505 -7.38602 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60475.6 -7.38236 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61198.3 -7.47058 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60653.8 -7.40421 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60610.3 -7.39887 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61084.6 -7.45673 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61281.6 -7.48082 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60759.5 -7.41709 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60908.7 -7.43532 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60520.1 -7.38782 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61330.5 -7.48678 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61609.9 -7.52084 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60752.2 -7.41622 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55866.2 -6.81972 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55510.1 -6.77629 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55739.1 -6.80422 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55602.7 -6.78757 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55779.5 -6.80916 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55452.6 -6.76931 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55433.8 -6.76695 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56175.8 -6.85753 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55295 -6.75003 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55267.6 -6.74664 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55913.4 -6.82548 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55219 -6.74076 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55914.7 -6.82563 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56088.3 -6.84683 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56128.7 -6.85177 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.7 -6.9068 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54791.9 -6.68861 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55573.5 -6.78397 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55177.3 -6.73564 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.9 -6.722 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55271.1 -6.74706 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55426.4 -6.76607 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55308.9 -6.7517 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55560.5 -6.78242 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55828.4 -6.8151 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55461.9 -6.77042 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.4 -6.69404 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55154.2 -6.73277 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55218.5 -6.74067 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55198.9 -6.73821 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55347.2 -6.75638 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56270.5 -6.86904 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62771.8 7.66248 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62536.2 7.63367 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62923.2 7.68092 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62099.2 7.5803 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62071.6 7.577 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62762.5 7.66131 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62536.6 7.63372 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62863.4 7.6736 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62977.6 7.68755 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62169.2 7.58889 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62486.2 7.62758 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62494 7.62855 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62591.4 7.6404 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62596.5 7.64104 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62693.3 7.65283 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63431.9 7.74304 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62275.5 7.60186 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61847 7.54956 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61648.9 7.52542 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61472.2 7.5038 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61487.7 7.50573 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62323.6 7.60772 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62160.6 7.58783 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61801.5 7.54404 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61589.4 7.51813 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61837.9 7.54843 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61997.2 7.56788 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61886.9 7.55441 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61669.6 7.52787 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61317.6 7.48493 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62385.4 7.6153 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61544.8 7.51271 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59005.1 7.20263 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58125.4 7.0952 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58621 7.15577 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58420.8 7.13128 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58182.1 7.10215 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58179.5 7.10183 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58382.7 7.12665 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57951.6 7.074 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57619.4 7.03346 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58602.8 7.15349 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58763.6 7.17317 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58295.3 7.11601 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58611.5 7.15458 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58569.5 7.14945 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58368.6 7.12489 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58524.7 7.144 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57829.7 7.05919 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57177.7 6.97958 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58151 7.0984 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57925 7.07083 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57600.2 7.03119 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57219.8 6.9847 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57855.4 7.06228 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57682.2 7.04116 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57912.6 7.06929 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57598.9 7.03102 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57919.6 7.07016 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.5 6.9577 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57498.2 7.01871 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56729.1 6.92483 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57500.6 7.01901 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57910.6 7.06904 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63311 7.72824 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64991.8 7.93347 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-63994.5 7.8117 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63750.3 7.78186 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64408.5 7.86228 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63629 7.76702 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63438.8 7.74388 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63358.3 7.73399 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63144.6 7.70793 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63812.1 7.7894 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63662.4 7.77117 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63876.9 7.79733 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63771.1 7.78444 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63652.1 7.7699 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63600.3 7.76358 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63256.4 7.72158 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63333.7 7.73107 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63150 7.70859 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63204.5 7.71524 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63982.1 7.81015 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63771.3 7.78446 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63682.7 7.7737 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63921.1 7.80269 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63090.3 7.7013 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63548.7 7.75733 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63345.7 7.73257 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63537.7 7.75593 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63267.1 7.72292 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64614.3 7.88733 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63737 7.78019 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63627.5 7.76682 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59011.6 7.20345 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58536.3 7.14543 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58294.5 7.11592 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58764.5 7.17328 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59388.2 7.24938 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59353.9 7.24523 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58868.9 7.18606 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59020.4 7.20454 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59051.2 7.20827 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59067.7 7.21031 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58780.6 7.17527 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59011.8 7.20348 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58685.6 7.16369 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60313.6 7.36243 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58947.7 7.1956 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58640.6 7.15819 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59256.4 7.23333 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59391.4 7.24979 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59741.5 7.29254 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59153 7.2207 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59659.3 7.28255 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60043.5 7.32941 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59492.9 7.26218 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59355.9 7.2455 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60079 7.3337 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58759.7 7.17268 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59106.3 7.21501 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59356.4 7.24556 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58905.4 7.19045 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58909 7.19091 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59139.8 7.21905 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59244.4 7.23184 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63180.3 -7.71254 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63958.5 -7.80757 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62563.9 -7.63734 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63393.8 -7.73864 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62965.3 -7.6863 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62695.2 -7.65332 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63071 -7.6992 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62684.7 -7.65205 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62805.2 -7.66674 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63405.9 -7.74008 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+63006 -7.69129 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62613.8 -7.64344 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62135.8 -7.58506 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62797.8 -7.66584 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+63003.9 -7.69104 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63451.5 -7.74566 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61680.4 -7.52939 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60963.7 -7.44202 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60731.3 -7.4136 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62044.4 -7.57386 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.9 -7.46121 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60932 -7.4381 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62091.8 -7.57965 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61042.5 -7.45157 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61080.2 -7.45622 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61569 -7.51583 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61088.9 -7.45724 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61401.8 -7.49545 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61590.8 -7.51854 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61456.7 -7.50214 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61348.2 -7.48891 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61814.6 -7.54586 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56310.4 -6.87387 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56475.6 -6.89413 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56843.7 -6.93897 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56709.9 -6.9227 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+57006.5 -6.95894 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56922.7 -6.94871 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56395.9 -6.88437 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56437.5 -6.88946 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56168.1 -6.85657 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58137.4 -7.09691 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56752.1 -6.92786 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56268.3 -6.86879 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57248.3 -6.98843 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57237.7 -6.98715 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57062.5 -6.96574 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56700.2 -6.92152 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57609.4 -7.03252 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57045.1 -6.96368 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57893.4 -7.06716 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57432.1 -7.01085 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57327.3 -6.9981 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58593.6 -7.15267 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57713.2 -7.04516 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57801 -7.05589 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57750.1 -7.0497 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57564.6 -7.02705 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57513.2 -7.02079 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58298.6 -7.11669 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57883.6 -7.066 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57333.9 -6.99889 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57877.7 -7.06529 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58222.3 -7.10732 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59352.4 -7.24534 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59653 -7.28202 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59466.7 -7.25926 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60421 -7.37573 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59563.3 -7.27104 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59865.2 -7.30789 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59568.1 -7.27161 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59903.1 -7.31254 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59874.2 -7.30895 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59565.9 -7.27135 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59951.4 -7.31844 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60102.6 -7.33689 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59329 -7.24242 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59973.3 -7.32106 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59369.2 -7.24734 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60205.5 -7.34945 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60559.1 -7.39262 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61223.9 -7.47379 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60555.5 -7.39217 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61267.8 -7.47916 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61183.2 -7.46879 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60877.4 -7.43143 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60964.7 -7.44213 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61316.7 -7.48517 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60889.6 -7.43289 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60834.9 -7.42623 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61475.4 -7.50452 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60713.8 -7.41149 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61139.9 -7.46349 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60586.2 -7.39585 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61091.2 -7.45753 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61463 -7.50289 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56883.7 -6.94393 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55958.3 -6.83096 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56259.7 -6.86775 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56620.9 -6.91184 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56390.1 -6.88368 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56741.9 -6.92663 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55881.7 -6.82158 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57242.5 -6.98773 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56047.6 -6.84185 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56706.4 -6.92227 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56618.3 -6.91153 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57516.3 -7.02116 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57052.7 -6.96458 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56701.3 -6.92167 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57023.2 -6.96095 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56155.3 -6.85506 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56480.1 -6.89468 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57291 -6.99365 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56601.1 -6.90948 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56864.7 -6.94167 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56504.8 -6.89772 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56531 -6.90085 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56803.1 -6.93407 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56744.6 -6.92696 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56339.6 -6.87753 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57094.7 -6.96973 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57471.8 -7.01574 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56243.7 -6.86585 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56920.2 -6.94841 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56357.9 -6.87972 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56171.4 -6.85698 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62432 7.62115 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61898.1 7.55599 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62261.8 7.60035 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62377.7 7.61452 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61987.1 7.56678 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61925.3 7.55922 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62100.7 7.58066 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61621.8 7.5222 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61764.3 7.53956 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61918.3 7.55834 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61881.5 7.55388 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62903 7.67858 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61674.1 7.52859 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61812.4 7.54541 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61555.6 7.51408 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62627.4 7.64492 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63656.5 7.77047 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63108 7.70354 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62943.4 7.68346 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62837.7 7.67058 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62676.4 7.65089 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.8 7.70503 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63798 7.78783 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63791 7.78695 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62795 7.6654 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63502.6 7.75172 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63532.1 7.75542 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63309.9 7.72829 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63637.8 7.76831 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63587.2 7.76214 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64531.7 7.87739 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63742.8 7.78111 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59430.3 7.25494 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59220.2 7.22924 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58174.6 7.10163 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58373.6 7.12581 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58848.1 7.18369 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-59012.9 7.20387 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59307.2 7.23977 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58677.9 7.16294 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59283.1 7.23677 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58956.4 7.1969 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-59043.5 7.20751 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59047.9 7.20805 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59414.1 7.25268 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58832.8 7.18171 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59184.6 7.22469 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57410.4 7.00817 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57223.7 6.98537 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56941.7 6.95094 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57306.3 6.99545 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56939.2 6.95063 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57390.5 7.00573 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56638.3 6.91393 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57358.5 7.00183 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57684.4 7.04165 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56591.3 6.9082 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57508 7.02016 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57136.1 6.97475 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56380.4 6.88251 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56917.4 6.9481 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56824.5 6.93679 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56577 6.90664 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64140 7.82956 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63839.3 7.79281 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63564.4 7.75927 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63770.4 7.78438 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63671.6 7.77235 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63272.3 7.72359 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64307 7.84993 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62530.8 7.63314 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62672.9 7.65044 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63019 7.69272 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63152.8 7.70897 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63441 7.74419 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64109.3 7.82574 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62453.5 7.62365 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62622.2 7.64425 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63017.2 7.69251 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62453.4 7.62363 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62780.3 7.66354 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62670.1 7.65009 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62554.7 7.63598 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62062.4 7.57587 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62422.6 7.61994 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62402.7 7.61746 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.8 7.58526 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62351.6 7.61123 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62791 7.66488 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62302.7 7.60527 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62078.1 7.57785 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62829.3 7.66952 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.5 7.6367 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62144 7.5859 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62353.9 7.61152 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56131.1 6.85191 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55920.2 6.82616 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55178.7 6.73562 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55783.6 6.8095 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55958 6.83076 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55940.2 6.82857 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55976 6.83293 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55255.5 6.74498 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55479.7 6.77237 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-56040.3 6.84079 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55791.2 6.81044 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55701.6 6.79948 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56738.3 6.92598 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56293.9 6.87171 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55819.1 6.81378 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55694.2 6.79856 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57554.1 7.02556 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56976.8 6.95514 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57518.4 7.02123 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56980.7 6.95562 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58026.2 7.08323 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57191.1 6.98127 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57432 7.01071 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56290.9 6.87137 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56748.2 6.92722 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57901.7 7.06808 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57512.9 7.02056 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57112.4 6.9717 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57653.3 7.03769 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56762.7 6.92904 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57841.9 7.06073 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56524.8 6.89995 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60194.7 -7.34802 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987.9 -7.20075 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60132.2 -7.34041 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59977.5 -7.32152 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59787.4 -7.2983 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59893.4 -7.31122 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59798.6 -7.29963 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60251.3 -7.3549 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60589.5 -7.39622 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60436.6 -7.37756 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60189.7 -7.3474 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59826.4 -7.3031 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59687.2 -7.28606 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59622.1 -7.27818 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60574.8 -7.39447 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59719.2 -7.29002 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62963.1 -7.68601 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63186.9 -7.71331 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62262.3 -7.60044 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62806 -7.6668 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63246.8 -7.72062 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63550.3 -7.75759 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+63016.8 -7.69256 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62986.6 -7.68882 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63522.2 -7.75424 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63478.7 -7.7489 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62643.1 -7.64692 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63429.9 -7.74292 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62483.7 -7.62745 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62960.7 -7.68572 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63085.3 -7.7009 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62969.4 -7.68675 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84715 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56228.6 -6.86391 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55834.6 -6.81583 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55713 -6.80096 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55757 -6.80633 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56228 -6.86384 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55925.9 -6.82695 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55539.7 -6.77979 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55412.1 -6.76422 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185 -6.85859 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55981.8 -6.83375 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55370.8 -6.75918 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55748.9 -6.80537 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55612.3 -6.78871 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55926.3 -6.82699 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55801.2 -6.81172 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56670.8 -6.9179 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56949.5 -6.9519 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57147.1 -6.97597 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56960.4 -6.95318 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56493.9 -6.89629 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56963.2 -6.95364 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56581.6 -6.90701 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57050.7 -6.96421 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57076.9 -6.96747 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56623.8 -6.91216 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57493.2 -7.01827 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57089.4 -6.96896 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57586.3 -7.02963 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57044.7 -6.96349 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56777.7 -6.93089 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57421.6 -7.00961 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59437.6 -7.25562 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59994 -7.32351 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59523.9 -7.2662 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59337.1 -7.24336 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59498.6 -7.26303 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58818.6 -7.18002 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59332.2 -7.24276 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+60018.7 -7.32659 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60180.5 -7.3463 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59480.7 -7.26089 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59527.7 -7.26664 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59635.1 -7.27972 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59581.2 -7.27315 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59444.7 -7.25647 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59048.4 -7.20811 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59989.5 -7.32298 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62855.4 -7.67285 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62750.4 -7.66003 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62532.7 -7.63346 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62151.3 -7.58691 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.6 -7.57075 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62710.2 -7.65509 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62271.6 -7.60155 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62960 -7.68565 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62677.8 -7.65121 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62626.1 -7.64489 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61878.3 -7.55359 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61999.2 -7.56832 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61924.7 -7.55927 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+61995.6 -7.56788 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61960.5 -7.56357 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61833.6 -7.54812 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56731.4 -6.92523 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56909.9 -6.94702 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56318.3 -6.87484 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55946.5 -6.8294 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56299.8 -6.87252 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56328.7 -6.87609 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55986.5 -6.8343 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55996.3 -6.83546 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55858.1 -6.81861 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56336.4 -6.877 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56504.4 -6.89753 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56280.4 -6.87019 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55801.7 -6.81176 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55903.8 -6.82419 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56672.2 -6.91805 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56668.9 -6.91765 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57102.2 -6.97047 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57033.7 -6.96222 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57102 -6.97059 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+57015.2 -6.95994 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57666.6 -7.03944 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57327.3 -6.99806 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56838.8 -6.9384 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57642.3 -7.0364 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57472.4 -7.01575 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57009.2 -6.95917 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57427.6 -7.01028 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57105.1 -6.97094 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57606 -7.03198 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56852.7 -6.94013 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57287.8 -6.99311 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57526.7 -7.02236 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/calibT0.cal1 b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/calibT0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..09f74dedd1b793c1b5dd151ef57e7311b3f4476e
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Calibration/double_alpha_Ra220/calibT0.cal1
@@ -0,0 +1,1023 @@
+943.498 -0.114176 0.00 !Mu0ChX1TRaw[Co1At1Ch1]
+954.542 -0.115529 0.00 !Mu0ChX2TRaw[Co1At1Ch2]
+955.481 -0.115657 0.00 !Mu0ChX3TRaw[Co1At1Ch3]
+969.726 -0.117409 0.00 !Mu0ChX4TRaw[Co1At1Ch4]
+969.528 -0.117367 0.00 !Mu0ChX5TRaw[Co1At1Ch5]
+969.351 -0.117353 0.00 !Mu0ChX6TRaw[Co1At1Ch6]
+974.621 -0.117969 0.00 !Mu0ChX7TRaw[Co1At1Ch7]
+976.758 -0.118246 0.00 !Mu0ChX8TRaw[Co1At1Ch8]
+975.237 -0.118065 0.00 !Mu0ChX9TRaw[Co1At1Ch9]
+979.286 -0.118546 0.00 !Mu0ChX10TRaw[Co1At1Ch10]
+984.065 -0.119138 0.00 !Mu0ChX11TRaw[Co1At1Ch11]
+983.533 -0.119075 0.00 !Mu0ChX12TRaw[Co1At1Ch12]
+991.106 -0.119996 0.00 !Mu0ChX13TRaw[Co1At1Ch13]
+976.115 -0.118174 0.00 !Mu0ChX14TRaw[Co1At1Ch14]
+987.246 -0.119531 0.00 !Mu0ChX15TRaw[Co1At1Ch15]
+978.41 -0.118448 0.00 !Mu0ChX16TRaw[Co1At1Ch16]
+952.87 -0.115275 0.00 !Mu0ChX17TRaw[Co1At2Ch1]
+963.333 -0.116527 0.00 !Mu0ChX18TRaw[Co1At2Ch2]
+975.677 -0.118044 0.00 !Mu0ChX19TRaw[Co1At2Ch3]
+976.043 -0.118125 0.00 !Mu0ChX20TRaw[Co1At2Ch4]
+985.306 -0.119233 0.00 !Mu0ChX21TRaw[Co1At2Ch5]
+979.666 -0.118555 0.00 !Mu0ChX22TRaw[Co1At2Ch6]
+990.352 -0.119845 0.00 !Mu0ChX23TRaw[Co1At2Ch7]
+991.826 -0.120005 0.00 !Mu0ChX24TRaw[Co1At2Ch8]
+987.033 -0.119427 0.00 !Mu0ChX25TRaw[Co1At2Ch9]
+998.041 -0.120777 0.00 !Mu0ChX26TRaw[Co1At2Ch10]
+1000.4 -0.121057 0.00 !Mu0ChX27TRaw[Co1At2Ch11]
+1004.27 -0.121545 0.00 !Mu0ChX28TRaw[Co1At2Ch12]
+1000.07 -0.121021 0.00 !Mu0ChX29TRaw[Co1At2Ch13]
+998.458 -0.120851 0.00 !Mu0ChX30TRaw[Co1At2Ch14]
+995.135 -0.12045 0.00 !Mu0ChX31TRaw[Co1At2Ch15]
+991.094 -0.119947 0.00 !Mu0ChX32TRaw[Co1At2Ch16]
+869.874 -0.105192 0.00 !Mu0ChX33TRaw[Co1At3Ch1]
+867.818 -0.104955 0.00 !Mu0ChX34TRaw[Co1At3Ch2]
+887.963 -0.107397 0.00 !Mu0ChX35TRaw[Co1At3Ch3]
+876.58 -0.106033 0.00 !Mu0ChX36TRaw[Co1At3Ch4]
+878.364 -0.106227 0.00 !Mu0ChX37TRaw[Co1At3Ch5]
+892.804 -0.108005 0.00 !Mu0ChX38TRaw[Co1At3Ch6]
+894.475 -0.108195 0.00 !Mu0ChX39TRaw[Co1At3Ch7]
+892.476 -0.107979 0.00 !Mu0ChX40TRaw[Co1At3Ch8]
+895.157 -0.108302 0.00 !Mu0ChX41TRaw[Co1At3Ch9]
+895.419 -0.108334 0.00 !Mu0ChX42TRaw[Co1At3Ch10]
+894.752 -0.108243 0.00 !Mu0ChX43TRaw[Co1At3Ch11]
+901.721 -0.109095 0.00 !Mu0ChX44TRaw[Co1At3Ch12]
+896.865 -0.108505 0.00 !Mu0ChX45TRaw[Co1At3Ch13]
+891.69 -0.107877 0.00 !Mu0ChX46TRaw[Co1At3Ch14]
+894.258 -0.108187 0.00 !Mu0ChX47TRaw[Co1At3Ch15]
+894.901 -0.10826 0.00 !Mu0ChX48TRaw[Co1At3Ch16]
+881.631 -0.106556 0.00 !Mu0ChX49TRaw[Co1At4Ch1]
+884.86 -0.106942 0.00 !Mu0ChX50TRaw[Co1At4Ch2]
+890.381 -0.107622 0.00 !Mu0ChX51TRaw[Co1At4Ch3]
+903.08 -0.109464 0.00 !Mu0ChX52TRaw[Co1At4Ch4]
+903.944 -0.109295 0.00 !Mu0ChX53TRaw[Co1At4Ch5]
+907.059 -0.109652 0.00 !Mu0ChX54TRaw[Co1At4Ch6]
+909.716 -0.109955 0.00 !Mu0ChX55TRaw[Co1At4Ch7]
+913.814 -0.110458 0.00 !Mu0ChX56TRaw[Co1At4Ch8]
+922.196 -0.111499 0.00 !Mu0ChX57TRaw[Co1At4Ch9]
+913.548 -0.110456 0.00 !Mu0ChX58TRaw[Co1At4Ch10]
+921.22 -0.111378 0.00 !Mu0ChX59TRaw[Co1At4Ch11]
+925.852 -0.111943 0.00 !Mu0ChX60TRaw[Co1At4Ch12]
+932.855 -0.112807 0.00 !Mu0ChX61TRaw[Co1At4Ch13]
+935.505 -0.11314 0.00 !Mu0ChX62TRaw[Co1At4Ch14]
+937.107 -0.113338 0.00 !Mu0ChX63TRaw[Co1At4Ch15]
+926.099 -0.111982 0.00 !Mu0ChX64TRaw[Co1At4Ch16]
+957.155 -0.115846 0.00 !Mu0ChX65TRaw[Co2At1Ch1]
+962.206 -0.11646 0.00 !Mu0ChX66TRaw[Co2At1Ch2]
+971.895 -0.117644 0.00 !Mu0ChX67TRaw[Co2At1Ch3]
+973.151 -0.117791 0.00 !Mu0ChX68TRaw[Co2At1Ch4]
+976.443 -0.118174 0.00 !Mu0ChX69TRaw[Co2At1Ch5]
+989.114 -0.119717 0.00 !Mu0ChX70TRaw[Co2At1Ch6]
+993.741 -0.120284 0.00 !Mu0ChX71TRaw[Co2At1Ch7]
+994.917 -0.120426 0.00 !Mu0ChX72TRaw[Co2At1Ch8]
+1005.69 -0.121763 0.00 !Mu0ChX73TRaw[Co2At1Ch9]
+986.82 -0.119445 0.00 !Mu0ChX74TRaw[Co2At1Ch10]
+1003.89 -0.121535 0.00 !Mu0ChX75TRaw[Co2At1Ch11]
+994.316 -0.120381 0.00 !Mu0ChX76TRaw[Co2At1Ch12]
+1001.66 -0.121262 0.00 !Mu0ChX77TRaw[Co2At1Ch13]
+1005.75 -0.121766 0.00 !Mu0ChX78TRaw[Co2At1Ch14]
+996.228 -0.120615 0.00 !Mu0ChX79TRaw[Co2At1Ch15]
+999.032 -0.120952 0.00 !Mu0ChX80TRaw[Co2At1Ch16]
+922.493 -0.111515 0.00 !Mu0ChX81TRaw[Co2At2Ch1]
+932.405 -0.112746 0.00 !Mu0ChX82TRaw[Co2At2Ch2]
+924.498 -0.111774 0.00 !Mu0ChX83TRaw[Co2At2Ch3]
+936.88 -0.113281 0.00 !Mu0ChX84TRaw[Co2At2Ch4]
+930.333 -0.112468 0.00 !Mu0ChX85TRaw[Co2At2Ch5]
+941.329 -0.113819 0.00 !Mu0ChX86TRaw[Co2At2Ch6]
+949.396 -0.114818 0.00 !Mu0ChX87TRaw[Co2At2Ch7]
+942.586 -0.113978 0.00 !Mu0ChX88TRaw[Co2At2Ch8]
+949.288 -0.114813 0.00 !Mu0ChX89TRaw[Co2At2Ch9]
+956.784 -0.115728 0.00 !Mu0ChX90TRaw[Co2At2Ch10]
+964.341 -0.11664 0.00 !Mu0ChX91TRaw[Co2At2Ch11]
+961.03 -0.11625 0.00 !Mu0ChX92TRaw[Co2At2Ch12]
+961.407 -0.116299 0.00 !Mu0ChX93TRaw[Co2At2Ch13]
+960.173 -0.116152 0.00 !Mu0ChX94TRaw[Co2At2Ch14]
+974.188 -0.117868 0.00 !Mu0ChX95TRaw[Co2At2Ch15]
+965.16 -0.116744 0.00 !Mu0ChX96TRaw[Co2At2Ch16]
+868.319 -0.105013 0.00 !Mu0ChX97TRaw[Co2At3Ch1]
+877.769 -0.106169 0.00 !Mu0ChX98TRaw[Co2At3Ch2]
+878.126 -0.106212 0.00 !Mu0ChX99TRaw[Co2At3Ch3]
+883.907 -0.106905 0.00 !Mu0ChX100TRaw[Co2At3Ch4]
+893.227 -0.108043 0.00 !Mu0ChX101TRaw[Co2At3Ch5]
+900.551 -0.108935 0.00 !Mu0ChX102TRaw[Co2At3Ch6]
+896.432 -0.108442 0.00 !Mu0ChX103TRaw[Co2At3Ch7]
+894.569 -0.108194 0.00 !Mu0ChX104TRaw[Co2At3Ch8]
+903.782 -0.109336 0.00 !Mu0ChX105TRaw[Co2At3Ch9]
+901.487 -0.109053 0.00 !Mu0ChX106TRaw[Co2At3Ch10]
+907.332 -0.109771 0.00 !Mu0ChX107TRaw[Co2At3Ch11]
+904.852 -0.109449 0.00 !Mu0ChX108TRaw[Co2At3Ch12]
+902.075 -0.109128 0.00 !Mu0ChX109TRaw[Co2At3Ch13]
+906.169 -0.109641 0.00 !Mu0ChX110TRaw[Co2At3Ch14]
+902.566 -0.109177 0.00 !Mu0ChX111TRaw[Co2At3Ch15]
+904.912 -0.109478 0.00 !Mu0ChX112TRaw[Co2At3Ch16]
+888.355 -0.107364 0.00 !Mu0ChX113TRaw[Co2At4Ch1]
+891.484 -0.107748 0.00 !Mu0ChX114TRaw[Co2At4Ch2]
+891.715 -0.107782 0.00 !Mu0ChX115TRaw[Co2At4Ch3]
+901.831 -0.109007 0.00 !Mu0ChX116TRaw[Co2At4Ch4]
+905.323 -0.109423 0.00 !Mu0ChX117TRaw[Co2At4Ch5]
+898.889 -0.108648 0.00 !Mu0ChX118TRaw[Co2At4Ch6]
+913.375 -0.110413 0.00 !Mu0ChX119TRaw[Co2At4Ch7]
+914.714 -0.110579 0.00 !Mu0ChX120TRaw[Co2At4Ch8]
+908.954 -0.109898 0.00 !Mu0ChX121TRaw[Co2At4Ch9]
+914.168 -0.1105 0.00 !Mu0ChX122TRaw[Co2At4Ch10]
+922.429 -0.111529 0.00 !Mu0ChX123TRaw[Co2At4Ch11]
+914.821 -0.110604 0.00 !Mu0ChX124TRaw[Co2At4Ch12]
+917.725 -0.110972 0.00 !Mu0ChX125TRaw[Co2At4Ch13]
+919.575 -0.11118 0.00 !Mu0ChX126TRaw[Co2At4Ch14]
+914.799 -0.110613 0.00 !Mu0ChX127TRaw[Co2At4Ch15]
+919.481 -0.111151 0.00 !Mu0ChX128TRaw[Co2At4Ch16]
+944.925 -0.114033 0.00 !Mu0ChY2TRaw[Co3At1Ch2]
+944.005 -0.113921 0.00 !Mu0ChY3TRaw[Co3At1Ch3]
+962.012 -0.116104 0.00 !Mu0ChY4TRaw[Co3At1Ch4]
+957.491 -0.115563 0.00 !Mu0ChY5TRaw[Co3At1Ch5]
+973.261 -0.117481 0.00 !Mu0ChY6TRaw[Co3At1Ch6]
+971.85 -0.117339 0.00 !Mu0ChY7TRaw[Co3At1Ch7]
+969.183 -0.117018 0.00 !Mu0ChY8TRaw[Co3At1Ch8]
+975.83 -0.117842 0.00 !Mu0ChY9TRaw[Co3At1Ch9]
+971.457 -0.117316 0.00 !Mu0ChY10TRaw[Co3At1Ch10]
+974.23 -0.117632 0.00 !Mu0ChY11TRaw[Co3At1Ch11]
+980.648 -0.118398 0.00 !Mu0ChY12TRaw[Co3At1Ch12]
+978.32 -0.11814 0.00 !Mu0ChY13TRaw[Co3At1Ch13]
+974.115 -0.117633 0.00 !Mu0ChY14TRaw[Co3At1Ch14]
+976.65 -0.117944 0.00 !Mu0ChY15TRaw[Co3At1Ch15]
+983.277 -0.118761 0.00 !Mu0ChY16TRaw[Co3At1Ch16]
+938.109 -0.113175 0.00 !Mu0ChY17TRaw[Co3At2Ch1]
+947.448 -0.114309 0.00 !Mu0ChY18TRaw[Co3At2Ch2]
+956.035 -0.115351 0.00 !Mu0ChY19TRaw[Co3At2Ch3]
+947.978 -0.11436 0.00 !Mu0ChY20TRaw[Co3At2Ch4]
+950.631 -0.114686 0.00 !Mu0ChY21TRaw[Co3At2Ch5]
+953.963 -0.115103 0.00 !Mu0ChY22TRaw[Co3At2Ch6]
+959.973 -0.115832 0.00 !Mu0ChY23TRaw[Co3At2Ch7]
+959.848 -0.115841 0.00 !Mu0ChY24TRaw[Co3At2Ch8]
+964.52 -0.116398 0.00 !Mu0ChY25TRaw[Co3At2Ch9]
+962.989 -0.116195 0.00 !Mu0ChY26TRaw[Co3At2Ch10]
+959.157 -0.115516 0.00 !Mu0ChY27TRaw[Co3At2Ch11]
+973.941 -0.117562 0.00 !Mu0ChY28TRaw[Co3At2Ch12]
+976.25 -0.117834 0.00 !Mu0ChY29TRaw[Co3At2Ch13]
+971.294 -0.11722 0.00 !Mu0ChY30TRaw[Co3At2Ch14]
+974.292 -0.11759 0.00 !Mu0ChY31TRaw[Co3At2Ch15]
+968.991 -0.116928 0.00 !Mu0ChY32TRaw[Co3At2Ch16]
+871.769 -0.105131 0.00 !Mu0ChY33TRaw[Co3At3Ch1]
+871.608 -0.105113 0.00 !Mu0ChY34TRaw[Co3At3Ch2]
+888.383 -0.107174 0.00 !Mu0ChY35TRaw[Co3At3Ch3]
+878.496 -0.105955 0.00 !Mu0ChY36TRaw[Co3At3Ch4]
+889.979 -0.107363 0.00 !Mu0ChY37TRaw[Co3At3Ch5]
+889.448 -0.107278 0.00 !Mu0ChY38TRaw[Co3At3Ch6]
+889.860 -0.107347 0.00 !Mu0ChY39TRaw[Co3At3Ch7]
+908.071 -0.109567 0.00 !Mu0ChY40TRaw[Co3At3Ch8]
+905.490 -0.109285 0.00 !Mu0ChY41TRaw[Co3At3Ch9]
+903.864 -0.109045 0.00 !Mu0ChY42TRaw[Co3At3Ch10]
+902.655 -0.108924 0.00 !Mu0ChY43TRaw[Co3At3Ch11]
+913.208 -0.110196 0.00 !Mu0ChY44TRaw[Co3At3Ch12]
+910.710 -0.109895 0.00 !Mu0ChY45TRaw[Co3At3Ch13]
+905.186 -0.109240 0.00 !Mu0ChY46TRaw[Co3At3Ch14]
+915.646 -0.110513 0.00 !Mu0ChY47TRaw[Co3At3Ch15]
+903.665 -0.109056 0.00 !Mu0ChY48TRaw[Co3At3Ch16]
+859.176 -0.103507 0.00 !Mu0ChY49TRaw[Co3At4Ch1]
+870.909 -0.104888 0.00 !Mu0ChY50TRaw[Co3At4Ch2]
+866.307 -0.104347 0.00 !Mu0ChY51TRaw[Co3At4Ch3]
+883.056 -0.106391 0.00 !Mu0ChY52TRaw[Co3At4Ch4]
+885.647 -0.106718 0.00 !Mu0ChY53TRaw[Co3At4Ch5]
+886.974 -0.106878 0.00 !Mu0ChY54TRaw[Co3At4Ch6]
+883.169 -0.106441 0.00 !Mu0ChY55TRaw[Co3At4Ch7]
+891.212 -0.107426 0.00 !Mu0ChY56TRaw[Co3At4Ch8]
+892.785 -0.107608 0.00 !Mu0ChY57TRaw[Co3At4Ch9]
+897.104 -0.108136 0.00 !Mu0ChY58TRaw[Co3At4Ch10]
+904.326 -0.109012 0.00 !Mu0ChY59TRaw[Co3At4Ch11]
+903.135 -0.108611 0.00 !Mu0ChY60TRaw[Co3At4Ch12]
+901.746 -0.108719 0.00 !Mu0ChY61TRaw[Co3At4Ch13]
+908.712 -0.109581 0.00 !Mu0ChY62TRaw[Co3At4Ch14]
+903.269 -0.108895 0.00 !Mu0ChY63TRaw[Co3At4Ch15]
+908.687 -0.109543 0.00 !Mu0ChY64TRaw[Co3At4Ch16]
+963.864 -0.116469 0.00 !Mu0ChY65TRaw[Co4At1Ch1]
+970.82 -0.117302 0.00 !Mu0ChY66TRaw[Co4At1Ch2]
+976.574 -0.118012 0.00 !Mu0ChY67TRaw[Co4At1Ch3]
+976.674 -0.118028 0.00 !Mu0ChY68TRaw[Co4At1Ch4]
+979.506 -0.118378 0.00 !Mu0ChY69TRaw[Co4At1Ch5]
+983.206 -0.118825 0.00 !Mu0ChY70TRaw[Co4At1Ch6]
+982.64 -0.118781 0.00 !Mu0ChY71TRaw[Co4At1Ch7]
+985.816 -0.119156 0.00 !Mu0ChY72TRaw[Co4At1Ch8]
+989.544 -0.119628 0.00 !Mu0ChY73TRaw[Co4At1Ch9]
+981.143 -0.118591 0.00 !Mu0ChY74TRaw[Co4At1Ch10]
+989.884 -0.119656 0.00 !Mu0ChY75TRaw[Co4At1Ch11]
+1000.31 -0.120924 0.00 !Mu0ChY76TRaw[Co4At1Ch12]
+995.389 -0.120327 0.00 !Mu0ChY77TRaw[Co4At1Ch13]
+997.331 -0.120579 0.00 !Mu0ChY78TRaw[Co4At1Ch14]
+994.499 -0.120247 0.00 !Mu0ChY79TRaw[Co4At1Ch15]
+1001.6 -0.121097 0.00 !Mu0ChY80TRaw[Co4At1Ch16]
+970.056 -0.117145 0.00 !Mu0ChY81TRaw[Co4At2Ch1]
+986.117 -0.119118 0.00 !Mu0ChY82TRaw[Co4At2Ch2]
+981.373 -0.118534 0.00 !Mu0ChY83TRaw[Co4At2Ch3]
+995.859 -0.12031 0.00 !Mu0ChY84TRaw[Co4At2Ch4]
+999.672 -0.120777 0.00 !Mu0ChY85TRaw[Co4At2Ch5]
+1002.22 -0.121085 0.00 !Mu0ChY86TRaw[Co4At2Ch6]
+998.019 -0.120569 0.00 !Mu0ChY87TRaw[Co4At2Ch7]
+1008.32 -0.121839 0.00 !Mu0ChY88TRaw[Co4At2Ch8]
+1004.28 -0.121339 0.00 !Mu0ChY89TRaw[Co4At2Ch9]
+1014.52 -0.122592 0.00 !Mu0ChY90TRaw[Co4At2Ch10]
+1025.22 -0.123897 0.00 !Mu0ChY91TRaw[Co4At2Ch11]
+1024.79 -0.123866 0.00 !Mu0ChY92TRaw[Co4At2Ch12]
+1019.8 -0.123256 0.00 !Mu0ChY93TRaw[Co4At2Ch13]
+1024.3 -0.123786 0.00 !Mu0ChY94TRaw[Co4At2Ch14]
+1021.08 -0.123408 0.00 !Mu0ChY95TRaw[Co4At2Ch15]
+1016.6 -0.122879 0.00 !Mu0ChY96TRaw[Co4At2Ch16]
+882.25 -0.106544 0.00 !Mu0ChY97TRaw[Co4At3Ch1]
+878.942 -0.106139 0.00 !Mu0ChY98TRaw[Co4At3Ch2]
+878.021 -0.106028 0.00 !Mu0ChY99TRaw[Co4At3Ch3]
+894.625 -0.108041 0.00 !Mu0ChY100TRaw[Co4At3Ch4]
+891.724 -0.107707 0.00 !Mu0ChY101TRaw[Co4At3Ch5]
+890.686 -0.10757 0.00 !Mu0ChY102TRaw[Co4At3Ch6]
+895.168 -0.108105 0.00 !Mu0ChY103TRaw[Co4At3Ch7]
+907.124 -0.10959 0.00 !Mu0ChY104TRaw[Co4At3Ch8]
+901.739 -0.108916 0.00 !Mu0ChY105TRaw[Co4At3Ch9]
+914.99 -0.110544 0.00 !Mu0ChY106TRaw[Co4At3Ch10]
+910.27 -0.109981 0.00 !Mu0ChY107TRaw[Co4At3Ch11]
+914.704 -0.11051 0.00 !Mu0ChY108TRaw[Co4At3Ch12]
+913.859 -0.110421 0.00 !Mu0ChY109TRaw[Co4At3Ch13]
+909.547 -0.109894 0.00 !Mu0ChY110TRaw[Co4At3Ch14]
+915.137 -0.110572 0.00 !Mu0ChY111TRaw[Co4At3Ch15]
+917.078 -0.110803 0.00 !Mu0ChY112TRaw[Co4At3Ch16]
+891.216 -0.107535 0.00 !Mu0ChY113TRaw[Co4At4Ch1]
+899.129 -0.108466 0.00 !Mu0ChY114TRaw[Co4At4Ch2]
+898.718 -0.108438 0.00 !Mu0ChY115TRaw[Co4At4Ch3]
+904.591 -0.109158 0.00 !Mu0ChY116TRaw[Co4At4Ch4]
+916.06 -0.110566 0.00 !Mu0ChY117TRaw[Co4At4Ch5]
+909.441 -0.109757 0.00 !Mu0ChY118TRaw[Co4At4Ch6]
+929.211 -0.112167 0.00 !Mu0ChY119TRaw[Co4At4Ch7]
+920.724 -0.111146 0.00 !Mu0ChY120TRaw[Co4At4Ch8]
+931.107 -0.112407 0.00 !Mu0ChY121TRaw[Co4At4Ch9]
+930.357 -0.112337 0.00 !Mu0ChY122TRaw[Co4At4Ch10]
+932.102 -0.112539 0.00 !Mu0ChY123TRaw[Co4At4Ch11]
+935.662 -0.112978 0.00 !Mu0ChY124TRaw[Co4At4Ch12]
+930.191 -0.112316 0.00 !Mu0ChY125TRaw[Co4At4Ch13]
+929.054 -0.112192 0.00 !Mu0ChY126TRaw[Co4At4Ch14]
+926.166 -0.111821 0.00 !Mu0ChY127TRaw[Co4At4Ch15]
+929.013 -0.112162 0.00 !Mu0ChY128TRaw[Co4At4Ch16]
+928.571 -0.11232 0.00 !Mu1ChX1TRaw[Co1At1Ch1]
+942.493 -0.114015 0.00 !Mu1ChX2TRaw[Co1At1Ch2]
+944.985 -0.114341 0.00 !Mu1ChX3TRaw[Co1At1Ch3]
+956.226 -0.115712 0.00 !Mu1ChX4TRaw[Co1At1Ch4]
+956.679 -0.115744 0.00 !Mu1ChX5TRaw[Co1At1Ch5]
+958.458 -0.115962 0.00 !Mu1ChX6TRaw[Co1At1Ch6]
+971.702 -0.117589 0.00 !Mu1ChX7TRaw[Co1At1Ch7]
+966.768 -0.116998 0.00 !Mu1ChX8TRaw[Co1At1Ch8]
+970.872 -0.117498 0.00 !Mu1ChX9TRaw[Co1At1Ch9]
+979.817 -0.118577 0.00 !Mu1ChX10TRaw[Co1At1Ch10]
+976.301 -0.118143 0.00 !Mu1ChX11TRaw[Co1At1Ch11]
+975.435 -0.118071 0.00 !Mu1ChX12TRaw[Co1At1Ch12]
+987.534 -0.11954 0.00 !Mu1ChX13TRaw[Co1At1Ch13]
+988.145 -0.119597 0.00 !Mu1ChX14TRaw[Co1At1Ch14]
+985.177 -0.119236 0.00 !Mu1ChX15TRaw[Co1At1Ch15]
+984.559 -0.119179 0.00 !Mu1ChX16TRaw[Co1At1Ch16]
+924.661 -0.111777 0.00 !Mu1ChX17TRaw[Co1At2Ch1]
+947.862 -0.114612 0.00 !Mu1ChX18TRaw[Co1At2Ch2]
+948.76 -0.114738 0.00 !Mu1ChX19TRaw[Co1At2Ch3]
+946.29 -0.114439 0.00 !Mu1ChX20TRaw[Co1At2Ch4]
+954.686 -0.115464 0.00 !Mu1ChX21TRaw[Co1At2Ch5]
+967.911 -0.117052 0.00 !Mu1ChX22TRaw[Co1At2Ch6]
+957.223 -0.115762 0.00 !Mu1ChX23TRaw[Co1At2Ch7]
+973.476 -0.117739 0.00 !Mu1ChX24TRaw[Co1At2Ch8]
+971.664 -0.117531 0.00 !Mu1ChX25TRaw[Co1At2Ch9]
+974.918 -0.117923 0.00 !Mu1ChX26TRaw[Co1At2Ch10]
+973.502 -0.117737 0.00 !Mu1ChX27TRaw[Co1At2Ch11]
+977.242 -0.11821 0.00 !Mu1ChX28TRaw[Co1At2Ch12]
+981.073 -0.118677 0.00 !Mu1ChX29TRaw[Co1At2Ch13]
+978.26 -0.118324 0.00 !Mu1ChX30TRaw[Co1At2Ch14]
+977.151 -0.118198 0.00 !Mu1ChX31TRaw[Co1At2Ch15]
+984.794 -0.119148 0.00 !Mu1ChX32TRaw[Co1At2Ch16]
+878.025 -0.106165 0.00 !Mu1ChX33TRaw[Co1At3Ch1]
+877.927 -0.10618 0.00 !Mu1ChX34TRaw[Co1At3Ch2]
+893.294 -0.108064 0.00 !Mu1ChX35TRaw[Co1At3Ch3]
+876.051 -0.105941 0.00 !Mu1ChX36TRaw[Co1At3Ch4]
+893.827 -0.108105 0.00 !Mu1ChX37TRaw[Co1At3Ch5]
+899.59 -0.108823 0.00 !Mu1ChX38TRaw[Co1At3Ch6]
+891.87 -0.107861 0.00 !Mu1ChX39TRaw[Co1At3Ch7]
+896.377 -0.10842 0.00 !Mu1ChX40TRaw[Co1At3Ch8]
+899.273 -0.108779 0.00 !Mu1ChX41TRaw[Co1At3Ch9]
+898.912 -0.108754 0.00 !Mu1ChX42TRaw[Co1At3Ch10]
+907.617 -0.109783 0.00 !Mu1ChX43TRaw[Co1At3Ch11]
+899.789 -0.108855 0.00 !Mu1ChX44TRaw[Co1At3Ch12]
+909.299 -0.110019 0.00 !Mu1ChX45TRaw[Co1At3Ch13]
+907.769 -0.109854 0.00 !Mu1ChX46TRaw[Co1At3Ch14]
+905.232 -0.109528 0.00 !Mu1ChX47TRaw[Co1At3Ch15]
+909.577 -0.110055 0.00 !Mu1ChX48TRaw[Co1At3Ch16]
+868.163 -0.104838 0.00 !Mu1ChX49TRaw[Co1At4Ch1]
+873.224 -0.105455 0.00 !Mu1ChX50TRaw[Co1At4Ch2]
+885.913 -0.107015 0.00 !Mu1ChX51TRaw[Co1At4Ch3]
+888.452 -0.107338 0.00 !Mu1ChX52TRaw[Co1At4Ch4]
+891.233 -0.107685 0.00 !Mu1ChX53TRaw[Co1At4Ch5]
+891.534 -0.107699 0.00 !Mu1ChX54TRaw[Co1At4Ch6]
+895.39 -0.10819 0.00 !Mu1ChX55TRaw[Co1At4Ch7]
+901.392 -0.108878 0.00 !Mu1ChX56TRaw[Co1At4Ch8]
+907.775 -0.1097 0.00 !Mu1ChX57TRaw[Co1At4Ch9]
+903.537 -0.10916 0.00 !Mu1ChX58TRaw[Co1At4Ch10]
+912.271 -0.110244 0.00 !Mu1ChX59TRaw[Co1At4Ch11]
+904.646 -0.109308 0.00 !Mu1ChX60TRaw[Co1At4Ch12]
+917.556 -0.110894 0.00 !Mu1ChX61TRaw[Co1At4Ch13]
+909.067 -0.109867 0.00 !Mu1ChX62TRaw[Co1At4Ch14]
+908.514 -0.109791 0.00 !Mu1ChX63TRaw[Co1At4Ch15]
+916.574 -0.110777 0.00 !Mu1ChX64TRaw[Co1At4Ch16]
+951.079 -0.114723 0.00 !Mu1ChX65TRaw[Co2At1Ch1]
+952.897 -0.114949 0.00 !Mu1ChX66TRaw[Co2At1Ch2]
+966.461 -0.116629 0.00 !Mu1ChX67TRaw[Co2At1Ch3]
+965.985 -0.116557 0.00 !Mu1ChX68TRaw[Co2At1Ch4]
+968.322 -0.116827 0.00 !Mu1ChX69TRaw[Co2At1Ch5]
+976.11 -0.117811 0.00 !Mu1ChX70TRaw[Co2At1Ch6]
+975.867 -0.117758 0.00 !Mu1ChX71TRaw[Co2At1Ch7]
+981.064 -0.118392 0.00 !Mu1ChX72TRaw[Co2At1Ch8]
+978.32 -0.118063 0.00 !Mu1ChX73TRaw[Co2At1Ch9]
+992.972 -0.119853 0.00 !Mu1ChX74TRaw[Co2At1Ch10]
+989.034 -0.119377 0.00 !Mu1ChX75TRaw[Co2At1Ch11]
+987.234 -0.119141 0.00 !Mu1ChX76TRaw[Co2At1Ch12]
+994.058 -0.119982 0.00 !Mu1ChX77TRaw[Co2At1Ch13]
+995.957 -0.120199 0.00 !Mu1ChX78TRaw[Co2At1Ch14]
+995.79 -0.1202 0.00 !Mu1ChX79TRaw[Co2At1Ch15]
+1000.15 -0.120722 0.00 !Mu1ChX80TRaw[Co2At1Ch16]
+976.704 -0.117775 0.00 !Mu1ChX81TRaw[Co2At2Ch1]
+978.841 -0.118024 0.00 !Mu1ChX82TRaw[Co2At2Ch2]
+983.919 -0.118652 0.00 !Mu1ChX83TRaw[Co2At2Ch3]
+997.371 -0.120307 0.00 !Mu1ChX84TRaw[Co2At2Ch4]
+996.925 -0.120215 0.00 !Mu1ChX85TRaw[Co2At2Ch5]
+1006.21 -0.121389 0.00 !Mu1ChX86TRaw[Co2At2Ch6]
+1007.52 -0.121554 0.00 !Mu1ChX87TRaw[Co2At2Ch7]
+999.416 -0.12057 0.00 !Mu1ChX88TRaw[Co2At2Ch8]
+1013.91 -0.122345 0.00 !Mu1ChX89TRaw[Co2At2Ch9]
+1016.22 -0.12261 0.00 !Mu1ChX90TRaw[Co2At2Ch10]
+1011.77 -0.122082 0.00 !Mu1ChX91TRaw[Co2At2Ch11]
+1018.04 -0.12282 0.00 !Mu1ChX92TRaw[Co2At2Ch12]
+1017.49 -0.12279 0.00 !Mu1ChX93TRaw[Co2At2Ch13]
+1020.31 -0.123127 0.00 !Mu1ChX94TRaw[Co2At2Ch14]
+1019.96 -0.123096 0.00 !Mu1ChX95TRaw[Co2At2Ch15]
+1008.1 -0.12163 0.00 !Mu1ChX96TRaw[Co2At2Ch16]
+892.824 -0.107613 0.00 !Mu1ChX97TRaw[Co2At3Ch1]
+890.901 -0.107373 0.00 !Mu1ChX98TRaw[Co2At3Ch2]
+894.556 -0.107838 0.00 !Mu1ChX99TRaw[Co2At3Ch3]
+905.994 -0.109224 0.00 !Mu1ChX100TRaw[Co2At3Ch4]
+905.741 -0.1092 0.00 !Mu1ChX101TRaw[Co2At3Ch5]
+910.629 -0.109791 0.00 !Mu1ChX102TRaw[Co2At3Ch6]
+906.206 -0.109268 0.00 !Mu1ChX103TRaw[Co2At3Ch7]
+921.692 -0.111151 0.00 !Mu1ChX104TRaw[Co2At3Ch8]
+922.784 -0.11128 0.00 !Mu1ChX105TRaw[Co2At3Ch9]
+924.5 -0.111467 0.00 !Mu1ChX106TRaw[Co2At3Ch10]
+928.983 -0.112035 0.00 !Mu1ChX107TRaw[Co2At3Ch11]
+924.661 -0.111519 0.00 !Mu1ChX108TRaw[Co2At3Ch12]
+925.485 -0.111616 0.00 !Mu1ChX109TRaw[Co2At3Ch13]
+917.32 -0.110627 0.00 !Mu1ChX110TRaw[Co2At3Ch14]
+920.078 -0.110941 0.00 !Mu1ChX111TRaw[Co2At3Ch15]
+926.646 -0.11176 0.00 !Mu1ChX112TRaw[Co2At3Ch16]
+900.671 -0.108476 0.00 !Mu1ChX113TRaw[Co2At4Ch1]
+901.745 -0.108567 0.00 !Mu1ChX114TRaw[Co2At4Ch2]
+908.74 -0.10946 0.00 !Mu1ChX115TRaw[Co2At4Ch3]
+914.468 -0.110136 0.00 !Mu1ChX116TRaw[Co2At4Ch4]
+929.323 -0.111977 0.00 !Mu1ChX117TRaw[Co2At4Ch5]
+923.812 -0.111304 0.00 !Mu1ChX118TRaw[Co2At4Ch6]
+935.93 -0.112781 0.00 !Mu1ChX119TRaw[Co2At4Ch7]
+918.363 -0.110659 0.00 !Mu1ChX120TRaw[Co2At4Ch8]
+923.868 -0.111325 0.00 !Mu1ChX121TRaw[Co2At4Ch9]
+931.448 -0.112226 0.00 !Mu1ChX122TRaw[Co2At4Ch10]
+932.559 -0.11236 0.00 !Mu1ChX123TRaw[Co2At4Ch11]
+927.829 -0.111775 0.00 !Mu1ChX124TRaw[Co2At4Ch12]
+925.186 -0.111483 0.00 !Mu1ChX125TRaw[Co2At4Ch13]
+931.059 -0.112193 0.00 !Mu1ChX126TRaw[Co2At4Ch14]
+934.329 -0.112614 0.00 !Mu1ChX127TRaw[Co2At4Ch15]
+928.424 -0.111864 0.00 !Mu1ChX128TRaw[Co2At4Ch16]
+935.35 -0.11282 0.00 !Mu1ChY1TRaw[Co3At1Ch1]
+937.191 -0.113022 0.00 !Mu1ChY2TRaw[Co3At1Ch2]
+948.029 -0.114361 0.00 !Mu1ChY3TRaw[Co3At1Ch3]
+952.035 -0.114834 0.00 !Mu1ChY4TRaw[Co3At1Ch4]
+954.252 -0.115122 0.00 !Mu1ChY5TRaw[Co3At1Ch5]
+957.621 -0.115533 0.00 !Mu1ChY6TRaw[Co3At1Ch6]
+960.868 -0.115938 0.00 !Mu1ChY7TRaw[Co3At1Ch7]
+950.839 -0.114726 0.00 !Mu1ChY8TRaw[Co3At1Ch8]
+958.21 -0.11562 0.00 !Mu1ChY9TRaw[Co3At1Ch9]
+968.288 -0.116854 0.00 !Mu1ChY10TRaw[Co3At1Ch10]
+964.104 -0.116368 0.00 !Mu1ChY11TRaw[Co3At1Ch11]
+972.004 -0.117327 0.00 !Mu1ChY12TRaw[Co3At1Ch12]
+972.184 -0.117358 0.00 !Mu1ChY13TRaw[Co3At1Ch13]
+967.943 -0.116827 0.00 !Mu1ChY14TRaw[Co3At1Ch14]
+969.17 -0.116981 0.00 !Mu1ChY15TRaw[Co3At1Ch15]
+966.891 -0.116717 0.00 !Mu1ChY16TRaw[Co3At1Ch16]
+968.928 -0.116883 0.00 !Mu1ChY17TRaw[Co3At2Ch1]
+971.207 -0.117128 0.00 !Mu1ChY18TRaw[Co3At2Ch2]
+975.423 -0.117665 0.00 !Mu1ChY19TRaw[Co3At2Ch3]
+976.249 -0.117743 0.00 !Mu1ChY20TRaw[Co3At2Ch4]
+987.572 -0.119146 0.00 !Mu1ChY21TRaw[Co3At2Ch5]
+984.536 -0.118747 0.00 !Mu1ChY22TRaw[Co3At2Ch6]
+987.751 -0.119189 0.00 !Mu1ChY23TRaw[Co3At2Ch7]
+994.23 -0.119964 0.00 !Mu1ChY24TRaw[Co3At2Ch8]
+995.905 -0.120158 0.00 !Mu1ChY25TRaw[Co3At2Ch9]
+995.946 -0.120176 0.00 !Mu1ChY26TRaw[Co3At2Ch10]
+1000.5 -0.120728 0.00 !Mu1ChY27TRaw[Co3At2Ch11]
+995.25 -0.120113 0.00 !Mu1ChY28TRaw[Co3At2Ch12]
+997.145 -0.120339 0.00 !Mu1ChY29TRaw[Co3At2Ch13]
+988.864 -0.119308 0.00 !Mu1ChY30TRaw[Co3At2Ch14]
+995.199 -0.120108 0.00 !Mu1ChY31TRaw[Co3At2Ch15]
+990.383 -0.119515 0.00 !Mu1ChY32TRaw[Co3At2Ch16]
+1002.87 -0.141377 0.00 !Mu1ChY33TRaw[Co3At3Ch1]
+884.995 -0.106691 0.00 !Mu1ChY34TRaw[Co3At3Ch2]
+886.581 -0.106848 0.00 !Mu1ChY35TRaw[Co3At3Ch3]
+896.019 -0.108037 0.00 !Mu1ChY36TRaw[Co3At3Ch4]
+8.48677e+11 -1.03827e+08 0.00 !Mu1ChY37TRaw[Co3At3Ch5]
+907.311 -0.109433 0.00 !Mu1ChY38TRaw[Co3At3Ch6]
+897.171 -0.108164 0.00 !Mu1ChY39TRaw[Co3At3Ch7]
+907.451 -0.10944 0.00 !Mu1ChY40TRaw[Co3At3Ch8]
+895.245 -0.107957 0.00 !Mu1ChY41TRaw[Co3At3Ch9]
+908.035 -0.109521 0.00 !Mu1ChY42TRaw[Co3At3Ch10]
+900.767 -0.108623 0.00 !Mu1ChY43TRaw[Co3At3Ch11]
+909.45 -0.10969 0.00 !Mu1ChY44TRaw[Co3At3Ch12]
+911.966 -0.109989 0.00 !Mu1ChY45TRaw[Co3At3Ch13]
+906.33 -0.109312 0.00 !Mu1ChY46TRaw[Co3At3Ch14]
+910.732 -0.109844 0.00 !Mu1ChY47TRaw[Co3At3Ch15]
+905.741 -0.109257 0.00 !Mu1ChY48TRaw[Co3At3Ch16]
+887.986 -0.10696 0.00 !Mu1ChY49TRaw[Co3At4Ch1]
+887.216 -0.106852 0.00 !Mu1ChY50TRaw[Co3At4Ch2]
+883.77 -0.106436 0.00 !Mu1ChY51TRaw[Co3At4Ch3]
+896.97 -0.108049 0.00 !Mu1ChY52TRaw[Co3At4Ch4]
+903.022 -0.108781 0.00 !Mu1ChY53TRaw[Co3At4Ch5]
+904.319 -0.108923 0.00 !Mu1ChY54TRaw[Co3At4Ch6]
+904.183 -0.108922 0.00 !Mu1ChY55TRaw[Co3At4Ch7]
+904.336 -0.108949 0.00 !Mu1ChY56TRaw[Co3At4Ch8]
+916.034 -0.110395 0.00 !Mu1ChY57TRaw[Co3At4Ch9]
+915.216 -0.110294 0.00 !Mu1ChY58TRaw[Co3At4Ch10]
+910.734 -0.109746 0.00 !Mu1ChY59TRaw[Co3At4Ch11]
+913.293 -0.109802 0.00 !Mu1ChY60TRaw[Co3At4Ch12]
+910.448 -0.109742 0.00 !Mu1ChY61TRaw[Co3At4Ch13]
+918.647 -0.11072 0.00 !Mu1ChY62TRaw[Co3At4Ch14]
+920.049 -0.110879 0.00 !Mu1ChY63TRaw[Co3At4Ch15]
+921.093 -0.111037 0.00 !Mu1ChY64TRaw[Co3At4Ch16]
+950.903 -0.115194 0.00 !Mu1ChY65TRaw[Co4At1Ch1]
+958.17 -0.116053 0.00 !Mu1ChY66TRaw[Co4At1Ch2]
+963.945 -0.116788 0.00 !Mu1ChY67TRaw[Co4At1Ch3]
+967.43 -0.117211 0.00 !Mu1ChY68TRaw[Co4At1Ch4]
+970.687 -0.117617 0.00 !Mu1ChY69TRaw[Co4At1Ch5]
+978.784 -0.118609 0.00 !Mu1ChY70TRaw[Co4At1Ch6]
+974.345 -0.118053 0.00 !Mu1ChY71TRaw[Co4At1Ch7]
+982.479 -0.119038 0.00 !Mu1ChY72TRaw[Co4At1Ch8]
+983.419 -0.119163 0.00 !Mu1ChY73TRaw[Co4At1Ch9]
+986.47 -0.119552 0.00 !Mu1ChY74TRaw[Co4At1Ch10]
+988.169 -0.119777 0.00 !Mu1ChY75TRaw[Co4At1Ch11]
+985.147 -0.119391 0.00 !Mu1ChY76TRaw[Co4At1Ch12]
+988.378 -0.11981 0.00 !Mu1ChY77TRaw[Co4At1Ch13]
+985.922 -0.119505 0.00 !Mu1ChY78TRaw[Co4At1Ch14]
+986.667 -0.119601 0.00 !Mu1ChY79TRaw[Co4At1Ch15]
+991.793 -0.120194 0.00 !Mu1ChY80TRaw[Co4At1Ch16]
+947.005 -0.114646 0.00 !Mu1ChY81TRaw[Co4At2Ch1]
+955.512 -0.115676 0.00 !Mu1ChY82TRaw[Co4At2Ch2]
+954.266 -0.115551 0.00 !Mu1ChY83TRaw[Co4At2Ch3]
+961.213 -0.116392 0.00 !Mu1ChY84TRaw[Co4At2Ch4]
+960.803 -0.116344 0.00 !Mu1ChY85TRaw[Co4At2Ch5]
+971.068 -0.117589 0.00 !Mu1ChY86TRaw[Co4At2Ch6]
+971.908 -0.117699 0.00 !Mu1ChY87TRaw[Co4At2Ch7]
+978.963 -0.118567 0.00 !Mu1ChY88TRaw[Co4At2Ch8]
+980.181 -0.118705 0.00 !Mu1ChY89TRaw[Co4At2Ch9]
+972.849 -0.117807 0.00 !Mu1ChY90TRaw[Co4At2Ch10]
+977.401 -0.118376 0.00 !Mu1ChY91TRaw[Co4At2Ch11]
+985.257 -0.119333 0.00 !Mu1ChY92TRaw[Co4At2Ch12]
+986.001 -0.119429 0.00 !Mu1ChY93TRaw[Co4At2Ch13]
+978.94 -0.118576 0.00 !Mu1ChY94TRaw[Co4At2Ch14]
+982.604 -0.119031 0.00 !Mu1ChY95TRaw[Co4At2Ch15]
+994.308 -0.120471 0.00 !Mu1ChY96TRaw[Co4At2Ch16]
+876.691 -0.106136 0.00 !Mu1ChY97TRaw[Co4At3Ch1]
+875.524 -0.106 0.00 !Mu1ChY98TRaw[Co4At3Ch2]
+880.13 -0.106555 0.00 !Mu1ChY99TRaw[Co4At3Ch3]
+894.071 -0.108263 0.00 !Mu1ChY100TRaw[Co4At3Ch4]
+891.902 -0.10801 0.00 !Mu1ChY101TRaw[Co4At3Ch5]
+884.05 -0.107044 0.00 !Mu1ChY102TRaw[Co4At3Ch6]
+891.891 -0.108005 0.00 !Mu1ChY103TRaw[Co4At3Ch7]
+895.11 -0.108406 0.00 !Mu1ChY104TRaw[Co4At3Ch8]
+905.296 -0.109653 0.00 !Mu1ChY105TRaw[Co4At3Ch9]
+902.144 -0.10926 0.00 !Mu1ChY106TRaw[Co4At3Ch10]
+905.347 -0.10967 0.00 !Mu1ChY107TRaw[Co4At3Ch11]
+896.217 -0.108536 0.00 !Mu1ChY108TRaw[Co4At3Ch12]
+903.241 -0.109417 0.00 !Mu1ChY109TRaw[Co4At3Ch13]
+910.268 -0.110268 0.00 !Mu1ChY110TRaw[Co4At3Ch14]
+900.796 -0.109108 0.00 !Mu1ChY111TRaw[Co4At3Ch15]
+906.635 -0.109824 0.00 !Mu1ChY112TRaw[Co4At3Ch16]
+862.399 -0.104291 0.00 !Mu1ChY113TRaw[Co4At4Ch1]
+856.141 -0.103549 0.00 !Mu1ChY114TRaw[Co4At4Ch2]
+866.517 -0.104798 0.00 !Mu1ChY115TRaw[Co4At4Ch3]
+861.488 -0.10419 0.00 !Mu1ChY116TRaw[Co4At4Ch4]
+869.88 -0.105221 0.00 !Mu1ChY117TRaw[Co4At4Ch5]
+879.073 -0.106354 0.00 !Mu1ChY118TRaw[Co4At4Ch6]
+883.458 -0.1069 0.00 !Mu1ChY119TRaw[Co4At4Ch7]
+878.318 -0.106252 0.00 !Mu1ChY120TRaw[Co4At4Ch8]
+895.691 -0.108379 0.00 !Mu1ChY121TRaw[Co4At4Ch9]
+896.571 -0.108492 0.00 !Mu1ChY122TRaw[Co4At4Ch10]
+894.464 -0.108225 0.00 !Mu1ChY123TRaw[Co4At4Ch11]
+893.509 -0.108132 0.00 !Mu1ChY124TRaw[Co4At4Ch12]
+895.809 -0.108412 0.00 !Mu1ChY125TRaw[Co4At4Ch13]
+891.015 -0.10784 0.00 !Mu1ChY126TRaw[Co4At4Ch14]
+888.724 -0.107526 0.00 !Mu1ChY127TRaw[Co4At4Ch15]
+899.797 -0.109448 0.00 !Mu1ChY128TRaw[Co4At4Ch16]
+937.316 -0.113282 0.00 !Mu2ChX1TRaw[Co1At1Ch1]
+934.385 -0.112935 0.00 !Mu2ChX2TRaw[Co1At1Ch2]
+942.34 -0.113903 0.00 !Mu2ChX3TRaw[Co1At1Ch3]
+954.458 -0.11541 0.00 !Mu2ChX4TRaw[Co1At1Ch4]
+950.139 -0.114834 0.00 !Mu2ChX5TRaw[Co1At1Ch5]
+967.561 -0.116968 0.00 !Mu2ChX6TRaw[Co1At1Ch6]
+960.77 -0.116144 0.00 !Mu2ChX7TRaw[Co1At1Ch7]
+965.567 -0.116738 0.00 !Mu2ChX8TRaw[Co1At1Ch8]
+957.421 -0.115736 0.00 !Mu2ChX9TRaw[Co1At1Ch9]
+969.399 -0.117191 0.00 !Mu2ChX10TRaw[Co1At1Ch10]
+971.909 -0.117505 0.00 !Mu2ChX11TRaw[Co1At1Ch11]
+966.623 -0.116868 0.00 !Mu2ChX12TRaw[Co1At1Ch12]
+972.522 -0.117596 0.00 !Mu2ChX13TRaw[Co1At1Ch13]
+966.551 -0.116864 0.00 !Mu2ChX14TRaw[Co1At1Ch14]
+967.053 -0.116934 0.00 !Mu2ChX15TRaw[Co1At1Ch15]
+976.535 -0.118078 0.00 !Mu2ChX16TRaw[Co1At1Ch16]
+919.521 -0.111042 0.00 !Mu2ChX17TRaw[Co1At2Ch1]
+934.725 -0.1129 0.00 !Mu2ChX18TRaw[Co1At2Ch2]
+937.478 -0.113239 0.00 !Mu2ChX19TRaw[Co1At2Ch3]
+936.381 -0.11311 0.00 !Mu2ChX20TRaw[Co1At2Ch4]
+947.225 -0.114433 0.00 !Mu2ChX21TRaw[Co1At2Ch5]
+942.935 -0.113893 0.00 !Mu2ChX22TRaw[Co1At2Ch6]
+940.462 -0.113604 0.00 !Mu2ChX23TRaw[Co1At2Ch7]
+948.676 -0.114596 0.00 !Mu2ChX24TRaw[Co1At2Ch8]
+939.674 -0.113523 0.00 !Mu2ChX25TRaw[Co1At2Ch9]
+947.97 -0.114529 0.00 !Mu2ChX26TRaw[Co1At2Ch10]
+948.456 -0.114587 0.00 !Mu2ChX27TRaw[Co1At2Ch11]
+944.632 -0.114127 0.00 !Mu2ChX28TRaw[Co1At2Ch12]
+952.149 -0.115049 0.00 !Mu2ChX29TRaw[Co1At2Ch13]
+948.307 -0.114577 0.00 !Mu2ChX30TRaw[Co1At2Ch14]
+950.078 -0.114801 0.00 !Mu2ChX31TRaw[Co1At2Ch15]
+949.489 -0.114725 0.00 !Mu2ChX32TRaw[Co1At2Ch16]
+884.424 -0.106884 0.00 !Mu2ChX33TRaw[Co1At3Ch1]
+881.912 -0.106588 0.00 !Mu2ChX34TRaw[Co1At3Ch2]
+891.212 -0.10771 0.00 !Mu2ChX35TRaw[Co1At3Ch3]
+888.472 -0.10739 0.00 !Mu2ChX36TRaw[Co1At3Ch4]
+902.325 -0.109058 0.00 !Mu2ChX37TRaw[Co1At3Ch5]
+899.193 -0.108685 0.00 !Mu2ChX38TRaw[Co1At3Ch6]
+906.762 -0.109605 0.00 !Mu2ChX39TRaw[Co1At3Ch7]
+903.506 -0.109211 0.00 !Mu2ChX40TRaw[Co1At3Ch8]
+903.2 -0.109168 0.00 !Mu2ChX41TRaw[Co1At3Ch9]
+907.04 -0.109617 0.00 !Mu2ChX42TRaw[Co1At3Ch10]
+913.192 -0.1104 0.00 !Mu2ChX43TRaw[Co1At3Ch11]
+912.001 -0.110254 0.00 !Mu2ChX44TRaw[Co1At3Ch12]
+920.039 -0.111219 0.00 !Mu2ChX45TRaw[Co1At3Ch13]
+918.464 -0.111043 0.00 !Mu2ChX46TRaw[Co1At3Ch14]
+921.268 -0.111378 0.00 !Mu2ChX47TRaw[Co1At3Ch15]
+917.17 -0.11089 0.00 !Mu2ChX48TRaw[Co1At3Ch16]
+853.022 -0.102956 0.00 !Mu2ChX49TRaw[Co1At4Ch1]
+863.294 -0.104191 0.00 !Mu2ChX50TRaw[Co1At4Ch2]
+872.886 -0.105362 0.00 !Mu2ChX51TRaw[Co1At4Ch3]
+866.918 -0.10464 0.00 !Mu2ChX52TRaw[Co1At4Ch4]
+875.67 -0.105723 0.00 !Mu2ChX53TRaw[Co1At4Ch5]
+875.93 -0.105755 0.00 !Mu2ChX54TRaw[Co1At4Ch6]
+877.811 -0.105984 0.00 !Mu2ChX55TRaw[Co1At4Ch7]
+885.543 -0.106931 0.00 !Mu2ChX56TRaw[Co1At4Ch8]
+894.49 -0.108024 0.00 !Mu2ChX57TRaw[Co1At4Ch9]
+896.907 -0.108307 0.00 !Mu2ChX58TRaw[Co1At4Ch10]
+888.44 -0.107279 0.00 !Mu2ChX59TRaw[Co1At4Ch11]
+898.738 -0.108543 0.00 !Mu2ChX60TRaw[Co1At4Ch12]
+900.163 -0.108721 0.00 !Mu2ChX61TRaw[Co1At4Ch13]
+899.711 -0.108665 0.00 !Mu2ChX62TRaw[Co1At4Ch14]
+896.224 -0.10824 0.00 !Mu2ChX63TRaw[Co1At4Ch15]
+893.403 -0.107885 0.00 !Mu2ChX64TRaw[Co1At4Ch16]
+971.844 -0.117533 0.00 !Mu2ChX65TRaw[Co2At1Ch1]
+971.845 -0.117545 0.00 !Mu2ChX66TRaw[Co2At1Ch2]
+983.582 -0.118957 0.00 !Mu2ChX67TRaw[Co2At1Ch3]
+988.69 -0.119584 0.00 !Mu2ChX68TRaw[Co2At1Ch4]
+990.616 -0.119902 0.00 !Mu2ChX69TRaw[Co2At1Ch5]
+992.058 -0.12002 0.00 !Mu2ChX70TRaw[Co2At1Ch6]
+993.193 -0.120171 0.00 !Mu2ChX71TRaw[Co2At1Ch7]
+998.567 -0.120802 0.00 !Mu2ChX72TRaw[Co2At1Ch8]
+991.75 -0.119977 0.00 !Mu2ChX73TRaw[Co2At1Ch9]
+1000.28 -0.12102 0.00 !Mu2ChX74TRaw[Co2At1Ch10]
+996.389 -0.12055 0.00 !Mu2ChX75TRaw[Co2At1Ch11]
+995.946 -0.12048 0.00 !Mu2ChX76TRaw[Co2At1Ch12]
+1005.69 -0.121688 0.00 !Mu2ChX77TRaw[Co2At1Ch13]
+1009.38 -0.122136 0.00 !Mu2ChX78TRaw[Co2At1Ch14]
+1012.08 -0.122472 0.00 !Mu2ChX79TRaw[Co2At1Ch15]
+1003.93 -0.121488 0.00 !Mu2ChX80TRaw[Co2At1Ch16]
+952.869 -0.115148 0.00 !Mu2ChX81TRaw[Co2At2Ch1]
+964.034 -0.116512 0.00 !Mu2ChX82TRaw[Co2At2Ch2]
+965.866 -0.116735 0.00 !Mu2ChX83TRaw[Co2At2Ch3]
+969.343 -0.117158 0.00 !Mu2ChX84TRaw[Co2At2Ch4]
+969.333 -0.117159 0.00 !Mu2ChX85TRaw[Co2At2Ch5]
+970.748 -0.117336 0.00 !Mu2ChX86TRaw[Co2At2Ch6]
+984.429 -0.118997 0.00 !Mu2ChX87TRaw[Co2At2Ch7]
+983.229 -0.118879 0.00 !Mu2ChX88TRaw[Co2At2Ch8]
+993.933 -0.120152 0.00 !Mu2ChX89TRaw[Co2At2Ch9]
+993.652 -0.120143 0.00 !Mu2ChX90TRaw[Co2At2Ch10]
+992.615 -0.120011 0.00 !Mu2ChX91TRaw[Co2At2Ch11]
+982.481 -0.118788 0.00 !Mu2ChX92TRaw[Co2At2Ch12]
+997.508 -0.120614 0.00 !Mu2ChX93TRaw[Co2At2Ch13]
+1001.7 -0.12112 0.00 !Mu2ChX94TRaw[Co2At2Ch14]
+1002.51 -0.12123 0.00 !Mu2ChX95TRaw[Co2At2Ch15]
+987.604 -0.119394 0.00 !Mu2ChX96TRaw[Co2At2Ch16]
+901.312 -0.10895 0.00 !Mu2ChX97TRaw[Co2At3Ch1]
+917.986 -0.11099 0.00 !Mu2ChX98TRaw[Co2At3Ch2]
+913.934 -0.110483 0.00 !Mu2ChX99TRaw[Co2At3Ch3]
+913.949 -0.110494 0.00 !Mu2ChX100TRaw[Co2At3Ch4]
+923.435 -0.11163 0.00 !Mu2ChX101TRaw[Co2At3Ch5]
+922.621 -0.111573 0.00 !Mu2ChX102TRaw[Co2At3Ch6]
+921.076 -0.111368 0.00 !Mu2ChX103TRaw[Co2At3Ch7]
+925.346 -0.111888 0.00 !Mu2ChX104TRaw[Co2At3Ch8]
+935.581 -0.113122 0.00 !Mu2ChX105TRaw[Co2At3Ch9]
+932.485 -0.112764 0.00 !Mu2ChX106TRaw[Co2At3Ch10]
+937.5 -0.113373 0.00 !Mu2ChX107TRaw[Co2At3Ch11]
+932.715 -0.112797 0.00 !Mu2ChX108TRaw[Co2At3Ch12]
+935.979 -0.113176 0.00 !Mu2ChX109TRaw[Co2At3Ch13]
+942.445 -0.113973 0.00 !Mu2ChX110TRaw[Co2At3Ch14]
+943.181 -0.114066 0.00 !Mu2ChX111TRaw[Co2At3Ch15]
+942.414 -0.113973 0.00 !Mu2ChX112TRaw[Co2At3Ch16]
+902.2 -0.108961 0.00 !Mu2ChX113TRaw[Co2At4Ch1]
+906.889 -0.109531 0.00 !Mu2ChX114TRaw[Co2At4Ch2]
+914.61 -0.110461 0.00 !Mu2ChX115TRaw[Co2At4Ch3]
+914.139 -0.110414 0.00 !Mu2ChX116TRaw[Co2At4Ch4]
+929.709 -0.112323 0.00 !Mu2ChX117TRaw[Co2At4Ch5]
+932.582 -0.11267 0.00 !Mu2ChX118TRaw[Co2At4Ch6]
+938.012 -0.113333 0.00 !Mu2ChX119TRaw[Co2At4Ch7]
+940.971 -0.113698 0.00 !Mu2ChX120TRaw[Co2At4Ch8]
+940.564 -0.113666 0.00 !Mu2ChX121TRaw[Co2At4Ch9]
+949.44 -0.114745 0.00 !Mu2ChX122TRaw[Co2At4Ch10]
+940.75 -0.113673 0.00 !Mu2ChX123TRaw[Co2At4Ch11]
+946.851 -0.11443 0.00 !Mu2ChX124TRaw[Co2At4Ch12]
+936.518 -0.113174 0.00 !Mu2ChX125TRaw[Co2At4Ch13]
+936.181 -0.113143 0.00 !Mu2ChX126TRaw[Co2At4Ch14]
+944.748 -0.114176 0.00 !Mu2ChX127TRaw[Co2At4Ch15]
+944.971 -0.114186 0.00 !Mu2ChX128TRaw[Co2At4Ch16]
+989.947 -0.119525 0.00 !Mu2ChY1TRaw[Co3At1Ch1]
+993.077 -0.119903 0.00 !Mu2ChY2TRaw[Co3At1Ch2]
+992.258 -0.119776 0.00 !Mu2ChY3TRaw[Co3At1Ch3]
+998.524 -0.120524 0.00 !Mu2ChY4TRaw[Co3At1Ch4]
+1003.53 -0.121165 0.00 !Mu2ChY5TRaw[Co3At1Ch5]
+1001.78 -0.120947 0.00 !Mu2ChY6TRaw[Co3At1Ch6]
+1006.43 -0.121526 0.00 !Mu2ChY7TRaw[Co3At1Ch7]
+1013.44 -0.122366 0.00 !Mu2ChY8TRaw[Co3At1Ch8]
+1014.58 -0.122539 0.00 !Mu2ChY9TRaw[Co3At1Ch9]
+1006.22 -0.121307 0.00 !Mu2ChY10TRaw[Co3At1Ch10]
+1012.4 -0.122275 0.00 !Mu2ChY11TRaw[Co3At1Ch11]
+1017.56 -0.122898 0.00 !Mu2ChY12TRaw[Co3At1Ch12]
+1019.48 -0.12312 0.00 !Mu2ChY13TRaw[Co3At1Ch13]
+1024.68 -0.123746 0.00 !Mu2ChY14TRaw[Co3At1Ch14]
+1023.43 -0.123621 0.00 !Mu2ChY15TRaw[Co3At1Ch15]
+1024.2 -0.123744 0.00 !Mu2ChY16TRaw[Co3At1Ch16]
+942.022 -0.113632 0.00 !Mu2ChY17TRaw[Co3At2Ch1]
+941.851 -0.11359 0.00 !Mu2ChY18TRaw[Co3At2Ch2]
+941.301 -0.113546 0.00 !Mu2ChY19TRaw[Co3At2Ch3]
+941.196 -0.113526 0.00 !Mu2ChY20TRaw[Co3At2Ch4]
+956.339 -0.115367 0.00 !Mu2ChY21TRaw[Co3At2Ch5]
+972.159 -0.117305 0.00 !Mu2ChY22TRaw[Co3At2Ch6]
+968.071 -0.11682 0.00 !Mu2ChY23TRaw[Co3At2Ch7]
+963.198 -0.116216 0.00 !Mu2ChY24TRaw[Co3At2Ch8]
+978.802 -0.118134 0.00 !Mu2ChY25TRaw[Co3At2Ch9]
+981.332 -0.118446 0.00 !Mu2ChY26TRaw[Co3At2Ch10]
+978.515 -0.117858 0.00 !Mu2ChY27TRaw[Co3At2Ch11]
+985.445 -0.11895 0.00 !Mu2ChY28TRaw[Co3At2Ch12]
+979.656 -0.118238 0.00 !Mu2ChY29TRaw[Co3At2Ch13]
+981.57 -0.118468 0.00 !Mu2ChY30TRaw[Co3At2Ch14]
+980.383 -0.118337 0.00 !Mu2ChY31TRaw[Co3At2Ch15]
+968.968 -0.116905 0.00 !Mu2ChY32TRaw[Co3At2Ch16]
+874.116 -0.105393 0.00 !Mu2ChY33TRaw[Co3At3Ch1]
+880.638 -0.106206 0.00 !Mu2ChY34TRaw[Co3At3Ch2]
+893.026 -0.107711 0.00 !Mu2ChY35TRaw[Co3At3Ch3]
+894.339 -0.10786 0.00 !Mu2ChY36TRaw[Co3At3Ch4]
+897.82 -0.108297 0.00 !Mu2ChY37TRaw[Co3At3Ch5]
+892.44 -0.107628 0.00 !Mu2ChY38TRaw[Co3At3Ch6]
+908.152 -0.109574 0.00 !Mu2ChY39TRaw[Co3At3Ch7]
+906.817 -0.109401 0.00 !Mu2ChY40TRaw[Co3At3Ch8]
+909.649 -0.109756 0.00 !Mu2ChY41TRaw[Co3At3Ch9]
+914.061 -0.110304 0.00 !Mu2ChY42TRaw[Co3At3Ch10]
+910.049 -0.10979 0.00 !Mu2ChY43TRaw[Co3At3Ch11]
+913.535 -0.110231 0.00 !Mu2ChY44TRaw[Co3At3Ch12]
+915.986 -0.110532 0.00 !Mu2ChY45TRaw[Co3At3Ch13]
+919.243 -0.110907 0.00 !Mu2ChY46TRaw[Co3At3Ch14]
+922.863 -0.111371 0.00 !Mu2ChY47TRaw[Co3At3Ch15]
+918.091 -0.110791 0.00 !Mu2ChY48TRaw[Co3At3Ch16]
+896.545 -0.108016 0.00 !Mu2ChY49TRaw[Co3At4Ch1]
+905.921 -0.109155 0.00 !Mu2ChY50TRaw[Co3At4Ch2]
+903.191 -0.108834 0.00 !Mu2ChY51TRaw[Co3At4Ch3]
+916.514 -0.110471 0.00 !Mu2ChY52TRaw[Co3At4Ch4]
+909.698 -0.109622 0.00 !Mu2ChY53TRaw[Co3At4Ch5]
+918.472 -0.110708 0.00 !Mu2ChY54TRaw[Co3At4Ch6]
+921.934 -0.111116 0.00 !Mu2ChY55TRaw[Co3At4Ch7]
+917.791 -0.11061 0.00 !Mu2ChY56TRaw[Co3At4Ch8]
+930.463 -0.11216 0.00 !Mu2ChY57TRaw[Co3At4Ch9]
+921.545 -0.111079 0.00 !Mu2ChY58TRaw[Co3At4Ch10]
+924.357 -0.111393 0.00 !Mu2ChY59TRaw[Co3At4Ch11]
+928.134 -0.11168 0.00 !Mu2ChY60TRaw[Co3At4Ch12]
+944.074 -0.11386 0.00 !Mu2ChY61TRaw[Co3At4Ch13]
+929.497 -0.112068 0.00 !Mu2ChY62TRaw[Co3At4Ch14]
+925.938 -0.111623 0.00 !Mu2ChY63TRaw[Co3At4Ch15]
+933.858 -0.112593 0.00 !Mu2ChY64TRaw[Co3At4Ch16]
+926.3 -0.111864 0.00 !Mu2ChY65TRaw[Co4At1Ch1]
+945.736 -0.114242 0.00 !Mu2ChY66TRaw[Co4At1Ch2]
+950.053 -0.114763 0.00 !Mu2ChY67TRaw[Co4At1Ch3]
+947.803 -0.114477 0.00 !Mu2ChY68TRaw[Co4At1Ch4]
+974.181 -0.117701 0.00 !Mu2ChY69TRaw[Co4At1Ch5]
+962.11 -0.116242 0.00 !Mu2ChY70TRaw[Co4At1Ch6]
+969.683 -0.117144 0.00 !Mu2ChY71TRaw[Co4At1Ch7]
+966.661 -0.116783 0.00 !Mu2ChY72TRaw[Co4At1Ch8]
+958.107 -0.115747 0.00 !Mu2ChY73TRaw[Co4At1Ch9]
+960.237 -0.115989 0.00 !Mu2ChY74TRaw[Co4At1Ch10]
+966.385 -0.116762 0.00 !Mu2ChY75TRaw[Co4At1Ch11]
+979.2 -0.118324 0.00 !Mu2ChY76TRaw[Co4At1Ch12]
+975.406 -0.117892 0.00 !Mu2ChY77TRaw[Co4At1Ch13]
+977.792 -0.118194 0.00 !Mu2ChY78TRaw[Co4At1Ch14]
+968.878 -0.117092 0.00 !Mu2ChY79TRaw[Co4At1Ch15]
+971.01 -0.117343 0.00 !Mu2ChY80TRaw[Co4At1Ch16]
+946.074 -0.114246 0.00 !Mu2ChY81TRaw[Co4At2Ch1]
+940.751 -0.113582 0.00 !Mu2ChY82TRaw[Co4At2Ch2]
+952.983 -0.115097 0.00 !Mu2ChY83TRaw[Co4At2Ch3]
+948.889 -0.114574 0.00 !Mu2ChY84TRaw[Co4At2Ch4]
+957.63 -0.115653 0.00 !Mu2ChY85TRaw[Co4At2Ch5]
+968.091 -0.11692 0.00 !Mu2ChY86TRaw[Co4At2Ch6]
+966.176 -0.116695 0.00 !Mu2ChY87TRaw[Co4At2Ch7]
+971.862 -0.117388 0.00 !Mu2ChY88TRaw[Co4At2Ch8]
+974.809 -0.117739 0.00 !Mu2ChY89TRaw[Co4At2Ch9]
+976.466 -0.11797 0.00 !Mu2ChY90TRaw[Co4At2Ch10]
+981.048 -0.118525 0.00 !Mu2ChY91TRaw[Co4At2Ch11]
+971.816 -0.117371 0.00 !Mu2ChY92TRaw[Co4At2Ch12]
+979.537 -0.118331 0.00 !Mu2ChY93TRaw[Co4At2Ch13]
+979.044 -0.118283 0.00 !Mu2ChY94TRaw[Co4At2Ch14]
+986.328 -0.119174 0.00 !Mu2ChY95TRaw[Co4At2Ch15]
+991.309 -0.119806 0.00 !Mu2ChY96TRaw[Co4At2Ch16]
+899.526 -0.108639 0.00 !Mu2ChY97TRaw[Co4At3Ch1]
+896.011 -0.108189 0.00 !Mu2ChY98TRaw[Co4At3Ch2]
+906.665 -0.109474 0.00 !Mu2ChY99TRaw[Co4At3Ch3]
+905.068 -0.109308 0.00 !Mu2ChY100TRaw[Co4At3Ch4]
+919.012 -0.110997 0.00 !Mu2ChY101TRaw[Co4At3Ch5]
+926.674 -0.111938 0.00 !Mu2ChY102TRaw[Co4At3Ch6]
+916.909 -0.110746 0.00 !Mu2ChY103TRaw[Co4At3Ch7]
+932.767 -0.112691 0.00 !Mu2ChY104TRaw[Co4At3Ch8]
+927.33 -0.112025 0.00 !Mu2ChY105TRaw[Co4At3Ch9]
+923.243 -0.111507 0.00 !Mu2ChY106TRaw[Co4At3Ch10]
+924.408 -0.111663 0.00 !Mu2ChY107TRaw[Co4At3Ch11]
+924.057 -0.111623 0.00 !Mu2ChY108TRaw[Co4At3Ch12]
+927.531 -0.112066 0.00 !Mu2ChY109TRaw[Co4At3Ch13]
+928.251 -0.11214 0.00 !Mu2ChY110TRaw[Co4At3Ch14]
+924.467 -0.111703 0.00 !Mu2ChY111TRaw[Co4At3Ch15]
+914.871 -0.110525 0.00 !Mu2ChY112TRaw[Co4At3Ch16]
+854.155 -0.102981 0.00 !Mu2ChY113TRaw[Co4At4Ch1]
+870.733 -0.104976 0.00 !Mu2ChY114TRaw[Co4At4Ch2]
+878.476 -0.105936 0.00 !Mu2ChY115TRaw[Co4At4Ch3]
+876.793 -0.10575 0.00 !Mu2ChY116TRaw[Co4At4Ch4]
+884.881 -0.106741 0.00 !Mu2ChY117TRaw[Co4At4Ch5]
+881.171 -0.10628 0.00 !Mu2ChY118TRaw[Co4At4Ch6]
+893.636 -0.107805 0.00 !Mu2ChY119TRaw[Co4At4Ch7]
+894.919 -0.107966 0.00 !Mu2ChY120TRaw[Co4At4Ch8]
+885.067 -0.106759 0.00 !Mu2ChY121TRaw[Co4At4Ch9]
+898.226 -0.108381 0.00 !Mu2ChY122TRaw[Co4At4Ch10]
+896.617 -0.108195 0.00 !Mu2ChY123TRaw[Co4At4Ch11]
+896.617 -0.108195 0.00 !Mu2ChY124TRaw[Co4At4Ch12]
+899.421 -0.108519 0.00 !Mu2ChY125TRaw[Co4At4Ch13]
+900.193 -0.10863 0.00 !Mu2ChY126TRaw[Co4At4Ch14]
+901.229 -0.108768 0.00 !Mu2ChY127TRaw[Co4At4Ch15]
+897.311 -0.108297 0.00 !Mu2ChY128TRaw[Co4At4Ch16]
+938.354 -0.113591 0.00 !Mu3ChX1TRaw[Co1At1Ch1]
+952.054 -0.115254 0.00 !Mu3ChX2TRaw[Co1At1Ch2]
+956.534 -0.115822 0.00 !Mu3ChX3TRaw[Co1At1Ch3]
+958.488 -0.116042 0.00 !Mu3ChX4TRaw[Co1At1Ch4]
+950.724 -0.115096 0.00 !Mu3ChX5TRaw[Co1At1Ch5]
+965.196 -0.11686 0.00 !Mu3ChX6TRaw[Co1At1Ch6]
+969.308 -0.117385 0.00 !Mu3ChX7TRaw[Co1At1Ch7]
+974.569 -0.118019 0.00 !Mu3ChX8TRaw[Co1At1Ch8]
+972.643 -0.117779 0.00 !Mu3ChX9TRaw[Co1At1Ch9]
+970.352 -0.117496 0.00 !Mu3ChX10TRaw[Co1At1Ch10]
+972.778 -0.117795 0.00 !Mu3ChX11TRaw[Co1At1Ch11]
+984.9 -0.119273 0.00 !Mu3ChX12TRaw[Co1At1Ch12]
+974.806 -0.118031 0.00 !Mu3ChX13TRaw[Co1At1Ch13]
+981.032 -0.118805 0.00 !Mu3ChX14TRaw[Co1At1Ch14]
+978.727 -0.118524 0.00 !Mu3ChX15TRaw[Co1At1Ch15]
+983.561 -0.119127 0.00 !Mu3ChX16TRaw[Co1At1Ch16]
+967.055 -0.117029 0.00 !Mu3ChX17TRaw[Co1At2Ch1]
+963.403 -0.116582 0.00 !Mu3ChX18TRaw[Co1At2Ch2]
+982.136 -0.11886 0.00 !Mu3ChX19TRaw[Co1At2Ch3]
+978.048 -0.118386 0.00 !Mu3ChX20TRaw[Co1At2Ch4]
+985.228 -0.119229 0.00 !Mu3ChX21TRaw[Co1At2Ch5]
+992.422 -0.120114 0.00 !Mu3ChX22TRaw[Co1At2Ch6]
+984.595 -0.119177 0.00 !Mu3ChX23TRaw[Co1At2Ch7]
+988.858 -0.119693 0.00 !Mu3ChX24TRaw[Co1At2Ch8]
+986.58 -0.119405 0.00 !Mu3ChX25TRaw[Co1At2Ch9]
+987.489 -0.119523 0.00 !Mu3ChX26TRaw[Co1At2Ch10]
+1000.74 -0.12115 0.00 !Mu3ChX27TRaw[Co1At2Ch11]
+996.509 -0.120628 0.00 !Mu3ChX28TRaw[Co1At2Ch12]
+1006.69 -0.121885 0.00 !Mu3ChX29TRaw[Co1At2Ch13]
+999.766 -0.121035 0.00 !Mu3ChX30TRaw[Co1At2Ch14]
+1001.37 -0.121233 0.00 !Mu3ChX31TRaw[Co1At2Ch15]
+996.617 -0.120654 0.00 !Mu3ChX32TRaw[Co1At2Ch16]
+898.105 -0.108693 0.00 !Mu3ChX33TRaw[Co1At3Ch1]
+904.446 -0.109485 0.00 !Mu3ChX34TRaw[Co1At3Ch2]
+912.143 -0.110421 0.00 !Mu3ChX35TRaw[Co1At3Ch3]
+905.421 -0.109588 0.00 !Mu3ChX36TRaw[Co1At3Ch4]
+911.321 -0.110301 0.00 !Mu3ChX37TRaw[Co1At3Ch5]
+919.499 -0.111327 0.00 !Mu3ChX38TRaw[Co1At3Ch6]
+921.109 -0.111495 0.00 !Mu3ChX39TRaw[Co1At3Ch7]
+929.489 -0.112521 0.00 !Mu3ChX40TRaw[Co1At3Ch8]
+937.068 -0.11347 0.00 !Mu3ChX41TRaw[Co1At3Ch9]
+930.942 -0.112717 0.00 !Mu3ChX42TRaw[Co1At3Ch10]
+927.894 -0.112335 0.00 !Mu3ChX43TRaw[Co1At3Ch11]
+932.632 -0.112964 0.00 !Mu3ChX44TRaw[Co1At3Ch12]
+935.332 -0.113245 0.00 !Mu3ChX45TRaw[Co1At3Ch13]
+929.857 -0.11258 0.00 !Mu3ChX46TRaw[Co1At3Ch14]
+937.136 -0.113476 0.00 !Mu3ChX47TRaw[Co1At3Ch15]
+935.398 -0.113256 0.00 !Mu3ChX48TRaw[Co1At3Ch16]
+866.015 -0.104661 0.00 !Mu3ChX49TRaw[Co1At4Ch1]
+865.76 -0.104634 0.00 !Mu3ChX50TRaw[Co1At4Ch2]
+878.223 -0.106155 0.00 !Mu3ChX51TRaw[Co1At4Ch3]
+888.186 -0.107364 0.00 !Mu3ChX52TRaw[Co1At4Ch4]
+888.209 -0.107368 0.00 !Mu3ChX53TRaw[Co1At4Ch5]
+884.13 -0.106861 0.00 !Mu3ChX54TRaw[Co1At4Ch6]
+896.431 -0.108382 0.00 !Mu3ChX55TRaw[Co1At4Ch7]
+899.348 -0.108733 0.00 !Mu3ChX56TRaw[Co1At4Ch8]
+896.795 -0.10844 0.00 !Mu3ChX57TRaw[Co1At4Ch9]
+902.052 -0.10908 0.00 !Mu3ChX58TRaw[Co1At4Ch10]
+897.684 -0.108538 0.00 !Mu3ChX59TRaw[Co1At4Ch11]
+897.274 -0.10849 0.00 !Mu3ChX60TRaw[Co1At4Ch12]
+903.963 -0.109312 0.00 !Mu3ChX61TRaw[Co1At4Ch13]
+905.108 -0.109445 0.00 !Mu3ChX62TRaw[Co1At4Ch14]
+891.538 -0.107803 0.00 !Mu3ChX63TRaw[Co1At4Ch15]
+900.293 -0.108862 0.00 !Mu3ChX64TRaw[Co1At4Ch16]
+985.824 -0.119126 0.00 !Mu3ChX65TRaw[Co2At1Ch1]
+991.541 -0.119789 0.00 !Mu3ChX66TRaw[Co2At1Ch2]
+991.866 -0.119851 0.00 !Mu3ChX67TRaw[Co2At1Ch3]
+1007.5 -0.121753 0.00 !Mu3ChX68TRaw[Co2At1Ch4]
+1008.13 -0.121824 0.00 !Mu3ChX69TRaw[Co2At1Ch5]
+1004.87 -0.121446 0.00 !Mu3ChX70TRaw[Co2At1Ch6]
+1008.48 -0.121893 0.00 !Mu3ChX71TRaw[Co2At1Ch7]
+1012.14 -0.122347 0.00 !Mu3ChX72TRaw[Co2At1Ch8]
+1008.38 -0.121883 0.00 !Mu3ChX73TRaw[Co2At1Ch9]
+1014.86 -0.122684 0.00 !Mu3ChX74TRaw[Co2At1Ch10]
+1023.57 -0.123722 0.00 !Mu3ChX75TRaw[Co2At1Ch11]
+1033.42 -0.124938 0.00 !Mu3ChX76TRaw[Co2At1Ch12]
+1015.34 -0.122709 0.00 !Mu3ChX77TRaw[Co2At1Ch13]
+1014.72 -0.12265 0.00 !Mu3ChX78TRaw[Co2At1Ch14]
+1026.27 -0.124061 0.00 !Mu3ChX79TRaw[Co2At1Ch15]
+1019.9 -0.123313 0.00 !Mu3ChX80TRaw[Co2At1Ch16]
+942.714 -0.11381 0.00 !Mu3ChX81TRaw[Co2At2Ch1]
+949.104 -0.114558 0.00 !Mu3ChX82TRaw[Co2At2Ch2]
+952.48 -0.114986 0.00 !Mu3ChX83TRaw[Co2At2Ch3]
+951.022 -0.114804 0.00 !Mu3ChX84TRaw[Co2At2Ch4]
+965.822 -0.116619 0.00 !Mu3ChX85TRaw[Co2At2Ch5]
+968.345 -0.11693 0.00 !Mu3ChX86TRaw[Co2At2Ch6]
+962.99 -0.116299 0.00 !Mu3ChX87TRaw[Co2At2Ch7]
+967.787 -0.116863 0.00 !Mu3ChX88TRaw[Co2At2Ch8]
+978.317 -0.118161 0.00 !Mu3ChX89TRaw[Co2At2Ch9]
+974.374 -0.117687 0.00 !Mu3ChX90TRaw[Co2At2Ch10]
+979.507 -0.118304 0.00 !Mu3ChX91TRaw[Co2At2Ch11]
+987.225 -0.119256 0.00 !Mu3ChX92TRaw[Co2At2Ch12]
+987.195 -0.119241 0.00 !Mu3ChX93TRaw[Co2At2Ch13]
+986.603 -0.119186 0.00 !Mu3ChX94TRaw[Co2At2Ch14]
+984.211 -0.118879 0.00 !Mu3ChX95TRaw[Co2At2Ch15]
+979.288 -0.118278 0.00 !Mu3ChX96TRaw[Co2At2Ch16]
+862.689 -0.104124 0.00 !Mu3ChX97TRaw[Co2At3Ch1]
+867.813 -0.104728 0.00 !Mu3ChX98TRaw[Co2At3Ch2]
+867.895 -0.104753 0.00 !Mu3ChX99TRaw[Co2At3Ch3]
+873.835 -0.105492 0.00 !Mu3ChX100TRaw[Co2At3Ch4]
+883.843 -0.106693 0.00 !Mu3ChX101TRaw[Co2At3Ch5]
+879.494 -0.10614 0.00 !Mu3ChX102TRaw[Co2At3Ch6]
+883.805 -0.106708 0.00 !Mu3ChX103TRaw[Co2At3Ch7]
+882.86 -0.106567 0.00 !Mu3ChX104TRaw[Co2At3Ch8]
+891.887 -0.107671 0.00 !Mu3ChX105TRaw[Co2At3Ch9]
+896.27 -0.108216 0.00 !Mu3ChX106TRaw[Co2At3Ch10]
+888.15 -0.107225 0.00 !Mu3ChX107TRaw[Co2At3Ch11]
+899.039 -0.108561 0.00 !Mu3ChX108TRaw[Co2At3Ch12]
+899.371 -0.108609 0.00 !Mu3ChX109TRaw[Co2At3Ch13]
+896.002 -0.108191 0.00 !Mu3ChX110TRaw[Co2At3Ch14]
+905.511 -0.109337 0.00 !Mu3ChX111TRaw[Co2At3Ch15]
+900.32 -0.108709 0.00 !Mu3ChX112TRaw[Co2At3Ch16]
+859.472 -0.103629 0.00 !Mu3ChX113TRaw[Co2At4Ch1]
+869.213 -0.10481 0.00 !Mu3ChX114TRaw[Co2At4Ch2]
+869.978 -0.1049 0.00 !Mu3ChX115TRaw[Co2At4Ch3]
+876.122 -0.105647 0.00 !Mu3ChX116TRaw[Co2At4Ch4]
+788.143 -0.126949 0.00 !Mu3ChX117TRaw[Co2At4Ch5]
+880.15 -0.106145 0.00 !Mu3ChX118TRaw[Co2At4Ch6]
+887.525 -0.107055 0.00 !Mu3ChX119TRaw[Co2At4Ch7]
+884.874 -0.10675 0.00 !Mu3ChX120TRaw[Co2At4Ch8]
+888.126 -0.107137 0.00 !Mu3ChX121TRaw[Co2At4Ch9]
+892.007 -0.107599 0.00 !Mu3ChX122TRaw[Co2At4Ch10]
+887.829 -0.107093 0.00 !Mu3ChX123TRaw[Co2At4Ch11]
+897.245 -0.108252 0.00 !Mu3ChX124TRaw[Co2At4Ch12]
+891.27 -0.107522 0.00 !Mu3ChX125TRaw[Co2At4Ch13]
+898.089 -0.108336 0.00 !Mu3ChX126TRaw[Co2At4Ch14]
+885.342 -0.106793 0.00 !Mu3ChX127TRaw[Co2At4Ch15]
+894.433 -0.107896 0.00 !Mu3ChX128TRaw[Co2At4Ch16]
+920.954 -0.11121 0.00 !Mu3ChY1TRaw[Co3At1Ch1]
+928.777 -0.112154 0.00 !Mu3ChY2TRaw[Co3At1Ch2]
+937.754 -0.113241 0.00 !Mu3ChY3TRaw[Co3At1Ch3]
+947.224 -0.114409 0.00 !Mu3ChY4TRaw[Co3At1Ch4]
+944.162 -0.114032 0.00 !Mu3ChY5TRaw[Co3At1Ch5]
+951.968 -0.114994 0.00 !Mu3ChY6TRaw[Co3At1Ch6]
+956.591 -0.115552 0.00 !Mu3ChY7TRaw[Co3At1Ch7]
+956.368 -0.115546 0.00 !Mu3ChY8TRaw[Co3At1Ch8]
+964.281 -0.116506 0.00 !Mu3ChY9TRaw[Co3At1Ch9]
+968.513 -0.117006 0.00 !Mu3ChY10TRaw[Co3At1Ch10]
+970.24 -0.117251 0.00 !Mu3ChY11TRaw[Co3At1Ch11]
+969.011 -0.117093 0.00 !Mu3ChY12TRaw[Co3At1Ch12]
+978.827 -0.118272 0.00 !Mu3ChY13TRaw[Co3At1Ch13]
+985.112 -0.119048 0.00 !Mu3ChY14TRaw[Co3At1Ch14]
+977.123 -0.118075 0.00 !Mu3ChY15TRaw[Co3At1Ch15]
+983.985 -0.118941 0.00 !Mu3ChY16TRaw[Co3At1Ch16]
+970.371 -0.117174 0.00 !Mu3ChY17TRaw[Co3At2Ch1]
+984.045 -0.118815 0.00 !Mu3ChY18TRaw[Co3At2Ch2]
+985.023 -0.118931 0.00 !Mu3ChY19TRaw[Co3At2Ch3]
+990.894 -0.119638 0.00 !Mu3ChY20TRaw[Co3At2Ch4]
+996.439 -0.12034 0.00 !Mu3ChY21TRaw[Co3At2Ch5]
+1006.18 -0.121551 0.00 !Mu3ChY22TRaw[Co3At2Ch6]
+1001.89 -0.120998 0.00 !Mu3ChY23TRaw[Co3At2Ch7]
+996.258 -0.120321 0.00 !Mu3ChY24TRaw[Co3At2Ch8]
+1002.35 -0.121073 0.00 !Mu3ChY25TRaw[Co3At2Ch9]
+1008.58 -0.121839 0.00 !Mu3ChY26TRaw[Co3At2Ch10]
+1008.51 -0.121856 0.00 !Mu3ChY27TRaw[Co3At2Ch11]
+1015.07 -0.122649 0.00 !Mu3ChY28TRaw[Co3At2Ch12]
+1018.24 -0.12302 0.00 !Mu3ChY29TRaw[Co3At2Ch13]
+1007.23 -0.121668 0.00 !Mu3ChY30TRaw[Co3At2Ch14]
+1016.39 -0.122794 0.00 !Mu3ChY31TRaw[Co3At2Ch15]
+1017.37 -0.122927 0.00 !Mu3ChY32TRaw[Co3At2Ch16]
+873.601 -0.105446 0.00 !Mu3ChY33TRaw[Co3At3Ch1]
+870.737 -0.105092 0.00 !Mu3ChY34TRaw[Co3At3Ch2]
+875.902 -0.10573 0.00 !Mu3ChY35TRaw[Co3At3Ch3]
+872.76 -0.105345 0.00 !Mu3ChY36TRaw[Co3At3Ch4]
+884.229 -0.106744 0.00 !Mu3ChY37TRaw[Co3At3Ch5]
+883.52 -0.106654 0.00 !Mu3ChY38TRaw[Co3At3Ch6]
+888.675 -0.107294 0.00 !Mu3ChY39TRaw[Co3At3Ch7]
+897.411 -0.108361 0.00 !Mu3ChY40TRaw[Co3At3Ch8]
+894.272 -0.10799 0.00 !Mu3ChY41TRaw[Co3At3Ch9]
+898.134 -0.10846 0.00 !Mu3ChY42TRaw[Co3At3Ch10]
+907.563 -0.109593 0.00 !Mu3ChY43TRaw[Co3At3Ch11]
+904.332 -0.109195 0.00 !Mu3ChY44TRaw[Co3At3Ch12]
+899.078 -0.108568 0.00 !Mu3ChY45TRaw[Co3At3Ch13]
+909.287 -0.109804 0.00 !Mu3ChY46TRaw[Co3At3Ch14]
+912.926 -0.110263 0.00 !Mu3ChY47TRaw[Co3At3Ch15]
+905.69 -0.109382 0.00 !Mu3ChY48TRaw[Co3At3Ch16]
+879.206 -0.105997 0.00 !Mu3ChY49TRaw[Co3At4Ch1]
+885.638 -0.106772 0.00 !Mu3ChY50TRaw[Co3At4Ch2]
+897.352 -0.108217 0.00 !Mu3ChY51TRaw[Co3At4Ch3]
+900.017 -0.108527 0.00 !Mu3ChY52TRaw[Co3At4Ch4]
+894.065 -0.107825 0.00 !Mu3ChY53TRaw[Co3At4Ch5]
+902.563 -0.108862 0.00 !Mu3ChY54TRaw[Co3At4Ch6]
+907.447 -0.109456 0.00 !Mu3ChY55TRaw[Co3At4Ch7]
+913.155 -0.110152 0.00 !Mu3ChY56TRaw[Co3At4Ch8]
+917.884 -0.110718 0.00 !Mu3ChY57TRaw[Co3At4Ch9]
+916.39 -0.11056 0.00 !Mu3ChY58TRaw[Co3At4Ch10]
+925.29 -0.111636 0.00 !Mu3ChY59TRaw[Co3At4Ch11]
+911.348 -0.109934 0.00 !Mu3ChY60TRaw[Co3At4Ch12]
+924.685 -0.111581 0.00 !Mu3ChY61TRaw[Co3At4Ch13]
+925.584 -0.111694 0.00 !Mu3ChY62TRaw[Co3At4Ch14]
+920.738 -0.1111 0.00 !Mu3ChY63TRaw[Co3At4Ch15]
+923.494 -0.11144 0.00 !Mu3ChY64TRaw[Co3At4Ch16]
+904.406 -0.109216 0.00 !Mu3ChY65TRaw[Co4At1Ch1]
+911.098 -0.110026 0.00 !Mu3ChY66TRaw[Co4At1Ch2]
+911.599 -0.110106 0.00 !Mu3ChY67TRaw[Co4At1Ch3]
+920.222 -0.11114 0.00 !Mu3ChY68TRaw[Co4At1Ch4]
+931.355 -0.11252 0.00 !Mu3ChY69TRaw[Co4At1Ch5]
+939.668 -0.113544 0.00 !Mu3ChY70TRaw[Co4At1Ch6]
+932.714 -0.112672 0.00 !Mu3ChY71TRaw[Co4At1Ch7]
+931.288 -0.112491 0.00 !Mu3ChY72TRaw[Co4At1Ch8]
+947.183 -0.114462 0.00 !Mu3ChY73TRaw[Co4At1Ch9]
+939.764 -0.11354 0.00 !Mu3ChY74TRaw[Co4At1Ch10]
+955.625 -0.115517 0.00 !Mu3ChY75TRaw[Co4At1Ch11]
+952.282 -0.115086 0.00 !Mu3ChY76TRaw[Co4At1Ch12]
+964.745 -0.116618 0.00 !Mu3ChY77TRaw[Co4At1Ch13]
+953.345 -0.115232 0.00 !Mu3ChY78TRaw[Co4At1Ch14]
+945.988 -0.114343 0.00 !Mu3ChY79TRaw[Co4At1Ch15]
+951.047 -0.114947 0.00 !Mu3ChY80TRaw[Co4At1Ch16]
+970.943 -0.117288 0.00 !Mu3ChY81TRaw[Co4At2Ch1]
+982.69 -0.118727 0.00 !Mu3ChY82TRaw[Co4At2Ch2]
+988.906 -0.119474 0.00 !Mu3ChY83TRaw[Co4At2Ch3]
+992.522 -0.119909 0.00 !Mu3ChY84TRaw[Co4At2Ch4]
+994.13 -0.120116 0.00 !Mu3ChY85TRaw[Co4At2Ch5]
+1001.12 -0.120975 0.00 !Mu3ChY86TRaw[Co4At2Ch6]
+998.108 -0.120606 0.00 !Mu3ChY87TRaw[Co4At2Ch7]
+999.312 -0.12076 0.00 !Mu3ChY88TRaw[Co4At2Ch8]
+1004.15 -0.121336 0.00 !Mu3ChY89TRaw[Co4At2Ch9]
+1015.36 -0.122713 0.00 !Mu3ChY90TRaw[Co4At2Ch10]
+1018.49 -0.1231 0.00 !Mu3ChY91TRaw[Co4At2Ch11]
+1006.74 -0.121678 0.00 !Mu3ChY92TRaw[Co4At2Ch12]
+1015.03 -0.122697 0.00 !Mu3ChY93TRaw[Co4At2Ch13]
+1018.29 -0.123087 0.00 !Mu3ChY94TRaw[Co4At2Ch14]
+1010.39 -0.122144 0.00 !Mu3ChY95TRaw[Co4At2Ch15]
+1011.64 -0.122274 0.00 !Mu3ChY96TRaw[Co4At2Ch16]
+874.337 -0.105573 0.00 !Mu3ChY97TRaw[Co4At3Ch1]
+871.593 -0.105224 0.00 !Mu3ChY98TRaw[Co4At3Ch2]
+876.164 -0.105791 0.00 !Mu3ChY99TRaw[Co4At3Ch3]
+885.298 -0.106904 0.00 !Mu3ChY100TRaw[Co4At3Ch4]
+892.528 -0.107789 0.00 !Mu3ChY101TRaw[Co4At3Ch5]
+892.165 -0.107742 0.00 !Mu3ChY102TRaw[Co4At3Ch6]
+903.16 -0.109085 0.00 !Mu3ChY103TRaw[Co4At3Ch7]
+895.161 -0.108126 0.00 !Mu3ChY104TRaw[Co4At3Ch8]
+902.34 -0.108999 0.00 !Mu3ChY105TRaw[Co4At3Ch9]
+894.856 -0.108068 0.00 !Mu3ChY106TRaw[Co4At3Ch10]
+894.177 -0.108006 0.00 !Mu3ChY107TRaw[Co4At3Ch11]
+903.343 -0.109125 0.00 !Mu3ChY108TRaw[Co4At3Ch12]
+905.571 -0.109439 0.00 !Mu3ChY109TRaw[Co4At3Ch13]
+903.69 -0.109168 0.00 !Mu3ChY110TRaw[Co4At3Ch14]
+899.215 -0.108625 0.00 !Mu3ChY111TRaw[Co4At3Ch15]
+905.657 -0.109416 0.00 !Mu3ChY112TRaw[Co4At3Ch16]
+891.482 -0.107554 0.00 !Mu3ChY113TRaw[Co4At4Ch1]
+898.972 -0.108473 0.00 !Mu3ChY114TRaw[Co4At4Ch2]
+902.164 -0.108848 0.00 !Mu3ChY115TRaw[Co4At4Ch3]
+897.423 -0.108292 0.00 !Mu3ChY116TRaw[Co4At4Ch4]
+905.477 -0.109288 0.00 !Mu3ChY117TRaw[Co4At4Ch5]
+910.936 -0.109943 0.00 !Mu3ChY118TRaw[Co4At4Ch6]
+909.486 -0.109765 0.00 !Mu3ChY119TRaw[Co4At4Ch7]
+908.693 -0.109672 0.00 !Mu3ChY120TRaw[Co4At4Ch8]
+915.535 -0.110512 0.00 !Mu3ChY121TRaw[Co4At4Ch9]
+924.289 -0.111588 0.00 !Mu3ChY122TRaw[Co4At4Ch10]
+926.875 -0.111915 0.00 !Mu3ChY123TRaw[Co4At4Ch11]
+909.469 -0.109772 0.00 !Mu3ChY124TRaw[Co4At4Ch12]
+913.618 -0.11029 0.00 !Mu3ChY125TRaw[Co4At4Ch13]
+919.137 -0.110947 0.00 !Mu3ChY126TRaw[Co4At4Ch14]
+920.413 -0.111116 0.00 !Mu3ChY127TRaw[Co4At4Ch15]
+928.523 -0.112131 0.00 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Coeff/Cal_Str_X_T_MM1_run_0200.cal b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Coeff/Cal_Str_X_T_MM1_run_0200.cal
new file mode 100644
index 0000000000000000000000000000000000000000..4f6895dcaee9ccdb94cd49ba52ff243389d37d6d
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Coeff/Cal_Str_X_T_MM1_run_0200.cal
@@ -0,0 +1,64 @@
+EDIN_T1_DSSD_X1_T 954.599 -0.121763	7.01384e-07
+EDIN_T1_DSSD_X2_T 967.922 -0.123541	7.26055e-07
+EDIN_T1_DSSD_X3_T 961.88 -0.122284	6.0757e-07
+EDIN_T1_DSSD_X4_T 978.032 -0.125354	7.20967e-07
+EDIN_T1_DSSD_X5_T 986.23 -0.125953	7.65489e-07
+EDIN_T1_DSSD_X6_T 987.96 -0.126599	8.20619e-07
+EDIN_T1_DSSD_X7_T 984.219 -0.126018	7.27668e-07
+EDIN_T1_DSSD_X8_T 985.856 -0.124783	6.08173e-07
+EDIN_T1_DSSD_X9_T 988.949 -0.126482	7.59745e-07
+EDIN_T1_DSSD_X10_T 992.701 -0.126472	7.16079e-07
+EDIN_T1_DSSD_X11_T 992.831 -0.126239	6.55316e-07
+EDIN_T1_DSSD_X12_T 996.87 -0.126281	6.553e-07
+EDIN_T1_DSSD_X13_T 1006.36 -0.127949	7.17096e-07
+EDIN_T1_DSSD_X14_T 987.503 -0.124659	5.90654e-07
+EDIN_T1_DSSD_X15_T 1000.36 -0.127793	7.46879e-07
+EDIN_T1_DSSD_X16_T 986.25 -0.12444	5.59837e-07
+EDIN_T1_DSSD_X17_T 964.954 -0.122665	6.71169e-07
+EDIN_T1_DSSD_X18_T 963.006 -0.11643	9.6873e-11
+EDIN_T1_DSSD_X19_T 987.209 -0.124488	5.84763e-07
+EDIN_T1_DSSD_X20_T 971.846 -0.117514	-5.4511e-08
+EDIN_T1_DSSD_X21_T 987.621 -0.120137	6.81102e-08
+EDIN_T1_DSSD_X22_T 976.231 -0.118639	4.23294e-11
+EDIN_T1_DSSD_X23_T 981.587 -0.118294	-1.32395e-07
+EDIN_T1_DSSD_X24_T 1006.36 -0.127949	7.17101e-07
+EDIN_T1_DSSD_X25_T 981.565 -0.118872	-4.11001e-08
+EDIN_T1_DSSD_X26_T 1004.98 -0.12628	5.06616e-07
+EDIN_T1_DSSD_X27_T 997.459 -0.120096	-8.3353e-08
+EDIN_T1_DSSD_X28_T 1003.43 -0.121364	-9.94967e-09
+EDIN_T1_DSSD_X29_T 995.999 -0.120457	-5.8383e-08
+EDIN_T1_DSSD_X30_T 995.815 -0.120512	-3.87946e-08
+EDIN_T1_DSSD_X31_T 1005.12 -0.128179	7.04129e-07
+EDIN_T1_DSSD_X32_T 992.127 -0.120162	1.69201e-08
+EDIN_T1_DSSD_X33_T 883.917 -0.114701	8.52186e-07
+EDIN_T1_DSSD_X34_T 881.153 -0.113932	8.15362e-07
+EDIN_T1_DSSD_X35_T 896.635 -0.115598	7.58613e-07
+EDIN_T1_DSSD_X36_T 887.918 -0.11403	7.36313e-07
+EDIN_T1_DSSD_X37_T 886.863 -0.113974	7.12182e-07
+EDIN_T1_DSSD_X38_T 904.09 -0.116967	8.13585e-07
+EDIN_T1_DSSD_X39_T 899.906 -0.115007	6.31382e-07
+EDIN_T1_DSSD_X40_T 905.286 -0.1165	7.84653e-07
+EDIN_T1_DSSD_X41_T 892.708 -0.108895	4.19165e-08
+EDIN_T1_DSSD_X42_T 908.746 -0.116546	7.39379e-07
+EDIN_T1_DSSD_X43_T 906.086 -0.116933	7.82491e-07
+EDIN_T1_DSSD_X44_T 915.4 -0.117122	7.33411e-07
+EDIN_T1_DSSD_X45_T 912.244 -0.117268	7.89631e-07
+EDIN_T1_DSSD_X46_T 908.165 -0.116835	8.01145e-07
+EDIN_T1_DSSD_X47_T 903.121 -0.116119	7.29519e-07
+EDIN_T1_DSSD_X48_T 903.827 -0.116056	7.04315e-07
+EDIN_T1_DSSD_X49_T 896.544 -0.114638	7.3623e-07
+EDIN_T1_DSSD_X50_T 895.865 -0.114409	6.78143e-07
+EDIN_T1_DSSD_X51_T 899.927 -0.1147	6.53573e-07
+EDIN_T1_DSSD_X52_T 907.668 -0.116135	7.5805e-07
+EDIN_T1_DSSD_X53_T 915.828 -0.116231	6.31303e-07
+EDIN_T1_DSSD_X54_T 913.447 -0.115813	5.77349e-07
+EDIN_T1_DSSD_X55_T 920.745 -0.116359	5.93778e-07
+EDIN_T1_DSSD_X56_T 920.539 -0.116871	6.04792e-07
+EDIN_T1_DSSD_X57_T 937.997 -0.119851	7.58037e-07
+EDIN_T1_DSSD_X58_T 923.581 -0.118299	7.10738e-07
+EDIN_T1_DSSD_X59_T 936.772 -0.119366	7.14976e-07
+EDIN_T1_DSSD_X60_T 936.468 -0.119298	6.66735e-07
+EDIN_T1_DSSD_X61_T 947.735 -0.120999	7.29801e-07
+EDIN_T1_DSSD_X62_T 952.292 -0.123036	8.82113e-07
+EDIN_T1_DSSD_X63_T 953.571 -0.121901	7.55376e-07
+EDIN_T1_DSSD_X64_T 936.886 -0.119031	6.42594e-07
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Coeff/Cal_Str_X_T_MM1_run_0200.peak b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Coeff/Cal_Str_X_T_MM1_run_0200.peak
new file mode 100644
index 0000000000000000000000000000000000000000..8b07e6fcae602d3ab07e5b1820bb6633ead69441
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Coeff/Cal_Str_X_T_MM1_run_0200.peak
@@ -0,0 +1,1640 @@
+EDIN_T1_DSSD_X1_T 
+0	3816.18
+1	3992.18
+2	4152.18
+3	4328.18
+4	4504.18
+5	4680.18
+6	4856.18
+7	5032.16
+8	5208.16
+9	5384.18
+10	5560.18
+11	5736.17
+12	5912.18
+13	6088.18
+14	6264.19
+15	6440.18
+16	6616.18
+17	6792.18
+18	6968.18
+19	7144.18
+20	7304.18
+21	7496.18
+22	7656.18
+23	7832.18
+24	8120.16
+EDIN_T1_DSSD_X2_T 
+0	3864.19
+1	4040.17
+2	4216.2
+3	4392.18
+4	4552.18
+5	4728.18
+6	4904.18
+7	5080.16
+8	5256.18
+9	5416.18
+10	5592.18
+11	5768.18
+12	5944.18
+13	6120.18
+14	6296.18
+15	6456.18
+16	6632.18
+17	6808.18
+18	6984.18
+19	7160.18
+20	7336.18
+21	7496.18
+22	7672.18
+23	7848.18
+24	8120.18
+EDIN_T1_DSSD_X3_T 
+0	3848.19
+1	4008.18
+2	4184.18
+3	4360.18
+4	4536.18
+5	4712.18
+6	4888.18
+7	5048.16
+8	5224.18
+9	5400.18
+10	5576.18
+11	5752.18
+12	5912.18
+13	6088.18
+14	6264.19
+15	6440.18
+16	6616.18
+17	6776.18
+18	6952.18
+19	7128.18
+20	7304.18
+21	7480.18
+22	7640.18
+23	7816.18
+24	8088.18
+EDIN_T1_DSSD_X4_T 
+0	3896.19
+1	4056.17
+2	4232.2
+3	4408.18
+4	4568.18
+5	4744.18
+6	4920.18
+7	5080.16
+8	5256.18
+9	5416.18
+10	5592.18
+11	5768.18
+12	5944.18
+13	6104.18
+14	6280.18
+15	6440.18
+16	6616.18
+17	6792.18
+18	6952.18
+19	7128.18
+20	7304.18
+21	7464.18
+22	7640.18
+23	7816.18
+24	8072.18
+EDIN_T1_DSSD_X5_T 
+0	3944.18
+1	4120.18
+2	4280.2
+3	4456.18
+4	4632.17
+5	4792.18
+6	4968.16
+7	5144.16
+8	5304.18
+9	5480.18
+10	5656.17
+11	5816.18
+12	5992.18
+13	6152.18
+14	6328.18
+15	6504.18
+16	6664.18
+17	6840.18
+18	7016.18
+19	7176.18
+20	7352.18
+21	7528.18
+22	7688.18
+23	7864.18
+24	8136.18
+EDIN_T1_DSSD_X6_T 
+0	3944.18
+1	4120.18
+2	4280.2
+3	4456.18
+4	4632.17
+5	4792.18
+6	4968.16
+7	5144.16
+8	5304.18
+9	5480.18
+10	5640.17
+11	5816.18
+12	5992.18
+13	6152.18
+14	6328.18
+15	6504.18
+16	6664.18
+17	6840.18
+18	7016.18
+19	7176.18
+20	7352.18
+21	7528.18
+22	7688.18
+23	7864.18
+24	8136.18
+EDIN_T1_DSSD_X7_T 
+0	3928.18
+1	4088.17
+2	4264.2
+3	4424.18
+4	4600.18
+5	4776.18
+6	4936.18
+7	5112.16
+8	5272.18
+9	5448.18
+10	5624.17
+11	5784.18
+12	5960.18
+13	6120.18
+14	6296.18
+15	6472.18
+16	6632.18
+17	6808.18
+18	6968.18
+19	7144.18
+20	7320.18
+21	7480.18
+22	7656.18
+23	7816.18
+24	8088.18
+EDIN_T1_DSSD_X8_T 
+0	3800.18
+1	3960.18
+2	4136.18
+3	4296.2
+4	4472.18
+5	4648.17
+6	4808.18
+7	4984.16
+8	5144.16
+9	5320.18
+10	5496.18
+11	5656.17
+12	5832.18
+13	5992.18
+14	6168.18
+15	6328.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7512.18
+23	7688.18
+24	7864.18
+25	8120.18
+EDIN_T1_DSSD_X9_T 
+0	3944.18
+1	4120.18
+2	4296.2
+3	4456.18
+4	4632.17
+5	4792.18
+6	4968.16
+7	5144.16
+8	5304.18
+9	5480.18
+10	5640.17
+11	5816.18
+12	5976.18
+13	6152.18
+14	6328.18
+15	6488.18
+16	6664.18
+17	6824.18
+18	7000.18
+19	7176.18
+20	7336.18
+21	7512.18
+22	7672.18
+23	7848.18
+24	8120.18
+EDIN_T1_DSSD_X10_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4488.18
+5	4648.17
+6	4824.18
+7	4984.16
+8	5160.16
+9	5320.18
+10	5496.18
+11	5672.17
+12	5832.18
+13	6008.18
+14	6168.18
+15	6344.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7528.18
+23	7688.18
+24	7864.18
+25	8120.18
+EDIN_T1_DSSD_X11_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4488.18
+5	4648.17
+6	4824.18
+7	4984.16
+8	5160.16
+9	5320.18
+10	5496.18
+11	5656.17
+12	5832.18
+13	5992.18
+14	6168.18
+15	6328.18
+16	6504.18
+17	6664.18
+18	6840.18
+19	7000.18
+20	7176.18
+21	7336.18
+22	7512.18
+23	7672.18
+24	7848.18
+25	8104.18
+EDIN_T1_DSSD_X12_T 
+0	3848.19
+1	4008.18
+2	4184.18
+3	4344.18
+4	4520.18
+5	4680.18
+6	4856.18
+7	5016.16
+8	5192.16
+9	5352.18
+10	5528.18
+11	5688.17
+12	5864.18
+13	6024.18
+14	6200.18
+15	6360.18
+16	6536.18
+17	6696.18
+18	6872.18
+19	7032.18
+20	7208.18
+21	7368.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+EDIN_T1_DSSD_X13_T 
+0	3880.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4536.18
+5	4712.18
+6	4872.18
+7	5048.16
+8	5208.16
+9	5368.18
+10	5544.18
+11	5704.17
+12	5880.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6536.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7208.18
+21	7384.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+EDIN_T1_DSSD_X14_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4488.18
+5	4664.18
+6	4824.18
+7	5000.16
+8	5160.16
+9	5336.18
+10	5496.18
+11	5672.17
+12	5848.18
+13	6008.18
+14	6184.18
+15	6344.18
+16	6520.18
+17	6696.18
+18	6856.18
+19	7032.18
+20	7192.18
+21	7368.18
+22	7528.18
+23	7704.18
+24	7864.18
+25	8136.18
+EDIN_T1_DSSD_X15_T 
+0	3832.19
+1	4008.18
+2	4168.18
+3	4344.18
+4	4504.18
+5	4664.18
+6	4840.18
+7	5000.16
+8	5176.16
+9	5336.18
+10	5512.18
+11	5672.17
+12	5848.18
+13	6008.18
+14	6184.18
+15	6344.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7512.18
+23	7688.18
+24	7848.18
+25	8120.18
+EDIN_T1_DSSD_X16_T 
+0	3800.18
+1	3976.18
+2	4136.18
+3	4312.18
+4	4488.18
+5	4648.17
+6	4824.18
+7	4984.16
+8	5160.16
+9	5320.18
+10	5496.18
+11	5672.17
+12	5832.18
+13	6008.18
+14	6168.18
+15	6344.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7528.18
+23	7688.18
+24	7864.18
+25	8120.18
+EDIN_T1_DSSD_X17_T 
+0	3864.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4552.18
+5	4728.18
+6	4904.18
+7	5080.16
+8	5256.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5944.18
+13	6120.18
+14	6296.18
+15	6472.18
+16	6632.18
+17	6808.18
+18	6984.18
+19	7160.18
+20	7336.18
+21	7512.18
+22	7688.18
+23	7848.18
+24	8120.18
+EDIN_T1_DSSD_X18_T 
+0	3800.18
+1	3976.18
+2	4152.18
+3	4328.18
+4	4488.18
+5	4664.18
+6	4840.18
+7	5000.16
+8	5176.16
+9	5352.18
+10	5528.18
+11	5688.17
+12	5864.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6552.18
+17	6728.18
+18	6904.18
+19	7064.18
+20	7240.18
+21	7416.18
+22	7576.18
+23	7752.18
+24	7928.18
+25	8104.18
+EDIN_T1_DSSD_X19_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4328.18
+4	4488.18
+5	4664.18
+6	4824.18
+7	5000.16
+8	5176.16
+9	5336.18
+10	5512.18
+11	5672.17
+12	5848.18
+13	6008.18
+14	6184.18
+15	6360.18
+16	6520.18
+17	6696.18
+18	6856.18
+19	7032.18
+20	7208.18
+21	7368.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+EDIN_T1_DSSD_X20_T 
+0	3832.19
+1	4008.18
+2	4184.18
+3	4344.18
+4	4520.18
+5	4680.18
+6	4856.18
+7	5032.16
+8	5192.16
+9	5368.18
+10	5528.18
+11	5704.17
+12	5864.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6552.18
+17	6712.18
+18	6888.18
+19	7048.18
+20	7224.18
+21	7400.18
+22	7560.18
+23	7736.18
+24	7896.18
+25	8072.18
+EDIN_T1_DSSD_X21_T 
+0	3896.19
+1	4072.17
+2	4232.2
+3	4408.18
+4	4568.18
+5	4744.18
+6	4904.18
+7	5064.16
+8	5240.18
+9	5416.18
+10	5576.18
+11	5736.17
+12	5912.18
+13	6072.18
+14	6248.19
+15	6408.18
+16	6584.18
+17	6744.18
+18	6920.18
+19	7080.18
+20	7256.18
+21	7416.18
+22	7592.18
+23	7752.18
+24	7928.18
+25	8088.18
+EDIN_T1_DSSD_X22_T 
+0	3848.19
+1	4008.18
+2	4184.18
+3	4344.18
+4	4520.18
+5	4696.18
+6	4856.18
+7	5032.16
+8	5192.16
+9	5368.18
+10	5528.18
+11	5704.17
+12	5864.18
+13	6040.18
+14	6200.18
+15	6376.18
+16	6536.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7224.18
+21	7384.18
+22	7560.18
+23	7720.18
+24	7896.18
+25	8056.18
+EDIN_T1_DSSD_X23_T 
+0	3880.19
+1	4056.17
+2	4216.2
+3	4392.18
+4	4552.18
+5	4728.18
+6	4888.18
+7	5064.16
+8	5224.18
+9	5384.18
+10	5560.18
+11	5720.17
+12	5896.18
+13	6056.18
+14	6232.18
+15	6392.18
+16	6552.18
+17	6728.18
+18	6888.18
+19	7064.18
+20	7224.18
+21	7384.18
+22	7560.18
+23	7720.18
+24	7896.18
+25	8056.18
+EDIN_T1_DSSD_X24_T 
+0	3880.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4536.18
+5	4712.18
+6	4872.18
+7	5048.16
+8	5208.16
+9	5368.18
+10	5544.18
+11	5704.17
+12	5880.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6536.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7208.18
+21	7384.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+EDIN_T1_DSSD_X25_T 
+0	3880.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4552.18
+5	4712.18
+6	4888.18
+7	5048.16
+8	5224.18
+9	5384.18
+10	5560.18
+11	5720.17
+12	5896.18
+13	6056.18
+14	6232.18
+15	6392.18
+16	6552.18
+17	6728.18
+18	6888.18
+19	7064.18
+20	7224.18
+21	7400.18
+22	7560.18
+23	7736.18
+24	7896.18
+25	8072.18
+EDIN_T1_DSSD_X26_T 
+0	3896.19
+1	4056.17
+2	4232.2
+3	4392.18
+4	4552.18
+5	4728.18
+6	4888.18
+7	5048.16
+8	5224.18
+9	5384.18
+10	5560.18
+11	5720.17
+12	5880.18
+13	6056.18
+14	6216.18
+15	6376.18
+16	6552.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7208.18
+21	7368.18
+22	7544.18
+23	7704.18
+24	7864.18
+25	8120.17
+EDIN_T1_DSSD_X27_T 
+0	3800.18
+1	3960.18
+2	4136.18
+3	4296.2
+4	4456.18
+5	4632.17
+6	4792.18
+7	4952.16
+8	5128.16
+9	5288.18
+10	5448.18
+11	5624.17
+12	5784.18
+13	5944.18
+14	6120.18
+15	6280.18
+16	6440.18
+17	6616.18
+18	6776.18
+19	6936.18
+20	7096.18
+21	7272.18
+22	7432.18
+23	7608.18
+24	7768.18
+25	7928.18
+26	8088.18
+EDIN_T1_DSSD_X28_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4472.18
+5	4648.17
+6	4808.18
+7	4968.16
+8	5128.16
+9	5304.18
+10	5464.18
+11	5624.17
+12	5800.18
+13	5960.18
+14	6120.18
+15	6280.18
+16	6456.18
+17	6616.18
+18	6776.18
+19	6952.18
+20	7112.18
+21	7272.18
+22	7432.18
+23	7608.18
+24	7768.18
+25	7928.18
+26	8104.18
+EDIN_T1_DSSD_X29_T 
+0	3944.18
+1	4104.18
+2	4280.2
+3	4440.18
+4	4600.18
+5	4776.18
+6	4936.18
+7	5096.16
+8	5272.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5928.18
+13	6088.18
+14	6264.19
+15	6424.18
+16	6584.18
+17	6744.18
+18	6920.18
+19	7080.18
+20	7240.18
+21	7416.18
+22	7576.18
+23	7736.18
+24	7912.18
+25	8072.18
+EDIN_T1_DSSD_X30_T 
+0	3944.18
+1	4104.18
+2	4280.2
+3	4440.18
+4	4600.18
+5	4776.18
+6	4936.18
+7	5096.16
+8	5272.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5928.18
+13	6088.18
+14	6264.19
+15	6424.18
+16	6584.18
+17	6760.18
+18	6920.18
+19	7080.18
+20	7256.18
+21	7416.18
+22	7576.18
+23	7752.18
+24	7912.18
+25	8072.18
+EDIN_T1_DSSD_X31_T 
+0	3864.19
+1	4024.18
+2	4184.18
+3	4360.18
+4	4520.18
+5	4680.18
+6	4856.18
+7	5016.16
+8	5192.16
+9	5352.18
+10	5512.18
+11	5688.17
+12	5848.18
+13	6024.18
+14	6184.18
+15	6344.18
+16	6520.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7512.18
+23	7672.18
+24	7848.18
+25	8104.18
+EDIN_T1_DSSD_X32_T 
+0	3928.18
+1	4104.18
+2	4264.2
+3	4424.18
+4	4600.18
+5	4760.18
+6	4936.18
+7	5096.16
+8	5272.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5928.18
+13	6104.18
+14	6264.19
+15	6424.18
+16	6600.18
+17	6760.18
+18	6936.18
+19	7096.18
+20	7272.18
+21	7432.18
+22	7592.18
+23	7768.18
+24	7928.18
+25	8104.18
+EDIN_T1_DSSD_X33_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4360.18
+4	4552.18
+5	4744.18
+6	4920.18
+7	5112.16
+8	5304.18
+9	5496.18
+10	5688.17
+11	5880.18
+12	6072.18
+13	6264.19
+14	6440.18
+15	6632.18
+16	6824.18
+17	7016.18
+18	7208.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8072.18
+EDIN_T1_DSSD_X34_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4360.18
+4	4552.18
+5	4728.18
+6	4920.18
+7	5112.16
+8	5320.18
+9	5496.18
+10	5688.17
+11	5880.18
+12	6072.18
+13	6264.19
+14	6456.18
+15	6648.18
+16	6840.18
+17	7032.18
+18	7224.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8088.18
+EDIN_T1_DSSD_X35_T 
+0	3864.19
+1	4056.17
+2	4232.2
+3	4424.18
+4	4616.17
+5	4792.18
+6	4984.16
+7	5176.16
+8	5352.18
+9	5544.18
+10	5736.17
+11	5912.18
+12	6104.18
+13	6280.18
+14	6472.18
+15	6664.18
+16	6856.18
+17	7032.18
+18	7224.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8072.18
+EDIN_T1_DSSD_X36_T 
+0	3832.19
+1	4024.18
+2	4216.2
+3	4408.18
+4	4600.18
+5	4776.18
+6	4968.16
+7	5160.16
+8	5352.18
+9	5544.18
+10	5720.17
+11	5912.18
+12	6104.18
+13	6296.18
+14	6472.18
+15	6664.18
+16	6856.18
+17	7048.18
+18	7240.18
+19	7416.18
+20	7608.18
+21	7800.18
+22	8104.18
+EDIN_T1_DSSD_X37_T 
+0	3832.19
+1	4008.18
+2	4200.18
+3	4392.18
+4	4584.18
+5	4776.18
+6	4952.16
+7	5144.16
+8	5336.18
+9	5528.18
+10	5704.17
+11	5896.18
+12	6088.18
+13	6280.18
+14	6456.18
+15	6648.18
+16	6840.18
+17	7032.18
+18	7224.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8072.18
+EDIN_T1_DSSD_X38_T 
+0	3896.19
+1	4072.17
+2	4264.2
+3	4440.18
+4	4632.17
+5	4824.18
+6	5000.16
+7	5192.16
+8	5368.18
+9	5560.18
+10	5736.17
+11	5928.18
+12	6120.18
+13	6296.18
+14	6488.18
+15	6664.18
+16	6856.18
+17	7032.18
+18	7224.18
+19	7416.18
+20	7592.18
+21	7784.18
+22	8072.18
+EDIN_T1_DSSD_X39_T 
+0	3896.19
+1	4088.17
+2	4264.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5560.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7224.18
+19	7416.18
+20	7592.18
+21	7784.18
+22	8072.18
+EDIN_T1_DSSD_X40_T 
+0	3912.18
+1	4104.18
+2	4280.2
+3	4472.18
+4	4664.18
+5	4840.18
+6	5032.16
+7	5208.16
+8	5400.18
+9	5592.18
+10	5768.18
+11	5960.18
+12	6136.18
+13	6328.18
+14	6504.18
+15	6696.18
+16	6888.18
+17	7064.18
+18	7256.18
+19	7432.18
+20	7624.18
+21	7816.18
+22	8104.18
+EDIN_T1_DSSD_X41_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4344.18
+4	4536.18
+5	4712.18
+6	4904.18
+7	5080.16
+8	5272.18
+9	5448.18
+10	5640.17
+11	5816.18
+12	6008.18
+13	6200.18
+14	6376.18
+15	6568.18
+16	6744.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7672.18
+22	7848.18
+23	8040.18
+EDIN_T1_DSSD_X42_T 
+0	3944.18
+1	4120.18
+2	4312.18
+3	4488.18
+4	4680.18
+5	4856.18
+6	5048.16
+7	5224.18
+8	5416.18
+9	5608.17
+10	5784.18
+11	5976.18
+12	6152.18
+13	6344.18
+14	6520.18
+15	6712.18
+16	6888.18
+17	7080.18
+18	7256.18
+19	7448.18
+20	7624.18
+21	7816.18
+22	8104.18
+EDIN_T1_DSSD_X43_T 
+0	3912.18
+1	4088.17
+2	4280.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5576.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7224.18
+19	7416.18
+20	7608.18
+21	7784.18
+22	8072.18
+EDIN_T1_DSSD_X44_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4344.18
+4	4536.18
+5	4712.18
+6	4904.18
+7	5080.16
+8	5256.18
+9	5448.18
+10	5624.17
+11	5816.18
+12	5992.18
+13	6184.18
+14	6360.18
+15	6552.18
+16	6728.18
+17	6920.18
+18	7096.18
+19	7288.18
+20	7464.18
+21	7640.18
+22	7832.18
+23	8120.18
+EDIN_T1_DSSD_X45_T 
+0	3944.18
+1	4136.18
+2	4328.18
+3	4504.18
+4	4696.18
+5	4872.18
+6	5048.16
+7	5240.18
+8	5432.18
+9	5608.17
+10	5800.18
+11	5976.18
+12	6168.18
+13	6344.18
+14	6536.18
+15	6712.18
+16	6904.18
+17	7080.18
+18	7272.18
+19	7448.18
+20	7640.18
+21	7816.18
+22	8120.18
+EDIN_T1_DSSD_X46_T 
+0	3928.18
+1	4120.18
+2	4296.2
+3	4488.18
+4	4680.18
+5	4856.18
+6	5048.16
+7	5224.18
+8	5416.18
+9	5592.18
+10	5784.18
+11	5976.18
+12	6152.18
+13	6344.18
+14	6520.18
+15	6712.18
+16	6888.18
+17	7080.18
+18	7272.18
+19	7448.18
+20	7640.18
+21	7816.18
+22	8120.18
+EDIN_T1_DSSD_X47_T 
+0	3896.19
+1	4088.17
+2	4280.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5560.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7240.18
+19	7416.18
+20	7608.18
+21	7784.18
+22	8072.17
+EDIN_T1_DSSD_X48_T 
+0	3912.18
+1	4088.17
+2	4280.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5208.16
+8	5384.18
+9	5576.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7240.18
+19	7416.18
+20	7592.18
+21	7784.18
+22	8072.17
+EDIN_T1_DSSD_X49_T 
+0	3896.19
+1	4088.17
+2	4264.2
+3	4456.18
+4	4648.17
+5	4840.18
+6	5016.16
+7	5208.16
+8	5400.18
+9	5592.18
+10	5768.18
+11	5960.18
+12	6152.18
+13	6344.18
+14	6520.18
+15	6712.18
+16	6904.18
+17	7080.18
+18	7272.18
+19	7464.18
+20	7656.18
+21	7832.18
+22	8136.16
+EDIN_T1_DSSD_X50_T 
+0	3896.19
+1	4072.17
+2	4264.2
+3	4456.18
+4	4632.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5576.18
+10	5768.18
+11	5944.18
+12	6136.18
+13	6328.18
+14	6504.18
+15	6696.18
+16	6888.18
+17	7064.18
+18	7256.18
+19	7448.18
+20	7624.18
+21	7816.18
+22	8104.18
+EDIN_T1_DSSD_X51_T 
+0	3912.18
+1	4104.18
+2	4280.2
+3	4472.18
+4	4664.18
+5	4840.18
+6	5032.16
+7	5224.18
+8	5400.18
+9	5592.18
+10	5768.18
+11	5960.18
+12	6152.18
+13	6328.18
+14	6520.18
+15	6712.18
+16	6888.18
+17	7080.18
+18	7256.18
+19	7448.18
+20	7640.18
+21	7816.18
+22	8104.18
+EDIN_T1_DSSD_X52_T 
+0	3944.18
+1	4136.18
+2	4312.18
+3	4504.18
+4	4696.18
+5	4872.18
+6	5064.16
+7	5240.18
+8	5432.18
+9	5624.17
+10	5800.18
+11	5992.18
+12	6168.18
+13	6360.18
+14	6552.18
+15	6728.18
+16	6920.18
+17	7096.18
+18	7288.18
+19	7480.18
+20	7656.18
+21	7848.18
+22	8136.17
+EDIN_T1_DSSD_X53_T 
+0	3816.18
+1	4008.18
+2	4184.18
+3	4376.18
+4	4552.18
+5	4728.18
+6	4920.18
+7	5096.16
+8	5288.18
+9	5464.18
+10	5656.17
+11	5832.18
+12	6008.18
+13	6200.18
+14	6376.18
+15	6568.18
+16	6744.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7848.18
+23	8120.18
+EDIN_T1_DSSD_X54_T 
+0	3800.18
+1	3992.18
+2	4168.18
+3	4360.18
+4	4536.18
+5	4728.18
+6	4904.18
+7	5080.16
+8	5272.18
+9	5448.18
+10	5640.17
+11	5816.18
+12	5992.18
+13	6184.18
+14	6360.18
+15	6552.18
+16	6728.18
+17	6904.18
+18	7096.18
+19	7272.18
+20	7464.18
+21	7640.18
+22	7816.18
+23	8104.18
+EDIN_T1_DSSD_X55_T 
+0	3848.19
+1	4040.17
+2	4216.2
+3	4408.18
+4	4584.18
+5	4776.18
+6	4952.16
+7	5128.16
+8	5304.18
+9	5496.18
+10	5672.17
+11	5864.18
+12	6040.18
+13	6216.18
+14	6408.18
+15	6584.18
+16	6776.18
+17	6952.18
+18	7128.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7864.18
+23	8136.18
+EDIN_T1_DSSD_X56_T 
+0	3832.19
+1	4024.18
+2	4200.18
+3	4376.18
+4	4568.18
+5	4744.18
+6	4920.18
+7	5112.16
+8	5288.18
+9	5480.18
+10	5656.17
+11	5832.18
+12	6008.18
+13	6200.18
+14	6376.18
+15	6552.18
+16	6744.18
+17	6920.18
+18	7096.18
+19	7288.18
+20	7464.18
+21	7640.18
+22	7832.18
+23	8104.18
+EDIN_T1_DSSD_X57_T 
+0	3912.18
+1	4088.17
+2	4264.2
+3	4440.18
+4	4632.17
+5	4808.18
+6	4984.16
+7	5160.16
+8	5336.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6248.19
+14	6424.18
+15	6600.18
+16	6776.18
+17	6952.18
+18	7144.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7864.18
+23	8136.18
+EDIN_T1_DSSD_X58_T 
+0	3832.19
+1	4008.18
+2	4184.18
+3	4376.18
+4	4552.18
+5	4728.18
+6	4920.18
+7	5096.16
+8	5272.18
+9	5448.18
+10	5640.17
+11	5816.18
+12	6008.18
+13	6184.18
+14	6360.18
+15	6536.18
+16	6728.18
+17	6904.18
+18	7080.18
+19	7272.18
+20	7448.18
+21	7624.18
+22	7816.18
+23	8088.18
+EDIN_T1_DSSD_X59_T 
+0	3912.18
+1	4088.17
+2	4264.2
+3	4440.18
+4	4632.17
+5	4808.18
+6	4984.16
+7	5160.16
+8	5352.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6248.19
+14	6424.18
+15	6600.18
+16	6776.18
+17	6952.18
+18	7144.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7864.18
+23	8136.18
+EDIN_T1_DSSD_X60_T 
+0	3896.19
+1	4088.17
+2	4264.2
+3	4440.18
+4	4616.17
+5	4792.18
+6	4968.16
+7	5160.16
+8	5336.18
+9	5512.18
+10	5688.17
+11	5864.18
+12	6040.18
+13	6232.18
+14	6408.18
+15	6584.18
+16	6760.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7832.18
+23	8104.18
+EDIN_T1_DSSD_X61_T 
+0	3944.18
+1	4120.18
+2	4312.18
+3	4488.18
+4	4664.18
+5	4840.18
+6	5016.16
+7	5192.16
+8	5368.18
+9	5544.18
+10	5720.17
+11	5896.18
+12	6072.18
+13	6248.19
+14	6424.18
+15	6600.18
+16	6792.18
+17	6968.18
+18	7144.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7848.18
+23	8120.18
+EDIN_T1_DSSD_X62_T 
+0	3928.18
+1	4120.18
+2	4296.2
+3	4472.18
+4	4648.17
+5	4824.18
+6	5000.16
+7	5176.16
+8	5352.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6232.18
+14	6408.18
+15	6584.18
+16	6760.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7832.18
+23	8104.18
+EDIN_T1_DSSD_X63_T 
+0	3800.18
+1	3976.18
+2	4152.18
+3	4328.18
+4	4504.18
+5	4680.18
+6	4856.18
+7	5032.16
+8	5208.16
+9	5384.18
+10	5560.18
+11	5736.17
+12	5912.18
+13	6088.18
+14	6264.19
+15	6440.18
+16	6616.18
+17	6792.18
+18	6968.18
+19	7144.18
+20	7320.18
+21	7496.18
+22	7672.18
+23	7848.18
+24	8136.16
+EDIN_T1_DSSD_X64_T 
+0	3912.18
+1	4088.17
+2	4264.2
+3	4456.18
+4	4632.17
+5	4808.18
+6	4984.16
+7	5160.16
+8	5336.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6232.18
+14	6408.18
+15	6600.18
+16	6776.18
+17	6952.18
+18	7128.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7848.18
+23	8120.18
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/ExtractRawHisto_T.C b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/ExtractRawHisto_T.C
new file mode 100644
index 0000000000000000000000000000000000000000..deaf5f7e6692d07168c08074e38d283997983bdd
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/ExtractRawHisto_T.C
@@ -0,0 +1,113 @@
+////////////////////////////////////////////////////////////////////////////
+// This macro takes a converted ROOT file from the GANIL e569 exp. and    //
+// create an histogram for each strip (X and Y) of the MUST2 array filled //
+// with the energy. The histograms are dumped in an output ROOT file.     //
+//                                                                        //
+// This is especially usefull for calibration purposes when there is no   //
+// need to work directly on the TTree                                     //
+////////////////////////////////////////////////////////////////////////////
+#include <iostream>
+
+#include "TROOT.h"
+#include "TSystem.h"
+#include "TFile.h"
+#include "TString.h"
+#include "TTree.h"
+#include "TBranch.h"
+#include "TH1F.h"
+#include "TEDINData.h"
+#include "TChain.h"
+
+
+
+void ExtractMust2Histos(const char* fname = "run_0040", int NBTELESCOPE = 4, int NBSTRIPS = 128, int FIRSTSTRIP = 0, int FIRSTELESCOPE = 0)
+{
+
+  TString path  = "~/npTreeReader/np-tree-reader/Projects/EDIN/RootR/";
+  TChain* tree = new TChain("RD");
+  tree->Add(path + fname + ".root");
+  //tree->Add(path + fname + "_1.root");
+  //tree->Add(path + fname + "_2.root");
+
+  tree->SetBranchStatus("*",false);
+
+  // connect the TMust2Data branch  
+  tree->SetBranchStatus("EDIN",true);
+  tree->SetBranchStatus("fMM*",true);
+  TEDINData *rawEDIN; 
+
+  std::cout << tree->GetEntries() << std::endl;
+
+  rawEDIN = new TEDINData();
+  tree->SetBranchAddress("EDIN", &rawEDIN);
+
+
+
+  // open the output ROOT file
+  TString outFileName = "~/npTreeReader/np-tree-reader/Projects/EDIN/calibration/Time/Histograms/";
+  outFileName += fname;
+  outFileName += "_RawEDINHistos.root";
+  std::cout<< outFileName<< std::endl;
+  TFile *outFile = new TFile(outFileName, "recreate");
+
+  // prepare output histograms for Must2
+  TH1F* hStripXTime[NBTELESCOPE-FIRSTELESCOPE][NBSTRIPS-FIRSTSTRIP];
+  TH1F* hStripYTime[NBTELESCOPE-FIRSTELESCOPE][NBSTRIPS-FIRSTSTRIP];
+  for (Int_t i = FIRSTELESCOPE; i < NBTELESCOPE; i++) {
+    for (Int_t j = FIRSTSTRIP; j < NBSTRIPS; j++) {
+      // strips XE
+      TString hnameXT     = Form("hMM%d_STRX_T%d", i, j);
+      TString htitleXT    = Form("MM%d_STRX_T%d", i, j);
+      hStripXTime[i][j] = new TH1F(hnameXT, htitleXT, 16384, 0, 16384);
+      // strips YE
+      TString hnameYT     = Form("hMM%d_STRY_T%d", i, j);
+      TString htitleYT    = Form("MM%d_STRY_T%d", i, j);
+      hStripYTime[i][j] = new TH1F(hnameYT, htitleYT, 16384, 0, 16384);
+    }
+  }
+
+  // read the data
+  Int_t nentries = tree->GetEntries();
+  //   nentries = 21000;
+  std::cout << "TTree contains " << nentries << " events" << std::endl;
+  for (Int_t i = 0; i < nentries; i++) {
+    if (i%10000 == 0) std::cout << "Entry " << i << std::endl;
+    
+    tree->GetEntry(i);
+    Int_t multXT = 0;
+    multXT = rawEDIN->GetDSSDXTMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    for (Int_t j = 0; j < multXT; j++) {
+      Int_t det    = rawEDIN->GetDSSDXTDetectorNbr(j);
+      Int_t stripX = rawEDIN->GetDSSDXTStripNbr(j);
+      Int_t Time_ = rawEDIN->GetDSSDXTTime(j);
+      if ((det < NBTELESCOPE) && (stripX < NBSTRIPS)) {
+        std::cout << det << " " << stripX << " " << Time_<< std::endl;
+        hStripXTime[det][stripX]->Fill(Time_);
+      }
+      else {
+        //std::cout << "Error filling histograms: EDIN_X_T" << std::endl;
+      }
+    }
+    // get StripYE multiplicity
+    Int_t multYT = rawEDIN->GetDSSDYTMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    for (Int_t j = 0; j < multYT; j++) {
+      Int_t det    = rawEDIN->GetDSSDYTDetectorNbr(j);
+      Int_t stripY = rawEDIN->GetDSSDYTStripNbr(j);
+      Int_t Time_ = rawEDIN->GetDSSDYTTime(j);
+      if ((det < NBTELESCOPE) && (stripY < NBSTRIPS)) {
+        hStripYTime[det][stripY]->Fill(Time_);
+      }
+      else {
+        //std::cout << "Error filling histograms: EDIN_Y_T" << std::endl;
+      }
+    }
+  }
+
+  // write on disk output file and close it
+  outFile->Write();
+  outFile->Close();
+}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/ExtractRawHisto_T_C.d b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/ExtractRawHisto_T_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..4dfab84480515c8bc245450b93a3ee3884bd500a
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/ExtractRawHisto_T_C.d
@@ -0,0 +1,89 @@
+
+# DO NOT DELETE
+
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSystem.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInetAddress.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTimer.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSysEvtHandler.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTime.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./ExtractRawHisto_T_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TEDINData.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TChain.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+ExtractRawHisto_T_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Histograms/.root_hist b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Histograms/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..5d9de7637d13de4b12d1cf83318c5f3560ec847e
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/Histograms/.root_hist
@@ -0,0 +1,3 @@
+TFile *_file0 = TFile::Open("r0012_RawMUST2Histos.root")
+new TBrowser
+.q
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/RunToTreat.txt b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/RunToTreat.txt
new file mode 100644
index 0000000000000000000000000000000000000000..9c24dd33c012ad104f203bbc89f0ada9cac3f8ed
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/RunToTreat.txt
@@ -0,0 +1,4 @@
+TTreeName 
+	AutoTree
+RootFileName 
+  /data/mugastX/mugast/acquisition/root/run_0627.root 
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/TimeCalibrator.C b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/TimeCalibrator.C
new file mode 100644
index 0000000000000000000000000000000000000000..1bc47c142edf85b591451d3f01030b3c09850e40
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/TimeCalibrator.C
@@ -0,0 +1,331 @@
+#include<stdlib.h>
+#include<stdio.h>
+#include <time.h>
+#include <iostream>
+#include <fstream>
+#include <sstream>
+#include "TString.h"
+#include "TSpectrum.h"
+#include "TGraphErrors.h"
+#include "TCanvas.h"
+#include "TFile.h"
+#include "TTree.h"
+#include "TH1F.h"
+#include "TF1.h"
+
+using namespace std;
+// #define TELESCOPE_START 1	
+// #define TELESCOPE_END 4
+#define STRIP_START	1
+#define STRIP_END 	64
+
+
+Int_t CurrentTelescope = 0 ;
+Int_t CurrentStrip     = 0 ;
+
+
+void TimeGene(TH1F*, TString, Int_t, int);
+Int_t Finder(TH1F*, Double_t*, Double_t*, Int_t);
+TF1* Calib(TGraphErrors*,Double_t*, Double_t*, Int_t);
+Double_t pol2 (Double_t *,Double_t *);
+		
+ofstream peaks_file, calib_file, dispersion_file,calib_online_file; 
+	
+void TimeCalibrator(const char* frun = "run_XXXX", TString xy = "X",Int_t npeak= 32, int TELESCOPE_START=1, int TELESCOPE_END=4)//49
+{
+	// open the ROOT file to process
+	TString path  = "./Histograms/";
+	TString inFileName = frun;
+  TFile *inFile;
+
+  inFile = new TFile(path + inFileName +"_RawEDINHistos.root");
+
+  TString str;
+  TString str1;
+  TString str2;
+  TString strbuff;
+  TString strbuff2;
+  TString fname;
+  TString fname2;
+
+	TString hname;
+	
+	TCanvas *c1 = new TCanvas("c1","c1",1200,900);
+  c1->cd();
+	//c1->Divide(16,8);
+
+	for (int det = TELESCOPE_START-1; det < TELESCOPE_END ; det++){
+			ostringstream number ;
+			number << det+1  ;
+			CurrentTelescope = det+1 ;
+		if (xy == "X"){ 
+			//////// Input Files ///////////
+			str = "hMM"+number.str()+"_STRX_T";
+			/////// Output Files ///////////
+        str1 = "Cal_Str_X_T_MM"+number.str()+"_"+frun;
+    
+    }	 
+		
+    else if (xy == "Y"){ 	
+			//////// Input Files ///////////
+			str = "hMM"+number.str()+"_STRY_T";
+			/////// Output Files ///////////
+        str1 = "Cal_Str_Y_T_MM"+number.str()+"_"+frun;
+	}	 
+		else {cout<< "ERROR FOR X or Y PARAMETER"<< endl;}
+
+		fname =  "./Coeff/" + str1 + ".peak";
+		peaks_file.open(( (string)fname ).c_str());
+
+		fname2 = "./Coeff/"+ str1 + ".cal";
+		calib_file.open( ( (string)fname2 ).c_str() );
+		
+		for (Int_t j = STRIP_START-1; j < STRIP_END; j++)
+		{
+			///// Get the histogram of det i and strip j /////
+			CurrentStrip=j+1;
+			number.seekp(0);
+			number << j+1;
+			hname = str+number.str().c_str();
+			TH1F *hist = (TH1F*) inFile->Get(((string)hname).c_str());
+		
+			TimeGene(	hist,
+								xy,
+								npeak, det);
+		}
+	peaks_file.close();
+	calib_file.close();
+	dispersion_file.close();
+	
+	}
+	
+}
+
+
+
+void TimeGene(TH1F *hist, TString xy, Int_t npeak, int DetNbr)
+	{
+	
+  // hist->GetXaxis()->SetRangeUser(0,16384);
+//  hist->GetXaxis()->SetRangeUser(0,8150);
+  TH1F* hist_clone = (TH1F*)hist->Clone();
+  //hist_clone->GetXaxis()->SetRangeUser(0,8150);
+
+ // int Nbins1 = hist_clone->GetNbinsX();
+ // cout<<"Nbins before "<<Nbins1<<endl;
+	
+//	std::cout << "est" << std::endl;
+  hist_clone->Rebin(16);
+  int Nbins = hist_clone->GetNbinsX();
+ // cout<<"Nbins after "<<Nbins<<endl;
+  for(int i =0; i<Nbins; i++){
+      if(hist_clone->GetBinCenter(i) > 8150 ) hist_clone->SetBinContent(i,0);
+     // if (DetNbr!=10){//range change for the anular telescope 11
+      if(hist_clone->GetBinCenter(i) < 3800 ) hist_clone->SetBinContent(i,0);
+     // }
+     // else {
+      //   if(hist_clone->GetBinCenter(i) < 100 ) hist_clone->SetBinContent(i,0);
+     // }  
+ } 
+//  hist_clone->Smooth(10);
+
+  
+  double Ecut = 0;
+  int maxbin = hist_clone->GetMaximumBin(); 
+  while(hist_clone->GetBinContent(maxbin) != 0){
+      maxbin++;
+  }
+  double maxE =  hist_clone->GetBinCenter(maxbin);
+  //cout << "maxbin : "<< maxbin << endl;
+  //cout << "maxE : "<< maxE << endl;
+/*
+  Nbins = hist->GetNbinsX();
+  for(int i =0; i<Nbins; i++){
+      if(hist->GetBinCenter(i) < maxE ) hist->SetBinContent(i,0);
+      if(hist->GetBinCenter(i) > 8180 ) hist->SetBinContent(i,0);
+  } 
+  */
+	Double_t *mean = new Double_t[npeak];
+  Double_t *sigma = new Double_t[npeak];
+
+	Int_t nfound = Finder(hist_clone, mean, sigma, npeak);
+
+	if (xy == "X"){
+	  peaks_file << "EDIN_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_T " << endl;
+	  for(int i=0; i<nfound; i++) {
+	    peaks_file << i<< "\t" << mean[i] <<  endl;
+	  }
+	}
+	else if (xy == "Y"){
+	  peaks_file << "EDIN_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_T " << endl;
+	  for(int i=0; i<nfound; i++) {
+	    peaks_file << i<< "\t" << mean[i] <<  endl;
+	  }
+  }
+
+	if(nfound<npeak) cout << "On "<< hist->GetName() << endl ;
+	
+	// Fit npeak
+	TGraphErrors* gr_MM= new TGraphErrors(nfound);
+	TF1* f = Calib(gr_MM, mean, sigma, nfound);
+	
+	Double_t a = f->GetParameter(0);
+	Double_t b = f->GetParameter(1);
+	Double_t c = f->GetParameter(2);
+  
+    if (xy == "X")
+      calib_file << "EDIN_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_T " << a << " " << b << "	" << c <<endl ;
+
+    else if (xy == "Y")
+      calib_file << "EDIN_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_T " << a << " " << b << " " << c << endl ;
+
+
+
+}
+
+Int_t Finder(TH1F *h, Double_t *mean, Double_t *sigma, Int_t npeak)
+{
+
+	/////////////////////////////////////////////////
+	//																						 //
+	//	           	PEAK  FINDER									 //
+	//																					 	 //
+	/////////////////////////////////////////////////
+
+
+	for(int k=0; k<npeak; k++)
+			{
+		    	mean[k]=0;
+		        sigma[k]=0;
+			}
+
+	//Double_t resolsig=5;
+	Double_t resolsig=2;
+	Float_t  resolsigTSpec=1;
+	Double_t seuil=0.00001;
+	Int_t nmax=npeak+1;   // nombre de pics maximum a prendre
+
+	//////// Peak finder
+
+	TSpectrum *s = new TSpectrum(nmax,resolsigTSpec);
+
+	Int_t nfound = s->Search(h,resolsig,"new",seuil);
+ 	
+  Double_t *xpeaks = s->GetPositionX();
+  cout << "NUMBER OF PEAKS" << " " << nfound << endl;
+	/// remise dans l ordre du tableau ordre croissant
+
+	if(nfound>1)
+	{
+		for(Int_t p=0;p<nfound;p++)
+		{
+			for(Int_t i=0;i<nfound-1;i++)
+			{
+				if(xpeaks[i]>xpeaks[i+1])
+				{
+					Double_t varia=xpeaks[i];
+					xpeaks[i]=xpeaks[i+1];
+					xpeaks[i+1]=varia;
+					cout <<"XPeak: " << xpeaks[i]<<endl;
+				}	  
+			}
+		}
+	}
+
+	
+	Float_t linf=0, lsup=0; 
+	
+	// if(nfound == npeak || nfound > npeak)
+	// {
+  	//struct FitResult{
+	//	double mean;
+	//	double sigma;
+	//};
+	//map<int, FitResult> results;
+
+		for (Int_t p=0;p<nfound;p++)
+		{   
+		linf = xpeaks[p]-5;
+		lsup = xpeaks[p]+5;
+
+		TF1 *gauss = new TF1("gauss","gaus",linf,lsup);
+		h->Fit(gauss,"RQ");
+		mean[p] = gauss->GetParameter(1);
+		sigma[p]= gauss->GetParameter(2);
+		//if (gauss->GetParameter(2)<10) {
+		//	results[p].mean = gauss->GetParameter(1); 
+		//	results[p].sigma = gauss->GetParameter(2);
+		//}
+    // std::cout <<  gauss->GetParameter(1) << std::endl;
+    // std::cout <<  gauss->GetParameter(2)<< std::endl;
+		 }
+	// }
+	//nfound=results.size();
+	//int cnt = 0;
+	//for (const auto & result: results){
+	//	mean[cnt]=result.second.mean;
+	//	sigma[cnt]=result.second.sigma;
+	//	cnt++;	
+	//	cout <<"Mean: " << mean[cnt]<<endl;
+	//}
+	
+	
+
+
+	if(nfound<npeak)
+	{
+	 cout << "attention, nombre de pics ("<<nfound<<") different de "<<npeak<<" !!!" ;
+		/*
+		for (Int_t p=0;p<npeak;p++)
+		{
+			mean[p]=-1;
+			sigma[p]=-1;
+			//return false ;
+		}
+		*/
+	 
+	}
+	
+	return nfound ;
+}
+
+TF1* Calib(TGraphErrors *gr, Double_t *mean, Double_t *sigma, Int_t npeak)
+{  
+	Double_t energy[npeak];
+  //Double_t errors[npeak];
+  
+	
+	for(int i = 0 ; i < npeak ; i ++)
+	{
+	energy[i] = (npeak-i)*20;
+	}
+			
+	
+	for (Int_t p = 0; p < npeak; p++) {
+		gr->SetPoint(p, mean[p], energy[p]);
+		gr->SetPointError(p, 0, 0);
+		//gr->SetPointError(p, sigma[p], errors[p]);    
+	}
+	
+	TF1 *f1 = new TF1("f1",pol2,mean[0],mean[npeak-1], npeak);
+	//TF1 *f1 = new TF1("f1",Form("[0]*(x-%f)",Pedestal));
+	gr->Fit("f1", "Q" );
+	// TCanvas*c2 = new TCanvas();
+	// c2->cd();
+	gr->Draw("AP");
+  // gPad->WaitPrimitive();
+
+	//Double_t a = f1 -> GetParameter(0);
+	
+	return f1 ;
+}
+
+Double_t pol2 (Double_t *x,Double_t *par){
+
+	Double_t result = 0;
+	result = par[0]+ x[0]*par[1]+ x[0]*x[0]*par[2];
+	return result;
+}
+
+
+	
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/Time/TimeCalibrator_C.d b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/TimeCalibrator_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..4978c4faf18f3c915c363eca8b7c6979be99f1b1
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/Time/TimeCalibrator_C.d
@@ -0,0 +1,100 @@
+
+# DO NOT DELETE
+
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSpectrum.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraphErrors.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraph.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCanvas.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TPad.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualPad.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttPad.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/GuiTypes.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Buttons.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttBBox2D.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttCanvas.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFormula.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/Types.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMethodCall.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1AbsComposition.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMath.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TError.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/ParamFunctor.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+TimeCalibrator_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/calibE0.cal1 b/Projects/EdinburghDSSD/Calibration/calib_raw/calibE0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..5f77c3d04858dd864b1411813497cfbbcbbac345
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/calibE0.cal1
@@ -0,0 +1,1024 @@
+-61662.3 7.52711 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61862.3 7.5515 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61786 7.54225 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61488.6 7.50587 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61896.8 7.55579 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61641.5 7.52453 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61399.4 7.49501 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61236.4 7.47509 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-60986.5 7.4446 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62681.3 7.65148 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62393.5 7.61631 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61925.3 7.55919 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62029.9 7.57195 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62417.6 7.61932 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61275.3 7.47982 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63058.3 7.69749 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62722.2 7.65646 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62134.9 7.58477 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62458.1 7.62423 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63902.7 7.80057 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62519.9 7.63181 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62297.5 7.60463 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62659.6 7.64878 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62852.3 7.67238 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62985.4 7.68854 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63073.7 7.69941 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62632 7.64548 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-63013.4 7.69203 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62579 7.63901 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63401.5 7.7394 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62630 7.64523 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56399 6.88462 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56789.2 6.93221 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55564.2 6.78269 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56333.4 6.87654 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-56040.6 6.84084 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+-10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55909.7 6.82487 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55658.4 6.79421 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56211.8 6.86172 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55874 6.82053 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56164.8 6.85597 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56307.5 6.87343 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56382 6.88247 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+-10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+-10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55911.5 6.82508 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57927.5 7.07116 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57924.8 7.07081 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57746 7.049 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57343.1 6.99988 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58172.2 7.10106 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57237.7 6.98697 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57876.3 7.06488 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57523.5 7.02188 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58500.7 7.14114 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57786.5 7.05393 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57300.4 6.99465 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57790.9 7.05448 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57203.4 6.9828 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57985 7.0782 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57888.7 7.06644 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58127.1 7.09555 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63452.4 7.74561 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63612.1 7.76511 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63338.7 7.73174 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64021.8 7.81515 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63197.4 7.71456 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63968.4 7.80864 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63853.8 7.79469 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63356.4 7.73397 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64117.7 7.82683 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63242.6 7.72007 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63972.5 7.80918 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63941.4 7.8053 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63651.8 7.77009 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63754.3 7.78255 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64292.8 7.84837 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64690.6 7.89693 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61215.8 7.47271 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60865.1 7.42995 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61147.3 7.46434 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61469.6 7.50369 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61379.1 7.49269 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61888.7 7.55484 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61403.2 7.49554 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62166.5 7.58877 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61896.4 7.55578 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61572.1 7.51618 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61720.5 7.53424 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62796.5 7.66557 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61868.1 7.55224 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60999.1 7.44621 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61368.2 7.49129 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62166.8 7.58877 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57169.7 6.97872 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57564 7.02681 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57724.2 7.04642 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57113.1 6.97176 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58126.5 7.0955 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57746.5 7.04909 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57665.4 7.03921 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57244.7 6.98784 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57357.8 7.00171 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57943.6 7.0732 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57279.1 6.99197 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57628.2 7.03471 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58567.7 7.1494 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58013.5 7.08178 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57681.5 7.04111 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57795.4 7.05508 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59002.3 7.20244 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59192.2 7.22562 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58512.8 7.14267 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58671.3 7.16207 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58171.6 7.10101 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58350.5 7.12281 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.4 7.11445 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58508.2 7.1421 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58511.7 7.14253 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58653.9 7.15989 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58550.4 7.14724 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59318.4 7.24097 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57853 7.06214 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58498.4 7.14087 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58426.4 7.13213 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59512.6 7.26467 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60443.5 -7.37839 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60908.5 -7.43514 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61060.2 -7.45367 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59984.4 -7.32237 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60129.5 -7.3401 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60783.1 -7.41989 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60431 -7.37691 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60140.7 -7.34142 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59998.4 -7.32403 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60395.7 -7.37254 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60028.3 -7.32774 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60887.8 -7.43267 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61066.5 -7.45441 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61164 -7.46632 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60739.8 -7.41458 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60443.5 -7.37838 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60544.4 -7.39071 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60303 -7.3612 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60143.3 -7.34174 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60328.6 -7.3644 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60395.9 -7.37256 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60276 -7.35798 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59684.2 -7.28572 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60187.9 -7.34719 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.4 -7.29698 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60128.6 -7.33997 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60450.5 -7.37922 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59890.5 -7.31089 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59647.3 -7.2812 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59834.9 -7.30412 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60999.1 -7.44624 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56552.5 -6.90341 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57074.5 -6.96718 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56536.5 -6.9015 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57036.3 -6.96248 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57405.1 -7.0075 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57259.2 -6.98972 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56419.6 -6.88718 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56461.1 -6.89226 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56951.6 -6.95213 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56800 -6.93367 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56600.5 -6.90927 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56511.5 -6.8984 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56870.5 -6.94221 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56993.6 -6.95727 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57679.7 -7.04103 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56560.6 -6.90438 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57546.6 -7.02477 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57035.8 -6.96245 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56800.6 -6.93377 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56505.8 -6.89773 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57161.4 -6.97779 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56855 -6.94036 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56619.7 -6.91168 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57621.8 -7.03399 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57359.7 -7.00197 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56825.9 -6.93676 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57031.5 -6.96191 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57239.3 -6.98735 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57254.8 -6.98918 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57074.4 -6.96716 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57574.5 -7.02822 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57912.4 -7.06943 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+61002.8 -7.44668 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61155.3 -7.4653 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61053.3 -7.45282 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61373.4 -7.4919 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60489.7 -7.38403 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61580.3 -7.51716 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60895.6 -7.4336 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60400.3 -7.3731 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61676.2 -7.52889 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61107.3 -7.45944 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61113.2 -7.46014 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61230.4 -7.47441 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60593.4 -7.39669 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61412.2 -7.49666 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61676.7 -7.52894 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61114.5 -7.46029 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62335.5 -7.60932 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61110.8 -7.45984 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61589.5 -7.51825 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62064.5 -7.57624 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61004.9 -7.44692 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60900.3 -7.43416 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61810.8 -7.54524 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61439.5 -7.49992 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61153 -7.46501 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61309.9 -7.48418 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61160.3 -7.46589 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61470.5 -7.50377 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61862.5 -7.55157 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61676 -7.52886 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62387.3 -7.61565 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60904.4 -7.43464 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56381.2 -6.88248 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56647.7 -6.91501 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56593.9 -6.90848 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56466.6 -6.8929 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56205.1 -6.86097 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56339.2 -6.87735 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56071.1 -6.84463 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56586.9 -6.90762 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56922.8 -6.94858 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56073.7 -6.84493 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57080.7 -6.96791 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57414.3 -7.00859 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56582.5 -6.9071 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56583.6 -6.90725 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56679.2 -6.91888 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56421.5 -6.8874 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56904.4 -6.94638 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57127.8 -6.97364 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56965.6 -6.9538 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56822.1 -6.93632 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57302 -6.99491 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.2 -6.90362 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56421.8 -6.88745 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56645.4 -6.91475 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57398.8 -7.00675 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57237.3 -6.98696 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56689 -6.92007 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56011.6 -6.83742 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56467.7 -6.89303 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55922.3 -6.8265 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56957.2 -6.95281 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56586.5 -6.90758 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62384.5 7.61517 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62210.4 7.59389 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62273.5 7.60161 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62019.1 7.5706 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61476.5 7.50432 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61597 7.51908 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62319.3 7.60717 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61416.3 7.49697 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61327.1 7.48611 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61486.5 7.50558 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61673.4 7.52832 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61732.6 7.53556 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61963.2 7.56376 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61418.2 7.49719 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61209 7.47165 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61987.6 7.56667 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62554.4 7.63592 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61756 7.53848 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62264.1 7.60048 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61953.7 7.56258 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62913.2 7.67967 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62120.9 7.583 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62709 7.65477 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62390 7.61587 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62229.7 7.59629 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61997.7 7.56794 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-62036.5 7.57262 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61752 7.53798 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61655.6 7.52623 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62767.5 7.66194 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61803 7.54422 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62761.8 7.66122 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58303.5 7.11703 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58372.5 7.12549 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58359.9 7.12397 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58262.2 7.11204 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58041 7.08509 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58261 7.11167 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58055.7 7.0867 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58647.4 7.15904 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58203.9 7.10488 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58893.9 7.18895 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58051.5 7.08632 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58539.4 7.14586 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58554.4 7.14758 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59335.9 7.24309 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58725.8 7.16875 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58465.7 7.13677 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.8 7.06394 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58529.8 7.14462 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-57972.8 7.07665 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57725.1 7.04637 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57946.6 7.07339 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57919.5 7.07013 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57971 7.07643 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57812.9 7.05708 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58059.5 7.08722 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57860.9 7.06295 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58481.2 7.13869 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57673.5 7.04005 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57733.9 7.04747 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58243 7.10961 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.2 7.09391 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58246.7 7.11007 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61009.3 7.44733 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61630.7 7.52317 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61471.8 7.50372 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61716.9 7.53361 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61893.5 7.55524 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.6 7.48633 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61623.4 7.52221 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61911.8 7.55752 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61279.1 7.48026 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62438.1 7.62175 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61937.8 7.56062 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62078.7 7.57786 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61496.4 7.50682 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61721.2 7.53417 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61321.1 7.48534 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61930.9 7.55971 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63425.9 7.7423 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63726 7.77898 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.8 7.83822 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63931 7.80396 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64114.7 7.8264 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63881.4 7.7979 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64089.1 7.82321 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64226 7.83998 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64162.8 7.83225 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64227.3 7.84014 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63324.3 7.72992 0.00 !Mu1ChX91ERaw[C.o2At2Ch11]
+-63377.9 7.73646 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64592.4 7.88475 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64051.2 7.81864 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63785.3 7.78625 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63425.1 7.74221 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56277.1 6.86963 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56696.4 6.92087 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56524.2 6.89973 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56421.9 6.88734 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56516.9 6.89896 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-56987.1 6.95627 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57341.9 6.99957 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56590.4 6.90785 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56842.5 6.93859 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57029.9 6.96151 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57840.1 7.06034 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57754.1 7.04987 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57718.4 7.04556 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57495 7.01832 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57673.7 7.0401 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-58035.2 7.08421 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57254.3 6.98888 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57309.6 6.99565 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56813.7 6.93513 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57684.3 7.04141 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57273.6 6.99128 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57263.3 6.99002 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56331.2 6.87626 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58331 7.12035 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57448.3 7.0126 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57763.7 7.05109 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57724.2 7.04628 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57458.3 7.01385 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57586.5 7.02947 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57671.5 7.03982 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57076.6 6.9672 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57818.9 7.05784 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59628.2 -7.27891 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60484.2 -7.3834 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59719.3 -7.29006 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59358 -7.24601 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60209.4 -7.34991 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60023.9 -7.32724 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59427.4 -7.25442 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59479.8 -7.26081 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.6 -7.25995 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59661.5 -7.28303 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59523 -7.2661 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59520.7 -7.26582 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60207.7 -7.3497 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59281.6 -7.23662 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59499.5 -7.26329 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59822.2 -7.30262 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62231 -7.59672 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62517.6 -7.63166 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62462.5 -7.62493 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62047 -7.57417 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62207.3 -7.59375 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62362.9 -7.61277 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62017.5 -7.57064 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61713.9 -7.53355 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61449.1 -7.50123 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62086.1 -7.57898 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62077.7 -7.57796 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62287.6 -7.60362 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62027.9 -7.5719 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61668.6 -7.52799 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61804.8 -7.54468 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115.7 -6.85022 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56255.7 -6.86728 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55634.9 -6.79153 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55640.9 -6.79227 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55384.3 -6.76092 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56420.4 -6.88745 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55380.9 -6.76051 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55934.8 -6.82817 0.00 !Mu1ChY40ERaw[C.o3At3Ch8]
+56036.5 -6.84053 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56149.2 -6.85434 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55509.9 -6.77625 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56637.3 -6.9139 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55637.9 -6.79188 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55730.3 -6.80315 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55751.6 -6.80582 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55760.9 -6.80693 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.7 -6.9819 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56616.7 -6.91132 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56565.1 -6.90504 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56007.5 -6.83694 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56838.9 -6.93846 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56277 -6.86982 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56475.8 -6.89415 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56394.9 -6.88425 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57286.1 -6.99307 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57107.7 -6.97128 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56704.7 -6.92209 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57329.2 -6.99832 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57398.8 -7.00677 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57025.8 -6.96125 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56179.4 -6.85794 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57294.5 -6.99407 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61036 -7.45079 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61615.2 -7.52147 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61327.7 -7.48646 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61616.9 -7.52169 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61289.5 -7.48175 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60072.3 -7.33313 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60461.8 -7.38072 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61147.5 -7.46439 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60324.6 -7.36394 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61243.3 -7.47609 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60892.2 -7.43321 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60362.6 -7.36861 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60563.4 -7.39312 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60969.5 -7.44272 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60632 -7.40146 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61354.5 -7.48966 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61129 -7.46218 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61142.4 -7.46376 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61098.2 -7.45836 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60505 -7.38602 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60475.6 -7.38236 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61198.3 -7.47058 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60653.8 -7.40421 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60610.3 -7.39887 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61084.6 -7.45673 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61281.6 -7.48082 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60759.5 -7.41709 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60908.7 -7.43532 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60520.1 -7.38782 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61330.5 -7.48678 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61609.9 -7.52084 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60752.2 -7.41622 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55866.2 -6.81972 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55510.1 -6.77629 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55739.1 -6.80422 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55602.7 -6.78757 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55779.5 -6.80916 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55452.6 -6.76931 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55433.8 -6.76695 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56175.8 -6.85753 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55295 -6.75003 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55267.6 -6.74664 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55913.4 -6.82548 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55219 -6.74076 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55914.7 -6.82563 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56088.3 -6.84683 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56128.7 -6.85177 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.7 -6.9068 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54791.9 -6.68861 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55573.5 -6.78397 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55177.3 -6.73564 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.9 -6.722 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55271.1 -6.74706 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55426.4 -6.76607 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55308.9 -6.7517 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55560.5 -6.78242 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55828.4 -6.8151 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55461.9 -6.77042 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.4 -6.69404 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55154.2 -6.73277 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55218.5 -6.74067 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55198.9 -6.73821 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55347.2 -6.75638 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56270.5 -6.86904 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62771.8 7.66248 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62536.2 7.63367 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62923.2 7.68092 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62099.2 7.5803 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62071.6 7.577 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62762.5 7.66131 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62536.6 7.63372 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62863.4 7.6736 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62977.6 7.68755 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62169.2 7.58889 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62486.2 7.62758 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62494 7.62855 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62591.4 7.6404 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62596.5 7.64104 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62693.3 7.65283 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63431.9 7.74304 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62275.5 7.60186 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61847 7.54956 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61648.9 7.52542 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61472.2 7.5038 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61487.7 7.50573 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62323.6 7.60772 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62160.6 7.58783 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61801.5 7.54404 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61589.4 7.51813 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61837.9 7.54843 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61997.2 7.56788 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61886.9 7.55441 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61669.6 7.52787 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61317.6 7.48493 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62385.4 7.6153 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61544.8 7.51271 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59005.1 7.20263 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58125.4 7.0952 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58621 7.15577 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58420.8 7.13128 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58182.1 7.10215 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58179.5 7.10183 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58382.7 7.12665 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57951.6 7.074 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57619.4 7.03346 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58602.8 7.15349 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58763.6 7.17317 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58295.3 7.11601 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58611.5 7.15458 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58569.5 7.14945 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58368.6 7.12489 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58524.7 7.144 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57829.7 7.05919 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57177.7 6.97958 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58151 7.0984 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57925 7.07083 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57600.2 7.03119 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57219.8 6.9847 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57855.4 7.06228 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57682.2 7.04116 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57912.6 7.06929 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57598.9 7.03102 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57919.6 7.07016 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.5 6.9577 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57498.2 7.01871 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56729.1 6.92483 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57500.6 7.01901 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57910.6 7.06904 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63311 7.72824 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64991.8 7.93347 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-63994.5 7.8117 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63750.3 7.78186 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64408.5 7.86228 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63629 7.76702 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63438.8 7.74388 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63358.3 7.73399 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63144.6 7.70793 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63812.1 7.7894 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63662.4 7.77117 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63876.9 7.79733 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63771.1 7.78444 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63652.1 7.7699 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63600.3 7.76358 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63256.4 7.72158 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63333.7 7.73107 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63150 7.70859 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63204.5 7.71524 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63982.1 7.81015 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63771.3 7.78446 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63682.7 7.7737 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63921.1 7.80269 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63090.3 7.7013 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63548.7 7.75733 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63345.7 7.73257 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63537.7 7.75593 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63267.1 7.72292 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64614.3 7.88733 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63737 7.78019 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63627.5 7.76682 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59011.6 7.20345 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58536.3 7.14543 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58294.5 7.11592 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58764.5 7.17328 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59388.2 7.24938 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59353.9 7.24523 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58868.9 7.18606 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59020.4 7.20454 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59051.2 7.20827 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59067.7 7.21031 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58780.6 7.17527 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59011.8 7.20348 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58685.6 7.16369 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60313.6 7.36243 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58947.7 7.1956 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58640.6 7.15819 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59256.4 7.23333 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59391.4 7.24979 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59741.5 7.29254 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59153 7.2207 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59659.3 7.28255 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60043.5 7.32941 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59492.9 7.26218 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59355.9 7.2455 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60079 7.3337 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58759.7 7.17268 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59106.3 7.21501 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59356.4 7.24556 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58905.4 7.19045 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58909 7.19091 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59139.8 7.21905 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59244.4 7.23184 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63180.3 -7.71254 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63958.5 -7.80757 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62563.9 -7.63734 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63393.8 -7.73864 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62965.3 -7.6863 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62695.2 -7.65332 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63071 -7.6992 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62684.7 -7.65205 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62805.2 -7.66674 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63405.9 -7.74008 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+63006 -7.69129 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62613.8 -7.64344 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62135.8 -7.58506 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62797.8 -7.66584 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+63003.9 -7.69104 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63451.5 -7.74566 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61680.4 -7.52939 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60963.7 -7.44202 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60731.3 -7.4136 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62044.4 -7.57386 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.9 -7.46121 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60932 -7.4381 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62091.8 -7.57965 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61042.5 -7.45157 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61080.2 -7.45622 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61569 -7.51583 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61088.9 -7.45724 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61401.8 -7.49545 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61590.8 -7.51854 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61456.7 -7.50214 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61348.2 -7.48891 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61814.6 -7.54586 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56310.4 -6.87387 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56475.6 -6.89413 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56843.7 -6.93897 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56709.9 -6.9227 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+57006.5 -6.95894 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56922.7 -6.94871 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56395.9 -6.88437 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56437.5 -6.88946 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56168.1 -6.85657 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58137.4 -7.09691 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56752.1 -6.92786 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56268.3 -6.86879 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57248.3 -6.98843 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57237.7 -6.98715 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57062.5 -6.96574 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56700.2 -6.92152 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57609.4 -7.03252 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57045.1 -6.96368 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57893.4 -7.06716 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57432.1 -7.01085 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57327.3 -6.9981 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58593.6 -7.15267 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57713.2 -7.04516 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57801 -7.05589 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57750.1 -7.0497 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57564.6 -7.02705 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57513.2 -7.02079 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58298.6 -7.11669 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57883.6 -7.066 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57333.9 -6.99889 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57877.7 -7.06529 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58222.3 -7.10732 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59352.4 -7.24534 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59653 -7.28202 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59466.7 -7.25926 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60421 -7.37573 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59563.3 -7.27104 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59865.2 -7.30789 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59568.1 -7.27161 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59903.1 -7.31254 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59874.2 -7.30895 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59565.9 -7.27135 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59951.4 -7.31844 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60102.6 -7.33689 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59329 -7.24242 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59973.3 -7.32106 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59369.2 -7.24734 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60205.5 -7.34945 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60559.1 -7.39262 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61223.9 -7.47379 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60555.5 -7.39217 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61267.8 -7.47916 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61183.2 -7.46879 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60877.4 -7.43143 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60964.7 -7.44213 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61316.7 -7.48517 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60889.6 -7.43289 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60834.9 -7.42623 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61475.4 -7.50452 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60713.8 -7.41149 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61139.9 -7.46349 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60586.2 -7.39585 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61091.2 -7.45753 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61463 -7.50289 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56883.7 -6.94393 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55958.3 -6.83096 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56259.7 -6.86775 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56620.9 -6.91184 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56390.1 -6.88368 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56741.9 -6.92663 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55881.7 -6.82158 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57242.5 -6.98773 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56047.6 -6.84185 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56706.4 -6.92227 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56618.3 -6.91153 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57516.3 -7.02116 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57052.7 -6.96458 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56701.3 -6.92167 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57023.2 -6.96095 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56155.3 -6.85506 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56480.1 -6.89468 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57291 -6.99365 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56601.1 -6.90948 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56864.7 -6.94167 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56504.8 -6.89772 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56531 -6.90085 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56803.1 -6.93407 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56744.6 -6.92696 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56339.6 -6.87753 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57094.7 -6.96973 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57471.8 -7.01574 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56243.7 -6.86585 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56920.2 -6.94841 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56357.9 -6.87972 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56171.4 -6.85698 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62432 7.62115 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61898.1 7.55599 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62261.8 7.60035 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62377.7 7.61452 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61987.1 7.56678 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61925.3 7.55922 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62100.7 7.58066 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61621.8 7.5222 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61764.3 7.53956 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61918.3 7.55834 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61881.5 7.55388 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62903 7.67858 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61674.1 7.52859 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61812.4 7.54541 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61555.6 7.51408 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62627.4 7.64492 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63656.5 7.77047 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63108 7.70354 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62943.4 7.68346 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62837.7 7.67058 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62676.4 7.65089 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.8 7.70503 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63798 7.78783 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63791 7.78695 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62795 7.6654 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63502.6 7.75172 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63532.1 7.75542 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63309.9 7.72829 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63637.8 7.76831 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63587.2 7.76214 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64531.7 7.87739 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63742.8 7.78111 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59430.3 7.25494 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59220.2 7.22924 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58174.6 7.10163 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58373.6 7.12581 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58848.1 7.18369 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-59012.9 7.20387 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59307.2 7.23977 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58677.9 7.16294 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59283.1 7.23677 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58956.4 7.1969 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-59043.5 7.20751 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59047.9 7.20805 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59414.1 7.25268 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58832.8 7.18171 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59184.6 7.22469 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57410.4 7.00817 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57223.7 6.98537 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56941.7 6.95094 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57306.3 6.99545 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56939.2 6.95063 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57390.5 7.00573 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56638.3 6.91393 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57358.5 7.00183 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57684.4 7.04165 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56591.3 6.9082 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57508 7.02016 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57136.1 6.97475 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56380.4 6.88251 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56917.4 6.9481 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56824.5 6.93679 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56577 6.90664 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64140 7.82956 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63839.3 7.79281 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63564.4 7.75927 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63770.4 7.78438 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63671.6 7.77235 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63272.3 7.72359 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64307 7.84993 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62530.8 7.63314 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62672.9 7.65044 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63019 7.69272 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63152.8 7.70897 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63441 7.74419 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64109.3 7.82574 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62453.5 7.62365 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62622.2 7.64425 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63017.2 7.69251 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62453.4 7.62363 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62780.3 7.66354 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62670.1 7.65009 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62554.7 7.63598 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62062.4 7.57587 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62422.6 7.61994 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62402.7 7.61746 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.8 7.58526 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62351.6 7.61123 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62791 7.66488 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62302.7 7.60527 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62078.1 7.57785 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62829.3 7.66952 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.5 7.6367 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62144 7.5859 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62353.9 7.61152 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56131.1 6.85191 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55920.2 6.82616 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55178.7 6.73562 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55783.6 6.8095 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55958 6.83076 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55940.2 6.82857 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55976 6.83293 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55255.5 6.74498 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55479.7 6.77237 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-56040.3 6.84079 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55791.2 6.81044 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55701.6 6.79948 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56738.3 6.92598 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56293.9 6.87171 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55819.1 6.81378 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55694.2 6.79856 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57554.1 7.02556 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56976.8 6.95514 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57518.4 7.02123 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56980.7 6.95562 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58026.2 7.08323 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57191.1 6.98127 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57432 7.01071 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56290.9 6.87137 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56748.2 6.92722 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57901.7 7.06808 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57512.9 7.02056 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57112.4 6.9717 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57653.3 7.03769 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56762.7 6.92904 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57841.9 7.06073 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56524.8 6.89995 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60194.7 -7.34802 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987.9 -7.20075 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60132.2 -7.34041 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59977.5 -7.32152 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59787.4 -7.2983 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59893.4 -7.31122 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59798.6 -7.29963 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60251.3 -7.3549 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60589.5 -7.39622 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60436.6 -7.37756 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60189.7 -7.3474 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59826.4 -7.3031 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59687.2 -7.28606 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59622.1 -7.27818 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60574.8 -7.39447 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59719.2 -7.29002 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62963.1 -7.68601 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63186.9 -7.71331 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62262.3 -7.60044 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62806 -7.6668 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63246.8 -7.72062 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63550.3 -7.75759 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+63016.8 -7.69256 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62986.6 -7.68882 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63522.2 -7.75424 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63478.7 -7.7489 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62643.1 -7.64692 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63429.9 -7.74292 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62483.7 -7.62745 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62960.7 -7.68572 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63085.3 -7.7009 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62969.4 -7.68675 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84715 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56228.6 -6.86391 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55834.6 -6.81583 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55713 -6.80096 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55757 -6.80633 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56228 -6.86384 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55925.9 -6.82695 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55539.7 -6.77979 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55412.1 -6.76422 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185 -6.85859 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55981.8 -6.83375 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55370.8 -6.75918 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55748.9 -6.80537 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55612.3 -6.78871 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55926.3 -6.82699 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55801.2 -6.81172 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56670.8 -6.9179 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56949.5 -6.9519 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57147.1 -6.97597 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56960.4 -6.95318 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56493.9 -6.89629 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56963.2 -6.95364 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56581.6 -6.90701 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57050.7 -6.96421 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57076.9 -6.96747 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56623.8 -6.91216 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57493.2 -7.01827 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57089.4 -6.96896 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57586.3 -7.02963 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57044.7 -6.96349 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56777.7 -6.93089 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57421.6 -7.00961 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59437.6 -7.25562 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59994 -7.32351 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59523.9 -7.2662 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59337.1 -7.24336 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59498.6 -7.26303 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58818.6 -7.18002 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59332.2 -7.24276 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+60018.7 -7.32659 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60180.5 -7.3463 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59480.7 -7.26089 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59527.7 -7.26664 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59635.1 -7.27972 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59581.2 -7.27315 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59444.7 -7.25647 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59048.4 -7.20811 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59989.5 -7.32298 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62855.4 -7.67285 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62750.4 -7.66003 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62532.7 -7.63346 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62151.3 -7.58691 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.6 -7.57075 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62710.2 -7.65509 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62271.6 -7.60155 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62960 -7.68565 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62677.8 -7.65121 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62626.1 -7.64489 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61878.3 -7.55359 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61999.2 -7.56832 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61924.7 -7.55927 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+61995.6 -7.56788 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61960.5 -7.56357 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61833.6 -7.54812 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56731.4 -6.92523 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56909.9 -6.94702 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56318.3 -6.87484 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55946.5 -6.8294 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56299.8 -6.87252 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56328.7 -6.87609 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55986.5 -6.8343 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55996.3 -6.83546 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55858.1 -6.81861 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56336.4 -6.877 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56504.4 -6.89753 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56280.4 -6.87019 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55801.7 -6.81176 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55903.8 -6.82419 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56672.2 -6.91805 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56668.9 -6.91765 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57102.2 -6.97047 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57033.7 -6.96222 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57102 -6.97059 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+57015.2 -6.95994 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57666.6 -7.03944 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57327.3 -6.99806 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56838.8 -6.9384 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57642.3 -7.0364 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57472.4 -7.01575 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57009.2 -6.95917 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57427.6 -7.01028 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57105.1 -6.97094 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57606 -7.03198 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56852.7 -6.94013 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57287.8 -6.99311 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57526.7 -7.02236 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/EdinburghDSSD/Calibration/calib_raw/calibT0.cal1 b/Projects/EdinburghDSSD/Calibration/calib_raw/calibT0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..99605ef63058dd281004c7ed8c90ec17435b8b21
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_raw/calibT0.cal1
@@ -0,0 +1,1023 @@
+946.164 -0.114176 0.00 !Mu0ChX1TRaw[Co1At1Ch1]
+956.811 -0.115529 0.00 !Mu0ChX2TRaw[Co1At1Ch2]
+957.988 -0.115657 0.00 !Mu0ChX3TRaw[Co1At1Ch3]
+972.139 -0.117409 0.00 !Mu0ChX4TRaw[Co1At1Ch4]
+971.761 -0.117367 0.00 !Mu0ChX5TRaw[Co1At1Ch5]
+971.702 -0.117353 0.00 !Mu0ChX6TRaw[Co1At1Ch6]
+976.911 -0.117969 0.00 !Mu0ChX7TRaw[Co1At1Ch7]
+979.143 -0.118246 0.00 !Mu0ChX8TRaw[Co1At1Ch8]
+977.915 -0.118065 0.00 !Mu0ChX9TRaw[Co1At1Ch9]
+981.976 -0.118546 0.00 !Mu0ChX10TRaw[Co1At1Ch10]
+986.577 -0.119138 0.00 !Mu0ChX11TRaw[Co1At1Ch11]
+986.184 -0.119075 0.00 !Mu0ChX12TRaw[Co1At1Ch12]
+993.563 -0.119996 0.00 !Mu0ChX13TRaw[Co1At1Ch13]
+978.874 -0.118174 0.00 !Mu0ChX14TRaw[Co1At1Ch14]
+989.894 -0.119531 0.00 !Mu0ChX15TRaw[Co1At1Ch15]
+1318.57 -0.118448 0.00 !Mu0ChX16TRaw[Co1At1Ch16]
+955.564 -0.115275 0.00 !Mu0ChX17TRaw[Co1At2Ch1]
+965.774 -0.116527 0.00 !Mu0ChX18TRaw[Co1At2Ch2]
+978.184 -0.118044 0.00 !Mu0ChX19TRaw[Co1At2Ch3]
+978.854 -0.118125 0.00 !Mu0ChX20TRaw[Co1At2Ch4]
+987.988 -0.119233 0.00 !Mu0ChX21TRaw[Co1At2Ch5]
+982.353 -0.118555 0.00 !Mu0ChX22TRaw[Co1At2Ch6]
+992.928 -0.119845 0.00 !Mu0ChX23TRaw[Co1At2Ch7]
+994.329 -0.120005 0.00 !Mu0ChX24TRaw[Co1At2Ch8]
+989.504 -0.119427 0.00 !Mu0ChX25TRaw[Co1At2Ch9]
+1000.62 -0.120777 0.00 !Mu0ChX26TRaw[Co1At2Ch10]
+1002.92 -0.121057 0.00 !Mu0ChX27TRaw[Co1At2Ch11]
+1006.98 -0.121545 0.00 !Mu0ChX28TRaw[Co1At2Ch12]
+1002.57 -0.121021 0.00 !Mu0ChX29TRaw[Co1At2Ch13]
+1001.43 -0.120851 0.00 !Mu0ChX30TRaw[Co1At2Ch14]
+997.945 -0.12045 0.00 !Mu0ChX31TRaw[Co1At2Ch15]
+993.524 -0.119947 0.00 !Mu0ChX32TRaw[Co1At2Ch16]
+872.545 -0.105192 0.00 !Mu0ChX33TRaw[Co1At3Ch1]
+870.474 -0.104955 0.00 !Mu0ChX34TRaw[Co1At3Ch2]
+890.439 -0.107397 0.00 !Mu0ChX35TRaw[Co1At3Ch3]
+879.216 -0.106033 0.00 !Mu0ChX36TRaw[Co1At3Ch4]
+881.009 -0.106227 0.00 !Mu0ChX37TRaw[Co1At3Ch5]
+895.366 -0.108005 0.00 !Mu0ChX38TRaw[Co1At3Ch6]
+897.01 -0.108195 0.00 !Mu0ChX39TRaw[Co1At3Ch7]
+895.47 -0.107979 0.00 !Mu0ChX40TRaw[Co1At3Ch8]
+898.037 -0.108302 0.00 !Mu0ChX41TRaw[Co1At3Ch9]
+898.361 -0.108334 0.00 !Mu0ChX42TRaw[Co1At3Ch10]
+897.507 -0.108243 0.00 !Mu0ChX43TRaw[Co1At3Ch11]
+904.455 -0.109095 0.00 !Mu0ChX44TRaw[Co1At3Ch12]
+899.781 -0.108505 0.00 !Mu0ChX45TRaw[Co1At3Ch13]
+894.363 -0.107877 0.00 !Mu0ChX46TRaw[Co1At3Ch14]
+896.817 -0.108187 0.00 !Mu0ChX47TRaw[Co1At3Ch15]
+930.792 -0.10826 0.00 !Mu0ChX48TRaw[Co1At3Ch16]
+884.648 -0.106556 0.00 !Mu0ChX49TRaw[Co1At4Ch1]
+887.836 -0.106942 0.00 !Mu0ChX50TRaw[Co1At4Ch2]
+893.25 -0.107622 0.00 !Mu0ChX51TRaw[Co1At4Ch3]
+901.75 -0.109464 0.00 !Mu0ChX52TRaw[Co1At4Ch4]
+907.099 -0.109295 0.00 !Mu0ChX53TRaw[Co1At4Ch5]
+909.979 -0.109652 0.00 !Mu0ChX54TRaw[Co1At4Ch6]
+912.526 -0.109955 0.00 !Mu0ChX55TRaw[Co1At4Ch7]
+916.597 -0.110458 0.00 !Mu0ChX56TRaw[Co1At4Ch8]
+925.24 -0.111499 0.00 !Mu0ChX57TRaw[Co1At4Ch9]
+916.715 -0.110456 0.00 !Mu0ChX58TRaw[Co1At4Ch10]
+924.251 -0.111378 0.00 !Mu0ChX59TRaw[Co1At4Ch11]
+928.786 -0.111943 0.00 !Mu0ChX60TRaw[Co1At4Ch12]
+935.878 -0.112807 0.00 !Mu0ChX61TRaw[Co1At4Ch13]
+938.667 -0.11314 0.00 !Mu0ChX62TRaw[Co1At4Ch14]
+940.288 -0.113338 0.00 !Mu0ChX63TRaw[Co1At4Ch15]
+929.111 -0.111982 0.00 !Mu0ChX64TRaw[Co1At4Ch16]
+957.51 -0.115846 0.00 !Mu0ChX65TRaw[Co2At1Ch1]
+962.646 -0.11646 0.00 !Mu0ChX66TRaw[Co2At1Ch2]
+972.344 -0.117644 0.00 !Mu0ChX67TRaw[Co2At1Ch3]
+973.464 -0.117791 0.00 !Mu0ChX68TRaw[Co2At1Ch4]
+976.904 -0.118174 0.00 !Mu0ChX69TRaw[Co2At1Ch5]
+989.493 -0.119717 0.00 !Mu0ChX70TRaw[Co2At1Ch6]
+993.895 -0.120284 0.00 !Mu0ChX71TRaw[Co2At1Ch7]
+995.117 -0.120426 0.00 !Mu0ChX72TRaw[Co2At1Ch8]
+1006.3 -0.121763 0.00 !Mu0ChX73TRaw[Co2At1Ch9]
+987.403 -0.119445 0.00 !Mu0ChX74TRaw[Co2At1Ch10]
+1004.54 -0.121535 0.00 !Mu0ChX75TRaw[Co2At1Ch11]
+995.118 -0.120381 0.00 !Mu0ChX76TRaw[Co2At1Ch12]
+1002.39 -0.121262 0.00 !Mu0ChX77TRaw[Co2At1Ch13]
+1006.49 -0.121766 0.00 !Mu0ChX78TRaw[Co2At1Ch14]
+997.059 -0.120615 0.00 !Mu0ChX79TRaw[Co2At1Ch15]
+1377.74 -0.120952 0.00 !Mu0ChX80TRaw[Co2At1Ch16]
+923.114 -0.111515 0.00 !Mu0ChX81TRaw[Co2At2Ch1]
+932.866 -0.112746 0.00 !Mu0ChX82TRaw[Co2At2Ch2]
+924.928 -0.111774 0.00 !Mu0ChX83TRaw[Co2At2Ch3]
+937.265 -0.113281 0.00 !Mu0ChX84TRaw[Co2At2Ch4]
+930.752 -0.112468 0.00 !Mu0ChX85TRaw[Co2At2Ch5]
+941.628 -0.113819 0.00 !Mu0ChX86TRaw[Co2At2Ch6]
+949.998 -0.114818 0.00 !Mu0ChX87TRaw[Co2At2Ch7]
+943.027 -0.113978 0.00 !Mu0ChX88TRaw[Co2At2Ch8]
+949.721 -0.114813 0.00 !Mu0ChX89TRaw[Co2At2Ch9]
+957.242 -0.115728 0.00 !Mu0ChX90TRaw[Co2At2Ch10]
+964.815 -0.11664 0.00 !Mu0ChX91TRaw[Co2At2Ch11]
+961.466 -0.11625 0.00 !Mu0ChX92TRaw[Co2At2Ch12]
+961.749 -0.116299 0.00 !Mu0ChX93TRaw[Co2At2Ch13]
+960.655 -0.116152 0.00 !Mu0ChX94TRaw[Co2At2Ch14]
+974.674 -0.117868 0.00 !Mu0ChX95TRaw[Co2At2Ch15]
+992.705 -0.116744 0.00 !Mu0ChX96TRaw[Co2At2Ch16]
+868.269 -0.105013 0.00 !Mu0ChX97TRaw[Co2At3Ch1]
+877.648 -0.106169 0.00 !Mu0ChX98TRaw[Co2At3Ch2]
+878.241 -0.106212 0.00 !Mu0ChX99TRaw[Co2At3Ch3]
+883.994 -0.106905 0.00 !Mu0ChX100TRaw[Co2At3Ch4]
+893.321 -0.108043 0.00 !Mu0ChX101TRaw[Co2At3Ch5]
+900.56 -0.108935 0.00 !Mu0ChX102TRaw[Co2At3Ch6]
+896.766 -0.108442 0.00 !Mu0ChX103TRaw[Co2At3Ch7]
+894.903 -0.108194 0.00 !Mu0ChX104TRaw[Co2At3Ch8]
+904.239 -0.109336 0.00 !Mu0ChX105TRaw[Co2At3Ch9]
+902.018 -0.109053 0.00 !Mu0ChX106TRaw[Co2At3Ch10]
+907.673 -0.109771 0.00 !Mu0ChX107TRaw[Co2At3Ch11]
+904.96 -0.109449 0.00 !Mu0ChX108TRaw[Co2At3Ch12]
+902.795 -0.109128 0.00 !Mu0ChX109TRaw[Co2At3Ch13]
+906.335 -0.109641 0.00 !Mu0ChX110TRaw[Co2At3Ch14]
+903.029 -0.109177 0.00 !Mu0ChX111TRaw[Co2At3Ch15]
+912.908 -0.109478 0.00 !Mu0ChX112TRaw[Co2At3Ch16]
+888.694 -0.107364 0.00 !Mu0ChX113TRaw[Co2At4Ch1]
+891.736 -0.107748 0.00 !Mu0ChX114TRaw[Co2At4Ch2]
+891.957 -0.107782 0.00 !Mu0ChX115TRaw[Co2At4Ch3]
+901.87 -0.109007 0.00 !Mu0ChX116TRaw[Co2At4Ch4]
+905.48 -0.109423 0.00 !Mu0ChX117TRaw[Co2At4Ch5]
+899.196 -0.108648 0.00 !Mu0ChX118TRaw[Co2At4Ch6]
+913.782 -0.110413 0.00 !Mu0ChX119TRaw[Co2At4Ch7]
+914.779 -0.110579 0.00 !Mu0ChX120TRaw[Co2At4Ch8]
+909.004 -0.109898 0.00 !Mu0ChX121TRaw[Co2At4Ch9]
+914.282 -0.1105 0.00 !Mu0ChX122TRaw[Co2At4Ch10]
+922.657 -0.111529 0.00 !Mu0ChX123TRaw[Co2At4Ch11]
+914.822 -0.110604 0.00 !Mu0ChX124TRaw[Co2At4Ch12]
+917.977 -0.110972 0.00 !Mu0ChX125TRaw[Co2At4Ch13]
+919.687 -0.11118 0.00 !Mu0ChX126TRaw[Co2At4Ch14]
+914.922 -0.110613 0.00 !Mu0ChX127TRaw[Co2At4Ch15]
+925.329 -0.111151 0.00 !Mu0ChX128TRaw[Co2At4Ch16]
+942.169 -0.114033 0.00 !Mu0ChY2TRaw[Co3At1Ch2]
+941.094 -0.113921 0.00 !Mu0ChY3TRaw[Co3At1Ch3]
+959.045 -0.116104 0.00 !Mu0ChY4TRaw[Co3At1Ch4]
+954.629 -0.115563 0.00 !Mu0ChY5TRaw[Co3At1Ch5]
+970.443 -0.117481 0.00 !Mu0ChY6TRaw[Co3At1Ch6]
+969.234 -0.117339 0.00 !Mu0ChY7TRaw[Co3At1Ch7]
+966.53 -0.117018 0.00 !Mu0ChY8TRaw[Co3At1Ch8]
+973.409 -0.117842 0.00 !Mu0ChY9TRaw[Co3At1Ch9]
+968.923 -0.117316 0.00 !Mu0ChY10TRaw[Co3At1Ch10]
+971.661 -0.117632 0.00 !Mu0ChY11TRaw[Co3At1Ch11]
+977.841 -0.118398 0.00 !Mu0ChY12TRaw[Co3At1Ch12]
+975.821 -0.11814 0.00 !Mu0ChY13TRaw[Co3At1Ch13]
+971.638 -0.117633 0.00 !Mu0ChY14TRaw[Co3At1Ch14]
+974.225 -0.117944 0.00 !Mu0ChY15TRaw[Co3At1Ch15]
+980.805 -0.118761 0.00 !Mu0ChY16TRaw[Co3At1Ch16]
+935.973 -0.113175 0.00 !Mu0ChY17TRaw[Co3At2Ch1]
+944.972 -0.114309 0.00 !Mu0ChY18TRaw[Co3At2Ch2]
+953.592 -0.115351 0.00 !Mu0ChY19TRaw[Co3At2Ch3]
+945.492 -0.11436 0.00 !Mu0ChY20TRaw[Co3At2Ch4]
+948.066 -0.114686 0.00 !Mu0ChY21TRaw[Co3At2Ch5]
+951.558 -0.115103 0.00 !Mu0ChY22TRaw[Co3At2Ch6]
+957.545 -0.115832 0.00 !Mu0ChY23TRaw[Co3At2Ch7]
+957.576 -0.115841 0.00 !Mu0ChY24TRaw[Co3At2Ch8]
+962.251 -0.116398 0.00 !Mu0ChY25TRaw[Co3At2Ch9]
+960.479 -0.116195 0.00 !Mu0ChY26TRaw[Co3At2Ch10]
+957.007 -0.115516 0.00 !Mu0ChY27TRaw[Co3At2Ch11]
+971.646 -0.117562 0.00 !Mu0ChY28TRaw[Co3At2Ch12]
+974.064 -0.117834 0.00 !Mu0ChY29TRaw[Co3At2Ch13]
+968.974 -0.11722 0.00 !Mu0ChY30TRaw[Co3At2Ch14]
+971.944 -0.11759 0.00 !Mu0ChY31TRaw[Co3At2Ch15]
+966.713 -0.116928 0.00 !Mu0ChY32TRaw[Co3At2Ch16]
+869.43 -0.105131 0.00 !Mu0ChY33TRaw[Co3At3Ch1]
+868.989 -0.105113 0.00 !Mu0ChY34TRaw[Co3At3Ch2]
+886.133 -0.107174 0.00 !Mu0ChY35TRaw[Co3At3Ch3]
+876.002 -0.105955 0.00 !Mu0ChY36TRaw[Co3At3Ch4]
+887.653 -0.107363 0.00 !Mu0ChY37TRaw[Co3At3Ch5]
+886.897 -0.107278 0.00 !Mu0ChY38TRaw[Co3At3Ch6]
+887.559 -0.107347 0.00 !Mu0ChY39TRaw[Co3At3Ch7]
+905.525 -0.109567 0.00 !Mu0ChY40TRaw[Co3At3Ch8]
+903.288 -0.109268 0.00 !Mu0ChY41TRaw[Co3At3Ch9]
+901.488 -0.109045 0.00 !Mu0ChY42TRaw[Co3At3Ch10]
+900.453 -0.108924 0.00 !Mu0ChY43TRaw[Co3At3Ch11]
+911.154 -0.110196 0.00 !Mu0ChY44TRaw[Co3At3Ch12]
+908.4 -0.109895 0.00 !Mu0ChY45TRaw[Co3At3Ch13]
+903.164 -0.10924 0.00 !Mu0ChY46TRaw[Co3At3Ch14]
+913.419 -0.110513 0.00 !Mu0ChY47TRaw[Co3At3Ch15]
+901.371 -0.109056 0.00 !Mu0ChY48TRaw[Co3At3Ch16]
+855.809 -0.103507 0.00 !Mu0ChY49TRaw[Co3At4Ch1]
+866.963 -0.104888 0.00 !Mu0ChY50TRaw[Co3At4Ch2]
+862.301 -0.104347 0.00 !Mu0ChY51TRaw[Co3At4Ch3]
+879.214 -0.106391 0.00 !Mu0ChY52TRaw[Co3At4Ch4]
+881.851 -0.106718 0.00 !Mu0ChY53TRaw[Co3At4Ch5]
+883.115 -0.106878 0.00 !Mu0ChY54TRaw[Co3At4Ch6]
+879.659 -0.106441 0.00 !Mu0ChY55TRaw[Co3At4Ch7]
+887.765 -0.107426 0.00 !Mu0ChY56TRaw[Co3At4Ch8]
+889.179 -0.107608 0.00 !Mu0ChY57TRaw[Co3At4Ch9]
+893.434 -0.108136 0.00 !Mu0ChY58TRaw[Co3At4Ch10]
+900.612 -0.109012 0.00 !Mu0ChY59TRaw[Co3At4Ch11]
+899.41 -0.108611 0.00 !Mu0ChY60TRaw[Co3At4Ch12]
+898.225 -0.108719 0.00 !Mu0ChY61TRaw[Co3At4Ch13]
+905.378 -0.109581 0.00 !Mu0ChY62TRaw[Co3At4Ch14]
+899.576 -0.108895 0.00 !Mu0ChY63TRaw[Co3At4Ch15]
+904.856 -0.109543 0.00 !Mu0ChY64TRaw[Co3At4Ch16]
+964.166 -0.116469 0.00 !Mu0ChY65TRaw[Co4At1Ch1]
+970.821 -0.117302 0.00 !Mu0ChY66TRaw[Co4At1Ch2]
+976.54 -0.118012 0.00 !Mu0ChY67TRaw[Co4At1Ch3]
+976.814 -0.118028 0.00 !Mu0ChY68TRaw[Co4At1Ch4]
+979.621 -0.118378 0.00 !Mu0ChY69TRaw[Co4At1Ch5]
+983.271 -0.118825 0.00 !Mu0ChY70TRaw[Co4At1Ch6]
+982.977 -0.118781 0.00 !Mu0ChY71TRaw[Co4At1Ch7]
+986.021 -0.119156 0.00 !Mu0ChY72TRaw[Co4At1Ch8]
+989.88 -0.119628 0.00 !Mu0ChY73TRaw[Co4At1Ch9]
+981.368 -0.118591 0.00 !Mu0ChY74TRaw[Co4At1Ch10]
+990.1 -0.119656 0.00 !Mu0ChY75TRaw[Co4At1Ch11]
+1000.52 -0.120924 0.00 !Mu0ChY76TRaw[Co4At1Ch12]
+995.667 -0.120327 0.00 !Mu0ChY77TRaw[Co4At1Ch13]
+997.754 -0.120579 0.00 !Mu0ChY78TRaw[Co4At1Ch14]
+994.951 -0.120247 0.00 !Mu0ChY79TRaw[Co4At1Ch15]
+1001.99 -0.121097 0.00 !Mu0ChY80TRaw[Co4At1Ch16]
+970.583 -0.117145 0.00 !Mu0ChY81TRaw[Co4At2Ch1]
+986.462 -0.119118 0.00 !Mu0ChY82TRaw[Co4At2Ch2]
+981.625 -0.118534 0.00 !Mu0ChY83TRaw[Co4At2Ch3]
+996.206 -0.12031 0.00 !Mu0ChY84TRaw[Co4At2Ch4]
+1000.06 -0.120777 0.00 !Mu0ChY85TRaw[Co4At2Ch5]
+1002.53 -0.121085 0.00 !Mu0ChY86TRaw[Co4At2Ch6]
+998.357 -0.120569 0.00 !Mu0ChY87TRaw[Co4At2Ch7]
+1008.76 -0.121839 0.00 !Mu0ChY88TRaw[Co4At2Ch8]
+1004.65 -0.121339 0.00 !Mu0ChY89TRaw[Co4At2Ch9]
+1015 -0.122592 0.00 !Mu0ChY90TRaw[Co4At2Ch10]
+1025.62 -0.123897 0.00 !Mu0ChY91TRaw[Co4At2Ch11]
+1025.41 -0.123866 0.00 !Mu0ChY92TRaw[Co4At2Ch12]
+1020.27 -0.123256 0.00 !Mu0ChY93TRaw[Co4At2Ch13]
+1024.71 -0.123786 0.00 !Mu0ChY94TRaw[Co4At2Ch14]
+1021.51 -0.123408 0.00 !Mu0ChY95TRaw[Co4At2Ch15]
+1016.94 -0.122879 0.00 !Mu0ChY96TRaw[Co4At2Ch16]
+882.97 -0.106544 0.00 !Mu0ChY97TRaw[Co4At3Ch1]
+879.326 -0.106139 0.00 !Mu0ChY98TRaw[Co4At3Ch2]
+878.449 -0.106028 0.00 !Mu0ChY99TRaw[Co4At3Ch3]
+894.979 -0.108041 0.00 !Mu0ChY100TRaw[Co4At3Ch4]
+892.203 -0.107707 0.00 !Mu0ChY101TRaw[Co4At3Ch5]
+891.015 -0.10757 0.00 !Mu0ChY102TRaw[Co4At3Ch6]
+895.424 -0.108105 0.00 !Mu0ChY103TRaw[Co4At3Ch7]
+907.578 -0.10959 0.00 !Mu0ChY104TRaw[Co4At3Ch8]
+902.147 -0.108916 0.00 !Mu0ChY105TRaw[Co4At3Ch9]
+915.536 -0.110544 0.00 !Mu0ChY106TRaw[Co4At3Ch10]
+910.897 -0.109981 0.00 !Mu0ChY107TRaw[Co4At3Ch11]
+915.092 -0.11051 0.00 !Mu0ChY108TRaw[Co4At3Ch12]
+914.664 -0.110421 0.00 !Mu0ChY109TRaw[Co4At3Ch13]
+910.113 -0.109894 0.00 !Mu0ChY110TRaw[Co4At3Ch14]
+915.675 -0.110572 0.00 !Mu0ChY111TRaw[Co4At3Ch15]
+917.59 -0.110803 0.00 !Mu0ChY112TRaw[Co4At3Ch16]
+892.441 -0.107535 0.00 !Mu0ChY113TRaw[Co4At4Ch1]
+899.913 -0.108466 0.00 !Mu0ChY114TRaw[Co4At4Ch2]
+899.438 -0.108438 0.00 !Mu0ChY115TRaw[Co4At4Ch3]
+905.439 -0.109158 0.00 !Mu0ChY116TRaw[Co4At4Ch4]
+917.108 -0.110566 0.00 !Mu0ChY117TRaw[Co4At4Ch5]
+910.331 -0.109757 0.00 !Mu0ChY118TRaw[Co4At4Ch6]
+930.135 -0.112167 0.00 !Mu0ChY119TRaw[Co4At4Ch7]
+921.847 -0.111146 0.00 !Mu0ChY120TRaw[Co4At4Ch8]
+932.043 -0.112407 0.00 !Mu0ChY121TRaw[Co4At4Ch9]
+931.497 -0.112337 0.00 !Mu0ChY122TRaw[Co4At4Ch10]
+933.275 -0.112539 0.00 !Mu0ChY123TRaw[Co4At4Ch11]
+936.749 -0.112978 0.00 !Mu0ChY124TRaw[Co4At4Ch12]
+931.392 -0.112316 0.00 !Mu0ChY125TRaw[Co4At4Ch13]
+930.352 -0.112192 0.00 !Mu0ChY126TRaw[Co4At4Ch14]
+927.302 -0.111821 0.00 !Mu0ChY127TRaw[Co4At4Ch15]
+930.24 -0.112162 0.00 !Mu0ChY128TRaw[Co4At4Ch16]
+926.786 -0.11232 0.00 !Mu1ChX1TRaw[Co1At1Ch1]
+940.575 -0.114015 0.00 !Mu1ChX2TRaw[Co1At1Ch2]
+943.089 -0.114341 0.00 !Mu1ChX3TRaw[Co1At1Ch3]
+954.304 -0.115712 0.00 !Mu1ChX4TRaw[Co1At1Ch4]
+954.653 -0.115744 0.00 !Mu1ChX5TRaw[Co1At1Ch5]
+956.573 -0.115962 0.00 !Mu1ChX6TRaw[Co1At1Ch6]
+970.061 -0.117589 0.00 !Mu1ChX7TRaw[Co1At1Ch7]
+965.116 -0.116998 0.00 !Mu1ChX8TRaw[Co1At1Ch8]
+969.325 -0.117498 0.00 !Mu1ChX9TRaw[Co1At1Ch9]
+978.231 -0.118577 0.00 !Mu1ChX10TRaw[Co1At1Ch10]
+974.593 -0.118143 0.00 !Mu1ChX11TRaw[Co1At1Ch11]
+974.146 -0.118071 0.00 !Mu1ChX12TRaw[Co1At1Ch12]
+986.191 -0.11954 0.00 !Mu1ChX13TRaw[Co1At1Ch13]
+986.678 -0.119597 0.00 !Mu1ChX14TRaw[Co1At1Ch14]
+983.727 -0.119236 0.00 !Mu1ChX15TRaw[Co1At1Ch15]
+1371.19 -0.119179 0.00 !Mu1ChX16TRaw[Co1At1Ch16]
+922.557 -0.111777 0.00 !Mu1ChX17TRaw[Co1At2Ch1]
+945.525 -0.114612 0.00 !Mu1ChX18TRaw[Co1At2Ch2]
+946.378 -0.114738 0.00 !Mu1ChX19TRaw[Co1At2Ch3]
+943.86 -0.114439 0.00 !Mu1ChX20TRaw[Co1At2Ch4]
+952.199 -0.115464 0.00 !Mu1ChX21TRaw[Co1At2Ch5]
+965.45 -0.117052 0.00 !Mu1ChX22TRaw[Co1At2Ch6]
+954.947 -0.115762 0.00 !Mu1ChX23TRaw[Co1At2Ch7]
+971.26 -0.117739 0.00 !Mu1ChX24TRaw[Co1At2Ch8]
+969.364 -0.117531 0.00 !Mu1ChX25TRaw[Co1At2Ch9]
+972.531 -0.117923 0.00 !Mu1ChX26TRaw[Co1At2Ch10]
+971.171 -0.117737 0.00 !Mu1ChX27TRaw[Co1At2Ch11]
+974.954 -0.11821 0.00 !Mu1ChX28TRaw[Co1At2Ch12]
+978.834 -0.118677 0.00 !Mu1ChX29TRaw[Co1At2Ch13]
+975.807 -0.118324 0.00 !Mu1ChX30TRaw[Co1At2Ch14]
+974.804 -0.118198 0.00 !Mu1ChX31TRaw[Co1At2Ch15]
+984.936 -0.119148 0.00 !Mu1ChX32TRaw[Co1At2Ch16]
+875.904 -0.106165 0.00 !Mu1ChX33TRaw[Co1At3Ch1]
+875.79 -0.10618 0.00 !Mu1ChX34TRaw[Co1At3Ch2]
+891.706 -0.108064 0.00 !Mu1ChX35TRaw[Co1At3Ch3]
+873.845 -0.105941 0.00 !Mu1ChX36TRaw[Co1At3Ch4]
+891.762 -0.108105 0.00 !Mu1ChX37TRaw[Co1At3Ch5]
+897.589 -0.108823 0.00 !Mu1ChX38TRaw[Co1At3Ch6]
+889.745 -0.107861 0.00 !Mu1ChX39TRaw[Co1At3Ch7]
+894.521 -0.10842 0.00 !Mu1ChX40TRaw[Co1At3Ch8]
+897.332 -0.108779 0.00 !Mu1ChX41TRaw[Co1At3Ch9]
+897.319 -0.108754 0.00 !Mu1ChX42TRaw[Co1At3Ch10]
+905.732 -0.109783 0.00 !Mu1ChX43TRaw[Co1At3Ch11]
+897.833 -0.108855 0.00 !Mu1ChX44TRaw[Co1At3Ch12]
+907.458 -0.110019 0.00 !Mu1ChX45TRaw[Co1At3Ch13]
+905.696 -0.109854 0.00 !Mu1ChX46TRaw[Co1At3Ch14]
+903.207 -0.109528 0.00 !Mu1ChX47TRaw[Co1At3Ch15]
+918.195 -0.110055 0.00 !Mu1ChX48TRaw[Co1At3Ch16]
+865.632 -0.104838 0.00 !Mu1ChX49TRaw[Co1At4Ch1]
+871.03 -0.105455 0.00 !Mu1ChX50TRaw[Co1At4Ch2]
+883.706 -0.107015 0.00 !Mu1ChX51TRaw[Co1At4Ch3]
+886.118 -0.107338 0.00 !Mu1ChX52TRaw[Co1At4Ch4]
+888.977 -0.107685 0.00 !Mu1ChX53TRaw[Co1At4Ch5]
+889.176 -0.107699 0.00 !Mu1ChX54TRaw[Co1At4Ch6]
+893.053 -0.10819 0.00 !Mu1ChX55TRaw[Co1At4Ch7]
+898.958 -0.108878 0.00 !Mu1ChX56TRaw[Co1At4Ch8]
+905.343 -0.1097 0.00 !Mu1ChX57TRaw[Co1At4Ch9]
+901.014 -0.10916 0.00 !Mu1ChX58TRaw[Co1At4Ch10]
+909.801 -0.110244 0.00 !Mu1ChX59TRaw[Co1At4Ch11]
+902.356 -0.109308 0.00 !Mu1ChX60TRaw[Co1At4Ch12]
+915.181 -0.110894 0.00 !Mu1ChX61TRaw[Co1At4Ch13]
+906.646 -0.109867 0.00 !Mu1ChX62TRaw[Co1At4Ch14]
+906.177 -0.109791 0.00 !Mu1ChX63TRaw[Co1At4Ch15]
+917.322 -0.110777 0.00 !Mu1ChX64TRaw[Co1At4Ch16]
+947.375 -0.114723 0.00 !Mu1ChX65TRaw[Co2At1Ch1]
+949.155 -0.114949 0.00 !Mu1ChX66TRaw[Co2At1Ch2]
+962.658 -0.116629 0.00 !Mu1ChX67TRaw[Co2At1Ch3]
+962.29 -0.116557 0.00 !Mu1ChX68TRaw[Co2At1Ch4]
+964.501 -0.116827 0.00 !Mu1ChX69TRaw[Co2At1Ch5]
+972.559 -0.117811 0.00 !Mu1ChX70TRaw[Co2At1Ch6]
+972.248 -0.117758 0.00 !Mu1ChX71TRaw[Co2At1Ch7]
+977.48 -0.118392 0.00 !Mu1ChX72TRaw[Co2At1Ch8]
+974.838 -0.118063 0.00 !Mu1ChX73TRaw[Co2At1Ch9]
+989.581 -0.119853 0.00 !Mu1ChX74TRaw[Co2At1Ch10]
+985.59 -0.119377 0.00 !Mu1ChX75TRaw[Co2At1Ch11]
+983.734 -0.119141 0.00 !Mu1ChX76TRaw[Co2At1Ch12]
+990.699 -0.119982 0.00 !Mu1ChX77TRaw[Co2At1Ch13]
+992.465 -0.120199 0.00 !Mu1ChX78TRaw[Co2At1Ch14]
+992.485 -0.1202 0.00 !Mu1ChX79TRaw[Co2At1Ch15]
+1375.52 -0.120722 0.00 !Mu1ChX80TRaw[Co2At1Ch16]
+972.687 -0.117775 0.00 !Mu1ChX81TRaw[Co2At2Ch1]
+974.84 -0.118024 0.00 !Mu1ChX82TRaw[Co2At2Ch2]
+979.911 -0.118652 0.00 !Mu1ChX83TRaw[Co2At2Ch3]
+993.406 -0.120307 0.00 !Mu1ChX84TRaw[Co2At2Ch4]
+992.814 -0.120215 0.00 !Mu1ChX85TRaw[Co2At2Ch5]
+1002.31 -0.121389 0.00 !Mu1ChX86TRaw[Co2At2Ch6]
+1003.74 -0.121554 0.00 !Mu1ChX87TRaw[Co2At2Ch7]
+995.588 -0.12057 0.00 !Mu1ChX88TRaw[Co2At2Ch8]
+1010.12 -0.122345 0.00 !Mu1ChX89TRaw[Co2At2Ch9]
+1012.32 -0.12261 0.00 !Mu1ChX90TRaw[Co2At2Ch10]
+1007.94 -0.122082 0.00 !Mu1ChX91TRaw[Co2At2Ch11]
+1014.03 -0.12282 0.00 !Mu1ChX92TRaw[Co2At2Ch12]
+1013.77 -0.12279 0.00 !Mu1ChX93TRaw[Co2At2Ch13]
+1016.53 -0.123127 0.00 !Mu1ChX94TRaw[Co2At2Ch14]
+1016.3 -0.123096 0.00 !Mu1ChX95TRaw[Co2At2Ch15]
+1004.26 -0.12163 0.00 !Mu1ChX96TRaw[Co2At2Ch16]
+888.673 -0.107613 0.00 !Mu1ChX97TRaw[Co2At3Ch1]
+886.825 -0.107373 0.00 !Mu1ChX98TRaw[Co2At3Ch2]
+890.552 -0.107838 0.00 !Mu1ChX99TRaw[Co2At3Ch3]
+901.931 -0.109224 0.00 !Mu1ChX100TRaw[Co2At3Ch4]
+901.707 -0.1092 0.00 !Mu1ChX101TRaw[Co2At3Ch5]
+906.676 -0.109791 0.00 !Mu1ChX102TRaw[Co2At3Ch6]
+902.249 -0.109268 0.00 !Mu1ChX103TRaw[Co2At3Ch7]
+917.913 -0.111151 0.00 !Mu1ChX104TRaw[Co2At3Ch8]
+919.118 -0.11128 0.00 !Mu1ChX105TRaw[Co2At3Ch9]
+920.502 -0.111467 0.00 !Mu1ChX106TRaw[Co2At3Ch10]
+925.286 -0.112035 0.00 !Mu1ChX107TRaw[Co2At3Ch11]
+920.839 -0.111519 0.00 !Mu1ChX108TRaw[Co2At3Ch12]
+921.752 -0.111616 0.00 !Mu1ChX109TRaw[Co2At3Ch13]
+913.537 -0.110627 0.00 !Mu1ChX110TRaw[Co2At3Ch14]
+916.058 -0.110941 0.00 !Mu1ChX111TRaw[Co2At3Ch15]
+924.322 -0.11176 0.00 !Mu1ChX112TRaw[Co2At3Ch16]
+897.027 -0.108476 0.00 !Mu1ChX113TRaw[Co2At4Ch1]
+897.77 -0.108567 0.00 !Mu1ChX114TRaw[Co2At4Ch2]
+905.06 -0.10946 0.00 !Mu1ChX115TRaw[Co2At4Ch3]
+910.605 -0.110136 0.00 !Mu1ChX116TRaw[Co2At4Ch4]
+925.57 -0.111977 0.00 !Mu1ChX117TRaw[Co2At4Ch5]
+920.161 -0.111304 0.00 !Mu1ChX118TRaw[Co2At4Ch6]
+932.296 -0.112781 0.00 !Mu1ChX119TRaw[Co2At4Ch7]
+914.819 -0.110659 0.00 !Mu1ChX120TRaw[Co2At4Ch8]
+920.284 -0.111325 0.00 !Mu1ChX121TRaw[Co2At4Ch9]
+927.772 -0.112226 0.00 !Mu1ChX122TRaw[Co2At4Ch10]
+928.866 -0.11236 0.00 !Mu1ChX123TRaw[Co2At4Ch11]
+924.041 -0.111775 0.00 !Mu1ChX124TRaw[Co2At4Ch12]
+921.484 -0.111483 0.00 !Mu1ChX125TRaw[Co2At4Ch13]
+927.438 -0.112193 0.00 !Mu1ChX126TRaw[Co2At4Ch14]
+930.757 -0.112614 0.00 !Mu1ChX127TRaw[Co2At4Ch15]
+924.698 -0.111864 0.00 !Mu1ChX128TRaw[Co2At4Ch16]
+930.899 -0.11282 0.00 !Mu1ChY1TRaw[Co3At1Ch1]
+932.297 -0.113022 0.00 !Mu1ChY2TRaw[Co3At1Ch2]
+943.292 -0.114361 0.00 !Mu1ChY3TRaw[Co3At1Ch3]
+947.201 -0.114834 0.00 !Mu1ChY4TRaw[Co3At1Ch4]
+949.524 -0.115122 0.00 !Mu1ChY5TRaw[Co3At1Ch5]
+952.95 -0.115533 0.00 !Mu1ChY6TRaw[Co3At1Ch6]
+956.311 -0.115938 0.00 !Mu1ChY7TRaw[Co3At1Ch7]
+946.369 -0.114726 0.00 !Mu1ChY8TRaw[Co3At1Ch8]
+953.576 -0.11562 0.00 !Mu1ChY9TRaw[Co3At1Ch9]
+964.215 -0.116854 0.00 !Mu1ChY10TRaw[Co3At1Ch10]
+959.98 -0.116368 0.00 !Mu1ChY11TRaw[Co3At1Ch11]
+967.734 -0.117327 0.00 !Mu1ChY12TRaw[Co3At1Ch12]
+967.914 -0.117358 0.00 !Mu1ChY13TRaw[Co3At1Ch13]
+963.677 -0.116827 0.00 !Mu1ChY14TRaw[Co3At1Ch14]
+965.026 -0.116981 0.00 !Mu1ChY15TRaw[Co3At1Ch15]
+962.695 -0.116717 0.00 !Mu1ChY16TRaw[Co3At1Ch16]
+964.683 -0.116883 0.00 !Mu1ChY17TRaw[Co3At2Ch1]
+966.649 -0.117128 0.00 !Mu1ChY18TRaw[Co3At2Ch2]
+971.034 -0.117665 0.00 !Mu1ChY19TRaw[Co3At2Ch3]
+971.558 -0.117743 0.00 !Mu1ChY20TRaw[Co3At2Ch4]
+983.103 -0.119146 0.00 !Mu1ChY21TRaw[Co3At2Ch5]
+979.702 -0.118747 0.00 !Mu1ChY22TRaw[Co3At2Ch6]
+450 -0.119189 0.00 !Mu1ChY23TRaw[Co3At2Ch7]
+989.487 -0.119964 0.00 !Mu1ChY24TRaw[Co3At2Ch8]
+991.153 -0.120158 0.00 !Mu1ChY25TRaw[Co3At2Ch9]
+991.247 -0.120176 0.00 !Mu1ChY26TRaw[Co3At2Ch10]
+995.752 -0.120728 0.00 !Mu1ChY27TRaw[Co3At2Ch11]
+990.621 -0.120113 0.00 !Mu1ChY28TRaw[Co3At2Ch12]
+992.588 -0.120339 0.00 !Mu1ChY29TRaw[Co3At2Ch13]
+983.94 -0.119308 0.00 !Mu1ChY30TRaw[Co3At2Ch14]
+990.472 -0.120108 0.00 !Mu1ChY31TRaw[Co3At2Ch15]
+985.366 -0.119515 0.00 !Mu1ChY32TRaw[Co3At2Ch16]
+879.895 -0.106691 0.00 !Mu1ChY33TRaw[Co3At3Ch1]
+885.732 -0.10745 0.00 !Mu1ChY34TRaw[Co3At3Ch2]
+880.947 -0.106848 0.00 !Mu1ChY35TRaw[Co3At3Ch3]
+890.881 -0.108037 0.00 !Mu1ChY36TRaw[Co3At3Ch4]
+8.50641e+11 -1.03827e+08 0.00 !Mu1ChY37TRaw[Co3At3Ch5]
+901.269 -0.109433 0.00 !Mu1ChY38TRaw[Co3At3Ch6]
+900.483 -0.110242 0.00 !Mu1ChY39TRaw[Co3At3Ch7]
+902.133 -0.10944 0.00 !Mu1ChY40TRaw[Co3At3Ch8]
+890.343 -0.107957 0.00 !Mu1ChY41TRaw[Co3At3Ch9]
+902.898 -0.109521 0.00 !Mu1ChY42TRaw[Co3At3Ch10]
+895.657 -0.108623 0.00 !Mu1ChY43TRaw[Co3At3Ch11]
+904.61 -0.10969 0.00 !Mu1ChY44TRaw[Co3At3Ch12]
+907.072 -0.109989 0.00 !Mu1ChY45TRaw[Co3At3Ch13]
+901.222 -0.109312 0.00 !Mu1ChY46TRaw[Co3At3Ch14]
+905.951 -0.109844 0.00 !Mu1ChY47TRaw[Co3At3Ch15]
+901.159 -0.109257 0.00 !Mu1ChY48TRaw[Co3At3Ch16]
+883.344 -0.10696 0.00 !Mu1ChY49TRaw[Co3At4Ch1]
+882.465 -0.106852 0.00 !Mu1ChY50TRaw[Co3At4Ch2]
+878.872 -0.106436 0.00 !Mu1ChY51TRaw[Co3At4Ch3]
+892.099 -0.108049 0.00 !Mu1ChY52TRaw[Co3At4Ch4]
+897.834 -0.108781 0.00 !Mu1ChY53TRaw[Co3At4Ch5]
+899.02 -0.108923 0.00 !Mu1ChY54TRaw[Co3At4Ch6]
+898.979 -0.108922 0.00 !Mu1ChY55TRaw[Co3At4Ch7]
+899.225 -0.108949 0.00 !Mu1ChY56TRaw[Co3At4Ch8]
+911.018 -0.110395 0.00 !Mu1ChY57TRaw[Co3At4Ch9]
+910.225 -0.110294 0.00 !Mu1ChY58TRaw[Co3At4Ch10]
+905.692 -0.109746 0.00 !Mu1ChY59TRaw[Co3At4Ch11]
+908.504 -0.109802 0.00 !Mu1ChY60TRaw[Co3At4Ch12]
+905.665 -0.109742 0.00 !Mu1ChY61TRaw[Co3At4Ch13]
+913.658 -0.11072 0.00 !Mu1ChY62TRaw[Co3At4Ch14]
+915.004 -0.110879 0.00 !Mu1ChY63TRaw[Co3At4Ch15]
+915.999 -0.111037 0.00 !Mu1ChY64TRaw[Co3At4Ch16]
+945.876 -0.115194 0.00 !Mu1ChY65TRaw[Co4At1Ch1]
+952.653 -0.116053 0.00 !Mu1ChY66TRaw[Co4At1Ch2]
+958.599 -0.116788 0.00 !Mu1ChY67TRaw[Co4At1Ch3]
+962.073 -0.117211 0.00 !Mu1ChY68TRaw[Co4At1Ch4]
+965.512 -0.117617 0.00 !Mu1ChY69TRaw[Co4At1Ch5]
+973.646 -0.118609 0.00 !Mu1ChY70TRaw[Co4At1Ch6]
+969.091 -0.118053 0.00 !Mu1ChY71TRaw[Co4At1Ch7]
+977.205 -0.119038 0.00 !Mu1ChY72TRaw[Co4At1Ch8]
+978.244 -0.119163 0.00 !Mu1ChY73TRaw[Co4At1Ch9]
+981.509 -0.119552 0.00 !Mu1ChY74TRaw[Co4At1Ch10]
+983.33 -0.119777 0.00 !Mu1ChY75TRaw[Co4At1Ch11]
+980.28 -0.119391 0.00 !Mu1ChY76TRaw[Co4At1Ch12]
+987.378 -0.11981 0.00 !Mu1ChY77TRaw[Co4At1Ch13]
+981.221 -0.119505 0.00 !Mu1ChY78TRaw[Co4At1Ch14]
+982.019 -0.119601 0.00 !Mu1ChY79TRaw[Co4At1Ch15]
+986.869 -0.120194 0.00 !Mu1ChY80TRaw[Co4At1Ch16]
+942.041 -0.114646 0.00 !Mu1ChY81TRaw[Co4At2Ch1]
+950.256 -0.115676 0.00 !Mu1ChY82TRaw[Co4At2Ch2]
+949.146 -0.115551 0.00 !Mu1ChY83TRaw[Co4At2Ch3]
+956.132 -0.116392 0.00 !Mu1ChY84TRaw[Co4At2Ch4]
+955.603 -0.116344 0.00 !Mu1ChY85TRaw[Co4At2Ch5]
+965.862 -0.117589 0.00 !Mu1ChY86TRaw[Co4At2Ch6]
+966.696 -0.117699 0.00 !Mu1ChY87TRaw[Co4At2Ch7]
+973.856 -0.118567 0.00 !Mu1ChY88TRaw[Co4At2Ch8]
+974.942 -0.118705 0.00 !Mu1ChY89TRaw[Co4At2Ch9]
+967.58 -0.117807 0.00 !Mu1ChY90TRaw[Co4At2Ch10]
+972.217 -0.118376 0.00 !Mu1ChY91TRaw[Co4At2Ch11]
+980.142 -0.119333 0.00 !Mu1ChY92TRaw[Co4At2Ch12]
+980.758 -0.119429 0.00 !Mu1ChY93TRaw[Co4At2Ch13]
+973.754 -0.118576 0.00 !Mu1ChY94TRaw[Co4At2Ch14]
+977.548 -0.119031 0.00 !Mu1ChY95TRaw[Co4At2Ch15]
+988.795 -0.120471 0.00 !Mu1ChY96TRaw[Co4At2Ch16]
+871.404 -0.106136 0.00 !Mu1ChY97TRaw[Co4At3Ch1]
+870.084 -0.106 0.00 !Mu1ChY98TRaw[Co4At3Ch2]
+874.611 -0.106555 0.00 !Mu1ChY99TRaw[Co4At3Ch3]
+888.655 -0.108263 0.00 !Mu1ChY100TRaw[Co4At3Ch4]
+886.461 -0.10801 0.00 !Mu1ChY101TRaw[Co4At3Ch5]
+878.586 -0.107044 0.00 !Mu1ChY102TRaw[Co4At3Ch6]
+886.442 -0.108005 0.00 !Mu1ChY103TRaw[Co4At3Ch7]
+889.81 -0.108406 0.00 !Mu1ChY104TRaw[Co4At3Ch8]
+900.116 -0.109653 0.00 !Mu1ChY105TRaw[Co4At3Ch9]
+896.798 -0.10926 0.00 !Mu1ChY106TRaw[Co4At3Ch10]
+900.214 -0.10967 0.00 !Mu1ChY107TRaw[Co4At3Ch11]
+890.896 -0.108536 0.00 !Mu1ChY108TRaw[Co4At3Ch12]
+898.103 -0.109417 0.00 !Mu1ChY109TRaw[Co4At3Ch13]
+905.123 -0.110268 0.00 !Mu1ChY110TRaw[Co4At3Ch14]
+895.488 -0.109108 0.00 !Mu1ChY111TRaw[Co4At3Ch15]
+901.504 -0.109824 0.00 !Mu1ChY112TRaw[Co4At3Ch16]
+857.767 -0.104291 0.00 !Mu1ChY113TRaw[Co4At4Ch1]
+851.391 -0.103549 0.00 !Mu1ChY114TRaw[Co4At4Ch2]
+861.589 -0.104798 0.00 !Mu1ChY115TRaw[Co4At4Ch3]
+856.553 -0.10419 0.00 !Mu1ChY116TRaw[Co4At4Ch4]
+865 -0.105221 0.00 !Mu1ChY117TRaw[Co4At4Ch5]
+874.383 -0.106354 0.00 !Mu1ChY118TRaw[Co4At4Ch6]
+878.744 -0.1069 0.00 !Mu1ChY119TRaw[Co4At4Ch7]
+873.451 -0.106252 0.00 !Mu1ChY120TRaw[Co4At4Ch8]
+890.883 -0.108379 0.00 !Mu1ChY121TRaw[Co4At4Ch9]
+891.802 -0.108492 0.00 !Mu1ChY122TRaw[Co4At4Ch10]
+889.789 -0.108225 0.00 !Mu1ChY123TRaw[Co4At4Ch11]
+888.888 -0.108132 0.00 !Mu1ChY124TRaw[Co4At4Ch12]
+891.161 -0.108412 0.00 !Mu1ChY125TRaw[Co4At4Ch13]
+886.515 -0.10784 0.00 !Mu1ChY126TRaw[Co4At4Ch14]
+883.99 -0.107526 0.00 !Mu1ChY127TRaw[Co4At4Ch15]
+947.91 -0.121191 0.00 !Mu1ChY128TRaw[Co4At4Ch16]
+936.808 -0.113282 0.00 !Mu2ChX1TRaw[Co1At1Ch1]
+933.588 -0.112935 0.00 !Mu2ChX2TRaw[Co1At1Ch2]
+941.562 -0.113903 0.00 !Mu2ChX3TRaw[Co1At1Ch3]
+953.784 -0.11541 0.00 !Mu2ChX4TRaw[Co1At1Ch4]
+949.078 -0.114834 0.00 !Mu2ChX5TRaw[Co1At1Ch5]
+966.718 -0.116968 0.00 !Mu2ChX6TRaw[Co1At1Ch6]
+960.214 -0.116144 0.00 !Mu2ChX7TRaw[Co1At1Ch7]
+964.987 -0.116738 0.00 !Mu2ChX8TRaw[Co1At1Ch8]
+956.88 -0.115736 0.00 !Mu2ChX9TRaw[Co1At1Ch9]
+968.81 -0.117191 0.00 !Mu2ChX10TRaw[Co1At1Ch10]
+971.337 -0.117505 0.00 !Mu2ChX11TRaw[Co1At1Ch11]
+966.1 -0.116868 0.00 !Mu2ChX12TRaw[Co1At1Ch12]
+972.053 -0.117596 0.00 !Mu2ChX13TRaw[Co1At1Ch13]
+966.078 -0.116864 0.00 !Mu2ChX14TRaw[Co1At1Ch14]
+966.541 -0.116934 0.00 !Mu2ChX15TRaw[Co1At1Ch15]
+1367.28 -0.118078 0.00 !Mu2ChX16TRaw[Co1At1Ch16]
+918.709 -0.111042 0.00 !Mu2ChX17TRaw[Co1At2Ch1]
+933.754 -0.1129 0.00 !Mu2ChX18TRaw[Co1At2Ch2]
+936.423 -0.113239 0.00 !Mu2ChX19TRaw[Co1At2Ch3]
+935.388 -0.11311 0.00 !Mu2ChX20TRaw[Co1At2Ch4]
+946.289 -0.114433 0.00 !Mu2ChX21TRaw[Co1At2Ch5]
+941.937 -0.113893 0.00 !Mu2ChX22TRaw[Co1At2Ch6]
+939.701 -0.113604 0.00 !Mu2ChX23TRaw[Co1At2Ch7]
+947.866 -0.114596 0.00 !Mu2ChX24TRaw[Co1At2Ch8]
+939.11 -0.113523 0.00 !Mu2ChX25TRaw[Co1At2Ch9]
+947.312 -0.114529 0.00 !Mu2ChX26TRaw[Co1At2Ch10]
+947.872 -0.114587 0.00 !Mu2ChX27TRaw[Co1At2Ch11]
+944.089 -0.114127 0.00 !Mu2ChX28TRaw[Co1At2Ch12]
+951.541 -0.115049 0.00 !Mu2ChX29TRaw[Co1At2Ch13]
+947.806 -0.114577 0.00 !Mu2ChX30TRaw[Co1At2Ch14]
+949.646 -0.114801 0.00 !Mu2ChX31TRaw[Co1At2Ch15]
+1101.24 -0.114725 0.00 !Mu2ChX32TRaw[Co1At2Ch16]
+883.868 -0.106884 0.00 !Mu2ChX33TRaw[Co1At3Ch1]
+881.306 -0.106588 0.00 !Mu2ChX34TRaw[Co1At3Ch2]
+890.406 -0.10771 0.00 !Mu2ChX35TRaw[Co1At3Ch3]
+887.688 -0.10739 0.00 !Mu2ChX36TRaw[Co1At3Ch4]
+901.335 -0.109058 0.00 !Mu2ChX37TRaw[Co1At3Ch5]
+898.532 -0.108685 0.00 !Mu2ChX38TRaw[Co1At3Ch6]
+906.127 -0.109605 0.00 !Mu2ChX39TRaw[Co1At3Ch7]
+903.029 -0.109211 0.00 !Mu2ChX40TRaw[Co1At3Ch8]
+902.567 -0.109168 0.00 !Mu2ChX41TRaw[Co1At3Ch9]
+906.324 -0.109617 0.00 !Mu2ChX42TRaw[Co1At3Ch10]
+912.663 -0.1104 0.00 !Mu2ChX43TRaw[Co1At3Ch11]
+911.609 -0.110254 0.00 !Mu2ChX44TRaw[Co1At3Ch12]
+919.504 -0.111219 0.00 !Mu2ChX45TRaw[Co1At3Ch13]
+918.075 -0.111043 0.00 !Mu2ChX46TRaw[Co1At3Ch14]
+920.693 -0.111378 0.00 !Mu2ChX47TRaw[Co1At3Ch15]
+1304.08 -0.11089 0.00 !Mu2ChX48TRaw[Co1At3Ch16]
+852.901 -0.102956 0.00 !Mu2ChX49TRaw[Co1At4Ch1]
+862.836 -0.104191 0.00 !Mu2ChX50TRaw[Co1At4Ch2]
+872.425 -0.105362 0.00 !Mu2ChX51TRaw[Co1At4Ch3]
+866.551 -0.10464 0.00 !Mu2ChX52TRaw[Co1At4Ch4]
+875.507 -0.105723 0.00 !Mu2ChX53TRaw[Co1At4Ch5]
+875.722 -0.105755 0.00 !Mu2ChX54TRaw[Co1At4Ch6]
+877.794 -0.105984 0.00 !Mu2ChX55TRaw[Co1At4Ch7]
+885.59 -0.106931 0.00 !Mu2ChX56TRaw[Co1At4Ch8]
+894.535 -0.108024 0.00 !Mu2ChX57TRaw[Co1At4Ch9]
+896.983 -0.108307 0.00 !Mu2ChX58TRaw[Co1At4Ch10]
+888.442 -0.107279 0.00 !Mu2ChX59TRaw[Co1At4Ch11]
+898.855 -0.108543 0.00 !Mu2ChX60TRaw[Co1At4Ch12]
+900.217 -0.108721 0.00 !Mu2ChX61TRaw[Co1At4Ch13]
+899.805 -0.108665 0.00 !Mu2ChX62TRaw[Co1At4Ch14]
+896.358 -0.10824 0.00 !Mu2ChX63TRaw[Co1At4Ch15]
+1286.56 -0.107885 0.00 !Mu2ChX64TRaw[Co1At4Ch16]
+969.588 -0.117533 0.00 !Mu2ChX65TRaw[Co2At1Ch1]
+969.639 -0.117545 0.00 !Mu2ChX66TRaw[Co2At1Ch2]
+981.26 -0.118957 0.00 !Mu2ChX67TRaw[Co2At1Ch3]
+986.207 -0.119584 0.00 !Mu2ChX68TRaw[Co2At1Ch4]
+450 -0.119902 0.00 !Mu2ChX69TRaw[Co2At1Ch5]
+989.899 -0.12002 0.00 !Mu2ChX70TRaw[Co2At1Ch6]
+991.208 -0.120171 0.00 !Mu2ChX71TRaw[Co2At1Ch7]
+996.377 -0.120802 0.00 !Mu2ChX72TRaw[Co2At1Ch8]
+989.619 -0.119977 0.00 !Mu2ChX73TRaw[Co2At1Ch9]
+998.452 -0.12102 0.00 !Mu2ChX74TRaw[Co2At1Ch10]
+994.24 -0.12055 0.00 !Mu2ChX75TRaw[Co2At1Ch11]
+993.976 -0.12048 0.00 !Mu2ChX76TRaw[Co2At1Ch12]
+1003.64 -0.121688 0.00 !Mu2ChX77TRaw[Co2At1Ch13]
+1007.3 -0.122136 0.00 !Mu2ChX78TRaw[Co2At1Ch14]
+1010.11 -0.122472 0.00 !Mu2ChX79TRaw[Co2At1Ch15]
+1318.69 -0.121488 0.00 !Mu2ChX80TRaw[Co2At1Ch16]
+950.946 -0.115148 0.00 !Mu2ChX81TRaw[Co2At2Ch1]
+961.899 -0.116512 0.00 !Mu2ChX82TRaw[Co2At2Ch2]
+963.68 -0.116735 0.00 !Mu2ChX83TRaw[Co2At2Ch3]
+967.2 -0.117158 0.00 !Mu2ChX84TRaw[Co2At2Ch4]
+967.305 -0.117159 0.00 !Mu2ChX85TRaw[Co2At2Ch5]
+968.515 -0.117336 0.00 !Mu2ChX86TRaw[Co2At2Ch6]
+982.177 -0.118997 0.00 !Mu2ChX87TRaw[Co2At2Ch7]
+981.387 -0.118879 0.00 !Mu2ChX88TRaw[Co2At2Ch8]
+991.904 -0.120152 0.00 !Mu2ChX89TRaw[Co2At2Ch9]
+991.623 -0.120143 0.00 !Mu2ChX90TRaw[Co2At2Ch10]
+990.622 -0.120011 0.00 !Mu2ChX91TRaw[Co2At2Ch11]
+980.868 -0.118788 0.00 !Mu2ChX92TRaw[Co2At2Ch12]
+995.536 -0.120614 0.00 !Mu2ChX93TRaw[Co2At2Ch13]
+999.576 -0.12112 0.00 !Mu2ChX94TRaw[Co2At2Ch14]
+1000.5 -0.12123 0.00 !Mu2ChX95TRaw[Co2At2Ch15]
+985.324 -0.119394 0.00 !Mu2ChX96TRaw[Co2At2Ch16]
+898.921 -0.10895 0.00 !Mu2ChX97TRaw[Co2At3Ch1]
+915.715 -0.11099 0.00 !Mu2ChX98TRaw[Co2At3Ch2]
+911.411 -0.110483 0.00 !Mu2ChX99TRaw[Co2At3Ch3]
+911.648 -0.110494 0.00 !Mu2ChX100TRaw[Co2At3Ch4]
+920.871 -0.11163 0.00 !Mu2ChX101TRaw[Co2At3Ch5]
+920.388 -0.111573 0.00 !Mu2ChX102TRaw[Co2At3Ch6]
+918.664 -0.111368 0.00 !Mu2ChX103TRaw[Co2At3Ch7]
+923.174 -0.111888 0.00 !Mu2ChX104TRaw[Co2At3Ch8]
+933.198 -0.113122 0.00 !Mu2ChX105TRaw[Co2At3Ch9]
+930.187 -0.112764 0.00 !Mu2ChX106TRaw[Co2At3Ch10]
+935.147 -0.113373 0.00 !Mu2ChX107TRaw[Co2At3Ch11]
+930.349 -0.112797 0.00 !Mu2ChX108TRaw[Co2At3Ch12]
+933.561 -0.113176 0.00 !Mu2ChX109TRaw[Co2At3Ch13]
+940.135 -0.113973 0.00 !Mu2ChX110TRaw[Co2At3Ch14]
+940.914 -0.114066 0.00 !Mu2ChX111TRaw[Co2At3Ch15]
+940.163 -0.113973 0.00 !Mu2ChX112TRaw[Co2At3Ch16]
+900.272 -0.108961 0.00 !Mu2ChX113TRaw[Co2At4Ch1]
+905.007 -0.109531 0.00 !Mu2ChX114TRaw[Co2At4Ch2]
+912.464 -0.110461 0.00 !Mu2ChX115TRaw[Co2At4Ch3]
+912.22 -0.110414 0.00 !Mu2ChX116TRaw[Co2At4Ch4]
+927.733 -0.112323 0.00 !Mu2ChX117TRaw[Co2At4Ch5]
+930.691 -0.11267 0.00 !Mu2ChX118TRaw[Co2At4Ch6]
+936.077 -0.113333 0.00 !Mu2ChX119TRaw[Co2At4Ch7]
+939.108 -0.113698 0.00 !Mu2ChX120TRaw[Co2At4Ch8]
+938.924 -0.113666 0.00 !Mu2ChX121TRaw[Co2At4Ch9]
+947.571 -0.114745 0.00 !Mu2ChX122TRaw[Co2At4Ch10]
+938.938 -0.113673 0.00 !Mu2ChX123TRaw[Co2At4Ch11]
+945.07 -0.11443 0.00 !Mu2ChX124TRaw[Co2At4Ch12]
+934.733 -0.113174 0.00 !Mu2ChX125TRaw[Co2At4Ch13]
+934.595 -0.113143 0.00 !Mu2ChX126TRaw[Co2At4Ch14]
+943.044 -0.114176 0.00 !Mu2ChX127TRaw[Co2At4Ch15]
+943.184 -0.114186 0.00 !Mu2ChX128TRaw[Co2At4Ch16]
+987.442 -0.119525 0.00 !Mu2ChY1TRaw[Co3At1Ch1]
+990.37 -0.119903 0.00 !Mu2ChY2TRaw[Co3At1Ch2]
+989.136 -0.119776 0.00 !Mu2ChY3TRaw[Co3At1Ch3]
+995.437 -0.120524 0.00 !Mu2ChY4TRaw[Co3At1Ch4]
+1000.77 -0.121165 0.00 !Mu2ChY5TRaw[Co3At1Ch5]
+998.951 -0.120947 0.00 !Mu2ChY6TRaw[Co3At1Ch6]
+1003.75 -0.121526 0.00 !Mu2ChY7TRaw[Co3At1Ch7]
+1010.87 -0.122366 0.00 !Mu2ChY8TRaw[Co3At1Ch8]
+1012.21 -0.122539 0.00 !Mu2ChY9TRaw[Co3At1Ch9]
+1003.9 -0.121307 0.00 !Mu2ChY10TRaw[Co3At1Ch10]
+1010.24 -0.122275 0.00 !Mu2ChY11TRaw[Co3At1Ch11]
+1015.27 -0.122898 0.00 !Mu2ChY12TRaw[Co3At1Ch12]
+1017.2 -0.12312 0.00 !Mu2ChY13TRaw[Co3At1Ch13]
+1022.23 -0.123746 0.00 !Mu2ChY14TRaw[Co3At1Ch14]
+1021.37 -0.123621 0.00 !Mu2ChY15TRaw[Co3At1Ch15]
+1022.68 -0.123744 0.00 !Mu2ChY16TRaw[Co3At1Ch16]
+939.963 -0.113632 0.00 !Mu2ChY17TRaw[Co3At2Ch1]
+939.308 -0.11359 0.00 !Mu2ChY18TRaw[Co3At2Ch2]
+938.897 -0.113546 0.00 !Mu2ChY19TRaw[Co3At2Ch3]
+938.628 -0.113526 0.00 !Mu2ChY20TRaw[Co3At2Ch4]
+953.606 -0.115367 0.00 !Mu2ChY21TRaw[Co3At2Ch5]
+969.437 -0.117305 0.00 !Mu2ChY22TRaw[Co3At2Ch6]
+965.454 -0.11682 0.00 !Mu2ChY23TRaw[Co3At2Ch7]
+960.44 -0.116216 0.00 !Mu2ChY24TRaw[Co3At2Ch8]
+975.99 -0.118134 0.00 !Mu2ChY25TRaw[Co3At2Ch9]
+978.687 -0.118446 0.00 !Mu2ChY26TRaw[Co3At2Ch10]
+976.083 -0.117858 0.00 !Mu2ChY27TRaw[Co3At2Ch11]
+982.568 -0.11895 0.00 !Mu2ChY28TRaw[Co3At2Ch12]
+976.864 -0.118238 0.00 !Mu2ChY29TRaw[Co3At2Ch13]
+978.515 -0.118468 0.00 !Mu2ChY30TRaw[Co3At2Ch14]
+977.409 -0.118337 0.00 !Mu2ChY31TRaw[Co3At2Ch15]
+965.447 -0.116905 0.00 !Mu2ChY32TRaw[Co3At2Ch16]
+870.181 -0.105393 0.00 !Mu2ChY33TRaw[Co3At3Ch1]
+876.858 -0.106206 0.00 !Mu2ChY34TRaw[Co3At3Ch2]
+889.244 -0.107711 0.00 !Mu2ChY35TRaw[Co3At3Ch3]
+890.519 -0.10786 0.00 !Mu2ChY36TRaw[Co3At3Ch4]
+893.817 -0.108297 0.00 !Mu2ChY37TRaw[Co3At3Ch5]
+888.588 -0.107628 0.00 !Mu2ChY38TRaw[Co3At3Ch6]
+904.701 -0.109574 0.00 !Mu2ChY39TRaw[Co3At3Ch7]
+903.479 -0.109401 0.00 !Mu2ChY40TRaw[Co3At3Ch8]
+906.236 -0.109756 0.00 !Mu2ChY41TRaw[Co3At3Ch9]
+914.382 -0.110304 0.00 !Mu2ChY42TRaw[Co3At3Ch10]
+906.598 -0.10979 0.00 !Mu2ChY43TRaw[Co3At3Ch11]
+910.53 -0.110231 0.00 !Mu2ChY44TRaw[Co3At3Ch12]
+912.933 -0.110532 0.00 !Mu2ChY45TRaw[Co3At3Ch13]
+916.041 -0.110907 0.00 !Mu2ChY46TRaw[Co3At3Ch14]
+919.774 -0.111371 0.00 !Mu2ChY47TRaw[Co3At3Ch15]
+915.148 -0.110791 0.00 !Mu2ChY48TRaw[Co3At3Ch16]
+893.19 -0.108016 0.00 !Mu2ChY49TRaw[Co3At4Ch1]
+902.467 -0.109155 0.00 !Mu2ChY50TRaw[Co3At4Ch2]
+899.946 -0.108834 0.00 !Mu2ChY51TRaw[Co3At4Ch3]
+913.407 -0.110471 0.00 !Mu2ChY52TRaw[Co3At4Ch4]
+905.911 -0.109622 0.00 !Mu2ChY53TRaw[Co3At4Ch5]
+914.887 -0.110708 0.00 !Mu2ChY54TRaw[Co3At4Ch6]
+922.021 -0.111116 0.00 !Mu2ChY55TRaw[Co3At4Ch7]
+914.007 -0.11061 0.00 !Mu2ChY56TRaw[Co3At4Ch8]
+926.973 -0.11216 0.00 !Mu2ChY57TRaw[Co3At4Ch9]
+918.182 -0.111079 0.00 !Mu2ChY58TRaw[Co3At4Ch10]
+920.356 -0.111393 0.00 !Mu2ChY59TRaw[Co3At4Ch11]
+924.322 -0.11168 0.00 !Mu2ChY60TRaw[Co3At4Ch12]
+940.509 -0.11386 0.00 !Mu2ChY61TRaw[Co3At4Ch13]
+925.883 -0.112068 0.00 !Mu2ChY62TRaw[Co3At4Ch14]
+921.861 -0.111623 0.00 !Mu2ChY63TRaw[Co3At4Ch15]
+929.763 -0.112593 0.00 !Mu2ChY64TRaw[Co3At4Ch16]
+924.331 -0.111864 0.00 !Mu2ChY65TRaw[Co4At1Ch1]
+943.62 -0.114242 0.00 !Mu2ChY66TRaw[Co4At1Ch2]
+947.992 -0.114763 0.00 !Mu2ChY67TRaw[Co4At1Ch3]
+945.728 -0.114477 0.00 !Mu2ChY68TRaw[Co4At1Ch4]
+972.019 -0.117701 0.00 !Mu2ChY69TRaw[Co4At1Ch5]
+960.071 -0.116242 0.00 !Mu2ChY70TRaw[Co4At1Ch6]
+967.505 -0.117144 0.00 !Mu2ChY71TRaw[Co4At1Ch7]
+964.472 -0.116783 0.00 !Mu2ChY72TRaw[Co4At1Ch8]
+955.96 -0.115747 0.00 !Mu2ChY73TRaw[Co4At1Ch9]
+958.084 -0.115989 0.00 !Mu2ChY74TRaw[Co4At1Ch10]
+964.33 -0.116762 0.00 !Mu2ChY75TRaw[Co4At1Ch11]
+977.202 -0.118324 0.00 !Mu2ChY76TRaw[Co4At1Ch12]
+973.571 -0.117892 0.00 !Mu2ChY77TRaw[Co4At1Ch13]
+976.2 -0.118194 0.00 !Mu2ChY78TRaw[Co4At1Ch14]
+967.051 -0.117092 0.00 !Mu2ChY79TRaw[Co4At1Ch15]
+968.99 -0.117343 0.00 !Mu2ChY80TRaw[Co4At1Ch16]
+944.542 -0.114246 0.00 !Mu2ChY81TRaw[Co4At2Ch1]
+939.064 -0.113582 0.00 !Mu2ChY82TRaw[Co4At2Ch2]
+951.122 -0.115097 0.00 !Mu2ChY83TRaw[Co4At2Ch3]
+946.764 -0.114574 0.00 !Mu2ChY84TRaw[Co4At2Ch4]
+955.625 -0.115653 0.00 !Mu2ChY85TRaw[Co4At2Ch5]
+966 -0.11692 0.00 !Mu2ChY86TRaw[Co4At2Ch6]
+964.199 -0.116695 0.00 !Mu2ChY87TRaw[Co4At2Ch7]
+969.926 -0.117388 0.00 !Mu2ChY88TRaw[Co4At2Ch8]
+972.649 -0.117739 0.00 !Mu2ChY89TRaw[Co4At2Ch9]
+974.635 -0.11797 0.00 !Mu2ChY90TRaw[Co4At2Ch10]
+979.1 -0.118525 0.00 !Mu2ChY91TRaw[Co4At2Ch11]
+969.715 -0.117371 0.00 !Mu2ChY92TRaw[Co4At2Ch12]
+977.475 -0.118331 0.00 !Mu2ChY93TRaw[Co4At2Ch13]
+977.142 -0.118283 0.00 !Mu2ChY94TRaw[Co4At2Ch14]
+984.646 -0.119174 0.00 !Mu2ChY95TRaw[Co4At2Ch15]
+989.259 -0.119806 0.00 !Mu2ChY96TRaw[Co4At2Ch16]
+897.538 -0.108639 0.00 !Mu2ChY97TRaw[Co4At3Ch1]
+893.51 -0.108189 0.00 !Mu2ChY98TRaw[Co4At3Ch2]
+904.052 -0.109474 0.00 !Mu2ChY99TRaw[Co4At3Ch3]
+902.752 -0.109308 0.00 !Mu2ChY100TRaw[Co4At3Ch4]
+916.527 -0.110997 0.00 !Mu2ChY101TRaw[Co4At3Ch5]
+924.175 -0.111938 0.00 !Mu2ChY102TRaw[Co4At3Ch6]
+914.572 -0.110746 0.00 !Mu2ChY103TRaw[Co4At3Ch7]
+930.562 -0.112691 0.00 !Mu2ChY104TRaw[Co4At3Ch8]
+925.104 -0.112025 0.00 !Mu2ChY105TRaw[Co4At3Ch9]
+920.853 -0.111507 0.00 !Mu2ChY106TRaw[Co4At3Ch10]
+922.078 -0.111663 0.00 !Mu2ChY107TRaw[Co4At3Ch11]
+921.772 -0.111623 0.00 !Mu2ChY108TRaw[Co4At3Ch12]
+925.31 -0.112066 0.00 !Mu2ChY109TRaw[Co4At3Ch13]
+926.033 -0.11214 0.00 !Mu2ChY110TRaw[Co4At3Ch14]
+922.391 -0.111703 0.00 !Mu2ChY111TRaw[Co4At3Ch15]
+912.83 -0.110525 0.00 !Mu2ChY112TRaw[Co4At3Ch16]
+852.798 -0.102981 0.00 !Mu2ChY113TRaw[Co4At4Ch1]
+868.843 -0.104976 0.00 !Mu2ChY114TRaw[Co4At4Ch2]
+876.793 -0.105936 0.00 !Mu2ChY115TRaw[Co4At4Ch3]
+875.311 -0.10575 0.00 !Mu2ChY116TRaw[Co4At4Ch4]
+883.331 -0.106741 0.00 !Mu2ChY117TRaw[Co4At4Ch5]
+879.699 -0.10628 0.00 !Mu2ChY118TRaw[Co4At4Ch6]
+891.993 -0.107805 0.00 !Mu2ChY119TRaw[Co4At4Ch7]
+893.52 -0.107966 0.00 !Mu2ChY120TRaw[Co4At4Ch8]
+883.484 -0.106759 0.00 !Mu2ChY121TRaw[Co4At4Ch9]
+896.835 -0.108381 0.00 !Mu2ChY122TRaw[Co4At4Ch10]
+895.32 -0.108195 0.00 !Mu2ChY123TRaw[Co4At4Ch11]
+1336.18 -0.108195 0.00 !Mu2ChY124TRaw[Co4At4Ch12]
+897.921 -0.108519 0.00 !Mu2ChY125TRaw[Co4At4Ch13]
+898.896 -0.10863 0.00 !Mu2ChY126TRaw[Co4At4Ch14]
+900.009 -0.108768 0.00 !Mu2ChY127TRaw[Co4At4Ch15]
+896.14 -0.108297 0.00 !Mu2ChY128TRaw[Co4At4Ch16]
+936.261 -0.113591 0.00 !Mu3ChX1TRaw[Co1At1Ch1]
+949.597 -0.115254 0.00 !Mu3ChX2TRaw[Co1At1Ch2]
+954.137 -0.115822 0.00 !Mu3ChX3TRaw[Co1At1Ch3]
+956.021 -0.116042 0.00 !Mu3ChX4TRaw[Co1At1Ch4]
+948.148 -0.115096 0.00 !Mu3ChX5TRaw[Co1At1Ch5]
+962.715 -0.11686 0.00 !Mu3ChX6TRaw[Co1At1Ch6]
+967.087 -0.117385 0.00 !Mu3ChX7TRaw[Co1At1Ch7]
+972.268 -0.118019 0.00 !Mu3ChX8TRaw[Co1At1Ch8]
+970.481 -0.117779 0.00 !Mu3ChX9TRaw[Co1At1Ch9]
+968.226 -0.117496 0.00 !Mu3ChX10TRaw[Co1At1Ch10]
+970.608 -0.117795 0.00 !Mu3ChX11TRaw[Co1At1Ch11]
+982.826 -0.119273 0.00 !Mu3ChX12TRaw[Co1At1Ch12]
+972.655 -0.118031 0.00 !Mu3ChX13TRaw[Co1At1Ch13]
+978.966 -0.118805 0.00 !Mu3ChX14TRaw[Co1At1Ch14]
+976.646 -0.118524 0.00 !Mu3ChX15TRaw[Co1At1Ch15]
+1358.4 -0.119127 0.00 !Mu3ChX16TRaw[Co1At1Ch16]
+965.022 -0.117029 0.00 !Mu3ChX17TRaw[Co1At2Ch1]
+961.069 -0.116582 0.00 !Mu3ChX18TRaw[Co1At2Ch2]
+979.729 -0.11886 0.00 !Mu3ChX19TRaw[Co1At2Ch3]
+975.886 -0.118386 0.00 !Mu3ChX20TRaw[Co1At2Ch4]
+982.811 -0.119229 0.00 !Mu3ChX21TRaw[Co1At2Ch5]
+989.956 -0.120114 0.00 !Mu3ChX22TRaw[Co1At2Ch6]
+982.322 -0.119177 0.00 !Mu3ChX23TRaw[Co1At2Ch7]
+986.837 -0.119693 0.00 !Mu3ChX24TRaw[Co1At2Ch8]
+984.553 -0.119405 0.00 !Mu3ChX25TRaw[Co1At2Ch9]
+985.367 -0.119523 0.00 !Mu3ChX26TRaw[Co1At2Ch10]
+998.436 -0.12115 0.00 !Mu3ChX27TRaw[Co1At2Ch11]
+994.592 -0.120628 0.00 !Mu3ChX28TRaw[Co1At2Ch12]
+1004.55 -0.121885 0.00 !Mu3ChX29TRaw[Co1At2Ch13]
+997.75 -0.121035 0.00 !Mu3ChX30TRaw[Co1At2Ch14]
+999.387 -0.121233 0.00 !Mu3ChX31TRaw[Co1At2Ch15]
+994.205 -0.120654 0.00 !Mu3ChX32TRaw[Co1At2Ch16]
+895.626 -0.108693 0.00 !Mu3ChX33TRaw[Co1At3Ch1]
+901.788 -0.109485 0.00 !Mu3ChX34TRaw[Co1At3Ch2]
+909.669 -0.110421 0.00 !Mu3ChX35TRaw[Co1At3Ch3]
+902.809 -0.109588 0.00 !Mu3ChX36TRaw[Co1At3Ch4]
+908.707 -0.110301 0.00 !Mu3ChX37TRaw[Co1At3Ch5]
+917.184 -0.111327 0.00 !Mu3ChX38TRaw[Co1At3Ch6]
+918.636 -0.111495 0.00 !Mu3ChX39TRaw[Co1At3Ch7]
+927.002 -0.112521 0.00 !Mu3ChX40TRaw[Co1At3Ch8]
+934.79 -0.11347 0.00 !Mu3ChX41TRaw[Co1At3Ch9]
+928.489 -0.112717 0.00 !Mu3ChX42TRaw[Co1At3Ch10]
+925.669 -0.112335 0.00 !Mu3ChX43TRaw[Co1At3Ch11]
+450 -0.112964 0.00 !Mu3ChX44TRaw[Co1At3Ch12]
+932.907 -0.113245 0.00 !Mu3ChX45TRaw[Co1At3Ch13]
+927.364 -0.11258 0.00 !Mu3ChX46TRaw[Co1At3Ch14]
+934.8 -0.113476 0.00 !Mu3ChX47TRaw[Co1At3Ch15]
+933.166 -0.113256 0.00 !Mu3ChX48TRaw[Co1At3Ch16]
+863.882 -0.104661 0.00 !Mu3ChX49TRaw[Co1At4Ch1]
+863.742 -0.104634 0.00 !Mu3ChX50TRaw[Co1At4Ch2]
+876.032 -0.106155 0.00 !Mu3ChX51TRaw[Co1At4Ch3]
+885.987 -0.107364 0.00 !Mu3ChX52TRaw[Co1At4Ch4]
+886.077 -0.107368 0.00 !Mu3ChX53TRaw[Co1At4Ch5]
+882.141 -0.106861 0.00 !Mu3ChX54TRaw[Co1At4Ch6]
+894.386 -0.108382 0.00 !Mu3ChX55TRaw[Co1At4Ch7]
+897.465 -0.108733 0.00 !Mu3ChX56TRaw[Co1At4Ch8]
+894.9 -0.10844 0.00 !Mu3ChX57TRaw[Co1At4Ch9]
+900.295 -0.10908 0.00 !Mu3ChX58TRaw[Co1At4Ch10]
+895.793 -0.108538 0.00 !Mu3ChX59TRaw[Co1At4Ch11]
+895.372 -0.10849 0.00 !Mu3ChX60TRaw[Co1At4Ch12]
+902.176 -0.109312 0.00 !Mu3ChX61TRaw[Co1At4Ch13]
+903.192 -0.109445 0.00 !Mu3ChX62TRaw[Co1At4Ch14]
+889.712 -0.107803 0.00 !Mu3ChX63TRaw[Co1At4Ch15]
+921.265 -0.108862 0.00 !Mu3ChX64TRaw[Co1At4Ch16]
+981.944 -0.119126 0.00 !Mu3ChX65TRaw[Co2At1Ch1]
+987.148 -0.119789 0.00 !Mu3ChX66TRaw[Co2At1Ch2]
+987.456 -0.119851 0.00 !Mu3ChX67TRaw[Co2At1Ch3]
+1003.28 -0.121753 0.00 !Mu3ChX68TRaw[Co2At1Ch4]
+1003.82 -0.121824 0.00 !Mu3ChX69TRaw[Co2At1Ch5]
+1000.66 -0.121446 0.00 !Mu3ChX70TRaw[Co2At1Ch6]
+1004.35 -0.121893 0.00 !Mu3ChX71TRaw[Co2At1Ch7]
+1008.06 -0.122347 0.00 !Mu3ChX72TRaw[Co2At1Ch8]
+1004.22 -0.121883 0.00 !Mu3ChX73TRaw[Co2At1Ch9]
+1011.08 -0.122684 0.00 !Mu3ChX74TRaw[Co2At1Ch10]
+1019.46 -0.123722 0.00 !Mu3ChX75TRaw[Co2At1Ch11]
+1029.58 -0.124938 0.00 !Mu3ChX76TRaw[Co2At1Ch12]
+1011.08 -0.122709 0.00 !Mu3ChX77TRaw[Co2At1Ch13]
+1010.81 -0.12265 0.00 !Mu3ChX78TRaw[Co2At1Ch14]
+1022.22 -0.124061 0.00 !Mu3ChX79TRaw[Co2At1Ch15]
+1391.94 -0.123313 0.00 !Mu3ChX80TRaw[Co2At1Ch16]
+939.257 -0.11381 0.00 !Mu3ChX81TRaw[Co2At2Ch1]
+945.066 -0.114558 0.00 !Mu3ChX82TRaw[Co2At2Ch2]
+948.6 -0.114986 0.00 !Mu3ChX83TRaw[Co2At2Ch3]
+947.122 -0.114804 0.00 !Mu3ChX84TRaw[Co2At2Ch4]
+961.987 -0.116619 0.00 !Mu3ChX85TRaw[Co2At2Ch5]
+964.59 -0.11693 0.00 !Mu3ChX86TRaw[Co2At2Ch6]
+959.397 -0.116299 0.00 !Mu3ChX87TRaw[Co2At2Ch7]
+964.355 -0.116863 0.00 !Mu3ChX88TRaw[Co2At2Ch8]
+975.002 -0.118161 0.00 !Mu3ChX89TRaw[Co2At2Ch9]
+971.077 -0.117687 0.00 !Mu3ChX90TRaw[Co2At2Ch10]
+976.04 -0.118304 0.00 !Mu3ChX91TRaw[Co2At2Ch11]
+983.975 -0.119256 0.00 !Mu3ChX92TRaw[Co2At2Ch12]
+983.617 -0.119241 0.00 !Mu3ChX93TRaw[Co2At2Ch13]
+983.301 -0.119186 0.00 !Mu3ChX94TRaw[Co2At2Ch14]
+980.734 -0.118879 0.00 !Mu3ChX95TRaw[Co2At2Ch15]
+975.837 -0.118278 0.00 !Mu3ChX96TRaw[Co2At2Ch16]
+858.761 -0.104124 0.00 !Mu3ChX97TRaw[Co2At3Ch1]
+863.527 -0.104728 0.00 !Mu3ChX98TRaw[Co2At3Ch2]
+863.719 -0.104753 0.00 !Mu3ChX99TRaw[Co2At3Ch3]
+869.797 -0.105492 0.00 !Mu3ChX100TRaw[Co2At3Ch4]
+879.582 -0.106693 0.00 !Mu3ChX101TRaw[Co2At3Ch5]
+874.971 -0.10614 0.00 !Mu3ChX102TRaw[Co2At3Ch6]
+879.706 -0.106708 0.00 !Mu3ChX103TRaw[Co2At3Ch7]
+878.738 -0.106567 0.00 !Mu3ChX104TRaw[Co2At3Ch8]
+887.854 -0.107671 0.00 !Mu3ChX105TRaw[Co2At3Ch9]
+892.385 -0.108216 0.00 !Mu3ChX106TRaw[Co2At3Ch10]
+884.225 -0.107225 0.00 !Mu3ChX107TRaw[Co2At3Ch11]
+894.981 -0.108561 0.00 !Mu3ChX108TRaw[Co2At3Ch12]
+895.51 -0.108609 0.00 !Mu3ChX109TRaw[Co2At3Ch13]
+891.851 -0.108191 0.00 !Mu3ChX110TRaw[Co2At3Ch14]
+901.356 -0.109337 0.00 !Mu3ChX111TRaw[Co2At3Ch15]
+900.727 -0.108709 0.00 !Mu3ChX112TRaw[Co2At3Ch16]
+855.952 -0.103629 0.00 !Mu3ChX113TRaw[Co2At4Ch1]
+865.7 -0.10481 0.00 !Mu3ChX114TRaw[Co2At4Ch2]
+866.161 -0.1049 0.00 !Mu3ChX115TRaw[Co2At4Ch3]
+872.362 -0.105647 0.00 !Mu3ChX116TRaw[Co2At4Ch4]
+1490.13 -0.126949 0.00 !Mu3ChX117TRaw[Co2At4Ch5]
+876.561 -0.106145 0.00 !Mu3ChX118TRaw[Co2At4Ch6]
+884.075 -0.107055 0.00 !Mu3ChX119TRaw[Co2At4Ch7]
+881.54 -0.10675 0.00 !Mu3ChX120TRaw[Co2At4Ch8]
+884.679 -0.107137 0.00 !Mu3ChX121TRaw[Co2At4Ch9]
+888.637 -0.107599 0.00 !Mu3ChX122TRaw[Co2At4Ch10]
+884.493 -0.107093 0.00 !Mu3ChX123TRaw[Co2At4Ch11]
+893.964 -0.108252 0.00 !Mu3ChX124TRaw[Co2At4Ch12]
+888.064 -0.107522 0.00 !Mu3ChX125TRaw[Co2At4Ch13]
+894.536 -0.108336 0.00 !Mu3ChX126TRaw[Co2At4Ch14]
+882.088 -0.106793 0.00 !Mu3ChX127TRaw[Co2At4Ch15]
+890.98 -0.107896 0.00 !Mu3ChX128TRaw[Co2At4Ch16]
+916.716 -0.11121 0.00 !Mu3ChY1TRaw[Co3At1Ch1]
+924.259 -0.112154 0.00 !Mu3ChY2TRaw[Co3At1Ch2]
+933.256 -0.113241 0.00 !Mu3ChY3TRaw[Co3At1Ch3]
+942.953 -0.114409 0.00 !Mu3ChY4TRaw[Co3At1Ch4]
+939.901 -0.114032 0.00 !Mu3ChY5TRaw[Co3At1Ch5]
+947.878 -0.114994 0.00 !Mu3ChY6TRaw[Co3At1Ch6]
+952.484 -0.115552 0.00 !Mu3ChY7TRaw[Co3At1Ch7]
+952.713 -0.115546 0.00 !Mu3ChY8TRaw[Co3At1Ch8]
+960.463 -0.116506 0.00 !Mu3ChY9TRaw[Co3At1Ch9]
+964.543 -0.117006 0.00 !Mu3ChY10TRaw[Co3At1Ch10]
+966.84 -0.117251 0.00 !Mu3ChY11TRaw[Co3At1Ch11]
+965.68 -0.117093 0.00 !Mu3ChY12TRaw[Co3At1Ch12]
+975.182 -0.118272 0.00 !Mu3ChY13TRaw[Co3At1Ch13]
+981.614 -0.119048 0.00 !Mu3ChY14TRaw[Co3At1Ch14]
+973.869 -0.118075 0.00 !Mu3ChY15TRaw[Co3At1Ch15]
+981.076 -0.118941 0.00 !Mu3ChY16TRaw[Co3At1Ch16]
+967.206 -0.117174 0.00 !Mu3ChY17TRaw[Co3At2Ch1]
+980.188 -0.118815 0.00 !Mu3ChY18TRaw[Co3At2Ch2]
+981.134 -0.118931 0.00 !Mu3ChY19TRaw[Co3At2Ch3]
+986.719 -0.119638 0.00 !Mu3ChY20TRaw[Co3At2Ch4]
+992.386 -0.12034 0.00 !Mu3ChY21TRaw[Co3At2Ch5]
+1002.21 -0.121551 0.00 !Mu3ChY22TRaw[Co3At2Ch6]
+997.474 -0.120998 0.00 !Mu3ChY23TRaw[Co3At2Ch7]
+992.008 -0.120321 0.00 !Mu3ChY24TRaw[Co3At2Ch8]
+998.021 -0.121073 0.00 !Mu3ChY25TRaw[Co3At2Ch9]
+1004.15 -0.121839 0.00 !Mu3ChY26TRaw[Co3At2Ch10]
+1004.31 -0.121856 0.00 !Mu3ChY27TRaw[Co3At2Ch11]
+1010.69 -0.122649 0.00 !Mu3ChY28TRaw[Co3At2Ch12]
+1013.79 -0.12302 0.00 !Mu3ChY29TRaw[Co3At2Ch13]
+1002.56 -0.121668 0.00 !Mu3ChY30TRaw[Co3At2Ch14]
+1011.72 -0.122794 0.00 !Mu3ChY31TRaw[Co3At2Ch15]
+1012.54 -0.122927 0.00 !Mu3ChY32TRaw[Co3At2Ch16]
+868.546 -0.105446 0.00 !Mu3ChY33TRaw[Co3At3Ch1]
+865.415 -0.105092 0.00 !Mu3ChY34TRaw[Co3At3Ch2]
+870.615 -0.10573 0.00 !Mu3ChY35TRaw[Co3At3Ch3]
+867.501 -0.105345 0.00 !Mu3ChY36TRaw[Co3At3Ch4]
+879.085 -0.106744 0.00 !Mu3ChY37TRaw[Co3At3Ch5]
+878.372 -0.106654 0.00 !Mu3ChY38TRaw[Co3At3Ch6]
+883.834 -0.107294 0.00 !Mu3ChY39TRaw[Co3At3Ch7]
+892.468 -0.108361 0.00 !Mu3ChY40TRaw[Co3At3Ch8]
+889.652 -0.10799 0.00 !Mu3ChY41TRaw[Co3At3Ch9]
+893.582 -0.10846 0.00 !Mu3ChY42TRaw[Co3At3Ch10]
+902.982 -0.109593 0.00 !Mu3ChY43TRaw[Co3At3Ch11]
+899.542 -0.109195 0.00 !Mu3ChY44TRaw[Co3At3Ch12]
+894.786 -0.108568 0.00 !Mu3ChY45TRaw[Co3At3Ch13]
+904.997 -0.109804 0.00 !Mu3ChY46TRaw[Co3At3Ch14]
+908.733 -0.110263 0.00 !Mu3ChY47TRaw[Co3At3Ch15]
+901.41 -0.109382 0.00 !Mu3ChY48TRaw[Co3At3Ch16]
+874.853 -0.105997 0.00 !Mu3ChY49TRaw[Co3At4Ch1]
+880.713 -0.106772 0.00 !Mu3ChY50TRaw[Co3At4Ch2]
+892.705 -0.108217 0.00 !Mu3ChY51TRaw[Co3At4Ch3]
+895.218 -0.108527 0.00 !Mu3ChY52TRaw[Co3At4Ch4]
+889.343 -0.107825 0.00 !Mu3ChY53TRaw[Co3At4Ch5]
+897.932 -0.108862 0.00 !Mu3ChY54TRaw[Co3At4Ch6]
+902.448 -0.109456 0.00 !Mu3ChY55TRaw[Co3At4Ch7]
+908.367 -0.110152 0.00 !Mu3ChY56TRaw[Co3At4Ch8]
+912.74 -0.110718 0.00 !Mu3ChY57TRaw[Co3At4Ch9]
+911.519 -0.11056 0.00 !Mu3ChY58TRaw[Co3At4Ch10]
+920.413 -0.111636 0.00 !Mu3ChY59TRaw[Co3At4Ch11]
+906.185 -0.109934 0.00 !Mu3ChY60TRaw[Co3At4Ch12]
+919.759 -0.111581 0.00 !Mu3ChY61TRaw[Co3At4Ch13]
+920.555 -0.111694 0.00 !Mu3ChY62TRaw[Co3At4Ch14]
+915.715 -0.1111 0.00 !Mu3ChY63TRaw[Co3At4Ch15]
+918.454 -0.11144 0.00 !Mu3ChY64TRaw[Co3At4Ch16]
+901.244 -0.109216 0.00 !Mu3ChY65TRaw[Co4At1Ch1]
+907.742 -0.110026 0.00 !Mu3ChY66TRaw[Co4At1Ch2]
+908.334 -0.110106 0.00 !Mu3ChY67TRaw[Co4At1Ch3]
+916.785 -0.11114 0.00 !Mu3ChY68TRaw[Co4At1Ch4]
+928.178 -0.11252 0.00 !Mu3ChY69TRaw[Co4At1Ch5]
+936.612 -0.113544 0.00 !Mu3ChY70TRaw[Co4At1Ch6]
+929.327 -0.112672 0.00 !Mu3ChY71TRaw[Co4At1Ch7]
+927.889 -0.112491 0.00 !Mu3ChY72TRaw[Co4At1Ch8]
+944.015 -0.114462 0.00 !Mu3ChY73TRaw[Co4At1Ch9]
+936.5 -0.11354 0.00 !Mu3ChY74TRaw[Co4At1Ch10]
+952.669 -0.115517 0.00 !Mu3ChY75TRaw[Co4At1Ch11]
+949.121 -0.115086 0.00 !Mu3ChY76TRaw[Co4At1Ch12]
+961.66 -0.116618 0.00 !Mu3ChY77TRaw[Co4At1Ch13]
+950.324 -0.115232 0.00 !Mu3ChY78TRaw[Co4At1Ch14]
+943.005 -0.114343 0.00 !Mu3ChY79TRaw[Co4At1Ch15]
+948.05 -0.114947 0.00 !Mu3ChY80TRaw[Co4At1Ch16]
+967.814 -0.117288 0.00 !Mu3ChY81TRaw[Co4At2Ch1]
+979.35 -0.118727 0.00 !Mu3ChY82TRaw[Co4At2Ch2]
+985.387 -0.119474 0.00 !Mu3ChY83TRaw[Co4At2Ch3]
+988.884 -0.119909 0.00 !Mu3ChY84TRaw[Co4At2Ch4]
+990.688 -0.120116 0.00 !Mu3ChY85TRaw[Co4At2Ch5]
+997.728 -0.120975 0.00 !Mu3ChY86TRaw[Co4At2Ch6]
+994.598 -0.120606 0.00 !Mu3ChY87TRaw[Co4At2Ch7]
+996.045 -0.12076 0.00 !Mu3ChY88TRaw[Co4At2Ch8]
+1000.77 -0.121336 0.00 !Mu3ChY89TRaw[Co4At2Ch9]
+1011.99 -0.122713 0.00 !Mu3ChY90TRaw[Co4At2Ch10]
+1015.05 -0.1231 0.00 !Mu3ChY91TRaw[Co4At2Ch11]
+1003.4 -0.121678 0.00 !Mu3ChY92TRaw[Co4At2Ch12]
+1011.74 -0.122697 0.00 !Mu3ChY93TRaw[Co4At2Ch13]
+1014.96 -0.123087 0.00 !Mu3ChY94TRaw[Co4At2Ch14]
+1007.34 -0.122144 0.00 !Mu3ChY95TRaw[Co4At2Ch15]
+1008.36 -0.122274 0.00 !Mu3ChY96TRaw[Co4At2Ch16]
+871.329 -0.105573 0.00 !Mu3ChY97TRaw[Co4At3Ch1]
+868.142 -0.105224 0.00 !Mu3ChY98TRaw[Co4At3Ch2]
+872.865 -0.105791 0.00 !Mu3ChY99TRaw[Co4At3Ch3]
+882.085 -0.106904 0.00 !Mu3ChY100TRaw[Co4At3Ch4]
+889.159 -0.107789 0.00 !Mu3ChY101TRaw[Co4At3Ch5]
+888.956 -0.107742 0.00 !Mu3ChY102TRaw[Co4At3Ch6]
+899.906 -0.109085 0.00 !Mu3ChY103TRaw[Co4At3Ch7]
+892.033 -0.108126 0.00 !Mu3ChY104TRaw[Co4At3Ch8]
+899.207 -0.108999 0.00 !Mu3ChY105TRaw[Co4At3Ch9]
+891.613 -0.108068 0.00 !Mu3ChY106TRaw[Co4At3Ch10]
+891.136 -0.108006 0.00 !Mu3ChY107TRaw[Co4At3Ch11]
+900.207 -0.109125 0.00 !Mu3ChY108TRaw[Co4At3Ch12]
+902.911 -0.109439 0.00 !Mu3ChY109TRaw[Co4At3Ch13]
+900.692 -0.109168 0.00 !Mu3ChY110TRaw[Co4At3Ch14]
+896.133 -0.108625 0.00 !Mu3ChY111TRaw[Co4At3Ch15]
+902.665 -0.109416 0.00 !Mu3ChY112TRaw[Co4At3Ch16]
+888.587 -0.107554 0.00 !Mu3ChY113TRaw[Co4At4Ch1]
+895.918 -0.108473 0.00 !Mu3ChY114TRaw[Co4At4Ch2]
+898.97 -0.108848 0.00 !Mu3ChY115TRaw[Co4At4Ch3]
+894.394 -0.108292 0.00 !Mu3ChY116TRaw[Co4At4Ch4]
+902.574 -0.109288 0.00 !Mu3ChY117TRaw[Co4At4Ch5]
+907.964 -0.109943 0.00 !Mu3ChY118TRaw[Co4At4Ch6]
+906.564 -0.109765 0.00 !Mu3ChY119TRaw[Co4At4Ch7]
+905.798 -0.109672 0.00 !Mu3ChY120TRaw[Co4At4Ch8]
+912.702 -0.110512 0.00 !Mu3ChY121TRaw[Co4At4Ch9]
+921.335 -0.111588 0.00 !Mu3ChY122TRaw[Co4At4Ch10]
+924.085 -0.111915 0.00 !Mu3ChY123TRaw[Co4At4Ch11]
+906.564 -0.109772 0.00 !Mu3ChY124TRaw[Co4At4Ch12]
+910.838 -0.11029 0.00 !Mu3ChY125TRaw[Co4At4Ch13]
+916.176 -0.110947 0.00 !Mu3ChY126TRaw[Co4At4Ch14]
+917.763 -0.111116 0.00 !Mu3ChY127TRaw[Co4At4Ch15]
+925.891 -0.112131 0.00 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/.root_hist b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..09dfc734ee013cb276530bcb513b3517ad5ad8e5
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/.root_hist
@@ -0,0 +1,97 @@
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.qqqqqqqqqqq
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.x ExtractRawHisto_E_Pedestals.C
+.L ExtractRawHisto_E_Pedestals.C+
+we 
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+q
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+.x ExtractRawHisto_E_Pedestals.C
+.q
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+.q
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.ls
+.q
+TFile *_file0 = TFile::Open("Histograms/run_1_pedestals_RawMUST2Histos.root")
+new TBrowser
+.q
+.L ExtractRawHisto_E.C+
+.q
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_7_pedestals","MUST2")
+ew TBrowser
+new TBrowser
+.q
+.L EnergyCalibrator.C+
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+ls
+.ls
+.q
+ExtractRawHistos("run_9","MUST2")
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_9","MUST2")
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_19","MUST2")
+ls
+.ls
+.L EnergyCalibrator+
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q 
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.!50715!.DS_Store b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.!50715!.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.!50734!.DS_Store b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.!50734!.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.!50770!.DS_Store b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.!50770!.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.!50784!.DS_Store b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.!50784!.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.!50790!.DS_Store b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.!50790!.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.DS_Store b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.DS_Store differ
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.root_hist b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..c37259c1cc98a5df9fb1857211ba438c6f0f0080
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/.root_hist
@@ -0,0 +1,5 @@
+new TBrowser
+q
+.q
+new TBrowser
+.q
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..8d51814fe05c2a2b5275fa9ad15953d3180bd7de
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
@@ -0,0 +1,147 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 1
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"EDIN_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"EDIN_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..6591d55767bcc25def6597984f7c79049038dae7
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+EDIN_T0_DSSD_X0_E -61.4176 0.00749736
+EDIN_T0_DSSD_X1_E -61.7332 0.00753786
+EDIN_T0_DSSD_X2_E -61.3896 0.00749605
+EDIN_T0_DSSD_X3_E -61.2903 0.00748199
+EDIN_T0_DSSD_X4_E -61.431 0.00750212
+EDIN_T0_DSSD_X5_E -61.326 0.00748787
+EDIN_T0_DSSD_X6_E -61.0441 0.00745321
+EDIN_T0_DSSD_X7_E -60.8321 0.00742833
+EDIN_T0_DSSD_X8_E -60.8507 0.00742788
+EDIN_T0_DSSD_X9_E -62.3428 0.0076116
+EDIN_T0_DSSD_X10_E -62.0533 0.00757613
+EDIN_T0_DSSD_X11_E -61.706 0.00753425
+EDIN_T0_DSSD_X12_E -61.8146 0.00754892
+EDIN_T0_DSSD_X13_E -61.4548 0.00750366
+EDIN_T0_DSSD_X14_E -62.103 0.00758278
+EDIN_T0_DSSD_X15_E -61.0209 0.00745076
+EDIN_T0_DSSD_X16_E -62.6789 0.0076538
+EDIN_T0_DSSD_X17_E -62.1645 0.00759548
+EDIN_T0_DSSD_X18_E -61.9167 0.00755979
+EDIN_T0_DSSD_X19_E -61.9572 0.00756687
+EDIN_T0_DSSD_X20_E -63.6131 0.00776601
+EDIN_T0_DSSD_X21_E -62.1196 0.00758583
+EDIN_T0_DSSD_X22_E -62.0121 0.00757122
+EDIN_T0_DSSD_X23_E -62.3166 0.00761046
+EDIN_T0_DSSD_X24_E -62.4782 0.00762937
+EDIN_T0_DSSD_X25_E -62.5948 0.00764366
+EDIN_T0_DSSD_X26_E -62.8291 0.00767039
+EDIN_T0_DSSD_X27_E -62.1445 0.00759002
+EDIN_T0_DSSD_X28_E -62.7578 0.00766138
+EDIN_T0_DSSD_X29_E -62.2734 0.00760445
+EDIN_T0_DSSD_X30_E -63.1287 0.00770747
+EDIN_T0_DSSD_X31_E -62.259 0.007602
+EDIN_T0_DSSD_X32_E -56.1626 0.0068604
+EDIN_T0_DSSD_X33_E -56.4142 0.00688949
+EDIN_T0_DSSD_X34_E -55.0958 0.00672999
+EDIN_T0_DSSD_X35_E -55.8984 0.00682813
+EDIN_T0_DSSD_X36_E -55.6715 0.00679777
+EDIN_T0_DSSD_X37_E -54.9391 0.00671187
+EDIN_T0_DSSD_X38_E -55.4656 0.00677524
+EDIN_T0_DSSD_X39_E -55.2745 0.00675192
+EDIN_T0_DSSD_X40_E -55.9564 0.00683237
+EDIN_T0_DSSD_X41_E -55.6024 0.00678835
+EDIN_T0_DSSD_X42_E -55.7768 0.00681221
+EDIN_T0_DSSD_X43_E -55.9848 0.00683639
+EDIN_T0_DSSD_X44_E -56.0388 0.00684277
+EDIN_T0_DSSD_X45_E -100.746 0.0122904
+EDIN_T0_DSSD_X46_E -99.399 0.0121408
+EDIN_T0_DSSD_X47_E -55.6563 0.00679819
+EDIN_T0_DSSD_X48_E -57.4429 0.0070159
+EDIN_T0_DSSD_X49_E -57.5152 0.00702414
+EDIN_T0_DSSD_X50_E -57.487 0.00701839
+EDIN_T0_DSSD_X51_E -56.9208 0.00695135
+EDIN_T0_DSSD_X52_E -58.0107 0.00708119
+EDIN_T0_DSSD_X53_E -56.9193 0.00694986
+EDIN_T0_DSSD_X54_E -57.4367 0.00701404
+EDIN_T0_DSSD_X55_E -57.1583 0.00697967
+EDIN_T0_DSSD_X56_E -58.0046 0.00708458
+EDIN_T0_DSSD_X57_E -57.3176 0.00699982
+EDIN_T0_DSSD_X58_E -57.134 0.00697341
+EDIN_T0_DSSD_X59_E -57.4375 0.00701403
+EDIN_T0_DSSD_X60_E -56.9962 0.00695735
+EDIN_T0_DSSD_X61_E -57.5621 0.00702929
+EDIN_T0_DSSD_X62_E -57.6273 0.00703611
+EDIN_T0_DSSD_X63_E -57.8094 0.00705862
+EDIN_T0_DSSD_X64_E -62.5694 0.00764554
+EDIN_T0_DSSD_X65_E -62.7765 0.00767141
+EDIN_T0_DSSD_X66_E -62.6601 0.00765656
+EDIN_T0_DSSD_X67_E -63.0717 0.00770888
+EDIN_T0_DSSD_X68_E -62.275 0.00761087
+EDIN_T0_DSSD_X69_E -62.7076 0.00766829
+EDIN_T0_DSSD_X70_E -63.2742 0.00772849
+EDIN_T0_DSSD_X71_E -61.7578 0.00755677
+EDIN_T0_DSSD_X72_E -62.8436 0.00768583
+EDIN_T0_DSSD_X73_E -61.1488 0.00748861
+EDIN_T0_DSSD_X74_E -62.5469 0.00765229
+EDIN_T0_DSSD_X75_E -62.2494 0.00761832
+EDIN_T0_DSSD_X76_E -61.9556 0.00758282
+EDIN_T0_DSSD_X77_E -61.7742 0.00756394
+EDIN_T0_DSSD_X78_E -62.631 0.00766349
+EDIN_T0_DSSD_X79_E -62.5657 0.00766188
+EDIN_T0_DSSD_X80_E -59.317 0.00726294
+EDIN_T0_DSSD_X81_E -58.8177 0.0072054
+EDIN_T0_DSSD_X82_E -59.0886 0.00723829
+EDIN_T0_DSSD_X83_E -59.6477 0.00730317
+EDIN_T0_DSSD_X84_E -59.8536 0.00732352
+EDIN_T0_DSSD_X85_E -60.4055 0.00739355
+EDIN_T0_DSSD_X86_E -60.3646 0.00738021
+EDIN_T0_DSSD_X87_E -60.8435 0.00744227
+EDIN_T0_DSSD_X88_E -60.8501 0.00743939
+EDIN_T0_DSSD_X89_E -60.5184 0.00739918
+EDIN_T0_DSSD_X90_E -60.6657 0.00741709
+EDIN_T0_DSSD_X91_E -61.8484 0.00756021
+EDIN_T0_DSSD_X92_E -61.0175 0.00745665
+EDIN_T0_DSSD_X93_E -59.9938 0.00733538
+EDIN_T0_DSSD_X94_E -60.5911 0.00740502
+EDIN_T0_DSSD_X95_E -61.5567 0.00752034
+EDIN_T0_DSSD_X96_E -56.9853 0.00695607
+EDIN_T0_DSSD_X97_E -56.805 0.00694169
+EDIN_T0_DSSD_X98_E -57.0758 0.00697401
+EDIN_T0_DSSD_X99_E -56.7956 0.00693482
+EDIN_T0_DSSD_X100_E -57.7593 0.0070528
+EDIN_T0_DSSD_X101_E -57.6971 0.00704109
+EDIN_T0_DSSD_X102_E -57.1712 0.0069833
+EDIN_T0_DSSD_X103_E -56.5661 0.00691177
+EDIN_T0_DSSD_X104_E -56.8282 0.00694184
+EDIN_T0_DSSD_X105_E -57.3391 0.00700475
+EDIN_T0_DSSD_X106_E -56.6671 0.00692293
+EDIN_T0_DSSD_X107_E -56.8853 0.00695107
+EDIN_T0_DSSD_X108_E -57.9765 0.00708265
+EDIN_T0_DSSD_X109_E -57.388 0.00701232
+EDIN_T0_DSSD_X110_E -56.5401 0.00691485
+EDIN_T0_DSSD_X111_E -57.0413 0.00697142
+EDIN_T0_DSSD_X112_E -58.286 0.00712194
+EDIN_T0_DSSD_X113_E -58.5104 0.00714936
+EDIN_T0_DSSD_X114_E -57.7679 0.00705962
+EDIN_T0_DSSD_X115_E -57.9796 0.00708441
+EDIN_T0_DSSD_X116_E -57.4801 0.00702354
+EDIN_T0_DSSD_X117_E -57.6419 0.00704336
+EDIN_T0_DSSD_X118_E -57.9462 0.00707592
+EDIN_T0_DSSD_X119_E -58.1659 0.00710274
+EDIN_T0_DSSD_X120_E -57.9026 0.00707413
+EDIN_T0_DSSD_X121_E -58.1983 0.00710762
+EDIN_T0_DSSD_X122_E -57.9833 0.00708219
+EDIN_T0_DSSD_X123_E -59.0073 0.00720479
+EDIN_T0_DSSD_X124_E -57.4047 0.00701145
+EDIN_T0_DSSD_X125_E -57.9162 0.00707506
+EDIN_T0_DSSD_X126_E -58.0998 0.00709359
+EDIN_T0_DSSD_X127_E -58.9229 0.00719802
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..8cbe929988be565f955e6ac24224ccb2e84ba620
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.dispersion
@@ -0,0 +1,128 @@
+EDIN_T0_DSSD_X0_E_Zero_Dispersion 0.102913
+EDIN_T0_DSSD_X1_E_Zero_Dispersion 2.24487
+EDIN_T0_DSSD_X2_E_Zero_Dispersion 2.40801
+EDIN_T0_DSSD_X3_E_Zero_Dispersion 0.290031
+EDIN_T0_DSSD_X4_E_Zero_Dispersion 3.51494
+EDIN_T0_DSSD_X5_E_Zero_Dispersion 1.95333
+EDIN_T0_DSSD_X6_E_Zero_Dispersion 1.68842
+EDIN_T0_DSSD_X7_E_Zero_Dispersion 2.79134
+EDIN_T0_DSSD_X8_E_Zero_Dispersion -0.20541
+EDIN_T0_DSSD_X9_E_Zero_Dispersion 1.50734
+EDIN_T0_DSSD_X10_E_Zero_Dispersion 1.37658
+EDIN_T0_DSSD_X11_E_Zero_Dispersion 1.92986
+EDIN_T0_DSSD_X12_E_Zero_Dispersion 3.45815
+EDIN_T0_DSSD_X13_E_Zero_Dispersion 2.02481
+EDIN_T0_DSSD_X14_E_Zero_Dispersion 1.99584
+EDIN_T0_DSSD_X15_E_Zero_Dispersion 2.11099
+EDIN_T0_DSSD_X16_E_Zero_Dispersion 2.73808
+EDIN_T0_DSSD_X17_E_Zero_Dispersion 7.59976
+EDIN_T0_DSSD_X18_E_Zero_Dispersion 1.73776
+EDIN_T0_DSSD_X19_E_Zero_Dispersion 4.04507
+EDIN_T0_DSSD_X20_E_Zero_Dispersion 0.773641
+EDIN_T0_DSSD_X21_E_Zero_Dispersion 3.09557
+EDIN_T0_DSSD_X22_E_Zero_Dispersion 1.50144
+EDIN_T0_DSSD_X23_E_Zero_Dispersion 3.71503
+EDIN_T0_DSSD_X24_E_Zero_Dispersion 2.83617
+EDIN_T0_DSSD_X25_E_Zero_Dispersion 2.88454
+EDIN_T0_DSSD_X26_E_Zero_Dispersion 0.86892
+EDIN_T0_DSSD_X27_E_Zero_Dispersion 4.34091
+EDIN_T0_DSSD_X28_E_Zero_Dispersion 0.546165
+EDIN_T0_DSSD_X29_E_Zero_Dispersion 2.92398
+EDIN_T0_DSSD_X30_E_Zero_Dispersion 1.41443
+EDIN_T0_DSSD_X31_E_Zero_Dispersion 2.18272
+EDIN_T0_DSSD_X32_E_Zero_Dispersion 5.50955
+EDIN_T0_DSSD_X33_E_Zero_Dispersion 3.54479
+EDIN_T0_DSSD_X34_E_Zero_Dispersion 5.38916
+EDIN_T0_DSSD_X35_E_Zero_Dispersion 5.51265
+EDIN_T0_DSSD_X36_E_Zero_Dispersion 2.32903
+EDIN_T0_DSSD_X37_E_Zero_Dispersion 6.63815
+EDIN_T0_DSSD_X38_E_Zero_Dispersion 5.48844
+EDIN_T0_DSSD_X39_E_Zero_Dispersion 5.51694
+EDIN_T0_DSSD_X40_E_Zero_Dispersion 2.10885
+EDIN_T0_DSSD_X41_E_Zero_Dispersion 1.14006
+EDIN_T0_DSSD_X42_E_Zero_Dispersion 4.22353
+EDIN_T0_DSSD_X43_E_Zero_Dispersion 2.76535
+EDIN_T0_DSSD_X44_E_Zero_Dispersion 2.5117
+EDIN_T0_DSSD_X45_E_Zero_Dispersion -5.0981
+EDIN_T0_DSSD_X46_E_Zero_Dispersion 4.81708
+EDIN_T0_DSSD_X47_E_Zero_Dispersion 5.06188
+EDIN_T0_DSSD_X48_E_Zero_Dispersion 4.46775
+EDIN_T0_DSSD_X49_E_Zero_Dispersion 3.77405
+EDIN_T0_DSSD_X50_E_Zero_Dispersion 1.09247
+EDIN_T0_DSSD_X51_E_Zero_Dispersion 3.54488
+EDIN_T0_DSSD_X52_E_Zero_Dispersion -0.232348
+EDIN_T0_DSSD_X53_E_Zero_Dispersion 2.00614
+EDIN_T0_DSSD_X54_E_Zero_Dispersion 3.18011
+EDIN_T0_DSSD_X55_E_Zero_Dispersion 2.74231
+EDIN_T0_DSSD_X56_E_Zero_Dispersion 4.55659
+EDIN_T0_DSSD_X57_E_Zero_Dispersion 3.56342
+EDIN_T0_DSSD_X58_E_Zero_Dispersion -1.12628
+EDIN_T0_DSSD_X59_E_Zero_Dispersion 3.05041
+EDIN_T0_DSSD_X60_E_Zero_Dispersion -0.231608
+EDIN_T0_DSSD_X61_E_Zero_Dispersion 3.1073
+EDIN_T0_DSSD_X62_E_Zero_Dispersion 1.78151
+EDIN_T0_DSSD_X63_E_Zero_Dispersion 2.0984
+EDIN_T0_DSSD_X64_E_Zero_Dispersion 8.21535
+EDIN_T0_DSSD_X65_E_Zero_Dispersion 8.81345
+EDIN_T0_DSSD_X66_E_Zero_Dispersion 8.15405
+EDIN_T0_DSSD_X67_E_Zero_Dispersion 10.302
+EDIN_T0_DSSD_X68_E_Zero_Dispersion 9.61918
+EDIN_T0_DSSD_X69_E_Zero_Dispersion 14.4759
+EDIN_T0_DSSD_X70_E_Zero_Dispersion 4.87172
+EDIN_T0_DSSD_X71_E_Zero_Dispersion 19.4779
+EDIN_T0_DSSD_X72_E_Zero_Dispersion 15.4516
+EDIN_T0_DSSD_X73_E_Zero_Dispersion 26.4327
+EDIN_T0_DSSD_X74_E_Zero_Dispersion 18.3719
+EDIN_T0_DSSD_X75_E_Zero_Dispersion 20.993
+EDIN_T0_DSSD_X76_E_Zero_Dispersion 21.4767
+EDIN_T0_DSSD_X77_E_Zero_Dispersion 25.0765
+EDIN_T0_DSSD_X78_E_Zero_Dispersion 19.3561
+EDIN_T0_DSSD_X79_E_Zero_Dispersion 26.1513
+EDIN_T0_DSSD_X80_E_Zero_Dispersion 24.9254
+EDIN_T0_DSSD_X81_E_Zero_Dispersion 28.9995
+EDIN_T0_DSSD_X82_E_Zero_Dispersion 28.6547
+EDIN_T0_DSSD_X83_E_Zero_Dispersion 24.6368
+EDIN_T0_DSSD_X84_E_Zero_Dispersion 19.2
+EDIN_T0_DSSD_X85_E_Zero_Dispersion 21.9724
+EDIN_T0_DSSD_X86_E_Zero_Dispersion 12.7551
+EDIN_T0_DSSD_X87_E_Zero_Dispersion 16.6039
+EDIN_T0_DSSD_X88_E_Zero_Dispersion 12.5542
+EDIN_T0_DSSD_X89_E_Zero_Dispersion 12.9298
+EDIN_T0_DSSD_X90_E_Zero_Dispersion 12.8183
+EDIN_T0_DSSD_X91_E_Zero_Dispersion 11.2252
+EDIN_T0_DSSD_X92_E_Zero_Dispersion 9.04167
+EDIN_T0_DSSD_X93_E_Zero_Dispersion 13.3112
+EDIN_T0_DSSD_X94_E_Zero_Dispersion 9.56023
+EDIN_T0_DSSD_X95_E_Zero_Dispersion 6.64401
+EDIN_T0_DSSD_X96_E_Zero_Dispersion -0.169952
+EDIN_T0_DSSD_X97_E_Zero_Dispersion 8.82478
+EDIN_T0_DSSD_X98_E_Zero_Dispersion 7.93764
+EDIN_T0_DSSD_X99_E_Zero_Dispersion 2.09013
+EDIN_T0_DSSD_X100_E_Zero_Dispersion 2.4381
+EDIN_T0_DSSD_X101_E_Zero_Dispersion -2.35007
+EDIN_T0_DSSD_X102_E_Zero_Dispersion 5.15856
+EDIN_T0_DSSD_X103_E_Zero_Dispersion 7.96765
+EDIN_T0_DSSD_X104_E_Zero_Dispersion 5.67829
+EDIN_T0_DSSD_X105_E_Zero_Dispersion 6.25581
+EDIN_T0_DSSD_X106_E_Zero_Dispersion 6.57618
+EDIN_T0_DSSD_X107_E_Zero_Dispersion 8.33115
+EDIN_T0_DSSD_X108_E_Zero_Dispersion 6.29503
+EDIN_T0_DSSD_X109_E_Zero_Dispersion 8.12487
+EDIN_T0_DSSD_X110_E_Zero_Dispersion 15.3838
+EDIN_T0_DSSD_X111_E_Zero_Dispersion 9.83817
+EDIN_T0_DSSD_X112_E_Zero_Dispersion 7.99507
+EDIN_T0_DSSD_X113_E_Zero_Dispersion 7.99615
+EDIN_T0_DSSD_X114_E_Zero_Dispersion 9.13852
+EDIN_T0_DSSD_X115_E_Zero_Dispersion 7.88735
+EDIN_T0_DSSD_X116_E_Zero_Dispersion 8.07551
+EDIN_T0_DSSD_X117_E_Zero_Dispersion 8.13797
+EDIN_T0_DSSD_X118_E_Zero_Dispersion 2.79139
+EDIN_T0_DSSD_X119_E_Zero_Dispersion 2.77742
+EDIN_T0_DSSD_X120_E_Zero_Dispersion 6.88387
+EDIN_T0_DSSD_X121_E_Zero_Dispersion 3.85057
+EDIN_T0_DSSD_X122_E_Zero_Dispersion 4.80636
+EDIN_T0_DSSD_X123_E_Zero_Dispersion 1.98461
+EDIN_T0_DSSD_X124_E_Zero_Dispersion 4.72226
+EDIN_T0_DSSD_X125_E_Zero_Dispersion 6.02878
+EDIN_T0_DSSD_X126_E_Zero_Dispersion 1.53415
+EDIN_T0_DSSD_X127_E_Zero_Dispersion 6.01497
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/latex/double_alpha_run_0274_X_MM0_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/latex/double_alpha_run_0274_X_MM0_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..afd9ddfaaec0a7e573489b9722980d448444b7c5
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/latex/double_alpha_run_0274_X_MM0_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  0
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 0 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM0_E/latex/pictures/Telescope0Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.10885
+
+Sigma fit sigma: 0.331137
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/peaks/Cal_Str_X_E_MM0.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/peaks/Cal_Str_X_E_MM0.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1eb81ee688690e0c1fd081d63a64ebd9a45ee96c
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+EDIN_T1_DSSD_X0_E -62.3477 0.007611
+EDIN_T1_DSSD_X1_E -62.308 0.00760306
+EDIN_T1_DSSD_X2_E -62.1697 0.0075878
+EDIN_T1_DSSD_X3_E -62.0173 0.00756982
+EDIN_T1_DSSD_X4_E -61.3648 0.00749166
+EDIN_T1_DSSD_X5_E -61.5997 0.00751643
+EDIN_T1_DSSD_X6_E -62.4787 0.00762243
+EDIN_T1_DSSD_X7_E -61.3185 0.00748472
+EDIN_T1_DSSD_X8_E -61.1328 0.00746245
+EDIN_T1_DSSD_X9_E -61.4827 0.00750394
+EDIN_T1_DSSD_X10_E -61.8118 0.0075418
+EDIN_T1_DSSD_X11_E -61.9258 0.00755463
+EDIN_T1_DSSD_X12_E -61.8767 0.00755134
+EDIN_T1_DSSD_X13_E -61.3156 0.0074846
+EDIN_T1_DSSD_X14_E -61.3699 0.00748612
+EDIN_T1_DSSD_X15_E -62.1632 0.00758373
+EDIN_T1_DSSD_X16_E -62.9211 0.00767431
+EDIN_T1_DSSD_X17_E -62.0562 0.00756866
+EDIN_T1_DSSD_X18_E -62.0386 0.00757545
+EDIN_T1_DSSD_X19_E -62.2875 0.0075986
+EDIN_T1_DSSD_X20_E -62.8822 0.00767441
+EDIN_T1_DSSD_X21_E -62.3374 0.00760465
+EDIN_T1_DSSD_X22_E -62.852 0.00767109
+EDIN_T1_DSSD_X23_E -62.8192 0.00765988
+EDIN_T1_DSSD_X24_E -62.4176 0.00761481
+EDIN_T1_DSSD_X25_E -62.2038 0.00758803
+EDIN_T1_DSSD_X26_E -62.0181 0.00756821
+EDIN_T1_DSSD_X27_E -61.9276 0.00755372
+EDIN_T1_DSSD_X28_E -61.6034 0.00751835
+EDIN_T1_DSSD_X29_E -62.9333 0.00767748
+EDIN_T1_DSSD_X30_E -62.1268 0.0075773
+EDIN_T1_DSSD_X31_E -63.1585 0.00770313
+EDIN_T1_DSSD_X32_E -58.3057 0.00711587
+EDIN_T1_DSSD_X33_E -58.4042 0.00712871
+EDIN_T1_DSSD_X34_E -58.4884 0.00713562
+EDIN_T1_DSSD_X35_E -57.4835 0.00702506
+EDIN_T1_DSSD_X36_E -58.3917 0.00712193
+EDIN_T1_DSSD_X37_E -58.5648 0.00714415
+EDIN_T1_DSSD_X38_E -58.5559 0.00713839
+EDIN_T1_DSSD_X39_E -58.5374 0.00714562
+EDIN_T1_DSSD_X40_E -58.7158 0.00715871
+EDIN_T1_DSSD_X41_E -58.8359 0.00717997
+EDIN_T1_DSSD_X42_E -58.2602 0.00710755
+EDIN_T1_DSSD_X43_E -57.8239 0.00706527
+EDIN_T1_DSSD_X44_E -58.7242 0.00716462
+EDIN_T1_DSSD_X45_E -59.6459 0.00727511
+EDIN_T1_DSSD_X46_E -59.1603 0.00721451
+EDIN_T1_DSSD_X47_E -58.6549 0.00715909
+EDIN_T1_DSSD_X48_E -57.9484 0.00706941
+EDIN_T1_DSSD_X49_E -58.7332 0.00716424
+EDIN_T1_DSSD_X50_E -58.1769 0.00709735
+EDIN_T1_DSSD_X51_E -57.9451 0.00706791
+EDIN_T1_DSSD_X52_E -58.1687 0.00709592
+EDIN_T1_DSSD_X53_E -57.9405 0.00707027
+EDIN_T1_DSSD_X54_E -58.0919 0.00708762
+EDIN_T1_DSSD_X55_E -58.0252 0.00707798
+EDIN_T1_DSSD_X56_E -58.1604 0.00709681
+EDIN_T1_DSSD_X57_E -57.9484 0.00706999
+EDIN_T1_DSSD_X58_E -58.6075 0.00715036
+EDIN_T1_DSSD_X59_E -57.6713 0.00703735
+EDIN_T1_DSSD_X60_E -57.8203 0.00705456
+EDIN_T1_DSSD_X61_E -58.3158 0.00711494
+EDIN_T1_DSSD_X62_E -58.225 0.00710301
+EDIN_T1_DSSD_X63_E -58.3159 0.00711583
+EDIN_T1_DSSD_X64_E -60.9382 0.00743605
+EDIN_T1_DSSD_X65_E -61.7124 0.00752921
+EDIN_T1_DSSD_X66_E -61.2888 0.00748085
+EDIN_T1_DSSD_X67_E -61.849 0.00754516
+EDIN_T1_DSSD_X68_E -61.6144 0.00752229
+EDIN_T1_DSSD_X69_E -61.4359 0.00749578
+EDIN_T1_DSSD_X70_E -62.0725 0.00756872
+EDIN_T1_DSSD_X71_E -61.9649 0.00756182
+EDIN_T1_DSSD_X72_E -61.4025 0.00749204
+EDIN_T1_DSSD_X73_E -62.3351 0.0076103
+EDIN_T1_DSSD_X74_E -61.716 0.00753373
+EDIN_T1_DSSD_X75_E -61.8091 0.00754583
+EDIN_T1_DSSD_X76_E -61.6917 0.00752919
+EDIN_T1_DSSD_X77_E -61.6932 0.00752907
+EDIN_T1_DSSD_X78_E -61.7762 0.00753336
+EDIN_T1_DSSD_X79_E -61.6882 0.00753087
+EDIN_T1_DSSD_X80_E -63.4393 0.0077416
+EDIN_T1_DSSD_X81_E -63.5227 0.00775487
+EDIN_T1_DSSD_X82_E -64.1587 0.00782973
+EDIN_T1_DSSD_X83_E -63.9945 0.0078081
+EDIN_T1_DSSD_X84_E -64.0395 0.00781725
+EDIN_T1_DSSD_X85_E -63.6515 0.00777089
+EDIN_T1_DSSD_X86_E -64.4594 0.00786175
+EDIN_T1_DSSD_X87_E -64.6224 0.0078816
+EDIN_T1_DSSD_X88_E -63.8054 0.00779141
+EDIN_T1_DSSD_X89_E -64.3273 0.00785003
+EDIN_T1_DSSD_X90_E -63.2969 0.0077277
+EDIN_T1_DSSD_X91_E -63.3398 0.00773073
+EDIN_T1_DSSD_X92_E -64.83 0.00790919
+EDIN_T1_DSSD_X93_E -63.8665 0.00779592
+EDIN_T1_DSSD_X94_E -63.4522 0.0077484
+EDIN_T1_DSSD_X95_E -63.846 0.00778696
+EDIN_T1_DSSD_X96_E -56.5424 0.00689651
+EDIN_T1_DSSD_X97_E -56.7469 0.00692393
+EDIN_T1_DSSD_X98_E -56.7961 0.00693011
+EDIN_T1_DSSD_X99_E -56.5307 0.00689674
+EDIN_T1_DSSD_X100_E -56.647 0.0069118
+EDIN_T1_DSSD_X101_E -57.1825 0.00697855
+EDIN_T1_DSSD_X102_E -57.4464 0.00700859
+EDIN_T1_DSSD_X103_E -56.52 0.00689815
+EDIN_T1_DSSD_X104_E -56.9595 0.00694911
+EDIN_T1_DSSD_X105_E -56.9963 0.00695535
+EDIN_T1_DSSD_X106_E -57.9167 0.0070665
+EDIN_T1_DSSD_X107_E -57.7395 0.00704685
+EDIN_T1_DSSD_X108_E -57.738 0.00704522
+EDIN_T1_DSSD_X109_E -57.4812 0.00701462
+EDIN_T1_DSSD_X110_E -57.7292 0.00704441
+EDIN_T1_DSSD_X111_E -58.0147 0.00707895
+EDIN_T1_DSSD_X112_E -57.13 0.00697333
+EDIN_T1_DSSD_X113_E -57.2102 0.00698216
+EDIN_T1_DSSD_X114_E -56.8331 0.0069354
+EDIN_T1_DSSD_X115_E -57.7562 0.00704746
+EDIN_T1_DSSD_X116_E -57.2371 0.00698564
+EDIN_T1_DSSD_X117_E -57.2535 0.00698716
+EDIN_T1_DSSD_X118_E -56.4116 0.00688587
+EDIN_T1_DSSD_X119_E -58.4293 0.00712899
+EDIN_T1_DSSD_X120_E -57.5313 0.00701926
+EDIN_T1_DSSD_X121_E -57.8937 0.00706324
+EDIN_T1_DSSD_X122_E -57.779 0.00705032
+EDIN_T1_DSSD_X123_E -57.6016 0.00702717
+EDIN_T1_DSSD_X124_E -57.8107 0.00705219
+EDIN_T1_DSSD_X125_E -57.7972 0.00705126
+EDIN_T1_DSSD_X126_E -56.9888 0.00695535
+EDIN_T1_DSSD_X127_E -57.9332 0.00706948
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..10193fbbfce0632544093cbb19756387b20c2092
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.dispersion
@@ -0,0 +1,128 @@
+EDIN_T1_DSSD_X0_E_Zero_Dispersion 0.207675
+EDIN_T1_DSSD_X1_E_Zero_Dispersion -3.12166
+EDIN_T1_DSSD_X2_E_Zero_Dispersion -1.37277
+EDIN_T1_DSSD_X3_E_Zero_Dispersion -0.696181
+EDIN_T1_DSSD_X4_E_Zero_Dispersion 0.922503
+EDIN_T1_DSSD_X5_E_Zero_Dispersion -3.34158
+EDIN_T1_DSSD_X6_E_Zero_Dispersion -4.69115
+EDIN_T1_DSSD_X7_E_Zero_Dispersion -0.496055
+EDIN_T1_DSSD_X8_E_Zero_Dispersion -0.0470192
+EDIN_T1_DSSD_X9_E_Zero_Dispersion -1.38881
+EDIN_T1_DSSD_X10_E_Zero_Dispersion -3.90049
+EDIN_T1_DSSD_X11_E_Zero_Dispersion -5.07207
+EDIN_T1_DSSD_X12_E_Zero_Dispersion -2.14227
+EDIN_T1_DSSD_X13_E_Zero_Dispersion -0.234495
+EDIN_T1_DSSD_X14_E_Zero_Dispersion -5.82493
+EDIN_T1_DSSD_X15_E_Zero_Dispersion -4.92261
+EDIN_T1_DSSD_X16_E_Zero_Dispersion -6.92733
+EDIN_T1_DSSD_X17_E_Zero_Dispersion -7.09341
+EDIN_T1_DSSD_X18_E_Zero_Dispersion 2.56607
+EDIN_T1_DSSD_X19_E_Zero_Dispersion -5.23495
+EDIN_T1_DSSD_X20_E_Zero_Dispersion -1.75695
+EDIN_T1_DSSD_X21_E_Zero_Dispersion -5.26724
+EDIN_T1_DSSD_X22_E_Zero_Dispersion -1.36292
+EDIN_T1_DSSD_X23_E_Zero_Dispersion -9.07008
+EDIN_T1_DSSD_X24_E_Zero_Dispersion -4.87091
+EDIN_T1_DSSD_X25_E_Zero_Dispersion -5.62481
+EDIN_T1_DSSD_X26_E_Zero_Dispersion -2.54779
+EDIN_T1_DSSD_X27_E_Zero_Dispersion -6.29276
+EDIN_T1_DSSD_X28_E_Zero_Dispersion -1.73424
+EDIN_T1_DSSD_X29_E_Zero_Dispersion -5.12994
+EDIN_T1_DSSD_X30_E_Zero_Dispersion -7.07016
+EDIN_T1_DSSD_X31_E_Zero_Dispersion -7.06883
+EDIN_T1_DSSD_X32_E_Zero_Dispersion -1.75746
+EDIN_T1_DSSD_X33_E_Zero_Dispersion -0.825512
+EDIN_T1_DSSD_X34_E_Zero_Dispersion -4.68256
+EDIN_T1_DSSD_X35_E_Zero_Dispersion 9.36896
+EDIN_T1_DSSD_X36_E_Zero_Dispersion -6.86266
+EDIN_T1_DSSD_X37_E_Zero_Dispersion -5.58357
+EDIN_T1_DSSD_X38_E_Zero_Dispersion -10.959
+EDIN_T1_DSSD_X39_E_Zero_Dispersion -0.0687966
+EDIN_T1_DSSD_X40_E_Zero_Dispersion -9.99784
+EDIN_T1_DSSD_X41_E_Zero_Dispersion -2.44016
+EDIN_T1_DSSD_X42_E_Zero_Dispersion -4.94577
+EDIN_T1_DSSD_X43_E_Zero_Dispersion 7.75454
+EDIN_T1_DSSD_X44_E_Zero_Dispersion -4.41858
+EDIN_T1_DSSD_X45_E_Zero_Dispersion -6.63503
+EDIN_T1_DSSD_X46_E_Zero_Dispersion -8.18599
+EDIN_T1_DSSD_X47_E_Zero_Dispersion -1.05895
+EDIN_T1_DSSD_X48_E_Zero_Dispersion -5.06197
+EDIN_T1_DSSD_X49_E_Zero_Dispersion -6.10946
+EDIN_T1_DSSD_X50_E_Zero_Dispersion -4.98572
+EDIN_T1_DSSD_X51_E_Zero_Dispersion -6.33386
+EDIN_T1_DSSD_X52_E_Zero_Dispersion -5.48155
+EDIN_T1_DSSD_X53_E_Zero_Dispersion -2.95043
+EDIN_T1_DSSD_X54_E_Zero_Dispersion -4.24495
+EDIN_T1_DSSD_X55_E_Zero_Dispersion -5.98882
+EDIN_T1_DSSD_X56_E_Zero_Dispersion -3.2979
+EDIN_T1_DSSD_X57_E_Zero_Dispersion -4.38577
+EDIN_T1_DSSD_X58_E_Zero_Dispersion -4.43741
+EDIN_T1_DSSD_X59_E_Zero_Dispersion -3.03098
+EDIN_T1_DSSD_X60_E_Zero_Dispersion -4.15964
+EDIN_T1_DSSD_X61_E_Zero_Dispersion -4.25378
+EDIN_T1_DSSD_X62_E_Zero_Dispersion -5.22603
+EDIN_T1_DSSD_X63_E_Zero_Dispersion -3.23753
+EDIN_T1_DSSD_X64_E_Zero_Dispersion -2.97709
+EDIN_T1_DSSD_X65_E_Zero_Dispersion -4.39933
+EDIN_T1_DSSD_X66_E_Zero_Dispersion -0.765858
+EDIN_T1_DSSD_X67_E_Zero_Dispersion -5.17521
+EDIN_T1_DSSD_X68_E_Zero_Dispersion 1.08472
+EDIN_T1_DSSD_X69_E_Zero_Dispersion -4.06467
+EDIN_T1_DSSD_X70_E_Zero_Dispersion -9.18942
+EDIN_T1_DSSD_X71_E_Zero_Dispersion -2.43993
+EDIN_T1_DSSD_X72_E_Zero_Dispersion -3.6973
+EDIN_T1_DSSD_X73_E_Zero_Dispersion 1.11852
+EDIN_T1_DSSD_X74_E_Zero_Dispersion 0.0432011
+EDIN_T1_DSSD_X75_E_Zero_Dispersion 0.838378
+EDIN_T1_DSSD_X76_E_Zero_Dispersion -1.66996
+EDIN_T1_DSSD_X77_E_Zero_Dispersion -1.99084
+EDIN_T1_DSSD_X78_E_Zero_Dispersion -8.34532
+EDIN_T1_DSSD_X79_E_Zero_Dispersion 0.627745
+EDIN_T1_DSSD_X80_E_Zero_Dispersion -2.60163
+EDIN_T1_DSSD_X81_E_Zero_Dispersion 0.662357
+EDIN_T1_DSSD_X82_E_Zero_Dispersion -2.24635
+EDIN_T1_DSSD_X83_E_Zero_Dispersion -3.90974
+EDIN_T1_DSSD_X84_E_Zero_Dispersion -0.0795075
+EDIN_T1_DSSD_X85_E_Zero_Dispersion 0.988812
+EDIN_T1_DSSD_X86_E_Zero_Dispersion -7.12063
+EDIN_T1_DSSD_X87_E_Zero_Dispersion -7.15203
+EDIN_T1_DSSD_X88_E_Zero_Dispersion 2.79429
+EDIN_T1_DSSD_X89_E_Zero_Dispersion -2.5303
+EDIN_T1_DSSD_X90_E_Zero_Dispersion 1.09268
+EDIN_T1_DSSD_X91_E_Zero_Dispersion -1.25755
+EDIN_T1_DSSD_X92_E_Zero_Dispersion -4.78431
+EDIN_T1_DSSD_X93_E_Zero_Dispersion -0.296209
+EDIN_T1_DSSD_X94_E_Zero_Dispersion 2.9226
+EDIN_T1_DSSD_X95_E_Zero_Dispersion -7.09196
+EDIN_T1_DSSD_X96_E_Zero_Dispersion -6.70346
+EDIN_T1_DSSD_X97_E_Zero_Dispersion -3.77243
+EDIN_T1_DSSD_X98_E_Zero_Dispersion -3.55
+EDIN_T1_DSSD_X99_E_Zero_Dispersion -4.7306
+EDIN_T1_DSSD_X100_E_Zero_Dispersion -3.70206
+EDIN_T1_DSSD_X101_E_Zero_Dispersion -2.03397
+EDIN_T1_DSSD_X102_E_Zero_Dispersion -4.56362
+EDIN_T1_DSSD_X103_E_Zero_Dispersion -1.50341
+EDIN_T1_DSSD_X104_E_Zero_Dispersion -4.65139
+EDIN_T1_DSSD_X105_E_Zero_Dispersion -2.58858
+EDIN_T1_DSSD_X106_E_Zero_Dispersion -3.95507
+EDIN_T1_DSSD_X107_E_Zero_Dispersion -1.66488
+EDIN_T1_DSSD_X108_E_Zero_Dispersion -3.35039
+EDIN_T1_DSSD_X109_E_Zero_Dispersion -2.48819
+EDIN_T1_DSSD_X110_E_Zero_Dispersion -3.0314
+EDIN_T1_DSSD_X111_E_Zero_Dispersion -3.38841
+EDIN_T1_DSSD_X112_E_Zero_Dispersion -0.641331
+EDIN_T1_DSSD_X113_E_Zero_Dispersion -1.76825
+EDIN_T1_DSSD_X114_E_Zero_Dispersion -2.63496
+EDIN_T1_DSSD_X115_E_Zero_Dispersion -3.31573
+EDIN_T1_DSSD_X116_E_Zero_Dispersion -1.54376
+EDIN_T1_DSSD_X117_E_Zero_Dispersion -2.102
+EDIN_T1_DSSD_X118_E_Zero_Dispersion -0.370533
+EDIN_T1_DSSD_X119_E_Zero_Dispersion -4.01352
+EDIN_T1_DSSD_X120_E_Zero_Dispersion -4.20468
+EDIN_T1_DSSD_X121_E_Zero_Dispersion -4.47258
+EDIN_T1_DSSD_X122_E_Zero_Dispersion -3.22979
+EDIN_T1_DSSD_X123_E_Zero_Dispersion -4.98259
+EDIN_T1_DSSD_X124_E_Zero_Dispersion -5.54173
+EDIN_T1_DSSD_X125_E_Zero_Dispersion -4.71733
+EDIN_T1_DSSD_X126_E_Zero_Dispersion -1.51981
+EDIN_T1_DSSD_X127_E_Zero_Dispersion -2.8288
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/latex/double_alpha_run_0274_X_MM1_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/latex/double_alpha_run_0274_X_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..ee3cd6616b02eefd3518a1dfea73c68f5b494d88
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/latex/double_alpha_run_0274_X_MM1_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.04129
+
+Sigma fit sigma: 0.593411
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..384e5d0d2f2bf277a7e1dec2248d008d473ee1ed
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_X0_E -62.5366 0.00763956
+EDIN_T2_DSSD_X1_E -62.6099 0.00763888
+EDIN_T2_DSSD_X2_E -62.823 0.00766708
+EDIN_T2_DSSD_X3_E -62.257 0.00759549
+EDIN_T2_DSSD_X4_E -62.0597 0.00757342
+EDIN_T2_DSSD_X5_E -62.5307 0.00763323
+EDIN_T2_DSSD_X6_E -62.3807 0.00761398
+EDIN_T2_DSSD_X7_E -62.9375 0.0076789
+EDIN_T2_DSSD_X8_E -62.9224 0.00767896
+EDIN_T2_DSSD_X9_E -62.1614 0.00758679
+EDIN_T2_DSSD_X10_E -62.4417 0.00762037
+EDIN_T2_DSSD_X11_E -62.4249 0.0076183
+EDIN_T2_DSSD_X12_E -62.5094 0.00763316
+EDIN_T2_DSSD_X13_E -62.5081 0.0076287
+EDIN_T2_DSSD_X14_E -62.5989 0.00763997
+EDIN_T2_DSSD_X15_E -63.3009 0.00773126
+EDIN_T2_DSSD_X16_E -62.2936 0.00760052
+EDIN_T2_DSSD_X17_E -61.672 0.00752836
+EDIN_T2_DSSD_X18_E -61.6376 0.00752157
+EDIN_T2_DSSD_X19_E -61.5695 0.00751193
+EDIN_T2_DSSD_X20_E -61.5665 0.0075144
+EDIN_T2_DSSD_X21_E -62.4688 0.00762107
+EDIN_T2_DSSD_X22_E -62.1354 0.00758375
+EDIN_T2_DSSD_X23_E -61.8155 0.00754313
+EDIN_T2_DSSD_X24_E -61.4306 0.00749834
+EDIN_T2_DSSD_X25_E -61.9883 0.00756594
+EDIN_T2_DSSD_X26_E -61.8156 0.00754772
+EDIN_T2_DSSD_X27_E -61.7444 0.00753541
+EDIN_T2_DSSD_X28_E -61.7334 0.00753213
+EDIN_T2_DSSD_X29_E -61.4228 0.00749322
+EDIN_T2_DSSD_X30_E -62.1977 0.00759248
+EDIN_T2_DSSD_X31_E -61.6447 0.00752122
+EDIN_T2_DSSD_X32_E -58.935 0.00719311
+EDIN_T2_DSSD_X33_E -58.1147 0.00709182
+EDIN_T2_DSSD_X34_E -58.5596 0.007148
+EDIN_T2_DSSD_X35_E -58.5961 0.00714764
+EDIN_T2_DSSD_X36_E -58.3105 0.00711447
+EDIN_T2_DSSD_X37_E -58.0487 0.00708602
+EDIN_T2_DSSD_X38_E -58.1502 0.0070988
+EDIN_T2_DSSD_X39_E -57.7857 0.00705326
+EDIN_T2_DSSD_X40_E -57.4608 0.00701359
+EDIN_T2_DSSD_X41_E -58.5375 0.00714392
+EDIN_T2_DSSD_X42_E -59.0118 0.0071977
+EDIN_T2_DSSD_X43_E -58.2242 0.00710688
+EDIN_T2_DSSD_X44_E -58.3352 0.00712354
+EDIN_T2_DSSD_X45_E -58.3114 0.00712245
+EDIN_T2_DSSD_X46_E -58.4466 0.00713226
+EDIN_T2_DSSD_X47_E -58.5104 0.00713991
+EDIN_T2_DSSD_X48_E -57.8607 0.00705903
+EDIN_T2_DSSD_X49_E -57.1886 0.00697896
+EDIN_T2_DSSD_X50_E -58.0113 0.00708101
+EDIN_T2_DSSD_X51_E -57.7279 0.00704713
+EDIN_T2_DSSD_X52_E -57.4556 0.00701364
+EDIN_T2_DSSD_X53_E -57.1649 0.00697518
+EDIN_T2_DSSD_X54_E -57.8984 0.00706521
+EDIN_T2_DSSD_X55_E -57.63 0.00703352
+EDIN_T2_DSSD_X56_E -58.0258 0.00707928
+EDIN_T2_DSSD_X57_E -57.4642 0.00701702
+EDIN_T2_DSSD_X58_E -58.132 0.00709186
+EDIN_T2_DSSD_X59_E -57.1561 0.00697346
+EDIN_T2_DSSD_X60_E -57.6188 0.00702948
+EDIN_T2_DSSD_X61_E -56.6504 0.00691451
+EDIN_T2_DSSD_X62_E -57.3571 0.00700169
+EDIN_T2_DSSD_X63_E -57.7666 0.00705029
+EDIN_T2_DSSD_X64_E -63.3097 0.00772569
+EDIN_T2_DSSD_X65_E -64.9047 0.0079212
+EDIN_T2_DSSD_X66_E -64.0703 0.0078168
+EDIN_T2_DSSD_X67_E -63.7681 0.00778096
+EDIN_T2_DSSD_X68_E 7.39123 0.851608
+EDIN_T2_DSSD_X69_E -64.3545 0.00785369
+EDIN_T2_DSSD_X70_E -63.7255 0.00777554
+EDIN_T2_DSSD_X71_E -63.4889 0.00774685
+EDIN_T2_DSSD_X72_E -63.5163 0.00774852
+EDIN_T2_DSSD_X73_E -63.1974 0.00771009
+EDIN_T2_DSSD_X74_E -63.9963 0.00780668
+EDIN_T2_DSSD_X75_E -63.7405 0.0077769
+EDIN_T2_DSSD_X76_E -63.7719 0.00778584
+EDIN_T2_DSSD_X77_E -63.7168 0.00777911
+EDIN_T2_DSSD_X78_E -63.5337 0.00775379
+EDIN_T2_DSSD_X79_E -63.3949 0.00773821
+EDIN_T2_DSSD_X80_E -63.4539 0.0077397
+EDIN_T2_DSSD_X81_E -63.4815 0.00774493
+EDIN_T2_DSSD_X82_E -63.2698 0.00771876
+EDIN_T2_DSSD_X83_E -63.3573 0.00772905
+EDIN_T2_DSSD_X84_E -64.1625 0.00782699
+EDIN_T2_DSSD_X85_E -64.0116 0.00780771
+EDIN_T2_DSSD_X86_E -64.0772 0.00781423
+EDIN_T2_DSSD_X87_E -64.0599 0.00781546
+EDIN_T2_DSSD_X88_E -63.251 0.00771539
+EDIN_T2_DSSD_X89_E -63.6831 0.00777027
+EDIN_T2_DSSD_X90_E -63.3564 0.00773379
+EDIN_T2_DSSD_X91_E -63.787 0.00778135
+EDIN_T2_DSSD_X92_E -63.3512 0.00773017
+EDIN_T2_DSSD_X93_E -64.7604 0.00790006
+EDIN_T2_DSSD_X94_E -64.0132 0.00780733
+EDIN_T2_DSSD_X95_E -63.8549 0.00778867
+EDIN_T2_DSSD_X96_E -59.0282 0.00720288
+EDIN_T2_DSSD_X97_E -58.4936 0.00713811
+EDIN_T2_DSSD_X98_E -58.4712 0.0071327
+EDIN_T2_DSSD_X99_E -58.4859 0.00713993
+EDIN_T2_DSSD_X100_E -59.3214 0.00723965
+EDIN_T2_DSSD_X101_E -59.3697 0.00724433
+EDIN_T2_DSSD_X102_E -58.6853 0.00716351
+EDIN_T2_DSSD_X103_E -59.023 0.00720218
+EDIN_T2_DSSD_X104_E -58.8858 0.00718901
+EDIN_T2_DSSD_X105_E -59.0599 0.00720698
+EDIN_T2_DSSD_X106_E -58.7339 0.00716764
+EDIN_T2_DSSD_X107_E -59.1791 0.00721879
+EDIN_T2_DSSD_X108_E -58.8627 0.00718154
+EDIN_T2_DSSD_X109_E -60.4055 0.00737306
+EDIN_T2_DSSD_X110_E -59.0673 0.00720612
+EDIN_T2_DSSD_X111_E -58.3996 0.00712943
+EDIN_T2_DSSD_X112_E -59.447 0.00725194
+EDIN_T2_DSSD_X113_E -59.4328 0.00725039
+EDIN_T2_DSSD_X114_E -59.8168 0.00729738
+EDIN_T2_DSSD_X115_E -59.2689 0.0072298
+EDIN_T2_DSSD_X116_E -59.8131 0.00729784
+EDIN_T2_DSSD_X117_E -59.9981 0.00732151
+EDIN_T2_DSSD_X118_E -59.5137 0.00726182
+EDIN_T2_DSSD_X119_E -59.3863 0.00724848
+EDIN_T2_DSSD_X120_E -59.9252 0.0073143
+EDIN_T2_DSSD_X121_E -58.732 0.00716699
+EDIN_T2_DSSD_X122_E -59.0078 0.00720103
+EDIN_T2_DSSD_X123_E -59.1915 0.00722497
+EDIN_T2_DSSD_X124_E -59.0543 0.00720394
+EDIN_T2_DSSD_X125_E -58.9019 0.00718805
+EDIN_T2_DSSD_X126_E -59.23 0.00722589
+EDIN_T2_DSSD_X127_E -59.1923 0.00722341
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..12312b71ec2841ca5400ce05e625e399d0d46b1e
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.dispersion
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_X0_E_Zero_Dispersion 6.11899
+EDIN_T2_DSSD_X1_E_Zero_Dispersion -4.20805
+EDIN_T2_DSSD_X2_E_Zero_Dispersion -1.86488
+EDIN_T2_DSSD_X3_E_Zero_Dispersion -4.58098
+EDIN_T2_DSSD_X4_E_Zero_Dispersion -2.40657
+EDIN_T2_DSSD_X5_E_Zero_Dispersion 0.0920053
+EDIN_T2_DSSD_X6_E_Zero_Dispersion -0.910839
+EDIN_T2_DSSD_X7_E_Zero_Dispersion -4.15844
+EDIN_T2_DSSD_X8_E_Zero_Dispersion -2.1288
+EDIN_T2_DSSD_X9_E_Zero_Dispersion -1.37912
+EDIN_T2_DSSD_X10_E_Zero_Dispersion -2.05567
+EDIN_T2_DSSD_X11_E_Zero_Dispersion -2.07325
+EDIN_T2_DSSD_X12_E_Zero_Dispersion 2.81111
+EDIN_T2_DSSD_X13_E_Zero_Dispersion -1.80673
+EDIN_T2_DSSD_X14_E_Zero_Dispersion -1.60517
+EDIN_T2_DSSD_X15_E_Zero_Dispersion 4.34084
+EDIN_T2_DSSD_X16_E_Zero_Dispersion -3.96451
+EDIN_T2_DSSD_X17_E_Zero_Dispersion 0.0445557
+EDIN_T2_DSSD_X18_E_Zero_Dispersion -2.78144
+EDIN_T2_DSSD_X19_E_Zero_Dispersion -4.22976
+EDIN_T2_DSSD_X20_E_Zero_Dispersion -1.13585
+EDIN_T2_DSSD_X21_E_Zero_Dispersion -4.86085
+EDIN_T2_DSSD_X22_E_Zero_Dispersion -1.23012
+EDIN_T2_DSSD_X23_E_Zero_Dispersion -2.93315
+EDIN_T2_DSSD_X24_E_Zero_Dispersion -0.567119
+EDIN_T2_DSSD_X25_E_Zero_Dispersion -1.08228
+EDIN_T2_DSSD_X26_E_Zero_Dispersion 2.03054
+EDIN_T2_DSSD_X27_E_Zero_Dispersion -1.8977
+EDIN_T2_DSSD_X28_E_Zero_Dispersion -4.00109
+EDIN_T2_DSSD_X29_E_Zero_Dispersion -5.10994
+EDIN_T2_DSSD_X30_E_Zero_Dispersion -0.0205928
+EDIN_T2_DSSD_X31_E_Zero_Dispersion -4.09755
+EDIN_T2_DSSD_X32_E_Zero_Dispersion -1.25514
+EDIN_T2_DSSD_X33_E_Zero_Dispersion -2.61227
+EDIN_T2_DSSD_X34_E_Zero_Dispersion -0.440474
+EDIN_T2_DSSD_X35_E_Zero_Dispersion -5.95833
+EDIN_T2_DSSD_X36_E_Zero_Dispersion -4.04569
+EDIN_T2_DSSD_X37_E_Zero_Dispersion 0.0077729
+EDIN_T2_DSSD_X38_E_Zero_Dispersion 0.445825
+EDIN_T2_DSSD_X39_E_Zero_Dispersion -0.760995
+EDIN_T2_DSSD_X40_E_Zero_Dispersion -0.779193
+EDIN_T2_DSSD_X41_E_Zero_Dispersion -2.03756
+EDIN_T2_DSSD_X42_E_Zero_Dispersion -6.7056
+EDIN_T2_DSSD_X43_E_Zero_Dispersion -0.653277
+EDIN_T2_DSSD_X44_E_Zero_Dispersion 2.92757
+EDIN_T2_DSSD_X45_E_Zero_Dispersion 5.00509
+EDIN_T2_DSSD_X46_E_Zero_Dispersion -2.68399
+EDIN_T2_DSSD_X47_E_Zero_Dispersion -2.83135
+EDIN_T2_DSSD_X48_E_Zero_Dispersion -4.68951
+EDIN_T2_DSSD_X49_E_Zero_Dispersion -2.42602
+EDIN_T2_DSSD_X50_E_Zero_Dispersion -0.516333
+EDIN_T2_DSSD_X51_E_Zero_Dispersion 0.312368
+EDIN_T2_DSSD_X52_E_Zero_Dispersion 0.0122945
+EDIN_T2_DSSD_X53_E_Zero_Dispersion -3.47949
+EDIN_T2_DSSD_X54_E_Zero_Dispersion -2.87002
+EDIN_T2_DSSD_X55_E_Zero_Dispersion -1.61444
+EDIN_T2_DSSD_X56_E_Zero_Dispersion -4.5746
+EDIN_T2_DSSD_X57_E_Zero_Dispersion 2.74437
+EDIN_T2_DSSD_X58_E_Zero_Dispersion -5.00423
+EDIN_T2_DSSD_X59_E_Zero_Dispersion -4.23142
+EDIN_T2_DSSD_X60_E_Zero_Dispersion -4.72474
+EDIN_T2_DSSD_X61_E_Zero_Dispersion -0.975189
+EDIN_T2_DSSD_X62_E_Zero_Dispersion 0.109618
+EDIN_T2_DSSD_X63_E_Zero_Dispersion -1.50696
+EDIN_T2_DSSD_X64_E_Zero_Dispersion -2.70853
+EDIN_T2_DSSD_X65_E_Zero_Dispersion -1.80166
+EDIN_T2_DSSD_X66_E_Zero_Dispersion -4.48537
+EDIN_T2_DSSD_X67_E_Zero_Dispersion -3.40495
+EDIN_T2_DSSD_X68_E_Zero_Dispersion 8200.68
+EDIN_T2_DSSD_X69_E_Zero_Dispersion -2.17963
+EDIN_T2_DSSD_X70_E_Zero_Dispersion -3.6384
+EDIN_T2_DSSD_X71_E_Zero_Dispersion -3.43843
+EDIN_T2_DSSD_X72_E_Zero_Dispersion -5.22173
+EDIN_T2_DSSD_X73_E_Zero_Dispersion -4.72123
+EDIN_T2_DSSD_X74_E_Zero_Dispersion -5.63015
+EDIN_T2_DSSD_X75_E_Zero_Dispersion -4.13665
+EDIN_T2_DSSD_X76_E_Zero_Dispersion 1.24523
+EDIN_T2_DSSD_X77_E_Zero_Dispersion 1.23439
+EDIN_T2_DSSD_X78_E_Zero_Dispersion -1.89727
+EDIN_T2_DSSD_X79_E_Zero_Dispersion -0.447251
+EDIN_T2_DSSD_X80_E_Zero_Dispersion -6.49207
+EDIN_T2_DSSD_X81_E_Zero_Dispersion -4.52581
+EDIN_T2_DSSD_X82_E_Zero_Dispersion -4.8822
+EDIN_T2_DSSD_X83_E_Zero_Dispersion -5.2954
+EDIN_T2_DSSD_X84_E_Zero_Dispersion -5.59878
+EDIN_T2_DSSD_X85_E_Zero_Dispersion -6.51265
+EDIN_T2_DSSD_X86_E_Zero_Dispersion -8.06397
+EDIN_T2_DSSD_X87_E_Zero_Dispersion -4.56011
+EDIN_T2_DSSD_X88_E_Zero_Dispersion -6.02613
+EDIN_T2_DSSD_X89_E_Zero_Dispersion -3.74084
+EDIN_T2_DSSD_X90_E_Zero_Dispersion -0.158172
+EDIN_T2_DSSD_X91_E_Zero_Dispersion -5.41945
+EDIN_T2_DSSD_X92_E_Zero_Dispersion -3.32195
+EDIN_T2_DSSD_X93_E_Zero_Dispersion -5.45422
+EDIN_T2_DSSD_X94_E_Zero_Dispersion -7.11956
+EDIN_T2_DSSD_X95_E_Zero_Dispersion -6.43228
+EDIN_T2_DSSD_X96_E_Zero_Dispersion -3.0892
+EDIN_T2_DSSD_X97_E_Zero_Dispersion -2.5437
+EDIN_T2_DSSD_X98_E_Zero_Dispersion -5.63205
+EDIN_T2_DSSD_X99_E_Zero_Dispersion 0.622242
+EDIN_T2_DSSD_X100_E_Zero_Dispersion -1.95818
+EDIN_T2_DSSD_X101_E_Zero_Dispersion -3.3241
+EDIN_T2_DSSD_X102_E_Zero_Dispersion -0.260072
+EDIN_T2_DSSD_X103_E_Zero_Dispersion -3.16489
+EDIN_T2_DSSD_X104_E_Zero_Dispersion 0.907419
+EDIN_T2_DSSD_X105_E_Zero_Dispersion -2.81874
+EDIN_T2_DSSD_X106_E_Zero_Dispersion -2.31876
+EDIN_T2_DSSD_X107_E_Zero_Dispersion -5.91743
+EDIN_T2_DSSD_X108_E_Zero_Dispersion -4.3861
+EDIN_T2_DSSD_X109_E_Zero_Dispersion -0.733514
+EDIN_T2_DSSD_X110_E_Zero_Dispersion -4.8252
+EDIN_T2_DSSD_X111_E_Zero_Dispersion 0.653802
+EDIN_T2_DSSD_X112_E_Zero_Dispersion -5.38964
+EDIN_T2_DSSD_X113_E_Zero_Dispersion -5.18522
+EDIN_T2_DSSD_X114_E_Zero_Dispersion -5.01951
+EDIN_T2_DSSD_X115_E_Zero_Dispersion -5.85542
+EDIN_T2_DSSD_X116_E_Zero_Dispersion -3.99512
+EDIN_T2_DSSD_X117_E_Zero_Dispersion -2.76824
+EDIN_T2_DSSD_X118_E_Zero_Dispersion -3.42856
+EDIN_T2_DSSD_X119_E_Zero_Dispersion -0.924597
+EDIN_T2_DSSD_X120_E_Zero_Dispersion -0.889406
+EDIN_T2_DSSD_X121_E_Zero_Dispersion -2.79347
+EDIN_T2_DSSD_X122_E_Zero_Dispersion -2.34855
+EDIN_T2_DSSD_X123_E_Zero_Dispersion -0.634432
+EDIN_T2_DSSD_X124_E_Zero_Dispersion -5.50355
+EDIN_T2_DSSD_X125_E_Zero_Dispersion -2.4172
+EDIN_T2_DSSD_X126_E_Zero_Dispersion -4.91707
+EDIN_T2_DSSD_X127_E_Zero_Dispersion -2.51241
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/latex/double_alpha_run_0274_X_MM2_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/latex/double_alpha_run_0274_X_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..72a86ca5d7af8a6a868f60c3e371f12a8a3b77ee
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/latex/double_alpha_run_0274_X_MM2_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+68 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.14784
+
+Sigma fit sigma: 0.618476
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..cbaba59933a3ceac2638adeb0621b2d6f7353da3
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_X0_E -61.7475 0.00754365
+EDIN_T3_DSSD_X1_E -61.3279 0.00749158
+EDIN_T3_DSSD_X2_E -61.6596 0.0075318
+EDIN_T3_DSSD_X3_E -61.7171 0.00753951
+EDIN_T3_DSSD_X4_E -61.4553 0.00750656
+EDIN_T3_DSSD_X5_E -61.3762 0.00749656
+EDIN_T3_DSSD_X6_E -61.5322 0.00751647
+EDIN_T3_DSSD_X7_E -61.2036 0.0074747
+EDIN_T3_DSSD_X8_E -61.3418 0.00749155
+EDIN_T3_DSSD_X9_E -61.3643 0.00749498
+EDIN_T3_DSSD_X10_E -61.5146 0.00751027
+EDIN_T3_DSSD_X11_E -62.5512 0.00763887
+EDIN_T3_DSSD_X12_E -61.3127 0.00748672
+EDIN_T3_DSSD_X13_E -61.5248 0.00751198
+EDIN_T3_DSSD_X14_E -61.2067 0.00747599
+EDIN_T3_DSSD_X15_E -62.199 0.00759553
+EDIN_T3_DSSD_X16_E -63.291 0.00772834
+EDIN_T3_DSSD_X17_E -62.6431 0.00764987
+EDIN_T3_DSSD_X18_E -62.5264 0.00763546
+EDIN_T3_DSSD_X19_E -62.54 0.00763491
+EDIN_T3_DSSD_X20_E -62.2248 0.00759793
+EDIN_T3_DSSD_X21_E -62.5934 0.00764571
+EDIN_T3_DSSD_X22_E -63.1363 0.00771819
+EDIN_T3_DSSD_X23_E -63.378 0.00773985
+EDIN_T3_DSSD_X24_E -62.0995 0.00758736
+EDIN_T3_DSSD_X25_E -63.1387 0.00770998
+EDIN_T3_DSSD_X26_E -63.0598 0.00770204
+EDIN_T3_DSSD_X27_E -62.7893 0.00766932
+EDIN_T3_DSSD_X28_E -62.9673 0.00769104
+EDIN_T3_DSSD_X29_E -62.9568 0.00769116
+EDIN_T3_DSSD_X30_E -63.9027 0.00780659
+EDIN_T3_DSSD_X31_E -62.8794 0.00768443
+EDIN_T3_DSSD_X32_E -58.1027 0.0071075
+EDIN_T3_DSSD_X33_E -57.9939 0.00709412
+EDIN_T3_DSSD_X34_E -56.9563 0.00696692
+EDIN_T3_DSSD_X35_E -57.2356 0.00699925
+EDIN_T3_DSSD_X36_E -57.8181 0.00706923
+EDIN_T3_DSSD_X37_E -58.0886 0.00710147
+EDIN_T3_DSSD_X38_E -58.2613 0.00712383
+EDIN_T3_DSSD_X39_E -57.8152 0.00706775
+EDIN_T3_DSSD_X40_E -58.4241 0.00714095
+EDIN_T3_DSSD_X41_E -57.8933 0.0070794
+EDIN_T3_DSSD_X42_E -58.0439 0.00709692
+EDIN_T3_DSSD_X43_E 7.39123 0.851608
+EDIN_T3_DSSD_X44_E -58.3014 0.00712825
+EDIN_T3_DSSD_X45_E -58.706 0.00717278
+EDIN_T3_DSSD_X46_E -58.282 0.0071191
+EDIN_T3_DSSD_X47_E -58.5478 0.00715315
+EDIN_T3_DSSD_X48_E -56.8326 0.00694268
+EDIN_T3_DSSD_X49_E -56.5904 0.00691381
+EDIN_T3_DSSD_X50_E -56.2694 0.00687536
+EDIN_T3_DSSD_X51_E -56.3974 0.00689359
+EDIN_T3_DSSD_X52_E -56.0544 0.00685429
+EDIN_T3_DSSD_X53_E -56.5244 0.00691084
+EDIN_T3_DSSD_X54_E -55.9116 0.00683458
+EDIN_T3_DSSD_X55_E -56.3099 0.00688659
+EDIN_T3_DSSD_X56_E -56.8089 0.00694464
+EDIN_T3_DSSD_X57_E -55.5634 0.00679492
+EDIN_T3_DSSD_X58_E -56.3701 0.00689601
+EDIN_T3_DSSD_X59_E -56.0208 0.00685211
+EDIN_T3_DSSD_X60_E -55.2121 0.00675438
+EDIN_T3_DSSD_X61_E -55.8207 0.00682687
+EDIN_T3_DSSD_X62_E -55.6304 0.00680525
+EDIN_T3_DSSD_X63_E -55.1928 0.00675491
+EDIN_T3_DSSD_X64_E -63.9696 0.00780931
+EDIN_T3_DSSD_X65_E -63.3555 0.00773855
+EDIN_T3_DSSD_X66_E -63.1771 0.00771551
+EDIN_T3_DSSD_X67_E -63.5098 0.00775306
+EDIN_T3_DSSD_X68_E -63.3882 0.00773862
+EDIN_T3_DSSD_X69_E -63.0461 0.00769634
+EDIN_T3_DSSD_X70_E -64.0234 0.00781715
+EDIN_T3_DSSD_X71_E -62.1448 0.00758861
+EDIN_T3_DSSD_X72_E -62.356 0.00761402
+EDIN_T3_DSSD_X73_E -62.6019 0.00764474
+EDIN_T3_DSSD_X74_E -62.8733 0.00767594
+EDIN_T3_DSSD_X75_E -63.1537 0.00771003
+EDIN_T3_DSSD_X76_E -63.7982 0.00778975
+EDIN_T3_DSSD_X77_E -62.1866 0.0075927
+EDIN_T3_DSSD_X78_E -62.3106 0.00760775
+EDIN_T3_DSSD_X79_E -62.7171 0.00765713
+EDIN_T3_DSSD_X80_E -62.2113 0.0075955
+EDIN_T3_DSSD_X81_E -62.4889 0.00763009
+EDIN_T3_DSSD_X82_E -62.433 0.00762271
+EDIN_T3_DSSD_X83_E -62.3816 0.00761606
+EDIN_T3_DSSD_X84_E -61.8228 0.0075474
+EDIN_T3_DSSD_X85_E -62.0885 0.00758168
+EDIN_T3_DSSD_X86_E -62.1847 0.00759208
+EDIN_T3_DSSD_X87_E -61.7134 0.00753717
+EDIN_T3_DSSD_X88_E -61.9746 0.00756738
+EDIN_T3_DSSD_X89_E -62.3044 0.00760928
+EDIN_T3_DSSD_X90_E -62.1099 0.00758286
+EDIN_T3_DSSD_X91_E -61.5959 0.00752284
+EDIN_T3_DSSD_X92_E -62.3641 0.00761711
+EDIN_T3_DSSD_X93_E -62.2005 0.00759558
+EDIN_T3_DSSD_X94_E -61.8202 0.00754895
+EDIN_T3_DSSD_X95_E -62.1497 0.00758769
+EDIN_T3_DSSD_X96_E -55.9035 0.00682462
+EDIN_T3_DSSD_X97_E -55.4954 0.00677857
+EDIN_T3_DSSD_X98_E -54.9585 0.00670973
+EDIN_T3_DSSD_X99_E -55.3775 0.00676383
+EDIN_T3_DSSD_X100_E -55.7181 0.00680553
+EDIN_T3_DSSD_X101_E -55.6337 0.00679291
+EDIN_T3_DSSD_X102_E -55.6556 0.00679656
+EDIN_T3_DSSD_X103_E -54.9843 0.00671304
+EDIN_T3_DSSD_X104_E -55.3714 0.00675929
+EDIN_T3_DSSD_X105_E -55.6203 0.00679297
+EDIN_T3_DSSD_X106_E -55.651 0.00679392
+EDIN_T3_DSSD_X107_E -55.5623 0.00678286
+EDIN_T3_DSSD_X108_E -56.4102 0.00689092
+EDIN_T3_DSSD_X109_E -55.8281 0.00681951
+EDIN_T3_DSSD_X110_E -55.6717 0.00679537
+EDIN_T3_DSSD_X111_E -55.5708 0.0067833
+EDIN_T3_DSSD_X112_E -57.0662 0.00697157
+EDIN_T3_DSSD_X113_E -56.5305 0.00690489
+EDIN_T3_DSSD_X114_E -57.4322 0.00701067
+EDIN_T3_DSSD_X115_E -56.6085 0.00691311
+EDIN_T3_DSSD_X116_E -57.6268 0.00703901
+EDIN_T3_DSSD_X117_E -56.8313 0.00694126
+EDIN_T3_DSSD_X118_E -57.0933 0.00697294
+EDIN_T3_DSSD_X119_E -55.8642 0.00682494
+EDIN_T3_DSSD_X120_E -56.4873 0.00689798
+EDIN_T3_DSSD_X121_E -57.4399 0.00701642
+EDIN_T3_DSSD_X122_E -57.0316 0.00696599
+EDIN_T3_DSSD_X123_E -56.5839 0.00691232
+EDIN_T3_DSSD_X124_E -57.4735 0.0070168
+EDIN_T3_DSSD_X125_E -56.4109 0.00688805
+EDIN_T3_DSSD_X126_E -57.6384 0.00703652
+EDIN_T3_DSSD_X127_E -56.1553 0.00685853
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..6baf0c6c46733b7bf3a4379e364e7c51a8f11013
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.dispersion
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_X0_E_Zero_Dispersion 6.63254
+EDIN_T3_DSSD_X1_E_Zero_Dispersion 5.74949
+EDIN_T3_DSSD_X2_E_Zero_Dispersion 5.42348
+EDIN_T3_DSSD_X3_E_Zero_Dispersion 6.18133
+EDIN_T3_DSSD_X4_E_Zero_Dispersion 5.11964
+EDIN_T3_DSSD_X5_E_Zero_Dispersion 4.75466
+EDIN_T3_DSSD_X6_E_Zero_Dispersion 5.68136
+EDIN_T3_DSSD_X7_E_Zero_Dispersion 3.9033
+EDIN_T3_DSSD_X8_E_Zero_Dispersion 3.86185
+EDIN_T3_DSSD_X9_E_Zero_Dispersion 4.605
+EDIN_T3_DSSD_X10_E_Zero_Dispersion 1.26815
+EDIN_T3_DSSD_X11_E_Zero_Dispersion 3.4552
+EDIN_T3_DSSD_X12_E_Zero_Dispersion 2.46614
+EDIN_T3_DSSD_X13_E_Zero_Dispersion 1.77666
+EDIN_T3_DSSD_X14_E_Zero_Dispersion 4.88605
+EDIN_T3_DSSD_X15_E_Zero_Dispersion 3.10354
+EDIN_T3_DSSD_X16_E_Zero_Dispersion 2.53841
+EDIN_T3_DSSD_X17_E_Zero_Dispersion 3.22056
+EDIN_T3_DSSD_X18_E_Zero_Dispersion 3.04206
+EDIN_T3_DSSD_X19_E_Zero_Dispersion 0.685915
+EDIN_T3_DSSD_X20_E_Zero_Dispersion 2.29495
+EDIN_T3_DSSD_X21_E_Zero_Dispersion 5.26527
+EDIN_T3_DSSD_X22_E_Zero_Dispersion 11.8048
+EDIN_T3_DSSD_X23_E_Zero_Dispersion 3.45973
+EDIN_T3_DSSD_X24_E_Zero_Dispersion 7.39581
+EDIN_T3_DSSD_X25_E_Zero_Dispersion 2.78975
+EDIN_T3_DSSD_X26_E_Zero_Dispersion 4.58737
+EDIN_T3_DSSD_X27_E_Zero_Dispersion 4.92463
+EDIN_T3_DSSD_X28_E_Zero_Dispersion 4.89984
+EDIN_T3_DSSD_X29_E_Zero_Dispersion 6.39284
+EDIN_T3_DSSD_X30_E_Zero_Dispersion 6.26056
+EDIN_T3_DSSD_X31_E_Zero_Dispersion 9.2975
+EDIN_T3_DSSD_X32_E_Zero_Dispersion 17.1538
+EDIN_T3_DSSD_X33_E_Zero_Dispersion 17.0711
+EDIN_T3_DSSD_X34_E_Zero_Dispersion 16.7475
+EDIN_T3_DSSD_X35_E_Zero_Dispersion 14.6113
+EDIN_T3_DSSD_X36_E_Zero_Dispersion 13.1613
+EDIN_T3_DSSD_X37_E_Zero_Dispersion 12.1957
+EDIN_T3_DSSD_X38_E_Zero_Dispersion 13.6338
+EDIN_T3_DSSD_X39_E_Zero_Dispersion 11.8618
+EDIN_T3_DSSD_X40_E_Zero_Dispersion 10.4463
+EDIN_T3_DSSD_X41_E_Zero_Dispersion 14.2917
+EDIN_T3_DSSD_X42_E_Zero_Dispersion 13.258
+EDIN_T3_DSSD_X43_E_Zero_Dispersion 8200.68
+EDIN_T3_DSSD_X44_E_Zero_Dispersion 13.079
+EDIN_T3_DSSD_X45_E_Zero_Dispersion 7.44103
+EDIN_T3_DSSD_X46_E_Zero_Dispersion 5.29528
+EDIN_T3_DSSD_X47_E_Zero_Dispersion 7.10408
+EDIN_T3_DSSD_X48_E_Zero_Dispersion 6.02579
+EDIN_T3_DSSD_X49_E_Zero_Dispersion 6.87837
+EDIN_T3_DSSD_X50_E_Zero_Dispersion 7.78668
+EDIN_T3_DSSD_X51_E_Zero_Dispersion 10.8579
+EDIN_T3_DSSD_X52_E_Zero_Dispersion 14.0069
+EDIN_T3_DSSD_X53_E_Zero_Dispersion 12.908
+EDIN_T3_DSSD_X54_E_Zero_Dispersion 11.3155
+EDIN_T3_DSSD_X55_E_Zero_Dispersion 15.2509
+EDIN_T3_DSSD_X56_E_Zero_Dispersion 11.7545
+EDIN_T3_DSSD_X57_E_Zero_Dispersion 14.8099
+EDIN_T3_DSSD_X58_E_Zero_Dispersion 17.6948
+EDIN_T3_DSSD_X59_E_Zero_Dispersion 16.2995
+EDIN_T3_DSSD_X60_E_Zero_Dispersion 17.7334
+EDIN_T3_DSSD_X61_E_Zero_Dispersion 15.3887
+EDIN_T3_DSSD_X62_E_Zero_Dispersion 17.36
+EDIN_T3_DSSD_X63_E_Zero_Dispersion 21.2396
+EDIN_T3_DSSD_X64_E_Zero_Dispersion 0.54688
+EDIN_T3_DSSD_X65_E_Zero_Dispersion 5.00404
+EDIN_T3_DSSD_X66_E_Zero_Dispersion 3.67625
+EDIN_T3_DSSD_X67_E_Zero_Dispersion 0.418682
+EDIN_T3_DSSD_X68_E_Zero_Dispersion 0.844769
+EDIN_T3_DSSD_X69_E_Zero_Dispersion 0.310282
+EDIN_T3_DSSD_X70_E_Zero_Dispersion 1.88164
+EDIN_T3_DSSD_X71_E_Zero_Dispersion 2.773
+EDIN_T3_DSSD_X72_E_Zero_Dispersion 2.36367
+EDIN_T3_DSSD_X73_E_Zero_Dispersion 3.10533
+EDIN_T3_DSSD_X74_E_Zero_Dispersion 1.03999
+EDIN_T3_DSSD_X75_E_Zero_Dispersion 0.882051
+EDIN_T3_DSSD_X76_E_Zero_Dispersion 1.97499
+EDIN_T3_DSSD_X77_E_Zero_Dispersion 1.67487
+EDIN_T3_DSSD_X78_E_Zero_Dispersion 1.59284
+EDIN_T3_DSSD_X79_E_Zero_Dispersion 1.32705
+EDIN_T3_DSSD_X80_E_Zero_Dispersion 1.45268
+EDIN_T3_DSSD_X81_E_Zero_Dispersion 2.21072
+EDIN_T3_DSSD_X82_E_Zero_Dispersion 1.60635
+EDIN_T3_DSSD_X83_E_Zero_Dispersion 1.2076
+EDIN_T3_DSSD_X84_E_Zero_Dispersion 0.732884
+EDIN_T3_DSSD_X85_E_Zero_Dispersion 2.71973
+EDIN_T3_DSSD_X86_E_Zero_Dispersion 1.26472
+EDIN_T3_DSSD_X87_E_Zero_Dispersion 4.12606
+EDIN_T3_DSSD_X88_E_Zero_Dispersion 2.29194
+EDIN_T3_DSSD_X89_E_Zero_Dispersion 4.04424
+EDIN_T3_DSSD_X90_E_Zero_Dispersion 1.16739
+EDIN_T3_DSSD_X91_E_Zero_Dispersion 4.13851
+EDIN_T3_DSSD_X92_E_Zero_Dispersion 4.62734
+EDIN_T3_DSSD_X93_E_Zero_Dispersion 2.96159
+EDIN_T3_DSSD_X94_E_Zero_Dispersion 2.75865
+EDIN_T3_DSSD_X95_E_Zero_Dispersion 1.13467
+EDIN_T3_DSSD_X96_E_Zero_Dispersion 0.560919
+EDIN_T3_DSSD_X97_E_Zero_Dispersion 5.11095
+EDIN_T3_DSSD_X98_E_Zero_Dispersion 1.14066
+EDIN_T3_DSSD_X99_E_Zero_Dispersion 4.70192
+EDIN_T3_DSSD_X100_E_Zero_Dispersion 4.82997
+EDIN_T3_DSSD_X101_E_Zero_Dispersion 2.03176
+EDIN_T3_DSSD_X102_E_Zero_Dispersion 3.20693
+EDIN_T3_DSSD_X103_E_Zero_Dispersion 1.32489
+EDIN_T3_DSSD_X104_E_Zero_Dispersion 0.0996645
+EDIN_T3_DSSD_X105_E_Zero_Dispersion 4.07351
+EDIN_T3_DSSD_X106_E_Zero_Dispersion 0.709593
+EDIN_T3_DSSD_X107_E_Zero_Dispersion 0.418541
+EDIN_T3_DSSD_X108_E_Zero_Dispersion 5.84514
+EDIN_T3_DSSD_X109_E_Zero_Dispersion 5.46992
+EDIN_T3_DSSD_X110_E_Zero_Dispersion -0.584243
+EDIN_T3_DSSD_X111_E_Zero_Dispersion -0.299269
+EDIN_T3_DSSD_X112_E_Zero_Dispersion 6.43671
+EDIN_T3_DSSD_X113_E_Zero_Dispersion 4.9844
+EDIN_T3_DSSD_X114_E_Zero_Dispersion -0.124211
+EDIN_T3_DSSD_X115_E_Zero_Dispersion 3.4256
+EDIN_T3_DSSD_X116_E_Zero_Dispersion 5.23201
+EDIN_T3_DSSD_X117_E_Zero_Dispersion 4.53419
+EDIN_T3_DSSD_X118_E_Zero_Dispersion 4.16371
+EDIN_T3_DSSD_X119_E_Zero_Dispersion 6.69004
+EDIN_T3_DSSD_X120_E_Zero_Dispersion 3.03511
+EDIN_T3_DSSD_X121_E_Zero_Dispersion 5.50333
+EDIN_T3_DSSD_X122_E_Zero_Dispersion 4.84654
+EDIN_T3_DSSD_X123_E_Zero_Dispersion 6.04781
+EDIN_T3_DSSD_X124_E_Zero_Dispersion 1.15854
+EDIN_T3_DSSD_X125_E_Zero_Dispersion 2.32906
+EDIN_T3_DSSD_X126_E_Zero_Dispersion 0.678591
+EDIN_T3_DSSD_X127_E_Zero_Dispersion 4.34674
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/latex/double_alpha_run_0274_X_MM3_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/latex/double_alpha_run_0274_X_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..f0c479d2abedc3881a3848d74473f846bafb3be9
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/latex/double_alpha_run_0274_X_MM3_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+43 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 1.90056
+
+Sigma fit sigma: 0.335518
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..8cc5c66cc19970c6abd5a90be80b6801b74cfce4
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+EDIN_T0_DSSD_Y0_E 6.82575 -0.844837
+EDIN_T0_DSSD_Y1_E 59.9396 -0.00731092
+EDIN_T0_DSSD_Y2_E 60.4106 -0.00736742
+EDIN_T0_DSSD_Y3_E 60.536 -0.00738222
+EDIN_T0_DSSD_Y4_E 59.5713 -0.00726647
+EDIN_T0_DSSD_Y5_E 59.6593 -0.0072751
+EDIN_T0_DSSD_Y6_E 60.2169 -0.00734415
+EDIN_T0_DSSD_Y7_E 60.0432 -0.00732455
+EDIN_T0_DSSD_Y8_E 59.5902 -0.00726598
+EDIN_T0_DSSD_Y9_E 59.4347 -0.00724787
+EDIN_T0_DSSD_Y10_E 59.9372 -0.00730993
+EDIN_T0_DSSD_Y11_E 59.6307 -0.00727372
+EDIN_T0_DSSD_Y12_E 60.3787 -0.00736332
+EDIN_T0_DSSD_Y13_E 64.1489 -0.00787871
+EDIN_T0_DSSD_Y14_E 60.5738 -0.00738797
+EDIN_T0_DSSD_Y15_E 60.1216 -0.00733002
+EDIN_T0_DSSD_Y16_E 59.9228 -0.0073087
+EDIN_T0_DSSD_Y17_E 59.9655 -0.00731221
+EDIN_T0_DSSD_Y18_E 59.7151 -0.00728067
+EDIN_T0_DSSD_Y19_E 59.6477 -0.00727435
+EDIN_T0_DSSD_Y20_E 59.8071 -0.00729347
+EDIN_T0_DSSD_Y21_E 59.9607 -0.00731324
+EDIN_T0_DSSD_Y22_E 59.7539 -0.00728791
+EDIN_T0_DSSD_Y23_E 59.0607 -0.00720123
+EDIN_T0_DSSD_Y24_E 59.5327 -0.00725816
+EDIN_T0_DSSD_Y25_E 59.2586 -0.00722739
+EDIN_T0_DSSD_Y26_E 59.6039 -0.00727089
+EDIN_T0_DSSD_Y27_E 59.8624 -0.00730066
+EDIN_T0_DSSD_Y28_E 59.4132 -0.00724484
+EDIN_T0_DSSD_Y29_E 59.2535 -0.00722877
+EDIN_T0_DSSD_Y30_E 59.4539 -0.00725365
+EDIN_T0_DSSD_Y31_E 60.5797 -0.00739042
+EDIN_T0_DSSD_Y32_E 56.1608 -0.00684825
+EDIN_T0_DSSD_Y33_E 56.5204 -0.00689187
+EDIN_T0_DSSD_Y34_E 56.2288 -0.00686031
+EDIN_T0_DSSD_Y35_E 56.6772 -0.00691344
+EDIN_T0_DSSD_Y36_E 56.9245 -0.00694145
+EDIN_T0_DSSD_Y37_E 56.9461 -0.00694672
+EDIN_T0_DSSD_Y38_E 56.0767 -0.0068407
+EDIN_T0_DSSD_Y39_E 56.1027 -0.006843
+EDIN_T0_DSSD_Y40_E 56.5705 -0.00690073
+EDIN_T0_DSSD_Y41_E 56.1805 -0.00684956
+EDIN_T0_DSSD_Y42_E 56.2323 -0.00685952
+EDIN_T0_DSSD_Y43_E 56.1879 -0.00685347
+EDIN_T0_DSSD_Y44_E 56.4542 -0.00688626
+EDIN_T0_DSSD_Y45_E 56.549 -0.00689733
+EDIN_T0_DSSD_Y46_E 57.2559 -0.00698044
+EDIN_T0_DSSD_Y47_E 56.1545 -0.00684912
+EDIN_T0_DSSD_Y48_E 57.2081 -0.00697815
+EDIN_T0_DSSD_Y49_E 56.525 -0.00689257
+EDIN_T0_DSSD_Y50_E 56.3639 -0.00687465
+EDIN_T0_DSSD_Y51_E 56.0496 -0.00683669
+EDIN_T0_DSSD_Y52_E 56.6657 -0.00691036
+EDIN_T0_DSSD_Y53_E 56.4242 -0.00687821
+EDIN_T0_DSSD_Y54_E 56.3254 -0.00687194
+EDIN_T0_DSSD_Y55_E 56.9205 -0.00693805
+EDIN_T0_DSSD_Y56_E 57.0242 -0.00695791
+EDIN_T0_DSSD_Y57_E 56.5056 -0.00689519
+EDIN_T0_DSSD_Y58_E 56.4569 -0.00688479
+EDIN_T0_DSSD_Y59_E 56.8005 -0.006928
+EDIN_T0_DSSD_Y60_E 56.6359 -0.00690454
+EDIN_T0_DSSD_Y61_E 56.5755 -0.00689818
+EDIN_T0_DSSD_Y62_E 57.045 -0.00695521
+EDIN_T0_DSSD_Y63_E 57.4402 -0.00700138
+EDIN_T0_DSSD_Y64_E 60.581 -0.00738974
+EDIN_T0_DSSD_Y65_E 60.6496 -0.00739714
+EDIN_T0_DSSD_Y66_E 60.4622 -0.00737333
+EDIN_T0_DSSD_Y67_E 60.936 -0.00743343
+EDIN_T0_DSSD_Y68_E 60.0202 -0.00732222
+EDIN_T0_DSSD_Y69_E 61.036 -0.00744431
+EDIN_T0_DSSD_Y70_E 60.3324 -0.00735687
+EDIN_T0_DSSD_Y71_E 60.0203 -0.00732156
+EDIN_T0_DSSD_Y72_E 61.2337 -0.00746905
+EDIN_T0_DSSD_Y73_E 60.6202 -0.00739313
+EDIN_T0_DSSD_Y74_E 60.6822 -0.00740078
+EDIN_T0_DSSD_Y75_E 60.8037 -0.00741032
+EDIN_T0_DSSD_Y76_E 60.2306 -0.00734812
+EDIN_T0_DSSD_Y77_E 60.9684 -0.0074378
+EDIN_T0_DSSD_Y78_E 61.3278 -0.00748195
+EDIN_T0_DSSD_Y79_E 60.5917 -0.00738993
+EDIN_T0_DSSD_Y80_E 61.6875 -0.00751447
+EDIN_T0_DSSD_Y81_E 60.5067 -0.00737839
+EDIN_T0_DSSD_Y82_E 61.0018 -0.00743772
+EDIN_T0_DSSD_Y83_E 61.7662 -0.00753354
+EDIN_T0_DSSD_Y84_E 60.3646 -0.00735909
+EDIN_T0_DSSD_Y85_E 60.2349 -0.007342
+EDIN_T0_DSSD_Y86_E 61.2239 -0.00746588
+EDIN_T0_DSSD_Y87_E 60.8481 -0.00741858
+EDIN_T0_DSSD_Y88_E 60.432 -0.00736679
+EDIN_T0_DSSD_Y89_E 60.8595 -0.0074229
+EDIN_T0_DSSD_Y90_E 60.6124 -0.00739208
+EDIN_T0_DSSD_Y91_E 60.9829 -0.00743762
+EDIN_T0_DSSD_Y92_E 61.2564 -0.00746856
+EDIN_T0_DSSD_Y93_E 61.0818 -0.0074474
+EDIN_T0_DSSD_Y94_E 61.7604 -0.00752996
+EDIN_T0_DSSD_Y95_E 60.1873 -0.00733724
+EDIN_T0_DSSD_Y96_E 55.7827 -0.00679989
+EDIN_T0_DSSD_Y97_E 56.0999 -0.00683972
+EDIN_T0_DSSD_Y98_E 56.2346 -0.00686015
+EDIN_T0_DSSD_Y99_E 56.0143 -0.00683094
+EDIN_T0_DSSD_Y100_E 55.7323 -0.00679648
+EDIN_T0_DSSD_Y101_E 55.8821 -0.00681118
+EDIN_T0_DSSD_Y102_E 55.5714 -0.00677554
+EDIN_T0_DSSD_Y103_E 55.9719 -0.00682257
+EDIN_T0_DSSD_Y104_E 56.5704 -0.00690135
+EDIN_T0_DSSD_Y105_E 55.6434 -0.00678573
+EDIN_T0_DSSD_Y106_E 56.6027 -0.00690209
+EDIN_T0_DSSD_Y107_E 56.9725 -0.00694856
+EDIN_T0_DSSD_Y108_E 56.0688 -0.00683764
+EDIN_T0_DSSD_Y109_E 56.1521 -0.00684898
+EDIN_T0_DSSD_Y110_E 56.3271 -0.00687067
+EDIN_T0_DSSD_Y111_E 55.8965 -0.00681587
+EDIN_T0_DSSD_Y112_E 56.4834 -0.00688847
+EDIN_T0_DSSD_Y113_E 56.3634 -0.00686863
+EDIN_T0_DSSD_Y114_E 56.6287 -0.00690812
+EDIN_T0_DSSD_Y115_E 56.4297 -0.0068832
+EDIN_T0_DSSD_Y116_E 56.7518 -0.00691987
+EDIN_T0_DSSD_Y117_E 56.0688 -0.00683716
+EDIN_T0_DSSD_Y118_E 55.8832 -0.00681286
+EDIN_T0_DSSD_Y119_E 56.0852 -0.00683815
+EDIN_T0_DSSD_Y120_E 56.9102 -0.0069408
+EDIN_T0_DSSD_Y121_E 56.6179 -0.00690191
+EDIN_T0_DSSD_Y122_E 56.2517 -0.00685791
+EDIN_T0_DSSD_Y123_E 55.6493 -0.0067881
+EDIN_T0_DSSD_Y124_E 55.7588 -0.00679547
+EDIN_T0_DSSD_Y125_E 55.3298 -0.00674464
+EDIN_T0_DSSD_Y126_E 56.5723 -0.00690015
+EDIN_T0_DSSD_Y127_E 55.9475 -0.00682061
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..23b41f129e3de80db07362cfc6ad3e345fa7f2c1
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.dispersion
@@ -0,0 +1,128 @@
+EDIN_T0_DSSD_X0_E_Zero_Dispersion 8183.92
+EDIN_T0_DSSD_X1_E_Zero_Dispersion -6.63295
+EDIN_T0_DSSD_X2_E_Zero_Dispersion -7.7008
+EDIN_T0_DSSD_X3_E_Zero_Dispersion -8.2479
+EDIN_T0_DSSD_X4_E_Zero_Dispersion -6.11069
+EDIN_T0_DSSD_X5_E_Zero_Dispersion -8.48188
+EDIN_T0_DSSD_X6_E_Zero_Dispersion -7.31025
+EDIN_T0_DSSD_X7_E_Zero_Dispersion -5.53197
+EDIN_T0_DSSD_X8_E_Zero_Dispersion -9.25746
+EDIN_T0_DSSD_X9_E_Zero_Dispersion -8.30132
+EDIN_T0_DSSD_X10_E_Zero_Dispersion -7.41508
+EDIN_T0_DSSD_X11_E_Zero_Dispersion -6.10382
+EDIN_T0_DSSD_X12_E_Zero_Dispersion -7.91969
+EDIN_T0_DSSD_X13_E_Zero_Dispersion 49.9456
+EDIN_T0_DSSD_X14_E_Zero_Dispersion -6.97607
+EDIN_T0_DSSD_X15_E_Zero_Dispersion -10.1047
+EDIN_T0_DSSD_X16_E_Zero_Dispersion -6.83215
+EDIN_T0_DSSD_X17_E_Zero_Dispersion -8.73859
+EDIN_T0_DSSD_X18_E_Zero_Dispersion -9.86747
+EDIN_T0_DSSD_X19_E_Zero_Dispersion -7.73418
+EDIN_T0_DSSD_X20_E_Zero_Dispersion -8.09245
+EDIN_T0_DSSD_X21_E_Zero_Dispersion -6.92018
+EDIN_T0_DSSD_X22_E_Zero_Dispersion -7.03661
+EDIN_T0_DSSD_X23_E_Zero_Dispersion -9.47716
+EDIN_T0_DSSD_X24_E_Zero_Dispersion -10.1866
+EDIN_T0_DSSD_X25_E_Zero_Dispersion -7.16795
+EDIN_T0_DSSD_X26_E_Zero_Dispersion -5.6114
+EDIN_T0_DSSD_X27_E_Zero_Dispersion -7.5916
+EDIN_T0_DSSD_X28_E_Zero_Dispersion -8.76414
+EDIN_T0_DSSD_X29_E_Zero_Dispersion -4.90095
+EDIN_T0_DSSD_X30_E_Zero_Dispersion -4.41223
+EDIN_T0_DSSD_X31_E_Zero_Dispersion -5.04983
+EDIN_T0_DSSD_X32_E_Zero_Dispersion -8.74888
+EDIN_T0_DSSD_X33_E_Zero_Dispersion -9.02414
+EDIN_T0_DSSD_X34_E_Zero_Dispersion -4.24547
+EDIN_T0_DSSD_X35_E_Zero_Dispersion -6.11783
+EDIN_T0_DSSD_X36_E_Zero_Dispersion -8.67274
+EDIN_T0_DSSD_X37_E_Zero_Dispersion -5.55349
+EDIN_T0_DSSD_X38_E_Zero_Dispersion -5.49848
+EDIN_T0_DSSD_X39_E_Zero_Dispersion -6.55596
+EDIN_T0_DSSD_X40_E_Zero_Dispersion -5.75522
+EDIN_T0_DSSD_X41_E_Zero_Dispersion -10.0658
+EDIN_T0_DSSD_X42_E_Zero_Dispersion -5.70397
+EDIN_T0_DSSD_X43_E_Zero_Dispersion -6.46707
+EDIN_T0_DSSD_X44_E_Zero_Dispersion -6.08433
+EDIN_T0_DSSD_X45_E_Zero_Dispersion -6.67154
+EDIN_T0_DSSD_X46_E_Zero_Dispersion -10.3332
+EDIN_T0_DSSD_X47_E_Zero_Dispersion -6.79015
+EDIN_T0_DSSD_X48_E_Zero_Dispersion -6.18417
+EDIN_T0_DSSD_X49_E_Zero_Dispersion -8.85446
+EDIN_T0_DSSD_X50_E_Zero_Dispersion -6.79964
+EDIN_T0_DSSD_X51_E_Zero_Dispersion -6.34267
+EDIN_T0_DSSD_X52_E_Zero_Dispersion -8.10679
+EDIN_T0_DSSD_X53_E_Zero_Dispersion -11.3244
+EDIN_T0_DSSD_X54_E_Zero_Dispersion -4.43412
+EDIN_T0_DSSD_X55_E_Zero_Dispersion -12.1053
+EDIN_T0_DSSD_X56_E_Zero_Dispersion -3.59209
+EDIN_T0_DSSD_X57_E_Zero_Dispersion -2.93464
+EDIN_T0_DSSD_X58_E_Zero_Dispersion -8.23944
+EDIN_T0_DSSD_X59_E_Zero_Dispersion -6.68791
+EDIN_T0_DSSD_X60_E_Zero_Dispersion -10.701
+EDIN_T0_DSSD_X61_E_Zero_Dispersion -9.50467
+EDIN_T0_DSSD_X62_E_Zero_Dispersion -9.75864
+EDIN_T0_DSSD_X63_E_Zero_Dispersion -12.1268
+EDIN_T0_DSSD_X64_E_Zero_Dispersion -5.98167
+EDIN_T0_DSSD_X65_E_Zero_Dispersion -7.06478
+EDIN_T0_DSSD_X66_E_Zero_Dispersion -8.11857
+EDIN_T0_DSSD_X67_E_Zero_Dispersion -5.55447
+EDIN_T0_DSSD_X68_E_Zero_Dispersion -4.99593
+EDIN_T0_DSSD_X69_E_Zero_Dispersion -7.02027
+EDIN_T0_DSSD_X70_E_Zero_Dispersion -8.83169
+EDIN_T0_DSSD_X71_E_Zero_Dispersion -5.74392
+EDIN_T0_DSSD_X72_E_Zero_Dispersion -6.31696
+EDIN_T0_DSSD_X73_E_Zero_Dispersion -7.52914
+EDIN_T0_DSSD_X74_E_Zero_Dispersion -7.43815
+EDIN_T0_DSSD_X75_E_Zero_Dispersion -13.2719
+EDIN_T0_DSSD_X76_E_Zero_Dispersion -4.73017
+EDIN_T0_DSSD_X77_E_Zero_Dispersion -5.09789
+EDIN_T0_DSSD_X78_E_Zero_Dispersion -4.76807
+EDIN_T0_DSSD_X79_E_Zero_Dispersion -7.22795
+EDIN_T0_DSSD_X80_E_Zero_Dispersion -17.1633
+EDIN_T0_DSSD_X81_E_Zero_Dispersion -8.52399
+EDIN_T0_DSSD_X82_E_Zero_Dispersion -9.67415
+EDIN_T0_DSSD_X83_E_Zero_Dispersion -6.82375
+EDIN_T0_DSSD_X84_E_Zero_Dispersion -10.7194
+EDIN_T0_DSSD_X85_E_Zero_Dispersion -12.1529
+EDIN_T0_DSSD_X86_E_Zero_Dispersion -8.48907
+EDIN_T0_DSSD_X87_E_Zero_Dispersion -10.1272
+EDIN_T0_DSSD_X88_E_Zero_Dispersion -11.3035
+EDIN_T0_DSSD_X89_E_Zero_Dispersion -6.88179
+EDIN_T0_DSSD_X90_E_Zero_Dispersion -7.64239
+EDIN_T0_DSSD_X91_E_Zero_Dispersion -7.25621
+EDIN_T0_DSSD_X92_E_Zero_Dispersion -9.90046
+EDIN_T0_DSSD_X93_E_Zero_Dispersion -9.76531
+EDIN_T0_DSSD_X94_E_Zero_Dispersion -9.94603
+EDIN_T0_DSSD_X95_E_Zero_Dispersion -10.9835
+EDIN_T0_DSSD_X96_E_Zero_Dispersion -11.4783
+EDIN_T0_DSSD_X97_E_Zero_Dispersion -10.0747
+EDIN_T0_DSSD_X98_E_Zero_Dispersion -5.29075
+EDIN_T0_DSSD_X99_E_Zero_Dispersion -8.08608
+EDIN_T0_DSSD_X100_E_Zero_Dispersion -8.17472
+EDIN_T0_DSSD_X101_E_Zero_Dispersion -12.4671
+EDIN_T0_DSSD_X102_E_Zero_Dispersion -9.76917
+EDIN_T0_DSSD_X103_E_Zero_Dispersion -11.9265
+EDIN_T0_DSSD_X104_E_Zero_Dispersion -5.00413
+EDIN_T0_DSSD_X105_E_Zero_Dispersion -8.06976
+EDIN_T0_DSSD_X106_E_Zero_Dispersion -8.81165
+EDIN_T0_DSSD_X107_E_Zero_Dispersion -7.18314
+EDIN_T0_DSSD_X108_E_Zero_Dispersion -8.03071
+EDIN_T0_DSSD_X109_E_Zero_Dispersion -6.61411
+EDIN_T0_DSSD_X110_E_Zero_Dispersion -6.2023
+EDIN_T0_DSSD_X111_E_Zero_Dispersion -8.92192
+EDIN_T0_DSSD_X112_E_Zero_Dispersion -7.70585
+EDIN_T0_DSSD_X113_E_Zero_Dispersion -13.9267
+EDIN_T0_DSSD_X114_E_Zero_Dispersion -5.41344
+EDIN_T0_DSSD_X115_E_Zero_Dispersion -6.16773
+EDIN_T0_DSSD_X116_E_Zero_Dispersion -9.27551
+EDIN_T0_DSSD_X117_E_Zero_Dispersion -8.58972
+EDIN_T0_DSSD_X118_E_Zero_Dispersion -10.599
+EDIN_T0_DSSD_X119_E_Zero_Dispersion -9.81363
+EDIN_T0_DSSD_X120_E_Zero_Dispersion -7.37254
+EDIN_T0_DSSD_X121_E_Zero_Dispersion -11.2188
+EDIN_T0_DSSD_X122_E_Zero_Dispersion -10.4584
+EDIN_T0_DSSD_X123_E_Zero_Dispersion -6.05833
+EDIN_T0_DSSD_X124_E_Zero_Dispersion -13.2832
+EDIN_T0_DSSD_X125_E_Zero_Dispersion -11.5256
+EDIN_T0_DSSD_X126_E_Zero_Dispersion -6.70314
+EDIN_T0_DSSD_X127_E_Zero_Dispersion -10.7178
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/latex/double_alpha_run_0274_Y_MM0_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/latex/double_alpha_run_0274_Y_MM0_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2be801100ab48e77305dd1d45ede8f4f1ed45c3a
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/latex/double_alpha_run_0274_Y_MM0_E.tex
@@ -0,0 +1,62 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  0
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 0 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+0 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+13 &  zero extrapolation too high:49.9456channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM0_E/latex/pictures/Telescope0Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.10006
+
+Sigma fit sigma: 0.178421
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/peaks/Cal_Str_Y_E_MM0.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/peaks/Cal_Str_Y_E_MM0.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..10967ff8a5fca371177d4f71968438ebf2933c04
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+EDIN_T1_DSSD_Y0_E 59.5713 -0.00727366
+EDIN_T1_DSSD_Y1_E 60.1008 -0.00733351
+EDIN_T1_DSSD_Y2_E 59.5524 -0.00726963
+EDIN_T1_DSSD_Y3_E 59.1431 -0.00721903
+EDIN_T1_DSSD_Y4_E 59.9251 -0.00731315
+EDIN_T1_DSSD_Y5_E 60.0201 -0.00732852
+EDIN_T1_DSSD_Y6_E 59.289 -0.00723845
+EDIN_T1_DSSD_Y7_E 59.4021 -0.007252
+EDIN_T1_DSSD_Y8_E 59.3992 -0.00725239
+EDIN_T1_DSSD_Y9_E 59.5263 -0.00726694
+EDIN_T1_DSSD_Y10_E 59.2864 -0.00723601
+EDIN_T1_DSSD_Y11_E 59.4514 -0.00725811
+EDIN_T1_DSSD_Y12_E 60.0312 -0.00732756
+EDIN_T1_DSSD_Y13_E 59.2537 -0.00723424
+EDIN_T1_DSSD_Y14_E 59.3893 -0.00725095
+EDIN_T1_DSSD_Y15_E 59.7658 -0.0072936
+EDIN_T1_DSSD_Y16_E 62.2769 -0.00760174
+EDIN_T1_DSSD_Y17_E 62.117 -0.00757965
+EDIN_T1_DSSD_Y18_E 62.072 -0.00757377
+EDIN_T1_DSSD_Y19_E 61.9724 -0.00756654
+EDIN_T1_DSSD_Y20_E 62.0118 -0.00756272
+EDIN_T1_DSSD_Y21_E 62.1497 -0.00758453
+EDIN_T1_DSSD_Y22_E 6.82575 -0.844837
+EDIN_T1_DSSD_Y23_E 61.6857 -0.00752703
+EDIN_T1_DSSD_Y24_E 61.3481 -0.0074851
+EDIN_T1_DSSD_Y25_E 61.369 -0.0074932
+EDIN_T1_DSSD_Y26_E 62.0024 -0.00756996
+EDIN_T1_DSSD_Y27_E 61.921 -0.00755903
+EDIN_T1_DSSD_Y28_E 62.0404 -0.00757219
+EDIN_T1_DSSD_Y29_E 61.9073 -0.00755709
+EDIN_T1_DSSD_Y30_E 61.3619 -0.00748814
+EDIN_T1_DSSD_Y31_E 61.3944 -0.00749024
+EDIN_T1_DSSD_Y32_E 55.862 -0.0068178
+EDIN_T1_DSSD_Y33_E 56.1905 -0.00686073
+EDIN_T1_DSSD_Y34_E 55.4752 -0.00677191
+EDIN_T1_DSSD_Y35_E 55.4395 -0.00676548
+EDIN_T1_DSSD_Y36_E 55.1726 -0.00673431
+EDIN_T1_DSSD_Y37_E 56.143 -0.00685196
+EDIN_T1_DSSD_Y38_E 55.1566 -0.00673131
+EDIN_T1_DSSD_Y39_E 55.718 -0.00680006
+EDIN_T1_DSSD_Y40_E 56.1499 -0.00685882
+EDIN_T1_DSSD_Y41_E 55.8773 -0.00681981
+EDIN_T1_DSSD_Y42_E 55.2904 -0.00674786
+EDIN_T1_DSSD_Y43_E 56.4892 -0.00689618
+EDIN_T1_DSSD_Y44_E 55.4436 -0.00676674
+EDIN_T1_DSSD_Y45_E 55.639 -0.00679338
+EDIN_T1_DSSD_Y46_E 55.5529 -0.00677944
+EDIN_T1_DSSD_Y47_E 55.484 -0.00677176
+EDIN_T1_DSSD_Y48_E 56.9644 -0.00695219
+EDIN_T1_DSSD_Y49_E 56.285 -0.00686719
+EDIN_T1_DSSD_Y50_E 56.1211 -0.00684591
+EDIN_T1_DSSD_Y51_E 55.6085 -0.00678336
+EDIN_T1_DSSD_Y52_E 56.6749 -0.00691731
+EDIN_T1_DSSD_Y53_E 55.8722 -0.00681439
+EDIN_T1_DSSD_Y54_E 56.1028 -0.00684409
+EDIN_T1_DSSD_Y55_E 56.0397 -0.00683656
+EDIN_T1_DSSD_Y56_E 56.9231 -0.00694547
+EDIN_T1_DSSD_Y57_E 56.8501 -0.00693858
+EDIN_T1_DSSD_Y58_E 56.2203 -0.00685803
+EDIN_T1_DSSD_Y59_E 57.1097 -0.00697017
+EDIN_T1_DSSD_Y60_E 57.2955 -0.00699211
+EDIN_T1_DSSD_Y61_E 56.5987 -0.00690325
+EDIN_T1_DSSD_Y62_E 56.0145 -0.00683747
+EDIN_T1_DSSD_Y63_E 57.1694 -0.00697746
+EDIN_T1_DSSD_Y64_E 60.8531 -0.00742731
+EDIN_T1_DSSD_Y65_E 61.2035 -0.00746692
+EDIN_T1_DSSD_Y66_E 61.1281 -0.00746104
+EDIN_T1_DSSD_Y67_E 61.3924 -0.00749318
+EDIN_T1_DSSD_Y68_E 61.0537 -0.00745178
+EDIN_T1_DSSD_Y69_E 59.7484 -0.0072913
+EDIN_T1_DSSD_Y70_E 60.1721 -0.00734278
+EDIN_T1_DSSD_Y71_E 60.9846 -0.00744362
+EDIN_T1_DSSD_Y72_E 60.1471 -0.00734103
+EDIN_T1_DSSD_Y73_E 61.0101 -0.00744673
+EDIN_T1_DSSD_Y74_E 60.715 -0.00741063
+EDIN_T1_DSSD_Y75_E 60.1824 -0.00734473
+EDIN_T1_DSSD_Y76_E 60.5111 -0.00738908
+EDIN_T1_DSSD_Y77_E 60.8614 -0.00743023
+EDIN_T1_DSSD_Y78_E 60.4805 -0.00738223
+EDIN_T1_DSSD_Y79_E 61.2051 -0.00747177
+EDIN_T1_DSSD_Y80_E 60.9209 -0.00743493
+EDIN_T1_DSSD_Y81_E 60.7358 -0.00741074
+EDIN_T1_DSSD_Y82_E 60.8 -0.00741892
+EDIN_T1_DSSD_Y83_E 60.4562 -0.00738112
+EDIN_T1_DSSD_Y84_E 60.1521 -0.00734031
+EDIN_T1_DSSD_Y85_E 61.1671 -0.00746593
+EDIN_T1_DSSD_Y86_E 60.6634 -0.00740806
+EDIN_T1_DSSD_Y87_E 60.3342 -0.00736062
+EDIN_T1_DSSD_Y88_E 60.8086 -0.00742136
+EDIN_T1_DSSD_Y89_E 61.0582 -0.00745181
+EDIN_T1_DSSD_Y90_E 60.4628 -0.0073781
+EDIN_T1_DSSD_Y91_E 60.5439 -0.00738751
+EDIN_T1_DSSD_Y92_E 60.173 -0.00734265
+EDIN_T1_DSSD_Y93_E 61.2089 -0.00746997
+EDIN_T1_DSSD_Y94_E 61.1999 -0.00746579
+EDIN_T1_DSSD_Y95_E 60.5711 -0.00739332
+EDIN_T1_DSSD_Y96_E 55.7695 -0.00680856
+EDIN_T1_DSSD_Y97_E 55.239 -0.00674105
+EDIN_T1_DSSD_Y98_E 55.7487 -0.0068081
+EDIN_T1_DSSD_Y99_E 55.5363 -0.00678092
+EDIN_T1_DSSD_Y100_E 55.7637 -0.00680698
+EDIN_T1_DSSD_Y101_E 55.3921 -0.00676203
+EDIN_T1_DSSD_Y102_E 55.4885 -0.00677566
+EDIN_T1_DSSD_Y103_E 56.1288 -0.0068526
+EDIN_T1_DSSD_Y104_E 55.0197 -0.00671458
+EDIN_T1_DSSD_Y105_E 55.0473 -0.00671677
+EDIN_T1_DSSD_Y106_E 55.8463 -0.00681955
+EDIN_T1_DSSD_Y107_E 55.1768 -0.00673729
+EDIN_T1_DSSD_Y108_E 55.6608 -0.00679222
+EDIN_T1_DSSD_Y109_E 55.8837 -0.00682082
+EDIN_T1_DSSD_Y110_E 56.0661 -0.00684396
+EDIN_T1_DSSD_Y111_E 56.5742 -0.00690789
+EDIN_T1_DSSD_Y112_E 54.6562 -0.00667282
+EDIN_T1_DSSD_Y113_E 55.323 -0.00675101
+EDIN_T1_DSSD_Y114_E 54.9651 -0.00670899
+EDIN_T1_DSSD_Y115_E 55.0097 -0.00671473
+EDIN_T1_DSSD_Y116_E 55.0182 -0.00671428
+EDIN_T1_DSSD_Y117_E 55.2189 -0.00673988
+EDIN_T1_DSSD_Y118_E 55.0491 -0.00671853
+EDIN_T1_DSSD_Y119_E 55.547 -0.00677839
+EDIN_T1_DSSD_Y120_E 55.6261 -0.00679154
+EDIN_T1_DSSD_Y121_E 55.3517 -0.00675826
+EDIN_T1_DSSD_Y122_E 54.6662 -0.00667402
+EDIN_T1_DSSD_Y123_E 55.1066 -0.0067295
+EDIN_T1_DSSD_Y124_E 55.106 -0.00672715
+EDIN_T1_DSSD_Y125_E 55.0026 -0.00671395
+EDIN_T1_DSSD_Y126_E 55.1727 -0.00673426
+EDIN_T1_DSSD_Y127_E 56.0969 -0.0068486
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..1b338afee149d2da374f1eb984f3023eafd3abe5
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
@@ -0,0 +1,128 @@
+EDIN_T1_DSSD_X0_E_Zero_Dispersion 1.99155
+EDIN_T1_DSSD_X1_E_Zero_Dispersion -3.36744
+EDIN_T1_DSSD_X2_E_Zero_Dispersion 0.0532965
+EDIN_T1_DSSD_X3_E_Zero_Dispersion -0.670512
+EDIN_T1_DSSD_X4_E_Zero_Dispersion -2.15656
+EDIN_T1_DSSD_X5_E_Zero_Dispersion 2.06015
+EDIN_T1_DSSD_X6_E_Zero_Dispersion 1.15907
+EDIN_T1_DSSD_X7_E_Zero_Dispersion 0.856124
+EDIN_T1_DSSD_X8_E_Zero_Dispersion 1.70508
+EDIN_T1_DSSD_X9_E_Zero_Dispersion 0.617081
+EDIN_T1_DSSD_X10_E_Zero_Dispersion -1.24746
+EDIN_T1_DSSD_X11_E_Zero_Dispersion 0.974372
+EDIN_T1_DSSD_X12_E_Zero_Dispersion -0.523207
+EDIN_T1_DSSD_X13_E_Zero_Dispersion 1.26217
+EDIN_T1_DSSD_X14_E_Zero_Dispersion 1.45131
+EDIN_T1_DSSD_X15_E_Zero_Dispersion -2.28
+EDIN_T1_DSSD_X16_E_Zero_Dispersion -0.445466
+EDIN_T1_DSSD_X17_E_Zero_Dispersion -3.22932
+EDIN_T1_DSSD_X18_E_Zero_Dispersion -3.65555
+EDIN_T1_DSSD_X19_E_Zero_Dispersion 1.68167
+EDIN_T1_DSSD_X20_E_Zero_Dispersion -7.67168
+EDIN_T1_DSSD_X21_E_Zero_Dispersion -2.26369
+EDIN_T1_DSSD_X22_E_Zero_Dispersion 8183.92
+EDIN_T1_DSSD_X23_E_Zero_Dispersion -3.22536
+EDIN_T1_DSSD_X24_E_Zero_Dispersion -4.02648
+EDIN_T1_DSSD_X25_E_Zero_Dispersion 2.03906
+EDIN_T1_DSSD_X26_E_Zero_Dispersion 1.41268
+EDIN_T1_DSSD_X27_E_Zero_Dispersion 0.34993
+EDIN_T1_DSSD_X28_E_Zero_Dispersion -1.19268
+EDIN_T1_DSSD_X29_E_Zero_Dispersion 0.0528127
+EDIN_T1_DSSD_X30_E_Zero_Dispersion -2.53391
+EDIN_T1_DSSD_X31_E_Zero_Dispersion -4.59477
+EDIN_T1_DSSD_X32_E_Zero_Dispersion -1.55375
+EDIN_T1_DSSD_X33_E_Zero_Dispersion 1.83181
+EDIN_T1_DSSD_X34_E_Zero_Dispersion 0.0380421
+EDIN_T1_DSSD_X35_E_Zero_Dispersion -2.47029
+EDIN_T1_DSSD_X36_E_Zero_Dispersion -0.760245
+EDIN_T1_DSSD_X37_E_Zero_Dispersion -1.70397
+EDIN_T1_DSSD_X38_E_Zero_Dispersion -2.04435
+EDIN_T1_DSSD_X39_E_Zero_Dispersion -1.75536
+EDIN_T1_DSSD_X40_E_Zero_Dispersion 5.47503
+EDIN_T1_DSSD_X41_E_Zero_Dispersion -1.38296
+EDIN_T1_DSSD_X42_E_Zero_Dispersion -1.76707
+EDIN_T1_DSSD_X43_E_Zero_Dispersion 0.635043
+EDIN_T1_DSSD_X44_E_Zero_Dispersion -1.5517
+EDIN_T1_DSSD_X45_E_Zero_Dispersion 1.82123
+EDIN_T1_DSSD_X46_E_Zero_Dispersion -2.32144
+EDIN_T1_DSSD_X47_E_Zero_Dispersion -1.44783
+EDIN_T1_DSSD_X48_E_Zero_Dispersion -1.74129
+EDIN_T1_DSSD_X49_E_Zero_Dispersion -4.22587
+EDIN_T1_DSSD_X50_E_Zero_Dispersion -5.75529
+EDIN_T1_DSSD_X51_E_Zero_Dispersion -5.79249
+EDIN_T1_DSSD_X52_E_Zero_Dispersion -1.1894
+EDIN_T1_DSSD_X53_E_Zero_Dispersion -7.15251
+EDIN_T1_DSSD_X54_E_Zero_Dispersion -5.26423
+EDIN_T1_DSSD_X55_E_Zero_Dispersion -5.06334
+EDIN_T1_DSSD_X56_E_Zero_Dispersion -3.72446
+EDIN_T1_DSSD_X57_E_Zero_Dispersion -1.33524
+EDIN_T1_DSSD_X58_E_Zero_Dispersion -5.7377
+EDIN_T1_DSSD_X59_E_Zero_Dispersion -1.44175
+EDIN_T1_DSSD_X60_E_Zero_Dispersion -2.31319
+EDIN_T1_DSSD_X61_E_Zero_Dispersion -6.84675
+EDIN_T1_DSSD_X62_E_Zero_Dispersion -0.288522
+EDIN_T1_DSSD_X63_E_Zero_Dispersion -1.4453
+EDIN_T1_DSSD_X64_E_Zero_Dispersion -1.14669
+EDIN_T1_DSSD_X65_E_Zero_Dispersion -4.61755
+EDIN_T1_DSSD_X66_E_Zero_Dispersion -0.976242
+EDIN_T1_DSSD_X67_E_Zero_Dispersion -1.10734
+EDIN_T1_DSSD_X68_E_Zero_Dispersion -1.16978
+EDIN_T1_DSSD_X69_E_Zero_Dispersion -2.47694
+EDIN_T1_DSSD_X70_E_Zero_Dispersion -2.72998
+EDIN_T1_DSSD_X71_E_Zero_Dispersion -0.877548
+EDIN_T1_DSSD_X72_E_Zero_Dispersion -1.27685
+EDIN_T1_DSSD_X73_E_Zero_Dispersion -0.870154
+EDIN_T1_DSSD_X74_E_Zero_Dispersion -0.971537
+EDIN_T1_DSSD_X75_E_Zero_Dispersion -1.95811
+EDIN_T1_DSSD_X76_E_Zero_Dispersion 2.72883
+EDIN_T1_DSSD_X77_E_Zero_Dispersion 0.949706
+EDIN_T1_DSSD_X78_E_Zero_Dispersion -0.718313
+EDIN_T1_DSSD_X79_E_Zero_Dispersion 0.487229
+EDIN_T1_DSSD_X80_E_Zero_Dispersion -1.87203
+EDIN_T1_DSSD_X81_E_Zero_Dispersion -3.64332
+EDIN_T1_DSSD_X82_E_Zero_Dispersion -3.25926
+EDIN_T1_DSSD_X83_E_Zero_Dispersion 1.34689
+EDIN_T1_DSSD_X84_E_Zero_Dispersion -2.76229
+EDIN_T1_DSSD_X85_E_Zero_Dispersion -0.820758
+EDIN_T1_DSSD_X86_E_Zero_Dispersion 3.15827
+EDIN_T1_DSSD_X87_E_Zero_Dispersion -4.89819
+EDIN_T1_DSSD_X88_E_Zero_Dispersion -1.72898
+EDIN_T1_DSSD_X89_E_Zero_Dispersion -1.73753
+EDIN_T1_DSSD_X90_E_Zero_Dispersion -2.90363
+EDIN_T1_DSSD_X91_E_Zero_Dispersion -3.4417
+EDIN_T1_DSSD_X92_E_Zero_Dispersion -2.99842
+EDIN_T1_DSSD_X93_E_Zero_Dispersion -1.99586
+EDIN_T1_DSSD_X94_E_Zero_Dispersion -5.37291
+EDIN_T1_DSSD_X95_E_Zero_Dispersion -0.680694
+EDIN_T1_DSSD_X96_E_Zero_Dispersion 0.917666
+EDIN_T1_DSSD_X97_E_Zero_Dispersion -2.42032
+EDIN_T1_DSSD_X98_E_Zero_Dispersion 3.42181
+EDIN_T1_DSSD_X99_E_Zero_Dispersion 1.9192
+EDIN_T1_DSSD_X100_E_Zero_Dispersion -0.131786
+EDIN_T1_DSSD_X101_E_Zero_Dispersion 0.365438
+EDIN_T1_DSSD_X102_E_Zero_Dispersion 2.6059
+EDIN_T1_DSSD_X103_E_Zero_Dispersion 1.11622
+EDIN_T1_DSSD_X104_E_Zero_Dispersion -2.06555
+EDIN_T1_DSSD_X105_E_Zero_Dispersion -3.4939
+EDIN_T1_DSSD_X106_E_Zero_Dispersion 2.85683
+EDIN_T1_DSSD_X107_E_Zero_Dispersion 2.2385
+EDIN_T1_DSSD_X108_E_Zero_Dispersion -2.77996
+EDIN_T1_DSSD_X109_E_Zero_Dispersion -1.11409
+EDIN_T1_DSSD_X110_E_Zero_Dispersion -0.0559515
+EDIN_T1_DSSD_X111_E_Zero_Dispersion 2.19809
+EDIN_T1_DSSD_X112_E_Zero_Dispersion 1.1396
+EDIN_T1_DSSD_X113_E_Zero_Dispersion -2.7754
+EDIN_T1_DSSD_X114_E_Zero_Dispersion -0.753716
+EDIN_T1_DSSD_X115_E_Zero_Dispersion -0.402319
+EDIN_T1_DSSD_X116_E_Zero_Dispersion -2.20761
+EDIN_T1_DSSD_X117_E_Zero_Dispersion -0.864114
+EDIN_T1_DSSD_X118_E_Zero_Dispersion -1.62397
+EDIN_T1_DSSD_X119_E_Zero_Dispersion -2.71892
+EDIN_T1_DSSD_X120_E_Zero_Dispersion 1.49164
+EDIN_T1_DSSD_X121_E_Zero_Dispersion 1.75966
+EDIN_T1_DSSD_X122_E_Zero_Dispersion 1.11113
+EDIN_T1_DSSD_X123_E_Zero_Dispersion 3.18743
+EDIN_T1_DSSD_X124_E_Zero_Dispersion 0.422646
+EDIN_T1_DSSD_X125_E_Zero_Dispersion -0.292593
+EDIN_T1_DSSD_X126_E_Zero_Dispersion -0.836667
+EDIN_T1_DSSD_X127_E_Zero_Dispersion 0.996941
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/latex/double_alpha_run_0274_Y_MM1_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/latex/double_alpha_run_0274_Y_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..7991ba02704cbd900dbdffe61319daaaea74adea
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/latex/double_alpha_run_0274_Y_MM1_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+22 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.33191
+
+Sigma fit sigma: 0.487957
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d75d2ccabbfe169ebdf87af2e31d5718aac63eed
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_Y0_E 62.9053 -0.0076766
+EDIN_T2_DSSD_Y1_E 63.6771 -0.00777088
+EDIN_T2_DSSD_Y2_E 62.331 -0.00760718
+EDIN_T2_DSSD_Y3_E 63.2578 -0.00772102
+EDIN_T2_DSSD_Y4_E 62.7132 -0.00765406
+EDIN_T2_DSSD_Y5_E 62.5292 -0.00763228
+EDIN_T2_DSSD_Y6_E 62.8143 -0.00766532
+EDIN_T2_DSSD_Y7_E 62.3329 -0.00760504
+EDIN_T2_DSSD_Y8_E 62.4752 -0.00762288
+EDIN_T2_DSSD_Y9_E 63.2006 -0.00771317
+EDIN_T2_DSSD_Y10_E 62.6927 -0.00764988
+EDIN_T2_DSSD_Y11_E 62.3066 -0.00760391
+EDIN_T2_DSSD_Y12_E 61.8667 -0.00755085
+EDIN_T2_DSSD_Y13_E 62.5037 -0.00762743
+EDIN_T2_DSSD_Y14_E 62.7099 -0.00765226
+EDIN_T2_DSSD_Y15_E 63.2095 -0.00771415
+EDIN_T2_DSSD_Y16_E 61.1316 -0.00745457
+EDIN_T2_DSSD_Y17_E 60.4523 -0.0073738
+EDIN_T2_DSSD_Y18_E 60.4246 -0.00737171
+EDIN_T2_DSSD_Y19_E 61.8438 -0.00754775
+EDIN_T2_DSSD_Y20_E 60.7912 -0.00741418
+EDIN_T2_DSSD_Y21_E 60.568 -0.00738896
+EDIN_T2_DSSD_Y22_E 62.104 -0.00758231
+EDIN_T2_DSSD_Y23_E 60.6819 -0.0074026
+EDIN_T2_DSSD_Y24_E 60.7567 -0.00741337
+EDIN_T2_DSSD_Y25_E 61.2726 -0.00747614
+EDIN_T2_DSSD_Y26_E 61.018 -0.007449
+EDIN_T2_DSSD_Y27_E 61.0798 -0.00745285
+EDIN_T2_DSSD_Y28_E 61.4819 -0.00750524
+EDIN_T2_DSSD_Y29_E 61.0725 -0.00745017
+EDIN_T2_DSSD_Y30_E 61.0692 -0.00745178
+EDIN_T2_DSSD_Y31_E 61.4178 -0.00749438
+EDIN_T2_DSSD_Y32_E 56.1768 -0.00685736
+EDIN_T2_DSSD_Y33_E 56.1338 -0.00684851
+EDIN_T2_DSSD_Y34_E 56.6319 -0.00691225
+EDIN_T2_DSSD_Y35_E 56.4588 -0.00688948
+EDIN_T2_DSSD_Y36_E 56.8551 -0.00694108
+EDIN_T2_DSSD_Y37_E 56.7297 -0.00692354
+EDIN_T2_DSSD_Y38_E 56.5669 -0.00690904
+EDIN_T2_DSSD_Y39_E 56.2353 -0.00686434
+EDIN_T2_DSSD_Y40_E 56.0605 -0.00683605
+EDIN_T2_DSSD_Y41_E 57.8921 -0.00706581
+EDIN_T2_DSSD_Y42_E 56.8378 -0.00694167
+EDIN_T2_DSSD_Y43_E 56.1668 -0.00685633
+EDIN_T2_DSSD_Y44_E 57.1736 -0.00697438
+EDIN_T2_DSSD_Y45_E 57.1146 -0.00697004
+EDIN_T2_DSSD_Y46_E 57.0347 -0.00696503
+EDIN_T2_DSSD_Y47_E 56.6995 -0.00692395
+EDIN_T2_DSSD_Y48_E 57.6463 -0.00703935
+EDIN_T2_DSSD_Y49_E 56.8816 -0.00694221
+EDIN_T2_DSSD_Y50_E 57.6197 -0.007027
+EDIN_T2_DSSD_Y51_E 57.0982 -0.00696628
+EDIN_T2_DSSD_Y52_E 57.0607 -0.0069611
+EDIN_T2_DSSD_Y53_E 58.2938 -0.00711296
+EDIN_T2_DSSD_Y54_E 57.3536 -0.00699681
+EDIN_T2_DSSD_Y55_E 57.7002 -0.0070433
+EDIN_T2_DSSD_Y56_E 57.6913 -0.0070446
+EDIN_T2_DSSD_Y57_E 57.4625 -0.00701406
+EDIN_T2_DSSD_Y58_E 57.5339 -0.00702592
+EDIN_T2_DSSD_Y59_E 58.1037 -0.00709062
+EDIN_T2_DSSD_Y60_E 57.6517 -0.00703636
+EDIN_T2_DSSD_Y61_E 57.2738 -0.00699268
+EDIN_T2_DSSD_Y62_E 57.5479 -0.00702183
+EDIN_T2_DSSD_Y63_E 57.9209 -0.0070673
+EDIN_T2_DSSD_Y64_E 59.3445 -0.00724661
+EDIN_T2_DSSD_Y65_E 59.1152 -0.00720968
+EDIN_T2_DSSD_Y66_E 59.3455 -0.00724365
+EDIN_T2_DSSD_Y67_E 60.3675 -0.00736968
+EDIN_T2_DSSD_Y68_E 59.4674 -0.00725991
+EDIN_T2_DSSD_Y69_E 59.7805 -0.00729818
+EDIN_T2_DSSD_Y70_E 59.407 -0.0072506
+EDIN_T2_DSSD_Y71_E 59.8303 -0.00730098
+EDIN_T2_DSSD_Y72_E 59.6133 -0.00727175
+EDIN_T2_DSSD_Y73_E 59.4611 -0.00725939
+EDIN_T2_DSSD_Y74_E 59.819 -0.00730197
+EDIN_T2_DSSD_Y75_E 59.9389 -0.00731478
+EDIN_T2_DSSD_Y76_E 59.2682 -0.00723539
+EDIN_T2_DSSD_Y77_E 59.7239 -0.00728809
+EDIN_T2_DSSD_Y78_E 59.2572 -0.0072339
+EDIN_T2_DSSD_Y79_E 59.9111 -0.00731045
+EDIN_T2_DSSD_Y80_E 60.372 -0.00736937
+EDIN_T2_DSSD_Y81_E 60.9866 -0.00744401
+EDIN_T2_DSSD_Y82_E 60.3006 -0.00735778
+EDIN_T2_DSSD_Y83_E 61.091 -0.00745649
+EDIN_T2_DSSD_Y84_E 61.1408 -0.0074625
+EDIN_T2_DSSD_Y85_E 60.6215 -0.00739872
+EDIN_T2_DSSD_Y86_E 60.8191 -0.00742516
+EDIN_T2_DSSD_Y87_E 61.2005 -0.00747154
+EDIN_T2_DSSD_Y88_E 60.6151 -0.00739683
+EDIN_T2_DSSD_Y89_E 60.6023 -0.00739569
+EDIN_T2_DSSD_Y90_E 61.294 -0.00748233
+EDIN_T2_DSSD_Y91_E 60.3249 -0.00736066
+EDIN_T2_DSSD_Y92_E 60.7802 -0.00741634
+EDIN_T2_DSSD_Y93_E 60.5912 -0.0073986
+EDIN_T2_DSSD_Y94_E 61.0494 -0.0074543
+EDIN_T2_DSSD_Y95_E 61.2259 -0.0074723
+EDIN_T2_DSSD_Y96_E 56.767 -0.00692993
+EDIN_T2_DSSD_Y97_E 55.8842 -0.00682215
+EDIN_T2_DSSD_Y98_E 55.9948 -0.00683354
+EDIN_T2_DSSD_Y99_E 56.5032 -0.00689574
+EDIN_T2_DSSD_Y100_E 56.2013 -0.00685846
+EDIN_T2_DSSD_Y101_E 56.6875 -0.00692035
+EDIN_T2_DSSD_Y102_E 55.8833 -0.00682028
+EDIN_T2_DSSD_Y103_E 56.9716 -0.00695232
+EDIN_T2_DSSD_Y104_E 55.9808 -0.0068345
+EDIN_T2_DSSD_Y105_E 56.3951 -0.00688072
+EDIN_T2_DSSD_Y106_E 56.523 -0.00690076
+EDIN_T2_DSSD_Y107_E 57.3852 -0.00700542
+EDIN_T2_DSSD_Y108_E 56.8841 -0.006943
+EDIN_T2_DSSD_Y109_E 56.4088 -0.00688278
+EDIN_T2_DSSD_Y110_E 56.9256 -0.00694942
+EDIN_T2_DSSD_Y111_E 56.0116 -0.00683751
+EDIN_T2_DSSD_Y112_E 56.3369 -0.00687712
+EDIN_T2_DSSD_Y113_E 57.2396 -0.00698874
+EDIN_T2_DSSD_Y114_E 56.4917 -0.00689683
+EDIN_T2_DSSD_Y115_E 56.6869 -0.00691913
+EDIN_T2_DSSD_Y116_E 56.2888 -0.00687008
+EDIN_T2_DSSD_Y117_E 56.3479 -0.00687777
+EDIN_T2_DSSD_Y118_E 56.6964 -0.00692013
+EDIN_T2_DSSD_Y119_E 56.5915 -0.00690786
+EDIN_T2_DSSD_Y120_E 56.0884 -0.00684535
+EDIN_T2_DSSD_Y121_E 56.9015 -0.00694589
+EDIN_T2_DSSD_Y122_E 57.3743 -0.0070056
+EDIN_T2_DSSD_Y123_E 6.82575 -0.844837
+EDIN_T2_DSSD_Y124_E 56.0464 -0.00684178
+EDIN_T2_DSSD_Y125_E 56.9017 -0.00694728
+EDIN_T2_DSSD_Y126_E 56.2566 -0.006867
+EDIN_T2_DSSD_Y127_E 56.0062 -0.00683531
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..7e0ee48aa5b9eaf759708a835a6e18f0d8ea3dda
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_X0_E_Zero_Dispersion -2.42348
+EDIN_T2_DSSD_X1_E_Zero_Dispersion -2.32565
+EDIN_T2_DSSD_X2_E_Zero_Dispersion -1.70954
+EDIN_T2_DSSD_X3_E_Zero_Dispersion -0.93988
+EDIN_T2_DSSD_X4_E_Zero_Dispersion -1.4585
+EDIN_T2_DSSD_X5_E_Zero_Dispersion -0.728393
+EDIN_T2_DSSD_X6_E_Zero_Dispersion -2.61116
+EDIN_T2_DSSD_X7_E_Zero_Dispersion -4.26056
+EDIN_T2_DSSD_X8_E_Zero_Dispersion -3.7517
+EDIN_T2_DSSD_X9_E_Zero_Dispersion -1.85143
+EDIN_T2_DSSD_X10_E_Zero_Dispersion -3.24938
+EDIN_T2_DSSD_X11_E_Zero_Dispersion -2.01508
+EDIN_T2_DSSD_X12_E_Zero_Dispersion -1.33746
+EDIN_T2_DSSD_X13_E_Zero_Dispersion -2.5894
+EDIN_T2_DSSD_X14_E_Zero_Dispersion -2.94817
+EDIN_T2_DSSD_X15_E_Zero_Dispersion -1.96166
+EDIN_T2_DSSD_X16_E_Zero_Dispersion -8.56126
+EDIN_T2_DSSD_X17_E_Zero_Dispersion -6.25371
+EDIN_T2_DSSD_X18_E_Zero_Dispersion -4.81945
+EDIN_T2_DSSD_X19_E_Zero_Dispersion -1.67631
+EDIN_T2_DSSD_X20_E_Zero_Dispersion -7.31559
+EDIN_T2_DSSD_X21_E_Zero_Dispersion -5.09282
+EDIN_T2_DSSD_X22_E_Zero_Dispersion 1.35023
+EDIN_T2_DSSD_X23_E_Zero_Dispersion -5.38096
+EDIN_T2_DSSD_X24_E_Zero_Dispersion -3.55712
+EDIN_T2_DSSD_X25_E_Zero_Dispersion -3.75293
+EDIN_T2_DSSD_X26_E_Zero_Dispersion 0.56756
+EDIN_T2_DSSD_X27_E_Zero_Dispersion -3.50174
+EDIN_T2_DSSD_X28_E_Zero_Dispersion 0.133472
+EDIN_T2_DSSD_X29_E_Zero_Dispersion -5.4653
+EDIN_T2_DSSD_X30_E_Zero_Dispersion -3.25333
+EDIN_T2_DSSD_X31_E_Zero_Dispersion -3.17121
+EDIN_T2_DSSD_X32_E_Zero_Dispersion -0.196339
+EDIN_T2_DSSD_X33_E_Zero_Dispersion -4.4941
+EDIN_T2_DSSD_X34_E_Zero_Dispersion -0.967098
+EDIN_T2_DSSD_X35_E_Zero_Dispersion -2.92968
+EDIN_T2_DSSD_X36_E_Zero_Dispersion 0.898504
+EDIN_T2_DSSD_X37_E_Zero_Dispersion -1.74236
+EDIN_T2_DSSD_X38_E_Zero_Dispersion 4.62804
+EDIN_T2_DSSD_X39_E_Zero_Dispersion -0.387863
+EDIN_T2_DSSD_X40_E_Zero_Dispersion -8.72277
+EDIN_T2_DSSD_X41_E_Zero_Dispersion -1.27485
+EDIN_T2_DSSD_X42_E_Zero_Dispersion 4.09026
+EDIN_T2_DSSD_X43_E_Zero_Dispersion 0.043723
+EDIN_T2_DSSD_X44_E_Zero_Dispersion -5.66238
+EDIN_T2_DSSD_X45_E_Zero_Dispersion -2.29688
+EDIN_T2_DSSD_X46_E_Zero_Dispersion 3.27154
+EDIN_T2_DSSD_X47_E_Zero_Dispersion 3.10116
+EDIN_T2_DSSD_X48_E_Zero_Dispersion 2.85014
+EDIN_T2_DSSD_X49_E_Zero_Dispersion -1.59283
+EDIN_T2_DSSD_X50_E_Zero_Dispersion -7.76806
+EDIN_T2_DSSD_X51_E_Zero_Dispersion -4.36698
+EDIN_T2_DSSD_X52_E_Zero_Dispersion -5.08248
+EDIN_T2_DSSD_X53_E_Zero_Dispersion -3.43024
+EDIN_T2_DSSD_X54_E_Zero_Dispersion -5.11109
+EDIN_T2_DSSD_X55_E_Zero_Dispersion -0.211241
+EDIN_T2_DSSD_X56_E_Zero_Dispersion 2.57154
+EDIN_T2_DSSD_X57_E_Zero_Dispersion -0.480694
+EDIN_T2_DSSD_X58_E_Zero_Dispersion 3.19339
+EDIN_T2_DSSD_X59_E_Zero_Dispersion -2.44151
+EDIN_T2_DSSD_X60_E_Zero_Dispersion -1.4014
+EDIN_T2_DSSD_X61_E_Zero_Dispersion 1.4657
+EDIN_T2_DSSD_X62_E_Zero_Dispersion -3.5779
+EDIN_T2_DSSD_X63_E_Zero_Dispersion -3.62517
+EDIN_T2_DSSD_X64_E_Zero_Dispersion 2.71683
+EDIN_T2_DSSD_X65_E_Zero_Dispersion -7.40988
+EDIN_T2_DSSD_X66_E_Zero_Dispersion -0.76599
+EDIN_T2_DSSD_X67_E_Zero_Dispersion 0.661453
+EDIN_T2_DSSD_X68_E_Zero_Dispersion 0.798704
+EDIN_T2_DSSD_X69_E_Zero_Dispersion 0.847437
+EDIN_T2_DSSD_X70_E_Zero_Dispersion -1.38987
+EDIN_T2_DSSD_X71_E_Zero_Dispersion -2.82554
+EDIN_T2_DSSD_X72_E_Zero_Dispersion -5.92974
+EDIN_T2_DSSD_X73_E_Zero_Dispersion 1.07297
+EDIN_T2_DSSD_X74_E_Zero_Dispersion -0.164958
+EDIN_T2_DSSD_X75_E_Zero_Dispersion -2.22346
+EDIN_T2_DSSD_X76_E_Zero_Dispersion 0.572025
+EDIN_T2_DSSD_X77_E_Zero_Dispersion -2.72737
+EDIN_T2_DSSD_X78_E_Zero_Dispersion 0.409691
+EDIN_T2_DSSD_X79_E_Zero_Dispersion -3.26428
+EDIN_T2_DSSD_X80_E_Zero_Dispersion -0.280829
+EDIN_T2_DSSD_X81_E_Zero_Dispersion -0.701766
+EDIN_T2_DSSD_X82_E_Zero_Dispersion -3.4871
+EDIN_T2_DSSD_X83_E_Zero_Dispersion -0.994055
+EDIN_T2_DSSD_X84_E_Zero_Dispersion -1.07151
+EDIN_T2_DSSD_X85_E_Zero_Dispersion -1.50907
+EDIN_T2_DSSD_X86_E_Zero_Dispersion 1.05267
+EDIN_T2_DSSD_X87_E_Zero_Dispersion 0.85632
+EDIN_T2_DSSD_X88_E_Zero_Dispersion -2.73801
+EDIN_T2_DSSD_X89_E_Zero_Dispersion -2.26986
+EDIN_T2_DSSD_X90_E_Zero_Dispersion 0.17018
+EDIN_T2_DSSD_X91_E_Zero_Dispersion -3.58063
+EDIN_T2_DSSD_X92_E_Zero_Dispersion -3.44762
+EDIN_T2_DSSD_X93_E_Zero_Dispersion 2.45593
+EDIN_T2_DSSD_X94_E_Zero_Dispersion 2.17782
+EDIN_T2_DSSD_X95_E_Zero_Dispersion -1.70958
+EDIN_T2_DSSD_X96_E_Zero_Dispersion 0.439838
+EDIN_T2_DSSD_X97_E_Zero_Dispersion 0.413338
+EDIN_T2_DSSD_X98_E_Zero_Dispersion -2.1071
+EDIN_T2_DSSD_X99_E_Zero_Dispersion -1.93597
+EDIN_T2_DSSD_X100_E_Zero_Dispersion -2.44353
+EDIN_T2_DSSD_X101_E_Zero_Dispersion 0.573167
+EDIN_T2_DSSD_X102_E_Zero_Dispersion -1.69432
+EDIN_T2_DSSD_X103_E_Zero_Dispersion -2.61017
+EDIN_T2_DSSD_X104_E_Zero_Dispersion 1.08866
+EDIN_T2_DSSD_X105_E_Zero_Dispersion -4.10709
+EDIN_T2_DSSD_X106_E_Zero_Dispersion 1.16204
+EDIN_T2_DSSD_X107_E_Zero_Dispersion 0.461815
+EDIN_T2_DSSD_X108_E_Zero_Dispersion -1.01862
+EDIN_T2_DSSD_X109_E_Zero_Dispersion -3.64241
+EDIN_T2_DSSD_X110_E_Zero_Dispersion 0.576806
+EDIN_T2_DSSD_X111_E_Zero_Dispersion 0.178436
+EDIN_T2_DSSD_X112_E_Zero_Dispersion 0.0622636
+EDIN_T2_DSSD_X113_E_Zero_Dispersion 1.74031
+EDIN_T2_DSSD_X114_E_Zero_Dispersion 1.02572
+EDIN_T2_DSSD_X115_E_Zero_Dispersion -0.77606
+EDIN_T2_DSSD_X116_E_Zero_Dispersion -1.32185
+EDIN_T2_DSSD_X117_E_Zero_Dispersion -0.750783
+EDIN_T2_DSSD_X118_E_Zero_Dispersion -0.97089
+EDIN_T2_DSSD_X119_E_Zero_Dispersion -0.329617
+EDIN_T2_DSSD_X120_E_Zero_Dispersion -1.65754
+EDIN_T2_DSSD_X121_E_Zero_Dispersion -0.11324
+EDIN_T2_DSSD_X122_E_Zero_Dispersion 2.2277
+EDIN_T2_DSSD_X123_E_Zero_Dispersion 8183.92
+EDIN_T2_DSSD_X124_E_Zero_Dispersion 0.214499
+EDIN_T2_DSSD_X125_E_Zero_Dispersion 1.49584
+EDIN_T2_DSSD_X126_E_Zero_Dispersion -0.310643
+EDIN_T2_DSSD_X127_E_Zero_Dispersion -1.65641
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/latex/double_alpha_run_0274_Y_MM2_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/latex/double_alpha_run_0274_Y_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..41d3e6612d5e5428c3ba1a9e0535916f8a7f62a5
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/latex/double_alpha_run_0274_Y_MM2_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+123 &  1 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.38247
+
+Sigma fit sigma: 0.516623
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..9c4059033ddcc10bb5b9b14134816101e01ca7c6
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_Y0_E 59.702 -0.00728302
+EDIN_T3_DSSD_Y1_E 58.3787 -0.0071186
+EDIN_T3_DSSD_Y2_E 59.5406 -0.00726078
+EDIN_T3_DSSD_Y3_E 59.4207 -0.00724628
+EDIN_T3_DSSD_Y4_E 59.2519 -0.00722493
+EDIN_T3_DSSD_Y5_E 59.5148 -0.00725591
+EDIN_T3_DSSD_Y6_E 59.2665 -0.00722811
+EDIN_T3_DSSD_Y7_E 59.672 -0.00727764
+EDIN_T3_DSSD_Y8_E 59.8899 -0.00730264
+EDIN_T3_DSSD_Y9_E 59.8021 -0.00729111
+EDIN_T3_DSSD_Y10_E 59.6681 -0.00727735
+EDIN_T3_DSSD_Y11_E 59.293 -0.00723063
+EDIN_T3_DSSD_Y12_E 59.176 -0.00721645
+EDIN_T3_DSSD_Y13_E 59.3339 -0.00723976
+EDIN_T3_DSSD_Y14_E 60.0332 -0.00732142
+EDIN_T3_DSSD_Y15_E 59.2042 -0.00721921
+EDIN_T3_DSSD_Y16_E 62.3463 -0.00760203
+EDIN_T3_DSSD_Y17_E 62.4922 -0.00761942
+EDIN_T3_DSSD_Y18_E 61.5402 -0.00750213
+EDIN_T3_DSSD_Y19_E 62.3021 -0.00760024
+EDIN_T3_DSSD_Y20_E 62.7324 -0.00765137
+EDIN_T3_DSSD_Y21_E 62.9757 -0.00767956
+EDIN_T3_DSSD_Y22_E 62.4365 -0.00761384
+EDIN_T3_DSSD_Y23_E 62.4332 -0.00761375
+EDIN_T3_DSSD_Y24_E 62.9777 -0.00768004
+EDIN_T3_DSSD_Y25_E 63.0395 -0.00769065
+EDIN_T3_DSSD_Y26_E 62.0007 -0.00756011
+EDIN_T3_DSSD_Y27_E 62.9293 -0.00767512
+EDIN_T3_DSSD_Y28_E 62.0982 -0.0075755
+EDIN_T3_DSSD_Y29_E 62.4728 -0.00761992
+EDIN_T3_DSSD_Y30_E 62.5931 -0.00763427
+EDIN_T3_DSSD_Y31_E 62.5802 -0.00763452
+EDIN_T3_DSSD_Y32_E 55.7914 -0.00680641
+EDIN_T3_DSSD_Y33_E 55.7674 -0.00680123
+EDIN_T3_DSSD_Y34_E 55.329 -0.00674626
+EDIN_T3_DSSD_Y35_E 55.2499 -0.00673764
+EDIN_T3_DSSD_Y36_E 55.2989 -0.00674368
+EDIN_T3_DSSD_Y37_E 55.8055 -0.00680603
+EDIN_T3_DSSD_Y38_E 55.4683 -0.00676398
+EDIN_T3_DSSD_Y39_E 55.2091 -0.00673465
+EDIN_T3_DSSD_Y40_E 54.9662 -0.00670321
+EDIN_T3_DSSD_Y41_E 55.7319 -0.00679671
+EDIN_T3_DSSD_Y42_E 55.5277 -0.0067717
+EDIN_T3_DSSD_Y43_E 54.9271 -0.00669793
+EDIN_T3_DSSD_Y44_E 55.2872 -0.00674212
+EDIN_T3_DSSD_Y45_E 55.1636 -0.0067267
+EDIN_T3_DSSD_Y46_E 55.5176 -0.00677111
+EDIN_T3_DSSD_Y47_E 55.445 -0.00676249
+EDIN_T3_DSSD_Y48_E 56.3994 -0.00688159
+EDIN_T3_DSSD_Y49_E 56.3874 -0.00687186
+EDIN_T3_DSSD_Y50_E 56.7626 -0.00692332
+EDIN_T3_DSSD_Y51_E 56.5674 -0.00690086
+EDIN_T3_DSSD_Y52_E 56.1204 -0.00684563
+EDIN_T3_DSSD_Y53_E 56.5875 -0.00690296
+EDIN_T3_DSSD_Y54_E 56.3352 -0.00687243
+EDIN_T3_DSSD_Y55_E 56.6813 -0.0069144
+EDIN_T3_DSSD_Y56_E 56.8614 -0.00694052
+EDIN_T3_DSSD_Y57_E 56.3936 -0.00688224
+EDIN_T3_DSSD_Y58_E 57.1705 -0.00697448
+EDIN_T3_DSSD_Y59_E 56.5912 -0.00690253
+EDIN_T3_DSSD_Y60_E 57.3671 -0.00699323
+EDIN_T3_DSSD_Y61_E 56.748 -0.00692368
+EDIN_T3_DSSD_Y62_E 56.3286 -0.00686989
+EDIN_T3_DSSD_Y63_E 56.8989 -0.00693749
+EDIN_T3_DSSD_Y64_E 58.9479 -0.00718907
+EDIN_T3_DSSD_Y65_E 59.4791 -0.00725117
+EDIN_T3_DSSD_Y66_E 59.1331 -0.00721363
+EDIN_T3_DSSD_Y67_E 58.9369 -0.00718937
+EDIN_T3_DSSD_Y68_E 58.9593 -0.00719074
+EDIN_T3_DSSD_Y69_E 58.3407 -0.00711646
+EDIN_T3_DSSD_Y70_E 58.7466 -0.00716412
+EDIN_T3_DSSD_Y71_E 59.5453 -0.0072637
+EDIN_T3_DSSD_Y72_E 59.7258 -0.00728509
+EDIN_T3_DSSD_Y73_E 59.0505 -0.00720025
+EDIN_T3_DSSD_Y74_E 59.0541 -0.00720339
+EDIN_T3_DSSD_Y75_E 59.1222 -0.00721096
+EDIN_T3_DSSD_Y76_E 59.1137 -0.00720993
+EDIN_T3_DSSD_Y77_E 59.0423 -0.00720339
+EDIN_T3_DSSD_Y78_E 58.6663 -0.00715385
+EDIN_T3_DSSD_Y79_E 59.5802 -0.00726772
+EDIN_T3_DSSD_Y80_E 62.6379 -0.00764533
+EDIN_T3_DSSD_Y81_E 62.4283 -0.00761774
+EDIN_T3_DSSD_Y82_E 62.1525 -0.00758286
+EDIN_T3_DSSD_Y83_E 61.8869 -0.00755255
+EDIN_T3_DSSD_Y84_E 61.7925 -0.0075406
+EDIN_T3_DSSD_Y85_E 62.4247 -0.00761548
+EDIN_T3_DSSD_Y86_E 61.9409 -0.00755804
+EDIN_T3_DSSD_Y87_E 62.6041 -0.00763803
+EDIN_T3_DSSD_Y88_E 62.3788 -0.00761206
+EDIN_T3_DSSD_Y89_E 62.1087 -0.00757722
+EDIN_T3_DSSD_Y90_E 61.3528 -0.00748336
+EDIN_T3_DSSD_Y91_E 61.7744 -0.00753941
+EDIN_T3_DSSD_Y92_E 61.4575 -0.00749639
+EDIN_T3_DSSD_Y93_E 61.7842 -0.00753712
+EDIN_T3_DSSD_Y94_E 61.6046 -0.00751549
+EDIN_T3_DSSD_Y95_E 61.6088 -0.00752019
+EDIN_T3_DSSD_Y96_E 56.2634 -0.00686135
+EDIN_T3_DSSD_Y97_E 56.2993 -0.00686374
+EDIN_T3_DSSD_Y98_E 55.8122 -0.00680555
+EDIN_T3_DSSD_Y99_E 55.437 -0.00675937
+EDIN_T3_DSSD_Y100_E 55.921 -0.00682207
+EDIN_T3_DSSD_Y101_E 55.8696 -0.00681459
+EDIN_T3_DSSD_Y102_E 55.5832 -0.0067806
+EDIN_T3_DSSD_Y103_E 55.6435 -0.00678703
+EDIN_T3_DSSD_Y104_E 55.4529 -0.00676431
+EDIN_T3_DSSD_Y105_E 55.8255 -0.00680724
+EDIN_T3_DSSD_Y106_E 56.1601 -0.00685133
+EDIN_T3_DSSD_Y107_E 55.9735 -0.00682879
+EDIN_T3_DSSD_Y108_E 55.277 -0.00674092
+EDIN_T3_DSSD_Y109_E 55.3963 -0.00675567
+EDIN_T3_DSSD_Y110_E 56.2012 -0.00685345
+EDIN_T3_DSSD_Y111_E 56.2256 -0.00685819
+EDIN_T3_DSSD_Y112_E 56.9505 -0.00694708
+EDIN_T3_DSSD_Y113_E 56.652 -0.00691043
+EDIN_T3_DSSD_Y114_E 56.4607 -0.0068827
+EDIN_T3_DSSD_Y115_E 56.5407 -0.00689618
+EDIN_T3_DSSD_Y116_E 57.1472 -0.00696739
+EDIN_T3_DSSD_Y117_E 56.8202 -0.00692948
+EDIN_T3_DSSD_Y118_E 56.3612 -0.00687348
+EDIN_T3_DSSD_Y119_E 57.3636 -0.00699479
+EDIN_T3_DSSD_Y120_E 57.1678 -0.00697736
+EDIN_T3_DSSD_Y121_E 56.3742 -0.00687323
+EDIN_T3_DSSD_Y122_E 56.9107 -0.00694054
+EDIN_T3_DSSD_Y123_E 56.493 -0.00688812
+EDIN_T3_DSSD_Y124_E 57.1898 -0.00697686
+EDIN_T3_DSSD_Y125_E 56.6657 -0.00691505
+EDIN_T3_DSSD_Y126_E 57.119 -0.00697105
+EDIN_T3_DSSD_Y127_E 56.999 -0.00695078
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..0cdabc39e4a07a88f677e6b378f51caa09e7c9d3
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_X0_E_Zero_Dispersion -5.41957
+EDIN_T3_DSSD_X1_E_Zero_Dispersion -8.86995
+EDIN_T3_DSSD_X2_E_Zero_Dispersion -8.30108
+EDIN_T3_DSSD_X3_E_Zero_Dispersion -8.15939
+EDIN_T3_DSSD_X4_E_Zero_Dispersion -9.03932
+EDIN_T3_DSSD_X5_E_Zero_Dispersion -10.2498
+EDIN_T3_DSSD_X6_E_Zero_Dispersion -7.43945
+EDIN_T3_DSSD_X7_E_Zero_Dispersion -7.36836
+EDIN_T3_DSSD_X8_E_Zero_Dispersion -9.11958
+EDIN_T3_DSSD_X9_E_Zero_Dispersion -10.0619
+EDIN_T3_DSSD_X10_E_Zero_Dispersion -7.15612
+EDIN_T3_DSSD_X11_E_Zero_Dispersion -8.24408
+EDIN_T3_DSSD_X12_E_Zero_Dispersion -8.14575
+EDIN_T3_DSSD_X13_E_Zero_Dispersion -3.56741
+EDIN_T3_DSSD_X14_E_Zero_Dispersion -7.66734
+EDIN_T3_DSSD_X15_E_Zero_Dispersion -8.92918
+EDIN_T3_DSSD_X16_E_Zero_Dispersion -9.27725
+EDIN_T3_DSSD_X17_E_Zero_Dispersion -9.70349
+EDIN_T3_DSSD_X18_E_Zero_Dispersion -11.0327
+EDIN_T3_DSSD_X19_E_Zero_Dispersion -5.38831
+EDIN_T3_DSSD_X20_E_Zero_Dispersion -6.83881
+EDIN_T3_DSSD_X21_E_Zero_Dispersion -8.42252
+EDIN_T3_DSSD_X22_E_Zero_Dispersion -8.39345
+EDIN_T3_DSSD_X23_E_Zero_Dispersion -8.05925
+EDIN_T3_DSSD_X24_E_Zero_Dispersion -8.17293
+EDIN_T3_DSSD_X25_E_Zero_Dispersion -4.9071
+EDIN_T3_DSSD_X26_E_Zero_Dispersion -9.02688
+EDIN_T3_DSSD_X27_E_Zero_Dispersion -7.12465
+EDIN_T3_DSSD_X28_E_Zero_Dispersion -5.2376
+EDIN_T3_DSSD_X29_E_Zero_Dispersion -6.61771
+EDIN_T3_DSSD_X30_E_Zero_Dispersion -6.96243
+EDIN_T3_DSSD_X31_E_Zero_Dispersion -5.00018
+EDIN_T3_DSSD_X32_E_Zero_Dispersion -4.88267
+EDIN_T3_DSSD_X33_E_Zero_Dispersion -7.59861
+EDIN_T3_DSSD_X34_E_Zero_Dispersion -9.43247
+EDIN_T3_DSSD_X35_E_Zero_Dispersion -8.19111
+EDIN_T3_DSSD_X36_E_Zero_Dispersion -8.10079
+EDIN_T3_DSSD_X37_E_Zero_Dispersion -7.41225
+EDIN_T3_DSSD_X38_E_Zero_Dispersion -8.5484
+EDIN_T3_DSSD_X39_E_Zero_Dispersion -5.77262
+EDIN_T3_DSSD_X40_E_Zero_Dispersion -7.97901
+EDIN_T3_DSSD_X41_E_Zero_Dispersion -7.83998
+EDIN_T3_DSSD_X42_E_Zero_Dispersion -7.95986
+EDIN_T3_DSSD_X43_E_Zero_Dispersion -8.60867
+EDIN_T3_DSSD_X44_E_Zero_Dispersion -8.28093
+EDIN_T3_DSSD_X45_E_Zero_Dispersion -8.6904
+EDIN_T3_DSSD_X46_E_Zero_Dispersion -7.19054
+EDIN_T3_DSSD_X47_E_Zero_Dispersion -6.90563
+EDIN_T3_DSSD_X48_E_Zero_Dispersion -3.70104
+EDIN_T3_DSSD_X49_E_Zero_Dispersion -13.5441
+EDIN_T3_DSSD_X50_E_Zero_Dispersion -6.76592
+EDIN_T3_DSSD_X51_E_Zero_Dispersion -5.14453
+EDIN_T3_DSSD_X52_E_Zero_Dispersion -5.99688
+EDIN_T3_DSSD_X53_E_Zero_Dispersion -5.57742
+EDIN_T3_DSSD_X54_E_Zero_Dispersion -5.26969
+EDIN_T3_DSSD_X55_E_Zero_Dispersion -5.56943
+EDIN_T3_DSSD_X56_E_Zero_Dispersion -0.672954
+EDIN_T3_DSSD_X57_E_Zero_Dispersion -2.07153
+EDIN_T3_DSSD_X58_E_Zero_Dispersion -5.09013
+EDIN_T3_DSSD_X59_E_Zero_Dispersion -6.62418
+EDIN_T3_DSSD_X60_E_Zero_Dispersion -11.2358
+EDIN_T3_DSSD_X61_E_Zero_Dispersion -4.21565
+EDIN_T3_DSSD_X62_E_Zero_Dispersion -7.34583
+EDIN_T3_DSSD_X63_E_Zero_Dispersion -9.65512
+EDIN_T3_DSSD_X64_E_Zero_Dispersion -7.65683
+EDIN_T3_DSSD_X65_E_Zero_Dispersion -10.6823
+EDIN_T3_DSSD_X66_E_Zero_Dispersion -5.40653
+EDIN_T3_DSSD_X67_E_Zero_Dispersion -5.79389
+EDIN_T3_DSSD_X68_E_Zero_Dispersion -7.3289
+EDIN_T3_DSSD_X69_E_Zero_Dispersion -5.99778
+EDIN_T3_DSSD_X70_E_Zero_Dispersion -8.12196
+EDIN_T3_DSSD_X71_E_Zero_Dispersion -5.65164
+EDIN_T3_DSSD_X72_E_Zero_Dispersion -6.36576
+EDIN_T3_DSSD_X73_E_Zero_Dispersion -9.1687
+EDIN_T3_DSSD_X74_E_Zero_Dispersion -6.09965
+EDIN_T3_DSSD_X75_E_Zero_Dispersion -6.93288
+EDIN_T3_DSSD_X76_E_Zero_Dispersion -6.92679
+EDIN_T3_DSSD_X77_E_Zero_Dispersion -4.45287
+EDIN_T3_DSSD_X78_E_Zero_Dispersion -8.66758
+EDIN_T3_DSSD_X79_E_Zero_Dispersion -5.9207
+EDIN_T3_DSSD_X80_E_Zero_Dispersion -0.957496
+EDIN_T3_DSSD_X81_E_Zero_Dispersion -3.12253
+EDIN_T3_DSSD_X82_E_Zero_Dispersion -4.44679
+EDIN_T3_DSSD_X83_E_Zero_Dispersion -2.17414
+EDIN_T3_DSSD_X84_E_Zero_Dispersion -2.63732
+EDIN_T3_DSSD_X85_E_Zero_Dispersion -5.08047
+EDIN_T3_DSSD_X86_E_Zero_Dispersion -3.36589
+EDIN_T3_DSSD_X87_E_Zero_Dispersion -4.36667
+EDIN_T3_DSSD_X88_E_Zero_Dispersion -2.74132
+EDIN_T3_DSSD_X89_E_Zero_Dispersion -4.76239
+EDIN_T3_DSSD_X90_E_Zero_Dispersion -6.55583
+EDIN_T3_DSSD_X91_E_Zero_Dispersion -1.53525
+EDIN_T3_DSSD_X92_E_Zero_Dispersion -6.27653
+EDIN_T3_DSSD_X93_E_Zero_Dispersion -5.3257
+EDIN_T3_DSSD_X94_E_Zero_Dispersion -5.01043
+EDIN_T3_DSSD_X95_E_Zero_Dispersion -0.456113
+EDIN_T3_DSSD_X96_E_Zero_Dispersion -8.04745
+EDIN_T3_DSSD_X97_E_Zero_Dispersion -10.4259
+EDIN_T3_DSSD_X98_E_Zero_Dispersion -8.97827
+EDIN_T3_DSSD_X99_E_Zero_Dispersion -9.50101
+EDIN_T3_DSSD_X100_E_Zero_Dispersion -5.06649
+EDIN_T3_DSSD_X101_E_Zero_Dispersion -6.52895
+EDIN_T3_DSSD_X102_E_Zero_Dispersion -5.38737
+EDIN_T3_DSSD_X103_E_Zero_Dispersion -6.51207
+EDIN_T3_DSSD_X104_E_Zero_Dispersion -5.86657
+EDIN_T3_DSSD_X105_E_Zero_Dispersion -8.89782
+EDIN_T3_DSSD_X106_E_Zero_Dispersion -4.95711
+EDIN_T3_DSSD_X107_E_Zero_Dispersion -4.69307
+EDIN_T3_DSSD_X108_E_Zero_Dispersion -8.20475
+EDIN_T3_DSSD_X109_E_Zero_Dispersion -7.97014
+EDIN_T3_DSSD_X110_E_Zero_Dispersion -8.41562
+EDIN_T3_DSSD_X111_E_Zero_Dispersion -6.30905
+EDIN_T3_DSSD_X112_E_Zero_Dispersion -5.75683
+EDIN_T3_DSSD_X113_E_Zero_Dispersion -6.0403
+EDIN_T3_DSSD_X114_E_Zero_Dispersion -11.2787
+EDIN_T3_DSSD_X115_E_Zero_Dispersion -6.84209
+EDIN_T3_DSSD_X116_E_Zero_Dispersion -10.0933
+EDIN_T3_DSSD_X117_E_Zero_Dispersion -7.77647
+EDIN_T3_DSSD_X118_E_Zero_Dispersion -7.81202
+EDIN_T3_DSSD_X119_E_Zero_Dispersion -8.89558
+EDIN_T3_DSSD_X120_E_Zero_Dispersion -1.3233
+EDIN_T3_DSSD_X121_E_Zero_Dispersion -10.0015
+EDIN_T3_DSSD_X122_E_Zero_Dispersion -7.74672
+EDIN_T3_DSSD_X123_E_Zero_Dispersion -9.50896
+EDIN_T3_DSSD_X124_E_Zero_Dispersion -5.07719
+EDIN_T3_DSSD_X125_E_Zero_Dispersion -2.54399
+EDIN_T3_DSSD_X126_E_Zero_Dispersion -1.7462
+EDIN_T3_DSSD_X127_E_Zero_Dispersion -8.38043
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/latex/double_alpha_run_0274_Y_MM3_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/latex/double_alpha_run_0274_Y_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..c6a0d45433f48fe5e60bad012f0eb802f20aeead
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/latex/double_alpha_run_0274_Y_MM3_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.00954
+
+Sigma fit sigma: 0.166493
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b01fc733ae7ac6a03d61204977c8760141e85c38
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+EDIN_T0_DSSD_X1_E -61.1208 0.00746406
+EDIN_T0_DSSD_X2_E -61.6675 0.00752582
+EDIN_T0_DSSD_X3_E -61.2762 0.0074817
+EDIN_T0_DSSD_X4_E -61.1528 0.00746629
+EDIN_T0_DSSD_X5_E -61.4073 0.00749789
+EDIN_T0_DSSD_X6_E -61.2983 0.00748309
+EDIN_T0_DSSD_X7_E -60.9942 0.00744676
+EDIN_T0_DSSD_X8_E -60.7568 0.00741862
+EDIN_T0_DSSD_X9_E -60.7209 0.00741264
+EDIN_T0_DSSD_X10_E -62.3275 0.00760814
+EDIN_T0_DSSD_X11_E -62.0191 0.00757165
+EDIN_T0_DSSD_X12_E -61.6158 0.00752169
+EDIN_T0_DSSD_X13_E -61.6131 0.0075228
+EDIN_T0_DSSD_X14_E -61.419 0.00749721
+EDIN_T0_DSSD_X15_E -62.1513 0.00758648
+EDIN_T0_DSSD_X16_E -61.0179 0.00744761
+EDIN_T0_DSSD_X17_E -62.6095 0.00764466
+EDIN_T0_DSSD_X18_E -61.9721 0.00757029
+EDIN_T0_DSSD_X19_E -61.8277 0.00754841
+EDIN_T0_DSSD_X20_E -61.9456 0.00756393
+EDIN_T0_DSSD_X21_E -63.5377 0.00775798
+EDIN_T0_DSSD_X22_E -62.0787 0.00758034
+EDIN_T0_DSSD_X23_E -61.9391 0.00756191
+EDIN_T0_DSSD_X24_E -62.145 0.00758935
+EDIN_T0_DSSD_X25_E -62.3753 0.00761693
+EDIN_T0_DSSD_X26_E -62.5654 0.00763812
+EDIN_T0_DSSD_X27_E -62.6261 0.00764629
+EDIN_T0_DSSD_X28_E -62.036 0.00757722
+EDIN_T0_DSSD_X29_E -62.7202 0.00765514
+EDIN_T0_DSSD_X30_E -62.1674 0.00759131
+EDIN_T0_DSSD_X31_E -63.0507 0.00769798
+EDIN_T0_DSSD_X32_E -62.2015 0.00759476
+EDIN_T0_DSSD_X33_E -56.0625 0.00684513
+EDIN_T0_DSSD_X34_E -56.3393 0.00687979
+EDIN_T0_DSSD_X35_E -55.0695 0.00672469
+EDIN_T0_DSSD_X36_E -55.825 0.00681772
+EDIN_T0_DSSD_X37_E -55.5784 0.00678682
+EDIN_T0_DSSD_X38_E -54.9215 0.00670936
+EDIN_T0_DSSD_X39_E -55.4209 0.00676909
+EDIN_T0_DSSD_X40_E -55.19 0.00674055
+EDIN_T0_DSSD_X41_E -55.8977 0.00682444
+EDIN_T0_DSSD_X42_E -55.5041 0.00677725
+EDIN_T0_DSSD_X43_E -55.7618 0.00680926
+EDIN_T0_DSSD_X44_E -55.8855 0.00682401
+EDIN_T0_DSSD_X45_E -55.9116 0.00682759
+EDIN_T0_DSSD_X46_E -56.0731 0.00684536
+EDIN_T0_DSSD_X47_E -55.4323 0.00677014
+EDIN_T0_DSSD_X48_E -55.6243 0.00679015
+EDIN_T0_DSSD_X49_E -57.4481 0.00701463
+EDIN_T0_DSSD_X50_E -57.3166 0.00699996
+EDIN_T0_DSSD_X51_E -57.4682 0.00701473
+EDIN_T0_DSSD_X52_E -56.9036 0.00694772
+EDIN_T0_DSSD_X53_E -57.9253 0.00707135
+EDIN_T0_DSSD_X54_E -56.8322 0.00693982
+EDIN_T0_DSSD_X55_E -57.3403 0.00700263
+EDIN_T0_DSSD_X56_E -57.11 0.00697302
+EDIN_T0_DSSD_X57_E -58.0662 0.00709005
+EDIN_T0_DSSD_X58_E -57.1909 0.00698498
+EDIN_T0_DSSD_X59_E -57.1516 0.00697543
+EDIN_T0_DSSD_X60_E -57.3091 0.00699896
+EDIN_T0_DSSD_X61_E -56.8788 0.00694276
+EDIN_T0_DSSD_X62_E -57.5062 0.00702177
+EDIN_T0_DSSD_X63_E -57.4608 0.00701642
+EDIN_T0_DSSD_X64_E -57.6054 0.00703493
+EDIN_T0_DSSD_X65_E -62.6637 0.00765519
+EDIN_T0_DSSD_X66_E -62.8084 0.00767265
+EDIN_T0_DSSD_X67_E -62.6318 0.00765143
+EDIN_T0_DSSD_X68_E -63.6899 0.00777649
+EDIN_T0_DSSD_X69_E -62.46 0.00763065
+EDIN_T0_DSSD_X70_E -62.9383 0.00769239
+EDIN_T0_DSSD_X71_E -63.1232 0.00771022
+EDIN_T0_DSSD_X72_E -62.3967 0.00762575
+EDIN_T0_DSSD_X73_E -63.1794 0.007721
+EDIN_T0_DSSD_X74_E -62.2726 0.00761037
+EDIN_T0_DSSD_X75_E -62.7728 0.00767497
+EDIN_T0_DSSD_X76_E -62.9363 0.00769246
+EDIN_T0_DSSD_X77_E -62.5638 0.00764824
+EDIN_T0_DSSD_X78_E -62.5178 0.00764408
+EDIN_T0_DSSD_X79_E -62.6461 0.00766375
+EDIN_T0_DSSD_X80_E -63.525 0.00776621
+EDIN_T0_DSSD_X81_E -59.9128 0.00732741
+EDIN_T0_DSSD_X82_E -59.3636 0.00726247
+EDIN_T0_DSSD_X83_E -59.8482 0.00731971
+EDIN_T0_DSSD_X84_E -60.4754 0.00739241
+EDIN_T0_DSSD_X85_E -60.3435 0.00737654
+EDIN_T0_DSSD_X86_E -60.9015 0.00744372
+EDIN_T0_DSSD_X87_E -60.4558 0.00738888
+EDIN_T0_DSSD_X88_E -61.235 0.00748304
+EDIN_T0_DSSD_X89_E -61.2602 0.00748247
+EDIN_T0_DSSD_X90_E -60.8604 0.00743528
+EDIN_T0_DSSD_X91_E -61.0173 0.00745408
+EDIN_T0_DSSD_X92_E -62.0709 0.00758305
+EDIN_T0_DSSD_X93_E -61.1413 0.00746888
+EDIN_T0_DSSD_X94_E -60.3266 0.00736933
+EDIN_T0_DSSD_X95_E -60.7026 0.00741607
+EDIN_T0_DSSD_X96_E -61.6511 0.00752938
+EDIN_T0_DSSD_X97_E -56.8975 0.00694585
+EDIN_T0_DSSD_X98_E -56.7045 0.00692979
+EDIN_T0_DSSD_X99_E -57.4852 0.00701765
+EDIN_T0_DSSD_X100_E -56.5094 0.00690243
+EDIN_T0_DSSD_X101_E -58.135 0.0070925
+EDIN_T0_DSSD_X102_E -57.0159 0.00696594
+EDIN_T0_DSSD_X103_E -56.915 0.00695517
+EDIN_T0_DSSD_X104_E -56.5216 0.00690647
+EDIN_T0_DSSD_X105_E -56.8348 0.00694123
+EDIN_T0_DSSD_X106_E -57.3582 0.00700658
+EDIN_T0_DSSD_X107_E -56.9332 0.00695083
+EDIN_T0_DSSD_X108_E -56.998 0.00696262
+EDIN_T0_DSSD_X109_E -58.1328 0.00709928
+EDIN_T0_DSSD_X110_E -57.4545 0.00701814
+EDIN_T0_DSSD_X111_E -56.8124 0.0069431
+EDIN_T0_DSSD_X112_E -56.9338 0.00695883
+EDIN_T0_DSSD_X113_E -58.4826 0.00714263
+EDIN_T0_DSSD_X114_E -58.3264 0.00712789
+EDIN_T0_DSSD_X115_E -57.9386 0.00707706
+EDIN_T0_DSSD_X116_E -58.0162 0.00708749
+EDIN_T0_DSSD_X117_E -57.4747 0.00702134
+EDIN_T0_DSSD_X118_E -57.6784 0.00704615
+EDIN_T0_DSSD_X119_E -57.8784 0.00706734
+EDIN_T0_DSSD_X120_E -58.208 0.0071064
+EDIN_T0_DSSD_X121_E -57.9961 0.00708332
+EDIN_T0_DSSD_X122_E -58.2606 0.00711423
+EDIN_T0_DSSD_X123_E -57.9878 0.00708282
+EDIN_T0_DSSD_X124_E -59.0777 0.00721175
+EDIN_T0_DSSD_X125_E -57.4447 0.0070148
+EDIN_T0_DSSD_X126_E -58.0233 0.00708585
+EDIN_T0_DSSD_X127_E -58.1629 0.00710048
+EDIN_T0_DSSD_X128_E -58.9941 0.007205
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..d62ccc4efcdbaf472e7713ca9405979c691fcc61
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.dispersion
@@ -0,0 +1,128 @@
+EDIN_T1_DSSD_X1_E_Zero_Dispersion 3.31826
+EDIN_T1_DSSD_X2_E_Zero_Dispersion -2.12122
+EDIN_T1_DSSD_X3_E_Zero_Dispersion 1.8638
+EDIN_T1_DSSD_X4_E_Zero_Dispersion 1.47715
+EDIN_T1_DSSD_X5_E_Zero_Dispersion 2.05422
+EDIN_T1_DSSD_X6_E_Zero_Dispersion 0.429893
+EDIN_T1_DSSD_X7_E_Zero_Dispersion 1.29458
+EDIN_T1_DSSD_X8_E_Zero_Dispersion 2.2296
+EDIN_T1_DSSD_X9_E_Zero_Dispersion 0.455026
+EDIN_T1_DSSD_X10_E_Zero_Dispersion -0.202696
+EDIN_T1_DSSD_X11_E_Zero_Dispersion 1.03105
+EDIN_T1_DSSD_X12_E_Zero_Dispersion 0.253439
+EDIN_T1_DSSD_X13_E_Zero_Dispersion 1.82041
+EDIN_T1_DSSD_X14_E_Zero_Dispersion -0.247248
+EDIN_T1_DSSD_X15_E_Zero_Dispersion -0.372974
+EDIN_T1_DSSD_X16_E_Zero_Dispersion -0.948618
+EDIN_T1_DSSD_X17_E_Zero_Dispersion 2.0412
+EDIN_T1_DSSD_X18_E_Zero_Dispersion 5.76735
+EDIN_T1_DSSD_X19_E_Zero_Dispersion 1.16575
+EDIN_T1_DSSD_X20_E_Zero_Dispersion 2.39481
+EDIN_T1_DSSD_X21_E_Zero_Dispersion 2.02453
+EDIN_T1_DSSD_X22_E_Zero_Dispersion 2.56637
+EDIN_T1_DSSD_X23_E_Zero_Dispersion 1.06394
+EDIN_T1_DSSD_X24_E_Zero_Dispersion 3.56234
+EDIN_T1_DSSD_X25_E_Zero_Dispersion 2.95716
+EDIN_T1_DSSD_X26_E_Zero_Dispersion 0.789701
+EDIN_T1_DSSD_X27_E_Zero_Dispersion 1.60545
+EDIN_T1_DSSD_X28_E_Zero_Dispersion 4.83078
+EDIN_T1_DSSD_X29_E_Zero_Dispersion -1.20681
+EDIN_T1_DSSD_X30_E_Zero_Dispersion 2.7154
+EDIN_T1_DSSD_X31_E_Zero_Dispersion 1.45376
+EDIN_T1_DSSD_X32_E_Zero_Dispersion 1.9387
+EDIN_T1_DSSD_X33_E_Zero_Dispersion 1.87169
+EDIN_T1_DSSD_X34_E_Zero_Dispersion 2.89343
+EDIN_T1_DSSD_X35_E_Zero_Dispersion 2.8554
+EDIN_T1_DSSD_X36_E_Zero_Dispersion 3.77693
+EDIN_T1_DSSD_X37_E_Zero_Dispersion 2.83182
+EDIN_T1_DSSD_X38_E_Zero_Dispersion 6.19925
+EDIN_T1_DSSD_X39_E_Zero_Dispersion 4.64912
+EDIN_T1_DSSD_X40_E_Zero_Dispersion 4.2395
+EDIN_T1_DSSD_X41_E_Zero_Dispersion 1.18291
+EDIN_T1_DSSD_X42_E_Zero_Dispersion 2.2358
+EDIN_T1_DSSD_X43_E_Zero_Dispersion 2.89726
+EDIN_T1_DSSD_X44_E_Zero_Dispersion 2.45726
+EDIN_T1_DSSD_X45_E_Zero_Dispersion 2.9394
+EDIN_T1_DSSD_X46_E_Zero_Dispersion 0.597119
+EDIN_T1_DSSD_X47_E_Zero_Dispersion 4.23
+EDIN_T1_DSSD_X48_E_Zero_Dispersion 0.091128
+EDIN_T1_DSSD_X49_E_Zero_Dispersion 2.24858
+EDIN_T1_DSSD_X50_E_Zero_Dispersion 3.85479
+EDIN_T1_DSSD_X51_E_Zero_Dispersion -0.509961
+EDIN_T1_DSSD_X52_E_Zero_Dispersion 1.73771
+EDIN_T1_DSSD_X53_E_Zero_Dispersion 0.444579
+EDIN_T1_DSSD_X54_E_Zero_Dispersion 2.70882
+EDIN_T1_DSSD_X55_E_Zero_Dispersion 3.60445
+EDIN_T1_DSSD_X56_E_Zero_Dispersion 1.8604
+EDIN_T1_DSSD_X57_E_Zero_Dispersion 2.17985
+EDIN_T1_DSSD_X58_E_Zero_Dispersion 4.30362
+EDIN_T1_DSSD_X59_E_Zero_Dispersion -1.27124
+EDIN_T1_DSSD_X60_E_Zero_Dispersion 3.76398
+EDIN_T1_DSSD_X61_E_Zero_Dispersion -0.528796
+EDIN_T1_DSSD_X62_E_Zero_Dispersion 2.30742
+EDIN_T1_DSSD_X63_E_Zero_Dispersion 2.52882
+EDIN_T1_DSSD_X64_E_Zero_Dispersion 3.52446
+EDIN_T1_DSSD_X65_E_Zero_Dispersion 6.21631
+EDIN_T1_DSSD_X66_E_Zero_Dispersion 5.9921
+EDIN_T1_DSSD_X67_E_Zero_Dispersion 6.36861
+EDIN_T1_DSSD_X68_E_Zero_Dispersion 1.94082
+EDIN_T1_DSSD_X69_E_Zero_Dispersion 6.59321
+EDIN_T1_DSSD_X70_E_Zero_Dispersion 10.1099
+EDIN_T1_DSSD_X71_E_Zero_Dispersion 5.05423
+EDIN_T1_DSSD_X72_E_Zero_Dispersion 9.62236
+EDIN_T1_DSSD_X73_E_Zero_Dispersion 9.19309
+EDIN_T1_DSSD_X74_E_Zero_Dispersion 9.40983
+EDIN_T1_DSSD_X75_E_Zero_Dispersion 13.1014
+EDIN_T1_DSSD_X76_E_Zero_Dispersion 10.4419
+EDIN_T1_DSSD_X77_E_Zero_Dispersion 11.8371
+EDIN_T1_DSSD_X78_E_Zero_Dispersion 13.4091
+EDIN_T1_DSSD_X79_E_Zero_Dispersion 17.6642
+EDIN_T1_DSSD_X80_E_Zero_Dispersion 12.3404
+EDIN_T1_DSSD_X81_E_Zero_Dispersion 15.4726
+EDIN_T1_DSSD_X82_E_Zero_Dispersion 17.9738
+EDIN_T1_DSSD_X83_E_Zero_Dispersion 15.6833
+EDIN_T1_DSSD_X84_E_Zero_Dispersion 11.262
+EDIN_T1_DSSD_X85_E_Zero_Dispersion 11.5359
+EDIN_T1_DSSD_X86_E_Zero_Dispersion 10.4098
+EDIN_T1_DSSD_X87_E_Zero_Dispersion 9.99555
+EDIN_T1_DSSD_X88_E_Zero_Dispersion 8.8319
+EDIN_T1_DSSD_X89_E_Zero_Dispersion 4.84346
+EDIN_T1_DSSD_X90_E_Zero_Dispersion 6.63797
+EDIN_T1_DSSD_X91_E_Zero_Dispersion 6.23688
+EDIN_T1_DSSD_X92_E_Zero_Dispersion 6.52259
+EDIN_T1_DSSD_X93_E_Zero_Dispersion 5.8684
+EDIN_T1_DSSD_X94_E_Zero_Dispersion 5.82198
+EDIN_T1_DSSD_X95_E_Zero_Dispersion 6.72663
+EDIN_T1_DSSD_X96_E_Zero_Dispersion 3.9278
+EDIN_T1_DSSD_X97_E_Zero_Dispersion 0.411282
+EDIN_T1_DSSD_X98_E_Zero_Dispersion 9.27819
+EDIN_T1_DSSD_X99_E_Zero_Dispersion 0.488031
+EDIN_T1_DSSD_X100_E_Zero_Dispersion 5.11102
+EDIN_T1_DSSD_X101_E_Zero_Dispersion -4.68532
+EDIN_T1_DSSD_X102_E_Zero_Dispersion 7.03328
+EDIN_T1_DSSD_X103_E_Zero_Dispersion 8.87449
+EDIN_T1_DSSD_X104_E_Zero_Dispersion 8.14285
+EDIN_T1_DSSD_X105_E_Zero_Dispersion 4.00011
+EDIN_T1_DSSD_X106_E_Zero_Dispersion 5.67661
+EDIN_T1_DSSD_X107_E_Zero_Dispersion 1.15362
+EDIN_T1_DSSD_X108_E_Zero_Dispersion 5.71981
+EDIN_T1_DSSD_X109_E_Zero_Dispersion 3.44129
+EDIN_T1_DSSD_X110_E_Zero_Dispersion 5.42935
+EDIN_T1_DSSD_X111_E_Zero_Dispersion 9.43061
+EDIN_T1_DSSD_X112_E_Zero_Dispersion 10.476
+EDIN_T1_DSSD_X113_E_Zero_Dispersion 4.17
+EDIN_T1_DSSD_X114_E_Zero_Dispersion 9.15367
+EDIN_T1_DSSD_X115_E_Zero_Dispersion 5.19154
+EDIN_T1_DSSD_X116_E_Zero_Dispersion 6.2837
+EDIN_T1_DSSD_X117_E_Zero_Dispersion 6.28696
+EDIN_T1_DSSD_X118_E_Zero_Dispersion 6.20439
+EDIN_T1_DSSD_X119_E_Zero_Dispersion 2.44417
+EDIN_T1_DSSD_X120_E_Zero_Dispersion 1.07086
+EDIN_T1_DSSD_X121_E_Zero_Dispersion 4.31051
+EDIN_T1_DSSD_X122_E_Zero_Dispersion 2.69751
+EDIN_T1_DSSD_X123_E_Zero_Dispersion 4.89076
+EDIN_T1_DSSD_X124_E_Zero_Dispersion 0.134467
+EDIN_T1_DSSD_X125_E_Zero_Dispersion 2.93377
+EDIN_T1_DSSD_X126_E_Zero_Dispersion 3.3914
+EDIN_T1_DSSD_X127_E_Zero_Dispersion 0.596674
+EDIN_T1_DSSD_X128_E_Zero_Dispersion 4.06162
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/latex/double_alpha_run_244_X_MM1_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/latex/double_alpha_run_244_X_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b24bdf0aa2269edbfdc3f9472b8ba1bdcbaea739
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/latex/double_alpha_run_244_X_MM1_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 1.91975
+
+Sigma fit sigma: 0.254217
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..08522fe52e17354fb923422b7ea2acca4d7149b1
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+EDIN_T1_DSSD_X1_E -62.3624 0.00761012
+EDIN_T1_DSSD_X2_E -62.371 0.00760877
+EDIN_T1_DSSD_X3_E -62.1936 0.00759021
+EDIN_T1_DSSD_X4_E -62.0099 0.0075663
+EDIN_T1_DSSD_X5_E -61.4333 0.00749709
+EDIN_T1_DSSD_X6_E -61.6076 0.00751681
+EDIN_T1_DSSD_X7_E -62.4597 0.00761988
+EDIN_T1_DSSD_X8_E -61.3276 0.00748486
+EDIN_T1_DSSD_X9_E -61.1994 0.00746931
+EDIN_T1_DSSD_X10_E -61.5135 0.00750523
+EDIN_T1_DSSD_X11_E -61.843 0.00754449
+EDIN_T1_DSSD_X12_E -61.7608 0.00753579
+EDIN_T1_DSSD_X13_E -61.9736 0.00756143
+EDIN_T1_DSSD_X14_E -61.4587 0.00749868
+EDIN_T1_DSSD_X15_E -61.3372 0.00748218
+EDIN_T1_DSSD_X16_E -62.049 0.00757062
+EDIN_T1_DSSD_X17_E -62.8031 0.00766039
+EDIN_T1_DSSD_X18_E -62.1984 0.00758379
+EDIN_T1_DSSD_X19_E -62.0833 0.00757771
+EDIN_T1_DSSD_X20_E -62.3149 0.00759894
+EDIN_T1_DSSD_X21_E -62.793 0.00766413
+EDIN_T1_DSSD_X22_E -62.3253 0.00760286
+EDIN_T1_DSSD_X23_E -62.9052 0.00767299
+EDIN_T1_DSSD_X24_E -62.6229 0.00763869
+EDIN_T1_DSSD_X25_E -62.7474 0.00765064
+EDIN_T1_DSSD_X26_E -62.3524 0.00760372
+EDIN_T1_DSSD_X27_E -62.1417 0.00758143
+EDIN_T1_DSSD_X28_E -61.9796 0.00755889
+EDIN_T1_DSSD_X29_E -61.5268 0.00750914
+EDIN_T1_DSSD_X30_E -63.0556 0.00769029
+EDIN_T1_DSSD_X31_E -62.285 0.00759403
+EDIN_T1_DSSD_X32_E -63.1497 0.00770174
+EDIN_T1_DSSD_X33_E -58.2595 0.00710945
+EDIN_T1_DSSD_X34_E -58.1495 0.0070983
+EDIN_T1_DSSD_X35_E -58.425 0.00712764
+EDIN_T1_DSSD_X36_E -57.5043 0.00702656
+EDIN_T1_DSSD_X37_E -58.3774 0.00711928
+EDIN_T1_DSSD_X38_E -58.4588 0.00712951
+EDIN_T1_DSSD_X39_E -58.6065 0.00714334
+EDIN_T1_DSSD_X40_E -58.9822 0.00719271
+EDIN_T1_DSSD_X41_E -58.7956 0.00716704
+EDIN_T1_DSSD_X42_E -58.8535 0.00718162
+EDIN_T1_DSSD_X43_E -58.2322 0.00710428
+EDIN_T1_DSSD_X44_E -57.8207 0.00706366
+EDIN_T1_DSSD_X45_E -58.6346 0.0071536
+EDIN_T1_DSSD_X46_E -59.7894 0.00728966
+EDIN_T1_DSSD_X47_E -59.2746 0.00722547
+EDIN_T1_DSSD_X48_E -58.529 0.00714105
+EDIN_T1_DSSD_X49_E -58.0371 0.0070803
+EDIN_T1_DSSD_X50_E -58.6199 0.00715229
+EDIN_T1_DSSD_X51_E -58.337 0.00711425
+EDIN_T1_DSSD_X52_E -58.0837 0.00708355
+EDIN_T1_DSSD_X53_E -58.1637 0.00709458
+EDIN_T1_DSSD_X54_E -57.9776 0.00707403
+EDIN_T1_DSSD_X55_E -58.3312 0.00711354
+EDIN_T1_DSSD_X56_E -58.1594 0.00709216
+EDIN_T1_DSSD_X57_E -58.0287 0.00708161
+EDIN_T1_DSSD_X58_E -57.9741 0.00707198
+EDIN_T1_DSSD_X59_E -58.5591 0.00714465
+EDIN_T1_DSSD_X60_E -57.7298 0.00704314
+EDIN_T1_DSSD_X61_E -57.911 0.00706416
+EDIN_T1_DSSD_X62_E -58.32 0.00711548
+EDIN_T1_DSSD_X63_E -57.9209 0.00706902
+EDIN_T1_DSSD_X64_E -57.6581 0.00704331
+EDIN_T1_DSSD_X65_E -61.1032 0.00745382
+EDIN_T1_DSSD_X66_E -61.5619 0.00751166
+EDIN_T1_DSSD_X67_E -61.3687 0.00748805
+EDIN_T1_DSSD_X68_E -61.9709 0.0075568
+EDIN_T1_DSSD_X69_E -61.6644 0.00752686
+EDIN_T1_DSSD_X70_E -61.3912 0.00749046
+EDIN_T1_DSSD_X71_E -61.9218 0.007552
+EDIN_T1_DSSD_X72_E -62.0173 0.00756577
+EDIN_T1_DSSD_X73_E -61.2703 0.00747548
+EDIN_T1_DSSD_X74_E -62.3646 0.00760904
+EDIN_T1_DSSD_X75_E -61.6779 0.0075284
+EDIN_T1_DSSD_X76_E -61.8796 0.00755244
+EDIN_T1_DSSD_X77_E -61.8422 0.00754114
+EDIN_T1_DSSD_X78_E -61.8398 0.00754322
+EDIN_T1_DSSD_X79_E -61.5458 0.00750591
+EDIN_T1_DSSD_X80_E -61.74 0.00753496
+EDIN_T1_DSSD_X81_E -63.3825 0.00773354
+EDIN_T1_DSSD_X82_E -63.5514 0.00775624
+EDIN_T1_DSSD_X83_E -64.0743 0.00781917
+EDIN_T1_DSSD_X84_E -63.8267 0.00778846
+EDIN_T1_DSSD_X85_E -63.882 0.00779768
+EDIN_T1_DSSD_X86_E -64.0168 0.00780882
+EDIN_T1_DSSD_X87_E -64.3022 0.00784247
+EDIN_T1_DSSD_X88_E -64.6835 0.00788668
+EDIN_T1_DSSD_X89_E -63.7597 0.00778432
+EDIN_T1_DSSD_X90_E -64.2214 0.00783607
+EDIN_T1_DSSD_X91_E -63.1681 0.00770996
+EDIN_T1_DSSD_X92_E -63.1287 0.00770542
+EDIN_T1_DSSD_X93_E -64.6547 0.00788697
+EDIN_T1_DSSD_X94_E -64.0697 0.00781609
+EDIN_T1_DSSD_X95_E -63.3459 0.0077344
+EDIN_T1_DSSD_X96_E -63.3339 0.00772929
+EDIN_T1_DSSD_X97_E -56.6206 0.00690407
+EDIN_T1_DSSD_X98_E -56.6271 0.00690945
+EDIN_T1_DSSD_X99_E -56.8075 0.00692682
+EDIN_T1_DSSD_X100_E -56.3784 0.00687942
+EDIN_T1_DSSD_X101_E -56.5092 0.00689507
+EDIN_T1_DSSD_X102_E -57.0925 0.00696497
+EDIN_T1_DSSD_X103_E -57.4137 0.00700377
+EDIN_T1_DSSD_X104_E -56.4692 0.00689105
+EDIN_T1_DSSD_X105_E -56.8896 0.00693984
+EDIN_T1_DSSD_X106_E -56.927 0.00694687
+EDIN_T1_DSSD_X107_E -57.9729 0.0070716
+EDIN_T1_DSSD_X108_E -57.6679 0.00703655
+EDIN_T1_DSSD_X109_E -57.6556 0.00703509
+EDIN_T1_DSSD_X110_E -57.3883 0.00700337
+EDIN_T1_DSSD_X111_E -57.7513 0.00704555
+EDIN_T1_DSSD_X112_E -57.877 0.00706349
+EDIN_T1_DSSD_X113_E -57.2915 0.00698936
+EDIN_T1_DSSD_X114_E -57.3171 0.00699306
+EDIN_T1_DSSD_X115_E -56.6719 0.0069159
+EDIN_T1_DSSD_X116_E -57.7554 0.00704559
+EDIN_T1_DSSD_X117_E -57.1005 0.0069688
+EDIN_T1_DSSD_X118_E -57.1996 0.00697882
+EDIN_T1_DSSD_X119_E -56.7493 0.00691919
+EDIN_T1_DSSD_X120_E -58.3182 0.00711505
+EDIN_T1_DSSD_X121_E -57.4007 0.00700393
+EDIN_T1_DSSD_X122_E -57.9735 0.00707107
+EDIN_T1_DSSD_X123_E -57.7802 0.00704869
+EDIN_T1_DSSD_X124_E -57.4132 0.00700545
+EDIN_T1_DSSD_X125_E -57.6474 0.00703247
+EDIN_T1_DSSD_X126_E -57.6019 0.00702875
+EDIN_T1_DSSD_X127_E -57.0542 0.00696086
+EDIN_T1_DSSD_X128_E -57.9072 0.00706381
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..bcbf07758ce7ca67470bc2aed78c11c7b7d0064d
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.dispersion
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_X1_E_Zero_Dispersion -2.66336
+EDIN_T2_DSSD_X2_E_Zero_Dispersion -5.25288
+EDIN_T2_DSSD_X3_E_Zero_Dispersion -1.92259
+EDIN_T2_DSSD_X4_E_Zero_Dispersion -3.54109
+EDIN_T2_DSSD_X5_E_Zero_Dispersion -2.28776
+EDIN_T2_DSSD_X6_E_Zero_Dispersion -3.97271
+EDIN_T2_DSSD_X7_E_Zero_Dispersion -4.93891
+EDIN_T2_DSSD_X8_E_Zero_Dispersion -1.54904
+EDIN_T2_DSSD_X9_E_Zero_Dispersion -1.45065
+EDIN_T2_DSSD_X10_E_Zero_Dispersion -4.07884
+EDIN_T2_DSSD_X11_E_Zero_Dispersion -5.10266
+EDIN_T2_DSSD_X12_E_Zero_Dispersion -3.66286
+EDIN_T2_DSSD_X13_E_Zero_Dispersion -4.01344
+EDIN_T2_DSSD_X14_E_Zero_Dispersion -3.93852
+EDIN_T2_DSSD_X15_E_Zero_Dispersion -5.7754
+EDIN_T2_DSSD_X16_E_Zero_Dispersion -4.02067
+EDIN_T2_DSSD_X17_E_Zero_Dispersion -6.42262
+EDIN_T2_DSSD_X18_E_Zero_Dispersion -9.48953
+EDIN_T2_DSSD_X19_E_Zero_Dispersion -0.891036
+EDIN_T2_DSSD_X20_E_Zero_Dispersion -8.46321
+EDIN_T2_DSSD_X21_E_Zero_Dispersion -1.10458
+EDIN_T2_DSSD_X22_E_Zero_Dispersion -5.61099
+EDIN_T2_DSSD_X23_E_Zero_Dispersion -6.26129
+EDIN_T2_DSSD_X24_E_Zero_Dispersion -6.12355
+EDIN_T2_DSSD_X25_E_Zero_Dispersion -9.58648
+EDIN_T2_DSSD_X26_E_Zero_Dispersion -8.24656
+EDIN_T2_DSSD_X27_E_Zero_Dispersion -4.5608
+EDIN_T2_DSSD_X28_E_Zero_Dispersion -7.56859
+EDIN_T2_DSSD_X29_E_Zero_Dispersion -1.5913
+EDIN_T2_DSSD_X30_E_Zero_Dispersion -7.37654
+EDIN_T2_DSSD_X31_E_Zero_Dispersion -9.83087
+EDIN_T2_DSSD_X32_E_Zero_Dispersion -7.39623
+EDIN_T2_DSSD_X33_E_Zero_Dispersion -2.66342
+EDIN_T2_DSSD_X34_E_Zero_Dispersion -0.0289014
+EDIN_T2_DSSD_X35_E_Zero_Dispersion -4.95942
+EDIN_T2_DSSD_X36_E_Zero_Dispersion 8.1537
+EDIN_T2_DSSD_X37_E_Zero_Dispersion -7.91062
+EDIN_T2_DSSD_X38_E_Zero_Dispersion -7.56346
+EDIN_T2_DSSD_X39_E_Zero_Dispersion -12.3574
+EDIN_T2_DSSD_X40_E_Zero_Dispersion -8.28567
+EDIN_T2_DSSD_X41_E_Zero_Dispersion -11.6126
+EDIN_T2_DSSD_X42_E_Zero_Dispersion -3.01155
+EDIN_T2_DSSD_X43_E_Zero_Dispersion -4.76688
+EDIN_T2_DSSD_X44_E_Zero_Dispersion 6.34002
+EDIN_T2_DSSD_X45_E_Zero_Dispersion -4.51005
+EDIN_T2_DSSD_X46_E_Zero_Dispersion -9.94451
+EDIN_T2_DSSD_X47_E_Zero_Dispersion -11.5601
+EDIN_T2_DSSD_X48_E_Zero_Dispersion -4.13332
+EDIN_T2_DSSD_X49_E_Zero_Dispersion -4.98186
+EDIN_T2_DSSD_X50_E_Zero_Dispersion -3.95739
+EDIN_T2_DSSD_X51_E_Zero_Dispersion -8.01934
+EDIN_T2_DSSD_X52_E_Zero_Dispersion -7.80714
+EDIN_T2_DSSD_X53_E_Zero_Dispersion -6.32075
+EDIN_T2_DSSD_X54_E_Zero_Dispersion -3.84099
+EDIN_T2_DSSD_X55_E_Zero_Dispersion -8.02657
+EDIN_T2_DSSD_X56_E_Zero_Dispersion -8.51638
+EDIN_T2_DSSD_X57_E_Zero_Dispersion -2.272
+EDIN_T2_DSSD_X58_E_Zero_Dispersion -5.71716
+EDIN_T2_DSSD_X59_E_Zero_Dispersion -4.2153
+EDIN_T2_DSSD_X60_E_Zero_Dispersion -4.60056
+EDIN_T2_DSSD_X61_E_Zero_Dispersion -5.86954
+EDIN_T2_DSSD_X62_E_Zero_Dispersion -4.20939
+EDIN_T2_DSSD_X63_E_Zero_Dispersion -1.61668
+EDIN_T2_DSSD_X64_E_Zero_Dispersion 5.78277
+EDIN_T2_DSSD_X65_E_Zero_Dispersion -5.57542
+EDIN_T2_DSSD_X66_E_Zero_Dispersion -3.51091
+EDIN_T2_DSSD_X67_E_Zero_Dispersion -3.55616
+EDIN_T2_DSSD_X68_E_Zero_Dispersion -8.67517
+EDIN_T2_DSSD_X69_E_Zero_Dispersion -0.576371
+EDIN_T2_DSSD_X70_E_Zero_Dispersion -3.91829
+EDIN_T2_DSSD_X71_E_Zero_Dispersion -7.39344
+EDIN_T2_DSSD_X72_E_Zero_Dispersion -5.08126
+EDIN_T2_DSSD_X73_E_Zero_Dispersion -4.17441
+EDIN_T2_DSSD_X74_E_Zero_Dispersion -4.12028
+EDIN_T2_DSSD_X75_E_Zero_Dispersion -0.68974
+EDIN_T2_DSSD_X76_E_Zero_Dispersion -1.3283
+EDIN_T2_DSSD_X77_E_Zero_Dispersion -8.64839
+EDIN_T2_DSSD_X78_E_Zero_Dispersion -6.05987
+EDIN_T2_DSSD_X79_E_Zero_Dispersion -7.65052
+EDIN_T2_DSSD_X80_E_Zero_Dispersion -1.81011
+EDIN_T2_DSSD_X81_E_Zero_Dispersion -3.79935
+EDIN_T2_DSSD_X82_E_Zero_Dispersion -1.58273
+EDIN_T2_DSSD_X83_E_Zero_Dispersion -2.51097
+EDIN_T2_DSSD_X84_E_Zero_Dispersion -3.03033
+EDIN_T2_DSSD_X85_E_Zero_Dispersion -0.442009
+EDIN_T2_DSSD_X86_E_Zero_Dispersion -6.02322
+EDIN_T2_DSSD_X87_E_Zero_Dispersion -7.2206
+EDIN_T2_DSSD_X88_E_Zero_Dispersion -9.61511
+EDIN_T2_DSSD_X89_E_Zero_Dispersion 1.2093
+EDIN_T2_DSSD_X90_E_Zero_Dispersion -3.6126
+EDIN_T2_DSSD_X91_E_Zero_Dispersion -1.05543
+EDIN_T2_DSSD_X92_E_Zero_Dispersion -0.763344
+EDIN_T2_DSSD_X93_E_Zero_Dispersion -5.66186
+EDIN_T2_DSSD_X94_E_Zero_Dispersion -5.15498
+EDIN_T2_DSSD_X95_E_Zero_Dispersion 1.84768
+EDIN_T2_DSSD_X96_E_Zero_Dispersion -2.00809
+EDIN_T2_DSSD_X97_E_Zero_Dispersion -9.04459
+EDIN_T2_DSSD_X98_E_Zero_Dispersion -3.6058
+EDIN_T2_DSSD_X99_E_Zero_Dispersion -9.10151
+EDIN_T2_DSSD_X100_E_Zero_Dispersion -3.22846
+EDIN_T2_DSSD_X101_E_Zero_Dispersion -3.5899
+EDIN_T2_DSSD_X102_E_Zero_Dispersion -5.1005
+EDIN_T2_DSSD_X103_E_Zero_Dispersion -5.54284
+EDIN_T2_DSSD_X104_E_Zero_Dispersion -2.57029
+EDIN_T2_DSSD_X105_E_Zero_Dispersion -5.53144
+EDIN_T2_DSSD_X106_E_Zero_Dispersion -2.6213
+EDIN_T2_DSSD_X107_E_Zero_Dispersion -5.99254
+EDIN_T2_DSSD_X108_E_Zero_Dispersion -3.48025
+EDIN_T2_DSSD_X109_E_Zero_Dispersion -3.43173
+EDIN_T2_DSSD_X110_E_Zero_Dispersion -2.38627
+EDIN_T2_DSSD_X111_E_Zero_Dispersion -4.85672
+EDIN_T2_DSSD_X112_E_Zero_Dispersion -1.81737
+EDIN_T2_DSSD_X113_E_Zero_Dispersion -4.94892
+EDIN_T2_DSSD_X114_E_Zero_Dispersion -4.27881
+EDIN_T2_DSSD_X115_E_Zero_Dispersion -2.43837
+EDIN_T2_DSSD_X116_E_Zero_Dispersion -5.38135
+EDIN_T2_DSSD_X117_E_Zero_Dispersion -1.73183
+EDIN_T2_DSSD_X118_E_Zero_Dispersion -4.18097
+EDIN_T2_DSSD_X119_E_Zero_Dispersion -9.72105
+EDIN_T2_DSSD_X120_E_Zero_Dispersion -4.44539
+EDIN_T2_DSSD_X121_E_Zero_Dispersion -3.4985
+EDIN_T2_DSSD_X122_E_Zero_Dispersion -6.68664
+EDIN_T2_DSSD_X123_E_Zero_Dispersion -5.29485
+EDIN_T2_DSSD_X124_E_Zero_Dispersion -3.51126
+EDIN_T2_DSSD_X125_E_Zero_Dispersion -5.32215
+EDIN_T2_DSSD_X126_E_Zero_Dispersion -3.18144
+EDIN_T2_DSSD_X127_E_Zero_Dispersion -4.42428
+EDIN_T2_DSSD_X128_E_Zero_Dispersion -5.73232
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/latex/double_alpha_run_244_X_MM2_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/latex/double_alpha_run_244_X_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..a17888cc88bd7baf2b78aa549dffae8722c5911c
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/latex/double_alpha_run_244_X_MM2_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.20003
+
+Sigma fit sigma: 0.500241
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0d7d9704e22a61a91500db9190931e9dd9030fb3
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_X1_E -62.3745 0.00761382
+EDIN_T2_DSSD_X2_E -62.4133 0.00761549
+EDIN_T2_DSSD_X3_E -62.9088 0.00767481
+EDIN_T2_DSSD_X4_E -62.0005 0.00756534
+EDIN_T2_DSSD_X5_E -62.0959 0.00757598
+EDIN_T2_DSSD_X6_E -62.5355 0.00763149
+EDIN_T2_DSSD_X7_E -62.3555 0.00760844
+EDIN_T2_DSSD_X8_E -62.789 0.00766052
+EDIN_T2_DSSD_X9_E -62.8245 0.00766499
+EDIN_T2_DSSD_X10_E -61.8797 0.00755263
+EDIN_T2_DSSD_X11_E -62.3935 0.00761255
+EDIN_T2_DSSD_X12_E -62.4152 0.00761577
+EDIN_T2_DSSD_X13_E -62.4159 0.00761702
+EDIN_T2_DSSD_X14_E -62.3704 0.00761108
+EDIN_T2_DSSD_X15_E -62.317 0.00760687
+EDIN_T2_DSSD_X16_E -63.2168 0.00771561
+EDIN_T2_DSSD_X17_E -61.9631 0.00756257
+EDIN_T2_DSSD_X18_E -61.6056 0.00751788
+EDIN_T2_DSSD_X19_E -61.6813 0.00752472
+EDIN_T2_DSSD_X20_E -61.5714 0.00750962
+EDIN_T2_DSSD_X21_E -61.6266 0.00751682
+EDIN_T2_DSSD_X22_E -62.1879 0.00758809
+EDIN_T2_DSSD_X23_E -62.1134 0.00757826
+EDIN_T2_DSSD_X24_E -61.7582 0.0075354
+EDIN_T2_DSSD_X25_E -61.39 0.00749151
+EDIN_T2_DSSD_X26_E -61.6812 0.00752659
+EDIN_T2_DSSD_X27_E -61.7485 0.00753617
+EDIN_T2_DSSD_X28_E -61.651 0.00752289
+EDIN_T2_DSSD_X29_E -61.6342 0.00751953
+EDIN_T2_DSSD_X30_E -61.2964 0.00747738
+EDIN_T2_DSSD_X31_E -62.1731 0.00758767
+EDIN_T2_DSSD_X32_E -61.208 0.00747172
+EDIN_T2_DSSD_X33_E -58.877 0.00718399
+EDIN_T2_DSSD_X34_E -58.0501 0.00708321
+EDIN_T2_DSSD_X35_E -58.7726 0.00716724
+EDIN_T2_DSSD_X36_E -58.3747 0.00712148
+EDIN_T2_DSSD_X37_E -58.0135 0.00707986
+EDIN_T2_DSSD_X38_E -58.0463 0.00708209
+EDIN_T2_DSSD_X39_E -58.2094 0.00710299
+EDIN_T2_DSSD_X40_E -57.8569 0.00705858
+EDIN_T2_DSSD_X41_E -57.4387 0.00700905
+EDIN_T2_DSSD_X42_E -58.3993 0.00712671
+EDIN_T2_DSSD_X43_E -58.7613 0.00716844
+EDIN_T2_DSSD_X44_E -57.9448 0.00707376
+EDIN_T2_DSSD_X45_E -58.3502 0.00712097
+EDIN_T2_DSSD_X46_E -58.2534 0.00711005
+EDIN_T2_DSSD_X47_E -58.0822 0.00708956
+EDIN_T2_DSSD_X48_E -58.3382 0.00711898
+EDIN_T2_DSSD_X49_E -57.8843 0.00706058
+EDIN_T2_DSSD_X50_E -57.0287 0.00695961
+EDIN_T2_DSSD_X51_E -58.0686 0.00708481
+EDIN_T2_DSSD_X52_E -57.6552 0.00703664
+EDIN_T2_DSSD_X53_E -57.4091 0.00700501
+EDIN_T2_DSSD_X54_E -57.022 0.00695781
+EDIN_T2_DSSD_X55_E -57.7248 0.00704344
+EDIN_T2_DSSD_X56_E -57.6815 0.00703611
+EDIN_T2_DSSD_X57_E -57.7522 0.00704777
+EDIN_T2_DSSD_X58_E -57.4394 0.00700864
+EDIN_T2_DSSD_X59_E -57.7521 0.00704837
+EDIN_T2_DSSD_X60_E -57.0404 0.0069587
+EDIN_T2_DSSD_X61_E -57.3805 0.00700244
+EDIN_T2_DSSD_X62_E -56.5934 0.00690545
+EDIN_T2_DSSD_X63_E -57.3124 0.00699347
+EDIN_T2_DSSD_X64_E -57.6371 0.00703515
+EDIN_T2_DSSD_X65_E -63.5966 0.0077563
+EDIN_T2_DSSD_X66_E -64.8681 0.00791583
+EDIN_T2_DSSD_X67_E -64.0001 0.00780914
+EDIN_T2_DSSD_X68_E -63.7075 0.00777425
+EDIN_T2_DSSD_X69_E 7.39123 0.851608
+EDIN_T2_DSSD_X70_E -64.4456 0.00786221
+EDIN_T2_DSSD_X71_E -63.6997 0.00777172
+EDIN_T2_DSSD_X72_E -63.5222 0.00775005
+EDIN_T2_DSSD_X73_E -63.3566 0.00773054
+EDIN_T2_DSSD_X74_E -63.234 0.00771375
+EDIN_T2_DSSD_X75_E -63.9226 0.00779819
+EDIN_T2_DSSD_X76_E -63.8297 0.00778634
+EDIN_T2_DSSD_X77_E -63.8052 0.00778563
+EDIN_T2_DSSD_X78_E -63.7932 0.00778386
+EDIN_T2_DSSD_X79_E -63.5252 0.00775286
+EDIN_T2_DSSD_X80_E -63.5056 0.00775044
+EDIN_T2_DSSD_X81_E -63.4693 0.00774158
+EDIN_T2_DSSD_X82_E -63.6629 0.00776338
+EDIN_T2_DSSD_X83_E -63.419 0.00773462
+EDIN_T2_DSSD_X84_E -63.5625 0.00775087
+EDIN_T2_DSSD_X85_E -64.3707 0.00785022
+EDIN_T2_DSSD_X86_E -64.1999 0.00782862
+EDIN_T2_DSSD_X87_E -64.0598 0.0078123
+EDIN_T2_DSSD_X88_E -64.3996 0.00785195
+EDIN_T2_DSSD_X89_E -63.2586 0.00771552
+EDIN_T2_DSSD_X90_E -63.7169 0.0077721
+EDIN_T2_DSSD_X91_E -63.3022 0.00772491
+EDIN_T2_DSSD_X92_E -63.6661 0.00776698
+EDIN_T2_DSSD_X93_E -63.3863 0.00773314
+EDIN_T2_DSSD_X94_E -64.5447 0.00787516
+EDIN_T2_DSSD_X95_E -64.0332 0.00780874
+EDIN_T2_DSSD_X96_E -63.775 0.00777911
+EDIN_T2_DSSD_X97_E -59.019 0.0072016
+EDIN_T2_DSSD_X98_E -58.4069 0.00712773
+EDIN_T2_DSSD_X99_E -58.2978 0.00711337
+EDIN_T2_DSSD_X100_E -58.5285 0.00714353
+EDIN_T2_DSSD_X101_E -59.2948 0.00723645
+EDIN_T2_DSSD_X102_E -59.6459 0.00727401
+EDIN_T2_DSSD_X103_E -58.6857 0.00716225
+EDIN_T2_DSSD_X104_E -59.0033 0.00719967
+EDIN_T2_DSSD_X105_E -58.9264 0.00719161
+EDIN_T2_DSSD_X106_E -59.4858 0.00725265
+EDIN_T2_DSSD_X107_E -58.7519 0.00716832
+EDIN_T2_DSSD_X108_E -59.0331 0.00720173
+EDIN_T2_DSSD_X109_E -59.0155 0.00719649
+EDIN_T2_DSSD_X110_E -60.2759 0.00735525
+EDIN_T2_DSSD_X111_E -59.0083 0.00719905
+EDIN_T2_DSSD_X112_E -58.4919 0.00713902
+EDIN_T2_DSSD_X113_E -59.3071 0.00723613
+EDIN_T2_DSSD_X114_E -59.243 0.00722981
+EDIN_T2_DSSD_X115_E -59.8876 0.00730493
+EDIN_T2_DSSD_X116_E -59.0986 0.00721094
+EDIN_T2_DSSD_X117_E -59.6857 0.00728175
+EDIN_T2_DSSD_X118_E -60.0494 0.0073265
+EDIN_T2_DSSD_X119_E -59.5067 0.00725986
+EDIN_T2_DSSD_X120_E -59.3945 0.0072465
+EDIN_T2_DSSD_X121_E -59.9528 0.00731699
+EDIN_T2_DSSD_X122_E -58.6326 0.00715602
+EDIN_T2_DSSD_X123_E -58.967 0.00719608
+EDIN_T2_DSSD_X124_E -59.1874 0.00722373
+EDIN_T2_DSSD_X125_E -58.8666 0.00718277
+EDIN_T2_DSSD_X126_E -58.9483 0.00719295
+EDIN_T2_DSSD_X127_E -59.211 0.00722381
+EDIN_T2_DSSD_X128_E -59.1485 0.007219442
\ No newline at end of file
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..7d62162968eaa3a382798c52af714ccb1eca6bbb
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.dispersion
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_X1_E_Zero_Dispersion -0.272194
+EDIN_T3_DSSD_X2_E_Zero_Dispersion -3.57484
+EDIN_T3_DSSD_X3_E_Zero_Dispersion -4.78478
+EDIN_T3_DSSD_X4_E_Zero_Dispersion -3.34246
+EDIN_T3_DSSD_X5_E_Zero_Dispersion -4.42034
+EDIN_T3_DSSD_X6_E_Zero_Dispersion -2.40323
+EDIN_T3_DSSD_X7_E_Zero_Dispersion -3.56719
+EDIN_T3_DSSD_X8_E_Zero_Dispersion -4.44476
+EDIN_T3_DSSD_X9_E_Zero_Dispersion -4.29056
+EDIN_T3_DSSD_X10_E_Zero_Dispersion -1.13362
+EDIN_T3_DSSD_X11_E_Zero_Dispersion -4.13547
+EDIN_T3_DSSD_X12_E_Zero_Dispersion -3.52441
+EDIN_T3_DSSD_X13_E_Zero_Dispersion -2.27095
+EDIN_T3_DSSD_X14_E_Zero_Dispersion -2.68251
+EDIN_T3_DSSD_X15_E_Zero_Dispersion -0.195728
+EDIN_T3_DSSD_X16_E_Zero_Dispersion -1.36364
+EDIN_T3_DSSD_X17_E_Zero_Dispersion -1.39536
+EDIN_T3_DSSD_X18_E_Zero_Dispersion -2.53981
+EDIN_T3_DSSD_X19_E_Zero_Dispersion -5.15211
+EDIN_T3_DSSD_X20_E_Zero_Dispersion -7.00928
+EDIN_T3_DSSD_X21_E_Zero_Dispersion -6.49325
+EDIN_T3_DSSD_X22_E_Zero_Dispersion -3.46926
+EDIN_T3_DSSD_X23_E_Zero_Dispersion -4.25129
+EDIN_T3_DSSD_X24_E_Zero_Dispersion -3.7358
+EDIN_T3_DSSD_X25_E_Zero_Dispersion -2.60782
+EDIN_T3_DSSD_X26_E_Zero_Dispersion -3.1108
+EDIN_T3_DSSD_X27_E_Zero_Dispersion -1.61095
+EDIN_T3_DSSD_X28_E_Zero_Dispersion -3.11692
+EDIN_T3_DSSD_X29_E_Zero_Dispersion -4.54675
+EDIN_T3_DSSD_X30_E_Zero_Dispersion -5.57507
+EDIN_T3_DSSD_X31_E_Zero_Dispersion -1.97103
+EDIN_T3_DSSD_X32_E_Zero_Dispersion 0.0507405
+EDIN_T3_DSSD_X33_E_Zero_Dispersion -3.59308
+EDIN_T3_DSSD_X34_E_Zero_Dispersion -3.44769
+EDIN_T3_DSSD_X35_E_Zero_Dispersion -8.16984
+EDIN_T3_DSSD_X36_E_Zero_Dispersion -4.99199
+EDIN_T3_DSSD_X37_E_Zero_Dispersion -2.15116
+EDIN_T3_DSSD_X38_E_Zero_Dispersion -4.20735
+EDIN_T3_DSSD_X39_E_Zero_Dispersion -3.05659
+EDIN_T3_DSSD_X40_E_Zero_Dispersion -4.67988
+EDIN_T3_DSSD_X41_E_Zero_Dispersion -2.92491
+EDIN_T3_DSSD_X42_E_Zero_Dispersion -2.42226
+EDIN_T3_DSSD_X43_E_Zero_Dispersion -5.21746
+EDIN_T3_DSSD_X44_E_Zero_Dispersion 0.477144
+EDIN_T3_DSSD_X45_E_Zero_Dispersion -2.1261
+EDIN_T3_DSSD_X46_E_Zero_Dispersion -1.11767
+EDIN_T3_DSSD_X47_E_Zero_Dispersion -0.64482
+EDIN_T3_DSSD_X48_E_Zero_Dispersion -2.74742
+EDIN_T3_DSSD_X49_E_Zero_Dispersion -6.22693
+EDIN_T3_DSSD_X50_E_Zero_Dispersion -2.24231
+EDIN_T3_DSSD_X51_E_Zero_Dispersion -4.20288
+EDIN_T3_DSSD_X52_E_Zero_Dispersion -1.5656
+EDIN_T3_DSSD_X53_E_Zero_Dispersion -3.42217
+EDIN_T3_DSSD_X54_E_Zero_Dispersion -3.38373
+EDIN_T3_DSSD_X55_E_Zero_Dispersion -3.54143
+EDIN_T3_DSSD_X56_E_Zero_Dispersion -5.92556
+EDIN_T3_DSSD_X57_E_Zero_Dispersion -2.38321
+EDIN_T3_DSSD_X58_E_Zero_Dispersion -3.50863
+EDIN_T3_DSSD_X59_E_Zero_Dispersion -1.68054
+EDIN_T3_DSSD_X60_E_Zero_Dispersion -4.98707
+EDIN_T3_DSSD_X61_E_Zero_Dispersion -2.35383
+EDIN_T3_DSSD_X62_E_Zero_Dispersion -3.46699
+EDIN_T3_DSSD_X63_E_Zero_Dispersion -3.13198
+EDIN_T3_DSSD_X64_E_Zero_Dispersion -0.735981
+EDIN_T3_DSSD_X65_E_Zero_Dispersion -7.34884
+EDIN_T3_DSSD_X66_E_Zero_Dispersion -2.733
+EDIN_T3_DSSD_X67_E_Zero_Dispersion -3.52966
+EDIN_T3_DSSD_X68_E_Zero_Dispersion -2.67818
+EDIN_T3_DSSD_X69_E_Zero_Dispersion 8200.68
+EDIN_T3_DSSD_X70_E_Zero_Dispersion -4.88533
+EDIN_T3_DSSD_X71_E_Zero_Dispersion -4.34478
+EDIN_T3_DSSD_X72_E_Zero_Dispersion -4.36081
+EDIN_T3_DSSD_X73_E_Zero_Dispersion -3.62389
+EDIN_T3_DSSD_X74_E_Zero_Dispersion -5.57414
+EDIN_T3_DSSD_X75_E_Zero_Dispersion -5.10048
+EDIN_T3_DSSD_X76_E_Zero_Dispersion -5.65346
+EDIN_T3_DSSD_X77_E_Zero_Dispersion -3.25937
+EDIN_T3_DSSD_X78_E_Zero_Dispersion -3.57589
+EDIN_T3_DSSD_X79_E_Zero_Dispersion -1.77804
+EDIN_T3_DSSD_X80_E_Zero_Dispersion -1.80417
+EDIN_T3_DSSD_X81_E_Zero_Dispersion -6.49837
+EDIN_T3_DSSD_X82_E_Zero_Dispersion -8.41806
+EDIN_T3_DSSD_X83_E_Zero_Dispersion -7.36628
+EDIN_T3_DSSD_X84_E_Zero_Dispersion -8.6958
+EDIN_T3_DSSD_X85_E_Zero_Dispersion -7.8555
+EDIN_T3_DSSD_X86_E_Zero_Dispersion -8.67096
+EDIN_T3_DSSD_X87_E_Zero_Dispersion -7.86593
+EDIN_T3_DSSD_X88_E_Zero_Dispersion -9.73612
+EDIN_T3_DSSD_X89_E_Zero_Dispersion -6.86882
+EDIN_T3_DSSD_X90_E_Zero_Dispersion -6.15759
+EDIN_T3_DSSD_X91_E_Zero_Dispersion -2.54625
+EDIN_T3_DSSD_X92_E_Zero_Dispersion -5.02406
+EDIN_T3_DSSD_X93_E_Zero_Dispersion -4.70687
+EDIN_T3_DSSD_X94_E_Zero_Dispersion -3.9826
+EDIN_T3_DSSD_X95_E_Zero_Dispersion -8.18982
+EDIN_T3_DSSD_X96_E_Zero_Dispersion -6.23549
+EDIN_T3_DSSD_X97_E_Zero_Dispersion -3.26386
+EDIN_T3_DSSD_X98_E_Zero_Dispersion -2.31023
+EDIN_T3_DSSD_X99_E_Zero_Dispersion -3.52817
+EDIN_T3_DSSD_X100_E_Zero_Dispersion -1.22212
+EDIN_T3_DSSD_X101_E_Zero_Dispersion -1.91003
+EDIN_T3_DSSD_X102_E_Zero_Dispersion -7.86838
+EDIN_T3_DSSD_X103_E_Zero_Dispersion -1.75857
+EDIN_T3_DSSD_X104_E_Zero_Dispersion -3.27153
+EDIN_T3_DSSD_X105_E_Zero_Dispersion -1.77059
+EDIN_T3_DSSD_X106_E_Zero_Dispersion -9.94726
+EDIN_T3_DSSD_X107_E_Zero_Dispersion -4.05166
+EDIN_T3_DSSD_X108_E_Zero_Dispersion -5.07817
+EDIN_T3_DSSD_X109_E_Zero_Dispersion -8.59766
+EDIN_T3_DSSD_X110_E_Zero_Dispersion -2.95256
+EDIN_T3_DSSD_X111_E_Zero_Dispersion -4.68738
+EDIN_T3_DSSD_X112_E_Zero_Dispersion -1.26695
+EDIN_T3_DSSD_X113_E_Zero_Dispersion -3.96787
+EDIN_T3_DSSD_X114_E_Zero_Dispersion -2.26424
+EDIN_T3_DSSD_X115_E_Zero_Dispersion -6.23865
+EDIN_T3_DSSD_X116_E_Zero_Dispersion -3.69418
+EDIN_T3_DSSD_X117_E_Zero_Dispersion -4.60262
+EDIN_T3_DSSD_X118_E_Zero_Dispersion -4.18733
+EDIN_T3_DSSD_X119_E_Zero_Dispersion -4.68356
+EDIN_T3_DSSD_X120_E_Zero_Dispersion -4.30828
+EDIN_T3_DSSD_X121_E_Zero_Dispersion -1.65165
+EDIN_T3_DSSD_X122_E_Zero_Dispersion -1.45627
+EDIN_T3_DSSD_X123_E_Zero_Dispersion -2.32492
+EDIN_T3_DSSD_X124_E_Zero_Dispersion -1.46822
+EDIN_T3_DSSD_X125_E_Zero_Dispersion -3.52944
+EDIN_T3_DSSD_X126_E_Zero_Dispersion -3.28717
+EDIN_T3_DSSD_X127_E_Zero_Dispersion -4.64587
+EDIN_T3_DSSD_X128_E_Zero_Dispersion -0.944562
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/latex/double_alpha_run_244_X_MM3_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/latex/double_alpha_run_244_X_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..a9b955ba1ed8d34392e1528a3103e112819a1879
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/latex/double_alpha_run_244_X_MM3_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+69 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.25851
+
+Sigma fit sigma: 0.518519
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.cal
new file mode 100644
index 0000000000000000000000000000000000000000..f8be10e90cc48f5c170efba2d187ca31e2df7f17
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_X1_E -61.4344 0.00750796
+EDIN_T3_DSSD_X2_E -60.9311 0.00744726
+EDIN_T3_DSSD_X3_E -61.3152 0.00749341
+EDIN_T3_DSSD_X4_E -61.4404 0.00750847
+EDIN_T3_DSSD_X5_E -61.3511 0.00749425
+EDIN_T3_DSSD_X6_E -61.1564 0.00747159
+EDIN_T3_DSSD_X7_E -61.2654 0.00748535
+EDIN_T3_DSSD_X8_E -60.9618 0.00744638
+EDIN_T3_DSSD_X9_E -60.9521 0.00744771
+EDIN_T3_DSSD_X10_E -61.3243 0.00748969
+EDIN_T3_DSSD_X11_E -61.1676 0.00747118
+EDIN_T3_DSSD_X12_E -62.3027 0.00760888
+EDIN_T3_DSSD_X13_E -61.0781 0.00745987
+EDIN_T3_DSSD_X14_E -61.2459 0.00748024
+EDIN_T3_DSSD_X15_E -61.0256 0.00745258
+EDIN_T3_DSSD_X16_E -62.0394 0.00757675
+EDIN_T3_DSSD_X17_E -63.0618 0.00770125
+EDIN_T3_DSSD_X18_E -62.549 0.0076384
+EDIN_T3_DSSD_X19_E -62.3853 0.00761829
+EDIN_T3_DSSD_X20_E -62.2692 0.00760521
+EDIN_T3_DSSD_X21_E -62.1327 0.00758719
+EDIN_T3_DSSD_X22_E -62.3744 0.00762015
+EDIN_T3_DSSD_X23_E -63.0067 0.00769716
+EDIN_T3_DSSD_X24_E -63.2836 0.00772789
+EDIN_T3_DSSD_X25_E -61.9669 0.00757139
+EDIN_T3_DSSD_X26_E -62.8285 0.00767525
+EDIN_T3_DSSD_X27_E -62.7963 0.00767196
+EDIN_T3_DSSD_X28_E -62.5152 0.00763828
+EDIN_T3_DSSD_X29_E -62.678 0.00765939
+EDIN_T3_DSSD_X30_E -62.7253 0.00766476
+EDIN_T3_DSSD_X31_E -63.7153 0.00778588
+EDIN_T3_DSSD_X32_E -62.5499 0.00764735
+EDIN_T3_DSSD_X33_E -56.8213 0.00696677
+EDIN_T3_DSSD_X34_E -56.7982 0.00696255
+EDIN_T3_DSSD_X35_E -55.526 0.00681059
+EDIN_T3_DSSD_X36_E -56.4154 0.00691009
+EDIN_T3_DSSD_X37_E -56.4757 0.00692283
+EDIN_T3_DSSD_X38_E -57.2453 0.00700874
+EDIN_T3_DSSD_X39_E -57.0613 0.00699212
+EDIN_T3_DSSD_X40_E -57.0886 0.00698759
+EDIN_T3_DSSD_X41_E -57.7589 0.00706822
+EDIN_T3_DSSD_X42_E -57.3428 0.0070182
+EDIN_T3_DSSD_X43_E -57.7241 0.00706065
+EDIN_T3_DSSD_X44_E 7.39123 0.851608
+EDIN_T3_DSSD_X45_E -57.7224 0.00706052
+EDIN_T3_DSSD_X46_E -58.2105 0.00711805
+EDIN_T3_DSSD_X47_E -57.7339 0.00705913
+EDIN_T3_DSSD_X48_E -58.3554 0.00713166
+EDIN_T3_DSSD_X49_E -56.5837 0.00691576
+EDIN_T3_DSSD_X50_E -56.257 0.00687717
+EDIN_T3_DSSD_X51_E -55.8364 0.00682767
+EDIN_T3_DSSD_X52_E -55.9874 0.00684895
+EDIN_T3_DSSD_X53_E -55.4265 0.00678359
+EDIN_T3_DSSD_X54_E -55.9351 0.00684516
+EDIN_T3_DSSD_X55_E -55.2927 0.00676592
+EDIN_T3_DSSD_X56_E -55.7086 0.00682041
+EDIN_T3_DSSD_X57_E -56.235 0.00688176
+EDIN_T3_DSSD_X58_E -54.8461 0.00671602
+EDIN_T3_DSSD_X59_E -55.4902 0.00679944
+EDIN_T3_DSSD_X60_E -55.0588 0.00674752
+EDIN_T3_DSSD_X61_E -54.1771 0.00664112
+EDIN_T3_DSSD_X62_E -54.5191 0.00668556
+EDIN_T3_DSSD_X63_E -54.0062 0.00663013
+EDIN_T3_DSSD_X64_E -53.5202 0.00657298
+EDIN_T3_DSSD_X65_E -63.7555 0.00778507
+EDIN_T3_DSSD_X66_E -63.3991 0.00774165
+EDIN_T3_DSSD_X67_E -63.062 0.00770084
+EDIN_T3_DSSD_X68_E -63.3627 0.00773595
+EDIN_T3_DSSD_X69_E -63.2931 0.00772761
+EDIN_T3_DSSD_X70_E -62.9059 0.00768021
+EDIN_T3_DSSD_X71_E -63.8362 0.00779493
+EDIN_T3_DSSD_X72_E -62.0544 0.00757796
+EDIN_T3_DSSD_X73_E -62.2713 0.00760224
+EDIN_T3_DSSD_X74_E -62.6003 0.00764373
+EDIN_T3_DSSD_X75_E -62.7878 0.00766484
+EDIN_T3_DSSD_X76_E -62.953 0.00768723
+EDIN_T3_DSSD_X77_E -63.6786 0.00777506
+EDIN_T3_DSSD_X78_E -61.9665 0.00756692
+EDIN_T3_DSSD_X79_E -62.1503 0.00758847
+EDIN_T3_DSSD_X80_E -62.6432 0.0076476
+EDIN_T3_DSSD_X81_E -62.0631 0.00757748
+EDIN_T3_DSSD_X82_E -62.3142 0.00760837
+EDIN_T3_DSSD_X83_E -62.2456 0.0076
+EDIN_T3_DSSD_X84_E -62.2345 0.00759733
+EDIN_T3_DSSD_X85_E -61.7445 0.00753758
+EDIN_T3_DSSD_X86_E -61.9859 0.00756955
+EDIN_T3_DSSD_X87_E -61.9838 0.00756817
+EDIN_T3_DSSD_X88_E -61.6506 0.00752898
+EDIN_T3_DSSD_X89_E -61.8489 0.00755271
+EDIN_T3_DSSD_X90_E -62.2366 0.00760022
+EDIN_T3_DSSD_X91_E -61.9781 0.00756676
+EDIN_T3_DSSD_X92_E -61.5129 0.00751273
+EDIN_T3_DSSD_X93_E -62.2053 0.00759784
+EDIN_T3_DSSD_X94_E -62.0013 0.00757199
+EDIN_T3_DSSD_X95_E -61.8074 0.00754657
+EDIN_T3_DSSD_X96_E -61.8809 0.0075563
+EDIN_T3_DSSD_X97_E -55.7296 0.00680537
+EDIN_T3_DSSD_X98_E -55.4005 0.00676761
+EDIN_T3_DSSD_X99_E -54.8557 0.00669758
+EDIN_T3_DSSD_X100_E -55.2366 0.00674709
+EDIN_T3_DSSD_X101_E -55.5893 0.00678792
+EDIN_T3_DSSD_X102_E -55.4701 0.00677435
+EDIN_T3_DSSD_X103_E -55.4915 0.00677789
+EDIN_T3_DSSD_X104_E -54.892 0.00670236
+EDIN_T3_DSSD_X105_E -55.1963 0.00673947
+EDIN_T3_DSSD_X106_E -55.5479 0.00678426
+EDIN_T3_DSSD_X107_E -55.5634 0.00678306
+EDIN_T3_DSSD_X108_E -55.4827 0.00677291
+EDIN_T3_DSSD_X109_E -56.4925 0.00689605
+EDIN_T3_DSSD_X110_E -55.8164 0.00681684
+EDIN_T3_DSSD_X111_E -55.579 0.00678476
+EDIN_T3_DSSD_X112_E -55.4701 0.00677075
+EDIN_T3_DSSD_X113_E -57.0981 0.00697327
+EDIN_T3_DSSD_X114_E -56.4556 0.00689535
+EDIN_T3_DSSD_X115_E -57.1944 0.00698281
+EDIN_T3_DSSD_X116_E -56.5164 0.00690203
+EDIN_T3_DSSD_X117_E -68.2358 0.0083431
+EDIN_T3_DSSD_X118_E -56.5714 0.00691135
+EDIN_T3_DSSD_X119_E -56.8792 0.00694766
+EDIN_T3_DSSD_X120_E -55.7309 0.00680731
+EDIN_T3_DSSD_X121_E -56.3993 0.00688613
+EDIN_T3_DSSD_X122_E -57.2433 0.00699377
+EDIN_T3_DSSD_X123_E -57.1708 0.00698018
+EDIN_T3_DSSD_X124_E -56.4433 0.00689599
+EDIN_T3_DSSD_X125_E -57.2047 0.00698725
+EDIN_T3_DSSD_X126_E -56.3667 0.00688249
+EDIN_T3_DSSD_X127_E -57.3995 0.00700974
+EDIN_T3_DSSD_X128_E -56.2814 0.00687093
\ No newline at end of file
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..ce334bbaa846534e52803b3d3f6e1a52cad0ac3f
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.dispersion
@@ -0,0 +1,128 @@
+EDIN_T4_DSSD_X1_E_Zero_Dispersion 9.43714
+EDIN_T4_DSSD_X2_E_Zero_Dispersion 10.3151
+EDIN_T4_DSSD_X3_E_Zero_Dispersion 9.45406
+EDIN_T4_DSSD_X4_E_Zero_Dispersion 9.18506
+EDIN_T4_DSSD_X5_E_Zero_Dispersion 5.57887
+EDIN_T4_DSSD_X6_E_Zero_Dispersion 6.80755
+EDIN_T4_DSSD_X7_E_Zero_Dispersion 7.29718
+EDIN_T4_DSSD_X8_E_Zero_Dispersion 5.23075
+EDIN_T4_DSSD_X9_E_Zero_Dispersion 7.9912
+EDIN_T4_DSSD_X10_E_Zero_Dispersion 4.16206
+EDIN_T4_DSSD_X11_E_Zero_Dispersion 4.86749
+EDIN_T4_DSSD_X12_E_Zero_Dispersion 3.85003
+EDIN_T4_DSSD_X13_E_Zero_Dispersion 4.43557
+EDIN_T4_DSSD_X14_E_Zero_Dispersion 4.30789
+EDIN_T4_DSSD_X15_E_Zero_Dispersion 3.47843
+EDIN_T4_DSSD_X16_E_Zero_Dispersion 3.87588
+EDIN_T4_DSSD_X17_E_Zero_Dispersion 3.48618
+EDIN_T4_DSSD_X18_E_Zero_Dispersion 3.23736
+EDIN_T4_DSSD_X19_E_Zero_Dispersion 3.11517
+EDIN_T4_DSSD_X20_E_Zero_Dispersion 4.29254
+EDIN_T4_DSSD_X21_E_Zero_Dispersion 2.83918
+EDIN_T4_DSSD_X22_E_Zero_Dispersion 6.54141
+EDIN_T4_DSSD_X23_E_Zero_Dispersion 6.2891
+EDIN_T4_DSSD_X24_E_Zero_Dispersion 3.01035
+EDIN_T4_DSSD_X25_E_Zero_Dispersion 7.64501
+EDIN_T4_DSSD_X26_E_Zero_Dispersion 6.14988
+EDIN_T4_DSSD_X27_E_Zero_Dispersion 6.82549
+EDIN_T4_DSSD_X28_E_Zero_Dispersion 7.5375
+EDIN_T4_DSSD_X29_E_Zero_Dispersion 8.83919
+EDIN_T4_DSSD_X30_E_Zero_Dispersion 8.40668
+EDIN_T4_DSSD_X31_E_Zero_Dispersion 8.56127
+EDIN_T4_DSSD_X32_E_Zero_Dispersion 12.7163
+EDIN_T4_DSSD_X33_E_Zero_Dispersion 35.9519
+EDIN_T4_DSSD_X34_E_Zero_Dispersion 34.3338
+EDIN_T4_DSSD_X35_E_Zero_Dispersion 39.1134
+EDIN_T4_DSSD_X36_E_Zero_Dispersion 27.8005
+EDIN_T4_DSSD_X37_E_Zero_Dispersion 34.1042
+EDIN_T4_DSSD_X38_E_Zero_Dispersion 24.3036
+EDIN_T4_DSSD_X39_E_Zero_Dispersion 31.1979
+EDIN_T4_DSSD_X40_E_Zero_Dispersion 21.9896
+EDIN_T4_DSSD_X41_E_Zero_Dispersion 20.3563
+EDIN_T4_DSSD_X42_E_Zero_Dispersion 21.4134
+EDIN_T4_DSSD_X43_E_Zero_Dispersion 16.5249
+EDIN_T4_DSSD_X44_E_Zero_Dispersion 8200.68
+EDIN_T4_DSSD_X45_E_Zero_Dispersion 16.6242
+EDIN_T4_DSSD_X46_E_Zero_Dispersion 14.1255
+EDIN_T4_DSSD_X47_E_Zero_Dispersion 13.3807
+EDIN_T4_DSSD_X48_E_Zero_Dispersion 9.42373
+EDIN_T4_DSSD_X49_E_Zero_Dispersion 10.1485
+EDIN_T4_DSSD_X50_E_Zero_Dispersion 11.7371
+EDIN_T4_DSSD_X51_E_Zero_Dispersion 14.0411
+EDIN_T4_DSSD_X52_E_Zero_Dispersion 17.4005
+EDIN_T4_DSSD_X53_E_Zero_Dispersion 21.3321
+EDIN_T4_DSSD_X54_E_Zero_Dispersion 20.5253
+EDIN_T4_DSSD_X55_E_Zero_Dispersion 19.7653
+EDIN_T4_DSSD_X56_E_Zero_Dispersion 24.0834
+EDIN_T4_DSSD_X57_E_Zero_Dispersion 20.4027
+EDIN_T4_DSSD_X58_E_Zero_Dispersion 25.5444
+EDIN_T4_DSSD_X59_E_Zero_Dispersion 30.9983
+EDIN_T4_DSSD_X60_E_Zero_Dispersion 32.1426
+EDIN_T4_DSSD_X61_E_Zero_Dispersion 34.1756
+EDIN_T4_DSSD_X62_E_Zero_Dispersion 37.2374
+EDIN_T4_DSSD_X63_E_Zero_Dispersion 46.4195
+EDIN_T4_DSSD_X64_E_Zero_Dispersion 49.5439
+EDIN_T4_DSSD_X65_E_Zero_Dispersion 2.54403
+EDIN_T4_DSSD_X66_E_Zero_Dispersion 2.64722
+EDIN_T4_DSSD_X67_E_Zero_Dispersion 3.02016
+EDIN_T4_DSSD_X68_E_Zero_Dispersion 1.31956
+EDIN_T4_DSSD_X69_E_Zero_Dispersion 1.48183
+EDIN_T4_DSSD_X70_E_Zero_Dispersion 1.36036
+EDIN_T4_DSSD_X71_E_Zero_Dispersion 2.54787
+EDIN_T4_DSSD_X72_E_Zero_Dispersion 3.19439
+EDIN_T4_DSSD_X73_E_Zero_Dispersion 0.815804
+EDIN_T4_DSSD_X74_E_Zero_Dispersion 2.2367
+EDIN_T4_DSSD_X75_E_Zero_Dispersion 0.333278
+EDIN_T4_DSSD_X76_E_Zero_Dispersion 2.70478
+EDIN_T4_DSSD_X77_E_Zero_Dispersion 1.88898
+EDIN_T4_DSSD_X78_E_Zero_Dispersion 2.86848
+EDIN_T4_DSSD_X79_E_Zero_Dispersion 1.90286
+EDIN_T4_DSSD_X80_E_Zero_Dispersion 0.769777
+EDIN_T4_DSSD_X81_E_Zero_Dispersion 1.53316
+EDIN_T4_DSSD_X82_E_Zero_Dispersion 1.78934
+EDIN_T4_DSSD_X83_E_Zero_Dispersion 1.7956
+EDIN_T4_DSSD_X84_E_Zero_Dispersion 0.374982
+EDIN_T4_DSSD_X85_E_Zero_Dispersion 0.447399
+EDIN_T4_DSSD_X86_E_Zero_Dispersion 3.15039
+EDIN_T4_DSSD_X87_E_Zero_Dispersion 1.93764
+EDIN_T4_DSSD_X88_E_Zero_Dispersion 3.5625
+EDIN_T4_DSSD_X89_E_Zero_Dispersion 3.03336
+EDIN_T4_DSSD_X90_E_Zero_Dispersion 3.2148
+EDIN_T4_DSSD_X91_E_Zero_Dispersion 1.15977
+EDIN_T4_DSSD_X92_E_Zero_Dispersion 4.17241
+EDIN_T4_DSSD_X93_E_Zero_Dispersion 4.77125
+EDIN_T4_DSSD_X94_E_Zero_Dispersion 3.75748
+EDIN_T4_DSSD_X95_E_Zero_Dispersion 1.86818
+EDIN_T4_DSSD_X96_E_Zero_Dispersion 2.69147
+EDIN_T4_DSSD_X97_E_Zero_Dispersion 2.94685
+EDIN_T4_DSSD_X98_E_Zero_Dispersion 5.88338
+EDIN_T4_DSSD_X99_E_Zero_Dispersion 1.62951
+EDIN_T4_DSSD_X100_E_Zero_Dispersion 5.26274
+EDIN_T4_DSSD_X101_E_Zero_Dispersion 2.55273
+EDIN_T4_DSSD_X102_E_Zero_Dispersion 3.74598
+EDIN_T4_DSSD_X103_E_Zero_Dispersion 4.8642
+EDIN_T4_DSSD_X104_E_Zero_Dispersion 2.04672
+EDIN_T4_DSSD_X105_E_Zero_Dispersion 2.00002
+EDIN_T4_DSSD_X106_E_Zero_Dispersion 4.24525
+EDIN_T4_DSSD_X107_E_Zero_Dispersion 0.510241
+EDIN_T4_DSSD_X108_E_Zero_Dispersion 0.13569
+EDIN_T4_DSSD_X109_E_Zero_Dispersion -0.00527578
+EDIN_T4_DSSD_X110_E_Zero_Dispersion 3.98584
+EDIN_T4_DSSD_X111_E_Zero_Dispersion 0.259296
+EDIN_T4_DSSD_X112_E_Zero_Dispersion -0.602258
+EDIN_T4_DSSD_X113_E_Zero_Dispersion 3.85513
+EDIN_T4_DSSD_X114_E_Zero_Dispersion 4.51471
+EDIN_T4_DSSD_X115_E_Zero_Dispersion 1.25465
+EDIN_T4_DSSD_X116_E_Zero_Dispersion 3.63238
+EDIN_T4_DSSD_X117_E_Zero_Dispersion 13.2951
+EDIN_T4_DSSD_X118_E_Zero_Dispersion 6.71239
+EDIN_T4_DSSD_X119_E_Zero_Dispersion 5.18727
+EDIN_T4_DSSD_X120_E_Zero_Dispersion 5.07562
+EDIN_T4_DSSD_X121_E_Zero_Dispersion 1.72684
+EDIN_T4_DSSD_X122_E_Zero_Dispersion 7.10552
+EDIN_T4_DSSD_X123_E_Zero_Dispersion 1.55087
+EDIN_T4_DSSD_X124_E_Zero_Dispersion 7.0511
+EDIN_T4_DSSD_X125_E_Zero_Dispersion 4.98496
+EDIN_T4_DSSD_X126_E_Zero_Dispersion 2.12141
+EDIN_T4_DSSD_X127_E_Zero_Dispersion 3.46279
+EDIN_T4_DSSD_X128_E_Zero_Dispersion 0.731019
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/latex/double_alpha_run_244_X_MM4_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/latex/double_alpha_run_244_X_MM4_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..a9e327847d28855c5b956249e9ad3087774412f6
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/latex/double_alpha_run_244_X_MM4_E.tex
@@ -0,0 +1,72 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  4
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 4 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+33 &  zero extrapolation too high:35.9519channels;  \\ \hline 
+34 &  zero extrapolation too high:34.3338channels;  \\ \hline 
+35 &  zero extrapolation too high:39.1134channels;  \\ \hline 
+37 &  zero extrapolation too high:34.1042channels;  \\ \hline 
+39 &  zero extrapolation too high:31.1979channels;  \\ \hline 
+44 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+59 &  zero extrapolation too high:30.9983channels;  \\ \hline 
+60 &  zero extrapolation too high:32.1426channels;  \\ \hline 
+61 &  zero extrapolation too high:34.1756channels;  \\ \hline 
+62 &  zero extrapolation too high:37.2374channels;  \\ \hline 
+63 &  zero extrapolation too high:46.4195channels;  \\ \hline 
+64 &  zero extrapolation too high:49.5439channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM4_E/latex/pictures/Telescope4Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 1.94304
+
+Sigma fit sigma: 0.256664
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/peaks/Cal_Str_X_E_MM4.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/peaks/Cal_Str_X_E_MM4.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..9d82716ff12d2318c99f884e1249a851403dfca1
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,129 @@
+EDIN_T0_DSSD_Y1_E 6.82575 -0.844837
+EDIN_T0_DSSD_Y2_E 60.0305 -0.00732332
+EDIN_T0_DSSD_Y3_E 60.4656 -0.00737752
+EDIN_T0_DSSD_Y4_E 60.542 -0.00738408
+EDIN_T0_DSSD_Y5_E 59.6447 -0.0072775
+EDIN_T0_DSSD_Y6_E 59.7974 -0.00729656
+EDIN_T0_DSSD_Y7_E 60.3772 -0.00736639
+EDIN_T0_DSSD_Y8_E 60.1212 -0.00733684
+EDIN_T0_DSSD_Y9_E 59.8625 -0.00730581
+EDIN_T0_DSSD_Y10_E 59.496 -0.00725634
+EDIN_T0_DSSD_Y11_E 59.9281 -0.00730956
+EDIN_T0_DSSD_Y12_E 59.6043 -0.00727125
+EDIN_T0_DSSD_Y13_E 60.4812 -0.00737889
+EDIN_T0_DSSD_Y14_E 60.4433 -0.00737206
+EDIN_T0_DSSD_Y15_E 60.6333 -0.00739619
+EDIN_T0_DSSD_Y16_E 60.2417 -0.00734748
+EDIN_T0_DSSD_Y17_E 59.7989 -0.00729235
+EDIN_T0_DSSD_Y18_E 60.1387 -0.00733664
+EDIN_T0_DSSD_Y19_E 59.8362 -0.00729822
+EDIN_T0_DSSD_Y20_E 59.7958 -0.00729573
+EDIN_T0_DSSD_Y21_E 59.8881 -0.00730571
+EDIN_T0_DSSD_Y22_E 59.8897 -0.00730593
+EDIN_T0_DSSD_Y23_E 59.8529 -0.0073019
+EDIN_T0_DSSD_Y24_E 59.0455 -0.00719993
+EDIN_T0_DSSD_Y25_E 59.7814 -0.00729341
+EDIN_T0_DSSD_Y26_E 59.1099 -0.00720773
+EDIN_T0_DSSD_Y27_E 59.6976 -0.00728338
+EDIN_T0_DSSD_Y28_E 60.2085 -0.00734867
+EDIN_T0_DSSD_Y29_E 59.5753 -0.00726912
+EDIN_T0_DSSD_Y30_E 59.3138 -0.00723859
+EDIN_T0_DSSD_Y31_E 59.3163 -0.00723493
+EDIN_T0_DSSD_Y32_E 60.5241 -0.00738219
+EDIN_T0_DSSD_Y33_E 56.2258 -0.00686009
+EDIN_T0_DSSD_Y34_E 56.6532 -0.00691064
+EDIN_T0_DSSD_Y35_E 56.2561 -0.00686504
+EDIN_T0_DSSD_Y36_E 56.722 -0.0069207
+EDIN_T0_DSSD_Y37_E 56.847 -0.00693147
+EDIN_T0_DSSD_Y38_E 56.9544 -0.00694991
+EDIN_T0_DSSD_Y39_E 56.134 -0.00684856
+EDIN_T0_DSSD_Y40_E 56.0097 -0.00683111
+EDIN_T0_DSSD_Y41_E 56.6694 -0.00691524
+EDIN_T0_DSSD_Y42_E 56.2779 -0.00686313
+EDIN_T0_DSSD_Y43_E 56.2253 -0.00685882
+EDIN_T0_DSSD_Y44_E 56.1145 -0.00684532
+EDIN_T0_DSSD_Y45_E 56.4761 -0.00688999
+EDIN_T0_DSSD_Y46_E 56.4819 -0.00688879
+EDIN_T0_DSSD_Y47_E 57.2404 -0.00698108
+EDIN_T0_DSSD_Y48_E 56.2289 -0.00686101
+EDIN_T0_DSSD_Y49_E 57.398 -0.00700506
+EDIN_T0_DSSD_Y50_E 56.6208 -0.00690614
+EDIN_T0_DSSD_Y51_E 56.4304 -0.00688429
+EDIN_T0_DSSD_Y52_E 56.0271 -0.00683326
+EDIN_T0_DSSD_Y53_E 56.7227 -0.00691907
+EDIN_T0_DSSD_Y54_E 56.4653 -0.00688772
+EDIN_T0_DSSD_Y55_E 56.1677 -0.00685025
+EDIN_T0_DSSD_Y56_E 57.0927 -0.00696322
+EDIN_T0_DSSD_Y57_E 56.9876 -0.00695253
+EDIN_T0_DSSD_Y58_E 56.4869 -0.00689167
+EDIN_T0_DSSD_Y59_E 56.5437 -0.00689688
+EDIN_T0_DSSD_Y60_E 56.8763 -0.00693813
+EDIN_T0_DSSD_Y61_E 56.7642 -0.00692306
+EDIN_T0_DSSD_Y62_E 56.5536 -0.00689607
+EDIN_T0_DSSD_Y63_E 57.0689 -0.00696044
+EDIN_T0_DSSD_Y64_E 57.4824 -0.007011
+EDIN_T0_DSSD_Y65_E 60.4372 -0.00737119
+EDIN_T0_DSSD_Y66_E 60.7663 -0.0074137
+EDIN_T0_DSSD_Y67_E 60.5292 -0.00738309
+EDIN_T0_DSSD_Y68_E 60.9793 -0.00744018
+EDIN_T0_DSSD_Y69_E 60.0308 -0.00732315
+EDIN_T0_DSSD_Y70_E 60.9999 -0.00743892
+EDIN_T0_DSSD_Y71_E 60.3109 -0.00735447
+EDIN_T0_DSSD_Y72_E 59.935 -0.00731087
+EDIN_T0_DSSD_Y73_E 61.1324 -0.0074552
+EDIN_T0_DSSD_Y74_E 60.5495 -0.00738399
+EDIN_T0_DSSD_Y75_E 60.5954 -0.0073903
+EDIN_T0_DSSD_Y76_E 60.7486 -0.00740942
+EDIN_T0_DSSD_Y77_E 60.1728 -0.00734104
+EDIN_T0_DSSD_Y78_E 60.9903 -0.00744098
+EDIN_T0_DSSD_Y79_E 61.279 -0.00747631
+EDIN_T0_DSSD_Y80_E 60.4295 -0.00736811
+EDIN_T0_DSSD_Y81_E 61.6075 -0.0075119
+EDIN_T0_DSSD_Y82_E 60.614 -0.00739305
+EDIN_T0_DSSD_Y83_E 60.9806 -0.00743603
+EDIN_T0_DSSD_Y84_E 61.5583 -0.00750846
+EDIN_T0_DSSD_Y85_E 60.4678 -0.00737414
+EDIN_T0_DSSD_Y86_E 60.2097 -0.00734092
+EDIN_T0_DSSD_Y87_E 61.2218 -0.00746599
+EDIN_T0_DSSD_Y88_E 60.8157 -0.00741559
+EDIN_T0_DSSD_Y89_E 60.5574 -0.00738398
+EDIN_T0_DSSD_Y90_E 60.8627 -0.00742455
+EDIN_T0_DSSD_Y91_E 60.5988 -0.00739044
+EDIN_T0_DSSD_Y92_E 60.8428 -0.00741833
+EDIN_T0_DSSD_Y93_E 61.1607 -0.00745558
+EDIN_T0_DSSD_Y94_E 61.0983 -0.00745144
+EDIN_T0_DSSD_Y95_E 61.8302 -0.0075415
+EDIN_T0_DSSD_Y96_E 60.0553 -0.00731929
+EDIN_T0_DSSD_Y97_E 55.7742 -0.00679946
+EDIN_T0_DSSD_Y98_E 56.1832 -0.00685158
+EDIN_T0_DSSD_Y99_E 56.152 -0.00684972
+EDIN_T0_DSSD_Y100_E 55.912 -0.00681729
+EDIN_T0_DSSD_Y101_E 55.6362 -0.00678371
+EDIN_T0_DSSD_Y102_E 55.8572 -0.00681179
+EDIN_T0_DSSD_Y103_E 55.486 -0.00676551
+EDIN_T0_DSSD_Y104_E 55.885 -0.00681303
+EDIN_T0_DSSD_Y105_E 56.4646 -0.00688688
+EDIN_T0_DSSD_Y106_E 55.5213 -0.00677028
+EDIN_T0_DSSD_Y107_E 56.5196 -0.00689244
+EDIN_T0_DSSD_Y108_E 56.9227 -0.00694262
+EDIN_T0_DSSD_Y109_E 56.1534 -0.00684992
+EDIN_T0_DSSD_Y110_E 56.1398 -0.00684749
+EDIN_T0_DSSD_Y111_E 56.3085 -0.00686958
+EDIN_T0_DSSD_Y112_E 55.8333 -0.00680889
+EDIN_T0_DSSD_Y113_E 56.4396 -0.00688391
+EDIN_T0_DSSD_Y114_E 56.5463 -0.00689512
+EDIN_T0_DSSD_Y115_E 56.5453 -0.00689864
+EDIN_T0_DSSD_Y116_E 56.3018 -0.00686687
+EDIN_T0_DSSD_Y117_E 56.705 -0.00691355
+EDIN_T0_DSSD_Y118_E 56.201 -0.00685677
+EDIN_T0_DSSD_Y119_E 55.7838 -0.00680077
+EDIN_T0_DSSD_Y120_E 56.2447 -0.0068617
+EDIN_T0_DSSD_Y121_E 56.8408 -0.00693173
+EDIN_T0_DSSD_Y122_E 56.5297 -0.00689177
+EDIN_T0_DSSD_Y123_E 56.1895 -0.00685299
+EDIN_T0_DSSD_Y124_E 55.5455 -0.00677484
+EDIN_T0_DSSD_Y125_E 55.8037 -0.00680289
+EDIN_T0_DSSD_Y126_E 55.2461 -0.00673471
+EDIN_T0_DSSD_Y127_E 56.4438 -0.00688289
+EDIN_T0_DSSD_Y128_E 56.0716 -0.00683804
+0
\ No newline at end of file
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..6cd7658966b9f92c10a99e762c4ad7726dc0d023
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
@@ -0,0 +1,128 @@
+EDIN_T1_DSSD_X1_E_Zero_Dispersion 8183.92
+EDIN_T1_DSSD_X2_E_Zero_Dispersion -5.17044
+EDIN_T1_DSSD_X3_E_Zero_Dispersion -3.92847
+EDIN_T1_DSSD_X4_E_Zero_Dispersion -6.99527
+EDIN_T1_DSSD_X5_E_Zero_Dispersion -3.77063
+EDIN_T1_DSSD_X6_E_Zero_Dispersion -3.28123
+EDIN_T1_DSSD_X7_E_Zero_Dispersion -4.30523
+EDIN_T1_DSSD_X8_E_Zero_Dispersion -2.42544
+EDIN_T1_DSSD_X9_E_Zero_Dispersion -1.81463
+EDIN_T1_DSSD_X10_E_Zero_Dispersion -7.16592
+EDIN_T1_DSSD_X11_E_Zero_Dispersion -6.59667
+EDIN_T1_DSSD_X12_E_Zero_Dispersion -5.2663
+EDIN_T1_DSSD_X13_E_Zero_Dispersion -4.51215
+EDIN_T1_DSSD_X14_E_Zero_Dispersion -6.97301
+EDIN_T1_DSSD_X15_E_Zero_Dispersion -5.9137
+EDIN_T1_DSSD_X16_E_Zero_Dispersion -6.95885
+EDIN_T1_DSSD_X17_E_Zero_Dispersion -8.21584
+EDIN_T1_DSSD_X18_E_Zero_Dispersion -5.03832
+EDIN_T1_DSSD_X19_E_Zero_Dispersion -6.74204
+EDIN_T1_DSSD_X20_E_Zero_Dispersion -4.0087
+EDIN_T1_DSSD_X21_E_Zero_Dispersion -5.43692
+EDIN_T1_DSSD_X22_E_Zero_Dispersion -5.40324
+EDIN_T1_DSSD_X23_E_Zero_Dispersion -4.89198
+EDIN_T1_DSSD_X24_E_Zero_Dispersion -8.84137
+EDIN_T1_DSSD_X25_E_Zero_Dispersion -4.63797
+EDIN_T1_DSSD_X26_E_Zero_Dispersion -8.90324
+EDIN_T1_DSSD_X27_E_Zero_Dispersion -4.40912
+EDIN_T1_DSSD_X28_E_Zero_Dispersion -1.11383
+EDIN_T1_DSSD_X29_E_Zero_Dispersion -3.66571
+EDIN_T1_DSSD_X30_E_Zero_Dispersion -2.10558
+EDIN_T1_DSSD_X31_E_Zero_Dispersion -6.59864
+EDIN_T1_DSSD_X32_E_Zero_Dispersion -6.67447
+EDIN_T1_DSSD_X33_E_Zero_Dispersion -4.07185
+EDIN_T1_DSSD_X34_E_Zero_Dispersion -5.96725
+EDIN_T1_DSSD_X35_E_Zero_Dispersion -2.57858
+EDIN_T1_DSSD_X36_E_Zero_Dispersion -3.98445
+EDIN_T1_DSSD_X37_E_Zero_Dispersion -9.29023
+EDIN_T1_DSSD_X38_E_Zero_Dispersion -2.99038
+EDIN_T1_DSSD_X39_E_Zero_Dispersion -4.47744
+EDIN_T1_DSSD_X40_E_Zero_Dispersion -7.21395
+EDIN_T1_DSSD_X41_E_Zero_Dispersion -2.85691
+EDIN_T1_DSSD_X42_E_Zero_Dispersion -8.03008
+EDIN_T1_DSSD_X43_E_Zero_Dispersion -5.52405
+EDIN_T1_DSSD_X44_E_Zero_Dispersion -5.50196
+EDIN_T1_DSSD_X45_E_Zero_Dispersion -4.82071
+EDIN_T1_DSSD_X46_E_Zero_Dispersion -7.09976
+EDIN_T1_DSSD_X47_E_Zero_Dispersion -7.35468
+EDIN_T1_DSSD_X48_E_Zero_Dispersion -3.43199
+EDIN_T1_DSSD_X49_E_Zero_Dispersion -1.79955
+EDIN_T1_DSSD_X50_E_Zero_Dispersion -6.61684
+EDIN_T1_DSSD_X51_E_Zero_Dispersion -4.97747
+EDIN_T1_DSSD_X52_E_Zero_Dispersion -7.18129
+EDIN_T1_DSSD_X53_E_Zero_Dispersion -6.01197
+EDIN_T1_DSSD_X54_E_Zero_Dispersion -5.97719
+EDIN_T1_DSSD_X55_E_Zero_Dispersion -7.36041
+EDIN_T1_DSSD_X56_E_Zero_Dispersion -7.17978
+EDIN_T1_DSSD_X57_E_Zero_Dispersion -4.67205
+EDIN_T1_DSSD_X58_E_Zero_Dispersion -4.40417
+EDIN_T1_DSSD_X59_E_Zero_Dispersion -6.45299
+EDIN_T1_DSSD_X60_E_Zero_Dispersion -5.64194
+EDIN_T1_DSSD_X61_E_Zero_Dispersion -7.28262
+EDIN_T1_DSSD_X62_E_Zero_Dispersion -8.83294
+EDIN_T1_DSSD_X63_E_Zero_Dispersion -7.03943
+EDIN_T1_DSSD_X64_E_Zero_Dispersion -6.87995
+EDIN_T1_DSSD_X65_E_Zero_Dispersion -7.12
+EDIN_T1_DSSD_X66_E_Zero_Dispersion -4.49207
+EDIN_T1_DSSD_X67_E_Zero_Dispersion -6.36095
+EDIN_T1_DSSD_X68_E_Zero_Dispersion -3.95364
+EDIN_T1_DSSD_X69_E_Zero_Dispersion -5.40585
+EDIN_T1_DSSD_X70_E_Zero_Dispersion -8.10005
+EDIN_T1_DSSD_X71_E_Zero_Dispersion -8.57551
+EDIN_T1_DSSD_X72_E_Zero_Dispersion -6.06378
+EDIN_T1_DSSD_X73_E_Zero_Dispersion -7.96105
+EDIN_T1_DSSD_X74_E_Zero_Dispersion -8.10179
+EDIN_T1_DSSD_X75_E_Zero_Dispersion -7.31795
+EDIN_T1_DSSD_X76_E_Zero_Dispersion -6.83977
+EDIN_T1_DSSD_X77_E_Zero_Dispersion -4.77703
+EDIN_T1_DSSD_X78_E_Zero_Dispersion -4.54183
+EDIN_T1_DSSD_X79_E_Zero_Dispersion -4.41532
+EDIN_T1_DSSD_X80_E_Zero_Dispersion -9.49729
+EDIN_T1_DSSD_X81_E_Zero_Dispersion -9.32143
+EDIN_T1_DSSD_X82_E_Zero_Dispersion -6.78535
+EDIN_T1_DSSD_X83_E_Zero_Dispersion -8.69509
+EDIN_T1_DSSD_X84_E_Zero_Dispersion -6.52163
+EDIN_T1_DSSD_X85_E_Zero_Dispersion -7.98711
+EDIN_T1_DSSD_X86_E_Zero_Dispersion -9.92926
+EDIN_T1_DSSD_X87_E_Zero_Dispersion -8.09908
+EDIN_T1_DSSD_X88_E_Zero_Dispersion -9.06084
+EDIN_T1_DSSD_X89_E_Zero_Dispersion -9.19743
+EDIN_T1_DSSD_X90_E_Zero_Dispersion -5.4875
+EDIN_T1_DSSD_X91_E_Zero_Dispersion -7.61256
+EDIN_T1_DSSD_X92_E_Zero_Dispersion -9.68182
+EDIN_T1_DSSD_X93_E_Zero_Dispersion -11.3434
+EDIN_T1_DSSD_X94_E_Zero_Dispersion -7.52494
+EDIN_T1_DSSD_X95_E_Zero_Dispersion -6.66366
+EDIN_T1_DSSD_X96_E_Zero_Dispersion -13.0664
+EDIN_T1_DSSD_X97_E_Zero_Dispersion -10.7421
+EDIN_T1_DSSD_X98_E_Zero_Dispersion -8.03092
+EDIN_T1_DSSD_X99_E_Zero_Dispersion -5.70467
+EDIN_T1_DSSD_X100_E_Zero_Dispersion -9.49564
+EDIN_T1_DSSD_X101_E_Zero_Dispersion -9.43986
+EDIN_T1_DSSD_X102_E_Zero_Dispersion -8.07489
+EDIN_T1_DSSD_X103_E_Zero_Dispersion -9.29445
+EDIN_T1_DSSD_X104_E_Zero_Dispersion -10.6584
+EDIN_T1_DSSD_X105_E_Zero_Dispersion -6.86707
+EDIN_T1_DSSD_X106_E_Zero_Dispersion -8.73563
+EDIN_T1_DSSD_X107_E_Zero_Dispersion -8.23037
+EDIN_T1_DSSD_X108_E_Zero_Dispersion -7.02417
+EDIN_T1_DSSD_X109_E_Zero_Dispersion -5.66842
+EDIN_T1_DSSD_X110_E_Zero_Dispersion -6.59401
+EDIN_T1_DSSD_X111_E_Zero_Dispersion -4.7843
+EDIN_T1_DSSD_X112_E_Zero_Dispersion -8.05371
+EDIN_T1_DSSD_X113_E_Zero_Dispersion -6.76558
+EDIN_T1_DSSD_X114_E_Zero_Dispersion -8.92279
+EDIN_T1_DSSD_X115_E_Zero_Dispersion -4.59212
+EDIN_T1_DSSD_X116_E_Zero_Dispersion -7.04071
+EDIN_T1_DSSD_X117_E_Zero_Dispersion -10.0125
+EDIN_T1_DSSD_X118_E_Zero_Dispersion -4.43158
+EDIN_T1_DSSD_X119_E_Zero_Dispersion -10.5822
+EDIN_T1_DSSD_X120_E_Zero_Dispersion -4.90309
+EDIN_T1_DSSD_X121_E_Zero_Dispersion -8.08149
+EDIN_T1_DSSD_X122_E_Zero_Dispersion -10.5025
+EDIN_T1_DSSD_X123_E_Zero_Dispersion -7.25654
+EDIN_T1_DSSD_X124_E_Zero_Dispersion -6.79145
+EDIN_T1_DSSD_X125_E_Zero_Dispersion -10.95
+EDIN_T1_DSSD_X126_E_Zero_Dispersion -11.1871
+EDIN_T1_DSSD_X127_E_Zero_Dispersion -8.59784
+EDIN_T1_DSSD_X128_E_Zero_Dispersion -7.95412
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/latex/double_alpha_run_244_Y_MM1_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/latex/double_alpha_run_244_Y_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..114d622d3fb7f07f0ab5acddaafd2373e4d71de9
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/latex/double_alpha_run_244_Y_MM1_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+1 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.017
+
+Sigma fit sigma: 0.189688
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..ca70ea4809a7f6a9f31aaab68aaa90e4f1ad4178
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,129 @@
+EDIN_T1_DSSD_Y1_E 59.5705 -0.00727398
+EDIN_T1_DSSD_Y2_E 60.2151 -0.00734888
+EDIN_T1_DSSD_Y3_E 59.57 -0.00727192
+EDIN_T1_DSSD_Y4_E 59.201 -0.00722713
+EDIN_T1_DSSD_Y5_E 60.1046 -0.00733734
+EDIN_T1_DSSD_Y6_E 59.9026 -0.00731246
+EDIN_T1_DSSD_Y7_E 59.388 -0.0072511
+EDIN_T1_DSSD_Y8_E 59.1918 -0.0072224
+EDIN_T1_DSSD_Y9_E 59.376 -0.0072489
+EDIN_T1_DSSD_Y10_E 59.7253 -0.00729359
+EDIN_T1_DSSD_Y11_E 16.0752 -0.00119596
+EDIN_T1_DSSD_Y12_E 59.4842 -0.00726278
+EDIN_T1_DSSD_Y13_E 60.0605 -0.00733142
+EDIN_T1_DSSD_Y14_E 59.206 -0.00722921
+EDIN_T1_DSSD_Y15_E 59.2192 -0.00722769
+EDIN_T1_DSSD_Y16_E 59.6695 -0.00728356
+EDIN_T1_DSSD_Y17_E 62.1482 -0.00758802
+EDIN_T1_DSSD_Y18_E 62.2753 -0.0076006
+EDIN_T1_DSSD_Y19_E 62.195 -0.00758977
+EDIN_T1_DSSD_Y20_E 61.9362 -0.00756177
+EDIN_T1_DSSD_Y21_E 61.7663 -0.00753461
+EDIN_T1_DSSD_Y22_E 61.9215 -0.0075538
+EDIN_T1_DSSD_Y23_E 6.82575 -0.844837
+EDIN_T1_DSSD_Y24_E 61.8655 -0.00755191
+EDIN_T1_DSSD_Y25_E 61.3176 -0.00748082
+EDIN_T1_DSSD_Y26_E 61.2588 -0.00747669
+EDIN_T1_DSSD_Y27_E 62.0872 -0.00758225
+EDIN_T1_DSSD_Y28_E 61.8438 -0.00754851
+EDIN_T1_DSSD_Y29_E 62.3111 -0.00760852
+EDIN_T1_DSSD_Y30_E 61.8994 -0.00755587
+EDIN_T1_DSSD_Y31_E 61.7287 -0.00753818
+EDIN_T1_DSSD_Y32_E 61.5036 -0.007505
+EDIN_T1_DSSD_Y33_E 55.8776 -0.00681857
+EDIN_T1_DSSD_Y34_E 56.3128 -0.00687709
+EDIN_T1_DSSD_Y35_E 55.5307 -0.00677956
+EDIN_T1_DSSD_Y36_E 55.4016 -0.00676073
+EDIN_T1_DSSD_Y37_E 53.1921 -0.00645194
+EDIN_T1_DSSD_Y38_E 56.1812 -0.00685751
+EDIN_T1_DSSD_Y39_E 55.196 -0.00673652
+EDIN_T1_DSSD_Y40_E 55.6469 -0.00679102
+EDIN_T1_DSSD_Y41_E 56.181 -0.00686375
+EDIN_T1_DSSD_Y42_E 55.9769 -0.00683292
+EDIN_T1_DSSD_Y43_E 55.3257 -0.00675247
+EDIN_T1_DSSD_Y44_E 56.3504 -0.00687658
+EDIN_T1_DSSD_Y45_E 55.5227 -0.00677836
+EDIN_T1_DSSD_Y46_E 55.5291 -0.00677773
+EDIN_T1_DSSD_Y47_E 55.5286 -0.00677689
+EDIN_T1_DSSD_Y48_E 55.5031 -0.00677406
+EDIN_T1_DSSD_Y49_E 57.0121 -0.00695828
+EDIN_T1_DSSD_Y50_E 56.396 -0.0068824
+EDIN_T1_DSSD_Y51_E 56.0249 -0.00683191
+EDIN_T1_DSSD_Y52_E 55.6123 -0.00678369
+EDIN_T1_DSSD_Y53_E 56.6957 -0.00692135
+EDIN_T1_DSSD_Y54_E 55.743 -0.00679812
+EDIN_T1_DSSD_Y55_E 56.5408 -0.00690599
+EDIN_T1_DSSD_Y56_E 55.9616 -0.00682548
+EDIN_T1_DSSD_Y57_E 56.9111 -0.00694268
+EDIN_T1_DSSD_Y58_E 56.8826 -0.00694298
+EDIN_T1_DSSD_Y59_E 56.2912 -0.00686755
+EDIN_T1_DSSD_Y60_E 56.9681 -0.0069508
+EDIN_T1_DSSD_Y61_E 57.2803 -0.00699287
+EDIN_T1_DSSD_Y62_E 56.6306 -0.00690811
+EDIN_T1_DSSD_Y63_E 56.0755 -0.00684657
+EDIN_T1_DSSD_Y64_E 57.1404 -0.00697566
+EDIN_T1_DSSD_Y65_E 60.8642 -0.00742914
+EDIN_T1_DSSD_Y66_E 61.5287 -0.00751148
+EDIN_T1_DSSD_Y67_E 61.1786 -0.00746816
+EDIN_T1_DSSD_Y68_E 61.452 -0.00750172
+EDIN_T1_DSSD_Y69_E 61.0464 -0.00745119
+EDIN_T1_DSSD_Y70_E 59.8503 -0.00730518
+EDIN_T1_DSSD_Y71_E 60.1717 -0.00734174
+EDIN_T1_DSSD_Y72_E 60.9194 -0.0074351
+EDIN_T1_DSSD_Y73_E 60.1838 -0.00734734
+EDIN_T1_DSSD_Y74_E 60.9926 -0.00744338
+EDIN_T1_DSSD_Y75_E 60.6965 -0.00740912
+EDIN_T1_DSSD_Y76_E 60.1709 -0.00734455
+EDIN_T1_DSSD_Y77_E 60.3451 -0.00736622
+EDIN_T1_DSSD_Y78_E 60.8982 -0.00743519
+EDIN_T1_DSSD_Y79_E 60.4023 -0.00737177
+EDIN_T1_DSSD_Y80_E 61.1521 -0.00746358
+EDIN_T1_DSSD_Y81_E 60.839 -0.00742397
+EDIN_T1_DSSD_Y82_E 60.8305 -0.00742279
+EDIN_T1_DSSD_Y83_E 60.8257 -0.00742368
+EDIN_T1_DSSD_Y84_E 60.2943 -0.00735897
+EDIN_T1_DSSD_Y85_E 60.1703 -0.0073422
+EDIN_T1_DSSD_Y86_E 61.2194 -0.00747585
+EDIN_T1_DSSD_Y87_E 60.6736 -0.00740962
+EDIN_T1_DSSD_Y88_E 60.444 -0.00737797
+EDIN_T1_DSSD_Y89_E 60.9583 -0.00744118
+EDIN_T1_DSSD_Y90_E 61.1705 -0.00746654
+EDIN_T1_DSSD_Y91_E 60.3498 -0.00736287
+EDIN_T1_DSSD_Y92_E 60.6395 -0.00740081
+EDIN_T1_DSSD_Y93_E 60.1318 -0.00733569
+EDIN_T1_DSSD_Y94_E 61.2877 -0.00748294
+EDIN_T1_DSSD_Y95_E 61.2431 -0.00747224
+EDIN_T1_DSSD_Y96_E 60.4303 -0.00737412
+EDIN_T1_DSSD_Y97_E 55.8061 -0.00681283
+EDIN_T1_DSSD_Y98_E 55.4171 -0.00676627
+EDIN_T1_DSSD_Y99_E 55.7214 -0.00680459
+EDIN_T1_DSSD_Y100_E 55.2639 -0.00674314
+EDIN_T1_DSSD_Y101_E 55.6849 -0.00679758
+EDIN_T1_DSSD_Y102_E 55.3177 -0.00675153
+EDIN_T1_DSSD_Y103_E 55.378 -0.00676143
+EDIN_T1_DSSD_Y104_E 56.0478 -0.00684278
+EDIN_T1_DSSD_Y105_E 55.1499 -0.00673191
+EDIN_T1_DSSD_Y106_E 55.1058 -0.00672629
+EDIN_T1_DSSD_Y107_E 55.8368 -0.00681743
+EDIN_T1_DSSD_Y108_E 55.2548 -0.00674814
+EDIN_T1_DSSD_Y109_E 55.6596 -0.00679294
+EDIN_T1_DSSD_Y110_E 55.9243 -0.00682591
+EDIN_T1_DSSD_Y111_E 56.0708 -0.00684616
+EDIN_T1_DSSD_Y112_E 56.3903 -0.00688352
+EDIN_T1_DSSD_Y113_E 54.7069 -0.00667838
+EDIN_T1_DSSD_Y114_E 55.2602 -0.00674283
+EDIN_T1_DSSD_Y115_E 55.0071 -0.00671389
+EDIN_T1_DSSD_Y116_E 55.0806 -0.00672618
+EDIN_T1_DSSD_Y117_E 55.1102 -0.00672804
+EDIN_T1_DSSD_Y118_E 55.3182 -0.00675322
+EDIN_T1_DSSD_Y119_E 55.1394 -0.00673094
+EDIN_T1_DSSD_Y120_E 55.5783 -0.00678642
+EDIN_T1_DSSD_Y121_E 55.6557 -0.00679265
+EDIN_T1_DSSD_Y122_E 55.3764 -0.00676029
+EDIN_T1_DSSD_Y123_E 54.6315 -0.00666751
+EDIN_T1_DSSD_Y124_E 55.0287 -0.00671759
+EDIN_T1_DSSD_Y125_E 55.0921 -0.00672524
+EDIN_T1_DSSD_Y126_E 55.0536 -0.00671929
+EDIN_T1_DSSD_Y127_E 55.165 -0.00673334
+EDIN_T1_DSSD_Y128_E 56.1067 -0.00684803
+1
\ No newline at end of file
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..0a25dcba36392536a172a0f894c7dded02520db4
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_X1_E_Zero_Dispersion 2.46658
+EDIN_T2_DSSD_X2_E_Zero_Dispersion -1.78382
+EDIN_T2_DSSD_X3_E_Zero_Dispersion 0.215451
+EDIN_T2_DSSD_X4_E_Zero_Dispersion 0.495236
+EDIN_T2_DSSD_X5_E_Zero_Dispersion 0.3988
+EDIN_T2_DSSD_X6_E_Zero_Dispersion 0.157444
+EDIN_T2_DSSD_X7_E_Zero_Dispersion 1.7836
+EDIN_T2_DSSD_X8_E_Zero_Dispersion -3.58366
+EDIN_T2_DSSD_X9_E_Zero_Dispersion 0.966967
+EDIN_T2_DSSD_X10_E_Zero_Dispersion 3.25767
+EDIN_T2_DSSD_X11_E_Zero_Dispersion -5249.29
+EDIN_T2_DSSD_X12_E_Zero_Dispersion 1.72085
+EDIN_T2_DSSD_X13_E_Zero_Dispersion -0.211809
+EDIN_T2_DSSD_X14_E_Zero_Dispersion 2.17294
+EDIN_T2_DSSD_X15_E_Zero_Dispersion -1.38534
+EDIN_T2_DSSD_X16_E_Zero_Dispersion -0.356436
+EDIN_T2_DSSD_X17_E_Zero_Dispersion 1.69495
+EDIN_T2_DSSD_X18_E_Zero_Dispersion -1.47987
+EDIN_T2_DSSD_X19_E_Zero_Dispersion -2.58605
+EDIN_T2_DSSD_X20_E_Zero_Dispersion 1.30178
+EDIN_T2_DSSD_X21_E_Zero_Dispersion -5.66889
+EDIN_T2_DSSD_X22_E_Zero_Dispersion -5.4075
+EDIN_T2_DSSD_X23_E_Zero_Dispersion 8183.92
+EDIN_T2_DSSD_X24_E_Zero_Dispersion -0.038001
+EDIN_T2_DSSD_X25_E_Zero_Dispersion -4.63427
+EDIN_T2_DSSD_X26_E_Zero_Dispersion -1.29601
+EDIN_T2_DSSD_X27_E_Zero_Dispersion 3.51474
+EDIN_T2_DSSD_X28_E_Zero_Dispersion -0.85752
+EDIN_T2_DSSD_X29_E_Zero_Dispersion 2.35036
+EDIN_T2_DSSD_X30_E_Zero_Dispersion -0.227067
+EDIN_T2_DSSD_X31_E_Zero_Dispersion 3.20144
+EDIN_T2_DSSD_X32_E_Zero_Dispersion -3.01983
+EDIN_T2_DSSD_X33_E_Zero_Dispersion -2.90432
+EDIN_T2_DSSD_X34_E_Zero_Dispersion 3.53618
+EDIN_T2_DSSD_X35_E_Zero_Dispersion 1.10118
+EDIN_T2_DSSD_X36_E_Zero_Dispersion -2.62621
+EDIN_T2_DSSD_X37_E_Zero_Dispersion -52.3637
+EDIN_T2_DSSD_X38_E_Zero_Dispersion -0.653989
+EDIN_T2_DSSD_X39_E_Zero_Dispersion -1.53764
+EDIN_T2_DSSD_X40_E_Zero_Dispersion -2.18515
+EDIN_T2_DSSD_X41_E_Zero_Dispersion 6.82292
+EDIN_T2_DSSD_X42_E_Zero_Dispersion -0.243571
+EDIN_T2_DSSD_X43_E_Zero_Dispersion -1.39854
+EDIN_T2_DSSD_X44_E_Zero_Dispersion -2.54148
+EDIN_T2_DSSD_X45_E_Zero_Dispersion 0.824955
+EDIN_T2_DSSD_X46_E_Zero_Dispersion -0.881018
+EDIN_T2_DSSD_X47_E_Zero_Dispersion -1.82214
+EDIN_T2_DSSD_X48_E_Zero_Dispersion -1.46902
+EDIN_T2_DSSD_X49_E_Zero_Dispersion -1.42389
+EDIN_T2_DSSD_X50_E_Zero_Dispersion -2.23688
+EDIN_T2_DSSD_X51_E_Zero_Dispersion -8.47943
+EDIN_T2_DSSD_X52_E_Zero_Dispersion -5.93955
+EDIN_T2_DSSD_X53_E_Zero_Dispersion 0.583184
+EDIN_T2_DSSD_X54_E_Zero_Dispersion -7.77127
+EDIN_T2_DSSD_X55_E_Zero_Dispersion 4.7839
+EDIN_T2_DSSD_X56_E_Zero_Dispersion -6.91851
+EDIN_T2_DSSD_X57_E_Zero_Dispersion -5.27507
+EDIN_T2_DSSD_X58_E_Zero_Dispersion -0.825614
+EDIN_T2_DSSD_X59_E_Zero_Dispersion -4.69548
+EDIN_T2_DSSD_X60_E_Zero_Dispersion -3.90577
+EDIN_T2_DSSD_X61_E_Zero_Dispersion 0.756766
+EDIN_T2_DSSD_X62_E_Zero_Dispersion -5.70142
+EDIN_T2_DSSD_X63_E_Zero_Dispersion 1.69226
+EDIN_T2_DSSD_X64_E_Zero_Dispersion 0.602726
+EDIN_T2_DSSD_X65_E_Zero_Dispersion -0.629055
+EDIN_T2_DSSD_X66_E_Zero_Dispersion 0.701984
+EDIN_T2_DSSD_X67_E_Zero_Dispersion 0.0711705
+EDIN_T2_DSSD_X68_E_Zero_Dispersion 0.286164
+EDIN_T2_DSSD_X69_E_Zero_Dispersion -0.834185
+EDIN_T2_DSSD_X70_E_Zero_Dispersion -0.854994
+EDIN_T2_DSSD_X71_E_Zero_Dispersion -3.83721
+EDIN_T2_DSSD_X72_E_Zero_Dispersion -1.48499
+EDIN_T2_DSSD_X73_E_Zero_Dispersion 0.764159
+EDIN_T2_DSSD_X74_E_Zero_Dispersion -2.20543
+EDIN_T2_DSSD_X75_E_Zero_Dispersion -0.135162
+EDIN_T2_DSSD_X76_E_Zero_Dispersion -0.598422
+EDIN_T2_DSSD_X77_E_Zero_Dispersion -0.136367
+EDIN_T2_DSSD_X78_E_Zero_Dispersion 1.45911
+EDIN_T2_DSSD_X79_E_Zero_Dispersion -1.73055
+EDIN_T2_DSSD_X80_E_Zero_Dispersion -1.39263
+EDIN_T2_DSSD_X81_E_Zero_Dispersion -2.94408
+EDIN_T2_DSSD_X82_E_Zero_Dispersion -3.10204
+EDIN_T2_DSSD_X83_E_Zero_Dispersion -1.47031
+EDIN_T2_DSSD_X84_E_Zero_Dispersion -1.30554
+EDIN_T2_DSSD_X85_E_Zero_Dispersion -3.13034
+EDIN_T2_DSSD_X86_E_Zero_Dispersion 3.0528
+EDIN_T2_DSSD_X87_E_Zero_Dispersion 3.5033
+EDIN_T2_DSSD_X88_E_Zero_Dispersion -0.496354
+EDIN_T2_DSSD_X89_E_Zero_Dispersion -0.0103355
+EDIN_T2_DSSD_X90_E_Zero_Dispersion -0.60827
+EDIN_T2_DSSD_X91_E_Zero_Dispersion -4.50448
+EDIN_T2_DSSD_X92_E_Zero_Dispersion -1.62803
+EDIN_T2_DSSD_X93_E_Zero_Dispersion -5.15821
+EDIN_T2_DSSD_X94_E_Zero_Dispersion 1.6757
+EDIN_T2_DSSD_X95_E_Zero_Dispersion -4.09057
+EDIN_T2_DSSD_X96_E_Zero_Dispersion -2.91394
+EDIN_T2_DSSD_X97_E_Zero_Dispersion 0.674579
+EDIN_T2_DSSD_X98_E_Zero_Dispersion 1.79696
+EDIN_T2_DSSD_X99_E_Zero_Dispersion 3.20238
+EDIN_T2_DSSD_X100_E_Zero_Dispersion -3.57047
+EDIN_T2_DSSD_X101_E_Zero_Dispersion 0.12868
+EDIN_T2_DSSD_X102_E_Zero_Dispersion -1.36355
+EDIN_T2_DSSD_X103_E_Zero_Dispersion 1.71917
+EDIN_T2_DSSD_X104_E_Zero_Dispersion 1.21368
+EDIN_T2_DSSD_X105_E_Zero_Dispersion -0.316078
+EDIN_T2_DSSD_X106_E_Zero_Dispersion -0.596855
+EDIN_T2_DSSD_X107_E_Zero_Dispersion 1.69928
+EDIN_T2_DSSD_X108_E_Zero_Dispersion 3.844
+EDIN_T2_DSSD_X109_E_Zero_Dispersion -1.7394
+EDIN_T2_DSSD_X110_E_Zero_Dispersion -0.947143
+EDIN_T2_DSSD_X111_E_Zero_Dispersion 1.89807
+EDIN_T2_DSSD_X112_E_Zero_Dispersion -0.0740967
+EDIN_T2_DSSD_X113_E_Zero_Dispersion 0.361099
+EDIN_T2_DSSD_X114_E_Zero_Dispersion -3.39836
+EDIN_T2_DSSD_X115_E_Zero_Dispersion -1.03134
+EDIN_T2_DSSD_X116_E_Zero_Dispersion 3.01242
+EDIN_T2_DSSD_X117_E_Zero_Dispersion 0.878279
+EDIN_T2_DSSD_X118_E_Zero_Dispersion 0.617765
+EDIN_T2_DSSD_X119_E_Zero_Dispersion 0.0589642
+EDIN_T2_DSSD_X120_E_Zero_Dispersion 2.36366
+EDIN_T2_DSSD_X121_E_Zero_Dispersion -1.52548
+EDIN_T2_DSSD_X122_E_Zero_Dispersion 0.580297
+EDIN_T2_DSSD_X123_E_Zero_Dispersion -1.6797
+EDIN_T2_DSSD_X124_E_Zero_Dispersion 0.263346
+EDIN_T2_DSSD_X125_E_Zero_Dispersion 0.151479
+EDIN_T2_DSSD_X126_E_Zero_Dispersion -1.36217
+EDIN_T2_DSSD_X127_E_Zero_Dispersion -0.8161
+EDIN_T2_DSSD_X128_E_Zero_Dispersion -1.12133
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/latex/double_alpha_run_244_Y_MM2_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/latex/double_alpha_run_244_Y_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..41a2e421c646712fb691bef9813a38c4ea501f40
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/latex/double_alpha_run_244_Y_MM2_E.tex
@@ -0,0 +1,63 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+11 &  zero extrapolation too high:-5249.29channels;  \\ \hline 
+23 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+37 &  zero extrapolation too high:-52.3637channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.32869
+
+Sigma fit sigma: 0.445892
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e6cf3b067c33721d0d500beaddedc44f214a2055
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_Y1_E 62.9696 -0.00768446
+EDIN_T2_DSSD_Y2_E 63.6646 -0.00776718
+EDIN_T2_DSSD_Y3_E 62.408 -0.00761735
+EDIN_T2_DSSD_Y4_E 63.2424 -0.00771872
+EDIN_T2_DSSD_Y5_E 62.6675 -0.00764504
+EDIN_T2_DSSD_Y6_E 62.6087 -0.00764254
+EDIN_T2_DSSD_Y7_E 62.8947 -0.00767579
+EDIN_T2_DSSD_Y8_E 62.5261 -0.00763211
+EDIN_T2_DSSD_Y9_E 62.528 -0.00762973
+EDIN_T2_DSSD_Y10_E 63.2307 -0.00771667
+EDIN_T2_DSSD_Y11_E 62.6418 -0.00764334
+EDIN_T2_DSSD_Y12_E 62.3872 -0.00761368
+EDIN_T2_DSSD_Y13_E 61.8591 -0.00754885
+EDIN_T2_DSSD_Y14_E 62.4679 -0.00762255
+EDIN_T2_DSSD_Y15_E 62.7008 -0.00765026
+EDIN_T2_DSSD_Y16_E 63.3551 -0.00773223
+EDIN_T2_DSSD_Y17_E 61.3352 -0.00748234
+EDIN_T2_DSSD_Y18_E 60.5521 -0.00738515
+EDIN_T2_DSSD_Y19_E 60.5685 -0.00739241
+EDIN_T2_DSSD_Y20_E 61.7065 -0.00752796
+EDIN_T2_DSSD_Y21_E 60.6735 -0.00740095
+EDIN_T2_DSSD_Y22_E 60.6699 -0.00740261
+EDIN_T2_DSSD_Y23_E 62.071 -0.00757764
+EDIN_T2_DSSD_Y24_E 60.7475 -0.00741138
+EDIN_T2_DSSD_Y25_E 60.7386 -0.00741045
+EDIN_T2_DSSD_Y26_E 61.2797 -0.00747636
+EDIN_T2_DSSD_Y27_E 61.0832 -0.00745632
+EDIN_T2_DSSD_Y28_E 61.3148 -0.00748463
+EDIN_T2_DSSD_Y29_E 61.6303 -0.00752515
+EDIN_T2_DSSD_Y30_E 61.125 -0.00745808
+EDIN_T2_DSSD_Y31_E 60.9348 -0.00743314
+EDIN_T2_DSSD_Y32_E 61.3989 -0.00748983
+EDIN_T2_DSSD_Y33_E 56.1952 -0.00685817
+EDIN_T2_DSSD_Y34_E 56.3063 -0.0068715
+EDIN_T2_DSSD_Y35_E 56.6538 -0.00691505
+EDIN_T2_DSSD_Y36_E 56.4972 -0.00689435
+EDIN_T2_DSSD_Y37_E 56.8817 -0.00694325
+EDIN_T2_DSSD_Y38_E 56.6748 -0.00691555
+EDIN_T2_DSSD_Y39_E 56.4253 -0.00688901
+EDIN_T2_DSSD_Y40_E 56.5601 -0.00690807
+EDIN_T2_DSSD_Y41_E 56.1552 -0.00685461
+EDIN_T2_DSSD_Y42_E 57.9279 -0.00707067
+EDIN_T2_DSSD_Y43_E 56.7445 -0.00692782
+EDIN_T2_DSSD_Y44_E 56.119 -0.00684937
+EDIN_T2_DSSD_Y45_E 56.9957 -0.00695498
+EDIN_T2_DSSD_Y46_E 57.2405 -0.00698921
+EDIN_T2_DSSD_Y47_E 56.88 -0.00694151
+EDIN_T2_DSSD_Y48_E 56.613 -0.00691086
+EDIN_T2_DSSD_Y49_E 57.4333 -0.00700977
+EDIN_T2_DSSD_Y50_E 57.2345 -0.00699068
+EDIN_T2_DSSD_Y51_E 57.6386 -0.00703191
+EDIN_T2_DSSD_Y52_E 57.3765 -0.00700354
+EDIN_T2_DSSD_Y53_E 57.0322 -0.00695819
+EDIN_T2_DSSD_Y54_E 58.6382 -0.00715991
+EDIN_T2_DSSD_Y55_E 57.5071 -0.00701732
+EDIN_T2_DSSD_Y56_E 57.4561 -0.00700876
+EDIN_T2_DSSD_Y57_E 57.9355 -0.00707626
+EDIN_T2_DSSD_Y58_E 57.2996 -0.00699196
+EDIN_T2_DSSD_Y59_E 57.4134 -0.00701027
+EDIN_T2_DSSD_Y60_E 57.9795 -0.00707456
+EDIN_T2_DSSD_Y61_E 57.9301 -0.00707376
+EDIN_T2_DSSD_Y62_E 57.3702 -0.00700489
+EDIN_T2_DSSD_Y63_E 57.6224 -0.00703204
+EDIN_T2_DSSD_Y64_E 57.9617 -0.00707244
+EDIN_T2_DSSD_Y65_E 59.2845 -0.00723849
+EDIN_T2_DSSD_Y66_E 59.3552 -0.00724338
+EDIN_T2_DSSD_Y67_E 59.4277 -0.00725571
+EDIN_T2_DSSD_Y68_E 60.3423 -0.00736738
+EDIN_T2_DSSD_Y69_E 59.3284 -0.00724153
+EDIN_T2_DSSD_Y70_E 59.6515 -0.00728136
+EDIN_T2_DSSD_Y71_E 59.3639 -0.00724599
+EDIN_T2_DSSD_Y72_E 59.8305 -0.00730471
+EDIN_T2_DSSD_Y73_E 59.4632 -0.00725583
+EDIN_T2_DSSD_Y74_E 59.4182 -0.00725297
+EDIN_T2_DSSD_Y75_E 59.8054 -0.00730017
+EDIN_T2_DSSD_Y76_E 60.0136 -0.00732756
+EDIN_T2_DSSD_Y77_E 59.2215 -0.00722933
+EDIN_T2_DSSD_Y78_E 59.7288 -0.00728927
+EDIN_T2_DSSD_Y79_E 59.2356 -0.00723031
+EDIN_T2_DSSD_Y80_E 59.8523 -0.0073024
+EDIN_T2_DSSD_Y81_E 60.3502 -0.00736651
+EDIN_T2_DSSD_Y82_E 61.1949 -0.00747228
+EDIN_T2_DSSD_Y83_E 60.2825 -0.00735721
+EDIN_T2_DSSD_Y84_E 61.0497 -0.00745147
+EDIN_T2_DSSD_Y85_E 61.0062 -0.00744668
+EDIN_T2_DSSD_Y86_E 60.8096 -0.00742536
+EDIN_T2_DSSD_Y87_E 60.7138 -0.00741077
+EDIN_T2_DSSD_Y88_E 61.1868 -0.00747042
+EDIN_T2_DSSD_Y89_E 60.9587 -0.00744537
+EDIN_T2_DSSD_Y90_E 60.5173 -0.00738459
+EDIN_T2_DSSD_Y91_E 61.3266 -0.00748644
+EDIN_T2_DSSD_Y92_E 60.3678 -0.00736723
+EDIN_T2_DSSD_Y93_E 60.8698 -0.0074295
+EDIN_T2_DSSD_Y94_E 60.5372 -0.00739126
+EDIN_T2_DSSD_Y95_E 61.1493 -0.00746795
+EDIN_T2_DSSD_Y96_E 61.24 -0.00747413
+EDIN_T2_DSSD_Y97_E 56.7785 -0.00693163
+EDIN_T2_DSSD_Y98_E 55.8642 -0.00682005
+EDIN_T2_DSSD_Y99_E 55.9639 -0.00682944
+EDIN_T2_DSSD_Y100_E 56.307 -0.00687006
+EDIN_T2_DSSD_Y101_E 56.3035 -0.00687388
+EDIN_T2_DSSD_Y102_E 56.6481 -0.00691634
+EDIN_T2_DSSD_Y103_E 55.7931 -0.00681196
+EDIN_T2_DSSD_Y104_E 56.8928 -0.00694196
+EDIN_T2_DSSD_Y105_E 55.941 -0.00682942
+EDIN_T2_DSSD_Y106_E 56.4688 -0.00689177
+EDIN_T2_DSSD_Y107_E 56.5486 -0.00690473
+EDIN_T2_DSSD_Y108_E 57.3136 -0.00699581
+EDIN_T2_DSSD_Y109_E 56.9154 -0.00694746
+EDIN_T2_DSSD_Y110_E 56.4094 -0.00688365
+EDIN_T2_DSSD_Y111_E 56.9197 -0.00694954
+EDIN_T2_DSSD_Y112_E 55.9961 -0.00683611
+EDIN_T2_DSSD_Y113_E 56.4905 -0.00689823
+EDIN_T2_DSSD_Y114_E 57.3805 -0.00700796
+EDIN_T2_DSSD_Y115_E 56.3932 -0.00688319
+EDIN_T2_DSSD_Y116_E 56.6059 -0.00690785
+EDIN_T2_DSSD_Y117_E 56.2703 -0.00686753
+EDIN_T2_DSSD_Y118_E 56.275 -0.0068674
+EDIN_T2_DSSD_Y119_E 56.7938 -0.00693488
+EDIN_T2_DSSD_Y120_E 56.6145 -0.00691195
+EDIN_T2_DSSD_Y121_E 56.2102 -0.00686234
+EDIN_T2_DSSD_Y122_E 56.9331 -0.00695032
+EDIN_T2_DSSD_Y123_E 57.2777 -0.00699227
+EDIN_T2_DSSD_Y124_E 6.82575 -0.844837
+EDIN_T2_DSSD_Y125_E 55.9049 -0.00682177
+EDIN_T2_DSSD_Y126_E 56.8814 -0.00694534
+EDIN_T2_DSSD_Y127_E 56.2481 -0.00686735
+EDIN_T2_DSSD_Y128_E 56.034 -0.006839782
\ No newline at end of file
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..b176796fb6f5d85cc6cb30ad5b91957f5c0185f4
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_X1_E_Zero_Dispersion -2.41452
+EDIN_T3_DSSD_X2_E_Zero_Dispersion -4.62314
+EDIN_T3_DSSD_X3_E_Zero_Dispersion -0.868891
+EDIN_T3_DSSD_X4_E_Zero_Dispersion -1.38342
+EDIN_T3_DSSD_X5_E_Zero_Dispersion -5.15237
+EDIN_T3_DSSD_X6_E_Zero_Dispersion -0.130584
+EDIN_T3_DSSD_X7_E_Zero_Dispersion -1.90652
+EDIN_T3_DSSD_X8_E_Zero_Dispersion -0.495975
+EDIN_T3_DSSD_X9_E_Zero_Dispersion -3.30325
+EDIN_T3_DSSD_X10_E_Zero_Dispersion -2.03449
+EDIN_T3_DSSD_X11_E_Zero_Dispersion -3.60991
+EDIN_T3_DSSD_X12_E_Zero_Dispersion -2.09425
+EDIN_T3_DSSD_X13_E_Zero_Dispersion -2.50083
+EDIN_T3_DSSD_X14_E_Zero_Dispersion -3.15323
+EDIN_T3_DSSD_X15_E_Zero_Dispersion -3.90725
+EDIN_T3_DSSD_X16_E_Zero_Dispersion -1.63926
+EDIN_T3_DSSD_X17_E_Zero_Dispersion -5.33288
+EDIN_T3_DSSD_X18_E_Zero_Dispersion -7.18027
+EDIN_T3_DSSD_X19_E_Zero_Dispersion -1.32954
+EDIN_T3_DSSD_X20_E_Zero_Dispersion -4.97396
+EDIN_T3_DSSD_X21_E_Zero_Dispersion -6.07616
+EDIN_T3_DSSD_X22_E_Zero_Dispersion -3.74321
+EDIN_T3_DSSD_X23_E_Zero_Dispersion 0.663908
+EDIN_T3_DSSD_X24_E_Zero_Dispersion -4.52288
+EDIN_T3_DSSD_X25_E_Zero_Dispersion -4.33959
+EDIN_T3_DSSD_X26_E_Zero_Dispersion -4.46834
+EDIN_T3_DSSD_X27_E_Zero_Dispersion -0.136323
+EDIN_T3_DSSD_X28_E_Zero_Dispersion -0.105464
+EDIN_T3_DSSD_X29_E_Zero_Dispersion 2.08573
+EDIN_T3_DSSD_X30_E_Zero_Dispersion -3.80806
+EDIN_T3_DSSD_X31_E_Zero_Dispersion -5.72914
+EDIN_T3_DSSD_X32_E_Zero_Dispersion -5.63244
+EDIN_T3_DSSD_X33_E_Zero_Dispersion -1.91772
+EDIN_T3_DSSD_X34_E_Zero_Dispersion -2.17757
+EDIN_T3_DSSD_X35_E_Zero_Dispersion -0.820265
+EDIN_T3_DSSD_X36_E_Zero_Dispersion -2.70672
+EDIN_T3_DSSD_X37_E_Zero_Dispersion -0.371581
+EDIN_T3_DSSD_X38_E_Zero_Dispersion -3.26869
+EDIN_T3_DSSD_X39_E_Zero_Dispersion 1.37186
+EDIN_T3_DSSD_X40_E_Zero_Dispersion 4.45981
+EDIN_T3_DSSD_X41_E_Zero_Dispersion -0.328392
+EDIN_T3_DSSD_X42_E_Zero_Dispersion -0.694481
+EDIN_T3_DSSD_X43_E_Zero_Dispersion 1.18661
+EDIN_T3_DSSD_X44_E_Zero_Dispersion -1.30229
+EDIN_T3_DSSD_X45_E_Zero_Dispersion -2.94757
+EDIN_T3_DSSD_X46_E_Zero_Dispersion 2.16577
+EDIN_T3_DSSD_X47_E_Zero_Dispersion -2.18928
+EDIN_T3_DSSD_X48_E_Zero_Dispersion 0.104608
+EDIN_T3_DSSD_X49_E_Zero_Dispersion -1.32368
+EDIN_T3_DSSD_X50_E_Zero_Dispersion 4.74399
+EDIN_T3_DSSD_X51_E_Zero_Dispersion -4.71591
+EDIN_T3_DSSD_X52_E_Zero_Dispersion -0.509006
+EDIN_T3_DSSD_X53_E_Zero_Dispersion -4.41517
+EDIN_T3_DSSD_X54_E_Zero_Dispersion 2.21521
+EDIN_T3_DSSD_X55_E_Zero_Dispersion -3.01389
+EDIN_T3_DSSD_X56_E_Zero_Dispersion -5.75791
+EDIN_T3_DSSD_X57_E_Zero_Dispersion 4.69962
+EDIN_T3_DSSD_X58_E_Zero_Dispersion -3.076
+EDIN_T3_DSSD_X59_E_Zero_Dispersion 2.09821
+EDIN_T3_DSSD_X60_E_Zero_Dispersion -3.48995
+EDIN_T3_DSSD_X61_E_Zero_Dispersion 2.56403
+EDIN_T3_DSSD_X62_E_Zero_Dispersion 1.98175
+EDIN_T3_DSSD_X63_E_Zero_Dispersion -2.27108
+EDIN_T3_DSSD_X64_E_Zero_Dispersion -3.42757
+EDIN_T3_DSSD_X65_E_Zero_Dispersion 1.82693
+EDIN_T3_DSSD_X66_E_Zero_Dispersion -2.40702
+EDIN_T3_DSSD_X67_E_Zero_Dispersion 1.53094
+EDIN_T3_DSSD_X68_E_Zero_Dispersion 1.53277
+EDIN_T3_DSSD_X69_E_Zero_Dispersion -0.791383
+EDIN_T3_DSSD_X70_E_Zero_Dispersion -0.362237
+EDIN_T3_DSSD_X71_E_Zero_Dispersion -0.659603
+EDIN_T3_DSSD_X72_E_Zero_Dispersion 1.32626
+EDIN_T3_DSSD_X73_E_Zero_Dispersion -3.22076
+EDIN_T3_DSSD_X74_E_Zero_Dispersion -0.251833
+EDIN_T3_DSSD_X75_E_Zero_Dispersion -0.331908
+EDIN_T3_DSSD_X76_E_Zero_Dispersion 1.87832
+EDIN_T3_DSSD_X77_E_Zero_Dispersion 0.151597
+EDIN_T3_DSSD_X78_E_Zero_Dispersion -2.06675
+EDIN_T3_DSSD_X79_E_Zero_Dispersion -0.672223
+EDIN_T3_DSSD_X80_E_Zero_Dispersion -4.24799
+EDIN_T3_DSSD_X81_E_Zero_Dispersion -0.506594
+EDIN_T3_DSSD_X82_E_Zero_Dispersion 2.41919
+EDIN_T3_DSSD_X83_E_Zero_Dispersion -1.66554
+EDIN_T3_DSSD_X84_E_Zero_Dispersion -0.972652
+EDIN_T3_DSSD_X85_E_Zero_Dispersion -0.403224
+EDIN_T3_DSSD_X86_E_Zero_Dispersion 2.55276
+EDIN_T3_DSSD_X87_E_Zero_Dispersion -0.634855
+EDIN_T3_DSSD_X88_E_Zero_Dispersion 1.44682
+EDIN_T3_DSSD_X89_E_Zero_Dispersion 4.54114
+EDIN_T3_DSSD_X90_E_Zero_Dispersion -3.08185
+EDIN_T3_DSSD_X91_E_Zero_Dispersion 0.317454
+EDIN_T3_DSSD_X92_E_Zero_Dispersion -2.08604
+EDIN_T3_DSSD_X93_E_Zero_Dispersion -0.985475
+EDIN_T3_DSSD_X94_E_Zero_Dispersion 1.62963
+EDIN_T3_DSSD_X95_E_Zero_Dispersion 3.76716
+EDIN_T3_DSSD_X96_E_Zero_Dispersion -1.59486
+EDIN_T3_DSSD_X97_E_Zero_Dispersion 0.77823
+EDIN_T3_DSSD_X98_E_Zero_Dispersion 0.822189
+EDIN_T3_DSSD_X99_E_Zero_Dispersion -2.50977
+EDIN_T3_DSSD_X100_E_Zero_Dispersion -4.00084
+EDIN_T3_DSSD_X101_E_Zero_Dispersion 1.05943
+EDIN_T3_DSSD_X102_E_Zero_Dispersion 1.51908
+EDIN_T3_DSSD_X103_E_Zero_Dispersion 1.53918
+EDIN_T3_DSSD_X104_E_Zero_Dispersion -3.48824
+EDIN_T3_DSSD_X105_E_Zero_Dispersion 0.816455
+EDIN_T3_DSSD_X106_E_Zero_Dispersion -1.65375
+EDIN_T3_DSSD_X107_E_Zero_Dispersion 2.15443
+EDIN_T3_DSSD_X108_E_Zero_Dispersion -0.56696
+EDIN_T3_DSSD_X109_E_Zero_Dispersion -0.26407
+EDIN_T3_DSSD_X110_E_Zero_Dispersion -2.68868
+EDIN_T3_DSSD_X111_E_Zero_Dispersion 1.5642
+EDIN_T3_DSSD_X112_E_Zero_Dispersion 0.774111
+EDIN_T3_DSSD_X113_E_Zero_Dispersion 2.8693
+EDIN_T3_DSSD_X114_E_Zero_Dispersion 4.10331
+EDIN_T3_DSSD_X115_E_Zero_Dispersion -0.889989
+EDIN_T3_DSSD_X116_E_Zero_Dispersion -2.43413
+EDIN_T3_DSSD_X117_E_Zero_Dispersion -1.67811
+EDIN_T3_DSSD_X118_E_Zero_Dispersion -2.51115
+EDIN_T3_DSSD_X119_E_Zero_Dispersion 2.41323
+EDIN_T3_DSSD_X120_E_Zero_Dispersion 1.18431
+EDIN_T3_DSSD_X121_E_Zero_Dispersion 0.881997
+EDIN_T3_DSSD_X122_E_Zero_Dispersion 0.569719
+EDIN_T3_DSSD_X123_E_Zero_Dispersion 0.434787
+EDIN_T3_DSSD_X124_E_Zero_Dispersion 8183.92
+EDIN_T3_DSSD_X125_E_Zero_Dispersion -3.08136
+EDIN_T3_DSSD_X126_E_Zero_Dispersion 2.12758
+EDIN_T3_DSSD_X127_E_Zero_Dispersion 1.35063
+EDIN_T3_DSSD_X128_E_Zero_Dispersion -0.367075
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/latex/double_alpha_run_244_Y_MM3_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/latex/double_alpha_run_244_Y_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..69e8f2356c2d6ef50b066694f8c062999f102985
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/latex/double_alpha_run_244_Y_MM3_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+124 &  1 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.28892
+
+Sigma fit sigma: 0.565314
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.cal
new file mode 100644
index 0000000000000000000000000000000000000000..db495fb907aded1f1ed21257cba923cebec75fc0
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_Y1_E 59.5234 -0.00725765
+EDIN_T3_DSSD_Y2_E 58.5127 -0.00713688
+EDIN_T3_DSSD_Y3_E 59.574 -0.00726549
+EDIN_T3_DSSD_Y4_E 59.51 -0.00725796
+EDIN_T3_DSSD_Y5_E 59.2116 -0.00722064
+EDIN_T3_DSSD_Y6_E 59.4237 -0.00724658
+EDIN_T3_DSSD_Y7_E 59.0257 -0.00719413
+EDIN_T3_DSSD_Y8_E 59.537 -0.00725846
+EDIN_T3_DSSD_Y9_E 59.9426 -0.00730929
+EDIN_T3_DSSD_Y10_E 59.6876 -0.00727441
+EDIN_T3_DSSD_Y11_E 59.5449 -0.00725957
+EDIN_T3_DSSD_Y12_E 59.3479 -0.00723827
+EDIN_T3_DSSD_Y13_E 59.032 -0.0071972
+EDIN_T3_DSSD_Y14_E 59.265 -0.00722989
+EDIN_T3_DSSD_Y15_E 60.0166 -0.00731897
+EDIN_T3_DSSD_Y16_E 59.3186 -0.00723564
+EDIN_T3_DSSD_Y17_E 62.3545 -0.00760396
+EDIN_T3_DSSD_Y18_E 62.624 -0.00763656
+EDIN_T3_DSSD_Y19_E 61.4411 -0.00748826
+EDIN_T3_DSSD_Y20_E 62.2082 -0.00758654
+EDIN_T3_DSSD_Y21_E 62.6184 -0.00763608
+EDIN_T3_DSSD_Y22_E 62.8879 -0.00766657
+EDIN_T3_DSSD_Y23_E 62.305 -0.0075962
+EDIN_T3_DSSD_Y24_E 62.4905 -0.00762219
+EDIN_T3_DSSD_Y25_E 62.9493 -0.00767672
+EDIN_T3_DSSD_Y26_E 62.9678 -0.0076806
+EDIN_T3_DSSD_Y27_E 61.9803 -0.00755709
+EDIN_T3_DSSD_Y28_E 62.9625 -0.00767967
+EDIN_T3_DSSD_Y29_E 62.2051 -0.00758948
+EDIN_T3_DSSD_Y30_E 62.4204 -0.00761303
+EDIN_T3_DSSD_Y31_E 62.5487 -0.00762832
+EDIN_T3_DSSD_Y32_E 62.481 -0.00762089
+EDIN_T3_DSSD_Y33_E 55.6954 -0.00679321
+EDIN_T3_DSSD_Y34_E 55.862 -0.00681429
+EDIN_T3_DSSD_Y35_E 55.2595 -0.00673682
+EDIN_T3_DSSD_Y36_E 55.2613 -0.0067392
+EDIN_T3_DSSD_Y37_E 55.3232 -0.00674678
+EDIN_T3_DSSD_Y38_E 55.7697 -0.00680183
+EDIN_T3_DSSD_Y39_E 55.4597 -0.00676292
+EDIN_T3_DSSD_Y40_E 55.1054 -0.00672069
+EDIN_T3_DSSD_Y41_E 54.9776 -0.0067034
+EDIN_T3_DSSD_Y42_E 55.6329 -0.00678247
+EDIN_T3_DSSD_Y43_E 55.5045 -0.00676804
+EDIN_T3_DSSD_Y44_E 54.833 -0.00668532
+EDIN_T3_DSSD_Y45_E 55.268 -0.00673901
+EDIN_T3_DSSD_Y46_E 55.1892 -0.00673083
+EDIN_T3_DSSD_Y47_E 55.4934 -0.00676746
+EDIN_T3_DSSD_Y48_E 55.4247 -0.00675997
+EDIN_T3_DSSD_Y49_E 56.2861 -0.00686516
+EDIN_T3_DSSD_Y50_E 56.3992 -0.00687703
+EDIN_T3_DSSD_Y51_E 56.6985 -0.00691472
+EDIN_T3_DSSD_Y52_E 56.5241 -0.00689401
+EDIN_T3_DSSD_Y53_E 56.1254 -0.00684574
+EDIN_T3_DSSD_Y54_E 56.6081 -0.00690538
+EDIN_T3_DSSD_Y55_E 56.3216 -0.00687193
+EDIN_T3_DSSD_Y56_E 56.5475 -0.006896
+EDIN_T3_DSSD_Y57_E 56.7187 -0.00691876
+EDIN_T3_DSSD_Y58_E 56.1262 -0.00684421
+EDIN_T3_DSSD_Y59_E 57.0384 -0.00695577
+EDIN_T3_DSSD_Y60_E 56.6041 -0.0069031
+EDIN_T3_DSSD_Y61_E 57.1317 -0.00696705
+EDIN_T3_DSSD_Y62_E 56.6654 -0.006912
+EDIN_T3_DSSD_Y63_E 56.4458 -0.00688605
+EDIN_T3_DSSD_Y64_E 57.0189 -0.00695467
+EDIN_T3_DSSD_Y65_E 58.866 -0.00717739
+EDIN_T3_DSSD_Y66_E 59.3718 -0.00723936
+EDIN_T3_DSSD_Y67_E 58.8606 -0.00717536
+EDIN_T3_DSSD_Y68_E 59.0432 -0.00720334
+EDIN_T3_DSSD_Y69_E 58.8518 -0.00717572
+EDIN_T3_DSSD_Y70_E 58.1666 -0.00709048
+EDIN_T3_DSSD_Y71_E 58.6539 -0.00715115
+EDIN_T3_DSSD_Y72_E 59.4352 -0.00724736
+EDIN_T3_DSSD_Y73_E 59.6808 -0.00727892
+EDIN_T3_DSSD_Y74_E 58.9154 -0.0071833
+EDIN_T3_DSSD_Y75_E 58.9534 -0.00718787
+EDIN_T3_DSSD_Y76_E 59.1119 -0.00720917
+EDIN_T3_DSSD_Y77_E 59.0564 -0.00720162
+EDIN_T3_DSSD_Y78_E 58.8468 -0.00717579
+EDIN_T3_DSSD_Y79_E 58.5676 -0.00714313
+EDIN_T3_DSSD_Y80_E 59.5249 -0.00725969
+EDIN_T3_DSSD_Y81_E 62.5316 -0.00763049
+EDIN_T3_DSSD_Y82_E 62.3098 -0.00760082
+EDIN_T3_DSSD_Y83_E 62.1091 -0.00757633
+EDIN_T3_DSSD_Y84_E 61.7125 -0.00752821
+EDIN_T3_DSSD_Y85_E 61.7896 -0.00754096
+EDIN_T3_DSSD_Y86_E 62.3687 -0.0076099
+EDIN_T3_DSSD_Y87_E 62.0224 -0.00756846
+EDIN_T3_DSSD_Y88_E 62.3511 -0.00760351
+EDIN_T3_DSSD_Y89_E 62.3244 -0.00760376
+EDIN_T3_DSSD_Y90_E 62.1206 -0.00757798
+EDIN_T3_DSSD_Y91_E 61.3832 -0.0074877
+EDIN_T3_DSSD_Y92_E 61.5775 -0.00751155
+EDIN_T3_DSSD_Y93_E 61.483 -0.007499
+EDIN_T3_DSSD_Y94_E 61.7077 -0.00752956
+EDIN_T3_DSSD_Y95_E 61.4383 -0.00749316
+EDIN_T3_DSSD_Y96_E 61.4678 -0.00749923
+EDIN_T3_DSSD_Y97_E 55.9891 -0.0068234
+EDIN_T3_DSSD_Y98_E 56.238 -0.00685463
+EDIN_T3_DSSD_Y99_E 55.7145 -0.00679225
+EDIN_T3_DSSD_Y100_E 55.3441 -0.00674679
+EDIN_T3_DSSD_Y101_E 55.7335 -0.00679658
+EDIN_T3_DSSD_Y102_E 55.7497 -0.00679727
+EDIN_T3_DSSD_Y103_E 55.3707 -0.0067502
+EDIN_T3_DSSD_Y104_E 55.4781 -0.00676373
+EDIN_T3_DSSD_Y105_E 55.2205 -0.00673093
+EDIN_T3_DSSD_Y106_E 55.7488 -0.00679679
+EDIN_T3_DSSD_Y107_E 55.9598 -0.00682393
+EDIN_T3_DSSD_Y108_E 55.7521 -0.00679752
+EDIN_T3_DSSD_Y109_E 55.2111 -0.00673195
+EDIN_T3_DSSD_Y110_E 55.3052 -0.00674172
+EDIN_T3_DSSD_Y111_E 56.0662 -0.00683506
+EDIN_T3_DSSD_Y112_E 56.0236 -0.00682937
+EDIN_T3_DSSD_Y113_E 56.7839 -0.00692618
+EDIN_T3_DSSD_Y114_E 56.5644 -0.00689877
+EDIN_T3_DSSD_Y115_E 56.3829 -0.00687154
+EDIN_T3_DSSD_Y116_E 56.4761 -0.00688733
+EDIN_T3_DSSD_Y117_E 57.0804 -0.00695954
+EDIN_T3_DSSD_Y118_E 56.6645 -0.00690751
+EDIN_T3_DSSD_Y119_E 56.1478 -0.0068441
+EDIN_T3_DSSD_Y120_E 57.1191 -0.00696464
+EDIN_T3_DSSD_Y121_E 57.1449 -0.00697197
+EDIN_T3_DSSD_Y122_E 56.1944 -0.00684715
+EDIN_T3_DSSD_Y123_E 56.9821 -0.00694955
+EDIN_T3_DSSD_Y124_E 56.3139 -0.00686238
+EDIN_T3_DSSD_Y125_E 57.1661 -0.00697354
+EDIN_T3_DSSD_Y126_E 56.4641 -0.00688782
+EDIN_T3_DSSD_Y127_E 57.0575 -0.00696247
+EDIN_T3_DSSD_Y128_E 56.782 -0.006919733
\ No newline at end of file
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.dispersion b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..8c779e9fe307abed19b21f266cbdf47868ceb588
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.dispersion
@@ -0,0 +1,128 @@
+EDIN_T4_DSSD_X1_E_Zero_Dispersion -9.46769
+EDIN_T4_DSSD_X2_E_Zero_Dispersion -6.63941
+EDIN_T4_DSSD_X3_E_Zero_Dispersion -7.59066
+EDIN_T4_DSSD_X4_E_Zero_Dispersion -7.27873
+EDIN_T4_DSSD_X5_E_Zero_Dispersion -8.33041
+EDIN_T4_DSSD_X6_E_Zero_Dispersion -8.25031
+EDIN_T4_DSSD_X7_E_Zero_Dispersion -12.7051
+EDIN_T4_DSSD_X8_E_Zero_Dispersion -10.4257
+EDIN_T4_DSSD_X9_E_Zero_Dispersion -8.87304
+EDIN_T4_DSSD_X10_E_Zero_Dispersion -13.1471
+EDIN_T4_DSSD_X11_E_Zero_Dispersion -10.2696
+EDIN_T4_DSSD_X12_E_Zero_Dispersion -7.18175
+EDIN_T4_DSSD_X13_E_Zero_Dispersion -10.08
+EDIN_T4_DSSD_X14_E_Zero_Dispersion -5.22013
+EDIN_T4_DSSD_X15_E_Zero_Dispersion -8.14216
+EDIN_T4_DSSD_X16_E_Zero_Dispersion -6.10666
+EDIN_T4_DSSD_X17_E_Zero_Dispersion -8.26993
+EDIN_T4_DSSD_X18_E_Zero_Dispersion -8.55315
+EDIN_T4_DSSD_X19_E_Zero_Dispersion -12.9968
+EDIN_T4_DSSD_X20_E_Zero_Dispersion -7.81329
+EDIN_T4_DSSD_X21_E_Zero_Dispersion -8.33246
+EDIN_T4_DSSD_X22_E_Zero_Dispersion -10.8731
+EDIN_T4_DSSD_X23_E_Zero_Dispersion -10.1298
+EDIN_T4_DSSD_X24_E_Zero_Dispersion -6.49554
+EDIN_T4_DSSD_X25_E_Zero_Dispersion -8.03084
+EDIN_T4_DSSD_X26_E_Zero_Dispersion -6.28445
+EDIN_T4_DSSD_X27_E_Zero_Dispersion -9.61192
+EDIN_T4_DSSD_X28_E_Zero_Dispersion -6.60574
+EDIN_T4_DSSD_X29_E_Zero_Dispersion -4.2257
+EDIN_T4_DSSD_X30_E_Zero_Dispersion -7.14973
+EDIN_T4_DSSD_X31_E_Zero_Dispersion -7.53233
+EDIN_T4_DSSD_X32_E_Zero_Dispersion -6.64291
+EDIN_T4_DSSD_X33_E_Zero_Dispersion -6.68809
+EDIN_T4_DSSD_X34_E_Zero_Dispersion -5.77713
+EDIN_T4_DSSD_X35_E_Zero_Dispersion -10.6039
+EDIN_T4_DSSD_X36_E_Zero_Dispersion -7.96819
+EDIN_T4_DSSD_X37_E_Zero_Dispersion -7.94165
+EDIN_T4_DSSD_X38_E_Zero_Dispersion -7.21244
+EDIN_T4_DSSD_X39_E_Zero_Dispersion -8.55547
+EDIN_T4_DSSD_X40_E_Zero_Dispersion -7.36818
+EDIN_T4_DSSD_X41_E_Zero_Dispersion -9.44709
+EDIN_T4_DSSD_X42_E_Zero_Dispersion -10.4522
+EDIN_T4_DSSD_X43_E_Zero_Dispersion -8.97489
+EDIN_T4_DSSD_X44_E_Zero_Dispersion -10
+EDIN_T4_DSSD_X45_E_Zero_Dispersion -9.2142
+EDIN_T4_DSSD_X46_E_Zero_Dispersion -7.46812
+EDIN_T4_DSSD_X47_E_Zero_Dispersion -8.04091
+EDIN_T4_DSSD_X48_E_Zero_Dispersion -6.95261
+EDIN_T4_DSSD_X49_E_Zero_Dispersion -6.80019
+EDIN_T4_DSSD_X50_E_Zero_Dispersion -9.09434
+EDIN_T4_DSSD_X51_E_Zero_Dispersion -7.67807
+EDIN_T4_DSSD_X52_E_Zero_Dispersion -7.01785
+EDIN_T4_DSSD_X53_E_Zero_Dispersion -6.58275
+EDIN_T4_DSSD_X54_E_Zero_Dispersion -5.67122
+EDIN_T4_DSSD_X55_E_Zero_Dispersion -3.88878
+EDIN_T4_DSSD_X56_E_Zero_Dispersion -8.03944
+EDIN_T4_DSSD_X57_E_Zero_Dispersion -5.81276
+EDIN_T4_DSSD_X58_E_Zero_Dispersion -8.54494
+EDIN_T4_DSSD_X59_E_Zero_Dispersion -8.16751
+EDIN_T4_DSSD_X60_E_Zero_Dispersion -7.80874
+EDIN_T4_DSSD_X61_E_Zero_Dispersion -8.26822
+EDIN_T4_DSSD_X62_E_Zero_Dispersion -6.11378
+EDIN_T4_DSSD_X63_E_Zero_Dispersion -5.12248
+EDIN_T4_DSSD_X64_E_Zero_Dispersion -6.64078
+EDIN_T4_DSSD_X65_E_Zero_Dispersion -9.58986
+EDIN_T4_DSSD_X66_E_Zero_Dispersion -9.24837
+EDIN_T4_DSSD_X67_E_Zero_Dispersion -11.1603
+EDIN_T4_DSSD_X68_E_Zero_Dispersion -4.63863
+EDIN_T4_DSSD_X69_E_Zero_Dispersion -9.52264
+EDIN_T4_DSSD_X70_E_Zero_Dispersion -11.479
+EDIN_T4_DSSD_X71_E_Zero_Dispersion -10.0137
+EDIN_T4_DSSD_X72_E_Zero_Dispersion -8.94496
+EDIN_T4_DSSD_X73_E_Zero_Dispersion -7.12698
+EDIN_T4_DSSD_X74_E_Zero_Dispersion -9.7154
+EDIN_T4_DSSD_X75_E_Zero_Dispersion -9.78426
+EDIN_T4_DSSD_X76_E_Zero_Dispersion -7.53312
+EDIN_T4_DSSD_X77_E_Zero_Dispersion -8.43401
+EDIN_T4_DSSD_X78_E_Zero_Dispersion -8.73408
+EDIN_T4_DSSD_X79_E_Zero_Dispersion -7.14449
+EDIN_T4_DSSD_X80_E_Zero_Dispersion -7.37592
+EDIN_T4_DSSD_X81_E_Zero_Dispersion -2.96715
+EDIN_T4_DSSD_X82_E_Zero_Dispersion -5.76667
+EDIN_T4_DSSD_X83_E_Zero_Dispersion -5.78229
+EDIN_T4_DSSD_X84_E_Zero_Dispersion -5.50772
+EDIN_T4_DSSD_X85_E_Zero_Dispersion -1.86551
+EDIN_T4_DSSD_X86_E_Zero_Dispersion -3.73733
+EDIN_T4_DSSD_X87_E_Zero_Dispersion -2.84542
+EDIN_T4_DSSD_X88_E_Zero_Dispersion -8.3055
+EDIN_T4_DSSD_X89_E_Zero_Dispersion -4.52337
+EDIN_T4_DSSD_X90_E_Zero_Dispersion -5.51395
+EDIN_T4_DSSD_X91_E_Zero_Dispersion -5.87937
+EDIN_T4_DSSD_X92_E_Zero_Dispersion -5.71029
+EDIN_T4_DSSD_X93_E_Zero_Dispersion -6.8214
+EDIN_T4_DSSD_X94_E_Zero_Dispersion -3.3959
+EDIN_T4_DSSD_X95_E_Zero_Dispersion -7.24608
+EDIN_T4_DSSD_X96_E_Zero_Dispersion -4.55237
+EDIN_T4_DSSD_X97_E_Zero_Dispersion -13.4435
+EDIN_T4_DSSD_X98_E_Zero_Dispersion -12.3841
+EDIN_T4_DSSD_X99_E_Zero_Dispersion -10.6606
+EDIN_T4_DSSD_X100_E_Zero_Dispersion -11.0243
+EDIN_T4_DSSD_X101_E_Zero_Dispersion -8.23096
+EDIN_T4_DSSD_X102_E_Zero_Dispersion -9.78454
+EDIN_T4_DSSD_X103_E_Zero_Dispersion -10.8303
+EDIN_T4_DSSD_X104_E_Zero_Dispersion -10.3008
+EDIN_T4_DSSD_X105_E_Zero_Dispersion -11.9899
+EDIN_T4_DSSD_X106_E_Zero_Dispersion -10.234
+EDIN_T4_DSSD_X107_E_Zero_Dispersion -8.52824
+EDIN_T4_DSSD_X108_E_Zero_Dispersion -9.83499
+EDIN_T4_DSSD_X109_E_Zero_Dispersion -9.35842
+EDIN_T4_DSSD_X110_E_Zero_Dispersion -11.4331
+EDIN_T4_DSSD_X111_E_Zero_Dispersion -10.7369
+EDIN_T4_DSSD_X112_E_Zero_Dispersion -11.3431
+EDIN_T4_DSSD_X113_E_Zero_Dispersion -6.44424
+EDIN_T4_DSSD_X114_E_Zero_Dispersion -7.19987
+EDIN_T4_DSSD_X115_E_Zero_Dispersion -13.2774
+EDIN_T4_DSSD_X116_E_Zero_Dispersion -8.00115
+EDIN_T4_DSSD_X117_E_Zero_Dispersion -9.74113
+EDIN_T4_DSSD_X118_E_Zero_Dispersion -11.3227
+EDIN_T4_DSSD_X119_E_Zero_Dispersion -11.8247
+EDIN_T4_DSSD_X120_E_Zero_Dispersion -9.29674
+EDIN_T4_DSSD_X121_E_Zero_Dispersion -4.37841
+EDIN_T4_DSSD_X122_E_Zero_Dispersion -14.9703
+EDIN_T4_DSSD_X123_E_Zero_Dispersion -7.38905
+EDIN_T4_DSSD_X124_E_Zero_Dispersion -14.1675
+EDIN_T4_DSSD_X125_E_Zero_Dispersion -5.57399
+EDIN_T4_DSSD_X126_E_Zero_Dispersion -5.67467
+EDIN_T4_DSSD_X127_E_Zero_Dispersion -3.0189
+EDIN_T4_DSSD_X128_E_Zero_Dispersion -13.8068
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/latex/double_alpha_run_244_Y_MM4_E.tex b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/latex/double_alpha_run_244_Y_MM4_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..036a6b3939f023edafc3264e22492dd41c875b4c
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/latex/double_alpha_run_244_Y_MM4_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{EDIN DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] EDIN
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  4
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 4 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM4_E/latex/pictures/Telescope4Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.05778
+
+Sigma fit sigma: 0.173405
+
+\end{document}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/peaks/Cal_Str_Y_E_MM4.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/peaks/Cal_Str_Y_E_MM4.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyCalibrator.C b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyCalibrator.C
new file mode 100644
index 0000000000000000000000000000000000000000..17b28a0e7c97b089fecbd6bec36d632dd6269ac0
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyCalibrator.C
@@ -0,0 +1,928 @@
+// Contain global variable declaration, comment and option
+#include "EnergyCalibrator.h"
+
+void AutoCalibration(int Telescope_Start, int Telescope_End)
+{
+  for(int i = Telescope_Start ; i<=Telescope_End ;i++)
+  {
+    AlThickness = 0.3*micrometer ;
+    SiThickness = 0.0*micrometer ;
+    CThickness = 127*nanometer ;
+    double Al_step = 0.01*micrometer;
+    int step_limit = 100;
+    int k = 0 ;
+
+    TString inFileName = frun;
+
+    Telescope_Number = i ;
+    // Create a folder to Hold all the file from calibration
+    ostringstream FolderName;
+
+    FolderName << Experiment << "_" << inFileName << "_" << xy << "_MM" << Telescope_Number << "_E";
+    
+    main_name = FolderName.str() ;
+    TString make_folder = "mkdir ./Calibration/" + main_name ;   
+    folder = "./Calibration/" + FolderName.str() ;
+    system(make_folder);
+    system(make_folder+"/peaks");
+    system(make_folder+"/dispersion");
+    system(make_folder+"/latex");
+    system(make_folder+"/latex/pictures");
+
+    // open the ROOT file to process
+    TString path  = "./Histograms/";
+    inFile = new TFile(path + inFileName +"_RawEDINHistos.root");
+    // inFile = new TFile(path + inFileName +"_RawMust2Histos.root");
+    //inFile = new TFile(path + inFileName +"_RawMust2Histos_Threshold.root");
+    //  cout<<path + inFileName +"_RawMust2Histos.root"<<endl;
+    //cout<<inFile<<endl;
+
+    EnergyCalibrator();
+/*
+    bool check1=false,check2=false;
+    while( !(mean_extrapolation <0.1 && mean_extrapolation >-0.1 ) && k < step_limit )
+    {
+      if(mean_extrapolation < 0)
+      {
+        if(xy=="X")
+          AlThickness -= Al_step;
+        else if(xy=="Y")
+          AlThickness += Al_step;
+
+        check1=true;
+      }
+
+      else if (mean_extrapolation > 0)
+      {
+        if(xy=="X")
+          AlThickness += Al_step;
+        else if(xy=="Y")
+          AlThickness -= Al_step;
+
+        check2=true;
+      }
+
+      if(check1&&check2)
+      {
+        Al_step=Al_step/10.;
+        check1=false;check2=false;
+      }
+      latex_file.close();
+      EnergyCalibrator(fDet);
+
+      cout << " Iteration Results: Al Thickness: " << AlThickness/micrometer << "um | Mean Extrapolation  "  << mean_extrapolation << "Chan. "<< endl ;
+
+      k++;
+    }
+*/
+    LatexSummaryEnder();
+
+    delete Buffer;
+    delete Source_branching_ratio;
+    delete Source_E;
+    delete Source_Sig;
+    delete energyX;
+    delete errorsX;
+    delete energyY;
+    delete errorsY;
+
+  }
+
+  return;
+}
+
+
+/////////////////////////////
+void DefineSource(TString sourceName)
+{
+  if(sourceName=="3 alphas")
+  {
+    NumberOfIsotope = 3 ;
+    energyX = new Double_t[NumberOfIsotope]; errorsX = new Double_t[NumberOfIsotope];
+    energyY = new Double_t[NumberOfIsotope]; errorsY = new Double_t[NumberOfIsotope];
+
+    /// Information used in the summary
+    Source_Number_Peak = 8;
+    Source_isotope = new TString[Source_Number_Peak] ;Source_E = new Double_t[Source_Number_Peak] ; Source_Sig = new Double_t[Source_Number_Peak] ; Source_branching_ratio = new Double_t[Source_Number_Peak] ;
+
+    // 244Pu
+    Source_isotope[0]="$^{239}$Pu"; Source_E[0]   = 5.15659 ; Source_Sig[0] = 0.00014 ; Source_branching_ratio[0] = 70.77 ;
+    Source_isotope[1]="$^{239}$Pu"; Source_E[1]   = 5.14438 ; Source_Sig[1] = 0.00014 ; Source_branching_ratio[1] = 17.11 ;
+    Source_isotope[2]="$^{239}$Pu"; Source_E[2]   = 5.1055  ; Source_Sig[2] = 0.00014 ; Source_branching_ratio[2] = 11.94 ;
+
+    // 241Am
+    Source_isotope[3]="$^{241}$Am"; Source_E[3]   = 5.48556 ; Source_Sig[3] = 0.00012 ; Source_branching_ratio[3] = 84.8 ;
+    Source_isotope[4]="$^{241}$Am"; Source_E[4]   = 5.44280 ; Source_Sig[4] = 0.00012 ; Source_branching_ratio[4] = 13.1 ;
+    Source_isotope[5]="$^{241}$Am"; Source_E[5]   = 5.388   ; Source_Sig[5] = 0.00012 ; Source_branching_ratio[5] = 1.66 ;
+
+    // 244Cm
+    Source_isotope[6]="$^{244}$Cm"; Source_E[6]   = 5.80477 ; Source_Sig[6] = 0.00005 ; Source_branching_ratio[6] = 76.40 ;
+    Source_isotope[7]="$^{244}$Cm"; Source_E[7]   = 5.76264 ; Source_Sig[7] = 0.00005 ; Source_branching_ratio[7] = 23.60 ;
+
+    // Corrected value of main peak used in the fit
+    Double_t sig_value = 0.1;
+    Double_t alpha1_Sig = sig_value ; Double_t alpha2_Sig = sig_value ; Double_t alpha3_Sig = sig_value ; 
+
+    Double_t alpha1_E , alpha2_E , alpha3_E;
+
+    alpha1_E = EL_Al.Slow(	Source_E[0]*MeV , // Energy of the detected particle
+        AlThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha1_E = EL_Si.Slow(	alpha1_E*MeV    , // Energy of the detected particle
+        SiThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha2_E = EL_Al.Slow(	Source_E[3]*MeV , // Energy of the detected particle
+        AlThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha2_E = EL_Si.Slow(	alpha2_E*MeV    , // Energy of the detected particle
+        SiThickness	    , // Target Thickness at 0 degree
+        0     		      ) ;		
+
+    alpha3_E = EL_Al.Slow(	Source_E[6]*MeV , // Energy of the detected particle
+        AlThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha3_E = EL_Si.Slow(	alpha3_E*MeV    , // Energy of the detected particle
+        SiThickness   	, // Target Thickness at 0 degree
+        0     		      ) ;		                          
+
+    // X and Y are in a reversed order        
+    energyX[0] = alpha1_E   ; energyX[1] = alpha2_E   ; energyX[2] = alpha3_E   ;
+    errorsX[0] = alpha1_Sig ; errorsX[1] = alpha2_Sig ; errorsX[2] = alpha3_Sig ;
+
+    energyY[0] = alpha3_E   ; energyY[1] = alpha2_E   ; energyY[2] = alpha1_E   ;
+    errorsY[0] = alpha3_Sig ; errorsY[1] = alpha2_Sig ; errorsY[2] = alpha1_Sig ;
+  }
+  if(sourceName=="222Ra 218Rn 214Po"){
+    std::cout << "///////////////////////////////////////////////// TEST /////////////////////" <<std::endl;
+    NumberOfIsotope = 3 ;
+    energyX = new Double_t[NumberOfIsotope]; errorsX = new Double_t[NumberOfIsotope];
+    energyY = new Double_t[NumberOfIsotope]; errorsY = new Double_t[NumberOfIsotope];
+
+    /// Information used in the summary
+    Source_Number_Peak = 4;
+    Source_isotope = new TString[Source_Number_Peak] ;Source_E = new Double_t[Source_Number_Peak] ; Source_Sig = new Double_t[Source_Number_Peak] ; Source_branching_ratio = new Double_t[Source_Number_Peak] ;
+
+    // 222Ra
+    Source_isotope[0]="$^{222}$Ra"; Source_E[0]   = 6.558 ; Source_Sig[0] = 0.00014 ; Source_branching_ratio[0] = 96.95 ;
+    Source_isotope[1]="$^{222}$Ra"; Source_E[1]   = 6.239 ; Source_Sig[1] = 0.00014 ; Source_branching_ratio[1] = 3.05 ;
+
+    // 218Rn
+    Source_isotope[2]="$^{218}$Rn"; Source_E[2]   = 7.1291 ; Source_Sig[2] = 0.00005 ; Source_branching_ratio[2] = 100 ;
+
+    // 214Po
+    Source_isotope[3]="$^{214}$Po"; Source_E[3]   = 7.68682 ; Source_Sig[3] = 0.00005 ; Source_branching_ratio[3] = 100 ;
+
+    // Corrected value of main peak used in the fit
+    Double_t sig_value = 0.1;
+    Double_t alpha1_Sig = sig_value ; Double_t alpha2_Sig = sig_value ; Double_t alpha3_Sig = sig_value ; 
+
+    Double_t alpha1_E , alpha2_E , alpha3_E;
+
+
+    alpha1_E = EL_C.Slow(	Source_E[0]*MeV    , // Energy of the detected particle
+        CThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha2_E = EL_C.Slow(	Source_E[2]*MeV    , // Energy of the detected particle
+        CThickness	    , // Target Thickness at 0 degree
+        0     		      ) ;		
+
+    alpha3_E = EL_C.Slow(	Source_E[3]*MeV    , // Energy of the detected particle
+        CThickness   	, // Target Thickness at 0 degree
+        0     		      ) ;		                          
+
+    // X and Y are in a reversed order        
+    energyX[0] = alpha1_E   ; energyX[1] = alpha2_E   ; energyX[2] = alpha3_E   ;
+    errorsX[0] = alpha1_Sig ; errorsX[1] = alpha2_Sig ; errorsX[2] = alpha3_Sig ;
+
+    energyY[0] = alpha3_E   ; energyY[1] = alpha2_E   ; energyY[2] = alpha1_E   ;
+    errorsY[0] = alpha3_Sig ; errorsY[1] = alpha2_Sig ; errorsY[2] = alpha1_Sig ;
+
+  }
+
+  return;  
+}
+
+
+/////////////////////////////
+void EnergyCalibrator()
+{
+  std::cout << "test 1" << std::endl;
+  // Set-up the root Style
+  gStyle->SetOptTitle();
+  gStyle->SetOptTitle();
+  gStyle->SetOptStat(111111111);
+  //gPad->SetSetShowStyle(true);
+
+  DefineSource("222Ra 218Rn 214Po");
+
+  TString str;
+  TString str1;
+  TString str2;
+  TString strbuff;
+  TString strbuff2;
+  TString fname;
+  TString fname2;
+  TString fname3;
+  TString hname;
+  LatexSummaryHeader(xy);
+
+  // Clear everything
+  BadStrip.clear() ;
+  sigma_fit = new TH1F("Sigma", "Sigma from fit (channel)", 80, 0,10);
+  Dispersion= new TH1F("Dispersion", "Dispersion from Zero Extrapolation (channel)", 40, -20,20);
+  ZeroDispersion = new TGraph(128);
+  coeff_a = new TGraph(128);
+  coeff_b = new TGraph(128);
+
+  ostringstream number ;
+  number << Telescope_Number  ;
+  CurrentTelescope = Telescope_Number ;
+  if (xy == "X"){ 
+    //////// Input Files ///////////
+    str = "hMM"+number.str()+"_STRX_E";
+    str1 = "Cal_Str_X_E_MM"+number.str();
+  }	 
+  else if (xy == "Y"){ 	
+    //////// Input Files ///////////
+    str = "hMM"+number.str()+"_STRY_E";
+    str1 = "Cal_Str_Y_E_MM"+number.str();
+  }	 
+  else {cout<< "ERROR FOR X or Y PARAMETER"<< endl;}
+
+  fname =  folder + "/peaks/" + str1 + ".peak";
+  peaks_file.open( ( (string)fname ).c_str() );
+
+  fname2 = folder + "/" + str1 + ".cal";
+  calib_file.open( ( (string)fname2 ).c_str() );
+
+  fname3 = folder + "/" + str1 + ".dispersion";
+  dispersion_file.open( ( (string)fname3 ).c_str() );
+
+  Tsummary = new TCanvas((TString)("Telescope"+number.str()+"Summary"), (TString)("Telescope "+number.str()+" Summary"), 700, 700);
+  Tsummary->Divide(2,3);
+  Buffer  = new TCanvas((TString)("Buffer"), (TString)("Buffer"), 10, 10);
+  Buffer->cd(1);
+  std::cout << "test 2" << std::endl;
+
+  TH1F *histAlphaToPrint;
+  Int_t StripToPrint=127;
+
+  for (Int_t j = Strip_Start; j <= Strip_End; j++)
+  {
+  std::cout << "test 3 " << j << std::endl;
+    ///// Get the histogram of det i and strip j /////
+    CurrentStrip=j;
+    number.seekp(0);
+    number << j;
+    hname = str+(number.str().c_str());
+    TH1F *hist = (TH1F*) inFile->Get(((string)hname).c_str());
+
+    // Prevent rebinning in Pedestal
+    TH1F *histAlpha = (TH1F*)hist->Clone();
+    histAlpha->Rebin(2);
+
+    Alpha(histAlpha,
+        xy,
+        Pedestals(hist));
+
+    //Tsummary->WaitPrimitive();
+    /*if(xy == "X") 	   histAlpha->GetXaxis()->SetRangeUser(8500,9200);
+    else if(xy == "Y") histAlpha->GetXaxis()->SetRangeUser(7000,8000);*/
+    if(xy == "X") 	   histAlpha->GetXaxis()->SetRangeUser(Xmin,Xmax);
+    else if(xy == "Y") histAlpha->GetXaxis()->SetRangeUser(Ymin,Ymax);
+
+
+    if(j == StripToPrint-1) 
+    { //TH1F histAlpha67 = TH1F(*histAlpha);
+      histAlphaToPrint = (TH1F*)histAlpha->Clone();
+    }
+
+    //Buffer->WaitPrimitive();
+  }
+
+  Tsummary->cd(1); 
+  mean_extrapolation = ZeroDispersion->GetMean(2);
+  ZeroDispersion->SetMaximum(mean_extrapolation+30);ZeroDispersion->SetMinimum(mean_extrapolation-30);
+  ZeroDispersion->SetTitle("Scattered plot of zero extrapolation dispersion : Ped.+b/a");
+  ZeroDispersion->SetMarkerStyle(2);
+  ZeroDispersion->Draw("ap");
+  //Draw the mean line
+  TLine mean_line = TLine(0, ZeroDispersion->GetMean(2), 140, ZeroDispersion->GetMean(2) );
+  mean_line.Draw("");
+
+
+  std::cout << "test 4" << std::endl;
+  Tsummary->cd(2);
+  histAlphaToPrint->SetStats(true);
+  histAlphaToPrint->SetTitle("Raw Spectrum of a strip with gaussian fit");
+  histAlphaToPrint->Draw();
+
+  Tsummary->cd(3); 
+  Dispersion->Draw();
+
+  Tsummary->cd(4); 
+  sigma_fit->Draw();
+  TF1 *sigma_fit_fit = new TF1("sigma_fit_fit", "gaus", 0, 5);
+  sigma_fit->Fit("sigma_fit_fit", "Q");
+  sigma_fit_centroid = sigma_fit_fit->GetParameter(1);
+  sigma_fit_sigma = sigma_fit_fit->GetParameter(2);
+
+  Tsummary->cd(5) ;
+  coeff_a->SetMarkerStyle(2);
+  coeff_a->SetMaximum(coeff_a->GetMean(2)+0.002);coeff_a->SetMinimum(coeff_a->GetMean(2)-0.002);
+  coeff_a->SetTitle("Gain a (MeV/channel)");
+  coeff_a->Draw("ap");
+
+  Tsummary->cd(6);
+  coeff_b->SetMaximum(coeff_b->GetMean(2)+10);coeff_b->SetMinimum(coeff_b->GetMean(2)-10);
+  coeff_b->SetMarkerStyle(2);
+  coeff_b->SetTitle("Offset b (MeV)");
+  coeff_b->Draw("ap");
+
+  TString filename = Tsummary->GetName();
+  Tsummary->SaveAs(filename+".pdf");
+  Tsummary->Close();
+  system("mv "+filename+".pdf ./" + folder + "/latex/pictures");
+
+  peaks_file.close();
+  calib_file.close();
+  dispersion_file.close();
+
+  LatexSummaryTelescope();
+  delete Tsummary   ;
+  delete sigma_fit  ;
+  delete Dispersion ;
+
+  Buffer->Close();   
+}
+
+/////////////////////////////////
+Double_t Pedestals(TH1F *hist)
+{
+
+  if(Pedestals_Aligned)
+    return 8192 ;
+
+  else
+  {
+    TF1 *gauss=new TF1("gauss","gaus",0,1024);
+
+    hist->SetAxisRange(7800,8500);
+
+    ///// Peak search /////
+    TSpectrum *s = new TSpectrum(2,1);
+    Int_t nfound =0;
+    nfound = s->Search(hist,2," ");
+
+    /* Float_t *xpeaks = s->GetPositionX(); */
+    Double_t *xpeaks = s->GetPositionX();
+
+    Float_t linf =0, lsup =0; 
+    Double_t sum=0, mean=0, sigma=0;
+
+    if(nfound != 1 ) 
+      cout << "########   PROBLEM Nfound != NAsked !  ########   " << hist->GetName() <<"  Nfound:"<<nfound<<endl;
+
+    else {
+      linf = xpeaks[0]-10;
+      lsup = xpeaks[0]+10; 
+      gauss=new TF1("gauss","gaus",linf,lsup); 
+      gauss->SetRange(linf,lsup);
+      hist->Fit(gauss,"RQ");
+
+      sum = gauss->GetParameter(0);
+      mean = gauss->GetParameter(1);
+      sigma = gauss->GetParameter(2);
+
+      if(sigma > 3)
+        BadStrip[CurrentStrip] += " Alpha peak too large;" ;
+
+    }
+
+    delete s; delete gauss;
+    return (mean) ;
+  }
+
+
+}
+
+/////////////////////////////////
+void Alpha(TH1F *hist, TString xy, Double_t Pedestal)
+{
+
+  if(xy == "X") 		hist->GetXaxis()->SetRangeUser(Xmin,Xmax);
+//  if(xy == "X") 		hist->GetXaxis()->SetRangeUser(8300,10000);
+  else if(xy == "Y") 	hist->GetXaxis()->SetRangeUser(Ymin,Ymax);
+
+  if(!Finder(hist, xy, mean, sigma )) cout << "On "<< hist->GetName() << endl ;
+
+  // Fit 
+  TGraphErrors* gr_MM= new TGraphErrors(4);
+
+  if(method == "ZeroForce")
+  {
+    a = Calib_ZeroForceMethod((string)xy,gr_MM,Pedestal, mean,sigma);
+    b = -Pedestal*a ;
+  }
+
+  else if(method == "ZeroExtrapolation")
+  {
+    Calib_ZeroExtrapolationMethod(hist,(string)xy,gr_MM,Pedestal, mean, sigma,a,b);
+  }
+
+}
+
+/////////////////////////////////
+bool Finder(TH1F *h, TString xy, Double_t *mean, Double_t *sigma)
+{
+
+  /////////////////////////////////////////////////
+  //						                                 //
+  //	           ALPHA  FINDER		               //
+  //						                                 //
+  /////////////////////////////////////////////////
+
+  for(int k=0; k<3; k++)
+  {
+    mean[k]=0;
+    sigma[k]=0;
+  }
+
+  Double_t resolsig = 5;
+  Float_t resolsigTSpec = 1;
+  Double_t seuil = 0.05;
+  Int_t npeaks = 3;   // maximum number of peaks that can be found
+
+  //////// Peak finder
+
+  TSpectrum *s = new TSpectrum(npeaks,resolsigTSpec);
+
+  Int_t nfound = s->Search(h, resolsig, "new", seuil);
+  Double_t *xpeaks = s->GetPositionX();
+ 
+  //for(int i=0; i< nfound; i++)
+    //cout << xpeaks[i] << endl;
+
+  //Sort in growing order the array
+  if(nfound>1)
+  {
+    for(Int_t p=0;p<nfound;p++)
+    {
+      for(Int_t i=0;i<nfound-1;i++)
+      {
+        if(xpeaks[i]>xpeaks[i+1])
+        {
+          Float_t varia=xpeaks[i];
+          xpeaks[i]=xpeaks[i+1];
+          xpeaks[i+1]=varia;
+        }	  
+      }
+    }
+  }
+
+  Float_t linf=0, lsup=0; 
+
+  // If 3 peaks found
+  if(nfound == 3)
+  {
+    for (Int_t p=0;p<nfound;p++)
+    {   
+      if(xy == "X")
+      {			
+        linf = xpeaks[p]-2;
+        lsup = xpeaks[p]+8;
+      }
+
+      else if (xy == "Y")
+      {			
+        linf = xpeaks[p]-8;
+        lsup = xpeaks[p]+2;
+      }
+
+      TF1 *gauss = new TF1("gauss","gaus",linf,lsup);
+      h->Fit(gauss,"RQ");
+      mean[p] = gauss->GetParameter(1);
+      sigma[p]= gauss->GetParameter(2);
+      //cout << mean[p] << endl;
+
+      sigma_fit->Fill(gauss->GetParameter(2));
+    }
+  }
+
+  if(nfound!=3)
+  {
+    ostringstream numP;
+    numP << nfound ;
+    cout << nfound << "peaks found!" << endl;
+    BadStrip[CurrentStrip] += " " + numP.str() + " peak(s) found;" ;
+
+    for (Int_t p=0;p<3;p++)
+    {
+      cout << "attention, nombre de pics different de 3!!!" ;
+      mean[p]=-1;
+      sigma[p]=-1;
+      return false ;
+    }
+  }
+
+  return true ;
+}
+
+
+/////////////////////////////////
+Double_t Calib_ZeroForceMethod(string xy,TGraphErrors *gr,float Pedestal, Double_t *mean, Double_t *sigma)
+{  
+  Double_t energy[3];
+  Double_t errors[3];
+
+  if(xy=="X")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyX[i];
+      errors[i] = errorsX[i];
+    }
+
+  if(xy=="Y")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyY[i];
+      errors[i] = errorsY[i];
+    }
+
+  gr->SetPoint(0,Pedestal,energy[0]);
+
+  for (Int_t p = 0; p < 3; p++) {
+    gr->SetPoint(p, mean[p], energy[p]);
+    gr->SetPointError(p, sigma[p], errors[p]);    
+  }
+
+  TF1 *f1 = new TF1("f1",Form("[0]*(x-%f)",Pedestal));
+  gr->Fit("f1", "Q" );
+
+  a = f1 -> GetParameter(0);
+
+  if (xy == "X"){
+    calib_file << "EDIN_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+
+  else if (xy == "Y"){
+    calib_file << "EDIN_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+  delete f1;
+  return a ;
+}
+
+/////////////////////////////////
+Double_t Calib_ZeroExtrapolationMethod(TH1F* hist , string xy,TGraphErrors *gr, float Pedestal, Double_t* mean, Double_t* sigma, Double_t &a , Double_t &b)
+{  
+  Double_t energy[3];
+  Double_t errors[3];
+
+  if(xy=="X")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyX[i];
+      errors[i] = errorsX[i];
+    }
+
+  if(xy=="Y")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyY[i];
+      errors[i] = errorsY[i];
+    }
+
+  for (Int_t p = 0; p < 3; p++) {
+    gr->SetPoint(p, mean[p], energy[p]);
+    gr->SetPointError(p, sigma[p], errors[p]);    
+  }
+
+  TF1 *f1 = new TF1("f1","[1]+[0]*x");
+  gr->Fit("f1", "Q" );
+
+  a = f1 -> GetParameter(0);
+  b = f1 -> GetParameter(1);
+
+  if(RefitWithSatellite)
+  {
+    Find_Satellites(hist);
+
+    for (Int_t p = 0; p < 3; p++) 
+    {
+      gr->SetPoint(p, mean[p], energy[p]);
+      gr->SetPointError(p, sigma[p], a*sigma[p]);    
+    }
+
+    gr->Fit("f1", "Q" );
+
+    a = f1 -> GetParameter(0);
+    b = f1 -> GetParameter(1);
+  }
+  std::cout << "/////////////// " << energy[0] << "  " << mean[0] << std::endl;
+
+
+  if( (a < 0.009 &&  a > 0.006) || (a > -0.009 &&  a < -0.006) )  
+    coeff_a->SetPoint(CurrentStrip,CurrentStrip,a);
+
+  if( (b < -54 && b > -72) || (b > 54 && b < 72) )
+    coeff_b->SetPoint(CurrentStrip,CurrentStrip,b);
+
+  // look at the dispersion around Pedestals
+  Double_t dispersion = Pedestal + b/a ;
+  dispersion_file  << "EDIN_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_E_Zero_Dispersion " << dispersion << endl ;
+
+  // Condition avoid Mean problem due to a few large value
+  if(dispersion<40 && dispersion>-40 )
+    ZeroDispersion->SetPoint(CurrentStrip,CurrentStrip,dispersion);
+
+  Dispersion->Fill(dispersion);
+
+  if(dispersion > 30 || dispersion < -30)
+  {
+    ostringstream disp;
+    disp << dispersion ;
+    BadStrip[CurrentStrip] += " zero extrapolation too high:" + disp.str() +"channels; ";
+  }
+
+
+  if (xy == "X"){
+    calib_file << "EDIN_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+
+  else if (xy == "Y"){
+    calib_file << "EDIN_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+  delete f1;
+  return a ;
+
+}
+
+/////////////////////////////////////////
+void LatexSummaryHeader(TString xy)
+{
+
+  latex_file.open(folder+"/latex/"+main_name+".tex");
+
+  ///// Write File Header
+
+  latex_file << "\\documentclass[a4paper,6pt]{article}" << endl ;
+  latex_file << "\\usepackage[french]{babel}" << endl ;
+  latex_file << "\\usepackage[T1]{fontenc}" << endl ;
+  latex_file << "\\usepackage{graphicx}" << endl ;
+  latex_file << "\\usepackage{fullpage}" << endl ;
+  latex_file << "\\topmargin = 0pt" << endl ;
+  latex_file << "\\headsep = 0pt" << endl ;
+
+  // Start Document
+  latex_file << "\\begin{document}" << endl ;
+  latex_file << "\\title{EDIN DSSD Energy Calibration Report}" << endl ;
+
+  latex_file << "\\date{}" << endl ;
+  latex_file << "\\maketitle" << endl ;
+
+  // Write Report header
+  latex_file << "\\section{Calibration Summary}" << endl ;
+  latex_file << "\\begin{itemize}" << endl ;
+  latex_file << "\t \\item[{\\bf Experiment:}] "<< Experiment << endl ;
+  latex_file << "\t \\item[{\\bf Operator:}] "<< Operator << endl ;
+  latex_file << "\t \\item[{\\bf App. Date:}] "<< Run_Period << endl ;
+  latex_file << "\t \\item[{\\bf Source:}] "<< Source << endl ;
+  latex_file << "\t \\item[{\\bf Dead Layer:}] "<< "Al "<< AlThickness/micrometer << "$\\mu$m + Si " << SiThickness/micrometer << "$\\mu$m" << endl ;
+  latex_file << "\t \\item[{\\bf Comment:}] "<< Comment << endl ;
+  latex_file << "\t \\item[] "<< endl ;
+  latex_file << "\t \\item[{\\bf Calibration Method:}] "<< " " << method << " "<< endl ;
+  latex_file << "\t \\item[{\\bf Telescope Treated:}] "<<  " " << Telescope_Number << endl ;
+  latex_file << "\t \\item[{\\bf Strip Treated:}] "<<  " " << Strip_Start << " to "<< Strip_End << " " << endl ;
+  latex_file << "\t \\item[{\\bf DSSD Side:}] "<< " " <<  xy << endl ;
+
+  latex_file << "\\end{itemize}" << endl ;
+
+  latex_file << "\\begin{itemize}" << endl ;
+  latex_file << "\t \\item[] "<< endl ;
+  latex_file << "\t \\item[] "<< endl ;
+  latex_file << "\\end{itemize}" << endl ;
+
+  latex_file << "{\\bf Source Description:} " << endl ;
+  latex_file << "\\begin{center}"<<endl ;
+  latex_file << "\\begin{tabular}{ | c | c | c | } "<<endl ;
+  latex_file << "\\hline "<<endl ;
+  latex_file << "Isotope & Original Energy (MeV) & Branching Ratio \\\\ \\hline " << endl ;
+
+  for(int hh = 0 ; hh < Source_Number_Peak ; hh++)
+  {
+    latex_file << Source_isotope[hh] << " & " << Source_E[hh] << " & " << Source_branching_ratio[hh] << " \\\\ \\hline" << endl;
+  }
+
+  latex_file << "\\end{tabular} "<<endl ;
+  latex_file << "\\end{center}"<<endl ;
+
+  latex_file <<"\\pagebreak"<<endl ;
+}
+
+///
+void LatexSummaryEnder()
+{
+  latex_file << endl <<  "\\end{document}" << endl ;
+  latex_file.close();
+  // generate the pdf file and clean-up
+  system("pdflatex "+folder+"/latex/"+main_name+".tex");
+  system("rm -f *.log");
+  system("rm -f *.aux");
+  system("mv " + main_name+".pdf "+folder  );
+}
+
+///
+void LatexSummaryTelescope()
+{
+  /// Write main summary
+  latex_file << "\\section{Telescope "<< CurrentTelescope << " }"<<endl ;
+  /// List symptomatic strips and reason
+
+  if(BadStrip.size()>0)
+  {
+    latex_file << " Bad Strip:" << endl ;
+    latex_file << "\\begin{center}"<<endl ;
+    latex_file << "\\begin{tabular}{ | c | c | } "<<endl ;
+    latex_file << "\\hline "<<endl ;
+    latex_file << " Strip Number & Problem \\\\ \\hline "<<endl ;
+    map<int,string>::iterator it ;
+    for(it = BadStrip.begin() ; it!=BadStrip.end() ; it++)
+    {
+      latex_file << it->first << " & " << it->second <<  " \\\\ \\hline "<<endl ;
+    }
+
+    latex_file << "\\end{tabular} "<<endl ;
+    latex_file << "\\end{center}"<<endl ;
+  }
+
+  else
+    latex_file << "Bad Strip : All Strip are ok."<<endl ;
+
+  // Add the Graph
+  TString filename = Tsummary->GetName();
+  TString path = folder+"/latex/pictures/"+filename+".pdf";
+
+  latex_file <<"\\begin{figure}[htcb!]"<<endl ;
+  latex_file <<"\\begin{center}"<<endl ;
+  latex_file <<"\\includegraphics[width=0.7\\textwidth]{"+path +"}"<<endl ;
+  latex_file <<"\\end{center}"<<endl ;
+  latex_file <<"\\end{figure}"<<endl ;
+
+  latex_file <<"\\pagebreak"<<endl ;
+
+  latex_file << "Sigma fit centroid: " << sigma_fit_centroid << endl << endl;
+  latex_file << "Sigma fit sigma: " << sigma_fit_sigma << endl;
+
+  /// add summary graph and image
+
+}
+
+
+//////// Satellite finder and description of the Peak+Sattelite look-a-like function
+void Find_Satellites(TH1F *h)
+{
+
+  if(mean[0]==0 && mean[1]==0 && mean[2]==0) { cout << "pas de pics ---> pas de satellites!" << endl;}
+
+  else {
+
+    Float_t linf1 =0 , lsup1 =0, linf2 =0 , lsup2 =0 , linf3 =0 , lsup3=0;
+
+    if(a>0) { // ie Y case
+      linf1 = mean[0]-15; lsup1 = mean[0]+10;
+      linf2 = mean[1]-15; lsup2 = mean[1]+10;
+      linf3 = mean[2]-15; lsup3 = mean[2]+10;
+    }
+
+    else { // ie X case 
+      lsup1 = mean[0]+15; linf1 = mean[0]-10;
+      lsup2 = mean[1]+15; linf2 = mean[1]-10;
+      lsup3 = mean[2]+15; linf3 = mean[2]-10;
+    }
+
+    Double_t keVtoMeV = 1./1000. ;
+
+    TF1 *Pu = new TF1("fit_sat_Pu", source_Pu, linf1, lsup1, 6);
+    Pu->SetParameters(150,mean[0],mean[0]-12.4*keVtoMeV/a,mean[0]-51.6*keVtoMeV/a,sigma[0]);
+    Pu->SetParLimits(2,mean[0]-12.4*keVtoMeV/a-10,mean[0]-12.6*keVtoMeV/a+10);
+    Pu->SetParLimits(3,mean[0]-51.6*keVtoMeV/a-10,mean[0]-51.6*keVtoMeV/a+10);
+    Pu->SetParNames("Constant","Mean_value1","Mean_value2","Mean_value3","SigmaPu");
+    h->Fit("fit_sat_Pu", "RQ");
+
+    TF1 *Am = new TF1("fit_sat_Am", source_Am, linf2, lsup2, 6);
+    Am->SetParameters(150,mean[1],mean[1]-43.2*keVtoMeV/a,mean[1]-98.4*keVtoMeV/a,sigma[1]);
+    Am->SetParLimits(2,mean[1]-43.2*keVtoMeV/a-10,mean[1]-43.2*keVtoMeV/a+10);
+    Am->SetParLimits(3,mean[1]-98.4*keVtoMeV/a-10,mean[1]-98.4*keVtoMeV/a+10);
+    Am->SetParNames("Constant","Mean_value1","Mean_value2","Mean_value3","SigmaAm");
+    h->Fit("fit_sat_Am", "RQ+");
+
+
+    TF1 *Cm = new TF1("fit_sat_Cm", source_Cm, linf3, lsup3, 6);
+    Cm->SetParameters(150,mean[2],mean[2]-43.1*keVtoMeV/a,sigma[2]);
+    Cm->SetParLimits(2,mean[2]-43.1*keVtoMeV/a-10,mean[0]-43.1*keVtoMeV/a-10);
+    Cm->SetParNames("Constant","Mean_value1","Mean_value2","SigmaCm");
+    h->Fit("fit_sat_Cm", "RQ+");
+
+    mean[0]=Pu->GetParameter(1);  // Position of the 1st principal peak
+    sigma[0]=Pu->GetParameter(4); // Sigma of the 1st principal peak
+    sigma_fit->Fill(sigma[0]) ;
+    error_par[0]= Pu->GetParError(1);
+    mean[1]=Am->GetParameter(1);
+    sigma[1]=Am->GetParameter(4);
+    sigma_fit->Fill(sigma[1]) ;
+    error_par[1]= Am->GetParError(1);
+    mean[2]=Cm->GetParameter(1);
+    sigma[2]=Cm->GetParameter(3);
+    sigma_fit->Fill(sigma[2]) ;
+    error_par[2]= Cm->GetParError(1);
+  }
+
+}
+
+///////////////////////////////////////////////
+Double_t source_Pu(Double_t *x, Double_t *par)
+{
+  // [0] : constant
+  // [1] : position peak1
+  // [2] : position peak2
+  // [3] : position peak3
+  // [4] : sigma
+
+  Double_t arg1 = 0;
+  Double_t arg2 = 0;
+  Double_t arg3 = 0;
+
+  if(par[4]!=0) { 
+    arg1 = (x[0]-par[1])/par[4];
+    arg2 = (x[0]-par[2])/par[4];
+    arg3 = (x[0]-par[3])/par[4];
+  }
+
+  else cout << " Attention, sigma est nul !" << endl;
+
+  Double_t gaus1 =           par[0]*exp(-0.5*arg1*arg1);
+  Double_t gaus2 = 15.1/73.8*par[0]*exp(-0.5*arg2*arg2);
+  Double_t gaus3 = 11.5/73.8*par[0]*exp(-0.5*arg3*arg3);
+  Double_t fitval = gaus1+gaus2+gaus3;
+
+  return fitval;
+}
+
+///////////////////////////////////////////////
+Double_t source_Am(Double_t *x, Double_t *par)
+{
+  // [0] : constant
+  // [1] : position peak1
+  // [2] : position peak2
+  // [3] : position peak3
+  // [4] : sigma
+
+  Double_t arg1 = 0;
+  Double_t arg2 = 0;
+  Double_t arg3 = 0;
+
+  if(par[4]!=0) { 
+    arg1 = (x[0]-par[1])/par[4];
+    arg2 = (x[0]-par[2])/par[4];
+    arg3 = (x[0]-par[3])/par[4];
+  }
+
+  else cout << " Attention, sigma est nul !" << endl;
+
+  Double_t gaus1 =           par[0]*exp(-0.5*arg1*arg1);
+  Double_t gaus2 = 13.0/84.5*par[0]*exp(-0.5*arg2*arg2);
+  Double_t gaus3 = 1.6/84.5 *par[0]*exp(-0.5*arg3*arg3);
+  Double_t fitval= gaus1+gaus2+gaus3;
+
+  return fitval;
+}
+
+///////////////////////////////////////////////
+Double_t source_Cm(Double_t *x, Double_t *par)
+{
+  // [0] : constante
+  // [1] : position peak1
+  // [2] : position peak2
+  // [3] : sigma
+
+  Double_t arg1 = 0;
+  Double_t arg2 = 0;
+
+  if(par[3]!=0) { 
+    arg1 = (x[0]-par[1])/par[3];
+    arg2 = (x[0]-par[2])/par[3];
+  }
+
+  else cout << " Attention, sigma est nul !" << endl;
+
+  Double_t gaus1 =           par[0]*exp(-0.5*arg1*arg1);
+  Double_t gaus2 = 23.6/76.4*par[0]*exp(-0.5*arg2*arg2);
+  Double_t fitval= gaus1+gaus2; 
+
+  return fitval;
+}  
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyCalibrator.h b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyCalibrator.h
new file mode 100644
index 0000000000000000000000000000000000000000..929e1aaaf8c8fad793619131e62a4e28d0d3c39a
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyCalibrator.h
@@ -0,0 +1,134 @@
+// STL
+#include<stdlib.h>
+#include<stdio.h>
+#include <time.h>
+#include <iostream>
+#include <fstream>
+#include <sstream>
+#include <map>
+
+// Root
+#include "TString.h"
+#include "TSpectrum.h"
+#include "TGraphErrors.h"
+#include "TGraph.h"
+#include "TCanvas.h"
+#include "TFile.h"
+#include "TTree.h"
+#include "TH1F.h"
+#include "TF1.h"
+#include "TStyle.h"
+#include "TLine.h"
+
+//NPTool
+#include "NPEnergyLoss.h"
+#include "NPSystemOfUnits.h"
+
+
+using namespace NPUNITS;
+using namespace NPL;
+
+/// DEFINING GLOBAL VARIABLE
+
+double mean_extrapolation=100;
+
+/// Parameter used in the macro
+// Micrometer
+Double_t AlThickness;
+Double_t SiThickness;
+Double_t CThickness;
+EnergyLoss EL_Al("./EnergyLossTable/alpha_Al.G4table" , "G4Table", 100) ;
+EnergyLoss EL_Si("./EnergyLossTable/alpha_Si.G4table" , "G4Table", 100) ;
+EnergyLoss EL_C("./EnergyLossTable/alpha_C.G4table" , "G4Table", 100) ;
+// Information about the calibration condition (use Latex marks-up)
+
+const TString xy                  = "Y";
+const TString Experiment          = "double_alpha";
+const TString Run_Period          = "21/06/2023"; 
+const TString Operator            = "Hugo";
+const TString Source              = "3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po";
+const TString Comment             = "EDIN";
+const char* frun = "run_0274";
+
+
+
+
+int Telescope_Number=0;
+const int Strip_Start=0;
+const int Strip_End=127;
+
+const int Xmin = 8700;
+const int Xmax = 9500;
+
+const int Ymin = 6800;
+const int Ymax = 8000;
+
+// choosing a method for the fit
+const TString method = "ZeroExtrapolation" ;
+//const TString method = "ZeroForce";
+const bool RefitWithSatellite = false;
+const bool Pedestals_Aligned = true;   
+Int_t CurrentTelescope = 0;
+Int_t CurrentStrip     = 0;
+TString folder;
+TString main_name;
+TCanvas* Tsummary;
+TCanvas* Buffer;
+double sigma_fit_centroid = 0.;
+double sigma_fit_sigma = 0.;
+
+map<int,string> BadStrip;
+
+// Defining the array used after (order needs to be diffent for X and Y )
+Int_t NumberOfIsotope;
+
+// Source original value
+Int_t Source_Number_Peak;
+TString*  Source_isotope;
+Double_t* Source_branching_ratio;
+Double_t* Source_E;
+Double_t* Source_Sig;
+
+// Source corrected value
+Double_t* energyX;
+Double_t* errorsX;
+Double_t* energyY;
+Double_t* errorsY;
+
+// Calibration Coefficient
+Double_t a ;
+Double_t b ;
+
+Double_t* mean      = new Double_t[3]; 
+Double_t* sigma     = new Double_t[3];
+Double_t* error_par = new Double_t[3];
+
+TGraph* ZeroDispersion ;
+ofstream peaks_file, calib_file, dispersion_file , calib_online_file, latex_file;; 
+
+TH1F* sigma_fit  ;
+TH1F* Dispersion ;
+TGraph* coeff_a ;
+TGraph* coeff_b ;
+
+TFile *inFile;
+
+/// Function Header
+void AutoCalibration(int first_telescope ,int last_telescope, std::string fDet);
+void EnergyCalibrator();
+Double_t Pedestals(TH1F *);
+void Alpha(TH1F*, TString, Double_t);
+bool Finder(TH1F*, TString , Double_t*, Double_t*);
+Double_t Calib_ZeroForceMethod(string ,TGraphErrors*,float, Double_t*, Double_t*);
+Double_t Calib_ZeroExtrapolationMethod(TH1F* hist ,string ,TGraphErrors*,float, Double_t*, Double_t*, Double_t &a , Double_t &b);
+void LatexSummaryHeader(TString xy);
+void LatexSummaryEnder();
+void LatexSummaryTelescope();
+void DefineSource(TString sourceName="3 alphas");
+
+
+void Find_Satellites(TH1F *h);
+Double_t source_Pu(Double_t *x, Double_t *par);
+Double_t source_Am(Double_t *x, Double_t *par);
+Double_t source_Cm(Double_t *x, Double_t *par);
+
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyCalibrator_C.d b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyCalibrator_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..998cb85a8698d6155c17e737757ae896dd57f834
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyCalibrator_C.d
@@ -0,0 +1,110 @@
+
+# DO NOT DELETE
+
+./EnergyCalibrator_C.so: EnergyCalibrator.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSpectrum.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraphErrors.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraph.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCanvas.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TPad.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualPad.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttPad.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/GuiTypes.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Buttons.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttBBox2D.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttCanvas.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFormula.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/Types.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMethodCall.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1AbsComposition.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMath.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TError.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/ParamFunctor.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStyle.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttText.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TColor.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TLine.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPEnergyLoss.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSpline.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPGlobalSystemOfUnits.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPPhysicalConstants.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPSystemOfUnits.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+EnergyCalibrator_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyLossTable/alpha_Al.G4table b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyLossTable/alpha_Al.G4table
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyLossTable/alpha_C.G4table b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyLossTable/alpha_C.G4table
new file mode 100644
index 0000000000000000000000000000000000000000..91d510b0e8ed01b1f226819b76166c1f4e9ceb8a
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyLossTable/alpha_C.G4table
@@ -0,0 +1,469 @@
+Table from Geant4 generate using NPSimulation 	Particle: alpha	Material: NPS_C
+0	0
+0.001	0.0800342
+0.002	0.089502
+0.003	0.0968824
+0.004	0.103038
+0.005	0.108819
+0.006	0.114128
+0.007	0.119081
+0.008	0.123761
+0.009	0.128328
+0.01	0.132552
+0.011	0.136608
+0.012	0.140564
+0.013	0.144303
+0.014	0.148047
+0.015	0.151666
+0.016	0.155131
+0.017	0.158456
+0.018	0.161655
+0.019	0.164737
+0.02	0.167765
+0.021	0.170886
+0.022	0.173916
+0.023	0.176861
+0.024	0.179726
+0.025	0.182516
+0.026	0.185237
+0.027	0.187892
+0.028	0.190484
+0.029	0.193017
+0.03	0.195495
+0.031	0.19792
+0.032	0.200294
+0.033	0.202621
+0.034	0.204901
+0.035	0.207138
+0.036	0.209332
+0.037	0.211487
+0.038	0.213603
+0.039	0.215681
+0.041	0.219878
+0.043	0.224
+0.045	0.227999
+0.047	0.231883
+0.049	0.235659
+0.051	0.239333
+0.053	0.242918
+0.055	0.246466
+0.057	0.249928
+0.059	0.253309
+0.061	0.256612
+0.063	0.259842
+0.065	0.263
+0.067	0.266109
+0.069	0.269169
+0.071	0.272168
+0.073	0.275106
+0.075	0.277988
+0.077	0.280814
+0.079	0.283587
+0.083	0.289035
+0.087	0.294293
+0.091	0.299371
+0.095	0.30428
+0.099	0.30903
+0.103	0.313629
+0.107	0.3181
+0.111	0.32246
+0.115	0.326691
+0.119	0.330798
+0.123	0.334787
+0.127	0.338663
+0.131	0.342431
+0.135	0.346118
+0.139	0.349712
+0.143	0.353209
+0.147	0.356613
+0.155	0.363155
+0.163	0.369359
+0.171	0.375248
+0.179	0.38084
+0.187	0.386152
+0.195	0.391198
+0.203	0.396017
+0.211	0.400612
+0.219	0.404979
+0.227	0.409129
+0.235	0.413072
+0.251	0.420375
+0.267	0.426962
+0.283	0.432917
+0.299	0.438259
+0.315	0.443034
+0.331	0.447285
+0.363	0.454365
+0.395	0.459772
+0.427	0.46378
+0.491	0.468233
+0.619	0.467001
+0.875	0.444095
+1.131	0.412876
+1.387	0.382064
+1.643	0.354088
+1.899	0.329315
+2.155	0.307531
+2.411	0.288349
+2.667	0.271385
+2.923	0.256314
+3.179	0.242844
+3.435	0.230743
+3.691	0.219815
+3.947	0.209901
+4.203	0.200873
+4.459	0.192614
+4.715	0.18503
+4.971	0.178041
+5.227	0.171581
+5.483	0.165592
+5.739	0.160024
+5.995	0.154834
+6.251	0.149984
+6.507	0.145441
+6.763	0.141177
+7.019	0.137168
+7.275	0.133391
+7.531	0.129825
+7.787	0.126454
+8.043	0.123441
+8.299	0.120855
+8.555	0.118379
+8.811	0.116008
+9.067	0.113736
+9.323	0.111558
+9.579	0.109468
+9.835	0.107448
+10.091	0.105493
+10.347	0.103614
+10.603	0.101806
+10.859	0.100067
+11.115	0.0983906
+11.371	0.096775
+11.627	0.0952167
+11.883	0.0937127
+12.139	0.0922597
+12.395	0.0908512
+12.651	0.0894897
+12.907	0.0881729
+13.163	0.0868987
+13.419	0.0856654
+13.675	0.0844707
+13.931	0.0833126
+14.187	0.0821896
+14.443	0.0811
+14.699	0.0800423
+14.955	0.0790151
+15.211	0.0780171
+15.467	0.0770469
+15.723	0.0761036
+15.979	0.0751419
+16.235	0.074249
+16.491	0.0733688
+16.747	0.0725115
+17.003	0.0716763
+17.259	0.0708623
+17.515	0.0700687
+17.771	0.0692946
+18.027	0.0685394
+18.283	0.0678023
+18.539	0.0670828
+18.795	0.06638
+19.051	0.0656936
+19.307	0.0650228
+19.563	0.0643672
+19.819	0.0637261
+20.331	0.0624859
+20.843	0.0612985
+21.355	0.0601605
+21.867	0.0590699
+22.379	0.0580238
+22.891	0.0570164
+23.403	0.056041
+23.915	0.0551019
+24.427	0.054197
+24.939	0.0533246
+25.451	0.0524827
+25.963	0.0516698
+26.475	0.0508844
+26.987	0.0501251
+27.499	0.0493905
+28.011	0.0486794
+28.523	0.0479908
+29.035	0.0473235
+29.547	0.0466765
+30.059	0.0460489
+30.571	0.0454397
+31.083	0.0448483
+31.595	0.0442737
+32.107	0.0437154
+32.619	0.0431724
+33.131	0.0426421
+33.643	0.0421258
+34.155	0.041623
+34.667	0.0411333
+35.179	0.0406561
+35.691	0.040191
+36.203	0.0397375
+36.715	0.0392951
+37.227	0.0388634
+37.739	0.0384421
+38.251	0.0380307
+38.763	0.037629
+39.275	0.0372364
+39.787	0.0368528
+40.299	0.0364778
+40.811	0.0361112
+41.323	0.0357525
+42.347	0.0350583
+43.371	0.0343932
+44.395	0.0337554
+45.419	0.033143
+46.443	0.0325547
+47.467	0.031989
+48.491	0.0314446
+49.515	0.0309203
+50.539	0.0304149
+51.563	0.0299275
+52.587	0.0294571
+53.611	0.0290026
+54.635	0.0285634
+55.659	0.0281387
+56.683	0.0277277
+57.707	0.0273298
+58.731	0.0269442
+59.755	0.0265706
+60.779	0.0262082
+61.803	0.0258566
+62.827	0.0255153
+63.851	0.0251838
+64.875	0.0248617
+65.899	0.0245487
+66.923	0.0242442
+67.947	0.023948
+68.971	0.0236597
+69.995	0.0233791
+71.019	0.0231057
+72.043	0.0228393
+73.067	0.0225797
+74.091	0.0223265
+75.115	0.0220796
+76.139	0.0218386
+77.163	0.0216035
+78.187	0.0213739
+79.211	0.0211497
+80.235	0.0209306
+81.259	0.0207166
+82.283	0.0205074
+83.307	0.0203028
+85.355	0.019907
+87.403	0.019528
+89.451	0.0191648
+91.499	0.0188164
+93.547	0.0184818
+95.595	0.0181602
+97.643	0.017851
+99.691	0.0175533
+101.739	0.0172665
+103.787	0.01699
+105.835	0.0167233
+107.883	0.0164658
+109.931	0.0162171
+111.979	0.0159767
+114.027	0.0157441
+116.075	0.0155191
+118.123	0.0153012
+120.171	0.0150901
+122.219	0.0148854
+124.267	0.014687
+126.315	0.0144944
+128.363	0.0143074
+130.411	0.0141259
+132.459	0.0139495
+134.507	0.013778
+136.555	0.0136112
+138.603	0.0134489
+140.651	0.013291
+142.699	0.0131373
+144.747	0.0129875
+146.795	0.0128416
+148.843	0.0126993
+150.891	0.0125607
+152.939	0.0124254
+154.987	0.0122934
+157.035	0.0121646
+159.083	0.0120388
+161.131	0.011916
+163.179	0.0117961
+165.227	0.0116788
+169.323	0.0114522
+173.419	0.0112354
+177.515	0.0110279
+181.611	0.0108291
+185.707	0.0106383
+189.803	0.0104551
+193.899	0.0102792
+197.995	0.0101099
+202.091	0.009947
+206.187	0.00979009
+210.283	0.00963885
+214.379	0.00949298
+218.475	0.00935218
+222.571	0.00921618
+226.667	0.00908475
+230.763	0.00895765
+234.859	0.00883466
+238.955	0.0087156
+243.051	0.00860026
+247.147	0.00848848
+251.243	0.00838009
+255.339	0.00827494
+259.435	0.00817287
+263.531	0.00807376
+267.627	0.00797748
+271.723	0.0078839
+275.819	0.00779291
+279.915	0.00770441
+284.011	0.00761829
+288.107	0.00753445
+292.203	0.00745281
+296.299	0.00737327
+300.395	0.00729576
+304.491	0.0072202
+308.587	0.00714652
+312.683	0.00707464
+316.779	0.0070045
+324.971	0.00686919
+333.163	0.00674011
+341.355	0.00661684
+349.547	0.006499
+357.739	0.00638622
+365.931	0.00627818
+374.123	0.00617459
+382.315	0.00607517
+390.507	0.00597968
+398.699	0.00588789
+406.891	0.00579957
+415.083	0.00571455
+423.275	0.00563262
+431.467	0.00555363
+439.659	0.00547743
+447.851	0.00540385
+456.043	0.00533277
+464.235	0.00526407
+472.427	0.00519762
+480.619	0.00513331
+488.811	0.00507105
+497.003	0.00501073
+505.195	0.00495227
+513.387	0.00489557
+521.579	0.00484057
+529.771	0.00478718
+537.963	0.00473534
+546.155	0.00468498
+554.347	0.00463603
+562.539	0.00458844
+570.731	0.00454215
+578.923	0.0044971
+595.307	0.00441057
+611.691	0.00432846
+628.075	0.00425044
+644.459	0.00417622
+660.843	0.00410552
+677.227	0.0040381
+693.611	0.00397374
+709.995	0.00391223
+726.379	0.00385339
+742.763	0.00379705
+759.147	0.00374305
+775.531	0.00369126
+791.915	0.00364153
+808.299	0.00359375
+824.683	0.00354781
+841.067	0.0035036
+857.451	0.00346102
+873.835	0.00342
+890.219	0.00338045
+906.603	0.00334228
+922.987	0.00330544
+939.371	0.00326984
+955.755	0.00323544
+972.139	0.00320217
+988.523	0.00316997
+1004.91	0.00313881
+1037.68	0.00307937
+1070.44	0.00302351
+1103.21	0.00297091
+1135.98	0.0029213
+1168.75	0.00287444
+1201.52	0.00283011
+1234.28	0.00278786
+1267.05	0.00274775
+1299.82	0.00270964
+1332.59	0.00267341
+1365.36	0.00263891
+1398.12	0.00260603
+1430.89	0.00257466
+1463.66	0.00254471
+1496.43	0.00251607
+1529.2	0.00248868
+1561.96	0.00246245
+1594.73	0.00243731
+1627.5	0.00241321
+1693.04	0.00236785
+1758.57	0.00232595
+1824.11	0.00228716
+1889.64	0.00225114
+1955.18	0.00221764
+2020.72	0.0021864
+2086.25	0.00215722
+2151.79	0.00212991
+2217.32	0.00210432
+2282.86	0.00208029
+2348.4	0.00205769
+2413.93	0.00203642
+2479.47	0.00201636
+2610.54	0.00197952
+2741.61	0.00194655
+2872.68	0.00191691
+3003.76	0.00189016
+3134.83	0.00186594
+3265.9	0.00184395
+3396.97	0.00182392
+3528.04	0.00180563
+3659.12	0.0017889
+3921.26	0.00175945
+4183.4	0.00173449
+4445.55	0.00171322
+4707.69	0.00169498
+4969.84	0.00167928
+5494.12	0.00165396
+6018.41	0.00163486
+6542.7	0.00162036
+7591.28	0.00160102
+8639.85	0.00159018
+10737	0.0015826
+14931.3	0.00159117
+23319.9	0.00162878
+31708.5	0.00166528
+40097.1	0.00169651
+48485.7	0.00172312
+56874.3	0.00174605
+65263	0.00176609
+73651.6	0.00178383
+82040.2	0.00179971
+98817.4	0.00182714
+115595	0.00185021
+132372	0.00187008
+149149	0.00188749
+182703	0.00191691
+216258	0.00194114
+249812	0.0019617
+283367	0.00197955
+350476	0.00200939
+417584	0.00203375
+484693	0.00205431
+551802	0.0020721
+686020	0.00210174
+820238	0.00212588
+954455	0.00214623
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyLossTable/alpha_Si.G4table b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyLossTable/alpha_Si.G4table
new file mode 100644
index 0000000000000000000000000000000000000000..50a1580b2306c631e507fcfccdfd89fd7f91c3d1
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/EnergyLossTable/alpha_Si.G4table
@@ -0,0 +1,10002 @@
+Table from Geant4 generate using NPSimulation 	Particle: alpha	Material: Si
+0	0
+0.12	0.227842
+0.24	0.318853
+0.36	0.356212
+0.48	0.363529
+0.6	0.35703
+0.72	0.345305
+0.84	0.332168
+0.96	0.319206
+1.08	0.306973
+1.2	0.295608
+1.32	0.285112
+1.44	0.27541
+1.56	0.266429
+1.68	0.25809
+1.8	0.250323
+1.92	0.243073
+2.04	0.236281
+2.16	0.229904
+2.28	0.223901
+2.4	0.21824
+2.52	0.212893
+2.64	0.207831
+2.76	0.203029
+2.88	0.198468
+3	0.19413
+3.12	0.19
+3.24	0.18606
+3.36	0.182298
+3.48	0.1787
+3.6	0.175257
+3.72	0.171957
+3.84	0.168792
+3.96	0.165754
+4.08	0.162834
+4.2	0.160027
+4.32	0.157324
+4.44	0.15472
+4.56	0.152212
+4.68	0.149793
+4.8	0.147457
+4.92	0.145201
+5.04	0.14302
+5.16	0.140912
+5.28	0.13887
+5.4	0.136892
+5.52	0.134975
+5.64	0.133117
+5.76	0.131315
+5.88	0.129567
+6	0.12787
+6.12	0.126221
+6.24	0.12462
+6.36	0.123062
+6.48	0.121547
+6.6	0.120073
+6.72	0.118638
+6.84	0.117241
+6.96	0.115879
+7.08	0.114552
+7.2	0.113259
+7.32	0.111997
+7.44	0.110766
+7.56	0.109565
+7.68	0.108392
+7.8	0.107247
+7.92	0.106128
+8.04	0.105037
+8.16	0.10397
+8.28	0.102924
+8.4	0.1019
+8.52	0.100896
+8.64	0.0999119
+8.76	0.0989477
+8.88	0.0980026
+9	0.0970766
+9.12	0.0961686
+9.24	0.0952783
+9.36	0.0942125
+9.48	0.0933637
+9.6	0.092531
+9.72	0.0920727
+9.84	0.0912566
+9.96	0.0904557
+10.08	0.0896695
+10.2	0.0888977
+10.32	0.0881399
+10.44	0.0873957
+10.56	0.0866649
+10.68	0.0859469
+10.8	0.0852416
+10.92	0.0845486
+11.04	0.0838761
+11.16	0.0832164
+11.28	0.0824697
+11.4	0.0818352
+11.52	0.0812108
+11.64	0.0808357
+11.76	0.0802298
+11.88	0.0796336
+12	0.0790469
+12.12	0.0784692
+12.24	0.0779006
+12.36	0.0773406
+12.48	0.0767892
+12.6	0.0762446
+12.72	0.0757095
+12.84	0.0751825
+12.96	0.0746633
+13.08	0.0741517
+13.2	0.0735978
+13.32	0.0731032
+13.44	0.0726157
+13.56	0.0722883
+13.68	0.0718082
+13.8	0.0713349
+13.92	0.0708683
+14.04	0.0704082
+14.16	0.0699546
+14.28	0.0695072
+14.4	0.069066
+14.52	0.0686308
+14.64	0.0683369
+14.76	0.0679157
+14.88	0.0675003
+15	0.0670638
+15.12	0.0666612
+15.24	0.0662639
+15.36	0.0658717
+15.48	0.0654846
+15.6	0.0651025
+15.72	0.0647253
+15.84	0.0643528
+15.96	0.0639851
+16.08	0.063622
+16.2	0.0632634
+16.32	0.0629092
+16.44	0.0625594
+16.56	0.0623445
+16.68	0.0620026
+16.8	0.0616649
+16.92	0.0613312
+17.04	0.0610015
+17.16	0.0606754
+17.28	0.0603517
+17.4	0.0600319
+17.52	0.0597159
+17.64	0.0594036
+17.76	0.059095
+17.88	0.05879
+18	0.0584885
+18.12	0.0581905
+18.24	0.0578959
+18.36	0.0576047
+18.48	0.0573167
+18.6	0.0570319
+18.72	0.0567503
+18.84	0.0564554
+18.96	0.0561809
+19.08	0.0559094
+19.2	0.0556408
+19.32	0.0553751
+19.44	0.0552671
+19.56	0.0550061
+19.68	0.0547479
+19.8	0.0544924
+19.92	0.0542396
+20.04	0.0539894
+20.16	0.0537418
+20.28	0.0534968
+20.4	0.0532542
+20.52	0.0530142
+20.64	0.0527766
+20.76	0.0525414
+20.88	0.0523085
+21	0.052078
+21.12	0.0518498
+21.24	0.0516238
+21.36	0.0514
+21.48	0.0511784
+21.6	0.050959
+21.72	0.0507417
+21.84	0.0505264
+21.96	0.0503133
+22.08	0.0501021
+22.2	0.049893
+22.32	0.0496858
+22.44	0.0494806
+22.56	0.0492812
+22.68	0.0490801
+22.8	0.0488809
+22.92	0.0486834
+23.04	0.0484878
+23.16	0.048294
+23.28	0.0481019
+23.4	0.0479115
+23.52	0.0477228
+23.64	0.0475358
+23.76	0.0473505
+23.88	0.0471669
+24	0.0469849
+24.12	0.0468044
+24.24	0.0466256
+24.36	0.0464483
+24.48	0.0462725
+24.6	0.0460982
+24.72	0.0459254
+24.84	0.045754
+24.96	0.0455841
+25.08	0.0454157
+25.2	0.0452486
+25.32	0.045083
+25.44	0.0449187
+25.56	0.0447558
+25.68	0.0445942
+25.8	0.0444339
+25.92	0.0442749
+26.04	0.0441173
+26.16	0.0439609
+26.28	0.0438057
+26.4	0.0436621
+26.52	0.0435094
+26.64	0.0433579
+26.76	0.0432076
+26.88	0.0430585
+27	0.0429105
+27.12	0.0427637
+27.24	0.0426181
+27.36	0.0424735
+27.48	0.0423301
+27.6	0.0421878
+27.72	0.0420466
+27.84	0.0419064
+27.96	0.0417673
+28.08	0.0416292
+28.2	0.0414922
+28.32	0.0413649
+28.44	0.04123
+28.56	0.0410961
+28.68	0.0409632
+28.8	0.0408313
+28.92	0.0407004
+29.04	0.0405704
+29.16	0.0404413
+29.28	0.0404063
+29.4	0.040278
+29.52	0.0401507
+29.64	0.0400243
+29.76	0.0398988
+29.88	0.0397743
+30	0.0396506
+30.12	0.0395277
+30.24	0.0394058
+30.36	0.0392846
+30.48	0.0391644
+30.6	0.0390449
+30.72	0.0389266
+30.84	0.0388092
+30.96	0.0386926
+31.08	0.0385768
+31.2	0.0384618
+31.32	0.0383476
+31.44	0.0382341
+31.56	0.0381213
+31.68	0.0380094
+31.8	0.0378981
+31.92	0.0377876
+32.04	0.0376778
+32.16	0.0375819
+32.28	0.0374735
+32.4	0.0373658
+32.52	0.0372588
+32.64	0.0371525
+32.76	0.0370469
+32.88	0.036942
+33	0.0368377
+33.12	0.0367341
+33.24	0.0366311
+33.36	0.0365288
+33.48	0.0364271
+33.6	0.0363261
+33.72	0.0362257
+33.84	0.0361259
+33.96	0.0360268
+34.08	0.0359282
+34.2	0.0358303
+34.32	0.035733
+34.44	0.0356362
+34.56	0.0355401
+34.68	0.0354445
+34.8	0.0353495
+34.92	0.0352551
+35.04	0.0351613
+35.16	0.035068
+35.28	0.0349753
+35.4	0.0348831
+35.52	0.0347915
+35.64	0.0347004
+35.76	0.0346098
+35.88	0.0345198
+36	0.0344303
+36.12	0.0343414
+36.24	0.0342529
+36.36	0.034165
+36.48	0.0340775
+36.6	0.0339906
+36.72	0.0339042
+36.84	0.0338183
+36.96	0.0337328
+37.08	0.0336479
+37.2	0.0335634
+37.32	0.0334794
+37.44	0.0333959
+37.56	0.0333129
+37.68	0.0332303
+37.8	0.0331482
+37.92	0.0330851
+38.04	0.0330039
+38.16	0.0329232
+38.28	0.0328429
+38.4	0.032763
+38.52	0.0326836
+38.64	0.0326046
+38.76	0.032526
+38.88	0.0324479
+39	0.0323701
+39.12	0.0322928
+39.24	0.032216
+39.36	0.0321395
+39.48	0.0320634
+39.6	0.0319878
+39.72	0.0319125
+39.84	0.0318377
+39.96	0.0317632
+40.08	0.0316892
+40.2	0.0316155
+40.32	0.0315422
+40.44	0.0314693
+40.56	0.0313968
+40.68	0.0313246
+40.8	0.0312529
+40.92	0.0311815
+41.04	0.0311104
+41.16	0.0310398
+41.28	0.0309694
+41.4	0.0308995
+41.52	0.0308299
+41.64	0.0307607
+41.76	0.0306918
+41.88	0.0306233
+42	0.0305551
+42.12	0.0304872
+42.24	0.0304197
+42.36	0.0303525
+42.48	0.0302857
+42.6	0.0302192
+42.72	0.030153
+42.84	0.0300872
+42.96	0.0300216
+43.08	0.0299564
+43.2	0.0298916
+43.32	0.029827
+43.44	0.0297627
+43.56	0.0296988
+43.68	0.0296352
+43.8	0.0295718
+43.92	0.0295088
+44.04	0.0294461
+44.16	0.0293837
+44.28	0.0293216
+44.4	0.0292598
+44.52	0.0291983
+44.64	0.0291371
+44.76	0.0290762
+44.88	0.0290155
+45	0.0289552
+45.12	0.0288952
+45.24	0.0288354
+45.36	0.0287759
+45.48	0.0287167
+45.6	0.0286577
+45.72	0.028599
+45.84	0.0285407
+45.96	0.0284825
+46.08	0.0284247
+46.2	0.0283671
+46.32	0.0283097
+46.44	0.0282527
+46.56	0.0281959
+46.68	0.0281393
+46.8	0.028083
+46.92	0.028027
+47.04	0.0279712
+47.16	0.0279156
+47.28	0.0278603
+47.4	0.0278053
+47.52	0.0277505
+47.64	0.027696
+47.76	0.0276417
+47.88	0.0275876
+48	0.0275338
+48.12	0.0274802
+48.24	0.0274268
+48.36	0.0273737
+48.48	0.0273208
+48.6	0.0272681
+48.72	0.0272157
+48.84	0.0271635
+48.96	0.0271115
+49.08	0.0270598
+49.2	0.0269207
+49.32	0.0268684
+49.44	0.0268163
+49.56	0.0267645
+49.68	0.0267129
+49.8	0.0266615
+49.92	0.0266103
+50.04	0.0265593
+50.16	0.0265086
+50.28	0.026458
+50.4	0.0264077
+50.52	0.0263576
+50.64	0.0263077
+50.76	0.026258
+50.88	0.0262085
+51	0.0261592
+51.12	0.0261102
+51.24	0.0260613
+51.36	0.0260126
+51.48	0.0259642
+51.6	0.0259159
+51.72	0.0258679
+51.84	0.02582
+51.96	0.0257723
+52.08	0.0257248
+52.2	0.0256776
+52.32	0.0256305
+52.44	0.0255836
+52.56	0.0255369
+52.68	0.0254904
+52.8	0.025444
+52.92	0.0253979
+53.04	0.0253519
+53.16	0.0253062
+53.28	0.0252606
+53.4	0.0252152
+53.52	0.0251699
+53.64	0.0251249
+53.76	0.02508
+53.88	0.0250353
+54	0.0249908
+54.12	0.0249465
+54.24	0.0249023
+54.36	0.0248583
+54.48	0.0248145
+54.6	0.0247708
+54.72	0.0247273
+54.84	0.024684
+54.96	0.0246409
+55.08	0.0245979
+55.2	0.0245551
+55.32	0.0245125
+55.44	0.02447
+55.56	0.0244277
+55.68	0.0243855
+55.8	0.0243435
+55.92	0.0243017
+56.04	0.02426
+56.16	0.0242185
+56.28	0.0241771
+56.4	0.0241359
+56.52	0.0240949
+56.64	0.024054
+56.76	0.0240133
+56.88	0.0239727
+57	0.0239322
+57.12	0.0238919
+57.24	0.0238853
+57.36	0.0238452
+57.48	0.0238052
+57.6	0.0237654
+57.72	0.0237257
+57.84	0.0236862
+57.96	0.0236468
+58.08	0.0236075
+58.2	0.0235684
+58.32	0.0235295
+58.44	0.0234906
+58.56	0.023452
+58.68	0.0234134
+58.8	0.023375
+58.92	0.0233368
+59.04	0.0232987
+59.16	0.0232607
+59.28	0.0232229
+59.4	0.0231852
+59.52	0.0231476
+59.64	0.0231102
+59.76	0.0230729
+59.88	0.0230358
+60	0.0229987
+60.12	0.0229618
+60.24	0.0229251
+60.36	0.0228885
+60.48	0.022852
+60.6	0.0228156
+60.72	0.0227793
+60.84	0.0227432
+60.96	0.0227072
+61.08	0.0226714
+61.2	0.0226356
+61.32	0.0226
+61.44	0.0225645
+61.56	0.0225292
+61.68	0.0224939
+61.8	0.0224588
+61.92	0.0224238
+62.04	0.0223889
+62.16	0.0223542
+62.28	0.0223195
+62.4	0.022285
+62.52	0.0222506
+62.64	0.0222163
+62.76	0.0221821
+62.88	0.0221481
+63	0.0221141
+63.12	0.0220803
+63.24	0.0220466
+63.36	0.022013
+63.48	0.0219795
+63.6	0.0219462
+63.72	0.0219129
+63.84	0.0218798
+63.96	0.0218467
+64.08	0.0218138
+64.2	0.021781
+64.32	0.0217483
+64.44	0.0217157
+64.56	0.0216832
+64.68	0.0216508
+64.8	0.0216186
+64.92	0.0215864
+65.04	0.0215543
+65.16	0.0215224
+65.28	0.0214905
+65.4	0.0214588
+65.52	0.0214271
+65.64	0.0213956
+65.76	0.0213641
+65.88	0.0213328
+66	0.0213016
+66.12	0.0212704
+66.24	0.0212394
+66.36	0.0212085
+66.48	0.0211776
+66.6	0.0211469
+66.72	0.0211163
+66.84	0.0210857
+66.96	0.0210553
+67.08	0.021025
+67.2	0.0209947
+67.32	0.0209646
+67.44	0.0209345
+67.56	0.0209046
+67.68	0.0208747
+67.8	0.0208449
+67.92	0.0208153
+68.04	0.0207857
+68.16	0.0207562
+68.28	0.0207268
+68.4	0.0206975
+68.52	0.0206683
+68.64	0.0206391
+68.76	0.0206101
+68.88	0.0205812
+69	0.0205523
+69.12	0.0205236
+69.24	0.0204949
+69.36	0.0204292
+69.48	0.0204026
+69.6	0.0203761
+69.72	0.0203496
+69.84	0.0203233
+69.96	0.020297
+70.08	0.0202708
+70.2	0.0202447
+70.32	0.0202187
+70.44	0.0201927
+70.56	0.0201668
+70.68	0.020141
+70.8	0.0201152
+70.92	0.0200895
+71.04	0.0200639
+71.16	0.0200384
+71.28	0.0200129
+71.4	0.0199875
+71.52	0.0199622
+71.64	0.0199369
+71.76	0.0199117
+71.88	0.0198866
+72	0.0198616
+72.12	0.0198366
+72.24	0.0198117
+72.36	0.0197868
+72.48	0.019762
+72.6	0.0197373
+72.72	0.0197127
+72.84	0.0196881
+72.96	0.0196636
+73.08	0.0196392
+73.2	0.0196148
+73.32	0.0195905
+73.44	0.0195663
+73.56	0.0195421
+73.68	0.019518
+73.8	0.019494
+73.92	0.01947
+74.04	0.0194461
+74.16	0.0194222
+74.28	0.0193984
+74.4	0.0193747
+74.52	0.0193511
+74.64	0.0193275
+74.76	0.0193039
+74.88	0.0192805
+75	0.0192571
+75.12	0.0192337
+75.24	0.0192104
+75.36	0.0191872
+75.48	0.0191641
+75.6	0.019141
+75.72	0.0191179
+75.84	0.019095
+75.96	0.0190721
+76.08	0.0190492
+76.2	0.0190264
+76.32	0.0190037
+76.44	0.018981
+76.56	0.0189584
+76.68	0.0189359
+76.8	0.0189134
+76.92	0.0188909
+77.04	0.0188686
+77.16	0.0188462
+77.28	0.018824
+77.4	0.0188018
+77.52	0.0187796
+77.64	0.0187576
+77.76	0.0187355
+77.88	0.0187136
+78	0.0186917
+78.12	0.0186698
+78.24	0.018648
+78.36	0.0186262
+78.48	0.0186046
+78.6	0.0185829
+78.72	0.0185613
+78.84	0.0185398
+78.96	0.0185184
+79.08	0.0184969
+79.2	0.0184756
+79.32	0.0184543
+79.44	0.018433
+79.56	0.0184118
+79.68	0.0183907
+79.8	0.0183696
+79.92	0.0183486
+80.04	0.0183276
+80.16	0.0183067
+80.28	0.0182858
+80.4	0.018265
+80.52	0.0182442
+80.64	0.0182235
+80.76	0.0182028
+80.88	0.0181822
+81	0.0181616
+81.12	0.0181411
+81.24	0.0181207
+81.36	0.0181003
+81.48	0.0180799
+81.6	0.0180596
+81.72	0.0180394
+81.84	0.0180191
+81.96	0.017999
+82.08	0.0179789
+82.2	0.0179588
+82.32	0.0179388
+82.44	0.0179189
+82.56	0.017899
+82.68	0.0178791
+82.8	0.0178593
+82.92	0.0178395
+83.04	0.0178198
+83.16	0.0178002
+83.28	0.0177805
+83.4	0.017761
+83.52	0.0177414
+83.64	0.017722
+83.76	0.0177025
+83.88	0.0176832
+84	0.0176638
+84.12	0.0176446
+84.24	0.0176253
+84.36	0.0176061
+84.48	0.017587
+84.6	0.0175679
+84.72	0.0175488
+84.84	0.0175298
+84.96	0.0175109
+85.08	0.0174919
+85.2	0.0174731
+85.32	0.0174542
+85.44	0.0174355
+85.56	0.0174167
+85.68	0.017398
+85.8	0.0173794
+85.92	0.0173608
+86.04	0.0173422
+86.16	0.0173237
+86.28	0.0173053
+86.4	0.0172868
+86.52	0.0172685
+86.64	0.0172501
+86.76	0.0172318
+86.88	0.0172136
+87	0.0171954
+87.12	0.0171772
+87.24	0.0171591
+87.36	0.017141
+87.48	0.017123
+87.6	0.017105
+87.72	0.017087
+87.84	0.0170691
+87.96	0.0170512
+88.08	0.0170334
+88.2	0.0170156
+88.32	0.0169979
+88.44	0.0169802
+88.56	0.0169625
+88.68	0.0169449
+88.8	0.0169273
+88.92	0.0169098
+89.04	0.0168923
+89.16	0.0168748
+89.28	0.0168574
+89.4	0.01684
+89.52	0.0168227
+89.64	0.0168054
+89.76	0.0167882
+89.88	0.0167709
+90	0.0167538
+90.12	0.0167366
+90.24	0.0167195
+90.36	0.0167025
+90.48	0.0166855
+90.6	0.0166685
+90.72	0.0166515
+90.84	0.0166346
+90.96	0.0166178
+91.08	0.016601
+91.2	0.0165842
+91.32	0.0165674
+91.44	0.0165507
+91.56	0.016534
+91.68	0.0165174
+91.8	0.0165008
+91.92	0.0164842
+92.04	0.0164677
+92.16	0.0164512
+92.28	0.0164348
+92.4	0.0164184
+92.52	0.016402
+92.64	0.0163856
+92.76	0.0163693
+92.88	0.0163531
+93	0.0163368
+93.12	0.0163206
+93.24	0.0163045
+93.36	0.0162884
+93.48	0.0162723
+93.6	0.0162562
+93.72	0.0162402
+93.84	0.0162242
+93.96	0.0162083
+94.08	0.0161924
+94.2	0.0161765
+94.32	0.0161606
+94.44	0.0161448
+94.56	0.0161291
+94.68	0.0161133
+94.8	0.0160976
+94.92	0.016082
+95.04	0.0160663
+95.16	0.0160507
+95.28	0.0160352
+95.4	0.0160196
+95.52	0.0160041
+95.64	0.0159887
+95.76	0.0159732
+95.88	0.0159578
+96	0.0159425
+96.12	0.0159271
+96.24	0.0159118
+96.36	0.0158966
+96.48	0.0158813
+96.6	0.0158661
+96.72	0.015851
+96.84	0.0158578
+96.96	0.0158427
+97.08	0.0158275
+97.2	0.0158125
+97.32	0.0157974
+97.44	0.0157824
+97.56	0.0157674
+97.68	0.0157524
+97.8	0.0157375
+97.92	0.0157225
+98.04	0.0157077
+98.16	0.0156928
+98.28	0.015678
+98.4	0.0156632
+98.52	0.0156485
+98.64	0.0156338
+98.76	0.0156191
+98.88	0.0156044
+99	0.0155898
+99.12	0.0155752
+99.24	0.0155607
+99.36	0.0155461
+99.48	0.0155316
+99.6	0.0155172
+99.72	0.0155027
+99.84	0.0154883
+99.96	0.0154739
+100.08	0.0154596
+100.2	0.0154453
+100.32	0.015431
+100.44	0.0154167
+100.56	0.0154025
+100.68	0.0153883
+100.8	0.0153741
+100.92	0.01536
+101.04	0.0153459
+101.16	0.0153318
+101.28	0.0153177
+101.4	0.0153037
+101.52	0.0152897
+101.64	0.0152757
+101.76	0.0152618
+101.88	0.0152479
+102	0.015234
+102.12	0.0152201
+102.24	0.0152063
+102.36	0.0151925
+102.48	0.0151787
+102.6	0.015165
+102.72	0.0151513
+102.84	0.0151376
+102.96	0.0151239
+103.08	0.0151103
+103.2	0.0150967
+103.32	0.0150831
+103.44	0.0150696
+103.56	0.0150561
+103.68	0.0150426
+103.8	0.0150291
+103.92	0.0150157
+104.04	0.0150023
+104.16	0.0149889
+104.28	0.0149755
+104.4	0.0149622
+104.52	0.0149489
+104.64	0.0149356
+104.76	0.0149224
+104.88	0.0149091
+105	0.0148959
+105.12	0.0148828
+105.24	0.0148696
+105.36	0.0148565
+105.48	0.0148434
+105.6	0.0148303
+105.72	0.0148173
+105.84	0.0148043
+105.96	0.0147913
+106.08	0.0147783
+106.2	0.0147654
+106.32	0.0147525
+106.44	0.0147396
+106.56	0.0147267
+106.68	0.0147139
+106.8	0.0147011
+106.92	0.0146883
+107.04	0.0146755
+107.16	0.0146628
+107.28	0.0146501
+107.4	0.0146374
+107.52	0.0146247
+107.64	0.0146121
+107.76	0.0145995
+107.88	0.0145869
+108	0.0145743
+108.12	0.0145618
+108.24	0.0145493
+108.36	0.0145368
+108.48	0.0145243
+108.6	0.0145119
+108.72	0.0144994
+108.84	0.014487
+108.96	0.0144747
+109.08	0.0144623
+109.2	0.01445
+109.32	0.0144377
+109.44	0.0144254
+109.56	0.0144132
+109.68	0.0144009
+109.8	0.0143887
+109.92	0.0143766
+110.04	0.0143644
+110.16	0.0143523
+110.28	0.0143401
+110.4	0.0143281
+110.52	0.014316
+110.64	0.0143039
+110.76	0.0142919
+110.88	0.0142799
+111	0.014268
+111.12	0.014256
+111.24	0.0142441
+111.36	0.0142322
+111.48	0.0142203
+111.6	0.0142084
+111.72	0.0141966
+111.84	0.0141848
+111.96	0.014173
+112.08	0.0141612
+112.2	0.0141494
+112.32	0.0141377
+112.44	0.014126
+112.56	0.0141143
+112.68	0.0141027
+112.8	0.014091
+112.92	0.0140794
+113.04	0.0140678
+113.16	0.0140562
+113.28	0.0140447
+113.4	0.0140331
+113.52	0.0140216
+113.64	0.0140101
+113.76	0.0139987
+113.88	0.0139872
+114	0.0139758
+114.12	0.0139644
+114.24	0.013953
+114.36	0.0139416
+114.48	0.0139303
+114.6	0.013919
+114.72	0.0139077
+114.84	0.0138964
+114.96	0.0138851
+115.08	0.0138739
+115.2	0.0138627
+115.32	0.0138515
+115.44	0.0138403
+115.56	0.0138291
+115.68	0.013818
+115.8	0.0138069
+115.92	0.0137958
+116.04	0.0137847
+116.16	0.0137737
+116.28	0.0137626
+116.4	0.0137516
+116.52	0.0137406
+116.64	0.0137296
+116.76	0.0137187
+116.88	0.0137077
+117	0.0136968
+117.12	0.0136859
+117.24	0.0136751
+117.36	0.0136642
+117.48	0.0136534
+117.6	0.0136425
+117.72	0.0136317
+117.84	0.013621
+117.96	0.0136102
+118.08	0.0135995
+118.2	0.0135887
+118.32	0.013578
+118.44	0.0135674
+118.56	0.0135567
+118.68	0.0135461
+118.8	0.0135354
+118.92	0.0135248
+119.04	0.0135143
+119.16	0.0135037
+119.28	0.0134931
+119.4	0.0134826
+119.52	0.0134721
+119.64	0.0134616
+119.76	0.0134511
+119.88	0.0134407
+120	0.0134302
+120.12	0.0134198
+120.24	0.0134094
+120.36	0.013399
+120.48	0.0133887
+120.6	0.0133783
+120.72	0.013368
+120.84	0.0133577
+120.96	0.0133474
+121.08	0.0133371
+121.2	0.0133269
+121.32	0.0133166
+121.44	0.0133064
+121.56	0.0132962
+121.68	0.013286
+121.8	0.0132759
+121.92	0.0132657
+122.04	0.0132556
+122.16	0.0132455
+122.28	0.0132354
+122.4	0.0132253
+122.52	0.0132153
+122.64	0.0132052
+122.76	0.0131952
+122.88	0.0131852
+123	0.0131752
+123.12	0.0131652
+123.24	0.0131553
+123.36	0.0131453
+123.48	0.0131354
+123.6	0.0131255
+123.72	0.0131156
+123.84	0.0131057
+123.96	0.0130959
+124.08	0.013086
+124.2	0.0130762
+124.32	0.0130664
+124.44	0.0130566
+124.56	0.0130469
+124.68	0.0130371
+124.8	0.0130274
+124.92	0.0130177
+125.04	0.013008
+125.16	0.0129983
+125.28	0.0129886
+125.4	0.0129789
+125.52	0.0129693
+125.64	0.0129597
+125.76	0.0129501
+125.88	0.0129405
+126	0.0129309
+126.12	0.0129214
+126.24	0.0129118
+126.36	0.0129023
+126.48	0.0128928
+126.6	0.0128833
+126.72	0.0128738
+126.84	0.0128643
+126.96	0.0128549
+127.08	0.0128455
+127.2	0.0128361
+127.32	0.0128267
+127.44	0.0128173
+127.56	0.0128079
+127.68	0.0127986
+127.8	0.0127892
+127.92	0.0127799
+128.04	0.0127706
+128.16	0.0127613
+128.28	0.012752
+128.4	0.0127428
+128.52	0.0127335
+128.64	0.0127243
+128.76	0.0127151
+128.88	0.0127059
+129	0.0126967
+129.12	0.0126876
+129.24	0.0126784
+129.36	0.0126693
+129.48	0.0126601
+129.6	0.012651
+129.72	0.0126419
+129.84	0.0126329
+129.96	0.0126238
+130.08	0.0126148
+130.2	0.0126057
+130.32	0.0125967
+130.44	0.0125877
+130.56	0.0125787
+130.68	0.0125697
+130.8	0.0125608
+130.92	0.0125518
+131.04	0.0125429
+131.16	0.012534
+131.28	0.0125251
+131.4	0.0125162
+131.52	0.0125073
+131.64	0.0124985
+131.76	0.0124896
+131.88	0.0124808
+132	0.012472
+132.12	0.0124632
+132.24	0.0124544
+132.36	0.0124456
+132.48	0.0124369
+132.6	0.0124281
+132.72	0.0124194
+132.84	0.0124107
+132.96	0.012402
+133.08	0.0123933
+133.2	0.0123846
+133.32	0.012376
+133.44	0.0123673
+133.56	0.0123587
+133.68	0.0123501
+133.8	0.0123415
+133.92	0.0123329
+134.04	0.0123243
+134.16	0.0123157
+134.28	0.0123072
+134.4	0.0122986
+134.52	0.0122901
+134.64	0.0122816
+134.76	0.0122731
+134.88	0.0122646
+135	0.0122562
+135.12	0.0122477
+135.24	0.0122393
+135.36	0.0122308
+135.48	0.0122224
+135.6	0.012214
+135.72	0.0122056
+135.84	0.0121973
+135.96	0.0121889
+136.08	0.0121805
+136.2	0.0121722
+136.32	0.0121639
+136.44	0.0121556
+136.56	0.0121473
+136.68	0.012139
+136.8	0.0121307
+136.92	0.0121225
+137.04	0.0121142
+137.16	0.012106
+137.28	0.0120978
+137.4	0.0120895
+137.52	0.0120814
+137.64	0.0120732
+137.76	0.0120737
+137.88	0.0120656
+138	0.0120574
+138.12	0.0120492
+138.24	0.0120411
+138.36	0.012033
+138.48	0.0120249
+138.6	0.0120168
+138.72	0.0120087
+138.84	0.0120006
+138.96	0.0119925
+139.08	0.0119845
+139.2	0.0119765
+139.32	0.0119684
+139.44	0.0119604
+139.56	0.0119524
+139.68	0.0119444
+139.8	0.0119365
+139.92	0.0119285
+140.04	0.0119205
+140.16	0.0119126
+140.28	0.0119047
+140.4	0.0118968
+140.52	0.0118889
+140.64	0.011881
+140.76	0.0118731
+140.88	0.0118652
+141	0.0118574
+141.12	0.0118495
+141.24	0.0118417
+141.36	0.0118339
+141.48	0.0118261
+141.6	0.0118183
+141.72	0.0118105
+141.84	0.0118027
+141.96	0.011795
+142.08	0.0117872
+142.2	0.0117795
+142.32	0.0117717
+142.44	0.011764
+142.56	0.0117563
+142.68	0.0117486
+142.8	0.011741
+142.92	0.0117333
+143.04	0.0117256
+143.16	0.011718
+143.28	0.0117104
+143.4	0.0117027
+143.52	0.0116951
+143.64	0.0116875
+143.76	0.0116799
+143.88	0.0116724
+144	0.0116648
+144.12	0.0116572
+144.24	0.0116497
+144.36	0.0116422
+144.48	0.0116347
+144.6	0.0116271
+144.72	0.0116196
+144.84	0.0116122
+144.96	0.0116047
+145.08	0.0115972
+145.2	0.0115898
+145.32	0.0115823
+145.44	0.0115749
+145.56	0.0115675
+145.68	0.0115601
+145.8	0.0115527
+145.92	0.0115453
+146.04	0.0115379
+146.16	0.0115305
+146.28	0.0115232
+146.4	0.0115158
+146.52	0.0115085
+146.64	0.0115012
+146.76	0.0114939
+146.88	0.0114866
+147	0.0114793
+147.12	0.011472
+147.24	0.0114647
+147.36	0.0114575
+147.48	0.0114502
+147.6	0.011443
+147.72	0.0114357
+147.84	0.0114285
+147.96	0.0114213
+148.08	0.0114141
+148.2	0.0114069
+148.32	0.0113998
+148.44	0.0113926
+148.56	0.0113855
+148.68	0.0113783
+148.8	0.0113712
+148.92	0.0113641
+149.04	0.0113569
+149.16	0.0113498
+149.28	0.0113428
+149.4	0.0113357
+149.52	0.0113286
+149.64	0.0113215
+149.76	0.0113145
+149.88	0.0113074
+150	0.0113004
+150.12	0.0112934
+150.24	0.0112864
+150.36	0.0112794
+150.48	0.0112724
+150.6	0.0112654
+150.72	0.0112584
+150.84	0.0112515
+150.96	0.0112445
+151.08	0.0112376
+151.2	0.0112307
+151.32	0.0112237
+151.44	0.0112168
+151.56	0.0112099
+151.68	0.011203
+151.8	0.0111962
+151.92	0.0111893
+152.04	0.0111824
+152.16	0.0111756
+152.28	0.0111687
+152.4	0.0111619
+152.52	0.0111551
+152.64	0.0111483
+152.76	0.0111414
+152.88	0.0111347
+153	0.0111279
+153.12	0.0111211
+153.24	0.0111143
+153.36	0.0111076
+153.48	0.0111008
+153.6	0.0110941
+153.72	0.0110874
+153.84	0.0110806
+153.96	0.0110739
+154.08	0.0110672
+154.2	0.0110605
+154.32	0.0110539
+154.44	0.0110472
+154.56	0.0110405
+154.68	0.0110339
+154.8	0.0110272
+154.92	0.0110206
+155.04	0.011014
+155.16	0.0110073
+155.28	0.0110007
+155.4	0.0109941
+155.52	0.0109875
+155.64	0.010981
+155.76	0.0109744
+155.88	0.0109678
+156	0.0109613
+156.12	0.0109547
+156.24	0.0109482
+156.36	0.0109417
+156.48	0.0109352
+156.6	0.0109286
+156.72	0.0109221
+156.84	0.0109157
+156.96	0.0109092
+157.08	0.0109027
+157.2	0.0108962
+157.32	0.0108898
+157.44	0.0108833
+157.56	0.0108769
+157.68	0.0108705
+157.8	0.0108641
+157.92	0.0108576
+158.04	0.0108512
+158.16	0.0108449
+158.28	0.0108385
+158.4	0.0108321
+158.52	0.0108257
+158.64	0.0108194
+158.76	0.010813
+158.88	0.0108067
+159	0.0108003
+159.12	0.010794
+159.24	0.0107877
+159.36	0.0107814
+159.48	0.0107751
+159.6	0.0107688
+159.72	0.0107625
+159.84	0.0107562
+159.96	0.01075
+160.08	0.0107437
+160.2	0.0107375
+160.32	0.0107312
+160.44	0.010725
+160.56	0.0107188
+160.68	0.0107126
+160.8	0.0107064
+160.92	0.0107002
+161.04	0.010694
+161.16	0.0106878
+161.28	0.0106816
+161.4	0.0106754
+161.52	0.0106693
+161.64	0.0106631
+161.76	0.010657
+161.88	0.0106509
+162	0.0106448
+162.12	0.0106386
+162.24	0.0106325
+162.36	0.0106264
+162.48	0.0106203
+162.6	0.0106143
+162.72	0.0106082
+162.84	0.0106021
+162.96	0.0105961
+163.08	0.01059
+163.2	0.010584
+163.32	0.0105779
+163.44	0.0105719
+163.56	0.0105659
+163.68	0.0105599
+163.8	0.0105539
+163.92	0.0105479
+164.04	0.0105419
+164.16	0.0105359
+164.28	0.0105299
+164.4	0.010524
+164.52	0.010518
+164.64	0.0105121
+164.76	0.0105061
+164.88	0.0105002
+165	0.0104943
+165.12	0.0104884
+165.24	0.0104825
+165.36	0.0104765
+165.48	0.0104707
+165.6	0.0104648
+165.72	0.0104589
+165.84	0.010453
+165.96	0.0104472
+166.08	0.0104413
+166.2	0.0104355
+166.32	0.0104296
+166.44	0.0104238
+166.56	0.010418
+166.68	0.0104121
+166.8	0.0104063
+166.92	0.0104005
+167.04	0.0103947
+167.16	0.0103889
+167.28	0.0103832
+167.4	0.0103774
+167.52	0.0103716
+167.64	0.0103659
+167.76	0.0103601
+167.88	0.0103544
+168	0.0103486
+168.12	0.0103429
+168.24	0.0103372
+168.36	0.0103315
+168.48	0.0103258
+168.6	0.0103201
+168.72	0.0103144
+168.84	0.0103087
+168.96	0.010303
+169.08	0.0102974
+169.2	0.0102917
+169.32	0.010286
+169.44	0.0102804
+169.56	0.0102748
+169.68	0.0102691
+169.8	0.0102635
+169.92	0.0102579
+170.04	0.0102523
+170.16	0.0102467
+170.28	0.0102411
+170.4	0.0102355
+170.52	0.0102299
+170.64	0.0102243
+170.76	0.0102187
+170.88	0.0102132
+171	0.0102076
+171.12	0.0102021
+171.24	0.0101965
+171.36	0.010191
+171.48	0.0101855
+171.6	0.01018
+171.72	0.0101744
+171.84	0.0101689
+171.96	0.0101634
+172.08	0.0101579
+172.2	0.0101525
+172.32	0.010147
+172.44	0.0101415
+172.56	0.010136
+172.68	0.0101306
+172.8	0.0101251
+172.92	0.0101197
+173.04	0.0101143
+173.16	0.0101088
+173.28	0.0101034
+173.4	0.010098
+173.52	0.0100926
+173.64	0.0100872
+173.76	0.0100818
+173.88	0.0100764
+174	0.010071
+174.12	0.0100656
+174.24	0.0100602
+174.36	0.0100549
+174.48	0.0100495
+174.6	0.0100442
+174.72	0.0100388
+174.84	0.0100335
+174.96	0.0100282
+175.08	0.0100228
+175.2	0.0100175
+175.32	0.0100122
+175.44	0.0100069
+175.56	0.0100016
+175.68	0.00999632
+175.8	0.00999104
+175.92	0.00998576
+176.04	0.00998049
+176.16	0.00997522
+176.28	0.00996996
+176.4	0.00996471
+176.52	0.00995947
+176.64	0.00995423
+176.76	0.00994899
+176.88	0.00994377
+177	0.00993855
+177.12	0.00993333
+177.24	0.00992813
+177.36	0.00992293
+177.48	0.00991773
+177.6	0.00991255
+177.72	0.00990736
+177.84	0.00990219
+177.96	0.00989702
+178.08	0.00989186
+178.2	0.0098867
+178.32	0.00988156
+178.44	0.00987641
+178.56	0.00987128
+178.68	0.00986615
+178.8	0.00986102
+178.92	0.0098559
+179.04	0.00985079
+179.16	0.00984569
+179.28	0.00984059
+179.4	0.00983549
+179.52	0.00983041
+179.64	0.00982533
+179.76	0.00982025
+179.88	0.00981518
+180	0.00981012
+180.12	0.00980506
+180.24	0.00980001
+180.36	0.00979497
+180.48	0.00978993
+180.6	0.0097849
+180.72	0.00977987
+180.84	0.00977485
+180.96	0.00976984
+181.08	0.00976483
+181.2	0.00975983
+181.32	0.00975483
+181.44	0.00974984
+181.56	0.00974486
+181.68	0.00973988
+181.8	0.00973491
+181.92	0.00972994
+182.04	0.00972498
+182.16	0.00972002
+182.28	0.00971507
+182.4	0.00971013
+182.52	0.0097052
+182.64	0.00970026
+182.76	0.00969534
+182.88	0.00969042
+183	0.00968551
+183.12	0.0096806
+183.24	0.0096757
+183.36	0.0096708
+183.48	0.00966591
+183.6	0.00966103
+183.72	0.00965615
+183.84	0.00965127
+183.96	0.00964641
+184.08	0.00964154
+184.2	0.00963669
+184.32	0.00963184
+184.44	0.00962699
+184.56	0.00962216
+184.68	0.00961732
+184.8	0.0096125
+184.92	0.00960767
+185.04	0.00960286
+185.16	0.00959805
+185.28	0.00959324
+185.4	0.00958844
+185.52	0.00958365
+185.64	0.00957886
+185.76	0.00957408
+185.88	0.0095693
+186	0.00956453
+186.12	0.00955977
+186.24	0.00955501
+186.36	0.00955025
+186.48	0.0095455
+186.6	0.00954076
+186.72	0.00953602
+186.84	0.00953129
+186.96	0.00952656
+187.08	0.00952184
+187.2	0.00951713
+187.32	0.00951242
+187.44	0.00950771
+187.56	0.00950301
+187.68	0.00949832
+187.8	0.00949363
+187.92	0.00948895
+188.04	0.00948427
+188.16	0.0094796
+188.28	0.00947493
+188.4	0.00947027
+188.52	0.00946561
+188.64	0.00946096
+188.76	0.00945632
+188.88	0.00945168
+189	0.00944704
+189.12	0.00944241
+189.24	0.00943779
+189.36	0.00943317
+189.48	0.00942856
+189.6	0.00942395
+189.72	0.00941934
+189.84	0.00941475
+189.96	0.00941015
+190.08	0.00940557
+190.2	0.00940098
+190.32	0.00939641
+190.44	0.00939184
+190.56	0.00938727
+190.68	0.00938271
+190.8	0.00937815
+190.92	0.0093736
+191.04	0.00936906
+191.16	0.00936452
+191.28	0.00935998
+191.4	0.00935545
+191.52	0.00935093
+191.64	0.00934641
+191.76	0.00934189
+191.88	0.00933738
+192	0.00933288
+192.12	0.00932838
+192.24	0.00932389
+192.36	0.0093194
+192.48	0.00931491
+192.6	0.00931043
+192.72	0.00930596
+192.84	0.00930149
+192.96	0.00929703
+193.08	0.00929257
+193.2	0.00928811
+193.32	0.00928367
+193.44	0.00927922
+193.56	0.00927478
+193.68	0.00927035
+193.8	0.00926592
+193.92	0.0092615
+194.04	0.00925708
+194.16	0.00925266
+194.28	0.00924825
+194.4	0.00924385
+194.52	0.00923945
+194.64	0.00923506
+194.76	0.00923067
+194.88	0.00922628
+195	0.0092219
+195.12	0.00921753
+195.24	0.00921316
+195.36	0.00920879
+195.48	0.00920443
+195.6	0.00920008
+195.72	0.00919573
+195.84	0.00919138
+195.96	0.00918704
+196.08	0.00918271
+196.2	0.00917838
+196.32	0.00917405
+196.44	0.00916973
+196.56	0.00916541
+196.68	0.0091611
+196.8	0.00915679
+196.92	0.00915249
+197.04	0.00914819
+197.16	0.0091439
+197.28	0.00913961
+197.4	0.00913533
+197.52	0.00913105
+197.64	0.00912678
+197.76	0.00912251
+197.88	0.00911824
+198	0.00911398
+198.12	0.00910973
+198.24	0.00910548
+198.36	0.00910123
+198.48	0.00909699
+198.6	0.00909275
+198.72	0.00908852
+198.84	0.00908429
+198.96	0.00908007
+199.08	0.00907585
+199.2	0.00907164
+199.32	0.00906743
+199.44	0.00906323
+199.56	0.00905903
+199.68	0.00905483
+199.8	0.00905064
+199.92	0.00904646
+200.04	0.00904228
+200.16	0.0090381
+200.28	0.00903393
+200.4	0.00902976
+200.52	0.0090256
+200.64	0.00902144
+200.76	0.00901728
+200.88	0.00901313
+201	0.00900899
+201.12	0.00900485
+201.24	0.00900071
+201.36	0.00899658
+201.48	0.00899245
+201.6	0.00899289
+201.72	0.00898878
+201.84	0.00898466
+201.96	0.00898055
+202.08	0.00897645
+202.2	0.00897235
+202.32	0.00896825
+202.44	0.00896416
+202.56	0.00896008
+202.68	0.00895599
+202.8	0.00895191
+202.92	0.00894784
+203.04	0.00894377
+203.16	0.00893971
+203.28	0.00893565
+203.4	0.00893159
+203.52	0.00892754
+203.64	0.00892349
+203.76	0.00891945
+203.88	0.00891541
+204	0.00891137
+204.12	0.00890734
+204.24	0.00890332
+204.36	0.0088993
+204.48	0.00889528
+204.6	0.00889126
+204.72	0.00888726
+204.84	0.00888325
+204.96	0.00887925
+205.08	0.00887525
+205.2	0.00887126
+205.32	0.00886727
+205.44	0.00886329
+205.56	0.00885931
+205.68	0.00885534
+205.8	0.00885137
+205.92	0.0088474
+206.04	0.00884344
+206.16	0.00883948
+206.28	0.00883552
+206.4	0.00883157
+206.52	0.00882763
+206.64	0.00882369
+206.76	0.00881975
+206.88	0.00881582
+207	0.00881189
+207.12	0.00880796
+207.24	0.00880404
+207.36	0.00880012
+207.48	0.00879621
+207.6	0.0087923
+207.72	0.0087884
+207.84	0.0087845
+207.96	0.0087806
+208.08	0.00877671
+208.2	0.00877282
+208.32	0.00876894
+208.44	0.00876506
+208.56	0.00876118
+208.68	0.00875731
+208.8	0.00875344
+208.92	0.00874958
+209.04	0.00874572
+209.16	0.00874186
+209.28	0.00873801
+209.4	0.00873416
+209.52	0.00873032
+209.64	0.00872648
+209.76	0.00872264
+209.88	0.00871881
+210	0.00871498
+210.12	0.00871116
+210.24	0.00870734
+210.36	0.00870352
+210.48	0.00869971
+210.6	0.0086959
+210.72	0.0086921
+210.84	0.0086883
+210.96	0.0086845
+211.08	0.00868071
+211.2	0.00867692
+211.32	0.00867313
+211.44	0.00866935
+211.56	0.00866558
+211.68	0.0086618
+211.8	0.00865804
+211.92	0.00865427
+212.04	0.00865051
+212.16	0.00864675
+212.28	0.008643
+212.4	0.00863925
+212.52	0.0086355
+212.64	0.00863176
+212.76	0.00862802
+212.88	0.00862429
+213	0.00862056
+213.12	0.00861683
+213.24	0.00861311
+213.36	0.00860939
+213.48	0.00860567
+213.6	0.00860196
+213.72	0.00859825
+213.84	0.00859455
+213.96	0.00859085
+214.08	0.00858715
+214.2	0.00858346
+214.32	0.00857977
+214.44	0.00857609
+214.56	0.0085724
+214.68	0.00856873
+214.8	0.00856505
+214.92	0.00856138
+215.04	0.00855772
+215.16	0.00855405
+215.28	0.00855039
+215.4	0.00854674
+215.52	0.00854309
+215.64	0.00853944
+215.76	0.00853579
+215.88	0.00853215
+216	0.00852852
+216.12	0.00852488
+216.24	0.00852125
+216.36	0.00851763
+216.48	0.00851401
+216.6	0.00851039
+216.72	0.00850677
+216.84	0.00850316
+216.96	0.00849955
+217.08	0.00849595
+217.2	0.00849235
+217.32	0.00848875
+217.44	0.00848516
+217.56	0.00848157
+217.68	0.00847798
+217.8	0.0084744
+217.92	0.00847082
+218.04	0.00846724
+218.16	0.00846367
+218.28	0.00846011
+218.4	0.00845654
+218.52	0.00845298
+218.64	0.00844942
+218.76	0.00844587
+218.88	0.00844232
+219	0.00843877
+219.12	0.00843523
+219.24	0.00843169
+219.36	0.00842815
+219.48	0.00842462
+219.6	0.00842109
+219.72	0.00841756
+219.84	0.00841404
+219.96	0.00841052
+220.08	0.00840701
+220.2	0.00840349
+220.32	0.00839999
+220.44	0.00839648
+220.56	0.00839298
+220.68	0.00838948
+220.8	0.00838599
+220.92	0.0083825
+221.04	0.00837901
+221.16	0.00837552
+221.28	0.00837204
+221.4	0.00836857
+221.52	0.00836509
+221.64	0.00836162
+221.76	0.00835816
+221.88	0.00835469
+222	0.00835123
+222.12	0.00834778
+222.24	0.00834432
+222.36	0.00834087
+222.48	0.00833742
+222.6	0.00833398
+222.72	0.00833054
+222.84	0.00832711
+222.96	0.00832367
+223.08	0.00832024
+223.2	0.00831682
+223.32	0.00831339
+223.44	0.00830997
+223.56	0.00830656
+223.68	0.00830314
+223.8	0.00829973
+223.92	0.00829633
+224.04	0.00829292
+224.16	0.00828952
+224.28	0.00828613
+224.4	0.00828274
+224.52	0.00827935
+224.64	0.00827596
+224.76	0.00827258
+224.88	0.0082692
+225	0.00826582
+225.12	0.00826245
+225.24	0.00825908
+225.36	0.00825571
+225.48	0.00825234
+225.6	0.00824898
+225.72	0.00824563
+225.84	0.00824227
+225.96	0.00823892
+226.08	0.00823558
+226.2	0.00823223
+226.32	0.00822889
+226.44	0.00822555
+226.56	0.00822222
+226.68	0.00821889
+226.8	0.00821556
+226.92	0.00821223
+227.04	0.00820891
+227.16	0.00820559
+227.28	0.00820228
+227.4	0.00819897
+227.52	0.00819566
+227.64	0.00819235
+227.76	0.00818905
+227.88	0.00818575
+228	0.00818245
+228.12	0.00817916
+228.24	0.00817587
+228.36	0.00817258
+228.48	0.0081693
+228.6	0.00816602
+228.72	0.00816274
+228.84	0.00815947
+228.96	0.0081562
+229.08	0.00815293
+229.2	0.00814966
+229.32	0.0081464
+229.44	0.00814314
+229.56	0.00813989
+229.68	0.00813664
+229.8	0.00813339
+229.92	0.00813014
+230.04	0.0081269
+230.16	0.00812366
+230.28	0.00812042
+230.4	0.00811719
+230.52	0.00811395
+230.64	0.00811073
+230.76	0.0081075
+230.88	0.00810428
+231	0.00810106
+231.12	0.00809785
+231.24	0.00809463
+231.36	0.00809142
+231.48	0.00808822
+231.6	0.00808501
+231.72	0.00808181
+231.84	0.00807862
+231.96	0.00807542
+232.08	0.00807223
+232.2	0.00806904
+232.32	0.00806586
+232.44	0.00806267
+232.56	0.00805949
+232.68	0.00805632
+232.8	0.00805314
+232.92	0.00804997
+233.04	0.00804681
+233.16	0.00804364
+233.28	0.00804048
+233.4	0.00803732
+233.52	0.00803417
+233.64	0.00803101
+233.76	0.00802786
+233.88	0.00802472
+234	0.00802157
+234.12	0.00801843
+234.24	0.00801529
+234.36	0.00801216
+234.48	0.00800903
+234.6	0.0080059
+234.72	0.00800277
+234.84	0.00799965
+234.96	0.00799653
+235.08	0.00799341
+235.2	0.00799029
+235.32	0.00798718
+235.44	0.00798407
+235.56	0.00798097
+235.68	0.00797786
+235.8	0.00797476
+235.92	0.00797167
+236.04	0.00796857
+236.16	0.00796548
+236.28	0.00796239
+236.4	0.00795931
+236.52	0.00795622
+236.64	0.00795314
+236.76	0.00795007
+236.88	0.00794699
+237	0.00794392
+237.12	0.00794085
+237.24	0.00793779
+237.36	0.00793473
+237.48	0.00793167
+237.6	0.00792861
+237.72	0.00792556
+237.84	0.00792251
+237.96	0.00791946
+238.08	0.00791641
+238.2	0.00791337
+238.32	0.00791033
+238.44	0.00790729
+238.56	0.00790426
+238.68	0.00790123
+238.8	0.0078982
+238.92	0.00789517
+239.04	0.00789215
+239.16	0.00788913
+239.28	0.00788611
+239.4	0.0078831
+239.52	0.00788008
+239.64	0.00787707
+239.76	0.00787407
+239.88	0.00787106
+240	0.00786806
+240.12	0.00786506
+240.24	0.00786207
+240.36	0.00785908
+240.48	0.00785608
+240.6	0.0078531
+240.72	0.00785011
+240.84	0.00784713
+240.96	0.00784415
+241.08	0.00784117
+241.2	0.0078382
+241.32	0.00783523
+241.44	0.00783226
+241.56	0.00782929
+241.68	0.00782633
+241.8	0.00782337
+241.92	0.00782041
+242.04	0.00781746
+242.16	0.00781451
+242.28	0.00781156
+242.4	0.00780861
+242.52	0.00780566
+242.64	0.00780272
+242.76	0.00779978
+242.88	0.00779685
+243	0.00779391
+243.12	0.00779098
+243.24	0.00778805
+243.36	0.00778513
+243.48	0.0077822
+243.6	0.00777928
+243.72	0.00777636
+243.84	0.00777345
+243.96	0.00777054
+244.08	0.00776763
+244.2	0.00776472
+244.32	0.00776181
+244.44	0.00775891
+244.56	0.00775601
+244.68	0.00775311
+244.8	0.00775022
+244.92	0.00774733
+245.04	0.00774444
+245.16	0.00774155
+245.28	0.00773867
+245.4	0.00773579
+245.52	0.00773291
+245.64	0.00773003
+245.76	0.00772716
+245.88	0.00772428
+246	0.00772142
+246.12	0.00771855
+246.24	0.00771569
+246.36	0.00771282
+246.48	0.00770997
+246.6	0.00770711
+246.72	0.00770426
+246.84	0.0077014
+246.96	0.00769856
+247.08	0.00769571
+247.2	0.00769287
+247.32	0.00769003
+247.44	0.00768719
+247.56	0.00768435
+247.68	0.00768152
+247.8	0.00767869
+247.92	0.00767586
+248.04	0.00767303
+248.16	0.00767021
+248.28	0.00766739
+248.4	0.00766457
+248.52	0.00766175
+248.64	0.00765894
+248.76	0.00765613
+248.88	0.00765332
+249	0.00765052
+249.12	0.00764771
+249.24	0.00764491
+249.36	0.00764211
+249.48	0.00763932
+249.6	0.00763652
+249.72	0.00763373
+249.84	0.00763094
+249.96	0.00762816
+250.08	0.00762537
+250.2	0.00762259
+250.32	0.00761981
+250.44	0.00761703
+250.56	0.00761426
+250.68	0.00761149
+250.8	0.00760872
+250.92	0.00760595
+251.04	0.00760319
+251.16	0.00760043
+251.28	0.00759767
+251.4	0.00759491
+251.52	0.00759215
+251.64	0.0075894
+251.76	0.00758665
+251.88	0.0075839
+252	0.00758116
+252.12	0.00757842
+252.24	0.00757568
+252.36	0.00757294
+252.48	0.0075702
+252.6	0.00756747
+252.72	0.00756474
+252.84	0.00756201
+252.96	0.00755928
+253.08	0.00755656
+253.2	0.00755384
+253.32	0.00755112
+253.44	0.0075484
+253.56	0.00754569
+253.68	0.00754297
+253.8	0.00754027
+253.92	0.00753756
+254.04	0.00753485
+254.16	0.00753215
+254.28	0.00752945
+254.4	0.00752675
+254.52	0.00752406
+254.64	0.00752136
+254.76	0.00751867
+254.88	0.00751598
+255	0.0075133
+255.12	0.00751061
+255.24	0.00750793
+255.36	0.00750525
+255.48	0.00750257
+255.6	0.0074999
+255.72	0.00749723
+255.84	0.00749456
+255.96	0.00749189
+256.08	0.00748922
+256.2	0.00748656
+256.32	0.0074839
+256.44	0.00748124
+256.56	0.00747858
+256.68	0.00747593
+256.8	0.00747327
+256.92	0.00747062
+257.04	0.00746798
+257.16	0.00746533
+257.28	0.00746269
+257.4	0.00746005
+257.52	0.00745741
+257.64	0.00745477
+257.76	0.00745214
+257.88	0.00744951
+258	0.00744688
+258.12	0.00744425
+258.24	0.00744162
+258.36	0.007439
+258.48	0.00743638
+258.6	0.00743376
+258.72	0.00743115
+258.84	0.00742853
+258.96	0.00742592
+259.08	0.00742331
+259.2	0.0074207
+259.32	0.0074181
+259.44	0.0074155
+259.56	0.00741289
+259.68	0.0074103
+259.8	0.0074077
+259.92	0.00740511
+260.04	0.00740251
+260.16	0.00739992
+260.28	0.00739734
+260.4	0.00739475
+260.52	0.00739217
+260.64	0.00738959
+260.76	0.00738701
+260.88	0.00738443
+261	0.00738186
+261.12	0.00737928
+261.24	0.00737671
+261.36	0.00737415
+261.48	0.00737158
+261.6	0.00736902
+261.72	0.00736645
+261.84	0.0073639
+261.96	0.00736134
+262.08	0.00735878
+262.2	0.00735623
+262.32	0.00735368
+262.44	0.00735113
+262.56	0.00734858
+262.68	0.00734604
+262.8	0.0073435
+262.92	0.00734096
+263.04	0.00733842
+263.16	0.00733588
+263.28	0.00733335
+263.4	0.00733082
+263.52	0.00732829
+263.64	0.00732576
+263.76	0.00732323
+263.88	0.00732071
+264	0.00731819
+264.12	0.00731567
+264.24	0.00731315
+264.36	0.00731064
+264.48	0.00730813
+264.6	0.00730562
+264.72	0.00730311
+264.84	0.0073006
+264.96	0.0072981
+265.08	0.00729559
+265.2	0.00729309
+265.32	0.00729059
+265.44	0.0072881
+265.56	0.0072856
+265.68	0.00728311
+265.8	0.00728062
+265.92	0.00727813
+266.04	0.00727565
+266.16	0.00727316
+266.28	0.00727068
+266.4	0.0072682
+266.52	0.00726572
+266.64	0.00726325
+266.76	0.00726078
+266.88	0.0072583
+267	0.00725583
+267.12	0.00725337
+267.24	0.0072509
+267.36	0.00724844
+267.48	0.00724598
+267.6	0.00724352
+267.72	0.00724106
+267.84	0.0072386
+267.96	0.00723615
+268.08	0.0072337
+268.2	0.00723125
+268.32	0.0072288
+268.44	0.00722636
+268.56	0.00722391
+268.68	0.00722147
+268.8	0.00721903
+268.92	0.0072166
+269.04	0.00721416
+269.16	0.00721173
+269.28	0.0072093
+269.4	0.00720687
+269.52	0.00720444
+269.64	0.00720201
+269.76	0.00719959
+269.88	0.00719717
+270	0.00719475
+270.12	0.00719233
+270.24	0.00718992
+270.36	0.0071875
+270.48	0.00718509
+270.6	0.00718268
+270.72	0.00718027
+270.84	0.00717787
+270.96	0.00717546
+271.08	0.00717306
+271.2	0.00717066
+271.32	0.00716826
+271.44	0.00716587
+271.56	0.00716347
+271.68	0.00716108
+271.8	0.00715869
+271.92	0.0071563
+272.04	0.00715392
+272.16	0.00715153
+272.28	0.00714915
+272.4	0.00714677
+272.52	0.00714439
+272.64	0.00714201
+272.76	0.00713964
+272.88	0.00713727
+273	0.0071349
+273.12	0.00713253
+273.24	0.00713016
+273.36	0.00712779
+273.48	0.00712543
+273.6	0.00712307
+273.72	0.00712071
+273.84	0.00711835
+273.96	0.007116
+274.08	0.00711364
+274.2	0.00711129
+274.32	0.00710894
+274.44	0.00710659
+274.56	0.00710425
+274.68	0.0071019
+274.8	0.00709956
+274.92	0.00709722
+275.04	0.00709488
+275.16	0.00709254
+275.28	0.00709021
+275.4	0.00708787
+275.52	0.00708554
+275.64	0.00708321
+275.76	0.00708089
+275.88	0.00707856
+276	0.00707624
+276.12	0.00707391
+276.24	0.00707159
+276.36	0.00706927
+276.48	0.00706696
+276.6	0.00706464
+276.72	0.00706233
+276.84	0.00706002
+276.96	0.00705771
+277.08	0.0070554
+277.2	0.0070531
+277.32	0.00705079
+277.44	0.00704849
+277.56	0.00704619
+277.68	0.00704389
+277.8	0.0070416
+277.92	0.0070393
+278.04	0.00703701
+278.16	0.00703472
+278.28	0.00703243
+278.4	0.00703014
+278.52	0.00702786
+278.64	0.00702557
+278.76	0.00702329
+278.88	0.00702101
+279	0.00701873
+279.12	0.00701646
+279.24	0.00701418
+279.36	0.00701191
+279.48	0.00700964
+279.6	0.00700737
+279.72	0.0070051
+279.84	0.00700284
+279.96	0.00700057
+280.08	0.00699831
+280.2	0.00699605
+280.32	0.00699379
+280.44	0.00699153
+280.56	0.00698928
+280.68	0.00698703
+280.8	0.00698477
+280.92	0.00698252
+281.04	0.00698028
+281.16	0.00697803
+281.28	0.00697578
+281.4	0.00697354
+281.52	0.0069713
+281.64	0.00696906
+281.76	0.00696682
+281.88	0.00696459
+282	0.00696235
+282.12	0.00696012
+282.24	0.00695789
+282.36	0.00695566
+282.48	0.00695344
+282.6	0.00695121
+282.72	0.00694899
+282.84	0.00694677
+282.96	0.00694455
+283.08	0.00694233
+283.2	0.00694011
+283.32	0.0069379
+283.44	0.00693568
+283.56	0.00693347
+283.68	0.00693126
+283.8	0.00692905
+283.92	0.00692685
+284.04	0.00692464
+284.16	0.00692244
+284.28	0.00692024
+284.4	0.00691804
+284.52	0.00691584
+284.64	0.00691364
+284.76	0.00691145
+284.88	0.00690926
+285	0.00690707
+285.12	0.00690488
+285.24	0.00690269
+285.36	0.0069005
+285.48	0.00689832
+285.6	0.00689614
+285.72	0.00689396
+285.84	0.00689178
+285.96	0.0068896
+286.08	0.00688742
+286.2	0.00688525
+286.32	0.00688308
+286.44	0.00688091
+286.56	0.00687874
+286.68	0.00687657
+286.8	0.0068744
+286.92	0.00687224
+287.04	0.00687008
+287.16	0.00686792
+287.28	0.00686576
+287.4	0.0068636
+287.52	0.00686144
+287.64	0.00685929
+287.76	0.00685714
+287.88	0.00685499
+288	0.00685284
+288.12	0.00685069
+288.24	0.00684854
+288.36	0.0068464
+288.48	0.00684426
+288.6	0.00684211
+288.72	0.00683998
+288.84	0.00683784
+288.96	0.0068357
+289.08	0.00683357
+289.2	0.00683143
+289.32	0.0068293
+289.44	0.00682717
+289.56	0.00682504
+289.68	0.00682292
+289.8	0.00682079
+289.92	0.00681867
+290.04	0.00681655
+290.16	0.00681443
+290.28	0.00681231
+290.4	0.00681019
+290.52	0.00680808
+290.64	0.00680597
+290.76	0.00680385
+290.88	0.00680174
+291	0.00679963
+291.12	0.00679753
+291.24	0.00679542
+291.36	0.00679332
+291.48	0.00679122
+291.6	0.00678911
+291.72	0.00678702
+291.84	0.00678492
+291.96	0.00678282
+292.08	0.00678073
+292.2	0.00677863
+292.32	0.00677654
+292.44	0.00677445
+292.56	0.00677237
+292.68	0.00677028
+292.8	0.00676819
+292.92	0.00676611
+293.04	0.00676403
+293.16	0.00676195
+293.28	0.00675987
+293.4	0.00675779
+293.52	0.00675572
+293.64	0.00675364
+293.76	0.00675157
+293.88	0.0067495
+294	0.00674743
+294.12	0.00674536
+294.24	0.0067433
+294.36	0.00674123
+294.48	0.00673917
+294.6	0.00673711
+294.72	0.00673505
+294.84	0.00673299
+294.96	0.00673093
+295.08	0.00672888
+295.2	0.00672682
+295.32	0.00672477
+295.44	0.00672272
+295.56	0.00672067
+295.68	0.00671862
+295.8	0.00671658
+295.92	0.00671453
+296.04	0.00671249
+296.16	0.00671045
+296.28	0.00670841
+296.4	0.00670637
+296.52	0.00670433
+296.64	0.0067023
+296.76	0.00670027
+296.88	0.00669823
+297	0.0066962
+297.12	0.00669417
+297.24	0.00669215
+297.36	0.00669012
+297.48	0.0066881
+297.6	0.00668607
+297.72	0.00668405
+297.84	0.00668203
+297.96	0.00668001
+298.08	0.006678
+298.2	0.00667598
+298.32	0.00667397
+298.44	0.00667196
+298.56	0.00666994
+298.68	0.00666793
+298.8	0.00666593
+298.92	0.00666392
+299.04	0.00666192
+299.16	0.00665991
+299.28	0.00665791
+299.4	0.00665591
+299.52	0.00665391
+299.64	0.00665191
+299.76	0.00664992
+299.88	0.00664792
+300	0.00664593
+300.12	0.00664394
+300.24	0.00664195
+300.36	0.00663996
+300.48	0.00663797
+300.6	0.00663598
+300.72	0.006634
+300.84	0.00663202
+300.96	0.00663003
+301.08	0.00662805
+301.2	0.00662608
+301.32	0.0066241
+301.44	0.00662212
+301.56	0.00662015
+301.68	0.00661818
+301.8	0.0066162
+301.92	0.00661423
+302.04	0.00661227
+302.16	0.0066103
+302.28	0.00660833
+302.4	0.00660637
+302.52	0.00660441
+302.64	0.00660244
+302.76	0.00660048
+302.88	0.00659853
+303	0.00659657
+303.12	0.00659461
+303.24	0.00659266
+303.36	0.00659071
+303.48	0.00658875
+303.6	0.0065868
+303.72	0.00658486
+303.84	0.00658291
+303.96	0.00658096
+304.08	0.00657902
+304.2	0.00657708
+304.32	0.00657513
+304.44	0.00657319
+304.56	0.00657126
+304.68	0.00656932
+304.8	0.00656738
+304.92	0.00656545
+305.04	0.00656352
+305.16	0.00656158
+305.28	0.00655965
+305.4	0.00655772
+305.52	0.0065558
+305.64	0.00655387
+305.76	0.00655195
+305.88	0.00655002
+306	0.0065481
+306.12	0.00654618
+306.24	0.00654426
+306.36	0.00654234
+306.48	0.00654043
+306.6	0.00653851
+306.72	0.0065366
+306.84	0.00653469
+306.96	0.00653278
+307.08	0.00653087
+307.2	0.00652896
+307.32	0.00652705
+307.44	0.00652515
+307.56	0.00652324
+307.68	0.00652134
+307.8	0.00651944
+307.92	0.00651754
+308.04	0.00651564
+308.16	0.00651375
+308.28	0.00651185
+308.4	0.00650996
+308.52	0.00650806
+308.64	0.00650617
+308.76	0.00650428
+308.88	0.00650239
+309	0.00650051
+309.12	0.00649862
+309.24	0.00649673
+309.36	0.00649485
+309.48	0.00649297
+309.6	0.00649109
+309.72	0.00648921
+309.84	0.00648733
+309.96	0.00648545
+310.08	0.00648358
+310.2	0.00648171
+310.32	0.00647983
+310.44	0.00647796
+310.56	0.00647609
+310.68	0.00647422
+310.8	0.00647236
+310.92	0.00647049
+311.04	0.00646862
+311.16	0.00646676
+311.28	0.0064649
+311.4	0.00646304
+311.52	0.00646118
+311.64	0.00645932
+311.76	0.00645746
+311.88	0.00645561
+312	0.00645375
+312.12	0.0064519
+312.24	0.00645005
+312.36	0.0064482
+312.48	0.00644635
+312.6	0.0064445
+312.72	0.00644266
+312.84	0.00644081
+312.96	0.00643897
+313.08	0.00643713
+313.2	0.00643528
+313.32	0.00643345
+313.44	0.00643161
+313.56	0.00642977
+313.68	0.00642793
+313.8	0.0064261
+313.92	0.00642427
+314.04	0.00642243
+314.16	0.0064206
+314.28	0.00641877
+314.4	0.00641695
+314.52	0.00641512
+314.64	0.00641329
+314.76	0.00641147
+314.88	0.00640965
+315	0.00640782
+315.12	0.006406
+315.24	0.00640418
+315.36	0.00640237
+315.48	0.00640055
+315.6	0.00639873
+315.72	0.00639692
+315.84	0.00639511
+315.96	0.0063933
+316.08	0.00639149
+316.2	0.00638968
+316.32	0.00638787
+316.44	0.00638606
+316.56	0.00638426
+316.68	0.00638245
+316.8	0.00638065
+316.92	0.00637885
+317.04	0.00637705
+317.16	0.00637525
+317.28	0.00637345
+317.4	0.00637166
+317.52	0.00636986
+317.64	0.00636807
+317.76	0.00636627
+317.88	0.00636448
+318	0.00636269
+318.12	0.0063609
+318.24	0.00635912
+318.36	0.00635733
+318.48	0.00635554
+318.6	0.00635376
+318.72	0.00635198
+318.84	0.0063502
+318.96	0.00634842
+319.08	0.00634664
+319.2	0.00634486
+319.32	0.00634308
+319.44	0.00634131
+319.56	0.00633953
+319.68	0.00633776
+319.8	0.00633599
+319.92	0.00633422
+320.04	0.00633245
+320.16	0.00633068
+320.28	0.00632891
+320.4	0.00632715
+320.52	0.00632538
+320.64	0.00632362
+320.76	0.00632186
+320.88	0.0063201
+321	0.00631834
+321.12	0.00631658
+321.24	0.00631482
+321.36	0.00631307
+321.48	0.00631131
+321.6	0.00630956
+321.72	0.00630781
+321.84	0.00630606
+321.96	0.00630431
+322.08	0.00630256
+322.2	0.00630081
+322.32	0.00629907
+322.44	0.00629732
+322.56	0.00629558
+322.68	0.00629383
+322.8	0.00629209
+322.92	0.00629035
+323.04	0.00628861
+323.16	0.00628688
+323.28	0.00628514
+323.4	0.0062834
+323.52	0.00628167
+323.64	0.00627994
+323.76	0.0062782
+323.88	0.00627647
+324	0.00627474
+324.12	0.00627302
+324.24	0.00627129
+324.36	0.00626956
+324.48	0.00626784
+324.6	0.00626611
+324.72	0.00626439
+324.84	0.00626267
+324.96	0.00626095
+325.08	0.00625923
+325.2	0.00625751
+325.32	0.0062558
+325.44	0.00625408
+325.56	0.00625237
+325.68	0.00625066
+325.8	0.00624894
+325.92	0.00624723
+326.04	0.00624552
+326.16	0.00624381
+326.28	0.00624211
+326.4	0.0062404
+326.52	0.0062387
+326.64	0.00623699
+326.76	0.00623529
+326.88	0.00623359
+327	0.00623189
+327.12	0.00623019
+327.24	0.00622849
+327.36	0.00622679
+327.48	0.0062251
+327.6	0.0062234
+327.72	0.00622171
+327.84	0.00622002
+327.96	0.00621833
+328.08	0.00621664
+328.2	0.00621495
+328.32	0.00621326
+328.44	0.00621157
+328.56	0.00620989
+328.68	0.0062082
+328.8	0.00620652
+328.92	0.00620484
+329.04	0.00620316
+329.16	0.00620148
+329.28	0.0061998
+329.4	0.00619812
+329.52	0.00619645
+329.64	0.00619477
+329.76	0.0061931
+329.88	0.00619142
+330	0.00618975
+330.12	0.00618808
+330.24	0.00618641
+330.36	0.00618474
+330.48	0.00618307
+330.6	0.00618141
+330.72	0.00617974
+330.84	0.00617808
+330.96	0.00617642
+331.08	0.00617475
+331.2	0.00617309
+331.32	0.00617143
+331.44	0.00616978
+331.56	0.00616812
+331.68	0.00616646
+331.8	0.00616481
+331.92	0.00616315
+332.04	0.0061615
+332.16	0.00615985
+332.28	0.0061582
+332.4	0.00615655
+332.52	0.0061549
+332.64	0.00615325
+332.76	0.00615161
+332.88	0.00614996
+333	0.00614832
+333.12	0.00614667
+333.24	0.00614503
+333.36	0.00614339
+333.48	0.00614175
+333.6	0.00614011
+333.72	0.00613847
+333.84	0.00613684
+333.96	0.0061352
+334.08	0.00613357
+334.2	0.00613193
+334.32	0.0061303
+334.44	0.00612867
+334.56	0.00612704
+334.68	0.00612541
+334.8	0.00612378
+334.92	0.00612216
+335.04	0.00612053
+335.16	0.00611891
+335.28	0.00611728
+335.4	0.00611566
+335.52	0.00611404
+335.64	0.00611242
+335.76	0.0061108
+335.88	0.00610918
+336	0.00610756
+336.12	0.00610595
+336.24	0.00610433
+336.36	0.00610272
+336.48	0.00610111
+336.6	0.00609949
+336.72	0.00609788
+336.84	0.00609627
+336.96	0.00609466
+337.08	0.00609306
+337.2	0.00609145
+337.32	0.00608985
+337.44	0.00608824
+337.56	0.00608664
+337.68	0.00608504
+337.8	0.00608343
+337.92	0.00608183
+338.04	0.00608023
+338.16	0.00607864
+338.28	0.00607704
+338.4	0.00607544
+338.52	0.00607385
+338.64	0.00607225
+338.76	0.00607066
+338.88	0.00606907
+339	0.00606748
+339.12	0.00606589
+339.24	0.0060643
+339.36	0.00606271
+339.48	0.00606113
+339.6	0.00605954
+339.72	0.00605796
+339.84	0.00605637
+339.96	0.00605479
+340.08	0.00605321
+340.2	0.00605163
+340.32	0.00605005
+340.44	0.00604847
+340.56	0.00604689
+340.68	0.00604532
+340.8	0.00604374
+340.92	0.00604217
+341.04	0.00604059
+341.16	0.00603902
+341.28	0.00603745
+341.4	0.00603588
+341.52	0.00603431
+341.64	0.00603274
+341.76	0.00603118
+341.88	0.00602961
+342	0.00602804
+342.12	0.00602648
+342.24	0.00602492
+342.36	0.00602335
+342.48	0.00602179
+342.6	0.00602023
+342.72	0.00601867
+342.84	0.00601712
+342.96	0.00601556
+343.08	0.006014
+343.2	0.00601245
+343.32	0.00601089
+343.44	0.00600934
+343.56	0.00600779
+343.68	0.00600624
+343.8	0.00600469
+343.92	0.00600314
+344.04	0.00600159
+344.16	0.00600004
+344.28	0.0059985
+344.4	0.00599695
+344.52	0.00599541
+344.64	0.00599387
+344.76	0.00599232
+344.88	0.00599078
+345	0.00598924
+345.12	0.0059877
+345.24	0.00598617
+345.36	0.00598463
+345.48	0.00598309
+345.6	0.00598156
+345.72	0.00598002
+345.84	0.00597849
+345.96	0.00597696
+346.08	0.00597543
+346.2	0.0059739
+346.32	0.00597237
+346.44	0.00597084
+346.56	0.00596931
+346.68	0.00596779
+346.8	0.00596626
+346.92	0.00596474
+347.04	0.00596321
+347.16	0.00596169
+347.28	0.00596017
+347.4	0.00595865
+347.52	0.00595713
+347.64	0.00595561
+347.76	0.00595409
+347.88	0.00595258
+348	0.00595106
+348.12	0.00594955
+348.24	0.00594803
+348.36	0.00594652
+348.48	0.00594501
+348.6	0.0059435
+348.72	0.00594199
+348.84	0.00594048
+348.96	0.00593897
+349.08	0.00593747
+349.2	0.00593596
+349.32	0.00593445
+349.44	0.00593295
+349.56	0.00593145
+349.68	0.00592995
+349.8	0.00592844
+349.92	0.00592694
+350.04	0.00592545
+350.16	0.00592395
+350.28	0.00592245
+350.4	0.00592095
+350.52	0.00591946
+350.64	0.00591796
+350.76	0.00591647
+350.88	0.00591498
+351	0.00591349
+351.12	0.00591199
+351.24	0.0059105
+351.36	0.00590902
+351.48	0.00590753
+351.6	0.00590604
+351.72	0.00590455
+351.84	0.00590307
+351.96	0.00590159
+352.08	0.0059001
+352.2	0.00589862
+352.32	0.00589714
+352.44	0.00589566
+352.56	0.00589418
+352.68	0.0058927
+352.8	0.00589122
+352.92	0.00588975
+353.04	0.00588827
+353.16	0.0058868
+353.28	0.00588532
+353.4	0.00588385
+353.52	0.00588238
+353.64	0.00588091
+353.76	0.00587944
+353.88	0.00587797
+354	0.0058765
+354.12	0.00587503
+354.24	0.00587356
+354.36	0.0058721
+354.48	0.00587063
+354.6	0.00586917
+354.72	0.00586771
+354.84	0.00586624
+354.96	0.00586478
+355.08	0.00586332
+355.2	0.00586186
+355.32	0.00586041
+355.44	0.00585895
+355.56	0.00585749
+355.68	0.00585604
+355.8	0.00585458
+355.92	0.00585313
+356.04	0.00585168
+356.16	0.00585022
+356.28	0.00584877
+356.4	0.00584732
+356.52	0.00584587
+356.64	0.00584443
+356.76	0.00584298
+356.88	0.00584153
+357	0.00584009
+357.12	0.00583864
+357.24	0.0058372
+357.36	0.00583575
+357.48	0.00583431
+357.6	0.00583287
+357.72	0.00583143
+357.84	0.00582999
+357.96	0.00582855
+358.08	0.00582712
+358.2	0.00582568
+358.32	0.00582424
+358.44	0.00582281
+358.56	0.00582137
+358.68	0.00581994
+358.8	0.00581851
+358.92	0.00581708
+359.04	0.00581565
+359.16	0.00581422
+359.28	0.00581279
+359.4	0.00581136
+359.52	0.00580994
+359.64	0.00580851
+359.76	0.00580708
+359.88	0.00580566
+360	0.00580424
+360.12	0.00580281
+360.24	0.00580139
+360.36	0.00579997
+360.48	0.00579855
+360.6	0.00579713
+360.72	0.00579571
+360.84	0.0057943
+360.96	0.00579288
+361.08	0.00579147
+361.2	0.00579005
+361.32	0.00578864
+361.44	0.00578722
+361.56	0.00578581
+361.68	0.0057844
+361.8	0.00578299
+361.92	0.00578158
+362.04	0.00578017
+362.16	0.00577877
+362.28	0.00577736
+362.4	0.00577595
+362.52	0.00577455
+362.64	0.00577314
+362.76	0.00577174
+362.88	0.00577034
+363	0.00576894
+363.12	0.00576754
+363.24	0.00576614
+363.36	0.00576474
+363.48	0.00576334
+363.6	0.00576194
+363.72	0.00576054
+363.84	0.00575915
+363.96	0.00575775
+364.08	0.00575636
+364.2	0.00575497
+364.32	0.00575357
+364.44	0.00575218
+364.56	0.00575079
+364.68	0.0057494
+364.8	0.00574801
+364.92	0.00574663
+365.04	0.00574524
+365.16	0.00574385
+365.28	0.00574247
+365.4	0.00574108
+365.52	0.0057397
+365.64	0.00573832
+365.76	0.00573693
+365.88	0.00573555
+366	0.00573417
+366.12	0.00573279
+366.24	0.00573141
+366.36	0.00573004
+366.48	0.00572866
+366.6	0.00572728
+366.72	0.00572591
+366.84	0.00572453
+366.96	0.00572316
+367.08	0.00572179
+367.2	0.00572041
+367.32	0.00571904
+367.44	0.00571767
+367.56	0.0057163
+367.68	0.00571493
+367.8	0.00571357
+367.92	0.0057122
+368.04	0.00571083
+368.16	0.00570947
+368.28	0.0057081
+368.4	0.00570674
+368.52	0.00570538
+368.64	0.00570401
+368.76	0.00570265
+368.88	0.00570129
+369	0.00569993
+369.12	0.00569857
+369.24	0.00569722
+369.36	0.00569586
+369.48	0.0056945
+369.6	0.00569315
+369.72	0.00569179
+369.84	0.00569044
+369.96	0.00568908
+370.08	0.00568773
+370.2	0.00568638
+370.32	0.00568503
+370.44	0.00568368
+370.56	0.00568233
+370.68	0.00568098
+370.8	0.00567963
+370.92	0.00567829
+371.04	0.00567694
+371.16	0.0056756
+371.28	0.00567425
+371.4	0.00567291
+371.52	0.00567157
+371.64	0.00567023
+371.76	0.00566888
+371.88	0.00566754
+372	0.0056662
+372.12	0.00566487
+372.24	0.00566353
+372.36	0.00566219
+372.48	0.00566086
+372.6	0.00565952
+372.72	0.00565819
+372.84	0.00565685
+372.96	0.00565552
+373.08	0.00565419
+373.2	0.00565285
+373.32	0.00565152
+373.44	0.00565019
+373.56	0.00564887
+373.68	0.00564754
+373.8	0.00564621
+373.92	0.00564488
+374.04	0.00564356
+374.16	0.00564223
+374.28	0.00564091
+374.4	0.00563958
+374.52	0.00563826
+374.64	0.00563694
+374.76	0.00563562
+374.88	0.0056343
+375	0.00563298
+375.12	0.00563166
+375.24	0.00563034
+375.36	0.00562902
+375.48	0.00562771
+375.6	0.00562639
+375.72	0.00562508
+375.84	0.00562376
+375.96	0.00562245
+376.08	0.00562114
+376.2	0.00561982
+376.32	0.00561851
+376.44	0.0056172
+376.56	0.00561589
+376.68	0.00561459
+376.8	0.00561328
+376.92	0.00561197
+377.04	0.00561066
+377.16	0.00560936
+377.28	0.00560805
+377.4	0.00560675
+377.52	0.00560545
+377.64	0.00560414
+377.76	0.00560284
+377.88	0.00560154
+378	0.00560024
+378.12	0.00559894
+378.24	0.00559764
+378.36	0.00559634
+378.48	0.00559505
+378.6	0.00559375
+378.72	0.00559246
+378.84	0.00559116
+378.96	0.00558987
+379.08	0.00558857
+379.2	0.00558728
+379.32	0.00558599
+379.44	0.0055847
+379.56	0.00558341
+379.68	0.00558212
+379.8	0.00558083
+379.92	0.00557954
+380.04	0.00557825
+380.16	0.00557697
+380.28	0.00557568
+380.4	0.0055744
+380.52	0.00557311
+380.64	0.00557183
+380.76	0.00557055
+380.88	0.00556926
+381	0.00556798
+381.12	0.0055667
+381.24	0.00556542
+381.36	0.00556414
+381.48	0.00556286
+381.6	0.00556159
+381.72	0.00556031
+381.84	0.00555903
+381.96	0.00555776
+382.08	0.00555648
+382.2	0.00555521
+382.32	0.00555394
+382.44	0.00555266
+382.56	0.00555139
+382.68	0.00555012
+382.8	0.00554885
+382.92	0.00554758
+383.04	0.00554631
+383.16	0.00554505
+383.28	0.00554378
+383.4	0.00554251
+383.52	0.00554125
+383.64	0.00553998
+383.76	0.00553872
+383.88	0.00553745
+384	0.00553619
+384.12	0.00553493
+384.24	0.00553367
+384.36	0.00553241
+384.48	0.00553115
+384.6	0.00552989
+384.72	0.00552863
+384.84	0.00552737
+384.96	0.00552612
+385.08	0.00552486
+385.2	0.0055236
+385.32	0.00552235
+385.44	0.0055211
+385.56	0.00551984
+385.68	0.00551859
+385.8	0.00551734
+385.92	0.00551609
+386.04	0.00551484
+386.16	0.00551359
+386.28	0.00551234
+386.4	0.00551109
+386.52	0.00550984
+386.64	0.00550859
+386.76	0.00550735
+386.88	0.0055061
+387	0.00550486
+387.12	0.00550361
+387.24	0.00550237
+387.36	0.00550113
+387.48	0.00549989
+387.6	0.00549865
+387.72	0.00549741
+387.84	0.00549617
+387.96	0.00549493
+388.08	0.00549369
+388.2	0.00549245
+388.32	0.00549121
+388.44	0.00548998
+388.56	0.00548874
+388.68	0.00548751
+388.8	0.00548627
+388.92	0.00548504
+389.04	0.00548381
+389.16	0.00548258
+389.28	0.00548135
+389.4	0.00548012
+389.52	0.00547889
+389.64	0.00547766
+389.76	0.00547643
+389.88	0.0054752
+390	0.00547397
+390.12	0.00547275
+390.24	0.00547152
+390.36	0.0054703
+390.48	0.00546907
+390.6	0.00546785
+390.72	0.00546663
+390.84	0.0054654
+390.96	0.00546418
+391.08	0.00546296
+391.2	0.00546174
+391.32	0.00546052
+391.44	0.00545931
+391.56	0.00545809
+391.68	0.00545687
+391.8	0.00545565
+391.92	0.00545444
+392.04	0.00545322
+392.16	0.00545201
+392.28	0.00545079
+392.4	0.00544958
+392.52	0.00544837
+392.64	0.00544716
+392.76	0.00544595
+392.88	0.00544474
+393	0.00544353
+393.12	0.00544232
+393.24	0.00544111
+393.36	0.0054399
+393.48	0.00543869
+393.6	0.00543749
+393.72	0.00543628
+393.84	0.00543508
+393.96	0.00543387
+394.08	0.00543267
+394.2	0.00543147
+394.32	0.00543027
+394.44	0.00542906
+394.56	0.00542786
+394.68	0.00542666
+394.8	0.00542546
+394.92	0.00542427
+395.04	0.00542307
+395.16	0.00542187
+395.28	0.00542067
+395.4	0.00541948
+395.52	0.00541828
+395.64	0.00541709
+395.76	0.00541589
+395.88	0.0054147
+396	0.00541351
+396.12	0.00541232
+396.24	0.00541112
+396.36	0.00540993
+396.48	0.00540874
+396.6	0.00540755
+396.72	0.00540637
+396.84	0.00540518
+396.96	0.00540399
+397.08	0.0054028
+397.2	0.00540162
+397.32	0.00540043
+397.44	0.00539925
+397.56	0.00539806
+397.68	0.00539688
+397.8	0.0053957
+397.92	0.00539452
+398.04	0.00539334
+398.16	0.00539215
+398.28	0.00539097
+398.4	0.0053898
+398.52	0.00538862
+398.64	0.00538744
+398.76	0.00538626
+398.88	0.00538508
+399	0.00538391
+399.12	0.00538273
+399.24	0.00538156
+399.36	0.00538038
+399.48	0.00537921
+399.6	0.00537804
+399.72	0.00537687
+399.84	0.0053757
+399.96	0.00537452
+400.08	0.00537335
+400.2	0.00537218
+400.32	0.00537102
+400.44	0.00536985
+400.56	0.00536868
+400.68	0.00536751
+400.8	0.00536635
+400.92	0.00536518
+401.04	0.00536402
+401.16	0.00536285
+401.28	0.00536169
+401.4	0.00536053
+401.52	0.00535936
+401.64	0.0053582
+401.76	0.00535704
+401.88	0.00535588
+402	0.00535472
+402.12	0.00535356
+402.24	0.0053524
+402.36	0.00535125
+402.48	0.00535009
+402.6	0.00534893
+402.72	0.00534778
+402.84	0.00534662
+402.96	0.00534547
+403.08	0.00534431
+403.2	0.00534316
+403.32	0.00534201
+403.44	0.00534085
+403.56	0.0053397
+403.68	0.00533855
+403.8	0.0053374
+403.92	0.00533625
+404.04	0.0053351
+404.16	0.00533396
+404.28	0.00533281
+404.4	0.00533166
+404.52	0.00533051
+404.64	0.00532937
+404.76	0.00532822
+404.88	0.00532708
+405	0.00532594
+405.12	0.00532479
+405.24	0.00532365
+405.36	0.00532251
+405.48	0.00532137
+405.6	0.00532023
+405.72	0.00531909
+405.84	0.00531795
+405.96	0.00531681
+406.08	0.00531567
+406.2	0.00531453
+406.32	0.0053134
+406.44	0.00531226
+406.56	0.00531112
+406.68	0.00530999
+406.8	0.00530885
+406.92	0.00530772
+407.04	0.00530659
+407.16	0.00530545
+407.28	0.00530432
+407.4	0.00530319
+407.52	0.00530206
+407.64	0.00530093
+407.76	0.0052998
+407.88	0.00529867
+408	0.00529754
+408.12	0.00529642
+408.24	0.00529529
+408.36	0.00529416
+408.48	0.00529304
+408.6	0.00529191
+408.72	0.00529079
+408.84	0.00528966
+408.96	0.00528854
+409.08	0.00528742
+409.2	0.0052863
+409.32	0.00528517
+409.44	0.00528405
+409.56	0.00528293
+409.68	0.00528181
+409.8	0.0052807
+409.92	0.00527958
+410.04	0.00527846
+410.16	0.00527734
+410.28	0.00527623
+410.4	0.00527511
+410.52	0.00527399
+410.64	0.00527288
+410.76	0.00527177
+410.88	0.00527065
+411	0.00526954
+411.12	0.00526843
+411.24	0.00526731
+411.36	0.0052662
+411.48	0.00526509
+411.6	0.00526398
+411.72	0.00526287
+411.84	0.00526177
+411.96	0.00526066
+412.08	0.00525955
+412.2	0.00525844
+412.32	0.00525734
+412.44	0.00525623
+412.56	0.00525513
+412.68	0.00525402
+412.8	0.00525292
+412.92	0.00525181
+413.04	0.00525071
+413.16	0.00524961
+413.28	0.00524851
+413.4	0.00524741
+413.52	0.00524631
+413.64	0.00524521
+413.76	0.00524411
+413.88	0.00524301
+414	0.00524191
+414.12	0.00524081
+414.24	0.00523972
+414.36	0.00523862
+414.48	0.00523753
+414.6	0.00523643
+414.72	0.00523534
+414.84	0.00523424
+414.96	0.00523315
+415.08	0.00523206
+415.2	0.00523096
+415.32	0.00522987
+415.44	0.00522878
+415.56	0.00522769
+415.68	0.0052266
+415.8	0.00522551
+415.92	0.00522442
+416.04	0.00522334
+416.16	0.00522225
+416.28	0.00522116
+416.4	0.00522008
+416.52	0.00521899
+416.64	0.00521791
+416.76	0.00521682
+416.88	0.00521574
+417	0.00521465
+417.12	0.00521357
+417.24	0.00521249
+417.36	0.00521141
+417.48	0.00521033
+417.6	0.00520925
+417.72	0.00520817
+417.84	0.00520709
+417.96	0.00520601
+418.08	0.00520493
+418.2	0.00520385
+418.32	0.00520278
+418.44	0.0052017
+418.56	0.00520062
+418.68	0.00519955
+418.8	0.00519847
+418.92	0.0051974
+419.04	0.00519633
+419.16	0.00519525
+419.28	0.00519418
+419.4	0.00519311
+419.52	0.00519204
+419.64	0.00519097
+419.76	0.0051899
+419.88	0.00518883
+420	0.00518776
+420.12	0.00518669
+420.24	0.00518562
+420.36	0.00518456
+420.48	0.00518349
+420.6	0.00518242
+420.72	0.00518136
+420.84	0.00518029
+420.96	0.00517923
+421.08	0.00517817
+421.2	0.0051771
+421.32	0.00517604
+421.44	0.00517498
+421.56	0.00517392
+421.68	0.00517286
+421.8	0.00517179
+421.92	0.00517073
+422.04	0.00516968
+422.16	0.00516862
+422.28	0.00516756
+422.4	0.0051665
+422.52	0.00516544
+422.64	0.00516439
+422.76	0.00516333
+422.88	0.00516228
+423	0.00516122
+423.12	0.00516017
+423.24	0.00515911
+423.36	0.00515806
+423.48	0.00515701
+423.6	0.00515596
+423.72	0.0051549
+423.84	0.00515385
+423.96	0.0051528
+424.08	0.00515175
+424.2	0.0051507
+424.32	0.00514966
+424.44	0.00514861
+424.56	0.00514756
+424.68	0.00514651
+424.8	0.00514547
+424.92	0.00514442
+425.04	0.00514337
+425.16	0.00514233
+425.28	0.00514129
+425.4	0.00514024
+425.52	0.0051392
+425.64	0.00513816
+425.76	0.00513711
+425.88	0.00513607
+426	0.00513503
+426.12	0.00513399
+426.24	0.00513295
+426.36	0.00513191
+426.48	0.00513087
+426.6	0.00512983
+426.72	0.0051288
+426.84	0.00512776
+426.96	0.00512672
+427.08	0.00512569
+427.2	0.00512465
+427.32	0.00512362
+427.44	0.00512258
+427.56	0.00512155
+427.68	0.00512051
+427.8	0.00511948
+427.92	0.00511845
+428.04	0.00511742
+428.16	0.00511639
+428.28	0.00511536
+428.4	0.00511433
+428.52	0.0051133
+428.64	0.00511227
+428.76	0.00511124
+428.88	0.00511021
+429	0.00510918
+429.12	0.00510816
+429.24	0.00510713
+429.36	0.0051061
+429.48	0.00510508
+429.6	0.00510405
+429.72	0.00510303
+429.84	0.00510201
+429.96	0.00510098
+430.08	0.00509996
+430.2	0.00509894
+430.32	0.00509792
+430.44	0.0050969
+430.56	0.00509587
+430.68	0.00509485
+430.8	0.00509384
+430.92	0.00509282
+431.04	0.0050918
+431.16	0.00509078
+431.28	0.00508976
+431.4	0.00508875
+431.52	0.00508773
+431.64	0.00508671
+431.76	0.0050857
+431.88	0.00508468
+432	0.00508367
+432.12	0.00508266
+432.24	0.00508164
+432.36	0.00508063
+432.48	0.00507962
+432.6	0.00507861
+432.72	0.0050776
+432.84	0.00507658
+432.96	0.00507557
+433.08	0.00507457
+433.2	0.00507356
+433.32	0.00507255
+433.44	0.00507154
+433.56	0.00507053
+433.68	0.00506953
+433.8	0.00506852
+433.92	0.00506751
+434.04	0.00506651
+434.16	0.0050655
+434.28	0.0050645
+434.4	0.0050635
+434.52	0.00506249
+434.64	0.00506149
+434.76	0.00506049
+434.88	0.00505949
+435	0.00505848
+435.12	0.00505748
+435.24	0.00505648
+435.36	0.00505548
+435.48	0.00505449
+435.6	0.00505349
+435.72	0.00505249
+435.84	0.00505149
+435.96	0.00505049
+436.08	0.0050495
+436.2	0.0050485
+436.32	0.00504751
+436.44	0.00504651
+436.56	0.00504552
+436.68	0.00504452
+436.8	0.00504353
+436.92	0.00504254
+437.04	0.00504154
+437.16	0.00504055
+437.28	0.00503956
+437.4	0.00503857
+437.52	0.00503758
+437.64	0.00503659
+437.76	0.0050356
+437.88	0.00503461
+438	0.00503362
+438.12	0.00503263
+438.24	0.00503165
+438.36	0.00503066
+438.48	0.00502967
+438.6	0.00502869
+438.72	0.0050277
+438.84	0.00502672
+438.96	0.00502573
+439.08	0.00502475
+439.2	0.00502377
+439.32	0.00502278
+439.44	0.0050218
+439.56	0.00502082
+439.68	0.00501984
+439.8	0.00501886
+439.92	0.00501788
+440.04	0.0050169
+440.16	0.00501592
+440.28	0.00501494
+440.4	0.00501396
+440.52	0.00501298
+440.64	0.005012
+440.76	0.00501103
+440.88	0.00501005
+441	0.00500907
+441.12	0.0050081
+441.24	0.00500712
+441.36	0.00500615
+441.48	0.00500518
+441.6	0.0050042
+441.72	0.00500323
+441.84	0.00500226
+441.96	0.00500128
+442.08	0.00500031
+442.2	0.00499934
+442.32	0.00499837
+442.44	0.0049974
+442.56	0.00499643
+442.68	0.00499546
+442.8	0.0049945
+442.92	0.00499353
+443.04	0.00499256
+443.16	0.00499159
+443.28	0.00499063
+443.4	0.00498966
+443.52	0.00498869
+443.64	0.00498773
+443.76	0.00498677
+443.88	0.0049858
+444	0.00498484
+444.12	0.00498388
+444.24	0.00498291
+444.36	0.00498195
+444.48	0.00498099
+444.6	0.00498003
+444.72	0.00497907
+444.84	0.00497811
+444.96	0.00497715
+445.08	0.00497619
+445.2	0.00497523
+445.32	0.00497427
+445.44	0.00497332
+445.56	0.00497236
+445.68	0.0049714
+445.8	0.00497045
+445.92	0.00496949
+446.04	0.00496854
+446.16	0.00496758
+446.28	0.00496663
+446.4	0.00496567
+446.52	0.00496472
+446.64	0.00496377
+446.76	0.00496282
+446.88	0.00496186
+447	0.00496091
+447.12	0.00495996
+447.24	0.00495901
+447.36	0.00495806
+447.48	0.00495711
+447.6	0.00495616
+447.72	0.00495522
+447.84	0.00495427
+447.96	0.00495332
+448.08	0.00495237
+448.2	0.00495143
+448.32	0.00495048
+448.44	0.00494954
+448.56	0.00494859
+448.68	0.00494765
+448.8	0.0049467
+448.92	0.00494576
+449.04	0.00494482
+449.16	0.00494387
+449.28	0.00494293
+449.4	0.00494199
+449.52	0.00494105
+449.64	0.00494011
+449.76	0.00493917
+449.88	0.00493823
+450	0.00493729
+450.12	0.00493635
+450.24	0.00493541
+450.36	0.00493447
+450.48	0.00493353
+450.6	0.0049326
+450.72	0.00493166
+450.84	0.00493072
+450.96	0.00492979
+451.08	0.00492885
+451.2	0.00492792
+451.32	0.00492698
+451.44	0.00492605
+451.56	0.00492512
+451.68	0.00492418
+451.8	0.00492325
+451.92	0.00492232
+452.04	0.00492139
+452.16	0.00492046
+452.28	0.00491953
+452.4	0.0049186
+452.52	0.00491767
+452.64	0.00491674
+452.76	0.00491581
+452.88	0.00491488
+453	0.00491395
+453.12	0.00491303
+453.24	0.0049121
+453.36	0.00491117
+453.48	0.00491025
+453.6	0.00490932
+453.72	0.0049084
+453.84	0.00490747
+453.96	0.00490655
+454.08	0.00490562
+454.2	0.0049047
+454.32	0.00490378
+454.44	0.00490285
+454.56	0.00490193
+454.68	0.00490101
+454.8	0.00490009
+454.92	0.00489917
+455.04	0.00489825
+455.16	0.00489733
+455.28	0.00489641
+455.4	0.00489549
+455.52	0.00489457
+455.64	0.00489366
+455.76	0.00489274
+455.88	0.00489182
+456	0.00489091
+456.12	0.00488999
+456.24	0.00488907
+456.36	0.00488816
+456.48	0.00488724
+456.6	0.00488633
+456.72	0.00488542
+456.84	0.0048845
+456.96	0.00488359
+457.08	0.00488268
+457.2	0.00488177
+457.32	0.00488085
+457.44	0.00487994
+457.56	0.00487903
+457.68	0.00487812
+457.8	0.00487721
+457.92	0.0048763
+458.04	0.0048754
+458.16	0.00487449
+458.28	0.00487358
+458.4	0.00487267
+458.52	0.00487176
+458.64	0.00487086
+458.76	0.00486995
+458.88	0.00486905
+459	0.00486814
+459.12	0.00486724
+459.24	0.00486633
+459.36	0.00486543
+459.48	0.00486452
+459.6	0.00486362
+459.72	0.00486272
+459.84	0.00486182
+459.96	0.00486091
+460.08	0.00486001
+460.2	0.00485911
+460.32	0.00485821
+460.44	0.00485731
+460.56	0.00485641
+460.68	0.00485551
+460.8	0.00485462
+460.92	0.00485372
+461.04	0.00485282
+461.16	0.00485192
+461.28	0.00485102
+461.4	0.00485013
+461.52	0.00484923
+461.64	0.00484834
+461.76	0.00484744
+461.88	0.00484655
+462	0.00484565
+462.12	0.00484476
+462.24	0.00484387
+462.36	0.00484297
+462.48	0.00484208
+462.6	0.00484119
+462.72	0.0048403
+462.84	0.0048394
+462.96	0.00483851
+463.08	0.00483762
+463.2	0.00483673
+463.32	0.00483584
+463.44	0.00483495
+463.56	0.00483407
+463.68	0.00483318
+463.8	0.00483229
+463.92	0.0048314
+464.04	0.00483052
+464.16	0.00482963
+464.28	0.00482874
+464.4	0.00482786
+464.52	0.00482697
+464.64	0.00482609
+464.76	0.0048252
+464.88	0.00482432
+465	0.00482344
+465.12	0.00482255
+465.24	0.00482167
+465.36	0.00482079
+465.48	0.00481991
+465.6	0.00481902
+465.72	0.00481814
+465.84	0.00481726
+465.96	0.00481638
+466.08	0.0048155
+466.2	0.00481462
+466.32	0.00481375
+466.44	0.00481287
+466.56	0.00481199
+466.68	0.00481111
+466.8	0.00481023
+466.92	0.00480936
+467.04	0.00480848
+467.16	0.00480761
+467.28	0.00480673
+467.4	0.00480585
+467.52	0.00480498
+467.64	0.00480411
+467.76	0.00480323
+467.88	0.00480236
+468	0.00480149
+468.12	0.00480061
+468.24	0.00479974
+468.36	0.00479887
+468.48	0.004798
+468.6	0.00479713
+468.72	0.00479626
+468.84	0.00479539
+468.96	0.00479452
+469.08	0.00479365
+469.2	0.00479278
+469.32	0.00479191
+469.44	0.00479104
+469.56	0.00479018
+469.68	0.00478931
+469.8	0.00478844
+469.92	0.00478758
+470.04	0.00478671
+470.16	0.00478584
+470.28	0.00478498
+470.4	0.00478411
+470.52	0.00478325
+470.64	0.00478239
+470.76	0.00478152
+470.88	0.00478066
+471	0.0047798
+471.12	0.00477894
+471.24	0.00477807
+471.36	0.00477721
+471.48	0.00477635
+471.6	0.00477549
+471.72	0.00477463
+471.84	0.00477377
+471.96	0.00477291
+472.08	0.00477205
+472.2	0.00477119
+472.32	0.00477034
+472.44	0.00476948
+472.56	0.00476862
+472.68	0.00476776
+472.8	0.00476691
+472.92	0.00476605
+473.04	0.0047652
+473.16	0.00476434
+473.28	0.00476349
+473.4	0.00476263
+473.52	0.00476178
+473.64	0.00476092
+473.76	0.00476007
+473.88	0.00475922
+474	0.00475837
+474.12	0.00475751
+474.24	0.00475666
+474.36	0.00475581
+474.48	0.00475496
+474.6	0.00475411
+474.72	0.00475326
+474.84	0.00475241
+474.96	0.00475156
+475.08	0.00475071
+475.2	0.00474986
+475.32	0.00474902
+475.44	0.00474817
+475.56	0.00474732
+475.68	0.00474648
+475.8	0.00474563
+475.92	0.00474478
+476.04	0.00474394
+476.16	0.00474309
+476.28	0.00474225
+476.4	0.0047414
+476.52	0.00474056
+476.64	0.00473972
+476.76	0.00473887
+476.88	0.00473803
+477	0.00473719
+477.12	0.00473635
+477.24	0.0047355
+477.36	0.00473466
+477.48	0.00473382
+477.6	0.00473298
+477.72	0.00473214
+477.84	0.0047313
+477.96	0.00473046
+478.08	0.00472962
+478.2	0.00472879
+478.32	0.00472795
+478.44	0.00472711
+478.56	0.00472627
+478.68	0.00472544
+478.8	0.0047246
+478.92	0.00472376
+479.04	0.00472293
+479.16	0.00472209
+479.28	0.00472126
+479.4	0.00472042
+479.52	0.00471959
+479.64	0.00471876
+479.76	0.00471792
+479.88	0.00471709
+480	0.00471626
+480.12	0.00471543
+480.24	0.00471459
+480.36	0.00471376
+480.48	0.00471293
+480.6	0.0047121
+480.72	0.00471127
+480.84	0.00471044
+480.96	0.00470961
+481.08	0.00470878
+481.2	0.00470795
+481.32	0.00470713
+481.44	0.0047063
+481.56	0.00470547
+481.68	0.00470464
+481.8	0.00470382
+481.92	0.00470299
+482.04	0.00470216
+482.16	0.00470134
+482.28	0.00470051
+482.4	0.00469969
+482.52	0.00469886
+482.64	0.00469804
+482.76	0.00469722
+482.88	0.00469639
+483	0.00469557
+483.12	0.00469475
+483.24	0.00469393
+483.36	0.0046931
+483.48	0.00469228
+483.6	0.00469146
+483.72	0.00469064
+483.84	0.00468982
+483.96	0.004689
+484.08	0.00468818
+484.2	0.00468736
+484.32	0.00468654
+484.44	0.00468573
+484.56	0.00468491
+484.68	0.00468409
+484.8	0.00468327
+484.92	0.00468246
+485.04	0.00468164
+485.16	0.00468083
+485.28	0.00468001
+485.4	0.00467919
+485.52	0.00467838
+485.64	0.00467756
+485.76	0.00467675
+485.88	0.00467594
+486	0.00467512
+486.12	0.00467431
+486.24	0.0046735
+486.36	0.00467269
+486.48	0.00467187
+486.6	0.00467106
+486.72	0.00467025
+486.84	0.00466944
+486.96	0.00466863
+487.08	0.00466782
+487.2	0.00466701
+487.32	0.0046662
+487.44	0.00466539
+487.56	0.00466458
+487.68	0.00466378
+487.8	0.00466297
+487.92	0.00466216
+488.04	0.00466135
+488.16	0.00466055
+488.28	0.00465974
+488.4	0.00465894
+488.52	0.00465813
+488.64	0.00465733
+488.76	0.00465652
+488.88	0.00465572
+489	0.00465491
+489.12	0.00465411
+489.24	0.00465331
+489.36	0.0046525
+489.48	0.0046517
+489.6	0.0046509
+489.72	0.0046501
+489.84	0.00464929
+489.96	0.00464849
+490.08	0.00464769
+490.2	0.00464689
+490.32	0.00464609
+490.44	0.00464529
+490.56	0.00464449
+490.68	0.00464369
+490.8	0.0046429
+490.92	0.0046421
+491.04	0.0046413
+491.16	0.0046405
+491.28	0.00463971
+491.4	0.00463891
+491.52	0.00463811
+491.64	0.00463732
+491.76	0.00463652
+491.88	0.00463573
+492	0.00463493
+492.12	0.00463414
+492.24	0.00463334
+492.36	0.00463255
+492.48	0.00463176
+492.6	0.00463096
+492.72	0.00463017
+492.84	0.00462938
+492.96	0.00462859
+493.08	0.00462779
+493.2	0.004627
+493.32	0.00462621
+493.44	0.00462542
+493.56	0.00462463
+493.68	0.00462384
+493.8	0.00462305
+493.92	0.00462226
+494.04	0.00462147
+494.16	0.00462069
+494.28	0.0046199
+494.4	0.00461911
+494.52	0.00461832
+494.64	0.00461754
+494.76	0.00461675
+494.88	0.00461596
+495	0.00461518
+495.12	0.00461439
+495.24	0.00461361
+495.36	0.00461282
+495.48	0.00461204
+495.6	0.00461125
+495.72	0.00461047
+495.84	0.00460969
+495.96	0.0046089
+496.08	0.00460812
+496.2	0.00460734
+496.32	0.00460656
+496.44	0.00460578
+496.56	0.00460499
+496.68	0.00460421
+496.8	0.00460343
+496.92	0.00460265
+497.04	0.00460187
+497.16	0.00460109
+497.28	0.00460032
+497.4	0.00459954
+497.52	0.00459876
+497.64	0.00459798
+497.76	0.0045972
+497.88	0.00459643
+498	0.00459565
+498.12	0.00459487
+498.24	0.0045941
+498.36	0.00459332
+498.48	0.00459254
+498.6	0.00459177
+498.72	0.00459099
+498.84	0.00459022
+498.96	0.00458945
+499.08	0.00458867
+499.2	0.0045879
+499.32	0.00458712
+499.44	0.00458635
+499.56	0.00458558
+499.68	0.00458481
+499.8	0.00458404
+499.92	0.00458326
+500.04	0.00458249
+500.16	0.00458172
+500.28	0.00458095
+500.4	0.00458018
+500.52	0.00457941
+500.64	0.00457864
+500.76	0.00457787
+500.88	0.00457711
+501	0.00457634
+501.12	0.00457557
+501.24	0.0045748
+501.36	0.00457404
+501.48	0.00457327
+501.6	0.0045725
+501.72	0.00457174
+501.84	0.00457097
+501.96	0.0045702
+502.08	0.00456944
+502.2	0.00456867
+502.32	0.00456791
+502.44	0.00456715
+502.56	0.00456638
+502.68	0.00456562
+502.8	0.00456486
+502.92	0.00456409
+503.04	0.00456333
+503.16	0.00456257
+503.28	0.00456181
+503.4	0.00456105
+503.52	0.00456028
+503.64	0.00455952
+503.76	0.00455876
+503.88	0.004558
+504	0.00455724
+504.12	0.00455648
+504.24	0.00455572
+504.36	0.00455497
+504.48	0.00455421
+504.6	0.00455345
+504.72	0.00455269
+504.84	0.00455194
+504.96	0.00455118
+505.08	0.00455042
+505.2	0.00454967
+505.32	0.00454891
+505.44	0.00454815
+505.56	0.0045474
+505.68	0.00454664
+505.8	0.00454589
+505.92	0.00454513
+506.04	0.00454438
+506.16	0.00454363
+506.28	0.00454287
+506.4	0.00454212
+506.52	0.00454137
+506.64	0.00454062
+506.76	0.00453986
+506.88	0.00453911
+507	0.00453836
+507.12	0.00453761
+507.24	0.00453686
+507.36	0.00453611
+507.48	0.00453536
+507.6	0.00453461
+507.72	0.00453386
+507.84	0.00453311
+507.96	0.00453236
+508.08	0.00453161
+508.2	0.00453087
+508.32	0.00453012
+508.44	0.00452937
+508.56	0.00452863
+508.68	0.00452788
+508.8	0.00452713
+508.92	0.00452639
+509.04	0.00452564
+509.16	0.0045249
+509.28	0.00452415
+509.4	0.00452341
+509.52	0.00452266
+509.64	0.00452192
+509.76	0.00452117
+509.88	0.00452043
+510	0.00451969
+510.12	0.00451895
+510.24	0.0045182
+510.36	0.00451746
+510.48	0.00451672
+510.6	0.00451598
+510.72	0.00451524
+510.84	0.0045145
+510.96	0.00451376
+511.08	0.00451302
+511.2	0.00451228
+511.32	0.00451154
+511.44	0.0045108
+511.56	0.00451006
+511.68	0.00450932
+511.8	0.00450858
+511.92	0.00450784
+512.04	0.00450711
+512.16	0.00450637
+512.28	0.00450563
+512.4	0.0045049
+512.52	0.00450416
+512.64	0.00450342
+512.76	0.00450269
+512.88	0.00450195
+513	0.00450122
+513.12	0.00450049
+513.24	0.00449975
+513.36	0.00449902
+513.48	0.00449828
+513.6	0.00449755
+513.72	0.00449682
+513.84	0.00449608
+513.96	0.00449535
+514.08	0.00449462
+514.2	0.00449389
+514.32	0.00449316
+514.44	0.00449243
+514.56	0.0044917
+514.68	0.00449097
+514.8	0.00449024
+514.92	0.00448951
+515.04	0.00448878
+515.16	0.00448805
+515.28	0.00448732
+515.4	0.00448659
+515.52	0.00448586
+515.64	0.00448513
+515.76	0.00448441
+515.88	0.00448368
+516	0.00448295
+516.12	0.00448223
+516.24	0.0044815
+516.36	0.00448077
+516.48	0.00448005
+516.6	0.00447932
+516.72	0.0044786
+516.84	0.00447787
+516.96	0.00447715
+517.08	0.00447643
+517.2	0.0044757
+517.32	0.00447498
+517.44	0.00447426
+517.56	0.00447353
+517.68	0.00447281
+517.8	0.00447209
+517.92	0.00447137
+518.04	0.00447065
+518.16	0.00446992
+518.28	0.0044692
+518.4	0.00446848
+518.52	0.00446776
+518.64	0.00446704
+518.76	0.00446632
+518.88	0.0044656
+519	0.00446489
+519.12	0.00446417
+519.24	0.00446345
+519.36	0.00446273
+519.48	0.00446201
+519.6	0.0044613
+519.72	0.00446058
+519.84	0.00445986
+519.96	0.00445915
+520.08	0.00445843
+520.2	0.00445771
+520.32	0.004457
+520.44	0.00445628
+520.56	0.00445557
+520.68	0.00445485
+520.8	0.00445414
+520.92	0.00445342
+521.04	0.00445271
+521.16	0.004452
+521.28	0.00445128
+521.4	0.00445057
+521.52	0.00444986
+521.64	0.00444915
+521.76	0.00444844
+521.88	0.00444772
+522	0.00444701
+522.12	0.0044463
+522.24	0.00444559
+522.36	0.00444488
+522.48	0.00444417
+522.6	0.00444346
+522.72	0.00444275
+522.84	0.00444204
+522.96	0.00444133
+523.08	0.00444063
+523.2	0.00443992
+523.32	0.00443921
+523.44	0.0044385
+523.56	0.0044378
+523.68	0.00443709
+523.8	0.00443638
+523.92	0.00443568
+524.04	0.00443497
+524.16	0.00443426
+524.28	0.00443356
+524.4	0.00443285
+524.52	0.00443215
+524.64	0.00443144
+524.76	0.00443074
+524.88	0.00443004
+525	0.00442933
+525.12	0.00442863
+525.24	0.00442793
+525.36	0.00442722
+525.48	0.00442652
+525.6	0.00442582
+525.72	0.00442512
+525.84	0.00442442
+525.96	0.00442372
+526.08	0.00442301
+526.2	0.00442231
+526.32	0.00442161
+526.44	0.00442091
+526.56	0.00442021
+526.68	0.00441951
+526.8	0.00441882
+526.92	0.00441812
+527.04	0.00441742
+527.16	0.00441672
+527.28	0.00441602
+527.4	0.00441532
+527.52	0.00441463
+527.64	0.00441393
+527.76	0.00441323
+527.88	0.00441254
+528	0.00441184
+528.12	0.00441115
+528.24	0.00441045
+528.36	0.00440976
+528.48	0.00440906
+528.6	0.00440837
+528.72	0.00440767
+528.84	0.00440698
+528.96	0.00440628
+529.08	0.00440559
+529.2	0.0044049
+529.32	0.0044042
+529.44	0.00440351
+529.56	0.00440282
+529.68	0.00440213
+529.8	0.00440144
+529.92	0.00440075
+530.04	0.00440005
+530.16	0.00439936
+530.28	0.00439867
+530.4	0.00439798
+530.52	0.00439729
+530.64	0.0043966
+530.76	0.00439591
+530.88	0.00439523
+531	0.00439454
+531.12	0.00439385
+531.24	0.00439316
+531.36	0.00439247
+531.48	0.00439178
+531.6	0.0043911
+531.72	0.00439041
+531.84	0.00438972
+531.96	0.00438904
+532.08	0.00438835
+532.2	0.00438767
+532.32	0.00438698
+532.44	0.0043863
+532.56	0.00438561
+532.68	0.00438493
+532.8	0.00438424
+532.92	0.00438356
+533.04	0.00438287
+533.16	0.00438219
+533.28	0.00438151
+533.4	0.00438082
+533.52	0.00438014
+533.64	0.00437946
+533.76	0.00437878
+533.88	0.0043781
+534	0.00437741
+534.12	0.00437673
+534.24	0.00437605
+534.36	0.00437537
+534.48	0.00437469
+534.6	0.00437401
+534.72	0.00437333
+534.84	0.00437265
+534.96	0.00437197
+535.08	0.00437129
+535.2	0.00437062
+535.32	0.00436994
+535.44	0.00436926
+535.56	0.00436858
+535.68	0.0043679
+535.8	0.00436723
+535.92	0.00436655
+536.04	0.00436587
+536.16	0.0043652
+536.28	0.00436452
+536.4	0.00436385
+536.52	0.00436317
+536.64	0.0043625
+536.76	0.00436182
+536.88	0.00436115
+537	0.00436047
+537.12	0.0043598
+537.24	0.00435912
+537.36	0.00435845
+537.48	0.00435778
+537.6	0.00435711
+537.72	0.00435643
+537.84	0.00435576
+537.96	0.00435509
+538.08	0.00435442
+538.2	0.00435375
+538.32	0.00435307
+538.44	0.0043524
+538.56	0.00435173
+538.68	0.00435106
+538.8	0.00435039
+538.92	0.00434972
+539.04	0.00434905
+539.16	0.00434838
+539.28	0.00434772
+539.4	0.00434705
+539.52	0.00434638
+539.64	0.00434571
+539.76	0.00434504
+539.88	0.00434437
+540	0.00434371
+540.12	0.00434304
+540.24	0.00434237
+540.36	0.00434171
+540.48	0.00434104
+540.6	0.00434038
+540.72	0.00433971
+540.84	0.00433905
+540.96	0.00433838
+541.08	0.00433772
+541.2	0.00433705
+541.32	0.00433639
+541.44	0.00433572
+541.56	0.00433506
+541.68	0.0043344
+541.8	0.00433373
+541.92	0.00433307
+542.04	0.00433241
+542.16	0.00433175
+542.28	0.00433108
+542.4	0.00433042
+542.52	0.00432976
+542.64	0.0043291
+542.76	0.00432844
+542.88	0.00432778
+543	0.00432712
+543.12	0.00432646
+543.24	0.0043258
+543.36	0.00432514
+543.48	0.00432448
+543.6	0.00432382
+543.72	0.00432316
+543.84	0.0043225
+543.96	0.00432185
+544.08	0.00432119
+544.2	0.00432053
+544.32	0.00431987
+544.44	0.00431922
+544.56	0.00431856
+544.68	0.0043179
+544.8	0.00431725
+544.92	0.00431659
+545.04	0.00431593
+545.16	0.00431528
+545.28	0.00431462
+545.4	0.00431397
+545.52	0.00431331
+545.64	0.00431266
+545.76	0.00431201
+545.88	0.00431135
+546	0.0043107
+546.12	0.00431005
+546.24	0.00430939
+546.36	0.00430874
+546.48	0.00430809
+546.6	0.00430744
+546.72	0.00430678
+546.84	0.00430613
+546.96	0.00430548
+547.08	0.00430483
+547.2	0.00430418
+547.32	0.00430353
+547.44	0.00430288
+547.56	0.00430223
+547.68	0.00430158
+547.8	0.00430093
+547.92	0.00430028
+548.04	0.00429963
+548.16	0.00429898
+548.28	0.00429833
+548.4	0.00429769
+548.52	0.00429704
+548.64	0.00429639
+548.76	0.00429574
+548.88	0.0042951
+549	0.00429445
+549.12	0.0042938
+549.24	0.00429316
+549.36	0.00429251
+549.48	0.00429187
+549.6	0.00429122
+549.72	0.00429058
+549.84	0.00428993
+549.96	0.00428929
+550.08	0.00428864
+550.2	0.004288
+550.32	0.00428735
+550.44	0.00428671
+550.56	0.00428607
+550.68	0.00428542
+550.8	0.00428478
+550.92	0.00428414
+551.04	0.0042835
+551.16	0.00428285
+551.28	0.00428221
+551.4	0.00428157
+551.52	0.00428093
+551.64	0.00428029
+551.76	0.00427965
+551.88	0.00427901
+552	0.00427837
+552.12	0.00427773
+552.24	0.00427709
+552.36	0.00427645
+552.48	0.00427581
+552.6	0.00427517
+552.72	0.00427453
+552.84	0.00427389
+552.96	0.00427326
+553.08	0.00427262
+553.2	0.00427198
+553.32	0.00427134
+553.44	0.00427071
+553.56	0.00427007
+553.68	0.00426943
+553.8	0.0042688
+553.92	0.00426816
+554.04	0.00426753
+554.16	0.00426689
+554.28	0.00426625
+554.4	0.00426562
+554.52	0.00426498
+554.64	0.00426435
+554.76	0.00426372
+554.88	0.00426308
+555	0.00426245
+555.12	0.00426182
+555.24	0.00426118
+555.36	0.00426055
+555.48	0.00425992
+555.6	0.00425928
+555.72	0.00425865
+555.84	0.00425802
+555.96	0.00425739
+556.08	0.00425676
+556.2	0.00425613
+556.32	0.0042555
+556.44	0.00425487
+556.56	0.00425424
+556.68	0.00425361
+556.8	0.00425298
+556.92	0.00425235
+557.04	0.00425172
+557.16	0.00425109
+557.28	0.00425046
+557.4	0.00424983
+557.52	0.0042492
+557.64	0.00424857
+557.76	0.00424795
+557.88	0.00424732
+558	0.00424669
+558.12	0.00424606
+558.24	0.00424544
+558.36	0.00424481
+558.48	0.00424419
+558.6	0.00424356
+558.72	0.00424293
+558.84	0.00424231
+558.96	0.00424168
+559.08	0.00424106
+559.2	0.00424043
+559.32	0.00423981
+559.44	0.00423918
+559.56	0.00423856
+559.68	0.00423794
+559.8	0.00423731
+559.92	0.00423669
+560.04	0.00423607
+560.16	0.00423545
+560.28	0.00423482
+560.4	0.0042342
+560.52	0.00423358
+560.64	0.00423296
+560.76	0.00423234
+560.88	0.00423171
+561	0.00423109
+561.12	0.00423047
+561.24	0.00422985
+561.36	0.00422923
+561.48	0.00422861
+561.6	0.00422799
+561.72	0.00422737
+561.84	0.00422675
+561.96	0.00422614
+562.08	0.00422552
+562.2	0.0042249
+562.32	0.00422428
+562.44	0.00422366
+562.56	0.00422304
+562.68	0.00422243
+562.8	0.00422181
+562.92	0.00422119
+563.04	0.00422058
+563.16	0.00421996
+563.28	0.00421934
+563.4	0.00421873
+563.52	0.00421811
+563.64	0.0042175
+563.76	0.00421688
+563.88	0.00421627
+564	0.00421565
+564.12	0.00421504
+564.24	0.00421442
+564.36	0.00421381
+564.48	0.0042132
+564.6	0.00421258
+564.72	0.00421197
+564.84	0.00421136
+564.96	0.00421074
+565.08	0.00421013
+565.2	0.00420952
+565.32	0.00420891
+565.44	0.00420829
+565.56	0.00420768
+565.68	0.00420707
+565.8	0.00420646
+565.92	0.00420585
+566.04	0.00420524
+566.16	0.00420463
+566.28	0.00420402
+566.4	0.00420341
+566.52	0.0042028
+566.64	0.00420219
+566.76	0.00420158
+566.88	0.00420097
+567	0.00420036
+567.12	0.00419976
+567.24	0.00419915
+567.36	0.00419854
+567.48	0.00419793
+567.6	0.00419733
+567.72	0.00419672
+567.84	0.00419611
+567.96	0.0041955
+568.08	0.0041949
+568.2	0.00419429
+568.32	0.00419369
+568.44	0.00419308
+568.56	0.00419248
+568.68	0.00419187
+568.8	0.00419127
+568.92	0.00419066
+569.04	0.00419006
+569.16	0.00418945
+569.28	0.00418885
+569.4	0.00418824
+569.52	0.00418764
+569.64	0.00418704
+569.76	0.00418643
+569.88	0.00418583
+570	0.00418523
+570.12	0.00418463
+570.24	0.00418402
+570.36	0.00418342
+570.48	0.00418282
+570.6	0.00418222
+570.72	0.00418162
+570.84	0.00418102
+570.96	0.00418042
+571.08	0.00417982
+571.2	0.00417922
+571.32	0.00417862
+571.44	0.00417802
+571.56	0.00417742
+571.68	0.00417682
+571.8	0.00417622
+571.92	0.00417562
+572.04	0.00417502
+572.16	0.00417442
+572.28	0.00417383
+572.4	0.00417323
+572.52	0.00417263
+572.64	0.00417203
+572.76	0.00417144
+572.88	0.00417084
+573	0.00417024
+573.12	0.00416965
+573.24	0.00416905
+573.36	0.00416846
+573.48	0.00416786
+573.6	0.00416726
+573.72	0.00416667
+573.84	0.00416607
+573.96	0.00416548
+574.08	0.00416488
+574.2	0.00416429
+574.32	0.0041637
+574.44	0.0041631
+574.56	0.00416251
+574.68	0.00416192
+574.8	0.00416132
+574.92	0.00416073
+575.04	0.00416014
+575.16	0.00415955
+575.28	0.00415895
+575.4	0.00415836
+575.52	0.00415777
+575.64	0.00415718
+575.76	0.00415659
+575.88	0.004156
+576	0.00415541
+576.12	0.00415481
+576.24	0.00415422
+576.36	0.00415363
+576.48	0.00415304
+576.6	0.00415246
+576.72	0.00415187
+576.84	0.00415128
+576.96	0.00415069
+577.08	0.0041501
+577.2	0.00414951
+577.32	0.00414892
+577.44	0.00414833
+577.56	0.00414775
+577.68	0.00414716
+577.8	0.00414657
+577.92	0.00414599
+578.04	0.0041454
+578.16	0.00414481
+578.28	0.00414423
+578.4	0.00414364
+578.52	0.00414305
+578.64	0.00414247
+578.76	0.00414188
+578.88	0.0041413
+579	0.00414071
+579.12	0.00414013
+579.24	0.00413954
+579.36	0.00413896
+579.48	0.00413837
+579.6	0.00413779
+579.72	0.00413721
+579.84	0.00413662
+579.96	0.00413604
+580.08	0.00413546
+580.2	0.00413488
+580.32	0.00413429
+580.44	0.00413371
+580.56	0.00413313
+580.68	0.00413255
+580.8	0.00413197
+580.92	0.00413138
+581.04	0.0041308
+581.16	0.00413022
+581.28	0.00412964
+581.4	0.00412906
+581.52	0.00412848
+581.64	0.0041279
+581.76	0.00412732
+581.88	0.00412674
+582	0.00412616
+582.12	0.00412558
+582.24	0.004125
+582.36	0.00412443
+582.48	0.00412385
+582.6	0.00412327
+582.72	0.00412269
+582.84	0.00412211
+582.96	0.00412154
+583.08	0.00412096
+583.2	0.00412038
+583.32	0.00411981
+583.44	0.00411923
+583.56	0.00411865
+583.68	0.00411808
+583.8	0.0041175
+583.92	0.00411692
+584.04	0.00411635
+584.16	0.00411577
+584.28	0.0041152
+584.4	0.00411462
+584.52	0.00411405
+584.64	0.00411348
+584.76	0.0041129
+584.88	0.00411233
+585	0.00411175
+585.12	0.00411118
+585.24	0.00411061
+585.36	0.00411003
+585.48	0.00410946
+585.6	0.00410889
+585.72	0.00410832
+585.84	0.00410774
+585.96	0.00410717
+586.08	0.0041066
+586.2	0.00410603
+586.32	0.00410546
+586.44	0.00410489
+586.56	0.00410432
+586.68	0.00410375
+586.8	0.00410318
+586.92	0.00410261
+587.04	0.00410204
+587.16	0.00410147
+587.28	0.0041009
+587.4	0.00410033
+587.52	0.00409976
+587.64	0.00409919
+587.76	0.00409862
+587.88	0.00409805
+588	0.00409748
+588.12	0.00409692
+588.24	0.00409635
+588.36	0.00409578
+588.48	0.00409521
+588.6	0.00409465
+588.72	0.00409408
+588.84	0.00409351
+588.96	0.00409295
+589.08	0.00409238
+589.2	0.00409181
+589.32	0.00409125
+589.44	0.00409068
+589.56	0.00409012
+589.68	0.00408955
+589.8	0.00408899
+589.92	0.00408842
+590.04	0.00408786
+590.16	0.00408729
+590.28	0.00408673
+590.4	0.00408617
+590.52	0.0040856
+590.64	0.00408504
+590.76	0.00408448
+590.88	0.00408391
+591	0.00408335
+591.12	0.00408279
+591.24	0.00408223
+591.36	0.00408166
+591.48	0.0040811
+591.6	0.00408054
+591.72	0.00407998
+591.84	0.00407942
+591.96	0.00407886
+592.08	0.0040783
+592.2	0.00407774
+592.32	0.00407718
+592.44	0.00407662
+592.56	0.00407606
+592.68	0.0040755
+592.8	0.00407494
+592.92	0.00407438
+593.04	0.00407382
+593.16	0.00407326
+593.28	0.0040727
+593.4	0.00407215
+593.52	0.00407159
+593.64	0.00407103
+593.76	0.00407047
+593.88	0.00406991
+594	0.00406936
+594.12	0.0040688
+594.24	0.00406824
+594.36	0.00406769
+594.48	0.00406713
+594.6	0.00406658
+594.72	0.00406602
+594.84	0.00406546
+594.96	0.00406491
+595.08	0.00406435
+595.2	0.0040638
+595.32	0.00406324
+595.44	0.00406269
+595.56	0.00406213
+595.68	0.00406158
+595.8	0.00406103
+595.92	0.00406047
+596.04	0.00405992
+596.16	0.00405937
+596.28	0.00405881
+596.4	0.00405826
+596.52	0.00405771
+596.64	0.00405715
+596.76	0.0040566
+596.88	0.00405605
+597	0.0040555
+597.12	0.00405495
+597.24	0.00405439
+597.36	0.00405384
+597.48	0.00405329
+597.6	0.00405274
+597.72	0.00405219
+597.84	0.00405164
+597.96	0.00405109
+598.08	0.00405054
+598.2	0.00404999
+598.32	0.00404944
+598.44	0.00404889
+598.56	0.00404834
+598.68	0.00404779
+598.8	0.00404724
+598.92	0.0040467
+599.04	0.00404615
+599.16	0.0040456
+599.28	0.00404505
+599.4	0.0040445
+599.52	0.00404396
+599.64	0.00404341
+599.76	0.00404286
+599.88	0.00404232
+600	0.00404177
+600.12	0.00404122
+600.24	0.00404068
+600.36	0.00404013
+600.48	0.00403958
+600.6	0.00403904
+600.72	0.00403849
+600.84	0.00403795
+600.96	0.0040374
+601.08	0.00403686
+601.2	0.00403631
+601.32	0.00403577
+601.44	0.00403523
+601.56	0.00403468
+601.68	0.00403414
+601.8	0.00403359
+601.92	0.00403305
+602.04	0.00403251
+602.16	0.00403196
+602.28	0.00403142
+602.4	0.00403088
+602.52	0.00403034
+602.64	0.00402979
+602.76	0.00402925
+602.88	0.00402871
+603	0.00402817
+603.12	0.00402763
+603.24	0.00402709
+603.36	0.00402655
+603.48	0.00402601
+603.6	0.00402547
+603.72	0.00402492
+603.84	0.00402438
+603.96	0.00402384
+604.08	0.00402331
+604.2	0.00402277
+604.32	0.00402223
+604.44	0.00402169
+604.56	0.00402115
+604.68	0.00402061
+604.8	0.00402007
+604.92	0.00401953
+605.04	0.00401899
+605.16	0.00401846
+605.28	0.00401792
+605.4	0.00401738
+605.52	0.00401684
+605.64	0.00401631
+605.76	0.00401577
+605.88	0.00401523
+606	0.0040147
+606.12	0.00401416
+606.24	0.00401363
+606.36	0.00401309
+606.48	0.00401255
+606.6	0.00401202
+606.72	0.00401148
+606.84	0.00401095
+606.96	0.00401041
+607.08	0.00400988
+607.2	0.00400934
+607.32	0.00400881
+607.44	0.00400828
+607.56	0.00400774
+607.68	0.00400721
+607.8	0.00400668
+607.92	0.00400614
+608.04	0.00400561
+608.16	0.00400508
+608.28	0.00400454
+608.4	0.00400401
+608.52	0.00400348
+608.64	0.00400295
+608.76	0.00400241
+608.88	0.00400188
+609	0.00400135
+609.12	0.00400082
+609.24	0.00400029
+609.36	0.00399976
+609.48	0.00399923
+609.6	0.0039987
+609.72	0.00399817
+609.84	0.00399764
+609.96	0.00399711
+610.08	0.00399658
+610.2	0.00399605
+610.32	0.00399552
+610.44	0.00399499
+610.56	0.00399446
+610.68	0.00399393
+610.8	0.0039934
+610.92	0.00399288
+611.04	0.00399235
+611.16	0.00399182
+611.28	0.00399129
+611.4	0.00399076
+611.52	0.00399024
+611.64	0.00398971
+611.76	0.00398918
+611.88	0.00398866
+612	0.00398813
+612.12	0.0039876
+612.24	0.00398708
+612.36	0.00398655
+612.48	0.00398603
+612.6	0.0039855
+612.72	0.00398497
+612.84	0.00398445
+612.96	0.00398392
+613.08	0.0039834
+613.2	0.00398287
+613.32	0.00398235
+613.44	0.00398183
+613.56	0.0039813
+613.68	0.00398078
+613.8	0.00398026
+613.92	0.00397973
+614.04	0.00397921
+614.16	0.00397869
+614.28	0.00397816
+614.4	0.00397764
+614.52	0.00397712
+614.64	0.0039766
+614.76	0.00397607
+614.88	0.00397555
+615	0.00397503
+615.12	0.00397451
+615.24	0.00397399
+615.36	0.00397347
+615.48	0.00397294
+615.6	0.00397242
+615.72	0.0039719
+615.84	0.00397138
+615.96	0.00397086
+616.08	0.00397034
+616.2	0.00396982
+616.32	0.0039693
+616.44	0.00396878
+616.56	0.00396827
+616.68	0.00396775
+616.8	0.00396723
+616.92	0.00396671
+617.04	0.00396619
+617.16	0.00396567
+617.28	0.00396515
+617.4	0.00396464
+617.52	0.00396412
+617.64	0.0039636
+617.76	0.00396308
+617.88	0.00396257
+618	0.00396205
+618.12	0.00396153
+618.24	0.00396102
+618.36	0.0039605
+618.48	0.00395998
+618.6	0.00395947
+618.72	0.00395895
+618.84	0.00395844
+618.96	0.00395792
+619.08	0.00395741
+619.2	0.00395689
+619.32	0.00395638
+619.44	0.00395586
+619.56	0.00395535
+619.68	0.00395483
+619.8	0.00395432
+619.92	0.00395381
+620.04	0.00395329
+620.16	0.00395278
+620.28	0.00395227
+620.4	0.00395175
+620.52	0.00395124
+620.64	0.00395073
+620.76	0.00395021
+620.88	0.0039497
+621	0.00394919
+621.12	0.00394868
+621.24	0.00394817
+621.36	0.00394765
+621.48	0.00394714
+621.6	0.00394663
+621.72	0.00394612
+621.84	0.00394561
+621.96	0.0039451
+622.08	0.00394459
+622.2	0.00394408
+622.32	0.00394357
+622.44	0.00394306
+622.56	0.00394255
+622.68	0.00394204
+622.8	0.00394153
+622.92	0.00394102
+623.04	0.00394051
+623.16	0.00394
+623.28	0.00393949
+623.4	0.00393899
+623.52	0.00393848
+623.64	0.00393797
+623.76	0.00393746
+623.88	0.00393695
+624	0.00393645
+624.12	0.00393594
+624.24	0.00393543
+624.36	0.00393493
+624.48	0.00393442
+624.6	0.00393391
+624.72	0.00393341
+624.84	0.0039329
+624.96	0.00393239
+625.08	0.00393189
+625.2	0.00393138
+625.32	0.00393088
+625.44	0.00393037
+625.56	0.00392987
+625.68	0.00392936
+625.8	0.00392886
+625.92	0.00392835
+626.04	0.00392785
+626.16	0.00392734
+626.28	0.00392684
+626.4	0.00392634
+626.52	0.00392583
+626.64	0.00392533
+626.76	0.00392483
+626.88	0.00392432
+627	0.00392382
+627.12	0.00392332
+627.24	0.00392281
+627.36	0.00392231
+627.48	0.00392181
+627.6	0.00392131
+627.72	0.00392081
+627.84	0.0039203
+627.96	0.0039198
+628.08	0.0039193
+628.2	0.0039188
+628.32	0.0039183
+628.44	0.0039178
+628.56	0.0039173
+628.68	0.0039168
+628.8	0.0039163
+628.92	0.0039158
+629.04	0.0039153
+629.16	0.0039148
+629.28	0.0039143
+629.4	0.0039138
+629.52	0.0039133
+629.64	0.0039128
+629.76	0.0039123
+629.88	0.00391181
+630	0.00391131
+630.12	0.00391081
+630.24	0.00391031
+630.36	0.00390981
+630.48	0.00390932
+630.6	0.00390882
+630.72	0.00390832
+630.84	0.00390782
+630.96	0.00390733
+631.08	0.00390683
+631.2	0.00390633
+631.32	0.00390584
+631.44	0.00390534
+631.56	0.00390484
+631.68	0.00390435
+631.8	0.00390385
+631.92	0.00390336
+632.04	0.00390286
+632.16	0.00390237
+632.28	0.00390187
+632.4	0.00390138
+632.52	0.00390088
+632.64	0.00390039
+632.76	0.00389989
+632.88	0.0038994
+633	0.00389891
+633.12	0.00389841
+633.24	0.00389792
+633.36	0.00389743
+633.48	0.00389693
+633.6	0.00389644
+633.72	0.00389595
+633.84	0.00389545
+633.96	0.00389496
+634.08	0.00389447
+634.2	0.00389398
+634.32	0.00389349
+634.44	0.00389299
+634.56	0.0038925
+634.68	0.00389201
+634.8	0.00389152
+634.92	0.00389103
+635.04	0.00389054
+635.16	0.00389005
+635.28	0.00388956
+635.4	0.00388907
+635.52	0.00388858
+635.64	0.00388809
+635.76	0.0038876
+635.88	0.00388711
+636	0.00388662
+636.12	0.00388613
+636.24	0.00388564
+636.36	0.00388515
+636.48	0.00388466
+636.6	0.00388417
+636.72	0.00388368
+636.84	0.0038832
+636.96	0.00388271
+637.08	0.00388222
+637.2	0.00388173
+637.32	0.00388124
+637.44	0.00388076
+637.56	0.00388027
+637.68	0.00387978
+637.8	0.0038793
+637.92	0.00387881
+638.04	0.00387832
+638.16	0.00387784
+638.28	0.00387735
+638.4	0.00387686
+638.52	0.00387638
+638.64	0.00387589
+638.76	0.00387541
+638.88	0.00387492
+639	0.00387444
+639.12	0.00387395
+639.24	0.00387347
+639.36	0.00387298
+639.48	0.0038725
+639.6	0.00387201
+639.72	0.00387153
+639.84	0.00387105
+639.96	0.00387056
+640.08	0.00387008
+640.2	0.0038696
+640.32	0.00386911
+640.44	0.00386863
+640.56	0.00386815
+640.68	0.00386766
+640.8	0.00386718
+640.92	0.0038667
+641.04	0.00386622
+641.16	0.00386573
+641.28	0.00386525
+641.4	0.00386477
+641.52	0.00386429
+641.64	0.00386381
+641.76	0.00386333
+641.88	0.00386285
+642	0.00386237
+642.12	0.00386188
+642.24	0.0038614
+642.36	0.00386092
+642.48	0.00386044
+642.6	0.00385996
+642.72	0.00385948
+642.84	0.003859
+642.96	0.00385852
+643.08	0.00385805
+643.2	0.00385757
+643.32	0.00385709
+643.44	0.00385661
+643.56	0.00385613
+643.68	0.00385565
+643.8	0.00385517
+643.92	0.0038547
+644.04	0.00385422
+644.16	0.00385374
+644.28	0.00385326
+644.4	0.00385278
+644.52	0.00385231
+644.64	0.00385183
+644.76	0.00385135
+644.88	0.00385088
+645	0.0038504
+645.12	0.00384992
+645.24	0.00384945
+645.36	0.00384897
+645.48	0.0038485
+645.6	0.00384802
+645.72	0.00384754
+645.84	0.00384707
+645.96	0.00384659
+646.08	0.00384612
+646.2	0.00384564
+646.32	0.00384517
+646.44	0.00384469
+646.56	0.00384422
+646.68	0.00384375
+646.8	0.00384327
+646.92	0.0038428
+647.04	0.00384232
+647.16	0.00384185
+647.28	0.00384138
+647.4	0.0038409
+647.52	0.00384043
+647.64	0.00383996
+647.76	0.00383949
+647.88	0.00383901
+648	0.00383854
+648.12	0.00383807
+648.24	0.0038376
+648.36	0.00383712
+648.48	0.00383665
+648.6	0.00383618
+648.72	0.00383571
+648.84	0.00383524
+648.96	0.00383477
+649.08	0.0038343
+649.2	0.00383383
+649.32	0.00383335
+649.44	0.00383288
+649.56	0.00383241
+649.68	0.00383194
+649.8	0.00383147
+649.92	0.003831
+650.04	0.00383054
+650.16	0.00383007
+650.28	0.0038296
+650.4	0.00382913
+650.52	0.00382866
+650.64	0.00382819
+650.76	0.00382772
+650.88	0.00382725
+651	0.00382678
+651.12	0.00382632
+651.24	0.00382585
+651.36	0.00382538
+651.48	0.00382491
+651.6	0.00382445
+651.72	0.00382398
+651.84	0.00382351
+651.96	0.00382304
+652.08	0.00382258
+652.2	0.00382211
+652.32	0.00382164
+652.44	0.00382118
+652.56	0.00382071
+652.68	0.00382025
+652.8	0.00381978
+652.92	0.00381931
+653.04	0.00381885
+653.16	0.00381838
+653.28	0.00381792
+653.4	0.00381745
+653.52	0.00381699
+653.64	0.00381652
+653.76	0.00381606
+653.88	0.0038156
+654	0.00381513
+654.12	0.00381467
+654.24	0.0038142
+654.36	0.00381374
+654.48	0.00381328
+654.6	0.00381281
+654.72	0.00381235
+654.84	0.00381189
+654.96	0.00381142
+655.08	0.00381096
+655.2	0.0038105
+655.32	0.00381004
+655.44	0.00380957
+655.56	0.00380911
+655.68	0.00380865
+655.8	0.00380819
+655.92	0.00380773
+656.04	0.00380726
+656.16	0.0038068
+656.28	0.00380634
+656.4	0.00380588
+656.52	0.00380542
+656.64	0.00380496
+656.76	0.0038045
+656.88	0.00380404
+657	0.00380358
+657.12	0.00380312
+657.24	0.00380266
+657.36	0.0038022
+657.48	0.00380174
+657.6	0.00380128
+657.72	0.00380082
+657.84	0.00380036
+657.96	0.0037999
+658.08	0.00379944
+658.2	0.00379899
+658.32	0.00379853
+658.44	0.00379807
+658.56	0.00379761
+658.68	0.00379715
+658.8	0.0037967
+658.92	0.00379624
+659.04	0.00379578
+659.16	0.00379532
+659.28	0.00379487
+659.4	0.00379441
+659.52	0.00379395
+659.64	0.0037935
+659.76	0.00379304
+659.88	0.00379258
+660	0.00379213
+660.12	0.00379167
+660.24	0.00379122
+660.36	0.00379076
+660.48	0.0037903
+660.6	0.00378985
+660.72	0.00378939
+660.84	0.00378894
+660.96	0.00378848
+661.08	0.00378803
+661.2	0.00378757
+661.32	0.00378712
+661.44	0.00378667
+661.56	0.00378621
+661.68	0.00378576
+661.8	0.0037853
+661.92	0.00378485
+662.04	0.0037844
+662.16	0.00378394
+662.28	0.00378349
+662.4	0.00378304
+662.52	0.00378258
+662.64	0.00378213
+662.76	0.00378168
+662.88	0.00378123
+663	0.00378077
+663.12	0.00378032
+663.24	0.00377987
+663.36	0.00377942
+663.48	0.00377897
+663.6	0.00377851
+663.72	0.00377806
+663.84	0.00377761
+663.96	0.00377716
+664.08	0.00377671
+664.2	0.00377626
+664.32	0.00377581
+664.44	0.00377536
+664.56	0.00377491
+664.68	0.00377446
+664.8	0.00377401
+664.92	0.00377356
+665.04	0.00377311
+665.16	0.00377266
+665.28	0.00377221
+665.4	0.00377176
+665.52	0.00377131
+665.64	0.00377086
+665.76	0.00377041
+665.88	0.00376997
+666	0.00376952
+666.12	0.00376907
+666.24	0.00376862
+666.36	0.00376817
+666.48	0.00376773
+666.6	0.00376728
+666.72	0.00376683
+666.84	0.00376638
+666.96	0.00376594
+667.08	0.00376549
+667.2	0.00376504
+667.32	0.0037646
+667.44	0.00376415
+667.56	0.0037637
+667.68	0.00376326
+667.8	0.00376281
+667.92	0.00376236
+668.04	0.00376192
+668.16	0.00376147
+668.28	0.00376103
+668.4	0.00376058
+668.52	0.00376014
+668.64	0.00375969
+668.76	0.00375925
+668.88	0.0037588
+669	0.00375836
+669.12	0.00375791
+669.24	0.00375747
+669.36	0.00375702
+669.48	0.00375658
+669.6	0.00375614
+669.72	0.00375569
+669.84	0.00375525
+669.96	0.00375481
+670.08	0.00375436
+670.2	0.00375392
+670.32	0.00375348
+670.44	0.00375303
+670.56	0.00375259
+670.68	0.00375215
+670.8	0.00375171
+670.92	0.00375126
+671.04	0.00375082
+671.16	0.00375038
+671.28	0.00374994
+671.4	0.0037495
+671.52	0.00374906
+671.64	0.00374861
+671.76	0.00374817
+671.88	0.00374773
+672	0.00374729
+672.12	0.00374685
+672.24	0.00374641
+672.36	0.00374597
+672.48	0.00374553
+672.6	0.00374509
+672.72	0.00374465
+672.84	0.00374421
+672.96	0.00374377
+673.08	0.00374333
+673.2	0.00374289
+673.32	0.00374245
+673.44	0.00374201
+673.56	0.00374158
+673.68	0.00374114
+673.8	0.0037407
+673.92	0.00374026
+674.04	0.00373982
+674.16	0.00373938
+674.28	0.00373895
+674.4	0.00373851
+674.52	0.00373807
+674.64	0.00373763
+674.76	0.00373719
+674.88	0.00373676
+675	0.00373632
+675.12	0.00373588
+675.24	0.00373545
+675.36	0.00373501
+675.48	0.00373457
+675.6	0.00373414
+675.72	0.0037337
+675.84	0.00373327
+675.96	0.00373283
+676.08	0.00373239
+676.2	0.00373196
+676.32	0.00373152
+676.44	0.00373109
+676.56	0.00373065
+676.68	0.00373022
+676.8	0.00372978
+676.92	0.00372935
+677.04	0.00372891
+677.16	0.00372848
+677.28	0.00372804
+677.4	0.00372761
+677.52	0.00372718
+677.64	0.00372674
+677.76	0.00372631
+677.88	0.00372587
+678	0.00372544
+678.12	0.00372501
+678.24	0.00372458
+678.36	0.00372414
+678.48	0.00372371
+678.6	0.00372328
+678.72	0.00372284
+678.84	0.00372241
+678.96	0.00372198
+679.08	0.00372155
+679.2	0.00372112
+679.32	0.00372068
+679.44	0.00372025
+679.56	0.00371982
+679.68	0.00371939
+679.8	0.00371896
+679.92	0.00371853
+680.04	0.0037181
+680.16	0.00371767
+680.28	0.00371723
+680.4	0.0037168
+680.52	0.00371637
+680.64	0.00371594
+680.76	0.00371551
+680.88	0.00371508
+681	0.00371465
+681.12	0.00371422
+681.24	0.00371379
+681.36	0.00371337
+681.48	0.00371294
+681.6	0.00371251
+681.72	0.00371208
+681.84	0.00371165
+681.96	0.00371122
+682.08	0.00371079
+682.2	0.00371036
+682.32	0.00370994
+682.44	0.00370951
+682.56	0.00370908
+682.68	0.00370865
+682.8	0.00370822
+682.92	0.0037078
+683.04	0.00370737
+683.16	0.00370694
+683.28	0.00370652
+683.4	0.00370609
+683.52	0.00370566
+683.64	0.00370524
+683.76	0.00370481
+683.88	0.00370438
+684	0.00370396
+684.12	0.00370353
+684.24	0.0037031
+684.36	0.00370268
+684.48	0.00370225
+684.6	0.00370183
+684.72	0.0037014
+684.84	0.00370098
+684.96	0.00370055
+685.08	0.00370013
+685.2	0.0036997
+685.32	0.00369928
+685.44	0.00369885
+685.56	0.00369843
+685.68	0.003698
+685.8	0.00369758
+685.92	0.00369716
+686.04	0.00369673
+686.16	0.00369631
+686.28	0.00369589
+686.4	0.00369546
+686.52	0.00369504
+686.64	0.00369462
+686.76	0.00369419
+686.88	0.00369377
+687	0.00369335
+687.12	0.00369293
+687.24	0.0036925
+687.36	0.00369208
+687.48	0.00369166
+687.6	0.00369124
+687.72	0.00369082
+687.84	0.00369039
+687.96	0.00368997
+688.08	0.00368955
+688.2	0.00368913
+688.32	0.00368871
+688.44	0.00368829
+688.56	0.00368787
+688.68	0.00368745
+688.8	0.00368703
+688.92	0.0036866
+689.04	0.00368618
+689.16	0.00368576
+689.28	0.00368534
+689.4	0.00368492
+689.52	0.0036845
+689.64	0.00368409
+689.76	0.00368367
+689.88	0.00368325
+690	0.00368283
+690.12	0.00368241
+690.24	0.00368199
+690.36	0.00368157
+690.48	0.00368115
+690.6	0.00368073
+690.72	0.00368032
+690.84	0.0036799
+690.96	0.00367948
+691.08	0.00367906
+691.2	0.00367864
+691.32	0.00367823
+691.44	0.00367781
+691.56	0.00367739
+691.68	0.00367697
+691.8	0.00367656
+691.92	0.00367614
+692.04	0.00367572
+692.16	0.00367531
+692.28	0.00367489
+692.4	0.00367447
+692.52	0.00367406
+692.64	0.00367364
+692.76	0.00367323
+692.88	0.00367281
+693	0.00367239
+693.12	0.00367198
+693.24	0.00367156
+693.36	0.00367115
+693.48	0.00367073
+693.6	0.00367032
+693.72	0.0036699
+693.84	0.00366949
+693.96	0.00366907
+694.08	0.00366866
+694.2	0.00366824
+694.32	0.00366783
+694.44	0.00366742
+694.56	0.003667
+694.68	0.00366659
+694.8	0.00366618
+694.92	0.00366576
+695.04	0.00366535
+695.16	0.00366493
+695.28	0.00366452
+695.4	0.00366411
+695.52	0.0036637
+695.64	0.00366328
+695.76	0.00366287
+695.88	0.00366246
+696	0.00366205
+696.12	0.00366163
+696.24	0.00366122
+696.36	0.00366081
+696.48	0.0036604
+696.6	0.00365999
+696.72	0.00365958
+696.84	0.00365916
+696.96	0.00365875
+697.08	0.00365834
+697.2	0.00365793
+697.32	0.00365752
+697.44	0.00365711
+697.56	0.0036567
+697.68	0.00365629
+697.8	0.00365588
+697.92	0.00365547
+698.04	0.00365506
+698.16	0.00365465
+698.28	0.00365424
+698.4	0.00365383
+698.52	0.00365342
+698.64	0.00365301
+698.76	0.0036526
+698.88	0.00365219
+699	0.00365178
+699.12	0.00365137
+699.24	0.00365097
+699.36	0.00365056
+699.48	0.00365015
+699.6	0.00364974
+699.72	0.00364933
+699.84	0.00364892
+699.96	0.00364852
+700.08	0.00364811
+700.2	0.0036477
+700.32	0.00364729
+700.44	0.00364689
+700.56	0.00364648
+700.68	0.00364607
+700.8	0.00364567
+700.92	0.00364526
+701.04	0.00364485
+701.16	0.00364445
+701.28	0.00364404
+701.4	0.00364363
+701.52	0.00364323
+701.64	0.00364282
+701.76	0.00364242
+701.88	0.00364201
+702	0.0036416
+702.12	0.0036412
+702.24	0.00364079
+702.36	0.00364039
+702.48	0.00363998
+702.6	0.00363958
+702.72	0.00363917
+702.84	0.00363877
+702.96	0.00363836
+703.08	0.00363796
+703.2	0.00363756
+703.32	0.00363715
+703.44	0.00363675
+703.56	0.00363634
+703.68	0.00363594
+703.8	0.00363554
+703.92	0.00363513
+704.04	0.00363473
+704.16	0.00363433
+704.28	0.00363392
+704.4	0.00363352
+704.52	0.00363312
+704.64	0.00363271
+704.76	0.00363231
+704.88	0.00363191
+705	0.00363151
+705.12	0.00363111
+705.24	0.0036307
+705.36	0.0036303
+705.48	0.0036299
+705.6	0.0036295
+705.72	0.0036291
+705.84	0.0036287
+705.96	0.00362829
+706.08	0.00362789
+706.2	0.00362749
+706.32	0.00362709
+706.44	0.00362669
+706.56	0.00362629
+706.68	0.00362589
+706.8	0.00362549
+706.92	0.00362509
+707.04	0.00362469
+707.16	0.00362429
+707.28	0.00362389
+707.4	0.00362349
+707.52	0.00362309
+707.64	0.00362269
+707.76	0.00362229
+707.88	0.00362189
+708	0.00362149
+708.12	0.00362109
+708.24	0.00362069
+708.36	0.0036203
+708.48	0.0036199
+708.6	0.0036195
+708.72	0.0036191
+708.84	0.0036187
+708.96	0.0036183
+709.08	0.00361791
+709.2	0.00361751
+709.32	0.00361711
+709.44	0.00361671
+709.56	0.00361632
+709.68	0.00361592
+709.8	0.00361552
+709.92	0.00361513
+710.04	0.00361473
+710.16	0.00361433
+710.28	0.00361394
+710.4	0.00361354
+710.52	0.00361314
+710.64	0.00361275
+710.76	0.00361235
+710.88	0.00361195
+711	0.00361156
+711.12	0.00361116
+711.24	0.00361077
+711.36	0.00361037
+711.48	0.00360998
+711.6	0.00360958
+711.72	0.00360919
+711.84	0.00360879
+711.96	0.0036084
+712.08	0.003608
+712.2	0.00360761
+712.32	0.00360721
+712.44	0.00360682
+712.56	0.00360642
+712.68	0.00360603
+712.8	0.00360564
+712.92	0.00360524
+713.04	0.00360485
+713.16	0.00360446
+713.28	0.00360406
+713.4	0.00360367
+713.52	0.00360328
+713.64	0.00360288
+713.76	0.00360249
+713.88	0.0036021
+714	0.0036017
+714.12	0.00360131
+714.24	0.00360092
+714.36	0.00360053
+714.48	0.00360013
+714.6	0.00359974
+714.72	0.00359935
+714.84	0.00359896
+714.96	0.00359857
+715.08	0.00359818
+715.2	0.00359778
+715.32	0.00359739
+715.44	0.003597
+715.56	0.00359661
+715.68	0.00359622
+715.8	0.00359583
+715.92	0.00359544
+716.04	0.00359505
+716.16	0.00359466
+716.28	0.00359427
+716.4	0.00359388
+716.52	0.00359349
+716.64	0.0035931
+716.76	0.00359271
+716.88	0.00359232
+717	0.00359193
+717.12	0.00359154
+717.24	0.00359115
+717.36	0.00359076
+717.48	0.00359037
+717.6	0.00358998
+717.72	0.00358959
+717.84	0.00358921
+717.96	0.00358882
+718.08	0.00358843
+718.2	0.00358804
+718.32	0.00358765
+718.44	0.00358726
+718.56	0.00358688
+718.68	0.00358649
+718.8	0.0035861
+718.92	0.00358571
+719.04	0.00358533
+719.16	0.00358494
+719.28	0.00358455
+719.4	0.00358416
+719.52	0.00358378
+719.64	0.00358339
+719.76	0.003583
+719.88	0.00358262
+720	0.00358223
+720.12	0.00358184
+720.24	0.00358146
+720.36	0.00358107
+720.48	0.00358069
+720.6	0.0035803
+720.72	0.00357991
+720.84	0.00357953
+720.96	0.00357914
+721.08	0.00357876
+721.2	0.00357837
+721.32	0.00357799
+721.44	0.0035776
+721.56	0.00357722
+721.68	0.00357683
+721.8	0.00357645
+721.92	0.00357606
+722.04	0.00357568
+722.16	0.0035753
+722.28	0.00357491
+722.4	0.00357453
+722.52	0.00357414
+722.64	0.00357376
+722.76	0.00357338
+722.88	0.00357299
+723	0.00357261
+723.12	0.00357223
+723.24	0.00357184
+723.36	0.00357146
+723.48	0.00357108
+723.6	0.0035707
+723.72	0.00357031
+723.84	0.00356993
+723.96	0.00356955
+724.08	0.00356917
+724.2	0.00356878
+724.32	0.0035684
+724.44	0.00356802
+724.56	0.00356764
+724.68	0.00356726
+724.8	0.00356687
+724.92	0.00356649
+725.04	0.00356611
+725.16	0.00356573
+725.28	0.00356535
+725.4	0.00356497
+725.52	0.00356459
+725.64	0.00356421
+725.76	0.00356383
+725.88	0.00356345
+726	0.00356307
+726.12	0.00356269
+726.24	0.00356231
+726.36	0.00356193
+726.48	0.00356155
+726.6	0.00356117
+726.72	0.00356079
+726.84	0.00356041
+726.96	0.00356003
+727.08	0.00355965
+727.2	0.00355927
+727.32	0.00355889
+727.44	0.00355851
+727.56	0.00355813
+727.68	0.00355775
+727.8	0.00355738
+727.92	0.003557
+728.04	0.00355662
+728.16	0.00355624
+728.28	0.00355586
+728.4	0.00355548
+728.52	0.00355511
+728.64	0.00355473
+728.76	0.00355435
+728.88	0.00355397
+729	0.0035536
+729.12	0.00355322
+729.24	0.00355284
+729.36	0.00355246
+729.48	0.00355209
+729.6	0.00355171
+729.72	0.00355133
+729.84	0.00355096
+729.96	0.00355058
+730.08	0.00355021
+730.2	0.00354983
+730.32	0.00354945
+730.44	0.00354908
+730.56	0.0035487
+730.68	0.00354833
+730.8	0.00354795
+730.92	0.00354757
+731.04	0.0035472
+731.16	0.00354682
+731.28	0.00354645
+731.4	0.00354607
+731.52	0.0035457
+731.64	0.00354532
+731.76	0.00354495
+731.88	0.00354458
+732	0.0035442
+732.12	0.00354383
+732.24	0.00354345
+732.36	0.00354308
+732.48	0.0035427
+732.6	0.00354233
+732.72	0.00354196
+732.84	0.00354158
+732.96	0.00354121
+733.08	0.00354084
+733.2	0.00354046
+733.32	0.00354009
+733.44	0.00353972
+733.56	0.00353934
+733.68	0.00353897
+733.8	0.0035386
+733.92	0.00353823
+734.04	0.00353785
+734.16	0.00353748
+734.28	0.00353711
+734.4	0.00353674
+734.52	0.00353637
+734.64	0.00353599
+734.76	0.00353562
+734.88	0.00353525
+735	0.00353488
+735.12	0.00353451
+735.24	0.00353414
+735.36	0.00353377
+735.48	0.00353339
+735.6	0.00353302
+735.72	0.00353265
+735.84	0.00353228
+735.96	0.00353191
+736.08	0.00353154
+736.2	0.00353117
+736.32	0.0035308
+736.44	0.00353043
+736.56	0.00353006
+736.68	0.00352969
+736.8	0.00352932
+736.92	0.00352895
+737.04	0.00352858
+737.16	0.00352821
+737.28	0.00352784
+737.4	0.00352747
+737.52	0.00352711
+737.64	0.00352674
+737.76	0.00352637
+737.88	0.003526
+738	0.00352563
+738.12	0.00352526
+738.24	0.00352489
+738.36	0.00352453
+738.48	0.00352416
+738.6	0.00352379
+738.72	0.00352342
+738.84	0.00352305
+738.96	0.00352269
+739.08	0.00352232
+739.2	0.00352195
+739.32	0.00352158
+739.44	0.00352122
+739.56	0.00352085
+739.68	0.00352048
+739.8	0.00352012
+739.92	0.00351975
+740.04	0.00351938
+740.16	0.00351902
+740.28	0.00351865
+740.4	0.00351828
+740.52	0.00351792
+740.64	0.00351755
+740.76	0.00351718
+740.88	0.00351682
+741	0.00351645
+741.12	0.00351609
+741.24	0.00351572
+741.36	0.00351536
+741.48	0.00351499
+741.6	0.00351463
+741.72	0.00351426
+741.84	0.0035139
+741.96	0.00351353
+742.08	0.00351317
+742.2	0.0035128
+742.32	0.00351244
+742.44	0.00351207
+742.56	0.00351171
+742.68	0.00351134
+742.8	0.00351098
+742.92	0.00351062
+743.04	0.00351025
+743.16	0.00350989
+743.28	0.00350953
+743.4	0.00350916
+743.52	0.0035088
+743.64	0.00350844
+743.76	0.00350807
+743.88	0.00350771
+744	0.00350735
+744.12	0.00350698
+744.24	0.00350662
+744.36	0.00350626
+744.48	0.0035059
+744.6	0.00350553
+744.72	0.00350517
+744.84	0.00350481
+744.96	0.00350445
+745.08	0.00350408
+745.2	0.00350372
+745.32	0.00350336
+745.44	0.003503
+745.56	0.00350264
+745.68	0.00350228
+745.8	0.00350192
+745.92	0.00350155
+746.04	0.00350119
+746.16	0.00350083
+746.28	0.00350047
+746.4	0.00350011
+746.52	0.00349975
+746.64	0.00349939
+746.76	0.00349903
+746.88	0.00349867
+747	0.00349831
+747.12	0.00349795
+747.24	0.00349759
+747.36	0.00349723
+747.48	0.00349687
+747.6	0.00349651
+747.72	0.00349615
+747.84	0.00349579
+747.96	0.00349543
+748.08	0.00349507
+748.2	0.00349471
+748.32	0.00349436
+748.44	0.003494
+748.56	0.00349364
+748.68	0.00349328
+748.8	0.00349292
+748.92	0.00349256
+749.04	0.0034922
+749.16	0.00349185
+749.28	0.00349149
+749.4	0.00349113
+749.52	0.00349077
+749.64	0.00349041
+749.76	0.00349006
+749.88	0.0034897
+750	0.00348934
+750.12	0.00348899
+750.24	0.00348863
+750.36	0.00348827
+750.48	0.00348791
+750.6	0.00348756
+750.72	0.0034872
+750.84	0.00348684
+750.96	0.00348649
+751.08	0.00348613
+751.2	0.00348577
+751.32	0.00348542
+751.44	0.00348506
+751.56	0.00348471
+751.68	0.00348435
+751.8	0.00348399
+751.92	0.00348364
+752.04	0.00348328
+752.16	0.00348293
+752.28	0.00348257
+752.4	0.00348222
+752.52	0.00348186
+752.64	0.00348151
+752.76	0.00348115
+752.88	0.0034808
+753	0.00348044
+753.12	0.00348009
+753.24	0.00347973
+753.36	0.00347938
+753.48	0.00347903
+753.6	0.00347867
+753.72	0.00347832
+753.84	0.00347796
+753.96	0.00347761
+754.08	0.00347726
+754.2	0.0034769
+754.32	0.00347655
+754.44	0.0034762
+754.56	0.00347584
+754.68	0.00347549
+754.8	0.00347514
+754.92	0.00347478
+755.04	0.00347443
+755.16	0.00347408
+755.28	0.00347373
+755.4	0.00347337
+755.52	0.00347302
+755.64	0.00347267
+755.76	0.00347232
+755.88	0.00347196
+756	0.00347161
+756.12	0.00347126
+756.24	0.00347091
+756.36	0.00347056
+756.48	0.00347021
+756.6	0.00346985
+756.72	0.0034695
+756.84	0.00346915
+756.96	0.0034688
+757.08	0.00346845
+757.2	0.0034681
+757.32	0.00346775
+757.44	0.0034674
+757.56	0.00346705
+757.68	0.0034667
+757.8	0.00346635
+757.92	0.003466
+758.04	0.00346565
+758.16	0.0034653
+758.28	0.00346495
+758.4	0.0034646
+758.52	0.00346425
+758.64	0.0034639
+758.76	0.00346355
+758.88	0.0034632
+759	0.00346285
+759.12	0.0034625
+759.24	0.00346215
+759.36	0.0034618
+759.48	0.00346145
+759.6	0.0034611
+759.72	0.00346075
+759.84	0.00346041
+759.96	0.00346006
+760.08	0.00345971
+760.2	0.00345936
+760.32	0.00345901
+760.44	0.00345866
+760.56	0.00345832
+760.68	0.00345797
+760.8	0.00345762
+760.92	0.00345727
+761.04	0.00345693
+761.16	0.00345658
+761.28	0.00345623
+761.4	0.00345588
+761.52	0.00345554
+761.64	0.00345519
+761.76	0.00345484
+761.88	0.0034545
+762	0.00345415
+762.12	0.0034538
+762.24	0.00345346
+762.36	0.00345311
+762.48	0.00345276
+762.6	0.00345242
+762.72	0.00345207
+762.84	0.00345173
+762.96	0.00345138
+763.08	0.00345103
+763.2	0.00345069
+763.32	0.00345034
+763.44	0.00345
+763.56	0.00344965
+763.68	0.00344931
+763.8	0.00344896
+763.92	0.00344862
+764.04	0.00344827
+764.16	0.00344793
+764.28	0.00344758
+764.4	0.00344724
+764.52	0.00344689
+764.64	0.00344655
+764.76	0.00344621
+764.88	0.00344586
+765	0.00344552
+765.12	0.00344517
+765.24	0.00344483
+765.36	0.00344449
+765.48	0.00344414
+765.6	0.0034438
+765.72	0.00344346
+765.84	0.00344311
+765.96	0.00344277
+766.08	0.00344243
+766.2	0.00344208
+766.32	0.00344174
+766.44	0.0034414
+766.56	0.00344105
+766.68	0.00344071
+766.8	0.00344037
+766.92	0.00344003
+767.04	0.00343968
+767.16	0.00343934
+767.28	0.003439
+767.4	0.00343866
+767.52	0.00343832
+767.64	0.00343797
+767.76	0.00343763
+767.88	0.00343729
+768	0.00343695
+768.12	0.00343661
+768.24	0.00343627
+768.36	0.00343593
+768.48	0.00343558
+768.6	0.00343524
+768.72	0.0034349
+768.84	0.00343456
+768.96	0.00343422
+769.08	0.00343388
+769.2	0.00343354
+769.32	0.0034332
+769.44	0.00343286
+769.56	0.00343252
+769.68	0.00343218
+769.8	0.00343184
+769.92	0.0034315
+770.04	0.00343116
+770.16	0.00343082
+770.28	0.00343048
+770.4	0.00343014
+770.52	0.0034298
+770.64	0.00342946
+770.76	0.00342912
+770.88	0.00342878
+771	0.00342845
+771.12	0.00342811
+771.24	0.00342777
+771.36	0.00342743
+771.48	0.00342709
+771.6	0.00342675
+771.72	0.00342641
+771.84	0.00342608
+771.96	0.00342574
+772.08	0.0034254
+772.2	0.00342506
+772.32	0.00342472
+772.44	0.00342439
+772.56	0.00342405
+772.68	0.00342371
+772.8	0.00342337
+772.92	0.00342304
+773.04	0.0034227
+773.16	0.00342236
+773.28	0.00342203
+773.4	0.00342169
+773.52	0.00342135
+773.64	0.00342101
+773.76	0.00342068
+773.88	0.00342034
+774	0.00342001
+774.12	0.00341967
+774.24	0.00341933
+774.36	0.003419
+774.48	0.00341866
+774.6	0.00341832
+774.72	0.00341799
+774.84	0.00341765
+774.96	0.00341732
+775.08	0.00341698
+775.2	0.00341665
+775.32	0.00341631
+775.44	0.00341598
+775.56	0.00341564
+775.68	0.00341531
+775.8	0.00341497
+775.92	0.00341464
+776.04	0.0034143
+776.16	0.00341397
+776.28	0.00341363
+776.4	0.0034133
+776.52	0.00341296
+776.64	0.00341263
+776.76	0.00341229
+776.88	0.00341196
+777	0.00341163
+777.12	0.00341129
+777.24	0.00341096
+777.36	0.00341063
+777.48	0.00341029
+777.6	0.00340996
+777.72	0.00340963
+777.84	0.00340929
+777.96	0.00340896
+778.08	0.00340863
+778.2	0.00340829
+778.32	0.00340796
+778.44	0.00340763
+778.56	0.00340729
+778.68	0.00340696
+778.8	0.00340663
+778.92	0.0034063
+779.04	0.00340597
+779.16	0.00340563
+779.28	0.0034053
+779.4	0.00340497
+779.52	0.00340464
+779.64	0.00340431
+779.76	0.00340397
+779.88	0.00340364
+780	0.00340331
+780.12	0.00340298
+780.24	0.00340265
+780.36	0.00340232
+780.48	0.00340199
+780.6	0.00340165
+780.72	0.00340132
+780.84	0.00340099
+780.96	0.00340066
+781.08	0.00340033
+781.2	0.0034
+781.32	0.00339967
+781.44	0.00339934
+781.56	0.00339901
+781.68	0.00339868
+781.8	0.00339835
+781.92	0.00339802
+782.04	0.00339769
+782.16	0.00339736
+782.28	0.00339703
+782.4	0.0033967
+782.52	0.00339637
+782.64	0.00339604
+782.76	0.00339571
+782.88	0.00339538
+783	0.00339506
+783.12	0.00339473
+783.24	0.0033944
+783.36	0.00339407
+783.48	0.00339374
+783.6	0.00339341
+783.72	0.00339308
+783.84	0.00339276
+783.96	0.00339243
+784.08	0.0033921
+784.2	0.00339177
+784.32	0.00339144
+784.44	0.00339112
+784.56	0.00339079
+784.68	0.00339046
+784.8	0.00339013
+784.92	0.0033898
+785.04	0.00338948
+785.16	0.00338915
+785.28	0.00338882
+785.4	0.0033885
+785.52	0.00338817
+785.64	0.00338784
+785.76	0.00338751
+785.88	0.00338719
+786	0.00338686
+786.12	0.00338653
+786.24	0.00338621
+786.36	0.00338588
+786.48	0.00338556
+786.6	0.00338523
+786.72	0.0033849
+786.84	0.00338458
+786.96	0.00338425
+787.08	0.00338393
+787.2	0.0033836
+787.32	0.00338327
+787.44	0.00338295
+787.56	0.00338262
+787.68	0.0033823
+787.8	0.00338197
+787.92	0.00338165
+788.04	0.00338132
+788.16	0.003381
+788.28	0.00338067
+788.4	0.00338035
+788.52	0.00338002
+788.64	0.0033797
+788.76	0.00337938
+788.88	0.00337905
+789	0.00337873
+789.12	0.0033784
+789.24	0.00337808
+789.36	0.00337775
+789.48	0.00337743
+789.6	0.00337711
+789.72	0.00337678
+789.84	0.00337646
+789.96	0.00337614
+790.08	0.00337581
+790.2	0.00337549
+790.32	0.00337517
+790.44	0.00337484
+790.56	0.00337452
+790.68	0.0033742
+790.8	0.00337387
+790.92	0.00337355
+791.04	0.00337323
+791.16	0.00337291
+791.28	0.00337258
+791.4	0.00337226
+791.52	0.00337194
+791.64	0.00337162
+791.76	0.0033713
+791.88	0.00337097
+792	0.00337065
+792.12	0.00337033
+792.24	0.00337001
+792.36	0.00336969
+792.48	0.00336937
+792.6	0.00336904
+792.72	0.00336872
+792.84	0.0033684
+792.96	0.00336808
+793.08	0.00336776
+793.2	0.00336744
+793.32	0.00336712
+793.44	0.0033668
+793.56	0.00336648
+793.68	0.00336616
+793.8	0.00336583
+793.92	0.00336551
+794.04	0.00336519
+794.16	0.00336487
+794.28	0.00336455
+794.4	0.00336423
+794.52	0.00336391
+794.64	0.00336359
+794.76	0.00336327
+794.88	0.00336295
+795	0.00336263
+795.12	0.00336232
+795.24	0.003362
+795.36	0.00336168
+795.48	0.00336136
+795.6	0.00336104
+795.72	0.00336072
+795.84	0.0033604
+795.96	0.00336008
+796.08	0.00335976
+796.2	0.00335944
+796.32	0.00335913
+796.44	0.00335881
+796.56	0.00335849
+796.68	0.00335817
+796.8	0.00335785
+796.92	0.00335753
+797.04	0.00335722
+797.16	0.0033569
+797.28	0.00335658
+797.4	0.00335626
+797.52	0.00335595
+797.64	0.00335563
+797.76	0.00335531
+797.88	0.00335499
+798	0.00335468
+798.12	0.00335436
+798.24	0.00335404
+798.36	0.00335372
+798.48	0.00335341
+798.6	0.00335309
+798.72	0.00335277
+798.84	0.00335246
+798.96	0.00335214
+799.08	0.00335183
+799.2	0.00335151
+799.32	0.00335119
+799.44	0.00335088
+799.56	0.00335056
+799.68	0.00335024
+799.8	0.00334993
+799.92	0.00334961
+800.04	0.0033493
+800.16	0.00334898
+800.28	0.00334867
+800.4	0.00334835
+800.52	0.00334804
+800.64	0.00334772
+800.76	0.0033474
+800.88	0.00334709
+801	0.00334677
+801.12	0.00334646
+801.24	0.00334615
+801.36	0.00334583
+801.48	0.00334552
+801.6	0.0033452
+801.72	0.00334489
+801.84	0.00334457
+801.96	0.00334426
+802.08	0.00334394
+802.2	0.00334363
+802.32	0.00334332
+802.44	0.003343
+802.56	0.00334269
+802.68	0.00334237
+802.8	0.00334206
+802.92	0.00334175
+803.04	0.00334143
+803.16	0.00334112
+803.28	0.00334081
+803.4	0.00334049
+803.52	0.00334018
+803.64	0.00333987
+803.76	0.00333956
+803.88	0.00333924
+804	0.00333893
+804.12	0.00333862
+804.24	0.0033383
+804.36	0.00333799
+804.48	0.00333768
+804.6	0.00333737
+804.72	0.00333706
+804.84	0.00333674
+804.96	0.00333643
+805.08	0.00333612
+805.2	0.00333581
+805.32	0.0033355
+805.44	0.00333518
+805.56	0.00333487
+805.68	0.00333456
+805.8	0.00333425
+805.92	0.00333394
+806.04	0.00333363
+806.16	0.00333332
+806.28	0.00333301
+806.4	0.00333269
+806.52	0.00333238
+806.64	0.00333207
+806.76	0.00333176
+806.88	0.00333145
+807	0.00333114
+807.12	0.00333083
+807.24	0.00333052
+807.36	0.00333021
+807.48	0.0033299
+807.6	0.00332959
+807.72	0.00332928
+807.84	0.00332897
+807.96	0.00332866
+808.08	0.00332835
+808.2	0.00332804
+808.32	0.00332773
+808.44	0.00332742
+808.56	0.00332711
+808.68	0.0033268
+808.8	0.0033265
+808.92	0.00332619
+809.04	0.00332588
+809.16	0.00332557
+809.28	0.00332526
+809.4	0.00332495
+809.52	0.00332464
+809.64	0.00332433
+809.76	0.00332403
+809.88	0.00332372
+810	0.00332341
+810.12	0.0033231
+810.24	0.00332279
+810.36	0.00332248
+810.48	0.00332218
+810.6	0.00332187
+810.72	0.00332156
+810.84	0.00332125
+810.96	0.00332095
+811.08	0.00332064
+811.2	0.00332033
+811.32	0.00332002
+811.44	0.00331972
+811.56	0.00331941
+811.68	0.0033191
+811.8	0.0033188
+811.92	0.00331849
+812.04	0.00331818
+812.16	0.00331787
+812.28	0.00331757
+812.4	0.00331726
+812.52	0.00331696
+812.64	0.00331665
+812.76	0.00331634
+812.88	0.00331604
+813	0.00331573
+813.12	0.00331542
+813.24	0.00331512
+813.36	0.00331481
+813.48	0.00331451
+813.6	0.0033142
+813.72	0.0033139
+813.84	0.00331359
+813.96	0.00331328
+814.08	0.00331298
+814.2	0.00331267
+814.32	0.00331237
+814.44	0.00331206
+814.56	0.00331176
+814.68	0.00331145
+814.8	0.00331115
+814.92	0.00331085
+815.04	0.00331054
+815.16	0.00331024
+815.28	0.00330993
+815.4	0.00330963
+815.52	0.00330932
+815.64	0.00330902
+815.76	0.00330871
+815.88	0.00330841
+816	0.00330811
+816.12	0.0033078
+816.24	0.0033075
+816.36	0.0033072
+816.48	0.00330689
+816.6	0.00330659
+816.72	0.00330629
+816.84	0.00330598
+816.96	0.00330568
+817.08	0.00330538
+817.2	0.00330507
+817.32	0.00330477
+817.44	0.00330447
+817.56	0.00330416
+817.68	0.00330386
+817.8	0.00330356
+817.92	0.00330326
+818.04	0.00330295
+818.16	0.00330265
+818.28	0.00330235
+818.4	0.00330205
+818.52	0.00330174
+818.64	0.00330144
+818.76	0.00330114
+818.88	0.00330084
+819	0.00330054
+819.12	0.00330024
+819.24	0.00329993
+819.36	0.00329963
+819.48	0.00329933
+819.6	0.00329903
+819.72	0.00329873
+819.84	0.00329843
+819.96	0.00329813
+820.08	0.00329782
+820.2	0.00329752
+820.32	0.00329722
+820.44	0.00329692
+820.56	0.00329662
+820.68	0.00329632
+820.8	0.00329602
+820.92	0.00329572
+821.04	0.00329542
+821.16	0.00329512
+821.28	0.00329482
+821.4	0.00329452
+821.52	0.00329422
+821.64	0.00329392
+821.76	0.00329362
+821.88	0.00329332
+822	0.00329302
+822.12	0.00329272
+822.24	0.00329242
+822.36	0.00329212
+822.48	0.00329182
+822.6	0.00329152
+822.72	0.00329122
+822.84	0.00329092
+822.96	0.00329063
+823.08	0.00329033
+823.2	0.00329003
+823.32	0.00328973
+823.44	0.00328943
+823.56	0.00328913
+823.68	0.00328883
+823.8	0.00328854
+823.92	0.00328824
+824.04	0.00328794
+824.16	0.00328764
+824.28	0.00328734
+824.4	0.00328704
+824.52	0.00328675
+824.64	0.00328645
+824.76	0.00328615
+824.88	0.00328585
+825	0.00328556
+825.12	0.00328526
+825.24	0.00328496
+825.36	0.00328466
+825.48	0.00328437
+825.6	0.00328407
+825.72	0.00328377
+825.84	0.00328348
+825.96	0.00328318
+826.08	0.00328288
+826.2	0.00328259
+826.32	0.00328229
+826.44	0.00328199
+826.56	0.0032817
+826.68	0.0032814
+826.8	0.0032811
+826.92	0.00328081
+827.04	0.00328051
+827.16	0.00328021
+827.28	0.00327992
+827.4	0.00327962
+827.52	0.00327933
+827.64	0.00327903
+827.76	0.00327874
+827.88	0.00327844
+828	0.00327814
+828.12	0.00327785
+828.24	0.00327755
+828.36	0.00327726
+828.48	0.00327696
+828.6	0.00327667
+828.72	0.00327637
+828.84	0.00327608
+828.96	0.00327578
+829.08	0.00327549
+829.2	0.00327519
+829.32	0.0032749
+829.44	0.0032746
+829.56	0.00327431
+829.68	0.00327402
+829.8	0.00327372
+829.92	0.00327343
+830.04	0.00327313
+830.16	0.00327284
+830.28	0.00327255
+830.4	0.00327225
+830.52	0.00327196
+830.64	0.00327166
+830.76	0.00327137
+830.88	0.00327108
+831	0.00327078
+831.12	0.00327049
+831.24	0.0032702
+831.36	0.0032699
+831.48	0.00326961
+831.6	0.00326932
+831.72	0.00326903
+831.84	0.00326873
+831.96	0.00326844
+832.08	0.00326815
+832.2	0.00326785
+832.32	0.00326756
+832.44	0.00326727
+832.56	0.00326698
+832.68	0.00326668
+832.8	0.00326639
+832.92	0.0032661
+833.04	0.00326581
+833.16	0.00326552
+833.28	0.00326522
+833.4	0.00326493
+833.52	0.00326464
+833.64	0.00326435
+833.76	0.00326406
+833.88	0.00326377
+834	0.00326347
+834.12	0.00326318
+834.24	0.00326289
+834.36	0.0032626
+834.48	0.00326231
+834.6	0.00326202
+834.72	0.00326173
+834.84	0.00326144
+834.96	0.00326115
+835.08	0.00326086
+835.2	0.00326057
+835.32	0.00326027
+835.44	0.00325998
+835.56	0.00325969
+835.68	0.0032594
+835.8	0.00325911
+835.92	0.00325882
+836.04	0.00325853
+836.16	0.00325824
+836.28	0.00325795
+836.4	0.00325766
+836.52	0.00325737
+836.64	0.00325708
+836.76	0.00325679
+836.88	0.00325651
+837	0.00325622
+837.12	0.00325593
+837.24	0.00325564
+837.36	0.00325535
+837.48	0.00325506
+837.6	0.00325477
+837.72	0.00325448
+837.84	0.00325419
+837.96	0.0032539
+838.08	0.00325362
+838.2	0.00325333
+838.32	0.00325304
+838.44	0.00325275
+838.56	0.00325246
+838.68	0.00325217
+838.8	0.00325188
+838.92	0.0032516
+839.04	0.00325131
+839.16	0.00325102
+839.28	0.00325073
+839.4	0.00325045
+839.52	0.00325016
+839.64	0.00324987
+839.76	0.00324958
+839.88	0.00324929
+840	0.00324901
+840.12	0.00324872
+840.24	0.00324843
+840.36	0.00324815
+840.48	0.00324786
+840.6	0.00324757
+840.72	0.00324728
+840.84	0.003247
+840.96	0.00324671
+841.08	0.00324642
+841.2	0.00324614
+841.32	0.00324585
+841.44	0.00324556
+841.56	0.00324528
+841.68	0.00324499
+841.8	0.00324471
+841.92	0.00324442
+842.04	0.00324413
+842.16	0.00324385
+842.28	0.00324356
+842.4	0.00324328
+842.52	0.00324299
+842.64	0.0032427
+842.76	0.00324242
+842.88	0.00324213
+843	0.00324185
+843.12	0.00324156
+843.24	0.00324128
+843.36	0.00324099
+843.48	0.00324071
+843.6	0.00324042
+843.72	0.00324014
+843.84	0.00323985
+843.96	0.00323957
+844.08	0.00323928
+844.2	0.003239
+844.32	0.00323871
+844.44	0.00323843
+844.56	0.00323815
+844.68	0.00323786
+844.8	0.00323758
+844.92	0.00323729
+845.04	0.00323701
+845.16	0.00323672
+845.28	0.00323644
+845.4	0.00323616
+845.52	0.00323587
+845.64	0.00323559
+845.76	0.00323531
+845.88	0.00323502
+846	0.00323474
+846.12	0.00323445
+846.24	0.00323417
+846.36	0.00323389
+846.48	0.00323361
+846.6	0.00323332
+846.72	0.00323304
+846.84	0.00323276
+846.96	0.00323247
+847.08	0.00323219
+847.2	0.00323191
+847.32	0.00323163
+847.44	0.00323134
+847.56	0.00323106
+847.68	0.00323078
+847.8	0.0032305
+847.92	0.00323021
+848.04	0.00322993
+848.16	0.00322965
+848.28	0.00322937
+848.4	0.00322909
+848.52	0.0032288
+848.64	0.00322852
+848.76	0.00322824
+848.88	0.00322796
+849	0.00322768
+849.12	0.0032274
+849.24	0.00322711
+849.36	0.00322683
+849.48	0.00322655
+849.6	0.00322627
+849.72	0.00322599
+849.84	0.00322571
+849.96	0.00322543
+850.08	0.00322515
+850.2	0.00322487
+850.32	0.00322458
+850.44	0.0032243
+850.56	0.00322402
+850.68	0.00322374
+850.8	0.00322346
+850.92	0.00322318
+851.04	0.0032229
+851.16	0.00322262
+851.28	0.00322234
+851.4	0.00322206
+851.52	0.00322178
+851.64	0.0032215
+851.76	0.00322122
+851.88	0.00322094
+852	0.00322066
+852.12	0.00322038
+852.24	0.0032201
+852.36	0.00321982
+852.48	0.00321955
+852.6	0.00321927
+852.72	0.00321899
+852.84	0.00321871
+852.96	0.00321843
+853.08	0.00321815
+853.2	0.00321787
+853.32	0.00321759
+853.44	0.00321731
+853.56	0.00321703
+853.68	0.00321676
+853.8	0.00321648
+853.92	0.0032162
+854.04	0.00321592
+854.16	0.00321564
+854.28	0.00321536
+854.4	0.00321509
+854.52	0.00321481
+854.64	0.00321453
+854.76	0.00321425
+854.88	0.00321397
+855	0.0032137
+855.12	0.00321342
+855.24	0.00321314
+855.36	0.00321286
+855.48	0.00321259
+855.6	0.00321231
+855.72	0.00321203
+855.84	0.00321175
+855.96	0.00321148
+856.08	0.0032112
+856.2	0.00321092
+856.32	0.00321065
+856.44	0.00321037
+856.56	0.00321009
+856.68	0.00320982
+856.8	0.00320954
+856.92	0.00320926
+857.04	0.00320899
+857.16	0.00320871
+857.28	0.00320843
+857.4	0.00320816
+857.52	0.00320788
+857.64	0.00320761
+857.76	0.00320733
+857.88	0.00320705
+858	0.00320678
+858.12	0.0032065
+858.24	0.00320623
+858.36	0.00320595
+858.48	0.00320568
+858.6	0.0032054
+858.72	0.00320512
+858.84	0.00320485
+858.96	0.00320457
+859.08	0.0032043
+859.2	0.00320402
+859.32	0.00320375
+859.44	0.00320347
+859.56	0.0032032
+859.68	0.00320292
+859.8	0.00320265
+859.92	0.00320237
+860.04	0.0032021
+860.16	0.00320183
+860.28	0.00320155
+860.4	0.00320128
+860.52	0.003201
+860.64	0.00320073
+860.76	0.00320045
+860.88	0.00320018
+861	0.00319991
+861.12	0.00319963
+861.24	0.00319936
+861.36	0.00319908
+861.48	0.00319881
+861.6	0.00319854
+861.72	0.00319826
+861.84	0.00319799
+861.96	0.00319772
+862.08	0.00319744
+862.2	0.00319717
+862.32	0.0031969
+862.44	0.00319662
+862.56	0.00319635
+862.68	0.00319608
+862.8	0.0031958
+862.92	0.00319553
+863.04	0.00319526
+863.16	0.00319499
+863.28	0.00319471
+863.4	0.00319444
+863.52	0.00319417
+863.64	0.0031939
+863.76	0.00319362
+863.88	0.00319335
+864	0.00319308
+864.12	0.00319281
+864.24	0.00319254
+864.36	0.00319226
+864.48	0.00319199
+864.6	0.00319172
+864.72	0.00319145
+864.84	0.00319118
+864.96	0.0031909
+865.08	0.00319063
+865.2	0.00319036
+865.32	0.00319009
+865.44	0.00318982
+865.56	0.00318955
+865.68	0.00318928
+865.8	0.00318901
+865.92	0.00318873
+866.04	0.00318846
+866.16	0.00318819
+866.28	0.00318792
+866.4	0.00318765
+866.52	0.00318738
+866.64	0.00318711
+866.76	0.00318684
+866.88	0.00318657
+867	0.0031863
+867.12	0.00318603
+867.24	0.00318576
+867.36	0.00318549
+867.48	0.00318522
+867.6	0.00318495
+867.72	0.00318468
+867.84	0.00318441
+867.96	0.00318414
+868.08	0.00318387
+868.2	0.0031836
+868.32	0.00318333
+868.44	0.00318306
+868.56	0.00318279
+868.68	0.00318252
+868.8	0.00318225
+868.92	0.00318198
+869.04	0.00318171
+869.16	0.00318144
+869.28	0.00318118
+869.4	0.00318091
+869.52	0.00318064
+869.64	0.00318037
+869.76	0.0031801
+869.88	0.00317983
+870	0.00317956
+870.12	0.00317929
+870.24	0.00317903
+870.36	0.00317876
+870.48	0.00317849
+870.6	0.00317822
+870.72	0.00317795
+870.84	0.00317769
+870.96	0.00317742
+871.08	0.00317715
+871.2	0.00317688
+871.32	0.00317661
+871.44	0.00317635
+871.56	0.00317608
+871.68	0.00317581
+871.8	0.00317554
+871.92	0.00317528
+872.04	0.00317501
+872.16	0.00317474
+872.28	0.00317447
+872.4	0.00317421
+872.52	0.00317394
+872.64	0.00317367
+872.76	0.00317341
+872.88	0.00317314
+873	0.00317287
+873.12	0.00317261
+873.24	0.00317234
+873.36	0.00317207
+873.48	0.00317181
+873.6	0.00317154
+873.72	0.00317127
+873.84	0.00317101
+873.96	0.00317074
+874.08	0.00317048
+874.2	0.00317021
+874.32	0.00316994
+874.44	0.00316968
+874.56	0.00316941
+874.68	0.00316915
+874.8	0.00316888
+874.92	0.00316861
+875.04	0.00316835
+875.16	0.00316808
+875.28	0.00316782
+875.4	0.00316755
+875.52	0.00316729
+875.64	0.00316702
+875.76	0.00316676
+875.88	0.00316649
+876	0.00316623
+876.12	0.00316596
+876.24	0.0031657
+876.36	0.00316543
+876.48	0.00316517
+876.6	0.0031649
+876.72	0.00316464
+876.84	0.00316437
+876.96	0.00316411
+877.08	0.00316384
+877.2	0.00316358
+877.32	0.00316332
+877.44	0.00316305
+877.56	0.00316279
+877.68	0.00316252
+877.8	0.00316226
+877.92	0.003162
+878.04	0.00316173
+878.16	0.00316147
+878.28	0.0031612
+878.4	0.00316094
+878.52	0.00316068
+878.64	0.00316041
+878.76	0.00316015
+878.88	0.00315989
+879	0.00315962
+879.12	0.00315936
+879.24	0.0031591
+879.36	0.00315883
+879.48	0.00315857
+879.6	0.00315831
+879.72	0.00315805
+879.84	0.00315778
+879.96	0.00315752
+880.08	0.00315726
+880.2	0.003157
+880.32	0.00315673
+880.44	0.00315647
+880.56	0.00315621
+880.68	0.00315595
+880.8	0.00315568
+880.92	0.00315542
+881.04	0.00315516
+881.16	0.0031549
+881.28	0.00315464
+881.4	0.00315437
+881.52	0.00315411
+881.64	0.00315385
+881.76	0.00315359
+881.88	0.00315333
+882	0.00315307
+882.12	0.0031528
+882.24	0.00315254
+882.36	0.00315228
+882.48	0.00315202
+882.6	0.00315176
+882.72	0.0031515
+882.84	0.00315124
+882.96	0.00315098
+883.08	0.00315071
+883.2	0.00315045
+883.32	0.00315019
+883.44	0.00314993
+883.56	0.00314967
+883.68	0.00314941
+883.8	0.00314915
+883.92	0.00314889
+884.04	0.00314863
+884.16	0.00314837
+884.28	0.00314811
+884.4	0.00314785
+884.52	0.00314759
+884.64	0.00314733
+884.76	0.00314707
+884.88	0.00314681
+885	0.00314655
+885.12	0.00314629
+885.24	0.00314603
+885.36	0.00314577
+885.48	0.00314551
+885.6	0.00314525
+885.72	0.00314499
+885.84	0.00314473
+885.96	0.00314447
+886.08	0.00314421
+886.2	0.00314396
+886.32	0.0031437
+886.44	0.00314344
+886.56	0.00314318
+886.68	0.00314292
+886.8	0.00314266
+886.92	0.0031424
+887.04	0.00314214
+887.16	0.00314188
+887.28	0.00314163
+887.4	0.00314137
+887.52	0.00314111
+887.64	0.00314085
+887.76	0.00314059
+887.88	0.00314034
+888	0.00314008
+888.12	0.00313982
+888.24	0.00313956
+888.36	0.0031393
+888.48	0.00313905
+888.6	0.00313879
+888.72	0.00313853
+888.84	0.00313827
+888.96	0.00313802
+889.08	0.00313776
+889.2	0.0031375
+889.32	0.00313724
+889.44	0.00313699
+889.56	0.00313673
+889.68	0.00313647
+889.8	0.00313621
+889.92	0.00313596
+890.04	0.0031357
+890.16	0.00313544
+890.28	0.00313519
+890.4	0.00313493
+890.52	0.00313467
+890.64	0.00313442
+890.76	0.00313416
+890.88	0.0031339
+891	0.00313365
+891.12	0.00313339
+891.24	0.00313314
+891.36	0.00313288
+891.48	0.00313262
+891.6	0.00313237
+891.72	0.00313211
+891.84	0.00313186
+891.96	0.0031316
+892.08	0.00313134
+892.2	0.00313109
+892.32	0.00313083
+892.44	0.00313058
+892.56	0.00313032
+892.68	0.00313007
+892.8	0.00312981
+892.92	0.00312956
+893.04	0.0031293
+893.16	0.00312905
+893.28	0.00312879
+893.4	0.00312854
+893.52	0.00312828
+893.64	0.00312803
+893.76	0.00312777
+893.88	0.00312752
+894	0.00312726
+894.12	0.00312701
+894.24	0.00312675
+894.36	0.0031265
+894.48	0.00312624
+894.6	0.00312599
+894.72	0.00312573
+894.84	0.00312548
+894.96	0.00312523
+895.08	0.00312497
+895.2	0.00312472
+895.32	0.00312446
+895.44	0.00312421
+895.56	0.00312396
+895.68	0.0031237
+895.8	0.00312345
+895.92	0.0031232
+896.04	0.00312294
+896.16	0.00312269
+896.28	0.00312244
+896.4	0.00312218
+896.52	0.00312193
+896.64	0.00312168
+896.76	0.00312142
+896.88	0.00312117
+897	0.00312092
+897.12	0.00312066
+897.24	0.00312041
+897.36	0.00312016
+897.48	0.0031199
+897.6	0.00311965
+897.72	0.0031194
+897.84	0.00311915
+897.96	0.00311889
+898.08	0.00311864
+898.2	0.00311839
+898.32	0.00311814
+898.44	0.00311788
+898.56	0.00311763
+898.68	0.00311738
+898.8	0.00311713
+898.92	0.00311688
+899.04	0.00311662
+899.16	0.00311637
+899.28	0.00311612
+899.4	0.00311587
+899.52	0.00311562
+899.64	0.00311537
+899.76	0.00311511
+899.88	0.00311486
+900	0.00311461
+900.12	0.00311436
+900.24	0.00311411
+900.36	0.00311386
+900.48	0.00311361
+900.6	0.00311336
+900.72	0.0031131
+900.84	0.00311285
+900.96	0.0031126
+901.08	0.00311235
+901.2	0.0031121
+901.32	0.00311185
+901.44	0.0031116
+901.56	0.00311135
+901.68	0.0031111
+901.8	0.00311085
+901.92	0.0031106
+902.04	0.00311035
+902.16	0.0031101
+902.28	0.00310985
+902.4	0.0031096
+902.52	0.00310935
+902.64	0.0031091
+902.76	0.00310885
+902.88	0.0031086
+903	0.00310835
+903.12	0.0031081
+903.24	0.00310785
+903.36	0.0031076
+903.48	0.00310735
+903.6	0.0031071
+903.72	0.00310685
+903.84	0.0031066
+903.96	0.00310635
+904.08	0.0031061
+904.2	0.00310585
+904.32	0.0031056
+904.44	0.00310536
+904.56	0.00310511
+904.68	0.00310486
+904.8	0.00310461
+904.92	0.00310436
+905.04	0.00310411
+905.16	0.00310386
+905.28	0.00310361
+905.4	0.00310337
+905.52	0.00310312
+905.64	0.00310287
+905.76	0.00310262
+905.88	0.00310237
+906	0.00310212
+906.12	0.00310188
+906.24	0.00310163
+906.36	0.00310138
+906.48	0.00310113
+906.6	0.00310088
+906.72	0.00310064
+906.84	0.00310039
+906.96	0.00310014
+907.08	0.00309989
+907.2	0.00309965
+907.32	0.0030994
+907.44	0.00309915
+907.56	0.0030989
+907.68	0.00309866
+907.8	0.00309841
+907.92	0.00309816
+908.04	0.00309792
+908.16	0.00309767
+908.28	0.00309742
+908.4	0.00309717
+908.52	0.00309693
+908.64	0.00309668
+908.76	0.00309643
+908.88	0.00309619
+909	0.00309594
+909.12	0.00309569
+909.24	0.00309545
+909.36	0.0030952
+909.48	0.00309495
+909.6	0.00309471
+909.72	0.00309446
+909.84	0.00309422
+909.96	0.00309397
+910.08	0.00309372
+910.2	0.00309348
+910.32	0.00309323
+910.44	0.00309299
+910.56	0.00309274
+910.68	0.0030925
+910.8	0.00309225
+910.92	0.003092
+911.04	0.00309176
+911.16	0.00309151
+911.28	0.00309127
+911.4	0.00309102
+911.52	0.00309078
+911.64	0.00309053
+911.76	0.00309029
+911.88	0.00309004
+912	0.0030898
+912.12	0.00308955
+912.24	0.00308931
+912.36	0.00308906
+912.48	0.00308882
+912.6	0.00308857
+912.72	0.00308833
+912.84	0.00308808
+912.96	0.00308784
+913.08	0.00308759
+913.2	0.00308735
+913.32	0.00308711
+913.44	0.00308686
+913.56	0.00308662
+913.68	0.00308637
+913.8	0.00308613
+913.92	0.00308588
+914.04	0.00308564
+914.16	0.0030854
+914.28	0.00308515
+914.4	0.00308491
+914.52	0.00308467
+914.64	0.00308442
+914.76	0.00308418
+914.88	0.00308393
+915	0.00308369
+915.12	0.00308345
+915.24	0.0030832
+915.36	0.00308296
+915.48	0.00308272
+915.6	0.00308248
+915.72	0.00308223
+915.84	0.00308199
+915.96	0.00308175
+916.08	0.0030815
+916.2	0.00308126
+916.32	0.00308102
+916.44	0.00308077
+916.56	0.00308053
+916.68	0.00308029
+916.8	0.00308005
+916.92	0.0030798
+917.04	0.00307956
+917.16	0.00307932
+917.28	0.00307908
+917.4	0.00307884
+917.52	0.00307859
+917.64	0.00307835
+917.76	0.00307811
+917.88	0.00307787
+918	0.00307763
+918.12	0.00307738
+918.24	0.00307714
+918.36	0.0030769
+918.48	0.00307666
+918.6	0.00307642
+918.72	0.00307617
+918.84	0.00307593
+918.96	0.00307569
+919.08	0.00307545
+919.2	0.00307521
+919.32	0.00307497
+919.44	0.00307473
+919.56	0.00307449
+919.68	0.00307424
+919.8	0.003074
+919.92	0.00307376
+920.04	0.00307352
+920.16	0.00307328
+920.28	0.00307304
+920.4	0.0030728
+920.52	0.00307256
+920.64	0.00307232
+920.76	0.00307208
+920.88	0.00307184
+921	0.0030716
+921.12	0.00307136
+921.24	0.00307112
+921.36	0.00307088
+921.48	0.00307064
+921.6	0.0030704
+921.72	0.00307016
+921.84	0.00306992
+921.96	0.00306968
+922.08	0.00306944
+922.2	0.0030692
+922.32	0.00306896
+922.44	0.00306872
+922.56	0.00306848
+922.68	0.00306824
+922.8	0.003068
+922.92	0.00306776
+923.04	0.00306752
+923.16	0.00306728
+923.28	0.00306704
+923.4	0.0030668
+923.52	0.00306656
+923.64	0.00306632
+923.76	0.00306609
+923.88	0.00306585
+924	0.00306561
+924.12	0.00306537
+924.24	0.00306513
+924.36	0.00306489
+924.48	0.00306465
+924.6	0.00306441
+924.72	0.00306418
+924.84	0.00306394
+924.96	0.0030637
+925.08	0.00306346
+925.2	0.00306322
+925.32	0.00306298
+925.44	0.00306275
+925.56	0.00306251
+925.68	0.00306227
+925.8	0.00306203
+925.92	0.00306179
+926.04	0.00306156
+926.16	0.00306132
+926.28	0.00306108
+926.4	0.00306084
+926.52	0.0030606
+926.64	0.00306037
+926.76	0.00306013
+926.88	0.00305989
+927	0.00305966
+927.12	0.00305942
+927.24	0.00305918
+927.36	0.00305894
+927.48	0.00305871
+927.6	0.00305847
+927.72	0.00305823
+927.84	0.003058
+927.96	0.00305776
+928.08	0.00305752
+928.2	0.00305728
+928.32	0.00305705
+928.44	0.00305681
+928.56	0.00305657
+928.68	0.00305634
+928.8	0.0030561
+928.92	0.00305587
+929.04	0.00305563
+929.16	0.00305539
+929.28	0.00305516
+929.4	0.00305492
+929.52	0.00305468
+929.64	0.00305445
+929.76	0.00305421
+929.88	0.00305398
+930	0.00305374
+930.12	0.0030535
+930.24	0.00305327
+930.36	0.00305303
+930.48	0.0030528
+930.6	0.00305256
+930.72	0.00305233
+930.84	0.00305209
+930.96	0.00305186
+931.08	0.00305162
+931.2	0.00305138
+931.32	0.00305115
+931.44	0.00305091
+931.56	0.00305068
+931.68	0.00305044
+931.8	0.00305021
+931.92	0.00304997
+932.04	0.00304974
+932.16	0.0030495
+932.28	0.00304927
+932.4	0.00304903
+932.52	0.0030488
+932.64	0.00304857
+932.76	0.00304833
+932.88	0.0030481
+933	0.00304786
+933.12	0.00304763
+933.24	0.00304739
+933.36	0.00304716
+933.48	0.00304693
+933.6	0.00304669
+933.72	0.00304646
+933.84	0.00304622
+933.96	0.00304599
+934.08	0.00304576
+934.2	0.00304552
+934.32	0.00304529
+934.44	0.00304505
+934.56	0.00304482
+934.68	0.00304459
+934.8	0.00304435
+934.92	0.00304412
+935.04	0.00304389
+935.16	0.00304365
+935.28	0.00304342
+935.4	0.00304319
+935.52	0.00304295
+935.64	0.00304272
+935.76	0.00304249
+935.88	0.00304225
+936	0.00304202
+936.12	0.00304179
+936.24	0.00304156
+936.36	0.00304132
+936.48	0.00304109
+936.6	0.00304086
+936.72	0.00304062
+936.84	0.00304039
+936.96	0.00304016
+937.08	0.00303993
+937.2	0.00303969
+937.32	0.00303946
+937.44	0.00303923
+937.56	0.003039
+937.68	0.00303877
+937.8	0.00303853
+937.92	0.0030383
+938.04	0.00303807
+938.16	0.00303784
+938.28	0.00303761
+938.4	0.00303737
+938.52	0.00303714
+938.64	0.00303691
+938.76	0.00303668
+938.88	0.00303645
+939	0.00303622
+939.12	0.00303598
+939.24	0.00303575
+939.36	0.00303552
+939.48	0.00303529
+939.6	0.00303506
+939.72	0.00303483
+939.84	0.0030346
+939.96	0.00303437
+940.08	0.00303413
+940.2	0.0030339
+940.32	0.00303367
+940.44	0.00303344
+940.56	0.00303321
+940.68	0.00303298
+940.8	0.00303275
+940.92	0.00303252
+941.04	0.00303229
+941.16	0.00303206
+941.28	0.00303183
+941.4	0.0030316
+941.52	0.00303137
+941.64	0.00303114
+941.76	0.00303091
+941.88	0.00303068
+942	0.00303045
+942.12	0.00303022
+942.24	0.00302999
+942.36	0.00302976
+942.48	0.00302953
+942.6	0.0030293
+942.72	0.00302907
+942.84	0.00302884
+942.96	0.00302861
+943.08	0.00302838
+943.2	0.00302815
+943.32	0.00302792
+943.44	0.00302769
+943.56	0.00302746
+943.68	0.00302723
+943.8	0.003027
+943.92	0.00302677
+944.04	0.00302654
+944.16	0.00302632
+944.28	0.00302609
+944.4	0.00302586
+944.52	0.00302563
+944.64	0.0030254
+944.76	0.00302517
+944.88	0.00302494
+945	0.00302471
+945.12	0.00302448
+945.24	0.00302426
+945.36	0.00302403
+945.48	0.0030238
+945.6	0.00302357
+945.72	0.00302334
+945.84	0.00302311
+945.96	0.00302289
+946.08	0.00302266
+946.2	0.00302243
+946.32	0.0030222
+946.44	0.00302197
+946.56	0.00302175
+946.68	0.00302152
+946.8	0.00302129
+946.92	0.00302106
+947.04	0.00302083
+947.16	0.00302061
+947.28	0.00302038
+947.4	0.00302015
+947.52	0.00301992
+947.64	0.0030197
+947.76	0.00301947
+947.88	0.00301924
+948	0.00301902
+948.12	0.00301879
+948.24	0.00301856
+948.36	0.00301833
+948.48	0.00301811
+948.6	0.00301788
+948.72	0.00301765
+948.84	0.00301743
+948.96	0.0030172
+949.08	0.00301697
+949.2	0.00301675
+949.32	0.00301652
+949.44	0.00301629
+949.56	0.00301607
+949.68	0.00301584
+949.8	0.00301561
+949.92	0.00301539
+950.04	0.00301516
+950.16	0.00301493
+950.28	0.00301471
+950.4	0.00301448
+950.52	0.00301426
+950.64	0.00301403
+950.76	0.0030138
+950.88	0.00301358
+951	0.00301335
+951.12	0.00301313
+951.24	0.0030129
+951.36	0.00301268
+951.48	0.00301245
+951.6	0.00301222
+951.72	0.003012
+951.84	0.00301177
+951.96	0.00301155
+952.08	0.00301132
+952.2	0.0030111
+952.32	0.00301087
+952.44	0.00301065
+952.56	0.00301042
+952.68	0.0030102
+952.8	0.00300997
+952.92	0.00300975
+953.04	0.00300952
+953.16	0.0030093
+953.28	0.00300907
+953.4	0.00300885
+953.52	0.00300862
+953.64	0.0030084
+953.76	0.00300817
+953.88	0.00300795
+954	0.00300772
+954.12	0.0030075
+954.24	0.00300728
+954.36	0.00300705
+954.48	0.00300683
+954.6	0.0030066
+954.72	0.00300638
+954.84	0.00300615
+954.96	0.00300593
+955.08	0.00300571
+955.2	0.00300548
+955.32	0.00300526
+955.44	0.00300503
+955.56	0.00300481
+955.68	0.00300459
+955.8	0.00300436
+955.92	0.00300414
+956.04	0.00300392
+956.16	0.00300369
+956.28	0.00300347
+956.4	0.00300325
+956.52	0.00300302
+956.64	0.0030028
+956.76	0.00300258
+956.88	0.00300235
+957	0.00300213
+957.12	0.00300191
+957.24	0.00300168
+957.36	0.00300146
+957.48	0.00300124
+957.6	0.00300102
+957.72	0.00300079
+957.84	0.00300057
+957.96	0.00300035
+958.08	0.00300012
+958.2	0.0029999
+958.32	0.00299968
+958.44	0.00299946
+958.56	0.00299923
+958.68	0.00299901
+958.8	0.00299879
+958.92	0.00299857
+959.04	0.00299835
+959.16	0.00299812
+959.28	0.0029979
+959.4	0.00299768
+959.52	0.00299746
+959.64	0.00299724
+959.76	0.00299701
+959.88	0.00299679
+960	0.00299657
+960.12	0.00299635
+960.24	0.00299613
+960.36	0.00299591
+960.48	0.00299568
+960.6	0.00299546
+960.72	0.00299524
+960.84	0.00299502
+960.96	0.0029948
+961.08	0.00299458
+961.2	0.00299436
+961.32	0.00299413
+961.44	0.00299391
+961.56	0.00299369
+961.68	0.00299347
+961.8	0.00299325
+961.92	0.00299303
+962.04	0.00299281
+962.16	0.00299259
+962.28	0.00299237
+962.4	0.00299215
+962.52	0.00299193
+962.64	0.00299171
+962.76	0.00299148
+962.88	0.00299126
+963	0.00299104
+963.12	0.00299082
+963.24	0.0029906
+963.36	0.00299038
+963.48	0.00299016
+963.6	0.00298994
+963.72	0.00298972
+963.84	0.0029895
+963.96	0.00298928
+964.08	0.00298906
+964.2	0.00298884
+964.32	0.00298862
+964.44	0.0029884
+964.56	0.00298818
+964.68	0.00298796
+964.8	0.00298774
+964.92	0.00298752
+965.04	0.00298731
+965.16	0.00298709
+965.28	0.00298687
+965.4	0.00298665
+965.52	0.00298643
+965.64	0.00298621
+965.76	0.00298599
+965.88	0.00298577
+966	0.00298555
+966.12	0.00298533
+966.24	0.00298511
+966.36	0.00298489
+966.48	0.00298468
+966.6	0.00298446
+966.72	0.00298424
+966.84	0.00298402
+966.96	0.0029838
+967.08	0.00298358
+967.2	0.00298336
+967.32	0.00298314
+967.44	0.00298293
+967.56	0.00298271
+967.68	0.00298249
+967.8	0.00298227
+967.92	0.00298205
+968.04	0.00298184
+968.16	0.00298162
+968.28	0.0029814
+968.4	0.00298118
+968.52	0.00298096
+968.64	0.00298075
+968.76	0.00298053
+968.88	0.00298031
+969	0.00298009
+969.12	0.00297987
+969.24	0.00297966
+969.36	0.00297944
+969.48	0.00297922
+969.6	0.002979
+969.72	0.00297879
+969.84	0.00297857
+969.96	0.00297835
+970.08	0.00297813
+970.2	0.00297792
+970.32	0.0029777
+970.44	0.00297748
+970.56	0.00297727
+970.68	0.00297705
+970.8	0.00297683
+970.92	0.00297661
+971.04	0.0029764
+971.16	0.00297618
+971.28	0.00297596
+971.4	0.00297575
+971.52	0.00297553
+971.64	0.00297531
+971.76	0.0029751
+971.88	0.00297488
+972	0.00297467
+972.12	0.00297445
+972.24	0.00297423
+972.36	0.00297402
+972.48	0.0029738
+972.6	0.00297358
+972.72	0.00297337
+972.84	0.00297315
+972.96	0.00297294
+973.08	0.00297272
+973.2	0.0029725
+973.32	0.00297229
+973.44	0.00297207
+973.56	0.00297186
+973.68	0.00297164
+973.8	0.00297142
+973.92	0.00297121
+974.04	0.00297099
+974.16	0.00297078
+974.28	0.00297056
+974.4	0.00297035
+974.52	0.00297013
+974.64	0.00296992
+974.76	0.0029697
+974.88	0.00296949
+975	0.00296927
+975.12	0.00296906
+975.24	0.00296884
+975.36	0.00296863
+975.48	0.00296841
+975.6	0.0029682
+975.72	0.00296798
+975.84	0.00296777
+975.96	0.00296755
+976.08	0.00296734
+976.2	0.00296712
+976.32	0.00296691
+976.44	0.00296669
+976.56	0.00296648
+976.68	0.00296626
+976.8	0.00296605
+976.92	0.00296584
+977.04	0.00296562
+977.16	0.00296541
+977.28	0.00296519
+977.4	0.00296498
+977.52	0.00296476
+977.64	0.00296455
+977.76	0.00296434
+977.88	0.00296412
+978	0.00296391
+978.12	0.0029637
+978.24	0.00296348
+978.36	0.00296327
+978.48	0.00296305
+978.6	0.00296284
+978.72	0.00296263
+978.84	0.00296241
+978.96	0.0029622
+979.08	0.00296199
+979.2	0.00296177
+979.32	0.00296156
+979.44	0.00296135
+979.56	0.00296113
+979.68	0.00296092
+979.8	0.00296071
+979.92	0.00296049
+980.04	0.00296028
+980.16	0.00296007
+980.28	0.00295986
+980.4	0.00295964
+980.52	0.00295943
+980.64	0.00295922
+980.76	0.002959
+980.88	0.00295879
+981	0.00295858
+981.12	0.00295837
+981.24	0.00295815
+981.36	0.00295794
+981.48	0.00295773
+981.6	0.00295752
+981.72	0.0029573
+981.84	0.00295709
+981.96	0.00295688
+982.08	0.00295667
+982.2	0.00295646
+982.32	0.00295624
+982.44	0.00295603
+982.56	0.00295582
+982.68	0.00295561
+982.8	0.0029554
+982.92	0.00295518
+983.04	0.00295497
+983.16	0.00295476
+983.28	0.00295455
+983.4	0.00295434
+983.52	0.00295413
+983.64	0.00295392
+983.76	0.0029537
+983.88	0.00295349
+984	0.00295328
+984.12	0.00295307
+984.24	0.00295286
+984.36	0.00295265
+984.48	0.00295244
+984.6	0.00295223
+984.72	0.00295201
+984.84	0.0029518
+984.96	0.00295159
+985.08	0.00295138
+985.2	0.00295117
+985.32	0.00295096
+985.44	0.00295075
+985.56	0.00295054
+985.68	0.00295033
+985.8	0.00295012
+985.92	0.00294991
+986.04	0.0029497
+986.16	0.00294949
+986.28	0.00294928
+986.4	0.00294907
+986.52	0.00294886
+986.64	0.00294864
+986.76	0.00294843
+986.88	0.00294822
+987	0.00294801
+987.12	0.0029478
+987.24	0.00294759
+987.36	0.00294738
+987.48	0.00294717
+987.6	0.00294696
+987.72	0.00294676
+987.84	0.00294655
+987.96	0.00294634
+988.08	0.00294613
+988.2	0.00294592
+988.32	0.00294571
+988.44	0.0029455
+988.56	0.00294529
+988.68	0.00294508
+988.8	0.00294487
+988.92	0.00294466
+989.04	0.00294445
+989.16	0.00294424
+989.28	0.00294403
+989.4	0.00294382
+989.52	0.00294361
+989.64	0.00294341
+989.76	0.0029432
+989.88	0.00294299
+990	0.00294278
+990.12	0.00294257
+990.24	0.00294236
+990.36	0.00294215
+990.48	0.00294194
+990.6	0.00294174
+990.72	0.00294153
+990.84	0.00294132
+990.96	0.00294111
+991.08	0.0029409
+991.2	0.00294069
+991.32	0.00294049
+991.44	0.00294028
+991.56	0.00294007
+991.68	0.00293986
+991.8	0.00293965
+991.92	0.00293944
+992.04	0.00293924
+992.16	0.00293903
+992.28	0.00293882
+992.4	0.00293861
+992.52	0.00293841
+992.64	0.0029382
+992.76	0.00293799
+992.88	0.00293778
+993	0.00293757
+993.12	0.00293737
+993.24	0.00293716
+993.36	0.00293695
+993.48	0.00293674
+993.6	0.00293654
+993.72	0.00293633
+993.84	0.00293612
+993.96	0.00293592
+994.08	0.00293571
+994.2	0.0029355
+994.32	0.00293529
+994.44	0.00293509
+994.56	0.00293488
+994.68	0.00293467
+994.8	0.00293447
+994.92	0.00293426
+995.04	0.00293405
+995.16	0.00293385
+995.28	0.00293364
+995.4	0.00293343
+995.52	0.00293323
+995.64	0.00293302
+995.76	0.00293281
+995.88	0.00293261
+996	0.0029324
+996.12	0.00293219
+996.24	0.00293199
+996.36	0.00293178
+996.48	0.00293158
+996.6	0.00293137
+996.72	0.00293116
+996.84	0.00293096
+996.96	0.00293075
+997.08	0.00293055
+997.2	0.00293034
+997.32	0.00293013
+997.44	0.00292993
+997.56	0.00292972
+997.68	0.00292952
+997.8	0.00292931
+997.92	0.00292911
+998.04	0.0029289
+998.16	0.00292869
+998.28	0.00292849
+998.4	0.00292828
+998.52	0.00292808
+998.64	0.00292787
+998.76	0.00292767
+998.88	0.00292746
+999	0.00292726
+999.12	0.00292705
+999.24	0.00292685
+999.36	0.00292664
+999.48	0.00292644
+999.6	0.00292623
+999.72	0.00292603
+999.84	0.00292582
+999.96	0.00292562
+1000.08	0.00292541
+1000.2	0.00292521
+1000.32	0.002925
+1000.44	0.0029248
+1000.56	0.00292459
+1000.68	0.00292439
+1000.8	0.00292419
+1000.92	0.00292398
+1001.04	0.00292378
+1001.16	0.00292357
+1001.28	0.00292337
+1001.4	0.00292316
+1001.52	0.00292296
+1001.64	0.00292276
+1001.76	0.00292255
+1001.88	0.00292235
+1002	0.00292214
+1002.12	0.00292194
+1002.24	0.00292174
+1002.36	0.00292153
+1002.48	0.00292133
+1002.6	0.00292112
+1002.72	0.00292092
+1002.84	0.00292072
+1002.96	0.00292051
+1003.08	0.00292031
+1003.2	0.00292011
+1003.32	0.0029199
+1003.44	0.0029197
+1003.56	0.0029195
+1003.68	0.00291929
+1003.8	0.00291909
+1003.92	0.00291889
+1004.04	0.00291868
+1004.16	0.00291848
+1004.28	0.00291828
+1004.4	0.00291807
+1004.52	0.00291787
+1004.64	0.00291767
+1004.76	0.00291747
+1004.88	0.00291726
+1005	0.00291706
+1005.12	0.00291686
+1005.24	0.00291665
+1005.36	0.00291645
+1005.48	0.00291625
+1005.6	0.00291605
+1005.72	0.00291584
+1005.84	0.00291564
+1005.96	0.00291544
+1006.08	0.00291524
+1006.2	0.00291503
+1006.32	0.00291483
+1006.44	0.00291463
+1006.56	0.00291443
+1006.68	0.00291423
+1006.8	0.00291402
+1006.92	0.00291382
+1007.04	0.00291362
+1007.16	0.00291342
+1007.28	0.00291322
+1007.4	0.00291301
+1007.52	0.00291281
+1007.64	0.00291261
+1007.76	0.00291241
+1007.88	0.00291221
+1008	0.00291201
+1008.12	0.0029118
+1008.24	0.0029116
+1008.36	0.0029114
+1008.48	0.0029112
+1008.6	0.002911
+1008.72	0.0029108
+1008.84	0.0029106
+1008.96	0.00291039
+1009.08	0.00291019
+1009.2	0.00290999
+1009.32	0.00290979
+1009.44	0.00290959
+1009.56	0.00290939
+1009.68	0.00290919
+1009.8	0.00290899
+1009.92	0.00290879
+1010.04	0.00290859
+1010.16	0.00290839
+1010.28	0.00290818
+1010.4	0.00290798
+1010.52	0.00290778
+1010.64	0.00290758
+1010.76	0.00290738
+1010.88	0.00290718
+1011	0.00290698
+1011.12	0.00290678
+1011.24	0.00290658
+1011.36	0.00290638
+1011.48	0.00290618
+1011.6	0.00290598
+1011.72	0.00290578
+1011.84	0.00290558
+1011.96	0.00290538
+1012.08	0.00290518
+1012.2	0.00290498
+1012.32	0.00290478
+1012.44	0.00290458
+1012.56	0.00290438
+1012.68	0.00290418
+1012.8	0.00290398
+1012.92	0.00290378
+1013.04	0.00290358
+1013.16	0.00290338
+1013.28	0.00290318
+1013.4	0.00290298
+1013.52	0.00290278
+1013.64	0.00290258
+1013.76	0.00290238
+1013.88	0.00290219
+1014	0.00290199
+1014.12	0.00290179
+1014.24	0.00290159
+1014.36	0.00290139
+1014.48	0.00290119
+1014.6	0.00290099
+1014.72	0.00290079
+1014.84	0.00290059
+1014.96	0.00290039
+1015.08	0.00290019
+1015.2	0.0029
+1015.32	0.0028998
+1015.44	0.0028996
+1015.56	0.0028994
+1015.68	0.0028992
+1015.8	0.002899
+1015.92	0.0028988
+1016.04	0.00289861
+1016.16	0.00289841
+1016.28	0.00289821
+1016.4	0.00289801
+1016.52	0.00289781
+1016.64	0.00289761
+1016.76	0.00289742
+1016.88	0.00289722
+1017	0.00289702
+1017.12	0.00289682
+1017.24	0.00289662
+1017.36	0.00289642
+1017.48	0.00289623
+1017.6	0.00289603
+1017.72	0.00289583
+1017.84	0.00289563
+1017.96	0.00289544
+1018.08	0.00289524
+1018.2	0.00289504
+1018.32	0.00289484
+1018.44	0.00289465
+1018.56	0.00289445
+1018.68	0.00289425
+1018.8	0.00289405
+1018.92	0.00289386
+1019.04	0.00289366
+1019.16	0.00289346
+1019.28	0.00289326
+1019.4	0.00289307
+1019.52	0.00289287
+1019.64	0.00289267
+1019.76	0.00289247
+1019.88	0.00289228
+1020	0.00289208
+1020.12	0.00289188
+1020.24	0.00289169
+1020.36	0.00289149
+1020.48	0.00289129
+1020.6	0.0028911
+1020.72	0.0028909
+1020.84	0.0028907
+1020.96	0.00289051
+1021.08	0.00289031
+1021.2	0.00289011
+1021.32	0.00288992
+1021.44	0.00288972
+1021.56	0.00288952
+1021.68	0.00288933
+1021.8	0.00288913
+1021.92	0.00288894
+1022.04	0.00288874
+1022.16	0.00288854
+1022.28	0.00288835
+1022.4	0.00288815
+1022.52	0.00288795
+1022.64	0.00288776
+1022.76	0.00288756
+1022.88	0.00288737
+1023	0.00288717
+1023.12	0.00288698
+1023.24	0.00288678
+1023.36	0.00288658
+1023.48	0.00288639
+1023.6	0.00288619
+1023.72	0.002886
+1023.84	0.0028858
+1023.96	0.00288561
+1024.08	0.00288541
+1024.2	0.00288522
+1024.32	0.00288502
+1024.44	0.00288482
+1024.56	0.00288463
+1024.68	0.00288443
+1024.8	0.00288424
+1024.92	0.00288404
+1025.04	0.00288385
+1025.16	0.00288365
+1025.28	0.00288346
+1025.4	0.00288326
+1025.52	0.00288307
+1025.64	0.00288287
+1025.76	0.00288268
+1025.88	0.00288248
+1026	0.00288229
+1026.12	0.00288209
+1026.24	0.0028819
+1026.36	0.00288171
+1026.48	0.00288151
+1026.6	0.00288132
+1026.72	0.00288112
+1026.84	0.00288093
+1026.96	0.00288073
+1027.08	0.00288054
+1027.2	0.00288034
+1027.32	0.00288015
+1027.44	0.00287996
+1027.56	0.00287976
+1027.68	0.00287957
+1027.8	0.00287937
+1027.92	0.00287918
+1028.04	0.00287899
+1028.16	0.00287879
+1028.28	0.0028786
+1028.4	0.0028784
+1028.52	0.00287821
+1028.64	0.00287802
+1028.76	0.00287782
+1028.88	0.00287763
+1029	0.00287744
+1029.12	0.00287724
+1029.24	0.00287705
+1029.36	0.00287686
+1029.48	0.00287666
+1029.6	0.00287647
+1029.72	0.00287628
+1029.84	0.00287608
+1029.96	0.00287589
+1030.08	0.0028757
+1030.2	0.0028755
+1030.32	0.00287531
+1030.44	0.00287512
+1030.56	0.00287492
+1030.68	0.00287473
+1030.8	0.00287454
+1030.92	0.00287434
+1031.04	0.00287415
+1031.16	0.00287396
+1031.28	0.00287377
+1031.4	0.00287357
+1031.52	0.00287338
+1031.64	0.00287319
+1031.76	0.00287299
+1031.88	0.0028728
+1032	0.00287261
+1032.12	0.00287242
+1032.24	0.00287222
+1032.36	0.00287203
+1032.48	0.00287184
+1032.6	0.00287165
+1032.72	0.00287146
+1032.84	0.00287126
+1032.96	0.00287107
+1033.08	0.00287088
+1033.2	0.00287069
+1033.32	0.00287049
+1033.44	0.0028703
+1033.56	0.00287011
+1033.68	0.00286992
+1033.8	0.00286973
+1033.92	0.00286954
+1034.04	0.00286934
+1034.16	0.00286915
+1034.28	0.00286896
+1034.4	0.00286877
+1034.52	0.00286858
+1034.64	0.00286839
+1034.76	0.00286819
+1034.88	0.002868
+1035	0.00286781
+1035.12	0.00286762
+1035.24	0.00286743
+1035.36	0.00286724
+1035.48	0.00286705
+1035.6	0.00286685
+1035.72	0.00286666
+1035.84	0.00286647
+1035.96	0.00286628
+1036.08	0.00286609
+1036.2	0.0028659
+1036.32	0.00286571
+1036.44	0.00286552
+1036.56	0.00286533
+1036.68	0.00286514
+1036.8	0.00286494
+1036.92	0.00286475
+1037.04	0.00286456
+1037.16	0.00286437
+1037.28	0.00286418
+1037.4	0.00286399
+1037.52	0.0028638
+1037.64	0.00286361
+1037.76	0.00286342
+1037.88	0.00286323
+1038	0.00286304
+1038.12	0.00286285
+1038.24	0.00286266
+1038.36	0.00286247
+1038.48	0.00286228
+1038.6	0.00286209
+1038.72	0.0028619
+1038.84	0.00286171
+1038.96	0.00286152
+1039.08	0.00286133
+1039.2	0.00286114
+1039.32	0.00286095
+1039.44	0.00286076
+1039.56	0.00286057
+1039.68	0.00286038
+1039.8	0.00286019
+1039.92	0.00286
+1040.04	0.00285981
+1040.16	0.00285962
+1040.28	0.00285943
+1040.4	0.00285924
+1040.52	0.00285905
+1040.64	0.00285886
+1040.76	0.00285867
+1040.88	0.00285848
+1041	0.0028583
+1041.12	0.00285811
+1041.24	0.00285792
+1041.36	0.00285773
+1041.48	0.00285754
+1041.6	0.00285735
+1041.72	0.00285716
+1041.84	0.00285697
+1041.96	0.00285678
+1042.08	0.00285659
+1042.2	0.0028564
+1042.32	0.00285622
+1042.44	0.00285603
+1042.56	0.00285584
+1042.68	0.00285565
+1042.8	0.00285546
+1042.92	0.00285527
+1043.04	0.00285508
+1043.16	0.0028549
+1043.28	0.00285471
+1043.4	0.00285452
+1043.52	0.00285433
+1043.64	0.00285414
+1043.76	0.00285395
+1043.88	0.00285377
+1044	0.00285358
+1044.12	0.00285339
+1044.24	0.0028532
+1044.36	0.00285301
+1044.48	0.00285282
+1044.6	0.00285264
+1044.72	0.00285245
+1044.84	0.00285226
+1044.96	0.00285207
+1045.08	0.00285189
+1045.2	0.0028517
+1045.32	0.00285151
+1045.44	0.00285132
+1045.56	0.00285113
+1045.68	0.00285095
+1045.8	0.00285076
+1045.92	0.00285057
+1046.04	0.00285038
+1046.16	0.0028502
+1046.28	0.00285001
+1046.4	0.00284982
+1046.52	0.00284963
+1046.64	0.00284945
+1046.76	0.00284926
+1046.88	0.00284907
+1047	0.00284889
+1047.12	0.0028487
+1047.24	0.00284851
+1047.36	0.00284832
+1047.48	0.00284814
+1047.6	0.00284795
+1047.72	0.00284776
+1047.84	0.00284758
+1047.96	0.00284739
+1048.08	0.0028472
+1048.2	0.00284702
+1048.32	0.00284683
+1048.44	0.00284664
+1048.56	0.00284646
+1048.68	0.00284627
+1048.8	0.00284608
+1048.92	0.0028459
+1049.04	0.00284571
+1049.16	0.00284552
+1049.28	0.00284534
+1049.4	0.00284515
+1049.52	0.00284497
+1049.64	0.00284478
+1049.76	0.00284459
+1049.88	0.00284441
+1050	0.00284422
+1050.12	0.00284404
+1050.24	0.00284385
+1050.36	0.00284366
+1050.48	0.00284348
+1050.6	0.00284329
+1050.72	0.00284311
+1050.84	0.00284292
+1050.96	0.00284273
+1051.08	0.00284255
+1051.2	0.00284236
+1051.32	0.00284218
+1051.44	0.00284199
+1051.56	0.00284181
+1051.68	0.00284162
+1051.8	0.00284143
+1051.92	0.00284125
+1052.04	0.00284106
+1052.16	0.00284088
+1052.28	0.00284069
+1052.4	0.00284051
+1052.52	0.00284032
+1052.64	0.00284014
+1052.76	0.00283995
+1052.88	0.00283977
+1053	0.00283958
+1053.12	0.0028394
+1053.24	0.00283921
+1053.36	0.00283903
+1053.48	0.00283884
+1053.6	0.00283866
+1053.72	0.00283847
+1053.84	0.00283829
+1053.96	0.0028381
+1054.08	0.00283792
+1054.2	0.00283773
+1054.32	0.00283755
+1054.44	0.00283736
+1054.56	0.00283718
+1054.68	0.002837
+1054.8	0.00283681
+1054.92	0.00283663
+1055.04	0.00283644
+1055.16	0.00283626
+1055.28	0.00283607
+1055.4	0.00283589
+1055.52	0.00283571
+1055.64	0.00283552
+1055.76	0.00283534
+1055.88	0.00283515
+1056	0.00283497
+1056.12	0.00283479
+1056.24	0.0028346
+1056.36	0.00283442
+1056.48	0.00283423
+1056.6	0.00283405
+1056.72	0.00283387
+1056.84	0.00283368
+1056.96	0.0028335
+1057.08	0.00283332
+1057.2	0.00283313
+1057.32	0.00283295
+1057.44	0.00283276
+1057.56	0.00283258
+1057.68	0.0028324
+1057.8	0.00283221
+1057.92	0.00283203
+1058.04	0.00283185
+1058.16	0.00283166
+1058.28	0.00283148
+1058.4	0.0028313
+1058.52	0.00283111
+1058.64	0.00283093
+1058.76	0.00283075
+1058.88	0.00283057
+1059	0.00283038
+1059.12	0.0028302
+1059.24	0.00283002
+1059.36	0.00282983
+1059.48	0.00282965
+1059.6	0.00282947
+1059.72	0.00282928
+1059.84	0.0028291
+1059.96	0.00282892
+1060.08	0.00282874
+1060.2	0.00282855
+1060.32	0.00282837
+1060.44	0.00282819
+1060.56	0.00282801
+1060.68	0.00282782
+1060.8	0.00282764
+1060.92	0.00282746
+1061.04	0.00282728
+1061.16	0.0028271
+1061.28	0.00282691
+1061.4	0.00282673
+1061.52	0.00282655
+1061.64	0.00282637
+1061.76	0.00282618
+1061.88	0.002826
+1062	0.00282582
+1062.12	0.00282564
+1062.24	0.00282546
+1062.36	0.00282527
+1062.48	0.00282509
+1062.6	0.00282491
+1062.72	0.00282473
+1062.84	0.00282455
+1062.96	0.00282437
+1063.08	0.00282418
+1063.2	0.002824
+1063.32	0.00282382
+1063.44	0.00282364
+1063.56	0.00282346
+1063.68	0.00282328
+1063.8	0.0028231
+1063.92	0.00282291
+1064.04	0.00282273
+1064.16	0.00282255
+1064.28	0.00282237
+1064.4	0.00282219
+1064.52	0.00282201
+1064.64	0.00282183
+1064.76	0.00282165
+1064.88	0.00282146
+1065	0.00282128
+1065.12	0.0028211
+1065.24	0.00282092
+1065.36	0.00282074
+1065.48	0.00282056
+1065.6	0.00282038
+1065.72	0.0028202
+1065.84	0.00282002
+1065.96	0.00281984
+1066.08	0.00281966
+1066.2	0.00281948
+1066.32	0.0028193
+1066.44	0.00281912
+1066.56	0.00281893
+1066.68	0.00281875
+1066.8	0.00281857
+1066.92	0.00281839
+1067.04	0.00281821
+1067.16	0.00281803
+1067.28	0.00281785
+1067.4	0.00281767
+1067.52	0.00281749
+1067.64	0.00281731
+1067.76	0.00281713
+1067.88	0.00281695
+1068	0.00281677
+1068.12	0.00281659
+1068.24	0.00281641
+1068.36	0.00281623
+1068.48	0.00281605
+1068.6	0.00281587
+1068.72	0.00281569
+1068.84	0.00281551
+1068.96	0.00281533
+1069.08	0.00281515
+1069.2	0.00281497
+1069.32	0.00281479
+1069.44	0.00281462
+1069.56	0.00281444
+1069.68	0.00281426
+1069.8	0.00281408
+1069.92	0.0028139
+1070.04	0.00281372
+1070.16	0.00281354
+1070.28	0.00281336
+1070.4	0.00281318
+1070.52	0.002813
+1070.64	0.00281282
+1070.76	0.00281264
+1070.88	0.00281246
+1071	0.00281229
+1071.12	0.00281211
+1071.24	0.00281193
+1071.36	0.00281175
+1071.48	0.00281157
+1071.6	0.00281139
+1071.72	0.00281121
+1071.84	0.00281103
+1071.96	0.00281085
+1072.08	0.00281068
+1072.2	0.0028105
+1072.32	0.00281032
+1072.44	0.00281014
+1072.56	0.00280996
+1072.68	0.00280978
+1072.8	0.00280961
+1072.92	0.00280943
+1073.04	0.00280925
+1073.16	0.00280907
+1073.28	0.00280889
+1073.4	0.00280871
+1073.52	0.00280854
+1073.64	0.00280836
+1073.76	0.00280818
+1073.88	0.002808
+1074	0.00280782
+1074.12	0.00280765
+1074.24	0.00280747
+1074.36	0.00280729
+1074.48	0.00280711
+1074.6	0.00280693
+1074.72	0.00280676
+1074.84	0.00280658
+1074.96	0.0028064
+1075.08	0.00280622
+1075.2	0.00280605
+1075.32	0.00280587
+1075.44	0.00280569
+1075.56	0.00280551
+1075.68	0.00280534
+1075.8	0.00280516
+1075.92	0.00280498
+1076.04	0.0028048
+1076.16	0.00280463
+1076.28	0.00280445
+1076.4	0.00280427
+1076.52	0.00280409
+1076.64	0.00280392
+1076.76	0.00280374
+1076.88	0.00280356
+1077	0.00280339
+1077.12	0.00280321
+1077.24	0.00280303
+1077.36	0.00280285
+1077.48	0.00280268
+1077.6	0.0028025
+1077.72	0.00280232
+1077.84	0.00280215
+1077.96	0.00280197
+1078.08	0.00280179
+1078.2	0.00280162
+1078.32	0.00280144
+1078.44	0.00280126
+1078.56	0.00280109
+1078.68	0.00280091
+1078.8	0.00280073
+1078.92	0.00280056
+1079.04	0.00280038
+1079.16	0.00280021
+1079.28	0.00280003
+1079.4	0.00279985
+1079.52	0.00279968
+1079.64	0.0027995
+1079.76	0.00279932
+1079.88	0.00279915
+1080	0.00279897
+1080.12	0.0027988
+1080.24	0.00279862
+1080.36	0.00279844
+1080.48	0.00279827
+1080.6	0.00279809
+1080.72	0.00279792
+1080.84	0.00279774
+1080.96	0.00279757
+1081.08	0.00279739
+1081.2	0.00279721
+1081.32	0.00279704
+1081.44	0.00279686
+1081.56	0.00279669
+1081.68	0.00279651
+1081.8	0.00279634
+1081.92	0.00279616
+1082.04	0.00279599
+1082.16	0.00279581
+1082.28	0.00279563
+1082.4	0.00279546
+1082.52	0.00279528
+1082.64	0.00279511
+1082.76	0.00279493
+1082.88	0.00279476
+1083	0.00279458
+1083.12	0.00279441
+1083.24	0.00279423
+1083.36	0.00279406
+1083.48	0.00279388
+1083.6	0.00279371
+1083.72	0.00279353
+1083.84	0.00279336
+1083.96	0.00279318
+1084.08	0.00279301
+1084.2	0.00279283
+1084.32	0.00279266
+1084.44	0.00279248
+1084.56	0.00279231
+1084.68	0.00279214
+1084.8	0.00279196
+1084.92	0.00279179
+1085.04	0.00279161
+1085.16	0.00279144
+1085.28	0.00279126
+1085.4	0.00279109
+1085.52	0.00279091
+1085.64	0.00279074
+1085.76	0.00279057
+1085.88	0.00279039
+1086	0.00279022
+1086.12	0.00279004
+1086.24	0.00278987
+1086.36	0.0027897
+1086.48	0.00278952
+1086.6	0.00278935
+1086.72	0.00278917
+1086.84	0.002789
+1086.96	0.00278883
+1087.08	0.00278865
+1087.2	0.00278848
+1087.32	0.0027883
+1087.44	0.00278813
+1087.56	0.00278796
+1087.68	0.00278778
+1087.8	0.00278761
+1087.92	0.00278744
+1088.04	0.00278726
+1088.16	0.00278709
+1088.28	0.00278692
+1088.4	0.00278674
+1088.52	0.00278657
+1088.64	0.0027864
+1088.76	0.00278622
+1088.88	0.00278605
+1089	0.00278588
+1089.12	0.0027857
+1089.24	0.00278553
+1089.36	0.00278536
+1089.48	0.00278518
+1089.6	0.00278501
+1089.72	0.00278484
+1089.84	0.00278466
+1089.96	0.00278449
+1090.08	0.00278432
+1090.2	0.00278415
+1090.32	0.00278397
+1090.44	0.0027838
+1090.56	0.00278363
+1090.68	0.00278346
+1090.8	0.00278328
+1090.92	0.00278311
+1091.04	0.00278294
+1091.16	0.00278276
+1091.28	0.00278259
+1091.4	0.00278242
+1091.52	0.00278225
+1091.64	0.00278207
+1091.76	0.0027819
+1091.88	0.00278173
+1092	0.00278156
+1092.12	0.00278139
+1092.24	0.00278121
+1092.36	0.00278104
+1092.48	0.00278087
+1092.6	0.0027807
+1092.72	0.00278052
+1092.84	0.00278035
+1092.96	0.00278018
+1093.08	0.00278001
+1093.2	0.00277984
+1093.32	0.00277967
+1093.44	0.00277949
+1093.56	0.00277932
+1093.68	0.00277915
+1093.8	0.00277898
+1093.92	0.00277881
+1094.04	0.00277863
+1094.16	0.00277846
+1094.28	0.00277829
+1094.4	0.00277812
+1094.52	0.00277795
+1094.64	0.00277778
+1094.76	0.00277761
+1094.88	0.00277743
+1095	0.00277726
+1095.12	0.00277709
+1095.24	0.00277692
+1095.36	0.00277675
+1095.48	0.00277658
+1095.6	0.00277641
+1095.72	0.00277624
+1095.84	0.00277606
+1095.96	0.00277589
+1096.08	0.00277572
+1096.2	0.00277555
+1096.32	0.00277538
+1096.44	0.00277521
+1096.56	0.00277504
+1096.68	0.00277487
+1096.8	0.0027747
+1096.92	0.00277453
+1097.04	0.00277436
+1097.16	0.00277418
+1097.28	0.00277401
+1097.4	0.00277384
+1097.52	0.00277367
+1097.64	0.0027735
+1097.76	0.00277333
+1097.88	0.00277316
+1098	0.00277299
+1098.12	0.00277282
+1098.24	0.00277265
+1098.36	0.00277248
+1098.48	0.00277231
+1098.6	0.00277214
+1098.72	0.00277197
+1098.84	0.0027718
+1098.96	0.00277163
+1099.08	0.00277146
+1099.2	0.00277129
+1099.32	0.00277112
+1099.44	0.00277095
+1099.56	0.00277078
+1099.68	0.00277061
+1099.8	0.00277044
+1099.92	0.00277027
+1100.04	0.0027701
+1100.16	0.00276993
+1100.28	0.00276976
+1100.4	0.00276959
+1100.52	0.00276942
+1100.64	0.00276925
+1100.76	0.00276908
+1100.88	0.00276891
+1101	0.00276874
+1101.12	0.00276857
+1101.24	0.0027684
+1101.36	0.00276823
+1101.48	0.00276806
+1101.6	0.0027679
+1101.72	0.00276773
+1101.84	0.00276756
+1101.96	0.00276739
+1102.08	0.00276722
+1102.2	0.00276705
+1102.32	0.00276688
+1102.44	0.00276671
+1102.56	0.00276654
+1102.68	0.00276637
+1102.8	0.0027662
+1102.92	0.00276603
+1103.04	0.00276587
+1103.16	0.0027657
+1103.28	0.00276553
+1103.4	0.00276536
+1103.52	0.00276519
+1103.64	0.00276502
+1103.76	0.00276485
+1103.88	0.00276468
+1104	0.00276452
+1104.12	0.00276435
+1104.24	0.00276418
+1104.36	0.00276401
+1104.48	0.00276384
+1104.6	0.00276367
+1104.72	0.00276351
+1104.84	0.00276334
+1104.96	0.00276317
+1105.08	0.002763
+1105.2	0.00276283
+1105.32	0.00276266
+1105.44	0.0027625
+1105.56	0.00276233
+1105.68	0.00276216
+1105.8	0.00276199
+1105.92	0.00276182
+1106.04	0.00276166
+1106.16	0.00276149
+1106.28	0.00276132
+1106.4	0.00276115
+1106.52	0.00276098
+1106.64	0.00276082
+1106.76	0.00276065
+1106.88	0.00276048
+1107	0.00276031
+1107.12	0.00276014
+1107.24	0.00275998
+1107.36	0.00275981
+1107.48	0.00275964
+1107.6	0.00275947
+1107.72	0.00275931
+1107.84	0.00275914
+1107.96	0.00275897
+1108.08	0.0027588
+1108.2	0.00275864
+1108.32	0.00275847
+1108.44	0.0027583
+1108.56	0.00275814
+1108.68	0.00275797
+1108.8	0.0027578
+1108.92	0.00275763
+1109.04	0.00275747
+1109.16	0.0027573
+1109.28	0.00275713
+1109.4	0.00275697
+1109.52	0.0027568
+1109.64	0.00275663
+1109.76	0.00275647
+1109.88	0.0027563
+1110	0.00275613
+1110.12	0.00275596
+1110.24	0.0027558
+1110.36	0.00275563
+1110.48	0.00275546
+1110.6	0.0027553
+1110.72	0.00275513
+1110.84	0.00275496
+1110.96	0.0027548
+1111.08	0.00275463
+1111.2	0.00275447
+1111.32	0.0027543
+1111.44	0.00275413
+1111.56	0.00275397
+1111.68	0.0027538
+1111.8	0.00275363
+1111.92	0.00275347
+1112.04	0.0027533
+1112.16	0.00275313
+1112.28	0.00275297
+1112.4	0.0027528
+1112.52	0.00275264
+1112.64	0.00275247
+1112.76	0.0027523
+1112.88	0.00275214
+1113	0.00275197
+1113.12	0.00275181
+1113.24	0.00275164
+1113.36	0.00275147
+1113.48	0.00275131
+1113.6	0.00275114
+1113.72	0.00275098
+1113.84	0.00275081
+1113.96	0.00275065
+1114.08	0.00275048
+1114.2	0.00275032
+1114.32	0.00275015
+1114.44	0.00274998
+1114.56	0.00274982
+1114.68	0.00274965
+1114.8	0.00274949
+1114.92	0.00274932
+1115.04	0.00274916
+1115.16	0.00274899
+1115.28	0.00274883
+1115.4	0.00274866
+1115.52	0.0027485
+1115.64	0.00274833
+1115.76	0.00274817
+1115.88	0.002748
+1116	0.00274784
+1116.12	0.00274767
+1116.24	0.00274751
+1116.36	0.00274734
+1116.48	0.00274718
+1116.6	0.00274701
+1116.72	0.00274685
+1116.84	0.00274668
+1116.96	0.00274652
+1117.08	0.00274635
+1117.2	0.00274619
+1117.32	0.00274602
+1117.44	0.00274586
+1117.56	0.00274569
+1117.68	0.00274553
+1117.8	0.00274536
+1117.92	0.0027452
+1118.04	0.00274504
+1118.16	0.00274487
+1118.28	0.00274471
+1118.4	0.00274454
+1118.52	0.00274438
+1118.64	0.00274421
+1118.76	0.00274405
+1118.88	0.00274388
+1119	0.00274372
+1119.12	0.00274356
+1119.24	0.00274339
+1119.36	0.00274323
+1119.48	0.00274306
+1119.6	0.0027429
+1119.72	0.00274274
+1119.84	0.00274257
+1119.96	0.00274241
+1120.08	0.00274224
+1120.2	0.00274208
+1120.32	0.00274192
+1120.44	0.00274175
+1120.56	0.00274159
+1120.68	0.00274143
+1120.8	0.00274126
+1120.92	0.0027411
+1121.04	0.00274093
+1121.16	0.00274077
+1121.28	0.00274061
+1121.4	0.00274044
+1121.52	0.00274028
+1121.64	0.00274012
+1121.76	0.00273995
+1121.88	0.00273979
+1122	0.00273963
+1122.12	0.00273946
+1122.24	0.0027393
+1122.36	0.00273914
+1122.48	0.00273897
+1122.6	0.00273881
+1122.72	0.00273865
+1122.84	0.00273849
+1122.96	0.00273832
+1123.08	0.00273816
+1123.2	0.002738
+1123.32	0.00273783
+1123.44	0.00273767
+1123.56	0.00273751
+1123.68	0.00273734
+1123.8	0.00273718
+1123.92	0.00273702
+1124.04	0.00273686
+1124.16	0.00273669
+1124.28	0.00273653
+1124.4	0.00273637
+1124.52	0.00273621
+1124.64	0.00273604
+1124.76	0.00273588
+1124.88	0.00273572
+1125	0.00273556
+1125.12	0.00273539
+1125.24	0.00273523
+1125.36	0.00273507
+1125.48	0.00273491
+1125.6	0.00273474
+1125.72	0.00273458
+1125.84	0.00273442
+1125.96	0.00273426
+1126.08	0.0027341
+1126.2	0.00273393
+1126.32	0.00273377
+1126.44	0.00273361
+1126.56	0.00273345
+1126.68	0.00273328
+1126.8	0.00273312
+1126.92	0.00273296
+1127.04	0.0027328
+1127.16	0.00273264
+1127.28	0.00273248
+1127.4	0.00273231
+1127.52	0.00273215
+1127.64	0.00273199
+1127.76	0.00273183
+1127.88	0.00273167
+1128	0.00273151
+1128.12	0.00273134
+1128.24	0.00273118
+1128.36	0.00273102
+1128.48	0.00273086
+1128.6	0.0027307
+1128.72	0.00273054
+1128.84	0.00273038
+1128.96	0.00273021
+1129.08	0.00273005
+1129.2	0.00272989
+1129.32	0.00272973
+1129.44	0.00272957
+1129.56	0.00272941
+1129.68	0.00272925
+1129.8	0.00272909
+1129.92	0.00272892
+1130.04	0.00272876
+1130.16	0.0027286
+1130.28	0.00272844
+1130.4	0.00272828
+1130.52	0.00272812
+1130.64	0.00272796
+1130.76	0.0027278
+1130.88	0.00272764
+1131	0.00272748
+1131.12	0.00272732
+1131.24	0.00272715
+1131.36	0.00272699
+1131.48	0.00272683
+1131.6	0.00272667
+1131.72	0.00272651
+1131.84	0.00272635
+1131.96	0.00272619
+1132.08	0.00272603
+1132.2	0.00272587
+1132.32	0.00272571
+1132.44	0.00272555
+1132.56	0.00272539
+1132.68	0.00272523
+1132.8	0.00272507
+1132.92	0.00272491
+1133.04	0.00272475
+1133.16	0.00272459
+1133.28	0.00272443
+1133.4	0.00272427
+1133.52	0.00272411
+1133.64	0.00272395
+1133.76	0.00272379
+1133.88	0.00272363
+1134	0.00272347
+1134.12	0.00272331
+1134.24	0.00272315
+1134.36	0.00272299
+1134.48	0.00272283
+1134.6	0.00272267
+1134.72	0.00272251
+1134.84	0.00272235
+1134.96	0.00272219
+1135.08	0.00272203
+1135.2	0.00272187
+1135.32	0.00272171
+1135.44	0.00272155
+1135.56	0.00272139
+1135.68	0.00272123
+1135.8	0.00272107
+1135.92	0.00272091
+1136.04	0.00272075
+1136.16	0.0027206
+1136.28	0.00272044
+1136.4	0.00272028
+1136.52	0.00272012
+1136.64	0.00271996
+1136.76	0.0027198
+1136.88	0.00271964
+1137	0.00271948
+1137.12	0.00271932
+1137.24	0.00271916
+1137.36	0.002719
+1137.48	0.00271885
+1137.6	0.00271869
+1137.72	0.00271853
+1137.84	0.00271837
+1137.96	0.00271821
+1138.08	0.00271805
+1138.2	0.00271789
+1138.32	0.00271773
+1138.44	0.00271757
+1138.56	0.00271742
+1138.68	0.00271726
+1138.8	0.0027171
+1138.92	0.00271694
+1139.04	0.00271678
+1139.16	0.00271662
+1139.28	0.00271646
+1139.4	0.00271631
+1139.52	0.00271615
+1139.64	0.00271599
+1139.76	0.00271583
+1139.88	0.00271567
+1140	0.00271551
+1140.12	0.00271536
+1140.24	0.0027152
+1140.36	0.00271504
+1140.48	0.00271488
+1140.6	0.00271472
+1140.72	0.00271457
+1140.84	0.00271441
+1140.96	0.00271425
+1141.08	0.00271409
+1141.2	0.00271393
+1141.32	0.00271378
+1141.44	0.00271362
+1141.56	0.00271346
+1141.68	0.0027133
+1141.8	0.00271314
+1141.92	0.00271299
+1142.04	0.00271283
+1142.16	0.00271267
+1142.28	0.00271251
+1142.4	0.00271236
+1142.52	0.0027122
+1142.64	0.00271204
+1142.76	0.00271188
+1142.88	0.00271173
+1143	0.00271157
+1143.12	0.00271141
+1143.24	0.00271125
+1143.36	0.0027111
+1143.48	0.00271094
+1143.6	0.00271078
+1143.72	0.00271063
+1143.84	0.00271047
+1143.96	0.00271031
+1144.08	0.00271015
+1144.2	0.00271
+1144.32	0.00270984
+1144.44	0.00270968
+1144.56	0.00270953
+1144.68	0.00270937
+1144.8	0.00270921
+1144.92	0.00270905
+1145.04	0.0027089
+1145.16	0.00270874
+1145.28	0.00270858
+1145.4	0.00270843
+1145.52	0.00270827
+1145.64	0.00270811
+1145.76	0.00270796
+1145.88	0.0027078
+1146	0.00270764
+1146.12	0.00270749
+1146.24	0.00270733
+1146.36	0.00270717
+1146.48	0.00270702
+1146.6	0.00270686
+1146.72	0.0027067
+1146.84	0.00270655
+1146.96	0.00270639
+1147.08	0.00270624
+1147.2	0.00270608
+1147.32	0.00270592
+1147.44	0.00270577
+1147.56	0.00270561
+1147.68	0.00270545
+1147.8	0.0027053
+1147.92	0.00270514
+1148.04	0.00270499
+1148.16	0.00270483
+1148.28	0.00270467
+1148.4	0.00270452
+1148.52	0.00270436
+1148.64	0.00270421
+1148.76	0.00270405
+1148.88	0.00270389
+1149	0.00270374
+1149.12	0.00270358
+1149.24	0.00270343
+1149.36	0.00270327
+1149.48	0.00270312
+1149.6	0.00270296
+1149.72	0.0027028
+1149.84	0.00270265
+1149.96	0.00270249
+1150.08	0.00270234
+1150.2	0.00270218
+1150.32	0.00270203
+1150.44	0.00270187
+1150.56	0.00270172
+1150.68	0.00270156
+1150.8	0.00270141
+1150.92	0.00270125
+1151.04	0.00270109
+1151.16	0.00270094
+1151.28	0.00270078
+1151.4	0.00270063
+1151.52	0.00270047
+1151.64	0.00270032
+1151.76	0.00270016
+1151.88	0.00270001
+1152	0.00269985
+1152.12	0.0026997
+1152.24	0.00269954
+1152.36	0.00269939
+1152.48	0.00269923
+1152.6	0.00269908
+1152.72	0.00269892
+1152.84	0.00269877
+1152.96	0.00269861
+1153.08	0.00269846
+1153.2	0.00269831
+1153.32	0.00269815
+1153.44	0.002698
+1153.56	0.00269784
+1153.68	0.00269769
+1153.8	0.00269753
+1153.92	0.00269738
+1154.04	0.00269722
+1154.16	0.00269707
+1154.28	0.00269691
+1154.4	0.00269676
+1154.52	0.00269661
+1154.64	0.00269645
+1154.76	0.0026963
+1154.88	0.00269614
+1155	0.00269599
+1155.12	0.00269583
+1155.24	0.00269568
+1155.36	0.00269553
+1155.48	0.00269537
+1155.6	0.00269522
+1155.72	0.00269506
+1155.84	0.00269491
+1155.96	0.00269476
+1156.08	0.0026946
+1156.2	0.00269445
+1156.32	0.00269429
+1156.44	0.00269414
+1156.56	0.00269399
+1156.68	0.00269383
+1156.8	0.00269368
+1156.92	0.00269353
+1157.04	0.00269337
+1157.16	0.00269322
+1157.28	0.00269306
+1157.4	0.00269291
+1157.52	0.00269276
+1157.64	0.0026926
+1157.76	0.00269245
+1157.88	0.0026923
+1158	0.00269214
+1158.12	0.00269199
+1158.24	0.00269184
+1158.36	0.00269168
+1158.48	0.00269153
+1158.6	0.00269138
+1158.72	0.00269122
+1158.84	0.00269107
+1158.96	0.00269092
+1159.08	0.00269076
+1159.2	0.00269061
+1159.32	0.00269046
+1159.44	0.0026903
+1159.56	0.00269015
+1159.68	0.00269
+1159.8	0.00268985
+1159.92	0.00268969
+1160.04	0.00268954
+1160.16	0.00268939
+1160.28	0.00268923
+1160.4	0.00268908
+1160.52	0.00268893
+1160.64	0.00268878
+1160.76	0.00268862
+1160.88	0.00268847
+1161	0.00268832
+1161.12	0.00268817
+1161.24	0.00268801
+1161.36	0.00268786
+1161.48	0.00268771
+1161.6	0.00268756
+1161.72	0.0026874
+1161.84	0.00268725
+1161.96	0.0026871
+1162.08	0.00268695
+1162.2	0.00268679
+1162.32	0.00268664
+1162.44	0.00268649
+1162.56	0.00268634
+1162.68	0.00268618
+1162.8	0.00268603
+1162.92	0.00268588
+1163.04	0.00268573
+1163.16	0.00268558
+1163.28	0.00268542
+1163.4	0.00268527
+1163.52	0.00268512
+1163.64	0.00268497
+1163.76	0.00268482
+1163.88	0.00268466
+1164	0.00268451
+1164.12	0.00268436
+1164.24	0.00268421
+1164.36	0.00268406
+1164.48	0.00268391
+1164.6	0.00268375
+1164.72	0.0026836
+1164.84	0.00268345
+1164.96	0.0026833
+1165.08	0.00268315
+1165.2	0.002683
+1165.32	0.00268284
+1165.44	0.00268269
+1165.56	0.00268254
+1165.68	0.00268239
+1165.8	0.00268224
+1165.92	0.00268209
+1166.04	0.00268194
+1166.16	0.00268178
+1166.28	0.00268163
+1166.4	0.00268148
+1166.52	0.00268133
+1166.64	0.00268118
+1166.76	0.00268103
+1166.88	0.00268088
+1167	0.00268073
+1167.12	0.00268057
+1167.24	0.00268042
+1167.36	0.00268027
+1167.48	0.00268012
+1167.6	0.00267997
+1167.72	0.00267982
+1167.84	0.00267967
+1167.96	0.00267952
+1168.08	0.00267937
+1168.2	0.00267922
+1168.32	0.00267907
+1168.44	0.00267891
+1168.56	0.00267876
+1168.68	0.00267861
+1168.8	0.00267846
+1168.92	0.00267831
+1169.04	0.00267816
+1169.16	0.00267801
+1169.28	0.00267786
+1169.4	0.00267771
+1169.52	0.00267756
+1169.64	0.00267741
+1169.76	0.00267726
+1169.88	0.00267711
+1170	0.00267696
+1170.12	0.00267681
+1170.24	0.00267666
+1170.36	0.00267651
+1170.48	0.00267636
+1170.6	0.00267621
+1170.72	0.00267606
+1170.84	0.00267591
+1170.96	0.00267576
+1171.08	0.00267561
+1171.2	0.00267546
+1171.32	0.00267531
+1171.44	0.00267516
+1171.56	0.00267501
+1171.68	0.00267486
+1171.8	0.00267471
+1171.92	0.00267456
+1172.04	0.00267441
+1172.16	0.00267426
+1172.28	0.00267411
+1172.4	0.00267396
+1172.52	0.00267381
+1172.64	0.00267366
+1172.76	0.00267351
+1172.88	0.00267336
+1173	0.00267321
+1173.12	0.00267306
+1173.24	0.00267291
+1173.36	0.00267276
+1173.48	0.00267261
+1173.6	0.00267246
+1173.72	0.00267231
+1173.84	0.00267216
+1173.96	0.00267201
+1174.08	0.00267187
+1174.2	0.00267172
+1174.32	0.00267157
+1174.44	0.00267142
+1174.56	0.00267127
+1174.68	0.00267112
+1174.8	0.00267097
+1174.92	0.00267082
+1175.04	0.00267067
+1175.16	0.00267052
+1175.28	0.00267037
+1175.4	0.00267023
+1175.52	0.00267008
+1175.64	0.00266993
+1175.76	0.00266978
+1175.88	0.00266963
+1176	0.00266948
+1176.12	0.00266933
+1176.24	0.00266918
+1176.36	0.00266903
+1176.48	0.00266889
+1176.6	0.00266874
+1176.72	0.00266859
+1176.84	0.00266844
+1176.96	0.00266829
+1177.08	0.00266814
+1177.2	0.00266799
+1177.32	0.00266785
+1177.44	0.0026677
+1177.56	0.00266755
+1177.68	0.0026674
+1177.8	0.00266725
+1177.92	0.0026671
+1178.04	0.00266696
+1178.16	0.00266681
+1178.28	0.00266666
+1178.4	0.00266651
+1178.52	0.00266636
+1178.64	0.00266621
+1178.76	0.00266607
+1178.88	0.00266592
+1179	0.00266577
+1179.12	0.00266562
+1179.24	0.00266547
+1179.36	0.00266533
+1179.48	0.00266518
+1179.6	0.00266503
+1179.72	0.00266488
+1179.84	0.00266473
+1179.96	0.00266459
+1180.08	0.00266444
+1180.2	0.00266429
+1180.32	0.00266414
+1180.44	0.002664
+1180.56	0.00266385
+1180.68	0.0026637
+1180.8	0.00266355
+1180.92	0.00266341
+1181.04	0.00266326
+1181.16	0.00266311
+1181.28	0.00266296
+1181.4	0.00266282
+1181.52	0.00266267
+1181.64	0.00266252
+1181.76	0.00266237
+1181.88	0.00266223
+1182	0.00266208
+1182.12	0.00266193
+1182.24	0.00266178
+1182.36	0.00266164
+1182.48	0.00266149
+1182.6	0.00266134
+1182.72	0.0026612
+1182.84	0.00266105
+1182.96	0.0026609
+1183.08	0.00266075
+1183.2	0.00266061
+1183.32	0.00266046
+1183.44	0.00266031
+1183.56	0.00266017
+1183.68	0.00266002
+1183.8	0.00265987
+1183.92	0.00265973
+1184.04	0.00265958
+1184.16	0.00265943
+1184.28	0.00265929
+1184.4	0.00265914
+1184.52	0.00265899
+1184.64	0.00265885
+1184.76	0.0026587
+1184.88	0.00265855
+1185	0.00265841
+1185.12	0.00265826
+1185.24	0.00265811
+1185.36	0.00265797
+1185.48	0.00265782
+1185.6	0.00265767
+1185.72	0.00265753
+1185.84	0.00265738
+1185.96	0.00265724
+1186.08	0.00265709
+1186.2	0.00265694
+1186.32	0.0026568
+1186.44	0.00265665
+1186.56	0.0026565
+1186.68	0.00265636
+1186.8	0.00265621
+1186.92	0.00265607
+1187.04	0.00265592
+1187.16	0.00265577
+1187.28	0.00265563
+1187.4	0.00265548
+1187.52	0.00265534
+1187.64	0.00265519
+1187.76	0.00265504
+1187.88	0.0026549
+1188	0.00265475
+1188.12	0.00265461
+1188.24	0.00265446
+1188.36	0.00265432
+1188.48	0.00265417
+1188.6	0.00265402
+1188.72	0.00265388
+1188.84	0.00265373
+1188.96	0.00265359
+1189.08	0.00265344
+1189.2	0.0026533
+1189.32	0.00265315
+1189.44	0.00265301
+1189.56	0.00265286
+1189.68	0.00265271
+1189.8	0.00265257
+1189.92	0.00265242
+1190.04	0.00265228
+1190.16	0.00265213
+1190.28	0.00265199
+1190.4	0.00265184
+1190.52	0.0026517
+1190.64	0.00265155
+1190.76	0.00265141
+1190.88	0.00265126
+1191	0.00265112
+1191.12	0.00265097
+1191.24	0.00265083
+1191.36	0.00265068
+1191.48	0.00265054
+1191.6	0.00265039
+1191.72	0.00265025
+1191.84	0.0026501
+1191.96	0.00264996
+1192.08	0.00264981
+1192.2	0.00264967
+1192.32	0.00264952
+1192.44	0.00264938
+1192.56	0.00264923
+1192.68	0.00264909
+1192.8	0.00264894
+1192.92	0.0026488
+1193.04	0.00264866
+1193.16	0.00264851
+1193.28	0.00264837
+1193.4	0.00264822
+1193.52	0.00264808
+1193.64	0.00264793
+1193.76	0.00264779
+1193.88	0.00264764
+1194	0.0026475
+1194.12	0.00264736
+1194.24	0.00264721
+1194.36	0.00264707
+1194.48	0.00264692
+1194.6	0.00264678
+1194.72	0.00264663
+1194.84	0.00264649
+1194.96	0.00264635
+1195.08	0.0026462
+1195.2	0.00264606
+1195.32	0.00264591
+1195.44	0.00264577
+1195.56	0.00264563
+1195.68	0.00264548
+1195.8	0.00264534
+1195.92	0.00264519
+1196.04	0.00264505
+1196.16	0.00264491
+1196.28	0.00264476
+1196.4	0.00264462
+1196.52	0.00264447
+1196.64	0.00264433
+1196.76	0.00264419
+1196.88	0.00264404
+1197	0.0026439
+1197.12	0.00264376
+1197.24	0.00264361
+1197.36	0.00264347
+1197.48	0.00264333
+1197.6	0.00264318
+1197.72	0.00264304
+1197.84	0.0026429
+1197.96	0.00264275
+1198.08	0.00264261
+1198.2	0.00264247
+1198.32	0.00264232
+1198.44	0.00264218
+1198.56	0.00264204
+1198.68	0.00264189
+1198.8	0.00264175
+1198.92	0.00264161
+1199.04	0.00264146
+1199.16	0.00264132
+1199.28	0.00264118
+1199.4	0.00264103
+1199.52	0.00264089
+1199.64	0.00264075
+1199.76	0.0026406
+1199.88	0.00264046
+1200	0.00264032
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/ExtractRawHisto_E.C b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/ExtractRawHisto_E.C
new file mode 100644
index 0000000000000000000000000000000000000000..89d2aa679a64cc6aa9dcc35f3f75bbc81a617906
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/ExtractRawHisto_E.C
@@ -0,0 +1,135 @@
+////////////////////////////////////////////////////////////////////////////
+// This macro takes a converted ROOT file from the GANIL e569 exp. and    //
+// create an histogram for each strip (X and Y) of the MUST2 array filled //
+// with the energy. The histograms are dumped in an output ROOT file.     //
+//                                                                        //
+// This is especially usefull for calibration purposes when there is no   //
+// need to work directly on the TChain                                     //
+////////////////////////////////////////////////////////////////////////////
+#include <iostream>
+
+#include "TROOT.h"
+#include "TSystem.h"
+#include "TFile.h"
+#include "TString.h"
+#include "TChain.h"
+#include "TBranch.h"
+#include "TH1F.h"
+#include "TMust2Data.h"
+#include "TMugastData.h"
+#include "TEDINData.h"
+#include "RootInput.h"
+
+
+#define NBTELESCOPE 4	
+#define	NBSTRIPS	128
+#define NBSILI     0
+
+
+void ExtractRawHistos(const char* fname = "")
+{
+  RootInput* Input = RootInput::getInstance("RunToTreat.txt");
+  TChain* Chain = Input->GetChain();
+
+  // connect the TfDet.c_str()Data branch  
+  Chain->SetBranchStatus("EDIN",true);
+  Chain->SetBranchStatus("fMM*",true);
+
+  TEDINData* rawEDIN = new TEDINData();
+  Chain->SetBranchAddress("EDIN",&rawEDIN);
+
+  // open the output ROOT file
+  TString outFileName = "./Histograms/";
+  outFileName += fname;
+  outFileName += "_RawEDINHistos.root";
+  std::cout<< outFileName<< std::endl;
+  TFile *outFile = new TFile(outFileName, "recreate");
+
+  // prepare output histograms for Must2
+  TH1F* hStripXEnergy[NBTELESCOPE][NBSTRIPS];
+  TH1F* hStripYEnergy[NBTELESCOPE][NBSTRIPS];
+  //from i=4 because I wanted only the T5,T8
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSTRIPS; j++) {
+      // strips XE
+      TString hnameXE     = Form("hMM%d_STRX_E%d", i, j);
+      TString htitleXE    = Form("MM%d_STRX_E%d", i, j);
+      hStripXEnergy[i][j] = new TH1F(hnameXE, htitleXE, 16384, 0, 16384);
+      // strips YE
+      TString hnameYE     = Form("hMM%d_STRY_E%d", i, j);
+      TString htitleYE    = Form("MM%d_STRY_E%d", i, j);
+      hStripYEnergy[i][j] = new TH1F(hnameYE, htitleYE, 16384, 0, 16384);
+    }
+  }
+  TH1F* hSiLiEnergy[NBTELESCOPE][NBSILI];
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSILI; j++) {
+      TString hnameSiLiE     = Form("hMM%d_SILI_E%d", i, j);
+      TString htitleSiLiE    = Form("MM%d_SILI_E%d", i, j);
+      hSiLiEnergy[i][j] = new TH1F(hnameSiLiE, htitleSiLiE, 16384, 0, 16384);
+    }
+  }
+
+  // read the data
+  Int_t nentries = Chain->GetEntries();
+  std::cout << "TChain contains " << nentries << " events" << std::endl;
+  for (Int_t i = 0; i < nentries; i++) {
+    if (i%1000 == 0) std::cout << "\rEntry " << i << "\t" << i/(double)nentries * 100 << " %" << flush;
+    ///////////////////////
+    // read Must2 branch //
+    ///////////////////////
+    //brMust2->GetEntry(i);
+    Chain->GetEntry(i);
+    // get StripXE multiplicity
+    Int_t multXE = 0; 
+    multXE = rawEDIN->GetDSSDXEMult();
+    //std::cout<< "multXE" << multXE<< std::endl;
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    //
+    Int_t det = 0;   
+    Int_t stripX = 0;
+    Int_t energy = 0;
+
+    for (Int_t j = 0; j < multXE; j++) {
+      det    = rawEDIN->GetDSSDXEDetectorNbr(j);
+      stripX = rawEDIN->GetDSSDXEStripNbr(j);
+      energy = rawEDIN->GetDSSDXEEnergy(j);
+      if ((det < NBTELESCOPE) && (stripX < NBSTRIPS)) {
+        hStripXEnergy[det][stripX]->Fill(energy);
+      } 
+      else {
+        std::cout << "Error filling histograms: X_E" << std::endl;
+        rawEDIN->Dump();
+      }
+    }
+    // get StripYE multiplicity
+    Int_t multYE=0;
+    multYE = rawEDIN->GetDSSDYEMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+
+    det = 0;   
+    Int_t stripY = 0;
+    energy = 0;
+    for (Int_t j = 0; j < multYE; j++) {
+      det    = rawEDIN->GetDSSDYEDetectorNbr(j);
+      stripY = rawEDIN->GetDSSDYEStripNbr(j);
+      energy = rawEDIN->GetDSSDYEEnergy(j);
+
+      if ((det < NBTELESCOPE) && (stripY < NBSTRIPS)) {
+        hStripYEnergy[det][stripY]->Fill(energy);
+      }
+      else {
+        std::cout << "Error filling histograms: Y_E" << std::endl;
+          rawEDIN->Dump();
+      }
+    }
+
+  }
+  std::cout << '\n';
+
+  // write on disk output file and close it
+  outFile->Write();
+  outFile->Close();
+}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/ExtractRawHisto_E_C.d b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/ExtractRawHisto_E_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..809a954a5921c8f600381fdd3f709e033600c87e
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/ExtractRawHisto_E_C.d
@@ -0,0 +1,118 @@
+
+# DO NOT DELETE
+
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSystem.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInetAddress.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTimer.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSysEvtHandler.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTime.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TChain.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TMust2Data.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TMugastData.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TEDINData.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/RootInput.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReader.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReaderUtils.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchProxyDirector.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TLeaf.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClonesArray.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TError.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualCollectionProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClassRef.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNotifyLink.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReaderValue.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReaderArray.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPInputParser.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVector3.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVector2.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrix.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixF.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixT.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixTBase.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFBasefwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixDBasefwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixTUtils.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFUtils.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFUtilsfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMath.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+ExtractRawHisto_E_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/ExtractRawHisto_E_Pedestals.C b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/ExtractRawHisto_E_Pedestals.C
new file mode 100644
index 0000000000000000000000000000000000000000..07e08e0c7185b3cab9dbea5f474415b7d893ae8f
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/ExtractRawHisto_E_Pedestals.C
@@ -0,0 +1,326 @@
+////////////////////////////////////////////////////////////////////////////
+// This macro takes a converted ROOT file from the GANIL e569 exp. and    //
+// create an histogram for each strip (X and Y) of the MUST2 array filled //
+// with the energy. The histograms are dumped in an output ROOT file.     //
+//                                                                        //
+// This is especially usefull for calibration purposes when there is no   //
+// need to work directly on the TChain                                     //
+////////////////////////////////////////////////////////////////////////////
+#include <iostream>
+#include <fstream>
+#include <map>
+#include <string>
+#include <vector>
+
+#include "TROOT.h"
+#include "TSystem.h"
+#include "TFile.h"
+#include "TString.h"
+#include "TChain.h"
+#include "TBranch.h"
+#include "TH1F.h"
+
+#include "/home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/MUST2/TMust2Data.h"
+#include "/home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/Mugast/TMugastData.h"
+#include "/home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/include/RootInput.h"
+
+#define NBTELESCOPE 4	
+#define	NBSTRIPS	128
+#define NBSILI     0
+
+class pedestal{
+  public:
+    pedestal(){};
+    ~pedestal(){};
+  public: 
+    map<int, vector<int> > pedestalX;
+    map<int, vector<int> > pedestalY;
+  
+    int get_pedestalX(int det,int strip){
+      return pedestalX[det][strip-1];
+      }
+    int get_pedestalY(int det,int strip){
+      return pedestalY[det][strip-1];
+      }
+
+  public:
+    int SubstractX(int det, int strip,pedestal other){
+        return (get_pedestalX(det,strip)-other.get_pedestalX(det,strip));
+      }
+    
+    int SubstractY(int det, int strip,pedestal other){
+        return (get_pedestalY(det,strip)-other.get_pedestalY(det,strip));
+      }
+
+
+    void print(){
+      cout << "X" << endl;
+      for(auto& it: pedestalX){
+        cout << " Telescope: " << it.first << endl;
+        unsigned int size = it.second.size();
+        for(unsigned int i = 0 ; i < size ; i++){
+          std::cout << " strip: " << i+1 << " pedestal: " << it.second[i] << "\n"; 
+        } 
+      }
+
+      cout << "Y" << endl;
+      for(auto& it: pedestalY){
+        cout << " Telescope: " << it.first << endl;
+        unsigned int size = it.second.size();
+        for(unsigned int i = 0 ; i < size ; i++){
+          std::cout << " strip: " << i+1 << " pedestal: " << it.second[i] << "\n"; 
+        } 
+      }
+    }
+
+    void LoadPedestals(const std::string& path, int num){
+      ifstream file(path.c_str());
+      std::string buffer;
+      // ignore the first line of comments
+      getline(file,buffer);
+      int pedestalE,pedestalT;
+      int mate=0;
+      int count=0;
+
+      while (file >> pedestalE >> pedestalT){
+        if(count++%16==0){
+          mate++; 
+        }
+        if(mate<9){ // X
+          pedestalX[num].push_back(pedestalE);
+        } 
+        else if(mate>8&&mate<17){ // Y
+          pedestalY[num].push_back(pedestalE);
+        }
+        else{ // SiLi/CsI
+          break; 
+        }
+      }
+    }
+};
+////////////////////////////////////////////////////////////////////////////////
+void Test(){
+  pedestal q;
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector1",1);
+
+  pedestal p;
+  p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI3_Sector1",1);
+ 
+  for(unsigned int i = 0 ; i < 128 ; i++){
+    cout << p.SubstractX(1,i+1,q) << " " << p.SubstractY(1,i+1,q)  << endl;
+  }
+}
+///////////////////////////////////////////////////////////////////////////////
+void ExtractRawHistos(const char* fname = "run_XXXX_X", std::string fDet="MUST2")
+{
+
+  pedestal p,q;
+  if(fDet=="MUST2"){
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector1.pedestal",1);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector2.pedestal",2);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector3.pedestal",3);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector4.pedestal",4); 
+
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector1.pedestal",1);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector2.pedestal",2);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector3.pedestal",3);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector4.pedestal",4); 
+
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector1",1);
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector2",2);
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector3",3);
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector4",4); 
+
+    }
+
+ else if(fDet=="Mugast"){
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector1",1);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector2",3);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector3",4);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector4",5); 
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector1",7);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector2",9);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector3",10);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector4",11); 
+
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector1",1);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector2",3);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector3",4);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector4",5); 
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector1",7);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector2",9);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector3",10);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector4",11); 
+ 
+    }
+
+  else{
+    cout << "Error in detector name " << fDet << endl;
+    exit(1);
+    }
+
+
+  RootInput* Input = RootInput::getInstance("RunToTreat.txt");
+  TChain* Chain = Input->GetChain();
+  // connect the TfDet.c_str()Data branch  
+  Chain->SetBranchStatus(fDet.c_str(),true);
+  Chain->SetBranchStatus("fMM*",true);
+
+  TMust2Data *rawMust2;
+  TMugastData *rawMugast;
+  if (fDet=="MUST2"){
+    rawMust2 = new TMust2Data();
+    Chain->SetBranchAddress(fDet.c_str(),&rawMust2);
+  }
+  else if (fDet=="Mugast"){
+    rawMugast = new TMugastData();
+    Chain->SetBranchAddress(fDet.c_str(),&rawMugast);
+  }
+
+  // open the output ROOT file
+  TString outFileName = "./Histograms/";
+  outFileName += fname;
+  outFileName += "_Raw" + fDet + "Histos_CorrectionPedestals.root";
+  cout<< outFileName<< endl;
+  TFile *outFile = new TFile(outFileName, "recreate");
+
+  // prepare output histograms for Must2
+  TH1F* hStripXEnergy[NBTELESCOPE][NBSTRIPS];
+  TH1F* hStripYEnergy[NBTELESCOPE][NBSTRIPS];
+  //from i=4 because I wanted only the T5,T8
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSTRIPS; j++) {
+      // strips XE
+      TString hnameXE     = Form("hMM%d_STRX_E%d", i+1, j+1);
+      TString htitleXE    = Form("MM%d_STRX_E%d", i+1, j+1);
+      hStripXEnergy[i][j] = new TH1F(hnameXE, htitleXE, 16384, 0, 16384);
+      // strips YE
+      TString hnameYE     = Form("hMM%d_STRY_E%d", i+1, j+1);
+      TString htitleYE    = Form("MM%d_STRY_E%d", i+1, j+1);
+      hStripYEnergy[i][j] = new TH1F(hnameYE, htitleYE, 16384, 0, 16384);
+    }
+  }
+  TH1F* hSiLiEnergy[NBTELESCOPE][NBSILI];
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSILI; j++) {
+      TString hnameSiLiE     = Form("hMM%d_SILI_E%d", i+1, j+1);
+      TString htitleSiLiE    = Form("MM%d_SILI_E%d", i+1, j+1);
+      hSiLiEnergy[i][j] = new TH1F(hnameSiLiE, htitleSiLiE, 16384, 0, 16384);
+    }
+  }
+
+  // read the data
+  Int_t nentries = Chain->GetEntries();
+  cout << "TChain contains " << nentries << " events" << endl;
+  for (Int_t i = 0; i < nentries; i++) {
+    if (i%1000 == 0) cout << "\rEntry " << i << "\t" << i/(double)nentries * 100 << " %" << flush;
+    ///////////////////////
+    // read Must2 branch //
+    ///////////////////////
+    //brMust2->GetEntry(i);
+    Chain->GetEntry(i);
+    // get StripXE multiplicity
+    Int_t multXE = 0; 
+    if (fDet=="MUST2"){
+      multXE = rawMust2->GetMMStripXEMult();
+    }else if (fDet=="Mugast"){
+      multXE = rawMugast->GetDSSDXEMult();
+    }
+    //cout<< "multXE" << multXE<< endl;
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    //
+    Int_t det = 0;   
+    Int_t stripX = 0;
+    Int_t energy = 0;
+
+    for (Int_t j = 0; j < multXE; j++) {
+      if (fDet=="MUST2"){
+        det    = rawMust2->GetMMStripXEDetectorNbr(j);
+        stripX = rawMust2->GetMMStripXEStripNbr(j);
+        energy = rawMust2->GetMMStripXEEnergy(j);
+      } else if (fDet=="Mugast"){
+        det    = rawMugast->GetDSSDXEDetectorNbr(j);
+        stripX = rawMugast->GetDSSDXEStripNbr(j);
+        energy = rawMugast->GetDSSDXEEnergy(j);
+      }
+      if ((det < NBTELESCOPE+1) && (stripX < NBSTRIPS+1)) {
+        std::cout << ">>>>>>>>>> DEBUG : " << 0 << std::endl;
+        std::cout << det << " " << stripX << " " << q  << std::endl;
+        hStripXEnergy[det-1][stripX-1]->Fill(energy + p.SubstractX(det, stripX, q));
+        std::cout << ">>>>>>>>>> DEBUG : " << 1 << std::endl;
+      } else {
+        cout << "Error filling histograms: X_E" << endl;
+        if (fDet=="MUST2"){
+          rawMust2->Dump();
+        } else if (fDet=="Mugast"){
+          rawMugast->Dump();
+        }
+      }
+    }
+    std::cout << ">>>>>>>>>> DEBUG : " << 2 << std::endl;
+    // get StripYE multiplicity
+    Int_t multYE=0;
+    if (fDet=="MUST2"){
+      multYE = rawMust2->GetMMStripYEMult();
+    } else if (fDet=="Mugast"){
+      multYE = rawMugast->GetDSSDYEMult();
+    }
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+
+    det = 0;   
+    Int_t stripY = 0;
+    energy = 0;
+    for (Int_t j = 0; j < multYE; j++) {
+      if (fDet=="MUST2"){
+        det    = rawMust2->GetMMStripYEDetectorNbr(j);
+        stripY = rawMust2->GetMMStripYEStripNbr(j);
+        energy = rawMust2->GetMMStripYEEnergy(j);
+      }else if (fDet=="Mugast"){
+        det    = rawMugast->GetDSSDYEDetectorNbr(j);
+        stripY = rawMugast->GetDSSDYEStripNbr(j);
+        energy = rawMugast->GetDSSDYEEnergy(j);
+      }
+
+      if ((det < NBTELESCOPE+1) && (stripY < NBSTRIPS+1)) {
+        hStripYEnergy[det-1][stripY-1]->Fill(energy + p.SubstractY(det, stripY, q));
+      }
+      else {
+        cout << "Error filling histograms: Y_E" << endl;
+        if (fDet=="MUST2"){
+          rawMust2->Dump();
+        }else if (fDet=="Mugast"){
+          rawMugast->Dump();
+        }
+      }
+    }
+    // get SiLiE multiplicity
+
+    //Int_t multSiLiE = rawMust2->GetMMSiLiEMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    /* for (Int_t j = 0; j < multSiLiE; j++) {
+       Int_t det    = rawMust2->GetMMSiLiEDetectorNbr(j);
+       Int_t pad = rawMust2->GetMMSiLiEPadNbr(j);
+       Int_t energy = rawMust2->GetMMSiLiEEnergy(j);
+       if ((det < NBTELESCOPE+1) && (pad < NBSTRIPS+1)) {
+       hSiLiEnergy[det-1][pad-1]->Fill(energy);
+       }
+       else {
+       cout << "Error filling histograms: Must2_SiLi_E" << endl;
+       rawMust2->Dump();
+       }
+       }*/
+
+  }
+  cout << '\n';
+
+  // write on disk output file and close it
+  outFile->Write();
+  outFile->Close();
+}
+
+
+
+
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/ExtractRawHisto_E_Pedestals_C.d b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/ExtractRawHisto_E_Pedestals_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..d138211b1436102725e3c59c452c1132ac2f6696
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/ExtractRawHisto_E_Pedestals_C.d
@@ -0,0 +1,105 @@
+
+# DO NOT DELETE
+
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TROOT.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDirectory.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TNamed.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TObject.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Rtypes.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RtypesCore.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RConfig.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RVersion.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RConfigure.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/DllImport.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/strtok.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/strlcpy.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/snprintf.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TGenericClassInfo.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSchemaHelper.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TIsAProxy.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualIsAProxy.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TStorage.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVersionCheck.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RVersion.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TString.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMathBase.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RStringView.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RWrap_libcpp_string_view.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/libcpp_string_view.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TypeTraits.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TClass.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDictionary.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ESTLType.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TObjArray.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSeqCollection.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TCollection.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TIterator.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualRWMutex.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualMutex.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TUUID.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TList.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBuffer.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDataType.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Bytes.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSystem.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TInetAddress.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TTimer.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSysEvtHandler.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TQObject.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualQConnection.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TInterpreter.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TInterpreterValue.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TTime.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TFile.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Compression.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDirectoryFile.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDatime.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TUrl.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RConcurrentHashColl.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TRWSpinLock.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TSpinMutex.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TChain.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TTree.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TIOFeatures.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayD.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArray.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayI.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttFill.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttLine.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttMarker.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualTreePlayer.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBranch.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBranchCacheInfo.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBits.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TH1F.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TH1.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAxis.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttAxis.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayC.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayS.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayF.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Foption.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/EExecutionPolicy.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVectorFfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVectorDfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TFitResultPtr.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/MUST2/TMust2Data.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/Mugast/TMugastData.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/include/RootInput.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/include/NPInputParser.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVector3.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TError.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVector2.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrix.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixF.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixT.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixTBase.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFBasefwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixDBasefwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixTUtils.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFUtils.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFUtilsfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMath.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RVersion.h /home/global/root/root_v6.24.06_C7_build/include/RConfig.h /home/global/root/root_v6.24.06_C7_build/include/TClass.h /home/global/root/root_v6.24.06_C7_build/include/TDictAttributeMap.h /home/global/root/root_v6.24.06_C7_build/include/TInterpreter.h /home/global/root/root_v6.24.06_C7_build/include/TROOT.h /home/global/root/root_v6.24.06_C7_build/include/TBuffer.h /home/global/root/root_v6.24.06_C7_build/include/TMemberInspector.h /home/global/root/root_v6.24.06_C7_build/include/TError.h /home/global/root/root_v6.24.06_C7_build/include/RtypesImp.h /home/global/root/root_v6.24.06_C7_build/include/TIsAProxy.h /home/global/root/root_v6.24.06_C7_build/include/TFileMergeInfo.h /home/global/root/root_v6.24.06_C7_build/include/TCollectionProxyInfo.h /home/global/root/root_v6.24.06_C7_build/bin/rootcling
+ExtractRawHisto_E_Pedestals_C__ROOTBUILDVERSION= 6.24/06
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Histograms/.root_hist b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Histograms/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..6b4b500a7726e9e6c5e7c63a866a6a205d31e8a3
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/Histograms/.root_hist
@@ -0,0 +1,6 @@
+TFile *_file0 = TFile::Open("run_9_RawMUST2Histos.root")
+new TBrowser
+.q
+TFile *_file0 = TFile::Open("run_19_RawMUST2Histos.root")
+new TBrowser
+.q
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/RunToTreat.txt b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/RunToTreat.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0b4228e72730cacabc80980b0c225c7b0b839649
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Energy/RunToTreat.txt
@@ -0,0 +1,4 @@
+TTreeName 
+	RD
+RootFileName 
+  ~/npTreeReader/np-tree-reader/Projects/EDIN/RootR/run_0274.root
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M0_E/Cal_Str_X_E_MM0.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a9a4797b44c79cfc249f85f397457f492407e844
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T0_DSSD_X0_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_X1_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_X2_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_X3_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_X4_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_X5_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_X6_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_X7_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_X8_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_X9_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_X10_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_X11_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_X12_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_X13_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_X14_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_X15_E 0.01975029 0.00478319
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M0_E/Cal_Str_Y_E_MM0.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d3b9b5ea608aae6f6c02dcbda1c07a8d30b7764a
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T0_DSSD_Y0_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_Y1_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_Y2_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_Y3_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_Y4_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_Y5_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_Y6_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_Y7_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_Y8_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_Y9_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_Y10_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_Y11_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_Y12_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_Y13_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_Y14_E 0.01975029 0.00478319
+EdinburghDSSD_T0_DSSD_Y15_E 0.01975029 0.00478319
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M0_T/Cal_Str_X_T_MM0.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e7832634b338def180a4b1591ef794345c31584e
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T0_DSSD_X0_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X1_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X2_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X3_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X4_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X5_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X6_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X7_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X8_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X9_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X10_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X11_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X12_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X13_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X14_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_X15_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e6e29887234b427d08990f60ddc23107650b5b47
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T0_DSSD_Y0_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y1_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y2_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y3_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y4_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y5_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y6_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y7_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y8_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y9_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y10_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y11_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y12_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y13_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y14_T 0.0 1.0
+EdinburghDSSD_T0_DSSD_Y15_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M1_E/Cal_Str_X_E_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..753627cd9089dcf87c2f148540c2e69213c670e8
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T1_DSSD_X0_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_X1_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_X2_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_X3_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_X4_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_X5_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_X6_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_X7_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_X8_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_X9_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_X10_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_X11_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_X12_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_X13_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_X14_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_X15_E -0.0359893 0.0052297
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M1_E/Cal_Str_Y_E_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..87149afc26d90eef366990ebe384c416b26e011b
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T1_DSSD_Y0_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_Y1_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_Y2_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_Y3_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_Y4_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_Y5_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_Y6_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_Y7_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_Y8_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_Y9_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_Y10_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_Y11_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_Y12_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_Y13_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_Y14_E -0.0359893 0.0052297
+EdinburghDSSD_T1_DSSD_Y15_E -0.0359893 0.0052297
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M1_T/Cal_Str_X_T_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c3cd77ea92a9a6a74adb4221d054209b8481766a
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T1_DSSD_X0_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X1_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X2_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X3_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X4_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X5_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X6_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X7_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X8_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X9_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X10_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X11_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X12_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X13_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X14_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_X15_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..adf3c97b9504eb4a409b9c5a6cda45acff09b3a0
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,16 @@
+EdinburghDSSD_T1_DSSD_Y0_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y1_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y2_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y3_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y4_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y5_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y6_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y7_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y8_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y9_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y10_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y11_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y12_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y13_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y14_T 0.0 1.0
+EdinburghDSSD_T1_DSSD_Y15_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M2_E/Cal_Str_X_E_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..ed80570d51baccf16fbc4a32894f40a02999c581
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_X0_E 0.0 1.0
+EDIN_T2_DSSD_X1_E 0.0 1.0
+EDIN_T2_DSSD_X2_E 0.0 1.0
+EDIN_T2_DSSD_X3_E 0.0 1.0
+EDIN_T2_DSSD_X4_E 0.0 1.0
+EDIN_T2_DSSD_X5_E 0.0 1.0
+EDIN_T2_DSSD_X6_E 0.0 1.0
+EDIN_T2_DSSD_X7_E 0.0 1.0
+EDIN_T2_DSSD_X8_E 0.0 1.0
+EDIN_T2_DSSD_X9_E 0.0 1.0
+EDIN_T2_DSSD_X10_E 0.0 1.0
+EDIN_T2_DSSD_X11_E 0.0 1.0
+EDIN_T2_DSSD_X12_E 0.0 1.0
+EDIN_T2_DSSD_X13_E 0.0 1.0
+EDIN_T2_DSSD_X14_E 0.0 1.0
+EDIN_T2_DSSD_X15_E 0.0 1.0
+EDIN_T2_DSSD_X16_E 0.0 1.0
+EDIN_T2_DSSD_X17_E 0.0 1.0
+EDIN_T2_DSSD_X18_E 0.0 1.0
+EDIN_T2_DSSD_X19_E 0.0 1.0
+EDIN_T2_DSSD_X20_E 0.0 1.0
+EDIN_T2_DSSD_X21_E 0.0 1.0
+EDIN_T2_DSSD_X22_E 0.0 1.0
+EDIN_T2_DSSD_X23_E 0.0 1.0
+EDIN_T2_DSSD_X24_E 0.0 1.0
+EDIN_T2_DSSD_X25_E 0.0 1.0
+EDIN_T2_DSSD_X26_E 0.0 1.0
+EDIN_T2_DSSD_X27_E 0.0 1.0
+EDIN_T2_DSSD_X28_E 0.0 1.0
+EDIN_T2_DSSD_X29_E 0.0 1.0
+EDIN_T2_DSSD_X30_E 0.0 1.0
+EDIN_T2_DSSD_X31_E 0.0 1.0
+EDIN_T2_DSSD_X32_E 0.0 1.0
+EDIN_T2_DSSD_X33_E 0.0 1.0
+EDIN_T2_DSSD_X34_E 0.0 1.0
+EDIN_T2_DSSD_X35_E 0.0 1.0
+EDIN_T2_DSSD_X36_E 0.0 1.0
+EDIN_T2_DSSD_X37_E 0.0 1.0
+EDIN_T2_DSSD_X38_E 0.0 1.0
+EDIN_T2_DSSD_X39_E 0.0 1.0
+EDIN_T2_DSSD_X40_E 0.0 1.0
+EDIN_T2_DSSD_X41_E 0.0 1.0
+EDIN_T2_DSSD_X42_E 0.0 1.0
+EDIN_T2_DSSD_X43_E 0.0 1.0
+EDIN_T2_DSSD_X44_E 0.0 1.0
+EDIN_T2_DSSD_X45_E 0.0 1.0
+EDIN_T2_DSSD_X46_E 0.0 1.0
+EDIN_T2_DSSD_X47_E 0.0 1.0
+EDIN_T2_DSSD_X48_E 0.0 1.0
+EDIN_T2_DSSD_X49_E 0.0 1.0
+EDIN_T2_DSSD_X50_E 0.0 1.0
+EDIN_T2_DSSD_X51_E 0.0 1.0
+EDIN_T2_DSSD_X52_E 0.0 1.0
+EDIN_T2_DSSD_X53_E 0.0 1.0
+EDIN_T2_DSSD_X54_E 0.0 1.0
+EDIN_T2_DSSD_X55_E 0.0 1.0
+EDIN_T2_DSSD_X56_E 0.0 1.0
+EDIN_T2_DSSD_X57_E 0.0 1.0
+EDIN_T2_DSSD_X58_E 0.0 1.0
+EDIN_T2_DSSD_X59_E 0.0 1.0
+EDIN_T2_DSSD_X60_E 0.0 1.0
+EDIN_T2_DSSD_X61_E 0.0 1.0
+EDIN_T2_DSSD_X62_E 0.0 1.0
+EDIN_T2_DSSD_X63_E 0.0 1.0
+EDIN_T2_DSSD_X64_E 0.0 1.0
+EDIN_T2_DSSD_X65_E 0.0 1.0
+EDIN_T2_DSSD_X66_E 0.0 1.0
+EDIN_T2_DSSD_X67_E 0.0 1.0
+EDIN_T2_DSSD_X68_E 0.0 1.0
+EDIN_T2_DSSD_X69_E 0.0 1.0
+EDIN_T2_DSSD_X70_E 0.0 1.0
+EDIN_T2_DSSD_X71_E 0.0 1.0
+EDIN_T2_DSSD_X72_E 0.0 1.0
+EDIN_T2_DSSD_X73_E 0.0 1.0
+EDIN_T2_DSSD_X74_E 0.0 1.0
+EDIN_T2_DSSD_X75_E 0.0 1.0
+EDIN_T2_DSSD_X76_E 0.0 1.0
+EDIN_T2_DSSD_X77_E 0.0 1.0
+EDIN_T2_DSSD_X78_E 0.0 1.0
+EDIN_T2_DSSD_X79_E 0.0 1.0
+EDIN_T2_DSSD_X80_E 0.0 1.0
+EDIN_T2_DSSD_X81_E 0.0 1.0
+EDIN_T2_DSSD_X82_E 0.0 1.0
+EDIN_T2_DSSD_X83_E 0.0 1.0
+EDIN_T2_DSSD_X84_E 0.0 1.0
+EDIN_T2_DSSD_X85_E 0.0 1.0
+EDIN_T2_DSSD_X86_E 0.0 1.0
+EDIN_T2_DSSD_X87_E 0.0 1.0
+EDIN_T2_DSSD_X88_E 0.0 1.0
+EDIN_T2_DSSD_X89_E 0.0 1.0
+EDIN_T2_DSSD_X90_E 0.0 1.0
+EDIN_T2_DSSD_X91_E 0.0 1.0
+EDIN_T2_DSSD_X92_E 0.0 1.0
+EDIN_T2_DSSD_X93_E 0.0 1.0
+EDIN_T2_DSSD_X94_E 0.0 1.0
+EDIN_T2_DSSD_X95_E 0.0 1.0
+EDIN_T2_DSSD_X96_E 0.0 1.0
+EDIN_T2_DSSD_X97_E 0.0 1.0
+EDIN_T2_DSSD_X98_E 0.0 1.0
+EDIN_T2_DSSD_X99_E 0.0 1.0
+EDIN_T2_DSSD_X100_E 0.0 1.0
+EDIN_T2_DSSD_X101_E 0.0 1.0
+EDIN_T2_DSSD_X102_E 0.0 1.0
+EDIN_T2_DSSD_X103_E 0.0 1.0
+EDIN_T2_DSSD_X104_E 0.0 1.0
+EDIN_T2_DSSD_X105_E 0.0 1.0
+EDIN_T2_DSSD_X106_E 0.0 1.0
+EDIN_T2_DSSD_X107_E 0.0 1.0
+EDIN_T2_DSSD_X108_E 0.0 1.0
+EDIN_T2_DSSD_X109_E 0.0 1.0
+EDIN_T2_DSSD_X110_E 0.0 1.0
+EDIN_T2_DSSD_X111_E 0.0 1.0
+EDIN_T2_DSSD_X112_E 0.0 1.0
+EDIN_T2_DSSD_X113_E 0.0 1.0
+EDIN_T2_DSSD_X114_E 0.0 1.0
+EDIN_T2_DSSD_X115_E 0.0 1.0
+EDIN_T2_DSSD_X116_E 0.0 1.0
+EDIN_T2_DSSD_X117_E 0.0 1.0
+EDIN_T2_DSSD_X118_E 0.0 1.0
+EDIN_T2_DSSD_X119_E 0.0 1.0
+EDIN_T2_DSSD_X120_E 0.0 1.0
+EDIN_T2_DSSD_X121_E 0.0 1.0
+EDIN_T2_DSSD_X122_E 0.0 1.0
+EDIN_T2_DSSD_X123_E 0.0 1.0
+EDIN_T2_DSSD_X124_E 0.0 1.0
+EDIN_T2_DSSD_X125_E 0.0 1.0
+EDIN_T2_DSSD_X126_E 0.0 1.0
+EDIN_T2_DSSD_X127_E 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M2_E/Cal_Str_Y_E_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..9e97c08beeaa6049c85f64402e17a783e4cbc9dd
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_Y0_E 0.0 1.0
+EDIN_T2_DSSD_Y1_E 0.0 1.0
+EDIN_T2_DSSD_Y2_E 0.0 1.0
+EDIN_T2_DSSD_Y3_E 0.0 1.0
+EDIN_T2_DSSD_Y4_E 0.0 1.0
+EDIN_T2_DSSD_Y5_E 0.0 1.0
+EDIN_T2_DSSD_Y6_E 0.0 1.0
+EDIN_T2_DSSD_Y7_E 0.0 1.0
+EDIN_T2_DSSD_Y8_E 0.0 1.0
+EDIN_T2_DSSD_Y9_E 0.0 1.0
+EDIN_T2_DSSD_Y10_E 0.0 1.0
+EDIN_T2_DSSD_Y11_E 0.0 1.0
+EDIN_T2_DSSD_Y12_E 0.0 1.0
+EDIN_T2_DSSD_Y13_E 0.0 1.0
+EDIN_T2_DSSD_Y14_E 0.0 1.0
+EDIN_T2_DSSD_Y15_E 0.0 1.0
+EDIN_T2_DSSD_Y16_E 0.0 1.0
+EDIN_T2_DSSD_Y17_E 0.0 1.0
+EDIN_T2_DSSD_Y18_E 0.0 1.0
+EDIN_T2_DSSD_Y19_E 0.0 1.0
+EDIN_T2_DSSD_Y20_E 0.0 1.0
+EDIN_T2_DSSD_Y21_E 0.0 1.0
+EDIN_T2_DSSD_Y22_E 0.0 1.0
+EDIN_T2_DSSD_Y23_E 0.0 1.0
+EDIN_T2_DSSD_Y24_E 0.0 1.0
+EDIN_T2_DSSD_Y25_E 0.0 1.0
+EDIN_T2_DSSD_Y26_E 0.0 1.0
+EDIN_T2_DSSD_Y27_E 0.0 1.0
+EDIN_T2_DSSD_Y28_E 0.0 1.0
+EDIN_T2_DSSD_Y29_E 0.0 1.0
+EDIN_T2_DSSD_Y30_E 0.0 1.0
+EDIN_T2_DSSD_Y31_E 0.0 1.0
+EDIN_T2_DSSD_Y32_E 0.0 1.0
+EDIN_T2_DSSD_Y33_E 0.0 1.0
+EDIN_T2_DSSD_Y34_E 0.0 1.0
+EDIN_T2_DSSD_Y35_E 0.0 1.0
+EDIN_T2_DSSD_Y36_E 0.0 1.0
+EDIN_T2_DSSD_Y37_E 0.0 1.0
+EDIN_T2_DSSD_Y38_E 0.0 1.0
+EDIN_T2_DSSD_Y39_E 0.0 1.0
+EDIN_T2_DSSD_Y40_E 0.0 1.0
+EDIN_T2_DSSD_Y41_E 0.0 1.0
+EDIN_T2_DSSD_Y42_E 0.0 1.0
+EDIN_T2_DSSD_Y43_E 0.0 1.0
+EDIN_T2_DSSD_Y44_E 0.0 1.0
+EDIN_T2_DSSD_Y45_E 0.0 1.0
+EDIN_T2_DSSD_Y46_E 0.0 1.0
+EDIN_T2_DSSD_Y47_E 0.0 1.0
+EDIN_T2_DSSD_Y48_E 0.0 1.0
+EDIN_T2_DSSD_Y49_E 0.0 1.0
+EDIN_T2_DSSD_Y50_E 0.0 1.0
+EDIN_T2_DSSD_Y51_E 0.0 1.0
+EDIN_T2_DSSD_Y52_E 0.0 1.0
+EDIN_T2_DSSD_Y53_E 0.0 1.0
+EDIN_T2_DSSD_Y54_E 0.0 1.0
+EDIN_T2_DSSD_Y55_E 0.0 1.0
+EDIN_T2_DSSD_Y56_E 0.0 1.0
+EDIN_T2_DSSD_Y57_E 0.0 1.0
+EDIN_T2_DSSD_Y58_E 0.0 1.0
+EDIN_T2_DSSD_Y59_E 0.0 1.0
+EDIN_T2_DSSD_Y60_E 0.0 1.0
+EDIN_T2_DSSD_Y61_E 0.0 1.0
+EDIN_T2_DSSD_Y62_E 0.0 1.0
+EDIN_T2_DSSD_Y63_E 0.0 1.0
+EDIN_T2_DSSD_Y64_E 0.0 1.0
+EDIN_T2_DSSD_Y65_E 0.0 1.0
+EDIN_T2_DSSD_Y66_E 0.0 1.0
+EDIN_T2_DSSD_Y67_E 0.0 1.0
+EDIN_T2_DSSD_Y68_E 0.0 1.0
+EDIN_T2_DSSD_Y69_E 0.0 1.0
+EDIN_T2_DSSD_Y70_E 0.0 1.0
+EDIN_T2_DSSD_Y71_E 0.0 1.0
+EDIN_T2_DSSD_Y72_E 0.0 1.0
+EDIN_T2_DSSD_Y73_E 0.0 1.0
+EDIN_T2_DSSD_Y74_E 0.0 1.0
+EDIN_T2_DSSD_Y75_E 0.0 1.0
+EDIN_T2_DSSD_Y76_E 0.0 1.0
+EDIN_T2_DSSD_Y77_E 0.0 1.0
+EDIN_T2_DSSD_Y78_E 0.0 1.0
+EDIN_T2_DSSD_Y79_E 0.0 1.0
+EDIN_T2_DSSD_Y80_E 0.0 1.0
+EDIN_T2_DSSD_Y81_E 0.0 1.0
+EDIN_T2_DSSD_Y82_E 0.0 1.0
+EDIN_T2_DSSD_Y83_E 0.0 1.0
+EDIN_T2_DSSD_Y84_E 0.0 1.0
+EDIN_T2_DSSD_Y85_E 0.0 1.0
+EDIN_T2_DSSD_Y86_E 0.0 1.0
+EDIN_T2_DSSD_Y87_E 0.0 1.0
+EDIN_T2_DSSD_Y88_E 0.0 1.0
+EDIN_T2_DSSD_Y89_E 0.0 1.0
+EDIN_T2_DSSD_Y90_E 0.0 1.0
+EDIN_T2_DSSD_Y91_E 0.0 1.0
+EDIN_T2_DSSD_Y92_E 0.0 1.0
+EDIN_T2_DSSD_Y93_E 0.0 1.0
+EDIN_T2_DSSD_Y94_E 0.0 1.0
+EDIN_T2_DSSD_Y95_E 0.0 1.0
+EDIN_T2_DSSD_Y96_E 0.0 1.0
+EDIN_T2_DSSD_Y97_E 0.0 1.0
+EDIN_T2_DSSD_Y98_E 0.0 1.0
+EDIN_T2_DSSD_Y99_E 0.0 1.0
+EDIN_T2_DSSD_Y100_E 0.0 1.0
+EDIN_T2_DSSD_Y101_E 0.0 1.0
+EDIN_T2_DSSD_Y102_E 0.0 1.0
+EDIN_T2_DSSD_Y103_E 0.0 1.0
+EDIN_T2_DSSD_Y104_E 0.0 1.0
+EDIN_T2_DSSD_Y105_E 0.0 1.0
+EDIN_T2_DSSD_Y106_E 0.0 1.0
+EDIN_T2_DSSD_Y107_E 0.0 1.0
+EDIN_T2_DSSD_Y108_E 0.0 1.0
+EDIN_T2_DSSD_Y109_E 0.0 1.0
+EDIN_T2_DSSD_Y110_E 0.0 1.0
+EDIN_T2_DSSD_Y111_E 0.0 1.0
+EDIN_T2_DSSD_Y112_E 0.0 1.0
+EDIN_T2_DSSD_Y113_E 0.0 1.0
+EDIN_T2_DSSD_Y114_E 0.0 1.0
+EDIN_T2_DSSD_Y115_E 0.0 1.0
+EDIN_T2_DSSD_Y116_E 0.0 1.0
+EDIN_T2_DSSD_Y117_E 0.0 1.0
+EDIN_T2_DSSD_Y118_E 0.0 1.0
+EDIN_T2_DSSD_Y119_E 0.0 1.0
+EDIN_T2_DSSD_Y120_E 0.0 1.0
+EDIN_T2_DSSD_Y121_E 0.0 1.0
+EDIN_T2_DSSD_Y122_E 0.0 1.0
+EDIN_T2_DSSD_Y123_E 0.0 1.0
+EDIN_T2_DSSD_Y124_E 0.0 1.0
+EDIN_T2_DSSD_Y125_E 0.0 1.0
+EDIN_T2_DSSD_Y126_E 0.0 1.0
+EDIN_T2_DSSD_Y127_E 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M2_T/Cal_Str_X_T_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d066b95e49391059ca0357961a0602d88ef8c571
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_X0_T 0.0 1.0
+EDIN_T2_DSSD_X1_T 0.0 1.0
+EDIN_T2_DSSD_X2_T 0.0 1.0
+EDIN_T2_DSSD_X3_T 0.0 1.0
+EDIN_T2_DSSD_X4_T 0.0 1.0
+EDIN_T2_DSSD_X5_T 0.0 1.0
+EDIN_T2_DSSD_X6_T 0.0 1.0
+EDIN_T2_DSSD_X7_T 0.0 1.0
+EDIN_T2_DSSD_X8_T 0.0 1.0
+EDIN_T2_DSSD_X9_T 0.0 1.0
+EDIN_T2_DSSD_X10_T 0.0 1.0
+EDIN_T2_DSSD_X11_T 0.0 1.0
+EDIN_T2_DSSD_X12_T 0.0 1.0
+EDIN_T2_DSSD_X13_T 0.0 1.0
+EDIN_T2_DSSD_X14_T 0.0 1.0
+EDIN_T2_DSSD_X15_T 0.0 1.0
+EDIN_T2_DSSD_X16_T 0.0 1.0
+EDIN_T2_DSSD_X17_T 0.0 1.0
+EDIN_T2_DSSD_X18_T 0.0 1.0
+EDIN_T2_DSSD_X19_T 0.0 1.0
+EDIN_T2_DSSD_X20_T 0.0 1.0
+EDIN_T2_DSSD_X21_T 0.0 1.0
+EDIN_T2_DSSD_X22_T 0.0 1.0
+EDIN_T2_DSSD_X23_T 0.0 1.0
+EDIN_T2_DSSD_X24_T 0.0 1.0
+EDIN_T2_DSSD_X25_T 0.0 1.0
+EDIN_T2_DSSD_X26_T 0.0 1.0
+EDIN_T2_DSSD_X27_T 0.0 1.0
+EDIN_T2_DSSD_X28_T 0.0 1.0
+EDIN_T2_DSSD_X29_T 0.0 1.0
+EDIN_T2_DSSD_X30_T 0.0 1.0
+EDIN_T2_DSSD_X31_T 0.0 1.0
+EDIN_T2_DSSD_X32_T 0.0 1.0
+EDIN_T2_DSSD_X33_T 0.0 1.0
+EDIN_T2_DSSD_X34_T 0.0 1.0
+EDIN_T2_DSSD_X35_T 0.0 1.0
+EDIN_T2_DSSD_X36_T 0.0 1.0
+EDIN_T2_DSSD_X37_T 0.0 1.0
+EDIN_T2_DSSD_X38_T 0.0 1.0
+EDIN_T2_DSSD_X39_T 0.0 1.0
+EDIN_T2_DSSD_X40_T 0.0 1.0
+EDIN_T2_DSSD_X41_T 0.0 1.0
+EDIN_T2_DSSD_X42_T 0.0 1.0
+EDIN_T2_DSSD_X43_T 0.0 1.0
+EDIN_T2_DSSD_X44_T 0.0 1.0
+EDIN_T2_DSSD_X45_T 0.0 1.0
+EDIN_T2_DSSD_X46_T 0.0 1.0
+EDIN_T2_DSSD_X47_T 0.0 1.0
+EDIN_T2_DSSD_X48_T 0.0 1.0
+EDIN_T2_DSSD_X49_T 0.0 1.0
+EDIN_T2_DSSD_X50_T 0.0 1.0
+EDIN_T2_DSSD_X51_T 0.0 1.0
+EDIN_T2_DSSD_X52_T 0.0 1.0
+EDIN_T2_DSSD_X53_T 0.0 1.0
+EDIN_T2_DSSD_X54_T 0.0 1.0
+EDIN_T2_DSSD_X55_T 0.0 1.0
+EDIN_T2_DSSD_X56_T 0.0 1.0
+EDIN_T2_DSSD_X57_T 0.0 1.0
+EDIN_T2_DSSD_X58_T 0.0 1.0
+EDIN_T2_DSSD_X59_T 0.0 1.0
+EDIN_T2_DSSD_X60_T 0.0 1.0
+EDIN_T2_DSSD_X61_T 0.0 1.0
+EDIN_T2_DSSD_X62_T 0.0 1.0
+EDIN_T2_DSSD_X63_T 0.0 1.0
+EDIN_T2_DSSD_X64_T 0.0 1.0
+EDIN_T2_DSSD_X65_T 0.0 1.0
+EDIN_T2_DSSD_X66_T 0.0 1.0
+EDIN_T2_DSSD_X67_T 0.0 1.0
+EDIN_T2_DSSD_X68_T 0.0 1.0
+EDIN_T2_DSSD_X69_T 0.0 1.0
+EDIN_T2_DSSD_X70_T 0.0 1.0
+EDIN_T2_DSSD_X71_T 0.0 1.0
+EDIN_T2_DSSD_X72_T 0.0 1.0
+EDIN_T2_DSSD_X73_T 0.0 1.0
+EDIN_T2_DSSD_X74_T 0.0 1.0
+EDIN_T2_DSSD_X75_T 0.0 1.0
+EDIN_T2_DSSD_X76_T 0.0 1.0
+EDIN_T2_DSSD_X77_T 0.0 1.0
+EDIN_T2_DSSD_X78_T 0.0 1.0
+EDIN_T2_DSSD_X79_T 0.0 1.0
+EDIN_T2_DSSD_X80_T 0.0 1.0
+EDIN_T2_DSSD_X81_T 0.0 1.0
+EDIN_T2_DSSD_X82_T 0.0 1.0
+EDIN_T2_DSSD_X83_T 0.0 1.0
+EDIN_T2_DSSD_X84_T 0.0 1.0
+EDIN_T2_DSSD_X85_T 0.0 1.0
+EDIN_T2_DSSD_X86_T 0.0 1.0
+EDIN_T2_DSSD_X87_T 0.0 1.0
+EDIN_T2_DSSD_X88_T 0.0 1.0
+EDIN_T2_DSSD_X89_T 0.0 1.0
+EDIN_T2_DSSD_X90_T 0.0 1.0
+EDIN_T2_DSSD_X91_T 0.0 1.0
+EDIN_T2_DSSD_X92_T 0.0 1.0
+EDIN_T2_DSSD_X93_T 0.0 1.0
+EDIN_T2_DSSD_X94_T 0.0 1.0
+EDIN_T2_DSSD_X95_T 0.0 1.0
+EDIN_T2_DSSD_X96_T 0.0 1.0
+EDIN_T2_DSSD_X97_T 0.0 1.0
+EDIN_T2_DSSD_X98_T 0.0 1.0
+EDIN_T2_DSSD_X99_T 0.0 1.0
+EDIN_T2_DSSD_X100_T 0.0 1.0
+EDIN_T2_DSSD_X101_T 0.0 1.0
+EDIN_T2_DSSD_X102_T 0.0 1.0
+EDIN_T2_DSSD_X103_T 0.0 1.0
+EDIN_T2_DSSD_X104_T 0.0 1.0
+EDIN_T2_DSSD_X105_T 0.0 1.0
+EDIN_T2_DSSD_X106_T 0.0 1.0
+EDIN_T2_DSSD_X107_T 0.0 1.0
+EDIN_T2_DSSD_X108_T 0.0 1.0
+EDIN_T2_DSSD_X109_T 0.0 1.0
+EDIN_T2_DSSD_X110_T 0.0 1.0
+EDIN_T2_DSSD_X111_T 0.0 1.0
+EDIN_T2_DSSD_X112_T 0.0 1.0
+EDIN_T2_DSSD_X113_T 0.0 1.0
+EDIN_T2_DSSD_X114_T 0.0 1.0
+EDIN_T2_DSSD_X115_T 0.0 1.0
+EDIN_T2_DSSD_X116_T 0.0 1.0
+EDIN_T2_DSSD_X117_T 0.0 1.0
+EDIN_T2_DSSD_X118_T 0.0 1.0
+EDIN_T2_DSSD_X119_T 0.0 1.0
+EDIN_T2_DSSD_X120_T 0.0 1.0
+EDIN_T2_DSSD_X121_T 0.0 1.0
+EDIN_T2_DSSD_X122_T 0.0 1.0
+EDIN_T2_DSSD_X123_T 0.0 1.0
+EDIN_T2_DSSD_X124_T 0.0 1.0
+EDIN_T2_DSSD_X125_T 0.0 1.0
+EDIN_T2_DSSD_X126_T 0.0 1.0
+EDIN_T2_DSSD_X127_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c569be484efd61e7fd57ed0475b990626f59b352
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_Y0_T 0.0 1.0
+EDIN_T2_DSSD_Y1_T 0.0 1.0
+EDIN_T2_DSSD_Y2_T 0.0 1.0
+EDIN_T2_DSSD_Y3_T 0.0 1.0
+EDIN_T2_DSSD_Y4_T 0.0 1.0
+EDIN_T2_DSSD_Y5_T 0.0 1.0
+EDIN_T2_DSSD_Y6_T 0.0 1.0
+EDIN_T2_DSSD_Y7_T 0.0 1.0
+EDIN_T2_DSSD_Y8_T 0.0 1.0
+EDIN_T2_DSSD_Y9_T 0.0 1.0
+EDIN_T2_DSSD_Y10_T 0.0 1.0
+EDIN_T2_DSSD_Y11_T 0.0 1.0
+EDIN_T2_DSSD_Y12_T 0.0 1.0
+EDIN_T2_DSSD_Y13_T 0.0 1.0
+EDIN_T2_DSSD_Y14_T 0.0 1.0
+EDIN_T2_DSSD_Y15_T 0.0 1.0
+EDIN_T2_DSSD_Y16_T 0.0 1.0
+EDIN_T2_DSSD_Y17_T 0.0 1.0
+EDIN_T2_DSSD_Y18_T 0.0 1.0
+EDIN_T2_DSSD_Y19_T 0.0 1.0
+EDIN_T2_DSSD_Y20_T 0.0 1.0
+EDIN_T2_DSSD_Y21_T 0.0 1.0
+EDIN_T2_DSSD_Y22_T 0.0 1.0
+EDIN_T2_DSSD_Y23_T 0.0 1.0
+EDIN_T2_DSSD_Y24_T 0.0 1.0
+EDIN_T2_DSSD_Y25_T 0.0 1.0
+EDIN_T2_DSSD_Y26_T 0.0 1.0
+EDIN_T2_DSSD_Y27_T 0.0 1.0
+EDIN_T2_DSSD_Y28_T 0.0 1.0
+EDIN_T2_DSSD_Y29_T 0.0 1.0
+EDIN_T2_DSSD_Y30_T 0.0 1.0
+EDIN_T2_DSSD_Y31_T 0.0 1.0
+EDIN_T2_DSSD_Y32_T 0.0 1.0
+EDIN_T2_DSSD_Y33_T 0.0 1.0
+EDIN_T2_DSSD_Y34_T 0.0 1.0
+EDIN_T2_DSSD_Y35_T 0.0 1.0
+EDIN_T2_DSSD_Y36_T 0.0 1.0
+EDIN_T2_DSSD_Y37_T 0.0 1.0
+EDIN_T2_DSSD_Y38_T 0.0 1.0
+EDIN_T2_DSSD_Y39_T 0.0 1.0
+EDIN_T2_DSSD_Y40_T 0.0 1.0
+EDIN_T2_DSSD_Y41_T 0.0 1.0
+EDIN_T2_DSSD_Y42_T 0.0 1.0
+EDIN_T2_DSSD_Y43_T 0.0 1.0
+EDIN_T2_DSSD_Y44_T 0.0 1.0
+EDIN_T2_DSSD_Y45_T 0.0 1.0
+EDIN_T2_DSSD_Y46_T 0.0 1.0
+EDIN_T2_DSSD_Y47_T 0.0 1.0
+EDIN_T2_DSSD_Y48_T 0.0 1.0
+EDIN_T2_DSSD_Y49_T 0.0 1.0
+EDIN_T2_DSSD_Y50_T 0.0 1.0
+EDIN_T2_DSSD_Y51_T 0.0 1.0
+EDIN_T2_DSSD_Y52_T 0.0 1.0
+EDIN_T2_DSSD_Y53_T 0.0 1.0
+EDIN_T2_DSSD_Y54_T 0.0 1.0
+EDIN_T2_DSSD_Y55_T 0.0 1.0
+EDIN_T2_DSSD_Y56_T 0.0 1.0
+EDIN_T2_DSSD_Y57_T 0.0 1.0
+EDIN_T2_DSSD_Y58_T 0.0 1.0
+EDIN_T2_DSSD_Y59_T 0.0 1.0
+EDIN_T2_DSSD_Y60_T 0.0 1.0
+EDIN_T2_DSSD_Y61_T 0.0 1.0
+EDIN_T2_DSSD_Y62_T 0.0 1.0
+EDIN_T2_DSSD_Y63_T 0.0 1.0
+EDIN_T2_DSSD_Y64_T 0.0 1.0
+EDIN_T2_DSSD_Y65_T 0.0 1.0
+EDIN_T2_DSSD_Y66_T 0.0 1.0
+EDIN_T2_DSSD_Y67_T 0.0 1.0
+EDIN_T2_DSSD_Y68_T 0.0 1.0
+EDIN_T2_DSSD_Y69_T 0.0 1.0
+EDIN_T2_DSSD_Y70_T 0.0 1.0
+EDIN_T2_DSSD_Y71_T 0.0 1.0
+EDIN_T2_DSSD_Y72_T 0.0 1.0
+EDIN_T2_DSSD_Y73_T 0.0 1.0
+EDIN_T2_DSSD_Y74_T 0.0 1.0
+EDIN_T2_DSSD_Y75_T 0.0 1.0
+EDIN_T2_DSSD_Y76_T 0.0 1.0
+EDIN_T2_DSSD_Y77_T 0.0 1.0
+EDIN_T2_DSSD_Y78_T 0.0 1.0
+EDIN_T2_DSSD_Y79_T 0.0 1.0
+EDIN_T2_DSSD_Y80_T 0.0 1.0
+EDIN_T2_DSSD_Y81_T 0.0 1.0
+EDIN_T2_DSSD_Y82_T 0.0 1.0
+EDIN_T2_DSSD_Y83_T 0.0 1.0
+EDIN_T2_DSSD_Y84_T 0.0 1.0
+EDIN_T2_DSSD_Y85_T 0.0 1.0
+EDIN_T2_DSSD_Y86_T 0.0 1.0
+EDIN_T2_DSSD_Y87_T 0.0 1.0
+EDIN_T2_DSSD_Y88_T 0.0 1.0
+EDIN_T2_DSSD_Y89_T 0.0 1.0
+EDIN_T2_DSSD_Y90_T 0.0 1.0
+EDIN_T2_DSSD_Y91_T 0.0 1.0
+EDIN_T2_DSSD_Y92_T 0.0 1.0
+EDIN_T2_DSSD_Y93_T 0.0 1.0
+EDIN_T2_DSSD_Y94_T 0.0 1.0
+EDIN_T2_DSSD_Y95_T 0.0 1.0
+EDIN_T2_DSSD_Y96_T 0.0 1.0
+EDIN_T2_DSSD_Y97_T 0.0 1.0
+EDIN_T2_DSSD_Y98_T 0.0 1.0
+EDIN_T2_DSSD_Y99_T 0.0 1.0
+EDIN_T2_DSSD_Y100_T 0.0 1.0
+EDIN_T2_DSSD_Y101_T 0.0 1.0
+EDIN_T2_DSSD_Y102_T 0.0 1.0
+EDIN_T2_DSSD_Y103_T 0.0 1.0
+EDIN_T2_DSSD_Y104_T 0.0 1.0
+EDIN_T2_DSSD_Y105_T 0.0 1.0
+EDIN_T2_DSSD_Y106_T 0.0 1.0
+EDIN_T2_DSSD_Y107_T 0.0 1.0
+EDIN_T2_DSSD_Y108_T 0.0 1.0
+EDIN_T2_DSSD_Y109_T 0.0 1.0
+EDIN_T2_DSSD_Y110_T 0.0 1.0
+EDIN_T2_DSSD_Y111_T 0.0 1.0
+EDIN_T2_DSSD_Y112_T 0.0 1.0
+EDIN_T2_DSSD_Y113_T 0.0 1.0
+EDIN_T2_DSSD_Y114_T 0.0 1.0
+EDIN_T2_DSSD_Y115_T 0.0 1.0
+EDIN_T2_DSSD_Y116_T 0.0 1.0
+EDIN_T2_DSSD_Y117_T 0.0 1.0
+EDIN_T2_DSSD_Y118_T 0.0 1.0
+EDIN_T2_DSSD_Y119_T 0.0 1.0
+EDIN_T2_DSSD_Y120_T 0.0 1.0
+EDIN_T2_DSSD_Y121_T 0.0 1.0
+EDIN_T2_DSSD_Y122_T 0.0 1.0
+EDIN_T2_DSSD_Y123_T 0.0 1.0
+EDIN_T2_DSSD_Y124_T 0.0 1.0
+EDIN_T2_DSSD_Y125_T 0.0 1.0
+EDIN_T2_DSSD_Y126_T 0.0 1.0
+EDIN_T2_DSSD_Y127_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M3_E/Cal_Str_X_E_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1ae4b8f69b9f412305c6a7612d24d24424164dac
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_X0_E 0.0 1.0
+EDIN_T3_DSSD_X1_E 0.0 1.0
+EDIN_T3_DSSD_X2_E 0.0 1.0
+EDIN_T3_DSSD_X3_E 0.0 1.0
+EDIN_T3_DSSD_X4_E 0.0 1.0
+EDIN_T3_DSSD_X5_E 0.0 1.0
+EDIN_T3_DSSD_X6_E 0.0 1.0
+EDIN_T3_DSSD_X7_E 0.0 1.0
+EDIN_T3_DSSD_X8_E 0.0 1.0
+EDIN_T3_DSSD_X9_E 0.0 1.0
+EDIN_T3_DSSD_X10_E 0.0 1.0
+EDIN_T3_DSSD_X11_E 0.0 1.0
+EDIN_T3_DSSD_X12_E 0.0 1.0
+EDIN_T3_DSSD_X13_E 0.0 1.0
+EDIN_T3_DSSD_X14_E 0.0 1.0
+EDIN_T3_DSSD_X15_E 0.0 1.0
+EDIN_T3_DSSD_X16_E 0.0 1.0
+EDIN_T3_DSSD_X17_E 0.0 1.0
+EDIN_T3_DSSD_X18_E 0.0 1.0
+EDIN_T3_DSSD_X19_E 0.0 1.0
+EDIN_T3_DSSD_X20_E 0.0 1.0
+EDIN_T3_DSSD_X21_E 0.0 1.0
+EDIN_T3_DSSD_X22_E 0.0 1.0
+EDIN_T3_DSSD_X23_E 0.0 1.0
+EDIN_T3_DSSD_X24_E 0.0 1.0
+EDIN_T3_DSSD_X25_E 0.0 1.0
+EDIN_T3_DSSD_X26_E 0.0 1.0
+EDIN_T3_DSSD_X27_E 0.0 1.0
+EDIN_T3_DSSD_X28_E 0.0 1.0
+EDIN_T3_DSSD_X29_E 0.0 1.0
+EDIN_T3_DSSD_X30_E 0.0 1.0
+EDIN_T3_DSSD_X31_E 0.0 1.0
+EDIN_T3_DSSD_X32_E 0.0 1.0
+EDIN_T3_DSSD_X33_E 0.0 1.0
+EDIN_T3_DSSD_X34_E 0.0 1.0
+EDIN_T3_DSSD_X35_E 0.0 1.0
+EDIN_T3_DSSD_X36_E 0.0 1.0
+EDIN_T3_DSSD_X37_E 0.0 1.0
+EDIN_T3_DSSD_X38_E 0.0 1.0
+EDIN_T3_DSSD_X39_E 0.0 1.0
+EDIN_T3_DSSD_X40_E 0.0 1.0
+EDIN_T3_DSSD_X41_E 0.0 1.0
+EDIN_T3_DSSD_X42_E 0.0 1.0
+EDIN_T3_DSSD_X43_E 0.0 1.0
+EDIN_T3_DSSD_X44_E 0.0 1.0
+EDIN_T3_DSSD_X45_E 0.0 1.0
+EDIN_T3_DSSD_X46_E 0.0 1.0
+EDIN_T3_DSSD_X47_E 0.0 1.0
+EDIN_T3_DSSD_X48_E 0.0 1.0
+EDIN_T3_DSSD_X49_E 0.0 1.0
+EDIN_T3_DSSD_X50_E 0.0 1.0
+EDIN_T3_DSSD_X51_E 0.0 1.0
+EDIN_T3_DSSD_X52_E 0.0 1.0
+EDIN_T3_DSSD_X53_E 0.0 1.0
+EDIN_T3_DSSD_X54_E 0.0 1.0
+EDIN_T3_DSSD_X55_E 0.0 1.0
+EDIN_T3_DSSD_X56_E 0.0 1.0
+EDIN_T3_DSSD_X57_E 0.0 1.0
+EDIN_T3_DSSD_X58_E 0.0 1.0
+EDIN_T3_DSSD_X59_E 0.0 1.0
+EDIN_T3_DSSD_X60_E 0.0 1.0
+EDIN_T3_DSSD_X61_E 0.0 1.0
+EDIN_T3_DSSD_X62_E 0.0 1.0
+EDIN_T3_DSSD_X63_E 0.0 1.0
+EDIN_T3_DSSD_X64_E 0.0 1.0
+EDIN_T3_DSSD_X65_E 0.0 1.0
+EDIN_T3_DSSD_X66_E 0.0 1.0
+EDIN_T3_DSSD_X67_E 0.0 1.0
+EDIN_T3_DSSD_X68_E 0.0 1.0
+EDIN_T3_DSSD_X69_E 0.0 1.0
+EDIN_T3_DSSD_X70_E 0.0 1.0
+EDIN_T3_DSSD_X71_E 0.0 1.0
+EDIN_T3_DSSD_X72_E 0.0 1.0
+EDIN_T3_DSSD_X73_E 0.0 1.0
+EDIN_T3_DSSD_X74_E 0.0 1.0
+EDIN_T3_DSSD_X75_E 0.0 1.0
+EDIN_T3_DSSD_X76_E 0.0 1.0
+EDIN_T3_DSSD_X77_E 0.0 1.0
+EDIN_T3_DSSD_X78_E 0.0 1.0
+EDIN_T3_DSSD_X79_E 0.0 1.0
+EDIN_T3_DSSD_X80_E 0.0 1.0
+EDIN_T3_DSSD_X81_E 0.0 1.0
+EDIN_T3_DSSD_X82_E 0.0 1.0
+EDIN_T3_DSSD_X83_E 0.0 1.0
+EDIN_T3_DSSD_X84_E 0.0 1.0
+EDIN_T3_DSSD_X85_E 0.0 1.0
+EDIN_T3_DSSD_X86_E 0.0 1.0
+EDIN_T3_DSSD_X87_E 0.0 1.0
+EDIN_T3_DSSD_X88_E 0.0 1.0
+EDIN_T3_DSSD_X89_E 0.0 1.0
+EDIN_T3_DSSD_X90_E 0.0 1.0
+EDIN_T3_DSSD_X91_E 0.0 1.0
+EDIN_T3_DSSD_X92_E 0.0 1.0
+EDIN_T3_DSSD_X93_E 0.0 1.0
+EDIN_T3_DSSD_X94_E 0.0 1.0
+EDIN_T3_DSSD_X95_E 0.0 1.0
+EDIN_T3_DSSD_X96_E 0.0 1.0
+EDIN_T3_DSSD_X97_E 0.0 1.0
+EDIN_T3_DSSD_X98_E 0.0 1.0
+EDIN_T3_DSSD_X99_E 0.0 1.0
+EDIN_T3_DSSD_X100_E 0.0 1.0
+EDIN_T3_DSSD_X101_E 0.0 1.0
+EDIN_T3_DSSD_X102_E 0.0 1.0
+EDIN_T3_DSSD_X103_E 0.0 1.0
+EDIN_T3_DSSD_X104_E 0.0 1.0
+EDIN_T3_DSSD_X105_E 0.0 1.0
+EDIN_T3_DSSD_X106_E 0.0 1.0
+EDIN_T3_DSSD_X107_E 0.0 1.0
+EDIN_T3_DSSD_X108_E 0.0 1.0
+EDIN_T3_DSSD_X109_E 0.0 1.0
+EDIN_T3_DSSD_X110_E 0.0 1.0
+EDIN_T3_DSSD_X111_E 0.0 1.0
+EDIN_T3_DSSD_X112_E 0.0 1.0
+EDIN_T3_DSSD_X113_E 0.0 1.0
+EDIN_T3_DSSD_X114_E 0.0 1.0
+EDIN_T3_DSSD_X115_E 0.0 1.0
+EDIN_T3_DSSD_X116_E 0.0 1.0
+EDIN_T3_DSSD_X117_E 0.0 1.0
+EDIN_T3_DSSD_X118_E 0.0 1.0
+EDIN_T3_DSSD_X119_E 0.0 1.0
+EDIN_T3_DSSD_X120_E 0.0 1.0
+EDIN_T3_DSSD_X121_E 0.0 1.0
+EDIN_T3_DSSD_X122_E 0.0 1.0
+EDIN_T3_DSSD_X123_E 0.0 1.0
+EDIN_T3_DSSD_X124_E 0.0 1.0
+EDIN_T3_DSSD_X125_E 0.0 1.0
+EDIN_T3_DSSD_X126_E 0.0 1.0
+EDIN_T3_DSSD_X127_E 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M3_E/Cal_Str_Y_E_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e92cfb619e555d1016bc0755487fd9489a56d42b
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_Y0_E 0.0 1.0
+EDIN_T3_DSSD_Y1_E 0.0 1.0
+EDIN_T3_DSSD_Y2_E 0.0 1.0
+EDIN_T3_DSSD_Y3_E 0.0 1.0
+EDIN_T3_DSSD_Y4_E 0.0 1.0
+EDIN_T3_DSSD_Y5_E 0.0 1.0
+EDIN_T3_DSSD_Y6_E 0.0 1.0
+EDIN_T3_DSSD_Y7_E 0.0 1.0
+EDIN_T3_DSSD_Y8_E 0.0 1.0
+EDIN_T3_DSSD_Y9_E 0.0 1.0
+EDIN_T3_DSSD_Y10_E 0.0 1.0
+EDIN_T3_DSSD_Y11_E 0.0 1.0
+EDIN_T3_DSSD_Y12_E 0.0 1.0
+EDIN_T3_DSSD_Y13_E 0.0 1.0
+EDIN_T3_DSSD_Y14_E 0.0 1.0
+EDIN_T3_DSSD_Y15_E 0.0 1.0
+EDIN_T3_DSSD_Y16_E 0.0 1.0
+EDIN_T3_DSSD_Y17_E 0.0 1.0
+EDIN_T3_DSSD_Y18_E 0.0 1.0
+EDIN_T3_DSSD_Y19_E 0.0 1.0
+EDIN_T3_DSSD_Y20_E 0.0 1.0
+EDIN_T3_DSSD_Y21_E 0.0 1.0
+EDIN_T3_DSSD_Y22_E 0.0 1.0
+EDIN_T3_DSSD_Y23_E 0.0 1.0
+EDIN_T3_DSSD_Y24_E 0.0 1.0
+EDIN_T3_DSSD_Y25_E 0.0 1.0
+EDIN_T3_DSSD_Y26_E 0.0 1.0
+EDIN_T3_DSSD_Y27_E 0.0 1.0
+EDIN_T3_DSSD_Y28_E 0.0 1.0
+EDIN_T3_DSSD_Y29_E 0.0 1.0
+EDIN_T3_DSSD_Y30_E 0.0 1.0
+EDIN_T3_DSSD_Y31_E 0.0 1.0
+EDIN_T3_DSSD_Y32_E 0.0 1.0
+EDIN_T3_DSSD_Y33_E 0.0 1.0
+EDIN_T3_DSSD_Y34_E 0.0 1.0
+EDIN_T3_DSSD_Y35_E 0.0 1.0
+EDIN_T3_DSSD_Y36_E 0.0 1.0
+EDIN_T3_DSSD_Y37_E 0.0 1.0
+EDIN_T3_DSSD_Y38_E 0.0 1.0
+EDIN_T3_DSSD_Y39_E 0.0 1.0
+EDIN_T3_DSSD_Y40_E 0.0 1.0
+EDIN_T3_DSSD_Y41_E 0.0 1.0
+EDIN_T3_DSSD_Y42_E 0.0 1.0
+EDIN_T3_DSSD_Y43_E 0.0 1.0
+EDIN_T3_DSSD_Y44_E 0.0 1.0
+EDIN_T3_DSSD_Y45_E 0.0 1.0
+EDIN_T3_DSSD_Y46_E 0.0 1.0
+EDIN_T3_DSSD_Y47_E 0.0 1.0
+EDIN_T3_DSSD_Y48_E 0.0 1.0
+EDIN_T3_DSSD_Y49_E 0.0 1.0
+EDIN_T3_DSSD_Y50_E 0.0 1.0
+EDIN_T3_DSSD_Y51_E 0.0 1.0
+EDIN_T3_DSSD_Y52_E 0.0 1.0
+EDIN_T3_DSSD_Y53_E 0.0 1.0
+EDIN_T3_DSSD_Y54_E 0.0 1.0
+EDIN_T3_DSSD_Y55_E 0.0 1.0
+EDIN_T3_DSSD_Y56_E 0.0 1.0
+EDIN_T3_DSSD_Y57_E 0.0 1.0
+EDIN_T3_DSSD_Y58_E 0.0 1.0
+EDIN_T3_DSSD_Y59_E 0.0 1.0
+EDIN_T3_DSSD_Y60_E 0.0 1.0
+EDIN_T3_DSSD_Y61_E 0.0 1.0
+EDIN_T3_DSSD_Y62_E 0.0 1.0
+EDIN_T3_DSSD_Y63_E 0.0 1.0
+EDIN_T3_DSSD_Y64_E 0.0 1.0
+EDIN_T3_DSSD_Y65_E 0.0 1.0
+EDIN_T3_DSSD_Y66_E 0.0 1.0
+EDIN_T3_DSSD_Y67_E 0.0 1.0
+EDIN_T3_DSSD_Y68_E 0.0 1.0
+EDIN_T3_DSSD_Y69_E 0.0 1.0
+EDIN_T3_DSSD_Y70_E 0.0 1.0
+EDIN_T3_DSSD_Y71_E 0.0 1.0
+EDIN_T3_DSSD_Y72_E 0.0 1.0
+EDIN_T3_DSSD_Y73_E 0.0 1.0
+EDIN_T3_DSSD_Y74_E 0.0 1.0
+EDIN_T3_DSSD_Y75_E 0.0 1.0
+EDIN_T3_DSSD_Y76_E 0.0 1.0
+EDIN_T3_DSSD_Y77_E 0.0 1.0
+EDIN_T3_DSSD_Y78_E 0.0 1.0
+EDIN_T3_DSSD_Y79_E 0.0 1.0
+EDIN_T3_DSSD_Y80_E 0.0 1.0
+EDIN_T3_DSSD_Y81_E 0.0 1.0
+EDIN_T3_DSSD_Y82_E 0.0 1.0
+EDIN_T3_DSSD_Y83_E 0.0 1.0
+EDIN_T3_DSSD_Y84_E 0.0 1.0
+EDIN_T3_DSSD_Y85_E 0.0 1.0
+EDIN_T3_DSSD_Y86_E 0.0 1.0
+EDIN_T3_DSSD_Y87_E 0.0 1.0
+EDIN_T3_DSSD_Y88_E 0.0 1.0
+EDIN_T3_DSSD_Y89_E 0.0 1.0
+EDIN_T3_DSSD_Y90_E 0.0 1.0
+EDIN_T3_DSSD_Y91_E 0.0 1.0
+EDIN_T3_DSSD_Y92_E 0.0 1.0
+EDIN_T3_DSSD_Y93_E 0.0 1.0
+EDIN_T3_DSSD_Y94_E 0.0 1.0
+EDIN_T3_DSSD_Y95_E 0.0 1.0
+EDIN_T3_DSSD_Y96_E 0.0 1.0
+EDIN_T3_DSSD_Y97_E 0.0 1.0
+EDIN_T3_DSSD_Y98_E 0.0 1.0
+EDIN_T3_DSSD_Y99_E 0.0 1.0
+EDIN_T3_DSSD_Y100_E 0.0 1.0
+EDIN_T3_DSSD_Y101_E 0.0 1.0
+EDIN_T3_DSSD_Y102_E 0.0 1.0
+EDIN_T3_DSSD_Y103_E 0.0 1.0
+EDIN_T3_DSSD_Y104_E 0.0 1.0
+EDIN_T3_DSSD_Y105_E 0.0 1.0
+EDIN_T3_DSSD_Y106_E 0.0 1.0
+EDIN_T3_DSSD_Y107_E 0.0 1.0
+EDIN_T3_DSSD_Y108_E 0.0 1.0
+EDIN_T3_DSSD_Y109_E 0.0 1.0
+EDIN_T3_DSSD_Y110_E 0.0 1.0
+EDIN_T3_DSSD_Y111_E 0.0 1.0
+EDIN_T3_DSSD_Y112_E 0.0 1.0
+EDIN_T3_DSSD_Y113_E 0.0 1.0
+EDIN_T3_DSSD_Y114_E 0.0 1.0
+EDIN_T3_DSSD_Y115_E 0.0 1.0
+EDIN_T3_DSSD_Y116_E 0.0 1.0
+EDIN_T3_DSSD_Y117_E 0.0 1.0
+EDIN_T3_DSSD_Y118_E 0.0 1.0
+EDIN_T3_DSSD_Y119_E 0.0 1.0
+EDIN_T3_DSSD_Y120_E 0.0 1.0
+EDIN_T3_DSSD_Y121_E 0.0 1.0
+EDIN_T3_DSSD_Y122_E 0.0 1.0
+EDIN_T3_DSSD_Y123_E 0.0 1.0
+EDIN_T3_DSSD_Y124_E 0.0 1.0
+EDIN_T3_DSSD_Y125_E 0.0 1.0
+EDIN_T3_DSSD_Y126_E 0.0 1.0
+EDIN_T3_DSSD_Y127_E 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M3_T/Cal_Str_X_T_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..67ada2c46f4b6fa7b88dabcca667760680a1a643
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_X0_T 0.0 1.0
+EDIN_T3_DSSD_X1_T 0.0 1.0
+EDIN_T3_DSSD_X2_T 0.0 1.0
+EDIN_T3_DSSD_X3_T 0.0 1.0
+EDIN_T3_DSSD_X4_T 0.0 1.0
+EDIN_T3_DSSD_X5_T 0.0 1.0
+EDIN_T3_DSSD_X6_T 0.0 1.0
+EDIN_T3_DSSD_X7_T 0.0 1.0
+EDIN_T3_DSSD_X8_T 0.0 1.0
+EDIN_T3_DSSD_X9_T 0.0 1.0
+EDIN_T3_DSSD_X10_T 0.0 1.0
+EDIN_T3_DSSD_X11_T 0.0 1.0
+EDIN_T3_DSSD_X12_T 0.0 1.0
+EDIN_T3_DSSD_X13_T 0.0 1.0
+EDIN_T3_DSSD_X14_T 0.0 1.0
+EDIN_T3_DSSD_X15_T 0.0 1.0
+EDIN_T3_DSSD_X16_T 0.0 1.0
+EDIN_T3_DSSD_X17_T 0.0 1.0
+EDIN_T3_DSSD_X18_T 0.0 1.0
+EDIN_T3_DSSD_X19_T 0.0 1.0
+EDIN_T3_DSSD_X20_T 0.0 1.0
+EDIN_T3_DSSD_X21_T 0.0 1.0
+EDIN_T3_DSSD_X22_T 0.0 1.0
+EDIN_T3_DSSD_X23_T 0.0 1.0
+EDIN_T3_DSSD_X24_T 0.0 1.0
+EDIN_T3_DSSD_X25_T 0.0 1.0
+EDIN_T3_DSSD_X26_T 0.0 1.0
+EDIN_T3_DSSD_X27_T 0.0 1.0
+EDIN_T3_DSSD_X28_T 0.0 1.0
+EDIN_T3_DSSD_X29_T 0.0 1.0
+EDIN_T3_DSSD_X30_T 0.0 1.0
+EDIN_T3_DSSD_X31_T 0.0 1.0
+EDIN_T3_DSSD_X32_T 0.0 1.0
+EDIN_T3_DSSD_X33_T 0.0 1.0
+EDIN_T3_DSSD_X34_T 0.0 1.0
+EDIN_T3_DSSD_X35_T 0.0 1.0
+EDIN_T3_DSSD_X36_T 0.0 1.0
+EDIN_T3_DSSD_X37_T 0.0 1.0
+EDIN_T3_DSSD_X38_T 0.0 1.0
+EDIN_T3_DSSD_X39_T 0.0 1.0
+EDIN_T3_DSSD_X40_T 0.0 1.0
+EDIN_T3_DSSD_X41_T 0.0 1.0
+EDIN_T3_DSSD_X42_T 0.0 1.0
+EDIN_T3_DSSD_X43_T 0.0 1.0
+EDIN_T3_DSSD_X44_T 0.0 1.0
+EDIN_T3_DSSD_X45_T 0.0 1.0
+EDIN_T3_DSSD_X46_T 0.0 1.0
+EDIN_T3_DSSD_X47_T 0.0 1.0
+EDIN_T3_DSSD_X48_T 0.0 1.0
+EDIN_T3_DSSD_X49_T 0.0 1.0
+EDIN_T3_DSSD_X50_T 0.0 1.0
+EDIN_T3_DSSD_X51_T 0.0 1.0
+EDIN_T3_DSSD_X52_T 0.0 1.0
+EDIN_T3_DSSD_X53_T 0.0 1.0
+EDIN_T3_DSSD_X54_T 0.0 1.0
+EDIN_T3_DSSD_X55_T 0.0 1.0
+EDIN_T3_DSSD_X56_T 0.0 1.0
+EDIN_T3_DSSD_X57_T 0.0 1.0
+EDIN_T3_DSSD_X58_T 0.0 1.0
+EDIN_T3_DSSD_X59_T 0.0 1.0
+EDIN_T3_DSSD_X60_T 0.0 1.0
+EDIN_T3_DSSD_X61_T 0.0 1.0
+EDIN_T3_DSSD_X62_T 0.0 1.0
+EDIN_T3_DSSD_X63_T 0.0 1.0
+EDIN_T3_DSSD_X64_T 0.0 1.0
+EDIN_T3_DSSD_X65_T 0.0 1.0
+EDIN_T3_DSSD_X66_T 0.0 1.0
+EDIN_T3_DSSD_X67_T 0.0 1.0
+EDIN_T3_DSSD_X68_T 0.0 1.0
+EDIN_T3_DSSD_X69_T 0.0 1.0
+EDIN_T3_DSSD_X70_T 0.0 1.0
+EDIN_T3_DSSD_X71_T 0.0 1.0
+EDIN_T3_DSSD_X72_T 0.0 1.0
+EDIN_T3_DSSD_X73_T 0.0 1.0
+EDIN_T3_DSSD_X74_T 0.0 1.0
+EDIN_T3_DSSD_X75_T 0.0 1.0
+EDIN_T3_DSSD_X76_T 0.0 1.0
+EDIN_T3_DSSD_X77_T 0.0 1.0
+EDIN_T3_DSSD_X78_T 0.0 1.0
+EDIN_T3_DSSD_X79_T 0.0 1.0
+EDIN_T3_DSSD_X80_T 0.0 1.0
+EDIN_T3_DSSD_X81_T 0.0 1.0
+EDIN_T3_DSSD_X82_T 0.0 1.0
+EDIN_T3_DSSD_X83_T 0.0 1.0
+EDIN_T3_DSSD_X84_T 0.0 1.0
+EDIN_T3_DSSD_X85_T 0.0 1.0
+EDIN_T3_DSSD_X86_T 0.0 1.0
+EDIN_T3_DSSD_X87_T 0.0 1.0
+EDIN_T3_DSSD_X88_T 0.0 1.0
+EDIN_T3_DSSD_X89_T 0.0 1.0
+EDIN_T3_DSSD_X90_T 0.0 1.0
+EDIN_T3_DSSD_X91_T 0.0 1.0
+EDIN_T3_DSSD_X92_T 0.0 1.0
+EDIN_T3_DSSD_X93_T 0.0 1.0
+EDIN_T3_DSSD_X94_T 0.0 1.0
+EDIN_T3_DSSD_X95_T 0.0 1.0
+EDIN_T3_DSSD_X96_T 0.0 1.0
+EDIN_T3_DSSD_X97_T 0.0 1.0
+EDIN_T3_DSSD_X98_T 0.0 1.0
+EDIN_T3_DSSD_X99_T 0.0 1.0
+EDIN_T3_DSSD_X100_T 0.0 1.0
+EDIN_T3_DSSD_X101_T 0.0 1.0
+EDIN_T3_DSSD_X102_T 0.0 1.0
+EDIN_T3_DSSD_X103_T 0.0 1.0
+EDIN_T3_DSSD_X104_T 0.0 1.0
+EDIN_T3_DSSD_X105_T 0.0 1.0
+EDIN_T3_DSSD_X106_T 0.0 1.0
+EDIN_T3_DSSD_X107_T 0.0 1.0
+EDIN_T3_DSSD_X108_T 0.0 1.0
+EDIN_T3_DSSD_X109_T 0.0 1.0
+EDIN_T3_DSSD_X110_T 0.0 1.0
+EDIN_T3_DSSD_X111_T 0.0 1.0
+EDIN_T3_DSSD_X112_T 0.0 1.0
+EDIN_T3_DSSD_X113_T 0.0 1.0
+EDIN_T3_DSSD_X114_T 0.0 1.0
+EDIN_T3_DSSD_X115_T 0.0 1.0
+EDIN_T3_DSSD_X116_T 0.0 1.0
+EDIN_T3_DSSD_X117_T 0.0 1.0
+EDIN_T3_DSSD_X118_T 0.0 1.0
+EDIN_T3_DSSD_X119_T 0.0 1.0
+EDIN_T3_DSSD_X120_T 0.0 1.0
+EDIN_T3_DSSD_X121_T 0.0 1.0
+EDIN_T3_DSSD_X122_T 0.0 1.0
+EDIN_T3_DSSD_X123_T 0.0 1.0
+EDIN_T3_DSSD_X124_T 0.0 1.0
+EDIN_T3_DSSD_X125_T 0.0 1.0
+EDIN_T3_DSSD_X126_T 0.0 1.0
+EDIN_T3_DSSD_X127_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..fcf2c872677050893aca7c1509cd78c9585f6d94
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_Y0_T 0.0 1.0
+EDIN_T3_DSSD_Y1_T 0.0 1.0
+EDIN_T3_DSSD_Y2_T 0.0 1.0
+EDIN_T3_DSSD_Y3_T 0.0 1.0
+EDIN_T3_DSSD_Y4_T 0.0 1.0
+EDIN_T3_DSSD_Y5_T 0.0 1.0
+EDIN_T3_DSSD_Y6_T 0.0 1.0
+EDIN_T3_DSSD_Y7_T 0.0 1.0
+EDIN_T3_DSSD_Y8_T 0.0 1.0
+EDIN_T3_DSSD_Y9_T 0.0 1.0
+EDIN_T3_DSSD_Y10_T 0.0 1.0
+EDIN_T3_DSSD_Y11_T 0.0 1.0
+EDIN_T3_DSSD_Y12_T 0.0 1.0
+EDIN_T3_DSSD_Y13_T 0.0 1.0
+EDIN_T3_DSSD_Y14_T 0.0 1.0
+EDIN_T3_DSSD_Y15_T 0.0 1.0
+EDIN_T3_DSSD_Y16_T 0.0 1.0
+EDIN_T3_DSSD_Y17_T 0.0 1.0
+EDIN_T3_DSSD_Y18_T 0.0 1.0
+EDIN_T3_DSSD_Y19_T 0.0 1.0
+EDIN_T3_DSSD_Y20_T 0.0 1.0
+EDIN_T3_DSSD_Y21_T 0.0 1.0
+EDIN_T3_DSSD_Y22_T 0.0 1.0
+EDIN_T3_DSSD_Y23_T 0.0 1.0
+EDIN_T3_DSSD_Y24_T 0.0 1.0
+EDIN_T3_DSSD_Y25_T 0.0 1.0
+EDIN_T3_DSSD_Y26_T 0.0 1.0
+EDIN_T3_DSSD_Y27_T 0.0 1.0
+EDIN_T3_DSSD_Y28_T 0.0 1.0
+EDIN_T3_DSSD_Y29_T 0.0 1.0
+EDIN_T3_DSSD_Y30_T 0.0 1.0
+EDIN_T3_DSSD_Y31_T 0.0 1.0
+EDIN_T3_DSSD_Y32_T 0.0 1.0
+EDIN_T3_DSSD_Y33_T 0.0 1.0
+EDIN_T3_DSSD_Y34_T 0.0 1.0
+EDIN_T3_DSSD_Y35_T 0.0 1.0
+EDIN_T3_DSSD_Y36_T 0.0 1.0
+EDIN_T3_DSSD_Y37_T 0.0 1.0
+EDIN_T3_DSSD_Y38_T 0.0 1.0
+EDIN_T3_DSSD_Y39_T 0.0 1.0
+EDIN_T3_DSSD_Y40_T 0.0 1.0
+EDIN_T3_DSSD_Y41_T 0.0 1.0
+EDIN_T3_DSSD_Y42_T 0.0 1.0
+EDIN_T3_DSSD_Y43_T 0.0 1.0
+EDIN_T3_DSSD_Y44_T 0.0 1.0
+EDIN_T3_DSSD_Y45_T 0.0 1.0
+EDIN_T3_DSSD_Y46_T 0.0 1.0
+EDIN_T3_DSSD_Y47_T 0.0 1.0
+EDIN_T3_DSSD_Y48_T 0.0 1.0
+EDIN_T3_DSSD_Y49_T 0.0 1.0
+EDIN_T3_DSSD_Y50_T 0.0 1.0
+EDIN_T3_DSSD_Y51_T 0.0 1.0
+EDIN_T3_DSSD_Y52_T 0.0 1.0
+EDIN_T3_DSSD_Y53_T 0.0 1.0
+EDIN_T3_DSSD_Y54_T 0.0 1.0
+EDIN_T3_DSSD_Y55_T 0.0 1.0
+EDIN_T3_DSSD_Y56_T 0.0 1.0
+EDIN_T3_DSSD_Y57_T 0.0 1.0
+EDIN_T3_DSSD_Y58_T 0.0 1.0
+EDIN_T3_DSSD_Y59_T 0.0 1.0
+EDIN_T3_DSSD_Y60_T 0.0 1.0
+EDIN_T3_DSSD_Y61_T 0.0 1.0
+EDIN_T3_DSSD_Y62_T 0.0 1.0
+EDIN_T3_DSSD_Y63_T 0.0 1.0
+EDIN_T3_DSSD_Y64_T 0.0 1.0
+EDIN_T3_DSSD_Y65_T 0.0 1.0
+EDIN_T3_DSSD_Y66_T 0.0 1.0
+EDIN_T3_DSSD_Y67_T 0.0 1.0
+EDIN_T3_DSSD_Y68_T 0.0 1.0
+EDIN_T3_DSSD_Y69_T 0.0 1.0
+EDIN_T3_DSSD_Y70_T 0.0 1.0
+EDIN_T3_DSSD_Y71_T 0.0 1.0
+EDIN_T3_DSSD_Y72_T 0.0 1.0
+EDIN_T3_DSSD_Y73_T 0.0 1.0
+EDIN_T3_DSSD_Y74_T 0.0 1.0
+EDIN_T3_DSSD_Y75_T 0.0 1.0
+EDIN_T3_DSSD_Y76_T 0.0 1.0
+EDIN_T3_DSSD_Y77_T 0.0 1.0
+EDIN_T3_DSSD_Y78_T 0.0 1.0
+EDIN_T3_DSSD_Y79_T 0.0 1.0
+EDIN_T3_DSSD_Y80_T 0.0 1.0
+EDIN_T3_DSSD_Y81_T 0.0 1.0
+EDIN_T3_DSSD_Y82_T 0.0 1.0
+EDIN_T3_DSSD_Y83_T 0.0 1.0
+EDIN_T3_DSSD_Y84_T 0.0 1.0
+EDIN_T3_DSSD_Y85_T 0.0 1.0
+EDIN_T3_DSSD_Y86_T 0.0 1.0
+EDIN_T3_DSSD_Y87_T 0.0 1.0
+EDIN_T3_DSSD_Y88_T 0.0 1.0
+EDIN_T3_DSSD_Y89_T 0.0 1.0
+EDIN_T3_DSSD_Y90_T 0.0 1.0
+EDIN_T3_DSSD_Y91_T 0.0 1.0
+EDIN_T3_DSSD_Y92_T 0.0 1.0
+EDIN_T3_DSSD_Y93_T 0.0 1.0
+EDIN_T3_DSSD_Y94_T 0.0 1.0
+EDIN_T3_DSSD_Y95_T 0.0 1.0
+EDIN_T3_DSSD_Y96_T 0.0 1.0
+EDIN_T3_DSSD_Y97_T 0.0 1.0
+EDIN_T3_DSSD_Y98_T 0.0 1.0
+EDIN_T3_DSSD_Y99_T 0.0 1.0
+EDIN_T3_DSSD_Y100_T 0.0 1.0
+EDIN_T3_DSSD_Y101_T 0.0 1.0
+EDIN_T3_DSSD_Y102_T 0.0 1.0
+EDIN_T3_DSSD_Y103_T 0.0 1.0
+EDIN_T3_DSSD_Y104_T 0.0 1.0
+EDIN_T3_DSSD_Y105_T 0.0 1.0
+EDIN_T3_DSSD_Y106_T 0.0 1.0
+EDIN_T3_DSSD_Y107_T 0.0 1.0
+EDIN_T3_DSSD_Y108_T 0.0 1.0
+EDIN_T3_DSSD_Y109_T 0.0 1.0
+EDIN_T3_DSSD_Y110_T 0.0 1.0
+EDIN_T3_DSSD_Y111_T 0.0 1.0
+EDIN_T3_DSSD_Y112_T 0.0 1.0
+EDIN_T3_DSSD_Y113_T 0.0 1.0
+EDIN_T3_DSSD_Y114_T 0.0 1.0
+EDIN_T3_DSSD_Y115_T 0.0 1.0
+EDIN_T3_DSSD_Y116_T 0.0 1.0
+EDIN_T3_DSSD_Y117_T 0.0 1.0
+EDIN_T3_DSSD_Y118_T 0.0 1.0
+EDIN_T3_DSSD_Y119_T 0.0 1.0
+EDIN_T3_DSSD_Y120_T 0.0 1.0
+EDIN_T3_DSSD_Y121_T 0.0 1.0
+EDIN_T3_DSSD_Y122_T 0.0 1.0
+EDIN_T3_DSSD_Y123_T 0.0 1.0
+EDIN_T3_DSSD_Y124_T 0.0 1.0
+EDIN_T3_DSSD_Y125_T 0.0 1.0
+EDIN_T3_DSSD_Y126_T 0.0 1.0
+EDIN_T3_DSSD_Y127_T 0.0 1.0
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/.DS_Store b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..18187193b9adbafae392d0563b75c3ad7c8e4415
Binary files /dev/null and b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/.DS_Store differ
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/.root_hist b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..26bba7ed330471cd0bf9199205dbefbd3ba696f7
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/.root_hist
@@ -0,0 +1,35 @@
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0012","MUST2")
+.ls
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0012","MUST2")
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0012","MUST2")
+.q
+.L TimeCalibrator.C+
+TimeCalibrator("r0012","X")
+.q
+.L TimeCalibrator.C+
+TimeCalibrator("r0013","Y")
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0013","MUST2")
+TimeCalibrator("r0013","Y")
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0015","MUST2")
+.L TimeCalibrator.C+
+TimeCalibrator("r0015","X",32,"MUST2",3,3)
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0016","MUST2")
+.L TimeCalibrator.C+
+TimeCalibrator("r0016","Y",32,"MUST2",3,3)
+ExtractMust2Histos("r0017","MUST2")
+TimeCalibrator("r0017","Y",32,"MUST2",3,3)
+TimeCalibrator("r0017","X",32,"MUST2",4,4)
+ExtractMust2Histos("r0018","MUST2")
+TimeCalibrator("r0018","Y",32,"MUST2",4,4)
+.q
+.q
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/.DS_Store b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/.DS_Store differ
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2006456bd1355a61abcd41fe2b8e83596625fc3d
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+EDIN_T0_DSSD_X1_T 926.099 -0.111982
+EDIN_T0_DSSD_X2_T 869.874 -0.105192
+EDIN_T0_DSSD_X3_T 867.818 -0.104955
+EDIN_T0_DSSD_X4_T 937.107 -0.113338
+EDIN_T0_DSSD_X5_T 887.963 -0.107397
+EDIN_T0_DSSD_X6_T 935.505 -0.11314
+EDIN_T0_DSSD_X7_T 876.58 -0.106033
+EDIN_T0_DSSD_X8_T 932.855 -0.112807
+EDIN_T0_DSSD_X9_T 878.364 -0.106227
+EDIN_T0_DSSD_X10_T 925.852 -0.111943
+EDIN_T0_DSSD_X11_T 892.804 -0.108005
+EDIN_T0_DSSD_X12_T 921.22 -0.111378
+EDIN_T0_DSSD_X13_T 894.475 -0.108195
+EDIN_T0_DSSD_X14_T 913.548 -0.110456
+EDIN_T0_DSSD_X15_T 892.476 -0.107979
+EDIN_T0_DSSD_X16_T 922.196 -0.111499
+EDIN_T0_DSSD_X17_T 895.157 -0.108302
+EDIN_T0_DSSD_X18_T 913.814 -0.110458
+EDIN_T0_DSSD_X19_T 895.419 -0.108334
+EDIN_T0_DSSD_X20_T 909.716 -0.109955
+EDIN_T0_DSSD_X21_T 894.752 -0.108243
+EDIN_T0_DSSD_X22_T 907.059 -0.109652
+EDIN_T0_DSSD_X23_T 901.721 -0.109095
+EDIN_T0_DSSD_X24_T 903.944 -0.109295
+EDIN_T0_DSSD_X25_T 896.865 -0.108505
+EDIN_T0_DSSD_X26_T 903.08 -0.109464
+EDIN_T0_DSSD_X27_T 891.69 -0.107877
+EDIN_T0_DSSD_X28_T 890.381 -0.107622
+EDIN_T0_DSSD_X29_T 894.258 -0.108187
+EDIN_T0_DSSD_X30_T 884.86 -0.106942
+EDIN_T0_DSSD_X31_T 881.631 -0.106556
+EDIN_T0_DSSD_X32_T 894.901 -0.10826
+EDIN_T0_DSSD_X33_T 991.094 -0.119947
+EDIN_T0_DSSD_X34_T 943.498 -0.114176
+EDIN_T0_DSSD_X35_T 954.542 -0.115529
+EDIN_T0_DSSD_X36_T 995.135 -0.12045
+EDIN_T0_DSSD_X37_T 955.481 -0.115657
+EDIN_T0_DSSD_X38_T 998.458 -0.120851
+EDIN_T0_DSSD_X39_T 969.726 -0.117409
+EDIN_T0_DSSD_X40_T 1000.07 -0.121021
+EDIN_T0_DSSD_X41_T 969.528 -0.117367
+EDIN_T0_DSSD_X42_T 1004.27 -0.121545
+EDIN_T0_DSSD_X43_T 969.351 -0.117353
+EDIN_T0_DSSD_X44_T 1000.4 -0.121057
+EDIN_T0_DSSD_X45_T 974.621 -0.117969
+EDIN_T0_DSSD_X46_T 998.041 -0.120777
+EDIN_T0_DSSD_X47_T 976.758 -0.118246
+EDIN_T0_DSSD_X48_T 987.033 -0.119427
+EDIN_T0_DSSD_X49_T 975.237 -0.118065
+EDIN_T0_DSSD_X50_T 991.826 -0.120005
+EDIN_T0_DSSD_X51_T 979.286 -0.118546
+EDIN_T0_DSSD_X52_T 990.352 -0.119845
+EDIN_T0_DSSD_X53_T 984.065 -0.119138
+EDIN_T0_DSSD_X54_T 979.666 -0.118555
+EDIN_T0_DSSD_X55_T 983.533 -0.119075
+EDIN_T0_DSSD_X56_T 985.306 -0.119233
+EDIN_T0_DSSD_X57_T 991.106 -0.119996
+EDIN_T0_DSSD_X58_T 976.043 -0.118125
+EDIN_T0_DSSD_X59_T 976.115 -0.118174
+EDIN_T0_DSSD_X60_T 975.677 -0.118044
+EDIN_T0_DSSD_X61_T 987.246 -0.119531
+EDIN_T0_DSSD_X62_T 963.333 -0.116527
+EDIN_T0_DSSD_X63_T 952.87 -0.115275
+EDIN_T0_DSSD_X64_T 978.41 -0.118448
+EDIN_T0_DSSD_X65_T 919.481 -0.111151
+EDIN_T0_DSSD_X66_T 868.319 -0.105013
+EDIN_T0_DSSD_X67_T 877.769 -0.106169
+EDIN_T0_DSSD_X68_T 914.799 -0.110613
+EDIN_T0_DSSD_X69_T 878.126 -0.106212
+EDIN_T0_DSSD_X70_T 919.575 -0.11118
+EDIN_T0_DSSD_X71_T 883.907 -0.106905
+EDIN_T0_DSSD_X72_T 917.725 -0.110972
+EDIN_T0_DSSD_X73_T 893.227 -0.108043
+EDIN_T0_DSSD_X74_T 914.821 -0.110604
+EDIN_T0_DSSD_X75_T 900.551 -0.108935
+EDIN_T0_DSSD_X76_T 922.429 -0.111529
+EDIN_T0_DSSD_X77_T 896.432 -0.108442
+EDIN_T0_DSSD_X78_T 914.168 -0.1105
+EDIN_T0_DSSD_X79_T 894.569 -0.108194
+EDIN_T0_DSSD_X80_T 908.954 -0.109898
+EDIN_T0_DSSD_X81_T 903.782 -0.109336
+EDIN_T0_DSSD_X82_T 914.714 -0.110579
+EDIN_T0_DSSD_X83_T 901.487 -0.109053
+EDIN_T0_DSSD_X84_T 913.375 -0.110413
+EDIN_T0_DSSD_X85_T 907.332 -0.109771
+EDIN_T0_DSSD_X86_T 898.889 -0.108648
+EDIN_T0_DSSD_X87_T 904.852 -0.109449
+EDIN_T0_DSSD_X88_T 905.323 -0.109423
+EDIN_T0_DSSD_X89_T 902.075 -0.109128
+EDIN_T0_DSSD_X90_T 901.831 -0.109007
+EDIN_T0_DSSD_X91_T 906.169 -0.109641
+EDIN_T0_DSSD_X92_T 891.715 -0.107782
+EDIN_T0_DSSD_X93_T 902.566 -0.109177
+EDIN_T0_DSSD_X94_T 891.484 -0.107748
+EDIN_T0_DSSD_X95_T 888.355 -0.107364
+EDIN_T0_DSSD_X96_T 904.912 -0.109478
+EDIN_T0_DSSD_X97_T 965.16 -0.116744
+EDIN_T0_DSSD_X98_T 957.155 -0.115846
+EDIN_T0_DSSD_X99_T 962.206 -0.11646
+EDIN_T0_DSSD_X100_T 974.188 -0.117868
+EDIN_T0_DSSD_X101_T 971.895 -0.117644
+EDIN_T0_DSSD_X102_T 960.173 -0.116152
+EDIN_T0_DSSD_X103_T 973.151 -0.117791
+EDIN_T0_DSSD_X104_T 961.407 -0.116299
+EDIN_T0_DSSD_X105_T 976.443 -0.118174
+EDIN_T0_DSSD_X106_T 961.03 -0.11625
+EDIN_T0_DSSD_X107_T 989.114 -0.119717
+EDIN_T0_DSSD_X108_T 964.341 -0.11664
+EDIN_T0_DSSD_X109_T 993.741 -0.120284
+EDIN_T0_DSSD_X110_T 956.784 -0.115728
+EDIN_T0_DSSD_X111_T 994.917 -0.120426
+EDIN_T0_DSSD_X112_T 949.288 -0.114813
+EDIN_T0_DSSD_X113_T 1005.69 -0.121763
+EDIN_T0_DSSD_X114_T 942.586 -0.113978
+EDIN_T0_DSSD_X115_T 986.82 -0.119445
+EDIN_T0_DSSD_X116_T 949.396 -0.114818
+EDIN_T0_DSSD_X117_T 1003.89 -0.121535
+EDIN_T0_DSSD_X118_T 941.329 -0.113819
+EDIN_T0_DSSD_X119_T 994.316 -0.120381
+EDIN_T0_DSSD_X120_T 930.333 -0.112468
+EDIN_T0_DSSD_X121_T 1001.66 -0.121262
+EDIN_T0_DSSD_X122_T 936.88 -0.113281
+EDIN_T0_DSSD_X123_T 1005.75 -0.121766
+EDIN_T0_DSSD_X124_T 924.498 -0.111774
+EDIN_T0_DSSD_X125_T 996.228 -0.120615
+EDIN_T0_DSSD_X126_T 932.405 -0.112746
+EDIN_T0_DSSD_X127_T 922.493 -0.111515
+EDIN_T0_DSSD_X128_T 999.032 -0.120952
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..424fc6641f5ca9e3867e92ec2a43b0fcde60f557
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+EDIN_T0_DSSD_Y1_T 983.277 -0.118761
+EDIN_T0_DSSD_Y2_T 938.109 -0.113175
+EDIN_T0_DSSD_Y3_T 947.448 -0.114309
+EDIN_T0_DSSD_Y4_T 976.65 -0.117944
+EDIN_T0_DSSD_Y5_T 956.035 -0.115351
+EDIN_T0_DSSD_Y6_T 974.115 -0.117633
+EDIN_T0_DSSD_Y7_T 947.978 -0.11436
+EDIN_T0_DSSD_Y8_T 978.32 -0.11814
+EDIN_T0_DSSD_Y9_T 950.631 -0.114686
+EDIN_T0_DSSD_Y10_T 980.648 -0.118398
+EDIN_T0_DSSD_Y11_T 953.963 -0.115103
+EDIN_T0_DSSD_Y12_T 974.23 -0.117632
+EDIN_T0_DSSD_Y13_T 959.973 -0.115832
+EDIN_T0_DSSD_Y14_T 971.457 -0.117316
+EDIN_T0_DSSD_Y15_T 959.848 -0.115841
+EDIN_T0_DSSD_Y16_T 975.83 -0.117842
+EDIN_T0_DSSD_Y17_T 964.52 -0.116398
+EDIN_T0_DSSD_Y18_T 969.183 -0.117018
+EDIN_T0_DSSD_Y19_T 962.989 -0.116195
+EDIN_T0_DSSD_Y20_T 971.85 -0.117339
+EDIN_T0_DSSD_Y21_T 959.157 -0.115516
+EDIN_T0_DSSD_Y22_T 973.261 -0.117481
+EDIN_T0_DSSD_Y23_T 973.941 -0.117562
+EDIN_T0_DSSD_Y24_T 957.491 -0.115563
+EDIN_T0_DSSD_Y25_T 976.25 -0.117834
+EDIN_T0_DSSD_Y26_T 962.012 -0.116104
+EDIN_T0_DSSD_Y27_T 971.294 -0.11722
+EDIN_T0_DSSD_Y28_T 944.005 -0.113921
+EDIN_T0_DSSD_Y29_T 974.292 -0.11759
+EDIN_T0_DSSD_Y30_T 944.925 -0.114033
+EDIN_T0_DSSD_Y32_T 968.991 -0.116928
+EDIN_T0_DSSD_Y33_T 903.665 -0.109056
+EDIN_T0_DSSD_Y34_T 859.176 -0.103507
+EDIN_T0_DSSD_Y35_T 870.909 -0.104888
+EDIN_T0_DSSD_Y36_T 915.646 -0.110513
+EDIN_T0_DSSD_Y37_T 866.307 -0.104347
+EDIN_T0_DSSD_Y38_T 905.186 -0.10924
+EDIN_T0_DSSD_Y39_T 883.056 -0.106391
+EDIN_T0_DSSD_Y40_T 910.71 -0.109895
+EDIN_T0_DSSD_Y41_T 885.647 -0.106718
+EDIN_T0_DSSD_Y42_T 913.208 -0.110196
+EDIN_T0_DSSD_Y43_T 886.974 -0.106878
+EDIN_T0_DSSD_Y44_T 902.655 -0.108924
+EDIN_T0_DSSD_Y45_T 883.169 -0.106441
+EDIN_T0_DSSD_Y46_T 903.864 -0.109045
+EDIN_T0_DSSD_Y47_T 891.212 -0.107426
+EDIN_T0_DSSD_Y48_T 905.49 -0.109285
+EDIN_T0_DSSD_Y49_T 892.785 -0.107608
+EDIN_T0_DSSD_Y50_T 908.071 -0.109567
+EDIN_T0_DSSD_Y51_T 897.104 -0.108136
+EDIN_T0_DSSD_Y52_T 889.86 -0.107347
+EDIN_T0_DSSD_Y53_T 904.326 -0.109012
+EDIN_T0_DSSD_Y54_T 889.448 -0.107278
+EDIN_T0_DSSD_Y55_T 903.135 -0.108611
+EDIN_T0_DSSD_Y56_T 889.979 -0.107363
+EDIN_T0_DSSD_Y57_T 901.746 -0.108719
+EDIN_T0_DSSD_Y58_T 878.496 -0.105955
+EDIN_T0_DSSD_Y59_T 908.712 -0.109581
+EDIN_T0_DSSD_Y60_T 888.383 -0.107174
+EDIN_T0_DSSD_Y61_T 903.269 -0.108895
+EDIN_T0_DSSD_Y62_T 871.608 -0.105113
+EDIN_T0_DSSD_Y63_T 871.769 -0.105131
+EDIN_T0_DSSD_Y64_T 908.687 -0.109543
+EDIN_T0_DSSD_Y65_T 1001.6 -0.121097
+EDIN_T0_DSSD_Y66_T 970.056 -0.117145
+EDIN_T0_DSSD_Y67_T 986.117 -0.119118
+EDIN_T0_DSSD_Y68_T 994.499 -0.120247
+EDIN_T0_DSSD_Y69_T 981.373 -0.118534
+EDIN_T0_DSSD_Y70_T 997.331 -0.120579
+EDIN_T0_DSSD_Y71_T 995.859 -0.12031
+EDIN_T0_DSSD_Y72_T 995.389 -0.120327
+EDIN_T0_DSSD_Y73_T 999.672 -0.120777
+EDIN_T0_DSSD_Y74_T 1000.31 -0.120924
+EDIN_T0_DSSD_Y75_T 1002.22 -0.121085
+EDIN_T0_DSSD_Y76_T 989.884 -0.119656
+EDIN_T0_DSSD_Y77_T 998.019 -0.120569
+EDIN_T0_DSSD_Y78_T 981.143 -0.118591
+EDIN_T0_DSSD_Y79_T 1008.32 -0.121839
+EDIN_T0_DSSD_Y80_T 989.544 -0.119628
+EDIN_T0_DSSD_Y81_T 1004.28 -0.121339
+EDIN_T0_DSSD_Y82_T 985.816 -0.119156
+EDIN_T0_DSSD_Y83_T 1014.52 -0.122592
+EDIN_T0_DSSD_Y84_T 982.64 -0.118781
+EDIN_T0_DSSD_Y85_T 1025.22 -0.123897
+EDIN_T0_DSSD_Y86_T 983.206 -0.118825
+EDIN_T0_DSSD_Y87_T 1024.79 -0.123866
+EDIN_T0_DSSD_Y88_T 979.506 -0.118378
+EDIN_T0_DSSD_Y89_T 1019.8 -0.123256
+EDIN_T0_DSSD_Y90_T 976.674 -0.118028
+EDIN_T0_DSSD_Y91_T 1024.3 -0.123786
+EDIN_T0_DSSD_Y92_T 976.574 -0.118012
+EDIN_T0_DSSD_Y93_T 1021.08 -0.123408
+EDIN_T0_DSSD_Y94_T 970.82 -0.117302
+EDIN_T0_DSSD_Y95_T 963.864 -0.116469
+EDIN_T0_DSSD_Y96_T 1016.6 -0.122879
+EDIN_T0_DSSD_Y97_T 917.078 -0.110803
+EDIN_T0_DSSD_Y98_T 891.216 -0.107535
+EDIN_T0_DSSD_Y99_T 899.129 -0.108466
+EDIN_T0_DSSD_Y100_T 915.137 -0.110572
+EDIN_T0_DSSD_Y101_T 898.718 -0.108438
+EDIN_T0_DSSD_Y102_T 909.547 -0.109894
+EDIN_T0_DSSD_Y103_T 904.591 -0.109158
+EDIN_T0_DSSD_Y104_T 913.859 -0.110421
+EDIN_T0_DSSD_Y105_T 916.06 -0.110566
+EDIN_T0_DSSD_Y106_T 914.704 -0.11051
+EDIN_T0_DSSD_Y107_T 909.441 -0.109757
+EDIN_T0_DSSD_Y108_T 910.27 -0.109981
+EDIN_T0_DSSD_Y109_T 929.211 -0.112167
+EDIN_T0_DSSD_Y110_T 914.99 -0.110544
+EDIN_T0_DSSD_Y111_T 920.724 -0.111146
+EDIN_T0_DSSD_Y112_T 901.739 -0.108916
+EDIN_T0_DSSD_Y113_T 931.107 -0.112407
+EDIN_T0_DSSD_Y114_T 907.124 -0.10959
+EDIN_T0_DSSD_Y115_T 930.357 -0.112337
+EDIN_T0_DSSD_Y116_T 895.168 -0.108105
+EDIN_T0_DSSD_Y117_T 932.102 -0.112539
+EDIN_T0_DSSD_Y118_T 890.686 -0.10757
+EDIN_T0_DSSD_Y119_T 935.662 -0.112978
+EDIN_T0_DSSD_Y120_T 891.724 -0.107707
+EDIN_T0_DSSD_Y121_T 930.191 -0.112316
+EDIN_T0_DSSD_Y122_T 894.625 -0.108041
+EDIN_T0_DSSD_Y123_T 929.054 -0.112192
+EDIN_T0_DSSD_Y124_T 878.021 -0.106028
+EDIN_T0_DSSD_Y125_T 926.166 -0.111821
+EDIN_T0_DSSD_Y126_T 878.942 -0.106139
+EDIN_T0_DSSD_Y127_T 882.25 -0.106544
+EDIN_T0_DSSD_Y128_T 929.013 -0.112162
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0ffcc662b4d8c9e4a2b933405eb53eaeda853faa
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+EDIN_T1_DSSD_X1_T 916.574 -0.110777
+EDIN_T1_DSSD_X2_T 878.025 -0.106165
+EDIN_T1_DSSD_X3_T 877.927 -0.10618
+EDIN_T1_DSSD_X4_T 908.514 -0.109791
+EDIN_T1_DSSD_X5_T 893.294 -0.108064
+EDIN_T1_DSSD_X6_T 909.067 -0.109867
+EDIN_T1_DSSD_X7_T 876.051 -0.105941
+EDIN_T1_DSSD_X8_T 917.556 -0.110894
+EDIN_T1_DSSD_X9_T 893.827 -0.108105
+EDIN_T1_DSSD_X10_T 904.646 -0.109308
+EDIN_T1_DSSD_X11_T 899.59 -0.108823
+EDIN_T1_DSSD_X12_T 912.271 -0.110244
+EDIN_T1_DSSD_X13_T 891.87 -0.107861
+EDIN_T1_DSSD_X14_T 903.537 -0.10916
+EDIN_T1_DSSD_X15_T 896.377 -0.10842
+EDIN_T1_DSSD_X16_T 907.775 -0.1097
+EDIN_T1_DSSD_X17_T 899.273 -0.108779
+EDIN_T1_DSSD_X18_T 901.392 -0.108878
+EDIN_T1_DSSD_X19_T 898.912 -0.108754
+EDIN_T1_DSSD_X20_T 895.39 -0.10819
+EDIN_T1_DSSD_X21_T 907.617 -0.109783
+EDIN_T1_DSSD_X22_T 891.534 -0.107699
+EDIN_T1_DSSD_X23_T 899.789 -0.108855
+EDIN_T1_DSSD_X24_T 891.233 -0.107685
+EDIN_T1_DSSD_X25_T 909.299 -0.110019
+EDIN_T1_DSSD_X26_T 888.452 -0.107338
+EDIN_T1_DSSD_X27_T 907.769 -0.109854
+EDIN_T1_DSSD_X28_T 885.913 -0.107015
+EDIN_T1_DSSD_X29_T 905.232 -0.109528
+EDIN_T1_DSSD_X30_T 873.224 -0.105455
+EDIN_T1_DSSD_X31_T 868.163 -0.104838
+EDIN_T1_DSSD_X32_T 909.577 -0.110055
+EDIN_T1_DSSD_X33_T 984.794 -0.119148
+EDIN_T1_DSSD_X34_T 928.571 -0.11232
+EDIN_T1_DSSD_X35_T 942.493 -0.114015
+EDIN_T1_DSSD_X36_T 977.151 -0.118198
+EDIN_T1_DSSD_X37_T 944.985 -0.114341
+EDIN_T1_DSSD_X38_T 978.26 -0.118324
+EDIN_T1_DSSD_X39_T 956.226 -0.115712
+EDIN_T1_DSSD_X40_T 981.073 -0.118677
+EDIN_T1_DSSD_X41_T 956.679 -0.115744
+EDIN_T1_DSSD_X42_T 977.242 -0.11821
+EDIN_T1_DSSD_X43_T 958.458 -0.115962
+EDIN_T1_DSSD_X44_T 973.502 -0.117737
+EDIN_T1_DSSD_X45_T 971.702 -0.117589
+EDIN_T1_DSSD_X46_T 974.918 -0.117923
+EDIN_T1_DSSD_X47_T 966.768 -0.116998
+EDIN_T1_DSSD_X48_T 971.664 -0.117531
+EDIN_T1_DSSD_X49_T 970.872 -0.117498
+EDIN_T1_DSSD_X50_T 973.476 -0.117739
+EDIN_T1_DSSD_X51_T 979.817 -0.118577
+EDIN_T1_DSSD_X52_T 957.223 -0.115762
+EDIN_T1_DSSD_X53_T 976.301 -0.118143
+EDIN_T1_DSSD_X54_T 967.911 -0.117052
+EDIN_T1_DSSD_X55_T 975.435 -0.118071
+EDIN_T1_DSSD_X56_T 954.686 -0.115464
+EDIN_T1_DSSD_X57_T 987.534 -0.11954
+EDIN_T1_DSSD_X58_T 946.29 -0.114439
+EDIN_T1_DSSD_X59_T 988.145 -0.119597
+EDIN_T1_DSSD_X60_T 948.76 -0.114738
+EDIN_T1_DSSD_X61_T 985.177 -0.119236
+EDIN_T1_DSSD_X62_T 947.862 -0.114612
+EDIN_T1_DSSD_X63_T 924.661 -0.111777
+EDIN_T1_DSSD_X64_T 984.559 -0.119179
+EDIN_T1_DSSD_X65_T 928.424 -0.111864
+EDIN_T1_DSSD_X66_T 892.824 -0.107613
+EDIN_T1_DSSD_X67_T 890.901 -0.107373
+EDIN_T1_DSSD_X68_T 934.329 -0.112614
+EDIN_T1_DSSD_X69_T 894.556 -0.107838
+EDIN_T1_DSSD_X70_T 931.059 -0.112193
+EDIN_T1_DSSD_X71_T 905.994 -0.109224
+EDIN_T1_DSSD_X72_T 925.186 -0.111483
+EDIN_T1_DSSD_X73_T 905.741 -0.1092
+EDIN_T1_DSSD_X74_T 927.829 -0.111775
+EDIN_T1_DSSD_X75_T 910.629 -0.109791
+EDIN_T1_DSSD_X76_T 932.559 -0.11236
+EDIN_T1_DSSD_X77_T 906.206 -0.109268
+EDIN_T1_DSSD_X78_T 931.448 -0.112226
+EDIN_T1_DSSD_X79_T 921.692 -0.111151
+EDIN_T1_DSSD_X80_T 923.868 -0.111325
+EDIN_T1_DSSD_X81_T 922.784 -0.11128
+EDIN_T1_DSSD_X82_T 918.363 -0.110659
+EDIN_T1_DSSD_X83_T 924.5 -0.111467
+EDIN_T1_DSSD_X84_T 935.93 -0.112781
+EDIN_T1_DSSD_X85_T 928.983 -0.112035
+EDIN_T1_DSSD_X86_T 923.812 -0.111304
+EDIN_T1_DSSD_X87_T 924.661 -0.111519
+EDIN_T1_DSSD_X88_T 929.323 -0.111977
+EDIN_T1_DSSD_X89_T 925.485 -0.111616
+EDIN_T1_DSSD_X90_T 914.468 -0.110136
+EDIN_T1_DSSD_X91_T 917.32 -0.110627
+EDIN_T1_DSSD_X92_T 908.74 -0.10946
+EDIN_T1_DSSD_X93_T 920.078 -0.110941
+EDIN_T1_DSSD_X94_T 901.745 -0.108567
+EDIN_T1_DSSD_X95_T 900.671 -0.108476
+EDIN_T1_DSSD_X96_T 926.646 -0.11176
+EDIN_T1_DSSD_X97_T 1008.1 -0.12163
+EDIN_T1_DSSD_X98_T 951.079 -0.114723
+EDIN_T1_DSSD_X99_T 952.897 -0.114949
+EDIN_T1_DSSD_X100_T 1019.96 -0.123096
+EDIN_T1_DSSD_X101_T 966.461 -0.116629
+EDIN_T1_DSSD_X102_T 1020.31 -0.123127
+EDIN_T1_DSSD_X103_T 965.985 -0.116557
+EDIN_T1_DSSD_X104_T 1017.49 -0.12279
+EDIN_T1_DSSD_X105_T 968.322 -0.116827
+EDIN_T1_DSSD_X106_T 1018.04 -0.12282
+EDIN_T1_DSSD_X107_T 976.11 -0.117811
+EDIN_T1_DSSD_X108_T 1011.77 -0.122082
+EDIN_T1_DSSD_X109_T 975.867 -0.117758
+EDIN_T1_DSSD_X110_T 1016.22 -0.12261
+EDIN_T1_DSSD_X111_T 981.064 -0.118392
+EDIN_T1_DSSD_X112_T 1013.91 -0.122345
+EDIN_T1_DSSD_X113_T 978.32 -0.118063
+EDIN_T1_DSSD_X114_T 999.416 -0.12057
+EDIN_T1_DSSD_X115_T 992.972 -0.119853
+EDIN_T1_DSSD_X116_T 1007.52 -0.121554
+EDIN_T1_DSSD_X117_T 989.034 -0.119377
+EDIN_T1_DSSD_X118_T 1006.21 -0.121389
+EDIN_T1_DSSD_X119_T 987.234 -0.119141
+EDIN_T1_DSSD_X120_T 996.925 -0.120215
+EDIN_T1_DSSD_X121_T 994.058 -0.119982
+EDIN_T1_DSSD_X122_T 997.371 -0.120307
+EDIN_T1_DSSD_X123_T 995.957 -0.120199
+EDIN_T1_DSSD_X124_T 983.919 -0.118652
+EDIN_T1_DSSD_X125_T 995.79 -0.1202
+EDIN_T1_DSSD_X126_T 978.841 -0.118024
+EDIN_T1_DSSD_X127_T 976.704 -0.117775
+EDIN_T1_DSSD_X128_T 1000.15 -0.120722
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0862b09b705d7dd27baec08898f720156aa91ab0
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+EDIN_T1_DSSD_Y1_T 966.891 -0.116717
+EDIN_T1_DSSD_Y2_T 968.928 -0.116883
+EDIN_T1_DSSD_Y3_T 971.207 -0.117128
+EDIN_T1_DSSD_Y4_T 969.17 -0.116981
+EDIN_T1_DSSD_Y5_T 975.423 -0.117665
+EDIN_T1_DSSD_Y6_T 967.943 -0.116827
+EDIN_T1_DSSD_Y7_T 976.249 -0.117743
+EDIN_T1_DSSD_Y8_T 972.184 -0.117358
+EDIN_T1_DSSD_Y9_T 987.572 -0.119146
+EDIN_T1_DSSD_Y10_T 972.004 -0.117327
+EDIN_T1_DSSD_Y11_T 984.536 -0.118747
+EDIN_T1_DSSD_Y12_T 964.104 -0.116368
+EDIN_T1_DSSD_Y13_T 987.751 -0.119189
+EDIN_T1_DSSD_Y14_T 968.288 -0.116854
+EDIN_T1_DSSD_Y15_T 994.23 -0.119964
+EDIN_T1_DSSD_Y16_T 958.21 -0.11562
+EDIN_T1_DSSD_Y17_T 995.905 -0.120158
+EDIN_T1_DSSD_Y18_T 950.839 -0.114726
+EDIN_T1_DSSD_Y19_T 995.946 -0.120176
+EDIN_T1_DSSD_Y20_T 960.868 -0.115938
+EDIN_T1_DSSD_Y21_T 1000.5 -0.120728
+EDIN_T1_DSSD_Y22_T 957.621 -0.115533
+EDIN_T1_DSSD_Y23_T 995.25 -0.120113
+EDIN_T1_DSSD_Y24_T 954.252 -0.115122
+EDIN_T1_DSSD_Y25_T 997.145 -0.120339
+EDIN_T1_DSSD_Y26_T 952.035 -0.114834
+EDIN_T1_DSSD_Y27_T 988.864 -0.119308
+EDIN_T1_DSSD_Y28_T 948.029 -0.114361
+EDIN_T1_DSSD_Y29_T 995.199 -0.120108
+EDIN_T1_DSSD_Y30_T 937.191 -0.113022
+EDIN_T1_DSSD_Y31_T 935.35 -0.11282
+EDIN_T1_DSSD_Y32_T 990.383 -0.119515
+EDIN_T1_DSSD_Y33_T 905.741 -0.109257
+EDIN_T1_DSSD_Y34_T 887.986 -0.10696
+EDIN_T1_DSSD_Y35_T 887.216 -0.106852
+EDIN_T1_DSSD_Y36_T 910.732 -0.109844
+EDIN_T1_DSSD_Y37_T 883.77 -0.106436
+EDIN_T1_DSSD_Y38_T 906.33 -0.109312
+EDIN_T1_DSSD_Y39_T 896.97 -0.108049
+EDIN_T1_DSSD_Y40_T 911.966 -0.109989
+EDIN_T1_DSSD_Y41_T 903.022 -0.108781
+EDIN_T1_DSSD_Y42_T 909.45 -0.10969
+EDIN_T1_DSSD_Y43_T 904.319 -0.108923
+EDIN_T1_DSSD_Y44_T 900.767 -0.108623
+EDIN_T1_DSSD_Y45_T 904.183 -0.108922
+EDIN_T1_DSSD_Y46_T 908.035 -0.109521
+EDIN_T1_DSSD_Y47_T 904.336 -0.108949
+EDIN_T1_DSSD_Y48_T 895.245 -0.107957
+EDIN_T1_DSSD_Y49_T 916.034 -0.110395
+EDIN_T1_DSSD_Y50_T 907.451 -0.10944
+EDIN_T1_DSSD_Y51_T 915.216 -0.110294
+EDIN_T1_DSSD_Y52_T 897.171 -0.108164
+EDIN_T1_DSSD_Y53_T 910.734 -0.109746
+EDIN_T1_DSSD_Y54_T 907.311 -0.109433
+EDIN_T1_DSSD_Y55_T 913.293 -0.109802
+EDIN_T1_DSSD_Y56_T 848677000000.0 -103827000.0
+EDIN_T1_DSSD_Y57_T 910.448 -0.109742
+EDIN_T1_DSSD_Y58_T 896.019 -0.108037
+EDIN_T1_DSSD_Y59_T 918.647 -0.11072
+EDIN_T1_DSSD_Y60_T 886.581 -0.106848
+EDIN_T1_DSSD_Y61_T 920.049 -0.110879
+EDIN_T1_DSSD_Y62_T 884.995 -0.106691
+EDIN_T1_DSSD_Y63_T 1002.87 -0.141377
+EDIN_T1_DSSD_Y64_T 921.093 -0.111037
+EDIN_T1_DSSD_Y65_T 991.793 -0.120194
+EDIN_T1_DSSD_Y66_T 947.005 -0.114646
+EDIN_T1_DSSD_Y67_T 955.512 -0.115676
+EDIN_T1_DSSD_Y68_T 986.667 -0.119601
+EDIN_T1_DSSD_Y69_T 954.266 -0.115551
+EDIN_T1_DSSD_Y70_T 985.922 -0.119505
+EDIN_T1_DSSD_Y71_T 961.213 -0.116392
+EDIN_T1_DSSD_Y72_T 988.378 -0.11981
+EDIN_T1_DSSD_Y73_T 960.803 -0.116344
+EDIN_T1_DSSD_Y74_T 985.147 -0.119391
+EDIN_T1_DSSD_Y75_T 971.068 -0.117589
+EDIN_T1_DSSD_Y76_T 988.169 -0.119777
+EDIN_T1_DSSD_Y77_T 971.908 -0.117699
+EDIN_T1_DSSD_Y78_T 986.47 -0.119552
+EDIN_T1_DSSD_Y79_T 978.963 -0.118567
+EDIN_T1_DSSD_Y80_T 983.419 -0.119163
+EDIN_T1_DSSD_Y81_T 980.181 -0.118705
+EDIN_T1_DSSD_Y82_T 982.479 -0.119038
+EDIN_T1_DSSD_Y83_T 972.849 -0.117807
+EDIN_T1_DSSD_Y84_T 974.345 -0.118053
+EDIN_T1_DSSD_Y85_T 977.401 -0.118376
+EDIN_T1_DSSD_Y86_T 978.784 -0.118609
+EDIN_T1_DSSD_Y87_T 985.257 -0.119333
+EDIN_T1_DSSD_Y88_T 970.687 -0.117617
+EDIN_T1_DSSD_Y89_T 986.001 -0.119429
+EDIN_T1_DSSD_Y90_T 967.43 -0.117211
+EDIN_T1_DSSD_Y91_T 978.94 -0.118576
+EDIN_T1_DSSD_Y92_T 963.945 -0.116788
+EDIN_T1_DSSD_Y93_T 982.604 -0.119031
+EDIN_T1_DSSD_Y94_T 958.17 -0.116053
+EDIN_T1_DSSD_Y95_T 950.903 -0.115194
+EDIN_T1_DSSD_Y96_T 994.308 -0.120471
+EDIN_T1_DSSD_Y97_T 906.635 -0.109824
+EDIN_T1_DSSD_Y98_T 862.399 -0.104291
+EDIN_T1_DSSD_Y99_T 856.141 -0.103549
+EDIN_T1_DSSD_Y100_T 900.796 -0.109108
+EDIN_T1_DSSD_Y101_T 866.517 -0.104798
+EDIN_T1_DSSD_Y102_T 910.268 -0.110268
+EDIN_T1_DSSD_Y103_T 861.488 -0.10419
+EDIN_T1_DSSD_Y104_T 903.241 -0.109417
+EDIN_T1_DSSD_Y105_T 869.88 -0.105221
+EDIN_T1_DSSD_Y106_T 896.217 -0.108536
+EDIN_T1_DSSD_Y107_T 879.073 -0.106354
+EDIN_T1_DSSD_Y108_T 905.347 -0.10967
+EDIN_T1_DSSD_Y109_T 883.458 -0.1069
+EDIN_T1_DSSD_Y110_T 902.144 -0.10926
+EDIN_T1_DSSD_Y111_T 878.318 -0.106252
+EDIN_T1_DSSD_Y112_T 905.296 -0.109653
+EDIN_T1_DSSD_Y113_T 895.691 -0.108379
+EDIN_T1_DSSD_Y114_T 895.11 -0.108406
+EDIN_T1_DSSD_Y115_T 896.571 -0.108492
+EDIN_T1_DSSD_Y116_T 891.891 -0.108005
+EDIN_T1_DSSD_Y117_T 894.464 -0.108225
+EDIN_T1_DSSD_Y118_T 884.05 -0.107044
+EDIN_T1_DSSD_Y119_T 893.509 -0.108132
+EDIN_T1_DSSD_Y120_T 891.902 -0.10801
+EDIN_T1_DSSD_Y121_T 895.809 -0.108412
+EDIN_T1_DSSD_Y122_T 894.071 -0.108263
+EDIN_T1_DSSD_Y123_T 891.015 -0.10784
+EDIN_T1_DSSD_Y124_T 880.13 -0.106555
+EDIN_T1_DSSD_Y125_T 888.724 -0.107526
+EDIN_T1_DSSD_Y126_T 875.524 -0.106
+EDIN_T1_DSSD_Y127_T 876.691 -0.106136
+EDIN_T1_DSSD_Y128_T 899.797 -0.109448
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..110ede9d2e530bbadf6dc4ab17e255c9ffd164a0
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_X1_T 893.403 -0.107885
+EDIN_T2_DSSD_X2_T 884.424 -0.106884
+EDIN_T2_DSSD_X3_T 881.912 -0.106588
+EDIN_T2_DSSD_X4_T 896.224 -0.10824
+EDIN_T2_DSSD_X5_T 891.212 -0.10771
+EDIN_T2_DSSD_X6_T 899.711 -0.108665
+EDIN_T2_DSSD_X7_T 888.472 -0.10739
+EDIN_T2_DSSD_X8_T 900.163 -0.108721
+EDIN_T2_DSSD_X9_T 902.325 -0.109058
+EDIN_T2_DSSD_X10_T 898.738 -0.108543
+EDIN_T2_DSSD_X11_T 899.193 -0.108685
+EDIN_T2_DSSD_X12_T 888.44 -0.107279
+EDIN_T2_DSSD_X13_T 906.762 -0.109605
+EDIN_T2_DSSD_X14_T 896.907 -0.108307
+EDIN_T2_DSSD_X15_T 903.506 -0.109211
+EDIN_T2_DSSD_X16_T 894.49 -0.108024
+EDIN_T2_DSSD_X17_T 903.2 -0.109168
+EDIN_T2_DSSD_X18_T 885.543 -0.106931
+EDIN_T2_DSSD_X19_T 907.04 -0.109617
+EDIN_T2_DSSD_X20_T 877.811 -0.105984
+EDIN_T2_DSSD_X21_T 913.192 -0.1104
+EDIN_T2_DSSD_X22_T 875.93 -0.105755
+EDIN_T2_DSSD_X23_T 912.001 -0.110254
+EDIN_T2_DSSD_X24_T 875.67 -0.105723
+EDIN_T2_DSSD_X25_T 920.039 -0.111219
+EDIN_T2_DSSD_X26_T 866.918 -0.10464
+EDIN_T2_DSSD_X27_T 918.464 -0.111043
+EDIN_T2_DSSD_X28_T 872.886 -0.105362
+EDIN_T2_DSSD_X29_T 921.268 -0.111378
+EDIN_T2_DSSD_X30_T 863.294 -0.104191
+EDIN_T2_DSSD_X31_T 853.022 -0.102956
+EDIN_T2_DSSD_X32_T 917.17 -0.11089
+EDIN_T2_DSSD_X33_T 949.489 -0.114725
+EDIN_T2_DSSD_X34_T 937.316 -0.113282
+EDIN_T2_DSSD_X35_T 934.385 -0.112935
+EDIN_T2_DSSD_X36_T 950.078 -0.114801
+EDIN_T2_DSSD_X37_T 942.34 -0.113903
+EDIN_T2_DSSD_X38_T 948.307 -0.114577
+EDIN_T2_DSSD_X39_T 954.458 -0.11541
+EDIN_T2_DSSD_X40_T 952.149 -0.115049
+EDIN_T2_DSSD_X41_T 950.139 -0.114834
+EDIN_T2_DSSD_X42_T 944.632 -0.114127
+EDIN_T2_DSSD_X43_T 967.561 -0.116968
+EDIN_T2_DSSD_X44_T 948.456 -0.114587
+EDIN_T2_DSSD_X45_T 960.77 -0.116144
+EDIN_T2_DSSD_X46_T 947.97 -0.114529
+EDIN_T2_DSSD_X47_T 965.567 -0.116738
+EDIN_T2_DSSD_X48_T 939.674 -0.113523
+EDIN_T2_DSSD_X49_T 957.421 -0.115736
+EDIN_T2_DSSD_X50_T 948.676 -0.114596
+EDIN_T2_DSSD_X51_T 969.399 -0.117191
+EDIN_T2_DSSD_X52_T 940.462 -0.113604
+EDIN_T2_DSSD_X53_T 971.909 -0.117505
+EDIN_T2_DSSD_X54_T 942.935 -0.113893
+EDIN_T2_DSSD_X55_T 966.623 -0.116868
+EDIN_T2_DSSD_X56_T 947.225 -0.114433
+EDIN_T2_DSSD_X57_T 972.522 -0.117596
+EDIN_T2_DSSD_X58_T 936.381 -0.11311
+EDIN_T2_DSSD_X59_T 966.551 -0.116864
+EDIN_T2_DSSD_X60_T 937.478 -0.113239
+EDIN_T2_DSSD_X61_T 967.053 -0.116934
+EDIN_T2_DSSD_X62_T 934.725 -0.1129
+EDIN_T2_DSSD_X63_T 919.521 -0.111042
+EDIN_T2_DSSD_X64_T 976.535 -0.118078
+EDIN_T2_DSSD_X65_T 944.971 -0.114186
+EDIN_T2_DSSD_X66_T 901.312 -0.10895
+EDIN_T2_DSSD_X67_T 917.986 -0.11099
+EDIN_T2_DSSD_X68_T 944.748 -0.114176
+EDIN_T2_DSSD_X69_T 913.934 -0.110483
+EDIN_T2_DSSD_X70_T 936.181 -0.113143
+EDIN_T2_DSSD_X71_T 913.949 -0.110494
+EDIN_T2_DSSD_X72_T 936.518 -0.113174
+EDIN_T2_DSSD_X73_T 923.435 -0.11163
+EDIN_T2_DSSD_X74_T 946.851 -0.11443
+EDIN_T2_DSSD_X75_T 922.621 -0.111573
+EDIN_T2_DSSD_X76_T 940.75 -0.113673
+EDIN_T2_DSSD_X77_T 921.076 -0.111368
+EDIN_T2_DSSD_X78_T 949.44 -0.114745
+EDIN_T2_DSSD_X79_T 925.346 -0.111888
+EDIN_T2_DSSD_X80_T 940.564 -0.113666
+EDIN_T2_DSSD_X81_T 935.581 -0.113122
+EDIN_T2_DSSD_X82_T 940.971 -0.113698
+EDIN_T2_DSSD_X83_T 932.485 -0.112764
+EDIN_T2_DSSD_X84_T 938.012 -0.113333
+EDIN_T2_DSSD_X85_T 937.5 -0.113373
+EDIN_T2_DSSD_X86_T 932.582 -0.11267
+EDIN_T2_DSSD_X87_T 932.715 -0.112797
+EDIN_T2_DSSD_X88_T 929.709 -0.112323
+EDIN_T2_DSSD_X89_T 935.979 -0.113176
+EDIN_T2_DSSD_X90_T 914.139 -0.110414
+EDIN_T2_DSSD_X91_T 942.445 -0.113973
+EDIN_T2_DSSD_X92_T 914.61 -0.110461
+EDIN_T2_DSSD_X93_T 943.181 -0.114066
+EDIN_T2_DSSD_X94_T 906.889 -0.109531
+EDIN_T2_DSSD_X95_T 902.2 -0.108961
+EDIN_T2_DSSD_X96_T 942.414 -0.113973
+EDIN_T2_DSSD_X97_T 987.604 -0.119394
+EDIN_T2_DSSD_X98_T 971.844 -0.117533
+EDIN_T2_DSSD_X99_T 971.845 -0.117545
+EDIN_T2_DSSD_X100_T 1002.51 -0.12123
+EDIN_T2_DSSD_X101_T 983.582 -0.118957
+EDIN_T2_DSSD_X102_T 1001.7 -0.12112
+EDIN_T2_DSSD_X103_T 988.69 -0.119584
+EDIN_T2_DSSD_X104_T 997.508 -0.120614
+EDIN_T2_DSSD_X105_T 990.616 -0.119902
+EDIN_T2_DSSD_X106_T 982.481 -0.118788
+EDIN_T2_DSSD_X107_T 992.058 -0.12002
+EDIN_T2_DSSD_X108_T 992.615 -0.120011
+EDIN_T2_DSSD_X109_T 993.193 -0.120171
+EDIN_T2_DSSD_X110_T 993.652 -0.120143
+EDIN_T2_DSSD_X111_T 998.567 -0.120802
+EDIN_T2_DSSD_X112_T 993.933 -0.120152
+EDIN_T2_DSSD_X113_T 991.75 -0.119977
+EDIN_T2_DSSD_X114_T 983.229 -0.118879
+EDIN_T2_DSSD_X115_T 1000.28 -0.12102
+EDIN_T2_DSSD_X116_T 984.429 -0.118997
+EDIN_T2_DSSD_X117_T 996.389 -0.12055
+EDIN_T2_DSSD_X118_T 970.748 -0.117336
+EDIN_T2_DSSD_X119_T 995.946 -0.12048
+EDIN_T2_DSSD_X120_T 969.333 -0.117159
+EDIN_T2_DSSD_X121_T 1005.69 -0.121688
+EDIN_T2_DSSD_X122_T 969.343 -0.117158
+EDIN_T2_DSSD_X123_T 1009.38 -0.122136
+EDIN_T2_DSSD_X124_T 965.866 -0.116735
+EDIN_T2_DSSD_X125_T 1012.08 -0.122472
+EDIN_T2_DSSD_X126_T 964.034 -0.116512
+EDIN_T2_DSSD_X127_T 952.869 -0.115148
+EDIN_T2_DSSD_X128_T 1003.93 -0.121488
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e3537742e8681e3df5bbf3f4aa0393373d15b222
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+EDIN_T2_DSSD_Y1_T 1024.2 -0.123744
+EDIN_T2_DSSD_Y2_T 942.022 -0.113632
+EDIN_T2_DSSD_Y3_T 941.851 -0.11359
+EDIN_T2_DSSD_Y4_T 1023.43 -0.123621
+EDIN_T2_DSSD_Y5_T 941.301 -0.113546
+EDIN_T2_DSSD_Y6_T 1024.68 -0.123746
+EDIN_T2_DSSD_Y7_T 941.196 -0.113526
+EDIN_T2_DSSD_Y8_T 1019.48 -0.12312
+EDIN_T2_DSSD_Y9_T 956.339 -0.115367
+EDIN_T2_DSSD_Y10_T 1017.56 -0.122898
+EDIN_T2_DSSD_Y11_T 972.159 -0.117305
+EDIN_T2_DSSD_Y12_T 1012.4 -0.122275
+EDIN_T2_DSSD_Y13_T 968.071 -0.11682
+EDIN_T2_DSSD_Y14_T 1006.22 -0.121307
+EDIN_T2_DSSD_Y15_T 963.198 -0.116216
+EDIN_T2_DSSD_Y16_T 1014.58 -0.122539
+EDIN_T2_DSSD_Y17_T 978.802 -0.118134
+EDIN_T2_DSSD_Y18_T 1013.44 -0.122366
+EDIN_T2_DSSD_Y19_T 981.332 -0.118446
+EDIN_T2_DSSD_Y20_T 1006.43 -0.121526
+EDIN_T2_DSSD_Y21_T 978.515 -0.117858
+EDIN_T2_DSSD_Y22_T 1001.78 -0.120947
+EDIN_T2_DSSD_Y23_T 985.445 -0.11895
+EDIN_T2_DSSD_Y24_T 1003.53 -0.121165
+EDIN_T2_DSSD_Y25_T 979.656 -0.118238
+EDIN_T2_DSSD_Y26_T 998.524 -0.120524
+EDIN_T2_DSSD_Y27_T 981.57 -0.118468
+EDIN_T2_DSSD_Y28_T 992.258 -0.119776
+EDIN_T2_DSSD_Y29_T 980.383 -0.118337
+EDIN_T2_DSSD_Y30_T 993.077 -0.119903
+EDIN_T2_DSSD_Y31_T 989.947 -0.119525
+EDIN_T2_DSSD_Y32_T 968.968 -0.116905
+EDIN_T2_DSSD_Y33_T 918.091 -0.110791
+EDIN_T2_DSSD_Y34_T 896.545 -0.108016
+EDIN_T2_DSSD_Y35_T 905.921 -0.109155
+EDIN_T2_DSSD_Y36_T 922.863 -0.111371
+EDIN_T2_DSSD_Y37_T 903.191 -0.108834
+EDIN_T2_DSSD_Y38_T 919.243 -0.110907
+EDIN_T2_DSSD_Y39_T 916.514 -0.110471
+EDIN_T2_DSSD_Y40_T 915.986 -0.110532
+EDIN_T2_DSSD_Y41_T 909.698 -0.109622
+EDIN_T2_DSSD_Y42_T 913.535 -0.110231
+EDIN_T2_DSSD_Y43_T 918.472 -0.110708
+EDIN_T2_DSSD_Y44_T 910.049 -0.10979
+EDIN_T2_DSSD_Y45_T 921.934 -0.111116
+EDIN_T2_DSSD_Y46_T 914.061 -0.110304
+EDIN_T2_DSSD_Y47_T 917.791 -0.11061
+EDIN_T2_DSSD_Y48_T 909.649 -0.109756
+EDIN_T2_DSSD_Y49_T 930.463 -0.11216
+EDIN_T2_DSSD_Y50_T 906.817 -0.109401
+EDIN_T2_DSSD_Y51_T 921.545 -0.111079
+EDIN_T2_DSSD_Y52_T 908.152 -0.109574
+EDIN_T2_DSSD_Y53_T 924.357 -0.111393
+EDIN_T2_DSSD_Y54_T 892.44 -0.107628
+EDIN_T2_DSSD_Y55_T 928.134 -0.11168
+EDIN_T2_DSSD_Y56_T 897.82 -0.108297
+EDIN_T2_DSSD_Y57_T 944.074 -0.11386
+EDIN_T2_DSSD_Y58_T 894.339 -0.10786
+EDIN_T2_DSSD_Y59_T 929.497 -0.112068
+EDIN_T2_DSSD_Y60_T 893.026 -0.107711
+EDIN_T2_DSSD_Y61_T 925.938 -0.111623
+EDIN_T2_DSSD_Y62_T 880.638 -0.106206
+EDIN_T2_DSSD_Y63_T 874.116 -0.105393
+EDIN_T2_DSSD_Y64_T 933.858 -0.112593
+EDIN_T2_DSSD_Y65_T 971.01 -0.117343
+EDIN_T2_DSSD_Y66_T 946.074 -0.114246
+EDIN_T2_DSSD_Y67_T 940.751 -0.113582
+EDIN_T2_DSSD_Y68_T 968.878 -0.117092
+EDIN_T2_DSSD_Y69_T 952.983 -0.115097
+EDIN_T2_DSSD_Y70_T 977.792 -0.118194
+EDIN_T2_DSSD_Y71_T 948.889 -0.114574
+EDIN_T2_DSSD_Y72_T 975.406 -0.117892
+EDIN_T2_DSSD_Y73_T 957.63 -0.115653
+EDIN_T2_DSSD_Y74_T 979.2 -0.118324
+EDIN_T2_DSSD_Y75_T 968.091 -0.11692
+EDIN_T2_DSSD_Y76_T 966.385 -0.116762
+EDIN_T2_DSSD_Y77_T 966.176 -0.116695
+EDIN_T2_DSSD_Y78_T 960.237 -0.115989
+EDIN_T2_DSSD_Y79_T 971.862 -0.117388
+EDIN_T2_DSSD_Y80_T 958.107 -0.115747
+EDIN_T2_DSSD_Y81_T 974.809 -0.117739
+EDIN_T2_DSSD_Y82_T 966.661 -0.116783
+EDIN_T2_DSSD_Y83_T 976.466 -0.11797
+EDIN_T2_DSSD_Y84_T 969.683 -0.117144
+EDIN_T2_DSSD_Y85_T 981.048 -0.118525
+EDIN_T2_DSSD_Y86_T 962.11 -0.116242
+EDIN_T2_DSSD_Y87_T 971.816 -0.117371
+EDIN_T2_DSSD_Y88_T 974.181 -0.117701
+EDIN_T2_DSSD_Y89_T 979.537 -0.118331
+EDIN_T2_DSSD_Y90_T 947.803 -0.114477
+EDIN_T2_DSSD_Y91_T 979.044 -0.118283
+EDIN_T2_DSSD_Y92_T 950.053 -0.114763
+EDIN_T2_DSSD_Y93_T 986.328 -0.119174
+EDIN_T2_DSSD_Y94_T 945.736 -0.114242
+EDIN_T2_DSSD_Y95_T 926.3 -0.111864
+EDIN_T2_DSSD_Y96_T 991.309 -0.119806
+EDIN_T2_DSSD_Y97_T 914.871 -0.110525
+EDIN_T2_DSSD_Y98_T 854.155 -0.102981
+EDIN_T2_DSSD_Y99_T 870.733 -0.104976
+EDIN_T2_DSSD_Y100_T 924.467 -0.111703
+EDIN_T2_DSSD_Y101_T 878.476 -0.105936
+EDIN_T2_DSSD_Y102_T 928.251 -0.11214
+EDIN_T2_DSSD_Y103_T 876.793 -0.10575
+EDIN_T2_DSSD_Y104_T 927.531 -0.112066
+EDIN_T2_DSSD_Y105_T 884.881 -0.106741
+EDIN_T2_DSSD_Y106_T 924.057 -0.111623
+EDIN_T2_DSSD_Y107_T 881.171 -0.10628
+EDIN_T2_DSSD_Y108_T 924.408 -0.111663
+EDIN_T2_DSSD_Y109_T 893.636 -0.107805
+EDIN_T2_DSSD_Y110_T 923.243 -0.111507
+EDIN_T2_DSSD_Y111_T 894.919 -0.107966
+EDIN_T2_DSSD_Y112_T 927.33 -0.112025
+EDIN_T2_DSSD_Y113_T 885.067 -0.106759
+EDIN_T2_DSSD_Y114_T 932.767 -0.112691
+EDIN_T2_DSSD_Y115_T 898.226 -0.108381
+EDIN_T2_DSSD_Y116_T 916.909 -0.110746
+EDIN_T2_DSSD_Y117_T 896.617 -0.108195
+EDIN_T2_DSSD_Y118_T 926.674 -0.111938
+EDIN_T2_DSSD_Y119_T 896.617 -0.108195
+EDIN_T2_DSSD_Y120_T 919.012 -0.110997
+EDIN_T2_DSSD_Y121_T 899.421 -0.108519
+EDIN_T2_DSSD_Y122_T 905.068 -0.109308
+EDIN_T2_DSSD_Y123_T 900.193 -0.10863
+EDIN_T2_DSSD_Y124_T 906.665 -0.109474
+EDIN_T2_DSSD_Y125_T 901.229 -0.108768
+EDIN_T2_DSSD_Y126_T 896.011 -0.108189
+EDIN_T2_DSSD_Y127_T 899.526 -0.108639
+EDIN_T2_DSSD_Y128_T 897.311 -0.108297
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2e8f91728f8cdb84508472cd2b10fdc565874c8e
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_X1_T 900.293 -0.108862
+EDIN_T3_DSSD_X2_T 898.105 -0.108693
+EDIN_T3_DSSD_X3_T 904.446 -0.109485
+EDIN_T3_DSSD_X4_T 891.538 -0.107803
+EDIN_T3_DSSD_X5_T 912.143 -0.110421
+EDIN_T3_DSSD_X6_T 905.108 -0.109445
+EDIN_T3_DSSD_X7_T 905.421 -0.109588
+EDIN_T3_DSSD_X8_T 903.963 -0.109312
+EDIN_T3_DSSD_X9_T 911.321 -0.110301
+EDIN_T3_DSSD_X10_T 897.274 -0.10849
+EDIN_T3_DSSD_X11_T 919.499 -0.111327
+EDIN_T3_DSSD_X12_T 897.684 -0.108538
+EDIN_T3_DSSD_X13_T 921.109 -0.111495
+EDIN_T3_DSSD_X14_T 902.052 -0.10908
+EDIN_T3_DSSD_X15_T 929.489 -0.112521
+EDIN_T3_DSSD_X16_T 896.795 -0.10844
+EDIN_T3_DSSD_X17_T 937.068 -0.11347
+EDIN_T3_DSSD_X18_T 899.348 -0.108733
+EDIN_T3_DSSD_X19_T 930.942 -0.112717
+EDIN_T3_DSSD_X20_T 896.431 -0.108382
+EDIN_T3_DSSD_X21_T 927.894 -0.112335
+EDIN_T3_DSSD_X22_T 884.13 -0.106861
+EDIN_T3_DSSD_X23_T 932.632 -0.112964
+EDIN_T3_DSSD_X24_T 888.209 -0.107368
+EDIN_T3_DSSD_X25_T 935.332 -0.113245
+EDIN_T3_DSSD_X26_T 888.186 -0.107364
+EDIN_T3_DSSD_X27_T 929.857 -0.11258
+EDIN_T3_DSSD_X28_T 878.223 -0.106155
+EDIN_T3_DSSD_X29_T 937.136 -0.113476
+EDIN_T3_DSSD_X30_T 865.76 -0.104634
+EDIN_T3_DSSD_X31_T 866.015 -0.104661
+EDIN_T3_DSSD_X32_T 935.398 -0.113256
+EDIN_T3_DSSD_X33_T 996.617 -0.120654
+EDIN_T3_DSSD_X34_T 938.354 -0.113591
+EDIN_T3_DSSD_X35_T 952.054 -0.115254
+EDIN_T3_DSSD_X36_T 1001.37 -0.121233
+EDIN_T3_DSSD_X37_T 956.534 -0.115822
+EDIN_T3_DSSD_X38_T 999.766 -0.121035
+EDIN_T3_DSSD_X39_T 958.488 -0.116042
+EDIN_T3_DSSD_X40_T 1006.69 -0.121885
+EDIN_T3_DSSD_X41_T 950.724 -0.115096
+EDIN_T3_DSSD_X42_T 996.509 -0.120628
+EDIN_T3_DSSD_X43_T 965.196 -0.11686
+EDIN_T3_DSSD_X44_T 1000.74 -0.12115
+EDIN_T3_DSSD_X45_T 969.308 -0.117385
+EDIN_T3_DSSD_X46_T 987.489 -0.119523
+EDIN_T3_DSSD_X47_T 974.569 -0.118019
+EDIN_T3_DSSD_X48_T 986.58 -0.119405
+EDIN_T3_DSSD_X49_T 972.643 -0.117779
+EDIN_T3_DSSD_X50_T 988.858 -0.119693
+EDIN_T3_DSSD_X51_T 970.352 -0.117496
+EDIN_T3_DSSD_X52_T 984.595 -0.119177
+EDIN_T3_DSSD_X53_T 972.778 -0.117795
+EDIN_T3_DSSD_X54_T 992.422 -0.120114
+EDIN_T3_DSSD_X55_T 984.9 -0.119273
+EDIN_T3_DSSD_X56_T 985.228 -0.119229
+EDIN_T3_DSSD_X57_T 974.806 -0.118031
+EDIN_T3_DSSD_X58_T 978.048 -0.118386
+EDIN_T3_DSSD_X59_T 981.032 -0.118805
+EDIN_T3_DSSD_X60_T 982.136 -0.11886
+EDIN_T3_DSSD_X61_T 978.727 -0.118524
+EDIN_T3_DSSD_X62_T 963.403 -0.116582
+EDIN_T3_DSSD_X63_T 967.055 -0.117029
+EDIN_T3_DSSD_X64_T 983.561 -0.119127
+EDIN_T3_DSSD_X65_T 894.433 -0.107896
+EDIN_T3_DSSD_X66_T 862.689 -0.104124
+EDIN_T3_DSSD_X67_T 867.813 -0.104728
+EDIN_T3_DSSD_X68_T 885.342 -0.106793
+EDIN_T3_DSSD_X69_T 867.895 -0.104753
+EDIN_T3_DSSD_X70_T 898.089 -0.108336
+EDIN_T3_DSSD_X71_T 873.835 -0.105492
+EDIN_T3_DSSD_X72_T 891.27 -0.107522
+EDIN_T3_DSSD_X73_T 883.843 -0.106693
+EDIN_T3_DSSD_X74_T 897.245 -0.108252
+EDIN_T3_DSSD_X75_T 879.494 -0.10614
+EDIN_T3_DSSD_X76_T 887.829 -0.107093
+EDIN_T3_DSSD_X77_T 883.805 -0.106708
+EDIN_T3_DSSD_X78_T 892.007 -0.107599
+EDIN_T3_DSSD_X79_T 882.86 -0.106567
+EDIN_T3_DSSD_X80_T 888.126 -0.107137
+EDIN_T3_DSSD_X81_T 891.887 -0.107671
+EDIN_T3_DSSD_X82_T 884.874 -0.10675
+EDIN_T3_DSSD_X83_T 896.27 -0.108216
+EDIN_T3_DSSD_X84_T 887.525 -0.107055
+EDIN_T3_DSSD_X85_T 888.15 -0.107225
+EDIN_T3_DSSD_X86_T 880.15 -0.106145
+EDIN_T3_DSSD_X87_T 899.039 -0.108561
+EDIN_T3_DSSD_X88_T 788.143 -0.126949
+EDIN_T3_DSSD_X89_T 899.371 -0.108609
+EDIN_T3_DSSD_X90_T 876.122 -0.105647
+EDIN_T3_DSSD_X91_T 896.002 -0.108191
+EDIN_T3_DSSD_X92_T 869.978 -0.1049
+EDIN_T3_DSSD_X93_T 905.511 -0.109337
+EDIN_T3_DSSD_X94_T 869.213 -0.10481
+EDIN_T3_DSSD_X95_T 859.472 -0.103629
+EDIN_T3_DSSD_X96_T 900.32 -0.108709
+EDIN_T3_DSSD_X97_T 979.288 -0.118278
+EDIN_T3_DSSD_X98_T 985.824 -0.119126
+EDIN_T3_DSSD_X99_T 991.541 -0.119789
+EDIN_T3_DSSD_X100_T 984.211 -0.118879
+EDIN_T3_DSSD_X101_T 991.866 -0.119851
+EDIN_T3_DSSD_X102_T 986.603 -0.119186
+EDIN_T3_DSSD_X103_T 1007.5 -0.121753
+EDIN_T3_DSSD_X104_T 987.195 -0.119241
+EDIN_T3_DSSD_X105_T 1008.13 -0.121824
+EDIN_T3_DSSD_X106_T 987.225 -0.119256
+EDIN_T3_DSSD_X107_T 1004.87 -0.121446
+EDIN_T3_DSSD_X108_T 979.507 -0.118304
+EDIN_T3_DSSD_X109_T 1008.48 -0.121893
+EDIN_T3_DSSD_X110_T 974.374 -0.117687
+EDIN_T3_DSSD_X111_T 1012.14 -0.122347
+EDIN_T3_DSSD_X112_T 978.317 -0.118161
+EDIN_T3_DSSD_X113_T 1008.38 -0.121883
+EDIN_T3_DSSD_X114_T 967.787 -0.116863
+EDIN_T3_DSSD_X115_T 1014.86 -0.122684
+EDIN_T3_DSSD_X116_T 962.99 -0.116299
+EDIN_T3_DSSD_X117_T 1023.57 -0.123722
+EDIN_T3_DSSD_X118_T 968.345 -0.11693
+EDIN_T3_DSSD_X119_T 1033.42 -0.124938
+EDIN_T3_DSSD_X120_T 965.822 -0.116619
+EDIN_T3_DSSD_X121_T 1015.34 -0.122709
+EDIN_T3_DSSD_X122_T 951.022 -0.114804
+EDIN_T3_DSSD_X123_T 1014.72 -0.12265
+EDIN_T3_DSSD_X124_T 952.48 -0.114986
+EDIN_T3_DSSD_X125_T 1026.27 -0.124061
+EDIN_T3_DSSD_X126_T 949.104 -0.114558
+EDIN_T3_DSSD_X127_T 942.714 -0.11381
+EDIN_T3_DSSD_X128_T 1019.9 -0.123313
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..6cab45be06a98a0ed0f768fa0ff08e75c0b86d0b
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+EDIN_T3_DSSD_Y1_T 983.985 -0.118941
+EDIN_T3_DSSD_Y2_T 970.371 -0.117174
+EDIN_T3_DSSD_Y3_T 984.045 -0.118815
+EDIN_T3_DSSD_Y4_T 977.123 -0.118075
+EDIN_T3_DSSD_Y5_T 985.023 -0.118931
+EDIN_T3_DSSD_Y6_T 985.112 -0.119048
+EDIN_T3_DSSD_Y7_T 990.894 -0.119638
+EDIN_T3_DSSD_Y8_T 978.827 -0.118272
+EDIN_T3_DSSD_Y9_T 996.439 -0.12034
+EDIN_T3_DSSD_Y10_T 969.011 -0.117093
+EDIN_T3_DSSD_Y11_T 1006.18 -0.121551
+EDIN_T3_DSSD_Y12_T 970.24 -0.117251
+EDIN_T3_DSSD_Y13_T 1001.89 -0.120998
+EDIN_T3_DSSD_Y14_T 968.513 -0.117006
+EDIN_T3_DSSD_Y15_T 996.258 -0.120321
+EDIN_T3_DSSD_Y16_T 964.281 -0.116506
+EDIN_T3_DSSD_Y17_T 1002.35 -0.121073
+EDIN_T3_DSSD_Y18_T 956.368 -0.115546
+EDIN_T3_DSSD_Y19_T 1008.58 -0.121839
+EDIN_T3_DSSD_Y20_T 956.591 -0.115552
+EDIN_T3_DSSD_Y21_T 1008.51 -0.121856
+EDIN_T3_DSSD_Y22_T 951.968 -0.114994
+EDIN_T3_DSSD_Y23_T 1015.07 -0.122649
+EDIN_T3_DSSD_Y24_T 944.162 -0.114032
+EDIN_T3_DSSD_Y25_T 1018.24 -0.12302
+EDIN_T3_DSSD_Y26_T 947.224 -0.114409
+EDIN_T3_DSSD_Y27_T 1007.23 -0.121668
+EDIN_T3_DSSD_Y28_T 937.754 -0.113241
+EDIN_T3_DSSD_Y29_T 1016.39 -0.122794
+EDIN_T3_DSSD_Y30_T 928.777 -0.112154
+EDIN_T3_DSSD_Y31_T 920.954 -0.11121
+EDIN_T3_DSSD_Y32_T 1017.37 -0.122927
+EDIN_T3_DSSD_Y33_T 905.69 -0.109382
+EDIN_T3_DSSD_Y34_T 879.206 -0.105997
+EDIN_T3_DSSD_Y35_T 885.638 -0.106772
+EDIN_T3_DSSD_Y36_T 912.926 -0.110263
+EDIN_T3_DSSD_Y37_T 897.352 -0.108217
+EDIN_T3_DSSD_Y38_T 909.287 -0.109804
+EDIN_T3_DSSD_Y39_T 900.017 -0.108527
+EDIN_T3_DSSD_Y40_T 899.078 -0.108568
+EDIN_T3_DSSD_Y41_T 894.065 -0.107825
+EDIN_T3_DSSD_Y42_T 904.332 -0.109195
+EDIN_T3_DSSD_Y43_T 902.563 -0.108862
+EDIN_T3_DSSD_Y44_T 907.563 -0.109593
+EDIN_T3_DSSD_Y45_T 907.447 -0.109456
+EDIN_T3_DSSD_Y46_T 898.134 -0.10846
+EDIN_T3_DSSD_Y47_T 913.155 -0.110152
+EDIN_T3_DSSD_Y48_T 894.272 -0.10799
+EDIN_T3_DSSD_Y49_T 917.884 -0.110718
+EDIN_T3_DSSD_Y50_T 897.411 -0.108361
+EDIN_T3_DSSD_Y51_T 916.39 -0.11056
+EDIN_T3_DSSD_Y52_T 888.675 -0.107294
+EDIN_T3_DSSD_Y53_T 925.29 -0.111636
+EDIN_T3_DSSD_Y54_T 883.52 -0.106654
+EDIN_T3_DSSD_Y55_T 911.348 -0.109934
+EDIN_T3_DSSD_Y56_T 884.229 -0.106744
+EDIN_T3_DSSD_Y57_T 924.685 -0.111581
+EDIN_T3_DSSD_Y58_T 872.76 -0.105345
+EDIN_T3_DSSD_Y59_T 925.584 -0.111694
+EDIN_T3_DSSD_Y60_T 875.902 -0.10573
+EDIN_T3_DSSD_Y61_T 920.738 -0.1111
+EDIN_T3_DSSD_Y62_T 870.737 -0.105092
+EDIN_T3_DSSD_Y63_T 873.601 -0.105446
+EDIN_T3_DSSD_Y64_T 923.494 -0.11144
+EDIN_T3_DSSD_Y65_T 951.047 -0.114947
+EDIN_T3_DSSD_Y66_T 970.943 -0.117288
+EDIN_T3_DSSD_Y67_T 982.69 -0.118727
+EDIN_T3_DSSD_Y68_T 945.988 -0.114343
+EDIN_T3_DSSD_Y69_T 988.906 -0.119474
+EDIN_T3_DSSD_Y70_T 953.345 -0.115232
+EDIN_T3_DSSD_Y71_T 992.522 -0.119909
+EDIN_T3_DSSD_Y72_T 964.745 -0.116618
+EDIN_T3_DSSD_Y73_T 994.13 -0.120116
+EDIN_T3_DSSD_Y74_T 952.282 -0.115086
+EDIN_T3_DSSD_Y75_T 1001.12 -0.120975
+EDIN_T3_DSSD_Y76_T 955.625 -0.115517
+EDIN_T3_DSSD_Y77_T 998.108 -0.120606
+EDIN_T3_DSSD_Y78_T 939.764 -0.11354
+EDIN_T3_DSSD_Y79_T 999.312 -0.12076
+EDIN_T3_DSSD_Y80_T 947.183 -0.114462
+EDIN_T3_DSSD_Y81_T 1004.15 -0.121336
+EDIN_T3_DSSD_Y82_T 931.288 -0.112491
+EDIN_T3_DSSD_Y83_T 1015.36 -0.122713
+EDIN_T3_DSSD_Y84_T 932.714 -0.112672
+EDIN_T3_DSSD_Y85_T 1018.49 -0.1231
+EDIN_T3_DSSD_Y86_T 939.668 -0.113544
+EDIN_T3_DSSD_Y87_T 1006.74 -0.121678
+EDIN_T3_DSSD_Y88_T 931.355 -0.11252
+EDIN_T3_DSSD_Y89_T 1015.03 -0.122697
+EDIN_T3_DSSD_Y90_T 920.222 -0.11114
+EDIN_T3_DSSD_Y91_T 1018.29 -0.123087
+EDIN_T3_DSSD_Y92_T 911.599 -0.110106
+EDIN_T3_DSSD_Y93_T 1010.39 -0.122144
+EDIN_T3_DSSD_Y94_T 911.098 -0.110026
+EDIN_T3_DSSD_Y95_T 904.406 -0.109216
+EDIN_T3_DSSD_Y96_T 1011.64 -0.122274
+EDIN_T3_DSSD_Y97_T 905.657 -0.109416
+EDIN_T3_DSSD_Y98_T 891.482 -0.107554
+EDIN_T3_DSSD_Y99_T 898.972 -0.108473
+EDIN_T3_DSSD_Y100_T 899.215 -0.108625
+EDIN_T3_DSSD_Y101_T 902.164 -0.108848
+EDIN_T3_DSSD_Y102_T 903.69 -0.109168
+EDIN_T3_DSSD_Y103_T 897.423 -0.108292
+EDIN_T3_DSSD_Y104_T 905.571 -0.109439
+EDIN_T3_DSSD_Y105_T 905.477 -0.109288
+EDIN_T3_DSSD_Y106_T 903.343 -0.109125
+EDIN_T3_DSSD_Y107_T 910.936 -0.109943
+EDIN_T3_DSSD_Y108_T 894.177 -0.108006
+EDIN_T3_DSSD_Y109_T 909.486 -0.109765
+EDIN_T3_DSSD_Y110_T 894.856 -0.108068
+EDIN_T3_DSSD_Y111_T 908.693 -0.109672
+EDIN_T3_DSSD_Y112_T 902.34 -0.108999
+EDIN_T3_DSSD_Y113_T 915.535 -0.110512
+EDIN_T3_DSSD_Y114_T 895.161 -0.108126
+EDIN_T3_DSSD_Y115_T 924.289 -0.111588
+EDIN_T3_DSSD_Y116_T 903.16 -0.109085
+EDIN_T3_DSSD_Y117_T 926.875 -0.111915
+EDIN_T3_DSSD_Y118_T 892.165 -0.107742
+EDIN_T3_DSSD_Y119_T 909.469 -0.109772
+EDIN_T3_DSSD_Y120_T 892.528 -0.107789
+EDIN_T3_DSSD_Y121_T 913.618 -0.11029
+EDIN_T3_DSSD_Y122_T 885.298 -0.106904
+EDIN_T3_DSSD_Y123_T 919.137 -0.110947
+EDIN_T3_DSSD_Y124_T 876.164 -0.105791
+EDIN_T3_DSSD_Y125_T 920.413 -0.111116
+EDIN_T3_DSSD_Y126_T 871.593 -0.105224
+EDIN_T3_DSSD_Y127_T 874.337 -0.105573
+EDIN_T3_DSSD_Y128_T 928.523 -0.112131
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..41a240bd16153c9d1639408d41ef7dd448c49cd1
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
@@ -0,0 +1,140 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 0
+Tcal = 1
+clean = 1
+if Ecal :
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]+1
+            else :
+                strip = MapY[int(ch)-1]+1
+
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"EDIN_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]+1
+            else :
+                strip = MapY[int(ch)-1]+1
+
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"EDIN_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/calibE0.cal1 b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/calibE0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..5f77c3d04858dd864b1411813497cfbbcbbac345
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/calibE0.cal1
@@ -0,0 +1,1024 @@
+-61662.3 7.52711 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61862.3 7.5515 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61786 7.54225 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61488.6 7.50587 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61896.8 7.55579 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61641.5 7.52453 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61399.4 7.49501 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61236.4 7.47509 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-60986.5 7.4446 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62681.3 7.65148 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62393.5 7.61631 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61925.3 7.55919 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62029.9 7.57195 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62417.6 7.61932 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61275.3 7.47982 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63058.3 7.69749 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62722.2 7.65646 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62134.9 7.58477 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62458.1 7.62423 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63902.7 7.80057 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62519.9 7.63181 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62297.5 7.60463 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62659.6 7.64878 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62852.3 7.67238 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62985.4 7.68854 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63073.7 7.69941 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62632 7.64548 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-63013.4 7.69203 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62579 7.63901 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63401.5 7.7394 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62630 7.64523 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56399 6.88462 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56789.2 6.93221 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55564.2 6.78269 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56333.4 6.87654 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-56040.6 6.84084 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+-10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55909.7 6.82487 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55658.4 6.79421 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56211.8 6.86172 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55874 6.82053 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56164.8 6.85597 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56307.5 6.87343 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56382 6.88247 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+-10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+-10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55911.5 6.82508 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57927.5 7.07116 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57924.8 7.07081 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57746 7.049 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57343.1 6.99988 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58172.2 7.10106 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57237.7 6.98697 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57876.3 7.06488 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57523.5 7.02188 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58500.7 7.14114 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57786.5 7.05393 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57300.4 6.99465 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57790.9 7.05448 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57203.4 6.9828 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57985 7.0782 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57888.7 7.06644 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58127.1 7.09555 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63452.4 7.74561 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63612.1 7.76511 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63338.7 7.73174 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64021.8 7.81515 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63197.4 7.71456 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63968.4 7.80864 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63853.8 7.79469 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63356.4 7.73397 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64117.7 7.82683 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63242.6 7.72007 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63972.5 7.80918 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63941.4 7.8053 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63651.8 7.77009 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63754.3 7.78255 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64292.8 7.84837 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64690.6 7.89693 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61215.8 7.47271 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60865.1 7.42995 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61147.3 7.46434 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61469.6 7.50369 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61379.1 7.49269 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61888.7 7.55484 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61403.2 7.49554 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62166.5 7.58877 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61896.4 7.55578 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61572.1 7.51618 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61720.5 7.53424 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62796.5 7.66557 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61868.1 7.55224 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60999.1 7.44621 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61368.2 7.49129 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62166.8 7.58877 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57169.7 6.97872 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57564 7.02681 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57724.2 7.04642 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57113.1 6.97176 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58126.5 7.0955 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57746.5 7.04909 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57665.4 7.03921 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57244.7 6.98784 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57357.8 7.00171 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57943.6 7.0732 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57279.1 6.99197 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57628.2 7.03471 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58567.7 7.1494 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58013.5 7.08178 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57681.5 7.04111 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57795.4 7.05508 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59002.3 7.20244 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59192.2 7.22562 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58512.8 7.14267 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58671.3 7.16207 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58171.6 7.10101 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58350.5 7.12281 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.4 7.11445 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58508.2 7.1421 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58511.7 7.14253 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58653.9 7.15989 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58550.4 7.14724 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59318.4 7.24097 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57853 7.06214 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58498.4 7.14087 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58426.4 7.13213 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59512.6 7.26467 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60443.5 -7.37839 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60908.5 -7.43514 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61060.2 -7.45367 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59984.4 -7.32237 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60129.5 -7.3401 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60783.1 -7.41989 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60431 -7.37691 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60140.7 -7.34142 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59998.4 -7.32403 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60395.7 -7.37254 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60028.3 -7.32774 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60887.8 -7.43267 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61066.5 -7.45441 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61164 -7.46632 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60739.8 -7.41458 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60443.5 -7.37838 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60544.4 -7.39071 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60303 -7.3612 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60143.3 -7.34174 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60328.6 -7.3644 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60395.9 -7.37256 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60276 -7.35798 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59684.2 -7.28572 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60187.9 -7.34719 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.4 -7.29698 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60128.6 -7.33997 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60450.5 -7.37922 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59890.5 -7.31089 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59647.3 -7.2812 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59834.9 -7.30412 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60999.1 -7.44624 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56552.5 -6.90341 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57074.5 -6.96718 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56536.5 -6.9015 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57036.3 -6.96248 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57405.1 -7.0075 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57259.2 -6.98972 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56419.6 -6.88718 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56461.1 -6.89226 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56951.6 -6.95213 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56800 -6.93367 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56600.5 -6.90927 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56511.5 -6.8984 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56870.5 -6.94221 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56993.6 -6.95727 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57679.7 -7.04103 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56560.6 -6.90438 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57546.6 -7.02477 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57035.8 -6.96245 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56800.6 -6.93377 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56505.8 -6.89773 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57161.4 -6.97779 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56855 -6.94036 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56619.7 -6.91168 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57621.8 -7.03399 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57359.7 -7.00197 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56825.9 -6.93676 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57031.5 -6.96191 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57239.3 -6.98735 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57254.8 -6.98918 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57074.4 -6.96716 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57574.5 -7.02822 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57912.4 -7.06943 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+61002.8 -7.44668 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61155.3 -7.4653 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61053.3 -7.45282 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61373.4 -7.4919 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60489.7 -7.38403 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61580.3 -7.51716 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60895.6 -7.4336 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60400.3 -7.3731 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61676.2 -7.52889 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61107.3 -7.45944 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61113.2 -7.46014 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61230.4 -7.47441 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60593.4 -7.39669 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61412.2 -7.49666 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61676.7 -7.52894 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61114.5 -7.46029 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62335.5 -7.60932 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61110.8 -7.45984 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61589.5 -7.51825 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62064.5 -7.57624 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61004.9 -7.44692 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60900.3 -7.43416 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61810.8 -7.54524 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61439.5 -7.49992 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61153 -7.46501 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61309.9 -7.48418 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61160.3 -7.46589 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61470.5 -7.50377 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61862.5 -7.55157 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61676 -7.52886 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62387.3 -7.61565 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60904.4 -7.43464 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56381.2 -6.88248 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56647.7 -6.91501 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56593.9 -6.90848 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56466.6 -6.8929 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56205.1 -6.86097 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56339.2 -6.87735 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56071.1 -6.84463 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56586.9 -6.90762 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56922.8 -6.94858 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56073.7 -6.84493 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57080.7 -6.96791 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57414.3 -7.00859 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56582.5 -6.9071 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56583.6 -6.90725 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56679.2 -6.91888 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56421.5 -6.8874 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56904.4 -6.94638 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57127.8 -6.97364 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56965.6 -6.9538 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56822.1 -6.93632 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57302 -6.99491 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.2 -6.90362 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56421.8 -6.88745 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56645.4 -6.91475 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57398.8 -7.00675 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57237.3 -6.98696 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56689 -6.92007 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56011.6 -6.83742 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56467.7 -6.89303 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55922.3 -6.8265 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56957.2 -6.95281 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56586.5 -6.90758 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62384.5 7.61517 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62210.4 7.59389 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62273.5 7.60161 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62019.1 7.5706 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61476.5 7.50432 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61597 7.51908 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62319.3 7.60717 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61416.3 7.49697 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61327.1 7.48611 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61486.5 7.50558 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61673.4 7.52832 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61732.6 7.53556 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61963.2 7.56376 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61418.2 7.49719 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61209 7.47165 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61987.6 7.56667 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62554.4 7.63592 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61756 7.53848 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62264.1 7.60048 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61953.7 7.56258 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62913.2 7.67967 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62120.9 7.583 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62709 7.65477 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62390 7.61587 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62229.7 7.59629 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61997.7 7.56794 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-62036.5 7.57262 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61752 7.53798 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61655.6 7.52623 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62767.5 7.66194 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61803 7.54422 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62761.8 7.66122 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58303.5 7.11703 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58372.5 7.12549 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58359.9 7.12397 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58262.2 7.11204 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58041 7.08509 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58261 7.11167 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58055.7 7.0867 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58647.4 7.15904 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58203.9 7.10488 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58893.9 7.18895 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58051.5 7.08632 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58539.4 7.14586 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58554.4 7.14758 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59335.9 7.24309 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58725.8 7.16875 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58465.7 7.13677 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.8 7.06394 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58529.8 7.14462 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-57972.8 7.07665 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57725.1 7.04637 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57946.6 7.07339 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57919.5 7.07013 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57971 7.07643 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57812.9 7.05708 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58059.5 7.08722 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57860.9 7.06295 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58481.2 7.13869 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57673.5 7.04005 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57733.9 7.04747 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58243 7.10961 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.2 7.09391 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58246.7 7.11007 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61009.3 7.44733 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61630.7 7.52317 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61471.8 7.50372 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61716.9 7.53361 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61893.5 7.55524 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.6 7.48633 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61623.4 7.52221 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61911.8 7.55752 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61279.1 7.48026 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62438.1 7.62175 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61937.8 7.56062 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62078.7 7.57786 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61496.4 7.50682 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61721.2 7.53417 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61321.1 7.48534 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61930.9 7.55971 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63425.9 7.7423 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63726 7.77898 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.8 7.83822 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63931 7.80396 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64114.7 7.8264 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63881.4 7.7979 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64089.1 7.82321 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64226 7.83998 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64162.8 7.83225 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64227.3 7.84014 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63324.3 7.72992 0.00 !Mu1ChX91ERaw[C.o2At2Ch11]
+-63377.9 7.73646 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64592.4 7.88475 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64051.2 7.81864 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63785.3 7.78625 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63425.1 7.74221 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56277.1 6.86963 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56696.4 6.92087 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56524.2 6.89973 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56421.9 6.88734 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56516.9 6.89896 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-56987.1 6.95627 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57341.9 6.99957 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56590.4 6.90785 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56842.5 6.93859 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57029.9 6.96151 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57840.1 7.06034 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57754.1 7.04987 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57718.4 7.04556 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57495 7.01832 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57673.7 7.0401 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-58035.2 7.08421 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57254.3 6.98888 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57309.6 6.99565 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56813.7 6.93513 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57684.3 7.04141 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57273.6 6.99128 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57263.3 6.99002 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56331.2 6.87626 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58331 7.12035 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57448.3 7.0126 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57763.7 7.05109 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57724.2 7.04628 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57458.3 7.01385 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57586.5 7.02947 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57671.5 7.03982 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57076.6 6.9672 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57818.9 7.05784 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59628.2 -7.27891 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60484.2 -7.3834 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59719.3 -7.29006 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59358 -7.24601 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60209.4 -7.34991 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60023.9 -7.32724 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59427.4 -7.25442 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59479.8 -7.26081 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.6 -7.25995 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59661.5 -7.28303 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59523 -7.2661 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59520.7 -7.26582 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60207.7 -7.3497 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59281.6 -7.23662 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59499.5 -7.26329 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59822.2 -7.30262 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62231 -7.59672 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62517.6 -7.63166 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62462.5 -7.62493 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62047 -7.57417 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62207.3 -7.59375 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62362.9 -7.61277 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62017.5 -7.57064 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61713.9 -7.53355 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61449.1 -7.50123 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62086.1 -7.57898 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62077.7 -7.57796 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62287.6 -7.60362 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62027.9 -7.5719 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61668.6 -7.52799 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61804.8 -7.54468 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115.7 -6.85022 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56255.7 -6.86728 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55634.9 -6.79153 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55640.9 -6.79227 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55384.3 -6.76092 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56420.4 -6.88745 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55380.9 -6.76051 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55934.8 -6.82817 0.00 !Mu1ChY40ERaw[C.o3At3Ch8]
+56036.5 -6.84053 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56149.2 -6.85434 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55509.9 -6.77625 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56637.3 -6.9139 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55637.9 -6.79188 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55730.3 -6.80315 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55751.6 -6.80582 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55760.9 -6.80693 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.7 -6.9819 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56616.7 -6.91132 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56565.1 -6.90504 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56007.5 -6.83694 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56838.9 -6.93846 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56277 -6.86982 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56475.8 -6.89415 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56394.9 -6.88425 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57286.1 -6.99307 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57107.7 -6.97128 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56704.7 -6.92209 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57329.2 -6.99832 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57398.8 -7.00677 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57025.8 -6.96125 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56179.4 -6.85794 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57294.5 -6.99407 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61036 -7.45079 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61615.2 -7.52147 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61327.7 -7.48646 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61616.9 -7.52169 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61289.5 -7.48175 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60072.3 -7.33313 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60461.8 -7.38072 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61147.5 -7.46439 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60324.6 -7.36394 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61243.3 -7.47609 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60892.2 -7.43321 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60362.6 -7.36861 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60563.4 -7.39312 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60969.5 -7.44272 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60632 -7.40146 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61354.5 -7.48966 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61129 -7.46218 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61142.4 -7.46376 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61098.2 -7.45836 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60505 -7.38602 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60475.6 -7.38236 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61198.3 -7.47058 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60653.8 -7.40421 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60610.3 -7.39887 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61084.6 -7.45673 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61281.6 -7.48082 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60759.5 -7.41709 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60908.7 -7.43532 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60520.1 -7.38782 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61330.5 -7.48678 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61609.9 -7.52084 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60752.2 -7.41622 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55866.2 -6.81972 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55510.1 -6.77629 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55739.1 -6.80422 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55602.7 -6.78757 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55779.5 -6.80916 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55452.6 -6.76931 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55433.8 -6.76695 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56175.8 -6.85753 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55295 -6.75003 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55267.6 -6.74664 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55913.4 -6.82548 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55219 -6.74076 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55914.7 -6.82563 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56088.3 -6.84683 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56128.7 -6.85177 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.7 -6.9068 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54791.9 -6.68861 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55573.5 -6.78397 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55177.3 -6.73564 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.9 -6.722 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55271.1 -6.74706 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55426.4 -6.76607 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55308.9 -6.7517 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55560.5 -6.78242 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55828.4 -6.8151 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55461.9 -6.77042 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.4 -6.69404 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55154.2 -6.73277 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55218.5 -6.74067 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55198.9 -6.73821 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55347.2 -6.75638 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56270.5 -6.86904 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62771.8 7.66248 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62536.2 7.63367 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62923.2 7.68092 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62099.2 7.5803 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62071.6 7.577 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62762.5 7.66131 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62536.6 7.63372 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62863.4 7.6736 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62977.6 7.68755 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62169.2 7.58889 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62486.2 7.62758 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62494 7.62855 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62591.4 7.6404 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62596.5 7.64104 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62693.3 7.65283 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63431.9 7.74304 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62275.5 7.60186 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61847 7.54956 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61648.9 7.52542 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61472.2 7.5038 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61487.7 7.50573 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62323.6 7.60772 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62160.6 7.58783 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61801.5 7.54404 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61589.4 7.51813 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61837.9 7.54843 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61997.2 7.56788 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61886.9 7.55441 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61669.6 7.52787 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61317.6 7.48493 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62385.4 7.6153 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61544.8 7.51271 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59005.1 7.20263 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58125.4 7.0952 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58621 7.15577 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58420.8 7.13128 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58182.1 7.10215 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58179.5 7.10183 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58382.7 7.12665 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57951.6 7.074 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57619.4 7.03346 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58602.8 7.15349 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58763.6 7.17317 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58295.3 7.11601 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58611.5 7.15458 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58569.5 7.14945 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58368.6 7.12489 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58524.7 7.144 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57829.7 7.05919 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57177.7 6.97958 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58151 7.0984 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57925 7.07083 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57600.2 7.03119 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57219.8 6.9847 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57855.4 7.06228 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57682.2 7.04116 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57912.6 7.06929 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57598.9 7.03102 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57919.6 7.07016 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.5 6.9577 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57498.2 7.01871 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56729.1 6.92483 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57500.6 7.01901 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57910.6 7.06904 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63311 7.72824 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64991.8 7.93347 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-63994.5 7.8117 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63750.3 7.78186 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64408.5 7.86228 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63629 7.76702 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63438.8 7.74388 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63358.3 7.73399 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63144.6 7.70793 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63812.1 7.7894 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63662.4 7.77117 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63876.9 7.79733 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63771.1 7.78444 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63652.1 7.7699 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63600.3 7.76358 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63256.4 7.72158 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63333.7 7.73107 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63150 7.70859 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63204.5 7.71524 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63982.1 7.81015 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63771.3 7.78446 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63682.7 7.7737 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63921.1 7.80269 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63090.3 7.7013 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63548.7 7.75733 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63345.7 7.73257 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63537.7 7.75593 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63267.1 7.72292 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64614.3 7.88733 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63737 7.78019 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63627.5 7.76682 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59011.6 7.20345 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58536.3 7.14543 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58294.5 7.11592 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58764.5 7.17328 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59388.2 7.24938 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59353.9 7.24523 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58868.9 7.18606 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59020.4 7.20454 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59051.2 7.20827 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59067.7 7.21031 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58780.6 7.17527 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59011.8 7.20348 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58685.6 7.16369 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60313.6 7.36243 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58947.7 7.1956 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58640.6 7.15819 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59256.4 7.23333 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59391.4 7.24979 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59741.5 7.29254 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59153 7.2207 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59659.3 7.28255 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60043.5 7.32941 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59492.9 7.26218 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59355.9 7.2455 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60079 7.3337 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58759.7 7.17268 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59106.3 7.21501 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59356.4 7.24556 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58905.4 7.19045 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58909 7.19091 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59139.8 7.21905 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59244.4 7.23184 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63180.3 -7.71254 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63958.5 -7.80757 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62563.9 -7.63734 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63393.8 -7.73864 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62965.3 -7.6863 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62695.2 -7.65332 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63071 -7.6992 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62684.7 -7.65205 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62805.2 -7.66674 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63405.9 -7.74008 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+63006 -7.69129 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62613.8 -7.64344 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62135.8 -7.58506 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62797.8 -7.66584 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+63003.9 -7.69104 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63451.5 -7.74566 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61680.4 -7.52939 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60963.7 -7.44202 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60731.3 -7.4136 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62044.4 -7.57386 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.9 -7.46121 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60932 -7.4381 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62091.8 -7.57965 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61042.5 -7.45157 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61080.2 -7.45622 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61569 -7.51583 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61088.9 -7.45724 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61401.8 -7.49545 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61590.8 -7.51854 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61456.7 -7.50214 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61348.2 -7.48891 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61814.6 -7.54586 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56310.4 -6.87387 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56475.6 -6.89413 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56843.7 -6.93897 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56709.9 -6.9227 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+57006.5 -6.95894 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56922.7 -6.94871 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56395.9 -6.88437 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56437.5 -6.88946 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56168.1 -6.85657 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58137.4 -7.09691 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56752.1 -6.92786 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56268.3 -6.86879 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57248.3 -6.98843 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57237.7 -6.98715 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57062.5 -6.96574 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56700.2 -6.92152 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57609.4 -7.03252 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57045.1 -6.96368 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57893.4 -7.06716 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57432.1 -7.01085 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57327.3 -6.9981 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58593.6 -7.15267 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57713.2 -7.04516 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57801 -7.05589 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57750.1 -7.0497 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57564.6 -7.02705 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57513.2 -7.02079 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58298.6 -7.11669 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57883.6 -7.066 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57333.9 -6.99889 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57877.7 -7.06529 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58222.3 -7.10732 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59352.4 -7.24534 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59653 -7.28202 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59466.7 -7.25926 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60421 -7.37573 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59563.3 -7.27104 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59865.2 -7.30789 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59568.1 -7.27161 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59903.1 -7.31254 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59874.2 -7.30895 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59565.9 -7.27135 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59951.4 -7.31844 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60102.6 -7.33689 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59329 -7.24242 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59973.3 -7.32106 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59369.2 -7.24734 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60205.5 -7.34945 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60559.1 -7.39262 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61223.9 -7.47379 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60555.5 -7.39217 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61267.8 -7.47916 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61183.2 -7.46879 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60877.4 -7.43143 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60964.7 -7.44213 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61316.7 -7.48517 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60889.6 -7.43289 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60834.9 -7.42623 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61475.4 -7.50452 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60713.8 -7.41149 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61139.9 -7.46349 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60586.2 -7.39585 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61091.2 -7.45753 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61463 -7.50289 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56883.7 -6.94393 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55958.3 -6.83096 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56259.7 -6.86775 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56620.9 -6.91184 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56390.1 -6.88368 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56741.9 -6.92663 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55881.7 -6.82158 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57242.5 -6.98773 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56047.6 -6.84185 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56706.4 -6.92227 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56618.3 -6.91153 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57516.3 -7.02116 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57052.7 -6.96458 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56701.3 -6.92167 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57023.2 -6.96095 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56155.3 -6.85506 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56480.1 -6.89468 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57291 -6.99365 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56601.1 -6.90948 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56864.7 -6.94167 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56504.8 -6.89772 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56531 -6.90085 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56803.1 -6.93407 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56744.6 -6.92696 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56339.6 -6.87753 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57094.7 -6.96973 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57471.8 -7.01574 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56243.7 -6.86585 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56920.2 -6.94841 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56357.9 -6.87972 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56171.4 -6.85698 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62432 7.62115 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61898.1 7.55599 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62261.8 7.60035 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62377.7 7.61452 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61987.1 7.56678 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61925.3 7.55922 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62100.7 7.58066 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61621.8 7.5222 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61764.3 7.53956 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61918.3 7.55834 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61881.5 7.55388 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62903 7.67858 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61674.1 7.52859 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61812.4 7.54541 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61555.6 7.51408 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62627.4 7.64492 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63656.5 7.77047 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63108 7.70354 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62943.4 7.68346 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62837.7 7.67058 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62676.4 7.65089 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.8 7.70503 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63798 7.78783 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63791 7.78695 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62795 7.6654 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63502.6 7.75172 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63532.1 7.75542 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63309.9 7.72829 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63637.8 7.76831 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63587.2 7.76214 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64531.7 7.87739 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63742.8 7.78111 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59430.3 7.25494 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59220.2 7.22924 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58174.6 7.10163 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58373.6 7.12581 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58848.1 7.18369 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-59012.9 7.20387 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59307.2 7.23977 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58677.9 7.16294 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59283.1 7.23677 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58956.4 7.1969 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-59043.5 7.20751 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59047.9 7.20805 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59414.1 7.25268 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58832.8 7.18171 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59184.6 7.22469 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57410.4 7.00817 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57223.7 6.98537 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56941.7 6.95094 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57306.3 6.99545 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56939.2 6.95063 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57390.5 7.00573 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56638.3 6.91393 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57358.5 7.00183 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57684.4 7.04165 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56591.3 6.9082 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57508 7.02016 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57136.1 6.97475 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56380.4 6.88251 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56917.4 6.9481 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56824.5 6.93679 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56577 6.90664 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64140 7.82956 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63839.3 7.79281 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63564.4 7.75927 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63770.4 7.78438 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63671.6 7.77235 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63272.3 7.72359 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64307 7.84993 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62530.8 7.63314 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62672.9 7.65044 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63019 7.69272 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63152.8 7.70897 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63441 7.74419 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64109.3 7.82574 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62453.5 7.62365 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62622.2 7.64425 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63017.2 7.69251 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62453.4 7.62363 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62780.3 7.66354 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62670.1 7.65009 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62554.7 7.63598 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62062.4 7.57587 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62422.6 7.61994 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62402.7 7.61746 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.8 7.58526 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62351.6 7.61123 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62791 7.66488 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62302.7 7.60527 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62078.1 7.57785 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62829.3 7.66952 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.5 7.6367 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62144 7.5859 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62353.9 7.61152 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56131.1 6.85191 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55920.2 6.82616 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55178.7 6.73562 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55783.6 6.8095 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55958 6.83076 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55940.2 6.82857 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55976 6.83293 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55255.5 6.74498 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55479.7 6.77237 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-56040.3 6.84079 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55791.2 6.81044 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55701.6 6.79948 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56738.3 6.92598 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56293.9 6.87171 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55819.1 6.81378 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55694.2 6.79856 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57554.1 7.02556 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56976.8 6.95514 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57518.4 7.02123 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56980.7 6.95562 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58026.2 7.08323 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57191.1 6.98127 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57432 7.01071 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56290.9 6.87137 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56748.2 6.92722 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57901.7 7.06808 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57512.9 7.02056 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57112.4 6.9717 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57653.3 7.03769 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56762.7 6.92904 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57841.9 7.06073 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56524.8 6.89995 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60194.7 -7.34802 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987.9 -7.20075 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60132.2 -7.34041 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59977.5 -7.32152 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59787.4 -7.2983 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59893.4 -7.31122 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59798.6 -7.29963 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60251.3 -7.3549 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60589.5 -7.39622 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60436.6 -7.37756 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60189.7 -7.3474 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59826.4 -7.3031 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59687.2 -7.28606 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59622.1 -7.27818 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60574.8 -7.39447 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59719.2 -7.29002 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62963.1 -7.68601 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63186.9 -7.71331 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62262.3 -7.60044 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62806 -7.6668 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63246.8 -7.72062 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63550.3 -7.75759 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+63016.8 -7.69256 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62986.6 -7.68882 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63522.2 -7.75424 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63478.7 -7.7489 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62643.1 -7.64692 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63429.9 -7.74292 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62483.7 -7.62745 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62960.7 -7.68572 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63085.3 -7.7009 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62969.4 -7.68675 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84715 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56228.6 -6.86391 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55834.6 -6.81583 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55713 -6.80096 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55757 -6.80633 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56228 -6.86384 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55925.9 -6.82695 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55539.7 -6.77979 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55412.1 -6.76422 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185 -6.85859 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55981.8 -6.83375 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55370.8 -6.75918 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55748.9 -6.80537 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55612.3 -6.78871 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55926.3 -6.82699 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55801.2 -6.81172 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56670.8 -6.9179 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56949.5 -6.9519 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57147.1 -6.97597 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56960.4 -6.95318 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56493.9 -6.89629 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56963.2 -6.95364 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56581.6 -6.90701 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57050.7 -6.96421 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57076.9 -6.96747 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56623.8 -6.91216 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57493.2 -7.01827 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57089.4 -6.96896 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57586.3 -7.02963 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57044.7 -6.96349 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56777.7 -6.93089 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57421.6 -7.00961 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59437.6 -7.25562 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59994 -7.32351 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59523.9 -7.2662 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59337.1 -7.24336 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59498.6 -7.26303 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58818.6 -7.18002 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59332.2 -7.24276 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+60018.7 -7.32659 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60180.5 -7.3463 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59480.7 -7.26089 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59527.7 -7.26664 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59635.1 -7.27972 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59581.2 -7.27315 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59444.7 -7.25647 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59048.4 -7.20811 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59989.5 -7.32298 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62855.4 -7.67285 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62750.4 -7.66003 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62532.7 -7.63346 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62151.3 -7.58691 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.6 -7.57075 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62710.2 -7.65509 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62271.6 -7.60155 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62960 -7.68565 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62677.8 -7.65121 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62626.1 -7.64489 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61878.3 -7.55359 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61999.2 -7.56832 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61924.7 -7.55927 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+61995.6 -7.56788 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61960.5 -7.56357 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61833.6 -7.54812 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56731.4 -6.92523 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56909.9 -6.94702 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56318.3 -6.87484 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55946.5 -6.8294 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56299.8 -6.87252 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56328.7 -6.87609 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55986.5 -6.8343 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55996.3 -6.83546 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55858.1 -6.81861 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56336.4 -6.877 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56504.4 -6.89753 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56280.4 -6.87019 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55801.7 -6.81176 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55903.8 -6.82419 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56672.2 -6.91805 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56668.9 -6.91765 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57102.2 -6.97047 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57033.7 -6.96222 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57102 -6.97059 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+57015.2 -6.95994 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57666.6 -7.03944 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57327.3 -6.99806 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56838.8 -6.9384 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57642.3 -7.0364 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57472.4 -7.01575 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57009.2 -6.95917 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57427.6 -7.01028 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57105.1 -6.97094 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57606 -7.03198 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56852.7 -6.94013 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57287.8 -6.99311 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57526.7 -7.02236 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/calibT0.cal1 b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/calibT0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..09f74dedd1b793c1b5dd151ef57e7311b3f4476e
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Calibration/double_alpha_Ra220/calibT0.cal1
@@ -0,0 +1,1023 @@
+943.498 -0.114176 0.00 !Mu0ChX1TRaw[Co1At1Ch1]
+954.542 -0.115529 0.00 !Mu0ChX2TRaw[Co1At1Ch2]
+955.481 -0.115657 0.00 !Mu0ChX3TRaw[Co1At1Ch3]
+969.726 -0.117409 0.00 !Mu0ChX4TRaw[Co1At1Ch4]
+969.528 -0.117367 0.00 !Mu0ChX5TRaw[Co1At1Ch5]
+969.351 -0.117353 0.00 !Mu0ChX6TRaw[Co1At1Ch6]
+974.621 -0.117969 0.00 !Mu0ChX7TRaw[Co1At1Ch7]
+976.758 -0.118246 0.00 !Mu0ChX8TRaw[Co1At1Ch8]
+975.237 -0.118065 0.00 !Mu0ChX9TRaw[Co1At1Ch9]
+979.286 -0.118546 0.00 !Mu0ChX10TRaw[Co1At1Ch10]
+984.065 -0.119138 0.00 !Mu0ChX11TRaw[Co1At1Ch11]
+983.533 -0.119075 0.00 !Mu0ChX12TRaw[Co1At1Ch12]
+991.106 -0.119996 0.00 !Mu0ChX13TRaw[Co1At1Ch13]
+976.115 -0.118174 0.00 !Mu0ChX14TRaw[Co1At1Ch14]
+987.246 -0.119531 0.00 !Mu0ChX15TRaw[Co1At1Ch15]
+978.41 -0.118448 0.00 !Mu0ChX16TRaw[Co1At1Ch16]
+952.87 -0.115275 0.00 !Mu0ChX17TRaw[Co1At2Ch1]
+963.333 -0.116527 0.00 !Mu0ChX18TRaw[Co1At2Ch2]
+975.677 -0.118044 0.00 !Mu0ChX19TRaw[Co1At2Ch3]
+976.043 -0.118125 0.00 !Mu0ChX20TRaw[Co1At2Ch4]
+985.306 -0.119233 0.00 !Mu0ChX21TRaw[Co1At2Ch5]
+979.666 -0.118555 0.00 !Mu0ChX22TRaw[Co1At2Ch6]
+990.352 -0.119845 0.00 !Mu0ChX23TRaw[Co1At2Ch7]
+991.826 -0.120005 0.00 !Mu0ChX24TRaw[Co1At2Ch8]
+987.033 -0.119427 0.00 !Mu0ChX25TRaw[Co1At2Ch9]
+998.041 -0.120777 0.00 !Mu0ChX26TRaw[Co1At2Ch10]
+1000.4 -0.121057 0.00 !Mu0ChX27TRaw[Co1At2Ch11]
+1004.27 -0.121545 0.00 !Mu0ChX28TRaw[Co1At2Ch12]
+1000.07 -0.121021 0.00 !Mu0ChX29TRaw[Co1At2Ch13]
+998.458 -0.120851 0.00 !Mu0ChX30TRaw[Co1At2Ch14]
+995.135 -0.12045 0.00 !Mu0ChX31TRaw[Co1At2Ch15]
+991.094 -0.119947 0.00 !Mu0ChX32TRaw[Co1At2Ch16]
+869.874 -0.105192 0.00 !Mu0ChX33TRaw[Co1At3Ch1]
+867.818 -0.104955 0.00 !Mu0ChX34TRaw[Co1At3Ch2]
+887.963 -0.107397 0.00 !Mu0ChX35TRaw[Co1At3Ch3]
+876.58 -0.106033 0.00 !Mu0ChX36TRaw[Co1At3Ch4]
+878.364 -0.106227 0.00 !Mu0ChX37TRaw[Co1At3Ch5]
+892.804 -0.108005 0.00 !Mu0ChX38TRaw[Co1At3Ch6]
+894.475 -0.108195 0.00 !Mu0ChX39TRaw[Co1At3Ch7]
+892.476 -0.107979 0.00 !Mu0ChX40TRaw[Co1At3Ch8]
+895.157 -0.108302 0.00 !Mu0ChX41TRaw[Co1At3Ch9]
+895.419 -0.108334 0.00 !Mu0ChX42TRaw[Co1At3Ch10]
+894.752 -0.108243 0.00 !Mu0ChX43TRaw[Co1At3Ch11]
+901.721 -0.109095 0.00 !Mu0ChX44TRaw[Co1At3Ch12]
+896.865 -0.108505 0.00 !Mu0ChX45TRaw[Co1At3Ch13]
+891.69 -0.107877 0.00 !Mu0ChX46TRaw[Co1At3Ch14]
+894.258 -0.108187 0.00 !Mu0ChX47TRaw[Co1At3Ch15]
+894.901 -0.10826 0.00 !Mu0ChX48TRaw[Co1At3Ch16]
+881.631 -0.106556 0.00 !Mu0ChX49TRaw[Co1At4Ch1]
+884.86 -0.106942 0.00 !Mu0ChX50TRaw[Co1At4Ch2]
+890.381 -0.107622 0.00 !Mu0ChX51TRaw[Co1At4Ch3]
+903.08 -0.109464 0.00 !Mu0ChX52TRaw[Co1At4Ch4]
+903.944 -0.109295 0.00 !Mu0ChX53TRaw[Co1At4Ch5]
+907.059 -0.109652 0.00 !Mu0ChX54TRaw[Co1At4Ch6]
+909.716 -0.109955 0.00 !Mu0ChX55TRaw[Co1At4Ch7]
+913.814 -0.110458 0.00 !Mu0ChX56TRaw[Co1At4Ch8]
+922.196 -0.111499 0.00 !Mu0ChX57TRaw[Co1At4Ch9]
+913.548 -0.110456 0.00 !Mu0ChX58TRaw[Co1At4Ch10]
+921.22 -0.111378 0.00 !Mu0ChX59TRaw[Co1At4Ch11]
+925.852 -0.111943 0.00 !Mu0ChX60TRaw[Co1At4Ch12]
+932.855 -0.112807 0.00 !Mu0ChX61TRaw[Co1At4Ch13]
+935.505 -0.11314 0.00 !Mu0ChX62TRaw[Co1At4Ch14]
+937.107 -0.113338 0.00 !Mu0ChX63TRaw[Co1At4Ch15]
+926.099 -0.111982 0.00 !Mu0ChX64TRaw[Co1At4Ch16]
+957.155 -0.115846 0.00 !Mu0ChX65TRaw[Co2At1Ch1]
+962.206 -0.11646 0.00 !Mu0ChX66TRaw[Co2At1Ch2]
+971.895 -0.117644 0.00 !Mu0ChX67TRaw[Co2At1Ch3]
+973.151 -0.117791 0.00 !Mu0ChX68TRaw[Co2At1Ch4]
+976.443 -0.118174 0.00 !Mu0ChX69TRaw[Co2At1Ch5]
+989.114 -0.119717 0.00 !Mu0ChX70TRaw[Co2At1Ch6]
+993.741 -0.120284 0.00 !Mu0ChX71TRaw[Co2At1Ch7]
+994.917 -0.120426 0.00 !Mu0ChX72TRaw[Co2At1Ch8]
+1005.69 -0.121763 0.00 !Mu0ChX73TRaw[Co2At1Ch9]
+986.82 -0.119445 0.00 !Mu0ChX74TRaw[Co2At1Ch10]
+1003.89 -0.121535 0.00 !Mu0ChX75TRaw[Co2At1Ch11]
+994.316 -0.120381 0.00 !Mu0ChX76TRaw[Co2At1Ch12]
+1001.66 -0.121262 0.00 !Mu0ChX77TRaw[Co2At1Ch13]
+1005.75 -0.121766 0.00 !Mu0ChX78TRaw[Co2At1Ch14]
+996.228 -0.120615 0.00 !Mu0ChX79TRaw[Co2At1Ch15]
+999.032 -0.120952 0.00 !Mu0ChX80TRaw[Co2At1Ch16]
+922.493 -0.111515 0.00 !Mu0ChX81TRaw[Co2At2Ch1]
+932.405 -0.112746 0.00 !Mu0ChX82TRaw[Co2At2Ch2]
+924.498 -0.111774 0.00 !Mu0ChX83TRaw[Co2At2Ch3]
+936.88 -0.113281 0.00 !Mu0ChX84TRaw[Co2At2Ch4]
+930.333 -0.112468 0.00 !Mu0ChX85TRaw[Co2At2Ch5]
+941.329 -0.113819 0.00 !Mu0ChX86TRaw[Co2At2Ch6]
+949.396 -0.114818 0.00 !Mu0ChX87TRaw[Co2At2Ch7]
+942.586 -0.113978 0.00 !Mu0ChX88TRaw[Co2At2Ch8]
+949.288 -0.114813 0.00 !Mu0ChX89TRaw[Co2At2Ch9]
+956.784 -0.115728 0.00 !Mu0ChX90TRaw[Co2At2Ch10]
+964.341 -0.11664 0.00 !Mu0ChX91TRaw[Co2At2Ch11]
+961.03 -0.11625 0.00 !Mu0ChX92TRaw[Co2At2Ch12]
+961.407 -0.116299 0.00 !Mu0ChX93TRaw[Co2At2Ch13]
+960.173 -0.116152 0.00 !Mu0ChX94TRaw[Co2At2Ch14]
+974.188 -0.117868 0.00 !Mu0ChX95TRaw[Co2At2Ch15]
+965.16 -0.116744 0.00 !Mu0ChX96TRaw[Co2At2Ch16]
+868.319 -0.105013 0.00 !Mu0ChX97TRaw[Co2At3Ch1]
+877.769 -0.106169 0.00 !Mu0ChX98TRaw[Co2At3Ch2]
+878.126 -0.106212 0.00 !Mu0ChX99TRaw[Co2At3Ch3]
+883.907 -0.106905 0.00 !Mu0ChX100TRaw[Co2At3Ch4]
+893.227 -0.108043 0.00 !Mu0ChX101TRaw[Co2At3Ch5]
+900.551 -0.108935 0.00 !Mu0ChX102TRaw[Co2At3Ch6]
+896.432 -0.108442 0.00 !Mu0ChX103TRaw[Co2At3Ch7]
+894.569 -0.108194 0.00 !Mu0ChX104TRaw[Co2At3Ch8]
+903.782 -0.109336 0.00 !Mu0ChX105TRaw[Co2At3Ch9]
+901.487 -0.109053 0.00 !Mu0ChX106TRaw[Co2At3Ch10]
+907.332 -0.109771 0.00 !Mu0ChX107TRaw[Co2At3Ch11]
+904.852 -0.109449 0.00 !Mu0ChX108TRaw[Co2At3Ch12]
+902.075 -0.109128 0.00 !Mu0ChX109TRaw[Co2At3Ch13]
+906.169 -0.109641 0.00 !Mu0ChX110TRaw[Co2At3Ch14]
+902.566 -0.109177 0.00 !Mu0ChX111TRaw[Co2At3Ch15]
+904.912 -0.109478 0.00 !Mu0ChX112TRaw[Co2At3Ch16]
+888.355 -0.107364 0.00 !Mu0ChX113TRaw[Co2At4Ch1]
+891.484 -0.107748 0.00 !Mu0ChX114TRaw[Co2At4Ch2]
+891.715 -0.107782 0.00 !Mu0ChX115TRaw[Co2At4Ch3]
+901.831 -0.109007 0.00 !Mu0ChX116TRaw[Co2At4Ch4]
+905.323 -0.109423 0.00 !Mu0ChX117TRaw[Co2At4Ch5]
+898.889 -0.108648 0.00 !Mu0ChX118TRaw[Co2At4Ch6]
+913.375 -0.110413 0.00 !Mu0ChX119TRaw[Co2At4Ch7]
+914.714 -0.110579 0.00 !Mu0ChX120TRaw[Co2At4Ch8]
+908.954 -0.109898 0.00 !Mu0ChX121TRaw[Co2At4Ch9]
+914.168 -0.1105 0.00 !Mu0ChX122TRaw[Co2At4Ch10]
+922.429 -0.111529 0.00 !Mu0ChX123TRaw[Co2At4Ch11]
+914.821 -0.110604 0.00 !Mu0ChX124TRaw[Co2At4Ch12]
+917.725 -0.110972 0.00 !Mu0ChX125TRaw[Co2At4Ch13]
+919.575 -0.11118 0.00 !Mu0ChX126TRaw[Co2At4Ch14]
+914.799 -0.110613 0.00 !Mu0ChX127TRaw[Co2At4Ch15]
+919.481 -0.111151 0.00 !Mu0ChX128TRaw[Co2At4Ch16]
+944.925 -0.114033 0.00 !Mu0ChY2TRaw[Co3At1Ch2]
+944.005 -0.113921 0.00 !Mu0ChY3TRaw[Co3At1Ch3]
+962.012 -0.116104 0.00 !Mu0ChY4TRaw[Co3At1Ch4]
+957.491 -0.115563 0.00 !Mu0ChY5TRaw[Co3At1Ch5]
+973.261 -0.117481 0.00 !Mu0ChY6TRaw[Co3At1Ch6]
+971.85 -0.117339 0.00 !Mu0ChY7TRaw[Co3At1Ch7]
+969.183 -0.117018 0.00 !Mu0ChY8TRaw[Co3At1Ch8]
+975.83 -0.117842 0.00 !Mu0ChY9TRaw[Co3At1Ch9]
+971.457 -0.117316 0.00 !Mu0ChY10TRaw[Co3At1Ch10]
+974.23 -0.117632 0.00 !Mu0ChY11TRaw[Co3At1Ch11]
+980.648 -0.118398 0.00 !Mu0ChY12TRaw[Co3At1Ch12]
+978.32 -0.11814 0.00 !Mu0ChY13TRaw[Co3At1Ch13]
+974.115 -0.117633 0.00 !Mu0ChY14TRaw[Co3At1Ch14]
+976.65 -0.117944 0.00 !Mu0ChY15TRaw[Co3At1Ch15]
+983.277 -0.118761 0.00 !Mu0ChY16TRaw[Co3At1Ch16]
+938.109 -0.113175 0.00 !Mu0ChY17TRaw[Co3At2Ch1]
+947.448 -0.114309 0.00 !Mu0ChY18TRaw[Co3At2Ch2]
+956.035 -0.115351 0.00 !Mu0ChY19TRaw[Co3At2Ch3]
+947.978 -0.11436 0.00 !Mu0ChY20TRaw[Co3At2Ch4]
+950.631 -0.114686 0.00 !Mu0ChY21TRaw[Co3At2Ch5]
+953.963 -0.115103 0.00 !Mu0ChY22TRaw[Co3At2Ch6]
+959.973 -0.115832 0.00 !Mu0ChY23TRaw[Co3At2Ch7]
+959.848 -0.115841 0.00 !Mu0ChY24TRaw[Co3At2Ch8]
+964.52 -0.116398 0.00 !Mu0ChY25TRaw[Co3At2Ch9]
+962.989 -0.116195 0.00 !Mu0ChY26TRaw[Co3At2Ch10]
+959.157 -0.115516 0.00 !Mu0ChY27TRaw[Co3At2Ch11]
+973.941 -0.117562 0.00 !Mu0ChY28TRaw[Co3At2Ch12]
+976.25 -0.117834 0.00 !Mu0ChY29TRaw[Co3At2Ch13]
+971.294 -0.11722 0.00 !Mu0ChY30TRaw[Co3At2Ch14]
+974.292 -0.11759 0.00 !Mu0ChY31TRaw[Co3At2Ch15]
+968.991 -0.116928 0.00 !Mu0ChY32TRaw[Co3At2Ch16]
+871.769 -0.105131 0.00 !Mu0ChY33TRaw[Co3At3Ch1]
+871.608 -0.105113 0.00 !Mu0ChY34TRaw[Co3At3Ch2]
+888.383 -0.107174 0.00 !Mu0ChY35TRaw[Co3At3Ch3]
+878.496 -0.105955 0.00 !Mu0ChY36TRaw[Co3At3Ch4]
+889.979 -0.107363 0.00 !Mu0ChY37TRaw[Co3At3Ch5]
+889.448 -0.107278 0.00 !Mu0ChY38TRaw[Co3At3Ch6]
+889.860 -0.107347 0.00 !Mu0ChY39TRaw[Co3At3Ch7]
+908.071 -0.109567 0.00 !Mu0ChY40TRaw[Co3At3Ch8]
+905.490 -0.109285 0.00 !Mu0ChY41TRaw[Co3At3Ch9]
+903.864 -0.109045 0.00 !Mu0ChY42TRaw[Co3At3Ch10]
+902.655 -0.108924 0.00 !Mu0ChY43TRaw[Co3At3Ch11]
+913.208 -0.110196 0.00 !Mu0ChY44TRaw[Co3At3Ch12]
+910.710 -0.109895 0.00 !Mu0ChY45TRaw[Co3At3Ch13]
+905.186 -0.109240 0.00 !Mu0ChY46TRaw[Co3At3Ch14]
+915.646 -0.110513 0.00 !Mu0ChY47TRaw[Co3At3Ch15]
+903.665 -0.109056 0.00 !Mu0ChY48TRaw[Co3At3Ch16]
+859.176 -0.103507 0.00 !Mu0ChY49TRaw[Co3At4Ch1]
+870.909 -0.104888 0.00 !Mu0ChY50TRaw[Co3At4Ch2]
+866.307 -0.104347 0.00 !Mu0ChY51TRaw[Co3At4Ch3]
+883.056 -0.106391 0.00 !Mu0ChY52TRaw[Co3At4Ch4]
+885.647 -0.106718 0.00 !Mu0ChY53TRaw[Co3At4Ch5]
+886.974 -0.106878 0.00 !Mu0ChY54TRaw[Co3At4Ch6]
+883.169 -0.106441 0.00 !Mu0ChY55TRaw[Co3At4Ch7]
+891.212 -0.107426 0.00 !Mu0ChY56TRaw[Co3At4Ch8]
+892.785 -0.107608 0.00 !Mu0ChY57TRaw[Co3At4Ch9]
+897.104 -0.108136 0.00 !Mu0ChY58TRaw[Co3At4Ch10]
+904.326 -0.109012 0.00 !Mu0ChY59TRaw[Co3At4Ch11]
+903.135 -0.108611 0.00 !Mu0ChY60TRaw[Co3At4Ch12]
+901.746 -0.108719 0.00 !Mu0ChY61TRaw[Co3At4Ch13]
+908.712 -0.109581 0.00 !Mu0ChY62TRaw[Co3At4Ch14]
+903.269 -0.108895 0.00 !Mu0ChY63TRaw[Co3At4Ch15]
+908.687 -0.109543 0.00 !Mu0ChY64TRaw[Co3At4Ch16]
+963.864 -0.116469 0.00 !Mu0ChY65TRaw[Co4At1Ch1]
+970.82 -0.117302 0.00 !Mu0ChY66TRaw[Co4At1Ch2]
+976.574 -0.118012 0.00 !Mu0ChY67TRaw[Co4At1Ch3]
+976.674 -0.118028 0.00 !Mu0ChY68TRaw[Co4At1Ch4]
+979.506 -0.118378 0.00 !Mu0ChY69TRaw[Co4At1Ch5]
+983.206 -0.118825 0.00 !Mu0ChY70TRaw[Co4At1Ch6]
+982.64 -0.118781 0.00 !Mu0ChY71TRaw[Co4At1Ch7]
+985.816 -0.119156 0.00 !Mu0ChY72TRaw[Co4At1Ch8]
+989.544 -0.119628 0.00 !Mu0ChY73TRaw[Co4At1Ch9]
+981.143 -0.118591 0.00 !Mu0ChY74TRaw[Co4At1Ch10]
+989.884 -0.119656 0.00 !Mu0ChY75TRaw[Co4At1Ch11]
+1000.31 -0.120924 0.00 !Mu0ChY76TRaw[Co4At1Ch12]
+995.389 -0.120327 0.00 !Mu0ChY77TRaw[Co4At1Ch13]
+997.331 -0.120579 0.00 !Mu0ChY78TRaw[Co4At1Ch14]
+994.499 -0.120247 0.00 !Mu0ChY79TRaw[Co4At1Ch15]
+1001.6 -0.121097 0.00 !Mu0ChY80TRaw[Co4At1Ch16]
+970.056 -0.117145 0.00 !Mu0ChY81TRaw[Co4At2Ch1]
+986.117 -0.119118 0.00 !Mu0ChY82TRaw[Co4At2Ch2]
+981.373 -0.118534 0.00 !Mu0ChY83TRaw[Co4At2Ch3]
+995.859 -0.12031 0.00 !Mu0ChY84TRaw[Co4At2Ch4]
+999.672 -0.120777 0.00 !Mu0ChY85TRaw[Co4At2Ch5]
+1002.22 -0.121085 0.00 !Mu0ChY86TRaw[Co4At2Ch6]
+998.019 -0.120569 0.00 !Mu0ChY87TRaw[Co4At2Ch7]
+1008.32 -0.121839 0.00 !Mu0ChY88TRaw[Co4At2Ch8]
+1004.28 -0.121339 0.00 !Mu0ChY89TRaw[Co4At2Ch9]
+1014.52 -0.122592 0.00 !Mu0ChY90TRaw[Co4At2Ch10]
+1025.22 -0.123897 0.00 !Mu0ChY91TRaw[Co4At2Ch11]
+1024.79 -0.123866 0.00 !Mu0ChY92TRaw[Co4At2Ch12]
+1019.8 -0.123256 0.00 !Mu0ChY93TRaw[Co4At2Ch13]
+1024.3 -0.123786 0.00 !Mu0ChY94TRaw[Co4At2Ch14]
+1021.08 -0.123408 0.00 !Mu0ChY95TRaw[Co4At2Ch15]
+1016.6 -0.122879 0.00 !Mu0ChY96TRaw[Co4At2Ch16]
+882.25 -0.106544 0.00 !Mu0ChY97TRaw[Co4At3Ch1]
+878.942 -0.106139 0.00 !Mu0ChY98TRaw[Co4At3Ch2]
+878.021 -0.106028 0.00 !Mu0ChY99TRaw[Co4At3Ch3]
+894.625 -0.108041 0.00 !Mu0ChY100TRaw[Co4At3Ch4]
+891.724 -0.107707 0.00 !Mu0ChY101TRaw[Co4At3Ch5]
+890.686 -0.10757 0.00 !Mu0ChY102TRaw[Co4At3Ch6]
+895.168 -0.108105 0.00 !Mu0ChY103TRaw[Co4At3Ch7]
+907.124 -0.10959 0.00 !Mu0ChY104TRaw[Co4At3Ch8]
+901.739 -0.108916 0.00 !Mu0ChY105TRaw[Co4At3Ch9]
+914.99 -0.110544 0.00 !Mu0ChY106TRaw[Co4At3Ch10]
+910.27 -0.109981 0.00 !Mu0ChY107TRaw[Co4At3Ch11]
+914.704 -0.11051 0.00 !Mu0ChY108TRaw[Co4At3Ch12]
+913.859 -0.110421 0.00 !Mu0ChY109TRaw[Co4At3Ch13]
+909.547 -0.109894 0.00 !Mu0ChY110TRaw[Co4At3Ch14]
+915.137 -0.110572 0.00 !Mu0ChY111TRaw[Co4At3Ch15]
+917.078 -0.110803 0.00 !Mu0ChY112TRaw[Co4At3Ch16]
+891.216 -0.107535 0.00 !Mu0ChY113TRaw[Co4At4Ch1]
+899.129 -0.108466 0.00 !Mu0ChY114TRaw[Co4At4Ch2]
+898.718 -0.108438 0.00 !Mu0ChY115TRaw[Co4At4Ch3]
+904.591 -0.109158 0.00 !Mu0ChY116TRaw[Co4At4Ch4]
+916.06 -0.110566 0.00 !Mu0ChY117TRaw[Co4At4Ch5]
+909.441 -0.109757 0.00 !Mu0ChY118TRaw[Co4At4Ch6]
+929.211 -0.112167 0.00 !Mu0ChY119TRaw[Co4At4Ch7]
+920.724 -0.111146 0.00 !Mu0ChY120TRaw[Co4At4Ch8]
+931.107 -0.112407 0.00 !Mu0ChY121TRaw[Co4At4Ch9]
+930.357 -0.112337 0.00 !Mu0ChY122TRaw[Co4At4Ch10]
+932.102 -0.112539 0.00 !Mu0ChY123TRaw[Co4At4Ch11]
+935.662 -0.112978 0.00 !Mu0ChY124TRaw[Co4At4Ch12]
+930.191 -0.112316 0.00 !Mu0ChY125TRaw[Co4At4Ch13]
+929.054 -0.112192 0.00 !Mu0ChY126TRaw[Co4At4Ch14]
+926.166 -0.111821 0.00 !Mu0ChY127TRaw[Co4At4Ch15]
+929.013 -0.112162 0.00 !Mu0ChY128TRaw[Co4At4Ch16]
+928.571 -0.11232 0.00 !Mu1ChX1TRaw[Co1At1Ch1]
+942.493 -0.114015 0.00 !Mu1ChX2TRaw[Co1At1Ch2]
+944.985 -0.114341 0.00 !Mu1ChX3TRaw[Co1At1Ch3]
+956.226 -0.115712 0.00 !Mu1ChX4TRaw[Co1At1Ch4]
+956.679 -0.115744 0.00 !Mu1ChX5TRaw[Co1At1Ch5]
+958.458 -0.115962 0.00 !Mu1ChX6TRaw[Co1At1Ch6]
+971.702 -0.117589 0.00 !Mu1ChX7TRaw[Co1At1Ch7]
+966.768 -0.116998 0.00 !Mu1ChX8TRaw[Co1At1Ch8]
+970.872 -0.117498 0.00 !Mu1ChX9TRaw[Co1At1Ch9]
+979.817 -0.118577 0.00 !Mu1ChX10TRaw[Co1At1Ch10]
+976.301 -0.118143 0.00 !Mu1ChX11TRaw[Co1At1Ch11]
+975.435 -0.118071 0.00 !Mu1ChX12TRaw[Co1At1Ch12]
+987.534 -0.11954 0.00 !Mu1ChX13TRaw[Co1At1Ch13]
+988.145 -0.119597 0.00 !Mu1ChX14TRaw[Co1At1Ch14]
+985.177 -0.119236 0.00 !Mu1ChX15TRaw[Co1At1Ch15]
+984.559 -0.119179 0.00 !Mu1ChX16TRaw[Co1At1Ch16]
+924.661 -0.111777 0.00 !Mu1ChX17TRaw[Co1At2Ch1]
+947.862 -0.114612 0.00 !Mu1ChX18TRaw[Co1At2Ch2]
+948.76 -0.114738 0.00 !Mu1ChX19TRaw[Co1At2Ch3]
+946.29 -0.114439 0.00 !Mu1ChX20TRaw[Co1At2Ch4]
+954.686 -0.115464 0.00 !Mu1ChX21TRaw[Co1At2Ch5]
+967.911 -0.117052 0.00 !Mu1ChX22TRaw[Co1At2Ch6]
+957.223 -0.115762 0.00 !Mu1ChX23TRaw[Co1At2Ch7]
+973.476 -0.117739 0.00 !Mu1ChX24TRaw[Co1At2Ch8]
+971.664 -0.117531 0.00 !Mu1ChX25TRaw[Co1At2Ch9]
+974.918 -0.117923 0.00 !Mu1ChX26TRaw[Co1At2Ch10]
+973.502 -0.117737 0.00 !Mu1ChX27TRaw[Co1At2Ch11]
+977.242 -0.11821 0.00 !Mu1ChX28TRaw[Co1At2Ch12]
+981.073 -0.118677 0.00 !Mu1ChX29TRaw[Co1At2Ch13]
+978.26 -0.118324 0.00 !Mu1ChX30TRaw[Co1At2Ch14]
+977.151 -0.118198 0.00 !Mu1ChX31TRaw[Co1At2Ch15]
+984.794 -0.119148 0.00 !Mu1ChX32TRaw[Co1At2Ch16]
+878.025 -0.106165 0.00 !Mu1ChX33TRaw[Co1At3Ch1]
+877.927 -0.10618 0.00 !Mu1ChX34TRaw[Co1At3Ch2]
+893.294 -0.108064 0.00 !Mu1ChX35TRaw[Co1At3Ch3]
+876.051 -0.105941 0.00 !Mu1ChX36TRaw[Co1At3Ch4]
+893.827 -0.108105 0.00 !Mu1ChX37TRaw[Co1At3Ch5]
+899.59 -0.108823 0.00 !Mu1ChX38TRaw[Co1At3Ch6]
+891.87 -0.107861 0.00 !Mu1ChX39TRaw[Co1At3Ch7]
+896.377 -0.10842 0.00 !Mu1ChX40TRaw[Co1At3Ch8]
+899.273 -0.108779 0.00 !Mu1ChX41TRaw[Co1At3Ch9]
+898.912 -0.108754 0.00 !Mu1ChX42TRaw[Co1At3Ch10]
+907.617 -0.109783 0.00 !Mu1ChX43TRaw[Co1At3Ch11]
+899.789 -0.108855 0.00 !Mu1ChX44TRaw[Co1At3Ch12]
+909.299 -0.110019 0.00 !Mu1ChX45TRaw[Co1At3Ch13]
+907.769 -0.109854 0.00 !Mu1ChX46TRaw[Co1At3Ch14]
+905.232 -0.109528 0.00 !Mu1ChX47TRaw[Co1At3Ch15]
+909.577 -0.110055 0.00 !Mu1ChX48TRaw[Co1At3Ch16]
+868.163 -0.104838 0.00 !Mu1ChX49TRaw[Co1At4Ch1]
+873.224 -0.105455 0.00 !Mu1ChX50TRaw[Co1At4Ch2]
+885.913 -0.107015 0.00 !Mu1ChX51TRaw[Co1At4Ch3]
+888.452 -0.107338 0.00 !Mu1ChX52TRaw[Co1At4Ch4]
+891.233 -0.107685 0.00 !Mu1ChX53TRaw[Co1At4Ch5]
+891.534 -0.107699 0.00 !Mu1ChX54TRaw[Co1At4Ch6]
+895.39 -0.10819 0.00 !Mu1ChX55TRaw[Co1At4Ch7]
+901.392 -0.108878 0.00 !Mu1ChX56TRaw[Co1At4Ch8]
+907.775 -0.1097 0.00 !Mu1ChX57TRaw[Co1At4Ch9]
+903.537 -0.10916 0.00 !Mu1ChX58TRaw[Co1At4Ch10]
+912.271 -0.110244 0.00 !Mu1ChX59TRaw[Co1At4Ch11]
+904.646 -0.109308 0.00 !Mu1ChX60TRaw[Co1At4Ch12]
+917.556 -0.110894 0.00 !Mu1ChX61TRaw[Co1At4Ch13]
+909.067 -0.109867 0.00 !Mu1ChX62TRaw[Co1At4Ch14]
+908.514 -0.109791 0.00 !Mu1ChX63TRaw[Co1At4Ch15]
+916.574 -0.110777 0.00 !Mu1ChX64TRaw[Co1At4Ch16]
+951.079 -0.114723 0.00 !Mu1ChX65TRaw[Co2At1Ch1]
+952.897 -0.114949 0.00 !Mu1ChX66TRaw[Co2At1Ch2]
+966.461 -0.116629 0.00 !Mu1ChX67TRaw[Co2At1Ch3]
+965.985 -0.116557 0.00 !Mu1ChX68TRaw[Co2At1Ch4]
+968.322 -0.116827 0.00 !Mu1ChX69TRaw[Co2At1Ch5]
+976.11 -0.117811 0.00 !Mu1ChX70TRaw[Co2At1Ch6]
+975.867 -0.117758 0.00 !Mu1ChX71TRaw[Co2At1Ch7]
+981.064 -0.118392 0.00 !Mu1ChX72TRaw[Co2At1Ch8]
+978.32 -0.118063 0.00 !Mu1ChX73TRaw[Co2At1Ch9]
+992.972 -0.119853 0.00 !Mu1ChX74TRaw[Co2At1Ch10]
+989.034 -0.119377 0.00 !Mu1ChX75TRaw[Co2At1Ch11]
+987.234 -0.119141 0.00 !Mu1ChX76TRaw[Co2At1Ch12]
+994.058 -0.119982 0.00 !Mu1ChX77TRaw[Co2At1Ch13]
+995.957 -0.120199 0.00 !Mu1ChX78TRaw[Co2At1Ch14]
+995.79 -0.1202 0.00 !Mu1ChX79TRaw[Co2At1Ch15]
+1000.15 -0.120722 0.00 !Mu1ChX80TRaw[Co2At1Ch16]
+976.704 -0.117775 0.00 !Mu1ChX81TRaw[Co2At2Ch1]
+978.841 -0.118024 0.00 !Mu1ChX82TRaw[Co2At2Ch2]
+983.919 -0.118652 0.00 !Mu1ChX83TRaw[Co2At2Ch3]
+997.371 -0.120307 0.00 !Mu1ChX84TRaw[Co2At2Ch4]
+996.925 -0.120215 0.00 !Mu1ChX85TRaw[Co2At2Ch5]
+1006.21 -0.121389 0.00 !Mu1ChX86TRaw[Co2At2Ch6]
+1007.52 -0.121554 0.00 !Mu1ChX87TRaw[Co2At2Ch7]
+999.416 -0.12057 0.00 !Mu1ChX88TRaw[Co2At2Ch8]
+1013.91 -0.122345 0.00 !Mu1ChX89TRaw[Co2At2Ch9]
+1016.22 -0.12261 0.00 !Mu1ChX90TRaw[Co2At2Ch10]
+1011.77 -0.122082 0.00 !Mu1ChX91TRaw[Co2At2Ch11]
+1018.04 -0.12282 0.00 !Mu1ChX92TRaw[Co2At2Ch12]
+1017.49 -0.12279 0.00 !Mu1ChX93TRaw[Co2At2Ch13]
+1020.31 -0.123127 0.00 !Mu1ChX94TRaw[Co2At2Ch14]
+1019.96 -0.123096 0.00 !Mu1ChX95TRaw[Co2At2Ch15]
+1008.1 -0.12163 0.00 !Mu1ChX96TRaw[Co2At2Ch16]
+892.824 -0.107613 0.00 !Mu1ChX97TRaw[Co2At3Ch1]
+890.901 -0.107373 0.00 !Mu1ChX98TRaw[Co2At3Ch2]
+894.556 -0.107838 0.00 !Mu1ChX99TRaw[Co2At3Ch3]
+905.994 -0.109224 0.00 !Mu1ChX100TRaw[Co2At3Ch4]
+905.741 -0.1092 0.00 !Mu1ChX101TRaw[Co2At3Ch5]
+910.629 -0.109791 0.00 !Mu1ChX102TRaw[Co2At3Ch6]
+906.206 -0.109268 0.00 !Mu1ChX103TRaw[Co2At3Ch7]
+921.692 -0.111151 0.00 !Mu1ChX104TRaw[Co2At3Ch8]
+922.784 -0.11128 0.00 !Mu1ChX105TRaw[Co2At3Ch9]
+924.5 -0.111467 0.00 !Mu1ChX106TRaw[Co2At3Ch10]
+928.983 -0.112035 0.00 !Mu1ChX107TRaw[Co2At3Ch11]
+924.661 -0.111519 0.00 !Mu1ChX108TRaw[Co2At3Ch12]
+925.485 -0.111616 0.00 !Mu1ChX109TRaw[Co2At3Ch13]
+917.32 -0.110627 0.00 !Mu1ChX110TRaw[Co2At3Ch14]
+920.078 -0.110941 0.00 !Mu1ChX111TRaw[Co2At3Ch15]
+926.646 -0.11176 0.00 !Mu1ChX112TRaw[Co2At3Ch16]
+900.671 -0.108476 0.00 !Mu1ChX113TRaw[Co2At4Ch1]
+901.745 -0.108567 0.00 !Mu1ChX114TRaw[Co2At4Ch2]
+908.74 -0.10946 0.00 !Mu1ChX115TRaw[Co2At4Ch3]
+914.468 -0.110136 0.00 !Mu1ChX116TRaw[Co2At4Ch4]
+929.323 -0.111977 0.00 !Mu1ChX117TRaw[Co2At4Ch5]
+923.812 -0.111304 0.00 !Mu1ChX118TRaw[Co2At4Ch6]
+935.93 -0.112781 0.00 !Mu1ChX119TRaw[Co2At4Ch7]
+918.363 -0.110659 0.00 !Mu1ChX120TRaw[Co2At4Ch8]
+923.868 -0.111325 0.00 !Mu1ChX121TRaw[Co2At4Ch9]
+931.448 -0.112226 0.00 !Mu1ChX122TRaw[Co2At4Ch10]
+932.559 -0.11236 0.00 !Mu1ChX123TRaw[Co2At4Ch11]
+927.829 -0.111775 0.00 !Mu1ChX124TRaw[Co2At4Ch12]
+925.186 -0.111483 0.00 !Mu1ChX125TRaw[Co2At4Ch13]
+931.059 -0.112193 0.00 !Mu1ChX126TRaw[Co2At4Ch14]
+934.329 -0.112614 0.00 !Mu1ChX127TRaw[Co2At4Ch15]
+928.424 -0.111864 0.00 !Mu1ChX128TRaw[Co2At4Ch16]
+935.35 -0.11282 0.00 !Mu1ChY1TRaw[Co3At1Ch1]
+937.191 -0.113022 0.00 !Mu1ChY2TRaw[Co3At1Ch2]
+948.029 -0.114361 0.00 !Mu1ChY3TRaw[Co3At1Ch3]
+952.035 -0.114834 0.00 !Mu1ChY4TRaw[Co3At1Ch4]
+954.252 -0.115122 0.00 !Mu1ChY5TRaw[Co3At1Ch5]
+957.621 -0.115533 0.00 !Mu1ChY6TRaw[Co3At1Ch6]
+960.868 -0.115938 0.00 !Mu1ChY7TRaw[Co3At1Ch7]
+950.839 -0.114726 0.00 !Mu1ChY8TRaw[Co3At1Ch8]
+958.21 -0.11562 0.00 !Mu1ChY9TRaw[Co3At1Ch9]
+968.288 -0.116854 0.00 !Mu1ChY10TRaw[Co3At1Ch10]
+964.104 -0.116368 0.00 !Mu1ChY11TRaw[Co3At1Ch11]
+972.004 -0.117327 0.00 !Mu1ChY12TRaw[Co3At1Ch12]
+972.184 -0.117358 0.00 !Mu1ChY13TRaw[Co3At1Ch13]
+967.943 -0.116827 0.00 !Mu1ChY14TRaw[Co3At1Ch14]
+969.17 -0.116981 0.00 !Mu1ChY15TRaw[Co3At1Ch15]
+966.891 -0.116717 0.00 !Mu1ChY16TRaw[Co3At1Ch16]
+968.928 -0.116883 0.00 !Mu1ChY17TRaw[Co3At2Ch1]
+971.207 -0.117128 0.00 !Mu1ChY18TRaw[Co3At2Ch2]
+975.423 -0.117665 0.00 !Mu1ChY19TRaw[Co3At2Ch3]
+976.249 -0.117743 0.00 !Mu1ChY20TRaw[Co3At2Ch4]
+987.572 -0.119146 0.00 !Mu1ChY21TRaw[Co3At2Ch5]
+984.536 -0.118747 0.00 !Mu1ChY22TRaw[Co3At2Ch6]
+987.751 -0.119189 0.00 !Mu1ChY23TRaw[Co3At2Ch7]
+994.23 -0.119964 0.00 !Mu1ChY24TRaw[Co3At2Ch8]
+995.905 -0.120158 0.00 !Mu1ChY25TRaw[Co3At2Ch9]
+995.946 -0.120176 0.00 !Mu1ChY26TRaw[Co3At2Ch10]
+1000.5 -0.120728 0.00 !Mu1ChY27TRaw[Co3At2Ch11]
+995.25 -0.120113 0.00 !Mu1ChY28TRaw[Co3At2Ch12]
+997.145 -0.120339 0.00 !Mu1ChY29TRaw[Co3At2Ch13]
+988.864 -0.119308 0.00 !Mu1ChY30TRaw[Co3At2Ch14]
+995.199 -0.120108 0.00 !Mu1ChY31TRaw[Co3At2Ch15]
+990.383 -0.119515 0.00 !Mu1ChY32TRaw[Co3At2Ch16]
+1002.87 -0.141377 0.00 !Mu1ChY33TRaw[Co3At3Ch1]
+884.995 -0.106691 0.00 !Mu1ChY34TRaw[Co3At3Ch2]
+886.581 -0.106848 0.00 !Mu1ChY35TRaw[Co3At3Ch3]
+896.019 -0.108037 0.00 !Mu1ChY36TRaw[Co3At3Ch4]
+8.48677e+11 -1.03827e+08 0.00 !Mu1ChY37TRaw[Co3At3Ch5]
+907.311 -0.109433 0.00 !Mu1ChY38TRaw[Co3At3Ch6]
+897.171 -0.108164 0.00 !Mu1ChY39TRaw[Co3At3Ch7]
+907.451 -0.10944 0.00 !Mu1ChY40TRaw[Co3At3Ch8]
+895.245 -0.107957 0.00 !Mu1ChY41TRaw[Co3At3Ch9]
+908.035 -0.109521 0.00 !Mu1ChY42TRaw[Co3At3Ch10]
+900.767 -0.108623 0.00 !Mu1ChY43TRaw[Co3At3Ch11]
+909.45 -0.10969 0.00 !Mu1ChY44TRaw[Co3At3Ch12]
+911.966 -0.109989 0.00 !Mu1ChY45TRaw[Co3At3Ch13]
+906.33 -0.109312 0.00 !Mu1ChY46TRaw[Co3At3Ch14]
+910.732 -0.109844 0.00 !Mu1ChY47TRaw[Co3At3Ch15]
+905.741 -0.109257 0.00 !Mu1ChY48TRaw[Co3At3Ch16]
+887.986 -0.10696 0.00 !Mu1ChY49TRaw[Co3At4Ch1]
+887.216 -0.106852 0.00 !Mu1ChY50TRaw[Co3At4Ch2]
+883.77 -0.106436 0.00 !Mu1ChY51TRaw[Co3At4Ch3]
+896.97 -0.108049 0.00 !Mu1ChY52TRaw[Co3At4Ch4]
+903.022 -0.108781 0.00 !Mu1ChY53TRaw[Co3At4Ch5]
+904.319 -0.108923 0.00 !Mu1ChY54TRaw[Co3At4Ch6]
+904.183 -0.108922 0.00 !Mu1ChY55TRaw[Co3At4Ch7]
+904.336 -0.108949 0.00 !Mu1ChY56TRaw[Co3At4Ch8]
+916.034 -0.110395 0.00 !Mu1ChY57TRaw[Co3At4Ch9]
+915.216 -0.110294 0.00 !Mu1ChY58TRaw[Co3At4Ch10]
+910.734 -0.109746 0.00 !Mu1ChY59TRaw[Co3At4Ch11]
+913.293 -0.109802 0.00 !Mu1ChY60TRaw[Co3At4Ch12]
+910.448 -0.109742 0.00 !Mu1ChY61TRaw[Co3At4Ch13]
+918.647 -0.11072 0.00 !Mu1ChY62TRaw[Co3At4Ch14]
+920.049 -0.110879 0.00 !Mu1ChY63TRaw[Co3At4Ch15]
+921.093 -0.111037 0.00 !Mu1ChY64TRaw[Co3At4Ch16]
+950.903 -0.115194 0.00 !Mu1ChY65TRaw[Co4At1Ch1]
+958.17 -0.116053 0.00 !Mu1ChY66TRaw[Co4At1Ch2]
+963.945 -0.116788 0.00 !Mu1ChY67TRaw[Co4At1Ch3]
+967.43 -0.117211 0.00 !Mu1ChY68TRaw[Co4At1Ch4]
+970.687 -0.117617 0.00 !Mu1ChY69TRaw[Co4At1Ch5]
+978.784 -0.118609 0.00 !Mu1ChY70TRaw[Co4At1Ch6]
+974.345 -0.118053 0.00 !Mu1ChY71TRaw[Co4At1Ch7]
+982.479 -0.119038 0.00 !Mu1ChY72TRaw[Co4At1Ch8]
+983.419 -0.119163 0.00 !Mu1ChY73TRaw[Co4At1Ch9]
+986.47 -0.119552 0.00 !Mu1ChY74TRaw[Co4At1Ch10]
+988.169 -0.119777 0.00 !Mu1ChY75TRaw[Co4At1Ch11]
+985.147 -0.119391 0.00 !Mu1ChY76TRaw[Co4At1Ch12]
+988.378 -0.11981 0.00 !Mu1ChY77TRaw[Co4At1Ch13]
+985.922 -0.119505 0.00 !Mu1ChY78TRaw[Co4At1Ch14]
+986.667 -0.119601 0.00 !Mu1ChY79TRaw[Co4At1Ch15]
+991.793 -0.120194 0.00 !Mu1ChY80TRaw[Co4At1Ch16]
+947.005 -0.114646 0.00 !Mu1ChY81TRaw[Co4At2Ch1]
+955.512 -0.115676 0.00 !Mu1ChY82TRaw[Co4At2Ch2]
+954.266 -0.115551 0.00 !Mu1ChY83TRaw[Co4At2Ch3]
+961.213 -0.116392 0.00 !Mu1ChY84TRaw[Co4At2Ch4]
+960.803 -0.116344 0.00 !Mu1ChY85TRaw[Co4At2Ch5]
+971.068 -0.117589 0.00 !Mu1ChY86TRaw[Co4At2Ch6]
+971.908 -0.117699 0.00 !Mu1ChY87TRaw[Co4At2Ch7]
+978.963 -0.118567 0.00 !Mu1ChY88TRaw[Co4At2Ch8]
+980.181 -0.118705 0.00 !Mu1ChY89TRaw[Co4At2Ch9]
+972.849 -0.117807 0.00 !Mu1ChY90TRaw[Co4At2Ch10]
+977.401 -0.118376 0.00 !Mu1ChY91TRaw[Co4At2Ch11]
+985.257 -0.119333 0.00 !Mu1ChY92TRaw[Co4At2Ch12]
+986.001 -0.119429 0.00 !Mu1ChY93TRaw[Co4At2Ch13]
+978.94 -0.118576 0.00 !Mu1ChY94TRaw[Co4At2Ch14]
+982.604 -0.119031 0.00 !Mu1ChY95TRaw[Co4At2Ch15]
+994.308 -0.120471 0.00 !Mu1ChY96TRaw[Co4At2Ch16]
+876.691 -0.106136 0.00 !Mu1ChY97TRaw[Co4At3Ch1]
+875.524 -0.106 0.00 !Mu1ChY98TRaw[Co4At3Ch2]
+880.13 -0.106555 0.00 !Mu1ChY99TRaw[Co4At3Ch3]
+894.071 -0.108263 0.00 !Mu1ChY100TRaw[Co4At3Ch4]
+891.902 -0.10801 0.00 !Mu1ChY101TRaw[Co4At3Ch5]
+884.05 -0.107044 0.00 !Mu1ChY102TRaw[Co4At3Ch6]
+891.891 -0.108005 0.00 !Mu1ChY103TRaw[Co4At3Ch7]
+895.11 -0.108406 0.00 !Mu1ChY104TRaw[Co4At3Ch8]
+905.296 -0.109653 0.00 !Mu1ChY105TRaw[Co4At3Ch9]
+902.144 -0.10926 0.00 !Mu1ChY106TRaw[Co4At3Ch10]
+905.347 -0.10967 0.00 !Mu1ChY107TRaw[Co4At3Ch11]
+896.217 -0.108536 0.00 !Mu1ChY108TRaw[Co4At3Ch12]
+903.241 -0.109417 0.00 !Mu1ChY109TRaw[Co4At3Ch13]
+910.268 -0.110268 0.00 !Mu1ChY110TRaw[Co4At3Ch14]
+900.796 -0.109108 0.00 !Mu1ChY111TRaw[Co4At3Ch15]
+906.635 -0.109824 0.00 !Mu1ChY112TRaw[Co4At3Ch16]
+862.399 -0.104291 0.00 !Mu1ChY113TRaw[Co4At4Ch1]
+856.141 -0.103549 0.00 !Mu1ChY114TRaw[Co4At4Ch2]
+866.517 -0.104798 0.00 !Mu1ChY115TRaw[Co4At4Ch3]
+861.488 -0.10419 0.00 !Mu1ChY116TRaw[Co4At4Ch4]
+869.88 -0.105221 0.00 !Mu1ChY117TRaw[Co4At4Ch5]
+879.073 -0.106354 0.00 !Mu1ChY118TRaw[Co4At4Ch6]
+883.458 -0.1069 0.00 !Mu1ChY119TRaw[Co4At4Ch7]
+878.318 -0.106252 0.00 !Mu1ChY120TRaw[Co4At4Ch8]
+895.691 -0.108379 0.00 !Mu1ChY121TRaw[Co4At4Ch9]
+896.571 -0.108492 0.00 !Mu1ChY122TRaw[Co4At4Ch10]
+894.464 -0.108225 0.00 !Mu1ChY123TRaw[Co4At4Ch11]
+893.509 -0.108132 0.00 !Mu1ChY124TRaw[Co4At4Ch12]
+895.809 -0.108412 0.00 !Mu1ChY125TRaw[Co4At4Ch13]
+891.015 -0.10784 0.00 !Mu1ChY126TRaw[Co4At4Ch14]
+888.724 -0.107526 0.00 !Mu1ChY127TRaw[Co4At4Ch15]
+899.797 -0.109448 0.00 !Mu1ChY128TRaw[Co4At4Ch16]
+937.316 -0.113282 0.00 !Mu2ChX1TRaw[Co1At1Ch1]
+934.385 -0.112935 0.00 !Mu2ChX2TRaw[Co1At1Ch2]
+942.34 -0.113903 0.00 !Mu2ChX3TRaw[Co1At1Ch3]
+954.458 -0.11541 0.00 !Mu2ChX4TRaw[Co1At1Ch4]
+950.139 -0.114834 0.00 !Mu2ChX5TRaw[Co1At1Ch5]
+967.561 -0.116968 0.00 !Mu2ChX6TRaw[Co1At1Ch6]
+960.77 -0.116144 0.00 !Mu2ChX7TRaw[Co1At1Ch7]
+965.567 -0.116738 0.00 !Mu2ChX8TRaw[Co1At1Ch8]
+957.421 -0.115736 0.00 !Mu2ChX9TRaw[Co1At1Ch9]
+969.399 -0.117191 0.00 !Mu2ChX10TRaw[Co1At1Ch10]
+971.909 -0.117505 0.00 !Mu2ChX11TRaw[Co1At1Ch11]
+966.623 -0.116868 0.00 !Mu2ChX12TRaw[Co1At1Ch12]
+972.522 -0.117596 0.00 !Mu2ChX13TRaw[Co1At1Ch13]
+966.551 -0.116864 0.00 !Mu2ChX14TRaw[Co1At1Ch14]
+967.053 -0.116934 0.00 !Mu2ChX15TRaw[Co1At1Ch15]
+976.535 -0.118078 0.00 !Mu2ChX16TRaw[Co1At1Ch16]
+919.521 -0.111042 0.00 !Mu2ChX17TRaw[Co1At2Ch1]
+934.725 -0.1129 0.00 !Mu2ChX18TRaw[Co1At2Ch2]
+937.478 -0.113239 0.00 !Mu2ChX19TRaw[Co1At2Ch3]
+936.381 -0.11311 0.00 !Mu2ChX20TRaw[Co1At2Ch4]
+947.225 -0.114433 0.00 !Mu2ChX21TRaw[Co1At2Ch5]
+942.935 -0.113893 0.00 !Mu2ChX22TRaw[Co1At2Ch6]
+940.462 -0.113604 0.00 !Mu2ChX23TRaw[Co1At2Ch7]
+948.676 -0.114596 0.00 !Mu2ChX24TRaw[Co1At2Ch8]
+939.674 -0.113523 0.00 !Mu2ChX25TRaw[Co1At2Ch9]
+947.97 -0.114529 0.00 !Mu2ChX26TRaw[Co1At2Ch10]
+948.456 -0.114587 0.00 !Mu2ChX27TRaw[Co1At2Ch11]
+944.632 -0.114127 0.00 !Mu2ChX28TRaw[Co1At2Ch12]
+952.149 -0.115049 0.00 !Mu2ChX29TRaw[Co1At2Ch13]
+948.307 -0.114577 0.00 !Mu2ChX30TRaw[Co1At2Ch14]
+950.078 -0.114801 0.00 !Mu2ChX31TRaw[Co1At2Ch15]
+949.489 -0.114725 0.00 !Mu2ChX32TRaw[Co1At2Ch16]
+884.424 -0.106884 0.00 !Mu2ChX33TRaw[Co1At3Ch1]
+881.912 -0.106588 0.00 !Mu2ChX34TRaw[Co1At3Ch2]
+891.212 -0.10771 0.00 !Mu2ChX35TRaw[Co1At3Ch3]
+888.472 -0.10739 0.00 !Mu2ChX36TRaw[Co1At3Ch4]
+902.325 -0.109058 0.00 !Mu2ChX37TRaw[Co1At3Ch5]
+899.193 -0.108685 0.00 !Mu2ChX38TRaw[Co1At3Ch6]
+906.762 -0.109605 0.00 !Mu2ChX39TRaw[Co1At3Ch7]
+903.506 -0.109211 0.00 !Mu2ChX40TRaw[Co1At3Ch8]
+903.2 -0.109168 0.00 !Mu2ChX41TRaw[Co1At3Ch9]
+907.04 -0.109617 0.00 !Mu2ChX42TRaw[Co1At3Ch10]
+913.192 -0.1104 0.00 !Mu2ChX43TRaw[Co1At3Ch11]
+912.001 -0.110254 0.00 !Mu2ChX44TRaw[Co1At3Ch12]
+920.039 -0.111219 0.00 !Mu2ChX45TRaw[Co1At3Ch13]
+918.464 -0.111043 0.00 !Mu2ChX46TRaw[Co1At3Ch14]
+921.268 -0.111378 0.00 !Mu2ChX47TRaw[Co1At3Ch15]
+917.17 -0.11089 0.00 !Mu2ChX48TRaw[Co1At3Ch16]
+853.022 -0.102956 0.00 !Mu2ChX49TRaw[Co1At4Ch1]
+863.294 -0.104191 0.00 !Mu2ChX50TRaw[Co1At4Ch2]
+872.886 -0.105362 0.00 !Mu2ChX51TRaw[Co1At4Ch3]
+866.918 -0.10464 0.00 !Mu2ChX52TRaw[Co1At4Ch4]
+875.67 -0.105723 0.00 !Mu2ChX53TRaw[Co1At4Ch5]
+875.93 -0.105755 0.00 !Mu2ChX54TRaw[Co1At4Ch6]
+877.811 -0.105984 0.00 !Mu2ChX55TRaw[Co1At4Ch7]
+885.543 -0.106931 0.00 !Mu2ChX56TRaw[Co1At4Ch8]
+894.49 -0.108024 0.00 !Mu2ChX57TRaw[Co1At4Ch9]
+896.907 -0.108307 0.00 !Mu2ChX58TRaw[Co1At4Ch10]
+888.44 -0.107279 0.00 !Mu2ChX59TRaw[Co1At4Ch11]
+898.738 -0.108543 0.00 !Mu2ChX60TRaw[Co1At4Ch12]
+900.163 -0.108721 0.00 !Mu2ChX61TRaw[Co1At4Ch13]
+899.711 -0.108665 0.00 !Mu2ChX62TRaw[Co1At4Ch14]
+896.224 -0.10824 0.00 !Mu2ChX63TRaw[Co1At4Ch15]
+893.403 -0.107885 0.00 !Mu2ChX64TRaw[Co1At4Ch16]
+971.844 -0.117533 0.00 !Mu2ChX65TRaw[Co2At1Ch1]
+971.845 -0.117545 0.00 !Mu2ChX66TRaw[Co2At1Ch2]
+983.582 -0.118957 0.00 !Mu2ChX67TRaw[Co2At1Ch3]
+988.69 -0.119584 0.00 !Mu2ChX68TRaw[Co2At1Ch4]
+990.616 -0.119902 0.00 !Mu2ChX69TRaw[Co2At1Ch5]
+992.058 -0.12002 0.00 !Mu2ChX70TRaw[Co2At1Ch6]
+993.193 -0.120171 0.00 !Mu2ChX71TRaw[Co2At1Ch7]
+998.567 -0.120802 0.00 !Mu2ChX72TRaw[Co2At1Ch8]
+991.75 -0.119977 0.00 !Mu2ChX73TRaw[Co2At1Ch9]
+1000.28 -0.12102 0.00 !Mu2ChX74TRaw[Co2At1Ch10]
+996.389 -0.12055 0.00 !Mu2ChX75TRaw[Co2At1Ch11]
+995.946 -0.12048 0.00 !Mu2ChX76TRaw[Co2At1Ch12]
+1005.69 -0.121688 0.00 !Mu2ChX77TRaw[Co2At1Ch13]
+1009.38 -0.122136 0.00 !Mu2ChX78TRaw[Co2At1Ch14]
+1012.08 -0.122472 0.00 !Mu2ChX79TRaw[Co2At1Ch15]
+1003.93 -0.121488 0.00 !Mu2ChX80TRaw[Co2At1Ch16]
+952.869 -0.115148 0.00 !Mu2ChX81TRaw[Co2At2Ch1]
+964.034 -0.116512 0.00 !Mu2ChX82TRaw[Co2At2Ch2]
+965.866 -0.116735 0.00 !Mu2ChX83TRaw[Co2At2Ch3]
+969.343 -0.117158 0.00 !Mu2ChX84TRaw[Co2At2Ch4]
+969.333 -0.117159 0.00 !Mu2ChX85TRaw[Co2At2Ch5]
+970.748 -0.117336 0.00 !Mu2ChX86TRaw[Co2At2Ch6]
+984.429 -0.118997 0.00 !Mu2ChX87TRaw[Co2At2Ch7]
+983.229 -0.118879 0.00 !Mu2ChX88TRaw[Co2At2Ch8]
+993.933 -0.120152 0.00 !Mu2ChX89TRaw[Co2At2Ch9]
+993.652 -0.120143 0.00 !Mu2ChX90TRaw[Co2At2Ch10]
+992.615 -0.120011 0.00 !Mu2ChX91TRaw[Co2At2Ch11]
+982.481 -0.118788 0.00 !Mu2ChX92TRaw[Co2At2Ch12]
+997.508 -0.120614 0.00 !Mu2ChX93TRaw[Co2At2Ch13]
+1001.7 -0.12112 0.00 !Mu2ChX94TRaw[Co2At2Ch14]
+1002.51 -0.12123 0.00 !Mu2ChX95TRaw[Co2At2Ch15]
+987.604 -0.119394 0.00 !Mu2ChX96TRaw[Co2At2Ch16]
+901.312 -0.10895 0.00 !Mu2ChX97TRaw[Co2At3Ch1]
+917.986 -0.11099 0.00 !Mu2ChX98TRaw[Co2At3Ch2]
+913.934 -0.110483 0.00 !Mu2ChX99TRaw[Co2At3Ch3]
+913.949 -0.110494 0.00 !Mu2ChX100TRaw[Co2At3Ch4]
+923.435 -0.11163 0.00 !Mu2ChX101TRaw[Co2At3Ch5]
+922.621 -0.111573 0.00 !Mu2ChX102TRaw[Co2At3Ch6]
+921.076 -0.111368 0.00 !Mu2ChX103TRaw[Co2At3Ch7]
+925.346 -0.111888 0.00 !Mu2ChX104TRaw[Co2At3Ch8]
+935.581 -0.113122 0.00 !Mu2ChX105TRaw[Co2At3Ch9]
+932.485 -0.112764 0.00 !Mu2ChX106TRaw[Co2At3Ch10]
+937.5 -0.113373 0.00 !Mu2ChX107TRaw[Co2At3Ch11]
+932.715 -0.112797 0.00 !Mu2ChX108TRaw[Co2At3Ch12]
+935.979 -0.113176 0.00 !Mu2ChX109TRaw[Co2At3Ch13]
+942.445 -0.113973 0.00 !Mu2ChX110TRaw[Co2At3Ch14]
+943.181 -0.114066 0.00 !Mu2ChX111TRaw[Co2At3Ch15]
+942.414 -0.113973 0.00 !Mu2ChX112TRaw[Co2At3Ch16]
+902.2 -0.108961 0.00 !Mu2ChX113TRaw[Co2At4Ch1]
+906.889 -0.109531 0.00 !Mu2ChX114TRaw[Co2At4Ch2]
+914.61 -0.110461 0.00 !Mu2ChX115TRaw[Co2At4Ch3]
+914.139 -0.110414 0.00 !Mu2ChX116TRaw[Co2At4Ch4]
+929.709 -0.112323 0.00 !Mu2ChX117TRaw[Co2At4Ch5]
+932.582 -0.11267 0.00 !Mu2ChX118TRaw[Co2At4Ch6]
+938.012 -0.113333 0.00 !Mu2ChX119TRaw[Co2At4Ch7]
+940.971 -0.113698 0.00 !Mu2ChX120TRaw[Co2At4Ch8]
+940.564 -0.113666 0.00 !Mu2ChX121TRaw[Co2At4Ch9]
+949.44 -0.114745 0.00 !Mu2ChX122TRaw[Co2At4Ch10]
+940.75 -0.113673 0.00 !Mu2ChX123TRaw[Co2At4Ch11]
+946.851 -0.11443 0.00 !Mu2ChX124TRaw[Co2At4Ch12]
+936.518 -0.113174 0.00 !Mu2ChX125TRaw[Co2At4Ch13]
+936.181 -0.113143 0.00 !Mu2ChX126TRaw[Co2At4Ch14]
+944.748 -0.114176 0.00 !Mu2ChX127TRaw[Co2At4Ch15]
+944.971 -0.114186 0.00 !Mu2ChX128TRaw[Co2At4Ch16]
+989.947 -0.119525 0.00 !Mu2ChY1TRaw[Co3At1Ch1]
+993.077 -0.119903 0.00 !Mu2ChY2TRaw[Co3At1Ch2]
+992.258 -0.119776 0.00 !Mu2ChY3TRaw[Co3At1Ch3]
+998.524 -0.120524 0.00 !Mu2ChY4TRaw[Co3At1Ch4]
+1003.53 -0.121165 0.00 !Mu2ChY5TRaw[Co3At1Ch5]
+1001.78 -0.120947 0.00 !Mu2ChY6TRaw[Co3At1Ch6]
+1006.43 -0.121526 0.00 !Mu2ChY7TRaw[Co3At1Ch7]
+1013.44 -0.122366 0.00 !Mu2ChY8TRaw[Co3At1Ch8]
+1014.58 -0.122539 0.00 !Mu2ChY9TRaw[Co3At1Ch9]
+1006.22 -0.121307 0.00 !Mu2ChY10TRaw[Co3At1Ch10]
+1012.4 -0.122275 0.00 !Mu2ChY11TRaw[Co3At1Ch11]
+1017.56 -0.122898 0.00 !Mu2ChY12TRaw[Co3At1Ch12]
+1019.48 -0.12312 0.00 !Mu2ChY13TRaw[Co3At1Ch13]
+1024.68 -0.123746 0.00 !Mu2ChY14TRaw[Co3At1Ch14]
+1023.43 -0.123621 0.00 !Mu2ChY15TRaw[Co3At1Ch15]
+1024.2 -0.123744 0.00 !Mu2ChY16TRaw[Co3At1Ch16]
+942.022 -0.113632 0.00 !Mu2ChY17TRaw[Co3At2Ch1]
+941.851 -0.11359 0.00 !Mu2ChY18TRaw[Co3At2Ch2]
+941.301 -0.113546 0.00 !Mu2ChY19TRaw[Co3At2Ch3]
+941.196 -0.113526 0.00 !Mu2ChY20TRaw[Co3At2Ch4]
+956.339 -0.115367 0.00 !Mu2ChY21TRaw[Co3At2Ch5]
+972.159 -0.117305 0.00 !Mu2ChY22TRaw[Co3At2Ch6]
+968.071 -0.11682 0.00 !Mu2ChY23TRaw[Co3At2Ch7]
+963.198 -0.116216 0.00 !Mu2ChY24TRaw[Co3At2Ch8]
+978.802 -0.118134 0.00 !Mu2ChY25TRaw[Co3At2Ch9]
+981.332 -0.118446 0.00 !Mu2ChY26TRaw[Co3At2Ch10]
+978.515 -0.117858 0.00 !Mu2ChY27TRaw[Co3At2Ch11]
+985.445 -0.11895 0.00 !Mu2ChY28TRaw[Co3At2Ch12]
+979.656 -0.118238 0.00 !Mu2ChY29TRaw[Co3At2Ch13]
+981.57 -0.118468 0.00 !Mu2ChY30TRaw[Co3At2Ch14]
+980.383 -0.118337 0.00 !Mu2ChY31TRaw[Co3At2Ch15]
+968.968 -0.116905 0.00 !Mu2ChY32TRaw[Co3At2Ch16]
+874.116 -0.105393 0.00 !Mu2ChY33TRaw[Co3At3Ch1]
+880.638 -0.106206 0.00 !Mu2ChY34TRaw[Co3At3Ch2]
+893.026 -0.107711 0.00 !Mu2ChY35TRaw[Co3At3Ch3]
+894.339 -0.10786 0.00 !Mu2ChY36TRaw[Co3At3Ch4]
+897.82 -0.108297 0.00 !Mu2ChY37TRaw[Co3At3Ch5]
+892.44 -0.107628 0.00 !Mu2ChY38TRaw[Co3At3Ch6]
+908.152 -0.109574 0.00 !Mu2ChY39TRaw[Co3At3Ch7]
+906.817 -0.109401 0.00 !Mu2ChY40TRaw[Co3At3Ch8]
+909.649 -0.109756 0.00 !Mu2ChY41TRaw[Co3At3Ch9]
+914.061 -0.110304 0.00 !Mu2ChY42TRaw[Co3At3Ch10]
+910.049 -0.10979 0.00 !Mu2ChY43TRaw[Co3At3Ch11]
+913.535 -0.110231 0.00 !Mu2ChY44TRaw[Co3At3Ch12]
+915.986 -0.110532 0.00 !Mu2ChY45TRaw[Co3At3Ch13]
+919.243 -0.110907 0.00 !Mu2ChY46TRaw[Co3At3Ch14]
+922.863 -0.111371 0.00 !Mu2ChY47TRaw[Co3At3Ch15]
+918.091 -0.110791 0.00 !Mu2ChY48TRaw[Co3At3Ch16]
+896.545 -0.108016 0.00 !Mu2ChY49TRaw[Co3At4Ch1]
+905.921 -0.109155 0.00 !Mu2ChY50TRaw[Co3At4Ch2]
+903.191 -0.108834 0.00 !Mu2ChY51TRaw[Co3At4Ch3]
+916.514 -0.110471 0.00 !Mu2ChY52TRaw[Co3At4Ch4]
+909.698 -0.109622 0.00 !Mu2ChY53TRaw[Co3At4Ch5]
+918.472 -0.110708 0.00 !Mu2ChY54TRaw[Co3At4Ch6]
+921.934 -0.111116 0.00 !Mu2ChY55TRaw[Co3At4Ch7]
+917.791 -0.11061 0.00 !Mu2ChY56TRaw[Co3At4Ch8]
+930.463 -0.11216 0.00 !Mu2ChY57TRaw[Co3At4Ch9]
+921.545 -0.111079 0.00 !Mu2ChY58TRaw[Co3At4Ch10]
+924.357 -0.111393 0.00 !Mu2ChY59TRaw[Co3At4Ch11]
+928.134 -0.11168 0.00 !Mu2ChY60TRaw[Co3At4Ch12]
+944.074 -0.11386 0.00 !Mu2ChY61TRaw[Co3At4Ch13]
+929.497 -0.112068 0.00 !Mu2ChY62TRaw[Co3At4Ch14]
+925.938 -0.111623 0.00 !Mu2ChY63TRaw[Co3At4Ch15]
+933.858 -0.112593 0.00 !Mu2ChY64TRaw[Co3At4Ch16]
+926.3 -0.111864 0.00 !Mu2ChY65TRaw[Co4At1Ch1]
+945.736 -0.114242 0.00 !Mu2ChY66TRaw[Co4At1Ch2]
+950.053 -0.114763 0.00 !Mu2ChY67TRaw[Co4At1Ch3]
+947.803 -0.114477 0.00 !Mu2ChY68TRaw[Co4At1Ch4]
+974.181 -0.117701 0.00 !Mu2ChY69TRaw[Co4At1Ch5]
+962.11 -0.116242 0.00 !Mu2ChY70TRaw[Co4At1Ch6]
+969.683 -0.117144 0.00 !Mu2ChY71TRaw[Co4At1Ch7]
+966.661 -0.116783 0.00 !Mu2ChY72TRaw[Co4At1Ch8]
+958.107 -0.115747 0.00 !Mu2ChY73TRaw[Co4At1Ch9]
+960.237 -0.115989 0.00 !Mu2ChY74TRaw[Co4At1Ch10]
+966.385 -0.116762 0.00 !Mu2ChY75TRaw[Co4At1Ch11]
+979.2 -0.118324 0.00 !Mu2ChY76TRaw[Co4At1Ch12]
+975.406 -0.117892 0.00 !Mu2ChY77TRaw[Co4At1Ch13]
+977.792 -0.118194 0.00 !Mu2ChY78TRaw[Co4At1Ch14]
+968.878 -0.117092 0.00 !Mu2ChY79TRaw[Co4At1Ch15]
+971.01 -0.117343 0.00 !Mu2ChY80TRaw[Co4At1Ch16]
+946.074 -0.114246 0.00 !Mu2ChY81TRaw[Co4At2Ch1]
+940.751 -0.113582 0.00 !Mu2ChY82TRaw[Co4At2Ch2]
+952.983 -0.115097 0.00 !Mu2ChY83TRaw[Co4At2Ch3]
+948.889 -0.114574 0.00 !Mu2ChY84TRaw[Co4At2Ch4]
+957.63 -0.115653 0.00 !Mu2ChY85TRaw[Co4At2Ch5]
+968.091 -0.11692 0.00 !Mu2ChY86TRaw[Co4At2Ch6]
+966.176 -0.116695 0.00 !Mu2ChY87TRaw[Co4At2Ch7]
+971.862 -0.117388 0.00 !Mu2ChY88TRaw[Co4At2Ch8]
+974.809 -0.117739 0.00 !Mu2ChY89TRaw[Co4At2Ch9]
+976.466 -0.11797 0.00 !Mu2ChY90TRaw[Co4At2Ch10]
+981.048 -0.118525 0.00 !Mu2ChY91TRaw[Co4At2Ch11]
+971.816 -0.117371 0.00 !Mu2ChY92TRaw[Co4At2Ch12]
+979.537 -0.118331 0.00 !Mu2ChY93TRaw[Co4At2Ch13]
+979.044 -0.118283 0.00 !Mu2ChY94TRaw[Co4At2Ch14]
+986.328 -0.119174 0.00 !Mu2ChY95TRaw[Co4At2Ch15]
+991.309 -0.119806 0.00 !Mu2ChY96TRaw[Co4At2Ch16]
+899.526 -0.108639 0.00 !Mu2ChY97TRaw[Co4At3Ch1]
+896.011 -0.108189 0.00 !Mu2ChY98TRaw[Co4At3Ch2]
+906.665 -0.109474 0.00 !Mu2ChY99TRaw[Co4At3Ch3]
+905.068 -0.109308 0.00 !Mu2ChY100TRaw[Co4At3Ch4]
+919.012 -0.110997 0.00 !Mu2ChY101TRaw[Co4At3Ch5]
+926.674 -0.111938 0.00 !Mu2ChY102TRaw[Co4At3Ch6]
+916.909 -0.110746 0.00 !Mu2ChY103TRaw[Co4At3Ch7]
+932.767 -0.112691 0.00 !Mu2ChY104TRaw[Co4At3Ch8]
+927.33 -0.112025 0.00 !Mu2ChY105TRaw[Co4At3Ch9]
+923.243 -0.111507 0.00 !Mu2ChY106TRaw[Co4At3Ch10]
+924.408 -0.111663 0.00 !Mu2ChY107TRaw[Co4At3Ch11]
+924.057 -0.111623 0.00 !Mu2ChY108TRaw[Co4At3Ch12]
+927.531 -0.112066 0.00 !Mu2ChY109TRaw[Co4At3Ch13]
+928.251 -0.11214 0.00 !Mu2ChY110TRaw[Co4At3Ch14]
+924.467 -0.111703 0.00 !Mu2ChY111TRaw[Co4At3Ch15]
+914.871 -0.110525 0.00 !Mu2ChY112TRaw[Co4At3Ch16]
+854.155 -0.102981 0.00 !Mu2ChY113TRaw[Co4At4Ch1]
+870.733 -0.104976 0.00 !Mu2ChY114TRaw[Co4At4Ch2]
+878.476 -0.105936 0.00 !Mu2ChY115TRaw[Co4At4Ch3]
+876.793 -0.10575 0.00 !Mu2ChY116TRaw[Co4At4Ch4]
+884.881 -0.106741 0.00 !Mu2ChY117TRaw[Co4At4Ch5]
+881.171 -0.10628 0.00 !Mu2ChY118TRaw[Co4At4Ch6]
+893.636 -0.107805 0.00 !Mu2ChY119TRaw[Co4At4Ch7]
+894.919 -0.107966 0.00 !Mu2ChY120TRaw[Co4At4Ch8]
+885.067 -0.106759 0.00 !Mu2ChY121TRaw[Co4At4Ch9]
+898.226 -0.108381 0.00 !Mu2ChY122TRaw[Co4At4Ch10]
+896.617 -0.108195 0.00 !Mu2ChY123TRaw[Co4At4Ch11]
+896.617 -0.108195 0.00 !Mu2ChY124TRaw[Co4At4Ch12]
+899.421 -0.108519 0.00 !Mu2ChY125TRaw[Co4At4Ch13]
+900.193 -0.10863 0.00 !Mu2ChY126TRaw[Co4At4Ch14]
+901.229 -0.108768 0.00 !Mu2ChY127TRaw[Co4At4Ch15]
+897.311 -0.108297 0.00 !Mu2ChY128TRaw[Co4At4Ch16]
+938.354 -0.113591 0.00 !Mu3ChX1TRaw[Co1At1Ch1]
+952.054 -0.115254 0.00 !Mu3ChX2TRaw[Co1At1Ch2]
+956.534 -0.115822 0.00 !Mu3ChX3TRaw[Co1At1Ch3]
+958.488 -0.116042 0.00 !Mu3ChX4TRaw[Co1At1Ch4]
+950.724 -0.115096 0.00 !Mu3ChX5TRaw[Co1At1Ch5]
+965.196 -0.11686 0.00 !Mu3ChX6TRaw[Co1At1Ch6]
+969.308 -0.117385 0.00 !Mu3ChX7TRaw[Co1At1Ch7]
+974.569 -0.118019 0.00 !Mu3ChX8TRaw[Co1At1Ch8]
+972.643 -0.117779 0.00 !Mu3ChX9TRaw[Co1At1Ch9]
+970.352 -0.117496 0.00 !Mu3ChX10TRaw[Co1At1Ch10]
+972.778 -0.117795 0.00 !Mu3ChX11TRaw[Co1At1Ch11]
+984.9 -0.119273 0.00 !Mu3ChX12TRaw[Co1At1Ch12]
+974.806 -0.118031 0.00 !Mu3ChX13TRaw[Co1At1Ch13]
+981.032 -0.118805 0.00 !Mu3ChX14TRaw[Co1At1Ch14]
+978.727 -0.118524 0.00 !Mu3ChX15TRaw[Co1At1Ch15]
+983.561 -0.119127 0.00 !Mu3ChX16TRaw[Co1At1Ch16]
+967.055 -0.117029 0.00 !Mu3ChX17TRaw[Co1At2Ch1]
+963.403 -0.116582 0.00 !Mu3ChX18TRaw[Co1At2Ch2]
+982.136 -0.11886 0.00 !Mu3ChX19TRaw[Co1At2Ch3]
+978.048 -0.118386 0.00 !Mu3ChX20TRaw[Co1At2Ch4]
+985.228 -0.119229 0.00 !Mu3ChX21TRaw[Co1At2Ch5]
+992.422 -0.120114 0.00 !Mu3ChX22TRaw[Co1At2Ch6]
+984.595 -0.119177 0.00 !Mu3ChX23TRaw[Co1At2Ch7]
+988.858 -0.119693 0.00 !Mu3ChX24TRaw[Co1At2Ch8]
+986.58 -0.119405 0.00 !Mu3ChX25TRaw[Co1At2Ch9]
+987.489 -0.119523 0.00 !Mu3ChX26TRaw[Co1At2Ch10]
+1000.74 -0.12115 0.00 !Mu3ChX27TRaw[Co1At2Ch11]
+996.509 -0.120628 0.00 !Mu3ChX28TRaw[Co1At2Ch12]
+1006.69 -0.121885 0.00 !Mu3ChX29TRaw[Co1At2Ch13]
+999.766 -0.121035 0.00 !Mu3ChX30TRaw[Co1At2Ch14]
+1001.37 -0.121233 0.00 !Mu3ChX31TRaw[Co1At2Ch15]
+996.617 -0.120654 0.00 !Mu3ChX32TRaw[Co1At2Ch16]
+898.105 -0.108693 0.00 !Mu3ChX33TRaw[Co1At3Ch1]
+904.446 -0.109485 0.00 !Mu3ChX34TRaw[Co1At3Ch2]
+912.143 -0.110421 0.00 !Mu3ChX35TRaw[Co1At3Ch3]
+905.421 -0.109588 0.00 !Mu3ChX36TRaw[Co1At3Ch4]
+911.321 -0.110301 0.00 !Mu3ChX37TRaw[Co1At3Ch5]
+919.499 -0.111327 0.00 !Mu3ChX38TRaw[Co1At3Ch6]
+921.109 -0.111495 0.00 !Mu3ChX39TRaw[Co1At3Ch7]
+929.489 -0.112521 0.00 !Mu3ChX40TRaw[Co1At3Ch8]
+937.068 -0.11347 0.00 !Mu3ChX41TRaw[Co1At3Ch9]
+930.942 -0.112717 0.00 !Mu3ChX42TRaw[Co1At3Ch10]
+927.894 -0.112335 0.00 !Mu3ChX43TRaw[Co1At3Ch11]
+932.632 -0.112964 0.00 !Mu3ChX44TRaw[Co1At3Ch12]
+935.332 -0.113245 0.00 !Mu3ChX45TRaw[Co1At3Ch13]
+929.857 -0.11258 0.00 !Mu3ChX46TRaw[Co1At3Ch14]
+937.136 -0.113476 0.00 !Mu3ChX47TRaw[Co1At3Ch15]
+935.398 -0.113256 0.00 !Mu3ChX48TRaw[Co1At3Ch16]
+866.015 -0.104661 0.00 !Mu3ChX49TRaw[Co1At4Ch1]
+865.76 -0.104634 0.00 !Mu3ChX50TRaw[Co1At4Ch2]
+878.223 -0.106155 0.00 !Mu3ChX51TRaw[Co1At4Ch3]
+888.186 -0.107364 0.00 !Mu3ChX52TRaw[Co1At4Ch4]
+888.209 -0.107368 0.00 !Mu3ChX53TRaw[Co1At4Ch5]
+884.13 -0.106861 0.00 !Mu3ChX54TRaw[Co1At4Ch6]
+896.431 -0.108382 0.00 !Mu3ChX55TRaw[Co1At4Ch7]
+899.348 -0.108733 0.00 !Mu3ChX56TRaw[Co1At4Ch8]
+896.795 -0.10844 0.00 !Mu3ChX57TRaw[Co1At4Ch9]
+902.052 -0.10908 0.00 !Mu3ChX58TRaw[Co1At4Ch10]
+897.684 -0.108538 0.00 !Mu3ChX59TRaw[Co1At4Ch11]
+897.274 -0.10849 0.00 !Mu3ChX60TRaw[Co1At4Ch12]
+903.963 -0.109312 0.00 !Mu3ChX61TRaw[Co1At4Ch13]
+905.108 -0.109445 0.00 !Mu3ChX62TRaw[Co1At4Ch14]
+891.538 -0.107803 0.00 !Mu3ChX63TRaw[Co1At4Ch15]
+900.293 -0.108862 0.00 !Mu3ChX64TRaw[Co1At4Ch16]
+985.824 -0.119126 0.00 !Mu3ChX65TRaw[Co2At1Ch1]
+991.541 -0.119789 0.00 !Mu3ChX66TRaw[Co2At1Ch2]
+991.866 -0.119851 0.00 !Mu3ChX67TRaw[Co2At1Ch3]
+1007.5 -0.121753 0.00 !Mu3ChX68TRaw[Co2At1Ch4]
+1008.13 -0.121824 0.00 !Mu3ChX69TRaw[Co2At1Ch5]
+1004.87 -0.121446 0.00 !Mu3ChX70TRaw[Co2At1Ch6]
+1008.48 -0.121893 0.00 !Mu3ChX71TRaw[Co2At1Ch7]
+1012.14 -0.122347 0.00 !Mu3ChX72TRaw[Co2At1Ch8]
+1008.38 -0.121883 0.00 !Mu3ChX73TRaw[Co2At1Ch9]
+1014.86 -0.122684 0.00 !Mu3ChX74TRaw[Co2At1Ch10]
+1023.57 -0.123722 0.00 !Mu3ChX75TRaw[Co2At1Ch11]
+1033.42 -0.124938 0.00 !Mu3ChX76TRaw[Co2At1Ch12]
+1015.34 -0.122709 0.00 !Mu3ChX77TRaw[Co2At1Ch13]
+1014.72 -0.12265 0.00 !Mu3ChX78TRaw[Co2At1Ch14]
+1026.27 -0.124061 0.00 !Mu3ChX79TRaw[Co2At1Ch15]
+1019.9 -0.123313 0.00 !Mu3ChX80TRaw[Co2At1Ch16]
+942.714 -0.11381 0.00 !Mu3ChX81TRaw[Co2At2Ch1]
+949.104 -0.114558 0.00 !Mu3ChX82TRaw[Co2At2Ch2]
+952.48 -0.114986 0.00 !Mu3ChX83TRaw[Co2At2Ch3]
+951.022 -0.114804 0.00 !Mu3ChX84TRaw[Co2At2Ch4]
+965.822 -0.116619 0.00 !Mu3ChX85TRaw[Co2At2Ch5]
+968.345 -0.11693 0.00 !Mu3ChX86TRaw[Co2At2Ch6]
+962.99 -0.116299 0.00 !Mu3ChX87TRaw[Co2At2Ch7]
+967.787 -0.116863 0.00 !Mu3ChX88TRaw[Co2At2Ch8]
+978.317 -0.118161 0.00 !Mu3ChX89TRaw[Co2At2Ch9]
+974.374 -0.117687 0.00 !Mu3ChX90TRaw[Co2At2Ch10]
+979.507 -0.118304 0.00 !Mu3ChX91TRaw[Co2At2Ch11]
+987.225 -0.119256 0.00 !Mu3ChX92TRaw[Co2At2Ch12]
+987.195 -0.119241 0.00 !Mu3ChX93TRaw[Co2At2Ch13]
+986.603 -0.119186 0.00 !Mu3ChX94TRaw[Co2At2Ch14]
+984.211 -0.118879 0.00 !Mu3ChX95TRaw[Co2At2Ch15]
+979.288 -0.118278 0.00 !Mu3ChX96TRaw[Co2At2Ch16]
+862.689 -0.104124 0.00 !Mu3ChX97TRaw[Co2At3Ch1]
+867.813 -0.104728 0.00 !Mu3ChX98TRaw[Co2At3Ch2]
+867.895 -0.104753 0.00 !Mu3ChX99TRaw[Co2At3Ch3]
+873.835 -0.105492 0.00 !Mu3ChX100TRaw[Co2At3Ch4]
+883.843 -0.106693 0.00 !Mu3ChX101TRaw[Co2At3Ch5]
+879.494 -0.10614 0.00 !Mu3ChX102TRaw[Co2At3Ch6]
+883.805 -0.106708 0.00 !Mu3ChX103TRaw[Co2At3Ch7]
+882.86 -0.106567 0.00 !Mu3ChX104TRaw[Co2At3Ch8]
+891.887 -0.107671 0.00 !Mu3ChX105TRaw[Co2At3Ch9]
+896.27 -0.108216 0.00 !Mu3ChX106TRaw[Co2At3Ch10]
+888.15 -0.107225 0.00 !Mu3ChX107TRaw[Co2At3Ch11]
+899.039 -0.108561 0.00 !Mu3ChX108TRaw[Co2At3Ch12]
+899.371 -0.108609 0.00 !Mu3ChX109TRaw[Co2At3Ch13]
+896.002 -0.108191 0.00 !Mu3ChX110TRaw[Co2At3Ch14]
+905.511 -0.109337 0.00 !Mu3ChX111TRaw[Co2At3Ch15]
+900.32 -0.108709 0.00 !Mu3ChX112TRaw[Co2At3Ch16]
+859.472 -0.103629 0.00 !Mu3ChX113TRaw[Co2At4Ch1]
+869.213 -0.10481 0.00 !Mu3ChX114TRaw[Co2At4Ch2]
+869.978 -0.1049 0.00 !Mu3ChX115TRaw[Co2At4Ch3]
+876.122 -0.105647 0.00 !Mu3ChX116TRaw[Co2At4Ch4]
+788.143 -0.126949 0.00 !Mu3ChX117TRaw[Co2At4Ch5]
+880.15 -0.106145 0.00 !Mu3ChX118TRaw[Co2At4Ch6]
+887.525 -0.107055 0.00 !Mu3ChX119TRaw[Co2At4Ch7]
+884.874 -0.10675 0.00 !Mu3ChX120TRaw[Co2At4Ch8]
+888.126 -0.107137 0.00 !Mu3ChX121TRaw[Co2At4Ch9]
+892.007 -0.107599 0.00 !Mu3ChX122TRaw[Co2At4Ch10]
+887.829 -0.107093 0.00 !Mu3ChX123TRaw[Co2At4Ch11]
+897.245 -0.108252 0.00 !Mu3ChX124TRaw[Co2At4Ch12]
+891.27 -0.107522 0.00 !Mu3ChX125TRaw[Co2At4Ch13]
+898.089 -0.108336 0.00 !Mu3ChX126TRaw[Co2At4Ch14]
+885.342 -0.106793 0.00 !Mu3ChX127TRaw[Co2At4Ch15]
+894.433 -0.107896 0.00 !Mu3ChX128TRaw[Co2At4Ch16]
+920.954 -0.11121 0.00 !Mu3ChY1TRaw[Co3At1Ch1]
+928.777 -0.112154 0.00 !Mu3ChY2TRaw[Co3At1Ch2]
+937.754 -0.113241 0.00 !Mu3ChY3TRaw[Co3At1Ch3]
+947.224 -0.114409 0.00 !Mu3ChY4TRaw[Co3At1Ch4]
+944.162 -0.114032 0.00 !Mu3ChY5TRaw[Co3At1Ch5]
+951.968 -0.114994 0.00 !Mu3ChY6TRaw[Co3At1Ch6]
+956.591 -0.115552 0.00 !Mu3ChY7TRaw[Co3At1Ch7]
+956.368 -0.115546 0.00 !Mu3ChY8TRaw[Co3At1Ch8]
+964.281 -0.116506 0.00 !Mu3ChY9TRaw[Co3At1Ch9]
+968.513 -0.117006 0.00 !Mu3ChY10TRaw[Co3At1Ch10]
+970.24 -0.117251 0.00 !Mu3ChY11TRaw[Co3At1Ch11]
+969.011 -0.117093 0.00 !Mu3ChY12TRaw[Co3At1Ch12]
+978.827 -0.118272 0.00 !Mu3ChY13TRaw[Co3At1Ch13]
+985.112 -0.119048 0.00 !Mu3ChY14TRaw[Co3At1Ch14]
+977.123 -0.118075 0.00 !Mu3ChY15TRaw[Co3At1Ch15]
+983.985 -0.118941 0.00 !Mu3ChY16TRaw[Co3At1Ch16]
+970.371 -0.117174 0.00 !Mu3ChY17TRaw[Co3At2Ch1]
+984.045 -0.118815 0.00 !Mu3ChY18TRaw[Co3At2Ch2]
+985.023 -0.118931 0.00 !Mu3ChY19TRaw[Co3At2Ch3]
+990.894 -0.119638 0.00 !Mu3ChY20TRaw[Co3At2Ch4]
+996.439 -0.12034 0.00 !Mu3ChY21TRaw[Co3At2Ch5]
+1006.18 -0.121551 0.00 !Mu3ChY22TRaw[Co3At2Ch6]
+1001.89 -0.120998 0.00 !Mu3ChY23TRaw[Co3At2Ch7]
+996.258 -0.120321 0.00 !Mu3ChY24TRaw[Co3At2Ch8]
+1002.35 -0.121073 0.00 !Mu3ChY25TRaw[Co3At2Ch9]
+1008.58 -0.121839 0.00 !Mu3ChY26TRaw[Co3At2Ch10]
+1008.51 -0.121856 0.00 !Mu3ChY27TRaw[Co3At2Ch11]
+1015.07 -0.122649 0.00 !Mu3ChY28TRaw[Co3At2Ch12]
+1018.24 -0.12302 0.00 !Mu3ChY29TRaw[Co3At2Ch13]
+1007.23 -0.121668 0.00 !Mu3ChY30TRaw[Co3At2Ch14]
+1016.39 -0.122794 0.00 !Mu3ChY31TRaw[Co3At2Ch15]
+1017.37 -0.122927 0.00 !Mu3ChY32TRaw[Co3At2Ch16]
+873.601 -0.105446 0.00 !Mu3ChY33TRaw[Co3At3Ch1]
+870.737 -0.105092 0.00 !Mu3ChY34TRaw[Co3At3Ch2]
+875.902 -0.10573 0.00 !Mu3ChY35TRaw[Co3At3Ch3]
+872.76 -0.105345 0.00 !Mu3ChY36TRaw[Co3At3Ch4]
+884.229 -0.106744 0.00 !Mu3ChY37TRaw[Co3At3Ch5]
+883.52 -0.106654 0.00 !Mu3ChY38TRaw[Co3At3Ch6]
+888.675 -0.107294 0.00 !Mu3ChY39TRaw[Co3At3Ch7]
+897.411 -0.108361 0.00 !Mu3ChY40TRaw[Co3At3Ch8]
+894.272 -0.10799 0.00 !Mu3ChY41TRaw[Co3At3Ch9]
+898.134 -0.10846 0.00 !Mu3ChY42TRaw[Co3At3Ch10]
+907.563 -0.109593 0.00 !Mu3ChY43TRaw[Co3At3Ch11]
+904.332 -0.109195 0.00 !Mu3ChY44TRaw[Co3At3Ch12]
+899.078 -0.108568 0.00 !Mu3ChY45TRaw[Co3At3Ch13]
+909.287 -0.109804 0.00 !Mu3ChY46TRaw[Co3At3Ch14]
+912.926 -0.110263 0.00 !Mu3ChY47TRaw[Co3At3Ch15]
+905.69 -0.109382 0.00 !Mu3ChY48TRaw[Co3At3Ch16]
+879.206 -0.105997 0.00 !Mu3ChY49TRaw[Co3At4Ch1]
+885.638 -0.106772 0.00 !Mu3ChY50TRaw[Co3At4Ch2]
+897.352 -0.108217 0.00 !Mu3ChY51TRaw[Co3At4Ch3]
+900.017 -0.108527 0.00 !Mu3ChY52TRaw[Co3At4Ch4]
+894.065 -0.107825 0.00 !Mu3ChY53TRaw[Co3At4Ch5]
+902.563 -0.108862 0.00 !Mu3ChY54TRaw[Co3At4Ch6]
+907.447 -0.109456 0.00 !Mu3ChY55TRaw[Co3At4Ch7]
+913.155 -0.110152 0.00 !Mu3ChY56TRaw[Co3At4Ch8]
+917.884 -0.110718 0.00 !Mu3ChY57TRaw[Co3At4Ch9]
+916.39 -0.11056 0.00 !Mu3ChY58TRaw[Co3At4Ch10]
+925.29 -0.111636 0.00 !Mu3ChY59TRaw[Co3At4Ch11]
+911.348 -0.109934 0.00 !Mu3ChY60TRaw[Co3At4Ch12]
+924.685 -0.111581 0.00 !Mu3ChY61TRaw[Co3At4Ch13]
+925.584 -0.111694 0.00 !Mu3ChY62TRaw[Co3At4Ch14]
+920.738 -0.1111 0.00 !Mu3ChY63TRaw[Co3At4Ch15]
+923.494 -0.11144 0.00 !Mu3ChY64TRaw[Co3At4Ch16]
+904.406 -0.109216 0.00 !Mu3ChY65TRaw[Co4At1Ch1]
+911.098 -0.110026 0.00 !Mu3ChY66TRaw[Co4At1Ch2]
+911.599 -0.110106 0.00 !Mu3ChY67TRaw[Co4At1Ch3]
+920.222 -0.11114 0.00 !Mu3ChY68TRaw[Co4At1Ch4]
+931.355 -0.11252 0.00 !Mu3ChY69TRaw[Co4At1Ch5]
+939.668 -0.113544 0.00 !Mu3ChY70TRaw[Co4At1Ch6]
+932.714 -0.112672 0.00 !Mu3ChY71TRaw[Co4At1Ch7]
+931.288 -0.112491 0.00 !Mu3ChY72TRaw[Co4At1Ch8]
+947.183 -0.114462 0.00 !Mu3ChY73TRaw[Co4At1Ch9]
+939.764 -0.11354 0.00 !Mu3ChY74TRaw[Co4At1Ch10]
+955.625 -0.115517 0.00 !Mu3ChY75TRaw[Co4At1Ch11]
+952.282 -0.115086 0.00 !Mu3ChY76TRaw[Co4At1Ch12]
+964.745 -0.116618 0.00 !Mu3ChY77TRaw[Co4At1Ch13]
+953.345 -0.115232 0.00 !Mu3ChY78TRaw[Co4At1Ch14]
+945.988 -0.114343 0.00 !Mu3ChY79TRaw[Co4At1Ch15]
+951.047 -0.114947 0.00 !Mu3ChY80TRaw[Co4At1Ch16]
+970.943 -0.117288 0.00 !Mu3ChY81TRaw[Co4At2Ch1]
+982.69 -0.118727 0.00 !Mu3ChY82TRaw[Co4At2Ch2]
+988.906 -0.119474 0.00 !Mu3ChY83TRaw[Co4At2Ch3]
+992.522 -0.119909 0.00 !Mu3ChY84TRaw[Co4At2Ch4]
+994.13 -0.120116 0.00 !Mu3ChY85TRaw[Co4At2Ch5]
+1001.12 -0.120975 0.00 !Mu3ChY86TRaw[Co4At2Ch6]
+998.108 -0.120606 0.00 !Mu3ChY87TRaw[Co4At2Ch7]
+999.312 -0.12076 0.00 !Mu3ChY88TRaw[Co4At2Ch8]
+1004.15 -0.121336 0.00 !Mu3ChY89TRaw[Co4At2Ch9]
+1015.36 -0.122713 0.00 !Mu3ChY90TRaw[Co4At2Ch10]
+1018.49 -0.1231 0.00 !Mu3ChY91TRaw[Co4At2Ch11]
+1006.74 -0.121678 0.00 !Mu3ChY92TRaw[Co4At2Ch12]
+1015.03 -0.122697 0.00 !Mu3ChY93TRaw[Co4At2Ch13]
+1018.29 -0.123087 0.00 !Mu3ChY94TRaw[Co4At2Ch14]
+1010.39 -0.122144 0.00 !Mu3ChY95TRaw[Co4At2Ch15]
+1011.64 -0.122274 0.00 !Mu3ChY96TRaw[Co4At2Ch16]
+874.337 -0.105573 0.00 !Mu3ChY97TRaw[Co4At3Ch1]
+871.593 -0.105224 0.00 !Mu3ChY98TRaw[Co4At3Ch2]
+876.164 -0.105791 0.00 !Mu3ChY99TRaw[Co4At3Ch3]
+885.298 -0.106904 0.00 !Mu3ChY100TRaw[Co4At3Ch4]
+892.528 -0.107789 0.00 !Mu3ChY101TRaw[Co4At3Ch5]
+892.165 -0.107742 0.00 !Mu3ChY102TRaw[Co4At3Ch6]
+903.16 -0.109085 0.00 !Mu3ChY103TRaw[Co4At3Ch7]
+895.161 -0.108126 0.00 !Mu3ChY104TRaw[Co4At3Ch8]
+902.34 -0.108999 0.00 !Mu3ChY105TRaw[Co4At3Ch9]
+894.856 -0.108068 0.00 !Mu3ChY106TRaw[Co4At3Ch10]
+894.177 -0.108006 0.00 !Mu3ChY107TRaw[Co4At3Ch11]
+903.343 -0.109125 0.00 !Mu3ChY108TRaw[Co4At3Ch12]
+905.571 -0.109439 0.00 !Mu3ChY109TRaw[Co4At3Ch13]
+903.69 -0.109168 0.00 !Mu3ChY110TRaw[Co4At3Ch14]
+899.215 -0.108625 0.00 !Mu3ChY111TRaw[Co4At3Ch15]
+905.657 -0.109416 0.00 !Mu3ChY112TRaw[Co4At3Ch16]
+891.482 -0.107554 0.00 !Mu3ChY113TRaw[Co4At4Ch1]
+898.972 -0.108473 0.00 !Mu3ChY114TRaw[Co4At4Ch2]
+902.164 -0.108848 0.00 !Mu3ChY115TRaw[Co4At4Ch3]
+897.423 -0.108292 0.00 !Mu3ChY116TRaw[Co4At4Ch4]
+905.477 -0.109288 0.00 !Mu3ChY117TRaw[Co4At4Ch5]
+910.936 -0.109943 0.00 !Mu3ChY118TRaw[Co4At4Ch6]
+909.486 -0.109765 0.00 !Mu3ChY119TRaw[Co4At4Ch7]
+908.693 -0.109672 0.00 !Mu3ChY120TRaw[Co4At4Ch8]
+915.535 -0.110512 0.00 !Mu3ChY121TRaw[Co4At4Ch9]
+924.289 -0.111588 0.00 !Mu3ChY122TRaw[Co4At4Ch10]
+926.875 -0.111915 0.00 !Mu3ChY123TRaw[Co4At4Ch11]
+909.469 -0.109772 0.00 !Mu3ChY124TRaw[Co4At4Ch12]
+913.618 -0.11029 0.00 !Mu3ChY125TRaw[Co4At4Ch13]
+919.137 -0.110947 0.00 !Mu3ChY126TRaw[Co4At4Ch14]
+920.413 -0.111116 0.00 !Mu3ChY127TRaw[Co4At4Ch15]
+928.523 -0.112131 0.00 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Coeff/Cal_Str_X_T_MM1_run_0200.cal b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Coeff/Cal_Str_X_T_MM1_run_0200.cal
new file mode 100644
index 0000000000000000000000000000000000000000..4f6895dcaee9ccdb94cd49ba52ff243389d37d6d
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Coeff/Cal_Str_X_T_MM1_run_0200.cal
@@ -0,0 +1,64 @@
+EDIN_T1_DSSD_X1_T 954.599 -0.121763	7.01384e-07
+EDIN_T1_DSSD_X2_T 967.922 -0.123541	7.26055e-07
+EDIN_T1_DSSD_X3_T 961.88 -0.122284	6.0757e-07
+EDIN_T1_DSSD_X4_T 978.032 -0.125354	7.20967e-07
+EDIN_T1_DSSD_X5_T 986.23 -0.125953	7.65489e-07
+EDIN_T1_DSSD_X6_T 987.96 -0.126599	8.20619e-07
+EDIN_T1_DSSD_X7_T 984.219 -0.126018	7.27668e-07
+EDIN_T1_DSSD_X8_T 985.856 -0.124783	6.08173e-07
+EDIN_T1_DSSD_X9_T 988.949 -0.126482	7.59745e-07
+EDIN_T1_DSSD_X10_T 992.701 -0.126472	7.16079e-07
+EDIN_T1_DSSD_X11_T 992.831 -0.126239	6.55316e-07
+EDIN_T1_DSSD_X12_T 996.87 -0.126281	6.553e-07
+EDIN_T1_DSSD_X13_T 1006.36 -0.127949	7.17096e-07
+EDIN_T1_DSSD_X14_T 987.503 -0.124659	5.90654e-07
+EDIN_T1_DSSD_X15_T 1000.36 -0.127793	7.46879e-07
+EDIN_T1_DSSD_X16_T 986.25 -0.12444	5.59837e-07
+EDIN_T1_DSSD_X17_T 964.954 -0.122665	6.71169e-07
+EDIN_T1_DSSD_X18_T 963.006 -0.11643	9.6873e-11
+EDIN_T1_DSSD_X19_T 987.209 -0.124488	5.84763e-07
+EDIN_T1_DSSD_X20_T 971.846 -0.117514	-5.4511e-08
+EDIN_T1_DSSD_X21_T 987.621 -0.120137	6.81102e-08
+EDIN_T1_DSSD_X22_T 976.231 -0.118639	4.23294e-11
+EDIN_T1_DSSD_X23_T 981.587 -0.118294	-1.32395e-07
+EDIN_T1_DSSD_X24_T 1006.36 -0.127949	7.17101e-07
+EDIN_T1_DSSD_X25_T 981.565 -0.118872	-4.11001e-08
+EDIN_T1_DSSD_X26_T 1004.98 -0.12628	5.06616e-07
+EDIN_T1_DSSD_X27_T 997.459 -0.120096	-8.3353e-08
+EDIN_T1_DSSD_X28_T 1003.43 -0.121364	-9.94967e-09
+EDIN_T1_DSSD_X29_T 995.999 -0.120457	-5.8383e-08
+EDIN_T1_DSSD_X30_T 995.815 -0.120512	-3.87946e-08
+EDIN_T1_DSSD_X31_T 1005.12 -0.128179	7.04129e-07
+EDIN_T1_DSSD_X32_T 992.127 -0.120162	1.69201e-08
+EDIN_T1_DSSD_X33_T 883.917 -0.114701	8.52186e-07
+EDIN_T1_DSSD_X34_T 881.153 -0.113932	8.15362e-07
+EDIN_T1_DSSD_X35_T 896.635 -0.115598	7.58613e-07
+EDIN_T1_DSSD_X36_T 887.918 -0.11403	7.36313e-07
+EDIN_T1_DSSD_X37_T 886.863 -0.113974	7.12182e-07
+EDIN_T1_DSSD_X38_T 904.09 -0.116967	8.13585e-07
+EDIN_T1_DSSD_X39_T 899.906 -0.115007	6.31382e-07
+EDIN_T1_DSSD_X40_T 905.286 -0.1165	7.84653e-07
+EDIN_T1_DSSD_X41_T 892.708 -0.108895	4.19165e-08
+EDIN_T1_DSSD_X42_T 908.746 -0.116546	7.39379e-07
+EDIN_T1_DSSD_X43_T 906.086 -0.116933	7.82491e-07
+EDIN_T1_DSSD_X44_T 915.4 -0.117122	7.33411e-07
+EDIN_T1_DSSD_X45_T 912.244 -0.117268	7.89631e-07
+EDIN_T1_DSSD_X46_T 908.165 -0.116835	8.01145e-07
+EDIN_T1_DSSD_X47_T 903.121 -0.116119	7.29519e-07
+EDIN_T1_DSSD_X48_T 903.827 -0.116056	7.04315e-07
+EDIN_T1_DSSD_X49_T 896.544 -0.114638	7.3623e-07
+EDIN_T1_DSSD_X50_T 895.865 -0.114409	6.78143e-07
+EDIN_T1_DSSD_X51_T 899.927 -0.1147	6.53573e-07
+EDIN_T1_DSSD_X52_T 907.668 -0.116135	7.5805e-07
+EDIN_T1_DSSD_X53_T 915.828 -0.116231	6.31303e-07
+EDIN_T1_DSSD_X54_T 913.447 -0.115813	5.77349e-07
+EDIN_T1_DSSD_X55_T 920.745 -0.116359	5.93778e-07
+EDIN_T1_DSSD_X56_T 920.539 -0.116871	6.04792e-07
+EDIN_T1_DSSD_X57_T 937.997 -0.119851	7.58037e-07
+EDIN_T1_DSSD_X58_T 923.581 -0.118299	7.10738e-07
+EDIN_T1_DSSD_X59_T 936.772 -0.119366	7.14976e-07
+EDIN_T1_DSSD_X60_T 936.468 -0.119298	6.66735e-07
+EDIN_T1_DSSD_X61_T 947.735 -0.120999	7.29801e-07
+EDIN_T1_DSSD_X62_T 952.292 -0.123036	8.82113e-07
+EDIN_T1_DSSD_X63_T 953.571 -0.121901	7.55376e-07
+EDIN_T1_DSSD_X64_T 936.886 -0.119031	6.42594e-07
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Coeff/Cal_Str_X_T_MM1_run_0200.peak b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Coeff/Cal_Str_X_T_MM1_run_0200.peak
new file mode 100644
index 0000000000000000000000000000000000000000..8b07e6fcae602d3ab07e5b1820bb6633ead69441
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Coeff/Cal_Str_X_T_MM1_run_0200.peak
@@ -0,0 +1,1640 @@
+EDIN_T1_DSSD_X1_T 
+0	3816.18
+1	3992.18
+2	4152.18
+3	4328.18
+4	4504.18
+5	4680.18
+6	4856.18
+7	5032.16
+8	5208.16
+9	5384.18
+10	5560.18
+11	5736.17
+12	5912.18
+13	6088.18
+14	6264.19
+15	6440.18
+16	6616.18
+17	6792.18
+18	6968.18
+19	7144.18
+20	7304.18
+21	7496.18
+22	7656.18
+23	7832.18
+24	8120.16
+EDIN_T1_DSSD_X2_T 
+0	3864.19
+1	4040.17
+2	4216.2
+3	4392.18
+4	4552.18
+5	4728.18
+6	4904.18
+7	5080.16
+8	5256.18
+9	5416.18
+10	5592.18
+11	5768.18
+12	5944.18
+13	6120.18
+14	6296.18
+15	6456.18
+16	6632.18
+17	6808.18
+18	6984.18
+19	7160.18
+20	7336.18
+21	7496.18
+22	7672.18
+23	7848.18
+24	8120.18
+EDIN_T1_DSSD_X3_T 
+0	3848.19
+1	4008.18
+2	4184.18
+3	4360.18
+4	4536.18
+5	4712.18
+6	4888.18
+7	5048.16
+8	5224.18
+9	5400.18
+10	5576.18
+11	5752.18
+12	5912.18
+13	6088.18
+14	6264.19
+15	6440.18
+16	6616.18
+17	6776.18
+18	6952.18
+19	7128.18
+20	7304.18
+21	7480.18
+22	7640.18
+23	7816.18
+24	8088.18
+EDIN_T1_DSSD_X4_T 
+0	3896.19
+1	4056.17
+2	4232.2
+3	4408.18
+4	4568.18
+5	4744.18
+6	4920.18
+7	5080.16
+8	5256.18
+9	5416.18
+10	5592.18
+11	5768.18
+12	5944.18
+13	6104.18
+14	6280.18
+15	6440.18
+16	6616.18
+17	6792.18
+18	6952.18
+19	7128.18
+20	7304.18
+21	7464.18
+22	7640.18
+23	7816.18
+24	8072.18
+EDIN_T1_DSSD_X5_T 
+0	3944.18
+1	4120.18
+2	4280.2
+3	4456.18
+4	4632.17
+5	4792.18
+6	4968.16
+7	5144.16
+8	5304.18
+9	5480.18
+10	5656.17
+11	5816.18
+12	5992.18
+13	6152.18
+14	6328.18
+15	6504.18
+16	6664.18
+17	6840.18
+18	7016.18
+19	7176.18
+20	7352.18
+21	7528.18
+22	7688.18
+23	7864.18
+24	8136.18
+EDIN_T1_DSSD_X6_T 
+0	3944.18
+1	4120.18
+2	4280.2
+3	4456.18
+4	4632.17
+5	4792.18
+6	4968.16
+7	5144.16
+8	5304.18
+9	5480.18
+10	5640.17
+11	5816.18
+12	5992.18
+13	6152.18
+14	6328.18
+15	6504.18
+16	6664.18
+17	6840.18
+18	7016.18
+19	7176.18
+20	7352.18
+21	7528.18
+22	7688.18
+23	7864.18
+24	8136.18
+EDIN_T1_DSSD_X7_T 
+0	3928.18
+1	4088.17
+2	4264.2
+3	4424.18
+4	4600.18
+5	4776.18
+6	4936.18
+7	5112.16
+8	5272.18
+9	5448.18
+10	5624.17
+11	5784.18
+12	5960.18
+13	6120.18
+14	6296.18
+15	6472.18
+16	6632.18
+17	6808.18
+18	6968.18
+19	7144.18
+20	7320.18
+21	7480.18
+22	7656.18
+23	7816.18
+24	8088.18
+EDIN_T1_DSSD_X8_T 
+0	3800.18
+1	3960.18
+2	4136.18
+3	4296.2
+4	4472.18
+5	4648.17
+6	4808.18
+7	4984.16
+8	5144.16
+9	5320.18
+10	5496.18
+11	5656.17
+12	5832.18
+13	5992.18
+14	6168.18
+15	6328.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7512.18
+23	7688.18
+24	7864.18
+25	8120.18
+EDIN_T1_DSSD_X9_T 
+0	3944.18
+1	4120.18
+2	4296.2
+3	4456.18
+4	4632.17
+5	4792.18
+6	4968.16
+7	5144.16
+8	5304.18
+9	5480.18
+10	5640.17
+11	5816.18
+12	5976.18
+13	6152.18
+14	6328.18
+15	6488.18
+16	6664.18
+17	6824.18
+18	7000.18
+19	7176.18
+20	7336.18
+21	7512.18
+22	7672.18
+23	7848.18
+24	8120.18
+EDIN_T1_DSSD_X10_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4488.18
+5	4648.17
+6	4824.18
+7	4984.16
+8	5160.16
+9	5320.18
+10	5496.18
+11	5672.17
+12	5832.18
+13	6008.18
+14	6168.18
+15	6344.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7528.18
+23	7688.18
+24	7864.18
+25	8120.18
+EDIN_T1_DSSD_X11_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4488.18
+5	4648.17
+6	4824.18
+7	4984.16
+8	5160.16
+9	5320.18
+10	5496.18
+11	5656.17
+12	5832.18
+13	5992.18
+14	6168.18
+15	6328.18
+16	6504.18
+17	6664.18
+18	6840.18
+19	7000.18
+20	7176.18
+21	7336.18
+22	7512.18
+23	7672.18
+24	7848.18
+25	8104.18
+EDIN_T1_DSSD_X12_T 
+0	3848.19
+1	4008.18
+2	4184.18
+3	4344.18
+4	4520.18
+5	4680.18
+6	4856.18
+7	5016.16
+8	5192.16
+9	5352.18
+10	5528.18
+11	5688.17
+12	5864.18
+13	6024.18
+14	6200.18
+15	6360.18
+16	6536.18
+17	6696.18
+18	6872.18
+19	7032.18
+20	7208.18
+21	7368.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+EDIN_T1_DSSD_X13_T 
+0	3880.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4536.18
+5	4712.18
+6	4872.18
+7	5048.16
+8	5208.16
+9	5368.18
+10	5544.18
+11	5704.17
+12	5880.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6536.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7208.18
+21	7384.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+EDIN_T1_DSSD_X14_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4488.18
+5	4664.18
+6	4824.18
+7	5000.16
+8	5160.16
+9	5336.18
+10	5496.18
+11	5672.17
+12	5848.18
+13	6008.18
+14	6184.18
+15	6344.18
+16	6520.18
+17	6696.18
+18	6856.18
+19	7032.18
+20	7192.18
+21	7368.18
+22	7528.18
+23	7704.18
+24	7864.18
+25	8136.18
+EDIN_T1_DSSD_X15_T 
+0	3832.19
+1	4008.18
+2	4168.18
+3	4344.18
+4	4504.18
+5	4664.18
+6	4840.18
+7	5000.16
+8	5176.16
+9	5336.18
+10	5512.18
+11	5672.17
+12	5848.18
+13	6008.18
+14	6184.18
+15	6344.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7512.18
+23	7688.18
+24	7848.18
+25	8120.18
+EDIN_T1_DSSD_X16_T 
+0	3800.18
+1	3976.18
+2	4136.18
+3	4312.18
+4	4488.18
+5	4648.17
+6	4824.18
+7	4984.16
+8	5160.16
+9	5320.18
+10	5496.18
+11	5672.17
+12	5832.18
+13	6008.18
+14	6168.18
+15	6344.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7528.18
+23	7688.18
+24	7864.18
+25	8120.18
+EDIN_T1_DSSD_X17_T 
+0	3864.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4552.18
+5	4728.18
+6	4904.18
+7	5080.16
+8	5256.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5944.18
+13	6120.18
+14	6296.18
+15	6472.18
+16	6632.18
+17	6808.18
+18	6984.18
+19	7160.18
+20	7336.18
+21	7512.18
+22	7688.18
+23	7848.18
+24	8120.18
+EDIN_T1_DSSD_X18_T 
+0	3800.18
+1	3976.18
+2	4152.18
+3	4328.18
+4	4488.18
+5	4664.18
+6	4840.18
+7	5000.16
+8	5176.16
+9	5352.18
+10	5528.18
+11	5688.17
+12	5864.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6552.18
+17	6728.18
+18	6904.18
+19	7064.18
+20	7240.18
+21	7416.18
+22	7576.18
+23	7752.18
+24	7928.18
+25	8104.18
+EDIN_T1_DSSD_X19_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4328.18
+4	4488.18
+5	4664.18
+6	4824.18
+7	5000.16
+8	5176.16
+9	5336.18
+10	5512.18
+11	5672.17
+12	5848.18
+13	6008.18
+14	6184.18
+15	6360.18
+16	6520.18
+17	6696.18
+18	6856.18
+19	7032.18
+20	7208.18
+21	7368.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+EDIN_T1_DSSD_X20_T 
+0	3832.19
+1	4008.18
+2	4184.18
+3	4344.18
+4	4520.18
+5	4680.18
+6	4856.18
+7	5032.16
+8	5192.16
+9	5368.18
+10	5528.18
+11	5704.17
+12	5864.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6552.18
+17	6712.18
+18	6888.18
+19	7048.18
+20	7224.18
+21	7400.18
+22	7560.18
+23	7736.18
+24	7896.18
+25	8072.18
+EDIN_T1_DSSD_X21_T 
+0	3896.19
+1	4072.17
+2	4232.2
+3	4408.18
+4	4568.18
+5	4744.18
+6	4904.18
+7	5064.16
+8	5240.18
+9	5416.18
+10	5576.18
+11	5736.17
+12	5912.18
+13	6072.18
+14	6248.19
+15	6408.18
+16	6584.18
+17	6744.18
+18	6920.18
+19	7080.18
+20	7256.18
+21	7416.18
+22	7592.18
+23	7752.18
+24	7928.18
+25	8088.18
+EDIN_T1_DSSD_X22_T 
+0	3848.19
+1	4008.18
+2	4184.18
+3	4344.18
+4	4520.18
+5	4696.18
+6	4856.18
+7	5032.16
+8	5192.16
+9	5368.18
+10	5528.18
+11	5704.17
+12	5864.18
+13	6040.18
+14	6200.18
+15	6376.18
+16	6536.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7224.18
+21	7384.18
+22	7560.18
+23	7720.18
+24	7896.18
+25	8056.18
+EDIN_T1_DSSD_X23_T 
+0	3880.19
+1	4056.17
+2	4216.2
+3	4392.18
+4	4552.18
+5	4728.18
+6	4888.18
+7	5064.16
+8	5224.18
+9	5384.18
+10	5560.18
+11	5720.17
+12	5896.18
+13	6056.18
+14	6232.18
+15	6392.18
+16	6552.18
+17	6728.18
+18	6888.18
+19	7064.18
+20	7224.18
+21	7384.18
+22	7560.18
+23	7720.18
+24	7896.18
+25	8056.18
+EDIN_T1_DSSD_X24_T 
+0	3880.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4536.18
+5	4712.18
+6	4872.18
+7	5048.16
+8	5208.16
+9	5368.18
+10	5544.18
+11	5704.17
+12	5880.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6536.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7208.18
+21	7384.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+EDIN_T1_DSSD_X25_T 
+0	3880.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4552.18
+5	4712.18
+6	4888.18
+7	5048.16
+8	5224.18
+9	5384.18
+10	5560.18
+11	5720.17
+12	5896.18
+13	6056.18
+14	6232.18
+15	6392.18
+16	6552.18
+17	6728.18
+18	6888.18
+19	7064.18
+20	7224.18
+21	7400.18
+22	7560.18
+23	7736.18
+24	7896.18
+25	8072.18
+EDIN_T1_DSSD_X26_T 
+0	3896.19
+1	4056.17
+2	4232.2
+3	4392.18
+4	4552.18
+5	4728.18
+6	4888.18
+7	5048.16
+8	5224.18
+9	5384.18
+10	5560.18
+11	5720.17
+12	5880.18
+13	6056.18
+14	6216.18
+15	6376.18
+16	6552.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7208.18
+21	7368.18
+22	7544.18
+23	7704.18
+24	7864.18
+25	8120.17
+EDIN_T1_DSSD_X27_T 
+0	3800.18
+1	3960.18
+2	4136.18
+3	4296.2
+4	4456.18
+5	4632.17
+6	4792.18
+7	4952.16
+8	5128.16
+9	5288.18
+10	5448.18
+11	5624.17
+12	5784.18
+13	5944.18
+14	6120.18
+15	6280.18
+16	6440.18
+17	6616.18
+18	6776.18
+19	6936.18
+20	7096.18
+21	7272.18
+22	7432.18
+23	7608.18
+24	7768.18
+25	7928.18
+26	8088.18
+EDIN_T1_DSSD_X28_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4472.18
+5	4648.17
+6	4808.18
+7	4968.16
+8	5128.16
+9	5304.18
+10	5464.18
+11	5624.17
+12	5800.18
+13	5960.18
+14	6120.18
+15	6280.18
+16	6456.18
+17	6616.18
+18	6776.18
+19	6952.18
+20	7112.18
+21	7272.18
+22	7432.18
+23	7608.18
+24	7768.18
+25	7928.18
+26	8104.18
+EDIN_T1_DSSD_X29_T 
+0	3944.18
+1	4104.18
+2	4280.2
+3	4440.18
+4	4600.18
+5	4776.18
+6	4936.18
+7	5096.16
+8	5272.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5928.18
+13	6088.18
+14	6264.19
+15	6424.18
+16	6584.18
+17	6744.18
+18	6920.18
+19	7080.18
+20	7240.18
+21	7416.18
+22	7576.18
+23	7736.18
+24	7912.18
+25	8072.18
+EDIN_T1_DSSD_X30_T 
+0	3944.18
+1	4104.18
+2	4280.2
+3	4440.18
+4	4600.18
+5	4776.18
+6	4936.18
+7	5096.16
+8	5272.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5928.18
+13	6088.18
+14	6264.19
+15	6424.18
+16	6584.18
+17	6760.18
+18	6920.18
+19	7080.18
+20	7256.18
+21	7416.18
+22	7576.18
+23	7752.18
+24	7912.18
+25	8072.18
+EDIN_T1_DSSD_X31_T 
+0	3864.19
+1	4024.18
+2	4184.18
+3	4360.18
+4	4520.18
+5	4680.18
+6	4856.18
+7	5016.16
+8	5192.16
+9	5352.18
+10	5512.18
+11	5688.17
+12	5848.18
+13	6024.18
+14	6184.18
+15	6344.18
+16	6520.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7512.18
+23	7672.18
+24	7848.18
+25	8104.18
+EDIN_T1_DSSD_X32_T 
+0	3928.18
+1	4104.18
+2	4264.2
+3	4424.18
+4	4600.18
+5	4760.18
+6	4936.18
+7	5096.16
+8	5272.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5928.18
+13	6104.18
+14	6264.19
+15	6424.18
+16	6600.18
+17	6760.18
+18	6936.18
+19	7096.18
+20	7272.18
+21	7432.18
+22	7592.18
+23	7768.18
+24	7928.18
+25	8104.18
+EDIN_T1_DSSD_X33_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4360.18
+4	4552.18
+5	4744.18
+6	4920.18
+7	5112.16
+8	5304.18
+9	5496.18
+10	5688.17
+11	5880.18
+12	6072.18
+13	6264.19
+14	6440.18
+15	6632.18
+16	6824.18
+17	7016.18
+18	7208.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8072.18
+EDIN_T1_DSSD_X34_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4360.18
+4	4552.18
+5	4728.18
+6	4920.18
+7	5112.16
+8	5320.18
+9	5496.18
+10	5688.17
+11	5880.18
+12	6072.18
+13	6264.19
+14	6456.18
+15	6648.18
+16	6840.18
+17	7032.18
+18	7224.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8088.18
+EDIN_T1_DSSD_X35_T 
+0	3864.19
+1	4056.17
+2	4232.2
+3	4424.18
+4	4616.17
+5	4792.18
+6	4984.16
+7	5176.16
+8	5352.18
+9	5544.18
+10	5736.17
+11	5912.18
+12	6104.18
+13	6280.18
+14	6472.18
+15	6664.18
+16	6856.18
+17	7032.18
+18	7224.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8072.18
+EDIN_T1_DSSD_X36_T 
+0	3832.19
+1	4024.18
+2	4216.2
+3	4408.18
+4	4600.18
+5	4776.18
+6	4968.16
+7	5160.16
+8	5352.18
+9	5544.18
+10	5720.17
+11	5912.18
+12	6104.18
+13	6296.18
+14	6472.18
+15	6664.18
+16	6856.18
+17	7048.18
+18	7240.18
+19	7416.18
+20	7608.18
+21	7800.18
+22	8104.18
+EDIN_T1_DSSD_X37_T 
+0	3832.19
+1	4008.18
+2	4200.18
+3	4392.18
+4	4584.18
+5	4776.18
+6	4952.16
+7	5144.16
+8	5336.18
+9	5528.18
+10	5704.17
+11	5896.18
+12	6088.18
+13	6280.18
+14	6456.18
+15	6648.18
+16	6840.18
+17	7032.18
+18	7224.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8072.18
+EDIN_T1_DSSD_X38_T 
+0	3896.19
+1	4072.17
+2	4264.2
+3	4440.18
+4	4632.17
+5	4824.18
+6	5000.16
+7	5192.16
+8	5368.18
+9	5560.18
+10	5736.17
+11	5928.18
+12	6120.18
+13	6296.18
+14	6488.18
+15	6664.18
+16	6856.18
+17	7032.18
+18	7224.18
+19	7416.18
+20	7592.18
+21	7784.18
+22	8072.18
+EDIN_T1_DSSD_X39_T 
+0	3896.19
+1	4088.17
+2	4264.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5560.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7224.18
+19	7416.18
+20	7592.18
+21	7784.18
+22	8072.18
+EDIN_T1_DSSD_X40_T 
+0	3912.18
+1	4104.18
+2	4280.2
+3	4472.18
+4	4664.18
+5	4840.18
+6	5032.16
+7	5208.16
+8	5400.18
+9	5592.18
+10	5768.18
+11	5960.18
+12	6136.18
+13	6328.18
+14	6504.18
+15	6696.18
+16	6888.18
+17	7064.18
+18	7256.18
+19	7432.18
+20	7624.18
+21	7816.18
+22	8104.18
+EDIN_T1_DSSD_X41_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4344.18
+4	4536.18
+5	4712.18
+6	4904.18
+7	5080.16
+8	5272.18
+9	5448.18
+10	5640.17
+11	5816.18
+12	6008.18
+13	6200.18
+14	6376.18
+15	6568.18
+16	6744.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7672.18
+22	7848.18
+23	8040.18
+EDIN_T1_DSSD_X42_T 
+0	3944.18
+1	4120.18
+2	4312.18
+3	4488.18
+4	4680.18
+5	4856.18
+6	5048.16
+7	5224.18
+8	5416.18
+9	5608.17
+10	5784.18
+11	5976.18
+12	6152.18
+13	6344.18
+14	6520.18
+15	6712.18
+16	6888.18
+17	7080.18
+18	7256.18
+19	7448.18
+20	7624.18
+21	7816.18
+22	8104.18
+EDIN_T1_DSSD_X43_T 
+0	3912.18
+1	4088.17
+2	4280.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5576.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7224.18
+19	7416.18
+20	7608.18
+21	7784.18
+22	8072.18
+EDIN_T1_DSSD_X44_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4344.18
+4	4536.18
+5	4712.18
+6	4904.18
+7	5080.16
+8	5256.18
+9	5448.18
+10	5624.17
+11	5816.18
+12	5992.18
+13	6184.18
+14	6360.18
+15	6552.18
+16	6728.18
+17	6920.18
+18	7096.18
+19	7288.18
+20	7464.18
+21	7640.18
+22	7832.18
+23	8120.18
+EDIN_T1_DSSD_X45_T 
+0	3944.18
+1	4136.18
+2	4328.18
+3	4504.18
+4	4696.18
+5	4872.18
+6	5048.16
+7	5240.18
+8	5432.18
+9	5608.17
+10	5800.18
+11	5976.18
+12	6168.18
+13	6344.18
+14	6536.18
+15	6712.18
+16	6904.18
+17	7080.18
+18	7272.18
+19	7448.18
+20	7640.18
+21	7816.18
+22	8120.18
+EDIN_T1_DSSD_X46_T 
+0	3928.18
+1	4120.18
+2	4296.2
+3	4488.18
+4	4680.18
+5	4856.18
+6	5048.16
+7	5224.18
+8	5416.18
+9	5592.18
+10	5784.18
+11	5976.18
+12	6152.18
+13	6344.18
+14	6520.18
+15	6712.18
+16	6888.18
+17	7080.18
+18	7272.18
+19	7448.18
+20	7640.18
+21	7816.18
+22	8120.18
+EDIN_T1_DSSD_X47_T 
+0	3896.19
+1	4088.17
+2	4280.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5560.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7240.18
+19	7416.18
+20	7608.18
+21	7784.18
+22	8072.17
+EDIN_T1_DSSD_X48_T 
+0	3912.18
+1	4088.17
+2	4280.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5208.16
+8	5384.18
+9	5576.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7240.18
+19	7416.18
+20	7592.18
+21	7784.18
+22	8072.17
+EDIN_T1_DSSD_X49_T 
+0	3896.19
+1	4088.17
+2	4264.2
+3	4456.18
+4	4648.17
+5	4840.18
+6	5016.16
+7	5208.16
+8	5400.18
+9	5592.18
+10	5768.18
+11	5960.18
+12	6152.18
+13	6344.18
+14	6520.18
+15	6712.18
+16	6904.18
+17	7080.18
+18	7272.18
+19	7464.18
+20	7656.18
+21	7832.18
+22	8136.16
+EDIN_T1_DSSD_X50_T 
+0	3896.19
+1	4072.17
+2	4264.2
+3	4456.18
+4	4632.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5576.18
+10	5768.18
+11	5944.18
+12	6136.18
+13	6328.18
+14	6504.18
+15	6696.18
+16	6888.18
+17	7064.18
+18	7256.18
+19	7448.18
+20	7624.18
+21	7816.18
+22	8104.18
+EDIN_T1_DSSD_X51_T 
+0	3912.18
+1	4104.18
+2	4280.2
+3	4472.18
+4	4664.18
+5	4840.18
+6	5032.16
+7	5224.18
+8	5400.18
+9	5592.18
+10	5768.18
+11	5960.18
+12	6152.18
+13	6328.18
+14	6520.18
+15	6712.18
+16	6888.18
+17	7080.18
+18	7256.18
+19	7448.18
+20	7640.18
+21	7816.18
+22	8104.18
+EDIN_T1_DSSD_X52_T 
+0	3944.18
+1	4136.18
+2	4312.18
+3	4504.18
+4	4696.18
+5	4872.18
+6	5064.16
+7	5240.18
+8	5432.18
+9	5624.17
+10	5800.18
+11	5992.18
+12	6168.18
+13	6360.18
+14	6552.18
+15	6728.18
+16	6920.18
+17	7096.18
+18	7288.18
+19	7480.18
+20	7656.18
+21	7848.18
+22	8136.17
+EDIN_T1_DSSD_X53_T 
+0	3816.18
+1	4008.18
+2	4184.18
+3	4376.18
+4	4552.18
+5	4728.18
+6	4920.18
+7	5096.16
+8	5288.18
+9	5464.18
+10	5656.17
+11	5832.18
+12	6008.18
+13	6200.18
+14	6376.18
+15	6568.18
+16	6744.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7848.18
+23	8120.18
+EDIN_T1_DSSD_X54_T 
+0	3800.18
+1	3992.18
+2	4168.18
+3	4360.18
+4	4536.18
+5	4728.18
+6	4904.18
+7	5080.16
+8	5272.18
+9	5448.18
+10	5640.17
+11	5816.18
+12	5992.18
+13	6184.18
+14	6360.18
+15	6552.18
+16	6728.18
+17	6904.18
+18	7096.18
+19	7272.18
+20	7464.18
+21	7640.18
+22	7816.18
+23	8104.18
+EDIN_T1_DSSD_X55_T 
+0	3848.19
+1	4040.17
+2	4216.2
+3	4408.18
+4	4584.18
+5	4776.18
+6	4952.16
+7	5128.16
+8	5304.18
+9	5496.18
+10	5672.17
+11	5864.18
+12	6040.18
+13	6216.18
+14	6408.18
+15	6584.18
+16	6776.18
+17	6952.18
+18	7128.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7864.18
+23	8136.18
+EDIN_T1_DSSD_X56_T 
+0	3832.19
+1	4024.18
+2	4200.18
+3	4376.18
+4	4568.18
+5	4744.18
+6	4920.18
+7	5112.16
+8	5288.18
+9	5480.18
+10	5656.17
+11	5832.18
+12	6008.18
+13	6200.18
+14	6376.18
+15	6552.18
+16	6744.18
+17	6920.18
+18	7096.18
+19	7288.18
+20	7464.18
+21	7640.18
+22	7832.18
+23	8104.18
+EDIN_T1_DSSD_X57_T 
+0	3912.18
+1	4088.17
+2	4264.2
+3	4440.18
+4	4632.17
+5	4808.18
+6	4984.16
+7	5160.16
+8	5336.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6248.19
+14	6424.18
+15	6600.18
+16	6776.18
+17	6952.18
+18	7144.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7864.18
+23	8136.18
+EDIN_T1_DSSD_X58_T 
+0	3832.19
+1	4008.18
+2	4184.18
+3	4376.18
+4	4552.18
+5	4728.18
+6	4920.18
+7	5096.16
+8	5272.18
+9	5448.18
+10	5640.17
+11	5816.18
+12	6008.18
+13	6184.18
+14	6360.18
+15	6536.18
+16	6728.18
+17	6904.18
+18	7080.18
+19	7272.18
+20	7448.18
+21	7624.18
+22	7816.18
+23	8088.18
+EDIN_T1_DSSD_X59_T 
+0	3912.18
+1	4088.17
+2	4264.2
+3	4440.18
+4	4632.17
+5	4808.18
+6	4984.16
+7	5160.16
+8	5352.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6248.19
+14	6424.18
+15	6600.18
+16	6776.18
+17	6952.18
+18	7144.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7864.18
+23	8136.18
+EDIN_T1_DSSD_X60_T 
+0	3896.19
+1	4088.17
+2	4264.2
+3	4440.18
+4	4616.17
+5	4792.18
+6	4968.16
+7	5160.16
+8	5336.18
+9	5512.18
+10	5688.17
+11	5864.18
+12	6040.18
+13	6232.18
+14	6408.18
+15	6584.18
+16	6760.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7832.18
+23	8104.18
+EDIN_T1_DSSD_X61_T 
+0	3944.18
+1	4120.18
+2	4312.18
+3	4488.18
+4	4664.18
+5	4840.18
+6	5016.16
+7	5192.16
+8	5368.18
+9	5544.18
+10	5720.17
+11	5896.18
+12	6072.18
+13	6248.19
+14	6424.18
+15	6600.18
+16	6792.18
+17	6968.18
+18	7144.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7848.18
+23	8120.18
+EDIN_T1_DSSD_X62_T 
+0	3928.18
+1	4120.18
+2	4296.2
+3	4472.18
+4	4648.17
+5	4824.18
+6	5000.16
+7	5176.16
+8	5352.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6232.18
+14	6408.18
+15	6584.18
+16	6760.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7832.18
+23	8104.18
+EDIN_T1_DSSD_X63_T 
+0	3800.18
+1	3976.18
+2	4152.18
+3	4328.18
+4	4504.18
+5	4680.18
+6	4856.18
+7	5032.16
+8	5208.16
+9	5384.18
+10	5560.18
+11	5736.17
+12	5912.18
+13	6088.18
+14	6264.19
+15	6440.18
+16	6616.18
+17	6792.18
+18	6968.18
+19	7144.18
+20	7320.18
+21	7496.18
+22	7672.18
+23	7848.18
+24	8136.16
+EDIN_T1_DSSD_X64_T 
+0	3912.18
+1	4088.17
+2	4264.2
+3	4456.18
+4	4632.17
+5	4808.18
+6	4984.16
+7	5160.16
+8	5336.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6232.18
+14	6408.18
+15	6600.18
+16	6776.18
+17	6952.18
+18	7128.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7848.18
+23	8120.18
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/ExtractRawHisto_T.C b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/ExtractRawHisto_T.C
new file mode 100644
index 0000000000000000000000000000000000000000..deaf5f7e6692d07168c08074e38d283997983bdd
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/ExtractRawHisto_T.C
@@ -0,0 +1,113 @@
+////////////////////////////////////////////////////////////////////////////
+// This macro takes a converted ROOT file from the GANIL e569 exp. and    //
+// create an histogram for each strip (X and Y) of the MUST2 array filled //
+// with the energy. The histograms are dumped in an output ROOT file.     //
+//                                                                        //
+// This is especially usefull for calibration purposes when there is no   //
+// need to work directly on the TTree                                     //
+////////////////////////////////////////////////////////////////////////////
+#include <iostream>
+
+#include "TROOT.h"
+#include "TSystem.h"
+#include "TFile.h"
+#include "TString.h"
+#include "TTree.h"
+#include "TBranch.h"
+#include "TH1F.h"
+#include "TEDINData.h"
+#include "TChain.h"
+
+
+
+void ExtractMust2Histos(const char* fname = "run_0040", int NBTELESCOPE = 4, int NBSTRIPS = 128, int FIRSTSTRIP = 0, int FIRSTELESCOPE = 0)
+{
+
+  TString path  = "~/npTreeReader/np-tree-reader/Projects/EDIN/RootR/";
+  TChain* tree = new TChain("RD");
+  tree->Add(path + fname + ".root");
+  //tree->Add(path + fname + "_1.root");
+  //tree->Add(path + fname + "_2.root");
+
+  tree->SetBranchStatus("*",false);
+
+  // connect the TMust2Data branch  
+  tree->SetBranchStatus("EDIN",true);
+  tree->SetBranchStatus("fMM*",true);
+  TEDINData *rawEDIN; 
+
+  std::cout << tree->GetEntries() << std::endl;
+
+  rawEDIN = new TEDINData();
+  tree->SetBranchAddress("EDIN", &rawEDIN);
+
+
+
+  // open the output ROOT file
+  TString outFileName = "~/npTreeReader/np-tree-reader/Projects/EDIN/calibration/Time/Histograms/";
+  outFileName += fname;
+  outFileName += "_RawEDINHistos.root";
+  std::cout<< outFileName<< std::endl;
+  TFile *outFile = new TFile(outFileName, "recreate");
+
+  // prepare output histograms for Must2
+  TH1F* hStripXTime[NBTELESCOPE-FIRSTELESCOPE][NBSTRIPS-FIRSTSTRIP];
+  TH1F* hStripYTime[NBTELESCOPE-FIRSTELESCOPE][NBSTRIPS-FIRSTSTRIP];
+  for (Int_t i = FIRSTELESCOPE; i < NBTELESCOPE; i++) {
+    for (Int_t j = FIRSTSTRIP; j < NBSTRIPS; j++) {
+      // strips XE
+      TString hnameXT     = Form("hMM%d_STRX_T%d", i, j);
+      TString htitleXT    = Form("MM%d_STRX_T%d", i, j);
+      hStripXTime[i][j] = new TH1F(hnameXT, htitleXT, 16384, 0, 16384);
+      // strips YE
+      TString hnameYT     = Form("hMM%d_STRY_T%d", i, j);
+      TString htitleYT    = Form("MM%d_STRY_T%d", i, j);
+      hStripYTime[i][j] = new TH1F(hnameYT, htitleYT, 16384, 0, 16384);
+    }
+  }
+
+  // read the data
+  Int_t nentries = tree->GetEntries();
+  //   nentries = 21000;
+  std::cout << "TTree contains " << nentries << " events" << std::endl;
+  for (Int_t i = 0; i < nentries; i++) {
+    if (i%10000 == 0) std::cout << "Entry " << i << std::endl;
+    
+    tree->GetEntry(i);
+    Int_t multXT = 0;
+    multXT = rawEDIN->GetDSSDXTMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    for (Int_t j = 0; j < multXT; j++) {
+      Int_t det    = rawEDIN->GetDSSDXTDetectorNbr(j);
+      Int_t stripX = rawEDIN->GetDSSDXTStripNbr(j);
+      Int_t Time_ = rawEDIN->GetDSSDXTTime(j);
+      if ((det < NBTELESCOPE) && (stripX < NBSTRIPS)) {
+        std::cout << det << " " << stripX << " " << Time_<< std::endl;
+        hStripXTime[det][stripX]->Fill(Time_);
+      }
+      else {
+        //std::cout << "Error filling histograms: EDIN_X_T" << std::endl;
+      }
+    }
+    // get StripYE multiplicity
+    Int_t multYT = rawEDIN->GetDSSDYTMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    for (Int_t j = 0; j < multYT; j++) {
+      Int_t det    = rawEDIN->GetDSSDYTDetectorNbr(j);
+      Int_t stripY = rawEDIN->GetDSSDYTStripNbr(j);
+      Int_t Time_ = rawEDIN->GetDSSDYTTime(j);
+      if ((det < NBTELESCOPE) && (stripY < NBSTRIPS)) {
+        hStripYTime[det][stripY]->Fill(Time_);
+      }
+      else {
+        //std::cout << "Error filling histograms: EDIN_Y_T" << std::endl;
+      }
+    }
+  }
+
+  // write on disk output file and close it
+  outFile->Write();
+  outFile->Close();
+}
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/ExtractRawHisto_T_C.d b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/ExtractRawHisto_T_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..4dfab84480515c8bc245450b93a3ee3884bd500a
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/ExtractRawHisto_T_C.d
@@ -0,0 +1,89 @@
+
+# DO NOT DELETE
+
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSystem.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInetAddress.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTimer.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSysEvtHandler.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTime.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./ExtractRawHisto_T_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TEDINData.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TChain.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+ExtractRawHisto_T_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Histograms/.root_hist b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Histograms/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..5d9de7637d13de4b12d1cf83318c5f3560ec847e
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/Histograms/.root_hist
@@ -0,0 +1,3 @@
+TFile *_file0 = TFile::Open("r0012_RawMUST2Histos.root")
+new TBrowser
+.q
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/RunToTreat.txt b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/RunToTreat.txt
new file mode 100644
index 0000000000000000000000000000000000000000..9c24dd33c012ad104f203bbc89f0ada9cac3f8ed
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/RunToTreat.txt
@@ -0,0 +1,4 @@
+TTreeName 
+	AutoTree
+RootFileName 
+  /data/mugastX/mugast/acquisition/root/run_0627.root 
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/TimeCalibrator.C b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/TimeCalibrator.C
new file mode 100644
index 0000000000000000000000000000000000000000..1bc47c142edf85b591451d3f01030b3c09850e40
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/TimeCalibrator.C
@@ -0,0 +1,331 @@
+#include<stdlib.h>
+#include<stdio.h>
+#include <time.h>
+#include <iostream>
+#include <fstream>
+#include <sstream>
+#include "TString.h"
+#include "TSpectrum.h"
+#include "TGraphErrors.h"
+#include "TCanvas.h"
+#include "TFile.h"
+#include "TTree.h"
+#include "TH1F.h"
+#include "TF1.h"
+
+using namespace std;
+// #define TELESCOPE_START 1	
+// #define TELESCOPE_END 4
+#define STRIP_START	1
+#define STRIP_END 	64
+
+
+Int_t CurrentTelescope = 0 ;
+Int_t CurrentStrip     = 0 ;
+
+
+void TimeGene(TH1F*, TString, Int_t, int);
+Int_t Finder(TH1F*, Double_t*, Double_t*, Int_t);
+TF1* Calib(TGraphErrors*,Double_t*, Double_t*, Int_t);
+Double_t pol2 (Double_t *,Double_t *);
+		
+ofstream peaks_file, calib_file, dispersion_file,calib_online_file; 
+	
+void TimeCalibrator(const char* frun = "run_XXXX", TString xy = "X",Int_t npeak= 32, int TELESCOPE_START=1, int TELESCOPE_END=4)//49
+{
+	// open the ROOT file to process
+	TString path  = "./Histograms/";
+	TString inFileName = frun;
+  TFile *inFile;
+
+  inFile = new TFile(path + inFileName +"_RawEDINHistos.root");
+
+  TString str;
+  TString str1;
+  TString str2;
+  TString strbuff;
+  TString strbuff2;
+  TString fname;
+  TString fname2;
+
+	TString hname;
+	
+	TCanvas *c1 = new TCanvas("c1","c1",1200,900);
+  c1->cd();
+	//c1->Divide(16,8);
+
+	for (int det = TELESCOPE_START-1; det < TELESCOPE_END ; det++){
+			ostringstream number ;
+			number << det+1  ;
+			CurrentTelescope = det+1 ;
+		if (xy == "X"){ 
+			//////// Input Files ///////////
+			str = "hMM"+number.str()+"_STRX_T";
+			/////// Output Files ///////////
+        str1 = "Cal_Str_X_T_MM"+number.str()+"_"+frun;
+    
+    }	 
+		
+    else if (xy == "Y"){ 	
+			//////// Input Files ///////////
+			str = "hMM"+number.str()+"_STRY_T";
+			/////// Output Files ///////////
+        str1 = "Cal_Str_Y_T_MM"+number.str()+"_"+frun;
+	}	 
+		else {cout<< "ERROR FOR X or Y PARAMETER"<< endl;}
+
+		fname =  "./Coeff/" + str1 + ".peak";
+		peaks_file.open(( (string)fname ).c_str());
+
+		fname2 = "./Coeff/"+ str1 + ".cal";
+		calib_file.open( ( (string)fname2 ).c_str() );
+		
+		for (Int_t j = STRIP_START-1; j < STRIP_END; j++)
+		{
+			///// Get the histogram of det i and strip j /////
+			CurrentStrip=j+1;
+			number.seekp(0);
+			number << j+1;
+			hname = str+number.str().c_str();
+			TH1F *hist = (TH1F*) inFile->Get(((string)hname).c_str());
+		
+			TimeGene(	hist,
+								xy,
+								npeak, det);
+		}
+	peaks_file.close();
+	calib_file.close();
+	dispersion_file.close();
+	
+	}
+	
+}
+
+
+
+void TimeGene(TH1F *hist, TString xy, Int_t npeak, int DetNbr)
+	{
+	
+  // hist->GetXaxis()->SetRangeUser(0,16384);
+//  hist->GetXaxis()->SetRangeUser(0,8150);
+  TH1F* hist_clone = (TH1F*)hist->Clone();
+  //hist_clone->GetXaxis()->SetRangeUser(0,8150);
+
+ // int Nbins1 = hist_clone->GetNbinsX();
+ // cout<<"Nbins before "<<Nbins1<<endl;
+	
+//	std::cout << "est" << std::endl;
+  hist_clone->Rebin(16);
+  int Nbins = hist_clone->GetNbinsX();
+ // cout<<"Nbins after "<<Nbins<<endl;
+  for(int i =0; i<Nbins; i++){
+      if(hist_clone->GetBinCenter(i) > 8150 ) hist_clone->SetBinContent(i,0);
+     // if (DetNbr!=10){//range change for the anular telescope 11
+      if(hist_clone->GetBinCenter(i) < 3800 ) hist_clone->SetBinContent(i,0);
+     // }
+     // else {
+      //   if(hist_clone->GetBinCenter(i) < 100 ) hist_clone->SetBinContent(i,0);
+     // }  
+ } 
+//  hist_clone->Smooth(10);
+
+  
+  double Ecut = 0;
+  int maxbin = hist_clone->GetMaximumBin(); 
+  while(hist_clone->GetBinContent(maxbin) != 0){
+      maxbin++;
+  }
+  double maxE =  hist_clone->GetBinCenter(maxbin);
+  //cout << "maxbin : "<< maxbin << endl;
+  //cout << "maxE : "<< maxE << endl;
+/*
+  Nbins = hist->GetNbinsX();
+  for(int i =0; i<Nbins; i++){
+      if(hist->GetBinCenter(i) < maxE ) hist->SetBinContent(i,0);
+      if(hist->GetBinCenter(i) > 8180 ) hist->SetBinContent(i,0);
+  } 
+  */
+	Double_t *mean = new Double_t[npeak];
+  Double_t *sigma = new Double_t[npeak];
+
+	Int_t nfound = Finder(hist_clone, mean, sigma, npeak);
+
+	if (xy == "X"){
+	  peaks_file << "EDIN_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_T " << endl;
+	  for(int i=0; i<nfound; i++) {
+	    peaks_file << i<< "\t" << mean[i] <<  endl;
+	  }
+	}
+	else if (xy == "Y"){
+	  peaks_file << "EDIN_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_T " << endl;
+	  for(int i=0; i<nfound; i++) {
+	    peaks_file << i<< "\t" << mean[i] <<  endl;
+	  }
+  }
+
+	if(nfound<npeak) cout << "On "<< hist->GetName() << endl ;
+	
+	// Fit npeak
+	TGraphErrors* gr_MM= new TGraphErrors(nfound);
+	TF1* f = Calib(gr_MM, mean, sigma, nfound);
+	
+	Double_t a = f->GetParameter(0);
+	Double_t b = f->GetParameter(1);
+	Double_t c = f->GetParameter(2);
+  
+    if (xy == "X")
+      calib_file << "EDIN_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_T " << a << " " << b << "	" << c <<endl ;
+
+    else if (xy == "Y")
+      calib_file << "EDIN_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_T " << a << " " << b << " " << c << endl ;
+
+
+
+}
+
+Int_t Finder(TH1F *h, Double_t *mean, Double_t *sigma, Int_t npeak)
+{
+
+	/////////////////////////////////////////////////
+	//																						 //
+	//	           	PEAK  FINDER									 //
+	//																					 	 //
+	/////////////////////////////////////////////////
+
+
+	for(int k=0; k<npeak; k++)
+			{
+		    	mean[k]=0;
+		        sigma[k]=0;
+			}
+
+	//Double_t resolsig=5;
+	Double_t resolsig=2;
+	Float_t  resolsigTSpec=1;
+	Double_t seuil=0.00001;
+	Int_t nmax=npeak+1;   // nombre de pics maximum a prendre
+
+	//////// Peak finder
+
+	TSpectrum *s = new TSpectrum(nmax,resolsigTSpec);
+
+	Int_t nfound = s->Search(h,resolsig,"new",seuil);
+ 	
+  Double_t *xpeaks = s->GetPositionX();
+  cout << "NUMBER OF PEAKS" << " " << nfound << endl;
+	/// remise dans l ordre du tableau ordre croissant
+
+	if(nfound>1)
+	{
+		for(Int_t p=0;p<nfound;p++)
+		{
+			for(Int_t i=0;i<nfound-1;i++)
+			{
+				if(xpeaks[i]>xpeaks[i+1])
+				{
+					Double_t varia=xpeaks[i];
+					xpeaks[i]=xpeaks[i+1];
+					xpeaks[i+1]=varia;
+					cout <<"XPeak: " << xpeaks[i]<<endl;
+				}	  
+			}
+		}
+	}
+
+	
+	Float_t linf=0, lsup=0; 
+	
+	// if(nfound == npeak || nfound > npeak)
+	// {
+  	//struct FitResult{
+	//	double mean;
+	//	double sigma;
+	//};
+	//map<int, FitResult> results;
+
+		for (Int_t p=0;p<nfound;p++)
+		{   
+		linf = xpeaks[p]-5;
+		lsup = xpeaks[p]+5;
+
+		TF1 *gauss = new TF1("gauss","gaus",linf,lsup);
+		h->Fit(gauss,"RQ");
+		mean[p] = gauss->GetParameter(1);
+		sigma[p]= gauss->GetParameter(2);
+		//if (gauss->GetParameter(2)<10) {
+		//	results[p].mean = gauss->GetParameter(1); 
+		//	results[p].sigma = gauss->GetParameter(2);
+		//}
+    // std::cout <<  gauss->GetParameter(1) << std::endl;
+    // std::cout <<  gauss->GetParameter(2)<< std::endl;
+		 }
+	// }
+	//nfound=results.size();
+	//int cnt = 0;
+	//for (const auto & result: results){
+	//	mean[cnt]=result.second.mean;
+	//	sigma[cnt]=result.second.sigma;
+	//	cnt++;	
+	//	cout <<"Mean: " << mean[cnt]<<endl;
+	//}
+	
+	
+
+
+	if(nfound<npeak)
+	{
+	 cout << "attention, nombre de pics ("<<nfound<<") different de "<<npeak<<" !!!" ;
+		/*
+		for (Int_t p=0;p<npeak;p++)
+		{
+			mean[p]=-1;
+			sigma[p]=-1;
+			//return false ;
+		}
+		*/
+	 
+	}
+	
+	return nfound ;
+}
+
+TF1* Calib(TGraphErrors *gr, Double_t *mean, Double_t *sigma, Int_t npeak)
+{  
+	Double_t energy[npeak];
+  //Double_t errors[npeak];
+  
+	
+	for(int i = 0 ; i < npeak ; i ++)
+	{
+	energy[i] = (npeak-i)*20;
+	}
+			
+	
+	for (Int_t p = 0; p < npeak; p++) {
+		gr->SetPoint(p, mean[p], energy[p]);
+		gr->SetPointError(p, 0, 0);
+		//gr->SetPointError(p, sigma[p], errors[p]);    
+	}
+	
+	TF1 *f1 = new TF1("f1",pol2,mean[0],mean[npeak-1], npeak);
+	//TF1 *f1 = new TF1("f1",Form("[0]*(x-%f)",Pedestal));
+	gr->Fit("f1", "Q" );
+	// TCanvas*c2 = new TCanvas();
+	// c2->cd();
+	gr->Draw("AP");
+  // gPad->WaitPrimitive();
+
+	//Double_t a = f1 -> GetParameter(0);
+	
+	return f1 ;
+}
+
+Double_t pol2 (Double_t *x,Double_t *par){
+
+	Double_t result = 0;
+	result = par[0]+ x[0]*par[1]+ x[0]*x[0]*par[2];
+	return result;
+}
+
+
+	
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/Time/TimeCalibrator_C.d b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/TimeCalibrator_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..4978c4faf18f3c915c363eca8b7c6979be99f1b1
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/Time/TimeCalibrator_C.d
@@ -0,0 +1,100 @@
+
+# DO NOT DELETE
+
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSpectrum.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraphErrors.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraph.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCanvas.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TPad.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualPad.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttPad.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/GuiTypes.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Buttons.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttBBox2D.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttCanvas.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFormula.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/Types.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMethodCall.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1AbsComposition.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMath.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TError.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/ParamFunctor.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+TimeCalibrator_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/calibE0.cal1 b/Projects/EdinburghDSSD/Calibration/calib_simu/calibE0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..5f77c3d04858dd864b1411813497cfbbcbbac345
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/calibE0.cal1
@@ -0,0 +1,1024 @@
+-61662.3 7.52711 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61862.3 7.5515 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61786 7.54225 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61488.6 7.50587 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61896.8 7.55579 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61641.5 7.52453 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61399.4 7.49501 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61236.4 7.47509 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-60986.5 7.4446 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62681.3 7.65148 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62393.5 7.61631 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61925.3 7.55919 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62029.9 7.57195 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62417.6 7.61932 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61275.3 7.47982 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63058.3 7.69749 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62722.2 7.65646 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62134.9 7.58477 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62458.1 7.62423 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63902.7 7.80057 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62519.9 7.63181 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62297.5 7.60463 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62659.6 7.64878 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62852.3 7.67238 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62985.4 7.68854 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63073.7 7.69941 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62632 7.64548 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-63013.4 7.69203 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62579 7.63901 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63401.5 7.7394 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62630 7.64523 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56399 6.88462 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56789.2 6.93221 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55564.2 6.78269 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56333.4 6.87654 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-56040.6 6.84084 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+-10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55909.7 6.82487 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55658.4 6.79421 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56211.8 6.86172 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55874 6.82053 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56164.8 6.85597 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56307.5 6.87343 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56382 6.88247 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+-10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+-10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55911.5 6.82508 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57927.5 7.07116 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57924.8 7.07081 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57746 7.049 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57343.1 6.99988 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58172.2 7.10106 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57237.7 6.98697 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57876.3 7.06488 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57523.5 7.02188 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58500.7 7.14114 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57786.5 7.05393 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57300.4 6.99465 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57790.9 7.05448 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57203.4 6.9828 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57985 7.0782 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57888.7 7.06644 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58127.1 7.09555 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63452.4 7.74561 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63612.1 7.76511 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63338.7 7.73174 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64021.8 7.81515 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63197.4 7.71456 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63968.4 7.80864 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63853.8 7.79469 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63356.4 7.73397 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64117.7 7.82683 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63242.6 7.72007 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63972.5 7.80918 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63941.4 7.8053 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63651.8 7.77009 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63754.3 7.78255 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64292.8 7.84837 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64690.6 7.89693 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61215.8 7.47271 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60865.1 7.42995 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61147.3 7.46434 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61469.6 7.50369 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61379.1 7.49269 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61888.7 7.55484 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61403.2 7.49554 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62166.5 7.58877 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61896.4 7.55578 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61572.1 7.51618 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61720.5 7.53424 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62796.5 7.66557 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61868.1 7.55224 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60999.1 7.44621 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61368.2 7.49129 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62166.8 7.58877 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57169.7 6.97872 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57564 7.02681 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57724.2 7.04642 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57113.1 6.97176 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58126.5 7.0955 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57746.5 7.04909 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57665.4 7.03921 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57244.7 6.98784 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57357.8 7.00171 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57943.6 7.0732 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57279.1 6.99197 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57628.2 7.03471 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58567.7 7.1494 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58013.5 7.08178 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57681.5 7.04111 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57795.4 7.05508 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59002.3 7.20244 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59192.2 7.22562 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58512.8 7.14267 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58671.3 7.16207 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58171.6 7.10101 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58350.5 7.12281 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.4 7.11445 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58508.2 7.1421 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58511.7 7.14253 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58653.9 7.15989 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58550.4 7.14724 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59318.4 7.24097 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57853 7.06214 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58498.4 7.14087 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58426.4 7.13213 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59512.6 7.26467 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60443.5 -7.37839 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60908.5 -7.43514 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61060.2 -7.45367 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59984.4 -7.32237 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60129.5 -7.3401 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60783.1 -7.41989 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60431 -7.37691 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60140.7 -7.34142 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59998.4 -7.32403 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60395.7 -7.37254 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60028.3 -7.32774 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60887.8 -7.43267 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61066.5 -7.45441 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61164 -7.46632 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60739.8 -7.41458 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60443.5 -7.37838 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60544.4 -7.39071 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60303 -7.3612 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60143.3 -7.34174 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60328.6 -7.3644 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60395.9 -7.37256 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60276 -7.35798 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59684.2 -7.28572 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60187.9 -7.34719 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.4 -7.29698 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60128.6 -7.33997 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60450.5 -7.37922 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59890.5 -7.31089 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59647.3 -7.2812 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59834.9 -7.30412 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60999.1 -7.44624 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56552.5 -6.90341 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57074.5 -6.96718 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56536.5 -6.9015 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57036.3 -6.96248 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57405.1 -7.0075 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57259.2 -6.98972 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56419.6 -6.88718 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56461.1 -6.89226 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56951.6 -6.95213 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56800 -6.93367 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56600.5 -6.90927 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56511.5 -6.8984 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56870.5 -6.94221 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56993.6 -6.95727 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57679.7 -7.04103 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56560.6 -6.90438 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57546.6 -7.02477 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57035.8 -6.96245 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56800.6 -6.93377 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56505.8 -6.89773 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57161.4 -6.97779 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56855 -6.94036 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56619.7 -6.91168 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57621.8 -7.03399 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57359.7 -7.00197 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56825.9 -6.93676 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57031.5 -6.96191 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57239.3 -6.98735 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57254.8 -6.98918 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57074.4 -6.96716 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57574.5 -7.02822 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57912.4 -7.06943 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+61002.8 -7.44668 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61155.3 -7.4653 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61053.3 -7.45282 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61373.4 -7.4919 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60489.7 -7.38403 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61580.3 -7.51716 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60895.6 -7.4336 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60400.3 -7.3731 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61676.2 -7.52889 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61107.3 -7.45944 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61113.2 -7.46014 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61230.4 -7.47441 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60593.4 -7.39669 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61412.2 -7.49666 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61676.7 -7.52894 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61114.5 -7.46029 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62335.5 -7.60932 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61110.8 -7.45984 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61589.5 -7.51825 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62064.5 -7.57624 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61004.9 -7.44692 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60900.3 -7.43416 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61810.8 -7.54524 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61439.5 -7.49992 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61153 -7.46501 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61309.9 -7.48418 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61160.3 -7.46589 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61470.5 -7.50377 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61862.5 -7.55157 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61676 -7.52886 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62387.3 -7.61565 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60904.4 -7.43464 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56381.2 -6.88248 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56647.7 -6.91501 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56593.9 -6.90848 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56466.6 -6.8929 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56205.1 -6.86097 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56339.2 -6.87735 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56071.1 -6.84463 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56586.9 -6.90762 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56922.8 -6.94858 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56073.7 -6.84493 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57080.7 -6.96791 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57414.3 -7.00859 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56582.5 -6.9071 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56583.6 -6.90725 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56679.2 -6.91888 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56421.5 -6.8874 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56904.4 -6.94638 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57127.8 -6.97364 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56965.6 -6.9538 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56822.1 -6.93632 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57302 -6.99491 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.2 -6.90362 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56421.8 -6.88745 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56645.4 -6.91475 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57398.8 -7.00675 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57237.3 -6.98696 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56689 -6.92007 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56011.6 -6.83742 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56467.7 -6.89303 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55922.3 -6.8265 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56957.2 -6.95281 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56586.5 -6.90758 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62384.5 7.61517 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62210.4 7.59389 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62273.5 7.60161 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62019.1 7.5706 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61476.5 7.50432 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61597 7.51908 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62319.3 7.60717 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61416.3 7.49697 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61327.1 7.48611 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61486.5 7.50558 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61673.4 7.52832 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61732.6 7.53556 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61963.2 7.56376 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61418.2 7.49719 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61209 7.47165 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61987.6 7.56667 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62554.4 7.63592 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61756 7.53848 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62264.1 7.60048 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61953.7 7.56258 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62913.2 7.67967 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62120.9 7.583 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62709 7.65477 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62390 7.61587 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62229.7 7.59629 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61997.7 7.56794 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-62036.5 7.57262 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61752 7.53798 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61655.6 7.52623 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62767.5 7.66194 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61803 7.54422 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62761.8 7.66122 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58303.5 7.11703 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58372.5 7.12549 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58359.9 7.12397 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58262.2 7.11204 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58041 7.08509 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58261 7.11167 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58055.7 7.0867 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58647.4 7.15904 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58203.9 7.10488 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58893.9 7.18895 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58051.5 7.08632 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58539.4 7.14586 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58554.4 7.14758 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59335.9 7.24309 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58725.8 7.16875 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58465.7 7.13677 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.8 7.06394 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58529.8 7.14462 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-57972.8 7.07665 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57725.1 7.04637 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57946.6 7.07339 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57919.5 7.07013 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57971 7.07643 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57812.9 7.05708 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58059.5 7.08722 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57860.9 7.06295 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58481.2 7.13869 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57673.5 7.04005 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57733.9 7.04747 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58243 7.10961 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.2 7.09391 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58246.7 7.11007 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61009.3 7.44733 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61630.7 7.52317 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61471.8 7.50372 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61716.9 7.53361 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61893.5 7.55524 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.6 7.48633 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61623.4 7.52221 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61911.8 7.55752 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61279.1 7.48026 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62438.1 7.62175 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61937.8 7.56062 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62078.7 7.57786 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61496.4 7.50682 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61721.2 7.53417 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61321.1 7.48534 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61930.9 7.55971 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63425.9 7.7423 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63726 7.77898 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.8 7.83822 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63931 7.80396 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64114.7 7.8264 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63881.4 7.7979 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64089.1 7.82321 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64226 7.83998 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64162.8 7.83225 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64227.3 7.84014 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63324.3 7.72992 0.00 !Mu1ChX91ERaw[C.o2At2Ch11]
+-63377.9 7.73646 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64592.4 7.88475 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64051.2 7.81864 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63785.3 7.78625 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63425.1 7.74221 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56277.1 6.86963 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56696.4 6.92087 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56524.2 6.89973 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56421.9 6.88734 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56516.9 6.89896 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-56987.1 6.95627 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57341.9 6.99957 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56590.4 6.90785 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56842.5 6.93859 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57029.9 6.96151 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57840.1 7.06034 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57754.1 7.04987 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57718.4 7.04556 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57495 7.01832 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57673.7 7.0401 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-58035.2 7.08421 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57254.3 6.98888 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57309.6 6.99565 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56813.7 6.93513 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57684.3 7.04141 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57273.6 6.99128 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57263.3 6.99002 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56331.2 6.87626 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58331 7.12035 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57448.3 7.0126 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57763.7 7.05109 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57724.2 7.04628 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57458.3 7.01385 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57586.5 7.02947 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57671.5 7.03982 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57076.6 6.9672 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57818.9 7.05784 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59628.2 -7.27891 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60484.2 -7.3834 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59719.3 -7.29006 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59358 -7.24601 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60209.4 -7.34991 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60023.9 -7.32724 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59427.4 -7.25442 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59479.8 -7.26081 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.6 -7.25995 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59661.5 -7.28303 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59523 -7.2661 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59520.7 -7.26582 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60207.7 -7.3497 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59281.6 -7.23662 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59499.5 -7.26329 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59822.2 -7.30262 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62231 -7.59672 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62517.6 -7.63166 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62462.5 -7.62493 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62047 -7.57417 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62207.3 -7.59375 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62362.9 -7.61277 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62017.5 -7.57064 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61713.9 -7.53355 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61449.1 -7.50123 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62086.1 -7.57898 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62077.7 -7.57796 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62287.6 -7.60362 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62027.9 -7.5719 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61668.6 -7.52799 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61804.8 -7.54468 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115.7 -6.85022 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56255.7 -6.86728 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55634.9 -6.79153 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55640.9 -6.79227 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55384.3 -6.76092 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56420.4 -6.88745 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55380.9 -6.76051 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55934.8 -6.82817 0.00 !Mu1ChY40ERaw[C.o3At3Ch8]
+56036.5 -6.84053 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56149.2 -6.85434 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55509.9 -6.77625 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56637.3 -6.9139 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55637.9 -6.79188 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55730.3 -6.80315 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55751.6 -6.80582 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55760.9 -6.80693 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.7 -6.9819 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56616.7 -6.91132 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56565.1 -6.90504 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56007.5 -6.83694 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56838.9 -6.93846 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56277 -6.86982 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56475.8 -6.89415 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56394.9 -6.88425 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57286.1 -6.99307 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57107.7 -6.97128 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56704.7 -6.92209 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57329.2 -6.99832 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57398.8 -7.00677 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57025.8 -6.96125 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56179.4 -6.85794 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57294.5 -6.99407 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61036 -7.45079 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61615.2 -7.52147 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61327.7 -7.48646 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61616.9 -7.52169 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61289.5 -7.48175 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60072.3 -7.33313 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60461.8 -7.38072 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61147.5 -7.46439 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60324.6 -7.36394 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61243.3 -7.47609 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60892.2 -7.43321 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60362.6 -7.36861 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60563.4 -7.39312 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60969.5 -7.44272 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60632 -7.40146 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61354.5 -7.48966 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61129 -7.46218 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61142.4 -7.46376 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61098.2 -7.45836 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60505 -7.38602 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60475.6 -7.38236 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61198.3 -7.47058 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60653.8 -7.40421 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60610.3 -7.39887 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61084.6 -7.45673 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61281.6 -7.48082 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60759.5 -7.41709 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60908.7 -7.43532 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60520.1 -7.38782 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61330.5 -7.48678 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61609.9 -7.52084 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60752.2 -7.41622 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55866.2 -6.81972 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55510.1 -6.77629 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55739.1 -6.80422 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55602.7 -6.78757 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55779.5 -6.80916 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55452.6 -6.76931 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55433.8 -6.76695 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56175.8 -6.85753 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55295 -6.75003 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55267.6 -6.74664 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55913.4 -6.82548 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55219 -6.74076 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55914.7 -6.82563 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56088.3 -6.84683 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56128.7 -6.85177 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.7 -6.9068 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54791.9 -6.68861 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55573.5 -6.78397 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55177.3 -6.73564 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.9 -6.722 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55271.1 -6.74706 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55426.4 -6.76607 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55308.9 -6.7517 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55560.5 -6.78242 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55828.4 -6.8151 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55461.9 -6.77042 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.4 -6.69404 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55154.2 -6.73277 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55218.5 -6.74067 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55198.9 -6.73821 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55347.2 -6.75638 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56270.5 -6.86904 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62771.8 7.66248 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62536.2 7.63367 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62923.2 7.68092 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62099.2 7.5803 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62071.6 7.577 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62762.5 7.66131 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62536.6 7.63372 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62863.4 7.6736 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62977.6 7.68755 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62169.2 7.58889 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62486.2 7.62758 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62494 7.62855 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62591.4 7.6404 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62596.5 7.64104 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62693.3 7.65283 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63431.9 7.74304 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62275.5 7.60186 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61847 7.54956 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61648.9 7.52542 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61472.2 7.5038 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61487.7 7.50573 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62323.6 7.60772 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62160.6 7.58783 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61801.5 7.54404 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61589.4 7.51813 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61837.9 7.54843 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61997.2 7.56788 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61886.9 7.55441 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61669.6 7.52787 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61317.6 7.48493 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62385.4 7.6153 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61544.8 7.51271 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59005.1 7.20263 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58125.4 7.0952 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58621 7.15577 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58420.8 7.13128 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58182.1 7.10215 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58179.5 7.10183 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58382.7 7.12665 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57951.6 7.074 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57619.4 7.03346 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58602.8 7.15349 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58763.6 7.17317 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58295.3 7.11601 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58611.5 7.15458 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58569.5 7.14945 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58368.6 7.12489 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58524.7 7.144 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57829.7 7.05919 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57177.7 6.97958 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58151 7.0984 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57925 7.07083 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57600.2 7.03119 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57219.8 6.9847 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57855.4 7.06228 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57682.2 7.04116 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57912.6 7.06929 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57598.9 7.03102 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57919.6 7.07016 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.5 6.9577 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57498.2 7.01871 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56729.1 6.92483 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57500.6 7.01901 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57910.6 7.06904 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63311 7.72824 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64991.8 7.93347 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-63994.5 7.8117 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63750.3 7.78186 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64408.5 7.86228 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63629 7.76702 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63438.8 7.74388 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63358.3 7.73399 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63144.6 7.70793 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63812.1 7.7894 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63662.4 7.77117 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63876.9 7.79733 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63771.1 7.78444 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63652.1 7.7699 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63600.3 7.76358 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63256.4 7.72158 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63333.7 7.73107 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63150 7.70859 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63204.5 7.71524 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63982.1 7.81015 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63771.3 7.78446 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63682.7 7.7737 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63921.1 7.80269 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63090.3 7.7013 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63548.7 7.75733 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63345.7 7.73257 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63537.7 7.75593 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63267.1 7.72292 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64614.3 7.88733 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63737 7.78019 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63627.5 7.76682 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59011.6 7.20345 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58536.3 7.14543 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58294.5 7.11592 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58764.5 7.17328 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59388.2 7.24938 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59353.9 7.24523 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58868.9 7.18606 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59020.4 7.20454 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59051.2 7.20827 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59067.7 7.21031 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58780.6 7.17527 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59011.8 7.20348 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58685.6 7.16369 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60313.6 7.36243 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58947.7 7.1956 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58640.6 7.15819 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59256.4 7.23333 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59391.4 7.24979 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59741.5 7.29254 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59153 7.2207 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59659.3 7.28255 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60043.5 7.32941 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59492.9 7.26218 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59355.9 7.2455 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60079 7.3337 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58759.7 7.17268 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59106.3 7.21501 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59356.4 7.24556 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58905.4 7.19045 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58909 7.19091 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59139.8 7.21905 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59244.4 7.23184 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63180.3 -7.71254 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63958.5 -7.80757 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62563.9 -7.63734 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63393.8 -7.73864 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62965.3 -7.6863 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62695.2 -7.65332 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63071 -7.6992 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62684.7 -7.65205 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62805.2 -7.66674 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63405.9 -7.74008 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+63006 -7.69129 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62613.8 -7.64344 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62135.8 -7.58506 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62797.8 -7.66584 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+63003.9 -7.69104 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63451.5 -7.74566 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61680.4 -7.52939 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60963.7 -7.44202 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60731.3 -7.4136 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62044.4 -7.57386 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.9 -7.46121 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60932 -7.4381 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62091.8 -7.57965 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61042.5 -7.45157 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61080.2 -7.45622 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61569 -7.51583 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61088.9 -7.45724 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61401.8 -7.49545 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61590.8 -7.51854 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61456.7 -7.50214 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61348.2 -7.48891 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61814.6 -7.54586 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56310.4 -6.87387 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56475.6 -6.89413 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56843.7 -6.93897 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56709.9 -6.9227 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+57006.5 -6.95894 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56922.7 -6.94871 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56395.9 -6.88437 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56437.5 -6.88946 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56168.1 -6.85657 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58137.4 -7.09691 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56752.1 -6.92786 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56268.3 -6.86879 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57248.3 -6.98843 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57237.7 -6.98715 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57062.5 -6.96574 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56700.2 -6.92152 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57609.4 -7.03252 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57045.1 -6.96368 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57893.4 -7.06716 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57432.1 -7.01085 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57327.3 -6.9981 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58593.6 -7.15267 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57713.2 -7.04516 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57801 -7.05589 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57750.1 -7.0497 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57564.6 -7.02705 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57513.2 -7.02079 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58298.6 -7.11669 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57883.6 -7.066 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57333.9 -6.99889 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57877.7 -7.06529 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58222.3 -7.10732 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59352.4 -7.24534 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59653 -7.28202 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59466.7 -7.25926 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60421 -7.37573 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59563.3 -7.27104 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59865.2 -7.30789 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59568.1 -7.27161 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59903.1 -7.31254 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59874.2 -7.30895 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59565.9 -7.27135 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59951.4 -7.31844 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60102.6 -7.33689 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59329 -7.24242 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59973.3 -7.32106 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59369.2 -7.24734 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60205.5 -7.34945 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60559.1 -7.39262 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61223.9 -7.47379 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60555.5 -7.39217 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61267.8 -7.47916 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61183.2 -7.46879 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60877.4 -7.43143 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60964.7 -7.44213 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61316.7 -7.48517 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60889.6 -7.43289 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60834.9 -7.42623 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61475.4 -7.50452 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60713.8 -7.41149 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61139.9 -7.46349 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60586.2 -7.39585 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61091.2 -7.45753 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61463 -7.50289 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56883.7 -6.94393 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55958.3 -6.83096 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56259.7 -6.86775 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56620.9 -6.91184 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56390.1 -6.88368 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56741.9 -6.92663 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55881.7 -6.82158 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57242.5 -6.98773 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56047.6 -6.84185 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56706.4 -6.92227 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56618.3 -6.91153 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57516.3 -7.02116 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57052.7 -6.96458 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56701.3 -6.92167 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57023.2 -6.96095 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56155.3 -6.85506 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56480.1 -6.89468 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57291 -6.99365 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56601.1 -6.90948 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56864.7 -6.94167 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56504.8 -6.89772 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56531 -6.90085 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56803.1 -6.93407 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56744.6 -6.92696 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56339.6 -6.87753 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57094.7 -6.96973 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57471.8 -7.01574 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56243.7 -6.86585 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56920.2 -6.94841 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56357.9 -6.87972 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56171.4 -6.85698 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62432 7.62115 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61898.1 7.55599 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62261.8 7.60035 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62377.7 7.61452 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61987.1 7.56678 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61925.3 7.55922 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62100.7 7.58066 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61621.8 7.5222 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61764.3 7.53956 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61918.3 7.55834 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61881.5 7.55388 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62903 7.67858 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61674.1 7.52859 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61812.4 7.54541 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61555.6 7.51408 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62627.4 7.64492 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63656.5 7.77047 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63108 7.70354 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62943.4 7.68346 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62837.7 7.67058 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62676.4 7.65089 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.8 7.70503 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63798 7.78783 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63791 7.78695 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62795 7.6654 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63502.6 7.75172 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63532.1 7.75542 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63309.9 7.72829 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63637.8 7.76831 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63587.2 7.76214 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64531.7 7.87739 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63742.8 7.78111 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59430.3 7.25494 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59220.2 7.22924 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58174.6 7.10163 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58373.6 7.12581 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58848.1 7.18369 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-59012.9 7.20387 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59307.2 7.23977 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58677.9 7.16294 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59283.1 7.23677 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58956.4 7.1969 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-59043.5 7.20751 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59047.9 7.20805 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59414.1 7.25268 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58832.8 7.18171 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59184.6 7.22469 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57410.4 7.00817 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57223.7 6.98537 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56941.7 6.95094 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57306.3 6.99545 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56939.2 6.95063 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57390.5 7.00573 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56638.3 6.91393 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57358.5 7.00183 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57684.4 7.04165 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56591.3 6.9082 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57508 7.02016 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57136.1 6.97475 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56380.4 6.88251 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56917.4 6.9481 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56824.5 6.93679 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56577 6.90664 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64140 7.82956 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63839.3 7.79281 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63564.4 7.75927 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63770.4 7.78438 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63671.6 7.77235 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63272.3 7.72359 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64307 7.84993 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62530.8 7.63314 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62672.9 7.65044 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63019 7.69272 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63152.8 7.70897 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63441 7.74419 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64109.3 7.82574 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62453.5 7.62365 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62622.2 7.64425 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63017.2 7.69251 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62453.4 7.62363 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62780.3 7.66354 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62670.1 7.65009 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62554.7 7.63598 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62062.4 7.57587 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62422.6 7.61994 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62402.7 7.61746 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.8 7.58526 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62351.6 7.61123 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62791 7.66488 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62302.7 7.60527 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62078.1 7.57785 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62829.3 7.66952 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.5 7.6367 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62144 7.5859 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62353.9 7.61152 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56131.1 6.85191 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55920.2 6.82616 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55178.7 6.73562 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55783.6 6.8095 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55958 6.83076 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55940.2 6.82857 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55976 6.83293 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55255.5 6.74498 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55479.7 6.77237 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-56040.3 6.84079 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55791.2 6.81044 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55701.6 6.79948 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56738.3 6.92598 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56293.9 6.87171 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55819.1 6.81378 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55694.2 6.79856 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57554.1 7.02556 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56976.8 6.95514 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57518.4 7.02123 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56980.7 6.95562 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58026.2 7.08323 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57191.1 6.98127 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57432 7.01071 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56290.9 6.87137 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56748.2 6.92722 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57901.7 7.06808 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57512.9 7.02056 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57112.4 6.9717 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57653.3 7.03769 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56762.7 6.92904 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57841.9 7.06073 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56524.8 6.89995 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60194.7 -7.34802 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987.9 -7.20075 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60132.2 -7.34041 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59977.5 -7.32152 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59787.4 -7.2983 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59893.4 -7.31122 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59798.6 -7.29963 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60251.3 -7.3549 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60589.5 -7.39622 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60436.6 -7.37756 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60189.7 -7.3474 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59826.4 -7.3031 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59687.2 -7.28606 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59622.1 -7.27818 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60574.8 -7.39447 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59719.2 -7.29002 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62963.1 -7.68601 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63186.9 -7.71331 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62262.3 -7.60044 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62806 -7.6668 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63246.8 -7.72062 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63550.3 -7.75759 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+63016.8 -7.69256 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62986.6 -7.68882 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63522.2 -7.75424 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63478.7 -7.7489 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62643.1 -7.64692 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63429.9 -7.74292 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62483.7 -7.62745 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62960.7 -7.68572 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63085.3 -7.7009 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62969.4 -7.68675 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84715 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56228.6 -6.86391 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55834.6 -6.81583 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55713 -6.80096 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55757 -6.80633 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56228 -6.86384 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55925.9 -6.82695 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55539.7 -6.77979 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55412.1 -6.76422 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185 -6.85859 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55981.8 -6.83375 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55370.8 -6.75918 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55748.9 -6.80537 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55612.3 -6.78871 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55926.3 -6.82699 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55801.2 -6.81172 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56670.8 -6.9179 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56949.5 -6.9519 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57147.1 -6.97597 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56960.4 -6.95318 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56493.9 -6.89629 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56963.2 -6.95364 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56581.6 -6.90701 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57050.7 -6.96421 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57076.9 -6.96747 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56623.8 -6.91216 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57493.2 -7.01827 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57089.4 -6.96896 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57586.3 -7.02963 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57044.7 -6.96349 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56777.7 -6.93089 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57421.6 -7.00961 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59437.6 -7.25562 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59994 -7.32351 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59523.9 -7.2662 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59337.1 -7.24336 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59498.6 -7.26303 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58818.6 -7.18002 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59332.2 -7.24276 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+60018.7 -7.32659 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60180.5 -7.3463 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59480.7 -7.26089 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59527.7 -7.26664 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59635.1 -7.27972 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59581.2 -7.27315 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59444.7 -7.25647 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59048.4 -7.20811 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59989.5 -7.32298 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62855.4 -7.67285 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62750.4 -7.66003 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62532.7 -7.63346 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62151.3 -7.58691 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.6 -7.57075 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62710.2 -7.65509 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62271.6 -7.60155 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62960 -7.68565 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62677.8 -7.65121 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62626.1 -7.64489 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61878.3 -7.55359 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61999.2 -7.56832 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61924.7 -7.55927 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+61995.6 -7.56788 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61960.5 -7.56357 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61833.6 -7.54812 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56731.4 -6.92523 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56909.9 -6.94702 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56318.3 -6.87484 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55946.5 -6.8294 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56299.8 -6.87252 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56328.7 -6.87609 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55986.5 -6.8343 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55996.3 -6.83546 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55858.1 -6.81861 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56336.4 -6.877 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56504.4 -6.89753 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56280.4 -6.87019 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55801.7 -6.81176 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55903.8 -6.82419 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56672.2 -6.91805 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56668.9 -6.91765 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57102.2 -6.97047 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57033.7 -6.96222 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57102 -6.97059 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+57015.2 -6.95994 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57666.6 -7.03944 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57327.3 -6.99806 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56838.8 -6.9384 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57642.3 -7.0364 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57472.4 -7.01575 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57009.2 -6.95917 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57427.6 -7.01028 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57105.1 -6.97094 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57606 -7.03198 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56852.7 -6.94013 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57287.8 -6.99311 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57526.7 -7.02236 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/EdinburghDSSD/Calibration/calib_simu/calibT0.cal1 b/Projects/EdinburghDSSD/Calibration/calib_simu/calibT0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..99605ef63058dd281004c7ed8c90ec17435b8b21
--- /dev/null
+++ b/Projects/EdinburghDSSD/Calibration/calib_simu/calibT0.cal1
@@ -0,0 +1,1023 @@
+946.164 -0.114176 0.00 !Mu0ChX1TRaw[Co1At1Ch1]
+956.811 -0.115529 0.00 !Mu0ChX2TRaw[Co1At1Ch2]
+957.988 -0.115657 0.00 !Mu0ChX3TRaw[Co1At1Ch3]
+972.139 -0.117409 0.00 !Mu0ChX4TRaw[Co1At1Ch4]
+971.761 -0.117367 0.00 !Mu0ChX5TRaw[Co1At1Ch5]
+971.702 -0.117353 0.00 !Mu0ChX6TRaw[Co1At1Ch6]
+976.911 -0.117969 0.00 !Mu0ChX7TRaw[Co1At1Ch7]
+979.143 -0.118246 0.00 !Mu0ChX8TRaw[Co1At1Ch8]
+977.915 -0.118065 0.00 !Mu0ChX9TRaw[Co1At1Ch9]
+981.976 -0.118546 0.00 !Mu0ChX10TRaw[Co1At1Ch10]
+986.577 -0.119138 0.00 !Mu0ChX11TRaw[Co1At1Ch11]
+986.184 -0.119075 0.00 !Mu0ChX12TRaw[Co1At1Ch12]
+993.563 -0.119996 0.00 !Mu0ChX13TRaw[Co1At1Ch13]
+978.874 -0.118174 0.00 !Mu0ChX14TRaw[Co1At1Ch14]
+989.894 -0.119531 0.00 !Mu0ChX15TRaw[Co1At1Ch15]
+1318.57 -0.118448 0.00 !Mu0ChX16TRaw[Co1At1Ch16]
+955.564 -0.115275 0.00 !Mu0ChX17TRaw[Co1At2Ch1]
+965.774 -0.116527 0.00 !Mu0ChX18TRaw[Co1At2Ch2]
+978.184 -0.118044 0.00 !Mu0ChX19TRaw[Co1At2Ch3]
+978.854 -0.118125 0.00 !Mu0ChX20TRaw[Co1At2Ch4]
+987.988 -0.119233 0.00 !Mu0ChX21TRaw[Co1At2Ch5]
+982.353 -0.118555 0.00 !Mu0ChX22TRaw[Co1At2Ch6]
+992.928 -0.119845 0.00 !Mu0ChX23TRaw[Co1At2Ch7]
+994.329 -0.120005 0.00 !Mu0ChX24TRaw[Co1At2Ch8]
+989.504 -0.119427 0.00 !Mu0ChX25TRaw[Co1At2Ch9]
+1000.62 -0.120777 0.00 !Mu0ChX26TRaw[Co1At2Ch10]
+1002.92 -0.121057 0.00 !Mu0ChX27TRaw[Co1At2Ch11]
+1006.98 -0.121545 0.00 !Mu0ChX28TRaw[Co1At2Ch12]
+1002.57 -0.121021 0.00 !Mu0ChX29TRaw[Co1At2Ch13]
+1001.43 -0.120851 0.00 !Mu0ChX30TRaw[Co1At2Ch14]
+997.945 -0.12045 0.00 !Mu0ChX31TRaw[Co1At2Ch15]
+993.524 -0.119947 0.00 !Mu0ChX32TRaw[Co1At2Ch16]
+872.545 -0.105192 0.00 !Mu0ChX33TRaw[Co1At3Ch1]
+870.474 -0.104955 0.00 !Mu0ChX34TRaw[Co1At3Ch2]
+890.439 -0.107397 0.00 !Mu0ChX35TRaw[Co1At3Ch3]
+879.216 -0.106033 0.00 !Mu0ChX36TRaw[Co1At3Ch4]
+881.009 -0.106227 0.00 !Mu0ChX37TRaw[Co1At3Ch5]
+895.366 -0.108005 0.00 !Mu0ChX38TRaw[Co1At3Ch6]
+897.01 -0.108195 0.00 !Mu0ChX39TRaw[Co1At3Ch7]
+895.47 -0.107979 0.00 !Mu0ChX40TRaw[Co1At3Ch8]
+898.037 -0.108302 0.00 !Mu0ChX41TRaw[Co1At3Ch9]
+898.361 -0.108334 0.00 !Mu0ChX42TRaw[Co1At3Ch10]
+897.507 -0.108243 0.00 !Mu0ChX43TRaw[Co1At3Ch11]
+904.455 -0.109095 0.00 !Mu0ChX44TRaw[Co1At3Ch12]
+899.781 -0.108505 0.00 !Mu0ChX45TRaw[Co1At3Ch13]
+894.363 -0.107877 0.00 !Mu0ChX46TRaw[Co1At3Ch14]
+896.817 -0.108187 0.00 !Mu0ChX47TRaw[Co1At3Ch15]
+930.792 -0.10826 0.00 !Mu0ChX48TRaw[Co1At3Ch16]
+884.648 -0.106556 0.00 !Mu0ChX49TRaw[Co1At4Ch1]
+887.836 -0.106942 0.00 !Mu0ChX50TRaw[Co1At4Ch2]
+893.25 -0.107622 0.00 !Mu0ChX51TRaw[Co1At4Ch3]
+901.75 -0.109464 0.00 !Mu0ChX52TRaw[Co1At4Ch4]
+907.099 -0.109295 0.00 !Mu0ChX53TRaw[Co1At4Ch5]
+909.979 -0.109652 0.00 !Mu0ChX54TRaw[Co1At4Ch6]
+912.526 -0.109955 0.00 !Mu0ChX55TRaw[Co1At4Ch7]
+916.597 -0.110458 0.00 !Mu0ChX56TRaw[Co1At4Ch8]
+925.24 -0.111499 0.00 !Mu0ChX57TRaw[Co1At4Ch9]
+916.715 -0.110456 0.00 !Mu0ChX58TRaw[Co1At4Ch10]
+924.251 -0.111378 0.00 !Mu0ChX59TRaw[Co1At4Ch11]
+928.786 -0.111943 0.00 !Mu0ChX60TRaw[Co1At4Ch12]
+935.878 -0.112807 0.00 !Mu0ChX61TRaw[Co1At4Ch13]
+938.667 -0.11314 0.00 !Mu0ChX62TRaw[Co1At4Ch14]
+940.288 -0.113338 0.00 !Mu0ChX63TRaw[Co1At4Ch15]
+929.111 -0.111982 0.00 !Mu0ChX64TRaw[Co1At4Ch16]
+957.51 -0.115846 0.00 !Mu0ChX65TRaw[Co2At1Ch1]
+962.646 -0.11646 0.00 !Mu0ChX66TRaw[Co2At1Ch2]
+972.344 -0.117644 0.00 !Mu0ChX67TRaw[Co2At1Ch3]
+973.464 -0.117791 0.00 !Mu0ChX68TRaw[Co2At1Ch4]
+976.904 -0.118174 0.00 !Mu0ChX69TRaw[Co2At1Ch5]
+989.493 -0.119717 0.00 !Mu0ChX70TRaw[Co2At1Ch6]
+993.895 -0.120284 0.00 !Mu0ChX71TRaw[Co2At1Ch7]
+995.117 -0.120426 0.00 !Mu0ChX72TRaw[Co2At1Ch8]
+1006.3 -0.121763 0.00 !Mu0ChX73TRaw[Co2At1Ch9]
+987.403 -0.119445 0.00 !Mu0ChX74TRaw[Co2At1Ch10]
+1004.54 -0.121535 0.00 !Mu0ChX75TRaw[Co2At1Ch11]
+995.118 -0.120381 0.00 !Mu0ChX76TRaw[Co2At1Ch12]
+1002.39 -0.121262 0.00 !Mu0ChX77TRaw[Co2At1Ch13]
+1006.49 -0.121766 0.00 !Mu0ChX78TRaw[Co2At1Ch14]
+997.059 -0.120615 0.00 !Mu0ChX79TRaw[Co2At1Ch15]
+1377.74 -0.120952 0.00 !Mu0ChX80TRaw[Co2At1Ch16]
+923.114 -0.111515 0.00 !Mu0ChX81TRaw[Co2At2Ch1]
+932.866 -0.112746 0.00 !Mu0ChX82TRaw[Co2At2Ch2]
+924.928 -0.111774 0.00 !Mu0ChX83TRaw[Co2At2Ch3]
+937.265 -0.113281 0.00 !Mu0ChX84TRaw[Co2At2Ch4]
+930.752 -0.112468 0.00 !Mu0ChX85TRaw[Co2At2Ch5]
+941.628 -0.113819 0.00 !Mu0ChX86TRaw[Co2At2Ch6]
+949.998 -0.114818 0.00 !Mu0ChX87TRaw[Co2At2Ch7]
+943.027 -0.113978 0.00 !Mu0ChX88TRaw[Co2At2Ch8]
+949.721 -0.114813 0.00 !Mu0ChX89TRaw[Co2At2Ch9]
+957.242 -0.115728 0.00 !Mu0ChX90TRaw[Co2At2Ch10]
+964.815 -0.11664 0.00 !Mu0ChX91TRaw[Co2At2Ch11]
+961.466 -0.11625 0.00 !Mu0ChX92TRaw[Co2At2Ch12]
+961.749 -0.116299 0.00 !Mu0ChX93TRaw[Co2At2Ch13]
+960.655 -0.116152 0.00 !Mu0ChX94TRaw[Co2At2Ch14]
+974.674 -0.117868 0.00 !Mu0ChX95TRaw[Co2At2Ch15]
+992.705 -0.116744 0.00 !Mu0ChX96TRaw[Co2At2Ch16]
+868.269 -0.105013 0.00 !Mu0ChX97TRaw[Co2At3Ch1]
+877.648 -0.106169 0.00 !Mu0ChX98TRaw[Co2At3Ch2]
+878.241 -0.106212 0.00 !Mu0ChX99TRaw[Co2At3Ch3]
+883.994 -0.106905 0.00 !Mu0ChX100TRaw[Co2At3Ch4]
+893.321 -0.108043 0.00 !Mu0ChX101TRaw[Co2At3Ch5]
+900.56 -0.108935 0.00 !Mu0ChX102TRaw[Co2At3Ch6]
+896.766 -0.108442 0.00 !Mu0ChX103TRaw[Co2At3Ch7]
+894.903 -0.108194 0.00 !Mu0ChX104TRaw[Co2At3Ch8]
+904.239 -0.109336 0.00 !Mu0ChX105TRaw[Co2At3Ch9]
+902.018 -0.109053 0.00 !Mu0ChX106TRaw[Co2At3Ch10]
+907.673 -0.109771 0.00 !Mu0ChX107TRaw[Co2At3Ch11]
+904.96 -0.109449 0.00 !Mu0ChX108TRaw[Co2At3Ch12]
+902.795 -0.109128 0.00 !Mu0ChX109TRaw[Co2At3Ch13]
+906.335 -0.109641 0.00 !Mu0ChX110TRaw[Co2At3Ch14]
+903.029 -0.109177 0.00 !Mu0ChX111TRaw[Co2At3Ch15]
+912.908 -0.109478 0.00 !Mu0ChX112TRaw[Co2At3Ch16]
+888.694 -0.107364 0.00 !Mu0ChX113TRaw[Co2At4Ch1]
+891.736 -0.107748 0.00 !Mu0ChX114TRaw[Co2At4Ch2]
+891.957 -0.107782 0.00 !Mu0ChX115TRaw[Co2At4Ch3]
+901.87 -0.109007 0.00 !Mu0ChX116TRaw[Co2At4Ch4]
+905.48 -0.109423 0.00 !Mu0ChX117TRaw[Co2At4Ch5]
+899.196 -0.108648 0.00 !Mu0ChX118TRaw[Co2At4Ch6]
+913.782 -0.110413 0.00 !Mu0ChX119TRaw[Co2At4Ch7]
+914.779 -0.110579 0.00 !Mu0ChX120TRaw[Co2At4Ch8]
+909.004 -0.109898 0.00 !Mu0ChX121TRaw[Co2At4Ch9]
+914.282 -0.1105 0.00 !Mu0ChX122TRaw[Co2At4Ch10]
+922.657 -0.111529 0.00 !Mu0ChX123TRaw[Co2At4Ch11]
+914.822 -0.110604 0.00 !Mu0ChX124TRaw[Co2At4Ch12]
+917.977 -0.110972 0.00 !Mu0ChX125TRaw[Co2At4Ch13]
+919.687 -0.11118 0.00 !Mu0ChX126TRaw[Co2At4Ch14]
+914.922 -0.110613 0.00 !Mu0ChX127TRaw[Co2At4Ch15]
+925.329 -0.111151 0.00 !Mu0ChX128TRaw[Co2At4Ch16]
+942.169 -0.114033 0.00 !Mu0ChY2TRaw[Co3At1Ch2]
+941.094 -0.113921 0.00 !Mu0ChY3TRaw[Co3At1Ch3]
+959.045 -0.116104 0.00 !Mu0ChY4TRaw[Co3At1Ch4]
+954.629 -0.115563 0.00 !Mu0ChY5TRaw[Co3At1Ch5]
+970.443 -0.117481 0.00 !Mu0ChY6TRaw[Co3At1Ch6]
+969.234 -0.117339 0.00 !Mu0ChY7TRaw[Co3At1Ch7]
+966.53 -0.117018 0.00 !Mu0ChY8TRaw[Co3At1Ch8]
+973.409 -0.117842 0.00 !Mu0ChY9TRaw[Co3At1Ch9]
+968.923 -0.117316 0.00 !Mu0ChY10TRaw[Co3At1Ch10]
+971.661 -0.117632 0.00 !Mu0ChY11TRaw[Co3At1Ch11]
+977.841 -0.118398 0.00 !Mu0ChY12TRaw[Co3At1Ch12]
+975.821 -0.11814 0.00 !Mu0ChY13TRaw[Co3At1Ch13]
+971.638 -0.117633 0.00 !Mu0ChY14TRaw[Co3At1Ch14]
+974.225 -0.117944 0.00 !Mu0ChY15TRaw[Co3At1Ch15]
+980.805 -0.118761 0.00 !Mu0ChY16TRaw[Co3At1Ch16]
+935.973 -0.113175 0.00 !Mu0ChY17TRaw[Co3At2Ch1]
+944.972 -0.114309 0.00 !Mu0ChY18TRaw[Co3At2Ch2]
+953.592 -0.115351 0.00 !Mu0ChY19TRaw[Co3At2Ch3]
+945.492 -0.11436 0.00 !Mu0ChY20TRaw[Co3At2Ch4]
+948.066 -0.114686 0.00 !Mu0ChY21TRaw[Co3At2Ch5]
+951.558 -0.115103 0.00 !Mu0ChY22TRaw[Co3At2Ch6]
+957.545 -0.115832 0.00 !Mu0ChY23TRaw[Co3At2Ch7]
+957.576 -0.115841 0.00 !Mu0ChY24TRaw[Co3At2Ch8]
+962.251 -0.116398 0.00 !Mu0ChY25TRaw[Co3At2Ch9]
+960.479 -0.116195 0.00 !Mu0ChY26TRaw[Co3At2Ch10]
+957.007 -0.115516 0.00 !Mu0ChY27TRaw[Co3At2Ch11]
+971.646 -0.117562 0.00 !Mu0ChY28TRaw[Co3At2Ch12]
+974.064 -0.117834 0.00 !Mu0ChY29TRaw[Co3At2Ch13]
+968.974 -0.11722 0.00 !Mu0ChY30TRaw[Co3At2Ch14]
+971.944 -0.11759 0.00 !Mu0ChY31TRaw[Co3At2Ch15]
+966.713 -0.116928 0.00 !Mu0ChY32TRaw[Co3At2Ch16]
+869.43 -0.105131 0.00 !Mu0ChY33TRaw[Co3At3Ch1]
+868.989 -0.105113 0.00 !Mu0ChY34TRaw[Co3At3Ch2]
+886.133 -0.107174 0.00 !Mu0ChY35TRaw[Co3At3Ch3]
+876.002 -0.105955 0.00 !Mu0ChY36TRaw[Co3At3Ch4]
+887.653 -0.107363 0.00 !Mu0ChY37TRaw[Co3At3Ch5]
+886.897 -0.107278 0.00 !Mu0ChY38TRaw[Co3At3Ch6]
+887.559 -0.107347 0.00 !Mu0ChY39TRaw[Co3At3Ch7]
+905.525 -0.109567 0.00 !Mu0ChY40TRaw[Co3At3Ch8]
+903.288 -0.109268 0.00 !Mu0ChY41TRaw[Co3At3Ch9]
+901.488 -0.109045 0.00 !Mu0ChY42TRaw[Co3At3Ch10]
+900.453 -0.108924 0.00 !Mu0ChY43TRaw[Co3At3Ch11]
+911.154 -0.110196 0.00 !Mu0ChY44TRaw[Co3At3Ch12]
+908.4 -0.109895 0.00 !Mu0ChY45TRaw[Co3At3Ch13]
+903.164 -0.10924 0.00 !Mu0ChY46TRaw[Co3At3Ch14]
+913.419 -0.110513 0.00 !Mu0ChY47TRaw[Co3At3Ch15]
+901.371 -0.109056 0.00 !Mu0ChY48TRaw[Co3At3Ch16]
+855.809 -0.103507 0.00 !Mu0ChY49TRaw[Co3At4Ch1]
+866.963 -0.104888 0.00 !Mu0ChY50TRaw[Co3At4Ch2]
+862.301 -0.104347 0.00 !Mu0ChY51TRaw[Co3At4Ch3]
+879.214 -0.106391 0.00 !Mu0ChY52TRaw[Co3At4Ch4]
+881.851 -0.106718 0.00 !Mu0ChY53TRaw[Co3At4Ch5]
+883.115 -0.106878 0.00 !Mu0ChY54TRaw[Co3At4Ch6]
+879.659 -0.106441 0.00 !Mu0ChY55TRaw[Co3At4Ch7]
+887.765 -0.107426 0.00 !Mu0ChY56TRaw[Co3At4Ch8]
+889.179 -0.107608 0.00 !Mu0ChY57TRaw[Co3At4Ch9]
+893.434 -0.108136 0.00 !Mu0ChY58TRaw[Co3At4Ch10]
+900.612 -0.109012 0.00 !Mu0ChY59TRaw[Co3At4Ch11]
+899.41 -0.108611 0.00 !Mu0ChY60TRaw[Co3At4Ch12]
+898.225 -0.108719 0.00 !Mu0ChY61TRaw[Co3At4Ch13]
+905.378 -0.109581 0.00 !Mu0ChY62TRaw[Co3At4Ch14]
+899.576 -0.108895 0.00 !Mu0ChY63TRaw[Co3At4Ch15]
+904.856 -0.109543 0.00 !Mu0ChY64TRaw[Co3At4Ch16]
+964.166 -0.116469 0.00 !Mu0ChY65TRaw[Co4At1Ch1]
+970.821 -0.117302 0.00 !Mu0ChY66TRaw[Co4At1Ch2]
+976.54 -0.118012 0.00 !Mu0ChY67TRaw[Co4At1Ch3]
+976.814 -0.118028 0.00 !Mu0ChY68TRaw[Co4At1Ch4]
+979.621 -0.118378 0.00 !Mu0ChY69TRaw[Co4At1Ch5]
+983.271 -0.118825 0.00 !Mu0ChY70TRaw[Co4At1Ch6]
+982.977 -0.118781 0.00 !Mu0ChY71TRaw[Co4At1Ch7]
+986.021 -0.119156 0.00 !Mu0ChY72TRaw[Co4At1Ch8]
+989.88 -0.119628 0.00 !Mu0ChY73TRaw[Co4At1Ch9]
+981.368 -0.118591 0.00 !Mu0ChY74TRaw[Co4At1Ch10]
+990.1 -0.119656 0.00 !Mu0ChY75TRaw[Co4At1Ch11]
+1000.52 -0.120924 0.00 !Mu0ChY76TRaw[Co4At1Ch12]
+995.667 -0.120327 0.00 !Mu0ChY77TRaw[Co4At1Ch13]
+997.754 -0.120579 0.00 !Mu0ChY78TRaw[Co4At1Ch14]
+994.951 -0.120247 0.00 !Mu0ChY79TRaw[Co4At1Ch15]
+1001.99 -0.121097 0.00 !Mu0ChY80TRaw[Co4At1Ch16]
+970.583 -0.117145 0.00 !Mu0ChY81TRaw[Co4At2Ch1]
+986.462 -0.119118 0.00 !Mu0ChY82TRaw[Co4At2Ch2]
+981.625 -0.118534 0.00 !Mu0ChY83TRaw[Co4At2Ch3]
+996.206 -0.12031 0.00 !Mu0ChY84TRaw[Co4At2Ch4]
+1000.06 -0.120777 0.00 !Mu0ChY85TRaw[Co4At2Ch5]
+1002.53 -0.121085 0.00 !Mu0ChY86TRaw[Co4At2Ch6]
+998.357 -0.120569 0.00 !Mu0ChY87TRaw[Co4At2Ch7]
+1008.76 -0.121839 0.00 !Mu0ChY88TRaw[Co4At2Ch8]
+1004.65 -0.121339 0.00 !Mu0ChY89TRaw[Co4At2Ch9]
+1015 -0.122592 0.00 !Mu0ChY90TRaw[Co4At2Ch10]
+1025.62 -0.123897 0.00 !Mu0ChY91TRaw[Co4At2Ch11]
+1025.41 -0.123866 0.00 !Mu0ChY92TRaw[Co4At2Ch12]
+1020.27 -0.123256 0.00 !Mu0ChY93TRaw[Co4At2Ch13]
+1024.71 -0.123786 0.00 !Mu0ChY94TRaw[Co4At2Ch14]
+1021.51 -0.123408 0.00 !Mu0ChY95TRaw[Co4At2Ch15]
+1016.94 -0.122879 0.00 !Mu0ChY96TRaw[Co4At2Ch16]
+882.97 -0.106544 0.00 !Mu0ChY97TRaw[Co4At3Ch1]
+879.326 -0.106139 0.00 !Mu0ChY98TRaw[Co4At3Ch2]
+878.449 -0.106028 0.00 !Mu0ChY99TRaw[Co4At3Ch3]
+894.979 -0.108041 0.00 !Mu0ChY100TRaw[Co4At3Ch4]
+892.203 -0.107707 0.00 !Mu0ChY101TRaw[Co4At3Ch5]
+891.015 -0.10757 0.00 !Mu0ChY102TRaw[Co4At3Ch6]
+895.424 -0.108105 0.00 !Mu0ChY103TRaw[Co4At3Ch7]
+907.578 -0.10959 0.00 !Mu0ChY104TRaw[Co4At3Ch8]
+902.147 -0.108916 0.00 !Mu0ChY105TRaw[Co4At3Ch9]
+915.536 -0.110544 0.00 !Mu0ChY106TRaw[Co4At3Ch10]
+910.897 -0.109981 0.00 !Mu0ChY107TRaw[Co4At3Ch11]
+915.092 -0.11051 0.00 !Mu0ChY108TRaw[Co4At3Ch12]
+914.664 -0.110421 0.00 !Mu0ChY109TRaw[Co4At3Ch13]
+910.113 -0.109894 0.00 !Mu0ChY110TRaw[Co4At3Ch14]
+915.675 -0.110572 0.00 !Mu0ChY111TRaw[Co4At3Ch15]
+917.59 -0.110803 0.00 !Mu0ChY112TRaw[Co4At3Ch16]
+892.441 -0.107535 0.00 !Mu0ChY113TRaw[Co4At4Ch1]
+899.913 -0.108466 0.00 !Mu0ChY114TRaw[Co4At4Ch2]
+899.438 -0.108438 0.00 !Mu0ChY115TRaw[Co4At4Ch3]
+905.439 -0.109158 0.00 !Mu0ChY116TRaw[Co4At4Ch4]
+917.108 -0.110566 0.00 !Mu0ChY117TRaw[Co4At4Ch5]
+910.331 -0.109757 0.00 !Mu0ChY118TRaw[Co4At4Ch6]
+930.135 -0.112167 0.00 !Mu0ChY119TRaw[Co4At4Ch7]
+921.847 -0.111146 0.00 !Mu0ChY120TRaw[Co4At4Ch8]
+932.043 -0.112407 0.00 !Mu0ChY121TRaw[Co4At4Ch9]
+931.497 -0.112337 0.00 !Mu0ChY122TRaw[Co4At4Ch10]
+933.275 -0.112539 0.00 !Mu0ChY123TRaw[Co4At4Ch11]
+936.749 -0.112978 0.00 !Mu0ChY124TRaw[Co4At4Ch12]
+931.392 -0.112316 0.00 !Mu0ChY125TRaw[Co4At4Ch13]
+930.352 -0.112192 0.00 !Mu0ChY126TRaw[Co4At4Ch14]
+927.302 -0.111821 0.00 !Mu0ChY127TRaw[Co4At4Ch15]
+930.24 -0.112162 0.00 !Mu0ChY128TRaw[Co4At4Ch16]
+926.786 -0.11232 0.00 !Mu1ChX1TRaw[Co1At1Ch1]
+940.575 -0.114015 0.00 !Mu1ChX2TRaw[Co1At1Ch2]
+943.089 -0.114341 0.00 !Mu1ChX3TRaw[Co1At1Ch3]
+954.304 -0.115712 0.00 !Mu1ChX4TRaw[Co1At1Ch4]
+954.653 -0.115744 0.00 !Mu1ChX5TRaw[Co1At1Ch5]
+956.573 -0.115962 0.00 !Mu1ChX6TRaw[Co1At1Ch6]
+970.061 -0.117589 0.00 !Mu1ChX7TRaw[Co1At1Ch7]
+965.116 -0.116998 0.00 !Mu1ChX8TRaw[Co1At1Ch8]
+969.325 -0.117498 0.00 !Mu1ChX9TRaw[Co1At1Ch9]
+978.231 -0.118577 0.00 !Mu1ChX10TRaw[Co1At1Ch10]
+974.593 -0.118143 0.00 !Mu1ChX11TRaw[Co1At1Ch11]
+974.146 -0.118071 0.00 !Mu1ChX12TRaw[Co1At1Ch12]
+986.191 -0.11954 0.00 !Mu1ChX13TRaw[Co1At1Ch13]
+986.678 -0.119597 0.00 !Mu1ChX14TRaw[Co1At1Ch14]
+983.727 -0.119236 0.00 !Mu1ChX15TRaw[Co1At1Ch15]
+1371.19 -0.119179 0.00 !Mu1ChX16TRaw[Co1At1Ch16]
+922.557 -0.111777 0.00 !Mu1ChX17TRaw[Co1At2Ch1]
+945.525 -0.114612 0.00 !Mu1ChX18TRaw[Co1At2Ch2]
+946.378 -0.114738 0.00 !Mu1ChX19TRaw[Co1At2Ch3]
+943.86 -0.114439 0.00 !Mu1ChX20TRaw[Co1At2Ch4]
+952.199 -0.115464 0.00 !Mu1ChX21TRaw[Co1At2Ch5]
+965.45 -0.117052 0.00 !Mu1ChX22TRaw[Co1At2Ch6]
+954.947 -0.115762 0.00 !Mu1ChX23TRaw[Co1At2Ch7]
+971.26 -0.117739 0.00 !Mu1ChX24TRaw[Co1At2Ch8]
+969.364 -0.117531 0.00 !Mu1ChX25TRaw[Co1At2Ch9]
+972.531 -0.117923 0.00 !Mu1ChX26TRaw[Co1At2Ch10]
+971.171 -0.117737 0.00 !Mu1ChX27TRaw[Co1At2Ch11]
+974.954 -0.11821 0.00 !Mu1ChX28TRaw[Co1At2Ch12]
+978.834 -0.118677 0.00 !Mu1ChX29TRaw[Co1At2Ch13]
+975.807 -0.118324 0.00 !Mu1ChX30TRaw[Co1At2Ch14]
+974.804 -0.118198 0.00 !Mu1ChX31TRaw[Co1At2Ch15]
+984.936 -0.119148 0.00 !Mu1ChX32TRaw[Co1At2Ch16]
+875.904 -0.106165 0.00 !Mu1ChX33TRaw[Co1At3Ch1]
+875.79 -0.10618 0.00 !Mu1ChX34TRaw[Co1At3Ch2]
+891.706 -0.108064 0.00 !Mu1ChX35TRaw[Co1At3Ch3]
+873.845 -0.105941 0.00 !Mu1ChX36TRaw[Co1At3Ch4]
+891.762 -0.108105 0.00 !Mu1ChX37TRaw[Co1At3Ch5]
+897.589 -0.108823 0.00 !Mu1ChX38TRaw[Co1At3Ch6]
+889.745 -0.107861 0.00 !Mu1ChX39TRaw[Co1At3Ch7]
+894.521 -0.10842 0.00 !Mu1ChX40TRaw[Co1At3Ch8]
+897.332 -0.108779 0.00 !Mu1ChX41TRaw[Co1At3Ch9]
+897.319 -0.108754 0.00 !Mu1ChX42TRaw[Co1At3Ch10]
+905.732 -0.109783 0.00 !Mu1ChX43TRaw[Co1At3Ch11]
+897.833 -0.108855 0.00 !Mu1ChX44TRaw[Co1At3Ch12]
+907.458 -0.110019 0.00 !Mu1ChX45TRaw[Co1At3Ch13]
+905.696 -0.109854 0.00 !Mu1ChX46TRaw[Co1At3Ch14]
+903.207 -0.109528 0.00 !Mu1ChX47TRaw[Co1At3Ch15]
+918.195 -0.110055 0.00 !Mu1ChX48TRaw[Co1At3Ch16]
+865.632 -0.104838 0.00 !Mu1ChX49TRaw[Co1At4Ch1]
+871.03 -0.105455 0.00 !Mu1ChX50TRaw[Co1At4Ch2]
+883.706 -0.107015 0.00 !Mu1ChX51TRaw[Co1At4Ch3]
+886.118 -0.107338 0.00 !Mu1ChX52TRaw[Co1At4Ch4]
+888.977 -0.107685 0.00 !Mu1ChX53TRaw[Co1At4Ch5]
+889.176 -0.107699 0.00 !Mu1ChX54TRaw[Co1At4Ch6]
+893.053 -0.10819 0.00 !Mu1ChX55TRaw[Co1At4Ch7]
+898.958 -0.108878 0.00 !Mu1ChX56TRaw[Co1At4Ch8]
+905.343 -0.1097 0.00 !Mu1ChX57TRaw[Co1At4Ch9]
+901.014 -0.10916 0.00 !Mu1ChX58TRaw[Co1At4Ch10]
+909.801 -0.110244 0.00 !Mu1ChX59TRaw[Co1At4Ch11]
+902.356 -0.109308 0.00 !Mu1ChX60TRaw[Co1At4Ch12]
+915.181 -0.110894 0.00 !Mu1ChX61TRaw[Co1At4Ch13]
+906.646 -0.109867 0.00 !Mu1ChX62TRaw[Co1At4Ch14]
+906.177 -0.109791 0.00 !Mu1ChX63TRaw[Co1At4Ch15]
+917.322 -0.110777 0.00 !Mu1ChX64TRaw[Co1At4Ch16]
+947.375 -0.114723 0.00 !Mu1ChX65TRaw[Co2At1Ch1]
+949.155 -0.114949 0.00 !Mu1ChX66TRaw[Co2At1Ch2]
+962.658 -0.116629 0.00 !Mu1ChX67TRaw[Co2At1Ch3]
+962.29 -0.116557 0.00 !Mu1ChX68TRaw[Co2At1Ch4]
+964.501 -0.116827 0.00 !Mu1ChX69TRaw[Co2At1Ch5]
+972.559 -0.117811 0.00 !Mu1ChX70TRaw[Co2At1Ch6]
+972.248 -0.117758 0.00 !Mu1ChX71TRaw[Co2At1Ch7]
+977.48 -0.118392 0.00 !Mu1ChX72TRaw[Co2At1Ch8]
+974.838 -0.118063 0.00 !Mu1ChX73TRaw[Co2At1Ch9]
+989.581 -0.119853 0.00 !Mu1ChX74TRaw[Co2At1Ch10]
+985.59 -0.119377 0.00 !Mu1ChX75TRaw[Co2At1Ch11]
+983.734 -0.119141 0.00 !Mu1ChX76TRaw[Co2At1Ch12]
+990.699 -0.119982 0.00 !Mu1ChX77TRaw[Co2At1Ch13]
+992.465 -0.120199 0.00 !Mu1ChX78TRaw[Co2At1Ch14]
+992.485 -0.1202 0.00 !Mu1ChX79TRaw[Co2At1Ch15]
+1375.52 -0.120722 0.00 !Mu1ChX80TRaw[Co2At1Ch16]
+972.687 -0.117775 0.00 !Mu1ChX81TRaw[Co2At2Ch1]
+974.84 -0.118024 0.00 !Mu1ChX82TRaw[Co2At2Ch2]
+979.911 -0.118652 0.00 !Mu1ChX83TRaw[Co2At2Ch3]
+993.406 -0.120307 0.00 !Mu1ChX84TRaw[Co2At2Ch4]
+992.814 -0.120215 0.00 !Mu1ChX85TRaw[Co2At2Ch5]
+1002.31 -0.121389 0.00 !Mu1ChX86TRaw[Co2At2Ch6]
+1003.74 -0.121554 0.00 !Mu1ChX87TRaw[Co2At2Ch7]
+995.588 -0.12057 0.00 !Mu1ChX88TRaw[Co2At2Ch8]
+1010.12 -0.122345 0.00 !Mu1ChX89TRaw[Co2At2Ch9]
+1012.32 -0.12261 0.00 !Mu1ChX90TRaw[Co2At2Ch10]
+1007.94 -0.122082 0.00 !Mu1ChX91TRaw[Co2At2Ch11]
+1014.03 -0.12282 0.00 !Mu1ChX92TRaw[Co2At2Ch12]
+1013.77 -0.12279 0.00 !Mu1ChX93TRaw[Co2At2Ch13]
+1016.53 -0.123127 0.00 !Mu1ChX94TRaw[Co2At2Ch14]
+1016.3 -0.123096 0.00 !Mu1ChX95TRaw[Co2At2Ch15]
+1004.26 -0.12163 0.00 !Mu1ChX96TRaw[Co2At2Ch16]
+888.673 -0.107613 0.00 !Mu1ChX97TRaw[Co2At3Ch1]
+886.825 -0.107373 0.00 !Mu1ChX98TRaw[Co2At3Ch2]
+890.552 -0.107838 0.00 !Mu1ChX99TRaw[Co2At3Ch3]
+901.931 -0.109224 0.00 !Mu1ChX100TRaw[Co2At3Ch4]
+901.707 -0.1092 0.00 !Mu1ChX101TRaw[Co2At3Ch5]
+906.676 -0.109791 0.00 !Mu1ChX102TRaw[Co2At3Ch6]
+902.249 -0.109268 0.00 !Mu1ChX103TRaw[Co2At3Ch7]
+917.913 -0.111151 0.00 !Mu1ChX104TRaw[Co2At3Ch8]
+919.118 -0.11128 0.00 !Mu1ChX105TRaw[Co2At3Ch9]
+920.502 -0.111467 0.00 !Mu1ChX106TRaw[Co2At3Ch10]
+925.286 -0.112035 0.00 !Mu1ChX107TRaw[Co2At3Ch11]
+920.839 -0.111519 0.00 !Mu1ChX108TRaw[Co2At3Ch12]
+921.752 -0.111616 0.00 !Mu1ChX109TRaw[Co2At3Ch13]
+913.537 -0.110627 0.00 !Mu1ChX110TRaw[Co2At3Ch14]
+916.058 -0.110941 0.00 !Mu1ChX111TRaw[Co2At3Ch15]
+924.322 -0.11176 0.00 !Mu1ChX112TRaw[Co2At3Ch16]
+897.027 -0.108476 0.00 !Mu1ChX113TRaw[Co2At4Ch1]
+897.77 -0.108567 0.00 !Mu1ChX114TRaw[Co2At4Ch2]
+905.06 -0.10946 0.00 !Mu1ChX115TRaw[Co2At4Ch3]
+910.605 -0.110136 0.00 !Mu1ChX116TRaw[Co2At4Ch4]
+925.57 -0.111977 0.00 !Mu1ChX117TRaw[Co2At4Ch5]
+920.161 -0.111304 0.00 !Mu1ChX118TRaw[Co2At4Ch6]
+932.296 -0.112781 0.00 !Mu1ChX119TRaw[Co2At4Ch7]
+914.819 -0.110659 0.00 !Mu1ChX120TRaw[Co2At4Ch8]
+920.284 -0.111325 0.00 !Mu1ChX121TRaw[Co2At4Ch9]
+927.772 -0.112226 0.00 !Mu1ChX122TRaw[Co2At4Ch10]
+928.866 -0.11236 0.00 !Mu1ChX123TRaw[Co2At4Ch11]
+924.041 -0.111775 0.00 !Mu1ChX124TRaw[Co2At4Ch12]
+921.484 -0.111483 0.00 !Mu1ChX125TRaw[Co2At4Ch13]
+927.438 -0.112193 0.00 !Mu1ChX126TRaw[Co2At4Ch14]
+930.757 -0.112614 0.00 !Mu1ChX127TRaw[Co2At4Ch15]
+924.698 -0.111864 0.00 !Mu1ChX128TRaw[Co2At4Ch16]
+930.899 -0.11282 0.00 !Mu1ChY1TRaw[Co3At1Ch1]
+932.297 -0.113022 0.00 !Mu1ChY2TRaw[Co3At1Ch2]
+943.292 -0.114361 0.00 !Mu1ChY3TRaw[Co3At1Ch3]
+947.201 -0.114834 0.00 !Mu1ChY4TRaw[Co3At1Ch4]
+949.524 -0.115122 0.00 !Mu1ChY5TRaw[Co3At1Ch5]
+952.95 -0.115533 0.00 !Mu1ChY6TRaw[Co3At1Ch6]
+956.311 -0.115938 0.00 !Mu1ChY7TRaw[Co3At1Ch7]
+946.369 -0.114726 0.00 !Mu1ChY8TRaw[Co3At1Ch8]
+953.576 -0.11562 0.00 !Mu1ChY9TRaw[Co3At1Ch9]
+964.215 -0.116854 0.00 !Mu1ChY10TRaw[Co3At1Ch10]
+959.98 -0.116368 0.00 !Mu1ChY11TRaw[Co3At1Ch11]
+967.734 -0.117327 0.00 !Mu1ChY12TRaw[Co3At1Ch12]
+967.914 -0.117358 0.00 !Mu1ChY13TRaw[Co3At1Ch13]
+963.677 -0.116827 0.00 !Mu1ChY14TRaw[Co3At1Ch14]
+965.026 -0.116981 0.00 !Mu1ChY15TRaw[Co3At1Ch15]
+962.695 -0.116717 0.00 !Mu1ChY16TRaw[Co3At1Ch16]
+964.683 -0.116883 0.00 !Mu1ChY17TRaw[Co3At2Ch1]
+966.649 -0.117128 0.00 !Mu1ChY18TRaw[Co3At2Ch2]
+971.034 -0.117665 0.00 !Mu1ChY19TRaw[Co3At2Ch3]
+971.558 -0.117743 0.00 !Mu1ChY20TRaw[Co3At2Ch4]
+983.103 -0.119146 0.00 !Mu1ChY21TRaw[Co3At2Ch5]
+979.702 -0.118747 0.00 !Mu1ChY22TRaw[Co3At2Ch6]
+450 -0.119189 0.00 !Mu1ChY23TRaw[Co3At2Ch7]
+989.487 -0.119964 0.00 !Mu1ChY24TRaw[Co3At2Ch8]
+991.153 -0.120158 0.00 !Mu1ChY25TRaw[Co3At2Ch9]
+991.247 -0.120176 0.00 !Mu1ChY26TRaw[Co3At2Ch10]
+995.752 -0.120728 0.00 !Mu1ChY27TRaw[Co3At2Ch11]
+990.621 -0.120113 0.00 !Mu1ChY28TRaw[Co3At2Ch12]
+992.588 -0.120339 0.00 !Mu1ChY29TRaw[Co3At2Ch13]
+983.94 -0.119308 0.00 !Mu1ChY30TRaw[Co3At2Ch14]
+990.472 -0.120108 0.00 !Mu1ChY31TRaw[Co3At2Ch15]
+985.366 -0.119515 0.00 !Mu1ChY32TRaw[Co3At2Ch16]
+879.895 -0.106691 0.00 !Mu1ChY33TRaw[Co3At3Ch1]
+885.732 -0.10745 0.00 !Mu1ChY34TRaw[Co3At3Ch2]
+880.947 -0.106848 0.00 !Mu1ChY35TRaw[Co3At3Ch3]
+890.881 -0.108037 0.00 !Mu1ChY36TRaw[Co3At3Ch4]
+8.50641e+11 -1.03827e+08 0.00 !Mu1ChY37TRaw[Co3At3Ch5]
+901.269 -0.109433 0.00 !Mu1ChY38TRaw[Co3At3Ch6]
+900.483 -0.110242 0.00 !Mu1ChY39TRaw[Co3At3Ch7]
+902.133 -0.10944 0.00 !Mu1ChY40TRaw[Co3At3Ch8]
+890.343 -0.107957 0.00 !Mu1ChY41TRaw[Co3At3Ch9]
+902.898 -0.109521 0.00 !Mu1ChY42TRaw[Co3At3Ch10]
+895.657 -0.108623 0.00 !Mu1ChY43TRaw[Co3At3Ch11]
+904.61 -0.10969 0.00 !Mu1ChY44TRaw[Co3At3Ch12]
+907.072 -0.109989 0.00 !Mu1ChY45TRaw[Co3At3Ch13]
+901.222 -0.109312 0.00 !Mu1ChY46TRaw[Co3At3Ch14]
+905.951 -0.109844 0.00 !Mu1ChY47TRaw[Co3At3Ch15]
+901.159 -0.109257 0.00 !Mu1ChY48TRaw[Co3At3Ch16]
+883.344 -0.10696 0.00 !Mu1ChY49TRaw[Co3At4Ch1]
+882.465 -0.106852 0.00 !Mu1ChY50TRaw[Co3At4Ch2]
+878.872 -0.106436 0.00 !Mu1ChY51TRaw[Co3At4Ch3]
+892.099 -0.108049 0.00 !Mu1ChY52TRaw[Co3At4Ch4]
+897.834 -0.108781 0.00 !Mu1ChY53TRaw[Co3At4Ch5]
+899.02 -0.108923 0.00 !Mu1ChY54TRaw[Co3At4Ch6]
+898.979 -0.108922 0.00 !Mu1ChY55TRaw[Co3At4Ch7]
+899.225 -0.108949 0.00 !Mu1ChY56TRaw[Co3At4Ch8]
+911.018 -0.110395 0.00 !Mu1ChY57TRaw[Co3At4Ch9]
+910.225 -0.110294 0.00 !Mu1ChY58TRaw[Co3At4Ch10]
+905.692 -0.109746 0.00 !Mu1ChY59TRaw[Co3At4Ch11]
+908.504 -0.109802 0.00 !Mu1ChY60TRaw[Co3At4Ch12]
+905.665 -0.109742 0.00 !Mu1ChY61TRaw[Co3At4Ch13]
+913.658 -0.11072 0.00 !Mu1ChY62TRaw[Co3At4Ch14]
+915.004 -0.110879 0.00 !Mu1ChY63TRaw[Co3At4Ch15]
+915.999 -0.111037 0.00 !Mu1ChY64TRaw[Co3At4Ch16]
+945.876 -0.115194 0.00 !Mu1ChY65TRaw[Co4At1Ch1]
+952.653 -0.116053 0.00 !Mu1ChY66TRaw[Co4At1Ch2]
+958.599 -0.116788 0.00 !Mu1ChY67TRaw[Co4At1Ch3]
+962.073 -0.117211 0.00 !Mu1ChY68TRaw[Co4At1Ch4]
+965.512 -0.117617 0.00 !Mu1ChY69TRaw[Co4At1Ch5]
+973.646 -0.118609 0.00 !Mu1ChY70TRaw[Co4At1Ch6]
+969.091 -0.118053 0.00 !Mu1ChY71TRaw[Co4At1Ch7]
+977.205 -0.119038 0.00 !Mu1ChY72TRaw[Co4At1Ch8]
+978.244 -0.119163 0.00 !Mu1ChY73TRaw[Co4At1Ch9]
+981.509 -0.119552 0.00 !Mu1ChY74TRaw[Co4At1Ch10]
+983.33 -0.119777 0.00 !Mu1ChY75TRaw[Co4At1Ch11]
+980.28 -0.119391 0.00 !Mu1ChY76TRaw[Co4At1Ch12]
+987.378 -0.11981 0.00 !Mu1ChY77TRaw[Co4At1Ch13]
+981.221 -0.119505 0.00 !Mu1ChY78TRaw[Co4At1Ch14]
+982.019 -0.119601 0.00 !Mu1ChY79TRaw[Co4At1Ch15]
+986.869 -0.120194 0.00 !Mu1ChY80TRaw[Co4At1Ch16]
+942.041 -0.114646 0.00 !Mu1ChY81TRaw[Co4At2Ch1]
+950.256 -0.115676 0.00 !Mu1ChY82TRaw[Co4At2Ch2]
+949.146 -0.115551 0.00 !Mu1ChY83TRaw[Co4At2Ch3]
+956.132 -0.116392 0.00 !Mu1ChY84TRaw[Co4At2Ch4]
+955.603 -0.116344 0.00 !Mu1ChY85TRaw[Co4At2Ch5]
+965.862 -0.117589 0.00 !Mu1ChY86TRaw[Co4At2Ch6]
+966.696 -0.117699 0.00 !Mu1ChY87TRaw[Co4At2Ch7]
+973.856 -0.118567 0.00 !Mu1ChY88TRaw[Co4At2Ch8]
+974.942 -0.118705 0.00 !Mu1ChY89TRaw[Co4At2Ch9]
+967.58 -0.117807 0.00 !Mu1ChY90TRaw[Co4At2Ch10]
+972.217 -0.118376 0.00 !Mu1ChY91TRaw[Co4At2Ch11]
+980.142 -0.119333 0.00 !Mu1ChY92TRaw[Co4At2Ch12]
+980.758 -0.119429 0.00 !Mu1ChY93TRaw[Co4At2Ch13]
+973.754 -0.118576 0.00 !Mu1ChY94TRaw[Co4At2Ch14]
+977.548 -0.119031 0.00 !Mu1ChY95TRaw[Co4At2Ch15]
+988.795 -0.120471 0.00 !Mu1ChY96TRaw[Co4At2Ch16]
+871.404 -0.106136 0.00 !Mu1ChY97TRaw[Co4At3Ch1]
+870.084 -0.106 0.00 !Mu1ChY98TRaw[Co4At3Ch2]
+874.611 -0.106555 0.00 !Mu1ChY99TRaw[Co4At3Ch3]
+888.655 -0.108263 0.00 !Mu1ChY100TRaw[Co4At3Ch4]
+886.461 -0.10801 0.00 !Mu1ChY101TRaw[Co4At3Ch5]
+878.586 -0.107044 0.00 !Mu1ChY102TRaw[Co4At3Ch6]
+886.442 -0.108005 0.00 !Mu1ChY103TRaw[Co4At3Ch7]
+889.81 -0.108406 0.00 !Mu1ChY104TRaw[Co4At3Ch8]
+900.116 -0.109653 0.00 !Mu1ChY105TRaw[Co4At3Ch9]
+896.798 -0.10926 0.00 !Mu1ChY106TRaw[Co4At3Ch10]
+900.214 -0.10967 0.00 !Mu1ChY107TRaw[Co4At3Ch11]
+890.896 -0.108536 0.00 !Mu1ChY108TRaw[Co4At3Ch12]
+898.103 -0.109417 0.00 !Mu1ChY109TRaw[Co4At3Ch13]
+905.123 -0.110268 0.00 !Mu1ChY110TRaw[Co4At3Ch14]
+895.488 -0.109108 0.00 !Mu1ChY111TRaw[Co4At3Ch15]
+901.504 -0.109824 0.00 !Mu1ChY112TRaw[Co4At3Ch16]
+857.767 -0.104291 0.00 !Mu1ChY113TRaw[Co4At4Ch1]
+851.391 -0.103549 0.00 !Mu1ChY114TRaw[Co4At4Ch2]
+861.589 -0.104798 0.00 !Mu1ChY115TRaw[Co4At4Ch3]
+856.553 -0.10419 0.00 !Mu1ChY116TRaw[Co4At4Ch4]
+865 -0.105221 0.00 !Mu1ChY117TRaw[Co4At4Ch5]
+874.383 -0.106354 0.00 !Mu1ChY118TRaw[Co4At4Ch6]
+878.744 -0.1069 0.00 !Mu1ChY119TRaw[Co4At4Ch7]
+873.451 -0.106252 0.00 !Mu1ChY120TRaw[Co4At4Ch8]
+890.883 -0.108379 0.00 !Mu1ChY121TRaw[Co4At4Ch9]
+891.802 -0.108492 0.00 !Mu1ChY122TRaw[Co4At4Ch10]
+889.789 -0.108225 0.00 !Mu1ChY123TRaw[Co4At4Ch11]
+888.888 -0.108132 0.00 !Mu1ChY124TRaw[Co4At4Ch12]
+891.161 -0.108412 0.00 !Mu1ChY125TRaw[Co4At4Ch13]
+886.515 -0.10784 0.00 !Mu1ChY126TRaw[Co4At4Ch14]
+883.99 -0.107526 0.00 !Mu1ChY127TRaw[Co4At4Ch15]
+947.91 -0.121191 0.00 !Mu1ChY128TRaw[Co4At4Ch16]
+936.808 -0.113282 0.00 !Mu2ChX1TRaw[Co1At1Ch1]
+933.588 -0.112935 0.00 !Mu2ChX2TRaw[Co1At1Ch2]
+941.562 -0.113903 0.00 !Mu2ChX3TRaw[Co1At1Ch3]
+953.784 -0.11541 0.00 !Mu2ChX4TRaw[Co1At1Ch4]
+949.078 -0.114834 0.00 !Mu2ChX5TRaw[Co1At1Ch5]
+966.718 -0.116968 0.00 !Mu2ChX6TRaw[Co1At1Ch6]
+960.214 -0.116144 0.00 !Mu2ChX7TRaw[Co1At1Ch7]
+964.987 -0.116738 0.00 !Mu2ChX8TRaw[Co1At1Ch8]
+956.88 -0.115736 0.00 !Mu2ChX9TRaw[Co1At1Ch9]
+968.81 -0.117191 0.00 !Mu2ChX10TRaw[Co1At1Ch10]
+971.337 -0.117505 0.00 !Mu2ChX11TRaw[Co1At1Ch11]
+966.1 -0.116868 0.00 !Mu2ChX12TRaw[Co1At1Ch12]
+972.053 -0.117596 0.00 !Mu2ChX13TRaw[Co1At1Ch13]
+966.078 -0.116864 0.00 !Mu2ChX14TRaw[Co1At1Ch14]
+966.541 -0.116934 0.00 !Mu2ChX15TRaw[Co1At1Ch15]
+1367.28 -0.118078 0.00 !Mu2ChX16TRaw[Co1At1Ch16]
+918.709 -0.111042 0.00 !Mu2ChX17TRaw[Co1At2Ch1]
+933.754 -0.1129 0.00 !Mu2ChX18TRaw[Co1At2Ch2]
+936.423 -0.113239 0.00 !Mu2ChX19TRaw[Co1At2Ch3]
+935.388 -0.11311 0.00 !Mu2ChX20TRaw[Co1At2Ch4]
+946.289 -0.114433 0.00 !Mu2ChX21TRaw[Co1At2Ch5]
+941.937 -0.113893 0.00 !Mu2ChX22TRaw[Co1At2Ch6]
+939.701 -0.113604 0.00 !Mu2ChX23TRaw[Co1At2Ch7]
+947.866 -0.114596 0.00 !Mu2ChX24TRaw[Co1At2Ch8]
+939.11 -0.113523 0.00 !Mu2ChX25TRaw[Co1At2Ch9]
+947.312 -0.114529 0.00 !Mu2ChX26TRaw[Co1At2Ch10]
+947.872 -0.114587 0.00 !Mu2ChX27TRaw[Co1At2Ch11]
+944.089 -0.114127 0.00 !Mu2ChX28TRaw[Co1At2Ch12]
+951.541 -0.115049 0.00 !Mu2ChX29TRaw[Co1At2Ch13]
+947.806 -0.114577 0.00 !Mu2ChX30TRaw[Co1At2Ch14]
+949.646 -0.114801 0.00 !Mu2ChX31TRaw[Co1At2Ch15]
+1101.24 -0.114725 0.00 !Mu2ChX32TRaw[Co1At2Ch16]
+883.868 -0.106884 0.00 !Mu2ChX33TRaw[Co1At3Ch1]
+881.306 -0.106588 0.00 !Mu2ChX34TRaw[Co1At3Ch2]
+890.406 -0.10771 0.00 !Mu2ChX35TRaw[Co1At3Ch3]
+887.688 -0.10739 0.00 !Mu2ChX36TRaw[Co1At3Ch4]
+901.335 -0.109058 0.00 !Mu2ChX37TRaw[Co1At3Ch5]
+898.532 -0.108685 0.00 !Mu2ChX38TRaw[Co1At3Ch6]
+906.127 -0.109605 0.00 !Mu2ChX39TRaw[Co1At3Ch7]
+903.029 -0.109211 0.00 !Mu2ChX40TRaw[Co1At3Ch8]
+902.567 -0.109168 0.00 !Mu2ChX41TRaw[Co1At3Ch9]
+906.324 -0.109617 0.00 !Mu2ChX42TRaw[Co1At3Ch10]
+912.663 -0.1104 0.00 !Mu2ChX43TRaw[Co1At3Ch11]
+911.609 -0.110254 0.00 !Mu2ChX44TRaw[Co1At3Ch12]
+919.504 -0.111219 0.00 !Mu2ChX45TRaw[Co1At3Ch13]
+918.075 -0.111043 0.00 !Mu2ChX46TRaw[Co1At3Ch14]
+920.693 -0.111378 0.00 !Mu2ChX47TRaw[Co1At3Ch15]
+1304.08 -0.11089 0.00 !Mu2ChX48TRaw[Co1At3Ch16]
+852.901 -0.102956 0.00 !Mu2ChX49TRaw[Co1At4Ch1]
+862.836 -0.104191 0.00 !Mu2ChX50TRaw[Co1At4Ch2]
+872.425 -0.105362 0.00 !Mu2ChX51TRaw[Co1At4Ch3]
+866.551 -0.10464 0.00 !Mu2ChX52TRaw[Co1At4Ch4]
+875.507 -0.105723 0.00 !Mu2ChX53TRaw[Co1At4Ch5]
+875.722 -0.105755 0.00 !Mu2ChX54TRaw[Co1At4Ch6]
+877.794 -0.105984 0.00 !Mu2ChX55TRaw[Co1At4Ch7]
+885.59 -0.106931 0.00 !Mu2ChX56TRaw[Co1At4Ch8]
+894.535 -0.108024 0.00 !Mu2ChX57TRaw[Co1At4Ch9]
+896.983 -0.108307 0.00 !Mu2ChX58TRaw[Co1At4Ch10]
+888.442 -0.107279 0.00 !Mu2ChX59TRaw[Co1At4Ch11]
+898.855 -0.108543 0.00 !Mu2ChX60TRaw[Co1At4Ch12]
+900.217 -0.108721 0.00 !Mu2ChX61TRaw[Co1At4Ch13]
+899.805 -0.108665 0.00 !Mu2ChX62TRaw[Co1At4Ch14]
+896.358 -0.10824 0.00 !Mu2ChX63TRaw[Co1At4Ch15]
+1286.56 -0.107885 0.00 !Mu2ChX64TRaw[Co1At4Ch16]
+969.588 -0.117533 0.00 !Mu2ChX65TRaw[Co2At1Ch1]
+969.639 -0.117545 0.00 !Mu2ChX66TRaw[Co2At1Ch2]
+981.26 -0.118957 0.00 !Mu2ChX67TRaw[Co2At1Ch3]
+986.207 -0.119584 0.00 !Mu2ChX68TRaw[Co2At1Ch4]
+450 -0.119902 0.00 !Mu2ChX69TRaw[Co2At1Ch5]
+989.899 -0.12002 0.00 !Mu2ChX70TRaw[Co2At1Ch6]
+991.208 -0.120171 0.00 !Mu2ChX71TRaw[Co2At1Ch7]
+996.377 -0.120802 0.00 !Mu2ChX72TRaw[Co2At1Ch8]
+989.619 -0.119977 0.00 !Mu2ChX73TRaw[Co2At1Ch9]
+998.452 -0.12102 0.00 !Mu2ChX74TRaw[Co2At1Ch10]
+994.24 -0.12055 0.00 !Mu2ChX75TRaw[Co2At1Ch11]
+993.976 -0.12048 0.00 !Mu2ChX76TRaw[Co2At1Ch12]
+1003.64 -0.121688 0.00 !Mu2ChX77TRaw[Co2At1Ch13]
+1007.3 -0.122136 0.00 !Mu2ChX78TRaw[Co2At1Ch14]
+1010.11 -0.122472 0.00 !Mu2ChX79TRaw[Co2At1Ch15]
+1318.69 -0.121488 0.00 !Mu2ChX80TRaw[Co2At1Ch16]
+950.946 -0.115148 0.00 !Mu2ChX81TRaw[Co2At2Ch1]
+961.899 -0.116512 0.00 !Mu2ChX82TRaw[Co2At2Ch2]
+963.68 -0.116735 0.00 !Mu2ChX83TRaw[Co2At2Ch3]
+967.2 -0.117158 0.00 !Mu2ChX84TRaw[Co2At2Ch4]
+967.305 -0.117159 0.00 !Mu2ChX85TRaw[Co2At2Ch5]
+968.515 -0.117336 0.00 !Mu2ChX86TRaw[Co2At2Ch6]
+982.177 -0.118997 0.00 !Mu2ChX87TRaw[Co2At2Ch7]
+981.387 -0.118879 0.00 !Mu2ChX88TRaw[Co2At2Ch8]
+991.904 -0.120152 0.00 !Mu2ChX89TRaw[Co2At2Ch9]
+991.623 -0.120143 0.00 !Mu2ChX90TRaw[Co2At2Ch10]
+990.622 -0.120011 0.00 !Mu2ChX91TRaw[Co2At2Ch11]
+980.868 -0.118788 0.00 !Mu2ChX92TRaw[Co2At2Ch12]
+995.536 -0.120614 0.00 !Mu2ChX93TRaw[Co2At2Ch13]
+999.576 -0.12112 0.00 !Mu2ChX94TRaw[Co2At2Ch14]
+1000.5 -0.12123 0.00 !Mu2ChX95TRaw[Co2At2Ch15]
+985.324 -0.119394 0.00 !Mu2ChX96TRaw[Co2At2Ch16]
+898.921 -0.10895 0.00 !Mu2ChX97TRaw[Co2At3Ch1]
+915.715 -0.11099 0.00 !Mu2ChX98TRaw[Co2At3Ch2]
+911.411 -0.110483 0.00 !Mu2ChX99TRaw[Co2At3Ch3]
+911.648 -0.110494 0.00 !Mu2ChX100TRaw[Co2At3Ch4]
+920.871 -0.11163 0.00 !Mu2ChX101TRaw[Co2At3Ch5]
+920.388 -0.111573 0.00 !Mu2ChX102TRaw[Co2At3Ch6]
+918.664 -0.111368 0.00 !Mu2ChX103TRaw[Co2At3Ch7]
+923.174 -0.111888 0.00 !Mu2ChX104TRaw[Co2At3Ch8]
+933.198 -0.113122 0.00 !Mu2ChX105TRaw[Co2At3Ch9]
+930.187 -0.112764 0.00 !Mu2ChX106TRaw[Co2At3Ch10]
+935.147 -0.113373 0.00 !Mu2ChX107TRaw[Co2At3Ch11]
+930.349 -0.112797 0.00 !Mu2ChX108TRaw[Co2At3Ch12]
+933.561 -0.113176 0.00 !Mu2ChX109TRaw[Co2At3Ch13]
+940.135 -0.113973 0.00 !Mu2ChX110TRaw[Co2At3Ch14]
+940.914 -0.114066 0.00 !Mu2ChX111TRaw[Co2At3Ch15]
+940.163 -0.113973 0.00 !Mu2ChX112TRaw[Co2At3Ch16]
+900.272 -0.108961 0.00 !Mu2ChX113TRaw[Co2At4Ch1]
+905.007 -0.109531 0.00 !Mu2ChX114TRaw[Co2At4Ch2]
+912.464 -0.110461 0.00 !Mu2ChX115TRaw[Co2At4Ch3]
+912.22 -0.110414 0.00 !Mu2ChX116TRaw[Co2At4Ch4]
+927.733 -0.112323 0.00 !Mu2ChX117TRaw[Co2At4Ch5]
+930.691 -0.11267 0.00 !Mu2ChX118TRaw[Co2At4Ch6]
+936.077 -0.113333 0.00 !Mu2ChX119TRaw[Co2At4Ch7]
+939.108 -0.113698 0.00 !Mu2ChX120TRaw[Co2At4Ch8]
+938.924 -0.113666 0.00 !Mu2ChX121TRaw[Co2At4Ch9]
+947.571 -0.114745 0.00 !Mu2ChX122TRaw[Co2At4Ch10]
+938.938 -0.113673 0.00 !Mu2ChX123TRaw[Co2At4Ch11]
+945.07 -0.11443 0.00 !Mu2ChX124TRaw[Co2At4Ch12]
+934.733 -0.113174 0.00 !Mu2ChX125TRaw[Co2At4Ch13]
+934.595 -0.113143 0.00 !Mu2ChX126TRaw[Co2At4Ch14]
+943.044 -0.114176 0.00 !Mu2ChX127TRaw[Co2At4Ch15]
+943.184 -0.114186 0.00 !Mu2ChX128TRaw[Co2At4Ch16]
+987.442 -0.119525 0.00 !Mu2ChY1TRaw[Co3At1Ch1]
+990.37 -0.119903 0.00 !Mu2ChY2TRaw[Co3At1Ch2]
+989.136 -0.119776 0.00 !Mu2ChY3TRaw[Co3At1Ch3]
+995.437 -0.120524 0.00 !Mu2ChY4TRaw[Co3At1Ch4]
+1000.77 -0.121165 0.00 !Mu2ChY5TRaw[Co3At1Ch5]
+998.951 -0.120947 0.00 !Mu2ChY6TRaw[Co3At1Ch6]
+1003.75 -0.121526 0.00 !Mu2ChY7TRaw[Co3At1Ch7]
+1010.87 -0.122366 0.00 !Mu2ChY8TRaw[Co3At1Ch8]
+1012.21 -0.122539 0.00 !Mu2ChY9TRaw[Co3At1Ch9]
+1003.9 -0.121307 0.00 !Mu2ChY10TRaw[Co3At1Ch10]
+1010.24 -0.122275 0.00 !Mu2ChY11TRaw[Co3At1Ch11]
+1015.27 -0.122898 0.00 !Mu2ChY12TRaw[Co3At1Ch12]
+1017.2 -0.12312 0.00 !Mu2ChY13TRaw[Co3At1Ch13]
+1022.23 -0.123746 0.00 !Mu2ChY14TRaw[Co3At1Ch14]
+1021.37 -0.123621 0.00 !Mu2ChY15TRaw[Co3At1Ch15]
+1022.68 -0.123744 0.00 !Mu2ChY16TRaw[Co3At1Ch16]
+939.963 -0.113632 0.00 !Mu2ChY17TRaw[Co3At2Ch1]
+939.308 -0.11359 0.00 !Mu2ChY18TRaw[Co3At2Ch2]
+938.897 -0.113546 0.00 !Mu2ChY19TRaw[Co3At2Ch3]
+938.628 -0.113526 0.00 !Mu2ChY20TRaw[Co3At2Ch4]
+953.606 -0.115367 0.00 !Mu2ChY21TRaw[Co3At2Ch5]
+969.437 -0.117305 0.00 !Mu2ChY22TRaw[Co3At2Ch6]
+965.454 -0.11682 0.00 !Mu2ChY23TRaw[Co3At2Ch7]
+960.44 -0.116216 0.00 !Mu2ChY24TRaw[Co3At2Ch8]
+975.99 -0.118134 0.00 !Mu2ChY25TRaw[Co3At2Ch9]
+978.687 -0.118446 0.00 !Mu2ChY26TRaw[Co3At2Ch10]
+976.083 -0.117858 0.00 !Mu2ChY27TRaw[Co3At2Ch11]
+982.568 -0.11895 0.00 !Mu2ChY28TRaw[Co3At2Ch12]
+976.864 -0.118238 0.00 !Mu2ChY29TRaw[Co3At2Ch13]
+978.515 -0.118468 0.00 !Mu2ChY30TRaw[Co3At2Ch14]
+977.409 -0.118337 0.00 !Mu2ChY31TRaw[Co3At2Ch15]
+965.447 -0.116905 0.00 !Mu2ChY32TRaw[Co3At2Ch16]
+870.181 -0.105393 0.00 !Mu2ChY33TRaw[Co3At3Ch1]
+876.858 -0.106206 0.00 !Mu2ChY34TRaw[Co3At3Ch2]
+889.244 -0.107711 0.00 !Mu2ChY35TRaw[Co3At3Ch3]
+890.519 -0.10786 0.00 !Mu2ChY36TRaw[Co3At3Ch4]
+893.817 -0.108297 0.00 !Mu2ChY37TRaw[Co3At3Ch5]
+888.588 -0.107628 0.00 !Mu2ChY38TRaw[Co3At3Ch6]
+904.701 -0.109574 0.00 !Mu2ChY39TRaw[Co3At3Ch7]
+903.479 -0.109401 0.00 !Mu2ChY40TRaw[Co3At3Ch8]
+906.236 -0.109756 0.00 !Mu2ChY41TRaw[Co3At3Ch9]
+914.382 -0.110304 0.00 !Mu2ChY42TRaw[Co3At3Ch10]
+906.598 -0.10979 0.00 !Mu2ChY43TRaw[Co3At3Ch11]
+910.53 -0.110231 0.00 !Mu2ChY44TRaw[Co3At3Ch12]
+912.933 -0.110532 0.00 !Mu2ChY45TRaw[Co3At3Ch13]
+916.041 -0.110907 0.00 !Mu2ChY46TRaw[Co3At3Ch14]
+919.774 -0.111371 0.00 !Mu2ChY47TRaw[Co3At3Ch15]
+915.148 -0.110791 0.00 !Mu2ChY48TRaw[Co3At3Ch16]
+893.19 -0.108016 0.00 !Mu2ChY49TRaw[Co3At4Ch1]
+902.467 -0.109155 0.00 !Mu2ChY50TRaw[Co3At4Ch2]
+899.946 -0.108834 0.00 !Mu2ChY51TRaw[Co3At4Ch3]
+913.407 -0.110471 0.00 !Mu2ChY52TRaw[Co3At4Ch4]
+905.911 -0.109622 0.00 !Mu2ChY53TRaw[Co3At4Ch5]
+914.887 -0.110708 0.00 !Mu2ChY54TRaw[Co3At4Ch6]
+922.021 -0.111116 0.00 !Mu2ChY55TRaw[Co3At4Ch7]
+914.007 -0.11061 0.00 !Mu2ChY56TRaw[Co3At4Ch8]
+926.973 -0.11216 0.00 !Mu2ChY57TRaw[Co3At4Ch9]
+918.182 -0.111079 0.00 !Mu2ChY58TRaw[Co3At4Ch10]
+920.356 -0.111393 0.00 !Mu2ChY59TRaw[Co3At4Ch11]
+924.322 -0.11168 0.00 !Mu2ChY60TRaw[Co3At4Ch12]
+940.509 -0.11386 0.00 !Mu2ChY61TRaw[Co3At4Ch13]
+925.883 -0.112068 0.00 !Mu2ChY62TRaw[Co3At4Ch14]
+921.861 -0.111623 0.00 !Mu2ChY63TRaw[Co3At4Ch15]
+929.763 -0.112593 0.00 !Mu2ChY64TRaw[Co3At4Ch16]
+924.331 -0.111864 0.00 !Mu2ChY65TRaw[Co4At1Ch1]
+943.62 -0.114242 0.00 !Mu2ChY66TRaw[Co4At1Ch2]
+947.992 -0.114763 0.00 !Mu2ChY67TRaw[Co4At1Ch3]
+945.728 -0.114477 0.00 !Mu2ChY68TRaw[Co4At1Ch4]
+972.019 -0.117701 0.00 !Mu2ChY69TRaw[Co4At1Ch5]
+960.071 -0.116242 0.00 !Mu2ChY70TRaw[Co4At1Ch6]
+967.505 -0.117144 0.00 !Mu2ChY71TRaw[Co4At1Ch7]
+964.472 -0.116783 0.00 !Mu2ChY72TRaw[Co4At1Ch8]
+955.96 -0.115747 0.00 !Mu2ChY73TRaw[Co4At1Ch9]
+958.084 -0.115989 0.00 !Mu2ChY74TRaw[Co4At1Ch10]
+964.33 -0.116762 0.00 !Mu2ChY75TRaw[Co4At1Ch11]
+977.202 -0.118324 0.00 !Mu2ChY76TRaw[Co4At1Ch12]
+973.571 -0.117892 0.00 !Mu2ChY77TRaw[Co4At1Ch13]
+976.2 -0.118194 0.00 !Mu2ChY78TRaw[Co4At1Ch14]
+967.051 -0.117092 0.00 !Mu2ChY79TRaw[Co4At1Ch15]
+968.99 -0.117343 0.00 !Mu2ChY80TRaw[Co4At1Ch16]
+944.542 -0.114246 0.00 !Mu2ChY81TRaw[Co4At2Ch1]
+939.064 -0.113582 0.00 !Mu2ChY82TRaw[Co4At2Ch2]
+951.122 -0.115097 0.00 !Mu2ChY83TRaw[Co4At2Ch3]
+946.764 -0.114574 0.00 !Mu2ChY84TRaw[Co4At2Ch4]
+955.625 -0.115653 0.00 !Mu2ChY85TRaw[Co4At2Ch5]
+966 -0.11692 0.00 !Mu2ChY86TRaw[Co4At2Ch6]
+964.199 -0.116695 0.00 !Mu2ChY87TRaw[Co4At2Ch7]
+969.926 -0.117388 0.00 !Mu2ChY88TRaw[Co4At2Ch8]
+972.649 -0.117739 0.00 !Mu2ChY89TRaw[Co4At2Ch9]
+974.635 -0.11797 0.00 !Mu2ChY90TRaw[Co4At2Ch10]
+979.1 -0.118525 0.00 !Mu2ChY91TRaw[Co4At2Ch11]
+969.715 -0.117371 0.00 !Mu2ChY92TRaw[Co4At2Ch12]
+977.475 -0.118331 0.00 !Mu2ChY93TRaw[Co4At2Ch13]
+977.142 -0.118283 0.00 !Mu2ChY94TRaw[Co4At2Ch14]
+984.646 -0.119174 0.00 !Mu2ChY95TRaw[Co4At2Ch15]
+989.259 -0.119806 0.00 !Mu2ChY96TRaw[Co4At2Ch16]
+897.538 -0.108639 0.00 !Mu2ChY97TRaw[Co4At3Ch1]
+893.51 -0.108189 0.00 !Mu2ChY98TRaw[Co4At3Ch2]
+904.052 -0.109474 0.00 !Mu2ChY99TRaw[Co4At3Ch3]
+902.752 -0.109308 0.00 !Mu2ChY100TRaw[Co4At3Ch4]
+916.527 -0.110997 0.00 !Mu2ChY101TRaw[Co4At3Ch5]
+924.175 -0.111938 0.00 !Mu2ChY102TRaw[Co4At3Ch6]
+914.572 -0.110746 0.00 !Mu2ChY103TRaw[Co4At3Ch7]
+930.562 -0.112691 0.00 !Mu2ChY104TRaw[Co4At3Ch8]
+925.104 -0.112025 0.00 !Mu2ChY105TRaw[Co4At3Ch9]
+920.853 -0.111507 0.00 !Mu2ChY106TRaw[Co4At3Ch10]
+922.078 -0.111663 0.00 !Mu2ChY107TRaw[Co4At3Ch11]
+921.772 -0.111623 0.00 !Mu2ChY108TRaw[Co4At3Ch12]
+925.31 -0.112066 0.00 !Mu2ChY109TRaw[Co4At3Ch13]
+926.033 -0.11214 0.00 !Mu2ChY110TRaw[Co4At3Ch14]
+922.391 -0.111703 0.00 !Mu2ChY111TRaw[Co4At3Ch15]
+912.83 -0.110525 0.00 !Mu2ChY112TRaw[Co4At3Ch16]
+852.798 -0.102981 0.00 !Mu2ChY113TRaw[Co4At4Ch1]
+868.843 -0.104976 0.00 !Mu2ChY114TRaw[Co4At4Ch2]
+876.793 -0.105936 0.00 !Mu2ChY115TRaw[Co4At4Ch3]
+875.311 -0.10575 0.00 !Mu2ChY116TRaw[Co4At4Ch4]
+883.331 -0.106741 0.00 !Mu2ChY117TRaw[Co4At4Ch5]
+879.699 -0.10628 0.00 !Mu2ChY118TRaw[Co4At4Ch6]
+891.993 -0.107805 0.00 !Mu2ChY119TRaw[Co4At4Ch7]
+893.52 -0.107966 0.00 !Mu2ChY120TRaw[Co4At4Ch8]
+883.484 -0.106759 0.00 !Mu2ChY121TRaw[Co4At4Ch9]
+896.835 -0.108381 0.00 !Mu2ChY122TRaw[Co4At4Ch10]
+895.32 -0.108195 0.00 !Mu2ChY123TRaw[Co4At4Ch11]
+1336.18 -0.108195 0.00 !Mu2ChY124TRaw[Co4At4Ch12]
+897.921 -0.108519 0.00 !Mu2ChY125TRaw[Co4At4Ch13]
+898.896 -0.10863 0.00 !Mu2ChY126TRaw[Co4At4Ch14]
+900.009 -0.108768 0.00 !Mu2ChY127TRaw[Co4At4Ch15]
+896.14 -0.108297 0.00 !Mu2ChY128TRaw[Co4At4Ch16]
+936.261 -0.113591 0.00 !Mu3ChX1TRaw[Co1At1Ch1]
+949.597 -0.115254 0.00 !Mu3ChX2TRaw[Co1At1Ch2]
+954.137 -0.115822 0.00 !Mu3ChX3TRaw[Co1At1Ch3]
+956.021 -0.116042 0.00 !Mu3ChX4TRaw[Co1At1Ch4]
+948.148 -0.115096 0.00 !Mu3ChX5TRaw[Co1At1Ch5]
+962.715 -0.11686 0.00 !Mu3ChX6TRaw[Co1At1Ch6]
+967.087 -0.117385 0.00 !Mu3ChX7TRaw[Co1At1Ch7]
+972.268 -0.118019 0.00 !Mu3ChX8TRaw[Co1At1Ch8]
+970.481 -0.117779 0.00 !Mu3ChX9TRaw[Co1At1Ch9]
+968.226 -0.117496 0.00 !Mu3ChX10TRaw[Co1At1Ch10]
+970.608 -0.117795 0.00 !Mu3ChX11TRaw[Co1At1Ch11]
+982.826 -0.119273 0.00 !Mu3ChX12TRaw[Co1At1Ch12]
+972.655 -0.118031 0.00 !Mu3ChX13TRaw[Co1At1Ch13]
+978.966 -0.118805 0.00 !Mu3ChX14TRaw[Co1At1Ch14]
+976.646 -0.118524 0.00 !Mu3ChX15TRaw[Co1At1Ch15]
+1358.4 -0.119127 0.00 !Mu3ChX16TRaw[Co1At1Ch16]
+965.022 -0.117029 0.00 !Mu3ChX17TRaw[Co1At2Ch1]
+961.069 -0.116582 0.00 !Mu3ChX18TRaw[Co1At2Ch2]
+979.729 -0.11886 0.00 !Mu3ChX19TRaw[Co1At2Ch3]
+975.886 -0.118386 0.00 !Mu3ChX20TRaw[Co1At2Ch4]
+982.811 -0.119229 0.00 !Mu3ChX21TRaw[Co1At2Ch5]
+989.956 -0.120114 0.00 !Mu3ChX22TRaw[Co1At2Ch6]
+982.322 -0.119177 0.00 !Mu3ChX23TRaw[Co1At2Ch7]
+986.837 -0.119693 0.00 !Mu3ChX24TRaw[Co1At2Ch8]
+984.553 -0.119405 0.00 !Mu3ChX25TRaw[Co1At2Ch9]
+985.367 -0.119523 0.00 !Mu3ChX26TRaw[Co1At2Ch10]
+998.436 -0.12115 0.00 !Mu3ChX27TRaw[Co1At2Ch11]
+994.592 -0.120628 0.00 !Mu3ChX28TRaw[Co1At2Ch12]
+1004.55 -0.121885 0.00 !Mu3ChX29TRaw[Co1At2Ch13]
+997.75 -0.121035 0.00 !Mu3ChX30TRaw[Co1At2Ch14]
+999.387 -0.121233 0.00 !Mu3ChX31TRaw[Co1At2Ch15]
+994.205 -0.120654 0.00 !Mu3ChX32TRaw[Co1At2Ch16]
+895.626 -0.108693 0.00 !Mu3ChX33TRaw[Co1At3Ch1]
+901.788 -0.109485 0.00 !Mu3ChX34TRaw[Co1At3Ch2]
+909.669 -0.110421 0.00 !Mu3ChX35TRaw[Co1At3Ch3]
+902.809 -0.109588 0.00 !Mu3ChX36TRaw[Co1At3Ch4]
+908.707 -0.110301 0.00 !Mu3ChX37TRaw[Co1At3Ch5]
+917.184 -0.111327 0.00 !Mu3ChX38TRaw[Co1At3Ch6]
+918.636 -0.111495 0.00 !Mu3ChX39TRaw[Co1At3Ch7]
+927.002 -0.112521 0.00 !Mu3ChX40TRaw[Co1At3Ch8]
+934.79 -0.11347 0.00 !Mu3ChX41TRaw[Co1At3Ch9]
+928.489 -0.112717 0.00 !Mu3ChX42TRaw[Co1At3Ch10]
+925.669 -0.112335 0.00 !Mu3ChX43TRaw[Co1At3Ch11]
+450 -0.112964 0.00 !Mu3ChX44TRaw[Co1At3Ch12]
+932.907 -0.113245 0.00 !Mu3ChX45TRaw[Co1At3Ch13]
+927.364 -0.11258 0.00 !Mu3ChX46TRaw[Co1At3Ch14]
+934.8 -0.113476 0.00 !Mu3ChX47TRaw[Co1At3Ch15]
+933.166 -0.113256 0.00 !Mu3ChX48TRaw[Co1At3Ch16]
+863.882 -0.104661 0.00 !Mu3ChX49TRaw[Co1At4Ch1]
+863.742 -0.104634 0.00 !Mu3ChX50TRaw[Co1At4Ch2]
+876.032 -0.106155 0.00 !Mu3ChX51TRaw[Co1At4Ch3]
+885.987 -0.107364 0.00 !Mu3ChX52TRaw[Co1At4Ch4]
+886.077 -0.107368 0.00 !Mu3ChX53TRaw[Co1At4Ch5]
+882.141 -0.106861 0.00 !Mu3ChX54TRaw[Co1At4Ch6]
+894.386 -0.108382 0.00 !Mu3ChX55TRaw[Co1At4Ch7]
+897.465 -0.108733 0.00 !Mu3ChX56TRaw[Co1At4Ch8]
+894.9 -0.10844 0.00 !Mu3ChX57TRaw[Co1At4Ch9]
+900.295 -0.10908 0.00 !Mu3ChX58TRaw[Co1At4Ch10]
+895.793 -0.108538 0.00 !Mu3ChX59TRaw[Co1At4Ch11]
+895.372 -0.10849 0.00 !Mu3ChX60TRaw[Co1At4Ch12]
+902.176 -0.109312 0.00 !Mu3ChX61TRaw[Co1At4Ch13]
+903.192 -0.109445 0.00 !Mu3ChX62TRaw[Co1At4Ch14]
+889.712 -0.107803 0.00 !Mu3ChX63TRaw[Co1At4Ch15]
+921.265 -0.108862 0.00 !Mu3ChX64TRaw[Co1At4Ch16]
+981.944 -0.119126 0.00 !Mu3ChX65TRaw[Co2At1Ch1]
+987.148 -0.119789 0.00 !Mu3ChX66TRaw[Co2At1Ch2]
+987.456 -0.119851 0.00 !Mu3ChX67TRaw[Co2At1Ch3]
+1003.28 -0.121753 0.00 !Mu3ChX68TRaw[Co2At1Ch4]
+1003.82 -0.121824 0.00 !Mu3ChX69TRaw[Co2At1Ch5]
+1000.66 -0.121446 0.00 !Mu3ChX70TRaw[Co2At1Ch6]
+1004.35 -0.121893 0.00 !Mu3ChX71TRaw[Co2At1Ch7]
+1008.06 -0.122347 0.00 !Mu3ChX72TRaw[Co2At1Ch8]
+1004.22 -0.121883 0.00 !Mu3ChX73TRaw[Co2At1Ch9]
+1011.08 -0.122684 0.00 !Mu3ChX74TRaw[Co2At1Ch10]
+1019.46 -0.123722 0.00 !Mu3ChX75TRaw[Co2At1Ch11]
+1029.58 -0.124938 0.00 !Mu3ChX76TRaw[Co2At1Ch12]
+1011.08 -0.122709 0.00 !Mu3ChX77TRaw[Co2At1Ch13]
+1010.81 -0.12265 0.00 !Mu3ChX78TRaw[Co2At1Ch14]
+1022.22 -0.124061 0.00 !Mu3ChX79TRaw[Co2At1Ch15]
+1391.94 -0.123313 0.00 !Mu3ChX80TRaw[Co2At1Ch16]
+939.257 -0.11381 0.00 !Mu3ChX81TRaw[Co2At2Ch1]
+945.066 -0.114558 0.00 !Mu3ChX82TRaw[Co2At2Ch2]
+948.6 -0.114986 0.00 !Mu3ChX83TRaw[Co2At2Ch3]
+947.122 -0.114804 0.00 !Mu3ChX84TRaw[Co2At2Ch4]
+961.987 -0.116619 0.00 !Mu3ChX85TRaw[Co2At2Ch5]
+964.59 -0.11693 0.00 !Mu3ChX86TRaw[Co2At2Ch6]
+959.397 -0.116299 0.00 !Mu3ChX87TRaw[Co2At2Ch7]
+964.355 -0.116863 0.00 !Mu3ChX88TRaw[Co2At2Ch8]
+975.002 -0.118161 0.00 !Mu3ChX89TRaw[Co2At2Ch9]
+971.077 -0.117687 0.00 !Mu3ChX90TRaw[Co2At2Ch10]
+976.04 -0.118304 0.00 !Mu3ChX91TRaw[Co2At2Ch11]
+983.975 -0.119256 0.00 !Mu3ChX92TRaw[Co2At2Ch12]
+983.617 -0.119241 0.00 !Mu3ChX93TRaw[Co2At2Ch13]
+983.301 -0.119186 0.00 !Mu3ChX94TRaw[Co2At2Ch14]
+980.734 -0.118879 0.00 !Mu3ChX95TRaw[Co2At2Ch15]
+975.837 -0.118278 0.00 !Mu3ChX96TRaw[Co2At2Ch16]
+858.761 -0.104124 0.00 !Mu3ChX97TRaw[Co2At3Ch1]
+863.527 -0.104728 0.00 !Mu3ChX98TRaw[Co2At3Ch2]
+863.719 -0.104753 0.00 !Mu3ChX99TRaw[Co2At3Ch3]
+869.797 -0.105492 0.00 !Mu3ChX100TRaw[Co2At3Ch4]
+879.582 -0.106693 0.00 !Mu3ChX101TRaw[Co2At3Ch5]
+874.971 -0.10614 0.00 !Mu3ChX102TRaw[Co2At3Ch6]
+879.706 -0.106708 0.00 !Mu3ChX103TRaw[Co2At3Ch7]
+878.738 -0.106567 0.00 !Mu3ChX104TRaw[Co2At3Ch8]
+887.854 -0.107671 0.00 !Mu3ChX105TRaw[Co2At3Ch9]
+892.385 -0.108216 0.00 !Mu3ChX106TRaw[Co2At3Ch10]
+884.225 -0.107225 0.00 !Mu3ChX107TRaw[Co2At3Ch11]
+894.981 -0.108561 0.00 !Mu3ChX108TRaw[Co2At3Ch12]
+895.51 -0.108609 0.00 !Mu3ChX109TRaw[Co2At3Ch13]
+891.851 -0.108191 0.00 !Mu3ChX110TRaw[Co2At3Ch14]
+901.356 -0.109337 0.00 !Mu3ChX111TRaw[Co2At3Ch15]
+900.727 -0.108709 0.00 !Mu3ChX112TRaw[Co2At3Ch16]
+855.952 -0.103629 0.00 !Mu3ChX113TRaw[Co2At4Ch1]
+865.7 -0.10481 0.00 !Mu3ChX114TRaw[Co2At4Ch2]
+866.161 -0.1049 0.00 !Mu3ChX115TRaw[Co2At4Ch3]
+872.362 -0.105647 0.00 !Mu3ChX116TRaw[Co2At4Ch4]
+1490.13 -0.126949 0.00 !Mu3ChX117TRaw[Co2At4Ch5]
+876.561 -0.106145 0.00 !Mu3ChX118TRaw[Co2At4Ch6]
+884.075 -0.107055 0.00 !Mu3ChX119TRaw[Co2At4Ch7]
+881.54 -0.10675 0.00 !Mu3ChX120TRaw[Co2At4Ch8]
+884.679 -0.107137 0.00 !Mu3ChX121TRaw[Co2At4Ch9]
+888.637 -0.107599 0.00 !Mu3ChX122TRaw[Co2At4Ch10]
+884.493 -0.107093 0.00 !Mu3ChX123TRaw[Co2At4Ch11]
+893.964 -0.108252 0.00 !Mu3ChX124TRaw[Co2At4Ch12]
+888.064 -0.107522 0.00 !Mu3ChX125TRaw[Co2At4Ch13]
+894.536 -0.108336 0.00 !Mu3ChX126TRaw[Co2At4Ch14]
+882.088 -0.106793 0.00 !Mu3ChX127TRaw[Co2At4Ch15]
+890.98 -0.107896 0.00 !Mu3ChX128TRaw[Co2At4Ch16]
+916.716 -0.11121 0.00 !Mu3ChY1TRaw[Co3At1Ch1]
+924.259 -0.112154 0.00 !Mu3ChY2TRaw[Co3At1Ch2]
+933.256 -0.113241 0.00 !Mu3ChY3TRaw[Co3At1Ch3]
+942.953 -0.114409 0.00 !Mu3ChY4TRaw[Co3At1Ch4]
+939.901 -0.114032 0.00 !Mu3ChY5TRaw[Co3At1Ch5]
+947.878 -0.114994 0.00 !Mu3ChY6TRaw[Co3At1Ch6]
+952.484 -0.115552 0.00 !Mu3ChY7TRaw[Co3At1Ch7]
+952.713 -0.115546 0.00 !Mu3ChY8TRaw[Co3At1Ch8]
+960.463 -0.116506 0.00 !Mu3ChY9TRaw[Co3At1Ch9]
+964.543 -0.117006 0.00 !Mu3ChY10TRaw[Co3At1Ch10]
+966.84 -0.117251 0.00 !Mu3ChY11TRaw[Co3At1Ch11]
+965.68 -0.117093 0.00 !Mu3ChY12TRaw[Co3At1Ch12]
+975.182 -0.118272 0.00 !Mu3ChY13TRaw[Co3At1Ch13]
+981.614 -0.119048 0.00 !Mu3ChY14TRaw[Co3At1Ch14]
+973.869 -0.118075 0.00 !Mu3ChY15TRaw[Co3At1Ch15]
+981.076 -0.118941 0.00 !Mu3ChY16TRaw[Co3At1Ch16]
+967.206 -0.117174 0.00 !Mu3ChY17TRaw[Co3At2Ch1]
+980.188 -0.118815 0.00 !Mu3ChY18TRaw[Co3At2Ch2]
+981.134 -0.118931 0.00 !Mu3ChY19TRaw[Co3At2Ch3]
+986.719 -0.119638 0.00 !Mu3ChY20TRaw[Co3At2Ch4]
+992.386 -0.12034 0.00 !Mu3ChY21TRaw[Co3At2Ch5]
+1002.21 -0.121551 0.00 !Mu3ChY22TRaw[Co3At2Ch6]
+997.474 -0.120998 0.00 !Mu3ChY23TRaw[Co3At2Ch7]
+992.008 -0.120321 0.00 !Mu3ChY24TRaw[Co3At2Ch8]
+998.021 -0.121073 0.00 !Mu3ChY25TRaw[Co3At2Ch9]
+1004.15 -0.121839 0.00 !Mu3ChY26TRaw[Co3At2Ch10]
+1004.31 -0.121856 0.00 !Mu3ChY27TRaw[Co3At2Ch11]
+1010.69 -0.122649 0.00 !Mu3ChY28TRaw[Co3At2Ch12]
+1013.79 -0.12302 0.00 !Mu3ChY29TRaw[Co3At2Ch13]
+1002.56 -0.121668 0.00 !Mu3ChY30TRaw[Co3At2Ch14]
+1011.72 -0.122794 0.00 !Mu3ChY31TRaw[Co3At2Ch15]
+1012.54 -0.122927 0.00 !Mu3ChY32TRaw[Co3At2Ch16]
+868.546 -0.105446 0.00 !Mu3ChY33TRaw[Co3At3Ch1]
+865.415 -0.105092 0.00 !Mu3ChY34TRaw[Co3At3Ch2]
+870.615 -0.10573 0.00 !Mu3ChY35TRaw[Co3At3Ch3]
+867.501 -0.105345 0.00 !Mu3ChY36TRaw[Co3At3Ch4]
+879.085 -0.106744 0.00 !Mu3ChY37TRaw[Co3At3Ch5]
+878.372 -0.106654 0.00 !Mu3ChY38TRaw[Co3At3Ch6]
+883.834 -0.107294 0.00 !Mu3ChY39TRaw[Co3At3Ch7]
+892.468 -0.108361 0.00 !Mu3ChY40TRaw[Co3At3Ch8]
+889.652 -0.10799 0.00 !Mu3ChY41TRaw[Co3At3Ch9]
+893.582 -0.10846 0.00 !Mu3ChY42TRaw[Co3At3Ch10]
+902.982 -0.109593 0.00 !Mu3ChY43TRaw[Co3At3Ch11]
+899.542 -0.109195 0.00 !Mu3ChY44TRaw[Co3At3Ch12]
+894.786 -0.108568 0.00 !Mu3ChY45TRaw[Co3At3Ch13]
+904.997 -0.109804 0.00 !Mu3ChY46TRaw[Co3At3Ch14]
+908.733 -0.110263 0.00 !Mu3ChY47TRaw[Co3At3Ch15]
+901.41 -0.109382 0.00 !Mu3ChY48TRaw[Co3At3Ch16]
+874.853 -0.105997 0.00 !Mu3ChY49TRaw[Co3At4Ch1]
+880.713 -0.106772 0.00 !Mu3ChY50TRaw[Co3At4Ch2]
+892.705 -0.108217 0.00 !Mu3ChY51TRaw[Co3At4Ch3]
+895.218 -0.108527 0.00 !Mu3ChY52TRaw[Co3At4Ch4]
+889.343 -0.107825 0.00 !Mu3ChY53TRaw[Co3At4Ch5]
+897.932 -0.108862 0.00 !Mu3ChY54TRaw[Co3At4Ch6]
+902.448 -0.109456 0.00 !Mu3ChY55TRaw[Co3At4Ch7]
+908.367 -0.110152 0.00 !Mu3ChY56TRaw[Co3At4Ch8]
+912.74 -0.110718 0.00 !Mu3ChY57TRaw[Co3At4Ch9]
+911.519 -0.11056 0.00 !Mu3ChY58TRaw[Co3At4Ch10]
+920.413 -0.111636 0.00 !Mu3ChY59TRaw[Co3At4Ch11]
+906.185 -0.109934 0.00 !Mu3ChY60TRaw[Co3At4Ch12]
+919.759 -0.111581 0.00 !Mu3ChY61TRaw[Co3At4Ch13]
+920.555 -0.111694 0.00 !Mu3ChY62TRaw[Co3At4Ch14]
+915.715 -0.1111 0.00 !Mu3ChY63TRaw[Co3At4Ch15]
+918.454 -0.11144 0.00 !Mu3ChY64TRaw[Co3At4Ch16]
+901.244 -0.109216 0.00 !Mu3ChY65TRaw[Co4At1Ch1]
+907.742 -0.110026 0.00 !Mu3ChY66TRaw[Co4At1Ch2]
+908.334 -0.110106 0.00 !Mu3ChY67TRaw[Co4At1Ch3]
+916.785 -0.11114 0.00 !Mu3ChY68TRaw[Co4At1Ch4]
+928.178 -0.11252 0.00 !Mu3ChY69TRaw[Co4At1Ch5]
+936.612 -0.113544 0.00 !Mu3ChY70TRaw[Co4At1Ch6]
+929.327 -0.112672 0.00 !Mu3ChY71TRaw[Co4At1Ch7]
+927.889 -0.112491 0.00 !Mu3ChY72TRaw[Co4At1Ch8]
+944.015 -0.114462 0.00 !Mu3ChY73TRaw[Co4At1Ch9]
+936.5 -0.11354 0.00 !Mu3ChY74TRaw[Co4At1Ch10]
+952.669 -0.115517 0.00 !Mu3ChY75TRaw[Co4At1Ch11]
+949.121 -0.115086 0.00 !Mu3ChY76TRaw[Co4At1Ch12]
+961.66 -0.116618 0.00 !Mu3ChY77TRaw[Co4At1Ch13]
+950.324 -0.115232 0.00 !Mu3ChY78TRaw[Co4At1Ch14]
+943.005 -0.114343 0.00 !Mu3ChY79TRaw[Co4At1Ch15]
+948.05 -0.114947 0.00 !Mu3ChY80TRaw[Co4At1Ch16]
+967.814 -0.117288 0.00 !Mu3ChY81TRaw[Co4At2Ch1]
+979.35 -0.118727 0.00 !Mu3ChY82TRaw[Co4At2Ch2]
+985.387 -0.119474 0.00 !Mu3ChY83TRaw[Co4At2Ch3]
+988.884 -0.119909 0.00 !Mu3ChY84TRaw[Co4At2Ch4]
+990.688 -0.120116 0.00 !Mu3ChY85TRaw[Co4At2Ch5]
+997.728 -0.120975 0.00 !Mu3ChY86TRaw[Co4At2Ch6]
+994.598 -0.120606 0.00 !Mu3ChY87TRaw[Co4At2Ch7]
+996.045 -0.12076 0.00 !Mu3ChY88TRaw[Co4At2Ch8]
+1000.77 -0.121336 0.00 !Mu3ChY89TRaw[Co4At2Ch9]
+1011.99 -0.122713 0.00 !Mu3ChY90TRaw[Co4At2Ch10]
+1015.05 -0.1231 0.00 !Mu3ChY91TRaw[Co4At2Ch11]
+1003.4 -0.121678 0.00 !Mu3ChY92TRaw[Co4At2Ch12]
+1011.74 -0.122697 0.00 !Mu3ChY93TRaw[Co4At2Ch13]
+1014.96 -0.123087 0.00 !Mu3ChY94TRaw[Co4At2Ch14]
+1007.34 -0.122144 0.00 !Mu3ChY95TRaw[Co4At2Ch15]
+1008.36 -0.122274 0.00 !Mu3ChY96TRaw[Co4At2Ch16]
+871.329 -0.105573 0.00 !Mu3ChY97TRaw[Co4At3Ch1]
+868.142 -0.105224 0.00 !Mu3ChY98TRaw[Co4At3Ch2]
+872.865 -0.105791 0.00 !Mu3ChY99TRaw[Co4At3Ch3]
+882.085 -0.106904 0.00 !Mu3ChY100TRaw[Co4At3Ch4]
+889.159 -0.107789 0.00 !Mu3ChY101TRaw[Co4At3Ch5]
+888.956 -0.107742 0.00 !Mu3ChY102TRaw[Co4At3Ch6]
+899.906 -0.109085 0.00 !Mu3ChY103TRaw[Co4At3Ch7]
+892.033 -0.108126 0.00 !Mu3ChY104TRaw[Co4At3Ch8]
+899.207 -0.108999 0.00 !Mu3ChY105TRaw[Co4At3Ch9]
+891.613 -0.108068 0.00 !Mu3ChY106TRaw[Co4At3Ch10]
+891.136 -0.108006 0.00 !Mu3ChY107TRaw[Co4At3Ch11]
+900.207 -0.109125 0.00 !Mu3ChY108TRaw[Co4At3Ch12]
+902.911 -0.109439 0.00 !Mu3ChY109TRaw[Co4At3Ch13]
+900.692 -0.109168 0.00 !Mu3ChY110TRaw[Co4At3Ch14]
+896.133 -0.108625 0.00 !Mu3ChY111TRaw[Co4At3Ch15]
+902.665 -0.109416 0.00 !Mu3ChY112TRaw[Co4At3Ch16]
+888.587 -0.107554 0.00 !Mu3ChY113TRaw[Co4At4Ch1]
+895.918 -0.108473 0.00 !Mu3ChY114TRaw[Co4At4Ch2]
+898.97 -0.108848 0.00 !Mu3ChY115TRaw[Co4At4Ch3]
+894.394 -0.108292 0.00 !Mu3ChY116TRaw[Co4At4Ch4]
+902.574 -0.109288 0.00 !Mu3ChY117TRaw[Co4At4Ch5]
+907.964 -0.109943 0.00 !Mu3ChY118TRaw[Co4At4Ch6]
+906.564 -0.109765 0.00 !Mu3ChY119TRaw[Co4At4Ch7]
+905.798 -0.109672 0.00 !Mu3ChY120TRaw[Co4At4Ch8]
+912.702 -0.110512 0.00 !Mu3ChY121TRaw[Co4At4Ch9]
+921.335 -0.111588 0.00 !Mu3ChY122TRaw[Co4At4Ch10]
+924.085 -0.111915 0.00 !Mu3ChY123TRaw[Co4At4Ch11]
+906.564 -0.109772 0.00 !Mu3ChY124TRaw[Co4At4Ch12]
+910.838 -0.11029 0.00 !Mu3ChY125TRaw[Co4At4Ch13]
+916.176 -0.110947 0.00 !Mu3ChY126TRaw[Co4At4Ch14]
+917.763 -0.111116 0.00 !Mu3ChY127TRaw[Co4At4Ch15]
+925.891 -0.112131 0.00 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/EdinburghDSSD/DataConfig/ConfigEDIN.dat b/Projects/EdinburghDSSD/DataConfig/ConfigEDIN.dat
new file mode 100644
index 0000000000000000000000000000000000000000..9b0fb37d439e064e71ec818ea4b5f8b5986a8348
--- /dev/null
+++ b/Projects/EdinburghDSSD/DataConfig/ConfigEDIN.dat
@@ -0,0 +1,9 @@
+ConfigEDIN
+  TAKE_E_X= 1
+  TAKE_T_X= 0
+  MAX_STRIP_MULTIPLICITY= 100
+  STRIP_ENERGY_MATCHING= 10 keV
+  DSSD_X_E_RAW_THRESHOLD= -50000
+  DSSD_Y_E_RAW_THRESHOLD= 50000
+  DSSD_X_E_Threshold    = -50000
+  DSSD_Y_E_Threshold    = -50000
diff --git a/Projects/EdinburghDSSD/DataConfig/merge_config.txt b/Projects/EdinburghDSSD/DataConfig/merge_config.txt
new file mode 100644
index 0000000000000000000000000000000000000000..9a7613658fe73da030e613853b0c0a620440be5e
--- /dev/null
+++ b/Projects/EdinburghDSSD/DataConfig/merge_config.txt
@@ -0,0 +1,3 @@
+t_max=1e+09
+coinc_time= 100
+T_ADC=1000
diff --git a/Projects/EdinburghDSSD/DetectorConfiguration/EdinburghDSSD.detector b/Projects/EdinburghDSSD/DetectorConfiguration/EdinburghDSSD.detector
new file mode 100644
index 0000000000000000000000000000000000000000..bed2a868a485cbb210468161379c5ea5a129a4ea
--- /dev/null
+++ b/Projects/EdinburghDSSD/DetectorConfiguration/EdinburghDSSD.detector
@@ -0,0 +1,12 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+EdinburghDSSD
+ X1_Y1= -24.75 11.50 -9.79 mm
+ X1_Y16= -24.75 61.00 -9.79 mm
+ X16_Y16= 24.75 61.00 -9.79 mm
+ X16_Y1= 24.75 11.50 -9.79 mm
+
+EdinburghDSSD
+ X1_Y1= -24.75 61.00 8.88 mm
+ X1_Y16= -24.75 11.50 8.88 mm
+ X16_Y16= 24.75 11.50 8.88 mm
+ X16_Y1= 24.75 61.00 8.88 mm
diff --git a/Projects/EdinburghDSSD/DetectorConfiguration/EdinburghDSSD2.detector b/Projects/EdinburghDSSD/DetectorConfiguration/EdinburghDSSD2.detector
new file mode 100644
index 0000000000000000000000000000000000000000..2e0ee6228d0a1bec6dcba7ea2e27cf0376573007
--- /dev/null
+++ b/Projects/EdinburghDSSD/DetectorConfiguration/EdinburghDSSD2.detector
@@ -0,0 +1,12 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+EdinburghDSSD
+ X1_Y1= -24.75 11.50 -9.79 mm
+ X1_Y16= -24.75 61.00 -10.14 mm
+ X16_Y16= 24.75 61.00 -10.14 mm
+ X16_Y1= 24.75 11.50 -9.79 mm
+
+EdinburghDSSD
+ X1_Y1= -24.75 61.00 9.43 mm
+ X1_Y16= -24.75 11.50 9.08 mm
+ X16_Y16= 24.75 11.50 9.08 mm
+ X16_Y1= 24.75 61.00 9.43 mm
diff --git a/Projects/EdinburghDSSD/DetectorConfiguration/GeometryConfig.txt b/Projects/EdinburghDSSD/DetectorConfiguration/GeometryConfig.txt
new file mode 100644
index 0000000000000000000000000000000000000000..52f1e1203b6c3912215d42a4a1c3f57797cac2bf
--- /dev/null
+++ b/Projects/EdinburghDSSD/DetectorConfiguration/GeometryConfig.txt
@@ -0,0 +1,3 @@
+angle = 0
+z0 = -9.79
+z1 = 8.88
diff --git a/Projects/EdinburghDSSD/DetectorConfiguration/compute_positions.py b/Projects/EdinburghDSSD/DetectorConfiguration/compute_positions.py
new file mode 100644
index 0000000000000000000000000000000000000000..20d67be95327fd41d337770b50f302475497d75f
--- /dev/null
+++ b/Projects/EdinburghDSSD/DetectorConfiguration/compute_positions.py
@@ -0,0 +1,67 @@
+import math
+import numpy as np
+
+det_size = 49.50
+
+y_shift = 11.5
+# Function to read configuration from a file
+def read_config(file_path):
+    config = {}
+    with open(file_path, 'r') as file:
+        for line in file:
+            if '=' in line:
+                key, value = line.split('=')
+                config[key.strip()] = float(value.strip())
+                if(key.strip()=='angle'):
+                    config[key.strip()]*=np.pi/180
+    return config
+
+def compute_edges_det0(theta,z0):
+    z_Y1 = z0
+    y_Y1 =  y_shift
+    z_Y16 = z0 + np.sign(z0)*det_size*np.sin(theta)
+    y_Y16 = y_shift + det_size*np.cos(theta)
+    X1_Y1 = np.array([-24.75,y_Y1,z_Y1])
+    X1_Y16 = np.array([-24.75,y_Y16,z_Y16])
+    X16_Y16 = np.array([24.75,y_Y16,z_Y16])
+    X16_Y1 = np.array([24.75,y_Y1,z_Y1])
+    return X1_Y1,X1_Y16,X16_Y16,X16_Y1
+
+def compute_edges_det1(theta,z1):
+    z_Y16 = z1
+    y_Y16 =  y_shift
+    z_Y1 = z1 + np.sign(z1)*det_size*np.sin(theta)
+    y_Y1 = y_shift + det_size*np.cos(theta)
+    X1_Y1 = np.array([-24.75,y_Y1,z_Y1])
+    X1_Y16 = np.array([-24.75,y_Y16,z_Y16])
+    X16_Y16 = np.array([24.75,y_Y16,z_Y16])
+    X16_Y1 = np.array([24.75,y_Y1,z_Y1])
+    return [X1_Y1,X1_Y16,X16_Y16,X16_Y1]
+
+
+# Paths to your input and output files
+config_path = "GeometryConfig.txt"  # Update this to your actual path
+output_file_path = "EdinburghDSSD.detector"  # Update this to your actual path
+
+def write_to_file(output_file):
+    config = read_config(config_path)
+    z0 = config['z0']
+    z1 = config['z1']
+    theta = config['angle']
+
+    DET0_X1_Y1, DET0_X1_Y16, DET0_X16_Y16, DET0_X16_Y1 = compute_edges_det0(theta, z0)
+    DET1_X1_Y1, DET1_X1_Y16, DET1_X16_Y16, DET1_X16_Y1 = compute_edges_det1(theta, z1)
+    with open(output_file, 'w') as file:
+        file.write("%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n")
+        file.write("EdinburghDSSD\n")
+        file.write(f" X1_Y1= {DET0_X1_Y1[0]:.2f} {DET0_X1_Y1[1]:.2f} {DET0_X1_Y1[2]:.2f} mm\n")
+        file.write(f" X1_Y16= {DET0_X1_Y16[0]:.2f} {DET0_X1_Y16[1]:.2f} {DET0_X1_Y16[2]:.2f} mm\n")
+        file.write(f" X16_Y16= {DET0_X16_Y16[0]:.2f} {DET0_X16_Y16[1]:.2f} {DET0_X16_Y16[2]:.2f} mm\n")
+        file.write(f" X16_Y1= {DET0_X16_Y1[0]:.2f} {DET0_X16_Y1[1]:.2f} {DET0_X16_Y1[2]:.2f} mm\n")
+        file.write(f"\nEdinburghDSSD\n")
+        file.write(f" X1_Y1= {DET1_X1_Y1[0]:.2f} {DET1_X1_Y1[1]:.2f} {DET1_X1_Y1[2]:.2f} mm\n")
+        file.write(f" X1_Y16= {DET1_X1_Y16[0]:.2f} {DET1_X1_Y16[1]:.2f} {DET1_X1_Y16[2]:.2f} mm\n")
+        file.write(f" X16_Y16= {DET1_X16_Y16[0]:.2f} {DET1_X16_Y16[1]:.2f} {DET1_X16_Y16[2]:.2f} mm\n")
+        file.write(f" X16_Y1= {DET1_X16_Y1[0]:.2f} {DET1_X16_Y1[1]:.2f} {DET1_X16_Y1[2]:.2f} mm\n")
+
+write_to_file(output_file_path)
diff --git a/Projects/EdinburghDSSD/PhysicsListOption.txt b/Projects/EdinburghDSSD/PhysicsListOption.txt
new file mode 100644
index 0000000000000000000000000000000000000000..94ff8153f173b285e9465a9e4b2276e7b2cef27d
--- /dev/null
+++ b/Projects/EdinburghDSSD/PhysicsListOption.txt
@@ -0,0 +1,13 @@
+EmPhysicsList Option4
+DefaultCutOff 10
+IonBinaryCascadePhysics 0
+NPIonInelasticPhysics 0
+EmExtraPhysics 0
+HadronElasticPhysics 1
+HadronPhysicsQGSP_BIC_HP 0
+HadronPhysicsQGSP_BERT_HP 1
+HadronPhysicsQGSP_INCLXX_HP 0
+HadronPhysicsINCLXX 0
+StoppingPhysics 0
+OpticalPhysics 0
+Decay 1
diff --git a/Projects/EdinburghDSSD/RunToTreat.txt b/Projects/EdinburghDSSD/RunToTreat.txt
new file mode 100644
index 0000000000000000000000000000000000000000..65f4c9c8fde88b23694f2cebeb06fb4f07d32b55
--- /dev/null
+++ b/Projects/EdinburghDSSD/RunToTreat.txt
@@ -0,0 +1,4 @@
+TTreeName
+	SimulatedTree
+RootFileName
+	/Users/lh270370/Software/nptool/Outputs/Simulation/GSI/full_beam/test_04_06__sigma5keV/test_04_06__sigma5keV_EDIN_tau100_T1e+09_TADC1000.root
diff --git a/Projects/EdinburghDSSD/Scripts/.DS_Store b/Projects/EdinburghDSSD/Scripts/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/EdinburghDSSD/Scripts/.DS_Store differ
diff --git a/Projects/EdinburghDSSD/Scripts/GSIMerging3.cc b/Projects/EdinburghDSSD/Scripts/GSIMerging3.cc
new file mode 100644
index 0000000000000000000000000000000000000000..3a9fa4c1813a74b465e7df70ba85bbffcb26edfb
--- /dev/null
+++ b/Projects/EdinburghDSSD/Scripts/GSIMerging3.cc
@@ -0,0 +1,334 @@
+#include "GSIMerging3.hh"
+
+void CreateFileNames(const std::string& FileName, std::string& InputFileName,
+                     std::string& TstampFileName, std::string& EdinFileName)
+{
+    // Construct input file name
+    InputFileName = FileName + ".root";
+
+    // Construct output file name with Timestamp
+    std::ostringstream TStampFileNameStream;
+    TStampFileNameStream << FileName << "_TSTAMP_T" << t_max << ".root";
+    TstampFileName = TStampFileNameStream.str();
+
+    // Construct output file name with EdinFileName
+    std::ostringstream EdinFileNameStream;
+    EdinFileNameStream << FileName << "_EDIN_tau" << coinc_time << "_T" << t_max << "_TADC" << T_ADC << ".root";
+    EdinFileName = EdinFileNameStream.str();
+}
+
+
+void CreateTempFile(const std::string& inputFileName)
+{
+  TFile *inputFile = TFile::Open(inputFileName.c_str(), "READ");
+  if (!inputFile || inputFile->IsZombie()) {
+      std::cerr << "Failed to open input file!" << std::endl;
+      return;
+  }
+  TTree *tree = static_cast<TTree*>(inputFile->Get("SimulatedTree"));
+  if (!tree) {
+      std::cerr << "Failed to get tree from input file!" << std::endl;
+      inputFile->Close();
+      return;
+  }
+  tree->SetBranchStatus("*", 0);  // Disable all branches initially
+  tree->SetBranchStatus("EdinburghDSSD", 1);  // Enable the EDIN branch only
+
+  TEdinburghDSSDData* Edin = nullptr;
+  tree->SetBranchAddress("EdinburghDSSD", &Edin);
+
+  // Create a temporary file to store unsorted data
+  TFile* tempFile = new TFile("temp.root", "RECREATE");
+  TTree* tempTree = new TTree("EventTree", "Analysis Data");
+
+  EdinSimuEvent* event = new EdinSimuEvent();
+  tempTree->Branch("Event", &event);
+
+  Long64_t nEntries = tree->GetEntries();
+  int multX, multY;
+  for (Long64_t i = 0; i < nEntries; ++i) {
+      tree->GetEntry(i);
+      multX = Edin->GetDSSDXEMult();
+      multY = Edin->GetDSSDYEMult();
+
+      for (int j = 0; j < multX; j++) {
+          event->Clear();
+          event->FillEvent_X(Edin, j);
+          tempTree->Fill();
+      }
+
+      for (int j = 0; j < multY; j++) {
+          event->Clear();
+          event->FillEvent_Y(Edin, j);
+          tempTree->Fill();
+      }
+  }
+  tempTree->Write();
+  tempFile->Close();
+  inputFile->Close();
+}
+
+
+void ApplyTimeStamp(const std::string& inputFileName, const std::string& TstampFileName) {
+    // Open the input file and get the simulated tree
+    if (std::filesystem::exists(TstampFileName)) {
+      std::cout << "Output file " << TstampFileName << " already exists. Skipping TStamp." << std::endl;
+    return;
+    }
+
+    CreateTempFile(inputFileName);
+
+    std::cout << "After temp file" << std::endl;
+
+    TFile* readTempFile = new TFile("temp.root", "READ");
+    TTree* tempTree = static_cast<TTree*>(readTempFile->Get("EventTree"));
+
+    EdinSimuEvent* event = nullptr;
+    tempTree->SetBranchAddress("Event", &event);
+
+    Long64_t nEntries = tempTree->GetEntries();
+
+    TFile* outputFile = new TFile(TstampFileName.c_str(), "RECREATE");
+    TTree* outputTree = new TTree("SortedEventTree", "Events Sorted by Timestamp");
+    outputFile->cd();
+
+    EdinSimuEvent* sortedEvent = nullptr;
+    outputTree->Branch("Event", &sortedEvent);
+
+
+    std::vector<EdinSimuEvent*> events;
+    events.reserve(nEntries);
+
+    for (Long64_t i = 0; i < nEntries; ++i) {
+        tempTree->GetEntry(i);
+        events.push_back(new EdinSimuEvent(*event));
+    }
+    //readTempFile->Close();
+    // Sort events by timestamp
+    std::sort(events.begin(), events.end(), TimeComparator());
+
+    // Open output file to store sorted data
+
+
+    // Fill the tree with sorted events
+    for (auto& evt : events) {
+        sortedEvent = evt;
+        outputTree->Fill();
+    }
+    outputTree->Write();
+    outputFile->Close();
+
+
+    // Clean up the copied events
+    for (auto& evt : events) {
+        delete evt;
+    }
+
+    // Remove the temporary file from disk
+    readTempFile->Close();
+    std::remove("temp.root");
+}
+
+
+void InitializeVectors()
+{
+  SameTimeEvents.resize(2);  // Resize for two types: X and Y
+  HitStrips.resize(2); // 0 == Y, 1 == X
+  for (int i = 0; i < 2; ++i) { //Loop on X/Y
+      SameTimeEvents[i].resize(NDet);
+      for (int j = 0; j < NDet; ++j) {//Loop on Detectors
+          SameTimeEvents[i][j].resize(NStrip);
+          }
+      }
+}
+
+
+void ClearVectors()
+{
+  for(int iX = 0; iX <2 ; iX++)
+  {
+    for (auto& pair : HitStrips[iX])
+    {
+      SameTimeEvents[iX][pair.first][pair.second]->Clear();
+    }
+  }
+
+  HitStrips[0].clear();
+  HitStrips[1].clear();
+
+
+
+}
+
+void TreatCoincEvent(EdinSimuEvent* event)
+{
+  int det = event->GetDet();
+  int strip = event->GetStrip();
+  std::pair<int, int> detStripPair = {det, strip};
+
+  // Check if the detector and strip combination has not been hit
+  if (HitStrips[event->IsX()].find(detStripPair) == HitStrips[event->IsX()].end())
+  {
+    HitStrips[event->IsX()].insert({det, strip});
+    SameTimeEvents[event->IsX()][det][strip] = event;
+  } else{
+    double baseEnergy = SameTimeEvents[event->IsX()][det][strip]->GetEnergy();
+    double baseTime = SameTimeEvents[event->IsX()][det][strip]->GetTotalTime();
+    double sumEnergy = sumE2(baseEnergy,event->GetEnergy(), event->GetTotalTime()-baseTime);
+    //std::cout << "*** det, strip = " << det << "," << strip ;
+
+    SameTimeEvents[event->IsX()][det][strip]->SetEnergy(sumEnergy);
+    //std::cout << ", sumEnergy =" << SameTimeEvents[event->IsX()][det][strip]->GetEnergy() << std::endl;
+  }
+}
+
+
+void CorrelateEvents(const std::string& TstampFileName, const std::string& EdinFileName )
+{
+  // OOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOO
+  //            Open input and output file
+  // OOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOO
+
+  TFile* inputFile = new TFile(TstampFileName.c_str(), "READ");
+  TTree* inputTree = (TTree*)inputFile->Get("SortedEventTree");
+
+  EdinSimuEvent* inputEvent = new EdinSimuEvent;
+
+  inputTree->SetBranchAddress("Event", &inputEvent);
+
+
+  TFile* outputFile = new TFile(EdinFileName.c_str(), "RECREATE");
+  outputFile->cd();
+
+  TTree* outputTree = new TTree("SimulatedTree", "Correlated Data");
+  TEdinburghDSSDData* Edin = new TEdinburghDSSDData();
+  outputTree->Branch("EdinburghDSSD",&Edin);
+
+
+  // OOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOO
+  //            Set Variables for the loop
+  // OOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOO
+
+  const int nEntries = (const int) inputTree->GetEntries();
+  //const int nEntries = (const int) 1e6;
+  inputTree->GetEntry(0);
+  double lastTime = inputEvent->GetTotalTime();
+
+  std::vector<bool> treated(nEntries, false);  // Initialize all entries to false
+  std::pair<int, int> det_strip_pair;
+  int entryNumber;
+  int det, strip;
+  double baseEnergy, baseTime, dt, totalEnergy;
+  bool checkHit ;
+  EdinSimuEvent* clonedEvent = nullptr;
+  EdinSimuEvent* CorrEvent = nullptr;
+
+  int Ncoinc = 0;
+  int Nx, Ny;
+  Nx = 0;
+  Ny = 0;
+  for (int i = 0; i < nEntries; i++) {
+    //std::cout << std::endl;
+    std::cout << "\r" // Move the cursor to the beginning of the line
+          << "i/nEntries = " << i << " / " << nEntries
+          << std::setw(20) << std::setfill(' ') // Fill the rest of the line if needed
+          << std::flush; // Flush the stream to ensure output is updated immediately
+    inputTree->GetEntry(i);
+    if (treated[i])
+    {
+      //std::cout <<  "-> already treated, continue" << std::endl;
+      continue;
+    }
+    //std::cout << "T = " << inputEvent->GetTotalTime() << std::endl;
+    //std::cout << "∆T = " << inputEvent->GetTotalTime()-lastTime << std::endl;
+    //std::cout << "(det, strip ) = (" << inputEvent->GetDet() << "," << inputEvent->GetStrip()  << "), ";
+    if (inputEvent->GetTotalTime() - lastTime < coinc_time) {
+      //std::cout << "-> in coinc " << std::endl;
+      clonedEvent = new EdinSimuEvent(*inputEvent);
+      TreatCoincEvent(clonedEvent);
+      treated[i] = true;
+      Ncoinc++;
+    } else {
+      //std::cout << "😡 Ncoinc = " << Ncoinc << std::endl;
+      Ncoinc = 0;
+      lastTime = inputEvent->GetTotalTime();
+
+      for(int j = i; j < nEntries; ++j)
+      {
+        inputTree->GetEntry(j);
+        if(inputEvent->GetTotalTime()-lastTime  > T_ADC) break;
+        det = inputEvent->GetDet();
+        strip = inputEvent->GetStrip();
+        det_strip_pair = {det, strip};
+        checkHit = HitStrips[inputEvent->IsX()].find(det_strip_pair) != HitStrips[inputEvent->IsX()].end() ;
+        if(checkHit && !treated[j])
+        {
+          dt = inputEvent->GetTotalTime()-SameTimeEvents[inputEvent->IsX()][det][strip]->GetTotalTime();
+          if(dt < T_ADC)
+          {
+            //std::cout << std::endl;
+            if (inputEvent->IsX() == 1) {
+                //std::cout << "XXXXX";
+                Nx++;
+            } else {
+                //std::cout << "YYYYY";
+                Ny++;
+            }
+            //std::cout << ", dt =" << dt ;
+
+            totalEnergy = SameTimeEvents[inputEvent->IsX()][det][strip]->GetEnergy();
+            //std::cout << ", E1 = " << totalEnergy << ", E2 =" << inputEvent->GetEnergy();
+            totalEnergy = sumE2(totalEnergy,inputEvent->GetEnergy(),dt);
+
+            //std::cout << ", total energy = " << totalEnergy << std::endl;
+            //std::cout << std::endl;
+            SameTimeEvents[inputEvent->IsX()][det][strip]->SetEnergy(totalEnergy);
+            treated[j] = true;
+          }
+        }
+        //TreatADCSum(inputEvent,treated,j);
+      }
+      for (auto& Xpair : HitStrips[1])
+      {
+        CorrEvent = SameTimeEvents[1][Xpair.first][Xpair.second];
+        Edin->SetDSSDXT(false, CorrEvent->GetDet(), CorrEvent->GetStrip(), CorrEvent->GetTime());
+        Edin->SetDSSDXE(false, CorrEvent->GetDet(), CorrEvent->GetStrip(), CorrEvent->GetEnergy());
+        Edin->SetDSSDX_Interstrip(CorrEvent->IsInterstrip());
+        Edin->SetDSSDX_Tstamp(CorrEvent->GetTimeStamp());
+
+      }
+      for (auto& Ypair : HitStrips[0])
+      {
+        //std::cout << "EY = " << CorrEvent->GetEnergy() << std::endl;
+        CorrEvent = SameTimeEvents[0][Ypair.first][Ypair.second];
+        //std::cout << "EY = " << CorrEvent->GetEnergy() << std::endl;
+        Edin->SetDSSDYT(false, CorrEvent->GetDet(), CorrEvent->GetStrip(), CorrEvent->GetTime());
+        Edin->SetDSSDYE(false, CorrEvent->GetDet(), CorrEvent->GetStrip(), CorrEvent->GetEnergy());
+        Edin->SetDSSDY_Interstrip(CorrEvent->IsInterstrip());
+        Edin->SetDSSDY_Tstamp(CorrEvent->GetTimeStamp());
+      }
+
+      outputTree->Fill();
+      Edin->Clear();
+      ClearVectors();
+
+      i -= 1; // Decrement to revisit this entry on next loop
+    }
+}
+  outputFile->Write();
+  inputFile ->Close();
+  outputFile->Close();
+  std::cout << "NX = " << Nx << ", Ny = " << Ny << std::endl;
+
+}
+
+
+void GSIMerging3()
+{
+  std::string InputFileName, TstampFileName, EdinDataFileName;
+
+  CreateFileNames(FileName, InputFileName, TstampFileName, EdinDataFileName);
+  ApplyTimeStamp(InputFileName, TstampFileName);
+  InitializeVectors();
+  CorrelateEvents(TstampFileName, EdinDataFileName);
+}
diff --git a/Projects/EdinburghDSSD/Scripts/GSIMerging3.hh b/Projects/EdinburghDSSD/Scripts/GSIMerging3.hh
new file mode 100644
index 0000000000000000000000000000000000000000..1ebf065065e1ede3992d905d9894d6a125cdee18
--- /dev/null
+++ b/Projects/EdinburghDSSD/Scripts/GSIMerging3.hh
@@ -0,0 +1,147 @@
+#include <TCanvas.h>
+#include <TGraph.h>
+#include <random>
+#include <unistd.h>
+#include <sstream>
+#include <vector>
+#include <algorithm>
+#include <iostream>
+#include <chrono>
+#include <cmath>
+#include <set>
+#include <utility> // For std::pair
+#include <cstdio>  // for std::remove()
+#include <filesystem>
+#include <iomanip> // For std::setw and std::setfill
+
+#include "TStopwatch.h"
+#include "TFile.h"
+#include "TTree.h"
+#include <TTreeIndex.h>
+#include "TMath.h"
+#include "TEdinburghDSSDData.h"
+#include "TH1F.h"
+
+
+
+
+// Declare the global variable
+const double t_max = 1e+09;  // Modified by merge_simu script
+const double coinc_time = 100;  // Modified by merge_simu script
+const double T_ADC = 1000;  // Modified by merge_simu script
+const std::string FileName = "/Users/lh270370/Software/nptool/Outputs/Simulation/GSI/full_beam/test_04_06__sigma5keV/test_04_06__sigma5keV"; 
+
+class EdinSimuEvent {
+private:
+    // Private data members
+    double energy;
+    double time;
+    double totalTime;
+    double timeStamp;
+    int strip;
+    int det;
+    bool x;
+    bool y;
+    bool treated;
+    bool interstrip;
+
+public:
+    // Constructor
+    EdinSimuEvent() : energy(0), time(0), totalTime(0),timeStamp(0), strip(0), det(0), x(false), y(false), treated(false), interstrip(false) {}
+
+    // Public setter methods
+    void SetEnergy(double e) { energy = e; }
+    void SetTime(double t) { time = t; }
+    void SetTimeStamp(double t) { timeStamp = t; }
+    void SetTotalTime(double tt) { totalTime = tt; }
+    void SetStrip(int s) { strip = s; }
+    void SetDet(int d) { det = d; }
+    void SetX(bool flag) { x = flag; }
+    void SetY(bool flag) { y = flag; }
+    void SetInterstrip(bool i){interstrip = i;}
+    void SetTreated(bool t){treated = t;}
+
+    void AddEnergy(double e) { energy += e; }
+
+    // Public getter methods
+    double GetEnergy() const { return energy; }
+    double GetTime() const { return time; }
+    double GetTimeStamp() const { return timeStamp; }
+    double GetTotalTime() const { return totalTime; }
+    int GetStrip() const { return strip; }
+    int GetDet() const { return det; }
+    bool IsX() const { return x; }
+    bool IsY() const { return y; }
+    bool IsInterstrip() const { return interstrip; }
+    bool IsEmpty() const {return x == y;}
+    bool IsTreated() const {return treated ;}
+
+    // FillEvent methods for X and Y events
+    void FillEvent_X(const TEdinburghDSSDData* Edin, int index) {
+        SetEnergy(Edin->GetDSSDXEEnergy(index));
+        SetTime(Edin->GetDSSDXTTime(index));
+        SetTimeStamp(t_max*Edin->GetDSSDX_TStamp(index));
+        SetTotalTime(GetTime() + t_max * Edin->GetDSSDX_TStamp(index));
+        SetStrip(Edin->GetDSSDXEStripNbr(index));
+        SetDet(Edin->GetDSSDXEDetectorNbr(index));
+        SetX(true);
+        SetY(false);
+        SetInterstrip(Edin->GetDSSDX_Interstrip(index));
+    }
+
+    void FillEvent_Y(const TEdinburghDSSDData* Edin, int index) {
+        SetEnergy(Edin->GetDSSDYEEnergy(index));
+        SetTime(Edin->GetDSSDYTTime(index));
+        SetTimeStamp(t_max*Edin->GetDSSDY_TStamp(index));
+        SetTotalTime(GetTime() + t_max * Edin->GetDSSDY_TStamp(index));
+        SetStrip(Edin->GetDSSDYEStripNbr(index));
+        SetDet(Edin->GetDSSDYEDetectorNbr(index));
+        SetX(false);
+        SetY(true);
+        SetInterstrip(Edin->GetDSSDY_Interstrip(index));
+    }
+
+    void Clear(){
+      SetEnergy(0);
+      SetTime(0);
+      SetTimeStamp(0);
+      SetTotalTime(0);
+      SetStrip(0);
+      SetDet(0);
+      SetX(false);
+      SetY(false);
+      SetTreated(false);
+      SetInterstrip(false);
+    }
+};
+
+class TimeComparator {
+public:
+    bool operator() (const EdinSimuEvent* lhs, const EdinSimuEvent* rhs) const {
+        return lhs->GetTotalTime() < rhs->GetTotalTime();
+    }
+};
+
+double sumE2(double E1, double E2, double dt) {
+  // E1 = trigger signal
+  // E2 = piling-up signal
+  // dt = T(E2) - T(E1)
+    if(dt < T_ADC)
+      //return E1 + E2;
+      return  E1 + E2*(1-TMath::Exp(5*(dt/T_ADC-1)))/(1-TMath::Exp((double)-5));
+    else
+      return E1;
+}
+
+double now() {
+    return std::chrono::duration_cast<std::chrono::duration<double>>(std::chrono::high_resolution_clock::now().time_since_epoch()).count();
+}
+
+
+const int NDet = 2; // Assuming there are 2 detectors
+const int NStrip = 16; // Assuming each detector has 16 strips
+constexpr int MaxMultiplicity = 10; // Maximum number of events you expect in any vector
+
+
+std::vector<std::vector<std::vector<EdinSimuEvent*>>> SameTimeEvents;
+std::vector<std::set<std::pair<int, int>>> HitStrips;
diff --git a/Projects/EdinburghDSSD/Scripts/GSIMerging3_cc.d b/Projects/EdinburghDSSD/Scripts/GSIMerging3_cc.d
new file mode 100644
index 0000000000000000000000000000000000000000..17f08d2e73228dd6018d8e1a19c99921296cb8eb
--- /dev/null
+++ b/Projects/EdinburghDSSD/Scripts/GSIMerging3_cc.d
@@ -0,0 +1,98 @@
+
+# DO NOT DELETE
+
+./GSIMerging3_cc.so: GSIMerging3.hh
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TCanvas.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TPad.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualPad.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TObject.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/Rtypes.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/RtypesCore.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RConfig.hxx
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/RVersion.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RVersion.hxx
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/RConfigure.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/DllImport.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/strtok.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/strlcpy.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/snprintf.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TGenericClassInfo.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TSchemaHelper.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TIsAProxy.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualIsAProxy.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TStorage.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVersionCheck.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/RVersion.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAttLine.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAttFill.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAttPad.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TQObject.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TList.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TSeqCollection.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TCollection.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TIterator.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TString.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TMathBase.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RStringView.hxx
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TypeTraits.hxx
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualRWMutex.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualMutex.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RRangeCast.hxx
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RSpan.hxx
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/span.hxx
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualQConnection.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TInterpreter.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TDataType.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TDictionary.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TNamed.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ESTLType.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TInterpreterValue.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/GuiTypes.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/Buttons.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAttBBox2D.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAttCanvas.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TGraph.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAttMarker.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVectorFfwd.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVectorDfwd.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TFitResultPtr.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TStopwatch.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TFile.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/Compression.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TDirectoryFile.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TDirectory.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TClass.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TObjArray.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TUUID.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TBuffer.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/Bytes.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TDatime.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TUrl.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RConcurrentHashColl.hxx
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TRWSpinLock.hxx
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TSpinMutex.hxx
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TTree.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TIOFeatures.hxx
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayD.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TArray.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayI.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualTreePlayer.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TBranch.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TBranchCacheInfo.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TBits.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TTreeIndex.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualIndex.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TMath.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TError.h
+./GSIMerging3_cc.so: /Users/lh270370/Software/nptool/NPLib/include/TEdinburghDSSDData.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TH1F.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TH1.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAxis.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAttAxis.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayC.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayS.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayF.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/Foption.h
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/EExecutionPolicy.hxx
+./GSIMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/RVersion.h /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RConfig.hxx /opt/homebrew/Cellar/root/6.30.04/include/root/TClass.h /opt/homebrew/Cellar/root/6.30.04/include/root/TDictAttributeMap.h /opt/homebrew/Cellar/root/6.30.04/include/root/TInterpreter.h /opt/homebrew/Cellar/root/6.30.04/include/root/TROOT.h /opt/homebrew/Cellar/root/6.30.04/include/root/TBuffer.h /opt/homebrew/Cellar/root/6.30.04/include/root/TMemberInspector.h /opt/homebrew/Cellar/root/6.30.04/include/root/TError.h /opt/homebrew/Cellar/root/6.30.04/include/root/RtypesImp.h /opt/homebrew/Cellar/root/6.30.04/include/root/TIsAProxy.h /opt/homebrew/Cellar/root/6.30.04/include/root/TFileMergeInfo.h /opt/homebrew/Cellar/root/6.30.04/include/root/TCollectionProxyInfo.h /opt/homebrew/Cellar/root/6.30.04/bin/rootcling
+GSIMerging3_cc__ROOTBUILDVERSION= 6.30/04
diff --git a/Projects/EdinburghDSSD/Scripts/GSIMerging3_cc.so b/Projects/EdinburghDSSD/Scripts/GSIMerging3_cc.so
new file mode 100755
index 0000000000000000000000000000000000000000..43707323f44828af71232639475bc1cea462222a
Binary files /dev/null and b/Projects/EdinburghDSSD/Scripts/GSIMerging3_cc.so differ
diff --git a/Projects/EdinburghDSSD/Scripts/GSIMerging3_cc_ACLiC_dict_rdict.pcm b/Projects/EdinburghDSSD/Scripts/GSIMerging3_cc_ACLiC_dict_rdict.pcm
new file mode 100644
index 0000000000000000000000000000000000000000..e1fd8aecf3cc1df3f72ffaca5fa8a07758953e46
Binary files /dev/null and b/Projects/EdinburghDSSD/Scripts/GSIMerging3_cc_ACLiC_dict_rdict.pcm differ
diff --git a/Projects/EdinburghDSSD/Scripts/SanityCheckV2.cxx b/Projects/EdinburghDSSD/Scripts/SanityCheckV2.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..a66f849c89df581428764bb0d524d378f2ba205b
--- /dev/null
+++ b/Projects/EdinburghDSSD/Scripts/SanityCheckV2.cxx
@@ -0,0 +1,79 @@
+#include "SanityCheckV2.hh"
+
+
+void FillHit(const TEdinburghDSSDPhysics* event, const AnalysisConfig& config)
+{
+  for(int j = 0; j < event->EventMultiplicity; j++)
+  {
+    if((event->DSSD_E[j]>config.E_min) && (event->DSSD_E[j] < config.E_max))
+    {
+      if(!config.isDead(event->DetectorNumber[j],event->DSSD_X[j],event->DSSD_Y[j]))
+      {
+        if(event->DetectorNumber[j] == 1)
+        {
+          config.HitPatterns[event->DetectorNumber[j]]->Fill(event->DSSD_X[j], event->DSSD_Y[j]);
+        }
+        else
+        {
+          config.HitPatterns[event->DetectorNumber[j]]->Fill(event->DSSD_X[j], event->DSSD_Y[j]);
+        }
+        config.Xhits[event->DetectorNumber[j]]->Fill(event->DSSD_X[j]);
+        config.Yhits[event->DetectorNumber[j]]->Fill(event->DSSD_Y[j]);
+      }
+    }
+    config.SumEnergy[event->DetectorNumber[j]]->Fill(event->DSSD_E[j]);
+  }
+}
+
+void FillCorrelation(const TEdinburghDSSDPhysics* event, const AnalysisConfig& config)
+{
+  int mult = event->EventMultiplicity;
+  int detA, detB;
+  for(int j1 = 0; j1 < mult; j1++)
+  {
+    detA = event->DetectorNumber[j1];
+    for(int j2 = j1+1; j2 < mult; j2++)
+    {
+      detB = event->DetectorNumber[j2];
+      config.E1E2_detAdetB[detA][detB]->Fill(event->DSSD_E[j1],event->DSSD_E[j2]);
+      config.E1E2_all->Fill(event->DSSD_E[j1],event->DSSD_E[j2]);
+      if(detA!=detB)
+      {
+        config.E1E2_all_diffDet->Fill(event->DSSD_E[j1],event->DSSD_E[j2]);
+      }
+    }
+  }
+}
+
+void AnalyzeData(const AnalysisConfig& config) {
+
+    TFile *inputFile = new TFile(config.inputFileName.c_str(), "READ"); // Open your ROOT file for reading
+    TTree *tree = (TTree*)inputFile->Get("PhysicsTree");  // Replace "your_tree_name" with the name of your TTree
+    TObjArray* branches = tree->GetListOfBranches();
+    TEdinburghDSSDPhysics* Mumu = new TEdinburghDSSDPhysics();
+    TBranch *branch = tree->GetBranch("EdinburghDSSD");
+    branch->SetAddress(&Mumu);
+
+    Long64_t nEntries = tree->GetEntries();
+
+    for (Long64_t i = 0; i < nEntries; ++i) {
+        tree->GetEntry(i);
+        FillHit(Mumu,config);
+        //if(Mumu->EventMultiplicity>=2 && Mumu->EventMultiplicity<3)FillCorrelation(Mumu,config);
+      }
+}
+
+// Remember to call AnalyzeData with the appropriate arguments somewhere in your code
+void SanityCheckV2() {
+    AnalysisConfig config;
+    config.inputFileName = "/Users/lh270370/Software/nptool/Outputs/Analysis/Simu/GSI/full_beam/test_04_06__sigma5keV_physics.root";
+    config.outputFileName = "/Users/lh270370/Software/nptool/Outputs/Analysis/Simu/GSI/full_beam/histoSanity_test_04_06__sigma5keV_physics.root";
+    config.E_min = 5.3;
+    config.E_max = 5.8;
+    config.tau = 100;
+    config.T = 1e+09;
+    //config.InitializeHistograms();
+    AnalyzeData(config);
+    config.WriteHistograms();
+    config.ClearHistograms();
+}
diff --git a/Projects/EdinburghDSSD/Scripts/SanityCheckV2.hh b/Projects/EdinburghDSSD/Scripts/SanityCheckV2.hh
new file mode 100644
index 0000000000000000000000000000000000000000..189bd8911c63f0532a1b659d6adb08b7f00fe7d6
--- /dev/null
+++ b/Projects/EdinburghDSSD/Scripts/SanityCheckV2.hh
@@ -0,0 +1,203 @@
+// AnalysisConfig.hh
+#include <TFile.h>
+#include <TTree.h>
+#include <TH2F.h>
+#include <cmath> // For sqrt
+#include <map>
+#include <algorithm> // For std::min and std::max
+#include <TCanvas.h>
+#include <iostream>
+#include "TGraphErrors.h"
+#include "TString.h"
+#include "TLegend.h"
+#include <iostream>
+#include <fstream>
+#include <string>
+#include <filesystem>
+#include <string>
+#include <set>
+#include "TEdinburghDSSDPhysics.h"
+
+#ifndef ANALYSISCONFIG_HH
+#define ANALYSISCONFIG_HH
+
+const double Emin_222Ra = 6.46;
+const double Emax_222Ra = 6.50;
+
+const double Emin_220Ra = 7.40;
+const double Emax_220Ra = 7.50;
+
+
+
+class AnalysisConfig {
+public:
+    std::string inputFileName;
+    std::string outputFileName;
+    double E_min;
+    double E_max;
+    double tau;
+    double T;
+    int NDet ;
+    int NStrip;
+
+    std::vector<TH2F*> HitPatterns;
+    std::vector<TH1F*> Xhits;
+    std::vector<TH1F*> Yhits;
+    std::vector<TH1F*> SumEnergy;
+    std::vector<std::vector<TH2F*>> E1E2_detAdetB;
+    TH2F* E1E2_all;
+    TH2F* E1E2_all_diffDet;
+    std::map<std::pair<int, int>, int> detPairToIndexMap;
+
+    std::map<int, std::set<int>> deadStripsX = {
+        {0, {}},
+        {1, {}},
+        {2, {}},
+        {3, {}}
+    };
+
+    // Declaration for dead strips along the Y axis
+    std::map<int, std::set<int>> deadStripsY = {
+        {0, {}},
+        {1, {}},
+        {2, {}},
+        {3, {}}
+    };
+    AnalysisConfig() : E_min(0), E_max(100), tau(1), T(100), NDet(2), NStrip(16) {
+        InitializeHistograms();
+    }
+
+    ~AnalysisConfig() {
+        ClearHistograms();
+    }
+
+    void InitializeHistograms() {
+        // Initialize the histograms for each detector
+        //ClearHistograms();
+        for (int det = 0; det < NDet; ++det) {
+            HitPatterns.push_back(new TH2F(Form("HitPattern_Det%d", det),
+                                           Form("Spatial Hit Distribution for Detector %d;Strip X;Strip Y", det),
+                                           NStrip, 0, NStrip, NStrip, 0, NStrip));
+            Xhits.push_back(new TH1F(Form("Xhits_Det%d", det),
+                                     Form("X Hits Distribution for Detector %d;Strip X;Hits Count", det),
+                                     NStrip, 0, NStrip));
+            Yhits.push_back(new TH1F(Form("Yhits_Det%d", det),
+                                     Form("Y Hits Distribution for Detector %d;Strip Y;Hits Count", det),
+                                     NStrip, 0, NStrip));
+            SumEnergy.push_back(new TH1F(Form("SumEnergy_Det%d", det),
+                                     Form("Summed Energy for Hits in Detector %d;Energy (MeV);Event Count", det),
+                                     40000, 0, 20));
+        }
+
+        E1E2_detAdetB.resize(NDet);
+        for (int detA = 0; detA < NDet; detA++) {
+          E1E2_detAdetB[detA].resize(NDet);
+          }
+        // Initialize the 2D histograms for energy correlations between different detectors
+        for (int detA = 0; detA < NDet; detA++) {
+            for (int detB = detA; detB < NDet; detB++) {
+                std::string histName = Form("E1E2_det%d_det%d", detA, detB);
+                std::string histTitle = Form("Energy Correlation between Detectors %d and %d;Energy E%d (MeV);Energy E%d (MeV)", detA, detB, detA, detB);
+                E1E2_detAdetB[detA][detB] = new TH2F(histName.c_str(), histTitle.c_str(), 200, 0, 20, 200, 0, 20);
+            }
+        }
+        E1E2_all = new TH2F("E1E2_all", "Energy correlation betwenn all detectors;Energy E__A( MeV);Energy E_B (MeV)", 200,0,20,200,0,20);
+        E1E2_all_diffDet = new TH2F("E1E2_all_diffDet", "Energy correlation betwenn all detectors detA!= detB;Energy E_A (MeV);Energy E_B (MeV)", 200,0,20,200,0,20);
+    }
+
+    void ClearHistograms() {
+        // Properly delete all histogram objects to avoid memory leaks
+        for (auto& hist : HitPatterns) delete hist;
+        for (auto& hist : Xhits) delete hist;
+        for (auto& hist : Yhits) delete hist;
+        for (auto& hist : SumEnergy) delete hist;
+        for(int detA = 0; detA < NDet ;  ++detA)
+        {
+          E1E2_detAdetB[detA].clear();
+        }
+
+        HitPatterns.clear();
+        Xhits.clear();
+        Yhits.clear();
+        SumEnergy.clear();
+        E1E2_detAdetB.clear();
+        //delete E1E2_all;
+    }
+
+    void WriteHistograms  () {
+        // Open a file with the provided output file name
+        TFile outputFile(outputFileName.c_str(), "RECREATE");
+
+        if (!outputFile.IsOpen()) {
+            std::cerr << "Error: File could not be opened for writing: " << outputFileName << std::endl;
+            return;
+        }
+        // Create the main groups (directories)
+        TDirectory* geometry = outputFile.mkdir("Geometry");
+        TDirectory* allEnergy = outputFile.mkdir("All Energy");
+        TDirectory* energyCorrelation = outputFile.mkdir("Energy correlation");
+
+        // Create subgroups for "Geometry"
+        TDirectory* hitPatternDir = geometry->mkdir("HitPattern");
+        TDirectory* xhitsDir = geometry->mkdir("Xhits");
+        TDirectory* yhitsDir = geometry->mkdir("Yhits");
+
+        // Create subgroups for "Energy correlation"
+        TDirectory* twoByTwoDir = energyCorrelation->mkdir("2by2");
+
+        // Writing "Geometry" histograms
+        hitPatternDir->cd();
+        for (auto& hist : HitPatterns) hist->Write();
+
+        xhitsDir->cd();
+        for (auto& hist : Xhits) hist->Write();
+
+        yhitsDir->cd();
+        for (auto& hist : Yhits) hist->Write();
+
+        // Writing "All Energy" histograms
+        allEnergy->cd();
+        for (auto& hist : SumEnergy) hist->Write();
+
+        // Writing "Energy correlation" histograms
+        twoByTwoDir->cd();
+        for(int detA = 0; detA < NDet ;  ++detA)
+        {
+          for(int detB = detA; detB < NDet ;  ++detB)
+          {
+            E1E2_detAdetB[detA][detB]->Write();
+          }
+        }
+
+        energyCorrelation->cd();
+        E1E2_all->Write();
+        E1E2_all_diffDet->Write();
+
+
+        outputFile.Close();
+        std::cout << "Histograms successfully written to " << outputFileName << std::endl;
+    }
+
+    bool isDead(int detector, int stripX, int stripY) const {
+        bool isXDead = false, isYDead = false;
+
+        // Check if the X strip is dead
+        auto itX = deadStripsX.find(detector);
+        if (itX != deadStripsX.end()) {
+            isXDead = itX->second.find(stripX) != itX->second.end();
+        }
+
+        // Check if the Y strip is dead
+        auto itY = deadStripsY.find(detector);
+        if (itY != deadStripsY.end()) {
+            isYDead = itY->second.find(stripY) != itY->second.end();
+        }
+
+        // Return true if either X or Y strip is dead
+        return isXDead || isYDead;
+    }
+
+
+};
+
+#endif // ANALYSISCONFIG_HH
diff --git a/Projects/EdinburghDSSD/analyse_simu.py b/Projects/EdinburghDSSD/analyse_simu.py
new file mode 100755
index 0000000000000000000000000000000000000000..4c0f68253ecd4f3b019ce9cfe22962e7c2a0c8a1
--- /dev/null
+++ b/Projects/EdinburghDSSD/analyse_simu.py
@@ -0,0 +1,97 @@
+#!/usr/bin/python3
+import argparse
+import os
+import subprocess
+import sys
+import time
+import shutil
+
+def parse_arguments():
+    parser = argparse.ArgumentParser()
+    parser.add_argument("-IF", dest="sim_output_file", help="Name of the simulation output file", default="default_file")
+    parser.add_argument("-ID", dest="sim_output_dir", help="Name of the simulation output directory", default="default_dir")
+    parser.add_argument("-OD", dest="ana_output_dir", help="Name of the analysis output directory")
+    parser.add_argument("-OF", dest="ana_output_file", help="Name of the analysis output file")
+    return parser.parse_args()
+
+def ensure_directory_exists(directory):
+    os.makedirs(directory, exist_ok=True)
+
+def check_and_handle_existing_file(file_path):
+    if os.path.isfile(file_path):
+        print(f"{file_path} exists.")
+        user_input = input("Do you want to remove the existing output file and proceed? (y/n): ")
+        if user_input.lower() == 'y':
+            print("Removing existing output file...")
+            os.remove(file_path)
+            print("Removed existing file. Proceeding with the analysis...")
+        else:
+            print("Not overwriting the files. Exiting.")
+            sys.exit(1)
+
+def run_command(command):
+    print(f'Executing command: {command}')
+    process = subprocess.run(command, shell=True, text=True)
+    if process.returncode != 0:
+        print(f"Error executing command: {command}")
+        sys.exit(1)
+
+def replace_line_in_file(file_path, identifier, new_line):
+    with open(file_path, 'r') as file:
+        lines = file.readlines()
+
+    with open(file_path, 'w') as file:
+        write_next = False
+        for line in lines:
+            if write_next:
+                file.write(new_line + '\n')
+                write_next = False
+            else:
+                file.write(line)
+            if identifier in line:
+                write_next = True
+
+def main():
+    args = parse_arguments()
+
+    ana_output_dir = args.ana_output_dir or args.sim_output_dir
+    ana_output_dir = ana_output_dir
+    ana_output_file = f"{args.ana_output_file or args.sim_output_file}"
+
+
+    detector_config = "DetectorConfiguration/EdinburghDSSD.detector"
+    calibration="calibration/CalibrationRaw.txt"
+    run_to_treat ="RunToTreat.txt"
+
+    print(f"OUTPUTDIR  : {ana_output_dir}")
+    print(f"OUTPUTFILE : {ana_output_file}")
+    time.sleep(1)
+    nptool_path = os.getenv('NPTOOL')
+    sim_dir = nptool_path + "/Outputs/Simulation/GSI"
+    ana_dir = nptool_path + "/Outputs/Analysis"
+    ana_dir_gsi = os.path.join(ana_dir, "Simu/GSI", ana_output_dir)
+
+    ensure_directory_exists(ana_dir_gsi)
+
+    final_output_file = os.path.join(ana_dir, f"{ana_output_file}.root")
+    final_output_file_path = os.path.join(ana_dir_gsi, f"{ana_output_file}.root")
+
+    check_and_handle_existing_file(final_output_file_path)
+
+    new_path = f"{sim_dir}/{args.sim_output_dir}/{args.sim_output_file}.root"
+
+    replace_line_in_file('RunToTreat.txt', 'TTreeName', '\tSimulatedTree')
+
+    if shutil.which("npanalysis"):
+
+        bash = "~/.bashrc"
+        #run_command(command)
+        run_command(f"source {bash} && npanalysis -D {detector_config} -O {ana_output_file} -C {calibration} -R {run_to_treat}")
+        shutil.move(final_output_file, final_output_file_path)
+        #print(f"Moved output file to: {final_output_file_path}")
+    else:
+        print("Error: npanalysis command not found. Make sure it's installed and in your PATH.")
+        sys.exit(1)
+
+if __name__ == "__main__":
+    main()
diff --git a/Projects/EdinburghDSSD/change_configuration.py b/Projects/EdinburghDSSD/change_configuration.py
new file mode 100755
index 0000000000000000000000000000000000000000..844c791065421972e85a5a0b09529caaae043625
--- /dev/null
+++ b/Projects/EdinburghDSSD/change_configuration.py
@@ -0,0 +1,114 @@
+#!/usr/bin/python3
+import os
+import subprocess
+import numpy as np
+
+
+def format_value(value):
+    """ Format the value by replacing '-' with 'm' and '.' with '_' """
+    return str(value).replace('-', 'm').replace('.', '_')
+
+def modify_files(params, outputFileName, outputDir, beamFile,macroFile):
+    # Default parameters
+    defaults = {'thetaTarget': 0,'offsetTargetX': 0,'offsetTargetY' :0,
+        'offsetBeamX' : 0, 'offsetBeamY' : 0, 'sigmaBeamX': 0, 'sigmaBeamY': 0,
+    'holderShift' : 0 }
+
+    # Update params with any defaults that aren't specified
+    for key, value in defaults.items():
+        params.setdefault(key, value)
+
+    # Define file paths
+    nptool_path = os.getenv('NPTOOL')
+    edin_file = nptool_path + "/NPSimulation/Detectors/EdinburghDSSD/EdinburghDSSD.cc"
+    beam_file = "./Beam/" + beamFile
+    routine_file = "./routine.sh"
+
+    # Function to preserve indentation
+    def replace_line(line, new_content):
+        leading_spaces = len(line) - len(line.strip())
+        return ' ' * leading_spaces + new_content + '\n'
+
+    # Read and modify EdinburghDSSD.cc
+    #with open(edin_file, 'r') as file:
+    #    lines = file.readlines()
+    #with open(edin_file, 'w') as file:
+
+    # Read and modify beam file
+    with open(beam_file, 'r') as file:
+        lines = file.readlines()
+    with open(beam_file, 'w') as file:
+        for line in lines:
+            if "x0=" in line:
+                new_line = replace_line(line, f"x0= {params['offsetBeamX']:.1f}")
+                file.write(new_line[1:])
+            elif "y0=" in line:
+                new_line = replace_line(line, f"y0= {params['offsetBeamY']:.1f}")
+                file.write(new_line[1:])
+            elif "sigmaX =" in line:
+                new_line = replace_line(line, f"sigmaX = {params['sigmaBeamX']:.2f}")
+                file.write(new_line[1:])
+            elif "sigmaY =" in line:
+                new_line = replace_line(line, f"sigmaY = {params['sigmaBeamY']:.2f}")
+                file.write(new_line[1:])
+            else:
+                file.write(line)
+
+    # Read and modify routine.sh
+    with open(routine_file, 'r') as file:
+        lines = file.readlines()
+    with open(routine_file, 'w') as file:
+        for line in lines:
+            if 'SIM_FILE=' in line:
+                parts = []
+                for param, value in params.items():
+                    if value != defaults[param]:
+                        format_val = format_value(value)
+                        parts.append(f"{param}{format_val}")
+                new_sim_file = outputFileName + '__'.join(parts)
+                new_line = replace_line(line, f'SIM_FILE="{new_sim_file}"')
+                file.write(new_line[1:])
+            elif 'DIR=' in line :
+                new_line = replace_line(line, 'DIR="'+outputDir + '"')
+                file.write(new_line[1:])
+            elif 'MACRO=' in line:
+                new_line = replace_line(line, 'MACRO="'+macroFile + '"')
+                file.write(new_line[1:])
+            elif 'EVENT_SOURCE=' in line :
+                new_line = replace_line(line, 'EVENT_SOURCE="'+beamFile + '"')
+                file.write(new_line[1:])
+            else:
+                file.write(line)
+
+outputFileName = "222Ra_alpha__1e7__"
+outputDir = "nice_plot"
+beamFile = "alpha_222Ra.source"
+macroFile = "run2e6"
+
+params = {'offsetTargetX': 0, 'offsetTargetY': 0,
+    'offsetBeamX' : 0,'offsetBeamY' : 0, 'thetaTarget' : 0,
+'sigmaBeamX' : 0, 'sigmaBeamY' : 0 }
+
+
+
+
+xBeam = -6
+yBeam = 6
+radius_target = 6
+sigmaBeam = 0.2
+holder_shift = 0.5
+theta = 0
+
+
+for offsetX in [-3]:
+
+    offsetY = yBeam - (offsetX-xBeam)*np.tan(theta*np.pi/180)
+    if(np.sqrt((offsetY-yBeam)**2+(offsetX-xBeam)**2))>radius_target:
+        print("BEAM OUTSIDE TARGET ! ")
+    params = {'offsetTargetX': offsetX, 'offsetTargetY': offsetY,
+            'offsetBeamX' : xBeam,'offsetBeamY' : yBeam, 'thetaTarget' : theta,
+            'sigmaBeamX' : sigmaBeam, 'sigmaBeamY' : sigmaBeam,
+             'holderShift' : holder_shift }
+    #print(params)
+    modify_files(params, outputFileName,outputDir, beamFile, macroFile)
+    subprocess.run('./routine.sh', shell=True, executable="/bin/bash", check=True)
diff --git a/Projects/EdinburghDSSD/clean.py b/Projects/EdinburghDSSD/clean.py
new file mode 100755
index 0000000000000000000000000000000000000000..adf967c51517d51419f4758fa8000317df55c3a9
--- /dev/null
+++ b/Projects/EdinburghDSSD/clean.py
@@ -0,0 +1,63 @@
+#!/usr/bin/python3
+
+import argparse
+import os
+import subprocess
+import shutil
+import glob
+
+
+def parse_arguments():
+    parser = argparse.ArgumentParser()
+    parser.add_argument("-SF", dest="sim_file", help="Name of the simulation output file", default="default_file")
+    parser.add_argument("-SD", dest="sim_dir", help="Name of the simulation output directory", default="default_dir")
+    parser.add_argument("-AF", dest="ana_file", help="Name of the analysis output directory")
+    parser.add_argument("-AD", dest="ana_dir", help="Name of the analysis output file")
+    return parser.parse_args()
+
+
+def clean_sim(directory,file):
+    nptool_path = os.getenv('NPTOOL')
+    sim_path = nptool_path+ "/Outputs/Simulation/GSI"
+    new_directory = sim_path + "/" + directory + "/" + file
+    #print(new_directory)
+    file_pattern = sim_path + "/" + directory + "/" + "*" + file + "*"
+
+    if not os.path.exists(new_directory):
+        os.makedirs(new_directory)
+
+    for file in glob.glob(file_pattern):
+        # Avoid trying to move the directory into itself
+        if not os.path.isdir(file):
+            shutil.move(file, os.path.join(new_directory, os.path.basename(file)))
+
+def clean_ana(directory,file):
+    nptool_path = os.getenv('NPTOOL')
+    sim_path = nptool_path + "/Outputs/Analysis/GSI"
+    new_directory = sim_path + "/" + directory + "/" + file
+    #print(new_directory)
+    file_pattern = sim_path + "/" + directory + "/" + "*" + file + "*"
+
+    if not os.path.exists(new_directory):
+        os.makedirs(new_directory)
+
+    for file in glob.glob(file_pattern):
+        # Avoid trying to move the directory into itself
+        if not os.path.isdir(file):
+            shutil.move(file, os.path.join(new_directory, os.path.basename(file)))
+
+
+
+
+
+
+
+def main():
+    args = parse_arguments()
+
+    clean_sim(args.sim_dir,args.sim_file)
+    #clean_ana(args.ana_dir,args.ana_file)
+
+
+if __name__ == "__main__":
+    main()
diff --git a/Projects/EdinburghDSSD/libNPAnalysis.dylib b/Projects/EdinburghDSSD/libNPAnalysis.dylib
new file mode 100755
index 0000000000000000000000000000000000000000..065efdd7a52078179e20d4bb4cc3cd55465acccb
Binary files /dev/null and b/Projects/EdinburghDSSD/libNPAnalysis.dylib differ
diff --git a/Projects/EdinburghDSSD/macros/run.mac b/Projects/EdinburghDSSD/macros/run.mac
new file mode 100644
index 0000000000000000000000000000000000000000..19fd56e6724ca337abf96c30b34f604643ab526b
--- /dev/null
+++ b/Projects/EdinburghDSSD/macros/run.mac
@@ -0,0 +1 @@
+/run/beamOn 1
diff --git a/Projects/EdinburghDSSD/macros/run1e1.mac b/Projects/EdinburghDSSD/macros/run1e1.mac
new file mode 100644
index 0000000000000000000000000000000000000000..ced78f72769fe42cd7cc053d0387e39f4e254d76
--- /dev/null
+++ b/Projects/EdinburghDSSD/macros/run1e1.mac
@@ -0,0 +1 @@
+/run/beamOn 10
diff --git a/Projects/EdinburghDSSD/macros/run1e2.mac b/Projects/EdinburghDSSD/macros/run1e2.mac
new file mode 100644
index 0000000000000000000000000000000000000000..36090a9e5ba9b50eff3bfa747e6916a900d7370f
--- /dev/null
+++ b/Projects/EdinburghDSSD/macros/run1e2.mac
@@ -0,0 +1 @@
+/run/beamOn 100
diff --git a/Projects/EdinburghDSSD/macros/run1e3.mac b/Projects/EdinburghDSSD/macros/run1e3.mac
new file mode 100644
index 0000000000000000000000000000000000000000..8eec34f7c0cc1911bbafaa6e92961e0836d874ba
--- /dev/null
+++ b/Projects/EdinburghDSSD/macros/run1e3.mac
@@ -0,0 +1 @@
+/run/beamOn 1000
diff --git a/Projects/EdinburghDSSD/macros/run1e4.mac b/Projects/EdinburghDSSD/macros/run1e4.mac
new file mode 100644
index 0000000000000000000000000000000000000000..b379ed9bcf78d80c4a29d004189059437aaa84d3
--- /dev/null
+++ b/Projects/EdinburghDSSD/macros/run1e4.mac
@@ -0,0 +1 @@
+/run/beamOn 10000
diff --git a/Projects/EdinburghDSSD/macros/run1e5.mac b/Projects/EdinburghDSSD/macros/run1e5.mac
new file mode 100644
index 0000000000000000000000000000000000000000..506556ed2882f22f4f6013ba592297aba63dec25
--- /dev/null
+++ b/Projects/EdinburghDSSD/macros/run1e5.mac
@@ -0,0 +1 @@
+/run/beamOn 100000
diff --git a/Projects/EdinburghDSSD/macros/run1e6.mac b/Projects/EdinburghDSSD/macros/run1e6.mac
new file mode 100644
index 0000000000000000000000000000000000000000..325d88eef6b6df38e8ffac1d8fc402ccc816dc69
--- /dev/null
+++ b/Projects/EdinburghDSSD/macros/run1e6.mac
@@ -0,0 +1 @@
+/run/beamOn 1000000
diff --git a/Projects/EdinburghDSSD/macros/run1e7.mac b/Projects/EdinburghDSSD/macros/run1e7.mac
new file mode 100644
index 0000000000000000000000000000000000000000..d9502085bfe4544342ddc937bcdbca74211c96f2
--- /dev/null
+++ b/Projects/EdinburghDSSD/macros/run1e7.mac
@@ -0,0 +1 @@
+/run/beamOn 10000000
diff --git a/Projects/EdinburghDSSD/macros/run2e4.mac b/Projects/EdinburghDSSD/macros/run2e4.mac
new file mode 100644
index 0000000000000000000000000000000000000000..cbe3ae6ca790ac7ae40a97a7410c435f1ef05d76
--- /dev/null
+++ b/Projects/EdinburghDSSD/macros/run2e4.mac
@@ -0,0 +1 @@
+/run/beamOn 20000
diff --git a/Projects/EdinburghDSSD/macros/run2e5.mac b/Projects/EdinburghDSSD/macros/run2e5.mac
new file mode 100644
index 0000000000000000000000000000000000000000..725b1a1474e45e0d0a345a4e6f37529dae4c4330
--- /dev/null
+++ b/Projects/EdinburghDSSD/macros/run2e5.mac
@@ -0,0 +1 @@
+/run/beamOn 200000
diff --git a/Projects/EdinburghDSSD/macros/run2e6.mac b/Projects/EdinburghDSSD/macros/run2e6.mac
new file mode 100644
index 0000000000000000000000000000000000000000..f735c5087cc92a3ea2c1aad6f606843ea2db7c2b
--- /dev/null
+++ b/Projects/EdinburghDSSD/macros/run2e6.mac
@@ -0,0 +1 @@
+/run/beamOn 2000000
diff --git a/Projects/EdinburghDSSD/macros/run2e7.mac b/Projects/EdinburghDSSD/macros/run2e7.mac
new file mode 100644
index 0000000000000000000000000000000000000000..d551bc5f5a54fdb53a0b16ec7f36dc57cbc4f867
--- /dev/null
+++ b/Projects/EdinburghDSSD/macros/run2e7.mac
@@ -0,0 +1 @@
+/run/beamOn 20000000
diff --git a/Projects/EdinburghDSSD/macros/vis.mac b/Projects/EdinburghDSSD/macros/vis.mac
new file mode 100644
index 0000000000000000000000000000000000000000..f8ef74ccd40a3f6b0d5da188f97bb8a63247e169
--- /dev/null
+++ b/Projects/EdinburghDSSD/macros/vis.mac
@@ -0,0 +1,27 @@
+# Enable visualization
+/control/execute vis.mac
+
+# Define visualization settings
+/vis/open OGL
+/vis/scene/create
+/vis/scene/add/volume
+/vis/sceneHandler/attach
+
+# Set the view to look along the y-axis
+/vis/viewer/zoom 1
+/vis/viewer/set/viewpointThetaPhi 90 0
+
+# Set the position of the camera
+/vis/viewer/set/viewpointThetaPhi 0 0
+
+# Set the camera position
+/vis/viewer/set/viewpointXYZ 0 -10 0 m
+
+# Set the camera direction
+/vis/viewer/set/viewpointThetaPhi 90 0 deg
+
+# Update the visualization
+/vis/viewer/update
+
+# Start interactive visualization
+/vis/interact
diff --git a/Projects/EdinburghDSSD/merge_simu.py b/Projects/EdinburghDSSD/merge_simu.py
new file mode 100755
index 0000000000000000000000000000000000000000..f6226b88f5d14b910db7c9b0596f31e3e055527d
--- /dev/null
+++ b/Projects/EdinburghDSSD/merge_simu.py
@@ -0,0 +1,95 @@
+#!/usr/bin/python3
+
+import argparse
+import os
+import subprocess
+
+
+def parse_arguments():
+    parser = argparse.ArgumentParser(description='Modify GSIMerging2.hh based on merge_config.txt and command-line arguments.')
+    parser.add_argument("-F", "--sim_output_file", required=True, help="Name of the simulation output file")
+    parser.add_argument("-D", "--sim_output_dir", required=True, help="Name of the simulation output directory")
+    parser.add_argument("-R", "--change_RunToTreat", required=True, help="1 To change RunToTreat")
+    return parser.parse_args()
+
+def parse_config(config_path):
+    config_vars = {}
+    with open(config_path, 'r') as config_file:
+        for line in config_file:
+            if '=' in line:
+                var, value = line.split('=')
+                config_vars[var.strip()] = value.strip()
+    return config_vars
+
+def modify_header_file(header_path, config_vars, sim_output_dir, sim_output_file):
+    temp_file_path = header_path + '.tmp'
+    with open(header_path, 'r') as header_file, open(temp_file_path, 'w') as temp_file:
+        for line in header_file:
+            modified = False
+            for var, value in config_vars.items():
+                if f'const double {var} ' in line:
+                    temp_file.write(f'const double {var} = {value};  // Modified by merge_simu script\n')
+                    modified = True
+                    break
+            if 'const std::string FileName' in line:
+                print(f'{sim_output_dir}/{sim_output_file}')
+                temp_file.write(f'const std::string FileName = "{sim_output_dir}/{sim_output_file}"; \n')
+                modified = True
+            if not modified:
+                temp_file.write(line)
+    os.replace(temp_file_path, header_path)
+
+def replace_line_in_file(file_path, identifier, new_line):
+    with open(file_path, 'r') as file:
+        lines = file.readlines()
+
+    with open(file_path, 'w') as file:
+        write_next = False
+        for line in lines:
+            if write_next:
+                file.write(new_line + '\n')
+                write_next = False
+            else:
+                file.write(line)
+            if identifier in line:
+                write_next = True
+
+
+def run_root_script(cxx_path):
+    # Path to thisroot.sh (adjust as necessary for your ROOT installation)
+    bash = "~/.bashrc"
+    command = f"cd Scripts && source {bash} && root -l  -q {cxx_path}++"
+
+    try:
+        # Execute the command in bash to allow 'source' to work
+        subprocess.run(command, shell=True, executable="/bin/bash", check=True)
+        print("ROOT script executed successfully.")
+    except subprocess.CalledProcessError as e :
+        print(f"Failed to execute ROOT script: {e}")
+
+
+def main():
+    args = parse_arguments()
+
+
+    nptool_path = os.getenv('NPTOOL')
+    sim_dir = nptool_path + "/Outputs/Simulation/GSI"
+    config_path ="DataConfig/merge_config.txt"
+    header_path ="Scripts/GSIMerging3.hh"
+    cxx_path = "GSIMerging3.cc"
+
+    config_vars = parse_config(config_path)
+    modify_header_file(header_path, config_vars, sim_dir+'/'+args.sim_output_dir, args.sim_output_file)
+    run_root_script(cxx_path)
+
+    sim_dir = sim_dir+'/'+args.sim_output_dir
+    sim_file = args.sim_output_file
+    if args.change_RunToTreat :
+        new_path = f"{sim_dir}/{sim_file}_EDIN_tau" + str(config_vars['coinc_time'])
+        new_path += "_T" +str(config_vars['t_max']) + "_TADC" + str(config_vars['T_ADC']) + ".root"
+
+        replace_line_in_file('RunToTreat.txt', 'RootFileName', f'\t{new_path}')
+        replace_line_in_file('RunToTreat.txt', 'TTreeName', '\tSimulatedTree')
+
+if __name__ == "__main__":
+    main()
diff --git a/Projects/EdinburghDSSD/modify_run_to_treat.py b/Projects/EdinburghDSSD/modify_run_to_treat.py
new file mode 100755
index 0000000000000000000000000000000000000000..7c06ae2320282c2573073213e0aba77a48d4c28d
--- /dev/null
+++ b/Projects/EdinburghDSSD/modify_run_to_treat.py
@@ -0,0 +1,48 @@
+#!/usr/bin/python3
+import argparse
+import os
+import subprocess
+
+
+def parse_arguments():
+    parser = argparse.ArgumentParser(description='Modify GSIMerging2.hh based on merge_config.txt and command-line arguments.')
+    parser.add_argument("-F", "--sim_output_file", required=True, help="Name of the simulation output file")
+    parser.add_argument("-D", "--sim_output_dir", required=True, help="Name of the simulation output directory")
+    return parser.parse_args()
+
+def replace_line_in_file(file_path, identifier, new_line):
+    with open(file_path, 'r') as file:
+        lines = file.readlines()
+
+    with open(file_path, 'w') as file:
+        write_next = False
+        for line in lines:
+            if write_next:
+                file.write(new_line + '\n')
+                write_next = False
+            else:
+                file.write(line)
+            if identifier in line:
+                write_next = True
+
+
+
+def main():
+    args = parse_arguments()
+
+
+    nptool_path = os.getenv('NPTOOL')
+    sim_dir = nptool_path + "/Outputs/Simulation/GSI"
+    config_path ="configs/merge_config.txt"
+    header_path ="Scripts/GSIMerging3.hh"
+    cxx_path = "GSIMerging3.cc"
+
+    sim_dir = sim_dir+'/'+args.sim_output_dir
+    sim_file = args.sim_output_file
+    new_path = f"{sim_dir}/{sim_file}.root"
+    replace_line_in_file('RunToTreat.txt', 'RootFileName', f'\t{new_path}')
+    replace_line_in_file('RunToTreat.txt', 'TTreeName', '\tSimulatedTree')
+
+
+if __name__ == "__main__":
+    main()
diff --git a/Projects/EdinburghDSSD/multithread_simu.sh b/Projects/EdinburghDSSD/multithread_simu.sh
new file mode 100755
index 0000000000000000000000000000000000000000..6bf4e11795ebe46697cda9d21fcfa685a607dffe
--- /dev/null
+++ b/Projects/EdinburghDSSD/multithread_simu.sh
@@ -0,0 +1,92 @@
+#!/usr/bin/bash
+
+# -F is for name of the output file
+# -O is for name of the output directory
+
+
+nptool_path=$NPTOOL
+SIM_DIR="${NPTOOL}/Outputs/Simulation/GSI"
+OUTPUT_DIR="default"
+OUTPUT_FILE="output"
+
+MACRO="macros/run1e4.mac"
+NSIMU=4
+
+DETECTOR_CONFIG="DetectorConfiguration/EdinburghDSSD.detector"
+EVENT_SOURCE="Beam/alpha7_5.source"
+
+# Process command-line options
+while getopts "F:D:B:E:N:" opt; do
+  case $opt in
+    F) OUTPUT_FILE="$OPTARG"
+    ;;
+    D) OUTPUT_DIR="$OPTARG"
+    ;;
+    B) MACRO="macros/${OPTARG}.mac"  # Set MACRO based on the provided argument
+    ;;
+    E) EVENT_SOURCE="Beam/$OPTARG"  # Set MACRO based on the provided argument
+    ;;
+    N) NSIMU=$OPTARG  # Set MACRO based on the provided argument
+    ;;
+    \?) echo "Invalid option -$OPTARG" >&2
+    ;;
+  esac
+done
+
+# Ensure the output directory exists
+if [ ! -d "$SIM_DIR/$OUTPUT_DIR" ]; then
+    mkdir -p "$SIM_DIR/$OUTPUT_DIR"
+fi
+
+# Array to store the paths of all the output files
+output_files=()
+for i in $(seq 1 $NSIMU)
+do
+  FILE="${OUTPUT_FILE}_${i}"  # Fixed concatenation for output file name
+  output_files+=("$SIM_DIR/$OUTPUT_DIR/$FILE.root")
+done
+
+#Check if output file does not exist already
+final_output_file="$SIM_DIR/$OUTPUT_DIR/${OUTPUT_FILE}.root"
+if [ -f "$final_output_file" ]; then
+    # File exists, prompt the user
+    echo "$final_output_file exists."
+    read -p "Do you want to remove all existing output files in the directory and proceed? (y/n): " -r
+    echo    # Move to a new line
+    if [[ $REPLY =~ ^[Yy]$ ]]; then
+        # User chose to overwrite, so remove the files
+        echo "Removing existing output files..."
+        for file in "${output_files[@]}"; do
+            rm -f "$file"
+        done
+        rm -f "$final_output_file"
+        echo "Removed existing files. Proceeding with the simulation..."
+    else
+        # User chose not to overwrite, exit the script
+        echo "Not overwriting the files. Exiting."
+        exit 1
+    fi
+fi
+
+
+# Run several simulations
+for i in $(seq 1 $NSIMU)
+do
+    let "rdm_seed=i*61"
+
+    FILE="${OUTPUT_FILE}_${i}"  # Fixed concatenation for output file name
+    if [ $i -eq $NSIMU ]; then
+      npsimulation -D "$DETECTOR_CONFIG" -E "$EVENT_SOURCE" -O "GSI/$OUTPUT_DIR/$FILE" -B "$MACRO" --random-seed $rdm_seed
+    else
+      nohup npsimulation -D "$DETECTOR_CONFIG" -E "$EVENT_SOURCE" -O "GSI/$OUTPUT_DIR/$FILE" -B "$MACRO" --random-seed $rdm_seed &
+      pids+=($!)
+    fi
+done
+
+#echo "${output_files[@]}"
+for pid in ${pids[@]}; do
+    wait $pid
+done
+
+hadd "$SIM_DIR/$OUTPUT_DIR/${OUTPUT_FILE}.root" "${output_files[@]}"
+rm "${output_files[@]}"
diff --git a/Projects/EdinburghDSSD/routine.sh b/Projects/EdinburghDSSD/routine.sh
new file mode 100755
index 0000000000000000000000000000000000000000..128998e6eb682214efdc6e1a3e303472545e4929
--- /dev/null
+++ b/Projects/EdinburghDSSD/routine.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+DIR="full_beam"
+SIM_FILE="test_04_06__sigma5keV"
+PHYS_FILE="$SIM_FILE"_physics
+MACRO="run1e5"
+NSIMU=5
+EVENT_SOURCE="Ra224.beam"
+CHANGE_RUN_TO_TREAT=1
+
+#npcompilation -a
+#./multithread_simu.sh -D "$DIR" -F "$SIM_FILE" -B "$MACRO" -E "$EVENT_SOURCE" -N "$NSIMU"
+#./clean.py -SD "$DIR" -SF "$SIM_FILE" -AD "$DIR" -AF "$PHYS_FILE"
+#./merge_simu.py -D "$DIR/$SIM_FILE" -F "$SIM_FILE" -R "$CHANGE_RUN_TO_TREAT"
+#./modify_run_to_treat.py  -D "$DIR/$SIM_FILE" -F "$SIM_FILE"
+./analyse_simu.py -ID "$DIR" -IF "$SIM_FILE" -OF "$PHYS_FILE"
+./sanity_check.py -D "$DIR" -F "$PHYS_FILE"
+./clean.py -SD "$DIR" -SF "$SIM_FILE" -AD "$DIR" -AF "$PHYS_FILE"
+#clear
diff --git a/Projects/EdinburghDSSD/sanity_check.py b/Projects/EdinburghDSSD/sanity_check.py
new file mode 100755
index 0000000000000000000000000000000000000000..b44c948c8b6302e57bbf0b3af62ea7211c88bdb9
--- /dev/null
+++ b/Projects/EdinburghDSSD/sanity_check.py
@@ -0,0 +1,68 @@
+#!/usr/bin/python3
+
+import argparse
+import os
+import subprocess
+
+def parse_arguments():
+    parser = argparse.ArgumentParser(description='Update SanityCheckV2.cxx with new configuration.')
+    parser.add_argument("-F", "--phys_file", required=True, help="Name of the physics input file")
+    parser.add_argument("-D", "--phys_dir", required=True, help="Name of the physcs input directory")
+    return parser.parse_args()
+
+def parse_config(config_path):
+    config_vars = {}
+    with open(config_path, 'r') as config_file:
+        for line in config_file:
+            if '=' in line:
+                var, value = line.split('=')
+                config_vars[var.strip()] = value.strip()
+    return config_vars
+
+def modify_cxx_file(cxx_path, config_vars, phys_dir, phys_file):
+    input_file_name = f"{phys_dir}/{phys_file}.root"
+    output_file_name = f"{phys_dir}/histoSanity_{phys_file}.root"
+
+    with open(cxx_path, 'r') as file:
+        lines = file.readlines()
+
+    with open(cxx_path, 'w') as file:
+        for line in lines:
+            if 'config.inputFileName =' in line:
+                file.write(f'    config.inputFileName = "{input_file_name}";\n')
+            elif 'config.outputFileName =' in line:
+                file.write(f'    config.outputFileName = "{output_file_name}";\n')
+            elif 'config.tau =' in line:
+                file.write(f'    config.tau = {config_vars["coinc_time"]};\n')
+            elif 'config.T =' in line:
+                file.write(f'    config.T = {config_vars["t_max"]};\n')
+            else:
+                file.write(line)
+
+def run_root_script(cxx_path):
+    # Path to thisroot.sh (adjust as necessary for your ROOT installation)
+    bash = "~/.bashrc"
+    command = f"source {bash} && root -l -b -q {cxx_path}"
+
+    try:
+        # Execute the command in bash to allow 'source' to work
+        subprocess.run(command, shell=True, executable="/bin/bash", check=True)
+        print("ROOT script executed successfully.")
+    except subprocess.CalledProcessError as e:
+        print(f"Failed to execute ROOT script: {e}")
+
+
+def main():
+    args = parse_arguments()
+    nptool_path = os.getenv('NPTOOL')
+    ana_dir = nptool_path + "/Outputs/Analysis/Simu/GSI/"
+    config_path = "DataConfig/merge_config.txt"
+    cxx_path = "Scripts/SanityCheckV2.cxx"
+
+    config_vars = parse_config(config_path)
+    modify_cxx_file(cxx_path, config_vars, ana_dir+args.phys_dir, args.phys_file)
+
+    run_root_script(cxx_path)
+
+if __name__ == "__main__":
+    main()
diff --git a/Projects/EdinburghDSSD/single_simu.sh b/Projects/EdinburghDSSD/single_simu.sh
new file mode 100755
index 0000000000000000000000000000000000000000..15b08660b85cbe6f4fdea4b72a687d5cfc9e2a38
--- /dev/null
+++ b/Projects/EdinburghDSSD/single_simu.sh
@@ -0,0 +1,16 @@
+#!/usr/bin/bash
+
+# Define the paths and options
+DETECTOR_CONFIG="DetectorConfiguration/EdinburghDSSD.detector"
+EVENT_SOURCE="Beam/Ra224.beam"
+OUTPUT_DIR="E2ADC_bigstat"
+MACRO="macros/run.mac"
+
+# Check if the npanalysis command is available
+if command -v npanalysis &> /dev/null; then
+  # Execute the npanalysis command
+  npsimulation -D "$DETECTOR_CONFIG" -E "$EVENT_SOURCE" -O "$OUTPUT_DIR" -B "$MACRO"
+else
+  echo "Error: npsimulation command not found. Make sure it's installed and in your PATH."
+  exit 1
+fi
diff --git a/Projects/Inelastic/RunToTreat.txt b/Projects/Inelastic/RunToTreat.txt
index 2a165eaafa002675ea5d8bfb5f9f9b6ca95de8dc..1ad4fdee63c263faa0fb252bd2361ed0c04b33ae 100644
--- a/Projects/Inelastic/RunToTreat.txt
+++ b/Projects/Inelastic/RunToTreat.txt
@@ -1,5 +1,4 @@
 TTreeName
   SimulatedTree
 RootFileName
-  ../../Outputs/Simulation/vendeta_el_*.root 
-  ../../Outputs/Simulation/vendeta_1st_inel_*.root 
+  ./root/simulation/neutron_56Fe_gs.root 
diff --git a/Projects/Inelastic/Vendeta_inelastic.detector b/Projects/Inelastic/Vendeta_inelastic.detector
index a28b4cb0c31fd35cfaf40d48dfee78b0ce984a6e..1cf7a74c1b207d03ecf0a8b3b6a94a00aecdb252 100644
--- a/Projects/Inelastic/Vendeta_inelastic.detector
+++ b/Projects/Inelastic/Vendeta_inelastic.detector
@@ -2,458 +2,83 @@
 Target 
   THICKNESS= 10 micrometer
   RADIUS= 20 mm
-  MATERIAL= 238U 
+  MATERIAL= Fe 
   ANGLE= 0 deg 
   X= 0 mm 
   Y= 0 mm 
   Z= 0 mm 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 Vendeta
-  R= 2500 mm
+  R= 2000 mm
   THETA= 20 deg
   PHI= 0 deg
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 Vendeta
-  R= 2500 mm
+  R= 2000 mm
   THETA= 30 deg
   PHI= 0 deg
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 Vendeta
-  R= 2500 mm
+  R= 2000 mm
   THETA= 40 deg
   PHI= 0 deg
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 Vendeta
-  R= 2500 mm
+  R= 2000 mm
   THETA= 50 deg
   PHI= 0 deg
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 Vendeta
-  R= 2500 mm
+  R= 2000 mm
   THETA= 60 deg
   PHI= 0 deg
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 Vendeta
-  R= 2500 mm
+  R= 2000 mm
   THETA= 70 deg
   PHI= 0 deg
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 Vendeta
-  R= 2500 mm
+  R= 2000 mm
   THETA= 80 deg
   PHI= 0 deg
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 Vendeta
-  R= 2500 mm
+  R= 2000 mm
   THETA= 90 deg
   PHI= 0 deg
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 Vendeta
-  R= 2500 mm
+  R= 2000 mm
   THETA= 100 deg
   PHI= 0 deg
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 Vendeta
-  R= 2500 mm
+  R= 2000 mm
   THETA= 110 deg
   PHI= 0 deg
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 Vendeta
-  R= 2500 mm
+  R= 2000 mm
   THETA= 120 deg
   PHI= 0 deg
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 Vendeta
-  R= 2500 mm
+  R= 2000 mm
   THETA= 130 deg
   PHI= 0 deg
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 Vendeta
-  R= 2500 mm
+  R= 2000 mm
   THETA= 140 deg
   PHI= 0 deg
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 Vendeta
-  R= 2500 mm
+  R= 2000 mm
   THETA= 150 deg
   PHI= 0 deg
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 Vendeta
-  R= 2500 mm
+  R= 2000 mm
   THETA= 160 deg
   PHI= 0 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 20 deg
-  PHI= 20 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 30 deg
-  PHI= 20 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 40 deg
-  PHI= 20 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 50 deg
-  PHI= 20 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 60 deg
-  PHI= 20 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 70 deg
-  PHI= 20 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 80 deg
-  PHI= 20 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 90 deg
-  PHI= 20 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 100 deg
-  PHI= 20 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 110 deg
-  PHI= 20 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 120 deg
-  PHI= 20 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 130 deg
-  PHI= 20 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 140 deg
-  PHI= 20 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 150 deg
-  PHI= 20 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 160 deg
-  PHI= 20 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 20 deg
-  PHI= 40 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 30 deg
-  PHI= 40 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 40 deg
-  PHI= 40 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 50 deg
-  PHI= 40 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 60 deg
-  PHI= 40 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 70 deg
-  PHI= 40 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 80 deg
-  PHI= 40 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 90 deg
-  PHI= 40 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 100 deg
-  PHI= 40 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 110 deg
-  PHI= 40 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 120 deg
-  PHI= 40 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 130 deg
-  PHI= 40 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 140 deg
-  PHI= 40 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 150 deg
-  PHI= 40 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 160 deg
-  PHI= 40 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 20 deg
-  PHI= 140 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 30 deg
-  PHI= 140 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 40 deg
-  PHI= 140 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 50 deg
-  PHI= 140 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 60 deg
-  PHI= 140 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 70 deg
-  PHI= 140 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 80 deg
-  PHI= 140 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 90 deg
-  PHI= 140 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 100 deg
-  PHI= 140 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 110 deg
-  PHI= 140 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 120 deg
-  PHI= 140 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 130 deg
-  PHI= 140 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 140 deg
-  PHI= 140 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 150 deg
-  PHI= 140 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 160 deg
-  PHI= 140 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 20 deg
-  PHI= 160 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 30 deg
-  PHI= 160 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 40 deg
-  PHI= 160 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 50 deg
-  PHI= 160 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 60 deg
-  PHI= 160 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 70 deg
-  PHI= 160 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 80 deg
-  PHI= 160 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 90 deg
-  PHI= 160 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 100 deg
-  PHI= 160 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 110 deg
-  PHI= 160 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 120 deg
-  PHI= 160 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 130 deg
-  PHI= 160 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 140 deg
-  PHI= 160 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 150 deg
-  PHI= 160 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 160 deg
-  PHI= 160 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 20 deg
-  PHI= 180 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 30 deg
-  PHI= 180 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 40 deg
-  PHI= 180 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 50 deg
-  PHI= 180 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 60 deg
-  PHI= 180 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 70 deg
-  PHI= 180 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 80 deg
-  PHI= 180 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 90 deg
-  PHI= 180 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 100 deg
-  PHI= 180 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 110 deg
-  PHI= 180 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 120 deg
-  PHI= 180 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 130 deg
-  PHI= 180 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 140 deg
-  PHI= 180 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 150 deg
-  PHI= 180 deg
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-Vendeta
-  R= 2500 mm
-  THETA= 160 deg
-  PHI= 180 deg
diff --git a/Projects/Inelastic/macro/CheckKinematics.C b/Projects/Inelastic/macro/CheckKinematics.C
new file mode 100644
index 0000000000000000000000000000000000000000..09c5612cf441eb497615c9d574d734f0c2edf42b
--- /dev/null
+++ b/Projects/Inelastic/macro/CheckKinematics.C
@@ -0,0 +1,41 @@
+TRandom3 ra;
+
+void CheckKinematics(){
+
+  TFile* ofile = new TFile("kine.root","recreate");
+
+  NPL::Reaction* r1 = new NPL::Reaction("7Li(p,1n)7Be@13.95");
+
+  double beam_energy_init = r1->GetBeamEnergy();
+  double eloss = 0.070;
+  
+  double beam_energy;
+  double ThetaCM;
+  double E3, Theta3, E4, Theta4;
+  TTree* tree = new TTree("KineTree","KineTree");
+  tree->Branch("beam_energy",&beam_energy,"beam_energy/D");
+  tree->Branch("ThetaCM",&ThetaCM,"ThetaCM/D");
+  tree->Branch("E3",&E3,"E3/D");
+  tree->Branch("Theta3",&Theta3,"Theta3/D");
+  tree->Branch("E4",&E4,"E4/D");
+  tree->Branch("Theta4",&Theta4,"Theta4/D");
+
+
+  for(int i=0; i<1e6; i++){
+    beam_energy = ra.Uniform(beam_energy_init - eloss, beam_energy_init);
+
+    ThetaCM = ra.Uniform(0,180);
+    r1->SetThetaCM(ThetaCM*deg);
+    r1->SetBeamEnergy(beam_energy);
+    r1->KineRelativistic(Theta3,E3,Theta4,E4);
+
+    Theta3 = Theta3/deg;
+    Theta4 = Theta4/deg;
+    
+    tree->Fill();
+  }
+
+  tree->Write();
+
+  ofile->Close();
+}
diff --git a/Projects/Inelastic/macro/DirectKinematics.C b/Projects/Inelastic/macro/DirectKinematics.C
new file mode 100644
index 0000000000000000000000000000000000000000..a8d33489ffcdede6b2ccc68079f8e6b8c04b532f
--- /dev/null
+++ b/Projects/Inelastic/macro/DirectKinematics.C
@@ -0,0 +1,52 @@
+TRandom3 ra;
+double density_7Li = 0.534; // g/cm3
+///////////////////////////////////////////////////
+void DirectKinematics(double thickness_mg_cm2 = 0.3){
+
+  NPL::EnergyLoss* p7Li_loss;
+  p7Li_loss = new NPL::EnergyLoss("../EnergyLossTable/proton_7Li.G4table","G4Table",100);
+
+  TFile* ofile = new TFile("direct_kine.root","recreate");
+
+  NPL::Reaction* r1 = new NPL::Reaction("p(7Li,1n)7Be@2.8");
+
+  double thickness_micrometer;
+  thickness_micrometer = thickness_mg_cm2/(density_7Li*1e3)*1e4;
+  cout << thickness_mg_cm2 << " mg/cm2 -> " << thickness_micrometer << " um" << endl;
+
+  double beam_energy_init = r1->GetBeamEnergy();
+  double eloss;
+  eloss = p7Li_loss->EnergyLossCalculation(beam_energy_init,thickness_micrometer*micrometer,0);
+
+  cout << "Energy Loss = " << eloss << " MeV" << endl;
+
+  double beam_energy;
+  double ThetaCM;
+  double E3, Theta3, E4, Theta4;
+  TTree* tree = new TTree("KineTree","KineTree");
+  tree->Branch("beam_energy",&beam_energy,"beam_energy/D");
+  tree->Branch("ThetaCM",&ThetaCM,"ThetaCM/D");
+  tree->Branch("E3",&E3,"E3/D");
+  tree->Branch("Theta3",&Theta3,"Theta3/D");
+  tree->Branch("E4",&E4,"E4/D");
+  tree->Branch("Theta4",&Theta4,"Theta4/D");
+
+
+  for(int i=0; i<1e6; i++){
+    beam_energy = ra.Uniform(beam_energy_init - eloss, beam_energy_init);
+
+    ThetaCM = ra.Uniform(0,180);
+    r1->SetThetaCM(ThetaCM*deg);
+    r1->SetBeamEnergy(beam_energy);
+    r1->KineRelativistic(Theta3,E3,Theta4,E4);
+
+    Theta3 = Theta3/deg;
+    Theta4 = Theta4/deg;
+
+    tree->Fill();
+  }
+
+  tree->Write();
+
+  ofile->Close();
+}
diff --git a/Projects/Inelastic/neutron_inelastic.reaction b/Projects/Inelastic/neutron_inelastic.reaction
new file mode 100644
index 0000000000000000000000000000000000000000..66ecd1606323e1b52941d20874eca7b3a2da806f
--- /dev/null
+++ b/Projects/Inelastic/neutron_inelastic.reaction
@@ -0,0 +1,28 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%% Reaction file for 11Li(d,3He)10He reaction %%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Beam
+ Particle= 1n
+ Energy= 1.1 MeV
+ SigmaEnergy= 0.016 MeV
+ SigmaThetaX= 0. deg
+ SigmaPhiY= 0. deg
+ SigmaX= 0 mm
+ SigmaY= 0 mm
+ MeanThetaX= 0 deg
+ MeanPhiY= 0 deg
+ MeanX= 0 mm
+ MeanY= 0 mm
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+TwoBodyReaction
+ Beam= 1n
+ Target= 56Fe
+ Light= 1n
+ Heavy= 56Fe
+ ExcitationEnergy3= 0.0 MeV
+ ExcitationEnergy4= 0.0 MeV
+ CrossSectionPath= flat.txt CS10He
+ ShootLight= 1
+ ShootHeavy= 1
+  
diff --git a/Projects/Inelastic/project.config b/Projects/Inelastic/project.config
new file mode 100644
index 0000000000000000000000000000000000000000..c19d2a29e602f4c6a6e78f6e87a02866c785ff81
--- /dev/null
+++ b/Projects/Inelastic/project.config
@@ -0,0 +1,5 @@
+Project e850
+ AnalysisOutput= ./root/analysis 
+ SimulationOutput= ./root/simulation
+ EnergyLoss= ./EnergyLossTable
+   
diff --git a/Projects/MUSETT/.DS_Store b/Projects/MUSETT/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..4035175be9fff74688b059174650b766614c4861
Binary files /dev/null and b/Projects/MUSETT/.DS_Store differ
diff --git a/Projects/MUSETT/Beam/Ac222.beam b/Projects/MUSETT/Beam/Ac222.beam
new file mode 100644
index 0000000000000000000000000000000000000000..a58b5ef66943c4740c782e958257bc8fd318ad3d
--- /dev/null
+++ b/Projects/MUSETT/Beam/Ac222.beam
@@ -0,0 +1,19 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%      Energy are given in MeV , Position in mm      %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Isotropic
+ EnergyLow=  0.03
+ EnergyHigh= 0.03
+ HalfOpenAngleMin= 0
+ HalfOpenAngleMax= 0
+ x0= -6.0
+ y0= -150.0
+ z0= 0
+ sigmaX = 0.20
+ sigmaY = 0.20
+ particle= 222Ac
+ direction = y
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Supported particle type: proton, neutron, deuton, triton, He3 , alpha
diff --git a/Projects/MUSETT/Beam/Pb212.beam b/Projects/MUSETT/Beam/Pb212.beam
new file mode 100644
index 0000000000000000000000000000000000000000..858bcbc01861477e10d4c0bfc18182212d8981ca
--- /dev/null
+++ b/Projects/MUSETT/Beam/Pb212.beam
@@ -0,0 +1,19 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%      Energy are given in MeV , Position in mm      %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Isotropic
+ EnergyLow=  0.03
+ EnergyHigh= 0.03
+ HalfOpenAngleMin= 0
+ HalfOpenAngleMax= 0
+ x0= -6.0
+ y0= -150.0
+ z0= 0
+ sigmaX = 0.20
+ sigmaY = 0.20
+ particle= 212Pb
+ direction = y
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Supported particle type: proton, neutron, deuton, triton, He3 , alpha
diff --git a/Projects/MUSETT/Beam/Ra220.beam b/Projects/MUSETT/Beam/Ra220.beam
new file mode 100644
index 0000000000000000000000000000000000000000..d7c3bc4398bd40a5f2133bb803c428cd34aaf2b9
--- /dev/null
+++ b/Projects/MUSETT/Beam/Ra220.beam
@@ -0,0 +1,19 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%      Energy are given in MeV , Position in mm      %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Isotropic
+ EnergyLow=  0.05
+ EnergyHigh= 0.05
+ HalfOpenAngleMin= 0
+ HalfOpenAngleMax= 0
+ x0= 0
+ y0= -100
+ z0= 0
+ sigmaX = 0
+ sigmaY = 0
+ particle= 220Ra
+ direction = y
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Supported particle type: proton, neutron, deuton, triton, He3 , alpha
diff --git a/Projects/MUSETT/Beam/Ra220.source b/Projects/MUSETT/Beam/Ra220.source
new file mode 100644
index 0000000000000000000000000000000000000000..5cd32d56dca8ea0a0a9fb592688ed42bbf9fb399
--- /dev/null
+++ b/Projects/MUSETT/Beam/Ra220.source
@@ -0,0 +1,18 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%      Energy are given in MeV , Position in mm      %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Isotropic
+ EnergyLow=  0.0
+ EnergyHigh= 0.0
+ HalfOpenAngleMin= 0
+ HalfOpenAngleMax= 0
+ x0= 0
+ y0= 0
+ z0= 0
+ sigmaX = 0
+ sigmaY = 0
+ particle= 220Ra
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Supported particle type: proton, neutron, deuton, triton, He3 , alpha
diff --git a/Projects/MUSETT/Beam/Ra221.beam b/Projects/MUSETT/Beam/Ra221.beam
new file mode 100644
index 0000000000000000000000000000000000000000..9dd016af75b9ede5a79270d9f7bd01558cd87de8
--- /dev/null
+++ b/Projects/MUSETT/Beam/Ra221.beam
@@ -0,0 +1,19 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%      Energy are given in MeV , Position in mm      %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Isotropic
+ EnergyLow=  0.03
+ EnergyHigh= 0.03
+ HalfOpenAngleMin= 0
+ HalfOpenAngleMax= 0
+ x0= -6.0
+ y0= -150.0
+ z0= 0
+ sigmaX = 0.20
+ sigmaY = 0.20
+ particle= 221Ra
+ direction = y
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Supported particle type: proton, neutron, deuton, triton, He3 , alpha
diff --git a/Projects/MUSETT/Beam/Ra222.beam b/Projects/MUSETT/Beam/Ra222.beam
new file mode 100644
index 0000000000000000000000000000000000000000..3b0569f9cbab76cdd5f2260f4d8b05f69b0ae025
--- /dev/null
+++ b/Projects/MUSETT/Beam/Ra222.beam
@@ -0,0 +1,20 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%      Energy are given in MeV , Position in mm      %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Isotropic
+ EnergyLow = 0.0300
+ EnergyHigh = 0.0300
+ HalfOpenAngleMin= 180
+ HalfOpenAngleMax= 180
+ x0= -6.0
+ y0= -150.0
+ z0= 0
+ sigmaX = 0.00
+ sigmaY = 0.20
+ sigmaZ = 0.20
+ particle= 222Ra
+ direction = x
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Supported particle type: proton, neutron, deuton, triton, He3 , alpha
diff --git a/Projects/MUSETT/Beam/Ra224.beam b/Projects/MUSETT/Beam/Ra224.beam
new file mode 100644
index 0000000000000000000000000000000000000000..a2837f3570bae6e05771d32f5a4f4c7bcf9271a5
--- /dev/null
+++ b/Projects/MUSETT/Beam/Ra224.beam
@@ -0,0 +1,19 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%      Energy are given in MeV , Position in mm      %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Isotropic
+ EnergyLow=  0.05
+ EnergyHigh= 0.05
+ HalfOpenAngleMin= 0
+ HalfOpenAngleMax= 0
+ x0= 0
+ y0= -100
+ z0= 0
+ sigmaX = 0
+ sigmaY = 0
+ particle= 224Ra
+ direction = y
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Supported particle type: proton, neutron, deuton, triton, He3 , alpha
diff --git a/Projects/MUSETT/Beam/alpha5_5.source b/Projects/MUSETT/Beam/alpha5_5.source
new file mode 100644
index 0000000000000000000000000000000000000000..4a5d2ca340d12989d28c9989d46cd1cf547f2f8f
--- /dev/null
+++ b/Projects/MUSETT/Beam/alpha5_5.source
@@ -0,0 +1,18 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%      Energy are given in MeV , Position in mm      %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Isotropic
+ EnergyLow=  5.5
+ EnergyHigh= 5.5
+ HalfOpenAngleMin= 0
+ HalfOpenAngleMax= 180
+ x0= 0
+ y0= 0
+ z0= 0
+ sigmaX = 0
+ sigmaY = 0
+ particle= alpha
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Supported particle type: proton, neutron, deuton, triton, He3 , alpha
diff --git a/Projects/MUSETT/Beam/alpha7_5.source b/Projects/MUSETT/Beam/alpha7_5.source
new file mode 100644
index 0000000000000000000000000000000000000000..e0d2041ed9bf38de54357353ce2cd731625890e5
--- /dev/null
+++ b/Projects/MUSETT/Beam/alpha7_5.source
@@ -0,0 +1,18 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%      Energy are given in MeV , Position in mm      %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Isotropic
+ EnergyLow=  7.5
+ EnergyHigh= 7.5
+ HalfOpenAngleMin= 0
+ HalfOpenAngleMax= 180
+ x0= 0
+ y0= 0
+ z0= 0
+ sigmaX = 0
+ sigmaY = 0
+ particle= alpha
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Supported particle type: proton, neutron, deuton, triton, He3 , alpha
diff --git a/Projects/MUSETT/Beam/alpha_222Ra.source b/Projects/MUSETT/Beam/alpha_222Ra.source
new file mode 100644
index 0000000000000000000000000000000000000000..31c05cd31d712deda08422275f209de9923b76d8
--- /dev/null
+++ b/Projects/MUSETT/Beam/alpha_222Ra.source
@@ -0,0 +1,18 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%      Energy are given in MeV , Position in mm      %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Isotropic
+ EnergyLow = 6.5580
+ EnergyHigh = 6.5580
+ HalfOpenAngleMin= 0
+ HalfOpenAngleMax= 180
+ x0= -6.0
+ y0= -150.0
+ z0= 0
+ sigmaX = 0.20
+ sigmaY = 0.20
+ particle= alpha
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Supported particle type: proton, neutron, deuton, triton, He3 , alpha
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/.DS_Store b/Projects/MUSETT/DetectorConfiguration/Check/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/.DS_Store differ
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/PlotGeometry_Y1.pdf b/Projects/MUSETT/DetectorConfiguration/Check/PlotGeometry_Y1.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..3b53b742410bfe327b2e88757bff32a98e3e2146
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/PlotGeometry_Y1.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/PlotGeometry_Y128.pdf b/Projects/MUSETT/DetectorConfiguration/Check/PlotGeometry_Y128.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..2ee86ed355402f39c791b39c2efd415cf61e72dc
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/PlotGeometry_Y128.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/PlotGeometry_Y128_shift_target.pdf b/Projects/MUSETT/DetectorConfiguration/Check/PlotGeometry_Y128_shift_target.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c6e524e1d7b9b5fbddbd074beb7844d1f25daeb9
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/PlotGeometry_Y128_shift_target.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/PlotTarget_Y1.pdf b/Projects/MUSETT/DetectorConfiguration/Check/PlotTarget_Y1.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..23ef66a420ab5a6fc0867ac892c7d9893b4a8c3d
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/PlotTarget_Y1.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/PlotTarget_Y128.pdf b/Projects/MUSETT/DetectorConfiguration/Check/PlotTarget_Y128.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..f9720f72f5f67318d8e6d93e7ac0592d5f5569ac
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/PlotTarget_Y128.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/calcul.py b/Projects/MUSETT/DetectorConfiguration/Check/calcul.py
new file mode 100644
index 0000000000000000000000000000000000000000..374cf9f0d98281e3bb163f3c257aca163eec51b7
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/Check/calcul.py
@@ -0,0 +1,9 @@
+import numpy as np
+
+alpha = np.array([826304,718893,846485,931718])
+simu = np.array([71419,63738,73674,80446])
+data = np.array([803420,801981,827156,880858])
+
+print('alpha/alpha[0]', alpha/alpha[0])
+print('simu/simu[0]', simu/simu[0])
+print('data/data[0]', data/data[0])
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/delta_max_Det0.pdf b/Projects/MUSETT/DetectorConfiguration/Check/delta_max_Det0.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..0f2f3ea80cd148f5003df9c6a2aed50a4dcf1d95
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/delta_max_Det0.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/delta_max_Det1.pdf b/Projects/MUSETT/DetectorConfiguration/Check/delta_max_Det1.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..51639ddc58bb48e02e2899980dfc5541f613e63d
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/delta_max_Det1.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/delta_max_Det2.pdf b/Projects/MUSETT/DetectorConfiguration/Check/delta_max_Det2.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..3eb20016f3420ed22ad875cd998be9ce40f27430
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/delta_max_Det2.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/delta_max_Det3.pdf b/Projects/MUSETT/DetectorConfiguration/Check/delta_max_Det3.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..4b25bccce34460757b7df959ac028334851dc7d1
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/delta_max_Det3.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/delta_mean_Det0.pdf b/Projects/MUSETT/DetectorConfiguration/Check/delta_mean_Det0.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e3b907f7fc87b5df0893deb4c9d6ef37d3e588c4
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/delta_mean_Det0.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/delta_mean_Det1.pdf b/Projects/MUSETT/DetectorConfiguration/Check/delta_mean_Det1.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..b5d1ca0b66fa879f890f66911b52c51ff57411a6
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/delta_mean_Det1.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/delta_mean_Det2.pdf b/Projects/MUSETT/DetectorConfiguration/Check/delta_mean_Det2.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..80cbc584e30927119fd7f7e06882e312c6a4a33f
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/delta_mean_Det2.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/delta_mean_Det3.pdf b/Projects/MUSETT/DetectorConfiguration/Check/delta_mean_Det3.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..081856ae719ca5e4ca0bc9a420c60029eb5e9a75
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/delta_mean_Det3.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/find_spot.py b/Projects/MUSETT/DetectorConfiguration/Check/find_spot.py
new file mode 100644
index 0000000000000000000000000000000000000000..2e64e066f79fc83c49f6202bcc3decd6996b89c9
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/Check/find_spot.py
@@ -0,0 +1,232 @@
+import matplotlib.pyplot as plt
+import numpy as np
+
+plt.rcParams.update({'font.size': 18})  # Increase this number for larger text globally
+# Load the data from the file
+
+def load_data(filename):
+    detectors = {}
+    cnt = -1
+    with open(filename, 'r') as file:
+        for line in file:
+            parts = line.strip().split()
+            if len(parts) == 5:
+                # Increment the detector count when 'X1_Y1' is found
+                if "X1_Y1=" in parts[0]:
+                    cnt += 1
+                # Create a tuple key consisting of detector number and point identifier
+                key = (f"DET{cnt}", parts[0][:-1])
+                x, y, z = map(float, parts[1:4])
+                if key in detectors:
+                    detectors[key].append((x, y, z))
+                else:
+                    detectors[key] = [(x, y, z)]
+    return detectors
+
+def qualitative_hit_pattern(detectors, Xsource, Ysource):
+    dist_strips = np.zeros((4,128))
+    ignore_strips = [[10,26,38],[],[104],[22]]
+    #ignore_strips = [[],[],[],[]]
+    for i in range(4):  # Dynamically find the highest DET number
+        start_key = (f"DET{i}", 'X1_Y128')
+        end_key = (f"DET{i}", 'X128_Y128')
+        pos_strips = []
+        min_dist = 100000
+        min_dist_strip = 0
+        mean_strip = 0
+        all_dist_square = 0
+        # Check if both start and end points are present in the dictionary
+        if start_key in detectors and end_key in detectors:
+            start = np.array(detectors[start_key][0][:2])  # X, Y coordinates of the start point
+            end = np.array(detectors[end_key][0][:2])    # X, Y coordinates of the end point
+            center = 0.5*(start+end)
+            for j in range(128):
+                if j not in ignore_strips[i] :
+                    xi = start[0] + j*(end[0]-start[0])/127
+                    yi = start[1] + j*(end[1]-start[1])/127
+                    dist_strips[i][j] = np.sqrt((xi-Xsource)**2 + (yi-Ysource)**2)
+                    mean_strip += j / dist_strips[i][j]**2
+                    all_dist_square += 1/dist_strips[i][j]**2
+                    if(dist_strips[i][j] < min_dist):
+                        min_dist = dist_strips[i][j]
+                        min_dist_strip = j
+            mean_strip *= 1/all_dist_square
+            print("DET", i, ", max strip =", min_dist_strip, ", mean = ", mean_strip )
+
+detectors = load_data('../MUSETT_NPS.detector')
+
+def computeMean(Xsource,Ysource):
+    ignore_strips = [[10,26,38],[],[104],[22]]
+    l_meanstrip = np.zeros(4)
+    l_maxstrip = np.zeros(4)
+    for i in range(4):  # Dynamically find the highest DET number
+        start_key = (f"DET{i}", 'X1_Y128')
+        end_key = (f"DET{i}", 'X128_Y128')
+        mean_strip = 0
+        all_dist_square = 0
+        min_dist = 100000
+        min_dist_stirp = -2
+        # Check if both start and end points are present in the dictionary
+        if start_key in detectors and end_key in detectors:
+            start = np.array(detectors[start_key][0][:2])  # X, Y coordinates of the start point
+            end = np.array(detectors[end_key][0][:2])    # X, Y coordinates of the end point
+            center = 0.5*(start+end)
+            for j in range(128):
+                if j not in ignore_strips[i] :
+                    xj = start[0] + j*(end[0]-start[0])/127
+                    yj = start[1] + j*(end[1]-start[1])/127
+                    dist_j = np.sqrt((xj-Xsource)**2 + (yj-Ysource)**2)
+                    mean_strip += j / dist_j**2
+                    all_dist_square += 1/dist_j**2
+                    if(dist_j < min_dist):
+                        min_dist = dist_j
+                        min_dist_strip = j
+            mean_strip *= 1/all_dist_square
+            l_meanstrip[i] = mean_strip
+            l_maxstrip[i] = min_dist_strip
+    return l_maxstrip
+
+def plot2D():
+    goal = np.array([61.14,64.18,61.84,63.91])
+
+    x_values = np.linspace(-10, 10, 100)
+    y_values = np.linspace(-10, 10, 100)
+    refValue = goal[2]
+
+    X, Y = np.meshgrid(x_values, y_values)
+
+    # Initialize the result array
+    result0 = np.zeros_like(X)
+    result1 = np.zeros_like(X)
+    result2 = np.zeros_like(X)
+    result3 = np.zeros_like(X)
+    l_resul = [result0,result1,result2,result3]
+
+
+    x_size_target = 34
+    y_size_target = 1
+    for i in range(len(x_values)):
+        for j in range(len(y_values)):
+            res = computeMean(X[j, i], Y[j, i])
+            result0[j, i] = res[0] - goal[0]  # Adjust refValue as needed
+            result1[j, i] = res[1] - goal[1]  # Adjust refValue as needed
+            result2[j, i] = res[2] - goal[2]  # Adjust refValue as needed
+            result3[j, i] = res[3] - goal[3]  # Adjust refValue as needed
+
+
+    # Plotting the results
+    levels = np.arange(-20, 20.1, 1)
+    for k in range(4):
+        plt.figure(figsize=(10, 8))
+        cp = plt.contourf(X, Y, l_resul[k], cmap='coolwarm',vmin=-20, vmax=20,levels=levels)
+        #cp = plt.contourf(X, Y, l_resul[k], cmap='coolwarm')
+        #ticks = np.arange(-4, 4.5, 0.5)  # Includes 4.0, steps by 0.5
+
+        # Create colorbar with specified ticks
+        colorbar = plt.colorbar(cp)
+        colorbar.set_label('∆ strip')
+        #plt.colorbar(cp)  # Add a colorbar to a plot
+        #plt.plot(min_x, min_y, 'r*', markersize=15, label='Minimum Value')
+        plt.title(f'Max (geo - Data), DET{k}')
+        #plt.legend()
+        plt.xlabel('X(source) [mm]')
+        plt.ylabel('Y(source) [mm]')
+        #plt.savefig(f"delta_max_Det{k}.pdf")
+        plt.show()
+
+
+
+def plot_config(posTarget,angleTarget, x0Beam):
+    x0 = posTarget[0]
+    y0 = posTarget[1]
+    angleTarget*=-np.pi/180
+    y0Beam = y0 - (x0-x0Beam)*np.tan(angleTarget)
+    print('y0 Beam =', y0Beam )
+    X_dets = 0
+    Y_dets = 0
+    fig, ax = plt.subplots(figsize=(9,9))
+    colors = ['black','red','blue','orange']
+    # Iterate through all possible detector keys assuming the maximum number of detectors
+    for i in range(4):  # Dynamically find the highest DET number
+        start_key = (f"DET{i}", 'X1_Y1')
+        end_key = (f"DET{i}", 'X128_Y1')
+        col = colors[i]
+
+        # Check if both start and end points are present in the dictionary
+        if start_key in detectors and end_key in detectors:
+            start = np.array(detectors[start_key][0][:2])  # X, Y coordinates of the start point
+            end = np.array(detectors[end_key][0][:2])    # X, Y coordinates of the end point
+            start[0]+=X_dets
+            start[1]+=Y_dets
+
+            end[0]+=X_dets
+            end[1]+=Y_dets
+            center = 0.5*(start+end)
+            ax.arrow(start[0], start[1], end[0] - start[0], end[1] - start[1], head_width=2, head_length=3, fc=col, ec=col, linewidth = 2)
+            #if center[0]>0:
+            ax.text(1.25*center[0],1.25*center[1], f'DET{i}', fontsize=18, ha='center', va='bottom', c = col)
+            plt.plot([x0Beam,start[0]],[y0Beam,start[1]],":", c = col, linewidth = 2, zorder = 50)
+            plt.plot([x0Beam,end[0]],[y0Beam,end[1]],":", c = col, linewidth = 2, zorder = 50)
+            ax.text(1.2*end[0],1.2*end[1], 'X128', fontsize=14, ha='center', va='bottom', c = col)
+            ax.text(1.2*start[0],1.2*start[1], 'X1', fontsize=14, ha='center', va='bottom', c = col)
+            if(i==0):
+                print('X128_Y1 = ', end, ',angle =', np.arctan((end[1]-y0)/(end[0]-x0))*180/np.pi)
+
+
+    # Plot the origin and axes
+    #ax.text(1.25*center[0],1.25*center[1], f'DET{i}', fontsize=18,)
+
+    ax.axhline(0, color='black', linewidth=0.5)  # X axis
+    ax.axvline(0, color='black', linewidth=0.5)  # Y axis
+
+
+    size_target = 12
+    angle_target = angleTarget
+    #angle_target*= np.pi/180
+    #for theta in np.linspace(-0.05*np.pi,0.05*np.pi,3):
+    x = size_target * np.cos(angle_target) /2
+    y = size_target * np.sin(angle_target) /2
+    ax.plot([-x+x0,x+x0],[y0-y,y0+y], c= 'green', linewidth = 2, zorder =2 )
+
+
+    size_holder = 34
+    x_holder = size_holder * np.cos(angle_target) /2
+    y_holder = size_holder * np.sin(angle_target) /2
+    dx = x_holder-x
+    dy = y_holder -y
+    ax.plot([-x_holder+x0,-x_holder+x0+dx],[y0-y_holder,y0-y_holder+dy], '-',c= 'dimgray', linewidth = 2.5, zorder =20 )
+    ax.plot([x_holder+x0,x_holder+x0-dx],[y0+y_holder,y0+y_holder-dy], '-',c= 'dimgray', linewidth = 2.5, zorder =20 )
+    #ax.plot([x_holder+x0,x_holder+x0-dx],[y0-y,y0+y], '-',c= 'darkgray', linewidth = 2.5, zorder =20 )
+    #ax.plot([-x+x0,x+x0],[y0-y,y0+y], '-',c= 'black', linewidth = 5, zorder =-20 )
+
+    ax.arrow(x0Beam, -125, 0, 50, head_width=5, head_length=5, fc='gray', ec='gray', linewidth = 5)
+    ax.text(x0Beam,-140, "BEAM", c = 'gray', ha='center', va='bottom')
+    #ax.plot([-x,x],[y,-y], c= 'gray')
+    #ax.scatter(0, 0, color='red', s=15, marker = '+', linewidth=30, alpha = 0.7)  # big point at the center
+
+    plt.xlim(-150, 150)
+    plt.ylim(-150, 150)
+    plt.xlabel('X(geometre) [mm]')
+    plt.ylabel('Y(geometre) [mm]')
+    plt.title(rf'Shift Target = ({x0},{y0}) mm, $\theta$(target) = {-angleTarget/np.pi*180} °')
+    plt.grid(True)
+    plt.tight_layout()
+    #plt.savefig("test_no_shift.pdf")
+    plt.show()
+
+
+def calcul():
+    N_ref = np.array([803420,801981,827156,880858])
+    d2 = np.sqrt(1/N_ref)
+    d2 *= 78.35/d2[0]
+    for i in range(4):
+        print(f'For Det{i}, dist = {d2[i]} mm ')
+        print(f'For Det{i}, N(det3)/Ndet[{i}] = {N_ref[-1]/N_ref[i]}  ')
+        print('\n')
+
+    N_mes = np.array([392844,325642,298612,472568])
+    d_mes = np.array([78.35,86.52,77.90,74.29])
+
+    #print(N_mes*d_mes**2/(np.max(N_mes*d_mes**2)))
+plot_config([-0.1,6],0,-6)
+#calcul()
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/plot_XY.py b/Projects/MUSETT/DetectorConfiguration/Check/plot_XY.py
new file mode 100644
index 0000000000000000000000000000000000000000..b3b96d4d4c1864f07f88833c9e56b868c07ab8ef
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/Check/plot_XY.py
@@ -0,0 +1,168 @@
+import matplotlib.pyplot as plt
+import numpy as np
+
+plt.rcParams.update({'font.size': 18})  # Increase this number for larger text globally
+# Load the data from the file
+def load_data(filename):
+    detectors = {}
+    cnt = -1
+    with open(filename, 'r') as file:
+        for line in file:
+            parts = line.strip().split()
+            if len(parts) == 5:
+                # Increment the detector count when 'X1_Y1' is found
+                if "X1_Y1=" in parts[0]:
+                    cnt += 1
+                # Create a tuple key consisting of detector number and point identifier
+                key = (f"DET{cnt}", parts[0][:-1])
+                x, y, z = map(float, parts[1:4])
+                if key in detectors:
+                    detectors[key].append((x, y, z))
+                else:
+                    detectors[key] = [(x, y, z)]
+    return detectors
+
+
+def plot_detectors(detectors):
+
+    dist = 8
+    theta = 45*np.pi/180
+    x_target = -dist*np.cos(theta)
+    y_target = dist*np.sin(theta)
+    #print(x_target,y_target)
+    pos_target = np.array([x_target,y_target])
+    fig, ax = plt.subplots(figsize=(9,9))
+
+    # Iterate through all possible detector keys assuming the maximum number of detectors
+    for i in range(4):  # Dynamically find the highest DET number
+        start_key = (f"DET{i}", 'X1_Y128')
+        end_key = (f"DET{i}", 'X128_Y128')
+
+        # Check if both start and end points are present in the dictionary
+        if start_key in detectors and end_key in detectors:
+            start = np.array(detectors[start_key][0][:2])  # X, Y coordinates of the start point
+            end = np.array(detectors[end_key][0][:2])    # X, Y coordinates of the end point
+            center = 0.5*(start+end)
+            ax.arrow(start[0], start[1], end[0] - start[0], end[1] - start[1], head_width=2, head_length=3, fc='black', ec='black', linewidth = 2)
+            #if center[0]>0:
+            ax.text(1.25*center[0],1.25*center[1], f'DET{i}', fontsize=18, ha='center', va='bottom')
+
+
+            center_vector = center
+            arrow_vector = end - start
+            center_norm = np.linalg.norm(center_vector)
+            arrow_norm = np.linalg.norm(arrow_vector)
+
+            #if center_norm != 0 and arrow_norm != 0:
+            angle_with_center = np.arccos(np.clip(np.dot(center_vector, arrow_vector) / (center_norm * arrow_norm), -1.0, 1.0))
+            angle_with_center = np.degrees(angle_with_center)
+            ideal_pos = np.array([center[0]/np.abs(center[0]),center[1]/np.abs(center[1])])
+            ideal_pos[0]*=np.cos(np.pi/4)
+            ideal_pos[1]*=np.sin(np.pi/4)
+            ideal_pos*=center_norm
+            distance_to_source = np.linalg.norm(center-pos_target)
+            print(rf"DET{i} : distance to source {distance_to_source} mm")
+            #print(rf"Angle between (0, center) and (X1_Y1, X128_Y1) for DET{i}: %.2f degrees"%angle_with_center)
+            #print()
+            difference = np.linalg.norm(ideal_pos-center_vector)
+                #print(ideal_pos-center_vector)
+
+            line_length = 50
+
+            if (center[0]*center[1]>0):
+                angle = -np.pi/4
+            else :
+                angle = np.pi/4
+            dx = line_length * np.cos(angle)
+            dy = line_length * np.sin(angle)
+            dist = np.sqrt(center[0]**2+center[1]**2)
+            #r'$\bar{\Omega}_{%d} = %.3f$' % (i, angle)
+            ax.plot([x_target,center[0]],[y_target,center[1]], linestyle = "--", c = 'red')
+            ax.plot([x_target,100*center[0]/np.abs(center[0])],[y_target,100*center[1]/np.abs(center[1])], linestyle = ":", c = 'orange', zorder = 20)
+            ax.text(110*center[0]/np.abs(center[0]),110*center[1]/np.abs(center[1]), r"Center of distrib", fontsize=14, ha='center', va='bottom',c ='orange')
+            ax.text(1.9*center[0],center[1],f"∆ = %.2f mm"%difference, c = 'darkorange',ha='center', va='bottom' )
+
+            xoffset_text = 20
+            if center[0]>0:
+                if center[1]>0:
+                    ax.text(xoffset_text+1.1*center[0]/2,0.8*center[1]/2, r"%.2f mm"%(distance_to_source), fontsize=14, ha='center', va='bottom',c ='red')
+                else :
+                    ax.text(xoffset_text+1.1*center[0]/2,1.2*center[1]/2, r"%.2f mm"%(distance_to_source), fontsize=14, ha='center', va='bottom',c ='red')
+            else :
+                if center[1]>0:
+                    ax.text(-xoffset_text+1.1*center[0]/2,0.8*center[1]/2, r"%.2f mm"%(distance_to_source), fontsize=14, ha='center', va='bottom',c ='red')
+                else :
+                    ax.text(-xoffset_text+1.1*center[0]/2,1.2*center[1]/2, r"%.2f mm"%(distance_to_source), fontsize=14, ha='center', va='bottom',c ='red')
+    # Plot the origin and axes
+    ax.arrow(0, -125, 0, 50, head_width=5, head_length=5, fc='gray', ec='gray', linewidth = 5)
+    ax.text(0,-140, "BEAM", c = 'gray', ha='center', va='bottom')
+    ax.scatter(x_target, y_target, color='red', s=100)  # big point at the center
+    ax.axhline(0, color='black', linewidth=0.5)  # X axis
+    ax.axvline(0, color='black', linewidth=0.5)  # Y axis
+
+    plt.xlim(-150, 150)
+    plt.ylim(-150, 150)
+    plt.xlabel('X(geometre) [mm]')
+    plt.ylabel('Y(geometre) [mm]')
+    plt.title('Detector Orientation, Y128')
+    plt.grid(True)
+    plt.tight_layout()
+    plt.show()
+    #plt.savefig("PlotGeometry_Y128_shift_target.pdf")
+
+
+def plot_tilted_target(detectors):
+    fig, ax = plt.subplots(figsize=(9,9))
+    colors = ['black','red','blue','orange']
+    # Iterate through all possible detector keys assuming the maximum number of detectors
+    for i in range(4):  # Dynamically find the highest DET number
+        start_key = (f"DET{i}", 'X1_Y1')
+        end_key = (f"DET{i}", 'X128_Y1')
+        col = colors[i]
+
+        # Check if both start and end points are present in the dictionary
+        if start_key in detectors and end_key in detectors:
+            start = np.array(detectors[start_key][0][:2])  # X, Y coordinates of the start point
+            end = np.array(detectors[end_key][0][:2])    # X, Y coordinates of the end point
+            center = 0.5*(start+end)
+            ax.arrow(start[0], start[1], end[0] - start[0], end[1] - start[1], head_width=2, head_length=3, fc=col, ec=col, linewidth = 2)
+            #if center[0]>0:
+            ax.text(1.25*center[0],1.25*center[1], f'DET{i}', fontsize=18, ha='center', va='bottom', c = col)
+            plt.plot([0,start[0]],[0,start[1]],":", c = col, linewidth = 2, zorder = 50)
+            plt.plot([0,end[0]],[0,end[1]],":", c = col, linewidth = 2, zorder = 50)
+            ax.text(1.2*end[0],1.2*end[1], 'X128', fontsize=14, ha='center', va='bottom', c = col)
+            ax.text(1.2*start[0],1.2*start[1], 'X1', fontsize=14, ha='center', va='bottom', c = col)
+
+
+    # Plot the origin and axes
+    ax.arrow(0, -125, 0, 50, head_width=5, head_length=5, fc='gray', ec='gray', linewidth = 5)
+    ax.text(0,-140, "BEAM", c = 'gray', ha='center', va='bottom')
+    #ax.text(1.25*center[0],1.25*center[1], f'DET{i}', fontsize=18,)
+
+    ax.axhline(0, color='black', linewidth=0.5)  # X axis
+    ax.axvline(0, color='black', linewidth=0.5)  # Y axis
+    angle_target = 10
+    size_target = 34
+    angle_target*= np.pi/180
+    x = size_target * np.cos(angle_target) /2
+    y = size_target * np.sin(angle_target) /2
+    ax.plot([-x,x],[-y,y], c= 'green', linewidth = 5, zorder =2 )
+    #ax.plot([-x,x],[y,-y], c= 'gray')
+    #ax.scatter(0, 0, color='red', s=15, marker = '+', linewidth=30, alpha = 0.7)  # big point at the center
+
+    plt.xlim(-150, 150)
+    plt.ylim(-150, 150)
+    plt.xlabel('X(geometre) [mm]')
+    plt.ylabel('Y(geometre) [mm]')
+    plt.title(r'Effect of Target. stripY = 1,$\theta$(target) = 10°')
+    plt.grid(True)
+    plt.tight_layout()
+    #plt.savefig("PlotTarget_Y1_shift_target.pdf")
+    plt.show()
+
+# Replace 'MUSETT_NPS.detector' with your actual file path
+detectors = load_data('../MUSETT_NPS.detector')
+#for key,value in detectors.items() :
+    #print(f"key = {key} -> value = {value}")
+plot_detectors(detectors)
+#plot_tilted_target(detectors)
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/test_no_shift.pdf b/Projects/MUSETT/DetectorConfiguration/Check/test_no_shift.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..04e67455143038ae6153032da22701f9e95ab305
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/test_no_shift.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/Check/test_shift.pdf b/Projects/MUSETT/DetectorConfiguration/Check/test_shift.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..841a6db2e6476bbdf8f67a13acee42ae0bc77856
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/Check/test_shift.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/G4_geom_comparison.pdf b/Projects/MUSETT/DetectorConfiguration/G4_geom_comparison.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..6366a1ca38a5c5166fca11a84701e57b7701cf57
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/G4_geom_comparison.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/MUSETT.detector b/Projects/MUSETT/DetectorConfiguration/MUSETT.detector
new file mode 100644
index 0000000000000000000000000000000000000000..b7cf926492e946fc0c4da83311d3ac041205fa54
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/MUSETT.detector
@@ -0,0 +1,43 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Target
+ THICKNESS= 88 nanometer
+ ANGLE= 90 deg
+ RADIUS=  15 mm
+ MATERIAL= C
+ X= 0 mm
+ Y= 0 mm
+ Z= 0 mm
+
+
+MUSETT
+ X1_Y1=   18.16  92.38  -39.51 mm
+ X1_Y128= 18.05  92.32  60.09 mm
+ X128_Y128= 88.66  22.07  60.12 mm
+ X128_Y1= 88.77  22.13  -39.47 mm
+
+MUSETT
+ X1_Y1=  91.95  -18.55  -39.69 mm
+ X1_Y128= 91.84  -18.61  59.91 mm
+ X128_Y128= 21.97  -89.60  59.78 mm
+ X128_Y1= 22.08  -89.54  -39.82 mm
+
+MUSETT
+ X1_Y1= -20.64  -88.43  -38.71 mm
+ X1_Y128= -20.75  -88.49  60.89 mm
+ X128_Y128= -91.76  -18.65  60.85 mm
+ X128_Y1= -91.65  -18.59  -38.75 mm
+
+MUSETT
+ X1_Y1=  -93.08  23.05  -38.40 mm
+ X1_Y128= -93.19  22.99  61.20 mm
+ X128_Y128= -22.95  93.61  61.32 mm
+ X128_Y1= -22.84  93.67  -38.28 mm
+
+
+
+
+
+
+
+
+ 
diff --git a/Projects/MUSETT/DetectorConfiguration/MUSETT_1.detector b/Projects/MUSETT/DetectorConfiguration/MUSETT_1.detector
new file mode 100644
index 0000000000000000000000000000000000000000..ddeb2b0b52214d4d4eea29d26679957d8dac9c9c
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/MUSETT_1.detector
@@ -0,0 +1,17 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Target
+ THICKNESS= 88 nanometer
+ ANGLE= 0 deg
+ RADIUS=  15 mm
+ MATERIAL= C
+ ANGLE= 0 deg
+ X= 0 mm
+ Y= 0 mm
+ Z= 0 mm
+
+
+MUSETT
+ X1_Y1=   18.16  92.38  -39.51 mm
+ X1_Y128= 18.05  92.32  60.09 mm
+ X128_Y128= 88.66  22.07  60.12 mm
+ X128_Y1= 88.77  22.13  -39.47 mm
diff --git a/Projects/MUSETT/DetectorConfiguration/MUSETT_NPS.detector b/Projects/MUSETT/DetectorConfiguration/MUSETT_NPS.detector
new file mode 100644
index 0000000000000000000000000000000000000000..fb866c8d60937a3bec7956d8faaa5914f7da2a38
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/MUSETT_NPS.detector
@@ -0,0 +1,24 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+MUSETT
+ X1_Y1=   18.16  92.38  -49.51 mm
+ X1_Y128= 18.05  92.32  50.09 mm
+ X128_Y128= 88.66  22.07  50.12 mm
+ X128_Y1= 88.77  22.13  -49.47 mm
+
+MUSETT
+ X1_Y1=  91.95  -18.55  -49.69 mm
+ X1_Y128= 91.84  -18.61  49.91 mm
+ X128_Y128= 21.97  -89.60  49.78 mm
+ X128_Y1= 22.08  -89.54  -49.82 mm
+
+MUSETT
+ X1_Y1= -20.64  -88.43  -48.71 mm
+ X1_Y128= -20.75  -88.49  50.89 mm
+ X128_Y128= -91.76  -18.65  50.85 mm
+ X128_Y1= -91.65  -18.59  -48.75 mm
+
+MUSETT
+ X1_Y1=  -93.08  23.05  -48.40 mm
+ X1_Y128= -93.19  22.99  51.20 mm
+ X128_Y128= -22.95  93.61  51.32 mm
+ X128_Y1= -22.84  93.67  -48.28 mm
diff --git a/Projects/MUSETT/DetectorConfiguration/MUSETT_NPS_dy.detector b/Projects/MUSETT/DetectorConfiguration/MUSETT_NPS_dy.detector
new file mode 100644
index 0000000000000000000000000000000000000000..ff53a0ba0da2de3f6df2ae008672b1c4707806b3
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/MUSETT_NPS_dy.detector
@@ -0,0 +1,24 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+MUSETT
+ X1_Y1= 18.16 92.38 -49.32 mm
+ X1_Y128= 18.05 92.32 50.28 mm
+ X128_Y128= 88.66 22.07 50.31 mm
+ X128_Y1= 88.77 22.13 -49.28 mm
+
+MUSETT
+ X1_Y1= 91.95 -18.55 49.23 mm
+ X1_Y128= 91.84 -18.61 150.37 mm
+ X128_Y128= 21.97 -89.60 150.24 mm
+ X128_Y1= 22.08 -89.54 49.36 mm
+
+MUSETT
+ X1_Y1= -20.64 -88.43 -48.44 mm
+ X1_Y128= -20.75 -88.49 51.16 mm
+ X128_Y128= -91.76 -18.65 51.12 mm
+ X128_Y1= -91.65 -18.59 -48.48 mm
+
+MUSETT
+ X1_Y1= -93.08 23.05 -48.04 mm
+ X1_Y128= -93.19 22.99 51.56 mm
+ X128_Y128= -22.95 93.61 51.68 mm
+ X128_Y1= -22.84 93.67 -47.92 mm
diff --git a/Projects/MUSETT/DetectorConfiguration/MUSETT_TEST.detector b/Projects/MUSETT/DetectorConfiguration/MUSETT_TEST.detector
new file mode 100644
index 0000000000000000000000000000000000000000..8ab96b4becaf4eeb4f7dd39499cb74d34e4fdf26
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/MUSETT_TEST.detector
@@ -0,0 +1,6 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+MUSETT
+ X1_Y1=   -50   -50 78   mm
+ X1_Y128= -50   50 78   mm
+ X128_Y128= 50   50 78   mm
+ X128_Y1= 50   -50  78  mm
diff --git a/Projects/MUSETT/DetectorConfiguration/MUSETT_coinc.detector b/Projects/MUSETT/DetectorConfiguration/MUSETT_coinc.detector
new file mode 100644
index 0000000000000000000000000000000000000000..8a82c24a6d873c4914e1db30d702e774c6e94bc7
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/MUSETT_coinc.detector
@@ -0,0 +1,12 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+MUSETT
+ X1_Y1=   -50   -50 -2   mm
+ X1_Y128= -50   50 -2   mm
+ X128_Y128= 50   50 -2   mm
+ X128_Y1= 50   -50  -2  mm
+
+MUSETT
+  X128_Y1=   -50   -50 2   mm
+  X128_Y128= -50   50 2   mm
+  X1_Y128= 50   50 2   mm
+  X1_Y1= 50   -50  2  mm
diff --git a/Projects/MUSETT/DetectorConfiguration/change_z.py b/Projects/MUSETT/DetectorConfiguration/change_z.py
new file mode 100644
index 0000000000000000000000000000000000000000..d6995a942792d7e919e4bbff9e02b895fa5d52af
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/change_z.py
@@ -0,0 +1,44 @@
+import numpy as np
+
+
+dz = np.array([0.25,0.61,0.36,0.47])*0.760
+
+cnt = 0
+def process_line(line, dz_value):
+    print(line, dz_value)
+    # Check if the line contains the '=' character
+    if '=' in line:
+        # Split the line into key and values
+        key, values = line.split('=')
+        # Split the values and convert to float
+        nums = values.split()
+        # Adjust the last number (before 'mm') by the given dz_value
+        nums[-2] = f"{float(nums[-2]) + dz_value:.2f}"
+        # Reconstruct the line
+        new_line = f" {key}= {nums[0]} {nums[1]} {nums[2]} mm"
+        return new_line
+    else:
+        # If the line does not contain '=', return it as is
+        return line
+
+# Read the file
+with open('MUSETT_NPS.detector', 'r') as file:
+    lines = file.readlines()
+
+dz_index =-1
+# Process each line
+processed_lines = []
+for line in lines:
+    print(dz_index)
+    stripped_line = line.strip()
+    if stripped_line == "MUSETT":
+        dz_index += 1
+    if dz_index >= 0 and dz_index < len(dz):
+        processed_lines.append(process_line(stripped_line, dz[dz_index]))
+    else:
+        processed_lines.append(stripped_line)
+
+# Write the updated lines back to a file
+with open('updated_data.txt', 'w') as file:
+    for line in processed_lines:
+        file.write(line + '\n')
diff --git a/Projects/MUSETT/DetectorConfiguration/check_solid_angle.py b/Projects/MUSETT/DetectorConfiguration/check_solid_angle.py
new file mode 100644
index 0000000000000000000000000000000000000000..c53e5a4ce7e4e519ffbbaf16e47febbb65a95964
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/check_solid_angle.py
@@ -0,0 +1,65 @@
+import math
+
+def calculate_distance(point1, point2):
+    return math.sqrt((point2[0] - point1[0])**2 + (point2[1] - point1[1])**2 + (point2[2] - point1[2])**2)
+
+def parse_detector_file(filename):
+    with open(filename, 'r') as file:
+        data = file.readlines()
+
+    musett_data = []
+    musett_points = []
+    for line in data:
+        if not line.strip():  # Skip empty lines
+            continue
+        parts = line.split("=")
+        if parts[0].strip().startswith("X1_Y") or parts[0].strip().startswith("X128_Y"):  # Check if the line contains point coordinates
+            x, y, z = map(float, parts[1].split()[:3])
+            musett_points.append((x, y, z))
+        elif line.startswith("MUSETT"):  # If line doesn't contain point coordinates, it's the start of a new MUSETT entry
+            if musett_points:  # If there are points in musett_points, add them to musett_data
+                musett_data.append(musett_points)
+                musett_points = []  # Reset musett_points for the next entry
+
+    # Add the last set of points
+    if musett_points:
+        musett_data.append(musett_points)
+
+    return musett_data
+
+def compute_neighbor_distances(vertices):
+    distances = []
+    num_vertices = len(vertices)
+    for i in range(num_vertices):
+        v1 = vertices[i]
+        v2 = vertices[(i + 1) % num_vertices]  # Next vertex (wraps around to the first vertex for the last one)
+        dist = calculate_distance(v1, v2)
+        distances.append(dist)
+    return distances
+
+def compute_center_distances(musett_data):
+    distances = []
+    for musett_points in musett_data:
+        center_x = sum(point[0] for point in musett_points) / 4
+        center_y = sum(point[1] for point in musett_points) / 4
+        center_z = sum(point[2] for point in musett_points) / 4
+        print(center_x,center_y,center_z)
+        dist = calculate_distance((center_x, center_y, center_z), (0, 0, 0))
+        distances.append(dist)
+    return distances
+
+if __name__ == "__main__":
+    filename = "MUSETT_NPS.detector"
+    musett_data = parse_detector_file(filename)
+
+    # Compute distances between neighboring points for each MUSETT
+    for i, musett_points in enumerate(musett_data, 1):
+        distances = compute_neighbor_distances(musett_points)
+        print(f"Distances between neighboring points for MUSETT {i}:")
+        for j, dist in enumerate(distances, 1):
+            print(f"  Distance {j}: {dist:.2f} mm")
+
+    # Compute distances of MUSETT centers to the origin
+    distances = compute_center_distances(musett_data)
+    for i, dist in enumerate(distances, 0):
+        print(f"Distance of MUSETT {i} center to origin: {dist:.2f} mm")
diff --git a/Projects/MUSETT/DetectorConfiguration/check_surface.py b/Projects/MUSETT/DetectorConfiguration/check_surface.py
new file mode 100644
index 0000000000000000000000000000000000000000..5eb9fd2a128a221afff7c35d20c4c197dd92d61f
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/check_surface.py
@@ -0,0 +1,22 @@
+import numpy as np
+
+Nx = 12288
+Ny = 24320
+
+Sx = 700 * 110/3
+Sy = 20*960
+
+Stot = (97220)**2
+
+ratio = 0.0273
+
+
+S_alu = Nx*Sy + Ny*Sx
+
+expected = ratio*Stot
+#print(S_alu/expected)
+#print(S_alu/Stot)
+
+
+r = (2*(20*960+40*660))/(1040*700)
+print(r)
diff --git a/Projects/MUSETT/DetectorConfiguration/final_geometry.py b/Projects/MUSETT/DetectorConfiguration/final_geometry.py
new file mode 100644
index 0000000000000000000000000000000000000000..607bcc41676e34786b9833744908051b7eb9a6cb
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/final_geometry.py
@@ -0,0 +1,78 @@
+import math
+from scipy.integrate import dblquad
+import numpy as np
+
+def parse_detector_file(filename):
+    with open(filename, 'r') as file:
+        data = file.readlines()
+
+    musett_data = []
+    musett_points = []
+    for line in data:
+        if not line.strip():  # Skip empty lines
+            continue
+        parts = line.split("=")
+        if parts[0].strip().startswith("X1_Y") or parts[0].strip().startswith("X128_Y"):  # Check if the line contains point coordinates
+            x, y, z = map(float, parts[1].split()[:3])
+            musett_points.append((x, y, z))
+        elif line.startswith("MUSETT"):  # If line doesn't contain point coordinates, it's the start of a new MUSETT entry
+            if musett_points:  # If there are points in musett_points, add them to musett_data
+                musett_data.append(musett_points)
+                musett_points = []  # Reset musett_points for the next entry
+
+    # Add the last set of points
+    if musett_points:
+        musett_data.append(musett_points)
+
+    return musett_data
+
+
+def find_center(corner_points):
+    # Extracting x, y, and z coordinates of each corner point
+    x_coords = [point[0] for point in corner_points]
+    y_coords = [point[1] for point in corner_points]
+    z_coords = [point[2] for point in corner_points]
+
+    # Computing the center point
+    center_x = sum(x_coords) / len(corner_points)
+    center_y = sum(y_coords) / len(corner_points)
+    center_z = sum(z_coords) / len(corner_points)
+
+    return (center_x, center_y, center_z)
+
+def compute_distance_to_origin(center):
+    # Computing the distance from the center to the origin (0, 0, 0)
+    distance = math.sqrt(center[0]**2 + center[1]**2 + center[2]**2)
+    return distance
+
+def compute_solid_angle(corner_points):
+
+    length = 97.220
+    # Function to compute the differential solid angle
+    def d_omega(x, y):
+        # Extracting the z coordinate of the first corner point
+        z = corner_points[0][2]
+        z-= 0.150
+        return z / math.sqrt(x**2 + y**2 + z**2)**3
+
+
+    # Getting the minimum and maximum values of x and y coordinates
+    min_x, max_x = -length/2,length/2
+    min_y, max_y = -length/2,length/2
+
+    # Compute the solid angle using double integration
+    solid_angle, _ = dblquad(d_omega, min_x, max_x, lambda x: min_y, lambda x: max_y)
+
+    return solid_angle
+
+# Example usage:
+
+#corner_points = [(18.16, 92.38, -39.51), (18.05, 92.32, 60.09), (88.66, 22.07, 60.12), (88.77, 22.13, -39.47)]
+musett_data = parse_detector_file('MUSETT_TEST.detector')
+corner_points = musett_data[0]
+center = find_center(corner_points)
+distance_to_origin = compute_distance_to_origin(center)
+solid_angle = compute_solid_angle(corner_points)
+print("Center of the detector:", center)
+print("Distance from center to origin:", distance_to_origin)
+print("Geometric efficiency = Ω/4π = ",solid_angle/(4*np.pi))
diff --git a/Projects/MUSETT/DetectorConfiguration/geometric_solid_angle.pdf b/Projects/MUSETT/DetectorConfiguration/geometric_solid_angle.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..89be4cd695b74f2bec4bc5c0d035868fd64f6fe9
Binary files /dev/null and b/Projects/MUSETT/DetectorConfiguration/geometric_solid_angle.pdf differ
diff --git a/Projects/MUSETT/DetectorConfiguration/sanitycheck_R308.detector b/Projects/MUSETT/DetectorConfiguration/sanitycheck_R308.detector
new file mode 100644
index 0000000000000000000000000000000000000000..6ef981b7d9624be6c9717123ea7a010eedf0158c
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/sanitycheck_R308.detector
@@ -0,0 +1,35 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Target
+ THICKNESS= 1 nanometer
+ ANGLE= 0 deg
+ RADIUS=  15 mm
+ MATERIAL= C
+ ANGLE= 0 deg
+ X= 0 mm
+ Y= 0 mm
+ Z= 0 mm
+
+
+MUSETT  		
+ X1_Y1=  -30.00	-50.00 100.00 mm
+ X1_Y128= -30.00	50.00 100.00 mm
+ X128_Y128= -100.00 50.00 30.00 mm
+ X128_Y1= -100.00 -50.00 30.00 mm
+
+MUSETT  		
+ X1_Y1=  -100.00 -50.00 -30.00 mm
+ X1_Y128= -100.00 50.00 -30.00 mm
+ X128_Y128= -30.00 50.00 -100.00 mm
+ X128_Y1= -30.00 -50.00 -100.00 mm
+
+MUSETT  		
+ X1_Y1=  30.00	-50.00 -100.00 mm
+ X1_Y128= 30.00	50.00 -100.00 mm
+ X128_Y128= 100.00 50.00 -30.00 mm
+ X128_Y1= 100.00 -50.00 -30.00 mm
+
+MUSETT  		
+ X1_Y1=  100.00	-50.00 30.00 mm
+ X1_Y128= 100.00	50.00 30.00 mm
+ X128_Y128= 30.00 50.00 100.00mm
+ X128_Y1= 30.00 -50.00 100.00mm
diff --git a/Projects/MUSETT/DetectorConfiguration/test_formula_omega.py b/Projects/MUSETT/DetectorConfiguration/test_formula_omega.py
new file mode 100644
index 0000000000000000000000000000000000000000..63bdc36fda62234fd78c185320f54666ec132497
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/test_formula_omega.py
@@ -0,0 +1,80 @@
+import numpy as np
+from scipy.integrate import dblquad
+import matplotlib.pyplot as plt
+
+plt.rcParams.update({'font.size': 14})
+
+def solid_angle_square_integration(z, width, length):
+    # Function to compute the differential solid angle
+    def d_omega(x, y):
+        # z = 0  # Since we're integrating over x and y, we assume z = 0 (point of observation)
+        return z / np.sqrt(x**2 + y**2 + z**2)**3
+
+    # Perform the double integration
+    solid_angle, _ = dblquad(d_omega, -width/2, width/2, lambda x: -length/2, lambda x: length/2)
+
+    return solid_angle
+
+# Example points of a square
+width = 97.220
+length = 97.220
+
+# Compute the solid angle using integration over x and y
+distances = np.array([78.95, 79.18, 78.41, 83.06])
+distances = np.array([101.12])
+
+solid_angles = []
+total = 0
+for i, z in enumerate(distances):
+    angle_integration = solid_angle_square_integration(z, width, length)
+    solid_angles.append(angle_integration / (4 * np.pi))
+    print(f"Det {i}, Solid Angle / 4 π = {angle_integration / (4 * np.pi)}")
+    total += angle_integration
+
+
+
+print('total solid angle / 4Ï€ = ',total/(4*np.pi))
+'''
+# Normalize the values
+max_solid_angle = max(solid_angles)
+normalized_solid_angles = np.array([angle / max_solid_angle for angle in solid_angles])
+
+
+solid_angles = np.array(solid_angles)
+estimate = solid_angles * 10000000
+
+#estimate *= 897158 / estimate[0]
+#print(estimate)
+
+
+
+#G4_output = np.array([9150, 8880, 9026, 8354])
+#G4_output = np.array([9015, 8841, 9095, 8240])
+G4_output = np.array([897158,890469,905700,827856])
+G4_output_errors = np.sqrt(G4_output)
+#print(G4_output_errors)
+#G4_output_errors *=
+# Plotting histogram with annotations
+#plt.bar(range(len(normalized_solid_angles)), normalized_solid_angles, label='My Calculation')
+plt.bar(range(len(G4_output)),G4_output, label = 'G4 sim')
+plt.errorbar(range(len(G4_output)), G4_output, yerr=G4_output_errors, fmt='ro-', c = 'black', label = 'G4 +/ sigma')  # Plot the values from another calculation with error bars
+plt.plot([0,1,2,3],estimate,'s', c = 'red', label = 'geom estimate')
+plt.legend()
+#plt.errorbar(range(len(G4_output)), G4_output, yerr=G4_output_errors, fmt='ro-', label='G4 Output')  # Plot the values from another calculation with error bars
+plt.xlabel('Detector Number')
+plt.ylabel(r'N')
+plt.title('Geometric solid angles')
+#plt.ylim(8200,9300)
+
+# Annotate each bar with the corresponding solid angle value
+#for i, angle in enumerate(normalized_solid_angles):
+#    plt.text(i, solid_angles[i], r'$\bar{\Omega}_{%d} = %.3f$' % (i, angle), ha='center', va='bottom', fontsize=16, weight='bold', color = 'red')
+
+#omega_ratio_2 = solid_angles[2] / solid_angles[2]  # Assuming Omega_2 != 0
+#plt.text(3.1, solid_angles[2], r'$\bar{\Omega} = \Omega / \Omega_2$', ha='center', va='bottom', fontsize=18, weight='bold', color='red', bbox=dict(facecolor='white', edgecolor='black', boxstyle='round,pad=0.5'))
+
+plt.xticks([0,1,2,3],[0,1,2,3])
+
+#plt.ylim((0.08, 0.0950))
+plt.show()
+'''
diff --git a/Projects/MUSETT/DetectorConfiguration/updated_data.txt b/Projects/MUSETT/DetectorConfiguration/updated_data.txt
new file mode 100644
index 0000000000000000000000000000000000000000..3e6bae5fabb2189da33f402085cb4cf65dccbd2e
--- /dev/null
+++ b/Projects/MUSETT/DetectorConfiguration/updated_data.txt
@@ -0,0 +1,24 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+MUSETT
+ X1_Y1= 18.16 92.38 -49.32 mm
+ X1_Y128= 18.05 92.32 50.28 mm
+ X128_Y128= 88.66 22.07 50.31 mm
+ X128_Y1= 88.77 22.13 -49.28 mm
+
+MUSETT
+ X1_Y1= 91.95 -18.55 -49.23 mm
+ X1_Y128= 91.84 -18.61 50.37 mm
+ X128_Y128= 21.97 -89.60 50.24 mm
+ X128_Y1= 22.08 -89.54 -49.36 mm
+
+MUSETT
+ X1_Y1= -20.64 -88.43 -48.44 mm
+ X1_Y128= -20.75 -88.49 51.16 mm
+ X128_Y128= -91.76 -18.65 51.12 mm
+ X128_Y1= -91.65 -18.59 -48.48 mm
+
+MUSETT
+ X1_Y1= -93.08 23.05 -48.04 mm
+ X1_Y128= -93.19 22.99 51.56 mm
+ X128_Y128= -22.95 93.61 51.68 mm
+ X128_Y1= -22.84 93.67 -47.92 mm
diff --git a/Projects/MUSETT/PhysicsListOption.txt b/Projects/MUSETT/PhysicsListOption.txt
new file mode 100644
index 0000000000000000000000000000000000000000..94ff8153f173b285e9465a9e4b2276e7b2cef27d
--- /dev/null
+++ b/Projects/MUSETT/PhysicsListOption.txt
@@ -0,0 +1,13 @@
+EmPhysicsList Option4
+DefaultCutOff 10
+IonBinaryCascadePhysics 0
+NPIonInelasticPhysics 0
+EmExtraPhysics 0
+HadronElasticPhysics 1
+HadronPhysicsQGSP_BIC_HP 0
+HadronPhysicsQGSP_BERT_HP 1
+HadronPhysicsQGSP_INCLXX_HP 0
+HadronPhysicsINCLXX 0
+StoppingPhysics 0
+OpticalPhysics 0
+Decay 1
diff --git a/Projects/MUSETT/RunToTreat.txt b/Projects/MUSETT/RunToTreat.txt
index cbacf4d3955c184a5299fcb4e6eea229b38785b7..1d5c04f467361fd7657c11bafcf05ce3351ddf31 100644
--- a/Projects/MUSETT/RunToTreat.txt
+++ b/Projects/MUSETT/RunToTreat.txt
@@ -1,4 +1,4 @@
-TTreeName 
-	RD
-RootFileName 
-  ~/npTreeReader/np-tree-reader/Projects/MUSETT/RootR/run_030*_label.root
+TTreeName
+	SimulatedTree
+RootFileName
+	/Users/lh270370/Software/nptool/Outputs/Simulation/Isolde/BranchingRatio_test/222Ra_ChangedBR_p3_1e6__energyBeam30_MUSETT_tau1000_T1e+09_TADC1000.root
diff --git a/Projects/MUSETT/Scripts/.DS_Store b/Projects/MUSETT/Scripts/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/MUSETT/Scripts/.DS_Store differ
diff --git a/Projects/MUSETT/Scripts/ApplyCalibrationMusettData.cxx b/Projects/MUSETT/Scripts/ApplyCalibrationMusettData.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..09946a48b3a2e5a0e9bf31fce4283fa5b1fa00c5
--- /dev/null
+++ b/Projects/MUSETT/Scripts/ApplyCalibrationMusettData.cxx
@@ -0,0 +1,165 @@
+#include "ApplyCalibrationMusettData.hh"
+
+namespace CALIB {
+  //   DSSD
+  //   X
+  double fDSSD_X_E(const TMUSETTData* m_EventData, const int& i) {
+    static string name;
+    name = "MUSETT/T";
+    name += NPL::itoa(m_EventData->GetDSSDXEDetectorNbr(i));
+    //std::cout << "Det : " << m_EventData->GetDSSDXEDetectorNbr(i) << std::endl;
+    name += "_DSSD_X";
+    name += NPL::itoa(m_EventData->GetDSSDXEStripNbr(i));
+    //std::cout << "Strip : " << m_EventData->GetDSSDXEStripNbr(i) << std::endl;
+    name += "_E";
+    //std::cout << name << std::endl;
+    return CalibrationManager::getInstance()->ApplyCalibration(
+        name, m_EventData->GetDSSDXEEnergy(i),1);
+  }
+
+  double fDSSD_X_T(const TMUSETTData* m_EventData, const int& i) {
+    static string name;
+    name = "MUSETT/T";
+    name += NPL::itoa(m_EventData->GetDSSDXTDetectorNbr(i));
+    name += "_DSSD_X";
+    name += NPL::itoa(m_EventData->GetDSSDXTStripNbr(i));
+    name += "_T";
+    return CalibrationManager::getInstance()->ApplyCalibration(
+        name, m_EventData->GetDSSDXTTime(i),1);
+  }
+
+  //   Y
+  double fDSSD_Y_E(const TMUSETTData* m_EventData, const int& i) {
+    static string name;
+    name = "MUSETT/T";
+    name += NPL::itoa(m_EventData->GetDSSDYEDetectorNbr(i));
+    name += "_DSSD_Y";
+    name += NPL::itoa(m_EventData->GetDSSDYEStripNbr(i));
+    name += "_E";
+    return CalibrationManager::getInstance()->ApplyCalibration(
+        name, m_EventData->GetDSSDYEEnergy(i),1);
+  }
+
+  double fDSSD_Y_T(const TMUSETTData* m_EventData, const int& i) {
+    static string name;
+    name = "MUSETT/T";
+    name += NPL::itoa(m_EventData->GetDSSDYTDetectorNbr(i));
+    name += "_DSSD_Y";
+    name += NPL::itoa(m_EventData->GetDSSDYTStripNbr(i));
+    name += "_T";
+    return CalibrationManager::getInstance()->ApplyCalibration(
+        name, m_EventData->GetDSSDYTTime(i),1);
+  }
+}
+
+using namespace CALIB;
+
+void ApplyCalibrationMusettData()
+{
+  TFile *inputFile = TFile::Open(inputFileName.c_str(), "READ");
+  TTree *inputTree = static_cast<TTree*>(inputFile->Get("RD"));
+
+  TMUSETTData* inputEvent = nullptr;
+  inputTree->SetBranchAddress("MUSETT", &inputEvent);
+
+
+  TFile *outputFile = new TFile(outputFileName.c_str(), "RECREATE");
+  TTree *outputTree = new TTree("CalibMusettData", "Analysis Data");
+
+  TMUSETTData* outputEvent = new TMUSETTData();
+  outputTree->Branch("Event", &outputEvent);
+
+
+  //const char* args[] = {"-C", "calibration/Calibration222Ra.txt"};
+  const char* args[] = {" ", "-C", "calibration/Calibration222Ra.txt"};
+  char** argv = const_cast<char**>(args);
+  int argc = 3; // Since you have two arguments "-C" and the filename
+
+  // Call getInstance with the prepared argc and argv
+  NPOptionManager* myOptionManager = NPOptionManager::getInstance((int)2, argv);
+  //NPOptionManager* myOptionManager = NPOptionManager::getInstance(argc,argv);
+
+  myOptionManager->SetIsAnalysis();
+
+
+  //std::cout << << std::endl;
+
+
+  CalibrationManager* Cal = CalibrationManager::getInstance(myOptionManager->GetCalibrationFile());
+  // Good for simulation, close to typical values
+  vector<double> standardX    = {-63, 63. / 8192.};
+  vector<double> standardY    = {63, -63. / 8192.};
+  vector<double> standardSecondLayer  = {-63, 63. / 8192.};
+  vector<double> standardT    = {-1000, 1000. / 8192.};
+
+
+  //Cal->AddFile("/Users/lh270370/Software/nptool/Projects/MUSETT/calibration/Calibration222Ra.txt");
+
+  for (int i = 0; i < 4; i++) {
+
+    for (int j = 0; j < 128; j++) {
+      Cal->AddParameter(
+          "MUSETT", "T" + NPL::itoa(i) + "_DSSD_X" + NPL::itoa(j ) + "_E",
+          "MUSETT_T" + NPL::itoa(i) + "_DSSD_X" + NPL::itoa(j ) + "_E",
+          standardX);
+      Cal->AddParameter(
+          "MUSETT", "T" + NPL::itoa(i) + "_DSSD_Y" + NPL::itoa(j ) + "_E",
+          "MUSETT_T" + NPL::itoa(i) + "_DSSD_Y" + NPL::itoa(j ) + "_E",
+          standardY);
+      Cal->AddParameter(
+          "MUSETT", "T" + NPL::itoa(i) + "_DSSD_X" + NPL::itoa(j ) + "_T",
+          "MUSETT_T" + NPL::itoa(i) + "_DSSD_X" + NPL::itoa(j ) + "_T",
+          standardT);
+      Cal->AddParameter(
+          "MUSETT", "T" + NPL::itoa(i) + "_DSSD_Y" + NPL::itoa(j ) + "_T",
+          "MUSETT_T" + NPL::itoa(i) + "_DSSD_Y" + NPL::itoa(j ) + "_T",
+          standardT);
+    }
+
+  }
+
+  Cal->LoadParameterFromFile();
+
+
+
+  Long64_t nEntries = inputTree->GetEntries();
+  //Long64_t nEntries = 500;
+  int multX, multY;
+  double EX, EY;
+  int det, strip;
+  for (Long64_t i = 0; i < nEntries; ++i) {
+    std::cout << "\r" // Move the cursor to the beginning of the line
+          << "i/nEntries = " << i << " / " << nEntries
+          << std::setw(20) << std::setfill(' ') // Fill the rest of the line if needed
+          << std::flush; // Flush the stream to ensure output is updated immediately
+      inputTree->GetEntry(i);
+      multX = inputEvent->GetDSSDXEMult();
+      multY = inputEvent->GetDSSDYEMult();
+
+      for (int j = 0; j < multX; j++) {
+        //std::cout << "before : " << inputEvent->GetDSSDXEEnergy(j);
+        EX = fDSSD_X_E(inputEvent, j);
+        //std::cout << "after : " << EX << std::endl;
+        //std:cout << ", after EX = " << EX << std::endl;
+        det = inputEvent->GetDSSDXEDetectorNbr(j);
+        strip = inputEvent->GetDSSDXEStripNbr(j);
+        //std::cout << "in Looop, (det, strip) = (" << det << "," << strip << ")" << std::endl;
+
+        outputEvent->SetDSSDXE(true,det, strip, EX);
+      }
+
+      for (int j = 0; j < multY; j++) {
+        EY = fDSSD_Y_E(inputEvent, j);
+        det = inputEvent->GetDSSDYEDetectorNbr(j);
+        strip = inputEvent->GetDSSDYEStripNbr(j);
+        outputEvent->SetDSSDYE(true,det, strip, EY);
+      }
+      outputTree->Fill();
+      outputEvent->Clear();
+    }
+
+    outputFile->Write();
+    //sumEX->Draw();
+    outputFile->Close();
+    inputFile->Close();
+}
diff --git a/Projects/MUSETT/Scripts/ApplyCalibrationMusettData.hh b/Projects/MUSETT/Scripts/ApplyCalibrationMusettData.hh
new file mode 100644
index 0000000000000000000000000000000000000000..e6218e35042c3451e4e9ae43b2937acd22879d63
--- /dev/null
+++ b/Projects/MUSETT/Scripts/ApplyCalibrationMusettData.hh
@@ -0,0 +1,14 @@
+#include "TMUSETTData.h"
+#include "NPCalibrationManager.h"
+#include "NPDetectorFactory.h"
+#include "NPInputParser.h"
+#include "NPOptionManager.h"
+#include "NPSystemOfUnits.h"
+#include "RootInput.h"
+#include "RootOutput.h"
+#include "TAsciiFile.h"
+#include "NPOptionManager.h"
+
+const std::string calibrationFileName = "calibrations/Calibration222Ra.txt";
+const std::string inputFileName = "RootR/run_0271.root";
+const std::string outputFileName = "RootRCal/run_0271_cal.root";
diff --git a/Projects/MUSETT/Scripts/Calibration_CsI.C b/Projects/MUSETT/Scripts/Calibration_CsI.C
deleted file mode 100755
index 7c9cb3d2d0227a09170c779d61165ca613cc38e3..0000000000000000000000000000000000000000
--- a/Projects/MUSETT/Scripts/Calibration_CsI.C
+++ /dev/null
@@ -1,713 +0,0 @@
-#include "TCanvas.h"
-#include "TChain.h"
-#include "TCutG.h"
-#include "TF1.h"
-#include "TFile.h"
-#include "TH1F.h"
-#include "TH2F.h"
-#include "TLine.h"
-#include "TProfile.h"
-#include <fstream>
-#include <iostream>
-
-// TChain* chain = NULL;
-
-
-int CsI_Calib(){
-//  TFile* fcuts[4][16];
-//  TCutG* cuts[5][16];
-//  for (int i = 0; i < 4; i++) {
-//    for (int j = 0; j < 16; j++) {
-//      // if (i != 3) {
-//      fcuts[i][j] = new TFile(
-//          Form("./CUTS/cuts_csi/CUT_%i_%i.root", i + 1, j + 1), "READ");
-//      cuts[i][j]
-//          = (TCutG*)fcuts[i][j]->FindObjectAny("CUTG");
-//    }
-//  }
-
-
-	Int_t LocalMaxBinFit;
-	Int_t LocalMinBinFit;
-	Int_t GlobalMaxBinFit;
-	Int_t GlobalMinBinFit;
-	Int_t BinCounter = 0;
-	Int_t NbBinMax;
-	Int_t NbBin;
-
-  
-  TF1 *Gaus = new TF1("Gaus","gaus",-1000,1000);
-	TF1 *f1 = new TF1("f1","[0]+[1]*x+[2]*x^2",-1000,1000);
-  TChain* chain_tmp = new TChain("PhysicsTree");
-  chain_tmp->Add("../../Outputs/Analysis/r0153_cal_CsI.root");
-  
-  
-  TFile* fcut[4][16];
-  TCutG* cut[4][16];
-  double params[4][16][3];
-  for(int Telescope_Nb = 2; Telescope_Nb < 5; Telescope_Nb++){
-    for(int CsI_Nb = 1; CsI_Nb < 17; CsI_Nb++){
-      if(CsI_Nb < 17){
-        std::cout << "Telescope : " << Telescope_Nb << "    CsI : " << CsI_Nb << std::endl;
-        fcut[Telescope_Nb-1][CsI_Nb-1] = new TFile(Form("./CUT/CUT_CSI/CUT_%i_%i.root",Telescope_Nb,CsI_Nb));
-        cut[Telescope_Nb-1][CsI_Nb-1] = (TCutG*)fcut[Telescope_Nb-1][CsI_Nb-1]->FindObjectAny("CUTG");
-        cut[Telescope_Nb-1][CsI_Nb-1]->SetName(Form("CUT_%i_%i",CsI_Nb,Telescope_Nb));
-        chain_tmp->Draw(Form("M2_ECsI_from_deltaE:CsI_E>>h_%i_%i(100,,,100,,)",CsI_Nb,Telescope_Nb),Form("TelescopeNumber == %i && CsI_N == %i &&CUT_%i_%i",Telescope_Nb,CsI_Nb,CsI_Nb,Telescope_Nb),"col"); 
-	    
-        TH2F *histogram = (TH2F*)fcut[Telescope_Nb-1][CsI_Nb-1]->FindObjectAny(Form("h_%i_%i", CsI_Nb,Telescope_Nb));
-	      histogram->FitSlicesY(Gaus, -1000, 1000,0, "QG5",0);
-	      TH1D *histogram_1 = (TH1D*)fcut[Telescope_Nb-1][CsI_Nb-1]->Get(Form("h_%i_%i_1", CsI_Nb,Telescope_Nb));
-	      TH1D *histogram_0 = (TH1D*)fcut[Telescope_Nb-1][CsI_Nb-1]->Get(Form("h_%i_%i_0", CsI_Nb,Telescope_Nb));
-	      TH1D *histogram_2 = (TH1D*)fcut[Telescope_Nb-1][CsI_Nb-1]->Get(Form("h_%i_%i_2", CsI_Nb,Telescope_Nb));
-
-        LocalMaxBinFit = 1;
-	      LocalMinBinFit = 1;
-	      GlobalMaxBinFit = 1;
-	      GlobalMinBinFit = 1;
-        BinCounter = 0;
-	      NbBinMax = 0;
-	      NbBin = histogram_1->GetSize() - 2;
-	   
-        for(int k = 1; k <= NbBin; k++){
-	      	std::cout <<histogram_2->GetBinContent(k)<< std::endl;
-	      	if(histogram_2->GetBinContent(k) < 20){
-          
-	      		BinCounter += 1;
-	      		if(LocalMaxBinFit - LocalMinBinFit < BinCounter){
-	      			LocalMaxBinFit = k;
-	      		}
-	      	}
-	      	else{
-	      		if(BinCounter > NbBinMax){
-	      			NbBinMax = BinCounter;
-	      			GlobalMaxBinFit = LocalMaxBinFit;
-	      			GlobalMinBinFit = LocalMinBinFit;
-	      		}
-	      		BinCounter = 0;
-	      		LocalMaxBinFit = k;
-	      		LocalMinBinFit = k+1;
-
-	      	}
-          
-	      std::cout << "BinCounter : " << BinCounter << "\n";
-	      std::cout << "NbBinMax : " << NbBinMax << "\n";
-	      std::cout << "LocalMinBinFit " << LocalMinBinFit << "\n";
-	      std::cout << "LocalMaxBinFit " << LocalMaxBinFit << "\n";
-	      std::cout << "GlobalMinBinFit " << GlobalMinBinFit << "\n";
-	      std::cout << "GlobalMaxBinFit " << GlobalMaxBinFit << "\n";
-	    }
-	      if(BinCounter > NbBinMax){
-	      	NbBinMax = BinCounter;
-	      	GlobalMaxBinFit = LocalMaxBinFit;
-	      	GlobalMinBinFit = LocalMinBinFit;
-	    }
-	      std::cout << "BinCounter : " << BinCounter << "\n";
-	      std::cout << "NbBinMax : " << NbBinMax << "\n";
-	      std::cout << "LocalMinBinFit " << LocalMinBinFit << "\n";
-	      std::cout << "LocalMaxBinFit " << LocalMaxBinFit << "\n";
-	      std::cout << "GlobalMinBinFit " << GlobalMinBinFit << "\n";
-	      std::cout << "GlobalMaxBinFit " << GlobalMaxBinFit << "\n";
-
-
-
-	
-	
-	      histogram_1->Fit(f1,"","",histogram_1->GetBinCenter(GlobalMinBinFit),histogram_1->GetBinCenter(GlobalMaxBinFit));
-       params[Telescope_Nb-1][CsI_Nb-1][0] = f1->GetParameter(0);
-       params[Telescope_Nb-1][CsI_Nb-1][1] = f1->GetParameter(1);
-       params[Telescope_Nb-1][CsI_Nb-1][2] = f1->GetParameter(2);
-
-
-	
-	      TFile *fout = new TFile(Form("./calibration/CsI/histograms/CsI_%i_MM%i.root",CsI_Nb,Telescope_Nb),"RECREATE");
-	      histogram_0->Write("");
-	      histogram_1->Write("");
-	      histogram_2->Write("");
-	      fout->Close();
-      
-      }
-    }
-    std::ofstream myfile;
-    myfile.open(Form("./calibration/CsI/calib/CsI_MM%i.txt",Telescope_Nb),std::ios::in);
-    for(int CsI = 1; CsI <=16; CsI++){
-      myfile << Form("MUST2_T%i_CsI%i_E ",Telescope_Nb,CsI) << params[Telescope_Nb-1][CsI-1][0] << " " << params[Telescope_Nb-1][CsI-1][1] << " " << params[Telescope_Nb-1][CsI-1][2]  << "\n" ;
-    }
-    myfile.close();
-  }
-   
-  return 0;
-}
-
-//int CsI_Calib_test(){
-////  TFile* fcuts[4][16];
-////  TCutG* cuts[5][16];
-////  for (int i = 0; i < 4; i++) {
-////    for (int j = 0; j < 16; j++) {
-////      // if (i != 3) {
-////      fcuts[i][j] = new TFile(
-////          Form("./CUTS/cuts_csi/CUT_%i_%i.root", i + 1, j + 1), "READ");
-////      cuts[i][j]
-////          = (TCutG*)fcuts[i][j]->FindObjectAny("CUTG");
-////    }
-////  }
-//
-//
-//	Int_t LocalMaxBinFit;
-//	Int_t LocalMinBinFit;
-//	Int_t GlobalMaxBinFit;
-//	Int_t GlobalMinBinFit;
-//	Int_t BinCounter = 0;
-//	Int_t NbBinMax;
-//	Int_t NbBin;
-//
-//  
-//  TF1 *Gaus = new TF1("Gaus","gaus",-1000,1000);
-//	TF1 *f1 = new TF1("f1","[0]+[1]*x+[2]*x^2",-1000,1000);
-//  
-//  
-//  TFile* fcut[2];
-//  TCutG* cut[2];
-//  fcut[0] = new TFile("./CUT/CUT_CSI/CUT_1_3.root");
-//  fcut[1] = new TFile("./CUT/CUT_CSI/CUT_2_3.root");
-//  cut[0] = (TCutG*)fcut[0]->FindObjectAny("CUTG");
-//  cut[0]->SetName("CUT_1_3");
-//  cut[1] = (TCutG*)fcut[1]->FindObjectAny("CUTG");
-//  cut[1]->SetName("CUT_2_3");
-//  //cut[1] = (TCutG*)fcut[1]->FindObjectAny("CUTG");
-//  
-//  TChain* chain_tmp = new TChain("PhysicsTree");
-//  chain_tmp->Add("../../Outputs/Analysis/ana_r0161_calib.root");
-//  
-//  //auto c1 = new TCanvas();
-//  //chain_tmp->Draw("M2_ECsI_from_deltaE:CsI_E>>h1(1000,,,1000,,)","TelescopeNumber == 3 && CsI_N == 1","col",1000000);
-//  //auto c2 = new TCanvas();
-//  //chain_tmp->Draw("M2_ECsI_from_deltaE:CsI_E>>h2(1000,,,1000,,)","TelescopeNumber == 3 && CsI_N == 1 &&CUT_1_3","col",1000000); 
-//  //auto c3 = new TCanvas();
-//  //chain_tmp->Draw("M2_ECsI_from_deltaE:CsI_E>>h3(1000,,,1000,,)","TelescopeNumber == 3 && CsI_N == 2","col",1000000);
-//  auto c4 = new TCanvas();
-//  chain_tmp->Draw("M2_ECsI_from_deltaE:CsI_E>>h4(100,,,100,,)","TelescopeNumber == 3 && CsI_N == 2 &&CUT_2_3","col"); 
-//  
-//	TH2F *histogram = (TH2F*)fcut[1]->FindObjectAny(Form("h%i", 4));
-//	histogram->FitSlicesY(Gaus, -1000, 1000,0, "QG3",0);
-//	TH1D *histogram_1 = (TH1D*)fcut[1]->Get(Form("h%i_1",4));
-//	TH1D *histogram_0 = (TH1D*)fcut[1]->Get(Form("h%i_0",4));
-//	TH1D *histogram_2 = (TH1D*)fcut[1]->Get(Form("h%i_2",4));
-//	
-//  
-//  LocalMaxBinFit = 1;
-//	LocalMinBinFit = 1;
-//	GlobalMaxBinFit = 1;
-//	GlobalMinBinFit = 1;
-//	NbBinMax = 0;
-//	NbBin = histogram_1->GetSize() - 2;
-//
-//	for(int k = 1; k <= NbBin; k++){
-//		std::cout <<histogram_2->GetBinContent(k)<< std::endl;
-//		if(TMath::Abs(histogram_2->GetBinContent(k)) < 10){
-//		
-//			BinCounter += 1;
-//			if(LocalMaxBinFit < k){
-//				LocalMaxBinFit = k;
-//			}
-//		}
-//		else{
-//			if(BinCounter > NbBinMax){
-//				NbBinMax = BinCounter;
-//				GlobalMaxBinFit = LocalMaxBinFit;
-//				GlobalMinBinFit = LocalMinBinFit;
-//			}
-//			BinCounter = 0;
-//			LocalMaxBinFit = k;
-//			LocalMinBinFit = k + 1;
-//
-//		}
-//	}
-//
-//	std::cout << GlobalMaxBinFit << "   " << GlobalMinBinFit << "   "<< histogram_1->GetSize() << "  " << histogram_1->GetBinError(1) << "  " << histogram_1->GetBinCenter(1)  << std::endl;
-//
-//	
-//	
-//	histogram_1->Fit(f1,"","",histogram_1->GetBinCenter(GlobalMinBinFit),histogram_1->GetBinCenter(GlobalMaxBinFit));
-//  auto c5 = new TCanvas();
-//  histogram_1->Draw("");
-//	
-//  std::ofstream myfile;
-//  myfile.open ("./calibration/CsI/calib/CsI_MM3.txt");
-//  myfile << "Writing this to a file.\n";
-//  myfile << f1->GetParameter(0) << " " << f1->GetParameter(1) << " " << f1->GetParameter(2)  << "\n" ;
-//  myfile.close();
-//	TFile *fout = new TFile(Form("./calibration/CsI/histograms/CsI_%i_MM%i.root",2,3),"RECREATE");
-//	histogram_1->Write("");
-//	fout->Close();
-//  return 0;
-//}
-//
-
-
-////////////////////////////////////////////////////////////////////////////////
-/*void LoadCutsCsI() {
-  TFile* fcuts[4][16];
-  for (int i = 0; i < 4; i++) {
-    for (int j = 0; j < 16; j++) {
-      // if (i != 3) {
-      fcuts[i][j] = new TFile(
-          Form("./CUTS/cuts_csi/c_%i_%i.root", i + 1, j + 1), "READ");
-      cuts[i][j]
-          = (TCutG*)fcuts[i][j]->FindObjectAny(Form("c_%i_%i", i + 1, j + 1));
-    }
-    // else {
-    //   cuts[i][j] = NULL;
-    // }
-    // }
-  }
-}
-
-////////////////////////////////////////////////////////////////////////////////
-
-void CreateChain() {
-  TChain* chain_tmp = new TChain("PhysicsTree");
-  // chain->Add("../nptool_outputs/Analysis/testNoCalibCsI.root");
-  // chain->Add("../nptool_outputs/Analysis/CalibNoCsI14Nrun74.root");
-  // chain->Add("../nptool_outputs/Analysis/CalibFiles/CalibNoCsI14Orun122_4_corrected.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0119_0_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0120_0_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0121_0_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0122_0_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0122_1_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0122_2_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0122_3_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0122_4_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0123_0_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0126_0_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0128_0_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0129_0_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0130_0_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0130_1_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0130_2_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0131_0_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0132_0_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0132_1_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0132_2_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0132_3_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0132_4_pixel.root");
-  chain_tmp->Add("./NPOutput/PhyE744_0132_5_pixel.root");
-  TMust2Physics*       M2 = new TMust2Physics();
-  TBranch*             b_CsI_Ec;
-  std::vector<double>* CsI_Ec = 0;
-  TBranch*             b_CsI_th;
-  double               CsI_th = 0;
-
-  chain_tmp->SetBranchStatus("*", false);
-  chain_tmp->SetBranchStatus("MUST2", true);
-  chain_tmp->SetBranchStatus("CsI_th", true);
-  chain_tmp->SetBranchAddress("MUST2", &M2);
-  chain_tmp->SetBranchAddress("CsI_th", &CsI_th);
-  // chain_tmp->SetBranchAddress("CsI_Ec", &CsI_Ec, &b_CsI_Ec);
-
-  TFile* file = new TFile("CsIth_only.root", "RECREATE");
-  TTree* T    = new TTree("PhysicsTree", "CsIthOnly");
-
-  double csith, csiE, siE, csiN, six, siy, tele;
-  T->Branch("CsI_th", &csith);
-  T->Branch("CsI_E", &csiE);
-  T->Branch("Si_E", &siE);
-  T->Branch("CsI_N", &csiN);
-  T->Branch("Si_X", &six);
-  T->Branch("Si_Y", &siy);
-  T->Branch("TelescopeNumber", &tele);
-
-  unsigned int N = chain_tmp->GetEntries();
-
-  for (int i = 0; i < N; i++) {
-    chain_tmp->GetEntry(i);
-
-    // if (i % N == 0)
-    printf("%f\n", i / (double)N * 100);
-    if (M2->Si_E.size() == 1 && M2->CsI_E[0] > 0) {
-      csith = CsI_th;
-      csiE  = M2->CsI_E[0];
-      siE   = M2->Si_E[0];
-      csiN  = M2->CsI_N[0];
-      six   = M2->Si_X[0];
-      siy   = M2->Si_Y[0];
-      tele  = M2->TelescopeNumber[0];
-      T->Fill();
-    }
-  }
-  file->Write();
-}
-
-void LoadChain() {
-
-  // CreateChain();
-  chain = new TChain("PhysicsTree");
-  chain->Add("./CsIth_only.root");
-}
-
-////////////////////////////////////////////////////////////////////////////////
-
-void DrawCsIth_CsI_E() {
-
-  LoadChain();
-  LoadCutsCsI();
-
-  int N_Telescope = 4;
-  int N_CsI       = 16;
-
-  TCanvas* canvas[N_Telescope];
-
-  TFile* f = new TFile("./root_files/CsIthvsCsIE.root", "recreate");
-
-  for (int i = 0; i < 4; i++) {
-    canvas[i] = new TCanvas();
-    canvas[i]->Divide(4, 4);
-    for (int j = 0; j < 16; j++) {
-      std::cout << i + 1 << " " << j + 1 << std::endl;
-      canvas[i]->cd(j + 1);
-      // cuts[i];
-      // // if (i == 1 && j == 15) {
-      //   chain->Draw(
-      //       Form("CsI_th:CsI_E>>T%i_CsIth_CsI_%i(500,8000,10000, 200,0,40)",
-      //            i + 1, j + 1),
-      //       Form("TelescopeNumber==%i&&CsI_N==%i && "
-      //            "c_%i_%i&&ThetaLab<11&&TelescopeNumber@.size()==1",
-      //            i + 1, j + 1, i + 1, j + 1),
-      //       "");
-      // } else {
-      chain->Draw(
-          Form("CsI_th:CsI_E>>T%i_CsIth_CsI_%i(500,8000,10000, 200,0,40)",
-               i + 1, j + 1),
-          Form("TelescopeNumber==%i&&CsI_N==%i && "
-               "c_%i_%i&&TelescopeNumber@.size()==1",
-               i + 1, j + 1, i + 1, j + 1),
-          "");
-      // }
-    }
-  }
-  f->Write();
-}
-
-void DrawCsIth_CsI_E_Simu() {
-
-  TFile* file        = new TFile("NPOutput/Simu2CalibAnalysis.root", "OPEN");
-  TTree* PhysicsTree = (TTree*)file->FindObjectAny("PhysicsTree");
-  int    N_Telescope = 4;
-  int    N_CsI       = 16;
-
-  TCanvas* canvas[N_Telescope];
-
-  TFile* f = new TFile("./root_files/CsIthvsCsIE_Simu.root", "recreate");
-
-  for (int i = 0; i < 4; i++) {
-    canvas[i] = new TCanvas();
-    canvas[i]->Divide(4, 4);
-    for (int j = 0; j < 16; j++) {
-      std::cout << i + 1 << " " << j + 1 << std::endl;
-      canvas[i]->cd(j + 1);
-      // cuts[i];
-      PhysicsTree->Draw(
-          Form("CsI_th:CsI_E>>T%i_CsIth_CsI_%i(500,8000,10000, 200,0,40)",
-               i + 1, j + 1),
-          Form("TelescopeNumber==%i&&CsI_N==%i && "
-               "TelescopeNumber@.size()==1",
-               i + 1, j + 1),
-          "");
-    }
-  }
-  f->Write();
-}
-
-
-void InterpolCsI_E() {
-
-  TFile*   FileCsIth   = new TFile("./root_files/CsIthvsCsIE.root", "READ");
-  TFile*   FileInter   = new TFile("./root_files/CsI_Inter.root", "recreate");
-  int      N_Telescope = 4;
-  int      N_CsI       = 16;
-  TCanvas* canvas[N_Telescope];
-  TCanvas* c_residue[N_Telescope];
-
-  for (int i = 0; i < N_Telescope; i++) {
-    canvas[i] = new TCanvas();
-    canvas[i]->Divide(4, 4);
-
-    TH2F*     gh[4][16];
-    TProfile* gh_ProfileX[4][16];
-
-    for (int j = 0; j < N_CsI; j++) {
-      canvas[i]->cd();
-      canvas[i]->cd(j + 1);
-
-      gh[i][j] = (TH2F*)FileCsIth->FindObjectAny(
-          Form("T%i_CsIth_CsI_%i", i + 1, j + 1));
-      // gh[i][j]->Rebin2D(2, 2);
-
-      unsigned int nbinsX = gh[i][j]->GetXaxis()->GetNbins();
-      unsigned int nbinsY = gh[i][j]->GetYaxis()->GetNbins();
-      for (unsigned int r = 0; r < nbinsX; r++) {
-        for (unsigned int l = 0; l < nbinsY; l++) {
-          int counts = gh[i][j]->GetBinContent(r, l);
-          if (counts < 4) {
-            if (counts > 0)
-              gh[i][j]->SetBinContent(r, l, 0, 0);
-          }
-        }
-      }
-
-      gh[i][j]->ProfileX(Form("hT%i_ProfileX%i", i + 1, j + 1));
-
-      gh_ProfileX[i][j] = (TProfile*)gROOT->FindObjectAny(
-          Form("hT%i_ProfileX%i", i + 1, j + 1));
-      gh_ProfileX[i][j]->Draw();
-
-      TGraph*      gCal = new TGraph();
-      unsigned int Nx   = gh_ProfileX[i][j]->GetXaxis()->GetNbins();
-      int          iter = 0;
-      for (unsigned int k = 0; k < Nx; k++) {
-        double binCenter = gh_ProfileX[i][j]->GetXaxis()->GetBinCenter(k);
-        double val       = gh_ProfileX[i][j]->GetBinContent(k);
-        if (val > 0) {
-          gCal->SetPoint(iter, binCenter, val);
-          iter++;
-        }
-      }
-      gCal->SetName(Form("g%i_%i", i + 1, j + 1));
-      gCal->Write();
-    } // Loop CsI
-  } // Loop Telescope
-  FileInter->Write();
-}
-
-void FitCsI_E(string FIT_TYPE) {
-
-  TFile*   FileCsIth   = new TFile("./root_files/CsIthvsCsIE.root", "READ");
-  int      N_Telescope = 4;
-  int      N_CsI       = 16;
-  TCanvas* canvas[N_Telescope];
-  TCanvas* c_residue[N_Telescope];
-
-  for (int i = 0; i < N_Telescope; i++) {
-    canvas[i] = new TCanvas();
-    canvas[i]->Divide(4, 4);
-
-    c_residue[i] = new TCanvas;
-    c_residue[i]->Divide(4, 4);
-    TH2F*     gh[5][16];
-    TProfile* gh_ProfileX[5][16];
-    TH2F*     gh_PX[5][16];
-
-    double range_inf = 8000;
-    double range_sup = 10000;
-
-    TF1* f1;
-    TF1* fpol1;
-    TF1* fpol2;
-    TF1* fpol3;
-    TF1* fpol4;
-
-    TF1* f2[5][16];
-
-    fpol1 = new TF1("fpol1", "[0] + [1]*x", range_inf, range_sup);
-    fpol2 = new TF1("fpol2", "[0] + [1]*x + [2]*x*x", range_inf, range_sup);
-    fpol3 = new TF1("fpol3", "[0] + [1]*x + [2]*x*x + [3]*x*x*x", range_inf,
-                    range_sup);
-    fpol4 = new TF1("fpol4", "[0] + [1]*x + [2]*x*x + [3]*x*x*x + [4]*x*x*x*x",
-                    range_inf, range_sup);
-
-    // fpol1->SetParLimits(0, 0, 10);
-
-    double   p_pol1[2] = {0, 0};
-    double   p_pol2[3] = {0, 0, 0};
-    double   p_pol3[4] = {0, 0, 0, 0};
-    double   p_pol4[5] = {0, 0, 0, 0, 0};
-    ofstream Calib[5];
-
-    Calib[i].open(Form("Cal_CsI_E_MM%i.cal", i + 1));
-    for (int j = 0; j < N_CsI; j++) {
-      canvas[i]->cd();
-      canvas[i]->cd(j + 1);
-
-      if (FIT_TYPE == "pol1") {
-        f2[i][j] = new TF1(Form("f2%i", j + 1), "[0] + [1]*x", 0, 10000);
-      } else if (FIT_TYPE == "pol2") {
-        f2[i][j]
-            = new TF1(Form("f2%i", j + 1), "[0] + [1]*x + [2]*x*x", 0, 10000);
-      } else if (FIT_TYPE == "pol3") {
-        f2[i][j] = new TF1(Form("f2%i", j + 1),
-                           "[0] + [1]*x + [2]*x*x + [3]*x*x*x", 0, 10000);
-      } else if (FIT_TYPE == "pol4") {
-        f2[i][j] = new TF1(Form("f2%i", j + 1),
-                           "[0] + [1]*x + [2]*x*x + [3]*x*x*x + [4]*x*x*x*x", 0,
-                           10000);
-      }
-
-      gh[i][j] = (TH2F*)gDirectory->FindObjectAny(
-          Form("T%i_CsIth_CsI_%i", i + 1, j + 1));
-      gh[i][j]->Rebin2D(2, 2);
-      // gh[i][j]->SetMinimum(100);
-      // gh[i][j]->Draw();
-      // gPad->WaitPrimitive();
-      unsigned int nbinsX = gh[i][j]->GetXaxis()->GetNbins();
-      unsigned int nbinsY = gh[i][j]->GetYaxis()->GetNbins();
-      for (unsigned int r = 0; r < nbinsX; r++) {
-        for (unsigned int l = 0; l < nbinsY; l++) {
-          int counts = gh[i][j]->GetBinContent(r, l);
-          // if (counts < 1 && counts > 0) {
-          //   gh[i][j]->SetBinContent(r, l, 0, 0);
-          // }
-        }
-      }
-
-      gh[i][j]->ProfileX(Form("hT%i_ProfileX%i", i + 1, j + 1));
-      gh[i][j]->Clone(Form("hT%i_PX%i", i + 1, j + 1));
-
-      gh_ProfileX[i][j] = (TProfile*)gROOT->FindObjectAny(
-          Form("hT%i_ProfileX%i", i + 1, j + 1));
-
-      gh_PX[i][j]
-          = (TH2F*)gROOT->FindObjectAny(Form("hT%i_PX%i", i + 1, j + 1));
-      gh_PX[i][j]->GetXaxis()->SetRangeUser(0, 10000);
-
-      if (gh_PX[i][j]->GetEntries() > 0) {
-
-        if (FIT_TYPE == "pol1") {
-          gh_PX[i][j]->Fit(fpol1, "Q", "", range_inf, range_sup);
-          fpol1->GetParameters(&p_pol1[0]);
-        } else if (FIT_TYPE == "pol2") {
-          gh_PX[i][j]->Fit(fpol1, "Q", "", range_inf, range_sup);
-          fpol1->GetParameters(&p_pol1[0]);
-          fpol2->SetParameters(p_pol1[0], p_pol1[1], 0);
-          fpol2->SetParLimits(1, 0, p_pol1[1] + 5);
-          gh_PX[i][j]->Fit(fpol2, "Q", "", range_inf, range_sup);
-          fpol2->GetParameters(&p_pol2[0]);
-        } else if (FIT_TYPE == "pol3") {
-          gh_PX[i][j]->Fit(fpol1, "Q", "", range_inf, range_sup);
-          fpol1->GetParameters(&p_pol1[0]);
-          fpol2->SetParameters(p_pol1[0], p_pol1[1], 0);
-          fpol2->SetParLimits(1, 0, p_pol1[1] + 5);
-          gh_PX[i][j]->Fit(fpol2, "Q", "", range_inf, range_sup);
-          fpol2->GetParameters(&p_pol2[0]);
-          fpol3->SetParameters(p_pol2[0], p_pol2[1], p_pol2[2], 0);
-          gh_PX[i][j]->Fit(fpol3, "Q", "", range_inf, range_sup);
-          fpol3->GetParameters(&p_pol3[0]);
-        } else if (FIT_TYPE == "pol4") {
-          gh_PX[i][j]->Fit(fpol1, "Q", "", range_inf, range_sup);
-          fpol1->GetParameters(&p_pol1[0]);
-          fpol2->SetParameters(p_pol1[0], p_pol1[1], 0);
-          fpol2->SetParLimits(1, 0, p_pol1[1] + 5);
-          gh_PX[i][j]->Fit(fpol2, "Q", "", range_inf, range_sup);
-          fpol2->GetParameters(&p_pol2[0]);
-          fpol3->SetParameters(p_pol2[0], p_pol2[1], p_pol2[2], 0);
-          gh_PX[i][j]->Fit(fpol3, "Q", "", range_inf, range_sup);
-          fpol3->GetParameters(&p_pol3[0]);
-          fpol4->SetParameters(p_pol3[0], p_pol3[1], p_pol3[2], p_pol3[3], 0);
-          gh_PX[i][j]->Fit(fpol4, "Q", "", range_inf, range_sup);
-          fpol4->GetParameters(&p_pol4[0]);
-        }
-
-        if (FIT_TYPE == "pol1") {
-          f2[i][j]->SetParameters(&p_pol1[0]);
-        } else if (FIT_TYPE == "pol2") {
-          f2[i][j]->SetParameters(&p_pol2[0]);
-        } else if (FIT_TYPE == "pol3") {
-          f2[i][j]->SetParameters(&p_pol3[0]);
-        } else if (FIT_TYPE == "pol4") {
-          f2[i][j]->SetParameters(&p_pol4[0]);
-        }
-
-        gh_PX[i][j]->Draw();
-        // h[j]->Draw("col");
-        f2[i][j]->SetLineColor(kGreen);
-        f2[i][j]->Draw("same");
-
-        if (FIT_TYPE == "pol1") {
-          Calib[i] << "MUST2_T" << i + 1 << "_CsI" << j + 1 << "_E"
-                   << " " << p_pol1[0] << " " << p_pol1[1] << " " << endl;
-        } else if (FIT_TYPE == "pol2") {
-          Calib[i] << "MUST2_T" << i + 1 << "_CsI" << j + 1 << "_E"
-                   << " " << p_pol2[0] << " " << p_pol2[1] << " " << p_pol2[2]
-                   << endl;
-        } else if (FIT_TYPE == "pol3") {
-          Calib[i] << "MUST2_T" << i + 1 << "_CsI" << j + 1 << "_E"
-                   << " " << p_pol3[0] << " " << p_pol3[1] << " " << p_pol3[2]
-                   << " " << p_pol3[3] << endl;
-        } else if (FIT_TYPE == "pol4") {
-          Calib[i] << "MUST2_T" << i + 1 << "_CsI" << j + 1 << "_E"
-                   << " " << p_pol4[0] << " " << p_pol4[1] << " " << p_pol4[2]
-                   << " " << p_pol4[3] << " " << p_pol4[4] << endl;
-        }
-      } else {
-        if (FIT_TYPE == "pol1") {
-          Calib[i] << "MUST2_T" << i + 1 << "_CsI" << j + 1 << "_E"
-                   << " " << p_pol1[0] << " " << p_pol1[1] << " " << endl;
-        } else if (FIT_TYPE == "pol2") {
-          Calib[i] << "MUST2_T" << i + 1 << "_CsI" << j + 1 << "_E"
-                   << " " << p_pol2[0] << " " << p_pol2[1] << " " << p_pol2[2]
-                   << endl;
-        } else if (FIT_TYPE == "pol3") {
-          Calib[i] << "MUST2_T" << i + 1 << "_CsI" << j + 1 << "_E"
-                   << " " << p_pol3[0] << " " << p_pol3[1] << " " << p_pol3[2]
-                   << " " << p_pol3[3] << endl;
-        } else if (FIT_TYPE == "pol4") {
-          Calib[i] << "MUST2_T" << i + 1 << "_CsI" << j + 1 << "_E"
-                   << " " << p_pol4[0] << " " << p_pol4[1] << " " << p_pol4[2]
-                   << " " << p_pol4[3] << " " << p_pol4[4] << endl;
-        }
-      }
-
-      std::vector<double> v_iterator;
-      std::vector<double> v_residue;
-      // for (int k = 8200; k < 9000; k++) {
-      for (int k = range_inf; k < range_sup + 500; k++) {
-        double fit_val   = f2[i][j]->Eval(k);
-        double histo_bin = gh_ProfileX[i][j]->GetXaxis()->FindBin(k);
-        double histo_val = gh_ProfileX[i][j]->GetBinContent(histo_bin);
-        if (histo_val != 0) {
-          // v_iterator.push_back(k);
-          double calib_val = 0;
-          if (FIT_TYPE == "pol1") {
-            calib_val = p_pol1[0] + p_pol1[1] * k;
-          } else if (FIT_TYPE == "pol2") {
-            calib_val = p_pol2[0] + p_pol2[1] * k + p_pol2[2] * k * k;
-          } else if (FIT_TYPE == "pol3") {
-            calib_val = p_pol3[0] + p_pol3[1] * k + p_pol3[2] * k * k
-                        + p_pol3[3] * k * k * k;
-          } else if (FIT_TYPE == "pol4") {
-            calib_val = p_pol4[0] + p_pol4[1] * k + p_pol4[2] * k * k
-                        + p_pol4[3] * k * k * k + p_pol4[4] * k * k * k * k;
-          }
-          if (calib_val < 26 && calib_val > 6) {
-            v_iterator.push_back(calib_val);
-            v_residue.push_back((histo_val - fit_val) / calib_val * 100);
-            if (abs((fit_val - histo_val) / calib_val * 100) > 10) {
-              std::cout << "Telescope_" << i + 1 << " Csi_" << j + 1 << " FIT "
-                        << fit_val << " HISTO " << histo_val << " Residue :  "
-                        << ((histo_val - fit_val) / calib_val * 100) << " %"
-                        << std::endl;
-            }
-          }
-        }
-      }
-      c_residue[i]->cd(j + 1);
-      c_residue[i]->SetName(FIT_TYPE.c_str());
-      c_residue[i]->SetTitle(FIT_TYPE.c_str());
-      TGraph* g1 = new TGraph(v_iterator.size(), &v_iterator[0], &v_residue[0]);
-      double  min = g1->GetXaxis()->GetXmin();
-      double  max = g1->GetXaxis()->GetXmax();
-      TLine*  l   = new TLine(min, 0, max, 0);
-      l->SetLineWidth(1);
-      g1->SetLineWidth(2);
-      g1->SetLineColor(kRed);
-      g1->SetTitle(Form("T_%i CsI_%i", i + 1, j + 1));
-      // g1->GetXaxis()->SetLabelSize(0.07);
-      g1->GetYaxis()->SetLabelSize(0.07);
-      // g1->GetXaxis()->SetLabelOffset(0.03);
-      g1->GetYaxis()->SetLabelOffset(0.02);
-      // g1->GetYaxis()->SetRangeUser(-4, 4);
-      g1->Draw("");
-      l->Draw("same");
-    } // Loop CsI
-    Calib[i].close();
-  } // Loop Telescope
-}
-*/
diff --git a/Projects/MUSETT/Scripts/CompareSimuToData.cxx b/Projects/MUSETT/Scripts/CompareSimuToData.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..255b9eb3a09845b5aac3e97c6b493f70f5998867
--- /dev/null
+++ b/Projects/MUSETT/Scripts/CompareSimuToData.cxx
@@ -0,0 +1,368 @@
+#include <TFile.h>
+#include <TH2.h>
+#include <fstream>
+#include <iostream>
+#include <sstream>
+#include <TH2.h>
+#include <TMath.h>
+#include <TCanvas.h>
+#include <TH2.h>
+#include <TH1.h>
+#include <TStyle.h>
+#include <TString.h>
+#include <TText.h>
+#include <TLatex.h>
+
+double ComputeChi2_TH2(TH2* histData, TH2* histSimu) {
+    // Ensure the histograms have the same binning
+    if (histData->GetNbinsX() != histSimu->GetNbinsX() || histData->GetNbinsY() != histSimu->GetNbinsY()) {
+        std::cerr << "Histograms have different binning!" << std::endl;
+        return -1;
+    }
+
+    // Normalize the simulation histogram to the data histogram
+    double dataEntries = histData->GetEntries();
+    double simuEntries = histSimu->GetEntries();
+    if (simuEntries == 0) {
+        std::cerr << "Simulation histogram has no entries!" << std::endl;
+        return -1;
+    }
+    histSimu->Scale(dataEntries / simuEntries);
+
+    // Compute the Chi2
+    double chi2 = 0;
+    int nBinsX = histData->GetNbinsX();
+    int nBinsY = histData->GetNbinsY();
+    int nBins = 0;
+
+    for (int i = 1; i <= nBinsX; ++i) {
+        for (int j = 1; j <= nBinsY; ++j) {
+            double observed = histData->GetBinContent(i, j);
+            double expected = histSimu->GetBinContent(i, j);
+            double error_data = histData->GetBinError(i, j); // Assuming Poisson statistics
+            double error_simu = histSimu->GetBinError(i, j); // Assuming Poisson statistics
+            double error_tot = TMath::Sqrt(error_data*error_data + error_simu*error_simu);
+            //std::cout << "observed = " << observed << std::endl;
+            //std::cout << "expected = " << expected << std::endl;
+            //std::cout << "error = " << error_tot << std::endl;
+            //std::cout << "sqrt(observed) = " << (double) TMath::Sqrt(observed) << std::endl;
+            if (error_tot == 0) error_tot = 1; // Avoid division by zero, assume minimum error
+            chi2 += TMath::Power((observed - expected) / error_tot, 2);
+            nBins++;
+        }
+    }
+
+    return chi2 / nBins; // Normalized Chi2
+}
+
+double ComputeChi2_TH1(TH1* histData, TH1* histSimu) {
+    // Ensure the histograms have the same binning
+    if (histData->GetNbinsX() != histSimu->GetNbinsX()) {
+        std::cerr << "Histograms have different binning!" << std::endl;
+        return -1;
+    }
+
+    // Normalize the simulation histogram to the data histogram
+    double dataEntries = histData->GetEntries();
+    double simuEntries = histSimu->GetEntries();
+
+    // Compute the Chi2
+    double chi2 = 0;
+    int nBins = histData->GetNbinsX();
+
+    for (int i = 1; i <= nBins; ++i) {
+        double observed = histData->GetBinContent(i);
+        double expected = histSimu->GetBinContent(i);
+        double error_data = histData->GetBinError(i); // Assuming Poisson statistics
+        double error_simu = histSimu->GetBinError(i); // Assuming Poisson statistics
+        double error_tot = TMath::Sqrt(error_data * error_data + error_simu * error_simu);
+        if (error_tot == 0) error_tot = 1; // Avoid division by zero, assume minimum error
+        chi2 += TMath::Power((observed - expected) / error_tot, 2);
+    }
+
+    return chi2 / nBins; // Normalized Chi2
+}
+
+
+
+void PlotComparison(TH2* histData, TH2* histSimu, const std::string& outputFileName, double chi2, int detectorIndex) {
+    // Create a canvas for the full hit pattern comparison
+    TCanvas* canvasFull = new TCanvas(Form("canvasFull_%d", detectorIndex), "Comparison Canvas", 1400, 700);
+    canvasFull->Divide(2, 1); // Divide the canvas into two pads
+
+    // Plot the simulation histogram
+    canvasFull->cd(1);
+    histSimu->SetTitle(Form("DET%d, Simulation", detectorIndex));
+    histSimu->Draw();
+    histSimu->Rebin2D(2,2);
+    gPad->SetTopMargin(0.1);
+    gPad->SetRightMargin(0.05);
+    gPad->SetLeftMargin(0.12);
+    gPad->Modified();
+    histSimu->SetStats(0); // Enable statistics box
+    gStyle->SetStatX(0.4); // Set statistics box position
+    gStyle->SetStatY(0.9);
+
+    // Plot the data histogram
+    canvasFull->cd(2);
+    histData->SetTitle(Form("DET%d, Data", detectorIndex));
+    histData->Draw();
+    gPad->SetTopMargin(0.1);
+    gPad->SetRightMargin(0.05);
+    gPad->SetLeftMargin(0.12);
+    gPad->Modified();
+
+    histData->SetStats(0); // Enable statistics box
+    histData->Rebin2D(2,2);
+    gStyle->SetStatX(0.4); // Set statistics box position
+    gStyle->SetStatY(0.9);
+
+    canvasFull->cd();
+    TLatex latex;
+    latex.SetTextSize(0.03);
+    latex.SetNDC();
+    //latex.DrawLatex(0.5, 0.96, Form("#chi^{2} / N_{pixels}: %.4f", chi2));
+
+    // Save the full hit pattern comparison canvas as a PNG
+    std::string fullOutputFileName = outputFileName + "_full.png";
+    canvasFull->SaveAs(fullOutputFileName.c_str());
+    delete canvasFull;
+
+    // Create a canvas for the TH1 projections
+    TCanvas* canvasProjX = new TCanvas(Form("canvasProjX_%d", detectorIndex), "Projections Canvas X", 2400, 1200);
+    canvasProjX->Divide(4, 2); // Divide the canvas into 8 pads
+
+    int nBinsX = histData->GetNbinsX();
+
+    // Plot X-axis projections
+    for (int i = 0; i < 8; ++i) {
+        canvasProjX->cd(i + 1);
+        int binLow = i * (nBinsX / 8) + 1;
+        int binHigh = (i + 1) * (nBinsX / 8);
+
+        TH1D* projXData = histData->ProjectionX(Form("projXData_%d_%d", detectorIndex, i), binLow, binHigh);
+        TH1D* projXSimu = histSimu->ProjectionX(Form("projXSimu_%d_%d", detectorIndex, i), binLow, binHigh);
+
+        projXData->SetStats(0);
+        projXSimu->SetStats(0);
+
+
+        projXData->SetLineColor(kRed);
+        projXSimu->SetLineColor(kBlue);
+
+        projXData->SetFillColorAlpha(kRed, 0.5);
+        projXSimu->SetFillColorAlpha(kBlue, 0.5);
+
+        projXData->SetFillStyle(3007);
+        projXSimu->SetFillStyle(3006);
+
+        projXSimu->SetLineWidth(3);
+        projXData->SetLineWidth(3);
+
+        projXData->Rebin(4);
+        projXSimu->Rebin(4);
+
+        projXData->SetTitle(Form("X Proj Bins %d-%d", binLow, binHigh));
+
+
+        double chi2ProjX = ComputeChi2_TH1(projXData, projXSimu);
+
+
+
+
+        projXData->Draw("E HIST");
+        projXSimu->Draw("E HIST SAME");
+
+
+        // Add Chi2 value to the subplot
+        TPaveText* paveTextX =  new TPaveText(0.4, 0.2, 0.6, 0.4, "NDC");
+        paveTextX->AddText(Form("#chi^{2}: %.2f", chi2ProjX));
+        paveTextX->SetFillColor(0);
+        paveTextX->SetTextColor(kBlack);
+        paveTextX->Draw("same");
+        gStyle->SetLineScalePS(0.5);
+        gPad->Modified();
+    }
+
+    std::string projXOutputFileName = outputFileName + "_projX.png";
+    canvasProjX->SaveAs(projXOutputFileName.c_str());
+    delete canvasProjX;
+
+    TCanvas* canvasProjY = new TCanvas(Form("canvasProjY_%d", detectorIndex), "Projections Canvas Y", 2400, 1200);
+    canvasProjY->Divide(4, 2); // Divide the canvas into 8 pads
+
+    int nBinsY = histData->GetNbinsY();
+
+    // Plot Y-axis projections
+    for (int i = 0; i < 8; ++i) {
+        canvasProjY->cd(i + 1);
+        int binLow = i * (nBinsY / 8) + 1;
+        int binHigh = (i + 1) * (nBinsY / 8);
+
+        TH1D* projYData = histData->ProjectionY(Form("projYData_%d_%d", detectorIndex, i), binLow, binHigh);
+        TH1D* projYSimu = histSimu->ProjectionY(Form("projYSimu_%d_%d", detectorIndex, i), binLow, binHigh);
+
+
+        projYData->SetStats(0);
+        projYSimu->SetStats(0);
+
+
+        projYData->SetLineColor(kRed);
+        projYSimu->SetLineColor(kBlue);
+        projYData->SetFillColorAlpha(kRed, 0.9);
+        projYSimu->SetFillColorAlpha(kBlue, 0.5);
+        projYData->SetFillStyle(3003);
+        projYSimu->SetFillStyle(3006);
+        projYSimu->SetLineWidth(3);
+        projYData->SetLineWidth(3);
+
+        projYData->Rebin(4);
+        projYSimu->Rebin(4);
+
+
+        projYData->SetTitle(Form("Y Proj Bins %d-%d", binLow, binHigh));
+
+
+
+
+
+        projYData->Draw("E HIST");
+        projYSimu->Draw("E HIST SAME");
+
+        // Compute Chi2 for the projection
+        double chi2ProjY = ComputeChi2_TH1(projYData, projYSimu);
+        // Add Chi2 value to the subplot
+        TPaveText* paveTextY = new TPaveText(0.4, 0.2, 0.6, 0.4, "NDC");
+        paveTextY->AddText(Form("#chi^{2} : %.2f", chi2ProjY));
+        paveTextY->SetFillColor(0);
+        paveTextY->SetTextColor(kBlack);
+        paveTextY->Draw("same");
+        gStyle->SetLineScalePS(0.5);
+        gPad->Modified();
+    }
+
+    std::string projYOutputFileName = outputFileName + "_projY.png";
+    canvasProjY->SaveAs(projYOutputFileName.c_str());
+    delete canvasProjY;
+}
+
+
+void PlotEnergyCorrelation(TH2* histData, TH2* histSimu)
+{
+    // Create a canvas
+    TCanvas *c1 = new TCanvas("c1", "Energy Correlation", 1200, 600);
+
+    // Create two pads, one for each plot
+    c1->Divide(2, 1);
+
+    // On the left plot the TH2 of simulation
+    c1->cd(1);
+    gPad->SetLogz(); // Set log scale for the z-axis
+    histSimu->GetXaxis()->SetRangeUser(0, 8); // Set X-axis range
+    histSimu->GetYaxis()->SetRangeUser(0, 8); // Set Y-axis range
+    gPad->SetRightMargin(0.15); // To avoid cutting off the color scale
+    histSimu->SetTitle("SIMULATION"); // Set the title
+    histSimu->GetXaxis()->SetTitle("E_{1} [MeV]"); // Set X-axis label
+    histSimu->GetYaxis()->SetTitle("E_{2} [MeV]"); // Set Y-axis label
+    histSimu->Draw("COLZ");
+
+    // Print the number of entries for debugging
+    std::cout << "Nentries (Simulation) = " << histSimu->GetEntries() << std::endl;
+    std::cout << "Nentries (Data) = " << histData->GetEntries() << std::endl;
+
+    // Rescale number of entries of Data to match those of Simulation
+    double scaleFactor = histSimu->GetEntries() / histData->GetEntries();
+    //histData->Scale(5*scaleFactor);
+
+    // Plot data on the right with the same color scale
+    c1->cd(2);
+    gPad->SetRightMargin(0.15); // To avoid cutting off the color scale
+    gPad->SetLogz(); // Set log scale for the z-axis
+    histData->GetXaxis()->SetRangeUser(0, 8); // Set X-axis range
+    histData->GetYaxis()->SetRangeUser(0, 8); // Set Y-axis range
+    histData->SetStats(0);
+    histData->SetTitle("DATA"); // Set the title
+    histData->GetXaxis()->SetTitle("E_{1} [MeV]"); // Set X-axis label
+    histData->GetYaxis()->SetTitle("E_{2} [MeV]"); // Set Y-axis label
+    histData->Draw("COLZ");
+
+    // Set the color scale the same for both histograms
+    double min = std::min(histSimu->GetMinimum(), histData->GetMinimum());
+    double max = std::max(histSimu->GetMaximum(), histData->GetMaximum());
+    histSimu->SetStats(0);
+    //histSimu->GetZaxis()->SetRangeUser(min, max);
+    //histData->GetZaxis()->SetRangeUser(min, max);
+
+    // Update the canvas to draw the histograms
+    c1->Update();
+    c1->Modified(); // Ensure the canvas is updated and modified
+}
+
+
+void CompareSimuToData() {
+    // Open the simulation file
+    std::string dataFileName = "/Users/lh270370/Software/nptool/Outputs/Analysis/Data/222Ra/histoSanity_R275.root";
+    std::string simuFileName = "/Users/lh270370/Software/nptool/Outputs/Analysis/Simu/Isolde/full_test_beam/histoSanity_222Ra_beam_test_AlGrid__5e6offsetTargetXm3__offsetTargetY6_0__offsetBeamXm6__offsetBeamYm150__sigmaBeamX0_2__sigmaBeamY0_2__holderShift0_5_physics.root";
+    TFile* simuFile = TFile::Open(simuFileName.c_str());
+    if (!simuFile) {
+        std::cerr << "Failed to open simulation file: " << simuFileName << std::endl;
+        return;
+    }
+
+    TDirectory *simuGeometryDir = (TDirectory*)simuFile->Get("Geometry/HitPattern");
+
+
+    // Open the data file
+    TFile* dataFile = TFile::Open(dataFileName.c_str());
+    if (!dataFile) {
+        std::cerr << "Failed to open data file: " << dataFileName << std::endl;
+        simuFile->Close();
+        return;
+    }
+
+    TDirectory *dataGeometryDir = (TDirectory*)dataFile->Get("Geometry/HitPattern");
+
+    TDirectory *dataEnergyCorrelationDir = (TDirectory*)dataFile->Get("Energy correlation");
+    TDirectory *simuEnergyCorrelationDir = (TDirectory*)simuFile->Get("Energy correlation");
+
+
+    TH2F *histSimuEnergy = (TH2F*)simuEnergyCorrelationDir->Get("E1E2_all_diffDet");
+    TH2F *histDataEnergy = (TH2F*)dataEnergyCorrelationDir->Get("E1E2_all_diffDet");
+
+
+    PlotEnergyCorrelation(histDataEnergy,histSimuEnergy);
+    std::cout << "After plot " << std::endl;
+    //std::ofstream outFile("Chi2_results_2.txt", std::ios_base::app);
+
+
+    /*
+    // Loop over each detector and compare histograms
+    for (int i = 0; i < 4; ++i) {
+        // Construct histogram names
+        std::string histName = "HitPattern_Det" + std::to_string(i);
+        std::string dataHistName = histName;
+
+        // Retrieve histograms
+        TH2 *histSimu = (TH2*)simuGeometryDir->Get(histName.c_str());
+        TH2 *histData = (TH2*)dataGeometryDir->Get(dataHistName.c_str());
+        if (!histSimu || !histData) {
+            std::cerr << "Histograms not found for: " << histName << std::endl;
+            continue;
+        }
+
+        // Calculate Chi2
+        double chi2 = ComputeChi2_TH2(histData, histSimu);
+        std::cout << "Chi2 for " << histName << ": " << chi2 << std::endl;
+
+        // Log the Chi2 value
+        //outFile << "Detector " << i << " Chi2: " << chi2 << std::endl;
+
+        // Plot comparison
+        std::string outputFileName = "Beam_simu_data_DET" + std::to_string(i) + "_comparison";
+        PlotComparison(histData, histSimu, outputFileName, chi2, i);
+    }
+    */
+    //outFile.close();
+    //simuFile->Close();
+    //dataFile->Close();
+}
diff --git a/Projects/MUSETT/Scripts/IsoldeMerging3.cc b/Projects/MUSETT/Scripts/IsoldeMerging3.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6daad5bdf41b0e2c078388c322f90deda120b392
--- /dev/null
+++ b/Projects/MUSETT/Scripts/IsoldeMerging3.cc
@@ -0,0 +1,362 @@
+#include "IsoldeMerging3.hh"
+
+
+
+void readConfig(const std::string& filename) {
+    std::ifstream configFile(filename);
+    if (!configFile.is_open()) {
+        std::cerr << "Unable to open config file: " << filename << std::endl;
+        exit(EXIT_FAILURE);
+    }
+    std::string line;
+    while (std::getline(configFile, line)) {
+        std::istringstream iss(line);
+        std::string key;
+        if (std::getline(iss, key, '=')) {
+            std::string value;
+            if (std::getline(iss, value)) {
+                if (key == "t_max") {
+                    t_max = std::stod(value);
+                } else if (key == "coinc_time") {
+                    coinc_time = std::stod(value);
+                } else if (key == "T_ADC") {
+                    T_ADC = std::stod(value);
+                } else if (key == "FileName") {
+                    FileName = value;
+                }
+            }
+        }
+    }
+    configFile.close();
+}
+
+void CreateFileNames(const std::string& FileName, std::string& InputFileName,
+                     std::string& TstampFileName, std::string& MusettFileName)
+{
+    // Construct input file name
+    InputFileName = FileName + ".root";
+
+    // Construct output file name with Timestamp
+    std::ostringstream TStampFileNameStream;
+    TStampFileNameStream << FileName << "_TSTAMP_T" << t_max << ".root";
+    TstampFileName = TStampFileNameStream.str();
+
+    // Construct output file name with MusettFileName
+    std::ostringstream MusettFileNameStream;
+    MusettFileNameStream << FileName << "_MUSETT_tau" << coinc_time << "_T" << t_max << "_TADC" << T_ADC << ".root";
+    MusettFileName = MusettFileNameStream.str();
+}
+
+
+void CreateTempFile(const std::string& inputFileName)
+{
+  TFile *inputFile = TFile::Open(inputFileName.c_str(), "READ");
+  if (!inputFile || inputFile->IsZombie()) {
+      std::cerr << "Failed to open input file!" << std::endl;
+      return;
+  }
+  TTree *tree = static_cast<TTree*>(inputFile->Get("SimulatedTree"));
+  if (!tree) {
+      std::cerr << "Failed to get tree from input file!" << std::endl;
+      inputFile->Close();
+      return;
+  }
+  tree->SetBranchStatus("*", 0);  // Disable all branches initially
+  tree->SetBranchStatus("MUSETT", 1);  // Enable the MUSETT branch only
+
+  TMUSETTData* Mumu = nullptr;
+  tree->SetBranchAddress("MUSETT", &Mumu);
+
+  // Create a temporary file to store unsorted data
+  TFile* tempFile = new TFile("temp.root", "RECREATE");
+  TTree* tempTree = new TTree("EventTree", "Analysis Data");
+
+  MusettSimuEvent* event = new MusettSimuEvent();
+  tempTree->Branch("Event", &event);
+
+  Long64_t nEntries = tree->GetEntries();
+  int multX, multY;
+  for (Long64_t i = 0; i < nEntries; ++i) {
+      tree->GetEntry(i);
+      multX = Mumu->GetDSSDXEMult();
+      multY = Mumu->GetDSSDYEMult();
+
+      for (int j = 0; j < multX; j++) {
+          event->Clear();
+          event->FillEvent_X(Mumu, j);
+          tempTree->Fill();
+      }
+
+      for (int j = 0; j < multY; j++) {
+          event->Clear();
+          event->FillEvent_Y(Mumu, j);
+          tempTree->Fill();
+      }
+  }
+  tempTree->Write();
+  tempFile->Close();
+  inputFile->Close();
+}
+
+
+void ApplyTimeStamp(const std::string& inputFileName, const std::string& TstampFileName) {
+    // Open the input file and get the simulated tree
+    if (std::filesystem::exists(TstampFileName)) {
+      std::cout << "Output file " << TstampFileName << " already exists. Skipping TStamp." << std::endl;
+    return;
+    }
+
+    CreateTempFile(inputFileName);
+
+    std::cout << "After temp file" << std::endl;
+
+    TFile* readTempFile = new TFile("temp.root", "READ");
+    TTree* tempTree = static_cast<TTree*>(readTempFile->Get("EventTree"));
+
+    MusettSimuEvent* event = nullptr;
+    tempTree->SetBranchAddress("Event", &event);
+
+    Long64_t nEntries = tempTree->GetEntries();
+
+    TFile* outputFile = new TFile(TstampFileName.c_str(), "RECREATE");
+    TTree* outputTree = new TTree("SortedEventTree", "Events Sorted by Timestamp");
+    outputFile->cd();
+
+    MusettSimuEvent* sortedEvent = nullptr;
+    outputTree->Branch("Event", &sortedEvent);
+
+
+    std::vector<MusettSimuEvent*> events;
+    events.reserve(nEntries);
+
+    for (Long64_t i = 0; i < nEntries; ++i) {
+        tempTree->GetEntry(i);
+        events.push_back(new MusettSimuEvent(*event));
+    }
+    //readTempFile->Close();
+    // Sort events by timestamp
+    std::sort(events.begin(), events.end(), TimeComparator());
+
+    // Open output file to store sorted data
+
+
+    // Fill the tree with sorted events
+    for (auto& evt : events) {
+        sortedEvent = evt;
+        outputTree->Fill();
+    }
+    outputTree->Write();
+    outputFile->Close();
+
+
+    // Clean up the copied events
+    for (auto& evt : events) {
+        delete evt;
+    }
+
+    // Remove the temporary file from disk
+    readTempFile->Close();
+    //std::remove("temp.root");
+}
+
+
+void InitializeVectors()
+{
+  SameTimeEvents.resize(2);  // Resize for two types: X and Y
+  HitStrips.resize(2); // 0 == Y, 1 == X
+  for (int i = 0; i < 2; ++i) { //Loop on X/Y
+      SameTimeEvents[i].resize(NDet);
+      for (int j = 0; j < NDet; ++j) {//Loop on Detectors
+          SameTimeEvents[i][j].resize(NStrip);
+          }
+      }
+}
+
+
+void ClearVectors()
+{
+  for(int iX = 0; iX <2 ; iX++)
+  {
+    for (auto& pair : HitStrips[iX])
+    {
+      SameTimeEvents[iX][pair.first][pair.second]->Clear();
+    }
+  }
+
+  HitStrips[0].clear();
+  HitStrips[1].clear();
+
+
+
+}
+
+void TreatCoincEvent(MusettSimuEvent* event)
+{
+  int det = event->GetDet();
+  int strip = event->GetStrip();
+  std::pair<int, int> detStripPair = {det, strip};
+
+  // Check if the detector and strip combination has not been hit
+  if (HitStrips[event->IsX()].find(detStripPair) == HitStrips[event->IsX()].end())
+  {
+    HitStrips[event->IsX()].insert({det, strip});
+    SameTimeEvents[event->IsX()][det][strip] = event;
+  } else{
+    double baseEnergy = SameTimeEvents[event->IsX()][det][strip]->GetEnergy();
+    double baseTime = SameTimeEvents[event->IsX()][det][strip]->GetTotalTime();
+    double sumEnergy = sumE2(baseEnergy,event->GetEnergy(), event->GetTotalTime()-baseTime);
+    //std::cout << "*** det, strip = " << det << "," << strip ;
+
+    SameTimeEvents[event->IsX()][det][strip]->SetEnergy(sumEnergy);
+    //std::cout << ", sumEnergy =" << SameTimeEvents[event->IsX()][det][strip]->GetEnergy() << std::endl;
+  }
+}
+
+
+void CorrelateEvents(const std::string& TstampFileName, const std::string& MusettFileName )
+{
+  // OOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOO
+  //            Open input and output file
+  // OOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOO
+
+  TFile* inputFile = new TFile(TstampFileName.c_str(), "READ");
+  TTree* inputTree = (TTree*)inputFile->Get("SortedEventTree");
+
+  MusettSimuEvent* inputEvent = new MusettSimuEvent;
+
+  inputTree->SetBranchAddress("Event", &inputEvent);
+
+
+  TFile* outputFile = new TFile(MusettFileName.c_str(), "RECREATE");
+  outputFile->cd();
+
+  TTree* outputTree = new TTree("SimulatedTree", "Correlated Data");
+  TMUSETTData* Mumu = new TMUSETTData();
+  outputTree->Branch("MUSETT",&Mumu);
+
+
+  // OOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOO
+  //            Set Variables for the loop
+  // OOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOOOOO00Ooo00ooO0OOO
+
+  const int nEntries = (const int) inputTree->GetEntries();
+  //const int nEntries = (const int) 1e6;
+  inputTree->GetEntry(0);
+  double lastTime = inputEvent->GetTotalTime();
+
+  std::vector<bool> treated(nEntries, false);  // Initialize all entries to false
+  std::pair<int, int> det_strip_pair;
+  int entryNumber;
+  int det, strip;
+  double baseEnergy, baseTime, dt, totalEnergy;
+  bool checkHit ;
+  MusettSimuEvent* clonedEvent = nullptr;
+  MusettSimuEvent* CorrEvent = nullptr;
+
+  int Ncoinc = 0;
+  int Nx, Ny;
+  Nx = 0;
+  Ny = 0;
+  for (int i = 0; i < nEntries; i++) {
+    //std::cout << std::endl;
+    std::cout << "\r" // Move the cursor to the beginning of the line
+          << "i/nEntries = " << i << " / " << nEntries
+          << std::setw(20) << std::setfill(' ') // Fill the rest of the line if needed
+          << std::flush; // Flush the stream to ensure output is updated immediately
+    inputTree->GetEntry(i);
+    if (treated[i])
+    {
+      //std::cout <<  "-> already treated, continue" << std::endl;
+      continue;
+    }
+    //std::cout << "T = " << inputEvent->GetTotalTime() << std::endl;
+    //std::cout << "∆T = " << inputEvent->GetTotalTime()-lastTime << std::endl;
+    //std::cout << "(det, strip ) = (" << inputEvent->GetDet() << "," << inputEvent->GetStrip()  << "), ";
+    if (inputEvent->GetTotalTime() - lastTime < coinc_time) {
+      //std::cout << "-> in coinc " << std::endl;
+      clonedEvent = new MusettSimuEvent(*inputEvent);
+      TreatCoincEvent(clonedEvent);
+      treated[i] = true;
+      Ncoinc++;
+    } else {
+      //std::cout << "😡 Ncoinc = " << Ncoinc << std::endl;
+      Ncoinc = 0;
+      lastTime = inputEvent->GetTotalTime();
+
+      for(int j = i; j < nEntries; ++j)
+      {
+        inputTree->GetEntry(j);
+        if(inputEvent->GetTotalTime()-lastTime  > T_ADC) break;
+        det = inputEvent->GetDet();
+        strip = inputEvent->GetStrip();
+        det_strip_pair = {det, strip};
+        checkHit = HitStrips[inputEvent->IsX()].find(det_strip_pair) != HitStrips[inputEvent->IsX()].end() ;
+        if(checkHit && !treated[j])
+        {
+          dt = inputEvent->GetTotalTime()-SameTimeEvents[inputEvent->IsX()][det][strip]->GetTotalTime();
+          if(dt < T_ADC)
+          {
+            //std::cout << std::endl;
+            if (inputEvent->IsX() == 1) {
+                //std::cout << "XXXXX";
+                Nx++;
+            } else {
+                //std::cout << "YYYYY";
+                Ny++;
+            }
+            //std::cout << ", dt =" << dt ;
+
+            totalEnergy = SameTimeEvents[inputEvent->IsX()][det][strip]->GetEnergy();
+            //std::cout << ", E1 = " << totalEnergy << ", E2 =" << inputEvent->GetEnergy();
+            totalEnergy = sumE2(totalEnergy,inputEvent->GetEnergy(),dt);
+
+            //std::cout << ", total energy = " << totalEnergy << std::endl;
+            //std::cout << std::endl;
+            SameTimeEvents[inputEvent->IsX()][det][strip]->SetEnergy(totalEnergy);
+            treated[j] = true;
+          }
+        }
+        //TreatADCSum(inputEvent,treated,j);
+      }
+      for (auto& Xpair : HitStrips[1])
+      {
+        CorrEvent = SameTimeEvents[1][Xpair.first][Xpair.second];
+        Mumu->SetDSSDXT(false, CorrEvent->GetDet(), CorrEvent->GetStrip(), CorrEvent->GetTime());
+        Mumu->SetDSSDXE(false, CorrEvent->GetDet(), CorrEvent->GetStrip(), CorrEvent->GetEnergy());
+        Mumu->SetDSSDX_Interstrip(CorrEvent->IsInterstrip());
+        Mumu->SetDSSDX_Tstamp(CorrEvent->GetTimeStamp());
+
+      }
+      for (auto& Ypair : HitStrips[0])
+      {
+        //std::cout << "EY = " << CorrEvent->GetEnergy() << std::endl;
+        CorrEvent = SameTimeEvents[0][Ypair.first][Ypair.second];
+        //std::cout << "EY = " << CorrEvent->GetEnergy() << std::endl;
+        Mumu->SetDSSDYT(false, CorrEvent->GetDet(), CorrEvent->GetStrip(), CorrEvent->GetTime());
+        Mumu->SetDSSDYE(false, CorrEvent->GetDet(), CorrEvent->GetStrip(), CorrEvent->GetEnergy());
+        Mumu->SetDSSDY_Interstrip(CorrEvent->IsInterstrip());
+        Mumu->SetDSSDY_Tstamp(CorrEvent->GetTimeStamp());
+      }
+
+      outputTree->Fill();
+      Mumu->Clear();
+      ClearVectors();
+
+      i -= 1; // Decrement to revisit this entry on next loop
+    }
+}
+  outputFile->Write();
+  inputFile ->Close();
+  outputFile->Close();
+
+}
+
+
+void IsoldeMerging3()
+{
+  std::string InputFileName, TstampFileName, MusettDataFileName;
+  CreateFileNames(FileName, InputFileName, TstampFileName, MusettDataFileName);
+  ApplyTimeStamp(InputFileName, TstampFileName);
+  InitializeVectors();
+  CorrelateEvents(TstampFileName, MusettDataFileName);
+}
diff --git a/Projects/MUSETT/Scripts/IsoldeMerging3.hh b/Projects/MUSETT/Scripts/IsoldeMerging3.hh
new file mode 100644
index 0000000000000000000000000000000000000000..9840031c8a16c89254c4ee7eaf7e5337401e2d2f
--- /dev/null
+++ b/Projects/MUSETT/Scripts/IsoldeMerging3.hh
@@ -0,0 +1,164 @@
+#ifndef ISOLDEMERGING3_HH
+#define ISOLDEMERGING3_HH
+
+#include <string>
+#include <fstream>
+#include <iostream>
+#include <sstream>
+
+#include <TCanvas.h>
+#include <TGraph.h>
+#include <random>
+#include <unistd.h>
+
+#include <vector>
+#include <algorithm>
+#include <chrono>
+#include <cmath>
+#include <set>
+#include <utility> // For std::pair
+#include <cstdio>  // for std::remove()
+#include <filesystem>
+#include <iomanip> // For std::setw and std::setfill
+
+#include "TStopwatch.h"
+#include "TFile.h"
+#include "TTree.h"
+#include <TTreeIndex.h>
+#include "TMath.h"
+#include "TMUSETTData.h"
+#include "TH1F.h"
+#include <TRandom3.h>
+
+
+
+
+
+// Declare the global variables as extern
+double t_max = 1e+09;
+double coinc_time = 1000;
+double T_ADC = 1000;
+std::string FileName = "/Users/lh270370/Software/nptool/Outputs/Simulation/Isolde/BranchingRatio_test/222Ra_ChangedBR_p3_1e6__energyBeam30";
+
+// Function to read the configuration file
+void readConfig(const std::string& filename);
+
+
+
+class MusettSimuEvent {
+private:
+    // Private data members
+    double energy;
+    double time;
+    double totalTime;
+    double timeStamp;
+    int strip;
+    int det;
+    bool x;
+    bool y;
+    bool treated;
+    bool interstrip;
+
+public:
+    // Constructor
+    MusettSimuEvent() : energy(0), time(0), totalTime(0),timeStamp(0), strip(0), det(0), x(false), y(false), treated(false), interstrip(false) {}
+
+    // Public setter methods
+    void SetEnergy(double e) { energy = e; }
+    void SetTime(double t) { time = t; }
+    void SetTimeStamp(double t) { timeStamp = t; }
+    void SetTotalTime(double tt) { totalTime = tt; }
+    void SetStrip(int s) { strip = s; }
+    void SetDet(int d) { det = d; }
+    void SetX(bool flag) { x = flag; }
+    void SetY(bool flag) { y = flag; }
+    void SetInterstrip(bool i){interstrip = i;}
+    void SetTreated(bool t){treated = t;}
+
+    void AddEnergy(double e) { energy += e; }
+
+    // Public getter methods
+    double GetEnergy() const { return energy; }
+    double GetTime() const { return time; }
+    double GetTimeStamp() const { return timeStamp; }
+    double GetTotalTime() const { return totalTime; }
+    int GetStrip() const { return strip; }
+    int GetDet() const { return det; }
+    bool IsX() const { return x; }
+    bool IsY() const { return y; }
+    bool IsInterstrip() const { return interstrip; }
+    bool IsEmpty() const {return x == y;}
+    bool IsTreated() const {return treated ;}
+
+    // FillEvent methods for X and Y events
+    void FillEvent_X(const TMUSETTData* Mumu, int index) {
+        SetEnergy(Mumu->GetDSSDXEEnergy(index));
+        SetTime(Mumu->GetDSSDXTTime(index));
+        SetTimeStamp(t_max*Mumu->GetDSSDX_TStamp(index));
+        SetTotalTime(GetTime() + t_max * Mumu->GetDSSDX_TStamp(index));
+        SetStrip(Mumu->GetDSSDXEStripNbr(index));
+        SetDet(Mumu->GetDSSDXEDetectorNbr(index));
+        SetX(true);
+        SetY(false);
+        SetInterstrip(Mumu->GetDSSDX_Interstrip(index));
+    }
+
+    void FillEvent_Y(const TMUSETTData* Mumu, int index) {
+        SetEnergy(Mumu->GetDSSDYEEnergy(index));
+        SetTime(Mumu->GetDSSDYTTime(index));
+        SetTimeStamp(t_max*Mumu->GetDSSDY_TStamp(index));
+        SetTotalTime(GetTime() + t_max * Mumu->GetDSSDY_TStamp(index));
+        SetStrip(Mumu->GetDSSDYEStripNbr(index));
+        SetDet(Mumu->GetDSSDYEDetectorNbr(index));
+        SetX(false);
+        SetY(true);
+        SetInterstrip(Mumu->GetDSSDY_Interstrip(index));
+    }
+
+    void Clear(){
+      SetEnergy(0);
+      SetTime(0);
+      SetTimeStamp(0);
+      SetTotalTime(0);
+      SetStrip(0);
+      SetDet(0);
+      SetX(false);
+      SetY(false);
+      SetTreated(false);
+      SetInterstrip(false);
+    }
+};
+
+class TimeComparator {
+public:
+    bool operator() (const MusettSimuEvent* lhs, const MusettSimuEvent* rhs) const {
+        return lhs->GetTotalTime() < rhs->GetTotalTime();
+    }
+};
+
+double sumE2(double E1, double E2, double dt) {
+  // E1 = trigger signal
+  // E2 = piling-up signal
+  // dt = T(E2) - T(E1)
+  if(dt < T_ADC)
+    //return E1 + E2;
+
+    return  E1 + E2*(1-TMath::Exp(5*(dt/T_ADC-1)))/(1-TMath::Exp((double)-5));
+  else
+    return E1;
+}
+
+double now() {
+    return std::chrono::duration_cast<std::chrono::duration<double>>(std::chrono::high_resolution_clock::now().time_since_epoch()).count();
+}
+
+
+const int NDet = 4; // Assuming there are 4 detectors
+const int NStrip = 128; // Assuming each detector has 128 strips
+constexpr int MaxMultiplicity = 10; // Maximum number of events you expect in any vector
+
+
+std::vector<std::vector<std::vector<MusettSimuEvent*>>> SameTimeEvents;
+std::vector<std::set<std::pair<int, int>>> HitStrips;
+
+#endif // ISOLDEMERGING3_HH
diff --git a/Projects/MUSETT/Scripts/IsoldeMerging3_cc.d b/Projects/MUSETT/Scripts/IsoldeMerging3_cc.d
new file mode 100644
index 0000000000000000000000000000000000000000..1604c469e87b14f29107b41e68d1fde84e2dc3f0
--- /dev/null
+++ b/Projects/MUSETT/Scripts/IsoldeMerging3_cc.d
@@ -0,0 +1,101 @@
+
+# DO NOT DELETE
+
+./IsoldeMerging3_cc.so: IsoldeMerging3.hh
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TCanvas.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TPad.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualPad.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TObject.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/Rtypes.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/RtypesCore.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RConfig.hxx
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/RVersion.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RVersion.hxx
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/RConfigure.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/DllImport.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/strtok.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/strlcpy.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/snprintf.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TGenericClassInfo.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TSchemaHelper.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TIsAProxy.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualIsAProxy.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TStorage.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVersionCheck.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/RVersion.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAttLine.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAttFill.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAttPad.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TQObject.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TList.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TSeqCollection.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TCollection.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TIterator.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TString.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TMathBase.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RStringView.hxx
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TypeTraits.hxx
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualRWMutex.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualMutex.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RRangeCast.hxx
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RSpan.hxx
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/span.hxx
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualQConnection.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TInterpreter.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TDataType.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TDictionary.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TNamed.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ESTLType.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TInterpreterValue.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/GuiTypes.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/Buttons.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAttBBox2D.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAttCanvas.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TGraph.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAttMarker.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVectorFfwd.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVectorDfwd.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TFitResultPtr.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TStopwatch.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TFile.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/Compression.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TDirectoryFile.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TDirectory.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TClass.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TObjArray.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TUUID.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TBuffer.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/Bytes.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TDatime.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TUrl.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RConcurrentHashColl.hxx
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TRWSpinLock.hxx
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TSpinMutex.hxx
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TTree.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/TIOFeatures.hxx
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayD.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TArray.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayI.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualTreePlayer.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TBranch.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TBranchCacheInfo.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TBits.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TTreeIndex.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TVirtualIndex.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TMath.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TError.h
+./IsoldeMerging3_cc.so: /Users/lh270370/Software/nptool/NPLib/include/TMUSETTData.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TH1F.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TH1.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAxis.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TAttAxis.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayC.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayS.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TArrayF.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/Foption.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/EExecutionPolicy.hxx
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TRandom3.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/TRandom.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/Math/TRandomEngine.h
+./IsoldeMerging3_cc.so: /opt/homebrew/Cellar/root/6.30.04/include/root/RVersion.h /opt/homebrew/Cellar/root/6.30.04/include/root/ROOT/RConfig.hxx /opt/homebrew/Cellar/root/6.30.04/include/root/TClass.h /opt/homebrew/Cellar/root/6.30.04/include/root/TDictAttributeMap.h /opt/homebrew/Cellar/root/6.30.04/include/root/TInterpreter.h /opt/homebrew/Cellar/root/6.30.04/include/root/TROOT.h /opt/homebrew/Cellar/root/6.30.04/include/root/TBuffer.h /opt/homebrew/Cellar/root/6.30.04/include/root/TMemberInspector.h /opt/homebrew/Cellar/root/6.30.04/include/root/TError.h /opt/homebrew/Cellar/root/6.30.04/include/root/RtypesImp.h /opt/homebrew/Cellar/root/6.30.04/include/root/TIsAProxy.h /opt/homebrew/Cellar/root/6.30.04/include/root/TFileMergeInfo.h /opt/homebrew/Cellar/root/6.30.04/include/root/TCollectionProxyInfo.h /opt/homebrew/Cellar/root/6.30.04/bin/rootcling
+IsoldeMerging3_cc__ROOTBUILDVERSION= 6.30/04
diff --git a/Projects/MUSETT/Scripts/IsoldeMerging3_cc.so b/Projects/MUSETT/Scripts/IsoldeMerging3_cc.so
new file mode 100755
index 0000000000000000000000000000000000000000..dad88329a5e4fe85ca4a49fb084eaeba82442c58
Binary files /dev/null and b/Projects/MUSETT/Scripts/IsoldeMerging3_cc.so differ
diff --git a/Projects/MUSETT/Scripts/IsoldeMerging3_cc_ACLiC_dict.cxx_tmp_18441 b/Projects/MUSETT/Scripts/IsoldeMerging3_cc_ACLiC_dict.cxx_tmp_18441
new file mode 100644
index 0000000000000000000000000000000000000000..ac2200bce223d9e4d815718a25f1e46723099055
--- /dev/null
+++ b/Projects/MUSETT/Scripts/IsoldeMerging3_cc_ACLiC_dict.cxx_tmp_18441
@@ -0,0 +1,4 @@
+// Do NOT change. Changes will be lost next time file is generated
+
+#define R__DICTIONARY_FILENAME dIUsersdIlh270370dISoftwaredInptooldIProjectsdIMUSETTdIScriptsdIIsoldeMerging3_cc_ACLiC_dict
+#define R__NO_DEPRECATION
diff --git a/Projects/MUSETT/Scripts/IsoldeMerging3_cc_ACLiC_dict072acccb5a_dictContent.h b/Projects/MUSETT/Scripts/IsoldeMerging3_cc_ACLiC_dict072acccb5a_dictContent.h
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/Scripts/IsoldeMerging3_cc_ACLiC_dict4159b2423f_dictUmbrella.h b/Projects/MUSETT/Scripts/IsoldeMerging3_cc_ACLiC_dict4159b2423f_dictUmbrella.h
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/Scripts/IsoldeMerging3_cc_ACLiC_dict_rdict.pcm b/Projects/MUSETT/Scripts/IsoldeMerging3_cc_ACLiC_dict_rdict.pcm
new file mode 100644
index 0000000000000000000000000000000000000000..b0e6e987692c5ef8fdaf85069ae8965b98028cd5
Binary files /dev/null and b/Projects/MUSETT/Scripts/IsoldeMerging3_cc_ACLiC_dict_rdict.pcm differ
diff --git a/Projects/MUSETT/Scripts/NPConvert.cxx b/Projects/MUSETT/Scripts/NPConvert.cxx
index 023b32a14ad8c2244ddeb1bca1556fdf9bfc8be1..717f987c6f34fb4a81ed8c564a04c64a0ffeee6f 100644
--- a/Projects/MUSETT/Scripts/NPConvert.cxx
+++ b/Projects/MUSETT/Scripts/NPConvert.cxx
@@ -34,24 +34,24 @@ void NPConvert(const TString runNr, const unsigned short int NDet, const unsigne
     const bool SetMap = false;
 
     TChain *Chain ;
-    TString path = "./RootRaw/";
+    TString path = "RootRaw/";
     Chain = new TChain("T");
-    std::cout << "Initial file " << path+runNr+".root" << std::endl;
-    Chain->Add(path+runNr+"*.root");
+    std::cout << "Initial file " << path+ "run_0" +runNr+"_label.root" << std::endl;
+    Chain->Add(path + "run_0" +runNr+"_label.root");
     ULong64_t GetEntries = Chain->GetEntries();
     if (!GetEntries){
         printf("ERROR in the Chain !! \n");
         return;
     }
     TTreeReader TreeReader(Chain);
-    
+
     UShort_t MUMU_D;
     TTreeReaderArray<UShort_t> *MUMU_C_;
     //for(unsigned int i = 0; i < NDet; i++){
     //    for(unsigned int j = 0; j < 512; j++){
     //        //std::cout << "test " << i << " " << j << std::endl;
     //        MUMU_C_[i][j] = new TTreeReaderArray<UShort_t>(TreeReader,Form("Event"));
-    //    } 
+    //    }
     //}
     TTreeReaderValue<std::vector<UShort_t>> *label_= new TTreeReaderValue<std::vector<UShort_t>>(TreeReader,"label");
     TTreeReaderValue<std::vector<UShort_t>> *value_= new TTreeReaderValue<std::vector<UShort_t>>(TreeReader,"value");
@@ -87,7 +87,7 @@ void NPConvert(const TString runNr, const unsigned short int NDet, const unsigne
     //outtree->Branch("TML_UP",&TML_UP,"TML_UP/s");
     //outtree->Branch("TML",&TML,"TML/s");
     //outtree->Branch("DATATRIG",&DATATRIG,"DATATRIG/s");
-    
+
     outtree->Branch("MUSETT", "TMUSETTData", &MUMUData);
 
     clock_t start = clock(), current, end;
@@ -122,8 +122,8 @@ void NPConvert(const TString runNr, const unsigned short int NDet, const unsigne
         //TimeX = **TimeX_;
         // std::cout << "test 2 " << StripX.size() << " " << EnergyX.size() << " " << TimeX.size() << std::endl;
         // std::cout << "test 2 " << StripY.size() << " " << EnergyY.size() << " " << TimeY.size() << std::endl;
-        //unsigned short multX = DetX.size(); 
-        //unsigned short multY = DetY.size(); 
+        //unsigned short multX = DetX.size();
+        //unsigned short multY = DetY.size();
         // std::cout << "test 3" << std::endl;
         /*for(unsigned short i = 0; i < multX; i++){
             // std::cout << "test 4 " << i << std::endl;
@@ -139,17 +139,29 @@ void NPConvert(const TString runNr, const unsigned short int NDet, const unsigne
                 MUMUData->SetDSSDYT(SetMap,DetY[i], StripY[i], TimeY[i/2]);
         }
                     //    else
-                    //        MUMUData->SetDSSDYE(SetMap,i+FirstDet,(j-256)/2 + 1,MUMU_D); 
+                    //        MUMUData->SetDSSDYE(SetMap,i+FirstDet,(j-256)/2 + 1,MUMU_D);
                     //else{
                     //    if(j < 256)
                     //        MUMUData->SetDSSDXT(SetMap,i+FirstDet,(j-1)/2 + 1,MUMU_D);
                     //    else
-                    //        MUMUData->SetDSSDYT(SetMap,i+FirstDet,(j-256-1)/2 + 1,MUMU_D); 
-    
+                    //        MUMUData->SetDSSDYT(SetMap,i+FirstDet,(j-256-1)/2 + 1,MUMU_D);
+
     */
-    
+
     label = **label_;
-    for(unsigned int i = 0; i < label.size(); i++) 
+    int TRIG = 0;
+    unsigned int k = 0;
+    while (k< label.size() && label[k] != 5)
+    {
+      k++;
+      if( k< label.size() && label[k] == 5)
+      {
+        value = **value_;
+        TRIG = value[k];
+      }
+    }
+    MUMUData->SetTRIGGER(TRIG);
+    for(unsigned int i = 0; i < label.size(); i++)
         if(label[i] >= FIRSTMUSETTDAT)
             {
                 label[i] -= FIRSTMUSETTDAT;
@@ -169,7 +181,7 @@ void NPConvert(const TString runNr, const unsigned short int NDet, const unsigne
                     else{
                         MUMUData->SetDSSDXT(SetMap,det_numb, strip_numb,value[i]);
                     }
-                } 
+                }
                 else{
                     if(val_E){
                         MUMUData->SetDSSDYE(SetMap,det_numb, strip_numb - NBSTRIP,value[i]);
@@ -177,16 +189,24 @@ void NPConvert(const TString runNr, const unsigned short int NDet, const unsigne
                     else{
                         MUMUData->SetDSSDYT(SetMap,det_numb, strip_numb - NBSTRIP,value[i]);
                     }
-                } 
+                }
 
             }
     outtree->Fill();
     MUMUData->Clear();
     }
-    TFile *fout = new TFile(Form("./RootR/%s.root",runNr.Data()),"RECREATE");
+    TFile *fout = new TFile(Form("./RootR/run_0%s.root",runNr.Data()),"RECREATE");
     //TFile *fout = new TFile(Form("./RootR/run_0273_0276.root"),"RECREATE");
     std::cout << ">>File Openned : " << "\n"<< fout->GetName() << "\n" << std::endl;
     outtree->Write();
     fout->Close();
 
-}
\ No newline at end of file
+}
+
+
+void NPConvertSeveral(int RunMin, int RunMax) {
+    for (int k = RunMin; k <= RunMax; ++k) {
+        std::string filename =  std::to_string(k);
+        NPConvert(filename.c_str(), 4, 0, 3);
+    }
+}
diff --git a/Projects/MUSETT/Scripts/SanityCheckV2.cxx b/Projects/MUSETT/Scripts/SanityCheckV2.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..1bb9059ebf2847c45b2c20f8dfd31d2d2db5f7df
--- /dev/null
+++ b/Projects/MUSETT/Scripts/SanityCheckV2.cxx
@@ -0,0 +1,73 @@
+#include "SanityCheckV2.hh"
+
+
+void FillHit(const TMUSETTPhysics* event, const AnalysisConfig& config)
+{
+  config.EventMultHist->Fill(event->EventMultiplicity);
+  for(int j = 0; j < event->EventMultiplicity; j++)
+  {
+    if((event->DSSD_E[j]>config.E_min) && (event->DSSD_E[j] < config.E_max))
+    {
+      if(!config.isDead(event->DetectorNumber[j],event->DSSD_X[j],event->DSSD_Y[j]))
+      {
+        config.HitPatterns[event->DetectorNumber[j]]->Fill(event->DSSD_X[j], event->DSSD_Y[j]);
+        config.Xhits[event->DetectorNumber[j]]->Fill(event->DSSD_X[j]);
+        config.Yhits[event->DetectorNumber[j]]->Fill(event->DSSD_Y[j]);
+      }
+    }
+    config.SumEnergy[event->DetectorNumber[j]]->Fill(event->DSSD_E[j]);
+  }
+}
+
+void FillCorrelation(const TMUSETTPhysics* event, const AnalysisConfig& config)
+{
+  int mult = event->EventMultiplicity;
+  int detA, detB;
+  for(int j1 = 0; j1 < mult; j1++)
+  {
+    detA = event->DetectorNumber[j1];
+    for(int j2 = j1+1; j2 < mult; j2++)
+    {
+      detB = event->DetectorNumber[j2];
+      config.E1E2_detAdetB[detA][detB]->Fill(event->DSSD_E[j1],event->DSSD_E[j2]);
+      config.E1E2_all->Fill(event->DSSD_E[j1],event->DSSD_E[j2]);
+      if(detA!=detB)
+      {
+        config.E1E2_all_diffDet->Fill(event->DSSD_E[j1],event->DSSD_E[j2]);
+      }
+    }
+  }
+}
+
+void AnalyzeData(const AnalysisConfig& config) {
+
+    TFile *inputFile = new TFile(config.inputFileName.c_str(), "READ"); // Open your ROOT file for reading
+    TTree *tree = (TTree*)inputFile->Get("PhysicsTree");  // Replace "your_tree_name" with the name of your TTree
+
+    TObjArray* branches = tree->GetListOfBranches();
+    TMUSETTPhysics* Mumu = new TMUSETTPhysics();
+    TBranch *branch = tree->GetBranch("MUSETT");
+    branch->SetAddress(&Mumu);
+
+
+    Long64_t nEntries = tree->GetEntries();
+
+    for (Long64_t i = 0; i < nEntries; ++i) {
+        tree->GetEntry(i);
+        FillHit(Mumu,config);
+        if(Mumu->EventMultiplicity>=2)FillCorrelation(Mumu,config);
+      }
+}
+
+void SanityCheckV2() {
+    AnalysisConfig config;
+    config.inputFileName = "/Users/lh270370/Software/nptool/Outputs/Analysis/Simu/Isolde/energy_beam_test/222Ra_fixedGeometry_1e6__energyBeam50_physics.root";
+    config.outputFileName = "/Users/lh270370/Software/nptool/Outputs/Analysis/Simu/Isolde/energy_beam_test/histoSanity_222Ra_fixedGeometry_1e6__energyBeam50_physics.root";
+    config.E_min = 6.4;
+    config.E_max = 6.6;
+    config.tau = 100;
+    config.T = 1e+09;
+    AnalyzeData(config);
+    config.WriteHistograms();
+    config.ClearHistograms();
+}
diff --git a/Projects/MUSETT/Scripts/SanityCheckV2.hh b/Projects/MUSETT/Scripts/SanityCheckV2.hh
new file mode 100644
index 0000000000000000000000000000000000000000..a78844b9a355a969444c735ab5a0df7c3e098bb6
--- /dev/null
+++ b/Projects/MUSETT/Scripts/SanityCheckV2.hh
@@ -0,0 +1,209 @@
+// AnalysisConfig.hh
+#include <TFile.h>
+#include <TTree.h>
+#include <TH2F.h>
+#include <cmath> // For sqrt
+#include <map>
+#include <algorithm> // For std::min and std::max
+#include <TCanvas.h>
+#include <iostream>
+#include "TGraphErrors.h"
+#include "TString.h"
+#include "TLegend.h"
+#include <iostream>
+#include <fstream>
+#include <string>
+#include <filesystem>
+#include <string>
+#include <set>
+#include "TMUSETTPhysics.h"
+
+#ifndef ANALYSISCONFIG_HH
+#define ANALYSISCONFIG_HH
+
+const double Emin_222Ra = 6.46;
+const double Emax_222Ra = 6.50;
+
+const double Emin_220Ra = 7.40;
+const double Emax_220Ra = 7.50;
+
+
+
+class AnalysisConfig {
+public:
+    std::string inputFileName;
+    std::string outputFileName;
+    double E_min;
+    double E_max;
+    double tau;
+    double T;
+    int NDet ;
+    int NStrip;
+
+    std::vector<TH2F*> HitPatterns;
+    std::vector<TH1F*> Xhits;
+    std::vector<TH1F*> Yhits;
+    std::vector<TH1F*> SumEnergy;
+    std::vector<std::vector<TH2F*>> E1E2_detAdetB;
+    TH2F* E1E2_all;
+    TH2F* E1E2_all_diffDet;
+    TH1F* EventMultHist;
+    std::map<std::pair<int, int>, int> detPairToIndexMap;
+
+    std::map<int, std::set<int>> deadStripsX = {
+        {0, {10, 26, 28}},
+        {1, {}},
+        {2, {104}},
+        {3, {22}}
+    };
+
+    // Declaration for dead strips along the Y axis
+    std::map<int, std::set<int>> deadStripsY = {
+        {0, {30}},
+        {1, {12}},
+        {2, {118}},
+        {3, {}}
+    };
+    AnalysisConfig() : E_min(0), E_max(100), tau(1), T(100), NDet(4), NStrip(128) {
+        InitializeHistograms();
+    }
+
+    ~AnalysisConfig() {
+        ClearHistograms();
+    }
+
+    void InitializeHistograms() {
+        // Initialize the histograms for each detector
+        //ClearHistograms();
+        EventMultHist = new TH1F("EventMultiplicities","Multiplicity of events", 20,0,20);
+        for (int det = 0; det < NDet; ++det) {
+            HitPatterns.push_back(new TH2F(Form("HitPattern_Det%d", det),
+                                           Form("Spatial Hit Distribution for Detector %d;Strip X;Strip Y", det),
+                                           NStrip, 0, NStrip, NStrip, 0, NStrip));
+            Xhits.push_back(new TH1F(Form("Xhits_Det%d", det),
+                                     Form("X Hits Distribution for Detector %d;Strip X;Hits Count", det),
+                                     NStrip, 0, NStrip));
+            Yhits.push_back(new TH1F(Form("Yhits_Det%d", det),
+                                     Form("Y Hits Distribution for Detector %d;Strip Y;Hits Count", det),
+                                     NStrip, 0, NStrip));
+            SumEnergy.push_back(new TH1F(Form("SumEnergy_Det%d", det),
+                                     Form("Summed Energy for Hits in Detector %d;Energy (MeV);Event Count", det),
+                                     400000, 0, 20));
+        }
+
+        E1E2_detAdetB.resize(NDet);
+        for (int detA = 0; detA < NDet; detA++) {
+          E1E2_detAdetB[detA].resize(NDet);
+          }
+        // Initialize the 2D histograms for energy correlations between different detectors
+        for (int detA = 0; detA < NDet; detA++) {
+            for (int detB = detA; detB < NDet; detB++) {
+                std::string histName = Form("E1E2_det%d_det%d", detA, detB);
+                std::string histTitle = Form("Energy Correlation between Detectors %d and %d;Energy E%d (MeV);Energy E%d (MeV)", detA, detB, detA, detB);
+                E1E2_detAdetB[detA][detB] = new TH2F(histName.c_str(), histTitle.c_str(), 200, 0, 20, 200, 0, 20);
+            }
+        }
+        E1E2_all = new TH2F("E1E2_all", "Energy correlation betwenn all detectors;Energy E__A( MeV);Energy E_B (MeV)", 200,0,20,200,0,20);
+        E1E2_all_diffDet = new TH2F("E1E2_all_diffDet", "Energy correlation betwenn all detectors detA!= detB;Energy E_A (MeV);Energy E_B (MeV)", 200,0,20,200,0,20);
+    }
+
+    void ClearHistograms() {
+        // Properly delete all histogram objects to avoid memory leaks
+        for (auto& hist : HitPatterns) delete hist;
+        for (auto& hist : Xhits) delete hist;
+        for (auto& hist : Yhits) delete hist;
+        for (auto& hist : SumEnergy) delete hist;
+        for(int detA = 0; detA < NDet ;  ++detA)
+        {
+          E1E2_detAdetB[detA].clear();
+        }
+
+        HitPatterns.clear();
+        Xhits.clear();
+        Yhits.clear();
+        SumEnergy.clear();
+        E1E2_detAdetB.clear();
+        //delete E1E2_all;
+    }
+
+    void WriteHistograms  () {
+        // Open a file with the provided output file name
+        TFile outputFile(outputFileName.c_str(), "RECREATE");
+
+        if (!outputFile.IsOpen()) {
+            std::cerr << "Error: File could not be opened for writing: " << outputFileName << std::endl;
+            return;
+        }
+
+        EventMultHist->Write();
+        // Create the main groups (directories)
+        TDirectory* geometry = outputFile.mkdir("Geometry");
+        TDirectory* allEnergy = outputFile.mkdir("All Energy");
+        TDirectory* energyCorrelation = outputFile.mkdir("Energy correlation");
+
+        // Create subgroups for "Geometry"
+        TDirectory* hitPatternDir = geometry->mkdir("HitPattern");
+        TDirectory* xhitsDir = geometry->mkdir("Xhits");
+        TDirectory* yhitsDir = geometry->mkdir("Yhits");
+
+        // Create subgroups for "Energy correlation"
+        TDirectory* twoByTwoDir = energyCorrelation->mkdir("2by2");
+
+
+
+        // Writing "Geometry" histograms
+        hitPatternDir->cd();
+        for (auto& hist : HitPatterns) hist->Write();
+
+        xhitsDir->cd();
+        for (auto& hist : Xhits) hist->Write();
+
+        yhitsDir->cd();
+        for (auto& hist : Yhits) hist->Write();
+
+        // Writing "All Energy" histograms
+        allEnergy->cd();
+        for (auto& hist : SumEnergy) hist->Write();
+
+        // Writing "Energy correlation" histograms
+        twoByTwoDir->cd();
+        for(int detA = 0; detA < NDet ;  ++detA)
+        {
+          for(int detB = detA; detB < NDet ;  ++detB)
+          {
+            E1E2_detAdetB[detA][detB]->Write();
+          }
+        }
+
+        energyCorrelation->cd();
+        E1E2_all->Write();
+        E1E2_all_diffDet->Write();
+
+
+        outputFile.Close();
+        std::cout << "Histograms successfully written to " << outputFileName << std::endl;
+    }
+
+    bool isDead(int detector, int stripX, int stripY) const {
+        bool isXDead = false, isYDead = false;
+
+        // Check if the X strip is dead
+        auto itX = deadStripsX.find(detector);
+        if (itX != deadStripsX.end()) {
+            isXDead = itX->second.find(stripX) != itX->second.end();
+        }
+
+        // Check if the Y strip is dead
+        auto itY = deadStripsY.find(detector);
+        if (itY != deadStripsY.end()) {
+            isYDead = itY->second.find(stripY) != itY->second.end();
+        }
+
+        // Return true if either X or Y strip is dead
+        return isXDead || isYDead;
+    }
+
+
+};
+
+#endif // ANALYSISCONFIG_HH
diff --git a/Projects/MUSETT/Scripts/merge_config.txt b/Projects/MUSETT/Scripts/merge_config.txt
new file mode 100644
index 0000000000000000000000000000000000000000..6b8cf2827ea150edc9b336345e126af32ab6f33f
--- /dev/null
+++ b/Projects/MUSETT/Scripts/merge_config.txt
@@ -0,0 +1,4 @@
+t_max=1e+09
+coinc_time=100
+T_ADC=1000
+FileName=/Users/lh270370/Software/nptool/Outputs/Simulation/Isolde/TestDeadLayer/222Ra__1e6__DL_0_2um_offsetTargetXm3__offsetTargetY6_0__offsetBeamXm6__offsetBeamYm150__sigmaBeamX0_2__sigmaBeamY0_2__holderShift0_5
diff --git a/Projects/MUSETT/Scripts/plot_RDM.py b/Projects/MUSETT/Scripts/plot_RDM.py
new file mode 100644
index 0000000000000000000000000000000000000000..276a9e0689892a76f9947aef98017cd56f9bd8bd
--- /dev/null
+++ b/Projects/MUSETT/Scripts/plot_RDM.py
@@ -0,0 +1,53 @@
+import matplotlib.pyplot as plt
+import numpy as np
+
+plt.rcParams['font.size'] = 16
+
+# Read data from the file
+data_file = "/Users/lh270370/Software/nptool/Outputs/Analysis/Isolde/TEST/RdmCoinc_alpha_efficiency_ALL.txt"  # Replace with the path to your file
+
+# Initialize lists to hold the data
+detector_pairs = []
+observed_counts = []
+observed_errors = []
+expected_counts = []
+expected_errors = []
+
+# Read and parse the data from the file
+with open(data_file, 'r') as file:
+    for line in file:
+        if 'Detector Pair' in line:
+            pair_info = line.split('(')[-1].split(')')[0].replace('Detectors: ', '').strip()
+            pair = pair_info.split(', ')
+            detector_pairs.append((pair[0], pair[1]))
+        elif 'Observed Counts' in line:
+            observed, error = line.split(':')[1].split(' +/- ')
+            observed_counts.append(float(observed.strip()))
+            observed_errors.append(float(error.strip()))
+        elif 'Expected Counts' in line:
+            expected, error = line.split(':')[1].split(' +/- ')
+            expected_counts.append(float(expected.strip()))
+            expected_errors.append(float(error.strip()))
+
+# Convert lists to numpy arrays for plotting
+x = np.arange(len(detector_pairs))  # the label locations
+
+# Plotting
+plt.figure(figsize=(10, 6))
+
+# Observed Counts Bar Graph
+plt.bar(x, observed_counts, yerr=observed_errors, capsize=5, label='Observed Counts', color='skyblue', alpha=1)
+
+# Expected Counts Plot on top of the bars
+plt.errorbar(x, expected_counts, yerr=expected_errors, fmt='^', capsize=5, label='Expected Counts', color='salmon', linestyle='None')
+
+print(np.array(observed_counts)/np.array(expected_counts))
+# Labels and Title
+plt.ylabel('Counts')
+plt.title('Observed vs Expected Counts with Uncertainties')
+plt.xticks(x, [f'({a}, {b})' for a, b in detector_pairs])
+plt.legend()
+plt.grid(True, linestyle='--', alpha=0.5)
+
+plt.tight_layout()
+plt.show()
diff --git a/Projects/MUSETT/analyse_data.py b/Projects/MUSETT/analyse_data.py
new file mode 100755
index 0000000000000000000000000000000000000000..7dec69aee0d7b292ab9f3d9dc10065a857fe7f59
--- /dev/null
+++ b/Projects/MUSETT/analyse_data.py
@@ -0,0 +1,94 @@
+#!/opt/homebrew/opt/python@3.11/libexec/bin/python
+import argparse
+import os
+import subprocess
+import sys
+import time
+import shutil
+
+def parse_arguments():
+    parser = argparse.ArgumentParser()
+    parser.add_argument("-IF", dest="input_file", help="Name of the file to analyse", default="default_file")
+    parser.add_argument("-OF", dest="output_file", help="Name of the output file ", default="default_file")
+    parser.add_argument("-OD", dest="output_dir", help="Name of the output directory ", default="default_dir")
+    parser.add_argument("-C", dest="calib_file", help="Name of the calibration file", default="CalibrationSimu")
+    return parser.parse_args()
+
+def ensure_directory_exists(directory):
+    os.makedirs(directory, exist_ok=True)
+
+def check_and_handle_existing_file(file_path):
+    if os.path.isfile(file_path):
+        print(f"{file_path} exists.")
+        user_input = input("Do you want to remove the existing output file and proceed? (y/n): ")
+        if user_input.lower() == 'y':
+            print("Removing existing output file...")
+            os.remove(file_path)
+            print("Removed existing file. Proceeding with the analysis...")
+        else:
+            print("Not overwriting the files. Exiting.")
+            sys.exit(1)
+
+def run_command(command):
+    print(f'Executing command: {command}')
+    process = subprocess.run(command, shell=True, text=True)
+    if process.returncode != 0:
+        print(f"Error executing command: {command}")
+        sys.exit(1)
+
+def replace_line_in_file(file_path, identifier, new_line):
+    with open(file_path, 'r') as file:
+        lines = file.readlines()
+
+    with open(file_path, 'w') as file:
+        write_next = False
+        for line in lines:
+            if write_next:
+                file.write(new_line + '\n')
+                write_next = False
+            else:
+                file.write(line)
+            if identifier in line:
+                write_next = True
+
+def main():
+    args = parse_arguments()
+
+    input_file = args.input_file
+    output_file = args.output_file
+    output_dir  = args.output_dir
+    calib = args.calib_file
+
+    detector_config = "DetectorConfiguration/MUSETT_NPS.detector"
+    calibration="calibration/" + calib + ".txt"
+    run_to_treat ="RunToTreat.txt"
+
+    time.sleep(1)
+
+    input_dir = "RootR"
+    ana_dir = "/Users/lh270370/Software/nptool/Outputs/Analysis/Data"
+    raw_output_dir = "/Users/lh270370/Software/nptool/Outputs/Analysis"
+    total_dir = os.path.join(ana_dir, output_dir)
+    final_output_file = os.path.join(output_dir, f"{output_file}.root")
+    final_output_file_path = os.path.join(total_dir, f"{output_file}.root")
+    ensure_directory_exists(total_dir)
+    check_and_handle_existing_file(final_output_file_path)
+
+    new_path = f"{ana_dir}/{output_dir}/{output_file}.root"
+
+    replace_line_in_file('RunToTreat.txt', 'TTreeName', '\tRD')
+    replace_line_in_file('RunToTreat.txt', 'RootFileName', '\t' + input_dir+'/'+input_file)
+
+    if shutil.which("npanalysis"):
+
+        bash = "~/.bashrc"
+        #run_command(command)
+        run_command(f"source {bash} && npanalysis -D {detector_config} -O {output_file} -C {calibration} -R {run_to_treat}")
+        shutil.move(raw_output_dir+f"/{output_file}.root", final_output_file_path)
+        #print(f"Moved output file to: {final_output_file_path}")
+    else:
+        print("Error: npanalysis command not found. Make sure it's installed and in your PATH.")
+        sys.exit(1)
+
+if __name__ == "__main__":
+    main()
diff --git a/Projects/MUSETT/analyse_simu.py b/Projects/MUSETT/analyse_simu.py
new file mode 100755
index 0000000000000000000000000000000000000000..7ca79a0d10f833400bfc10b5811c1993f3901e31
--- /dev/null
+++ b/Projects/MUSETT/analyse_simu.py
@@ -0,0 +1,97 @@
+#!/opt/homebrew/opt/python@3.11/libexec/bin/python
+import argparse
+import os
+import subprocess
+import sys
+import time
+import shutil
+
+def parse_arguments():
+    parser = argparse.ArgumentParser()
+    parser.add_argument("-IF", dest="sim_output_file", help="Name of the simulation output file", default="default_file")
+    parser.add_argument("-ID", dest="sim_output_dir", help="Name of the simulation output directory", default="default_dir")
+    parser.add_argument("-OD", dest="ana_output_dir", help="Name of the analysis output directory")
+    parser.add_argument("-OF", dest="ana_output_file", help="Name of the analysis output file")
+    return parser.parse_args()
+
+def ensure_directory_exists(directory):
+    os.makedirs(directory, exist_ok=True)
+
+def check_and_handle_existing_file(file_path):
+    if os.path.isfile(file_path):
+        print(f"{file_path} exists.")
+        user_input = input("Do you want to remove the existing output file and proceed? (y/n): ")
+        if user_input.lower() == 'y':
+            print("Removing existing output file...")
+            os.remove(file_path)
+            print("Removed existing file. Proceeding with the analysis...")
+        else:
+            print("Not overwriting the files. Exiting.")
+            sys.exit(1)
+
+def run_command(command):
+    print(f'Executing command: {command}')
+    process = subprocess.run(command, shell=True, text=True)
+    if process.returncode != 0:
+        print(f"Error executing command: {command}")
+        sys.exit(1)
+
+def replace_line_in_file(file_path, identifier, new_line):
+    with open(file_path, 'r') as file:
+        lines = file.readlines()
+
+    with open(file_path, 'w') as file:
+        write_next = False
+        for line in lines:
+            if write_next:
+                file.write(new_line + '\n')
+                write_next = False
+            else:
+                file.write(line)
+            if identifier in line:
+                write_next = True
+
+def main():
+    args = parse_arguments()
+
+    ana_output_dir = args.ana_output_dir or args.sim_output_dir
+    ana_output_dir = ana_output_dir
+    ana_output_file = f"{args.ana_output_file or args.sim_output_file}"
+
+
+    detector_config = "DetectorConfiguration/MUSETT_NPS.detector"
+    calibration="calibration/CalibrationSimu.txt"
+    run_to_treat ="RunToTreat.txt"
+
+    print(f"OUTPUTDIR  : {ana_output_dir}")
+    print(f"OUTPUTFILE : {ana_output_file}")
+    time.sleep(1)
+
+    sim_dir = "/Users/lh270370/Software/nptool/Outputs/Simulation/Isolde"
+    ana_dir = "/Users/lh270370/Software/nptool/Outputs/Analysis"
+    ana_dir_isolde = os.path.join(ana_dir, "Simu/Isolde", ana_output_dir)
+
+    ensure_directory_exists(ana_dir_isolde)
+
+    final_output_file = os.path.join(ana_dir, f"{ana_output_file}.root")
+    final_output_file_path = os.path.join(ana_dir_isolde, f"{ana_output_file}.root")
+
+    check_and_handle_existing_file(final_output_file_path)
+
+    new_path = f"{sim_dir}/{args.sim_output_dir}/{args.sim_output_file}.root"
+
+    replace_line_in_file('RunToTreat.txt', 'TTreeName', '\tSimulatedTree')
+
+    if shutil.which("npanalysis"):
+
+        bash = "~/.bashrc"
+        #run_command(command)
+        run_command(f"source {bash} && npanalysis -D {detector_config} -O {ana_output_file} -C {calibration} -R {run_to_treat}")
+        shutil.move(final_output_file, final_output_file_path)
+        #print(f"Moved output file to: {final_output_file_path}")
+    else:
+        print("Error: npanalysis command not found. Make sure it's installed and in your PATH.")
+        sys.exit(1)
+
+if __name__ == "__main__":
+    main()
diff --git a/Projects/MUSETT/calibration/.DS_Store b/Projects/MUSETT/calibration/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..cccebe35a6aa573c589792b17ca5ec53f2914f76
Binary files /dev/null and b/Projects/MUSETT/calibration/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/Calibration.txt b/Projects/MUSETT/calibration/Calibration.txt
deleted file mode 100755
index 39d3acf9d39c9fa57f81d9048a7b29201bba6927..0000000000000000000000000000000000000000
--- a/Projects/MUSETT/calibration/Calibration.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-CalibrationFilePath
-  calibration/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.cal
-  calibration/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.cal
-  calibration/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.cal
-  calibration/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.cal
-  
-  calibration/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.cal
-  calibration/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.cal
-  calibration/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.cal
-  calibration/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.cal
-
-
-  
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/Calibration220Ra.txt b/Projects/MUSETT/calibration/Calibration220Ra.txt
new file mode 100755
index 0000000000000000000000000000000000000000..9eb88880abd0a63db5a9b5955859db22dea7f4ef
--- /dev/null
+++ b/Projects/MUSETT/calibration/Calibration220Ra.txt
@@ -0,0 +1,21 @@
+CalibrationFilePath
+  calibration/double_alpha_Ra220_R305-310/M0_E/Cal_Str_X_E_MM0.cal
+  calibration/double_alpha_Ra220_R305-310/M1_E/Cal_Str_X_E_MM1.cal
+  calibration/double_alpha_Ra220_R305-310/M2_E/Cal_Str_X_E_MM2.cal
+  calibration/double_alpha_Ra220_R305-310/M3_E/Cal_Str_X_E_MM3.cal
+
+
+  calibration/double_alpha_Ra220_R305-310/M0_E/Cal_Str_Y_E_MM0.cal
+  calibration/double_alpha_Ra220_R305-310/M1_E/Cal_Str_Y_E_MM1.cal
+  calibration/double_alpha_Ra220_R305-310/M2_E/Cal_Str_Y_E_MM2.cal
+  calibration/double_alpha_Ra220_R305-310/M3_E/Cal_Str_Y_E_MM3.cal
+
+  calibration/double_alpha_Ra220_R305-310/M0_T/Cal_Str_X_T_MM0.cal
+  calibration/double_alpha_Ra220_R305-310/M1_T/Cal_Str_X_T_MM1.cal
+  calibration/double_alpha_Ra220_R305-310/M2_T/Cal_Str_X_T_MM2.cal
+  calibration/double_alpha_Ra220_R305-310/M3_T/Cal_Str_X_T_MM3.cal
+
+  calibration/double_alpha_Ra220_R305-310/M0_T/Cal_Str_Y_T_MM0.cal
+  calibration/double_alpha_Ra220_R305-310/M1_T/Cal_Str_Y_T_MM1.cal
+  calibration/double_alpha_Ra220_R305-310/M2_T/Cal_Str_Y_T_MM2.cal
+  calibration/double_alpha_Ra220_R305-310/M3_T/Cal_Str_Y_T_MM3.cal
diff --git a/Projects/MUSETT/calibration/Calibration222Ra.txt b/Projects/MUSETT/calibration/Calibration222Ra.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f9c8fd827ecc027383447ddca282737a0c4ec402
--- /dev/null
+++ b/Projects/MUSETT/calibration/Calibration222Ra.txt
@@ -0,0 +1,21 @@
+CalibrationFilePath
+  calibration/double_alpha_Ra222_R271-279/M0_E/Cal_Str_X_E_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_E/Cal_Str_X_E_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_E/Cal_Str_X_E_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_E/Cal_Str_X_E_MM3.cal
+
+
+  calibration/double_alpha_Ra222_R271-279/M0_E/Cal_Str_Y_E_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_E/Cal_Str_Y_E_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_E/Cal_Str_Y_E_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_E/Cal_Str_Y_E_MM3.cal
+
+  calibration/double_alpha_Ra222_R271-279/M0_T/Cal_Str_X_T_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_T/Cal_Str_X_T_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_T/Cal_Str_X_T_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_T/Cal_Str_X_T_MM3.cal
+
+  calibration/double_alpha_Ra222_R271-279/M0_T/Cal_Str_Y_T_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_T/Cal_Str_Y_T_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_T/Cal_Str_Y_T_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_T/Cal_Str_Y_T_MM3.cal
diff --git a/Projects/MUSETT/calibration/CalibrationSimu.txt b/Projects/MUSETT/calibration/CalibrationSimu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..a3a80e29f12df0320542b546120579c02b12acce
--- /dev/null
+++ b/Projects/MUSETT/calibration/CalibrationSimu.txt
@@ -0,0 +1,21 @@
+CalibrationFilePath
+  calibration/calib_simu/M0_E/Cal_Str_X_E_MM0.cal
+  calibration/calib_simu/M1_E/Cal_Str_X_E_MM1.cal
+  calibration/calib_simu/M2_E/Cal_Str_X_E_MM2.cal
+  calibration/calib_simu/M3_E/Cal_Str_X_E_MM3.cal
+
+
+  calibration/calib_simu/M0_E/Cal_Str_Y_E_MM0.cal
+  calibration/calib_simu/M1_E/Cal_Str_Y_E_MM1.cal
+  calibration/calib_simu/M2_E/Cal_Str_Y_E_MM2.cal
+  calibration/calib_simu/M3_E/Cal_Str_Y_E_MM3.cal
+
+  calibration/calib_simu/M0_T/Cal_Str_X_T_MM0.cal
+  calibration/calib_simu/M1_T/Cal_Str_X_T_MM1.cal
+  calibration/calib_simu/M2_T/Cal_Str_X_T_MM2.cal
+  calibration/calib_simu/M3_T/Cal_Str_X_T_MM3.cal
+
+  calibration/calib_simu/M0_T/Cal_Str_Y_T_MM0.cal
+  calibration/calib_simu/M1_T/Cal_Str_Y_T_MM1.cal
+  calibration/calib_simu/M2_T/Cal_Str_Y_T_MM2.cal
+  calibration/calib_simu/M3_T/Cal_Str_Y_T_MM3.cal
diff --git a/Projects/MUSETT/calibration/Energy/Calibration/.DS_Store b/Projects/MUSETT/calibration/Energy/Calibration/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/MUSETT/calibration/Energy/Calibration/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/Energy/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/Energy/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..59533f1c2519edd5aac99e291c7b1ce2b6b0e9a5
--- /dev/null
+++ b/Projects/MUSETT/calibration/Energy/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
@@ -0,0 +1,147 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 1
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/Time/.DS_Store b/Projects/MUSETT/calibration/Time/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..18187193b9adbafae392d0563b75c3ad7c8e4415
Binary files /dev/null and b/Projects/MUSETT/calibration/Time/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/.DS_Store b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2083ac78f5072a59429f6de42a6c88ceec4bc589
--- /dev/null
+++ b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X1_T 926.099 -0.111982
+MUSETT_T0_DSSD_X2_T 869.874 -0.105192
+MUSETT_T0_DSSD_X3_T 867.818 -0.104955
+MUSETT_T0_DSSD_X4_T 937.107 -0.113338
+MUSETT_T0_DSSD_X5_T 887.963 -0.107397
+MUSETT_T0_DSSD_X6_T 935.505 -0.11314
+MUSETT_T0_DSSD_X7_T 876.58 -0.106033
+MUSETT_T0_DSSD_X8_T 932.855 -0.112807
+MUSETT_T0_DSSD_X9_T 878.364 -0.106227
+MUSETT_T0_DSSD_X10_T 925.852 -0.111943
+MUSETT_T0_DSSD_X11_T 892.804 -0.108005
+MUSETT_T0_DSSD_X12_T 921.22 -0.111378
+MUSETT_T0_DSSD_X13_T 894.475 -0.108195
+MUSETT_T0_DSSD_X14_T 913.548 -0.110456
+MUSETT_T0_DSSD_X15_T 892.476 -0.107979
+MUSETT_T0_DSSD_X16_T 922.196 -0.111499
+MUSETT_T0_DSSD_X17_T 895.157 -0.108302
+MUSETT_T0_DSSD_X18_T 913.814 -0.110458
+MUSETT_T0_DSSD_X19_T 895.419 -0.108334
+MUSETT_T0_DSSD_X20_T 909.716 -0.109955
+MUSETT_T0_DSSD_X21_T 894.752 -0.108243
+MUSETT_T0_DSSD_X22_T 907.059 -0.109652
+MUSETT_T0_DSSD_X23_T 901.721 -0.109095
+MUSETT_T0_DSSD_X24_T 903.944 -0.109295
+MUSETT_T0_DSSD_X25_T 896.865 -0.108505
+MUSETT_T0_DSSD_X26_T 903.08 -0.109464
+MUSETT_T0_DSSD_X27_T 891.69 -0.107877
+MUSETT_T0_DSSD_X28_T 890.381 -0.107622
+MUSETT_T0_DSSD_X29_T 894.258 -0.108187
+MUSETT_T0_DSSD_X30_T 884.86 -0.106942
+MUSETT_T0_DSSD_X31_T 881.631 -0.106556
+MUSETT_T0_DSSD_X32_T 894.901 -0.10826
+MUSETT_T0_DSSD_X33_T 991.094 -0.119947
+MUSETT_T0_DSSD_X34_T 943.498 -0.114176
+MUSETT_T0_DSSD_X35_T 954.542 -0.115529
+MUSETT_T0_DSSD_X36_T 995.135 -0.12045
+MUSETT_T0_DSSD_X37_T 955.481 -0.115657
+MUSETT_T0_DSSD_X38_T 998.458 -0.120851
+MUSETT_T0_DSSD_X39_T 969.726 -0.117409
+MUSETT_T0_DSSD_X40_T 1000.07 -0.121021
+MUSETT_T0_DSSD_X41_T 969.528 -0.117367
+MUSETT_T0_DSSD_X42_T 1004.27 -0.121545
+MUSETT_T0_DSSD_X43_T 969.351 -0.117353
+MUSETT_T0_DSSD_X44_T 1000.4 -0.121057
+MUSETT_T0_DSSD_X45_T 974.621 -0.117969
+MUSETT_T0_DSSD_X46_T 998.041 -0.120777
+MUSETT_T0_DSSD_X47_T 976.758 -0.118246
+MUSETT_T0_DSSD_X48_T 987.033 -0.119427
+MUSETT_T0_DSSD_X49_T 975.237 -0.118065
+MUSETT_T0_DSSD_X50_T 991.826 -0.120005
+MUSETT_T0_DSSD_X51_T 979.286 -0.118546
+MUSETT_T0_DSSD_X52_T 990.352 -0.119845
+MUSETT_T0_DSSD_X53_T 984.065 -0.119138
+MUSETT_T0_DSSD_X54_T 979.666 -0.118555
+MUSETT_T0_DSSD_X55_T 983.533 -0.119075
+MUSETT_T0_DSSD_X56_T 985.306 -0.119233
+MUSETT_T0_DSSD_X57_T 991.106 -0.119996
+MUSETT_T0_DSSD_X58_T 976.043 -0.118125
+MUSETT_T0_DSSD_X59_T 976.115 -0.118174
+MUSETT_T0_DSSD_X60_T 975.677 -0.118044
+MUSETT_T0_DSSD_X61_T 987.246 -0.119531
+MUSETT_T0_DSSD_X62_T 963.333 -0.116527
+MUSETT_T0_DSSD_X63_T 952.87 -0.115275
+MUSETT_T0_DSSD_X64_T 978.41 -0.118448
+MUSETT_T0_DSSD_X65_T 919.481 -0.111151
+MUSETT_T0_DSSD_X66_T 868.319 -0.105013
+MUSETT_T0_DSSD_X67_T 877.769 -0.106169
+MUSETT_T0_DSSD_X68_T 914.799 -0.110613
+MUSETT_T0_DSSD_X69_T 878.126 -0.106212
+MUSETT_T0_DSSD_X70_T 919.575 -0.11118
+MUSETT_T0_DSSD_X71_T 883.907 -0.106905
+MUSETT_T0_DSSD_X72_T 917.725 -0.110972
+MUSETT_T0_DSSD_X73_T 893.227 -0.108043
+MUSETT_T0_DSSD_X74_T 914.821 -0.110604
+MUSETT_T0_DSSD_X75_T 900.551 -0.108935
+MUSETT_T0_DSSD_X76_T 922.429 -0.111529
+MUSETT_T0_DSSD_X77_T 896.432 -0.108442
+MUSETT_T0_DSSD_X78_T 914.168 -0.1105
+MUSETT_T0_DSSD_X79_T 894.569 -0.108194
+MUSETT_T0_DSSD_X80_T 908.954 -0.109898
+MUSETT_T0_DSSD_X81_T 903.782 -0.109336
+MUSETT_T0_DSSD_X82_T 914.714 -0.110579
+MUSETT_T0_DSSD_X83_T 901.487 -0.109053
+MUSETT_T0_DSSD_X84_T 913.375 -0.110413
+MUSETT_T0_DSSD_X85_T 907.332 -0.109771
+MUSETT_T0_DSSD_X86_T 898.889 -0.108648
+MUSETT_T0_DSSD_X87_T 904.852 -0.109449
+MUSETT_T0_DSSD_X88_T 905.323 -0.109423
+MUSETT_T0_DSSD_X89_T 902.075 -0.109128
+MUSETT_T0_DSSD_X90_T 901.831 -0.109007
+MUSETT_T0_DSSD_X91_T 906.169 -0.109641
+MUSETT_T0_DSSD_X92_T 891.715 -0.107782
+MUSETT_T0_DSSD_X93_T 902.566 -0.109177
+MUSETT_T0_DSSD_X94_T 891.484 -0.107748
+MUSETT_T0_DSSD_X95_T 888.355 -0.107364
+MUSETT_T0_DSSD_X96_T 904.912 -0.109478
+MUSETT_T0_DSSD_X97_T 965.16 -0.116744
+MUSETT_T0_DSSD_X98_T 957.155 -0.115846
+MUSETT_T0_DSSD_X99_T 962.206 -0.11646
+MUSETT_T0_DSSD_X100_T 974.188 -0.117868
+MUSETT_T0_DSSD_X101_T 971.895 -0.117644
+MUSETT_T0_DSSD_X102_T 960.173 -0.116152
+MUSETT_T0_DSSD_X103_T 973.151 -0.117791
+MUSETT_T0_DSSD_X104_T 961.407 -0.116299
+MUSETT_T0_DSSD_X105_T 976.443 -0.118174
+MUSETT_T0_DSSD_X106_T 961.03 -0.11625
+MUSETT_T0_DSSD_X107_T 989.114 -0.119717
+MUSETT_T0_DSSD_X108_T 964.341 -0.11664
+MUSETT_T0_DSSD_X109_T 993.741 -0.120284
+MUSETT_T0_DSSD_X110_T 956.784 -0.115728
+MUSETT_T0_DSSD_X111_T 994.917 -0.120426
+MUSETT_T0_DSSD_X112_T 949.288 -0.114813
+MUSETT_T0_DSSD_X113_T 1005.69 -0.121763
+MUSETT_T0_DSSD_X114_T 942.586 -0.113978
+MUSETT_T0_DSSD_X115_T 986.82 -0.119445
+MUSETT_T0_DSSD_X116_T 949.396 -0.114818
+MUSETT_T0_DSSD_X117_T 1003.89 -0.121535
+MUSETT_T0_DSSD_X118_T 941.329 -0.113819
+MUSETT_T0_DSSD_X119_T 994.316 -0.120381
+MUSETT_T0_DSSD_X120_T 930.333 -0.112468
+MUSETT_T0_DSSD_X121_T 1001.66 -0.121262
+MUSETT_T0_DSSD_X122_T 936.88 -0.113281
+MUSETT_T0_DSSD_X123_T 1005.75 -0.121766
+MUSETT_T0_DSSD_X124_T 924.498 -0.111774
+MUSETT_T0_DSSD_X125_T 996.228 -0.120615
+MUSETT_T0_DSSD_X126_T 932.405 -0.112746
+MUSETT_T0_DSSD_X127_T 922.493 -0.111515
+MUSETT_T0_DSSD_X128_T 999.032 -0.120952
diff --git a/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..8cffd6b21f7ef333cdd61679eac198de93f58561
--- /dev/null
+++ b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 983.277 -0.118761
+MUSETT_T0_DSSD_Y2_T 938.109 -0.113175
+MUSETT_T0_DSSD_Y3_T 947.448 -0.114309
+MUSETT_T0_DSSD_Y4_T 976.65 -0.117944
+MUSETT_T0_DSSD_Y5_T 956.035 -0.115351
+MUSETT_T0_DSSD_Y6_T 974.115 -0.117633
+MUSETT_T0_DSSD_Y7_T 947.978 -0.11436
+MUSETT_T0_DSSD_Y8_T 978.32 -0.11814
+MUSETT_T0_DSSD_Y9_T 950.631 -0.114686
+MUSETT_T0_DSSD_Y10_T 980.648 -0.118398
+MUSETT_T0_DSSD_Y11_T 953.963 -0.115103
+MUSETT_T0_DSSD_Y12_T 974.23 -0.117632
+MUSETT_T0_DSSD_Y13_T 959.973 -0.115832
+MUSETT_T0_DSSD_Y14_T 971.457 -0.117316
+MUSETT_T0_DSSD_Y15_T 959.848 -0.115841
+MUSETT_T0_DSSD_Y16_T 975.83 -0.117842
+MUSETT_T0_DSSD_Y17_T 964.52 -0.116398
+MUSETT_T0_DSSD_Y18_T 969.183 -0.117018
+MUSETT_T0_DSSD_Y19_T 962.989 -0.116195
+MUSETT_T0_DSSD_Y20_T 971.85 -0.117339
+MUSETT_T0_DSSD_Y21_T 959.157 -0.115516
+MUSETT_T0_DSSD_Y22_T 973.261 -0.117481
+MUSETT_T0_DSSD_Y23_T 973.941 -0.117562
+MUSETT_T0_DSSD_Y24_T 957.491 -0.115563
+MUSETT_T0_DSSD_Y25_T 976.25 -0.117834
+MUSETT_T0_DSSD_Y26_T 962.012 -0.116104
+MUSETT_T0_DSSD_Y27_T 971.294 -0.11722
+MUSETT_T0_DSSD_Y28_T 944.005 -0.113921
+MUSETT_T0_DSSD_Y29_T 974.292 -0.11759
+MUSETT_T0_DSSD_Y30_T 944.925 -0.114033
+MUSETT_T0_DSSD_Y32_T 968.991 -0.116928
+MUSETT_T0_DSSD_Y33_T 903.665 -0.109056
+MUSETT_T0_DSSD_Y34_T 859.176 -0.103507
+MUSETT_T0_DSSD_Y35_T 870.909 -0.104888
+MUSETT_T0_DSSD_Y36_T 915.646 -0.110513
+MUSETT_T0_DSSD_Y37_T 866.307 -0.104347
+MUSETT_T0_DSSD_Y38_T 905.186 -0.10924
+MUSETT_T0_DSSD_Y39_T 883.056 -0.106391
+MUSETT_T0_DSSD_Y40_T 910.71 -0.109895
+MUSETT_T0_DSSD_Y41_T 885.647 -0.106718
+MUSETT_T0_DSSD_Y42_T 913.208 -0.110196
+MUSETT_T0_DSSD_Y43_T 886.974 -0.106878
+MUSETT_T0_DSSD_Y44_T 902.655 -0.108924
+MUSETT_T0_DSSD_Y45_T 883.169 -0.106441
+MUSETT_T0_DSSD_Y46_T 903.864 -0.109045
+MUSETT_T0_DSSD_Y47_T 891.212 -0.107426
+MUSETT_T0_DSSD_Y48_T 905.49 -0.109285
+MUSETT_T0_DSSD_Y49_T 892.785 -0.107608
+MUSETT_T0_DSSD_Y50_T 908.071 -0.109567
+MUSETT_T0_DSSD_Y51_T 897.104 -0.108136
+MUSETT_T0_DSSD_Y52_T 889.86 -0.107347
+MUSETT_T0_DSSD_Y53_T 904.326 -0.109012
+MUSETT_T0_DSSD_Y54_T 889.448 -0.107278
+MUSETT_T0_DSSD_Y55_T 903.135 -0.108611
+MUSETT_T0_DSSD_Y56_T 889.979 -0.107363
+MUSETT_T0_DSSD_Y57_T 901.746 -0.108719
+MUSETT_T0_DSSD_Y58_T 878.496 -0.105955
+MUSETT_T0_DSSD_Y59_T 908.712 -0.109581
+MUSETT_T0_DSSD_Y60_T 888.383 -0.107174
+MUSETT_T0_DSSD_Y61_T 903.269 -0.108895
+MUSETT_T0_DSSD_Y62_T 871.608 -0.105113
+MUSETT_T0_DSSD_Y63_T 871.769 -0.105131
+MUSETT_T0_DSSD_Y64_T 908.687 -0.109543
+MUSETT_T0_DSSD_Y65_T 1001.6 -0.121097
+MUSETT_T0_DSSD_Y66_T 970.056 -0.117145
+MUSETT_T0_DSSD_Y67_T 986.117 -0.119118
+MUSETT_T0_DSSD_Y68_T 994.499 -0.120247
+MUSETT_T0_DSSD_Y69_T 981.373 -0.118534
+MUSETT_T0_DSSD_Y70_T 997.331 -0.120579
+MUSETT_T0_DSSD_Y71_T 995.859 -0.12031
+MUSETT_T0_DSSD_Y72_T 995.389 -0.120327
+MUSETT_T0_DSSD_Y73_T 999.672 -0.120777
+MUSETT_T0_DSSD_Y74_T 1000.31 -0.120924
+MUSETT_T0_DSSD_Y75_T 1002.22 -0.121085
+MUSETT_T0_DSSD_Y76_T 989.884 -0.119656
+MUSETT_T0_DSSD_Y77_T 998.019 -0.120569
+MUSETT_T0_DSSD_Y78_T 981.143 -0.118591
+MUSETT_T0_DSSD_Y79_T 1008.32 -0.121839
+MUSETT_T0_DSSD_Y80_T 989.544 -0.119628
+MUSETT_T0_DSSD_Y81_T 1004.28 -0.121339
+MUSETT_T0_DSSD_Y82_T 985.816 -0.119156
+MUSETT_T0_DSSD_Y83_T 1014.52 -0.122592
+MUSETT_T0_DSSD_Y84_T 982.64 -0.118781
+MUSETT_T0_DSSD_Y85_T 1025.22 -0.123897
+MUSETT_T0_DSSD_Y86_T 983.206 -0.118825
+MUSETT_T0_DSSD_Y87_T 1024.79 -0.123866
+MUSETT_T0_DSSD_Y88_T 979.506 -0.118378
+MUSETT_T0_DSSD_Y89_T 1019.8 -0.123256
+MUSETT_T0_DSSD_Y90_T 976.674 -0.118028
+MUSETT_T0_DSSD_Y91_T 1024.3 -0.123786
+MUSETT_T0_DSSD_Y92_T 976.574 -0.118012
+MUSETT_T0_DSSD_Y93_T 1021.08 -0.123408
+MUSETT_T0_DSSD_Y94_T 970.82 -0.117302
+MUSETT_T0_DSSD_Y95_T 963.864 -0.116469
+MUSETT_T0_DSSD_Y96_T 1016.6 -0.122879
+MUSETT_T0_DSSD_Y97_T 917.078 -0.110803
+MUSETT_T0_DSSD_Y98_T 891.216 -0.107535
+MUSETT_T0_DSSD_Y99_T 899.129 -0.108466
+MUSETT_T0_DSSD_Y100_T 915.137 -0.110572
+MUSETT_T0_DSSD_Y101_T 898.718 -0.108438
+MUSETT_T0_DSSD_Y102_T 909.547 -0.109894
+MUSETT_T0_DSSD_Y103_T 904.591 -0.109158
+MUSETT_T0_DSSD_Y104_T 913.859 -0.110421
+MUSETT_T0_DSSD_Y105_T 916.06 -0.110566
+MUSETT_T0_DSSD_Y106_T 914.704 -0.11051
+MUSETT_T0_DSSD_Y107_T 909.441 -0.109757
+MUSETT_T0_DSSD_Y108_T 910.27 -0.109981
+MUSETT_T0_DSSD_Y109_T 929.211 -0.112167
+MUSETT_T0_DSSD_Y110_T 914.99 -0.110544
+MUSETT_T0_DSSD_Y111_T 920.724 -0.111146
+MUSETT_T0_DSSD_Y112_T 901.739 -0.108916
+MUSETT_T0_DSSD_Y113_T 931.107 -0.112407
+MUSETT_T0_DSSD_Y114_T 907.124 -0.10959
+MUSETT_T0_DSSD_Y115_T 930.357 -0.112337
+MUSETT_T0_DSSD_Y116_T 895.168 -0.108105
+MUSETT_T0_DSSD_Y117_T 932.102 -0.112539
+MUSETT_T0_DSSD_Y118_T 890.686 -0.10757
+MUSETT_T0_DSSD_Y119_T 935.662 -0.112978
+MUSETT_T0_DSSD_Y120_T 891.724 -0.107707
+MUSETT_T0_DSSD_Y121_T 930.191 -0.112316
+MUSETT_T0_DSSD_Y122_T 894.625 -0.108041
+MUSETT_T0_DSSD_Y123_T 929.054 -0.112192
+MUSETT_T0_DSSD_Y124_T 878.021 -0.106028
+MUSETT_T0_DSSD_Y125_T 926.166 -0.111821
+MUSETT_T0_DSSD_Y126_T 878.942 -0.106139
+MUSETT_T0_DSSD_Y127_T 882.25 -0.106544
+MUSETT_T0_DSSD_Y128_T 929.013 -0.112162
diff --git a/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..28ea02313a04318e3f08f995fa2cbcfdb811b04c
--- /dev/null
+++ b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X1_T 916.574 -0.110777
+MUSETT_T1_DSSD_X2_T 878.025 -0.106165
+MUSETT_T1_DSSD_X3_T 877.927 -0.10618
+MUSETT_T1_DSSD_X4_T 908.514 -0.109791
+MUSETT_T1_DSSD_X5_T 893.294 -0.108064
+MUSETT_T1_DSSD_X6_T 909.067 -0.109867
+MUSETT_T1_DSSD_X7_T 876.051 -0.105941
+MUSETT_T1_DSSD_X8_T 917.556 -0.110894
+MUSETT_T1_DSSD_X9_T 893.827 -0.108105
+MUSETT_T1_DSSD_X10_T 904.646 -0.109308
+MUSETT_T1_DSSD_X11_T 899.59 -0.108823
+MUSETT_T1_DSSD_X12_T 912.271 -0.110244
+MUSETT_T1_DSSD_X13_T 891.87 -0.107861
+MUSETT_T1_DSSD_X14_T 903.537 -0.10916
+MUSETT_T1_DSSD_X15_T 896.377 -0.10842
+MUSETT_T1_DSSD_X16_T 907.775 -0.1097
+MUSETT_T1_DSSD_X17_T 899.273 -0.108779
+MUSETT_T1_DSSD_X18_T 901.392 -0.108878
+MUSETT_T1_DSSD_X19_T 898.912 -0.108754
+MUSETT_T1_DSSD_X20_T 895.39 -0.10819
+MUSETT_T1_DSSD_X21_T 907.617 -0.109783
+MUSETT_T1_DSSD_X22_T 891.534 -0.107699
+MUSETT_T1_DSSD_X23_T 899.789 -0.108855
+MUSETT_T1_DSSD_X24_T 891.233 -0.107685
+MUSETT_T1_DSSD_X25_T 909.299 -0.110019
+MUSETT_T1_DSSD_X26_T 888.452 -0.107338
+MUSETT_T1_DSSD_X27_T 907.769 -0.109854
+MUSETT_T1_DSSD_X28_T 885.913 -0.107015
+MUSETT_T1_DSSD_X29_T 905.232 -0.109528
+MUSETT_T1_DSSD_X30_T 873.224 -0.105455
+MUSETT_T1_DSSD_X31_T 868.163 -0.104838
+MUSETT_T1_DSSD_X32_T 909.577 -0.110055
+MUSETT_T1_DSSD_X33_T 984.794 -0.119148
+MUSETT_T1_DSSD_X34_T 928.571 -0.11232
+MUSETT_T1_DSSD_X35_T 942.493 -0.114015
+MUSETT_T1_DSSD_X36_T 977.151 -0.118198
+MUSETT_T1_DSSD_X37_T 944.985 -0.114341
+MUSETT_T1_DSSD_X38_T 978.26 -0.118324
+MUSETT_T1_DSSD_X39_T 956.226 -0.115712
+MUSETT_T1_DSSD_X40_T 981.073 -0.118677
+MUSETT_T1_DSSD_X41_T 956.679 -0.115744
+MUSETT_T1_DSSD_X42_T 977.242 -0.11821
+MUSETT_T1_DSSD_X43_T 958.458 -0.115962
+MUSETT_T1_DSSD_X44_T 973.502 -0.117737
+MUSETT_T1_DSSD_X45_T 971.702 -0.117589
+MUSETT_T1_DSSD_X46_T 974.918 -0.117923
+MUSETT_T1_DSSD_X47_T 966.768 -0.116998
+MUSETT_T1_DSSD_X48_T 971.664 -0.117531
+MUSETT_T1_DSSD_X49_T 970.872 -0.117498
+MUSETT_T1_DSSD_X50_T 973.476 -0.117739
+MUSETT_T1_DSSD_X51_T 979.817 -0.118577
+MUSETT_T1_DSSD_X52_T 957.223 -0.115762
+MUSETT_T1_DSSD_X53_T 976.301 -0.118143
+MUSETT_T1_DSSD_X54_T 967.911 -0.117052
+MUSETT_T1_DSSD_X55_T 975.435 -0.118071
+MUSETT_T1_DSSD_X56_T 954.686 -0.115464
+MUSETT_T1_DSSD_X57_T 987.534 -0.11954
+MUSETT_T1_DSSD_X58_T 946.29 -0.114439
+MUSETT_T1_DSSD_X59_T 988.145 -0.119597
+MUSETT_T1_DSSD_X60_T 948.76 -0.114738
+MUSETT_T1_DSSD_X61_T 985.177 -0.119236
+MUSETT_T1_DSSD_X62_T 947.862 -0.114612
+MUSETT_T1_DSSD_X63_T 924.661 -0.111777
+MUSETT_T1_DSSD_X64_T 984.559 -0.119179
+MUSETT_T1_DSSD_X65_T 928.424 -0.111864
+MUSETT_T1_DSSD_X66_T 892.824 -0.107613
+MUSETT_T1_DSSD_X67_T 890.901 -0.107373
+MUSETT_T1_DSSD_X68_T 934.329 -0.112614
+MUSETT_T1_DSSD_X69_T 894.556 -0.107838
+MUSETT_T1_DSSD_X70_T 931.059 -0.112193
+MUSETT_T1_DSSD_X71_T 905.994 -0.109224
+MUSETT_T1_DSSD_X72_T 925.186 -0.111483
+MUSETT_T1_DSSD_X73_T 905.741 -0.1092
+MUSETT_T1_DSSD_X74_T 927.829 -0.111775
+MUSETT_T1_DSSD_X75_T 910.629 -0.109791
+MUSETT_T1_DSSD_X76_T 932.559 -0.11236
+MUSETT_T1_DSSD_X77_T 906.206 -0.109268
+MUSETT_T1_DSSD_X78_T 931.448 -0.112226
+MUSETT_T1_DSSD_X79_T 921.692 -0.111151
+MUSETT_T1_DSSD_X80_T 923.868 -0.111325
+MUSETT_T1_DSSD_X81_T 922.784 -0.11128
+MUSETT_T1_DSSD_X82_T 918.363 -0.110659
+MUSETT_T1_DSSD_X83_T 924.5 -0.111467
+MUSETT_T1_DSSD_X84_T 935.93 -0.112781
+MUSETT_T1_DSSD_X85_T 928.983 -0.112035
+MUSETT_T1_DSSD_X86_T 923.812 -0.111304
+MUSETT_T1_DSSD_X87_T 924.661 -0.111519
+MUSETT_T1_DSSD_X88_T 929.323 -0.111977
+MUSETT_T1_DSSD_X89_T 925.485 -0.111616
+MUSETT_T1_DSSD_X90_T 914.468 -0.110136
+MUSETT_T1_DSSD_X91_T 917.32 -0.110627
+MUSETT_T1_DSSD_X92_T 908.74 -0.10946
+MUSETT_T1_DSSD_X93_T 920.078 -0.110941
+MUSETT_T1_DSSD_X94_T 901.745 -0.108567
+MUSETT_T1_DSSD_X95_T 900.671 -0.108476
+MUSETT_T1_DSSD_X96_T 926.646 -0.11176
+MUSETT_T1_DSSD_X97_T 1008.1 -0.12163
+MUSETT_T1_DSSD_X98_T 951.079 -0.114723
+MUSETT_T1_DSSD_X99_T 952.897 -0.114949
+MUSETT_T1_DSSD_X100_T 1019.96 -0.123096
+MUSETT_T1_DSSD_X101_T 966.461 -0.116629
+MUSETT_T1_DSSD_X102_T 1020.31 -0.123127
+MUSETT_T1_DSSD_X103_T 965.985 -0.116557
+MUSETT_T1_DSSD_X104_T 1017.49 -0.12279
+MUSETT_T1_DSSD_X105_T 968.322 -0.116827
+MUSETT_T1_DSSD_X106_T 1018.04 -0.12282
+MUSETT_T1_DSSD_X107_T 976.11 -0.117811
+MUSETT_T1_DSSD_X108_T 1011.77 -0.122082
+MUSETT_T1_DSSD_X109_T 975.867 -0.117758
+MUSETT_T1_DSSD_X110_T 1016.22 -0.12261
+MUSETT_T1_DSSD_X111_T 981.064 -0.118392
+MUSETT_T1_DSSD_X112_T 1013.91 -0.122345
+MUSETT_T1_DSSD_X113_T 978.32 -0.118063
+MUSETT_T1_DSSD_X114_T 999.416 -0.12057
+MUSETT_T1_DSSD_X115_T 992.972 -0.119853
+MUSETT_T1_DSSD_X116_T 1007.52 -0.121554
+MUSETT_T1_DSSD_X117_T 989.034 -0.119377
+MUSETT_T1_DSSD_X118_T 1006.21 -0.121389
+MUSETT_T1_DSSD_X119_T 987.234 -0.119141
+MUSETT_T1_DSSD_X120_T 996.925 -0.120215
+MUSETT_T1_DSSD_X121_T 994.058 -0.119982
+MUSETT_T1_DSSD_X122_T 997.371 -0.120307
+MUSETT_T1_DSSD_X123_T 995.957 -0.120199
+MUSETT_T1_DSSD_X124_T 983.919 -0.118652
+MUSETT_T1_DSSD_X125_T 995.79 -0.1202
+MUSETT_T1_DSSD_X126_T 978.841 -0.118024
+MUSETT_T1_DSSD_X127_T 976.704 -0.117775
+MUSETT_T1_DSSD_X128_T 1000.15 -0.120722
diff --git a/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..479452366cadab56b76c2feaf880cbb51e2a6755
--- /dev/null
+++ b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y1_T 966.891 -0.116717
+MUSETT_T1_DSSD_Y2_T 968.928 -0.116883
+MUSETT_T1_DSSD_Y3_T 971.207 -0.117128
+MUSETT_T1_DSSD_Y4_T 969.17 -0.116981
+MUSETT_T1_DSSD_Y5_T 975.423 -0.117665
+MUSETT_T1_DSSD_Y6_T 967.943 -0.116827
+MUSETT_T1_DSSD_Y7_T 976.249 -0.117743
+MUSETT_T1_DSSD_Y8_T 972.184 -0.117358
+MUSETT_T1_DSSD_Y9_T 987.572 -0.119146
+MUSETT_T1_DSSD_Y10_T 972.004 -0.117327
+MUSETT_T1_DSSD_Y11_T 984.536 -0.118747
+MUSETT_T1_DSSD_Y12_T 964.104 -0.116368
+MUSETT_T1_DSSD_Y13_T 987.751 -0.119189
+MUSETT_T1_DSSD_Y14_T 968.288 -0.116854
+MUSETT_T1_DSSD_Y15_T 994.23 -0.119964
+MUSETT_T1_DSSD_Y16_T 958.21 -0.11562
+MUSETT_T1_DSSD_Y17_T 995.905 -0.120158
+MUSETT_T1_DSSD_Y18_T 950.839 -0.114726
+MUSETT_T1_DSSD_Y19_T 995.946 -0.120176
+MUSETT_T1_DSSD_Y20_T 960.868 -0.115938
+MUSETT_T1_DSSD_Y21_T 1000.5 -0.120728
+MUSETT_T1_DSSD_Y22_T 957.621 -0.115533
+MUSETT_T1_DSSD_Y23_T 995.25 -0.120113
+MUSETT_T1_DSSD_Y24_T 954.252 -0.115122
+MUSETT_T1_DSSD_Y25_T 997.145 -0.120339
+MUSETT_T1_DSSD_Y26_T 952.035 -0.114834
+MUSETT_T1_DSSD_Y27_T 988.864 -0.119308
+MUSETT_T1_DSSD_Y28_T 948.029 -0.114361
+MUSETT_T1_DSSD_Y29_T 995.199 -0.120108
+MUSETT_T1_DSSD_Y30_T 937.191 -0.113022
+MUSETT_T1_DSSD_Y31_T 935.35 -0.11282
+MUSETT_T1_DSSD_Y32_T 990.383 -0.119515
+MUSETT_T1_DSSD_Y33_T 905.741 -0.109257
+MUSETT_T1_DSSD_Y34_T 887.986 -0.10696
+MUSETT_T1_DSSD_Y35_T 887.216 -0.106852
+MUSETT_T1_DSSD_Y36_T 910.732 -0.109844
+MUSETT_T1_DSSD_Y37_T 883.77 -0.106436
+MUSETT_T1_DSSD_Y38_T 906.33 -0.109312
+MUSETT_T1_DSSD_Y39_T 896.97 -0.108049
+MUSETT_T1_DSSD_Y40_T 911.966 -0.109989
+MUSETT_T1_DSSD_Y41_T 903.022 -0.108781
+MUSETT_T1_DSSD_Y42_T 909.45 -0.10969
+MUSETT_T1_DSSD_Y43_T 904.319 -0.108923
+MUSETT_T1_DSSD_Y44_T 900.767 -0.108623
+MUSETT_T1_DSSD_Y45_T 904.183 -0.108922
+MUSETT_T1_DSSD_Y46_T 908.035 -0.109521
+MUSETT_T1_DSSD_Y47_T 904.336 -0.108949
+MUSETT_T1_DSSD_Y48_T 895.245 -0.107957
+MUSETT_T1_DSSD_Y49_T 916.034 -0.110395
+MUSETT_T1_DSSD_Y50_T 907.451 -0.10944
+MUSETT_T1_DSSD_Y51_T 915.216 -0.110294
+MUSETT_T1_DSSD_Y52_T 897.171 -0.108164
+MUSETT_T1_DSSD_Y53_T 910.734 -0.109746
+MUSETT_T1_DSSD_Y54_T 907.311 -0.109433
+MUSETT_T1_DSSD_Y55_T 913.293 -0.109802
+MUSETT_T1_DSSD_Y56_T 848677000000.0 -103827000.0
+MUSETT_T1_DSSD_Y57_T 910.448 -0.109742
+MUSETT_T1_DSSD_Y58_T 896.019 -0.108037
+MUSETT_T1_DSSD_Y59_T 918.647 -0.11072
+MUSETT_T1_DSSD_Y60_T 886.581 -0.106848
+MUSETT_T1_DSSD_Y61_T 920.049 -0.110879
+MUSETT_T1_DSSD_Y62_T 884.995 -0.106691
+MUSETT_T1_DSSD_Y63_T 1002.87 -0.141377
+MUSETT_T1_DSSD_Y64_T 921.093 -0.111037
+MUSETT_T1_DSSD_Y65_T 991.793 -0.120194
+MUSETT_T1_DSSD_Y66_T 947.005 -0.114646
+MUSETT_T1_DSSD_Y67_T 955.512 -0.115676
+MUSETT_T1_DSSD_Y68_T 986.667 -0.119601
+MUSETT_T1_DSSD_Y69_T 954.266 -0.115551
+MUSETT_T1_DSSD_Y70_T 985.922 -0.119505
+MUSETT_T1_DSSD_Y71_T 961.213 -0.116392
+MUSETT_T1_DSSD_Y72_T 988.378 -0.11981
+MUSETT_T1_DSSD_Y73_T 960.803 -0.116344
+MUSETT_T1_DSSD_Y74_T 985.147 -0.119391
+MUSETT_T1_DSSD_Y75_T 971.068 -0.117589
+MUSETT_T1_DSSD_Y76_T 988.169 -0.119777
+MUSETT_T1_DSSD_Y77_T 971.908 -0.117699
+MUSETT_T1_DSSD_Y78_T 986.47 -0.119552
+MUSETT_T1_DSSD_Y79_T 978.963 -0.118567
+MUSETT_T1_DSSD_Y80_T 983.419 -0.119163
+MUSETT_T1_DSSD_Y81_T 980.181 -0.118705
+MUSETT_T1_DSSD_Y82_T 982.479 -0.119038
+MUSETT_T1_DSSD_Y83_T 972.849 -0.117807
+MUSETT_T1_DSSD_Y84_T 974.345 -0.118053
+MUSETT_T1_DSSD_Y85_T 977.401 -0.118376
+MUSETT_T1_DSSD_Y86_T 978.784 -0.118609
+MUSETT_T1_DSSD_Y87_T 985.257 -0.119333
+MUSETT_T1_DSSD_Y88_T 970.687 -0.117617
+MUSETT_T1_DSSD_Y89_T 986.001 -0.119429
+MUSETT_T1_DSSD_Y90_T 967.43 -0.117211
+MUSETT_T1_DSSD_Y91_T 978.94 -0.118576
+MUSETT_T1_DSSD_Y92_T 963.945 -0.116788
+MUSETT_T1_DSSD_Y93_T 982.604 -0.119031
+MUSETT_T1_DSSD_Y94_T 958.17 -0.116053
+MUSETT_T1_DSSD_Y95_T 950.903 -0.115194
+MUSETT_T1_DSSD_Y96_T 994.308 -0.120471
+MUSETT_T1_DSSD_Y97_T 906.635 -0.109824
+MUSETT_T1_DSSD_Y98_T 862.399 -0.104291
+MUSETT_T1_DSSD_Y99_T 856.141 -0.103549
+MUSETT_T1_DSSD_Y100_T 900.796 -0.109108
+MUSETT_T1_DSSD_Y101_T 866.517 -0.104798
+MUSETT_T1_DSSD_Y102_T 910.268 -0.110268
+MUSETT_T1_DSSD_Y103_T 861.488 -0.10419
+MUSETT_T1_DSSD_Y104_T 903.241 -0.109417
+MUSETT_T1_DSSD_Y105_T 869.88 -0.105221
+MUSETT_T1_DSSD_Y106_T 896.217 -0.108536
+MUSETT_T1_DSSD_Y107_T 879.073 -0.106354
+MUSETT_T1_DSSD_Y108_T 905.347 -0.10967
+MUSETT_T1_DSSD_Y109_T 883.458 -0.1069
+MUSETT_T1_DSSD_Y110_T 902.144 -0.10926
+MUSETT_T1_DSSD_Y111_T 878.318 -0.106252
+MUSETT_T1_DSSD_Y112_T 905.296 -0.109653
+MUSETT_T1_DSSD_Y113_T 895.691 -0.108379
+MUSETT_T1_DSSD_Y114_T 895.11 -0.108406
+MUSETT_T1_DSSD_Y115_T 896.571 -0.108492
+MUSETT_T1_DSSD_Y116_T 891.891 -0.108005
+MUSETT_T1_DSSD_Y117_T 894.464 -0.108225
+MUSETT_T1_DSSD_Y118_T 884.05 -0.107044
+MUSETT_T1_DSSD_Y119_T 893.509 -0.108132
+MUSETT_T1_DSSD_Y120_T 891.902 -0.10801
+MUSETT_T1_DSSD_Y121_T 895.809 -0.108412
+MUSETT_T1_DSSD_Y122_T 894.071 -0.108263
+MUSETT_T1_DSSD_Y123_T 891.015 -0.10784
+MUSETT_T1_DSSD_Y124_T 880.13 -0.106555
+MUSETT_T1_DSSD_Y125_T 888.724 -0.107526
+MUSETT_T1_DSSD_Y126_T 875.524 -0.106
+MUSETT_T1_DSSD_Y127_T 876.691 -0.106136
+MUSETT_T1_DSSD_Y128_T 899.797 -0.109448
diff --git a/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..eb9e80680ce0a88ba927b74dd75d653adf4c3093
--- /dev/null
+++ b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X1_T 893.403 -0.107885
+MUSETT_T2_DSSD_X2_T 884.424 -0.106884
+MUSETT_T2_DSSD_X3_T 881.912 -0.106588
+MUSETT_T2_DSSD_X4_T 896.224 -0.10824
+MUSETT_T2_DSSD_X5_T 891.212 -0.10771
+MUSETT_T2_DSSD_X6_T 899.711 -0.108665
+MUSETT_T2_DSSD_X7_T 888.472 -0.10739
+MUSETT_T2_DSSD_X8_T 900.163 -0.108721
+MUSETT_T2_DSSD_X9_T 902.325 -0.109058
+MUSETT_T2_DSSD_X10_T 898.738 -0.108543
+MUSETT_T2_DSSD_X11_T 899.193 -0.108685
+MUSETT_T2_DSSD_X12_T 888.44 -0.107279
+MUSETT_T2_DSSD_X13_T 906.762 -0.109605
+MUSETT_T2_DSSD_X14_T 896.907 -0.108307
+MUSETT_T2_DSSD_X15_T 903.506 -0.109211
+MUSETT_T2_DSSD_X16_T 894.49 -0.108024
+MUSETT_T2_DSSD_X17_T 903.2 -0.109168
+MUSETT_T2_DSSD_X18_T 885.543 -0.106931
+MUSETT_T2_DSSD_X19_T 907.04 -0.109617
+MUSETT_T2_DSSD_X20_T 877.811 -0.105984
+MUSETT_T2_DSSD_X21_T 913.192 -0.1104
+MUSETT_T2_DSSD_X22_T 875.93 -0.105755
+MUSETT_T2_DSSD_X23_T 912.001 -0.110254
+MUSETT_T2_DSSD_X24_T 875.67 -0.105723
+MUSETT_T2_DSSD_X25_T 920.039 -0.111219
+MUSETT_T2_DSSD_X26_T 866.918 -0.10464
+MUSETT_T2_DSSD_X27_T 918.464 -0.111043
+MUSETT_T2_DSSD_X28_T 872.886 -0.105362
+MUSETT_T2_DSSD_X29_T 921.268 -0.111378
+MUSETT_T2_DSSD_X30_T 863.294 -0.104191
+MUSETT_T2_DSSD_X31_T 853.022 -0.102956
+MUSETT_T2_DSSD_X32_T 917.17 -0.11089
+MUSETT_T2_DSSD_X33_T 949.489 -0.114725
+MUSETT_T2_DSSD_X34_T 937.316 -0.113282
+MUSETT_T2_DSSD_X35_T 934.385 -0.112935
+MUSETT_T2_DSSD_X36_T 950.078 -0.114801
+MUSETT_T2_DSSD_X37_T 942.34 -0.113903
+MUSETT_T2_DSSD_X38_T 948.307 -0.114577
+MUSETT_T2_DSSD_X39_T 954.458 -0.11541
+MUSETT_T2_DSSD_X40_T 952.149 -0.115049
+MUSETT_T2_DSSD_X41_T 950.139 -0.114834
+MUSETT_T2_DSSD_X42_T 944.632 -0.114127
+MUSETT_T2_DSSD_X43_T 967.561 -0.116968
+MUSETT_T2_DSSD_X44_T 948.456 -0.114587
+MUSETT_T2_DSSD_X45_T 960.77 -0.116144
+MUSETT_T2_DSSD_X46_T 947.97 -0.114529
+MUSETT_T2_DSSD_X47_T 965.567 -0.116738
+MUSETT_T2_DSSD_X48_T 939.674 -0.113523
+MUSETT_T2_DSSD_X49_T 957.421 -0.115736
+MUSETT_T2_DSSD_X50_T 948.676 -0.114596
+MUSETT_T2_DSSD_X51_T 969.399 -0.117191
+MUSETT_T2_DSSD_X52_T 940.462 -0.113604
+MUSETT_T2_DSSD_X53_T 971.909 -0.117505
+MUSETT_T2_DSSD_X54_T 942.935 -0.113893
+MUSETT_T2_DSSD_X55_T 966.623 -0.116868
+MUSETT_T2_DSSD_X56_T 947.225 -0.114433
+MUSETT_T2_DSSD_X57_T 972.522 -0.117596
+MUSETT_T2_DSSD_X58_T 936.381 -0.11311
+MUSETT_T2_DSSD_X59_T 966.551 -0.116864
+MUSETT_T2_DSSD_X60_T 937.478 -0.113239
+MUSETT_T2_DSSD_X61_T 967.053 -0.116934
+MUSETT_T2_DSSD_X62_T 934.725 -0.1129
+MUSETT_T2_DSSD_X63_T 919.521 -0.111042
+MUSETT_T2_DSSD_X64_T 976.535 -0.118078
+MUSETT_T2_DSSD_X65_T 944.971 -0.114186
+MUSETT_T2_DSSD_X66_T 901.312 -0.10895
+MUSETT_T2_DSSD_X67_T 917.986 -0.11099
+MUSETT_T2_DSSD_X68_T 944.748 -0.114176
+MUSETT_T2_DSSD_X69_T 913.934 -0.110483
+MUSETT_T2_DSSD_X70_T 936.181 -0.113143
+MUSETT_T2_DSSD_X71_T 913.949 -0.110494
+MUSETT_T2_DSSD_X72_T 936.518 -0.113174
+MUSETT_T2_DSSD_X73_T 923.435 -0.11163
+MUSETT_T2_DSSD_X74_T 946.851 -0.11443
+MUSETT_T2_DSSD_X75_T 922.621 -0.111573
+MUSETT_T2_DSSD_X76_T 940.75 -0.113673
+MUSETT_T2_DSSD_X77_T 921.076 -0.111368
+MUSETT_T2_DSSD_X78_T 949.44 -0.114745
+MUSETT_T2_DSSD_X79_T 925.346 -0.111888
+MUSETT_T2_DSSD_X80_T 940.564 -0.113666
+MUSETT_T2_DSSD_X81_T 935.581 -0.113122
+MUSETT_T2_DSSD_X82_T 940.971 -0.113698
+MUSETT_T2_DSSD_X83_T 932.485 -0.112764
+MUSETT_T2_DSSD_X84_T 938.012 -0.113333
+MUSETT_T2_DSSD_X85_T 937.5 -0.113373
+MUSETT_T2_DSSD_X86_T 932.582 -0.11267
+MUSETT_T2_DSSD_X87_T 932.715 -0.112797
+MUSETT_T2_DSSD_X88_T 929.709 -0.112323
+MUSETT_T2_DSSD_X89_T 935.979 -0.113176
+MUSETT_T2_DSSD_X90_T 914.139 -0.110414
+MUSETT_T2_DSSD_X91_T 942.445 -0.113973
+MUSETT_T2_DSSD_X92_T 914.61 -0.110461
+MUSETT_T2_DSSD_X93_T 943.181 -0.114066
+MUSETT_T2_DSSD_X94_T 906.889 -0.109531
+MUSETT_T2_DSSD_X95_T 902.2 -0.108961
+MUSETT_T2_DSSD_X96_T 942.414 -0.113973
+MUSETT_T2_DSSD_X97_T 987.604 -0.119394
+MUSETT_T2_DSSD_X98_T 971.844 -0.117533
+MUSETT_T2_DSSD_X99_T 971.845 -0.117545
+MUSETT_T2_DSSD_X100_T 1002.51 -0.12123
+MUSETT_T2_DSSD_X101_T 983.582 -0.118957
+MUSETT_T2_DSSD_X102_T 1001.7 -0.12112
+MUSETT_T2_DSSD_X103_T 988.69 -0.119584
+MUSETT_T2_DSSD_X104_T 997.508 -0.120614
+MUSETT_T2_DSSD_X105_T 990.616 -0.119902
+MUSETT_T2_DSSD_X106_T 982.481 -0.118788
+MUSETT_T2_DSSD_X107_T 992.058 -0.12002
+MUSETT_T2_DSSD_X108_T 992.615 -0.120011
+MUSETT_T2_DSSD_X109_T 993.193 -0.120171
+MUSETT_T2_DSSD_X110_T 993.652 -0.120143
+MUSETT_T2_DSSD_X111_T 998.567 -0.120802
+MUSETT_T2_DSSD_X112_T 993.933 -0.120152
+MUSETT_T2_DSSD_X113_T 991.75 -0.119977
+MUSETT_T2_DSSD_X114_T 983.229 -0.118879
+MUSETT_T2_DSSD_X115_T 1000.28 -0.12102
+MUSETT_T2_DSSD_X116_T 984.429 -0.118997
+MUSETT_T2_DSSD_X117_T 996.389 -0.12055
+MUSETT_T2_DSSD_X118_T 970.748 -0.117336
+MUSETT_T2_DSSD_X119_T 995.946 -0.12048
+MUSETT_T2_DSSD_X120_T 969.333 -0.117159
+MUSETT_T2_DSSD_X121_T 1005.69 -0.121688
+MUSETT_T2_DSSD_X122_T 969.343 -0.117158
+MUSETT_T2_DSSD_X123_T 1009.38 -0.122136
+MUSETT_T2_DSSD_X124_T 965.866 -0.116735
+MUSETT_T2_DSSD_X125_T 1012.08 -0.122472
+MUSETT_T2_DSSD_X126_T 964.034 -0.116512
+MUSETT_T2_DSSD_X127_T 952.869 -0.115148
+MUSETT_T2_DSSD_X128_T 1003.93 -0.121488
diff --git a/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..bff45b74f99cfd7cd75c19c8e9acbe2ea26654c0
--- /dev/null
+++ b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y1_T 1024.2 -0.123744
+MUSETT_T2_DSSD_Y2_T 942.022 -0.113632
+MUSETT_T2_DSSD_Y3_T 941.851 -0.11359
+MUSETT_T2_DSSD_Y4_T 1023.43 -0.123621
+MUSETT_T2_DSSD_Y5_T 941.301 -0.113546
+MUSETT_T2_DSSD_Y6_T 1024.68 -0.123746
+MUSETT_T2_DSSD_Y7_T 941.196 -0.113526
+MUSETT_T2_DSSD_Y8_T 1019.48 -0.12312
+MUSETT_T2_DSSD_Y9_T 956.339 -0.115367
+MUSETT_T2_DSSD_Y10_T 1017.56 -0.122898
+MUSETT_T2_DSSD_Y11_T 972.159 -0.117305
+MUSETT_T2_DSSD_Y12_T 1012.4 -0.122275
+MUSETT_T2_DSSD_Y13_T 968.071 -0.11682
+MUSETT_T2_DSSD_Y14_T 1006.22 -0.121307
+MUSETT_T2_DSSD_Y15_T 963.198 -0.116216
+MUSETT_T2_DSSD_Y16_T 1014.58 -0.122539
+MUSETT_T2_DSSD_Y17_T 978.802 -0.118134
+MUSETT_T2_DSSD_Y18_T 1013.44 -0.122366
+MUSETT_T2_DSSD_Y19_T 981.332 -0.118446
+MUSETT_T2_DSSD_Y20_T 1006.43 -0.121526
+MUSETT_T2_DSSD_Y21_T 978.515 -0.117858
+MUSETT_T2_DSSD_Y22_T 1001.78 -0.120947
+MUSETT_T2_DSSD_Y23_T 985.445 -0.11895
+MUSETT_T2_DSSD_Y24_T 1003.53 -0.121165
+MUSETT_T2_DSSD_Y25_T 979.656 -0.118238
+MUSETT_T2_DSSD_Y26_T 998.524 -0.120524
+MUSETT_T2_DSSD_Y27_T 981.57 -0.118468
+MUSETT_T2_DSSD_Y28_T 992.258 -0.119776
+MUSETT_T2_DSSD_Y29_T 980.383 -0.118337
+MUSETT_T2_DSSD_Y30_T 993.077 -0.119903
+MUSETT_T2_DSSD_Y31_T 989.947 -0.119525
+MUSETT_T2_DSSD_Y32_T 968.968 -0.116905
+MUSETT_T2_DSSD_Y33_T 918.091 -0.110791
+MUSETT_T2_DSSD_Y34_T 896.545 -0.108016
+MUSETT_T2_DSSD_Y35_T 905.921 -0.109155
+MUSETT_T2_DSSD_Y36_T 922.863 -0.111371
+MUSETT_T2_DSSD_Y37_T 903.191 -0.108834
+MUSETT_T2_DSSD_Y38_T 919.243 -0.110907
+MUSETT_T2_DSSD_Y39_T 916.514 -0.110471
+MUSETT_T2_DSSD_Y40_T 915.986 -0.110532
+MUSETT_T2_DSSD_Y41_T 909.698 -0.109622
+MUSETT_T2_DSSD_Y42_T 913.535 -0.110231
+MUSETT_T2_DSSD_Y43_T 918.472 -0.110708
+MUSETT_T2_DSSD_Y44_T 910.049 -0.10979
+MUSETT_T2_DSSD_Y45_T 921.934 -0.111116
+MUSETT_T2_DSSD_Y46_T 914.061 -0.110304
+MUSETT_T2_DSSD_Y47_T 917.791 -0.11061
+MUSETT_T2_DSSD_Y48_T 909.649 -0.109756
+MUSETT_T2_DSSD_Y49_T 930.463 -0.11216
+MUSETT_T2_DSSD_Y50_T 906.817 -0.109401
+MUSETT_T2_DSSD_Y51_T 921.545 -0.111079
+MUSETT_T2_DSSD_Y52_T 908.152 -0.109574
+MUSETT_T2_DSSD_Y53_T 924.357 -0.111393
+MUSETT_T2_DSSD_Y54_T 892.44 -0.107628
+MUSETT_T2_DSSD_Y55_T 928.134 -0.11168
+MUSETT_T2_DSSD_Y56_T 897.82 -0.108297
+MUSETT_T2_DSSD_Y57_T 944.074 -0.11386
+MUSETT_T2_DSSD_Y58_T 894.339 -0.10786
+MUSETT_T2_DSSD_Y59_T 929.497 -0.112068
+MUSETT_T2_DSSD_Y60_T 893.026 -0.107711
+MUSETT_T2_DSSD_Y61_T 925.938 -0.111623
+MUSETT_T2_DSSD_Y62_T 880.638 -0.106206
+MUSETT_T2_DSSD_Y63_T 874.116 -0.105393
+MUSETT_T2_DSSD_Y64_T 933.858 -0.112593
+MUSETT_T2_DSSD_Y65_T 971.01 -0.117343
+MUSETT_T2_DSSD_Y66_T 946.074 -0.114246
+MUSETT_T2_DSSD_Y67_T 940.751 -0.113582
+MUSETT_T2_DSSD_Y68_T 968.878 -0.117092
+MUSETT_T2_DSSD_Y69_T 952.983 -0.115097
+MUSETT_T2_DSSD_Y70_T 977.792 -0.118194
+MUSETT_T2_DSSD_Y71_T 948.889 -0.114574
+MUSETT_T2_DSSD_Y72_T 975.406 -0.117892
+MUSETT_T2_DSSD_Y73_T 957.63 -0.115653
+MUSETT_T2_DSSD_Y74_T 979.2 -0.118324
+MUSETT_T2_DSSD_Y75_T 968.091 -0.11692
+MUSETT_T2_DSSD_Y76_T 966.385 -0.116762
+MUSETT_T2_DSSD_Y77_T 966.176 -0.116695
+MUSETT_T2_DSSD_Y78_T 960.237 -0.115989
+MUSETT_T2_DSSD_Y79_T 971.862 -0.117388
+MUSETT_T2_DSSD_Y80_T 958.107 -0.115747
+MUSETT_T2_DSSD_Y81_T 974.809 -0.117739
+MUSETT_T2_DSSD_Y82_T 966.661 -0.116783
+MUSETT_T2_DSSD_Y83_T 976.466 -0.11797
+MUSETT_T2_DSSD_Y84_T 969.683 -0.117144
+MUSETT_T2_DSSD_Y85_T 981.048 -0.118525
+MUSETT_T2_DSSD_Y86_T 962.11 -0.116242
+MUSETT_T2_DSSD_Y87_T 971.816 -0.117371
+MUSETT_T2_DSSD_Y88_T 974.181 -0.117701
+MUSETT_T2_DSSD_Y89_T 979.537 -0.118331
+MUSETT_T2_DSSD_Y90_T 947.803 -0.114477
+MUSETT_T2_DSSD_Y91_T 979.044 -0.118283
+MUSETT_T2_DSSD_Y92_T 950.053 -0.114763
+MUSETT_T2_DSSD_Y93_T 986.328 -0.119174
+MUSETT_T2_DSSD_Y94_T 945.736 -0.114242
+MUSETT_T2_DSSD_Y95_T 926.3 -0.111864
+MUSETT_T2_DSSD_Y96_T 991.309 -0.119806
+MUSETT_T2_DSSD_Y97_T 914.871 -0.110525
+MUSETT_T2_DSSD_Y98_T 854.155 -0.102981
+MUSETT_T2_DSSD_Y99_T 870.733 -0.104976
+MUSETT_T2_DSSD_Y100_T 924.467 -0.111703
+MUSETT_T2_DSSD_Y101_T 878.476 -0.105936
+MUSETT_T2_DSSD_Y102_T 928.251 -0.11214
+MUSETT_T2_DSSD_Y103_T 876.793 -0.10575
+MUSETT_T2_DSSD_Y104_T 927.531 -0.112066
+MUSETT_T2_DSSD_Y105_T 884.881 -0.106741
+MUSETT_T2_DSSD_Y106_T 924.057 -0.111623
+MUSETT_T2_DSSD_Y107_T 881.171 -0.10628
+MUSETT_T2_DSSD_Y108_T 924.408 -0.111663
+MUSETT_T2_DSSD_Y109_T 893.636 -0.107805
+MUSETT_T2_DSSD_Y110_T 923.243 -0.111507
+MUSETT_T2_DSSD_Y111_T 894.919 -0.107966
+MUSETT_T2_DSSD_Y112_T 927.33 -0.112025
+MUSETT_T2_DSSD_Y113_T 885.067 -0.106759
+MUSETT_T2_DSSD_Y114_T 932.767 -0.112691
+MUSETT_T2_DSSD_Y115_T 898.226 -0.108381
+MUSETT_T2_DSSD_Y116_T 916.909 -0.110746
+MUSETT_T2_DSSD_Y117_T 896.617 -0.108195
+MUSETT_T2_DSSD_Y118_T 926.674 -0.111938
+MUSETT_T2_DSSD_Y119_T 896.617 -0.108195
+MUSETT_T2_DSSD_Y120_T 919.012 -0.110997
+MUSETT_T2_DSSD_Y121_T 899.421 -0.108519
+MUSETT_T2_DSSD_Y122_T 905.068 -0.109308
+MUSETT_T2_DSSD_Y123_T 900.193 -0.10863
+MUSETT_T2_DSSD_Y124_T 906.665 -0.109474
+MUSETT_T2_DSSD_Y125_T 901.229 -0.108768
+MUSETT_T2_DSSD_Y126_T 896.011 -0.108189
+MUSETT_T2_DSSD_Y127_T 899.526 -0.108639
+MUSETT_T2_DSSD_Y128_T 897.311 -0.108297
diff --git a/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..cd7ff8fe4199ae797993f810d8820b5cb2a6c435
--- /dev/null
+++ b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X1_T 900.293 -0.108862
+MUSETT_T3_DSSD_X2_T 898.105 -0.108693
+MUSETT_T3_DSSD_X3_T 904.446 -0.109485
+MUSETT_T3_DSSD_X4_T 891.538 -0.107803
+MUSETT_T3_DSSD_X5_T 912.143 -0.110421
+MUSETT_T3_DSSD_X6_T 905.108 -0.109445
+MUSETT_T3_DSSD_X7_T 905.421 -0.109588
+MUSETT_T3_DSSD_X8_T 903.963 -0.109312
+MUSETT_T3_DSSD_X9_T 911.321 -0.110301
+MUSETT_T3_DSSD_X10_T 897.274 -0.10849
+MUSETT_T3_DSSD_X11_T 919.499 -0.111327
+MUSETT_T3_DSSD_X12_T 897.684 -0.108538
+MUSETT_T3_DSSD_X13_T 921.109 -0.111495
+MUSETT_T3_DSSD_X14_T 902.052 -0.10908
+MUSETT_T3_DSSD_X15_T 929.489 -0.112521
+MUSETT_T3_DSSD_X16_T 896.795 -0.10844
+MUSETT_T3_DSSD_X17_T 937.068 -0.11347
+MUSETT_T3_DSSD_X18_T 899.348 -0.108733
+MUSETT_T3_DSSD_X19_T 930.942 -0.112717
+MUSETT_T3_DSSD_X20_T 896.431 -0.108382
+MUSETT_T3_DSSD_X21_T 927.894 -0.112335
+MUSETT_T3_DSSD_X22_T 884.13 -0.106861
+MUSETT_T3_DSSD_X23_T 932.632 -0.112964
+MUSETT_T3_DSSD_X24_T 888.209 -0.107368
+MUSETT_T3_DSSD_X25_T 935.332 -0.113245
+MUSETT_T3_DSSD_X26_T 888.186 -0.107364
+MUSETT_T3_DSSD_X27_T 929.857 -0.11258
+MUSETT_T3_DSSD_X28_T 878.223 -0.106155
+MUSETT_T3_DSSD_X29_T 937.136 -0.113476
+MUSETT_T3_DSSD_X30_T 865.76 -0.104634
+MUSETT_T3_DSSD_X31_T 866.015 -0.104661
+MUSETT_T3_DSSD_X32_T 935.398 -0.113256
+MUSETT_T3_DSSD_X33_T 996.617 -0.120654
+MUSETT_T3_DSSD_X34_T 938.354 -0.113591
+MUSETT_T3_DSSD_X35_T 952.054 -0.115254
+MUSETT_T3_DSSD_X36_T 1001.37 -0.121233
+MUSETT_T3_DSSD_X37_T 956.534 -0.115822
+MUSETT_T3_DSSD_X38_T 999.766 -0.121035
+MUSETT_T3_DSSD_X39_T 958.488 -0.116042
+MUSETT_T3_DSSD_X40_T 1006.69 -0.121885
+MUSETT_T3_DSSD_X41_T 950.724 -0.115096
+MUSETT_T3_DSSD_X42_T 996.509 -0.120628
+MUSETT_T3_DSSD_X43_T 965.196 -0.11686
+MUSETT_T3_DSSD_X44_T 1000.74 -0.12115
+MUSETT_T3_DSSD_X45_T 969.308 -0.117385
+MUSETT_T3_DSSD_X46_T 987.489 -0.119523
+MUSETT_T3_DSSD_X47_T 974.569 -0.118019
+MUSETT_T3_DSSD_X48_T 986.58 -0.119405
+MUSETT_T3_DSSD_X49_T 972.643 -0.117779
+MUSETT_T3_DSSD_X50_T 988.858 -0.119693
+MUSETT_T3_DSSD_X51_T 970.352 -0.117496
+MUSETT_T3_DSSD_X52_T 984.595 -0.119177
+MUSETT_T3_DSSD_X53_T 972.778 -0.117795
+MUSETT_T3_DSSD_X54_T 992.422 -0.120114
+MUSETT_T3_DSSD_X55_T 984.9 -0.119273
+MUSETT_T3_DSSD_X56_T 985.228 -0.119229
+MUSETT_T3_DSSD_X57_T 974.806 -0.118031
+MUSETT_T3_DSSD_X58_T 978.048 -0.118386
+MUSETT_T3_DSSD_X59_T 981.032 -0.118805
+MUSETT_T3_DSSD_X60_T 982.136 -0.11886
+MUSETT_T3_DSSD_X61_T 978.727 -0.118524
+MUSETT_T3_DSSD_X62_T 963.403 -0.116582
+MUSETT_T3_DSSD_X63_T 967.055 -0.117029
+MUSETT_T3_DSSD_X64_T 983.561 -0.119127
+MUSETT_T3_DSSD_X65_T 894.433 -0.107896
+MUSETT_T3_DSSD_X66_T 862.689 -0.104124
+MUSETT_T3_DSSD_X67_T 867.813 -0.104728
+MUSETT_T3_DSSD_X68_T 885.342 -0.106793
+MUSETT_T3_DSSD_X69_T 867.895 -0.104753
+MUSETT_T3_DSSD_X70_T 898.089 -0.108336
+MUSETT_T3_DSSD_X71_T 873.835 -0.105492
+MUSETT_T3_DSSD_X72_T 891.27 -0.107522
+MUSETT_T3_DSSD_X73_T 883.843 -0.106693
+MUSETT_T3_DSSD_X74_T 897.245 -0.108252
+MUSETT_T3_DSSD_X75_T 879.494 -0.10614
+MUSETT_T3_DSSD_X76_T 887.829 -0.107093
+MUSETT_T3_DSSD_X77_T 883.805 -0.106708
+MUSETT_T3_DSSD_X78_T 892.007 -0.107599
+MUSETT_T3_DSSD_X79_T 882.86 -0.106567
+MUSETT_T3_DSSD_X80_T 888.126 -0.107137
+MUSETT_T3_DSSD_X81_T 891.887 -0.107671
+MUSETT_T3_DSSD_X82_T 884.874 -0.10675
+MUSETT_T3_DSSD_X83_T 896.27 -0.108216
+MUSETT_T3_DSSD_X84_T 887.525 -0.107055
+MUSETT_T3_DSSD_X85_T 888.15 -0.107225
+MUSETT_T3_DSSD_X86_T 880.15 -0.106145
+MUSETT_T3_DSSD_X87_T 899.039 -0.108561
+MUSETT_T3_DSSD_X88_T 788.143 -0.126949
+MUSETT_T3_DSSD_X89_T 899.371 -0.108609
+MUSETT_T3_DSSD_X90_T 876.122 -0.105647
+MUSETT_T3_DSSD_X91_T 896.002 -0.108191
+MUSETT_T3_DSSD_X92_T 869.978 -0.1049
+MUSETT_T3_DSSD_X93_T 905.511 -0.109337
+MUSETT_T3_DSSD_X94_T 869.213 -0.10481
+MUSETT_T3_DSSD_X95_T 859.472 -0.103629
+MUSETT_T3_DSSD_X96_T 900.32 -0.108709
+MUSETT_T3_DSSD_X97_T 979.288 -0.118278
+MUSETT_T3_DSSD_X98_T 985.824 -0.119126
+MUSETT_T3_DSSD_X99_T 991.541 -0.119789
+MUSETT_T3_DSSD_X100_T 984.211 -0.118879
+MUSETT_T3_DSSD_X101_T 991.866 -0.119851
+MUSETT_T3_DSSD_X102_T 986.603 -0.119186
+MUSETT_T3_DSSD_X103_T 1007.5 -0.121753
+MUSETT_T3_DSSD_X104_T 987.195 -0.119241
+MUSETT_T3_DSSD_X105_T 1008.13 -0.121824
+MUSETT_T3_DSSD_X106_T 987.225 -0.119256
+MUSETT_T3_DSSD_X107_T 1004.87 -0.121446
+MUSETT_T3_DSSD_X108_T 979.507 -0.118304
+MUSETT_T3_DSSD_X109_T 1008.48 -0.121893
+MUSETT_T3_DSSD_X110_T 974.374 -0.117687
+MUSETT_T3_DSSD_X111_T 1012.14 -0.122347
+MUSETT_T3_DSSD_X112_T 978.317 -0.118161
+MUSETT_T3_DSSD_X113_T 1008.38 -0.121883
+MUSETT_T3_DSSD_X114_T 967.787 -0.116863
+MUSETT_T3_DSSD_X115_T 1014.86 -0.122684
+MUSETT_T3_DSSD_X116_T 962.99 -0.116299
+MUSETT_T3_DSSD_X117_T 1023.57 -0.123722
+MUSETT_T3_DSSD_X118_T 968.345 -0.11693
+MUSETT_T3_DSSD_X119_T 1033.42 -0.124938
+MUSETT_T3_DSSD_X120_T 965.822 -0.116619
+MUSETT_T3_DSSD_X121_T 1015.34 -0.122709
+MUSETT_T3_DSSD_X122_T 951.022 -0.114804
+MUSETT_T3_DSSD_X123_T 1014.72 -0.12265
+MUSETT_T3_DSSD_X124_T 952.48 -0.114986
+MUSETT_T3_DSSD_X125_T 1026.27 -0.124061
+MUSETT_T3_DSSD_X126_T 949.104 -0.114558
+MUSETT_T3_DSSD_X127_T 942.714 -0.11381
+MUSETT_T3_DSSD_X128_T 1019.9 -0.123313
diff --git a/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a5d1e2b960c0c2e0f6ff362782bcb378748bf1e7
--- /dev/null
+++ b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y1_T 983.985 -0.118941
+MUSETT_T3_DSSD_Y2_T 970.371 -0.117174
+MUSETT_T3_DSSD_Y3_T 984.045 -0.118815
+MUSETT_T3_DSSD_Y4_T 977.123 -0.118075
+MUSETT_T3_DSSD_Y5_T 985.023 -0.118931
+MUSETT_T3_DSSD_Y6_T 985.112 -0.119048
+MUSETT_T3_DSSD_Y7_T 990.894 -0.119638
+MUSETT_T3_DSSD_Y8_T 978.827 -0.118272
+MUSETT_T3_DSSD_Y9_T 996.439 -0.12034
+MUSETT_T3_DSSD_Y10_T 969.011 -0.117093
+MUSETT_T3_DSSD_Y11_T 1006.18 -0.121551
+MUSETT_T3_DSSD_Y12_T 970.24 -0.117251
+MUSETT_T3_DSSD_Y13_T 1001.89 -0.120998
+MUSETT_T3_DSSD_Y14_T 968.513 -0.117006
+MUSETT_T3_DSSD_Y15_T 996.258 -0.120321
+MUSETT_T3_DSSD_Y16_T 964.281 -0.116506
+MUSETT_T3_DSSD_Y17_T 1002.35 -0.121073
+MUSETT_T3_DSSD_Y18_T 956.368 -0.115546
+MUSETT_T3_DSSD_Y19_T 1008.58 -0.121839
+MUSETT_T3_DSSD_Y20_T 956.591 -0.115552
+MUSETT_T3_DSSD_Y21_T 1008.51 -0.121856
+MUSETT_T3_DSSD_Y22_T 951.968 -0.114994
+MUSETT_T3_DSSD_Y23_T 1015.07 -0.122649
+MUSETT_T3_DSSD_Y24_T 944.162 -0.114032
+MUSETT_T3_DSSD_Y25_T 1018.24 -0.12302
+MUSETT_T3_DSSD_Y26_T 947.224 -0.114409
+MUSETT_T3_DSSD_Y27_T 1007.23 -0.121668
+MUSETT_T3_DSSD_Y28_T 937.754 -0.113241
+MUSETT_T3_DSSD_Y29_T 1016.39 -0.122794
+MUSETT_T3_DSSD_Y30_T 928.777 -0.112154
+MUSETT_T3_DSSD_Y31_T 920.954 -0.11121
+MUSETT_T3_DSSD_Y32_T 1017.37 -0.122927
+MUSETT_T3_DSSD_Y33_T 905.69 -0.109382
+MUSETT_T3_DSSD_Y34_T 879.206 -0.105997
+MUSETT_T3_DSSD_Y35_T 885.638 -0.106772
+MUSETT_T3_DSSD_Y36_T 912.926 -0.110263
+MUSETT_T3_DSSD_Y37_T 897.352 -0.108217
+MUSETT_T3_DSSD_Y38_T 909.287 -0.109804
+MUSETT_T3_DSSD_Y39_T 900.017 -0.108527
+MUSETT_T3_DSSD_Y40_T 899.078 -0.108568
+MUSETT_T3_DSSD_Y41_T 894.065 -0.107825
+MUSETT_T3_DSSD_Y42_T 904.332 -0.109195
+MUSETT_T3_DSSD_Y43_T 902.563 -0.108862
+MUSETT_T3_DSSD_Y44_T 907.563 -0.109593
+MUSETT_T3_DSSD_Y45_T 907.447 -0.109456
+MUSETT_T3_DSSD_Y46_T 898.134 -0.10846
+MUSETT_T3_DSSD_Y47_T 913.155 -0.110152
+MUSETT_T3_DSSD_Y48_T 894.272 -0.10799
+MUSETT_T3_DSSD_Y49_T 917.884 -0.110718
+MUSETT_T3_DSSD_Y50_T 897.411 -0.108361
+MUSETT_T3_DSSD_Y51_T 916.39 -0.11056
+MUSETT_T3_DSSD_Y52_T 888.675 -0.107294
+MUSETT_T3_DSSD_Y53_T 925.29 -0.111636
+MUSETT_T3_DSSD_Y54_T 883.52 -0.106654
+MUSETT_T3_DSSD_Y55_T 911.348 -0.109934
+MUSETT_T3_DSSD_Y56_T 884.229 -0.106744
+MUSETT_T3_DSSD_Y57_T 924.685 -0.111581
+MUSETT_T3_DSSD_Y58_T 872.76 -0.105345
+MUSETT_T3_DSSD_Y59_T 925.584 -0.111694
+MUSETT_T3_DSSD_Y60_T 875.902 -0.10573
+MUSETT_T3_DSSD_Y61_T 920.738 -0.1111
+MUSETT_T3_DSSD_Y62_T 870.737 -0.105092
+MUSETT_T3_DSSD_Y63_T 873.601 -0.105446
+MUSETT_T3_DSSD_Y64_T 923.494 -0.11144
+MUSETT_T3_DSSD_Y65_T 951.047 -0.114947
+MUSETT_T3_DSSD_Y66_T 970.943 -0.117288
+MUSETT_T3_DSSD_Y67_T 982.69 -0.118727
+MUSETT_T3_DSSD_Y68_T 945.988 -0.114343
+MUSETT_T3_DSSD_Y69_T 988.906 -0.119474
+MUSETT_T3_DSSD_Y70_T 953.345 -0.115232
+MUSETT_T3_DSSD_Y71_T 992.522 -0.119909
+MUSETT_T3_DSSD_Y72_T 964.745 -0.116618
+MUSETT_T3_DSSD_Y73_T 994.13 -0.120116
+MUSETT_T3_DSSD_Y74_T 952.282 -0.115086
+MUSETT_T3_DSSD_Y75_T 1001.12 -0.120975
+MUSETT_T3_DSSD_Y76_T 955.625 -0.115517
+MUSETT_T3_DSSD_Y77_T 998.108 -0.120606
+MUSETT_T3_DSSD_Y78_T 939.764 -0.11354
+MUSETT_T3_DSSD_Y79_T 999.312 -0.12076
+MUSETT_T3_DSSD_Y80_T 947.183 -0.114462
+MUSETT_T3_DSSD_Y81_T 1004.15 -0.121336
+MUSETT_T3_DSSD_Y82_T 931.288 -0.112491
+MUSETT_T3_DSSD_Y83_T 1015.36 -0.122713
+MUSETT_T3_DSSD_Y84_T 932.714 -0.112672
+MUSETT_T3_DSSD_Y85_T 1018.49 -0.1231
+MUSETT_T3_DSSD_Y86_T 939.668 -0.113544
+MUSETT_T3_DSSD_Y87_T 1006.74 -0.121678
+MUSETT_T3_DSSD_Y88_T 931.355 -0.11252
+MUSETT_T3_DSSD_Y89_T 1015.03 -0.122697
+MUSETT_T3_DSSD_Y90_T 920.222 -0.11114
+MUSETT_T3_DSSD_Y91_T 1018.29 -0.123087
+MUSETT_T3_DSSD_Y92_T 911.599 -0.110106
+MUSETT_T3_DSSD_Y93_T 1010.39 -0.122144
+MUSETT_T3_DSSD_Y94_T 911.098 -0.110026
+MUSETT_T3_DSSD_Y95_T 904.406 -0.109216
+MUSETT_T3_DSSD_Y96_T 1011.64 -0.122274
+MUSETT_T3_DSSD_Y97_T 905.657 -0.109416
+MUSETT_T3_DSSD_Y98_T 891.482 -0.107554
+MUSETT_T3_DSSD_Y99_T 898.972 -0.108473
+MUSETT_T3_DSSD_Y100_T 899.215 -0.108625
+MUSETT_T3_DSSD_Y101_T 902.164 -0.108848
+MUSETT_T3_DSSD_Y102_T 903.69 -0.109168
+MUSETT_T3_DSSD_Y103_T 897.423 -0.108292
+MUSETT_T3_DSSD_Y104_T 905.571 -0.109439
+MUSETT_T3_DSSD_Y105_T 905.477 -0.109288
+MUSETT_T3_DSSD_Y106_T 903.343 -0.109125
+MUSETT_T3_DSSD_Y107_T 910.936 -0.109943
+MUSETT_T3_DSSD_Y108_T 894.177 -0.108006
+MUSETT_T3_DSSD_Y109_T 909.486 -0.109765
+MUSETT_T3_DSSD_Y110_T 894.856 -0.108068
+MUSETT_T3_DSSD_Y111_T 908.693 -0.109672
+MUSETT_T3_DSSD_Y112_T 902.34 -0.108999
+MUSETT_T3_DSSD_Y113_T 915.535 -0.110512
+MUSETT_T3_DSSD_Y114_T 895.161 -0.108126
+MUSETT_T3_DSSD_Y115_T 924.289 -0.111588
+MUSETT_T3_DSSD_Y116_T 903.16 -0.109085
+MUSETT_T3_DSSD_Y117_T 926.875 -0.111915
+MUSETT_T3_DSSD_Y118_T 892.165 -0.107742
+MUSETT_T3_DSSD_Y119_T 909.469 -0.109772
+MUSETT_T3_DSSD_Y120_T 892.528 -0.107789
+MUSETT_T3_DSSD_Y121_T 913.618 -0.11029
+MUSETT_T3_DSSD_Y122_T 885.298 -0.106904
+MUSETT_T3_DSSD_Y123_T 919.137 -0.110947
+MUSETT_T3_DSSD_Y124_T 876.164 -0.105791
+MUSETT_T3_DSSD_Y125_T 920.413 -0.111116
+MUSETT_T3_DSSD_Y126_T 871.593 -0.105224
+MUSETT_T3_DSSD_Y127_T 874.337 -0.105573
+MUSETT_T3_DSSD_Y128_T 928.523 -0.112131
diff --git a/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..123aa411a7c823ee9d78218b42045d68ce15cf07
--- /dev/null
+++ b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
@@ -0,0 +1,140 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 0
+Tcal = 1
+clean = 1
+if Ecal :
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]+1
+            else :
+                strip = MapY[int(ch)-1]+1
+
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]+1
+            else :
+                strip = MapY[int(ch)-1]+1
+
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/calibE0.cal1 b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/calibE0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..5f77c3d04858dd864b1411813497cfbbcbbac345
--- /dev/null
+++ b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/calibE0.cal1
@@ -0,0 +1,1024 @@
+-61662.3 7.52711 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61862.3 7.5515 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61786 7.54225 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61488.6 7.50587 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61896.8 7.55579 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61641.5 7.52453 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61399.4 7.49501 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61236.4 7.47509 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-60986.5 7.4446 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62681.3 7.65148 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62393.5 7.61631 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61925.3 7.55919 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62029.9 7.57195 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62417.6 7.61932 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61275.3 7.47982 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63058.3 7.69749 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62722.2 7.65646 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62134.9 7.58477 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62458.1 7.62423 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63902.7 7.80057 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62519.9 7.63181 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62297.5 7.60463 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62659.6 7.64878 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62852.3 7.67238 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62985.4 7.68854 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63073.7 7.69941 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62632 7.64548 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-63013.4 7.69203 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62579 7.63901 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63401.5 7.7394 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62630 7.64523 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56399 6.88462 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56789.2 6.93221 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55564.2 6.78269 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56333.4 6.87654 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-56040.6 6.84084 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+-10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55909.7 6.82487 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55658.4 6.79421 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56211.8 6.86172 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55874 6.82053 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56164.8 6.85597 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56307.5 6.87343 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56382 6.88247 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+-10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+-10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55911.5 6.82508 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57927.5 7.07116 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57924.8 7.07081 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57746 7.049 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57343.1 6.99988 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58172.2 7.10106 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57237.7 6.98697 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57876.3 7.06488 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57523.5 7.02188 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58500.7 7.14114 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57786.5 7.05393 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57300.4 6.99465 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57790.9 7.05448 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57203.4 6.9828 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57985 7.0782 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57888.7 7.06644 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58127.1 7.09555 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63452.4 7.74561 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63612.1 7.76511 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63338.7 7.73174 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64021.8 7.81515 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63197.4 7.71456 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63968.4 7.80864 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63853.8 7.79469 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63356.4 7.73397 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64117.7 7.82683 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63242.6 7.72007 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63972.5 7.80918 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63941.4 7.8053 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63651.8 7.77009 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63754.3 7.78255 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64292.8 7.84837 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64690.6 7.89693 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61215.8 7.47271 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60865.1 7.42995 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61147.3 7.46434 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61469.6 7.50369 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61379.1 7.49269 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61888.7 7.55484 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61403.2 7.49554 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62166.5 7.58877 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61896.4 7.55578 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61572.1 7.51618 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61720.5 7.53424 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62796.5 7.66557 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61868.1 7.55224 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60999.1 7.44621 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61368.2 7.49129 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62166.8 7.58877 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57169.7 6.97872 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57564 7.02681 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57724.2 7.04642 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57113.1 6.97176 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58126.5 7.0955 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57746.5 7.04909 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57665.4 7.03921 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57244.7 6.98784 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57357.8 7.00171 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57943.6 7.0732 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57279.1 6.99197 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57628.2 7.03471 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58567.7 7.1494 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58013.5 7.08178 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57681.5 7.04111 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57795.4 7.05508 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59002.3 7.20244 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59192.2 7.22562 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58512.8 7.14267 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58671.3 7.16207 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58171.6 7.10101 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58350.5 7.12281 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.4 7.11445 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58508.2 7.1421 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58511.7 7.14253 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58653.9 7.15989 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58550.4 7.14724 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59318.4 7.24097 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57853 7.06214 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58498.4 7.14087 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58426.4 7.13213 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59512.6 7.26467 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60443.5 -7.37839 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60908.5 -7.43514 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61060.2 -7.45367 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59984.4 -7.32237 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60129.5 -7.3401 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60783.1 -7.41989 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60431 -7.37691 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60140.7 -7.34142 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59998.4 -7.32403 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60395.7 -7.37254 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60028.3 -7.32774 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60887.8 -7.43267 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61066.5 -7.45441 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61164 -7.46632 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60739.8 -7.41458 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60443.5 -7.37838 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60544.4 -7.39071 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60303 -7.3612 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60143.3 -7.34174 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60328.6 -7.3644 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60395.9 -7.37256 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60276 -7.35798 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59684.2 -7.28572 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60187.9 -7.34719 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.4 -7.29698 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60128.6 -7.33997 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60450.5 -7.37922 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59890.5 -7.31089 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59647.3 -7.2812 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59834.9 -7.30412 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60999.1 -7.44624 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56552.5 -6.90341 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57074.5 -6.96718 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56536.5 -6.9015 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57036.3 -6.96248 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57405.1 -7.0075 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57259.2 -6.98972 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56419.6 -6.88718 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56461.1 -6.89226 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56951.6 -6.95213 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56800 -6.93367 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56600.5 -6.90927 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56511.5 -6.8984 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56870.5 -6.94221 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56993.6 -6.95727 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57679.7 -7.04103 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56560.6 -6.90438 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57546.6 -7.02477 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57035.8 -6.96245 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56800.6 -6.93377 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56505.8 -6.89773 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57161.4 -6.97779 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56855 -6.94036 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56619.7 -6.91168 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57621.8 -7.03399 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57359.7 -7.00197 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56825.9 -6.93676 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57031.5 -6.96191 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57239.3 -6.98735 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57254.8 -6.98918 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57074.4 -6.96716 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57574.5 -7.02822 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57912.4 -7.06943 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+61002.8 -7.44668 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61155.3 -7.4653 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61053.3 -7.45282 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61373.4 -7.4919 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60489.7 -7.38403 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61580.3 -7.51716 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60895.6 -7.4336 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60400.3 -7.3731 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61676.2 -7.52889 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61107.3 -7.45944 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61113.2 -7.46014 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61230.4 -7.47441 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60593.4 -7.39669 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61412.2 -7.49666 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61676.7 -7.52894 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61114.5 -7.46029 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62335.5 -7.60932 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61110.8 -7.45984 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61589.5 -7.51825 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62064.5 -7.57624 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61004.9 -7.44692 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60900.3 -7.43416 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61810.8 -7.54524 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61439.5 -7.49992 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61153 -7.46501 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61309.9 -7.48418 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61160.3 -7.46589 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61470.5 -7.50377 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61862.5 -7.55157 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61676 -7.52886 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62387.3 -7.61565 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60904.4 -7.43464 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56381.2 -6.88248 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56647.7 -6.91501 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56593.9 -6.90848 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56466.6 -6.8929 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56205.1 -6.86097 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56339.2 -6.87735 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56071.1 -6.84463 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56586.9 -6.90762 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56922.8 -6.94858 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56073.7 -6.84493 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57080.7 -6.96791 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57414.3 -7.00859 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56582.5 -6.9071 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56583.6 -6.90725 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56679.2 -6.91888 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56421.5 -6.8874 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56904.4 -6.94638 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57127.8 -6.97364 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56965.6 -6.9538 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56822.1 -6.93632 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57302 -6.99491 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.2 -6.90362 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56421.8 -6.88745 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56645.4 -6.91475 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57398.8 -7.00675 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57237.3 -6.98696 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56689 -6.92007 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56011.6 -6.83742 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56467.7 -6.89303 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55922.3 -6.8265 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56957.2 -6.95281 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56586.5 -6.90758 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62384.5 7.61517 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62210.4 7.59389 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62273.5 7.60161 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62019.1 7.5706 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61476.5 7.50432 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61597 7.51908 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62319.3 7.60717 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61416.3 7.49697 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61327.1 7.48611 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61486.5 7.50558 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61673.4 7.52832 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61732.6 7.53556 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61963.2 7.56376 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61418.2 7.49719 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61209 7.47165 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61987.6 7.56667 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62554.4 7.63592 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61756 7.53848 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62264.1 7.60048 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61953.7 7.56258 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62913.2 7.67967 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62120.9 7.583 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62709 7.65477 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62390 7.61587 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62229.7 7.59629 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61997.7 7.56794 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-62036.5 7.57262 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61752 7.53798 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61655.6 7.52623 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62767.5 7.66194 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61803 7.54422 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62761.8 7.66122 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58303.5 7.11703 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58372.5 7.12549 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58359.9 7.12397 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58262.2 7.11204 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58041 7.08509 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58261 7.11167 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58055.7 7.0867 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58647.4 7.15904 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58203.9 7.10488 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58893.9 7.18895 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58051.5 7.08632 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58539.4 7.14586 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58554.4 7.14758 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59335.9 7.24309 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58725.8 7.16875 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58465.7 7.13677 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.8 7.06394 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58529.8 7.14462 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-57972.8 7.07665 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57725.1 7.04637 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57946.6 7.07339 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57919.5 7.07013 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57971 7.07643 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57812.9 7.05708 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58059.5 7.08722 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57860.9 7.06295 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58481.2 7.13869 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57673.5 7.04005 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57733.9 7.04747 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58243 7.10961 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.2 7.09391 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58246.7 7.11007 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61009.3 7.44733 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61630.7 7.52317 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61471.8 7.50372 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61716.9 7.53361 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61893.5 7.55524 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.6 7.48633 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61623.4 7.52221 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61911.8 7.55752 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61279.1 7.48026 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62438.1 7.62175 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61937.8 7.56062 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62078.7 7.57786 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61496.4 7.50682 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61721.2 7.53417 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61321.1 7.48534 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61930.9 7.55971 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63425.9 7.7423 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63726 7.77898 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.8 7.83822 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63931 7.80396 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64114.7 7.8264 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63881.4 7.7979 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64089.1 7.82321 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64226 7.83998 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64162.8 7.83225 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64227.3 7.84014 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63324.3 7.72992 0.00 !Mu1ChX91ERaw[C.o2At2Ch11]
+-63377.9 7.73646 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64592.4 7.88475 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64051.2 7.81864 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63785.3 7.78625 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63425.1 7.74221 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56277.1 6.86963 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56696.4 6.92087 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56524.2 6.89973 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56421.9 6.88734 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56516.9 6.89896 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-56987.1 6.95627 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57341.9 6.99957 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56590.4 6.90785 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56842.5 6.93859 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57029.9 6.96151 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57840.1 7.06034 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57754.1 7.04987 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57718.4 7.04556 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57495 7.01832 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57673.7 7.0401 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-58035.2 7.08421 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57254.3 6.98888 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57309.6 6.99565 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56813.7 6.93513 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57684.3 7.04141 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57273.6 6.99128 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57263.3 6.99002 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56331.2 6.87626 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58331 7.12035 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57448.3 7.0126 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57763.7 7.05109 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57724.2 7.04628 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57458.3 7.01385 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57586.5 7.02947 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57671.5 7.03982 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57076.6 6.9672 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57818.9 7.05784 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59628.2 -7.27891 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60484.2 -7.3834 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59719.3 -7.29006 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59358 -7.24601 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60209.4 -7.34991 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60023.9 -7.32724 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59427.4 -7.25442 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59479.8 -7.26081 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.6 -7.25995 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59661.5 -7.28303 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59523 -7.2661 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59520.7 -7.26582 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60207.7 -7.3497 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59281.6 -7.23662 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59499.5 -7.26329 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59822.2 -7.30262 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62231 -7.59672 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62517.6 -7.63166 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62462.5 -7.62493 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62047 -7.57417 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62207.3 -7.59375 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62362.9 -7.61277 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62017.5 -7.57064 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61713.9 -7.53355 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61449.1 -7.50123 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62086.1 -7.57898 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62077.7 -7.57796 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62287.6 -7.60362 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62027.9 -7.5719 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61668.6 -7.52799 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61804.8 -7.54468 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115.7 -6.85022 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56255.7 -6.86728 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55634.9 -6.79153 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55640.9 -6.79227 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55384.3 -6.76092 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56420.4 -6.88745 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55380.9 -6.76051 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55934.8 -6.82817 0.00 !Mu1ChY40ERaw[C.o3At3Ch8]
+56036.5 -6.84053 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56149.2 -6.85434 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55509.9 -6.77625 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56637.3 -6.9139 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55637.9 -6.79188 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55730.3 -6.80315 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55751.6 -6.80582 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55760.9 -6.80693 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.7 -6.9819 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56616.7 -6.91132 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56565.1 -6.90504 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56007.5 -6.83694 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56838.9 -6.93846 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56277 -6.86982 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56475.8 -6.89415 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56394.9 -6.88425 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57286.1 -6.99307 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57107.7 -6.97128 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56704.7 -6.92209 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57329.2 -6.99832 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57398.8 -7.00677 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57025.8 -6.96125 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56179.4 -6.85794 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57294.5 -6.99407 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61036 -7.45079 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61615.2 -7.52147 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61327.7 -7.48646 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61616.9 -7.52169 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61289.5 -7.48175 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60072.3 -7.33313 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60461.8 -7.38072 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61147.5 -7.46439 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60324.6 -7.36394 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61243.3 -7.47609 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60892.2 -7.43321 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60362.6 -7.36861 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60563.4 -7.39312 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60969.5 -7.44272 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60632 -7.40146 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61354.5 -7.48966 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61129 -7.46218 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61142.4 -7.46376 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61098.2 -7.45836 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60505 -7.38602 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60475.6 -7.38236 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61198.3 -7.47058 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60653.8 -7.40421 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60610.3 -7.39887 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61084.6 -7.45673 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61281.6 -7.48082 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60759.5 -7.41709 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60908.7 -7.43532 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60520.1 -7.38782 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61330.5 -7.48678 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61609.9 -7.52084 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60752.2 -7.41622 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55866.2 -6.81972 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55510.1 -6.77629 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55739.1 -6.80422 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55602.7 -6.78757 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55779.5 -6.80916 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55452.6 -6.76931 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55433.8 -6.76695 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56175.8 -6.85753 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55295 -6.75003 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55267.6 -6.74664 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55913.4 -6.82548 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55219 -6.74076 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55914.7 -6.82563 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56088.3 -6.84683 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56128.7 -6.85177 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.7 -6.9068 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54791.9 -6.68861 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55573.5 -6.78397 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55177.3 -6.73564 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.9 -6.722 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55271.1 -6.74706 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55426.4 -6.76607 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55308.9 -6.7517 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55560.5 -6.78242 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55828.4 -6.8151 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55461.9 -6.77042 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.4 -6.69404 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55154.2 -6.73277 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55218.5 -6.74067 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55198.9 -6.73821 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55347.2 -6.75638 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56270.5 -6.86904 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62771.8 7.66248 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62536.2 7.63367 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62923.2 7.68092 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62099.2 7.5803 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62071.6 7.577 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62762.5 7.66131 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62536.6 7.63372 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62863.4 7.6736 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62977.6 7.68755 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62169.2 7.58889 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62486.2 7.62758 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62494 7.62855 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62591.4 7.6404 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62596.5 7.64104 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62693.3 7.65283 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63431.9 7.74304 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62275.5 7.60186 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61847 7.54956 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61648.9 7.52542 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61472.2 7.5038 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61487.7 7.50573 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62323.6 7.60772 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62160.6 7.58783 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61801.5 7.54404 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61589.4 7.51813 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61837.9 7.54843 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61997.2 7.56788 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61886.9 7.55441 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61669.6 7.52787 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61317.6 7.48493 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62385.4 7.6153 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61544.8 7.51271 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59005.1 7.20263 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58125.4 7.0952 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58621 7.15577 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58420.8 7.13128 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58182.1 7.10215 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58179.5 7.10183 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58382.7 7.12665 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57951.6 7.074 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57619.4 7.03346 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58602.8 7.15349 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58763.6 7.17317 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58295.3 7.11601 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58611.5 7.15458 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58569.5 7.14945 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58368.6 7.12489 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58524.7 7.144 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57829.7 7.05919 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57177.7 6.97958 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58151 7.0984 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57925 7.07083 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57600.2 7.03119 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57219.8 6.9847 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57855.4 7.06228 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57682.2 7.04116 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57912.6 7.06929 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57598.9 7.03102 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57919.6 7.07016 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.5 6.9577 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57498.2 7.01871 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56729.1 6.92483 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57500.6 7.01901 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57910.6 7.06904 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63311 7.72824 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64991.8 7.93347 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-63994.5 7.8117 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63750.3 7.78186 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64408.5 7.86228 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63629 7.76702 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63438.8 7.74388 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63358.3 7.73399 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63144.6 7.70793 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63812.1 7.7894 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63662.4 7.77117 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63876.9 7.79733 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63771.1 7.78444 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63652.1 7.7699 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63600.3 7.76358 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63256.4 7.72158 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63333.7 7.73107 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63150 7.70859 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63204.5 7.71524 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63982.1 7.81015 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63771.3 7.78446 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63682.7 7.7737 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63921.1 7.80269 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63090.3 7.7013 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63548.7 7.75733 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63345.7 7.73257 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63537.7 7.75593 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63267.1 7.72292 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64614.3 7.88733 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63737 7.78019 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63627.5 7.76682 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59011.6 7.20345 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58536.3 7.14543 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58294.5 7.11592 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58764.5 7.17328 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59388.2 7.24938 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59353.9 7.24523 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58868.9 7.18606 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59020.4 7.20454 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59051.2 7.20827 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59067.7 7.21031 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58780.6 7.17527 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59011.8 7.20348 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58685.6 7.16369 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60313.6 7.36243 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58947.7 7.1956 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58640.6 7.15819 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59256.4 7.23333 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59391.4 7.24979 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59741.5 7.29254 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59153 7.2207 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59659.3 7.28255 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60043.5 7.32941 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59492.9 7.26218 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59355.9 7.2455 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60079 7.3337 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58759.7 7.17268 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59106.3 7.21501 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59356.4 7.24556 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58905.4 7.19045 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58909 7.19091 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59139.8 7.21905 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59244.4 7.23184 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63180.3 -7.71254 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63958.5 -7.80757 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62563.9 -7.63734 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63393.8 -7.73864 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62965.3 -7.6863 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62695.2 -7.65332 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63071 -7.6992 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62684.7 -7.65205 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62805.2 -7.66674 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63405.9 -7.74008 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+63006 -7.69129 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62613.8 -7.64344 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62135.8 -7.58506 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62797.8 -7.66584 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+63003.9 -7.69104 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63451.5 -7.74566 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61680.4 -7.52939 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60963.7 -7.44202 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60731.3 -7.4136 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62044.4 -7.57386 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.9 -7.46121 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60932 -7.4381 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62091.8 -7.57965 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61042.5 -7.45157 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61080.2 -7.45622 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61569 -7.51583 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61088.9 -7.45724 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61401.8 -7.49545 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61590.8 -7.51854 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61456.7 -7.50214 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61348.2 -7.48891 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61814.6 -7.54586 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56310.4 -6.87387 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56475.6 -6.89413 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56843.7 -6.93897 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56709.9 -6.9227 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+57006.5 -6.95894 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56922.7 -6.94871 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56395.9 -6.88437 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56437.5 -6.88946 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56168.1 -6.85657 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58137.4 -7.09691 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56752.1 -6.92786 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56268.3 -6.86879 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57248.3 -6.98843 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57237.7 -6.98715 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57062.5 -6.96574 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56700.2 -6.92152 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57609.4 -7.03252 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57045.1 -6.96368 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57893.4 -7.06716 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57432.1 -7.01085 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57327.3 -6.9981 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58593.6 -7.15267 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57713.2 -7.04516 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57801 -7.05589 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57750.1 -7.0497 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57564.6 -7.02705 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57513.2 -7.02079 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58298.6 -7.11669 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57883.6 -7.066 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57333.9 -6.99889 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57877.7 -7.06529 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58222.3 -7.10732 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59352.4 -7.24534 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59653 -7.28202 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59466.7 -7.25926 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60421 -7.37573 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59563.3 -7.27104 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59865.2 -7.30789 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59568.1 -7.27161 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59903.1 -7.31254 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59874.2 -7.30895 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59565.9 -7.27135 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59951.4 -7.31844 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60102.6 -7.33689 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59329 -7.24242 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59973.3 -7.32106 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59369.2 -7.24734 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60205.5 -7.34945 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60559.1 -7.39262 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61223.9 -7.47379 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60555.5 -7.39217 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61267.8 -7.47916 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61183.2 -7.46879 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60877.4 -7.43143 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60964.7 -7.44213 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61316.7 -7.48517 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60889.6 -7.43289 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60834.9 -7.42623 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61475.4 -7.50452 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60713.8 -7.41149 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61139.9 -7.46349 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60586.2 -7.39585 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61091.2 -7.45753 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61463 -7.50289 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56883.7 -6.94393 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55958.3 -6.83096 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56259.7 -6.86775 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56620.9 -6.91184 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56390.1 -6.88368 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56741.9 -6.92663 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55881.7 -6.82158 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57242.5 -6.98773 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56047.6 -6.84185 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56706.4 -6.92227 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56618.3 -6.91153 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57516.3 -7.02116 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57052.7 -6.96458 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56701.3 -6.92167 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57023.2 -6.96095 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56155.3 -6.85506 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56480.1 -6.89468 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57291 -6.99365 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56601.1 -6.90948 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56864.7 -6.94167 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56504.8 -6.89772 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56531 -6.90085 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56803.1 -6.93407 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56744.6 -6.92696 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56339.6 -6.87753 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57094.7 -6.96973 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57471.8 -7.01574 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56243.7 -6.86585 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56920.2 -6.94841 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56357.9 -6.87972 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56171.4 -6.85698 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62432 7.62115 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61898.1 7.55599 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62261.8 7.60035 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62377.7 7.61452 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61987.1 7.56678 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61925.3 7.55922 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62100.7 7.58066 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61621.8 7.5222 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61764.3 7.53956 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61918.3 7.55834 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61881.5 7.55388 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62903 7.67858 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61674.1 7.52859 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61812.4 7.54541 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61555.6 7.51408 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62627.4 7.64492 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63656.5 7.77047 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63108 7.70354 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62943.4 7.68346 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62837.7 7.67058 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62676.4 7.65089 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.8 7.70503 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63798 7.78783 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63791 7.78695 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62795 7.6654 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63502.6 7.75172 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63532.1 7.75542 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63309.9 7.72829 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63637.8 7.76831 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63587.2 7.76214 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64531.7 7.87739 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63742.8 7.78111 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59430.3 7.25494 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59220.2 7.22924 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58174.6 7.10163 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58373.6 7.12581 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58848.1 7.18369 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-59012.9 7.20387 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59307.2 7.23977 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58677.9 7.16294 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59283.1 7.23677 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58956.4 7.1969 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-59043.5 7.20751 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59047.9 7.20805 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59414.1 7.25268 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58832.8 7.18171 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59184.6 7.22469 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57410.4 7.00817 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57223.7 6.98537 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56941.7 6.95094 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57306.3 6.99545 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56939.2 6.95063 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57390.5 7.00573 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56638.3 6.91393 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57358.5 7.00183 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57684.4 7.04165 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56591.3 6.9082 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57508 7.02016 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57136.1 6.97475 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56380.4 6.88251 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56917.4 6.9481 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56824.5 6.93679 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56577 6.90664 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64140 7.82956 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63839.3 7.79281 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63564.4 7.75927 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63770.4 7.78438 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63671.6 7.77235 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63272.3 7.72359 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64307 7.84993 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62530.8 7.63314 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62672.9 7.65044 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63019 7.69272 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63152.8 7.70897 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63441 7.74419 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64109.3 7.82574 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62453.5 7.62365 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62622.2 7.64425 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63017.2 7.69251 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62453.4 7.62363 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62780.3 7.66354 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62670.1 7.65009 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62554.7 7.63598 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62062.4 7.57587 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62422.6 7.61994 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62402.7 7.61746 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.8 7.58526 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62351.6 7.61123 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62791 7.66488 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62302.7 7.60527 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62078.1 7.57785 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62829.3 7.66952 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.5 7.6367 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62144 7.5859 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62353.9 7.61152 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56131.1 6.85191 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55920.2 6.82616 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55178.7 6.73562 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55783.6 6.8095 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55958 6.83076 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55940.2 6.82857 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55976 6.83293 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55255.5 6.74498 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55479.7 6.77237 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-56040.3 6.84079 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55791.2 6.81044 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55701.6 6.79948 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56738.3 6.92598 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56293.9 6.87171 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55819.1 6.81378 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55694.2 6.79856 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57554.1 7.02556 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56976.8 6.95514 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57518.4 7.02123 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56980.7 6.95562 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58026.2 7.08323 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57191.1 6.98127 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57432 7.01071 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56290.9 6.87137 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56748.2 6.92722 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57901.7 7.06808 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57512.9 7.02056 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57112.4 6.9717 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57653.3 7.03769 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56762.7 6.92904 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57841.9 7.06073 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56524.8 6.89995 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60194.7 -7.34802 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987.9 -7.20075 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60132.2 -7.34041 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59977.5 -7.32152 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59787.4 -7.2983 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59893.4 -7.31122 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59798.6 -7.29963 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60251.3 -7.3549 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60589.5 -7.39622 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60436.6 -7.37756 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60189.7 -7.3474 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59826.4 -7.3031 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59687.2 -7.28606 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59622.1 -7.27818 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60574.8 -7.39447 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59719.2 -7.29002 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62963.1 -7.68601 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63186.9 -7.71331 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62262.3 -7.60044 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62806 -7.6668 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63246.8 -7.72062 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63550.3 -7.75759 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+63016.8 -7.69256 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62986.6 -7.68882 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63522.2 -7.75424 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63478.7 -7.7489 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62643.1 -7.64692 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63429.9 -7.74292 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62483.7 -7.62745 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62960.7 -7.68572 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63085.3 -7.7009 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62969.4 -7.68675 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84715 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56228.6 -6.86391 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55834.6 -6.81583 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55713 -6.80096 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55757 -6.80633 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56228 -6.86384 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55925.9 -6.82695 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55539.7 -6.77979 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55412.1 -6.76422 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185 -6.85859 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55981.8 -6.83375 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55370.8 -6.75918 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55748.9 -6.80537 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55612.3 -6.78871 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55926.3 -6.82699 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55801.2 -6.81172 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56670.8 -6.9179 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56949.5 -6.9519 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57147.1 -6.97597 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56960.4 -6.95318 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56493.9 -6.89629 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56963.2 -6.95364 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56581.6 -6.90701 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57050.7 -6.96421 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57076.9 -6.96747 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56623.8 -6.91216 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57493.2 -7.01827 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57089.4 -6.96896 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57586.3 -7.02963 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57044.7 -6.96349 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56777.7 -6.93089 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57421.6 -7.00961 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59437.6 -7.25562 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59994 -7.32351 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59523.9 -7.2662 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59337.1 -7.24336 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59498.6 -7.26303 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58818.6 -7.18002 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59332.2 -7.24276 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+60018.7 -7.32659 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60180.5 -7.3463 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59480.7 -7.26089 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59527.7 -7.26664 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59635.1 -7.27972 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59581.2 -7.27315 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59444.7 -7.25647 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59048.4 -7.20811 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59989.5 -7.32298 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62855.4 -7.67285 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62750.4 -7.66003 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62532.7 -7.63346 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62151.3 -7.58691 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.6 -7.57075 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62710.2 -7.65509 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62271.6 -7.60155 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62960 -7.68565 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62677.8 -7.65121 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62626.1 -7.64489 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61878.3 -7.55359 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61999.2 -7.56832 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61924.7 -7.55927 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+61995.6 -7.56788 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61960.5 -7.56357 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61833.6 -7.54812 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56731.4 -6.92523 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56909.9 -6.94702 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56318.3 -6.87484 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55946.5 -6.8294 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56299.8 -6.87252 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56328.7 -6.87609 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55986.5 -6.8343 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55996.3 -6.83546 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55858.1 -6.81861 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56336.4 -6.877 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56504.4 -6.89753 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56280.4 -6.87019 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55801.7 -6.81176 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55903.8 -6.82419 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56672.2 -6.91805 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56668.9 -6.91765 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57102.2 -6.97047 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57033.7 -6.96222 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57102 -6.97059 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+57015.2 -6.95994 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57666.6 -7.03944 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57327.3 -6.99806 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56838.8 -6.9384 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57642.3 -7.0364 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57472.4 -7.01575 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57009.2 -6.95917 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57427.6 -7.01028 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57105.1 -6.97094 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57606 -7.03198 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56852.7 -6.94013 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57287.8 -6.99311 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57526.7 -7.02236 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/calibT0.cal1 b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/calibT0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..09f74dedd1b793c1b5dd151ef57e7311b3f4476e
--- /dev/null
+++ b/Projects/MUSETT/calibration/Time/Calibration/double_alpha_Ra220/calibT0.cal1
@@ -0,0 +1,1023 @@
+943.498 -0.114176 0.00 !Mu0ChX1TRaw[Co1At1Ch1]
+954.542 -0.115529 0.00 !Mu0ChX2TRaw[Co1At1Ch2]
+955.481 -0.115657 0.00 !Mu0ChX3TRaw[Co1At1Ch3]
+969.726 -0.117409 0.00 !Mu0ChX4TRaw[Co1At1Ch4]
+969.528 -0.117367 0.00 !Mu0ChX5TRaw[Co1At1Ch5]
+969.351 -0.117353 0.00 !Mu0ChX6TRaw[Co1At1Ch6]
+974.621 -0.117969 0.00 !Mu0ChX7TRaw[Co1At1Ch7]
+976.758 -0.118246 0.00 !Mu0ChX8TRaw[Co1At1Ch8]
+975.237 -0.118065 0.00 !Mu0ChX9TRaw[Co1At1Ch9]
+979.286 -0.118546 0.00 !Mu0ChX10TRaw[Co1At1Ch10]
+984.065 -0.119138 0.00 !Mu0ChX11TRaw[Co1At1Ch11]
+983.533 -0.119075 0.00 !Mu0ChX12TRaw[Co1At1Ch12]
+991.106 -0.119996 0.00 !Mu0ChX13TRaw[Co1At1Ch13]
+976.115 -0.118174 0.00 !Mu0ChX14TRaw[Co1At1Ch14]
+987.246 -0.119531 0.00 !Mu0ChX15TRaw[Co1At1Ch15]
+978.41 -0.118448 0.00 !Mu0ChX16TRaw[Co1At1Ch16]
+952.87 -0.115275 0.00 !Mu0ChX17TRaw[Co1At2Ch1]
+963.333 -0.116527 0.00 !Mu0ChX18TRaw[Co1At2Ch2]
+975.677 -0.118044 0.00 !Mu0ChX19TRaw[Co1At2Ch3]
+976.043 -0.118125 0.00 !Mu0ChX20TRaw[Co1At2Ch4]
+985.306 -0.119233 0.00 !Mu0ChX21TRaw[Co1At2Ch5]
+979.666 -0.118555 0.00 !Mu0ChX22TRaw[Co1At2Ch6]
+990.352 -0.119845 0.00 !Mu0ChX23TRaw[Co1At2Ch7]
+991.826 -0.120005 0.00 !Mu0ChX24TRaw[Co1At2Ch8]
+987.033 -0.119427 0.00 !Mu0ChX25TRaw[Co1At2Ch9]
+998.041 -0.120777 0.00 !Mu0ChX26TRaw[Co1At2Ch10]
+1000.4 -0.121057 0.00 !Mu0ChX27TRaw[Co1At2Ch11]
+1004.27 -0.121545 0.00 !Mu0ChX28TRaw[Co1At2Ch12]
+1000.07 -0.121021 0.00 !Mu0ChX29TRaw[Co1At2Ch13]
+998.458 -0.120851 0.00 !Mu0ChX30TRaw[Co1At2Ch14]
+995.135 -0.12045 0.00 !Mu0ChX31TRaw[Co1At2Ch15]
+991.094 -0.119947 0.00 !Mu0ChX32TRaw[Co1At2Ch16]
+869.874 -0.105192 0.00 !Mu0ChX33TRaw[Co1At3Ch1]
+867.818 -0.104955 0.00 !Mu0ChX34TRaw[Co1At3Ch2]
+887.963 -0.107397 0.00 !Mu0ChX35TRaw[Co1At3Ch3]
+876.58 -0.106033 0.00 !Mu0ChX36TRaw[Co1At3Ch4]
+878.364 -0.106227 0.00 !Mu0ChX37TRaw[Co1At3Ch5]
+892.804 -0.108005 0.00 !Mu0ChX38TRaw[Co1At3Ch6]
+894.475 -0.108195 0.00 !Mu0ChX39TRaw[Co1At3Ch7]
+892.476 -0.107979 0.00 !Mu0ChX40TRaw[Co1At3Ch8]
+895.157 -0.108302 0.00 !Mu0ChX41TRaw[Co1At3Ch9]
+895.419 -0.108334 0.00 !Mu0ChX42TRaw[Co1At3Ch10]
+894.752 -0.108243 0.00 !Mu0ChX43TRaw[Co1At3Ch11]
+901.721 -0.109095 0.00 !Mu0ChX44TRaw[Co1At3Ch12]
+896.865 -0.108505 0.00 !Mu0ChX45TRaw[Co1At3Ch13]
+891.69 -0.107877 0.00 !Mu0ChX46TRaw[Co1At3Ch14]
+894.258 -0.108187 0.00 !Mu0ChX47TRaw[Co1At3Ch15]
+894.901 -0.10826 0.00 !Mu0ChX48TRaw[Co1At3Ch16]
+881.631 -0.106556 0.00 !Mu0ChX49TRaw[Co1At4Ch1]
+884.86 -0.106942 0.00 !Mu0ChX50TRaw[Co1At4Ch2]
+890.381 -0.107622 0.00 !Mu0ChX51TRaw[Co1At4Ch3]
+903.08 -0.109464 0.00 !Mu0ChX52TRaw[Co1At4Ch4]
+903.944 -0.109295 0.00 !Mu0ChX53TRaw[Co1At4Ch5]
+907.059 -0.109652 0.00 !Mu0ChX54TRaw[Co1At4Ch6]
+909.716 -0.109955 0.00 !Mu0ChX55TRaw[Co1At4Ch7]
+913.814 -0.110458 0.00 !Mu0ChX56TRaw[Co1At4Ch8]
+922.196 -0.111499 0.00 !Mu0ChX57TRaw[Co1At4Ch9]
+913.548 -0.110456 0.00 !Mu0ChX58TRaw[Co1At4Ch10]
+921.22 -0.111378 0.00 !Mu0ChX59TRaw[Co1At4Ch11]
+925.852 -0.111943 0.00 !Mu0ChX60TRaw[Co1At4Ch12]
+932.855 -0.112807 0.00 !Mu0ChX61TRaw[Co1At4Ch13]
+935.505 -0.11314 0.00 !Mu0ChX62TRaw[Co1At4Ch14]
+937.107 -0.113338 0.00 !Mu0ChX63TRaw[Co1At4Ch15]
+926.099 -0.111982 0.00 !Mu0ChX64TRaw[Co1At4Ch16]
+957.155 -0.115846 0.00 !Mu0ChX65TRaw[Co2At1Ch1]
+962.206 -0.11646 0.00 !Mu0ChX66TRaw[Co2At1Ch2]
+971.895 -0.117644 0.00 !Mu0ChX67TRaw[Co2At1Ch3]
+973.151 -0.117791 0.00 !Mu0ChX68TRaw[Co2At1Ch4]
+976.443 -0.118174 0.00 !Mu0ChX69TRaw[Co2At1Ch5]
+989.114 -0.119717 0.00 !Mu0ChX70TRaw[Co2At1Ch6]
+993.741 -0.120284 0.00 !Mu0ChX71TRaw[Co2At1Ch7]
+994.917 -0.120426 0.00 !Mu0ChX72TRaw[Co2At1Ch8]
+1005.69 -0.121763 0.00 !Mu0ChX73TRaw[Co2At1Ch9]
+986.82 -0.119445 0.00 !Mu0ChX74TRaw[Co2At1Ch10]
+1003.89 -0.121535 0.00 !Mu0ChX75TRaw[Co2At1Ch11]
+994.316 -0.120381 0.00 !Mu0ChX76TRaw[Co2At1Ch12]
+1001.66 -0.121262 0.00 !Mu0ChX77TRaw[Co2At1Ch13]
+1005.75 -0.121766 0.00 !Mu0ChX78TRaw[Co2At1Ch14]
+996.228 -0.120615 0.00 !Mu0ChX79TRaw[Co2At1Ch15]
+999.032 -0.120952 0.00 !Mu0ChX80TRaw[Co2At1Ch16]
+922.493 -0.111515 0.00 !Mu0ChX81TRaw[Co2At2Ch1]
+932.405 -0.112746 0.00 !Mu0ChX82TRaw[Co2At2Ch2]
+924.498 -0.111774 0.00 !Mu0ChX83TRaw[Co2At2Ch3]
+936.88 -0.113281 0.00 !Mu0ChX84TRaw[Co2At2Ch4]
+930.333 -0.112468 0.00 !Mu0ChX85TRaw[Co2At2Ch5]
+941.329 -0.113819 0.00 !Mu0ChX86TRaw[Co2At2Ch6]
+949.396 -0.114818 0.00 !Mu0ChX87TRaw[Co2At2Ch7]
+942.586 -0.113978 0.00 !Mu0ChX88TRaw[Co2At2Ch8]
+949.288 -0.114813 0.00 !Mu0ChX89TRaw[Co2At2Ch9]
+956.784 -0.115728 0.00 !Mu0ChX90TRaw[Co2At2Ch10]
+964.341 -0.11664 0.00 !Mu0ChX91TRaw[Co2At2Ch11]
+961.03 -0.11625 0.00 !Mu0ChX92TRaw[Co2At2Ch12]
+961.407 -0.116299 0.00 !Mu0ChX93TRaw[Co2At2Ch13]
+960.173 -0.116152 0.00 !Mu0ChX94TRaw[Co2At2Ch14]
+974.188 -0.117868 0.00 !Mu0ChX95TRaw[Co2At2Ch15]
+965.16 -0.116744 0.00 !Mu0ChX96TRaw[Co2At2Ch16]
+868.319 -0.105013 0.00 !Mu0ChX97TRaw[Co2At3Ch1]
+877.769 -0.106169 0.00 !Mu0ChX98TRaw[Co2At3Ch2]
+878.126 -0.106212 0.00 !Mu0ChX99TRaw[Co2At3Ch3]
+883.907 -0.106905 0.00 !Mu0ChX100TRaw[Co2At3Ch4]
+893.227 -0.108043 0.00 !Mu0ChX101TRaw[Co2At3Ch5]
+900.551 -0.108935 0.00 !Mu0ChX102TRaw[Co2At3Ch6]
+896.432 -0.108442 0.00 !Mu0ChX103TRaw[Co2At3Ch7]
+894.569 -0.108194 0.00 !Mu0ChX104TRaw[Co2At3Ch8]
+903.782 -0.109336 0.00 !Mu0ChX105TRaw[Co2At3Ch9]
+901.487 -0.109053 0.00 !Mu0ChX106TRaw[Co2At3Ch10]
+907.332 -0.109771 0.00 !Mu0ChX107TRaw[Co2At3Ch11]
+904.852 -0.109449 0.00 !Mu0ChX108TRaw[Co2At3Ch12]
+902.075 -0.109128 0.00 !Mu0ChX109TRaw[Co2At3Ch13]
+906.169 -0.109641 0.00 !Mu0ChX110TRaw[Co2At3Ch14]
+902.566 -0.109177 0.00 !Mu0ChX111TRaw[Co2At3Ch15]
+904.912 -0.109478 0.00 !Mu0ChX112TRaw[Co2At3Ch16]
+888.355 -0.107364 0.00 !Mu0ChX113TRaw[Co2At4Ch1]
+891.484 -0.107748 0.00 !Mu0ChX114TRaw[Co2At4Ch2]
+891.715 -0.107782 0.00 !Mu0ChX115TRaw[Co2At4Ch3]
+901.831 -0.109007 0.00 !Mu0ChX116TRaw[Co2At4Ch4]
+905.323 -0.109423 0.00 !Mu0ChX117TRaw[Co2At4Ch5]
+898.889 -0.108648 0.00 !Mu0ChX118TRaw[Co2At4Ch6]
+913.375 -0.110413 0.00 !Mu0ChX119TRaw[Co2At4Ch7]
+914.714 -0.110579 0.00 !Mu0ChX120TRaw[Co2At4Ch8]
+908.954 -0.109898 0.00 !Mu0ChX121TRaw[Co2At4Ch9]
+914.168 -0.1105 0.00 !Mu0ChX122TRaw[Co2At4Ch10]
+922.429 -0.111529 0.00 !Mu0ChX123TRaw[Co2At4Ch11]
+914.821 -0.110604 0.00 !Mu0ChX124TRaw[Co2At4Ch12]
+917.725 -0.110972 0.00 !Mu0ChX125TRaw[Co2At4Ch13]
+919.575 -0.11118 0.00 !Mu0ChX126TRaw[Co2At4Ch14]
+914.799 -0.110613 0.00 !Mu0ChX127TRaw[Co2At4Ch15]
+919.481 -0.111151 0.00 !Mu0ChX128TRaw[Co2At4Ch16]
+944.925 -0.114033 0.00 !Mu0ChY2TRaw[Co3At1Ch2]
+944.005 -0.113921 0.00 !Mu0ChY3TRaw[Co3At1Ch3]
+962.012 -0.116104 0.00 !Mu0ChY4TRaw[Co3At1Ch4]
+957.491 -0.115563 0.00 !Mu0ChY5TRaw[Co3At1Ch5]
+973.261 -0.117481 0.00 !Mu0ChY6TRaw[Co3At1Ch6]
+971.85 -0.117339 0.00 !Mu0ChY7TRaw[Co3At1Ch7]
+969.183 -0.117018 0.00 !Mu0ChY8TRaw[Co3At1Ch8]
+975.83 -0.117842 0.00 !Mu0ChY9TRaw[Co3At1Ch9]
+971.457 -0.117316 0.00 !Mu0ChY10TRaw[Co3At1Ch10]
+974.23 -0.117632 0.00 !Mu0ChY11TRaw[Co3At1Ch11]
+980.648 -0.118398 0.00 !Mu0ChY12TRaw[Co3At1Ch12]
+978.32 -0.11814 0.00 !Mu0ChY13TRaw[Co3At1Ch13]
+974.115 -0.117633 0.00 !Mu0ChY14TRaw[Co3At1Ch14]
+976.65 -0.117944 0.00 !Mu0ChY15TRaw[Co3At1Ch15]
+983.277 -0.118761 0.00 !Mu0ChY16TRaw[Co3At1Ch16]
+938.109 -0.113175 0.00 !Mu0ChY17TRaw[Co3At2Ch1]
+947.448 -0.114309 0.00 !Mu0ChY18TRaw[Co3At2Ch2]
+956.035 -0.115351 0.00 !Mu0ChY19TRaw[Co3At2Ch3]
+947.978 -0.11436 0.00 !Mu0ChY20TRaw[Co3At2Ch4]
+950.631 -0.114686 0.00 !Mu0ChY21TRaw[Co3At2Ch5]
+953.963 -0.115103 0.00 !Mu0ChY22TRaw[Co3At2Ch6]
+959.973 -0.115832 0.00 !Mu0ChY23TRaw[Co3At2Ch7]
+959.848 -0.115841 0.00 !Mu0ChY24TRaw[Co3At2Ch8]
+964.52 -0.116398 0.00 !Mu0ChY25TRaw[Co3At2Ch9]
+962.989 -0.116195 0.00 !Mu0ChY26TRaw[Co3At2Ch10]
+959.157 -0.115516 0.00 !Mu0ChY27TRaw[Co3At2Ch11]
+973.941 -0.117562 0.00 !Mu0ChY28TRaw[Co3At2Ch12]
+976.25 -0.117834 0.00 !Mu0ChY29TRaw[Co3At2Ch13]
+971.294 -0.11722 0.00 !Mu0ChY30TRaw[Co3At2Ch14]
+974.292 -0.11759 0.00 !Mu0ChY31TRaw[Co3At2Ch15]
+968.991 -0.116928 0.00 !Mu0ChY32TRaw[Co3At2Ch16]
+871.769 -0.105131 0.00 !Mu0ChY33TRaw[Co3At3Ch1]
+871.608 -0.105113 0.00 !Mu0ChY34TRaw[Co3At3Ch2]
+888.383 -0.107174 0.00 !Mu0ChY35TRaw[Co3At3Ch3]
+878.496 -0.105955 0.00 !Mu0ChY36TRaw[Co3At3Ch4]
+889.979 -0.107363 0.00 !Mu0ChY37TRaw[Co3At3Ch5]
+889.448 -0.107278 0.00 !Mu0ChY38TRaw[Co3At3Ch6]
+889.860 -0.107347 0.00 !Mu0ChY39TRaw[Co3At3Ch7]
+908.071 -0.109567 0.00 !Mu0ChY40TRaw[Co3At3Ch8]
+905.490 -0.109285 0.00 !Mu0ChY41TRaw[Co3At3Ch9]
+903.864 -0.109045 0.00 !Mu0ChY42TRaw[Co3At3Ch10]
+902.655 -0.108924 0.00 !Mu0ChY43TRaw[Co3At3Ch11]
+913.208 -0.110196 0.00 !Mu0ChY44TRaw[Co3At3Ch12]
+910.710 -0.109895 0.00 !Mu0ChY45TRaw[Co3At3Ch13]
+905.186 -0.109240 0.00 !Mu0ChY46TRaw[Co3At3Ch14]
+915.646 -0.110513 0.00 !Mu0ChY47TRaw[Co3At3Ch15]
+903.665 -0.109056 0.00 !Mu0ChY48TRaw[Co3At3Ch16]
+859.176 -0.103507 0.00 !Mu0ChY49TRaw[Co3At4Ch1]
+870.909 -0.104888 0.00 !Mu0ChY50TRaw[Co3At4Ch2]
+866.307 -0.104347 0.00 !Mu0ChY51TRaw[Co3At4Ch3]
+883.056 -0.106391 0.00 !Mu0ChY52TRaw[Co3At4Ch4]
+885.647 -0.106718 0.00 !Mu0ChY53TRaw[Co3At4Ch5]
+886.974 -0.106878 0.00 !Mu0ChY54TRaw[Co3At4Ch6]
+883.169 -0.106441 0.00 !Mu0ChY55TRaw[Co3At4Ch7]
+891.212 -0.107426 0.00 !Mu0ChY56TRaw[Co3At4Ch8]
+892.785 -0.107608 0.00 !Mu0ChY57TRaw[Co3At4Ch9]
+897.104 -0.108136 0.00 !Mu0ChY58TRaw[Co3At4Ch10]
+904.326 -0.109012 0.00 !Mu0ChY59TRaw[Co3At4Ch11]
+903.135 -0.108611 0.00 !Mu0ChY60TRaw[Co3At4Ch12]
+901.746 -0.108719 0.00 !Mu0ChY61TRaw[Co3At4Ch13]
+908.712 -0.109581 0.00 !Mu0ChY62TRaw[Co3At4Ch14]
+903.269 -0.108895 0.00 !Mu0ChY63TRaw[Co3At4Ch15]
+908.687 -0.109543 0.00 !Mu0ChY64TRaw[Co3At4Ch16]
+963.864 -0.116469 0.00 !Mu0ChY65TRaw[Co4At1Ch1]
+970.82 -0.117302 0.00 !Mu0ChY66TRaw[Co4At1Ch2]
+976.574 -0.118012 0.00 !Mu0ChY67TRaw[Co4At1Ch3]
+976.674 -0.118028 0.00 !Mu0ChY68TRaw[Co4At1Ch4]
+979.506 -0.118378 0.00 !Mu0ChY69TRaw[Co4At1Ch5]
+983.206 -0.118825 0.00 !Mu0ChY70TRaw[Co4At1Ch6]
+982.64 -0.118781 0.00 !Mu0ChY71TRaw[Co4At1Ch7]
+985.816 -0.119156 0.00 !Mu0ChY72TRaw[Co4At1Ch8]
+989.544 -0.119628 0.00 !Mu0ChY73TRaw[Co4At1Ch9]
+981.143 -0.118591 0.00 !Mu0ChY74TRaw[Co4At1Ch10]
+989.884 -0.119656 0.00 !Mu0ChY75TRaw[Co4At1Ch11]
+1000.31 -0.120924 0.00 !Mu0ChY76TRaw[Co4At1Ch12]
+995.389 -0.120327 0.00 !Mu0ChY77TRaw[Co4At1Ch13]
+997.331 -0.120579 0.00 !Mu0ChY78TRaw[Co4At1Ch14]
+994.499 -0.120247 0.00 !Mu0ChY79TRaw[Co4At1Ch15]
+1001.6 -0.121097 0.00 !Mu0ChY80TRaw[Co4At1Ch16]
+970.056 -0.117145 0.00 !Mu0ChY81TRaw[Co4At2Ch1]
+986.117 -0.119118 0.00 !Mu0ChY82TRaw[Co4At2Ch2]
+981.373 -0.118534 0.00 !Mu0ChY83TRaw[Co4At2Ch3]
+995.859 -0.12031 0.00 !Mu0ChY84TRaw[Co4At2Ch4]
+999.672 -0.120777 0.00 !Mu0ChY85TRaw[Co4At2Ch5]
+1002.22 -0.121085 0.00 !Mu0ChY86TRaw[Co4At2Ch6]
+998.019 -0.120569 0.00 !Mu0ChY87TRaw[Co4At2Ch7]
+1008.32 -0.121839 0.00 !Mu0ChY88TRaw[Co4At2Ch8]
+1004.28 -0.121339 0.00 !Mu0ChY89TRaw[Co4At2Ch9]
+1014.52 -0.122592 0.00 !Mu0ChY90TRaw[Co4At2Ch10]
+1025.22 -0.123897 0.00 !Mu0ChY91TRaw[Co4At2Ch11]
+1024.79 -0.123866 0.00 !Mu0ChY92TRaw[Co4At2Ch12]
+1019.8 -0.123256 0.00 !Mu0ChY93TRaw[Co4At2Ch13]
+1024.3 -0.123786 0.00 !Mu0ChY94TRaw[Co4At2Ch14]
+1021.08 -0.123408 0.00 !Mu0ChY95TRaw[Co4At2Ch15]
+1016.6 -0.122879 0.00 !Mu0ChY96TRaw[Co4At2Ch16]
+882.25 -0.106544 0.00 !Mu0ChY97TRaw[Co4At3Ch1]
+878.942 -0.106139 0.00 !Mu0ChY98TRaw[Co4At3Ch2]
+878.021 -0.106028 0.00 !Mu0ChY99TRaw[Co4At3Ch3]
+894.625 -0.108041 0.00 !Mu0ChY100TRaw[Co4At3Ch4]
+891.724 -0.107707 0.00 !Mu0ChY101TRaw[Co4At3Ch5]
+890.686 -0.10757 0.00 !Mu0ChY102TRaw[Co4At3Ch6]
+895.168 -0.108105 0.00 !Mu0ChY103TRaw[Co4At3Ch7]
+907.124 -0.10959 0.00 !Mu0ChY104TRaw[Co4At3Ch8]
+901.739 -0.108916 0.00 !Mu0ChY105TRaw[Co4At3Ch9]
+914.99 -0.110544 0.00 !Mu0ChY106TRaw[Co4At3Ch10]
+910.27 -0.109981 0.00 !Mu0ChY107TRaw[Co4At3Ch11]
+914.704 -0.11051 0.00 !Mu0ChY108TRaw[Co4At3Ch12]
+913.859 -0.110421 0.00 !Mu0ChY109TRaw[Co4At3Ch13]
+909.547 -0.109894 0.00 !Mu0ChY110TRaw[Co4At3Ch14]
+915.137 -0.110572 0.00 !Mu0ChY111TRaw[Co4At3Ch15]
+917.078 -0.110803 0.00 !Mu0ChY112TRaw[Co4At3Ch16]
+891.216 -0.107535 0.00 !Mu0ChY113TRaw[Co4At4Ch1]
+899.129 -0.108466 0.00 !Mu0ChY114TRaw[Co4At4Ch2]
+898.718 -0.108438 0.00 !Mu0ChY115TRaw[Co4At4Ch3]
+904.591 -0.109158 0.00 !Mu0ChY116TRaw[Co4At4Ch4]
+916.06 -0.110566 0.00 !Mu0ChY117TRaw[Co4At4Ch5]
+909.441 -0.109757 0.00 !Mu0ChY118TRaw[Co4At4Ch6]
+929.211 -0.112167 0.00 !Mu0ChY119TRaw[Co4At4Ch7]
+920.724 -0.111146 0.00 !Mu0ChY120TRaw[Co4At4Ch8]
+931.107 -0.112407 0.00 !Mu0ChY121TRaw[Co4At4Ch9]
+930.357 -0.112337 0.00 !Mu0ChY122TRaw[Co4At4Ch10]
+932.102 -0.112539 0.00 !Mu0ChY123TRaw[Co4At4Ch11]
+935.662 -0.112978 0.00 !Mu0ChY124TRaw[Co4At4Ch12]
+930.191 -0.112316 0.00 !Mu0ChY125TRaw[Co4At4Ch13]
+929.054 -0.112192 0.00 !Mu0ChY126TRaw[Co4At4Ch14]
+926.166 -0.111821 0.00 !Mu0ChY127TRaw[Co4At4Ch15]
+929.013 -0.112162 0.00 !Mu0ChY128TRaw[Co4At4Ch16]
+928.571 -0.11232 0.00 !Mu1ChX1TRaw[Co1At1Ch1]
+942.493 -0.114015 0.00 !Mu1ChX2TRaw[Co1At1Ch2]
+944.985 -0.114341 0.00 !Mu1ChX3TRaw[Co1At1Ch3]
+956.226 -0.115712 0.00 !Mu1ChX4TRaw[Co1At1Ch4]
+956.679 -0.115744 0.00 !Mu1ChX5TRaw[Co1At1Ch5]
+958.458 -0.115962 0.00 !Mu1ChX6TRaw[Co1At1Ch6]
+971.702 -0.117589 0.00 !Mu1ChX7TRaw[Co1At1Ch7]
+966.768 -0.116998 0.00 !Mu1ChX8TRaw[Co1At1Ch8]
+970.872 -0.117498 0.00 !Mu1ChX9TRaw[Co1At1Ch9]
+979.817 -0.118577 0.00 !Mu1ChX10TRaw[Co1At1Ch10]
+976.301 -0.118143 0.00 !Mu1ChX11TRaw[Co1At1Ch11]
+975.435 -0.118071 0.00 !Mu1ChX12TRaw[Co1At1Ch12]
+987.534 -0.11954 0.00 !Mu1ChX13TRaw[Co1At1Ch13]
+988.145 -0.119597 0.00 !Mu1ChX14TRaw[Co1At1Ch14]
+985.177 -0.119236 0.00 !Mu1ChX15TRaw[Co1At1Ch15]
+984.559 -0.119179 0.00 !Mu1ChX16TRaw[Co1At1Ch16]
+924.661 -0.111777 0.00 !Mu1ChX17TRaw[Co1At2Ch1]
+947.862 -0.114612 0.00 !Mu1ChX18TRaw[Co1At2Ch2]
+948.76 -0.114738 0.00 !Mu1ChX19TRaw[Co1At2Ch3]
+946.29 -0.114439 0.00 !Mu1ChX20TRaw[Co1At2Ch4]
+954.686 -0.115464 0.00 !Mu1ChX21TRaw[Co1At2Ch5]
+967.911 -0.117052 0.00 !Mu1ChX22TRaw[Co1At2Ch6]
+957.223 -0.115762 0.00 !Mu1ChX23TRaw[Co1At2Ch7]
+973.476 -0.117739 0.00 !Mu1ChX24TRaw[Co1At2Ch8]
+971.664 -0.117531 0.00 !Mu1ChX25TRaw[Co1At2Ch9]
+974.918 -0.117923 0.00 !Mu1ChX26TRaw[Co1At2Ch10]
+973.502 -0.117737 0.00 !Mu1ChX27TRaw[Co1At2Ch11]
+977.242 -0.11821 0.00 !Mu1ChX28TRaw[Co1At2Ch12]
+981.073 -0.118677 0.00 !Mu1ChX29TRaw[Co1At2Ch13]
+978.26 -0.118324 0.00 !Mu1ChX30TRaw[Co1At2Ch14]
+977.151 -0.118198 0.00 !Mu1ChX31TRaw[Co1At2Ch15]
+984.794 -0.119148 0.00 !Mu1ChX32TRaw[Co1At2Ch16]
+878.025 -0.106165 0.00 !Mu1ChX33TRaw[Co1At3Ch1]
+877.927 -0.10618 0.00 !Mu1ChX34TRaw[Co1At3Ch2]
+893.294 -0.108064 0.00 !Mu1ChX35TRaw[Co1At3Ch3]
+876.051 -0.105941 0.00 !Mu1ChX36TRaw[Co1At3Ch4]
+893.827 -0.108105 0.00 !Mu1ChX37TRaw[Co1At3Ch5]
+899.59 -0.108823 0.00 !Mu1ChX38TRaw[Co1At3Ch6]
+891.87 -0.107861 0.00 !Mu1ChX39TRaw[Co1At3Ch7]
+896.377 -0.10842 0.00 !Mu1ChX40TRaw[Co1At3Ch8]
+899.273 -0.108779 0.00 !Mu1ChX41TRaw[Co1At3Ch9]
+898.912 -0.108754 0.00 !Mu1ChX42TRaw[Co1At3Ch10]
+907.617 -0.109783 0.00 !Mu1ChX43TRaw[Co1At3Ch11]
+899.789 -0.108855 0.00 !Mu1ChX44TRaw[Co1At3Ch12]
+909.299 -0.110019 0.00 !Mu1ChX45TRaw[Co1At3Ch13]
+907.769 -0.109854 0.00 !Mu1ChX46TRaw[Co1At3Ch14]
+905.232 -0.109528 0.00 !Mu1ChX47TRaw[Co1At3Ch15]
+909.577 -0.110055 0.00 !Mu1ChX48TRaw[Co1At3Ch16]
+868.163 -0.104838 0.00 !Mu1ChX49TRaw[Co1At4Ch1]
+873.224 -0.105455 0.00 !Mu1ChX50TRaw[Co1At4Ch2]
+885.913 -0.107015 0.00 !Mu1ChX51TRaw[Co1At4Ch3]
+888.452 -0.107338 0.00 !Mu1ChX52TRaw[Co1At4Ch4]
+891.233 -0.107685 0.00 !Mu1ChX53TRaw[Co1At4Ch5]
+891.534 -0.107699 0.00 !Mu1ChX54TRaw[Co1At4Ch6]
+895.39 -0.10819 0.00 !Mu1ChX55TRaw[Co1At4Ch7]
+901.392 -0.108878 0.00 !Mu1ChX56TRaw[Co1At4Ch8]
+907.775 -0.1097 0.00 !Mu1ChX57TRaw[Co1At4Ch9]
+903.537 -0.10916 0.00 !Mu1ChX58TRaw[Co1At4Ch10]
+912.271 -0.110244 0.00 !Mu1ChX59TRaw[Co1At4Ch11]
+904.646 -0.109308 0.00 !Mu1ChX60TRaw[Co1At4Ch12]
+917.556 -0.110894 0.00 !Mu1ChX61TRaw[Co1At4Ch13]
+909.067 -0.109867 0.00 !Mu1ChX62TRaw[Co1At4Ch14]
+908.514 -0.109791 0.00 !Mu1ChX63TRaw[Co1At4Ch15]
+916.574 -0.110777 0.00 !Mu1ChX64TRaw[Co1At4Ch16]
+951.079 -0.114723 0.00 !Mu1ChX65TRaw[Co2At1Ch1]
+952.897 -0.114949 0.00 !Mu1ChX66TRaw[Co2At1Ch2]
+966.461 -0.116629 0.00 !Mu1ChX67TRaw[Co2At1Ch3]
+965.985 -0.116557 0.00 !Mu1ChX68TRaw[Co2At1Ch4]
+968.322 -0.116827 0.00 !Mu1ChX69TRaw[Co2At1Ch5]
+976.11 -0.117811 0.00 !Mu1ChX70TRaw[Co2At1Ch6]
+975.867 -0.117758 0.00 !Mu1ChX71TRaw[Co2At1Ch7]
+981.064 -0.118392 0.00 !Mu1ChX72TRaw[Co2At1Ch8]
+978.32 -0.118063 0.00 !Mu1ChX73TRaw[Co2At1Ch9]
+992.972 -0.119853 0.00 !Mu1ChX74TRaw[Co2At1Ch10]
+989.034 -0.119377 0.00 !Mu1ChX75TRaw[Co2At1Ch11]
+987.234 -0.119141 0.00 !Mu1ChX76TRaw[Co2At1Ch12]
+994.058 -0.119982 0.00 !Mu1ChX77TRaw[Co2At1Ch13]
+995.957 -0.120199 0.00 !Mu1ChX78TRaw[Co2At1Ch14]
+995.79 -0.1202 0.00 !Mu1ChX79TRaw[Co2At1Ch15]
+1000.15 -0.120722 0.00 !Mu1ChX80TRaw[Co2At1Ch16]
+976.704 -0.117775 0.00 !Mu1ChX81TRaw[Co2At2Ch1]
+978.841 -0.118024 0.00 !Mu1ChX82TRaw[Co2At2Ch2]
+983.919 -0.118652 0.00 !Mu1ChX83TRaw[Co2At2Ch3]
+997.371 -0.120307 0.00 !Mu1ChX84TRaw[Co2At2Ch4]
+996.925 -0.120215 0.00 !Mu1ChX85TRaw[Co2At2Ch5]
+1006.21 -0.121389 0.00 !Mu1ChX86TRaw[Co2At2Ch6]
+1007.52 -0.121554 0.00 !Mu1ChX87TRaw[Co2At2Ch7]
+999.416 -0.12057 0.00 !Mu1ChX88TRaw[Co2At2Ch8]
+1013.91 -0.122345 0.00 !Mu1ChX89TRaw[Co2At2Ch9]
+1016.22 -0.12261 0.00 !Mu1ChX90TRaw[Co2At2Ch10]
+1011.77 -0.122082 0.00 !Mu1ChX91TRaw[Co2At2Ch11]
+1018.04 -0.12282 0.00 !Mu1ChX92TRaw[Co2At2Ch12]
+1017.49 -0.12279 0.00 !Mu1ChX93TRaw[Co2At2Ch13]
+1020.31 -0.123127 0.00 !Mu1ChX94TRaw[Co2At2Ch14]
+1019.96 -0.123096 0.00 !Mu1ChX95TRaw[Co2At2Ch15]
+1008.1 -0.12163 0.00 !Mu1ChX96TRaw[Co2At2Ch16]
+892.824 -0.107613 0.00 !Mu1ChX97TRaw[Co2At3Ch1]
+890.901 -0.107373 0.00 !Mu1ChX98TRaw[Co2At3Ch2]
+894.556 -0.107838 0.00 !Mu1ChX99TRaw[Co2At3Ch3]
+905.994 -0.109224 0.00 !Mu1ChX100TRaw[Co2At3Ch4]
+905.741 -0.1092 0.00 !Mu1ChX101TRaw[Co2At3Ch5]
+910.629 -0.109791 0.00 !Mu1ChX102TRaw[Co2At3Ch6]
+906.206 -0.109268 0.00 !Mu1ChX103TRaw[Co2At3Ch7]
+921.692 -0.111151 0.00 !Mu1ChX104TRaw[Co2At3Ch8]
+922.784 -0.11128 0.00 !Mu1ChX105TRaw[Co2At3Ch9]
+924.5 -0.111467 0.00 !Mu1ChX106TRaw[Co2At3Ch10]
+928.983 -0.112035 0.00 !Mu1ChX107TRaw[Co2At3Ch11]
+924.661 -0.111519 0.00 !Mu1ChX108TRaw[Co2At3Ch12]
+925.485 -0.111616 0.00 !Mu1ChX109TRaw[Co2At3Ch13]
+917.32 -0.110627 0.00 !Mu1ChX110TRaw[Co2At3Ch14]
+920.078 -0.110941 0.00 !Mu1ChX111TRaw[Co2At3Ch15]
+926.646 -0.11176 0.00 !Mu1ChX112TRaw[Co2At3Ch16]
+900.671 -0.108476 0.00 !Mu1ChX113TRaw[Co2At4Ch1]
+901.745 -0.108567 0.00 !Mu1ChX114TRaw[Co2At4Ch2]
+908.74 -0.10946 0.00 !Mu1ChX115TRaw[Co2At4Ch3]
+914.468 -0.110136 0.00 !Mu1ChX116TRaw[Co2At4Ch4]
+929.323 -0.111977 0.00 !Mu1ChX117TRaw[Co2At4Ch5]
+923.812 -0.111304 0.00 !Mu1ChX118TRaw[Co2At4Ch6]
+935.93 -0.112781 0.00 !Mu1ChX119TRaw[Co2At4Ch7]
+918.363 -0.110659 0.00 !Mu1ChX120TRaw[Co2At4Ch8]
+923.868 -0.111325 0.00 !Mu1ChX121TRaw[Co2At4Ch9]
+931.448 -0.112226 0.00 !Mu1ChX122TRaw[Co2At4Ch10]
+932.559 -0.11236 0.00 !Mu1ChX123TRaw[Co2At4Ch11]
+927.829 -0.111775 0.00 !Mu1ChX124TRaw[Co2At4Ch12]
+925.186 -0.111483 0.00 !Mu1ChX125TRaw[Co2At4Ch13]
+931.059 -0.112193 0.00 !Mu1ChX126TRaw[Co2At4Ch14]
+934.329 -0.112614 0.00 !Mu1ChX127TRaw[Co2At4Ch15]
+928.424 -0.111864 0.00 !Mu1ChX128TRaw[Co2At4Ch16]
+935.35 -0.11282 0.00 !Mu1ChY1TRaw[Co3At1Ch1]
+937.191 -0.113022 0.00 !Mu1ChY2TRaw[Co3At1Ch2]
+948.029 -0.114361 0.00 !Mu1ChY3TRaw[Co3At1Ch3]
+952.035 -0.114834 0.00 !Mu1ChY4TRaw[Co3At1Ch4]
+954.252 -0.115122 0.00 !Mu1ChY5TRaw[Co3At1Ch5]
+957.621 -0.115533 0.00 !Mu1ChY6TRaw[Co3At1Ch6]
+960.868 -0.115938 0.00 !Mu1ChY7TRaw[Co3At1Ch7]
+950.839 -0.114726 0.00 !Mu1ChY8TRaw[Co3At1Ch8]
+958.21 -0.11562 0.00 !Mu1ChY9TRaw[Co3At1Ch9]
+968.288 -0.116854 0.00 !Mu1ChY10TRaw[Co3At1Ch10]
+964.104 -0.116368 0.00 !Mu1ChY11TRaw[Co3At1Ch11]
+972.004 -0.117327 0.00 !Mu1ChY12TRaw[Co3At1Ch12]
+972.184 -0.117358 0.00 !Mu1ChY13TRaw[Co3At1Ch13]
+967.943 -0.116827 0.00 !Mu1ChY14TRaw[Co3At1Ch14]
+969.17 -0.116981 0.00 !Mu1ChY15TRaw[Co3At1Ch15]
+966.891 -0.116717 0.00 !Mu1ChY16TRaw[Co3At1Ch16]
+968.928 -0.116883 0.00 !Mu1ChY17TRaw[Co3At2Ch1]
+971.207 -0.117128 0.00 !Mu1ChY18TRaw[Co3At2Ch2]
+975.423 -0.117665 0.00 !Mu1ChY19TRaw[Co3At2Ch3]
+976.249 -0.117743 0.00 !Mu1ChY20TRaw[Co3At2Ch4]
+987.572 -0.119146 0.00 !Mu1ChY21TRaw[Co3At2Ch5]
+984.536 -0.118747 0.00 !Mu1ChY22TRaw[Co3At2Ch6]
+987.751 -0.119189 0.00 !Mu1ChY23TRaw[Co3At2Ch7]
+994.23 -0.119964 0.00 !Mu1ChY24TRaw[Co3At2Ch8]
+995.905 -0.120158 0.00 !Mu1ChY25TRaw[Co3At2Ch9]
+995.946 -0.120176 0.00 !Mu1ChY26TRaw[Co3At2Ch10]
+1000.5 -0.120728 0.00 !Mu1ChY27TRaw[Co3At2Ch11]
+995.25 -0.120113 0.00 !Mu1ChY28TRaw[Co3At2Ch12]
+997.145 -0.120339 0.00 !Mu1ChY29TRaw[Co3At2Ch13]
+988.864 -0.119308 0.00 !Mu1ChY30TRaw[Co3At2Ch14]
+995.199 -0.120108 0.00 !Mu1ChY31TRaw[Co3At2Ch15]
+990.383 -0.119515 0.00 !Mu1ChY32TRaw[Co3At2Ch16]
+1002.87 -0.141377 0.00 !Mu1ChY33TRaw[Co3At3Ch1]
+884.995 -0.106691 0.00 !Mu1ChY34TRaw[Co3At3Ch2]
+886.581 -0.106848 0.00 !Mu1ChY35TRaw[Co3At3Ch3]
+896.019 -0.108037 0.00 !Mu1ChY36TRaw[Co3At3Ch4]
+8.48677e+11 -1.03827e+08 0.00 !Mu1ChY37TRaw[Co3At3Ch5]
+907.311 -0.109433 0.00 !Mu1ChY38TRaw[Co3At3Ch6]
+897.171 -0.108164 0.00 !Mu1ChY39TRaw[Co3At3Ch7]
+907.451 -0.10944 0.00 !Mu1ChY40TRaw[Co3At3Ch8]
+895.245 -0.107957 0.00 !Mu1ChY41TRaw[Co3At3Ch9]
+908.035 -0.109521 0.00 !Mu1ChY42TRaw[Co3At3Ch10]
+900.767 -0.108623 0.00 !Mu1ChY43TRaw[Co3At3Ch11]
+909.45 -0.10969 0.00 !Mu1ChY44TRaw[Co3At3Ch12]
+911.966 -0.109989 0.00 !Mu1ChY45TRaw[Co3At3Ch13]
+906.33 -0.109312 0.00 !Mu1ChY46TRaw[Co3At3Ch14]
+910.732 -0.109844 0.00 !Mu1ChY47TRaw[Co3At3Ch15]
+905.741 -0.109257 0.00 !Mu1ChY48TRaw[Co3At3Ch16]
+887.986 -0.10696 0.00 !Mu1ChY49TRaw[Co3At4Ch1]
+887.216 -0.106852 0.00 !Mu1ChY50TRaw[Co3At4Ch2]
+883.77 -0.106436 0.00 !Mu1ChY51TRaw[Co3At4Ch3]
+896.97 -0.108049 0.00 !Mu1ChY52TRaw[Co3At4Ch4]
+903.022 -0.108781 0.00 !Mu1ChY53TRaw[Co3At4Ch5]
+904.319 -0.108923 0.00 !Mu1ChY54TRaw[Co3At4Ch6]
+904.183 -0.108922 0.00 !Mu1ChY55TRaw[Co3At4Ch7]
+904.336 -0.108949 0.00 !Mu1ChY56TRaw[Co3At4Ch8]
+916.034 -0.110395 0.00 !Mu1ChY57TRaw[Co3At4Ch9]
+915.216 -0.110294 0.00 !Mu1ChY58TRaw[Co3At4Ch10]
+910.734 -0.109746 0.00 !Mu1ChY59TRaw[Co3At4Ch11]
+913.293 -0.109802 0.00 !Mu1ChY60TRaw[Co3At4Ch12]
+910.448 -0.109742 0.00 !Mu1ChY61TRaw[Co3At4Ch13]
+918.647 -0.11072 0.00 !Mu1ChY62TRaw[Co3At4Ch14]
+920.049 -0.110879 0.00 !Mu1ChY63TRaw[Co3At4Ch15]
+921.093 -0.111037 0.00 !Mu1ChY64TRaw[Co3At4Ch16]
+950.903 -0.115194 0.00 !Mu1ChY65TRaw[Co4At1Ch1]
+958.17 -0.116053 0.00 !Mu1ChY66TRaw[Co4At1Ch2]
+963.945 -0.116788 0.00 !Mu1ChY67TRaw[Co4At1Ch3]
+967.43 -0.117211 0.00 !Mu1ChY68TRaw[Co4At1Ch4]
+970.687 -0.117617 0.00 !Mu1ChY69TRaw[Co4At1Ch5]
+978.784 -0.118609 0.00 !Mu1ChY70TRaw[Co4At1Ch6]
+974.345 -0.118053 0.00 !Mu1ChY71TRaw[Co4At1Ch7]
+982.479 -0.119038 0.00 !Mu1ChY72TRaw[Co4At1Ch8]
+983.419 -0.119163 0.00 !Mu1ChY73TRaw[Co4At1Ch9]
+986.47 -0.119552 0.00 !Mu1ChY74TRaw[Co4At1Ch10]
+988.169 -0.119777 0.00 !Mu1ChY75TRaw[Co4At1Ch11]
+985.147 -0.119391 0.00 !Mu1ChY76TRaw[Co4At1Ch12]
+988.378 -0.11981 0.00 !Mu1ChY77TRaw[Co4At1Ch13]
+985.922 -0.119505 0.00 !Mu1ChY78TRaw[Co4At1Ch14]
+986.667 -0.119601 0.00 !Mu1ChY79TRaw[Co4At1Ch15]
+991.793 -0.120194 0.00 !Mu1ChY80TRaw[Co4At1Ch16]
+947.005 -0.114646 0.00 !Mu1ChY81TRaw[Co4At2Ch1]
+955.512 -0.115676 0.00 !Mu1ChY82TRaw[Co4At2Ch2]
+954.266 -0.115551 0.00 !Mu1ChY83TRaw[Co4At2Ch3]
+961.213 -0.116392 0.00 !Mu1ChY84TRaw[Co4At2Ch4]
+960.803 -0.116344 0.00 !Mu1ChY85TRaw[Co4At2Ch5]
+971.068 -0.117589 0.00 !Mu1ChY86TRaw[Co4At2Ch6]
+971.908 -0.117699 0.00 !Mu1ChY87TRaw[Co4At2Ch7]
+978.963 -0.118567 0.00 !Mu1ChY88TRaw[Co4At2Ch8]
+980.181 -0.118705 0.00 !Mu1ChY89TRaw[Co4At2Ch9]
+972.849 -0.117807 0.00 !Mu1ChY90TRaw[Co4At2Ch10]
+977.401 -0.118376 0.00 !Mu1ChY91TRaw[Co4At2Ch11]
+985.257 -0.119333 0.00 !Mu1ChY92TRaw[Co4At2Ch12]
+986.001 -0.119429 0.00 !Mu1ChY93TRaw[Co4At2Ch13]
+978.94 -0.118576 0.00 !Mu1ChY94TRaw[Co4At2Ch14]
+982.604 -0.119031 0.00 !Mu1ChY95TRaw[Co4At2Ch15]
+994.308 -0.120471 0.00 !Mu1ChY96TRaw[Co4At2Ch16]
+876.691 -0.106136 0.00 !Mu1ChY97TRaw[Co4At3Ch1]
+875.524 -0.106 0.00 !Mu1ChY98TRaw[Co4At3Ch2]
+880.13 -0.106555 0.00 !Mu1ChY99TRaw[Co4At3Ch3]
+894.071 -0.108263 0.00 !Mu1ChY100TRaw[Co4At3Ch4]
+891.902 -0.10801 0.00 !Mu1ChY101TRaw[Co4At3Ch5]
+884.05 -0.107044 0.00 !Mu1ChY102TRaw[Co4At3Ch6]
+891.891 -0.108005 0.00 !Mu1ChY103TRaw[Co4At3Ch7]
+895.11 -0.108406 0.00 !Mu1ChY104TRaw[Co4At3Ch8]
+905.296 -0.109653 0.00 !Mu1ChY105TRaw[Co4At3Ch9]
+902.144 -0.10926 0.00 !Mu1ChY106TRaw[Co4At3Ch10]
+905.347 -0.10967 0.00 !Mu1ChY107TRaw[Co4At3Ch11]
+896.217 -0.108536 0.00 !Mu1ChY108TRaw[Co4At3Ch12]
+903.241 -0.109417 0.00 !Mu1ChY109TRaw[Co4At3Ch13]
+910.268 -0.110268 0.00 !Mu1ChY110TRaw[Co4At3Ch14]
+900.796 -0.109108 0.00 !Mu1ChY111TRaw[Co4At3Ch15]
+906.635 -0.109824 0.00 !Mu1ChY112TRaw[Co4At3Ch16]
+862.399 -0.104291 0.00 !Mu1ChY113TRaw[Co4At4Ch1]
+856.141 -0.103549 0.00 !Mu1ChY114TRaw[Co4At4Ch2]
+866.517 -0.104798 0.00 !Mu1ChY115TRaw[Co4At4Ch3]
+861.488 -0.10419 0.00 !Mu1ChY116TRaw[Co4At4Ch4]
+869.88 -0.105221 0.00 !Mu1ChY117TRaw[Co4At4Ch5]
+879.073 -0.106354 0.00 !Mu1ChY118TRaw[Co4At4Ch6]
+883.458 -0.1069 0.00 !Mu1ChY119TRaw[Co4At4Ch7]
+878.318 -0.106252 0.00 !Mu1ChY120TRaw[Co4At4Ch8]
+895.691 -0.108379 0.00 !Mu1ChY121TRaw[Co4At4Ch9]
+896.571 -0.108492 0.00 !Mu1ChY122TRaw[Co4At4Ch10]
+894.464 -0.108225 0.00 !Mu1ChY123TRaw[Co4At4Ch11]
+893.509 -0.108132 0.00 !Mu1ChY124TRaw[Co4At4Ch12]
+895.809 -0.108412 0.00 !Mu1ChY125TRaw[Co4At4Ch13]
+891.015 -0.10784 0.00 !Mu1ChY126TRaw[Co4At4Ch14]
+888.724 -0.107526 0.00 !Mu1ChY127TRaw[Co4At4Ch15]
+899.797 -0.109448 0.00 !Mu1ChY128TRaw[Co4At4Ch16]
+937.316 -0.113282 0.00 !Mu2ChX1TRaw[Co1At1Ch1]
+934.385 -0.112935 0.00 !Mu2ChX2TRaw[Co1At1Ch2]
+942.34 -0.113903 0.00 !Mu2ChX3TRaw[Co1At1Ch3]
+954.458 -0.11541 0.00 !Mu2ChX4TRaw[Co1At1Ch4]
+950.139 -0.114834 0.00 !Mu2ChX5TRaw[Co1At1Ch5]
+967.561 -0.116968 0.00 !Mu2ChX6TRaw[Co1At1Ch6]
+960.77 -0.116144 0.00 !Mu2ChX7TRaw[Co1At1Ch7]
+965.567 -0.116738 0.00 !Mu2ChX8TRaw[Co1At1Ch8]
+957.421 -0.115736 0.00 !Mu2ChX9TRaw[Co1At1Ch9]
+969.399 -0.117191 0.00 !Mu2ChX10TRaw[Co1At1Ch10]
+971.909 -0.117505 0.00 !Mu2ChX11TRaw[Co1At1Ch11]
+966.623 -0.116868 0.00 !Mu2ChX12TRaw[Co1At1Ch12]
+972.522 -0.117596 0.00 !Mu2ChX13TRaw[Co1At1Ch13]
+966.551 -0.116864 0.00 !Mu2ChX14TRaw[Co1At1Ch14]
+967.053 -0.116934 0.00 !Mu2ChX15TRaw[Co1At1Ch15]
+976.535 -0.118078 0.00 !Mu2ChX16TRaw[Co1At1Ch16]
+919.521 -0.111042 0.00 !Mu2ChX17TRaw[Co1At2Ch1]
+934.725 -0.1129 0.00 !Mu2ChX18TRaw[Co1At2Ch2]
+937.478 -0.113239 0.00 !Mu2ChX19TRaw[Co1At2Ch3]
+936.381 -0.11311 0.00 !Mu2ChX20TRaw[Co1At2Ch4]
+947.225 -0.114433 0.00 !Mu2ChX21TRaw[Co1At2Ch5]
+942.935 -0.113893 0.00 !Mu2ChX22TRaw[Co1At2Ch6]
+940.462 -0.113604 0.00 !Mu2ChX23TRaw[Co1At2Ch7]
+948.676 -0.114596 0.00 !Mu2ChX24TRaw[Co1At2Ch8]
+939.674 -0.113523 0.00 !Mu2ChX25TRaw[Co1At2Ch9]
+947.97 -0.114529 0.00 !Mu2ChX26TRaw[Co1At2Ch10]
+948.456 -0.114587 0.00 !Mu2ChX27TRaw[Co1At2Ch11]
+944.632 -0.114127 0.00 !Mu2ChX28TRaw[Co1At2Ch12]
+952.149 -0.115049 0.00 !Mu2ChX29TRaw[Co1At2Ch13]
+948.307 -0.114577 0.00 !Mu2ChX30TRaw[Co1At2Ch14]
+950.078 -0.114801 0.00 !Mu2ChX31TRaw[Co1At2Ch15]
+949.489 -0.114725 0.00 !Mu2ChX32TRaw[Co1At2Ch16]
+884.424 -0.106884 0.00 !Mu2ChX33TRaw[Co1At3Ch1]
+881.912 -0.106588 0.00 !Mu2ChX34TRaw[Co1At3Ch2]
+891.212 -0.10771 0.00 !Mu2ChX35TRaw[Co1At3Ch3]
+888.472 -0.10739 0.00 !Mu2ChX36TRaw[Co1At3Ch4]
+902.325 -0.109058 0.00 !Mu2ChX37TRaw[Co1At3Ch5]
+899.193 -0.108685 0.00 !Mu2ChX38TRaw[Co1At3Ch6]
+906.762 -0.109605 0.00 !Mu2ChX39TRaw[Co1At3Ch7]
+903.506 -0.109211 0.00 !Mu2ChX40TRaw[Co1At3Ch8]
+903.2 -0.109168 0.00 !Mu2ChX41TRaw[Co1At3Ch9]
+907.04 -0.109617 0.00 !Mu2ChX42TRaw[Co1At3Ch10]
+913.192 -0.1104 0.00 !Mu2ChX43TRaw[Co1At3Ch11]
+912.001 -0.110254 0.00 !Mu2ChX44TRaw[Co1At3Ch12]
+920.039 -0.111219 0.00 !Mu2ChX45TRaw[Co1At3Ch13]
+918.464 -0.111043 0.00 !Mu2ChX46TRaw[Co1At3Ch14]
+921.268 -0.111378 0.00 !Mu2ChX47TRaw[Co1At3Ch15]
+917.17 -0.11089 0.00 !Mu2ChX48TRaw[Co1At3Ch16]
+853.022 -0.102956 0.00 !Mu2ChX49TRaw[Co1At4Ch1]
+863.294 -0.104191 0.00 !Mu2ChX50TRaw[Co1At4Ch2]
+872.886 -0.105362 0.00 !Mu2ChX51TRaw[Co1At4Ch3]
+866.918 -0.10464 0.00 !Mu2ChX52TRaw[Co1At4Ch4]
+875.67 -0.105723 0.00 !Mu2ChX53TRaw[Co1At4Ch5]
+875.93 -0.105755 0.00 !Mu2ChX54TRaw[Co1At4Ch6]
+877.811 -0.105984 0.00 !Mu2ChX55TRaw[Co1At4Ch7]
+885.543 -0.106931 0.00 !Mu2ChX56TRaw[Co1At4Ch8]
+894.49 -0.108024 0.00 !Mu2ChX57TRaw[Co1At4Ch9]
+896.907 -0.108307 0.00 !Mu2ChX58TRaw[Co1At4Ch10]
+888.44 -0.107279 0.00 !Mu2ChX59TRaw[Co1At4Ch11]
+898.738 -0.108543 0.00 !Mu2ChX60TRaw[Co1At4Ch12]
+900.163 -0.108721 0.00 !Mu2ChX61TRaw[Co1At4Ch13]
+899.711 -0.108665 0.00 !Mu2ChX62TRaw[Co1At4Ch14]
+896.224 -0.10824 0.00 !Mu2ChX63TRaw[Co1At4Ch15]
+893.403 -0.107885 0.00 !Mu2ChX64TRaw[Co1At4Ch16]
+971.844 -0.117533 0.00 !Mu2ChX65TRaw[Co2At1Ch1]
+971.845 -0.117545 0.00 !Mu2ChX66TRaw[Co2At1Ch2]
+983.582 -0.118957 0.00 !Mu2ChX67TRaw[Co2At1Ch3]
+988.69 -0.119584 0.00 !Mu2ChX68TRaw[Co2At1Ch4]
+990.616 -0.119902 0.00 !Mu2ChX69TRaw[Co2At1Ch5]
+992.058 -0.12002 0.00 !Mu2ChX70TRaw[Co2At1Ch6]
+993.193 -0.120171 0.00 !Mu2ChX71TRaw[Co2At1Ch7]
+998.567 -0.120802 0.00 !Mu2ChX72TRaw[Co2At1Ch8]
+991.75 -0.119977 0.00 !Mu2ChX73TRaw[Co2At1Ch9]
+1000.28 -0.12102 0.00 !Mu2ChX74TRaw[Co2At1Ch10]
+996.389 -0.12055 0.00 !Mu2ChX75TRaw[Co2At1Ch11]
+995.946 -0.12048 0.00 !Mu2ChX76TRaw[Co2At1Ch12]
+1005.69 -0.121688 0.00 !Mu2ChX77TRaw[Co2At1Ch13]
+1009.38 -0.122136 0.00 !Mu2ChX78TRaw[Co2At1Ch14]
+1012.08 -0.122472 0.00 !Mu2ChX79TRaw[Co2At1Ch15]
+1003.93 -0.121488 0.00 !Mu2ChX80TRaw[Co2At1Ch16]
+952.869 -0.115148 0.00 !Mu2ChX81TRaw[Co2At2Ch1]
+964.034 -0.116512 0.00 !Mu2ChX82TRaw[Co2At2Ch2]
+965.866 -0.116735 0.00 !Mu2ChX83TRaw[Co2At2Ch3]
+969.343 -0.117158 0.00 !Mu2ChX84TRaw[Co2At2Ch4]
+969.333 -0.117159 0.00 !Mu2ChX85TRaw[Co2At2Ch5]
+970.748 -0.117336 0.00 !Mu2ChX86TRaw[Co2At2Ch6]
+984.429 -0.118997 0.00 !Mu2ChX87TRaw[Co2At2Ch7]
+983.229 -0.118879 0.00 !Mu2ChX88TRaw[Co2At2Ch8]
+993.933 -0.120152 0.00 !Mu2ChX89TRaw[Co2At2Ch9]
+993.652 -0.120143 0.00 !Mu2ChX90TRaw[Co2At2Ch10]
+992.615 -0.120011 0.00 !Mu2ChX91TRaw[Co2At2Ch11]
+982.481 -0.118788 0.00 !Mu2ChX92TRaw[Co2At2Ch12]
+997.508 -0.120614 0.00 !Mu2ChX93TRaw[Co2At2Ch13]
+1001.7 -0.12112 0.00 !Mu2ChX94TRaw[Co2At2Ch14]
+1002.51 -0.12123 0.00 !Mu2ChX95TRaw[Co2At2Ch15]
+987.604 -0.119394 0.00 !Mu2ChX96TRaw[Co2At2Ch16]
+901.312 -0.10895 0.00 !Mu2ChX97TRaw[Co2At3Ch1]
+917.986 -0.11099 0.00 !Mu2ChX98TRaw[Co2At3Ch2]
+913.934 -0.110483 0.00 !Mu2ChX99TRaw[Co2At3Ch3]
+913.949 -0.110494 0.00 !Mu2ChX100TRaw[Co2At3Ch4]
+923.435 -0.11163 0.00 !Mu2ChX101TRaw[Co2At3Ch5]
+922.621 -0.111573 0.00 !Mu2ChX102TRaw[Co2At3Ch6]
+921.076 -0.111368 0.00 !Mu2ChX103TRaw[Co2At3Ch7]
+925.346 -0.111888 0.00 !Mu2ChX104TRaw[Co2At3Ch8]
+935.581 -0.113122 0.00 !Mu2ChX105TRaw[Co2At3Ch9]
+932.485 -0.112764 0.00 !Mu2ChX106TRaw[Co2At3Ch10]
+937.5 -0.113373 0.00 !Mu2ChX107TRaw[Co2At3Ch11]
+932.715 -0.112797 0.00 !Mu2ChX108TRaw[Co2At3Ch12]
+935.979 -0.113176 0.00 !Mu2ChX109TRaw[Co2At3Ch13]
+942.445 -0.113973 0.00 !Mu2ChX110TRaw[Co2At3Ch14]
+943.181 -0.114066 0.00 !Mu2ChX111TRaw[Co2At3Ch15]
+942.414 -0.113973 0.00 !Mu2ChX112TRaw[Co2At3Ch16]
+902.2 -0.108961 0.00 !Mu2ChX113TRaw[Co2At4Ch1]
+906.889 -0.109531 0.00 !Mu2ChX114TRaw[Co2At4Ch2]
+914.61 -0.110461 0.00 !Mu2ChX115TRaw[Co2At4Ch3]
+914.139 -0.110414 0.00 !Mu2ChX116TRaw[Co2At4Ch4]
+929.709 -0.112323 0.00 !Mu2ChX117TRaw[Co2At4Ch5]
+932.582 -0.11267 0.00 !Mu2ChX118TRaw[Co2At4Ch6]
+938.012 -0.113333 0.00 !Mu2ChX119TRaw[Co2At4Ch7]
+940.971 -0.113698 0.00 !Mu2ChX120TRaw[Co2At4Ch8]
+940.564 -0.113666 0.00 !Mu2ChX121TRaw[Co2At4Ch9]
+949.44 -0.114745 0.00 !Mu2ChX122TRaw[Co2At4Ch10]
+940.75 -0.113673 0.00 !Mu2ChX123TRaw[Co2At4Ch11]
+946.851 -0.11443 0.00 !Mu2ChX124TRaw[Co2At4Ch12]
+936.518 -0.113174 0.00 !Mu2ChX125TRaw[Co2At4Ch13]
+936.181 -0.113143 0.00 !Mu2ChX126TRaw[Co2At4Ch14]
+944.748 -0.114176 0.00 !Mu2ChX127TRaw[Co2At4Ch15]
+944.971 -0.114186 0.00 !Mu2ChX128TRaw[Co2At4Ch16]
+989.947 -0.119525 0.00 !Mu2ChY1TRaw[Co3At1Ch1]
+993.077 -0.119903 0.00 !Mu2ChY2TRaw[Co3At1Ch2]
+992.258 -0.119776 0.00 !Mu2ChY3TRaw[Co3At1Ch3]
+998.524 -0.120524 0.00 !Mu2ChY4TRaw[Co3At1Ch4]
+1003.53 -0.121165 0.00 !Mu2ChY5TRaw[Co3At1Ch5]
+1001.78 -0.120947 0.00 !Mu2ChY6TRaw[Co3At1Ch6]
+1006.43 -0.121526 0.00 !Mu2ChY7TRaw[Co3At1Ch7]
+1013.44 -0.122366 0.00 !Mu2ChY8TRaw[Co3At1Ch8]
+1014.58 -0.122539 0.00 !Mu2ChY9TRaw[Co3At1Ch9]
+1006.22 -0.121307 0.00 !Mu2ChY10TRaw[Co3At1Ch10]
+1012.4 -0.122275 0.00 !Mu2ChY11TRaw[Co3At1Ch11]
+1017.56 -0.122898 0.00 !Mu2ChY12TRaw[Co3At1Ch12]
+1019.48 -0.12312 0.00 !Mu2ChY13TRaw[Co3At1Ch13]
+1024.68 -0.123746 0.00 !Mu2ChY14TRaw[Co3At1Ch14]
+1023.43 -0.123621 0.00 !Mu2ChY15TRaw[Co3At1Ch15]
+1024.2 -0.123744 0.00 !Mu2ChY16TRaw[Co3At1Ch16]
+942.022 -0.113632 0.00 !Mu2ChY17TRaw[Co3At2Ch1]
+941.851 -0.11359 0.00 !Mu2ChY18TRaw[Co3At2Ch2]
+941.301 -0.113546 0.00 !Mu2ChY19TRaw[Co3At2Ch3]
+941.196 -0.113526 0.00 !Mu2ChY20TRaw[Co3At2Ch4]
+956.339 -0.115367 0.00 !Mu2ChY21TRaw[Co3At2Ch5]
+972.159 -0.117305 0.00 !Mu2ChY22TRaw[Co3At2Ch6]
+968.071 -0.11682 0.00 !Mu2ChY23TRaw[Co3At2Ch7]
+963.198 -0.116216 0.00 !Mu2ChY24TRaw[Co3At2Ch8]
+978.802 -0.118134 0.00 !Mu2ChY25TRaw[Co3At2Ch9]
+981.332 -0.118446 0.00 !Mu2ChY26TRaw[Co3At2Ch10]
+978.515 -0.117858 0.00 !Mu2ChY27TRaw[Co3At2Ch11]
+985.445 -0.11895 0.00 !Mu2ChY28TRaw[Co3At2Ch12]
+979.656 -0.118238 0.00 !Mu2ChY29TRaw[Co3At2Ch13]
+981.57 -0.118468 0.00 !Mu2ChY30TRaw[Co3At2Ch14]
+980.383 -0.118337 0.00 !Mu2ChY31TRaw[Co3At2Ch15]
+968.968 -0.116905 0.00 !Mu2ChY32TRaw[Co3At2Ch16]
+874.116 -0.105393 0.00 !Mu2ChY33TRaw[Co3At3Ch1]
+880.638 -0.106206 0.00 !Mu2ChY34TRaw[Co3At3Ch2]
+893.026 -0.107711 0.00 !Mu2ChY35TRaw[Co3At3Ch3]
+894.339 -0.10786 0.00 !Mu2ChY36TRaw[Co3At3Ch4]
+897.82 -0.108297 0.00 !Mu2ChY37TRaw[Co3At3Ch5]
+892.44 -0.107628 0.00 !Mu2ChY38TRaw[Co3At3Ch6]
+908.152 -0.109574 0.00 !Mu2ChY39TRaw[Co3At3Ch7]
+906.817 -0.109401 0.00 !Mu2ChY40TRaw[Co3At3Ch8]
+909.649 -0.109756 0.00 !Mu2ChY41TRaw[Co3At3Ch9]
+914.061 -0.110304 0.00 !Mu2ChY42TRaw[Co3At3Ch10]
+910.049 -0.10979 0.00 !Mu2ChY43TRaw[Co3At3Ch11]
+913.535 -0.110231 0.00 !Mu2ChY44TRaw[Co3At3Ch12]
+915.986 -0.110532 0.00 !Mu2ChY45TRaw[Co3At3Ch13]
+919.243 -0.110907 0.00 !Mu2ChY46TRaw[Co3At3Ch14]
+922.863 -0.111371 0.00 !Mu2ChY47TRaw[Co3At3Ch15]
+918.091 -0.110791 0.00 !Mu2ChY48TRaw[Co3At3Ch16]
+896.545 -0.108016 0.00 !Mu2ChY49TRaw[Co3At4Ch1]
+905.921 -0.109155 0.00 !Mu2ChY50TRaw[Co3At4Ch2]
+903.191 -0.108834 0.00 !Mu2ChY51TRaw[Co3At4Ch3]
+916.514 -0.110471 0.00 !Mu2ChY52TRaw[Co3At4Ch4]
+909.698 -0.109622 0.00 !Mu2ChY53TRaw[Co3At4Ch5]
+918.472 -0.110708 0.00 !Mu2ChY54TRaw[Co3At4Ch6]
+921.934 -0.111116 0.00 !Mu2ChY55TRaw[Co3At4Ch7]
+917.791 -0.11061 0.00 !Mu2ChY56TRaw[Co3At4Ch8]
+930.463 -0.11216 0.00 !Mu2ChY57TRaw[Co3At4Ch9]
+921.545 -0.111079 0.00 !Mu2ChY58TRaw[Co3At4Ch10]
+924.357 -0.111393 0.00 !Mu2ChY59TRaw[Co3At4Ch11]
+928.134 -0.11168 0.00 !Mu2ChY60TRaw[Co3At4Ch12]
+944.074 -0.11386 0.00 !Mu2ChY61TRaw[Co3At4Ch13]
+929.497 -0.112068 0.00 !Mu2ChY62TRaw[Co3At4Ch14]
+925.938 -0.111623 0.00 !Mu2ChY63TRaw[Co3At4Ch15]
+933.858 -0.112593 0.00 !Mu2ChY64TRaw[Co3At4Ch16]
+926.3 -0.111864 0.00 !Mu2ChY65TRaw[Co4At1Ch1]
+945.736 -0.114242 0.00 !Mu2ChY66TRaw[Co4At1Ch2]
+950.053 -0.114763 0.00 !Mu2ChY67TRaw[Co4At1Ch3]
+947.803 -0.114477 0.00 !Mu2ChY68TRaw[Co4At1Ch4]
+974.181 -0.117701 0.00 !Mu2ChY69TRaw[Co4At1Ch5]
+962.11 -0.116242 0.00 !Mu2ChY70TRaw[Co4At1Ch6]
+969.683 -0.117144 0.00 !Mu2ChY71TRaw[Co4At1Ch7]
+966.661 -0.116783 0.00 !Mu2ChY72TRaw[Co4At1Ch8]
+958.107 -0.115747 0.00 !Mu2ChY73TRaw[Co4At1Ch9]
+960.237 -0.115989 0.00 !Mu2ChY74TRaw[Co4At1Ch10]
+966.385 -0.116762 0.00 !Mu2ChY75TRaw[Co4At1Ch11]
+979.2 -0.118324 0.00 !Mu2ChY76TRaw[Co4At1Ch12]
+975.406 -0.117892 0.00 !Mu2ChY77TRaw[Co4At1Ch13]
+977.792 -0.118194 0.00 !Mu2ChY78TRaw[Co4At1Ch14]
+968.878 -0.117092 0.00 !Mu2ChY79TRaw[Co4At1Ch15]
+971.01 -0.117343 0.00 !Mu2ChY80TRaw[Co4At1Ch16]
+946.074 -0.114246 0.00 !Mu2ChY81TRaw[Co4At2Ch1]
+940.751 -0.113582 0.00 !Mu2ChY82TRaw[Co4At2Ch2]
+952.983 -0.115097 0.00 !Mu2ChY83TRaw[Co4At2Ch3]
+948.889 -0.114574 0.00 !Mu2ChY84TRaw[Co4At2Ch4]
+957.63 -0.115653 0.00 !Mu2ChY85TRaw[Co4At2Ch5]
+968.091 -0.11692 0.00 !Mu2ChY86TRaw[Co4At2Ch6]
+966.176 -0.116695 0.00 !Mu2ChY87TRaw[Co4At2Ch7]
+971.862 -0.117388 0.00 !Mu2ChY88TRaw[Co4At2Ch8]
+974.809 -0.117739 0.00 !Mu2ChY89TRaw[Co4At2Ch9]
+976.466 -0.11797 0.00 !Mu2ChY90TRaw[Co4At2Ch10]
+981.048 -0.118525 0.00 !Mu2ChY91TRaw[Co4At2Ch11]
+971.816 -0.117371 0.00 !Mu2ChY92TRaw[Co4At2Ch12]
+979.537 -0.118331 0.00 !Mu2ChY93TRaw[Co4At2Ch13]
+979.044 -0.118283 0.00 !Mu2ChY94TRaw[Co4At2Ch14]
+986.328 -0.119174 0.00 !Mu2ChY95TRaw[Co4At2Ch15]
+991.309 -0.119806 0.00 !Mu2ChY96TRaw[Co4At2Ch16]
+899.526 -0.108639 0.00 !Mu2ChY97TRaw[Co4At3Ch1]
+896.011 -0.108189 0.00 !Mu2ChY98TRaw[Co4At3Ch2]
+906.665 -0.109474 0.00 !Mu2ChY99TRaw[Co4At3Ch3]
+905.068 -0.109308 0.00 !Mu2ChY100TRaw[Co4At3Ch4]
+919.012 -0.110997 0.00 !Mu2ChY101TRaw[Co4At3Ch5]
+926.674 -0.111938 0.00 !Mu2ChY102TRaw[Co4At3Ch6]
+916.909 -0.110746 0.00 !Mu2ChY103TRaw[Co4At3Ch7]
+932.767 -0.112691 0.00 !Mu2ChY104TRaw[Co4At3Ch8]
+927.33 -0.112025 0.00 !Mu2ChY105TRaw[Co4At3Ch9]
+923.243 -0.111507 0.00 !Mu2ChY106TRaw[Co4At3Ch10]
+924.408 -0.111663 0.00 !Mu2ChY107TRaw[Co4At3Ch11]
+924.057 -0.111623 0.00 !Mu2ChY108TRaw[Co4At3Ch12]
+927.531 -0.112066 0.00 !Mu2ChY109TRaw[Co4At3Ch13]
+928.251 -0.11214 0.00 !Mu2ChY110TRaw[Co4At3Ch14]
+924.467 -0.111703 0.00 !Mu2ChY111TRaw[Co4At3Ch15]
+914.871 -0.110525 0.00 !Mu2ChY112TRaw[Co4At3Ch16]
+854.155 -0.102981 0.00 !Mu2ChY113TRaw[Co4At4Ch1]
+870.733 -0.104976 0.00 !Mu2ChY114TRaw[Co4At4Ch2]
+878.476 -0.105936 0.00 !Mu2ChY115TRaw[Co4At4Ch3]
+876.793 -0.10575 0.00 !Mu2ChY116TRaw[Co4At4Ch4]
+884.881 -0.106741 0.00 !Mu2ChY117TRaw[Co4At4Ch5]
+881.171 -0.10628 0.00 !Mu2ChY118TRaw[Co4At4Ch6]
+893.636 -0.107805 0.00 !Mu2ChY119TRaw[Co4At4Ch7]
+894.919 -0.107966 0.00 !Mu2ChY120TRaw[Co4At4Ch8]
+885.067 -0.106759 0.00 !Mu2ChY121TRaw[Co4At4Ch9]
+898.226 -0.108381 0.00 !Mu2ChY122TRaw[Co4At4Ch10]
+896.617 -0.108195 0.00 !Mu2ChY123TRaw[Co4At4Ch11]
+896.617 -0.108195 0.00 !Mu2ChY124TRaw[Co4At4Ch12]
+899.421 -0.108519 0.00 !Mu2ChY125TRaw[Co4At4Ch13]
+900.193 -0.10863 0.00 !Mu2ChY126TRaw[Co4At4Ch14]
+901.229 -0.108768 0.00 !Mu2ChY127TRaw[Co4At4Ch15]
+897.311 -0.108297 0.00 !Mu2ChY128TRaw[Co4At4Ch16]
+938.354 -0.113591 0.00 !Mu3ChX1TRaw[Co1At1Ch1]
+952.054 -0.115254 0.00 !Mu3ChX2TRaw[Co1At1Ch2]
+956.534 -0.115822 0.00 !Mu3ChX3TRaw[Co1At1Ch3]
+958.488 -0.116042 0.00 !Mu3ChX4TRaw[Co1At1Ch4]
+950.724 -0.115096 0.00 !Mu3ChX5TRaw[Co1At1Ch5]
+965.196 -0.11686 0.00 !Mu3ChX6TRaw[Co1At1Ch6]
+969.308 -0.117385 0.00 !Mu3ChX7TRaw[Co1At1Ch7]
+974.569 -0.118019 0.00 !Mu3ChX8TRaw[Co1At1Ch8]
+972.643 -0.117779 0.00 !Mu3ChX9TRaw[Co1At1Ch9]
+970.352 -0.117496 0.00 !Mu3ChX10TRaw[Co1At1Ch10]
+972.778 -0.117795 0.00 !Mu3ChX11TRaw[Co1At1Ch11]
+984.9 -0.119273 0.00 !Mu3ChX12TRaw[Co1At1Ch12]
+974.806 -0.118031 0.00 !Mu3ChX13TRaw[Co1At1Ch13]
+981.032 -0.118805 0.00 !Mu3ChX14TRaw[Co1At1Ch14]
+978.727 -0.118524 0.00 !Mu3ChX15TRaw[Co1At1Ch15]
+983.561 -0.119127 0.00 !Mu3ChX16TRaw[Co1At1Ch16]
+967.055 -0.117029 0.00 !Mu3ChX17TRaw[Co1At2Ch1]
+963.403 -0.116582 0.00 !Mu3ChX18TRaw[Co1At2Ch2]
+982.136 -0.11886 0.00 !Mu3ChX19TRaw[Co1At2Ch3]
+978.048 -0.118386 0.00 !Mu3ChX20TRaw[Co1At2Ch4]
+985.228 -0.119229 0.00 !Mu3ChX21TRaw[Co1At2Ch5]
+992.422 -0.120114 0.00 !Mu3ChX22TRaw[Co1At2Ch6]
+984.595 -0.119177 0.00 !Mu3ChX23TRaw[Co1At2Ch7]
+988.858 -0.119693 0.00 !Mu3ChX24TRaw[Co1At2Ch8]
+986.58 -0.119405 0.00 !Mu3ChX25TRaw[Co1At2Ch9]
+987.489 -0.119523 0.00 !Mu3ChX26TRaw[Co1At2Ch10]
+1000.74 -0.12115 0.00 !Mu3ChX27TRaw[Co1At2Ch11]
+996.509 -0.120628 0.00 !Mu3ChX28TRaw[Co1At2Ch12]
+1006.69 -0.121885 0.00 !Mu3ChX29TRaw[Co1At2Ch13]
+999.766 -0.121035 0.00 !Mu3ChX30TRaw[Co1At2Ch14]
+1001.37 -0.121233 0.00 !Mu3ChX31TRaw[Co1At2Ch15]
+996.617 -0.120654 0.00 !Mu3ChX32TRaw[Co1At2Ch16]
+898.105 -0.108693 0.00 !Mu3ChX33TRaw[Co1At3Ch1]
+904.446 -0.109485 0.00 !Mu3ChX34TRaw[Co1At3Ch2]
+912.143 -0.110421 0.00 !Mu3ChX35TRaw[Co1At3Ch3]
+905.421 -0.109588 0.00 !Mu3ChX36TRaw[Co1At3Ch4]
+911.321 -0.110301 0.00 !Mu3ChX37TRaw[Co1At3Ch5]
+919.499 -0.111327 0.00 !Mu3ChX38TRaw[Co1At3Ch6]
+921.109 -0.111495 0.00 !Mu3ChX39TRaw[Co1At3Ch7]
+929.489 -0.112521 0.00 !Mu3ChX40TRaw[Co1At3Ch8]
+937.068 -0.11347 0.00 !Mu3ChX41TRaw[Co1At3Ch9]
+930.942 -0.112717 0.00 !Mu3ChX42TRaw[Co1At3Ch10]
+927.894 -0.112335 0.00 !Mu3ChX43TRaw[Co1At3Ch11]
+932.632 -0.112964 0.00 !Mu3ChX44TRaw[Co1At3Ch12]
+935.332 -0.113245 0.00 !Mu3ChX45TRaw[Co1At3Ch13]
+929.857 -0.11258 0.00 !Mu3ChX46TRaw[Co1At3Ch14]
+937.136 -0.113476 0.00 !Mu3ChX47TRaw[Co1At3Ch15]
+935.398 -0.113256 0.00 !Mu3ChX48TRaw[Co1At3Ch16]
+866.015 -0.104661 0.00 !Mu3ChX49TRaw[Co1At4Ch1]
+865.76 -0.104634 0.00 !Mu3ChX50TRaw[Co1At4Ch2]
+878.223 -0.106155 0.00 !Mu3ChX51TRaw[Co1At4Ch3]
+888.186 -0.107364 0.00 !Mu3ChX52TRaw[Co1At4Ch4]
+888.209 -0.107368 0.00 !Mu3ChX53TRaw[Co1At4Ch5]
+884.13 -0.106861 0.00 !Mu3ChX54TRaw[Co1At4Ch6]
+896.431 -0.108382 0.00 !Mu3ChX55TRaw[Co1At4Ch7]
+899.348 -0.108733 0.00 !Mu3ChX56TRaw[Co1At4Ch8]
+896.795 -0.10844 0.00 !Mu3ChX57TRaw[Co1At4Ch9]
+902.052 -0.10908 0.00 !Mu3ChX58TRaw[Co1At4Ch10]
+897.684 -0.108538 0.00 !Mu3ChX59TRaw[Co1At4Ch11]
+897.274 -0.10849 0.00 !Mu3ChX60TRaw[Co1At4Ch12]
+903.963 -0.109312 0.00 !Mu3ChX61TRaw[Co1At4Ch13]
+905.108 -0.109445 0.00 !Mu3ChX62TRaw[Co1At4Ch14]
+891.538 -0.107803 0.00 !Mu3ChX63TRaw[Co1At4Ch15]
+900.293 -0.108862 0.00 !Mu3ChX64TRaw[Co1At4Ch16]
+985.824 -0.119126 0.00 !Mu3ChX65TRaw[Co2At1Ch1]
+991.541 -0.119789 0.00 !Mu3ChX66TRaw[Co2At1Ch2]
+991.866 -0.119851 0.00 !Mu3ChX67TRaw[Co2At1Ch3]
+1007.5 -0.121753 0.00 !Mu3ChX68TRaw[Co2At1Ch4]
+1008.13 -0.121824 0.00 !Mu3ChX69TRaw[Co2At1Ch5]
+1004.87 -0.121446 0.00 !Mu3ChX70TRaw[Co2At1Ch6]
+1008.48 -0.121893 0.00 !Mu3ChX71TRaw[Co2At1Ch7]
+1012.14 -0.122347 0.00 !Mu3ChX72TRaw[Co2At1Ch8]
+1008.38 -0.121883 0.00 !Mu3ChX73TRaw[Co2At1Ch9]
+1014.86 -0.122684 0.00 !Mu3ChX74TRaw[Co2At1Ch10]
+1023.57 -0.123722 0.00 !Mu3ChX75TRaw[Co2At1Ch11]
+1033.42 -0.124938 0.00 !Mu3ChX76TRaw[Co2At1Ch12]
+1015.34 -0.122709 0.00 !Mu3ChX77TRaw[Co2At1Ch13]
+1014.72 -0.12265 0.00 !Mu3ChX78TRaw[Co2At1Ch14]
+1026.27 -0.124061 0.00 !Mu3ChX79TRaw[Co2At1Ch15]
+1019.9 -0.123313 0.00 !Mu3ChX80TRaw[Co2At1Ch16]
+942.714 -0.11381 0.00 !Mu3ChX81TRaw[Co2At2Ch1]
+949.104 -0.114558 0.00 !Mu3ChX82TRaw[Co2At2Ch2]
+952.48 -0.114986 0.00 !Mu3ChX83TRaw[Co2At2Ch3]
+951.022 -0.114804 0.00 !Mu3ChX84TRaw[Co2At2Ch4]
+965.822 -0.116619 0.00 !Mu3ChX85TRaw[Co2At2Ch5]
+968.345 -0.11693 0.00 !Mu3ChX86TRaw[Co2At2Ch6]
+962.99 -0.116299 0.00 !Mu3ChX87TRaw[Co2At2Ch7]
+967.787 -0.116863 0.00 !Mu3ChX88TRaw[Co2At2Ch8]
+978.317 -0.118161 0.00 !Mu3ChX89TRaw[Co2At2Ch9]
+974.374 -0.117687 0.00 !Mu3ChX90TRaw[Co2At2Ch10]
+979.507 -0.118304 0.00 !Mu3ChX91TRaw[Co2At2Ch11]
+987.225 -0.119256 0.00 !Mu3ChX92TRaw[Co2At2Ch12]
+987.195 -0.119241 0.00 !Mu3ChX93TRaw[Co2At2Ch13]
+986.603 -0.119186 0.00 !Mu3ChX94TRaw[Co2At2Ch14]
+984.211 -0.118879 0.00 !Mu3ChX95TRaw[Co2At2Ch15]
+979.288 -0.118278 0.00 !Mu3ChX96TRaw[Co2At2Ch16]
+862.689 -0.104124 0.00 !Mu3ChX97TRaw[Co2At3Ch1]
+867.813 -0.104728 0.00 !Mu3ChX98TRaw[Co2At3Ch2]
+867.895 -0.104753 0.00 !Mu3ChX99TRaw[Co2At3Ch3]
+873.835 -0.105492 0.00 !Mu3ChX100TRaw[Co2At3Ch4]
+883.843 -0.106693 0.00 !Mu3ChX101TRaw[Co2At3Ch5]
+879.494 -0.10614 0.00 !Mu3ChX102TRaw[Co2At3Ch6]
+883.805 -0.106708 0.00 !Mu3ChX103TRaw[Co2At3Ch7]
+882.86 -0.106567 0.00 !Mu3ChX104TRaw[Co2At3Ch8]
+891.887 -0.107671 0.00 !Mu3ChX105TRaw[Co2At3Ch9]
+896.27 -0.108216 0.00 !Mu3ChX106TRaw[Co2At3Ch10]
+888.15 -0.107225 0.00 !Mu3ChX107TRaw[Co2At3Ch11]
+899.039 -0.108561 0.00 !Mu3ChX108TRaw[Co2At3Ch12]
+899.371 -0.108609 0.00 !Mu3ChX109TRaw[Co2At3Ch13]
+896.002 -0.108191 0.00 !Mu3ChX110TRaw[Co2At3Ch14]
+905.511 -0.109337 0.00 !Mu3ChX111TRaw[Co2At3Ch15]
+900.32 -0.108709 0.00 !Mu3ChX112TRaw[Co2At3Ch16]
+859.472 -0.103629 0.00 !Mu3ChX113TRaw[Co2At4Ch1]
+869.213 -0.10481 0.00 !Mu3ChX114TRaw[Co2At4Ch2]
+869.978 -0.1049 0.00 !Mu3ChX115TRaw[Co2At4Ch3]
+876.122 -0.105647 0.00 !Mu3ChX116TRaw[Co2At4Ch4]
+788.143 -0.126949 0.00 !Mu3ChX117TRaw[Co2At4Ch5]
+880.15 -0.106145 0.00 !Mu3ChX118TRaw[Co2At4Ch6]
+887.525 -0.107055 0.00 !Mu3ChX119TRaw[Co2At4Ch7]
+884.874 -0.10675 0.00 !Mu3ChX120TRaw[Co2At4Ch8]
+888.126 -0.107137 0.00 !Mu3ChX121TRaw[Co2At4Ch9]
+892.007 -0.107599 0.00 !Mu3ChX122TRaw[Co2At4Ch10]
+887.829 -0.107093 0.00 !Mu3ChX123TRaw[Co2At4Ch11]
+897.245 -0.108252 0.00 !Mu3ChX124TRaw[Co2At4Ch12]
+891.27 -0.107522 0.00 !Mu3ChX125TRaw[Co2At4Ch13]
+898.089 -0.108336 0.00 !Mu3ChX126TRaw[Co2At4Ch14]
+885.342 -0.106793 0.00 !Mu3ChX127TRaw[Co2At4Ch15]
+894.433 -0.107896 0.00 !Mu3ChX128TRaw[Co2At4Ch16]
+920.954 -0.11121 0.00 !Mu3ChY1TRaw[Co3At1Ch1]
+928.777 -0.112154 0.00 !Mu3ChY2TRaw[Co3At1Ch2]
+937.754 -0.113241 0.00 !Mu3ChY3TRaw[Co3At1Ch3]
+947.224 -0.114409 0.00 !Mu3ChY4TRaw[Co3At1Ch4]
+944.162 -0.114032 0.00 !Mu3ChY5TRaw[Co3At1Ch5]
+951.968 -0.114994 0.00 !Mu3ChY6TRaw[Co3At1Ch6]
+956.591 -0.115552 0.00 !Mu3ChY7TRaw[Co3At1Ch7]
+956.368 -0.115546 0.00 !Mu3ChY8TRaw[Co3At1Ch8]
+964.281 -0.116506 0.00 !Mu3ChY9TRaw[Co3At1Ch9]
+968.513 -0.117006 0.00 !Mu3ChY10TRaw[Co3At1Ch10]
+970.24 -0.117251 0.00 !Mu3ChY11TRaw[Co3At1Ch11]
+969.011 -0.117093 0.00 !Mu3ChY12TRaw[Co3At1Ch12]
+978.827 -0.118272 0.00 !Mu3ChY13TRaw[Co3At1Ch13]
+985.112 -0.119048 0.00 !Mu3ChY14TRaw[Co3At1Ch14]
+977.123 -0.118075 0.00 !Mu3ChY15TRaw[Co3At1Ch15]
+983.985 -0.118941 0.00 !Mu3ChY16TRaw[Co3At1Ch16]
+970.371 -0.117174 0.00 !Mu3ChY17TRaw[Co3At2Ch1]
+984.045 -0.118815 0.00 !Mu3ChY18TRaw[Co3At2Ch2]
+985.023 -0.118931 0.00 !Mu3ChY19TRaw[Co3At2Ch3]
+990.894 -0.119638 0.00 !Mu3ChY20TRaw[Co3At2Ch4]
+996.439 -0.12034 0.00 !Mu3ChY21TRaw[Co3At2Ch5]
+1006.18 -0.121551 0.00 !Mu3ChY22TRaw[Co3At2Ch6]
+1001.89 -0.120998 0.00 !Mu3ChY23TRaw[Co3At2Ch7]
+996.258 -0.120321 0.00 !Mu3ChY24TRaw[Co3At2Ch8]
+1002.35 -0.121073 0.00 !Mu3ChY25TRaw[Co3At2Ch9]
+1008.58 -0.121839 0.00 !Mu3ChY26TRaw[Co3At2Ch10]
+1008.51 -0.121856 0.00 !Mu3ChY27TRaw[Co3At2Ch11]
+1015.07 -0.122649 0.00 !Mu3ChY28TRaw[Co3At2Ch12]
+1018.24 -0.12302 0.00 !Mu3ChY29TRaw[Co3At2Ch13]
+1007.23 -0.121668 0.00 !Mu3ChY30TRaw[Co3At2Ch14]
+1016.39 -0.122794 0.00 !Mu3ChY31TRaw[Co3At2Ch15]
+1017.37 -0.122927 0.00 !Mu3ChY32TRaw[Co3At2Ch16]
+873.601 -0.105446 0.00 !Mu3ChY33TRaw[Co3At3Ch1]
+870.737 -0.105092 0.00 !Mu3ChY34TRaw[Co3At3Ch2]
+875.902 -0.10573 0.00 !Mu3ChY35TRaw[Co3At3Ch3]
+872.76 -0.105345 0.00 !Mu3ChY36TRaw[Co3At3Ch4]
+884.229 -0.106744 0.00 !Mu3ChY37TRaw[Co3At3Ch5]
+883.52 -0.106654 0.00 !Mu3ChY38TRaw[Co3At3Ch6]
+888.675 -0.107294 0.00 !Mu3ChY39TRaw[Co3At3Ch7]
+897.411 -0.108361 0.00 !Mu3ChY40TRaw[Co3At3Ch8]
+894.272 -0.10799 0.00 !Mu3ChY41TRaw[Co3At3Ch9]
+898.134 -0.10846 0.00 !Mu3ChY42TRaw[Co3At3Ch10]
+907.563 -0.109593 0.00 !Mu3ChY43TRaw[Co3At3Ch11]
+904.332 -0.109195 0.00 !Mu3ChY44TRaw[Co3At3Ch12]
+899.078 -0.108568 0.00 !Mu3ChY45TRaw[Co3At3Ch13]
+909.287 -0.109804 0.00 !Mu3ChY46TRaw[Co3At3Ch14]
+912.926 -0.110263 0.00 !Mu3ChY47TRaw[Co3At3Ch15]
+905.69 -0.109382 0.00 !Mu3ChY48TRaw[Co3At3Ch16]
+879.206 -0.105997 0.00 !Mu3ChY49TRaw[Co3At4Ch1]
+885.638 -0.106772 0.00 !Mu3ChY50TRaw[Co3At4Ch2]
+897.352 -0.108217 0.00 !Mu3ChY51TRaw[Co3At4Ch3]
+900.017 -0.108527 0.00 !Mu3ChY52TRaw[Co3At4Ch4]
+894.065 -0.107825 0.00 !Mu3ChY53TRaw[Co3At4Ch5]
+902.563 -0.108862 0.00 !Mu3ChY54TRaw[Co3At4Ch6]
+907.447 -0.109456 0.00 !Mu3ChY55TRaw[Co3At4Ch7]
+913.155 -0.110152 0.00 !Mu3ChY56TRaw[Co3At4Ch8]
+917.884 -0.110718 0.00 !Mu3ChY57TRaw[Co3At4Ch9]
+916.39 -0.11056 0.00 !Mu3ChY58TRaw[Co3At4Ch10]
+925.29 -0.111636 0.00 !Mu3ChY59TRaw[Co3At4Ch11]
+911.348 -0.109934 0.00 !Mu3ChY60TRaw[Co3At4Ch12]
+924.685 -0.111581 0.00 !Mu3ChY61TRaw[Co3At4Ch13]
+925.584 -0.111694 0.00 !Mu3ChY62TRaw[Co3At4Ch14]
+920.738 -0.1111 0.00 !Mu3ChY63TRaw[Co3At4Ch15]
+923.494 -0.11144 0.00 !Mu3ChY64TRaw[Co3At4Ch16]
+904.406 -0.109216 0.00 !Mu3ChY65TRaw[Co4At1Ch1]
+911.098 -0.110026 0.00 !Mu3ChY66TRaw[Co4At1Ch2]
+911.599 -0.110106 0.00 !Mu3ChY67TRaw[Co4At1Ch3]
+920.222 -0.11114 0.00 !Mu3ChY68TRaw[Co4At1Ch4]
+931.355 -0.11252 0.00 !Mu3ChY69TRaw[Co4At1Ch5]
+939.668 -0.113544 0.00 !Mu3ChY70TRaw[Co4At1Ch6]
+932.714 -0.112672 0.00 !Mu3ChY71TRaw[Co4At1Ch7]
+931.288 -0.112491 0.00 !Mu3ChY72TRaw[Co4At1Ch8]
+947.183 -0.114462 0.00 !Mu3ChY73TRaw[Co4At1Ch9]
+939.764 -0.11354 0.00 !Mu3ChY74TRaw[Co4At1Ch10]
+955.625 -0.115517 0.00 !Mu3ChY75TRaw[Co4At1Ch11]
+952.282 -0.115086 0.00 !Mu3ChY76TRaw[Co4At1Ch12]
+964.745 -0.116618 0.00 !Mu3ChY77TRaw[Co4At1Ch13]
+953.345 -0.115232 0.00 !Mu3ChY78TRaw[Co4At1Ch14]
+945.988 -0.114343 0.00 !Mu3ChY79TRaw[Co4At1Ch15]
+951.047 -0.114947 0.00 !Mu3ChY80TRaw[Co4At1Ch16]
+970.943 -0.117288 0.00 !Mu3ChY81TRaw[Co4At2Ch1]
+982.69 -0.118727 0.00 !Mu3ChY82TRaw[Co4At2Ch2]
+988.906 -0.119474 0.00 !Mu3ChY83TRaw[Co4At2Ch3]
+992.522 -0.119909 0.00 !Mu3ChY84TRaw[Co4At2Ch4]
+994.13 -0.120116 0.00 !Mu3ChY85TRaw[Co4At2Ch5]
+1001.12 -0.120975 0.00 !Mu3ChY86TRaw[Co4At2Ch6]
+998.108 -0.120606 0.00 !Mu3ChY87TRaw[Co4At2Ch7]
+999.312 -0.12076 0.00 !Mu3ChY88TRaw[Co4At2Ch8]
+1004.15 -0.121336 0.00 !Mu3ChY89TRaw[Co4At2Ch9]
+1015.36 -0.122713 0.00 !Mu3ChY90TRaw[Co4At2Ch10]
+1018.49 -0.1231 0.00 !Mu3ChY91TRaw[Co4At2Ch11]
+1006.74 -0.121678 0.00 !Mu3ChY92TRaw[Co4At2Ch12]
+1015.03 -0.122697 0.00 !Mu3ChY93TRaw[Co4At2Ch13]
+1018.29 -0.123087 0.00 !Mu3ChY94TRaw[Co4At2Ch14]
+1010.39 -0.122144 0.00 !Mu3ChY95TRaw[Co4At2Ch15]
+1011.64 -0.122274 0.00 !Mu3ChY96TRaw[Co4At2Ch16]
+874.337 -0.105573 0.00 !Mu3ChY97TRaw[Co4At3Ch1]
+871.593 -0.105224 0.00 !Mu3ChY98TRaw[Co4At3Ch2]
+876.164 -0.105791 0.00 !Mu3ChY99TRaw[Co4At3Ch3]
+885.298 -0.106904 0.00 !Mu3ChY100TRaw[Co4At3Ch4]
+892.528 -0.107789 0.00 !Mu3ChY101TRaw[Co4At3Ch5]
+892.165 -0.107742 0.00 !Mu3ChY102TRaw[Co4At3Ch6]
+903.16 -0.109085 0.00 !Mu3ChY103TRaw[Co4At3Ch7]
+895.161 -0.108126 0.00 !Mu3ChY104TRaw[Co4At3Ch8]
+902.34 -0.108999 0.00 !Mu3ChY105TRaw[Co4At3Ch9]
+894.856 -0.108068 0.00 !Mu3ChY106TRaw[Co4At3Ch10]
+894.177 -0.108006 0.00 !Mu3ChY107TRaw[Co4At3Ch11]
+903.343 -0.109125 0.00 !Mu3ChY108TRaw[Co4At3Ch12]
+905.571 -0.109439 0.00 !Mu3ChY109TRaw[Co4At3Ch13]
+903.69 -0.109168 0.00 !Mu3ChY110TRaw[Co4At3Ch14]
+899.215 -0.108625 0.00 !Mu3ChY111TRaw[Co4At3Ch15]
+905.657 -0.109416 0.00 !Mu3ChY112TRaw[Co4At3Ch16]
+891.482 -0.107554 0.00 !Mu3ChY113TRaw[Co4At4Ch1]
+898.972 -0.108473 0.00 !Mu3ChY114TRaw[Co4At4Ch2]
+902.164 -0.108848 0.00 !Mu3ChY115TRaw[Co4At4Ch3]
+897.423 -0.108292 0.00 !Mu3ChY116TRaw[Co4At4Ch4]
+905.477 -0.109288 0.00 !Mu3ChY117TRaw[Co4At4Ch5]
+910.936 -0.109943 0.00 !Mu3ChY118TRaw[Co4At4Ch6]
+909.486 -0.109765 0.00 !Mu3ChY119TRaw[Co4At4Ch7]
+908.693 -0.109672 0.00 !Mu3ChY120TRaw[Co4At4Ch8]
+915.535 -0.110512 0.00 !Mu3ChY121TRaw[Co4At4Ch9]
+924.289 -0.111588 0.00 !Mu3ChY122TRaw[Co4At4Ch10]
+926.875 -0.111915 0.00 !Mu3ChY123TRaw[Co4At4Ch11]
+909.469 -0.109772 0.00 !Mu3ChY124TRaw[Co4At4Ch12]
+913.618 -0.11029 0.00 !Mu3ChY125TRaw[Co4At4Ch13]
+919.137 -0.110947 0.00 !Mu3ChY126TRaw[Co4At4Ch14]
+920.413 -0.111116 0.00 !Mu3ChY127TRaw[Co4At4Ch15]
+928.523 -0.112131 0.00 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/.DS_Store b/Projects/MUSETT/calibration/calib_SanityCheck_R308/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..8f538db1cc52519484fd0a76b787e8ecdf3507fc
Binary files /dev/null and b/Projects/MUSETT/calibration/calib_SanityCheck_R308/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M0_E/Cal_Str_X_E_MM0.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b56df0bbb27f890ca4f6493ba76adaea922fcb94
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E -61.6623 0.00752711
+MUSETT_T0_DSSD_X1_E -61.862300000000005 0.0075515
+MUSETT_T0_DSSD_X2_E -61.786 0.00754225
+MUSETT_T0_DSSD_X3_E -61.4886 0.0075058699999999996
+MUSETT_T0_DSSD_X4_E -61.896800000000006 0.00755579
+MUSETT_T0_DSSD_X5_E -61.6415 0.007524530000000001
+MUSETT_T0_DSSD_X6_E -61.3994 0.00749501
+MUSETT_T0_DSSD_X7_E -61.2364 0.00747509
+MUSETT_T0_DSSD_X8_E -60.9865 0.0074446
+MUSETT_T0_DSSD_X9_E -62.6813 0.0076514800000000004
+MUSETT_T0_DSSD_X10_E -62.3935 0.00761631
+MUSETT_T0_DSSD_X11_E -61.9253 0.00755919
+MUSETT_T0_DSSD_X12_E -62.029900000000005 0.00757195
+MUSETT_T0_DSSD_X13_E -61.7577 0.00753873
+MUSETT_T0_DSSD_X14_E -62.4176 0.00761932
+MUSETT_T0_DSSD_X15_E -61.2753 0.00747982
+MUSETT_T0_DSSD_X16_E -63.0583 0.00769749
+MUSETT_T0_DSSD_X17_E -62.722199999999994 0.00765646
+MUSETT_T0_DSSD_X18_E -62.1349 0.007584769999999999
+MUSETT_T0_DSSD_X19_E -62.4581 0.00762423
+MUSETT_T0_DSSD_X20_E -63.902699999999996 0.00780057
+MUSETT_T0_DSSD_X21_E -62.5199 0.00763181
+MUSETT_T0_DSSD_X22_E -62.2975 0.00760463
+MUSETT_T0_DSSD_X23_E -62.6596 0.00764878
+MUSETT_T0_DSSD_X24_E -62.8523 0.00767238
+MUSETT_T0_DSSD_X25_E -62.9854 0.00768854
+MUSETT_T0_DSSD_X26_E -63.073699999999995 0.00769941
+MUSETT_T0_DSSD_X27_E -62.632 0.00764548
+MUSETT_T0_DSSD_X28_E -63.013400000000004 0.00769203
+MUSETT_T0_DSSD_X29_E -62.579 0.00763901
+MUSETT_T0_DSSD_X30_E -63.4015 0.0077394
+MUSETT_T0_DSSD_X31_E -62.63 0.007645229999999999
+MUSETT_T0_DSSD_X32_E -56.399 0.00688462
+MUSETT_T0_DSSD_X33_E -56.789199999999994 0.00693221
+MUSETT_T0_DSSD_X34_E -55.5642 0.00678269
+MUSETT_T0_DSSD_X35_E -56.333400000000005 0.00687654
+MUSETT_T0_DSSD_X36_E -56.0406 0.00684084
+MUSETT_T0_DSSD_X37_E -10.0 0.0
+MUSETT_T0_DSSD_X38_E -55.909699999999994 0.006824869999999999
+MUSETT_T0_DSSD_X39_E -55.6584 0.006794209999999999
+MUSETT_T0_DSSD_X40_E -56.211800000000004 0.00686172
+MUSETT_T0_DSSD_X41_E -55.874 0.00682053
+MUSETT_T0_DSSD_X42_E -56.1648 0.00685597
+MUSETT_T0_DSSD_X43_E -56.3075 0.00687343
+MUSETT_T0_DSSD_X44_E -56.382 0.00688247
+MUSETT_T0_DSSD_X45_E -10.0 0.0
+MUSETT_T0_DSSD_X46_E -10.0 0.0
+MUSETT_T0_DSSD_X47_E -55.9115 0.00682508
+MUSETT_T0_DSSD_X48_E -57.9275 0.00707116
+MUSETT_T0_DSSD_X49_E -57.924800000000005 0.007070809999999999
+MUSETT_T0_DSSD_X50_E -57.746 0.007049000000000001
+MUSETT_T0_DSSD_X51_E -57.3431 0.00699988
+MUSETT_T0_DSSD_X52_E -58.1722 0.00710106
+MUSETT_T0_DSSD_X53_E -57.2377 0.00698697
+MUSETT_T0_DSSD_X54_E -57.8763 0.00706488
+MUSETT_T0_DSSD_X55_E -57.5235 0.00702188
+MUSETT_T0_DSSD_X56_E -58.500699999999995 0.00714114
+MUSETT_T0_DSSD_X57_E -57.7865 0.00705393
+MUSETT_T0_DSSD_X58_E -57.3004 0.00699465
+MUSETT_T0_DSSD_X59_E -57.7909 0.00705448
+MUSETT_T0_DSSD_X60_E -57.2034 0.0069828
+MUSETT_T0_DSSD_X61_E -57.985 0.0070782
+MUSETT_T0_DSSD_X62_E -57.8887 0.00706644
+MUSETT_T0_DSSD_X63_E -58.1271 0.00709555
+MUSETT_T0_DSSD_X64_E -63.452400000000004 0.00774561
+MUSETT_T0_DSSD_X65_E -63.6121 0.0077651099999999995
+MUSETT_T0_DSSD_X66_E -63.338699999999996 0.00773174
+MUSETT_T0_DSSD_X67_E -64.0218 0.00781515
+MUSETT_T0_DSSD_X68_E -63.1974 0.00771456
+MUSETT_T0_DSSD_X69_E -63.9684 0.0078086399999999995
+MUSETT_T0_DSSD_X70_E -63.8538 0.00779469
+MUSETT_T0_DSSD_X71_E -63.3564 0.007733970000000001
+MUSETT_T0_DSSD_X72_E -64.1177 0.00782683
+MUSETT_T0_DSSD_X73_E -63.242599999999996 0.00772007
+MUSETT_T0_DSSD_X74_E -63.9725 0.00780918
+MUSETT_T0_DSSD_X75_E -63.9414 0.0078053
+MUSETT_T0_DSSD_X76_E -63.6518 0.0077700899999999995
+MUSETT_T0_DSSD_X77_E -63.7543 0.00778255
+MUSETT_T0_DSSD_X78_E -64.2928 0.00784837
+MUSETT_T0_DSSD_X79_E -64.6906 0.00789693
+MUSETT_T0_DSSD_X80_E -61.2158 0.0074727100000000005
+MUSETT_T0_DSSD_X81_E -60.8651 0.007429949999999999
+MUSETT_T0_DSSD_X82_E -61.1473 0.00746434
+MUSETT_T0_DSSD_X83_E -61.4696 0.0075036899999999995
+MUSETT_T0_DSSD_X84_E -61.3791 0.00749269
+MUSETT_T0_DSSD_X85_E -61.8887 0.00755484
+MUSETT_T0_DSSD_X86_E -61.4032 0.00749554
+MUSETT_T0_DSSD_X87_E -62.1665 0.00758877
+MUSETT_T0_DSSD_X88_E -61.8964 0.007555780000000001
+MUSETT_T0_DSSD_X89_E -61.5721 0.00751618
+MUSETT_T0_DSSD_X90_E -61.7205 0.007534239999999999
+MUSETT_T0_DSSD_X91_E -62.7965 0.00766557
+MUSETT_T0_DSSD_X92_E -61.8681 0.00755224
+MUSETT_T0_DSSD_X93_E -60.9991 0.00744621
+MUSETT_T0_DSSD_X94_E -61.368199999999995 0.00749129
+MUSETT_T0_DSSD_X95_E -62.1668 0.00758877
+MUSETT_T0_DSSD_X96_E -57.1697 0.00697872
+MUSETT_T0_DSSD_X97_E -57.564 0.0070268100000000005
+MUSETT_T0_DSSD_X98_E -57.724199999999996 0.00704642
+MUSETT_T0_DSSD_X99_E -57.113099999999996 0.00697176
+MUSETT_T0_DSSD_X100_E -58.1265 0.0070955
+MUSETT_T0_DSSD_X101_E -57.7465 0.00704909
+MUSETT_T0_DSSD_X102_E -57.6654 0.00703921
+MUSETT_T0_DSSD_X103_E -57.244699999999995 0.00698784
+MUSETT_T0_DSSD_X104_E -57.357800000000005 0.00700171
+MUSETT_T0_DSSD_X105_E -57.943599999999996 0.0070732
+MUSETT_T0_DSSD_X106_E -57.2791 0.00699197
+MUSETT_T0_DSSD_X107_E -57.6282 0.00703471
+MUSETT_T0_DSSD_X108_E -58.567699999999995 0.0071494
+MUSETT_T0_DSSD_X109_E -58.0135 0.00708178
+MUSETT_T0_DSSD_X110_E -57.6815 0.00704111
+MUSETT_T0_DSSD_X111_E -57.7954 0.00705508
+MUSETT_T0_DSSD_X112_E -59.002300000000005 0.00720244
+MUSETT_T0_DSSD_X113_E -59.1922 0.00722562
+MUSETT_T0_DSSD_X114_E -58.512800000000006 0.00714267
+MUSETT_T0_DSSD_X115_E -58.6713 0.0071620699999999995
+MUSETT_T0_DSSD_X116_E -58.1716 0.00710101
+MUSETT_T0_DSSD_X117_E -58.3505 0.00712281
+MUSETT_T0_DSSD_X118_E -58.281400000000005 0.00711445
+MUSETT_T0_DSSD_X119_E -58.508199999999995 0.0071421
+MUSETT_T0_DSSD_X120_E -58.5117 0.00714253
+MUSETT_T0_DSSD_X121_E -58.6539 0.0071598899999999995
+MUSETT_T0_DSSD_X122_E -58.5504 0.00714724
+MUSETT_T0_DSSD_X123_E -59.318400000000004 0.00724097
+MUSETT_T0_DSSD_X124_E -57.853 0.007062140000000001
+MUSETT_T0_DSSD_X125_E -58.498400000000004 0.00714087
+MUSETT_T0_DSSD_X126_E -58.4264 0.00713213
+MUSETT_T0_DSSD_X127_E -59.5126 0.00726467
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M0_E/Cal_Str_Y_E_MM0.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..7c5d41b25a59ce5a29553a76ed64aac9acbd191e
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_Y0_E -10.0 0.0
+MUSETT_T0_DSSD_Y1_E 60.4435 -0.007378389999999999
+MUSETT_T0_DSSD_Y2_E 60.9085 -0.00743514
+MUSETT_T0_DSSD_Y3_E 61.060199999999995 -0.00745367
+MUSETT_T0_DSSD_Y4_E 59.9844 -0.00732237
+MUSETT_T0_DSSD_Y5_E 60.1295 -0.0073401
+MUSETT_T0_DSSD_Y6_E 60.7831 -0.007419889999999999
+MUSETT_T0_DSSD_Y7_E 60.431 -0.0073769099999999995
+MUSETT_T0_DSSD_Y8_E 60.140699999999995 -0.00734142
+MUSETT_T0_DSSD_Y9_E 59.998400000000004 -0.00732403
+MUSETT_T0_DSSD_Y10_E 60.3957 -0.0073725399999999995
+MUSETT_T0_DSSD_Y11_E 60.0283 -0.00732774
+MUSETT_T0_DSSD_Y12_E 60.887800000000006 -0.00743267
+MUSETT_T0_DSSD_Y13_E 61.0665 -0.00745441
+MUSETT_T0_DSSD_Y14_E 61.164 -0.007466319999999999
+MUSETT_T0_DSSD_Y15_E 60.7398 -0.00741458
+MUSETT_T0_DSSD_Y16_E 60.4435 -0.00737838
+MUSETT_T0_DSSD_Y17_E 60.5444 -0.00739071
+MUSETT_T0_DSSD_Y18_E 60.303 -0.0073612
+MUSETT_T0_DSSD_Y19_E 60.1433 -0.007341739999999999
+MUSETT_T0_DSSD_Y20_E 60.3286 -0.0073644
+MUSETT_T0_DSSD_Y21_E 60.395900000000005 -0.00737256
+MUSETT_T0_DSSD_Y22_E 60.276 -0.00735798
+MUSETT_T0_DSSD_Y23_E 59.6842 -0.007285720000000001
+MUSETT_T0_DSSD_Y24_E 60.1879 -0.00734719
+MUSETT_T0_DSSD_Y25_E 59.7764 -0.00729698
+MUSETT_T0_DSSD_Y26_E 60.1286 -0.00733997
+MUSETT_T0_DSSD_Y27_E 60.4505 -0.00737922
+MUSETT_T0_DSSD_Y28_E 59.8905 -0.00731089
+MUSETT_T0_DSSD_Y29_E 59.6473 -0.0072812
+MUSETT_T0_DSSD_Y30_E 59.834900000000005 -0.00730412
+MUSETT_T0_DSSD_Y31_E 60.9991 -0.007446240000000001
+MUSETT_T0_DSSD_Y32_E 56.5525 -0.0069034100000000004
+MUSETT_T0_DSSD_Y33_E 57.0745 -0.00696718
+MUSETT_T0_DSSD_Y34_E 56.5365 -0.0069015000000000005
+MUSETT_T0_DSSD_Y35_E 57.036300000000004 -0.00696248
+MUSETT_T0_DSSD_Y36_E 57.4051 -0.007007500000000001
+MUSETT_T0_DSSD_Y37_E 57.2592 -0.0069897200000000005
+MUSETT_T0_DSSD_Y38_E 56.419599999999996 -0.00688718
+MUSETT_T0_DSSD_Y39_E 56.4611 -0.00689226
+MUSETT_T0_DSSD_Y40_E 56.9516 -0.00695213
+MUSETT_T0_DSSD_Y41_E 56.8 -0.00693367
+MUSETT_T0_DSSD_Y42_E 56.6005 -0.00690927
+MUSETT_T0_DSSD_Y43_E 56.5115 -0.0068984
+MUSETT_T0_DSSD_Y44_E 56.8705 -0.00694221
+MUSETT_T0_DSSD_Y45_E 56.9936 -0.006957270000000001
+MUSETT_T0_DSSD_Y46_E 57.6797 -0.00704103
+MUSETT_T0_DSSD_Y47_E 56.5606 -0.00690438
+MUSETT_T0_DSSD_Y48_E 57.5466 -0.0070247700000000005
+MUSETT_T0_DSSD_Y49_E 57.0358 -0.006962449999999999
+MUSETT_T0_DSSD_Y50_E 56.800599999999996 -0.00693377
+MUSETT_T0_DSSD_Y51_E 56.5058 -0.00689773
+MUSETT_T0_DSSD_Y52_E 57.1614 -0.006977789999999999
+MUSETT_T0_DSSD_Y53_E 56.855 -0.0069403600000000005
+MUSETT_T0_DSSD_Y54_E 56.619699999999995 -0.00691168
+MUSETT_T0_DSSD_Y55_E 57.6218 -0.00703399
+MUSETT_T0_DSSD_Y56_E 57.3597 -0.00700197
+MUSETT_T0_DSSD_Y57_E 56.825900000000004 -0.006936759999999999
+MUSETT_T0_DSSD_Y58_E 57.0315 -0.00696191
+MUSETT_T0_DSSD_Y59_E 57.2393 -0.00698735
+MUSETT_T0_DSSD_Y60_E 57.2548 -0.00698918
+MUSETT_T0_DSSD_Y61_E 57.074400000000004 -0.00696716
+MUSETT_T0_DSSD_Y62_E 57.5745 -0.00702822
+MUSETT_T0_DSSD_Y63_E 57.9124 -0.00706943
+MUSETT_T0_DSSD_Y64_E 61.0028 -0.00744668
+MUSETT_T0_DSSD_Y65_E 61.155300000000004 -0.0074653
+MUSETT_T0_DSSD_Y66_E 61.0533 -0.00745282
+MUSETT_T0_DSSD_Y67_E 61.373400000000004 -0.0074919
+MUSETT_T0_DSSD_Y68_E 60.4897 -0.00738403
+MUSETT_T0_DSSD_Y69_E 61.5803 -0.007517159999999999
+MUSETT_T0_DSSD_Y70_E 60.8956 -0.0074336
+MUSETT_T0_DSSD_Y71_E 60.4003 -0.0073731
+MUSETT_T0_DSSD_Y72_E 61.676199999999994 -0.00752889
+MUSETT_T0_DSSD_Y73_E 61.1073 -0.0074594399999999995
+MUSETT_T0_DSSD_Y74_E 61.1132 -0.00746014
+MUSETT_T0_DSSD_Y75_E 61.2304 -0.00747441
+MUSETT_T0_DSSD_Y76_E 60.5934 -0.00739669
+MUSETT_T0_DSSD_Y77_E 61.4122 -0.0074966600000000005
+MUSETT_T0_DSSD_Y78_E 61.6767 -0.0075289400000000005
+MUSETT_T0_DSSD_Y79_E 61.1145 -0.00746029
+MUSETT_T0_DSSD_Y80_E 62.3355 -0.00760932
+MUSETT_T0_DSSD_Y81_E 61.110800000000005 -0.00745984
+MUSETT_T0_DSSD_Y82_E 61.5895 -0.00751825
+MUSETT_T0_DSSD_Y83_E 62.0645 -0.007576240000000001
+MUSETT_T0_DSSD_Y84_E 61.0049 -0.00744692
+MUSETT_T0_DSSD_Y85_E 60.9003 -0.00743416
+MUSETT_T0_DSSD_Y86_E 61.8108 -0.00754524
+MUSETT_T0_DSSD_Y87_E 61.4395 -0.00749992
+MUSETT_T0_DSSD_Y88_E 61.153 -0.00746501
+MUSETT_T0_DSSD_Y89_E 61.3099 -0.00748418
+MUSETT_T0_DSSD_Y90_E 61.1603 -0.00746589
+MUSETT_T0_DSSD_Y91_E 61.4705 -0.00750377
+MUSETT_T0_DSSD_Y92_E 61.8625 -0.00755157
+MUSETT_T0_DSSD_Y93_E 61.676 -0.00752886
+MUSETT_T0_DSSD_Y94_E 62.3873 -0.00761565
+MUSETT_T0_DSSD_Y95_E 60.9044 -0.00743464
+MUSETT_T0_DSSD_Y96_E 56.3812 -0.00688248
+MUSETT_T0_DSSD_Y97_E 56.6477 -0.00691501
+MUSETT_T0_DSSD_Y98_E 56.593900000000005 -0.00690848
+MUSETT_T0_DSSD_Y99_E 56.4666 -0.0068929
+MUSETT_T0_DSSD_Y100_E 56.2051 -0.00686097
+MUSETT_T0_DSSD_Y101_E 56.3392 -0.00687735
+MUSETT_T0_DSSD_Y102_E 56.0711 -0.006844630000000001
+MUSETT_T0_DSSD_Y103_E 56.5869 -0.00690762
+MUSETT_T0_DSSD_Y104_E 56.9228 -0.006948579999999999
+MUSETT_T0_DSSD_Y105_E 56.073699999999995 -0.00684493
+MUSETT_T0_DSSD_Y106_E 57.0807 -0.00696791
+MUSETT_T0_DSSD_Y107_E 57.414300000000004 -0.00700859
+MUSETT_T0_DSSD_Y108_E 56.5825 -0.0069071
+MUSETT_T0_DSSD_Y109_E 56.5836 -0.00690725
+MUSETT_T0_DSSD_Y110_E 56.679199999999994 -0.00691888
+MUSETT_T0_DSSD_Y111_E 56.4215 -0.0068874
+MUSETT_T0_DSSD_Y112_E 56.9044 -0.00694638
+MUSETT_T0_DSSD_Y113_E 57.1278 -0.00697364
+MUSETT_T0_DSSD_Y114_E 56.9656 -0.0069538
+MUSETT_T0_DSSD_Y115_E 56.8221 -0.00693632
+MUSETT_T0_DSSD_Y116_E 57.302 -0.00699491
+MUSETT_T0_DSSD_Y117_E 56.554199999999994 -0.00690362
+MUSETT_T0_DSSD_Y118_E 56.421800000000005 -0.006887450000000001
+MUSETT_T0_DSSD_Y119_E 56.6454 -0.00691475
+MUSETT_T0_DSSD_Y120_E 57.3988 -0.00700675
+MUSETT_T0_DSSD_Y121_E 57.237300000000005 -0.0069869599999999995
+MUSETT_T0_DSSD_Y122_E 56.689 -0.0069200699999999995
+MUSETT_T0_DSSD_Y123_E 56.0116 -0.0068374199999999994
+MUSETT_T0_DSSD_Y124_E 56.467699999999994 -0.0068930300000000005
+MUSETT_T0_DSSD_Y125_E 55.9223 -0.0068265
+MUSETT_T0_DSSD_Y126_E 56.9572 -0.00695281
+MUSETT_T0_DSSD_Y127_E 56.5865 -0.00690758
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..5b24d47a3e65b665bfa9316692c46e8b7ebed112
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_T 946.164 -0.114176
+MUSETT_T0_DSSD_X1_T 956.811 -0.115529
+MUSETT_T0_DSSD_X2_T 957.988 -0.115657
+MUSETT_T0_DSSD_X3_T 972.139 -0.117409
+MUSETT_T0_DSSD_X4_T 971.761 -0.117367
+MUSETT_T0_DSSD_X5_T 971.702 -0.117353
+MUSETT_T0_DSSD_X6_T 976.911 -0.117969
+MUSETT_T0_DSSD_X7_T 979.143 -0.118246
+MUSETT_T0_DSSD_X8_T 977.915 -0.118065
+MUSETT_T0_DSSD_X9_T 981.976 -0.118546
+MUSETT_T0_DSSD_X10_T 986.577 -0.119138
+MUSETT_T0_DSSD_X11_T 986.184 -0.119075
+MUSETT_T0_DSSD_X12_T 993.563 -0.119996
+MUSETT_T0_DSSD_X13_T 978.874 -0.118174
+MUSETT_T0_DSSD_X14_T 989.894 -0.119531
+MUSETT_T0_DSSD_X15_T 1318.57 -0.118448
+MUSETT_T0_DSSD_X16_T 955.564 -0.115275
+MUSETT_T0_DSSD_X17_T 965.774 -0.116527
+MUSETT_T0_DSSD_X18_T 978.184 -0.118044
+MUSETT_T0_DSSD_X19_T 978.854 -0.118125
+MUSETT_T0_DSSD_X20_T 987.988 -0.119233
+MUSETT_T0_DSSD_X21_T 982.353 -0.118555
+MUSETT_T0_DSSD_X22_T 992.928 -0.119845
+MUSETT_T0_DSSD_X23_T 994.329 -0.120005
+MUSETT_T0_DSSD_X24_T 989.504 -0.119427
+MUSETT_T0_DSSD_X25_T 1000.62 -0.120777
+MUSETT_T0_DSSD_X26_T 1002.92 -0.121057
+MUSETT_T0_DSSD_X27_T 1006.98 -0.121545
+MUSETT_T0_DSSD_X28_T 1002.57 -0.121021
+MUSETT_T0_DSSD_X29_T 1001.43 -0.120851
+MUSETT_T0_DSSD_X30_T 997.945 -0.12045
+MUSETT_T0_DSSD_X31_T 993.524 -0.119947
+MUSETT_T0_DSSD_X32_T 872.545 -0.105192
+MUSETT_T0_DSSD_X33_T 870.474 -0.104955
+MUSETT_T0_DSSD_X34_T 890.439 -0.107397
+MUSETT_T0_DSSD_X35_T 879.216 -0.106033
+MUSETT_T0_DSSD_X36_T 881.009 -0.106227
+MUSETT_T0_DSSD_X37_T 895.366 -0.108005
+MUSETT_T0_DSSD_X38_T 897.01 -0.108195
+MUSETT_T0_DSSD_X39_T 895.47 -0.107979
+MUSETT_T0_DSSD_X40_T 898.037 -0.108302
+MUSETT_T0_DSSD_X41_T 898.361 -0.108334
+MUSETT_T0_DSSD_X42_T 897.507 -0.108243
+MUSETT_T0_DSSD_X43_T 904.455 -0.109095
+MUSETT_T0_DSSD_X44_T 899.781 -0.108505
+MUSETT_T0_DSSD_X45_T 894.363 -0.107877
+MUSETT_T0_DSSD_X46_T 896.817 -0.108187
+MUSETT_T0_DSSD_X47_T 930.792 -0.10826
+MUSETT_T0_DSSD_X48_T 884.648 -0.106556
+MUSETT_T0_DSSD_X49_T 887.836 -0.106942
+MUSETT_T0_DSSD_X50_T 893.25 -0.107622
+MUSETT_T0_DSSD_X51_T 901.75 -0.109464
+MUSETT_T0_DSSD_X52_T 907.099 -0.109295
+MUSETT_T0_DSSD_X53_T 909.979 -0.109652
+MUSETT_T0_DSSD_X54_T 912.526 -0.109955
+MUSETT_T0_DSSD_X55_T 916.597 -0.110458
+MUSETT_T0_DSSD_X56_T 925.24 -0.111499
+MUSETT_T0_DSSD_X57_T 916.715 -0.110456
+MUSETT_T0_DSSD_X58_T 924.251 -0.111378
+MUSETT_T0_DSSD_X59_T 928.786 -0.111943
+MUSETT_T0_DSSD_X60_T 935.878 -0.112807
+MUSETT_T0_DSSD_X61_T 938.667 -0.11314
+MUSETT_T0_DSSD_X62_T 940.288 -0.113338
+MUSETT_T0_DSSD_X63_T 929.111 -0.111982
+MUSETT_T0_DSSD_X64_T 957.51 -0.115846
+MUSETT_T0_DSSD_X65_T 962.646 -0.11646
+MUSETT_T0_DSSD_X66_T 972.344 -0.117644
+MUSETT_T0_DSSD_X67_T 973.464 -0.117791
+MUSETT_T0_DSSD_X68_T 976.904 -0.118174
+MUSETT_T0_DSSD_X69_T 989.493 -0.119717
+MUSETT_T0_DSSD_X70_T 993.895 -0.120284
+MUSETT_T0_DSSD_X71_T 995.117 -0.120426
+MUSETT_T0_DSSD_X72_T 1006.3 -0.121763
+MUSETT_T0_DSSD_X73_T 987.403 -0.119445
+MUSETT_T0_DSSD_X74_T 1004.54 -0.121535
+MUSETT_T0_DSSD_X75_T 995.118 -0.120381
+MUSETT_T0_DSSD_X76_T 1002.39 -0.121262
+MUSETT_T0_DSSD_X77_T 1006.49 -0.121766
+MUSETT_T0_DSSD_X78_T 997.059 -0.120615
+MUSETT_T0_DSSD_X79_T 1377.74 -0.120952
+MUSETT_T0_DSSD_X80_T 923.114 -0.111515
+MUSETT_T0_DSSD_X81_T 932.866 -0.112746
+MUSETT_T0_DSSD_X82_T 924.928 -0.111774
+MUSETT_T0_DSSD_X83_T 937.265 -0.113281
+MUSETT_T0_DSSD_X84_T 930.752 -0.112468
+MUSETT_T0_DSSD_X85_T 941.628 -0.113819
+MUSETT_T0_DSSD_X86_T 949.998 -0.114818
+MUSETT_T0_DSSD_X87_T 943.027 -0.113978
+MUSETT_T0_DSSD_X88_T 949.721 -0.114813
+MUSETT_T0_DSSD_X89_T 957.242 -0.115728
+MUSETT_T0_DSSD_X90_T 964.815 -0.11664
+MUSETT_T0_DSSD_X91_T 961.466 -0.11625
+MUSETT_T0_DSSD_X92_T 961.749 -0.116299
+MUSETT_T0_DSSD_X93_T 960.655 -0.116152
+MUSETT_T0_DSSD_X94_T 974.674 -0.117868
+MUSETT_T0_DSSD_X95_T 992.705 -0.116744
+MUSETT_T0_DSSD_X96_T 868.269 -0.105013
+MUSETT_T0_DSSD_X97_T 877.648 -0.106169
+MUSETT_T0_DSSD_X98_T 878.241 -0.106212
+MUSETT_T0_DSSD_X99_T 883.994 -0.106905
+MUSETT_T0_DSSD_X100_T 893.321 -0.108043
+MUSETT_T0_DSSD_X101_T 900.56 -0.108935
+MUSETT_T0_DSSD_X102_T 896.766 -0.108442
+MUSETT_T0_DSSD_X103_T 894.903 -0.108194
+MUSETT_T0_DSSD_X104_T 904.239 -0.109336
+MUSETT_T0_DSSD_X105_T 902.018 -0.109053
+MUSETT_T0_DSSD_X106_T 907.673 -0.109771
+MUSETT_T0_DSSD_X107_T 904.96 -0.109449
+MUSETT_T0_DSSD_X108_T 902.795 -0.109128
+MUSETT_T0_DSSD_X109_T 906.335 -0.109641
+MUSETT_T0_DSSD_X110_T 903.029 -0.109177
+MUSETT_T0_DSSD_X111_T 912.908 -0.109478
+MUSETT_T0_DSSD_X112_T 888.694 -0.107364
+MUSETT_T0_DSSD_X113_T 891.736 -0.107748
+MUSETT_T0_DSSD_X114_T 891.957 -0.107782
+MUSETT_T0_DSSD_X115_T 901.87 -0.109007
+MUSETT_T0_DSSD_X116_T 905.48 -0.109423
+MUSETT_T0_DSSD_X117_T 899.196 -0.108648
+MUSETT_T0_DSSD_X118_T 913.782 -0.110413
+MUSETT_T0_DSSD_X119_T 914.779 -0.110579
+MUSETT_T0_DSSD_X120_T 909.004 -0.109898
+MUSETT_T0_DSSD_X121_T 914.282 -0.1105
+MUSETT_T0_DSSD_X122_T 922.657 -0.111529
+MUSETT_T0_DSSD_X123_T 914.822 -0.110604
+MUSETT_T0_DSSD_X124_T 917.977 -0.110972
+MUSETT_T0_DSSD_X125_T 919.687 -0.11118
+MUSETT_T0_DSSD_X126_T 914.922 -0.110613
+MUSETT_T0_DSSD_X127_T 925.329 -0.111151
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..44caa7bd7c0575c1eae4de035fb0398b5e399796
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 942.169 -0.114033
+MUSETT_T0_DSSD_Y2_T 941.094 -0.113921
+MUSETT_T0_DSSD_Y3_T 959.045 -0.116104
+MUSETT_T0_DSSD_Y4_T 954.629 -0.115563
+MUSETT_T0_DSSD_Y5_T 970.443 -0.117481
+MUSETT_T0_DSSD_Y6_T 969.234 -0.117339
+MUSETT_T0_DSSD_Y7_T 966.53 -0.117018
+MUSETT_T0_DSSD_Y8_T 973.409 -0.117842
+MUSETT_T0_DSSD_Y9_T 968.923 -0.117316
+MUSETT_T0_DSSD_Y10_T 971.661 -0.117632
+MUSETT_T0_DSSD_Y11_T 977.841 -0.118398
+MUSETT_T0_DSSD_Y12_T 975.821 -0.11814
+MUSETT_T0_DSSD_Y13_T 971.638 -0.117633
+MUSETT_T0_DSSD_Y14_T 974.225 -0.117944
+MUSETT_T0_DSSD_Y15_T 980.805 -0.118761
+MUSETT_T0_DSSD_Y16_T 935.973 -0.113175
+MUSETT_T0_DSSD_Y17_T 944.972 -0.114309
+MUSETT_T0_DSSD_Y18_T 953.592 -0.115351
+MUSETT_T0_DSSD_Y19_T 945.492 -0.11436
+MUSETT_T0_DSSD_Y20_T 948.066 -0.114686
+MUSETT_T0_DSSD_Y21_T 951.558 -0.115103
+MUSETT_T0_DSSD_Y22_T 957.545 -0.115832
+MUSETT_T0_DSSD_Y23_T 957.576 -0.115841
+MUSETT_T0_DSSD_Y24_T 962.251 -0.116398
+MUSETT_T0_DSSD_Y25_T 960.479 -0.116195
+MUSETT_T0_DSSD_Y26_T 957.007 -0.115516
+MUSETT_T0_DSSD_Y27_T 971.646 -0.117562
+MUSETT_T0_DSSD_Y28_T 974.064 -0.117834
+MUSETT_T0_DSSD_Y29_T 968.974 -0.11722
+MUSETT_T0_DSSD_Y30_T 971.944 -0.11759
+MUSETT_T0_DSSD_Y31_T 966.713 -0.116928
+MUSETT_T0_DSSD_Y32_T 869.43 -0.105131
+MUSETT_T0_DSSD_Y33_T 868.989 -0.105113
+MUSETT_T0_DSSD_Y34_T 886.133 -0.107174
+MUSETT_T0_DSSD_Y35_T 876.002 -0.105955
+MUSETT_T0_DSSD_Y36_T 887.653 -0.107363
+MUSETT_T0_DSSD_Y37_T 886.897 -0.107278
+MUSETT_T0_DSSD_Y38_T 887.559 -0.107347
+MUSETT_T0_DSSD_Y39_T 905.525 -0.109567
+MUSETT_T0_DSSD_Y40_T 903.288 -0.109268
+MUSETT_T0_DSSD_Y41_T 901.488 -0.109045
+MUSETT_T0_DSSD_Y42_T 900.453 -0.108924
+MUSETT_T0_DSSD_Y43_T 911.154 -0.110196
+MUSETT_T0_DSSD_Y44_T 908.4 -0.109895
+MUSETT_T0_DSSD_Y45_T 903.164 -0.10924
+MUSETT_T0_DSSD_Y46_T 913.419 -0.110513
+MUSETT_T0_DSSD_Y47_T 901.371 -0.109056
+MUSETT_T0_DSSD_Y48_T 855.809 -0.103507
+MUSETT_T0_DSSD_Y49_T 866.963 -0.104888
+MUSETT_T0_DSSD_Y50_T 862.301 -0.104347
+MUSETT_T0_DSSD_Y51_T 879.214 -0.106391
+MUSETT_T0_DSSD_Y52_T 881.851 -0.106718
+MUSETT_T0_DSSD_Y53_T 883.115 -0.106878
+MUSETT_T0_DSSD_Y54_T 879.659 -0.106441
+MUSETT_T0_DSSD_Y55_T 887.765 -0.107426
+MUSETT_T0_DSSD_Y56_T 889.179 -0.107608
+MUSETT_T0_DSSD_Y57_T 893.434 -0.108136
+MUSETT_T0_DSSD_Y58_T 900.612 -0.109012
+MUSETT_T0_DSSD_Y59_T 899.41 -0.108611
+MUSETT_T0_DSSD_Y60_T 898.225 -0.108719
+MUSETT_T0_DSSD_Y61_T 905.378 -0.109581
+MUSETT_T0_DSSD_Y62_T 899.576 -0.108895
+MUSETT_T0_DSSD_Y63_T 904.856 -0.109543
+MUSETT_T0_DSSD_Y64_T 964.166 -0.116469
+MUSETT_T0_DSSD_Y65_T 970.821 -0.117302
+MUSETT_T0_DSSD_Y66_T 976.54 -0.118012
+MUSETT_T0_DSSD_Y67_T 976.814 -0.118028
+MUSETT_T0_DSSD_Y68_T 979.621 -0.118378
+MUSETT_T0_DSSD_Y69_T 983.271 -0.118825
+MUSETT_T0_DSSD_Y70_T 982.977 -0.118781
+MUSETT_T0_DSSD_Y71_T 986.021 -0.119156
+MUSETT_T0_DSSD_Y72_T 989.88 -0.119628
+MUSETT_T0_DSSD_Y73_T 981.368 -0.118591
+MUSETT_T0_DSSD_Y74_T 990.1 -0.119656
+MUSETT_T0_DSSD_Y75_T 1000.52 -0.120924
+MUSETT_T0_DSSD_Y76_T 995.667 -0.120327
+MUSETT_T0_DSSD_Y77_T 997.754 -0.120579
+MUSETT_T0_DSSD_Y78_T 994.951 -0.120247
+MUSETT_T0_DSSD_Y79_T 1001.99 -0.121097
+MUSETT_T0_DSSD_Y80_T 970.583 -0.117145
+MUSETT_T0_DSSD_Y81_T 986.462 -0.119118
+MUSETT_T0_DSSD_Y82_T 981.625 -0.118534
+MUSETT_T0_DSSD_Y83_T 996.206 -0.12031
+MUSETT_T0_DSSD_Y84_T 1000.06 -0.120777
+MUSETT_T0_DSSD_Y85_T 1002.53 -0.121085
+MUSETT_T0_DSSD_Y86_T 998.357 -0.120569
+MUSETT_T0_DSSD_Y87_T 1008.76 -0.121839
+MUSETT_T0_DSSD_Y88_T 1004.65 -0.121339
+MUSETT_T0_DSSD_Y89_T 1015.0 -0.122592
+MUSETT_T0_DSSD_Y90_T 1025.62 -0.123897
+MUSETT_T0_DSSD_Y91_T 1025.41 -0.123866
+MUSETT_T0_DSSD_Y92_T 1020.27 -0.123256
+MUSETT_T0_DSSD_Y93_T 1024.71 -0.123786
+MUSETT_T0_DSSD_Y94_T 1021.51 -0.123408
+MUSETT_T0_DSSD_Y95_T 1016.94 -0.122879
+MUSETT_T0_DSSD_Y96_T 882.97 -0.106544
+MUSETT_T0_DSSD_Y97_T 879.326 -0.106139
+MUSETT_T0_DSSD_Y98_T 878.449 -0.106028
+MUSETT_T0_DSSD_Y99_T 894.979 -0.108041
+MUSETT_T0_DSSD_Y100_T 892.203 -0.107707
+MUSETT_T0_DSSD_Y101_T 891.015 -0.10757
+MUSETT_T0_DSSD_Y102_T 895.424 -0.108105
+MUSETT_T0_DSSD_Y103_T 907.578 -0.10959
+MUSETT_T0_DSSD_Y104_T 902.147 -0.108916
+MUSETT_T0_DSSD_Y105_T 915.536 -0.110544
+MUSETT_T0_DSSD_Y106_T 910.897 -0.109981
+MUSETT_T0_DSSD_Y107_T 915.092 -0.11051
+MUSETT_T0_DSSD_Y108_T 914.664 -0.110421
+MUSETT_T0_DSSD_Y109_T 910.113 -0.109894
+MUSETT_T0_DSSD_Y110_T 915.675 -0.110572
+MUSETT_T0_DSSD_Y111_T 917.59 -0.110803
+MUSETT_T0_DSSD_Y112_T 892.441 -0.107535
+MUSETT_T0_DSSD_Y113_T 899.913 -0.108466
+MUSETT_T0_DSSD_Y114_T 899.438 -0.108438
+MUSETT_T0_DSSD_Y115_T 905.439 -0.109158
+MUSETT_T0_DSSD_Y116_T 917.108 -0.110566
+MUSETT_T0_DSSD_Y117_T 910.331 -0.109757
+MUSETT_T0_DSSD_Y118_T 930.135 -0.112167
+MUSETT_T0_DSSD_Y119_T 921.847 -0.111146
+MUSETT_T0_DSSD_Y120_T 932.043 -0.112407
+MUSETT_T0_DSSD_Y121_T 931.497 -0.112337
+MUSETT_T0_DSSD_Y122_T 933.275 -0.112539
+MUSETT_T0_DSSD_Y123_T 936.749 -0.112978
+MUSETT_T0_DSSD_Y124_T 931.392 -0.112316
+MUSETT_T0_DSSD_Y125_T 930.352 -0.112192
+MUSETT_T0_DSSD_Y126_T 927.302 -0.111821
+MUSETT_T0_DSSD_Y127_T 930.24 -0.112162
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..25335e8eb5d450a665765bd0a4d5645c6ba6855e
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E -62.3845 0.00761517
+MUSETT_T1_DSSD_X1_E -62.2104 0.00759389
+MUSETT_T1_DSSD_X2_E -62.2735 0.00760161
+MUSETT_T1_DSSD_X3_E -62.0191 0.007570599999999999
+MUSETT_T1_DSSD_X4_E -61.4765 0.00750432
+MUSETT_T1_DSSD_X5_E -61.597 0.00751908
+MUSETT_T1_DSSD_X6_E -62.319300000000005 0.00760717
+MUSETT_T1_DSSD_X7_E -61.4163 0.00749697
+MUSETT_T1_DSSD_X8_E -61.3271 0.00748611
+MUSETT_T1_DSSD_X9_E -61.4865 0.00750558
+MUSETT_T1_DSSD_X10_E -61.6734 0.00752832
+MUSETT_T1_DSSD_X11_E -61.7326 0.00753556
+MUSETT_T1_DSSD_X12_E -61.9632 0.00756376
+MUSETT_T1_DSSD_X13_E -61.4182 0.00749719
+MUSETT_T1_DSSD_X14_E -61.209 0.007471650000000001
+MUSETT_T1_DSSD_X15_E -61.9876 0.00756667
+MUSETT_T1_DSSD_X16_E -62.5544 0.007635919999999999
+MUSETT_T1_DSSD_X17_E -61.756 0.00753848
+MUSETT_T1_DSSD_X18_E -62.2641 0.00760048
+MUSETT_T1_DSSD_X19_E -61.9537 0.007562579999999999
+MUSETT_T1_DSSD_X20_E -62.913199999999996 0.0076796699999999996
+MUSETT_T1_DSSD_X21_E -62.1209 0.007583
+MUSETT_T1_DSSD_X22_E -62.709 0.00765477
+MUSETT_T1_DSSD_X23_E -62.39 0.00761587
+MUSETT_T1_DSSD_X24_E -62.229699999999994 0.0075962899999999995
+MUSETT_T1_DSSD_X25_E -61.997699999999995 0.00756794
+MUSETT_T1_DSSD_X26_E -62.0365 0.0075726199999999995
+MUSETT_T1_DSSD_X27_E -61.752 0.0075379800000000005
+MUSETT_T1_DSSD_X28_E -61.6556 0.00752623
+MUSETT_T1_DSSD_X29_E -62.7675 0.007661940000000001
+MUSETT_T1_DSSD_X30_E -61.803 0.00754422
+MUSETT_T1_DSSD_X31_E -62.7618 0.00766122
+MUSETT_T1_DSSD_X32_E -58.3035 0.00711703
+MUSETT_T1_DSSD_X33_E -58.3725 0.00712549
+MUSETT_T1_DSSD_X34_E -58.3599 0.00712397
+MUSETT_T1_DSSD_X35_E -58.2622 0.00711204
+MUSETT_T1_DSSD_X36_E -58.041 0.0070850900000000005
+MUSETT_T1_DSSD_X37_E -58.261 0.0071116700000000005
+MUSETT_T1_DSSD_X38_E -58.055699999999995 0.0070867000000000005
+MUSETT_T1_DSSD_X39_E -58.647400000000005 0.00715904
+MUSETT_T1_DSSD_X40_E -58.203900000000004 0.00710488
+MUSETT_T1_DSSD_X41_E -58.8939 0.00718895
+MUSETT_T1_DSSD_X42_E -58.0515 0.00708632
+MUSETT_T1_DSSD_X43_E -58.5394 0.0071458599999999995
+MUSETT_T1_DSSD_X44_E -58.5544 0.00714758
+MUSETT_T1_DSSD_X45_E -59.3359 0.00724309
+MUSETT_T1_DSSD_X46_E -58.7258 0.00716875
+MUSETT_T1_DSSD_X47_E -58.4657 0.007136770000000001
+MUSETT_T1_DSSD_X48_E -57.8688 0.0070639399999999995
+MUSETT_T1_DSSD_X49_E -58.5298 0.00714462
+MUSETT_T1_DSSD_X50_E -57.9728 0.00707665
+MUSETT_T1_DSSD_X51_E -57.7251 0.00704637
+MUSETT_T1_DSSD_X52_E -57.9466 0.00707339
+MUSETT_T1_DSSD_X53_E -57.9195 0.00707013
+MUSETT_T1_DSSD_X54_E -57.971 0.00707643
+MUSETT_T1_DSSD_X55_E -57.8129 0.00705708
+MUSETT_T1_DSSD_X56_E -58.0595 0.00708722
+MUSETT_T1_DSSD_X57_E -57.8609 0.00706295
+MUSETT_T1_DSSD_X58_E -58.481199999999994 0.0071386900000000005
+MUSETT_T1_DSSD_X59_E -57.6735 0.00704005
+MUSETT_T1_DSSD_X60_E -57.7339 0.007047469999999999
+MUSETT_T1_DSSD_X61_E -58.243 0.00710961
+MUSETT_T1_DSSD_X62_E -58.1142 0.00709391
+MUSETT_T1_DSSD_X63_E -58.2467 0.0071100700000000005
+MUSETT_T1_DSSD_X64_E -61.0093 0.00744733
+MUSETT_T1_DSSD_X65_E -61.6307 0.00752317
+MUSETT_T1_DSSD_X66_E -61.4718 0.00750372
+MUSETT_T1_DSSD_X67_E -61.7169 0.0075336100000000005
+MUSETT_T1_DSSD_X68_E -61.8935 0.00755524
+MUSETT_T1_DSSD_X69_E -61.3286 0.007486329999999999
+MUSETT_T1_DSSD_X70_E -61.623400000000004 0.0075222100000000005
+MUSETT_T1_DSSD_X71_E -61.9118 0.00755752
+MUSETT_T1_DSSD_X72_E -61.2791 0.007480260000000001
+MUSETT_T1_DSSD_X73_E -62.4381 0.007621749999999999
+MUSETT_T1_DSSD_X74_E -61.9378 0.0075606200000000005
+MUSETT_T1_DSSD_X75_E -62.0787 0.0075778600000000005
+MUSETT_T1_DSSD_X76_E -61.4964 0.00750682
+MUSETT_T1_DSSD_X77_E -61.721199999999996 0.00753417
+MUSETT_T1_DSSD_X78_E -61.3211 0.00748534
+MUSETT_T1_DSSD_X79_E -61.9309 0.00755971
+MUSETT_T1_DSSD_X80_E -63.4259 0.007742300000000001
+MUSETT_T1_DSSD_X81_E -63.726 0.00777898
+MUSETT_T1_DSSD_X82_E -64.2118 0.00783822
+MUSETT_T1_DSSD_X83_E -63.931 0.00780396
+MUSETT_T1_DSSD_X84_E -64.1147 0.007826399999999999
+MUSETT_T1_DSSD_X85_E -63.8814 0.0077979
+MUSETT_T1_DSSD_X86_E -64.0891 0.00782321
+MUSETT_T1_DSSD_X87_E -64.226 0.00783998
+MUSETT_T1_DSSD_X88_E -64.1628 0.00783225
+MUSETT_T1_DSSD_X89_E -64.2273 0.00784014
+MUSETT_T1_DSSD_X90_E -63.3243 0.0077299199999999995
+MUSETT_T1_DSSD_X91_E -63.377900000000004 0.00773646
+MUSETT_T1_DSSD_X92_E -64.5924 0.007884750000000001
+MUSETT_T1_DSSD_X93_E -64.0512 0.00781864
+MUSETT_T1_DSSD_X94_E -63.7853 0.00778625
+MUSETT_T1_DSSD_X95_E -63.4251 0.00774221
+MUSETT_T1_DSSD_X96_E -56.2771 0.00686963
+MUSETT_T1_DSSD_X97_E -56.696400000000004 0.00692087
+MUSETT_T1_DSSD_X98_E -56.5242 0.00689973
+MUSETT_T1_DSSD_X99_E -56.4219 0.00688734
+MUSETT_T1_DSSD_X100_E -56.5169 0.00689896
+MUSETT_T1_DSSD_X101_E -56.9871 0.00695627
+MUSETT_T1_DSSD_X102_E -57.3419 0.00699957
+MUSETT_T1_DSSD_X103_E -56.5904 0.00690785
+MUSETT_T1_DSSD_X104_E -56.8425 0.00693859
+MUSETT_T1_DSSD_X105_E -57.029900000000005 0.00696151
+MUSETT_T1_DSSD_X106_E -57.8401 0.00706034
+MUSETT_T1_DSSD_X107_E -57.7541 0.007049870000000001
+MUSETT_T1_DSSD_X108_E -57.7184 0.00704556
+MUSETT_T1_DSSD_X109_E -57.495 0.00701832
+MUSETT_T1_DSSD_X110_E -57.6737 0.0070401
+MUSETT_T1_DSSD_X111_E -58.035199999999996 0.00708421
+MUSETT_T1_DSSD_X112_E -57.2543 0.00698888
+MUSETT_T1_DSSD_X113_E -57.309599999999996 0.00699565
+MUSETT_T1_DSSD_X114_E -56.8137 0.00693513
+MUSETT_T1_DSSD_X115_E -57.6843 0.00704141
+MUSETT_T1_DSSD_X116_E -57.2736 0.00699128
+MUSETT_T1_DSSD_X117_E -57.2633 0.0069900200000000004
+MUSETT_T1_DSSD_X118_E -56.331199999999995 0.00687626
+MUSETT_T1_DSSD_X119_E -58.331 0.00712035
+MUSETT_T1_DSSD_X120_E -57.4483 0.0070126
+MUSETT_T1_DSSD_X121_E -57.7637 0.00705109
+MUSETT_T1_DSSD_X122_E -57.724199999999996 0.00704628
+MUSETT_T1_DSSD_X123_E -57.4583 0.007013849999999999
+MUSETT_T1_DSSD_X124_E -57.5865 0.0070294699999999995
+MUSETT_T1_DSSD_X125_E -57.6715 0.00703982
+MUSETT_T1_DSSD_X126_E -57.0766 0.0069672
+MUSETT_T1_DSSD_X127_E -57.8189 0.007057839999999999
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..4f2ff00b21e3e2cd35eb213bcf9ddf7431b4902a
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_E 59.6282 -0.0072789099999999995
+MUSETT_T1_DSSD_Y1_E 60.484199999999994 -0.0073834
+MUSETT_T1_DSSD_Y2_E 59.719300000000004 -0.00729006
+MUSETT_T1_DSSD_Y3_E 59.358 -0.00724601
+MUSETT_T1_DSSD_Y4_E 60.2094 -0.00734991
+MUSETT_T1_DSSD_Y5_E 60.023900000000005 -0.00732724
+MUSETT_T1_DSSD_Y6_E 59.4274 -0.007254419999999999
+MUSETT_T1_DSSD_Y7_E 59.479800000000004 -0.00726081
+MUSETT_T1_DSSD_Y8_E 59.4726 -0.00725995
+MUSETT_T1_DSSD_Y9_E 59.6615 -0.00728303
+MUSETT_T1_DSSD_Y10_E 59.523 -0.0072661
+MUSETT_T1_DSSD_Y11_E 59.5207 -0.00726582
+MUSETT_T1_DSSD_Y12_E 60.207699999999996 -0.007349700000000001
+MUSETT_T1_DSSD_Y13_E 59.2816 -0.00723662
+MUSETT_T1_DSSD_Y14_E 59.4995 -0.0072632899999999995
+MUSETT_T1_DSSD_Y15_E 59.822199999999995 -0.00730262
+MUSETT_T1_DSSD_Y16_E 62.231 -0.00759672
+MUSETT_T1_DSSD_Y17_E 62.5176 -0.00763166
+MUSETT_T1_DSSD_Y18_E 62.4625 -0.00762493
+MUSETT_T1_DSSD_Y19_E 62.047 -0.00757417
+MUSETT_T1_DSSD_Y20_E 62.207300000000004 -0.00759375
+MUSETT_T1_DSSD_Y21_E 62.3629 -0.0076127700000000005
+MUSETT_T1_DSSD_Y22_E -10.0 0.0
+MUSETT_T1_DSSD_Y23_E 62.0175 -0.00757064
+MUSETT_T1_DSSD_Y24_E 61.7139 -0.00753355
+MUSETT_T1_DSSD_Y25_E 61.4491 -0.007501229999999999
+MUSETT_T1_DSSD_Y26_E 62.0861 -0.00757898
+MUSETT_T1_DSSD_Y27_E 62.0777 -0.00757796
+MUSETT_T1_DSSD_Y28_E 62.2876 -0.00760362
+MUSETT_T1_DSSD_Y29_E 62.0279 -0.0075719
+MUSETT_T1_DSSD_Y30_E 61.6686 -0.00752799
+MUSETT_T1_DSSD_Y31_E 61.8048 -0.00754468
+MUSETT_T1_DSSD_Y32_E 56.1157 -0.006850220000000001
+MUSETT_T1_DSSD_Y33_E 56.2557 -0.00686728
+MUSETT_T1_DSSD_Y34_E 55.6349 -0.00679153
+MUSETT_T1_DSSD_Y35_E 55.6409 -0.00679227
+MUSETT_T1_DSSD_Y36_E 55.3843 -0.006760919999999999
+MUSETT_T1_DSSD_Y37_E 56.4204 -0.006887450000000001
+MUSETT_T1_DSSD_Y38_E 55.380900000000004 -0.00676051
+MUSETT_T1_DSSD_Y39_E 55.9348 -0.00682817
+MUSETT_T1_DSSD_Y40_E 56.0365 -0.00684053
+MUSETT_T1_DSSD_Y41_E 56.1492 -0.0068543399999999996
+MUSETT_T1_DSSD_Y42_E 55.5099 -0.00677625
+MUSETT_T1_DSSD_Y43_E 56.6373 -0.0069139
+MUSETT_T1_DSSD_Y44_E 55.6379 -0.00679188
+MUSETT_T1_DSSD_Y45_E 55.7303 -0.00680315
+MUSETT_T1_DSSD_Y46_E 55.751599999999996 -0.00680582
+MUSETT_T1_DSSD_Y47_E 55.7609 -0.00680693
+MUSETT_T1_DSSD_Y48_E 57.1947 -0.0069819
+MUSETT_T1_DSSD_Y49_E 56.616699999999994 -0.00691132
+MUSETT_T1_DSSD_Y50_E 56.5651 -0.0069050399999999994
+MUSETT_T1_DSSD_Y51_E 56.0075 -0.0068369400000000006
+MUSETT_T1_DSSD_Y52_E 56.8389 -0.0069384600000000005
+MUSETT_T1_DSSD_Y53_E 56.277 -0.00686982
+MUSETT_T1_DSSD_Y54_E 56.4758 -0.00689415
+MUSETT_T1_DSSD_Y55_E 56.3949 -0.00688425
+MUSETT_T1_DSSD_Y56_E 57.2861 -0.0069930700000000005
+MUSETT_T1_DSSD_Y57_E 57.107699999999994 -0.00697128
+MUSETT_T1_DSSD_Y58_E 56.704699999999995 -0.00692209
+MUSETT_T1_DSSD_Y59_E 57.3292 -0.00699832
+MUSETT_T1_DSSD_Y60_E 57.3988 -0.007006770000000001
+MUSETT_T1_DSSD_Y61_E 57.025800000000004 -0.0069612499999999996
+MUSETT_T1_DSSD_Y62_E 56.1794 -0.00685794
+MUSETT_T1_DSSD_Y63_E 57.2945 -0.00699407
+MUSETT_T1_DSSD_Y64_E 61.036 -0.00745079
+MUSETT_T1_DSSD_Y65_E 61.615199999999994 -0.00752147
+MUSETT_T1_DSSD_Y66_E 61.3277 -0.00748646
+MUSETT_T1_DSSD_Y67_E 61.6169 -0.00752169
+MUSETT_T1_DSSD_Y68_E 61.2895 -0.00748175
+MUSETT_T1_DSSD_Y69_E 60.072300000000006 -0.007333129999999999
+MUSETT_T1_DSSD_Y70_E 60.461800000000004 -0.00738072
+MUSETT_T1_DSSD_Y71_E 61.1475 -0.00746439
+MUSETT_T1_DSSD_Y72_E 60.3246 -0.00736394
+MUSETT_T1_DSSD_Y73_E 61.243300000000005 -0.00747609
+MUSETT_T1_DSSD_Y74_E 60.892199999999995 -0.00743321
+MUSETT_T1_DSSD_Y75_E 60.3626 -0.00736861
+MUSETT_T1_DSSD_Y76_E 60.5634 -0.0073931199999999996
+MUSETT_T1_DSSD_Y77_E 60.9695 -0.00744272
+MUSETT_T1_DSSD_Y78_E 60.632 -0.00740146
+MUSETT_T1_DSSD_Y79_E 61.3545 -0.0074896599999999995
+MUSETT_T1_DSSD_Y80_E 61.129 -0.00746218
+MUSETT_T1_DSSD_Y81_E 61.1424 -0.00746376
+MUSETT_T1_DSSD_Y82_E 61.0982 -0.00745836
+MUSETT_T1_DSSD_Y83_E 60.505 -0.00738602
+MUSETT_T1_DSSD_Y84_E 60.4756 -0.00738236
+MUSETT_T1_DSSD_Y85_E 61.1983 -0.00747058
+MUSETT_T1_DSSD_Y86_E 60.653800000000004 -0.00740421
+MUSETT_T1_DSSD_Y87_E 60.6103 -0.007398869999999999
+MUSETT_T1_DSSD_Y88_E 61.0846 -0.00745673
+MUSETT_T1_DSSD_Y89_E 61.2816 -0.00748082
+MUSETT_T1_DSSD_Y90_E 60.7595 -0.00741709
+MUSETT_T1_DSSD_Y91_E 60.908699999999996 -0.00743532
+MUSETT_T1_DSSD_Y92_E 60.5201 -0.00738782
+MUSETT_T1_DSSD_Y93_E 61.3305 -0.00748678
+MUSETT_T1_DSSD_Y94_E 61.6099 -0.00752084
+MUSETT_T1_DSSD_Y95_E 60.752199999999995 -0.00741622
+MUSETT_T1_DSSD_Y96_E 55.8662 -0.0068197200000000005
+MUSETT_T1_DSSD_Y97_E 55.5101 -0.006776290000000001
+MUSETT_T1_DSSD_Y98_E 55.7391 -0.00680422
+MUSETT_T1_DSSD_Y99_E 55.6027 -0.00678757
+MUSETT_T1_DSSD_Y100_E 55.7795 -0.006809160000000001
+MUSETT_T1_DSSD_Y101_E 55.4526 -0.00676931
+MUSETT_T1_DSSD_Y102_E 55.433800000000005 -0.00676695
+MUSETT_T1_DSSD_Y103_E 56.1758 -0.00685753
+MUSETT_T1_DSSD_Y104_E 55.295 -0.00675003
+MUSETT_T1_DSSD_Y105_E 55.2676 -0.00674664
+MUSETT_T1_DSSD_Y106_E 55.9134 -0.00682548
+MUSETT_T1_DSSD_Y107_E 55.219 -0.00674076
+MUSETT_T1_DSSD_Y108_E 55.914699999999996 -0.00682563
+MUSETT_T1_DSSD_Y109_E 56.088300000000004 -0.00684683
+MUSETT_T1_DSSD_Y110_E 56.128699999999995 -0.00685177
+MUSETT_T1_DSSD_Y111_E 56.579699999999995 -0.006906799999999999
+MUSETT_T1_DSSD_Y112_E 54.7919 -0.006688609999999999
+MUSETT_T1_DSSD_Y113_E 55.5735 -0.00678397
+MUSETT_T1_DSSD_Y114_E 55.1773 -0.00673564
+MUSETT_T1_DSSD_Y115_E 55.0659 -0.0067220000000000005
+MUSETT_T1_DSSD_Y116_E 55.2711 -0.00674706
+MUSETT_T1_DSSD_Y117_E 55.4264 -0.00676607
+MUSETT_T1_DSSD_Y118_E 55.3089 -0.006751699999999999
+MUSETT_T1_DSSD_Y119_E 55.5605 -0.00678242
+MUSETT_T1_DSSD_Y120_E 55.8284 -0.0068151
+MUSETT_T1_DSSD_Y121_E 55.4619 -0.00677042
+MUSETT_T1_DSSD_Y122_E 54.836400000000005 -0.00669404
+MUSETT_T1_DSSD_Y123_E 55.154199999999996 -0.006732770000000001
+MUSETT_T1_DSSD_Y124_E 55.2185 -0.00674067
+MUSETT_T1_DSSD_Y125_E 55.1989 -0.00673821
+MUSETT_T1_DSSD_Y126_E 55.347199999999994 -0.00675638
+MUSETT_T1_DSSD_Y127_E 56.2705 -0.00686904
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2dbc58f87a8a21d156c060f3c44a33c496cfccc2
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_T 926.786 -0.11232
+MUSETT_T1_DSSD_X1_T 940.575 -0.114015
+MUSETT_T1_DSSD_X2_T 943.089 -0.114341
+MUSETT_T1_DSSD_X3_T 954.304 -0.115712
+MUSETT_T1_DSSD_X4_T 954.653 -0.115744
+MUSETT_T1_DSSD_X5_T 956.573 -0.115962
+MUSETT_T1_DSSD_X6_T 970.061 -0.117589
+MUSETT_T1_DSSD_X7_T 965.116 -0.116998
+MUSETT_T1_DSSD_X8_T 969.325 -0.117498
+MUSETT_T1_DSSD_X9_T 978.231 -0.118577
+MUSETT_T1_DSSD_X10_T 974.593 -0.118143
+MUSETT_T1_DSSD_X11_T 974.146 -0.118071
+MUSETT_T1_DSSD_X12_T 986.191 -0.11954
+MUSETT_T1_DSSD_X13_T 986.678 -0.119597
+MUSETT_T1_DSSD_X14_T 983.727 -0.119236
+MUSETT_T1_DSSD_X15_T 1371.19 -0.119179
+MUSETT_T1_DSSD_X16_T 922.557 -0.111777
+MUSETT_T1_DSSD_X17_T 945.525 -0.114612
+MUSETT_T1_DSSD_X18_T 946.378 -0.114738
+MUSETT_T1_DSSD_X19_T 943.86 -0.114439
+MUSETT_T1_DSSD_X20_T 952.199 -0.115464
+MUSETT_T1_DSSD_X21_T 965.45 -0.117052
+MUSETT_T1_DSSD_X22_T 954.947 -0.115762
+MUSETT_T1_DSSD_X23_T 971.26 -0.117739
+MUSETT_T1_DSSD_X24_T 969.364 -0.117531
+MUSETT_T1_DSSD_X25_T 972.531 -0.117923
+MUSETT_T1_DSSD_X26_T 971.171 -0.117737
+MUSETT_T1_DSSD_X27_T 974.954 -0.11821
+MUSETT_T1_DSSD_X28_T 978.834 -0.118677
+MUSETT_T1_DSSD_X29_T 975.807 -0.118324
+MUSETT_T1_DSSD_X30_T 974.804 -0.118198
+MUSETT_T1_DSSD_X31_T 984.936 -0.119148
+MUSETT_T1_DSSD_X32_T 875.904 -0.106165
+MUSETT_T1_DSSD_X33_T 875.79 -0.10618
+MUSETT_T1_DSSD_X34_T 891.706 -0.108064
+MUSETT_T1_DSSD_X35_T 873.845 -0.105941
+MUSETT_T1_DSSD_X36_T 891.762 -0.108105
+MUSETT_T1_DSSD_X37_T 897.589 -0.108823
+MUSETT_T1_DSSD_X38_T 889.745 -0.107861
+MUSETT_T1_DSSD_X39_T 894.521 -0.10842
+MUSETT_T1_DSSD_X40_T 897.332 -0.108779
+MUSETT_T1_DSSD_X41_T 897.319 -0.108754
+MUSETT_T1_DSSD_X42_T 905.732 -0.109783
+MUSETT_T1_DSSD_X43_T 897.833 -0.108855
+MUSETT_T1_DSSD_X44_T 907.458 -0.110019
+MUSETT_T1_DSSD_X45_T 905.696 -0.109854
+MUSETT_T1_DSSD_X46_T 903.207 -0.109528
+MUSETT_T1_DSSD_X47_T 918.195 -0.110055
+MUSETT_T1_DSSD_X48_T 865.632 -0.104838
+MUSETT_T1_DSSD_X49_T 871.03 -0.105455
+MUSETT_T1_DSSD_X50_T 883.706 -0.107015
+MUSETT_T1_DSSD_X51_T 886.118 -0.107338
+MUSETT_T1_DSSD_X52_T 888.977 -0.107685
+MUSETT_T1_DSSD_X53_T 889.176 -0.107699
+MUSETT_T1_DSSD_X54_T 893.053 -0.10819
+MUSETT_T1_DSSD_X55_T 898.958 -0.108878
+MUSETT_T1_DSSD_X56_T 905.343 -0.1097
+MUSETT_T1_DSSD_X57_T 901.014 -0.10916
+MUSETT_T1_DSSD_X58_T 909.801 -0.110244
+MUSETT_T1_DSSD_X59_T 902.356 -0.109308
+MUSETT_T1_DSSD_X60_T 915.181 -0.110894
+MUSETT_T1_DSSD_X61_T 906.646 -0.109867
+MUSETT_T1_DSSD_X62_T 906.177 -0.109791
+MUSETT_T1_DSSD_X63_T 917.322 -0.110777
+MUSETT_T1_DSSD_X64_T 947.375 -0.114723
+MUSETT_T1_DSSD_X65_T 949.155 -0.114949
+MUSETT_T1_DSSD_X66_T 962.658 -0.116629
+MUSETT_T1_DSSD_X67_T 962.29 -0.116557
+MUSETT_T1_DSSD_X68_T 964.501 -0.116827
+MUSETT_T1_DSSD_X69_T 972.559 -0.117811
+MUSETT_T1_DSSD_X70_T 972.248 -0.117758
+MUSETT_T1_DSSD_X71_T 977.48 -0.118392
+MUSETT_T1_DSSD_X72_T 974.838 -0.118063
+MUSETT_T1_DSSD_X73_T 989.581 -0.119853
+MUSETT_T1_DSSD_X74_T 985.59 -0.119377
+MUSETT_T1_DSSD_X75_T 983.734 -0.119141
+MUSETT_T1_DSSD_X76_T 990.699 -0.119982
+MUSETT_T1_DSSD_X77_T 992.465 -0.120199
+MUSETT_T1_DSSD_X78_T 992.485 -0.1202
+MUSETT_T1_DSSD_X79_T 1375.52 -0.120722
+MUSETT_T1_DSSD_X80_T 972.687 -0.117775
+MUSETT_T1_DSSD_X81_T 974.84 -0.118024
+MUSETT_T1_DSSD_X82_T 979.911 -0.118652
+MUSETT_T1_DSSD_X83_T 993.406 -0.120307
+MUSETT_T1_DSSD_X84_T 992.814 -0.120215
+MUSETT_T1_DSSD_X85_T 1002.31 -0.121389
+MUSETT_T1_DSSD_X86_T 1003.74 -0.121554
+MUSETT_T1_DSSD_X87_T 995.588 -0.12057
+MUSETT_T1_DSSD_X88_T 1010.12 -0.122345
+MUSETT_T1_DSSD_X89_T 1012.32 -0.12261
+MUSETT_T1_DSSD_X90_T 1007.94 -0.122082
+MUSETT_T1_DSSD_X91_T 1014.03 -0.12282
+MUSETT_T1_DSSD_X92_T 1013.77 -0.12279
+MUSETT_T1_DSSD_X93_T 1016.53 -0.123127
+MUSETT_T1_DSSD_X94_T 1016.3 -0.123096
+MUSETT_T1_DSSD_X95_T 1004.26 -0.12163
+MUSETT_T1_DSSD_X96_T 888.673 -0.107613
+MUSETT_T1_DSSD_X97_T 886.825 -0.107373
+MUSETT_T1_DSSD_X98_T 890.552 -0.107838
+MUSETT_T1_DSSD_X99_T 901.931 -0.109224
+MUSETT_T1_DSSD_X100_T 901.707 -0.1092
+MUSETT_T1_DSSD_X101_T 906.676 -0.109791
+MUSETT_T1_DSSD_X102_T 902.249 -0.109268
+MUSETT_T1_DSSD_X103_T 917.913 -0.111151
+MUSETT_T1_DSSD_X104_T 919.118 -0.11128
+MUSETT_T1_DSSD_X105_T 920.502 -0.111467
+MUSETT_T1_DSSD_X106_T 925.286 -0.112035
+MUSETT_T1_DSSD_X107_T 920.839 -0.111519
+MUSETT_T1_DSSD_X108_T 921.752 -0.111616
+MUSETT_T1_DSSD_X109_T 913.537 -0.110627
+MUSETT_T1_DSSD_X110_T 916.058 -0.110941
+MUSETT_T1_DSSD_X111_T 924.322 -0.11176
+MUSETT_T1_DSSD_X112_T 897.027 -0.108476
+MUSETT_T1_DSSD_X113_T 897.77 -0.108567
+MUSETT_T1_DSSD_X114_T 905.06 -0.10946
+MUSETT_T1_DSSD_X115_T 910.605 -0.110136
+MUSETT_T1_DSSD_X116_T 925.57 -0.111977
+MUSETT_T1_DSSD_X117_T 920.161 -0.111304
+MUSETT_T1_DSSD_X118_T 932.296 -0.112781
+MUSETT_T1_DSSD_X119_T 914.819 -0.110659
+MUSETT_T1_DSSD_X120_T 920.284 -0.111325
+MUSETT_T1_DSSD_X121_T 927.772 -0.112226
+MUSETT_T1_DSSD_X122_T 928.866 -0.11236
+MUSETT_T1_DSSD_X123_T 924.041 -0.111775
+MUSETT_T1_DSSD_X124_T 921.484 -0.111483
+MUSETT_T1_DSSD_X125_T 927.438 -0.112193
+MUSETT_T1_DSSD_X126_T 930.757 -0.112614
+MUSETT_T1_DSSD_X127_T 924.698 -0.111864
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c68402d0ef8eb89f484440e367ee91280c30e12e
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_T 930.899 -0.11282
+MUSETT_T1_DSSD_Y1_T 932.297 -0.113022
+MUSETT_T1_DSSD_Y2_T 943.292 -0.114361
+MUSETT_T1_DSSD_Y3_T 947.201 -0.114834
+MUSETT_T1_DSSD_Y4_T 949.524 -0.115122
+MUSETT_T1_DSSD_Y5_T 952.95 -0.115533
+MUSETT_T1_DSSD_Y6_T 956.311 -0.115938
+MUSETT_T1_DSSD_Y7_T 946.369 -0.114726
+MUSETT_T1_DSSD_Y8_T 953.576 -0.11562
+MUSETT_T1_DSSD_Y9_T 964.215 -0.116854
+MUSETT_T1_DSSD_Y10_T 959.98 -0.116368
+MUSETT_T1_DSSD_Y11_T 967.734 -0.117327
+MUSETT_T1_DSSD_Y12_T 967.914 -0.117358
+MUSETT_T1_DSSD_Y13_T 963.677 -0.116827
+MUSETT_T1_DSSD_Y14_T 965.026 -0.116981
+MUSETT_T1_DSSD_Y15_T 962.695 -0.116717
+MUSETT_T1_DSSD_Y16_T 964.683 -0.116883
+MUSETT_T1_DSSD_Y17_T 966.649 -0.117128
+MUSETT_T1_DSSD_Y18_T 971.034 -0.117665
+MUSETT_T1_DSSD_Y19_T 971.558 -0.117743
+MUSETT_T1_DSSD_Y20_T 983.103 -0.119146
+MUSETT_T1_DSSD_Y21_T 979.702 -0.118747
+MUSETT_T1_DSSD_Y22_T 450.0 -0.119189
+MUSETT_T1_DSSD_Y23_T 989.487 -0.119964
+MUSETT_T1_DSSD_Y24_T 991.153 -0.120158
+MUSETT_T1_DSSD_Y25_T 991.247 -0.120176
+MUSETT_T1_DSSD_Y26_T 995.752 -0.120728
+MUSETT_T1_DSSD_Y27_T 990.621 -0.120113
+MUSETT_T1_DSSD_Y28_T 992.588 -0.120339
+MUSETT_T1_DSSD_Y29_T 983.94 -0.119308
+MUSETT_T1_DSSD_Y30_T 990.472 -0.120108
+MUSETT_T1_DSSD_Y31_T 985.366 -0.119515
+MUSETT_T1_DSSD_Y32_T 879.895 -0.106691
+MUSETT_T1_DSSD_Y33_T 885.732 -0.10745
+MUSETT_T1_DSSD_Y34_T 880.947 -0.106848
+MUSETT_T1_DSSD_Y35_T 890.881 -0.108037
+MUSETT_T1_DSSD_Y36_T 850641000000.0 -103827000.0
+MUSETT_T1_DSSD_Y37_T 901.269 -0.109433
+MUSETT_T1_DSSD_Y38_T 900.483 -0.110242
+MUSETT_T1_DSSD_Y39_T 902.133 -0.10944
+MUSETT_T1_DSSD_Y40_T 890.343 -0.107957
+MUSETT_T1_DSSD_Y41_T 902.898 -0.109521
+MUSETT_T1_DSSD_Y42_T 895.657 -0.108623
+MUSETT_T1_DSSD_Y43_T 904.61 -0.10969
+MUSETT_T1_DSSD_Y44_T 907.072 -0.109989
+MUSETT_T1_DSSD_Y45_T 901.222 -0.109312
+MUSETT_T1_DSSD_Y46_T 905.951 -0.109844
+MUSETT_T1_DSSD_Y47_T 901.159 -0.109257
+MUSETT_T1_DSSD_Y48_T 883.344 -0.10696
+MUSETT_T1_DSSD_Y49_T 882.465 -0.106852
+MUSETT_T1_DSSD_Y50_T 878.872 -0.106436
+MUSETT_T1_DSSD_Y51_T 892.099 -0.108049
+MUSETT_T1_DSSD_Y52_T 897.834 -0.108781
+MUSETT_T1_DSSD_Y53_T 899.02 -0.108923
+MUSETT_T1_DSSD_Y54_T 898.979 -0.108922
+MUSETT_T1_DSSD_Y55_T 899.225 -0.108949
+MUSETT_T1_DSSD_Y56_T 911.018 -0.110395
+MUSETT_T1_DSSD_Y57_T 910.225 -0.110294
+MUSETT_T1_DSSD_Y58_T 905.692 -0.109746
+MUSETT_T1_DSSD_Y59_T 908.504 -0.109802
+MUSETT_T1_DSSD_Y60_T 905.665 -0.109742
+MUSETT_T1_DSSD_Y61_T 913.658 -0.11072
+MUSETT_T1_DSSD_Y62_T 915.004 -0.110879
+MUSETT_T1_DSSD_Y63_T 915.999 -0.111037
+MUSETT_T1_DSSD_Y64_T 945.876 -0.115194
+MUSETT_T1_DSSD_Y65_T 952.653 -0.116053
+MUSETT_T1_DSSD_Y66_T 958.599 -0.116788
+MUSETT_T1_DSSD_Y67_T 962.073 -0.117211
+MUSETT_T1_DSSD_Y68_T 965.512 -0.117617
+MUSETT_T1_DSSD_Y69_T 973.646 -0.118609
+MUSETT_T1_DSSD_Y70_T 969.091 -0.118053
+MUSETT_T1_DSSD_Y71_T 977.205 -0.119038
+MUSETT_T1_DSSD_Y72_T 978.244 -0.119163
+MUSETT_T1_DSSD_Y73_T 981.509 -0.119552
+MUSETT_T1_DSSD_Y74_T 983.33 -0.119777
+MUSETT_T1_DSSD_Y75_T 980.28 -0.119391
+MUSETT_T1_DSSD_Y76_T 987.378 -0.11981
+MUSETT_T1_DSSD_Y77_T 981.221 -0.119505
+MUSETT_T1_DSSD_Y78_T 982.019 -0.119601
+MUSETT_T1_DSSD_Y79_T 986.869 -0.120194
+MUSETT_T1_DSSD_Y80_T 942.041 -0.114646
+MUSETT_T1_DSSD_Y81_T 950.256 -0.115676
+MUSETT_T1_DSSD_Y82_T 949.146 -0.115551
+MUSETT_T1_DSSD_Y83_T 956.132 -0.116392
+MUSETT_T1_DSSD_Y84_T 955.603 -0.116344
+MUSETT_T1_DSSD_Y85_T 965.862 -0.117589
+MUSETT_T1_DSSD_Y86_T 966.696 -0.117699
+MUSETT_T1_DSSD_Y87_T 973.856 -0.118567
+MUSETT_T1_DSSD_Y88_T 974.942 -0.118705
+MUSETT_T1_DSSD_Y89_T 967.58 -0.117807
+MUSETT_T1_DSSD_Y90_T 972.217 -0.118376
+MUSETT_T1_DSSD_Y91_T 980.142 -0.119333
+MUSETT_T1_DSSD_Y92_T 980.758 -0.119429
+MUSETT_T1_DSSD_Y93_T 973.754 -0.118576
+MUSETT_T1_DSSD_Y94_T 977.548 -0.119031
+MUSETT_T1_DSSD_Y95_T 988.795 -0.120471
+MUSETT_T1_DSSD_Y96_T 871.404 -0.106136
+MUSETT_T1_DSSD_Y97_T 870.084 -0.106
+MUSETT_T1_DSSD_Y98_T 874.611 -0.106555
+MUSETT_T1_DSSD_Y99_T 888.655 -0.108263
+MUSETT_T1_DSSD_Y100_T 886.461 -0.10801
+MUSETT_T1_DSSD_Y101_T 878.586 -0.107044
+MUSETT_T1_DSSD_Y102_T 886.442 -0.108005
+MUSETT_T1_DSSD_Y103_T 889.81 -0.108406
+MUSETT_T1_DSSD_Y104_T 900.116 -0.109653
+MUSETT_T1_DSSD_Y105_T 896.798 -0.10926
+MUSETT_T1_DSSD_Y106_T 900.214 -0.10967
+MUSETT_T1_DSSD_Y107_T 890.896 -0.108536
+MUSETT_T1_DSSD_Y108_T 898.103 -0.109417
+MUSETT_T1_DSSD_Y109_T 905.123 -0.110268
+MUSETT_T1_DSSD_Y110_T 895.488 -0.109108
+MUSETT_T1_DSSD_Y111_T 901.504 -0.109824
+MUSETT_T1_DSSD_Y112_T 857.767 -0.104291
+MUSETT_T1_DSSD_Y113_T 851.391 -0.103549
+MUSETT_T1_DSSD_Y114_T 861.589 -0.104798
+MUSETT_T1_DSSD_Y115_T 856.553 -0.10419
+MUSETT_T1_DSSD_Y116_T 865.0 -0.105221
+MUSETT_T1_DSSD_Y117_T 874.383 -0.106354
+MUSETT_T1_DSSD_Y118_T 878.744 -0.1069
+MUSETT_T1_DSSD_Y119_T 873.451 -0.106252
+MUSETT_T1_DSSD_Y120_T 890.883 -0.108379
+MUSETT_T1_DSSD_Y121_T 891.802 -0.108492
+MUSETT_T1_DSSD_Y122_T 889.789 -0.108225
+MUSETT_T1_DSSD_Y123_T 888.888 -0.108132
+MUSETT_T1_DSSD_Y124_T 891.161 -0.108412
+MUSETT_T1_DSSD_Y125_T 886.515 -0.10784
+MUSETT_T1_DSSD_Y126_T 883.99 -0.107526
+MUSETT_T1_DSSD_Y127_T 947.91 -0.121191
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..3377583e8617d3622c02ba0a58094591e9dfebac
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E -62.771800000000006 0.00766248
+MUSETT_T2_DSSD_X1_E -62.536199999999994 0.00763367
+MUSETT_T2_DSSD_X2_E -62.923199999999994 0.007680920000000001
+MUSETT_T2_DSSD_X3_E -62.099199999999996 0.0075803
+MUSETT_T2_DSSD_X4_E -62.0716 0.0075769999999999995
+MUSETT_T2_DSSD_X5_E -62.7625 0.00766131
+MUSETT_T2_DSSD_X6_E -62.5366 0.00763372
+MUSETT_T2_DSSD_X7_E -62.8634 0.0076736
+MUSETT_T2_DSSD_X8_E -62.977599999999995 0.00768755
+MUSETT_T2_DSSD_X9_E -62.1692 0.00758889
+MUSETT_T2_DSSD_X10_E -62.4862 0.00762758
+MUSETT_T2_DSSD_X11_E -62.494 0.00762855
+MUSETT_T2_DSSD_X12_E -62.5914 0.0076403999999999994
+MUSETT_T2_DSSD_X13_E -62.5965 0.00764104
+MUSETT_T2_DSSD_X14_E -62.6933 0.00765283
+MUSETT_T2_DSSD_X15_E -63.4319 0.00774304
+MUSETT_T2_DSSD_X16_E -62.2755 0.00760186
+MUSETT_T2_DSSD_X17_E -61.847 0.007549559999999999
+MUSETT_T2_DSSD_X18_E -61.648900000000005 0.0075254200000000005
+MUSETT_T2_DSSD_X19_E -61.472199999999994 0.0075038
+MUSETT_T2_DSSD_X20_E -61.4877 0.0075057299999999995
+MUSETT_T2_DSSD_X21_E -62.3236 0.007607719999999999
+MUSETT_T2_DSSD_X22_E -62.160599999999995 0.00758783
+MUSETT_T2_DSSD_X23_E -61.8015 0.00754404
+MUSETT_T2_DSSD_X24_E -61.589400000000005 0.0075181300000000005
+MUSETT_T2_DSSD_X25_E -61.837900000000005 0.00754843
+MUSETT_T2_DSSD_X26_E -61.9972 0.00756788
+MUSETT_T2_DSSD_X27_E -61.886900000000004 0.00755441
+MUSETT_T2_DSSD_X28_E -61.669599999999996 0.00752787
+MUSETT_T2_DSSD_X29_E -61.3176 0.00748493
+MUSETT_T2_DSSD_X30_E -62.385400000000004 0.0076153
+MUSETT_T2_DSSD_X31_E -61.5448 0.007512710000000001
+MUSETT_T2_DSSD_X32_E -59.0051 0.00720263
+MUSETT_T2_DSSD_X33_E -58.1254 0.0070952
+MUSETT_T2_DSSD_X34_E -58.621 0.0071557700000000005
+MUSETT_T2_DSSD_X35_E -58.4208 0.00713128
+MUSETT_T2_DSSD_X36_E -58.1821 0.00710215
+MUSETT_T2_DSSD_X37_E -58.1795 0.00710183
+MUSETT_T2_DSSD_X38_E -58.3827 0.00712665
+MUSETT_T2_DSSD_X39_E -57.9516 0.0070739999999999996
+MUSETT_T2_DSSD_X40_E -57.6194 0.00703346
+MUSETT_T2_DSSD_X41_E -58.6028 0.007153489999999999
+MUSETT_T2_DSSD_X42_E -58.7636 0.0071731699999999995
+MUSETT_T2_DSSD_X43_E -58.295300000000005 0.00711601
+MUSETT_T2_DSSD_X44_E -58.6115 0.00715458
+MUSETT_T2_DSSD_X45_E -58.5695 0.00714945
+MUSETT_T2_DSSD_X46_E -58.3686 0.00712489
+MUSETT_T2_DSSD_X47_E -58.524699999999996 0.007144
+MUSETT_T2_DSSD_X48_E -57.829699999999995 0.00705919
+MUSETT_T2_DSSD_X49_E -57.177699999999994 0.00697958
+MUSETT_T2_DSSD_X50_E -58.151 0.0070983999999999995
+MUSETT_T2_DSSD_X51_E -57.925 0.00707083
+MUSETT_T2_DSSD_X52_E -57.600199999999994 0.00703119
+MUSETT_T2_DSSD_X53_E -57.219800000000006 0.0069847
+MUSETT_T2_DSSD_X54_E -57.8554 0.007062280000000001
+MUSETT_T2_DSSD_X55_E -57.682199999999995 0.007041159999999999
+MUSETT_T2_DSSD_X56_E -57.9126 0.00706929
+MUSETT_T2_DSSD_X57_E -57.5989 0.00703102
+MUSETT_T2_DSSD_X58_E -57.919599999999996 0.00707016
+MUSETT_T2_DSSD_X59_E -56.9985 0.0069577
+MUSETT_T2_DSSD_X60_E -57.4982 0.007018709999999999
+MUSETT_T2_DSSD_X61_E -56.729099999999995 0.00692483
+MUSETT_T2_DSSD_X62_E -57.5006 0.00701901
+MUSETT_T2_DSSD_X63_E -57.910599999999995 0.00706904
+MUSETT_T2_DSSD_X64_E -63.311 0.007728240000000001
+MUSETT_T2_DSSD_X65_E -64.9918 0.00793347
+MUSETT_T2_DSSD_X66_E -63.9945 0.0078117
+MUSETT_T2_DSSD_X67_E -63.7503 0.00778186
+MUSETT_T2_DSSD_X68_E -10.0 0.0
+MUSETT_T2_DSSD_X69_E -64.4085 0.007862280000000001
+MUSETT_T2_DSSD_X70_E -63.629 0.0077670199999999995
+MUSETT_T2_DSSD_X71_E -63.4388 0.00774388
+MUSETT_T2_DSSD_X72_E -63.3583 0.0077339900000000005
+MUSETT_T2_DSSD_X73_E -63.1446 0.00770793
+MUSETT_T2_DSSD_X74_E -63.8121 0.007789399999999999
+MUSETT_T2_DSSD_X75_E -63.6624 0.00777117
+MUSETT_T2_DSSD_X76_E -63.8769 0.00779733
+MUSETT_T2_DSSD_X77_E -63.7711 0.00778444
+MUSETT_T2_DSSD_X78_E -63.6521 0.0077699
+MUSETT_T2_DSSD_X79_E -63.600300000000004 0.00776358
+MUSETT_T2_DSSD_X80_E -63.2564 0.0077215800000000005
+MUSETT_T2_DSSD_X81_E -63.3337 0.00773107
+MUSETT_T2_DSSD_X82_E -63.15 0.00770859
+MUSETT_T2_DSSD_X83_E -63.2045 0.00771524
+MUSETT_T2_DSSD_X84_E -63.982099999999996 0.00781015
+MUSETT_T2_DSSD_X85_E -63.771300000000004 0.00778446
+MUSETT_T2_DSSD_X86_E -63.6827 0.0077737
+MUSETT_T2_DSSD_X87_E -63.921099999999996 0.00780269
+MUSETT_T2_DSSD_X88_E -63.090300000000006 0.0077012999999999995
+MUSETT_T2_DSSD_X89_E -63.5487 0.00775733
+MUSETT_T2_DSSD_X90_E -63.345699999999994 0.00773257
+MUSETT_T2_DSSD_X91_E -63.537699999999994 0.00775593
+MUSETT_T2_DSSD_X92_E -63.2671 0.00772292
+MUSETT_T2_DSSD_X93_E -64.6143 0.00788733
+MUSETT_T2_DSSD_X94_E -63.737 0.00778019
+MUSETT_T2_DSSD_X95_E -63.6275 0.00776682
+MUSETT_T2_DSSD_X96_E -59.0116 0.00720345
+MUSETT_T2_DSSD_X97_E -58.536300000000004 0.00714543
+MUSETT_T2_DSSD_X98_E -58.2945 0.00711592
+MUSETT_T2_DSSD_X99_E -58.7645 0.00717328
+MUSETT_T2_DSSD_X100_E -59.3882 0.007249380000000001
+MUSETT_T2_DSSD_X101_E -59.3539 0.00724523
+MUSETT_T2_DSSD_X102_E -58.868900000000004 0.00718606
+MUSETT_T2_DSSD_X103_E -59.0204 0.00720454
+MUSETT_T2_DSSD_X104_E -59.051199999999994 0.00720827
+MUSETT_T2_DSSD_X105_E -59.067699999999995 0.00721031
+MUSETT_T2_DSSD_X106_E -58.7806 0.00717527
+MUSETT_T2_DSSD_X107_E -59.0118 0.00720348
+MUSETT_T2_DSSD_X108_E -58.6856 0.0071636899999999995
+MUSETT_T2_DSSD_X109_E -60.3136 0.00736243
+MUSETT_T2_DSSD_X110_E -58.9477 0.0071956
+MUSETT_T2_DSSD_X111_E -58.6406 0.00715819
+MUSETT_T2_DSSD_X112_E -59.2564 0.00723333
+MUSETT_T2_DSSD_X113_E -59.391400000000004 0.00724979
+MUSETT_T2_DSSD_X114_E -59.7415 0.00729254
+MUSETT_T2_DSSD_X115_E -59.153 0.0072207
+MUSETT_T2_DSSD_X116_E -59.6593 0.00728255
+MUSETT_T2_DSSD_X117_E -60.0435 0.007329410000000001
+MUSETT_T2_DSSD_X118_E -59.4929 0.00726218
+MUSETT_T2_DSSD_X119_E -59.3559 0.0072455
+MUSETT_T2_DSSD_X120_E -60.079 0.0073337
+MUSETT_T2_DSSD_X121_E -58.759699999999995 0.00717268
+MUSETT_T2_DSSD_X122_E -59.106300000000005 0.00721501
+MUSETT_T2_DSSD_X123_E -59.3564 0.00724556
+MUSETT_T2_DSSD_X124_E -58.9054 0.00719045
+MUSETT_T2_DSSD_X125_E -58.909 0.00719091
+MUSETT_T2_DSSD_X126_E -59.1398 0.00721905
+MUSETT_T2_DSSD_X127_E -59.2444 0.00723184
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..42f4d2174be61e224ee762c0a61859e525dfc76f
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_E 63.1803 -0.0077125399999999995
+MUSETT_T2_DSSD_Y1_E 63.9585 -0.00780757
+MUSETT_T2_DSSD_Y2_E 62.563900000000004 -0.00763734
+MUSETT_T2_DSSD_Y3_E 63.393800000000006 -0.00773864
+MUSETT_T2_DSSD_Y4_E 62.965300000000006 -0.0076863
+MUSETT_T2_DSSD_Y5_E 62.6952 -0.00765332
+MUSETT_T2_DSSD_Y6_E 63.071 -0.007699200000000001
+MUSETT_T2_DSSD_Y7_E 62.6847 -0.00765205
+MUSETT_T2_DSSD_Y8_E 62.8052 -0.00766674
+MUSETT_T2_DSSD_Y9_E 63.4059 -0.00774008
+MUSETT_T2_DSSD_Y10_E 63.006 -0.007691290000000001
+MUSETT_T2_DSSD_Y11_E 62.613800000000005 -0.00764344
+MUSETT_T2_DSSD_Y12_E 62.1358 -0.00758506
+MUSETT_T2_DSSD_Y13_E 62.7978 -0.00766584
+MUSETT_T2_DSSD_Y14_E 63.0039 -0.00769104
+MUSETT_T2_DSSD_Y15_E 63.4515 -0.00774566
+MUSETT_T2_DSSD_Y16_E 61.6804 -0.00752939
+MUSETT_T2_DSSD_Y17_E 60.963699999999996 -0.007442020000000001
+MUSETT_T2_DSSD_Y18_E 60.731300000000005 -0.007413599999999999
+MUSETT_T2_DSSD_Y19_E 62.0444 -0.00757386
+MUSETT_T2_DSSD_Y20_E 61.1209 -0.00746121
+MUSETT_T2_DSSD_Y21_E 60.932 -0.0074381000000000004
+MUSETT_T2_DSSD_Y22_E 62.091800000000006 -0.00757965
+MUSETT_T2_DSSD_Y23_E 61.0425 -0.00745157
+MUSETT_T2_DSSD_Y24_E 61.0802 -0.00745622
+MUSETT_T2_DSSD_Y25_E 61.569 -0.00751583
+MUSETT_T2_DSSD_Y26_E 61.0889 -0.0074572399999999995
+MUSETT_T2_DSSD_Y27_E 61.4018 -0.00749545
+MUSETT_T2_DSSD_Y28_E 61.5908 -0.00751854
+MUSETT_T2_DSSD_Y29_E 61.4567 -0.00750214
+MUSETT_T2_DSSD_Y30_E 61.3482 -0.00748891
+MUSETT_T2_DSSD_Y31_E 61.8146 -0.007545860000000001
+MUSETT_T2_DSSD_Y32_E 56.3104 -0.00687387
+MUSETT_T2_DSSD_Y33_E 56.4756 -0.00689413
+MUSETT_T2_DSSD_Y34_E 56.8437 -0.00693897
+MUSETT_T2_DSSD_Y35_E 56.709900000000005 -0.0069226999999999995
+MUSETT_T2_DSSD_Y36_E 57.0065 -0.00695894
+MUSETT_T2_DSSD_Y37_E 56.9227 -0.00694871
+MUSETT_T2_DSSD_Y38_E 56.395900000000005 -0.00688437
+MUSETT_T2_DSSD_Y39_E 56.4375 -0.00688946
+MUSETT_T2_DSSD_Y40_E 56.168099999999995 -0.006856569999999999
+MUSETT_T2_DSSD_Y41_E 58.1374 -0.0070969100000000005
+MUSETT_T2_DSSD_Y42_E 56.7521 -0.00692786
+MUSETT_T2_DSSD_Y43_E 56.2683 -0.00686879
+MUSETT_T2_DSSD_Y44_E 57.2483 -0.00698843
+MUSETT_T2_DSSD_Y45_E 57.2377 -0.00698715
+MUSETT_T2_DSSD_Y46_E 57.0625 -0.006965740000000001
+MUSETT_T2_DSSD_Y47_E 56.700199999999995 -0.0069215200000000004
+MUSETT_T2_DSSD_Y48_E 57.6094 -0.00703252
+MUSETT_T2_DSSD_Y49_E 57.0451 -0.00696368
+MUSETT_T2_DSSD_Y50_E 57.8934 -0.00706716
+MUSETT_T2_DSSD_Y51_E 57.4321 -0.00701085
+MUSETT_T2_DSSD_Y52_E 57.3273 -0.0069981
+MUSETT_T2_DSSD_Y53_E 58.593599999999995 -0.00715267
+MUSETT_T2_DSSD_Y54_E 57.7132 -0.00704516
+MUSETT_T2_DSSD_Y55_E 57.801 -0.0070558899999999996
+MUSETT_T2_DSSD_Y56_E 57.750099999999996 -0.0070497
+MUSETT_T2_DSSD_Y57_E 57.5646 -0.00702705
+MUSETT_T2_DSSD_Y58_E 57.5132 -0.00702079
+MUSETT_T2_DSSD_Y59_E 58.2986 -0.00711669
+MUSETT_T2_DSSD_Y60_E 57.8836 -0.007066
+MUSETT_T2_DSSD_Y61_E 57.3339 -0.006998890000000001
+MUSETT_T2_DSSD_Y62_E 57.8777 -0.00706529
+MUSETT_T2_DSSD_Y63_E 58.222300000000004 -0.0071073199999999994
+MUSETT_T2_DSSD_Y64_E 59.3524 -0.007245339999999999
+MUSETT_T2_DSSD_Y65_E 59.653 -0.00728202
+MUSETT_T2_DSSD_Y66_E 59.466699999999996 -0.00725926
+MUSETT_T2_DSSD_Y67_E 60.421 -0.00737573
+MUSETT_T2_DSSD_Y68_E 59.563300000000005 -0.00727104
+MUSETT_T2_DSSD_Y69_E 59.865199999999994 -0.00730789
+MUSETT_T2_DSSD_Y70_E 59.5681 -0.0072716099999999995
+MUSETT_T2_DSSD_Y71_E 59.9031 -0.00731254
+MUSETT_T2_DSSD_Y72_E 59.874199999999995 -0.007308950000000001
+MUSETT_T2_DSSD_Y73_E 59.5659 -0.00727135
+MUSETT_T2_DSSD_Y74_E 59.9514 -0.00731844
+MUSETT_T2_DSSD_Y75_E 60.102599999999995 -0.00733689
+MUSETT_T2_DSSD_Y76_E 59.329 -0.00724242
+MUSETT_T2_DSSD_Y77_E 59.9733 -0.00732106
+MUSETT_T2_DSSD_Y78_E 59.3692 -0.0072473400000000006
+MUSETT_T2_DSSD_Y79_E 60.2055 -0.00734945
+MUSETT_T2_DSSD_Y80_E 60.5591 -0.00739262
+MUSETT_T2_DSSD_Y81_E 61.2239 -0.00747379
+MUSETT_T2_DSSD_Y82_E 60.5555 -0.00739217
+MUSETT_T2_DSSD_Y83_E 61.2678 -0.00747916
+MUSETT_T2_DSSD_Y84_E 61.1832 -0.00746879
+MUSETT_T2_DSSD_Y85_E 60.8774 -0.00743143
+MUSETT_T2_DSSD_Y86_E 60.9647 -0.00744213
+MUSETT_T2_DSSD_Y87_E 61.3167 -0.00748517
+MUSETT_T2_DSSD_Y88_E 60.8896 -0.00743289
+MUSETT_T2_DSSD_Y89_E 60.834900000000005 -0.007426230000000001
+MUSETT_T2_DSSD_Y90_E 61.4754 -0.007504520000000001
+MUSETT_T2_DSSD_Y91_E 60.713800000000006 -0.00741149
+MUSETT_T2_DSSD_Y92_E 61.139900000000004 -0.007463490000000001
+MUSETT_T2_DSSD_Y93_E 60.5862 -0.007395850000000001
+MUSETT_T2_DSSD_Y94_E 61.0912 -0.00745753
+MUSETT_T2_DSSD_Y95_E 61.463 -0.00750289
+MUSETT_T2_DSSD_Y96_E 56.8837 -0.00694393
+MUSETT_T2_DSSD_Y97_E 55.9583 -0.0068309600000000005
+MUSETT_T2_DSSD_Y98_E 56.259699999999995 -0.00686775
+MUSETT_T2_DSSD_Y99_E 56.6209 -0.00691184
+MUSETT_T2_DSSD_Y100_E 56.3901 -0.00688368
+MUSETT_T2_DSSD_Y101_E 56.7419 -0.0069266300000000005
+MUSETT_T2_DSSD_Y102_E 55.881699999999995 -0.00682158
+MUSETT_T2_DSSD_Y103_E 57.2425 -0.00698773
+MUSETT_T2_DSSD_Y104_E 56.047599999999996 -0.00684185
+MUSETT_T2_DSSD_Y105_E 56.7064 -0.00692227
+MUSETT_T2_DSSD_Y106_E 56.618300000000005 -0.00691153
+MUSETT_T2_DSSD_Y107_E 57.5163 -0.00702116
+MUSETT_T2_DSSD_Y108_E 57.052699999999994 -0.00696458
+MUSETT_T2_DSSD_Y109_E 56.7013 -0.0069216699999999996
+MUSETT_T2_DSSD_Y110_E 57.023199999999996 -0.0069609500000000005
+MUSETT_T2_DSSD_Y111_E 56.155300000000004 -0.00685506
+MUSETT_T2_DSSD_Y112_E 56.4801 -0.00689468
+MUSETT_T2_DSSD_Y113_E 57.291 -0.00699365
+MUSETT_T2_DSSD_Y114_E 56.601099999999995 -0.00690948
+MUSETT_T2_DSSD_Y115_E 56.8647 -0.0069416700000000005
+MUSETT_T2_DSSD_Y116_E 56.5048 -0.0068977199999999995
+MUSETT_T2_DSSD_Y117_E 56.531 -0.00690085
+MUSETT_T2_DSSD_Y118_E 56.8031 -0.0069340700000000005
+MUSETT_T2_DSSD_Y119_E 56.7446 -0.00692696
+MUSETT_T2_DSSD_Y120_E 56.3396 -0.00687753
+MUSETT_T2_DSSD_Y121_E 57.094699999999996 -0.00696973
+MUSETT_T2_DSSD_Y122_E 57.4718 -0.00701574
+MUSETT_T2_DSSD_Y123_E -10.0 0.0
+MUSETT_T2_DSSD_Y124_E 56.2437 -0.00686585
+MUSETT_T2_DSSD_Y125_E 56.920199999999994 -0.00694841
+MUSETT_T2_DSSD_Y126_E 56.3579 -0.00687972
+MUSETT_T2_DSSD_Y127_E 56.1714 -0.00685698
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1983b41dd0fcbe6248c501b5faac1ca1a7e2d690
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_T 936.808 -0.113282
+MUSETT_T2_DSSD_X1_T 933.588 -0.112935
+MUSETT_T2_DSSD_X2_T 941.562 -0.113903
+MUSETT_T2_DSSD_X3_T 953.784 -0.11541
+MUSETT_T2_DSSD_X4_T 949.078 -0.114834
+MUSETT_T2_DSSD_X5_T 966.718 -0.116968
+MUSETT_T2_DSSD_X6_T 960.214 -0.116144
+MUSETT_T2_DSSD_X7_T 964.987 -0.116738
+MUSETT_T2_DSSD_X8_T 956.88 -0.115736
+MUSETT_T2_DSSD_X9_T 968.81 -0.117191
+MUSETT_T2_DSSD_X10_T 971.337 -0.117505
+MUSETT_T2_DSSD_X11_T 966.1 -0.116868
+MUSETT_T2_DSSD_X12_T 972.053 -0.117596
+MUSETT_T2_DSSD_X13_T 966.078 -0.116864
+MUSETT_T2_DSSD_X14_T 966.541 -0.116934
+MUSETT_T2_DSSD_X15_T 1367.28 -0.118078
+MUSETT_T2_DSSD_X16_T 918.709 -0.111042
+MUSETT_T2_DSSD_X17_T 933.754 -0.1129
+MUSETT_T2_DSSD_X18_T 936.423 -0.113239
+MUSETT_T2_DSSD_X19_T 935.388 -0.11311
+MUSETT_T2_DSSD_X20_T 946.289 -0.114433
+MUSETT_T2_DSSD_X21_T 941.937 -0.113893
+MUSETT_T2_DSSD_X22_T 939.701 -0.113604
+MUSETT_T2_DSSD_X23_T 947.866 -0.114596
+MUSETT_T2_DSSD_X24_T 939.11 -0.113523
+MUSETT_T2_DSSD_X25_T 947.312 -0.114529
+MUSETT_T2_DSSD_X26_T 947.872 -0.114587
+MUSETT_T2_DSSD_X27_T 944.089 -0.114127
+MUSETT_T2_DSSD_X28_T 951.541 -0.115049
+MUSETT_T2_DSSD_X29_T 947.806 -0.114577
+MUSETT_T2_DSSD_X30_T 949.646 -0.114801
+MUSETT_T2_DSSD_X31_T 1101.24 -0.114725
+MUSETT_T2_DSSD_X32_T 883.868 -0.106884
+MUSETT_T2_DSSD_X33_T 881.306 -0.106588
+MUSETT_T2_DSSD_X34_T 890.406 -0.10771
+MUSETT_T2_DSSD_X35_T 887.688 -0.10739
+MUSETT_T2_DSSD_X36_T 901.335 -0.109058
+MUSETT_T2_DSSD_X37_T 898.532 -0.108685
+MUSETT_T2_DSSD_X38_T 906.127 -0.109605
+MUSETT_T2_DSSD_X39_T 903.029 -0.109211
+MUSETT_T2_DSSD_X40_T 902.567 -0.109168
+MUSETT_T2_DSSD_X41_T 906.324 -0.109617
+MUSETT_T2_DSSD_X42_T 912.663 -0.1104
+MUSETT_T2_DSSD_X43_T 911.609 -0.110254
+MUSETT_T2_DSSD_X44_T 919.504 -0.111219
+MUSETT_T2_DSSD_X45_T 918.075 -0.111043
+MUSETT_T2_DSSD_X46_T 920.693 -0.111378
+MUSETT_T2_DSSD_X47_T 1304.08 -0.11089
+MUSETT_T2_DSSD_X48_T 852.901 -0.102956
+MUSETT_T2_DSSD_X49_T 862.836 -0.104191
+MUSETT_T2_DSSD_X50_T 872.425 -0.105362
+MUSETT_T2_DSSD_X51_T 866.551 -0.10464
+MUSETT_T2_DSSD_X52_T 875.507 -0.105723
+MUSETT_T2_DSSD_X53_T 875.722 -0.105755
+MUSETT_T2_DSSD_X54_T 877.794 -0.105984
+MUSETT_T2_DSSD_X55_T 885.59 -0.106931
+MUSETT_T2_DSSD_X56_T 894.535 -0.108024
+MUSETT_T2_DSSD_X57_T 896.983 -0.108307
+MUSETT_T2_DSSD_X58_T 888.442 -0.107279
+MUSETT_T2_DSSD_X59_T 898.855 -0.108543
+MUSETT_T2_DSSD_X60_T 900.217 -0.108721
+MUSETT_T2_DSSD_X61_T 899.805 -0.108665
+MUSETT_T2_DSSD_X62_T 896.358 -0.10824
+MUSETT_T2_DSSD_X63_T 1286.56 -0.107885
+MUSETT_T2_DSSD_X64_T 969.588 -0.117533
+MUSETT_T2_DSSD_X65_T 969.639 -0.117545
+MUSETT_T2_DSSD_X66_T 981.26 -0.118957
+MUSETT_T2_DSSD_X67_T 986.207 -0.119584
+MUSETT_T2_DSSD_X68_T 450.0 -0.119902
+MUSETT_T2_DSSD_X69_T 989.899 -0.12002
+MUSETT_T2_DSSD_X70_T 991.208 -0.120171
+MUSETT_T2_DSSD_X71_T 996.377 -0.120802
+MUSETT_T2_DSSD_X72_T 989.619 -0.119977
+MUSETT_T2_DSSD_X73_T 998.452 -0.12102
+MUSETT_T2_DSSD_X74_T 994.24 -0.12055
+MUSETT_T2_DSSD_X75_T 993.976 -0.12048
+MUSETT_T2_DSSD_X76_T 1003.64 -0.121688
+MUSETT_T2_DSSD_X77_T 1007.3 -0.122136
+MUSETT_T2_DSSD_X78_T 1010.11 -0.122472
+MUSETT_T2_DSSD_X79_T 1318.69 -0.121488
+MUSETT_T2_DSSD_X80_T 950.946 -0.115148
+MUSETT_T2_DSSD_X81_T 961.899 -0.116512
+MUSETT_T2_DSSD_X82_T 963.68 -0.116735
+MUSETT_T2_DSSD_X83_T 967.2 -0.117158
+MUSETT_T2_DSSD_X84_T 967.305 -0.117159
+MUSETT_T2_DSSD_X85_T 968.515 -0.117336
+MUSETT_T2_DSSD_X86_T 982.177 -0.118997
+MUSETT_T2_DSSD_X87_T 981.387 -0.118879
+MUSETT_T2_DSSD_X88_T 991.904 -0.120152
+MUSETT_T2_DSSD_X89_T 991.623 -0.120143
+MUSETT_T2_DSSD_X90_T 990.622 -0.120011
+MUSETT_T2_DSSD_X91_T 980.868 -0.118788
+MUSETT_T2_DSSD_X92_T 995.536 -0.120614
+MUSETT_T2_DSSD_X93_T 999.576 -0.12112
+MUSETT_T2_DSSD_X94_T 1000.5 -0.12123
+MUSETT_T2_DSSD_X95_T 985.324 -0.119394
+MUSETT_T2_DSSD_X96_T 898.921 -0.10895
+MUSETT_T2_DSSD_X97_T 915.715 -0.11099
+MUSETT_T2_DSSD_X98_T 911.411 -0.110483
+MUSETT_T2_DSSD_X99_T 911.648 -0.110494
+MUSETT_T2_DSSD_X100_T 920.871 -0.11163
+MUSETT_T2_DSSD_X101_T 920.388 -0.111573
+MUSETT_T2_DSSD_X102_T 918.664 -0.111368
+MUSETT_T2_DSSD_X103_T 923.174 -0.111888
+MUSETT_T2_DSSD_X104_T 933.198 -0.113122
+MUSETT_T2_DSSD_X105_T 930.187 -0.112764
+MUSETT_T2_DSSD_X106_T 935.147 -0.113373
+MUSETT_T2_DSSD_X107_T 930.349 -0.112797
+MUSETT_T2_DSSD_X108_T 933.561 -0.113176
+MUSETT_T2_DSSD_X109_T 940.135 -0.113973
+MUSETT_T2_DSSD_X110_T 940.914 -0.114066
+MUSETT_T2_DSSD_X111_T 940.163 -0.113973
+MUSETT_T2_DSSD_X112_T 900.272 -0.108961
+MUSETT_T2_DSSD_X113_T 905.007 -0.109531
+MUSETT_T2_DSSD_X114_T 912.464 -0.110461
+MUSETT_T2_DSSD_X115_T 912.22 -0.110414
+MUSETT_T2_DSSD_X116_T 927.733 -0.112323
+MUSETT_T2_DSSD_X117_T 930.691 -0.11267
+MUSETT_T2_DSSD_X118_T 936.077 -0.113333
+MUSETT_T2_DSSD_X119_T 939.108 -0.113698
+MUSETT_T2_DSSD_X120_T 938.924 -0.113666
+MUSETT_T2_DSSD_X121_T 947.571 -0.114745
+MUSETT_T2_DSSD_X122_T 938.938 -0.113673
+MUSETT_T2_DSSD_X123_T 945.07 -0.11443
+MUSETT_T2_DSSD_X124_T 934.733 -0.113174
+MUSETT_T2_DSSD_X125_T 934.595 -0.113143
+MUSETT_T2_DSSD_X126_T 943.044 -0.114176
+MUSETT_T2_DSSD_X127_T 943.184 -0.114186
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..7ff18502dac89c993590306b5479a1f20452d0ee
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_T 987.442 -0.119525
+MUSETT_T2_DSSD_Y1_T 990.37 -0.119903
+MUSETT_T2_DSSD_Y2_T 989.136 -0.119776
+MUSETT_T2_DSSD_Y3_T 995.437 -0.120524
+MUSETT_T2_DSSD_Y4_T 1000.77 -0.121165
+MUSETT_T2_DSSD_Y5_T 998.951 -0.120947
+MUSETT_T2_DSSD_Y6_T 1003.75 -0.121526
+MUSETT_T2_DSSD_Y7_T 1010.87 -0.122366
+MUSETT_T2_DSSD_Y8_T 1012.21 -0.122539
+MUSETT_T2_DSSD_Y9_T 1003.9 -0.121307
+MUSETT_T2_DSSD_Y10_T 1010.24 -0.122275
+MUSETT_T2_DSSD_Y11_T 1015.27 -0.122898
+MUSETT_T2_DSSD_Y12_T 1017.2 -0.12312
+MUSETT_T2_DSSD_Y13_T 1022.23 -0.123746
+MUSETT_T2_DSSD_Y14_T 1021.37 -0.123621
+MUSETT_T2_DSSD_Y15_T 1022.68 -0.123744
+MUSETT_T2_DSSD_Y16_T 939.963 -0.113632
+MUSETT_T2_DSSD_Y17_T 939.308 -0.11359
+MUSETT_T2_DSSD_Y18_T 938.897 -0.113546
+MUSETT_T2_DSSD_Y19_T 938.628 -0.113526
+MUSETT_T2_DSSD_Y20_T 953.606 -0.115367
+MUSETT_T2_DSSD_Y21_T 969.437 -0.117305
+MUSETT_T2_DSSD_Y22_T 965.454 -0.11682
+MUSETT_T2_DSSD_Y23_T 960.44 -0.116216
+MUSETT_T2_DSSD_Y24_T 975.99 -0.118134
+MUSETT_T2_DSSD_Y25_T 978.687 -0.118446
+MUSETT_T2_DSSD_Y26_T 976.083 -0.117858
+MUSETT_T2_DSSD_Y27_T 982.568 -0.11895
+MUSETT_T2_DSSD_Y28_T 976.864 -0.118238
+MUSETT_T2_DSSD_Y29_T 978.515 -0.118468
+MUSETT_T2_DSSD_Y30_T 977.409 -0.118337
+MUSETT_T2_DSSD_Y31_T 965.447 -0.116905
+MUSETT_T2_DSSD_Y32_T 870.181 -0.105393
+MUSETT_T2_DSSD_Y33_T 876.858 -0.106206
+MUSETT_T2_DSSD_Y34_T 889.244 -0.107711
+MUSETT_T2_DSSD_Y35_T 890.519 -0.10786
+MUSETT_T2_DSSD_Y36_T 893.817 -0.108297
+MUSETT_T2_DSSD_Y37_T 888.588 -0.107628
+MUSETT_T2_DSSD_Y38_T 904.701 -0.109574
+MUSETT_T2_DSSD_Y39_T 903.479 -0.109401
+MUSETT_T2_DSSD_Y40_T 906.236 -0.109756
+MUSETT_T2_DSSD_Y41_T 914.382 -0.110304
+MUSETT_T2_DSSD_Y42_T 906.598 -0.10979
+MUSETT_T2_DSSD_Y43_T 910.53 -0.110231
+MUSETT_T2_DSSD_Y44_T 912.933 -0.110532
+MUSETT_T2_DSSD_Y45_T 916.041 -0.110907
+MUSETT_T2_DSSD_Y46_T 919.774 -0.111371
+MUSETT_T2_DSSD_Y47_T 915.148 -0.110791
+MUSETT_T2_DSSD_Y48_T 893.19 -0.108016
+MUSETT_T2_DSSD_Y49_T 902.467 -0.109155
+MUSETT_T2_DSSD_Y50_T 899.946 -0.108834
+MUSETT_T2_DSSD_Y51_T 913.407 -0.110471
+MUSETT_T2_DSSD_Y52_T 905.911 -0.109622
+MUSETT_T2_DSSD_Y53_T 914.887 -0.110708
+MUSETT_T2_DSSD_Y54_T 922.021 -0.111116
+MUSETT_T2_DSSD_Y55_T 914.007 -0.11061
+MUSETT_T2_DSSD_Y56_T 926.973 -0.11216
+MUSETT_T2_DSSD_Y57_T 918.182 -0.111079
+MUSETT_T2_DSSD_Y58_T 920.356 -0.111393
+MUSETT_T2_DSSD_Y59_T 924.322 -0.11168
+MUSETT_T2_DSSD_Y60_T 940.509 -0.11386
+MUSETT_T2_DSSD_Y61_T 925.883 -0.112068
+MUSETT_T2_DSSD_Y62_T 921.861 -0.111623
+MUSETT_T2_DSSD_Y63_T 929.763 -0.112593
+MUSETT_T2_DSSD_Y64_T 924.331 -0.111864
+MUSETT_T2_DSSD_Y65_T 943.62 -0.114242
+MUSETT_T2_DSSD_Y66_T 947.992 -0.114763
+MUSETT_T2_DSSD_Y67_T 945.728 -0.114477
+MUSETT_T2_DSSD_Y68_T 972.019 -0.117701
+MUSETT_T2_DSSD_Y69_T 960.071 -0.116242
+MUSETT_T2_DSSD_Y70_T 967.505 -0.117144
+MUSETT_T2_DSSD_Y71_T 964.472 -0.116783
+MUSETT_T2_DSSD_Y72_T 955.96 -0.115747
+MUSETT_T2_DSSD_Y73_T 958.084 -0.115989
+MUSETT_T2_DSSD_Y74_T 964.33 -0.116762
+MUSETT_T2_DSSD_Y75_T 977.202 -0.118324
+MUSETT_T2_DSSD_Y76_T 973.571 -0.117892
+MUSETT_T2_DSSD_Y77_T 976.2 -0.118194
+MUSETT_T2_DSSD_Y78_T 967.051 -0.117092
+MUSETT_T2_DSSD_Y79_T 968.99 -0.117343
+MUSETT_T2_DSSD_Y80_T 944.542 -0.114246
+MUSETT_T2_DSSD_Y81_T 939.064 -0.113582
+MUSETT_T2_DSSD_Y82_T 951.122 -0.115097
+MUSETT_T2_DSSD_Y83_T 946.764 -0.114574
+MUSETT_T2_DSSD_Y84_T 955.625 -0.115653
+MUSETT_T2_DSSD_Y85_T 966.0 -0.11692
+MUSETT_T2_DSSD_Y86_T 964.199 -0.116695
+MUSETT_T2_DSSD_Y87_T 969.926 -0.117388
+MUSETT_T2_DSSD_Y88_T 972.649 -0.117739
+MUSETT_T2_DSSD_Y89_T 974.635 -0.11797
+MUSETT_T2_DSSD_Y90_T 979.1 -0.118525
+MUSETT_T2_DSSD_Y91_T 969.715 -0.117371
+MUSETT_T2_DSSD_Y92_T 977.475 -0.118331
+MUSETT_T2_DSSD_Y93_T 977.142 -0.118283
+MUSETT_T2_DSSD_Y94_T 984.646 -0.119174
+MUSETT_T2_DSSD_Y95_T 989.259 -0.119806
+MUSETT_T2_DSSD_Y96_T 897.538 -0.108639
+MUSETT_T2_DSSD_Y97_T 893.51 -0.108189
+MUSETT_T2_DSSD_Y98_T 904.052 -0.109474
+MUSETT_T2_DSSD_Y99_T 902.752 -0.109308
+MUSETT_T2_DSSD_Y100_T 916.527 -0.110997
+MUSETT_T2_DSSD_Y101_T 924.175 -0.111938
+MUSETT_T2_DSSD_Y102_T 914.572 -0.110746
+MUSETT_T2_DSSD_Y103_T 930.562 -0.112691
+MUSETT_T2_DSSD_Y104_T 925.104 -0.112025
+MUSETT_T2_DSSD_Y105_T 920.853 -0.111507
+MUSETT_T2_DSSD_Y106_T 922.078 -0.111663
+MUSETT_T2_DSSD_Y107_T 921.772 -0.111623
+MUSETT_T2_DSSD_Y108_T 925.31 -0.112066
+MUSETT_T2_DSSD_Y109_T 926.033 -0.11214
+MUSETT_T2_DSSD_Y110_T 922.391 -0.111703
+MUSETT_T2_DSSD_Y111_T 912.83 -0.110525
+MUSETT_T2_DSSD_Y112_T 852.798 -0.102981
+MUSETT_T2_DSSD_Y113_T 868.843 -0.104976
+MUSETT_T2_DSSD_Y114_T 876.793 -0.105936
+MUSETT_T2_DSSD_Y115_T 875.311 -0.10575
+MUSETT_T2_DSSD_Y116_T 883.331 -0.106741
+MUSETT_T2_DSSD_Y117_T 879.699 -0.10628
+MUSETT_T2_DSSD_Y118_T 891.993 -0.107805
+MUSETT_T2_DSSD_Y119_T 893.52 -0.107966
+MUSETT_T2_DSSD_Y120_T 883.484 -0.106759
+MUSETT_T2_DSSD_Y121_T 896.835 -0.108381
+MUSETT_T2_DSSD_Y122_T 895.32 -0.108195
+MUSETT_T2_DSSD_Y123_T 1336.18 -0.108195
+MUSETT_T2_DSSD_Y124_T 897.921 -0.108519
+MUSETT_T2_DSSD_Y125_T 898.896 -0.10863
+MUSETT_T2_DSSD_Y126_T 900.009 -0.108768
+MUSETT_T2_DSSD_Y127_T 896.14 -0.108297
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..6d44786682807bcd47daac47f87da625c69eae8c
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E -62.432 0.00762115
+MUSETT_T3_DSSD_X1_E -61.8981 0.00755599
+MUSETT_T3_DSSD_X2_E -62.2618 0.00760035
+MUSETT_T3_DSSD_X3_E -62.3777 0.00761452
+MUSETT_T3_DSSD_X4_E -61.9871 0.0075667799999999995
+MUSETT_T3_DSSD_X5_E -61.9253 0.00755922
+MUSETT_T3_DSSD_X6_E -62.100699999999996 0.00758066
+MUSETT_T3_DSSD_X7_E -61.6218 0.0075222
+MUSETT_T3_DSSD_X8_E -61.764300000000006 0.00753956
+MUSETT_T3_DSSD_X9_E -61.9183 0.00755834
+MUSETT_T3_DSSD_X10_E -61.8815 0.007553880000000001
+MUSETT_T3_DSSD_X11_E -62.903 0.00767858
+MUSETT_T3_DSSD_X12_E -61.674099999999996 0.00752859
+MUSETT_T3_DSSD_X13_E -61.812400000000004 0.007545410000000001
+MUSETT_T3_DSSD_X14_E -61.5556 0.00751408
+MUSETT_T3_DSSD_X15_E -62.6274 0.00764492
+MUSETT_T3_DSSD_X16_E -63.6565 0.007770470000000001
+MUSETT_T3_DSSD_X17_E -63.108 0.00770354
+MUSETT_T3_DSSD_X18_E -62.943400000000004 0.0076834600000000005
+MUSETT_T3_DSSD_X19_E -62.8377 0.00767058
+MUSETT_T3_DSSD_X20_E -62.6764 0.0076508900000000005
+MUSETT_T3_DSSD_X21_E -63.119800000000005 0.00770503
+MUSETT_T3_DSSD_X22_E -63.798 0.00778783
+MUSETT_T3_DSSD_X23_E -63.791 0.00778695
+MUSETT_T3_DSSD_X24_E -62.795 0.0076654
+MUSETT_T3_DSSD_X25_E -63.5026 0.00775172
+MUSETT_T3_DSSD_X26_E -63.5321 0.00775542
+MUSETT_T3_DSSD_X27_E -63.3099 0.0077282900000000005
+MUSETT_T3_DSSD_X28_E -63.637800000000006 0.00776831
+MUSETT_T3_DSSD_X29_E -63.587199999999996 0.00776214
+MUSETT_T3_DSSD_X30_E -64.5317 0.00787739
+MUSETT_T3_DSSD_X31_E -63.7428 0.00778111
+MUSETT_T3_DSSD_X32_E -59.4303 0.0072549400000000005
+MUSETT_T3_DSSD_X33_E -59.2202 0.00722924
+MUSETT_T3_DSSD_X34_E -58.1746 0.00710163
+MUSETT_T3_DSSD_X35_E -58.373599999999996 0.007125810000000001
+MUSETT_T3_DSSD_X36_E -58.848099999999995 0.00718369
+MUSETT_T3_DSSD_X37_E -59.0129 0.00720387
+MUSETT_T3_DSSD_X38_E -59.307199999999995 0.00723977
+MUSETT_T3_DSSD_X39_E -58.6779 0.00716294
+MUSETT_T3_DSSD_X40_E -59.2831 0.00723677
+MUSETT_T3_DSSD_X41_E -58.9564 0.0071969
+MUSETT_T3_DSSD_X42_E -59.0435 0.00720751
+MUSETT_T3_DSSD_X43_E -10.0 0.0
+MUSETT_T3_DSSD_X44_E -59.0479 0.00720805
+MUSETT_T3_DSSD_X45_E -59.4141 0.00725268
+MUSETT_T3_DSSD_X46_E -58.832800000000006 0.00718171
+MUSETT_T3_DSSD_X47_E -59.184599999999996 0.00722469
+MUSETT_T3_DSSD_X48_E -57.4104 0.00700817
+MUSETT_T3_DSSD_X49_E -57.223699999999994 0.006985369999999999
+MUSETT_T3_DSSD_X50_E -56.9417 0.00695094
+MUSETT_T3_DSSD_X51_E -57.3063 0.00699545
+MUSETT_T3_DSSD_X52_E -56.9392 0.00695063
+MUSETT_T3_DSSD_X53_E -57.3905 0.00700573
+MUSETT_T3_DSSD_X54_E -56.6383 0.0069139299999999996
+MUSETT_T3_DSSD_X55_E -57.3585 0.00700183
+MUSETT_T3_DSSD_X56_E -57.684400000000004 0.00704165
+MUSETT_T3_DSSD_X57_E -56.591300000000004 0.0069082
+MUSETT_T3_DSSD_X58_E -57.508 0.00702016
+MUSETT_T3_DSSD_X59_E -57.1361 0.00697475
+MUSETT_T3_DSSD_X60_E -56.3804 0.00688251
+MUSETT_T3_DSSD_X61_E -56.9174 0.0069481000000000005
+MUSETT_T3_DSSD_X62_E -56.8245 0.00693679
+MUSETT_T3_DSSD_X63_E -56.577 0.00690664
+MUSETT_T3_DSSD_X64_E -64.14 0.00782956
+MUSETT_T3_DSSD_X65_E -63.8393 0.00779281
+MUSETT_T3_DSSD_X66_E -63.5644 0.0077592699999999995
+MUSETT_T3_DSSD_X67_E -63.7704 0.00778438
+MUSETT_T3_DSSD_X68_E -63.6716 0.00777235
+MUSETT_T3_DSSD_X69_E -63.2723 0.00772359
+MUSETT_T3_DSSD_X70_E -64.307 0.00784993
+MUSETT_T3_DSSD_X71_E -62.530800000000006 0.00763314
+MUSETT_T3_DSSD_X72_E -62.6729 0.00765044
+MUSETT_T3_DSSD_X73_E -63.019 0.007692719999999999
+MUSETT_T3_DSSD_X74_E -63.152800000000006 0.00770897
+MUSETT_T3_DSSD_X75_E -63.441 0.00774419
+MUSETT_T3_DSSD_X76_E -64.1093 0.00782574
+MUSETT_T3_DSSD_X77_E -62.4535 0.007623649999999999
+MUSETT_T3_DSSD_X78_E -62.6222 0.00764425
+MUSETT_T3_DSSD_X79_E -63.017199999999995 0.0076925100000000005
+MUSETT_T3_DSSD_X80_E -62.4534 0.00762363
+MUSETT_T3_DSSD_X81_E -62.780300000000004 0.00766354
+MUSETT_T3_DSSD_X82_E -62.6701 0.00765009
+MUSETT_T3_DSSD_X83_E -62.5547 0.00763598
+MUSETT_T3_DSSD_X84_E -62.062400000000004 0.00757587
+MUSETT_T3_DSSD_X85_E -62.422599999999996 0.0076199399999999995
+MUSETT_T3_DSSD_X86_E -62.402699999999996 0.00761746
+MUSETT_T3_DSSD_X87_E -62.1388 0.00758526
+MUSETT_T3_DSSD_X88_E -62.3516 0.00761123
+MUSETT_T3_DSSD_X89_E -62.791 0.00766488
+MUSETT_T3_DSSD_X90_E -62.302699999999994 0.00760527
+MUSETT_T3_DSSD_X91_E -62.0781 0.00757785
+MUSETT_T3_DSSD_X92_E -62.8293 0.00766952
+MUSETT_T3_DSSD_X93_E -62.5605 0.007636700000000001
+MUSETT_T3_DSSD_X94_E -62.144 0.0075859
+MUSETT_T3_DSSD_X95_E -62.3539 0.007611519999999999
+MUSETT_T3_DSSD_X96_E -56.131099999999996 0.00685191
+MUSETT_T3_DSSD_X97_E -55.920199999999994 0.0068261599999999995
+MUSETT_T3_DSSD_X98_E -55.1787 0.00673562
+MUSETT_T3_DSSD_X99_E -55.7836 0.0068095
+MUSETT_T3_DSSD_X100_E -55.958 0.00683076
+MUSETT_T3_DSSD_X101_E -55.9402 0.00682857
+MUSETT_T3_DSSD_X102_E -55.976 0.00683293
+MUSETT_T3_DSSD_X103_E -55.2555 0.00674498
+MUSETT_T3_DSSD_X104_E -55.479699999999994 0.00677237
+MUSETT_T3_DSSD_X105_E -56.0403 0.00684079
+MUSETT_T3_DSSD_X106_E -55.791199999999996 0.00681044
+MUSETT_T3_DSSD_X107_E -55.7016 0.00679948
+MUSETT_T3_DSSD_X108_E -56.7383 0.00692598
+MUSETT_T3_DSSD_X109_E -56.2939 0.0068717100000000005
+MUSETT_T3_DSSD_X110_E -55.8191 0.00681378
+MUSETT_T3_DSSD_X111_E -55.694199999999995 0.00679856
+MUSETT_T3_DSSD_X112_E -57.5541 0.007025559999999999
+MUSETT_T3_DSSD_X113_E -56.976800000000004 0.00695514
+MUSETT_T3_DSSD_X114_E -57.5184 0.00702123
+MUSETT_T3_DSSD_X115_E -56.9807 0.00695562
+MUSETT_T3_DSSD_X116_E -58.026199999999996 0.00708323
+MUSETT_T3_DSSD_X117_E -57.1911 0.00698127
+MUSETT_T3_DSSD_X118_E -57.432 0.007010710000000001
+MUSETT_T3_DSSD_X119_E -56.2909 0.00687137
+MUSETT_T3_DSSD_X120_E -56.7482 0.00692722
+MUSETT_T3_DSSD_X121_E -57.9017 0.00706808
+MUSETT_T3_DSSD_X122_E -57.5129 0.0070205599999999995
+MUSETT_T3_DSSD_X123_E -57.1124 0.0069717
+MUSETT_T3_DSSD_X124_E -57.6533 0.007037689999999999
+MUSETT_T3_DSSD_X125_E -56.762699999999995 0.00692904
+MUSETT_T3_DSSD_X126_E -57.8419 0.00706073
+MUSETT_T3_DSSD_X127_E -56.524800000000006 0.006899949999999999
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..30bae93039805da11900a9c5c7f47539ad5ceaf8
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_E 60.1947 -0.00734802
+MUSETT_T3_DSSD_Y1_E 58.9879 -0.0072007500000000006
+MUSETT_T3_DSSD_Y2_E 60.1322 -0.00734041
+MUSETT_T3_DSSD_Y3_E 59.9775 -0.00732152
+MUSETT_T3_DSSD_Y4_E 59.7874 -0.007298300000000001
+MUSETT_T3_DSSD_Y5_E 59.8934 -0.007311219999999999
+MUSETT_T3_DSSD_Y6_E 59.7986 -0.00729963
+MUSETT_T3_DSSD_Y7_E 60.2513 -0.0073549
+MUSETT_T3_DSSD_Y8_E 60.5895 -0.007396219999999999
+MUSETT_T3_DSSD_Y9_E 60.4366 -0.00737756
+MUSETT_T3_DSSD_Y10_E 60.189699999999995 -0.0073474000000000005
+MUSETT_T3_DSSD_Y11_E 59.8264 -0.0073031
+MUSETT_T3_DSSD_Y12_E 59.6872 -0.00728606
+MUSETT_T3_DSSD_Y13_E 59.622099999999996 -0.0072781799999999995
+MUSETT_T3_DSSD_Y14_E 60.5748 -0.00739447
+MUSETT_T3_DSSD_Y15_E 59.719199999999994 -0.00729002
+MUSETT_T3_DSSD_Y16_E 62.9631 -0.007686009999999999
+MUSETT_T3_DSSD_Y17_E 63.1869 -0.00771331
+MUSETT_T3_DSSD_Y18_E 62.2623 -0.00760044
+MUSETT_T3_DSSD_Y19_E 62.806 -0.0076668000000000005
+MUSETT_T3_DSSD_Y20_E 63.2468 -0.00772062
+MUSETT_T3_DSSD_Y21_E 63.5503 -0.007757590000000001
+MUSETT_T3_DSSD_Y22_E 63.0168 -0.00769256
+MUSETT_T3_DSSD_Y23_E 62.986599999999996 -0.00768882
+MUSETT_T3_DSSD_Y24_E 63.5222 -0.00775424
+MUSETT_T3_DSSD_Y25_E 63.478699999999996 -0.0077488999999999995
+MUSETT_T3_DSSD_Y26_E 62.6431 -0.00764692
+MUSETT_T3_DSSD_Y27_E 63.4299 -0.0077429199999999995
+MUSETT_T3_DSSD_Y28_E 62.4837 -0.00762745
+MUSETT_T3_DSSD_Y29_E 62.960699999999996 -0.00768572
+MUSETT_T3_DSSD_Y30_E 63.085300000000004 -0.0077009
+MUSETT_T3_DSSD_Y31_E 62.9694 -0.00768675
+MUSETT_T3_DSSD_Y32_E 56.0911 -0.00684715
+MUSETT_T3_DSSD_Y33_E 56.2286 -0.00686391
+MUSETT_T3_DSSD_Y34_E 55.8346 -0.00681583
+MUSETT_T3_DSSD_Y35_E 55.713 -0.00680096
+MUSETT_T3_DSSD_Y36_E 55.757 -0.00680633
+MUSETT_T3_DSSD_Y37_E 56.228 -0.0068638399999999995
+MUSETT_T3_DSSD_Y38_E 55.9259 -0.00682695
+MUSETT_T3_DSSD_Y39_E 55.539699999999996 -0.00677979
+MUSETT_T3_DSSD_Y40_E 55.412099999999995 -0.00676422
+MUSETT_T3_DSSD_Y41_E 56.185 -0.00685859
+MUSETT_T3_DSSD_Y42_E 55.9818 -0.00683375
+MUSETT_T3_DSSD_Y43_E 55.3708 -0.00675918
+MUSETT_T3_DSSD_Y44_E 55.7489 -0.00680537
+MUSETT_T3_DSSD_Y45_E 55.612300000000005 -0.00678871
+MUSETT_T3_DSSD_Y46_E 55.926300000000005 -0.006826990000000001
+MUSETT_T3_DSSD_Y47_E 55.801199999999994 -0.00681172
+MUSETT_T3_DSSD_Y48_E 56.6708 -0.0069179
+MUSETT_T3_DSSD_Y49_E 56.9495 -0.0069519000000000004
+MUSETT_T3_DSSD_Y50_E 57.1471 -0.006975970000000001
+MUSETT_T3_DSSD_Y51_E 56.9604 -0.00695318
+MUSETT_T3_DSSD_Y52_E 56.493900000000004 -0.006896289999999999
+MUSETT_T3_DSSD_Y53_E 56.9632 -0.00695364
+MUSETT_T3_DSSD_Y54_E 56.5816 -0.00690701
+MUSETT_T3_DSSD_Y55_E 57.0507 -0.006964209999999999
+MUSETT_T3_DSSD_Y56_E 57.0769 -0.00696747
+MUSETT_T3_DSSD_Y57_E 56.6238 -0.00691216
+MUSETT_T3_DSSD_Y58_E 57.493199999999995 -0.00701827
+MUSETT_T3_DSSD_Y59_E 57.089400000000005 -0.00696896
+MUSETT_T3_DSSD_Y60_E 57.5863 -0.00702963
+MUSETT_T3_DSSD_Y61_E 57.0447 -0.00696349
+MUSETT_T3_DSSD_Y62_E 56.777699999999996 -0.0069308899999999994
+MUSETT_T3_DSSD_Y63_E 57.4216 -0.00700961
+MUSETT_T3_DSSD_Y64_E 59.437599999999996 -0.007255620000000001
+MUSETT_T3_DSSD_Y65_E 59.994 -0.00732351
+MUSETT_T3_DSSD_Y66_E 59.523900000000005 -0.0072662000000000004
+MUSETT_T3_DSSD_Y67_E 59.3371 -0.00724336
+MUSETT_T3_DSSD_Y68_E 59.498599999999996 -0.007263029999999999
+MUSETT_T3_DSSD_Y69_E 58.818599999999996 -0.00718002
+MUSETT_T3_DSSD_Y70_E 59.3322 -0.00724276
+MUSETT_T3_DSSD_Y71_E 60.018699999999995 -0.00732659
+MUSETT_T3_DSSD_Y72_E 60.1805 -0.0073463
+MUSETT_T3_DSSD_Y73_E 59.4807 -0.00726089
+MUSETT_T3_DSSD_Y74_E 59.527699999999996 -0.0072666399999999996
+MUSETT_T3_DSSD_Y75_E 59.6351 -0.00727972
+MUSETT_T3_DSSD_Y76_E 59.581199999999995 -0.00727315
+MUSETT_T3_DSSD_Y77_E 59.4447 -0.00725647
+MUSETT_T3_DSSD_Y78_E 59.0484 -0.007208109999999999
+MUSETT_T3_DSSD_Y79_E 59.9895 -0.007322980000000001
+MUSETT_T3_DSSD_Y80_E 62.8554 -0.00767285
+MUSETT_T3_DSSD_Y81_E 62.7504 -0.00766003
+MUSETT_T3_DSSD_Y82_E 62.5327 -0.007633460000000001
+MUSETT_T3_DSSD_Y83_E 62.151300000000006 -0.00758691
+MUSETT_T3_DSSD_Y84_E 62.0186 -0.00757075
+MUSETT_T3_DSSD_Y85_E 62.7102 -0.007655090000000001
+MUSETT_T3_DSSD_Y86_E 62.2716 -0.0076015499999999995
+MUSETT_T3_DSSD_Y87_E 62.96 -0.00768565
+MUSETT_T3_DSSD_Y88_E 62.677800000000005 -0.0076512099999999994
+MUSETT_T3_DSSD_Y89_E 62.6261 -0.0076448900000000005
+MUSETT_T3_DSSD_Y90_E 61.8783 -0.00755359
+MUSETT_T3_DSSD_Y91_E 61.999199999999995 -0.00756832
+MUSETT_T3_DSSD_Y92_E 61.924699999999994 -0.00755927
+MUSETT_T3_DSSD_Y93_E 61.995599999999996 -0.00756788
+MUSETT_T3_DSSD_Y94_E 61.9605 -0.00756357
+MUSETT_T3_DSSD_Y95_E 61.8336 -0.00754812
+MUSETT_T3_DSSD_Y96_E 56.7314 -0.00692523
+MUSETT_T3_DSSD_Y97_E 56.9099 -0.00694702
+MUSETT_T3_DSSD_Y98_E 56.3183 -0.00687484
+MUSETT_T3_DSSD_Y99_E 55.9465 -0.006829399999999999
+MUSETT_T3_DSSD_Y100_E 56.299800000000005 -0.00687252
+MUSETT_T3_DSSD_Y101_E 56.3287 -0.00687609
+MUSETT_T3_DSSD_Y102_E 55.9865 -0.0068343
+MUSETT_T3_DSSD_Y103_E 55.996300000000005 -0.006835460000000001
+MUSETT_T3_DSSD_Y104_E 55.8581 -0.006818609999999999
+MUSETT_T3_DSSD_Y105_E 56.336400000000005 -0.006876999999999999
+MUSETT_T3_DSSD_Y106_E 56.504400000000004 -0.00689753
+MUSETT_T3_DSSD_Y107_E 56.2804 -0.00687019
+MUSETT_T3_DSSD_Y108_E 55.8017 -0.006811759999999999
+MUSETT_T3_DSSD_Y109_E 55.903800000000004 -0.00682419
+MUSETT_T3_DSSD_Y110_E 56.6722 -0.00691805
+MUSETT_T3_DSSD_Y111_E 56.6689 -0.00691765
+MUSETT_T3_DSSD_Y112_E 57.102199999999996 -0.0069704699999999994
+MUSETT_T3_DSSD_Y113_E 57.033699999999996 -0.00696222
+MUSETT_T3_DSSD_Y114_E 57.102 -0.00697059
+MUSETT_T3_DSSD_Y115_E 57.0152 -0.0069599399999999995
+MUSETT_T3_DSSD_Y116_E 57.666599999999995 -0.00703944
+MUSETT_T3_DSSD_Y117_E 57.3273 -0.0069980599999999995
+MUSETT_T3_DSSD_Y118_E 56.838800000000006 -0.0069384
+MUSETT_T3_DSSD_Y119_E 57.642300000000006 -0.007036400000000001
+MUSETT_T3_DSSD_Y120_E 57.4724 -0.007015749999999999
+MUSETT_T3_DSSD_Y121_E 57.0092 -0.006959170000000001
+MUSETT_T3_DSSD_Y122_E 57.4276 -0.00701028
+MUSETT_T3_DSSD_Y123_E 57.1051 -0.00697094
+MUSETT_T3_DSSD_Y124_E 57.606 -0.00703198
+MUSETT_T3_DSSD_Y125_E 56.8527 -0.00694013
+MUSETT_T3_DSSD_Y126_E 57.287800000000004 -0.006993109999999999
+MUSETT_T3_DSSD_Y127_E 57.5267 -0.00702236
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0c66d17d1ef2704ec870f95f8fa20b5c6d1f2e47
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_T 936.261 -0.113591
+MUSETT_T3_DSSD_X1_T 949.597 -0.115254
+MUSETT_T3_DSSD_X2_T 954.137 -0.115822
+MUSETT_T3_DSSD_X3_T 956.021 -0.116042
+MUSETT_T3_DSSD_X4_T 948.148 -0.115096
+MUSETT_T3_DSSD_X5_T 962.715 -0.11686
+MUSETT_T3_DSSD_X6_T 967.087 -0.117385
+MUSETT_T3_DSSD_X7_T 972.268 -0.118019
+MUSETT_T3_DSSD_X8_T 970.481 -0.117779
+MUSETT_T3_DSSD_X9_T 968.226 -0.117496
+MUSETT_T3_DSSD_X10_T 970.608 -0.117795
+MUSETT_T3_DSSD_X11_T 982.826 -0.119273
+MUSETT_T3_DSSD_X12_T 972.655 -0.118031
+MUSETT_T3_DSSD_X13_T 978.966 -0.118805
+MUSETT_T3_DSSD_X14_T 976.646 -0.118524
+MUSETT_T3_DSSD_X15_T 1358.4 -0.119127
+MUSETT_T3_DSSD_X16_T 965.022 -0.117029
+MUSETT_T3_DSSD_X17_T 961.069 -0.116582
+MUSETT_T3_DSSD_X18_T 979.729 -0.11886
+MUSETT_T3_DSSD_X19_T 975.886 -0.118386
+MUSETT_T3_DSSD_X20_T 982.811 -0.119229
+MUSETT_T3_DSSD_X21_T 989.956 -0.120114
+MUSETT_T3_DSSD_X22_T 982.322 -0.119177
+MUSETT_T3_DSSD_X23_T 986.837 -0.119693
+MUSETT_T3_DSSD_X24_T 984.553 -0.119405
+MUSETT_T3_DSSD_X25_T 985.367 -0.119523
+MUSETT_T3_DSSD_X26_T 998.436 -0.12115
+MUSETT_T3_DSSD_X27_T 994.592 -0.120628
+MUSETT_T3_DSSD_X28_T 1004.55 -0.121885
+MUSETT_T3_DSSD_X29_T 997.75 -0.121035
+MUSETT_T3_DSSD_X30_T 999.387 -0.121233
+MUSETT_T3_DSSD_X31_T 994.205 -0.120654
+MUSETT_T3_DSSD_X32_T 895.626 -0.108693
+MUSETT_T3_DSSD_X33_T 901.788 -0.109485
+MUSETT_T3_DSSD_X34_T 909.669 -0.110421
+MUSETT_T3_DSSD_X35_T 902.809 -0.109588
+MUSETT_T3_DSSD_X36_T 908.707 -0.110301
+MUSETT_T3_DSSD_X37_T 917.184 -0.111327
+MUSETT_T3_DSSD_X38_T 918.636 -0.111495
+MUSETT_T3_DSSD_X39_T 927.002 -0.112521
+MUSETT_T3_DSSD_X40_T 934.79 -0.11347
+MUSETT_T3_DSSD_X41_T 928.489 -0.112717
+MUSETT_T3_DSSD_X42_T 925.669 -0.112335
+MUSETT_T3_DSSD_X43_T 450.0 -0.112964
+MUSETT_T3_DSSD_X44_T 932.907 -0.113245
+MUSETT_T3_DSSD_X45_T 927.364 -0.11258
+MUSETT_T3_DSSD_X46_T 934.8 -0.113476
+MUSETT_T3_DSSD_X47_T 933.166 -0.113256
+MUSETT_T3_DSSD_X48_T 863.882 -0.104661
+MUSETT_T3_DSSD_X49_T 863.742 -0.104634
+MUSETT_T3_DSSD_X50_T 876.032 -0.106155
+MUSETT_T3_DSSD_X51_T 885.987 -0.107364
+MUSETT_T3_DSSD_X52_T 886.077 -0.107368
+MUSETT_T3_DSSD_X53_T 882.141 -0.106861
+MUSETT_T3_DSSD_X54_T 894.386 -0.108382
+MUSETT_T3_DSSD_X55_T 897.465 -0.108733
+MUSETT_T3_DSSD_X56_T 894.9 -0.10844
+MUSETT_T3_DSSD_X57_T 900.295 -0.10908
+MUSETT_T3_DSSD_X58_T 895.793 -0.108538
+MUSETT_T3_DSSD_X59_T 895.372 -0.10849
+MUSETT_T3_DSSD_X60_T 902.176 -0.109312
+MUSETT_T3_DSSD_X61_T 903.192 -0.109445
+MUSETT_T3_DSSD_X62_T 889.712 -0.107803
+MUSETT_T3_DSSD_X63_T 921.265 -0.108862
+MUSETT_T3_DSSD_X64_T 981.944 -0.119126
+MUSETT_T3_DSSD_X65_T 987.148 -0.119789
+MUSETT_T3_DSSD_X66_T 987.456 -0.119851
+MUSETT_T3_DSSD_X67_T 1003.28 -0.121753
+MUSETT_T3_DSSD_X68_T 1003.82 -0.121824
+MUSETT_T3_DSSD_X69_T 1000.66 -0.121446
+MUSETT_T3_DSSD_X70_T 1004.35 -0.121893
+MUSETT_T3_DSSD_X71_T 1008.06 -0.122347
+MUSETT_T3_DSSD_X72_T 1004.22 -0.121883
+MUSETT_T3_DSSD_X73_T 1011.08 -0.122684
+MUSETT_T3_DSSD_X74_T 1019.46 -0.123722
+MUSETT_T3_DSSD_X75_T 1029.58 -0.124938
+MUSETT_T3_DSSD_X76_T 1011.08 -0.122709
+MUSETT_T3_DSSD_X77_T 1010.81 -0.12265
+MUSETT_T3_DSSD_X78_T 1022.22 -0.124061
+MUSETT_T3_DSSD_X79_T 1391.94 -0.123313
+MUSETT_T3_DSSD_X80_T 939.257 -0.11381
+MUSETT_T3_DSSD_X81_T 945.066 -0.114558
+MUSETT_T3_DSSD_X82_T 948.6 -0.114986
+MUSETT_T3_DSSD_X83_T 947.122 -0.114804
+MUSETT_T3_DSSD_X84_T 961.987 -0.116619
+MUSETT_T3_DSSD_X85_T 964.59 -0.11693
+MUSETT_T3_DSSD_X86_T 959.397 -0.116299
+MUSETT_T3_DSSD_X87_T 964.355 -0.116863
+MUSETT_T3_DSSD_X88_T 975.002 -0.118161
+MUSETT_T3_DSSD_X89_T 971.077 -0.117687
+MUSETT_T3_DSSD_X90_T 976.04 -0.118304
+MUSETT_T3_DSSD_X91_T 983.975 -0.119256
+MUSETT_T3_DSSD_X92_T 983.617 -0.119241
+MUSETT_T3_DSSD_X93_T 983.301 -0.119186
+MUSETT_T3_DSSD_X94_T 980.734 -0.118879
+MUSETT_T3_DSSD_X95_T 975.837 -0.118278
+MUSETT_T3_DSSD_X96_T 858.761 -0.104124
+MUSETT_T3_DSSD_X97_T 863.527 -0.104728
+MUSETT_T3_DSSD_X98_T 863.719 -0.104753
+MUSETT_T3_DSSD_X99_T 869.797 -0.105492
+MUSETT_T3_DSSD_X100_T 879.582 -0.106693
+MUSETT_T3_DSSD_X101_T 874.971 -0.10614
+MUSETT_T3_DSSD_X102_T 879.706 -0.106708
+MUSETT_T3_DSSD_X103_T 878.738 -0.106567
+MUSETT_T3_DSSD_X104_T 887.854 -0.107671
+MUSETT_T3_DSSD_X105_T 892.385 -0.108216
+MUSETT_T3_DSSD_X106_T 884.225 -0.107225
+MUSETT_T3_DSSD_X107_T 894.981 -0.108561
+MUSETT_T3_DSSD_X108_T 895.51 -0.108609
+MUSETT_T3_DSSD_X109_T 891.851 -0.108191
+MUSETT_T3_DSSD_X110_T 901.356 -0.109337
+MUSETT_T3_DSSD_X111_T 900.727 -0.108709
+MUSETT_T3_DSSD_X112_T 855.952 -0.103629
+MUSETT_T3_DSSD_X113_T 865.7 -0.10481
+MUSETT_T3_DSSD_X114_T 866.161 -0.1049
+MUSETT_T3_DSSD_X115_T 872.362 -0.105647
+MUSETT_T3_DSSD_X116_T 1490.13 -0.126949
+MUSETT_T3_DSSD_X117_T 876.561 -0.106145
+MUSETT_T3_DSSD_X118_T 884.075 -0.107055
+MUSETT_T3_DSSD_X119_T 881.54 -0.10675
+MUSETT_T3_DSSD_X120_T 884.679 -0.107137
+MUSETT_T3_DSSD_X121_T 888.637 -0.107599
+MUSETT_T3_DSSD_X122_T 884.493 -0.107093
+MUSETT_T3_DSSD_X123_T 893.964 -0.108252
+MUSETT_T3_DSSD_X124_T 888.064 -0.107522
+MUSETT_T3_DSSD_X125_T 894.536 -0.108336
+MUSETT_T3_DSSD_X126_T 882.088 -0.106793
+MUSETT_T3_DSSD_X127_T 890.98 -0.107896
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..164e1edc8a5c9527382a6866a680275ec137b39a
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_T 916.716 -0.11121
+MUSETT_T3_DSSD_Y1_T 924.259 -0.112154
+MUSETT_T3_DSSD_Y2_T 933.256 -0.113241
+MUSETT_T3_DSSD_Y3_T 942.953 -0.114409
+MUSETT_T3_DSSD_Y4_T 939.901 -0.114032
+MUSETT_T3_DSSD_Y5_T 947.878 -0.114994
+MUSETT_T3_DSSD_Y6_T 952.484 -0.115552
+MUSETT_T3_DSSD_Y7_T 952.713 -0.115546
+MUSETT_T3_DSSD_Y8_T 960.463 -0.116506
+MUSETT_T3_DSSD_Y9_T 964.543 -0.117006
+MUSETT_T3_DSSD_Y10_T 966.84 -0.117251
+MUSETT_T3_DSSD_Y11_T 965.68 -0.117093
+MUSETT_T3_DSSD_Y12_T 975.182 -0.118272
+MUSETT_T3_DSSD_Y13_T 981.614 -0.119048
+MUSETT_T3_DSSD_Y14_T 973.869 -0.118075
+MUSETT_T3_DSSD_Y15_T 981.076 -0.118941
+MUSETT_T3_DSSD_Y16_T 967.206 -0.117174
+MUSETT_T3_DSSD_Y17_T 980.188 -0.118815
+MUSETT_T3_DSSD_Y18_T 981.134 -0.118931
+MUSETT_T3_DSSD_Y19_T 986.719 -0.119638
+MUSETT_T3_DSSD_Y20_T 992.386 -0.12034
+MUSETT_T3_DSSD_Y21_T 1002.21 -0.121551
+MUSETT_T3_DSSD_Y22_T 997.474 -0.120998
+MUSETT_T3_DSSD_Y23_T 992.008 -0.120321
+MUSETT_T3_DSSD_Y24_T 998.021 -0.121073
+MUSETT_T3_DSSD_Y25_T 1004.15 -0.121839
+MUSETT_T3_DSSD_Y26_T 1004.31 -0.121856
+MUSETT_T3_DSSD_Y27_T 1010.69 -0.122649
+MUSETT_T3_DSSD_Y28_T 1013.79 -0.12302
+MUSETT_T3_DSSD_Y29_T 1002.56 -0.121668
+MUSETT_T3_DSSD_Y30_T 1011.72 -0.122794
+MUSETT_T3_DSSD_Y31_T 1012.54 -0.122927
+MUSETT_T3_DSSD_Y32_T 868.546 -0.105446
+MUSETT_T3_DSSD_Y33_T 865.415 -0.105092
+MUSETT_T3_DSSD_Y34_T 870.615 -0.10573
+MUSETT_T3_DSSD_Y35_T 867.501 -0.105345
+MUSETT_T3_DSSD_Y36_T 879.085 -0.106744
+MUSETT_T3_DSSD_Y37_T 878.372 -0.106654
+MUSETT_T3_DSSD_Y38_T 883.834 -0.107294
+MUSETT_T3_DSSD_Y39_T 892.468 -0.108361
+MUSETT_T3_DSSD_Y40_T 889.652 -0.10799
+MUSETT_T3_DSSD_Y41_T 893.582 -0.10846
+MUSETT_T3_DSSD_Y42_T 902.982 -0.109593
+MUSETT_T3_DSSD_Y43_T 899.542 -0.109195
+MUSETT_T3_DSSD_Y44_T 894.786 -0.108568
+MUSETT_T3_DSSD_Y45_T 904.997 -0.109804
+MUSETT_T3_DSSD_Y46_T 908.733 -0.110263
+MUSETT_T3_DSSD_Y47_T 901.41 -0.109382
+MUSETT_T3_DSSD_Y48_T 874.853 -0.105997
+MUSETT_T3_DSSD_Y49_T 880.713 -0.106772
+MUSETT_T3_DSSD_Y50_T 892.705 -0.108217
+MUSETT_T3_DSSD_Y51_T 895.218 -0.108527
+MUSETT_T3_DSSD_Y52_T 889.343 -0.107825
+MUSETT_T3_DSSD_Y53_T 897.932 -0.108862
+MUSETT_T3_DSSD_Y54_T 902.448 -0.109456
+MUSETT_T3_DSSD_Y55_T 908.367 -0.110152
+MUSETT_T3_DSSD_Y56_T 912.74 -0.110718
+MUSETT_T3_DSSD_Y57_T 911.519 -0.11056
+MUSETT_T3_DSSD_Y58_T 920.413 -0.111636
+MUSETT_T3_DSSD_Y59_T 906.185 -0.109934
+MUSETT_T3_DSSD_Y60_T 919.759 -0.111581
+MUSETT_T3_DSSD_Y61_T 920.555 -0.111694
+MUSETT_T3_DSSD_Y62_T 915.715 -0.1111
+MUSETT_T3_DSSD_Y63_T 918.454 -0.11144
+MUSETT_T3_DSSD_Y64_T 901.244 -0.109216
+MUSETT_T3_DSSD_Y65_T 907.742 -0.110026
+MUSETT_T3_DSSD_Y66_T 908.334 -0.110106
+MUSETT_T3_DSSD_Y67_T 916.785 -0.11114
+MUSETT_T3_DSSD_Y68_T 928.178 -0.11252
+MUSETT_T3_DSSD_Y69_T 936.612 -0.113544
+MUSETT_T3_DSSD_Y70_T 929.327 -0.112672
+MUSETT_T3_DSSD_Y71_T 927.889 -0.112491
+MUSETT_T3_DSSD_Y72_T 944.015 -0.114462
+MUSETT_T3_DSSD_Y73_T 936.5 -0.11354
+MUSETT_T3_DSSD_Y74_T 952.669 -0.115517
+MUSETT_T3_DSSD_Y75_T 949.121 -0.115086
+MUSETT_T3_DSSD_Y76_T 961.66 -0.116618
+MUSETT_T3_DSSD_Y77_T 950.324 -0.115232
+MUSETT_T3_DSSD_Y78_T 943.005 -0.114343
+MUSETT_T3_DSSD_Y79_T 948.05 -0.114947
+MUSETT_T3_DSSD_Y80_T 967.814 -0.117288
+MUSETT_T3_DSSD_Y81_T 979.35 -0.118727
+MUSETT_T3_DSSD_Y82_T 985.387 -0.119474
+MUSETT_T3_DSSD_Y83_T 988.884 -0.119909
+MUSETT_T3_DSSD_Y84_T 990.688 -0.120116
+MUSETT_T3_DSSD_Y85_T 997.728 -0.120975
+MUSETT_T3_DSSD_Y86_T 994.598 -0.120606
+MUSETT_T3_DSSD_Y87_T 996.045 -0.12076
+MUSETT_T3_DSSD_Y88_T 1000.77 -0.121336
+MUSETT_T3_DSSD_Y89_T 1011.99 -0.122713
+MUSETT_T3_DSSD_Y90_T 1015.05 -0.1231
+MUSETT_T3_DSSD_Y91_T 1003.4 -0.121678
+MUSETT_T3_DSSD_Y92_T 1011.74 -0.122697
+MUSETT_T3_DSSD_Y93_T 1014.96 -0.123087
+MUSETT_T3_DSSD_Y94_T 1007.34 -0.122144
+MUSETT_T3_DSSD_Y95_T 1008.36 -0.122274
+MUSETT_T3_DSSD_Y96_T 871.329 -0.105573
+MUSETT_T3_DSSD_Y97_T 868.142 -0.105224
+MUSETT_T3_DSSD_Y98_T 872.865 -0.105791
+MUSETT_T3_DSSD_Y99_T 882.085 -0.106904
+MUSETT_T3_DSSD_Y100_T 889.159 -0.107789
+MUSETT_T3_DSSD_Y101_T 888.956 -0.107742
+MUSETT_T3_DSSD_Y102_T 899.906 -0.109085
+MUSETT_T3_DSSD_Y103_T 892.033 -0.108126
+MUSETT_T3_DSSD_Y104_T 899.207 -0.108999
+MUSETT_T3_DSSD_Y105_T 891.613 -0.108068
+MUSETT_T3_DSSD_Y106_T 891.136 -0.108006
+MUSETT_T3_DSSD_Y107_T 900.207 -0.109125
+MUSETT_T3_DSSD_Y108_T 902.911 -0.109439
+MUSETT_T3_DSSD_Y109_T 900.692 -0.109168
+MUSETT_T3_DSSD_Y110_T 896.133 -0.108625
+MUSETT_T3_DSSD_Y111_T 902.665 -0.109416
+MUSETT_T3_DSSD_Y112_T 888.587 -0.107554
+MUSETT_T3_DSSD_Y113_T 895.918 -0.108473
+MUSETT_T3_DSSD_Y114_T 898.97 -0.108848
+MUSETT_T3_DSSD_Y115_T 894.394 -0.108292
+MUSETT_T3_DSSD_Y116_T 902.574 -0.109288
+MUSETT_T3_DSSD_Y117_T 907.964 -0.109943
+MUSETT_T3_DSSD_Y118_T 906.564 -0.109765
+MUSETT_T3_DSSD_Y119_T 905.798 -0.109672
+MUSETT_T3_DSSD_Y120_T 912.702 -0.110512
+MUSETT_T3_DSSD_Y121_T 921.335 -0.111588
+MUSETT_T3_DSSD_Y122_T 924.085 -0.111915
+MUSETT_T3_DSSD_Y123_T 906.564 -0.109772
+MUSETT_T3_DSSD_Y124_T 910.838 -0.11029
+MUSETT_T3_DSSD_Y125_T 916.176 -0.110947
+MUSETT_T3_DSSD_Y126_T 917.763 -0.111116
+MUSETT_T3_DSSD_Y127_T 925.891 -0.112131
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/calib_SanityCheck_R308/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..9ad991c7e68cfa35cdedb80af41fe8229c43e950
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/cal_to_NPTOOL.py
@@ -0,0 +1,147 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 0
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/calibE0.cal1 b/Projects/MUSETT/calibration/calib_SanityCheck_R308/calibE0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..5f77c3d04858dd864b1411813497cfbbcbbac345
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/calibE0.cal1
@@ -0,0 +1,1024 @@
+-61662.3 7.52711 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61862.3 7.5515 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61786 7.54225 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61488.6 7.50587 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61896.8 7.55579 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61641.5 7.52453 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61399.4 7.49501 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61236.4 7.47509 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-60986.5 7.4446 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62681.3 7.65148 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62393.5 7.61631 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61925.3 7.55919 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62029.9 7.57195 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62417.6 7.61932 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61275.3 7.47982 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63058.3 7.69749 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62722.2 7.65646 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62134.9 7.58477 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62458.1 7.62423 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63902.7 7.80057 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62519.9 7.63181 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62297.5 7.60463 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62659.6 7.64878 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62852.3 7.67238 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62985.4 7.68854 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63073.7 7.69941 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62632 7.64548 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-63013.4 7.69203 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62579 7.63901 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63401.5 7.7394 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62630 7.64523 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56399 6.88462 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56789.2 6.93221 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55564.2 6.78269 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56333.4 6.87654 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-56040.6 6.84084 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+-10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55909.7 6.82487 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55658.4 6.79421 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56211.8 6.86172 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55874 6.82053 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56164.8 6.85597 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56307.5 6.87343 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56382 6.88247 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+-10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+-10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55911.5 6.82508 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57927.5 7.07116 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57924.8 7.07081 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57746 7.049 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57343.1 6.99988 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58172.2 7.10106 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57237.7 6.98697 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57876.3 7.06488 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57523.5 7.02188 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58500.7 7.14114 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57786.5 7.05393 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57300.4 6.99465 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57790.9 7.05448 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57203.4 6.9828 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57985 7.0782 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57888.7 7.06644 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58127.1 7.09555 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63452.4 7.74561 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63612.1 7.76511 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63338.7 7.73174 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64021.8 7.81515 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63197.4 7.71456 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63968.4 7.80864 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63853.8 7.79469 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63356.4 7.73397 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64117.7 7.82683 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63242.6 7.72007 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63972.5 7.80918 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63941.4 7.8053 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63651.8 7.77009 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63754.3 7.78255 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64292.8 7.84837 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64690.6 7.89693 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61215.8 7.47271 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60865.1 7.42995 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61147.3 7.46434 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61469.6 7.50369 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61379.1 7.49269 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61888.7 7.55484 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61403.2 7.49554 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62166.5 7.58877 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61896.4 7.55578 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61572.1 7.51618 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61720.5 7.53424 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62796.5 7.66557 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61868.1 7.55224 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60999.1 7.44621 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61368.2 7.49129 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62166.8 7.58877 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57169.7 6.97872 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57564 7.02681 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57724.2 7.04642 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57113.1 6.97176 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58126.5 7.0955 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57746.5 7.04909 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57665.4 7.03921 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57244.7 6.98784 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57357.8 7.00171 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57943.6 7.0732 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57279.1 6.99197 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57628.2 7.03471 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58567.7 7.1494 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58013.5 7.08178 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57681.5 7.04111 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57795.4 7.05508 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59002.3 7.20244 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59192.2 7.22562 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58512.8 7.14267 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58671.3 7.16207 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58171.6 7.10101 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58350.5 7.12281 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.4 7.11445 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58508.2 7.1421 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58511.7 7.14253 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58653.9 7.15989 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58550.4 7.14724 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59318.4 7.24097 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57853 7.06214 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58498.4 7.14087 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58426.4 7.13213 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59512.6 7.26467 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60443.5 -7.37839 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60908.5 -7.43514 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61060.2 -7.45367 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59984.4 -7.32237 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60129.5 -7.3401 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60783.1 -7.41989 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60431 -7.37691 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60140.7 -7.34142 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59998.4 -7.32403 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60395.7 -7.37254 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60028.3 -7.32774 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60887.8 -7.43267 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61066.5 -7.45441 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61164 -7.46632 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60739.8 -7.41458 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60443.5 -7.37838 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60544.4 -7.39071 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60303 -7.3612 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60143.3 -7.34174 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60328.6 -7.3644 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60395.9 -7.37256 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60276 -7.35798 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59684.2 -7.28572 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60187.9 -7.34719 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.4 -7.29698 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60128.6 -7.33997 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60450.5 -7.37922 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59890.5 -7.31089 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59647.3 -7.2812 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59834.9 -7.30412 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60999.1 -7.44624 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56552.5 -6.90341 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57074.5 -6.96718 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56536.5 -6.9015 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57036.3 -6.96248 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57405.1 -7.0075 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57259.2 -6.98972 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56419.6 -6.88718 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56461.1 -6.89226 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56951.6 -6.95213 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56800 -6.93367 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56600.5 -6.90927 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56511.5 -6.8984 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56870.5 -6.94221 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56993.6 -6.95727 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57679.7 -7.04103 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56560.6 -6.90438 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57546.6 -7.02477 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57035.8 -6.96245 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56800.6 -6.93377 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56505.8 -6.89773 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57161.4 -6.97779 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56855 -6.94036 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56619.7 -6.91168 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57621.8 -7.03399 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57359.7 -7.00197 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56825.9 -6.93676 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57031.5 -6.96191 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57239.3 -6.98735 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57254.8 -6.98918 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57074.4 -6.96716 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57574.5 -7.02822 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57912.4 -7.06943 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+61002.8 -7.44668 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61155.3 -7.4653 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61053.3 -7.45282 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61373.4 -7.4919 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60489.7 -7.38403 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61580.3 -7.51716 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60895.6 -7.4336 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60400.3 -7.3731 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61676.2 -7.52889 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61107.3 -7.45944 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61113.2 -7.46014 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61230.4 -7.47441 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60593.4 -7.39669 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61412.2 -7.49666 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61676.7 -7.52894 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61114.5 -7.46029 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62335.5 -7.60932 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61110.8 -7.45984 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61589.5 -7.51825 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62064.5 -7.57624 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61004.9 -7.44692 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60900.3 -7.43416 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61810.8 -7.54524 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61439.5 -7.49992 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61153 -7.46501 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61309.9 -7.48418 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61160.3 -7.46589 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61470.5 -7.50377 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61862.5 -7.55157 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61676 -7.52886 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62387.3 -7.61565 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60904.4 -7.43464 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56381.2 -6.88248 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56647.7 -6.91501 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56593.9 -6.90848 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56466.6 -6.8929 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56205.1 -6.86097 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56339.2 -6.87735 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56071.1 -6.84463 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56586.9 -6.90762 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56922.8 -6.94858 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56073.7 -6.84493 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57080.7 -6.96791 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57414.3 -7.00859 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56582.5 -6.9071 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56583.6 -6.90725 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56679.2 -6.91888 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56421.5 -6.8874 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56904.4 -6.94638 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57127.8 -6.97364 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56965.6 -6.9538 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56822.1 -6.93632 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57302 -6.99491 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.2 -6.90362 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56421.8 -6.88745 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56645.4 -6.91475 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57398.8 -7.00675 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57237.3 -6.98696 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56689 -6.92007 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56011.6 -6.83742 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56467.7 -6.89303 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55922.3 -6.8265 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56957.2 -6.95281 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56586.5 -6.90758 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62384.5 7.61517 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62210.4 7.59389 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62273.5 7.60161 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62019.1 7.5706 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61476.5 7.50432 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61597 7.51908 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62319.3 7.60717 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61416.3 7.49697 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61327.1 7.48611 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61486.5 7.50558 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61673.4 7.52832 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61732.6 7.53556 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61963.2 7.56376 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61418.2 7.49719 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61209 7.47165 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61987.6 7.56667 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62554.4 7.63592 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61756 7.53848 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62264.1 7.60048 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61953.7 7.56258 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62913.2 7.67967 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62120.9 7.583 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62709 7.65477 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62390 7.61587 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62229.7 7.59629 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61997.7 7.56794 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-62036.5 7.57262 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61752 7.53798 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61655.6 7.52623 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62767.5 7.66194 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61803 7.54422 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62761.8 7.66122 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58303.5 7.11703 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58372.5 7.12549 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58359.9 7.12397 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58262.2 7.11204 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58041 7.08509 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58261 7.11167 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58055.7 7.0867 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58647.4 7.15904 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58203.9 7.10488 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58893.9 7.18895 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58051.5 7.08632 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58539.4 7.14586 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58554.4 7.14758 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59335.9 7.24309 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58725.8 7.16875 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58465.7 7.13677 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.8 7.06394 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58529.8 7.14462 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-57972.8 7.07665 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57725.1 7.04637 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57946.6 7.07339 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57919.5 7.07013 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57971 7.07643 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57812.9 7.05708 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58059.5 7.08722 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57860.9 7.06295 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58481.2 7.13869 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57673.5 7.04005 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57733.9 7.04747 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58243 7.10961 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.2 7.09391 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58246.7 7.11007 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61009.3 7.44733 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61630.7 7.52317 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61471.8 7.50372 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61716.9 7.53361 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61893.5 7.55524 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.6 7.48633 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61623.4 7.52221 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61911.8 7.55752 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61279.1 7.48026 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62438.1 7.62175 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61937.8 7.56062 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62078.7 7.57786 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61496.4 7.50682 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61721.2 7.53417 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61321.1 7.48534 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61930.9 7.55971 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63425.9 7.7423 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63726 7.77898 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.8 7.83822 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63931 7.80396 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64114.7 7.8264 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63881.4 7.7979 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64089.1 7.82321 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64226 7.83998 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64162.8 7.83225 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64227.3 7.84014 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63324.3 7.72992 0.00 !Mu1ChX91ERaw[C.o2At2Ch11]
+-63377.9 7.73646 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64592.4 7.88475 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64051.2 7.81864 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63785.3 7.78625 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63425.1 7.74221 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56277.1 6.86963 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56696.4 6.92087 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56524.2 6.89973 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56421.9 6.88734 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56516.9 6.89896 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-56987.1 6.95627 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57341.9 6.99957 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56590.4 6.90785 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56842.5 6.93859 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57029.9 6.96151 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57840.1 7.06034 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57754.1 7.04987 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57718.4 7.04556 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57495 7.01832 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57673.7 7.0401 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-58035.2 7.08421 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57254.3 6.98888 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57309.6 6.99565 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56813.7 6.93513 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57684.3 7.04141 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57273.6 6.99128 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57263.3 6.99002 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56331.2 6.87626 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58331 7.12035 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57448.3 7.0126 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57763.7 7.05109 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57724.2 7.04628 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57458.3 7.01385 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57586.5 7.02947 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57671.5 7.03982 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57076.6 6.9672 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57818.9 7.05784 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59628.2 -7.27891 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60484.2 -7.3834 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59719.3 -7.29006 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59358 -7.24601 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60209.4 -7.34991 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60023.9 -7.32724 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59427.4 -7.25442 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59479.8 -7.26081 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.6 -7.25995 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59661.5 -7.28303 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59523 -7.2661 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59520.7 -7.26582 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60207.7 -7.3497 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59281.6 -7.23662 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59499.5 -7.26329 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59822.2 -7.30262 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62231 -7.59672 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62517.6 -7.63166 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62462.5 -7.62493 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62047 -7.57417 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62207.3 -7.59375 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62362.9 -7.61277 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62017.5 -7.57064 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61713.9 -7.53355 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61449.1 -7.50123 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62086.1 -7.57898 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62077.7 -7.57796 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62287.6 -7.60362 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62027.9 -7.5719 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61668.6 -7.52799 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61804.8 -7.54468 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115.7 -6.85022 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56255.7 -6.86728 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55634.9 -6.79153 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55640.9 -6.79227 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55384.3 -6.76092 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56420.4 -6.88745 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55380.9 -6.76051 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55934.8 -6.82817 0.00 !Mu1ChY40ERaw[C.o3At3Ch8]
+56036.5 -6.84053 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56149.2 -6.85434 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55509.9 -6.77625 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56637.3 -6.9139 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55637.9 -6.79188 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55730.3 -6.80315 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55751.6 -6.80582 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55760.9 -6.80693 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.7 -6.9819 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56616.7 -6.91132 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56565.1 -6.90504 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56007.5 -6.83694 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56838.9 -6.93846 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56277 -6.86982 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56475.8 -6.89415 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56394.9 -6.88425 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57286.1 -6.99307 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57107.7 -6.97128 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56704.7 -6.92209 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57329.2 -6.99832 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57398.8 -7.00677 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57025.8 -6.96125 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56179.4 -6.85794 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57294.5 -6.99407 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61036 -7.45079 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61615.2 -7.52147 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61327.7 -7.48646 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61616.9 -7.52169 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61289.5 -7.48175 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60072.3 -7.33313 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60461.8 -7.38072 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61147.5 -7.46439 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60324.6 -7.36394 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61243.3 -7.47609 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60892.2 -7.43321 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60362.6 -7.36861 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60563.4 -7.39312 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60969.5 -7.44272 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60632 -7.40146 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61354.5 -7.48966 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61129 -7.46218 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61142.4 -7.46376 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61098.2 -7.45836 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60505 -7.38602 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60475.6 -7.38236 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61198.3 -7.47058 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60653.8 -7.40421 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60610.3 -7.39887 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61084.6 -7.45673 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61281.6 -7.48082 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60759.5 -7.41709 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60908.7 -7.43532 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60520.1 -7.38782 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61330.5 -7.48678 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61609.9 -7.52084 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60752.2 -7.41622 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55866.2 -6.81972 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55510.1 -6.77629 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55739.1 -6.80422 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55602.7 -6.78757 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55779.5 -6.80916 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55452.6 -6.76931 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55433.8 -6.76695 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56175.8 -6.85753 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55295 -6.75003 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55267.6 -6.74664 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55913.4 -6.82548 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55219 -6.74076 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55914.7 -6.82563 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56088.3 -6.84683 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56128.7 -6.85177 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.7 -6.9068 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54791.9 -6.68861 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55573.5 -6.78397 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55177.3 -6.73564 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.9 -6.722 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55271.1 -6.74706 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55426.4 -6.76607 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55308.9 -6.7517 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55560.5 -6.78242 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55828.4 -6.8151 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55461.9 -6.77042 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.4 -6.69404 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55154.2 -6.73277 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55218.5 -6.74067 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55198.9 -6.73821 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55347.2 -6.75638 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56270.5 -6.86904 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62771.8 7.66248 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62536.2 7.63367 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62923.2 7.68092 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62099.2 7.5803 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62071.6 7.577 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62762.5 7.66131 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62536.6 7.63372 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62863.4 7.6736 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62977.6 7.68755 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62169.2 7.58889 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62486.2 7.62758 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62494 7.62855 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62591.4 7.6404 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62596.5 7.64104 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62693.3 7.65283 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63431.9 7.74304 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62275.5 7.60186 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61847 7.54956 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61648.9 7.52542 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61472.2 7.5038 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61487.7 7.50573 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62323.6 7.60772 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62160.6 7.58783 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61801.5 7.54404 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61589.4 7.51813 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61837.9 7.54843 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61997.2 7.56788 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61886.9 7.55441 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61669.6 7.52787 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61317.6 7.48493 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62385.4 7.6153 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61544.8 7.51271 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59005.1 7.20263 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58125.4 7.0952 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58621 7.15577 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58420.8 7.13128 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58182.1 7.10215 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58179.5 7.10183 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58382.7 7.12665 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57951.6 7.074 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57619.4 7.03346 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58602.8 7.15349 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58763.6 7.17317 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58295.3 7.11601 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58611.5 7.15458 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58569.5 7.14945 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58368.6 7.12489 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58524.7 7.144 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57829.7 7.05919 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57177.7 6.97958 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58151 7.0984 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57925 7.07083 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57600.2 7.03119 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57219.8 6.9847 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57855.4 7.06228 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57682.2 7.04116 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57912.6 7.06929 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57598.9 7.03102 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57919.6 7.07016 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.5 6.9577 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57498.2 7.01871 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56729.1 6.92483 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57500.6 7.01901 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57910.6 7.06904 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63311 7.72824 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64991.8 7.93347 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-63994.5 7.8117 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63750.3 7.78186 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64408.5 7.86228 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63629 7.76702 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63438.8 7.74388 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63358.3 7.73399 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63144.6 7.70793 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63812.1 7.7894 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63662.4 7.77117 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63876.9 7.79733 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63771.1 7.78444 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63652.1 7.7699 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63600.3 7.76358 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63256.4 7.72158 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63333.7 7.73107 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63150 7.70859 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63204.5 7.71524 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63982.1 7.81015 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63771.3 7.78446 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63682.7 7.7737 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63921.1 7.80269 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63090.3 7.7013 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63548.7 7.75733 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63345.7 7.73257 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63537.7 7.75593 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63267.1 7.72292 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64614.3 7.88733 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63737 7.78019 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63627.5 7.76682 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59011.6 7.20345 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58536.3 7.14543 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58294.5 7.11592 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58764.5 7.17328 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59388.2 7.24938 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59353.9 7.24523 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58868.9 7.18606 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59020.4 7.20454 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59051.2 7.20827 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59067.7 7.21031 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58780.6 7.17527 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59011.8 7.20348 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58685.6 7.16369 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60313.6 7.36243 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58947.7 7.1956 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58640.6 7.15819 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59256.4 7.23333 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59391.4 7.24979 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59741.5 7.29254 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59153 7.2207 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59659.3 7.28255 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60043.5 7.32941 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59492.9 7.26218 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59355.9 7.2455 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60079 7.3337 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58759.7 7.17268 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59106.3 7.21501 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59356.4 7.24556 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58905.4 7.19045 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58909 7.19091 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59139.8 7.21905 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59244.4 7.23184 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63180.3 -7.71254 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63958.5 -7.80757 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62563.9 -7.63734 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63393.8 -7.73864 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62965.3 -7.6863 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62695.2 -7.65332 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63071 -7.6992 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62684.7 -7.65205 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62805.2 -7.66674 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63405.9 -7.74008 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+63006 -7.69129 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62613.8 -7.64344 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62135.8 -7.58506 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62797.8 -7.66584 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+63003.9 -7.69104 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63451.5 -7.74566 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61680.4 -7.52939 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60963.7 -7.44202 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60731.3 -7.4136 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62044.4 -7.57386 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.9 -7.46121 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60932 -7.4381 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62091.8 -7.57965 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61042.5 -7.45157 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61080.2 -7.45622 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61569 -7.51583 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61088.9 -7.45724 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61401.8 -7.49545 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61590.8 -7.51854 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61456.7 -7.50214 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61348.2 -7.48891 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61814.6 -7.54586 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56310.4 -6.87387 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56475.6 -6.89413 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56843.7 -6.93897 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56709.9 -6.9227 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+57006.5 -6.95894 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56922.7 -6.94871 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56395.9 -6.88437 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56437.5 -6.88946 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56168.1 -6.85657 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58137.4 -7.09691 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56752.1 -6.92786 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56268.3 -6.86879 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57248.3 -6.98843 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57237.7 -6.98715 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57062.5 -6.96574 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56700.2 -6.92152 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57609.4 -7.03252 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57045.1 -6.96368 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57893.4 -7.06716 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57432.1 -7.01085 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57327.3 -6.9981 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58593.6 -7.15267 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57713.2 -7.04516 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57801 -7.05589 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57750.1 -7.0497 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57564.6 -7.02705 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57513.2 -7.02079 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58298.6 -7.11669 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57883.6 -7.066 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57333.9 -6.99889 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57877.7 -7.06529 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58222.3 -7.10732 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59352.4 -7.24534 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59653 -7.28202 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59466.7 -7.25926 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60421 -7.37573 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59563.3 -7.27104 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59865.2 -7.30789 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59568.1 -7.27161 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59903.1 -7.31254 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59874.2 -7.30895 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59565.9 -7.27135 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59951.4 -7.31844 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60102.6 -7.33689 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59329 -7.24242 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59973.3 -7.32106 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59369.2 -7.24734 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60205.5 -7.34945 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60559.1 -7.39262 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61223.9 -7.47379 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60555.5 -7.39217 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61267.8 -7.47916 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61183.2 -7.46879 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60877.4 -7.43143 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60964.7 -7.44213 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61316.7 -7.48517 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60889.6 -7.43289 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60834.9 -7.42623 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61475.4 -7.50452 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60713.8 -7.41149 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61139.9 -7.46349 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60586.2 -7.39585 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61091.2 -7.45753 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61463 -7.50289 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56883.7 -6.94393 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55958.3 -6.83096 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56259.7 -6.86775 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56620.9 -6.91184 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56390.1 -6.88368 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56741.9 -6.92663 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55881.7 -6.82158 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57242.5 -6.98773 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56047.6 -6.84185 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56706.4 -6.92227 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56618.3 -6.91153 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57516.3 -7.02116 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57052.7 -6.96458 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56701.3 -6.92167 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57023.2 -6.96095 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56155.3 -6.85506 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56480.1 -6.89468 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57291 -6.99365 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56601.1 -6.90948 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56864.7 -6.94167 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56504.8 -6.89772 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56531 -6.90085 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56803.1 -6.93407 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56744.6 -6.92696 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56339.6 -6.87753 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57094.7 -6.96973 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57471.8 -7.01574 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56243.7 -6.86585 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56920.2 -6.94841 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56357.9 -6.87972 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56171.4 -6.85698 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62432 7.62115 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61898.1 7.55599 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62261.8 7.60035 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62377.7 7.61452 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61987.1 7.56678 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61925.3 7.55922 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62100.7 7.58066 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61621.8 7.5222 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61764.3 7.53956 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61918.3 7.55834 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61881.5 7.55388 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62903 7.67858 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61674.1 7.52859 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61812.4 7.54541 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61555.6 7.51408 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62627.4 7.64492 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63656.5 7.77047 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63108 7.70354 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62943.4 7.68346 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62837.7 7.67058 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62676.4 7.65089 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.8 7.70503 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63798 7.78783 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63791 7.78695 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62795 7.6654 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63502.6 7.75172 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63532.1 7.75542 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63309.9 7.72829 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63637.8 7.76831 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63587.2 7.76214 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64531.7 7.87739 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63742.8 7.78111 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59430.3 7.25494 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59220.2 7.22924 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58174.6 7.10163 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58373.6 7.12581 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58848.1 7.18369 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-59012.9 7.20387 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59307.2 7.23977 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58677.9 7.16294 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59283.1 7.23677 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58956.4 7.1969 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-59043.5 7.20751 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59047.9 7.20805 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59414.1 7.25268 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58832.8 7.18171 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59184.6 7.22469 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57410.4 7.00817 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57223.7 6.98537 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56941.7 6.95094 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57306.3 6.99545 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56939.2 6.95063 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57390.5 7.00573 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56638.3 6.91393 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57358.5 7.00183 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57684.4 7.04165 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56591.3 6.9082 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57508 7.02016 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57136.1 6.97475 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56380.4 6.88251 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56917.4 6.9481 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56824.5 6.93679 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56577 6.90664 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64140 7.82956 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63839.3 7.79281 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63564.4 7.75927 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63770.4 7.78438 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63671.6 7.77235 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63272.3 7.72359 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64307 7.84993 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62530.8 7.63314 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62672.9 7.65044 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63019 7.69272 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63152.8 7.70897 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63441 7.74419 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64109.3 7.82574 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62453.5 7.62365 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62622.2 7.64425 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63017.2 7.69251 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62453.4 7.62363 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62780.3 7.66354 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62670.1 7.65009 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62554.7 7.63598 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62062.4 7.57587 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62422.6 7.61994 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62402.7 7.61746 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.8 7.58526 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62351.6 7.61123 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62791 7.66488 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62302.7 7.60527 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62078.1 7.57785 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62829.3 7.66952 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.5 7.6367 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62144 7.5859 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62353.9 7.61152 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56131.1 6.85191 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55920.2 6.82616 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55178.7 6.73562 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55783.6 6.8095 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55958 6.83076 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55940.2 6.82857 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55976 6.83293 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55255.5 6.74498 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55479.7 6.77237 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-56040.3 6.84079 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55791.2 6.81044 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55701.6 6.79948 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56738.3 6.92598 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56293.9 6.87171 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55819.1 6.81378 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55694.2 6.79856 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57554.1 7.02556 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56976.8 6.95514 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57518.4 7.02123 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56980.7 6.95562 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58026.2 7.08323 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57191.1 6.98127 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57432 7.01071 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56290.9 6.87137 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56748.2 6.92722 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57901.7 7.06808 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57512.9 7.02056 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57112.4 6.9717 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57653.3 7.03769 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56762.7 6.92904 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57841.9 7.06073 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56524.8 6.89995 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60194.7 -7.34802 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987.9 -7.20075 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60132.2 -7.34041 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59977.5 -7.32152 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59787.4 -7.2983 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59893.4 -7.31122 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59798.6 -7.29963 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60251.3 -7.3549 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60589.5 -7.39622 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60436.6 -7.37756 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60189.7 -7.3474 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59826.4 -7.3031 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59687.2 -7.28606 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59622.1 -7.27818 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60574.8 -7.39447 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59719.2 -7.29002 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62963.1 -7.68601 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63186.9 -7.71331 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62262.3 -7.60044 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62806 -7.6668 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63246.8 -7.72062 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63550.3 -7.75759 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+63016.8 -7.69256 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62986.6 -7.68882 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63522.2 -7.75424 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63478.7 -7.7489 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62643.1 -7.64692 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63429.9 -7.74292 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62483.7 -7.62745 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62960.7 -7.68572 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63085.3 -7.7009 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62969.4 -7.68675 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84715 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56228.6 -6.86391 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55834.6 -6.81583 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55713 -6.80096 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55757 -6.80633 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56228 -6.86384 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55925.9 -6.82695 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55539.7 -6.77979 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55412.1 -6.76422 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185 -6.85859 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55981.8 -6.83375 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55370.8 -6.75918 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55748.9 -6.80537 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55612.3 -6.78871 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55926.3 -6.82699 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55801.2 -6.81172 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56670.8 -6.9179 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56949.5 -6.9519 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57147.1 -6.97597 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56960.4 -6.95318 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56493.9 -6.89629 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56963.2 -6.95364 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56581.6 -6.90701 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57050.7 -6.96421 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57076.9 -6.96747 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56623.8 -6.91216 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57493.2 -7.01827 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57089.4 -6.96896 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57586.3 -7.02963 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57044.7 -6.96349 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56777.7 -6.93089 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57421.6 -7.00961 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59437.6 -7.25562 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59994 -7.32351 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59523.9 -7.2662 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59337.1 -7.24336 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59498.6 -7.26303 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58818.6 -7.18002 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59332.2 -7.24276 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+60018.7 -7.32659 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60180.5 -7.3463 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59480.7 -7.26089 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59527.7 -7.26664 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59635.1 -7.27972 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59581.2 -7.27315 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59444.7 -7.25647 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59048.4 -7.20811 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59989.5 -7.32298 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62855.4 -7.67285 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62750.4 -7.66003 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62532.7 -7.63346 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62151.3 -7.58691 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.6 -7.57075 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62710.2 -7.65509 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62271.6 -7.60155 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62960 -7.68565 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62677.8 -7.65121 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62626.1 -7.64489 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61878.3 -7.55359 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61999.2 -7.56832 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61924.7 -7.55927 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+61995.6 -7.56788 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61960.5 -7.56357 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61833.6 -7.54812 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56731.4 -6.92523 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56909.9 -6.94702 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56318.3 -6.87484 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55946.5 -6.8294 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56299.8 -6.87252 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56328.7 -6.87609 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55986.5 -6.8343 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55996.3 -6.83546 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55858.1 -6.81861 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56336.4 -6.877 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56504.4 -6.89753 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56280.4 -6.87019 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55801.7 -6.81176 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55903.8 -6.82419 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56672.2 -6.91805 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56668.9 -6.91765 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57102.2 -6.97047 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57033.7 -6.96222 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57102 -6.97059 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+57015.2 -6.95994 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57666.6 -7.03944 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57327.3 -6.99806 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56838.8 -6.9384 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57642.3 -7.0364 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57472.4 -7.01575 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57009.2 -6.95917 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57427.6 -7.01028 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57105.1 -6.97094 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57606 -7.03198 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56852.7 -6.94013 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57287.8 -6.99311 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57526.7 -7.02236 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/calib_SanityCheck_R308/calibT0.cal1 b/Projects/MUSETT/calibration/calib_SanityCheck_R308/calibT0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..99605ef63058dd281004c7ed8c90ec17435b8b21
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_SanityCheck_R308/calibT0.cal1
@@ -0,0 +1,1023 @@
+946.164 -0.114176 0.00 !Mu0ChX1TRaw[Co1At1Ch1]
+956.811 -0.115529 0.00 !Mu0ChX2TRaw[Co1At1Ch2]
+957.988 -0.115657 0.00 !Mu0ChX3TRaw[Co1At1Ch3]
+972.139 -0.117409 0.00 !Mu0ChX4TRaw[Co1At1Ch4]
+971.761 -0.117367 0.00 !Mu0ChX5TRaw[Co1At1Ch5]
+971.702 -0.117353 0.00 !Mu0ChX6TRaw[Co1At1Ch6]
+976.911 -0.117969 0.00 !Mu0ChX7TRaw[Co1At1Ch7]
+979.143 -0.118246 0.00 !Mu0ChX8TRaw[Co1At1Ch8]
+977.915 -0.118065 0.00 !Mu0ChX9TRaw[Co1At1Ch9]
+981.976 -0.118546 0.00 !Mu0ChX10TRaw[Co1At1Ch10]
+986.577 -0.119138 0.00 !Mu0ChX11TRaw[Co1At1Ch11]
+986.184 -0.119075 0.00 !Mu0ChX12TRaw[Co1At1Ch12]
+993.563 -0.119996 0.00 !Mu0ChX13TRaw[Co1At1Ch13]
+978.874 -0.118174 0.00 !Mu0ChX14TRaw[Co1At1Ch14]
+989.894 -0.119531 0.00 !Mu0ChX15TRaw[Co1At1Ch15]
+1318.57 -0.118448 0.00 !Mu0ChX16TRaw[Co1At1Ch16]
+955.564 -0.115275 0.00 !Mu0ChX17TRaw[Co1At2Ch1]
+965.774 -0.116527 0.00 !Mu0ChX18TRaw[Co1At2Ch2]
+978.184 -0.118044 0.00 !Mu0ChX19TRaw[Co1At2Ch3]
+978.854 -0.118125 0.00 !Mu0ChX20TRaw[Co1At2Ch4]
+987.988 -0.119233 0.00 !Mu0ChX21TRaw[Co1At2Ch5]
+982.353 -0.118555 0.00 !Mu0ChX22TRaw[Co1At2Ch6]
+992.928 -0.119845 0.00 !Mu0ChX23TRaw[Co1At2Ch7]
+994.329 -0.120005 0.00 !Mu0ChX24TRaw[Co1At2Ch8]
+989.504 -0.119427 0.00 !Mu0ChX25TRaw[Co1At2Ch9]
+1000.62 -0.120777 0.00 !Mu0ChX26TRaw[Co1At2Ch10]
+1002.92 -0.121057 0.00 !Mu0ChX27TRaw[Co1At2Ch11]
+1006.98 -0.121545 0.00 !Mu0ChX28TRaw[Co1At2Ch12]
+1002.57 -0.121021 0.00 !Mu0ChX29TRaw[Co1At2Ch13]
+1001.43 -0.120851 0.00 !Mu0ChX30TRaw[Co1At2Ch14]
+997.945 -0.12045 0.00 !Mu0ChX31TRaw[Co1At2Ch15]
+993.524 -0.119947 0.00 !Mu0ChX32TRaw[Co1At2Ch16]
+872.545 -0.105192 0.00 !Mu0ChX33TRaw[Co1At3Ch1]
+870.474 -0.104955 0.00 !Mu0ChX34TRaw[Co1At3Ch2]
+890.439 -0.107397 0.00 !Mu0ChX35TRaw[Co1At3Ch3]
+879.216 -0.106033 0.00 !Mu0ChX36TRaw[Co1At3Ch4]
+881.009 -0.106227 0.00 !Mu0ChX37TRaw[Co1At3Ch5]
+895.366 -0.108005 0.00 !Mu0ChX38TRaw[Co1At3Ch6]
+897.01 -0.108195 0.00 !Mu0ChX39TRaw[Co1At3Ch7]
+895.47 -0.107979 0.00 !Mu0ChX40TRaw[Co1At3Ch8]
+898.037 -0.108302 0.00 !Mu0ChX41TRaw[Co1At3Ch9]
+898.361 -0.108334 0.00 !Mu0ChX42TRaw[Co1At3Ch10]
+897.507 -0.108243 0.00 !Mu0ChX43TRaw[Co1At3Ch11]
+904.455 -0.109095 0.00 !Mu0ChX44TRaw[Co1At3Ch12]
+899.781 -0.108505 0.00 !Mu0ChX45TRaw[Co1At3Ch13]
+894.363 -0.107877 0.00 !Mu0ChX46TRaw[Co1At3Ch14]
+896.817 -0.108187 0.00 !Mu0ChX47TRaw[Co1At3Ch15]
+930.792 -0.10826 0.00 !Mu0ChX48TRaw[Co1At3Ch16]
+884.648 -0.106556 0.00 !Mu0ChX49TRaw[Co1At4Ch1]
+887.836 -0.106942 0.00 !Mu0ChX50TRaw[Co1At4Ch2]
+893.25 -0.107622 0.00 !Mu0ChX51TRaw[Co1At4Ch3]
+901.75 -0.109464 0.00 !Mu0ChX52TRaw[Co1At4Ch4]
+907.099 -0.109295 0.00 !Mu0ChX53TRaw[Co1At4Ch5]
+909.979 -0.109652 0.00 !Mu0ChX54TRaw[Co1At4Ch6]
+912.526 -0.109955 0.00 !Mu0ChX55TRaw[Co1At4Ch7]
+916.597 -0.110458 0.00 !Mu0ChX56TRaw[Co1At4Ch8]
+925.24 -0.111499 0.00 !Mu0ChX57TRaw[Co1At4Ch9]
+916.715 -0.110456 0.00 !Mu0ChX58TRaw[Co1At4Ch10]
+924.251 -0.111378 0.00 !Mu0ChX59TRaw[Co1At4Ch11]
+928.786 -0.111943 0.00 !Mu0ChX60TRaw[Co1At4Ch12]
+935.878 -0.112807 0.00 !Mu0ChX61TRaw[Co1At4Ch13]
+938.667 -0.11314 0.00 !Mu0ChX62TRaw[Co1At4Ch14]
+940.288 -0.113338 0.00 !Mu0ChX63TRaw[Co1At4Ch15]
+929.111 -0.111982 0.00 !Mu0ChX64TRaw[Co1At4Ch16]
+957.51 -0.115846 0.00 !Mu0ChX65TRaw[Co2At1Ch1]
+962.646 -0.11646 0.00 !Mu0ChX66TRaw[Co2At1Ch2]
+972.344 -0.117644 0.00 !Mu0ChX67TRaw[Co2At1Ch3]
+973.464 -0.117791 0.00 !Mu0ChX68TRaw[Co2At1Ch4]
+976.904 -0.118174 0.00 !Mu0ChX69TRaw[Co2At1Ch5]
+989.493 -0.119717 0.00 !Mu0ChX70TRaw[Co2At1Ch6]
+993.895 -0.120284 0.00 !Mu0ChX71TRaw[Co2At1Ch7]
+995.117 -0.120426 0.00 !Mu0ChX72TRaw[Co2At1Ch8]
+1006.3 -0.121763 0.00 !Mu0ChX73TRaw[Co2At1Ch9]
+987.403 -0.119445 0.00 !Mu0ChX74TRaw[Co2At1Ch10]
+1004.54 -0.121535 0.00 !Mu0ChX75TRaw[Co2At1Ch11]
+995.118 -0.120381 0.00 !Mu0ChX76TRaw[Co2At1Ch12]
+1002.39 -0.121262 0.00 !Mu0ChX77TRaw[Co2At1Ch13]
+1006.49 -0.121766 0.00 !Mu0ChX78TRaw[Co2At1Ch14]
+997.059 -0.120615 0.00 !Mu0ChX79TRaw[Co2At1Ch15]
+1377.74 -0.120952 0.00 !Mu0ChX80TRaw[Co2At1Ch16]
+923.114 -0.111515 0.00 !Mu0ChX81TRaw[Co2At2Ch1]
+932.866 -0.112746 0.00 !Mu0ChX82TRaw[Co2At2Ch2]
+924.928 -0.111774 0.00 !Mu0ChX83TRaw[Co2At2Ch3]
+937.265 -0.113281 0.00 !Mu0ChX84TRaw[Co2At2Ch4]
+930.752 -0.112468 0.00 !Mu0ChX85TRaw[Co2At2Ch5]
+941.628 -0.113819 0.00 !Mu0ChX86TRaw[Co2At2Ch6]
+949.998 -0.114818 0.00 !Mu0ChX87TRaw[Co2At2Ch7]
+943.027 -0.113978 0.00 !Mu0ChX88TRaw[Co2At2Ch8]
+949.721 -0.114813 0.00 !Mu0ChX89TRaw[Co2At2Ch9]
+957.242 -0.115728 0.00 !Mu0ChX90TRaw[Co2At2Ch10]
+964.815 -0.11664 0.00 !Mu0ChX91TRaw[Co2At2Ch11]
+961.466 -0.11625 0.00 !Mu0ChX92TRaw[Co2At2Ch12]
+961.749 -0.116299 0.00 !Mu0ChX93TRaw[Co2At2Ch13]
+960.655 -0.116152 0.00 !Mu0ChX94TRaw[Co2At2Ch14]
+974.674 -0.117868 0.00 !Mu0ChX95TRaw[Co2At2Ch15]
+992.705 -0.116744 0.00 !Mu0ChX96TRaw[Co2At2Ch16]
+868.269 -0.105013 0.00 !Mu0ChX97TRaw[Co2At3Ch1]
+877.648 -0.106169 0.00 !Mu0ChX98TRaw[Co2At3Ch2]
+878.241 -0.106212 0.00 !Mu0ChX99TRaw[Co2At3Ch3]
+883.994 -0.106905 0.00 !Mu0ChX100TRaw[Co2At3Ch4]
+893.321 -0.108043 0.00 !Mu0ChX101TRaw[Co2At3Ch5]
+900.56 -0.108935 0.00 !Mu0ChX102TRaw[Co2At3Ch6]
+896.766 -0.108442 0.00 !Mu0ChX103TRaw[Co2At3Ch7]
+894.903 -0.108194 0.00 !Mu0ChX104TRaw[Co2At3Ch8]
+904.239 -0.109336 0.00 !Mu0ChX105TRaw[Co2At3Ch9]
+902.018 -0.109053 0.00 !Mu0ChX106TRaw[Co2At3Ch10]
+907.673 -0.109771 0.00 !Mu0ChX107TRaw[Co2At3Ch11]
+904.96 -0.109449 0.00 !Mu0ChX108TRaw[Co2At3Ch12]
+902.795 -0.109128 0.00 !Mu0ChX109TRaw[Co2At3Ch13]
+906.335 -0.109641 0.00 !Mu0ChX110TRaw[Co2At3Ch14]
+903.029 -0.109177 0.00 !Mu0ChX111TRaw[Co2At3Ch15]
+912.908 -0.109478 0.00 !Mu0ChX112TRaw[Co2At3Ch16]
+888.694 -0.107364 0.00 !Mu0ChX113TRaw[Co2At4Ch1]
+891.736 -0.107748 0.00 !Mu0ChX114TRaw[Co2At4Ch2]
+891.957 -0.107782 0.00 !Mu0ChX115TRaw[Co2At4Ch3]
+901.87 -0.109007 0.00 !Mu0ChX116TRaw[Co2At4Ch4]
+905.48 -0.109423 0.00 !Mu0ChX117TRaw[Co2At4Ch5]
+899.196 -0.108648 0.00 !Mu0ChX118TRaw[Co2At4Ch6]
+913.782 -0.110413 0.00 !Mu0ChX119TRaw[Co2At4Ch7]
+914.779 -0.110579 0.00 !Mu0ChX120TRaw[Co2At4Ch8]
+909.004 -0.109898 0.00 !Mu0ChX121TRaw[Co2At4Ch9]
+914.282 -0.1105 0.00 !Mu0ChX122TRaw[Co2At4Ch10]
+922.657 -0.111529 0.00 !Mu0ChX123TRaw[Co2At4Ch11]
+914.822 -0.110604 0.00 !Mu0ChX124TRaw[Co2At4Ch12]
+917.977 -0.110972 0.00 !Mu0ChX125TRaw[Co2At4Ch13]
+919.687 -0.11118 0.00 !Mu0ChX126TRaw[Co2At4Ch14]
+914.922 -0.110613 0.00 !Mu0ChX127TRaw[Co2At4Ch15]
+925.329 -0.111151 0.00 !Mu0ChX128TRaw[Co2At4Ch16]
+942.169 -0.114033 0.00 !Mu0ChY2TRaw[Co3At1Ch2]
+941.094 -0.113921 0.00 !Mu0ChY3TRaw[Co3At1Ch3]
+959.045 -0.116104 0.00 !Mu0ChY4TRaw[Co3At1Ch4]
+954.629 -0.115563 0.00 !Mu0ChY5TRaw[Co3At1Ch5]
+970.443 -0.117481 0.00 !Mu0ChY6TRaw[Co3At1Ch6]
+969.234 -0.117339 0.00 !Mu0ChY7TRaw[Co3At1Ch7]
+966.53 -0.117018 0.00 !Mu0ChY8TRaw[Co3At1Ch8]
+973.409 -0.117842 0.00 !Mu0ChY9TRaw[Co3At1Ch9]
+968.923 -0.117316 0.00 !Mu0ChY10TRaw[Co3At1Ch10]
+971.661 -0.117632 0.00 !Mu0ChY11TRaw[Co3At1Ch11]
+977.841 -0.118398 0.00 !Mu0ChY12TRaw[Co3At1Ch12]
+975.821 -0.11814 0.00 !Mu0ChY13TRaw[Co3At1Ch13]
+971.638 -0.117633 0.00 !Mu0ChY14TRaw[Co3At1Ch14]
+974.225 -0.117944 0.00 !Mu0ChY15TRaw[Co3At1Ch15]
+980.805 -0.118761 0.00 !Mu0ChY16TRaw[Co3At1Ch16]
+935.973 -0.113175 0.00 !Mu0ChY17TRaw[Co3At2Ch1]
+944.972 -0.114309 0.00 !Mu0ChY18TRaw[Co3At2Ch2]
+953.592 -0.115351 0.00 !Mu0ChY19TRaw[Co3At2Ch3]
+945.492 -0.11436 0.00 !Mu0ChY20TRaw[Co3At2Ch4]
+948.066 -0.114686 0.00 !Mu0ChY21TRaw[Co3At2Ch5]
+951.558 -0.115103 0.00 !Mu0ChY22TRaw[Co3At2Ch6]
+957.545 -0.115832 0.00 !Mu0ChY23TRaw[Co3At2Ch7]
+957.576 -0.115841 0.00 !Mu0ChY24TRaw[Co3At2Ch8]
+962.251 -0.116398 0.00 !Mu0ChY25TRaw[Co3At2Ch9]
+960.479 -0.116195 0.00 !Mu0ChY26TRaw[Co3At2Ch10]
+957.007 -0.115516 0.00 !Mu0ChY27TRaw[Co3At2Ch11]
+971.646 -0.117562 0.00 !Mu0ChY28TRaw[Co3At2Ch12]
+974.064 -0.117834 0.00 !Mu0ChY29TRaw[Co3At2Ch13]
+968.974 -0.11722 0.00 !Mu0ChY30TRaw[Co3At2Ch14]
+971.944 -0.11759 0.00 !Mu0ChY31TRaw[Co3At2Ch15]
+966.713 -0.116928 0.00 !Mu0ChY32TRaw[Co3At2Ch16]
+869.43 -0.105131 0.00 !Mu0ChY33TRaw[Co3At3Ch1]
+868.989 -0.105113 0.00 !Mu0ChY34TRaw[Co3At3Ch2]
+886.133 -0.107174 0.00 !Mu0ChY35TRaw[Co3At3Ch3]
+876.002 -0.105955 0.00 !Mu0ChY36TRaw[Co3At3Ch4]
+887.653 -0.107363 0.00 !Mu0ChY37TRaw[Co3At3Ch5]
+886.897 -0.107278 0.00 !Mu0ChY38TRaw[Co3At3Ch6]
+887.559 -0.107347 0.00 !Mu0ChY39TRaw[Co3At3Ch7]
+905.525 -0.109567 0.00 !Mu0ChY40TRaw[Co3At3Ch8]
+903.288 -0.109268 0.00 !Mu0ChY41TRaw[Co3At3Ch9]
+901.488 -0.109045 0.00 !Mu0ChY42TRaw[Co3At3Ch10]
+900.453 -0.108924 0.00 !Mu0ChY43TRaw[Co3At3Ch11]
+911.154 -0.110196 0.00 !Mu0ChY44TRaw[Co3At3Ch12]
+908.4 -0.109895 0.00 !Mu0ChY45TRaw[Co3At3Ch13]
+903.164 -0.10924 0.00 !Mu0ChY46TRaw[Co3At3Ch14]
+913.419 -0.110513 0.00 !Mu0ChY47TRaw[Co3At3Ch15]
+901.371 -0.109056 0.00 !Mu0ChY48TRaw[Co3At3Ch16]
+855.809 -0.103507 0.00 !Mu0ChY49TRaw[Co3At4Ch1]
+866.963 -0.104888 0.00 !Mu0ChY50TRaw[Co3At4Ch2]
+862.301 -0.104347 0.00 !Mu0ChY51TRaw[Co3At4Ch3]
+879.214 -0.106391 0.00 !Mu0ChY52TRaw[Co3At4Ch4]
+881.851 -0.106718 0.00 !Mu0ChY53TRaw[Co3At4Ch5]
+883.115 -0.106878 0.00 !Mu0ChY54TRaw[Co3At4Ch6]
+879.659 -0.106441 0.00 !Mu0ChY55TRaw[Co3At4Ch7]
+887.765 -0.107426 0.00 !Mu0ChY56TRaw[Co3At4Ch8]
+889.179 -0.107608 0.00 !Mu0ChY57TRaw[Co3At4Ch9]
+893.434 -0.108136 0.00 !Mu0ChY58TRaw[Co3At4Ch10]
+900.612 -0.109012 0.00 !Mu0ChY59TRaw[Co3At4Ch11]
+899.41 -0.108611 0.00 !Mu0ChY60TRaw[Co3At4Ch12]
+898.225 -0.108719 0.00 !Mu0ChY61TRaw[Co3At4Ch13]
+905.378 -0.109581 0.00 !Mu0ChY62TRaw[Co3At4Ch14]
+899.576 -0.108895 0.00 !Mu0ChY63TRaw[Co3At4Ch15]
+904.856 -0.109543 0.00 !Mu0ChY64TRaw[Co3At4Ch16]
+964.166 -0.116469 0.00 !Mu0ChY65TRaw[Co4At1Ch1]
+970.821 -0.117302 0.00 !Mu0ChY66TRaw[Co4At1Ch2]
+976.54 -0.118012 0.00 !Mu0ChY67TRaw[Co4At1Ch3]
+976.814 -0.118028 0.00 !Mu0ChY68TRaw[Co4At1Ch4]
+979.621 -0.118378 0.00 !Mu0ChY69TRaw[Co4At1Ch5]
+983.271 -0.118825 0.00 !Mu0ChY70TRaw[Co4At1Ch6]
+982.977 -0.118781 0.00 !Mu0ChY71TRaw[Co4At1Ch7]
+986.021 -0.119156 0.00 !Mu0ChY72TRaw[Co4At1Ch8]
+989.88 -0.119628 0.00 !Mu0ChY73TRaw[Co4At1Ch9]
+981.368 -0.118591 0.00 !Mu0ChY74TRaw[Co4At1Ch10]
+990.1 -0.119656 0.00 !Mu0ChY75TRaw[Co4At1Ch11]
+1000.52 -0.120924 0.00 !Mu0ChY76TRaw[Co4At1Ch12]
+995.667 -0.120327 0.00 !Mu0ChY77TRaw[Co4At1Ch13]
+997.754 -0.120579 0.00 !Mu0ChY78TRaw[Co4At1Ch14]
+994.951 -0.120247 0.00 !Mu0ChY79TRaw[Co4At1Ch15]
+1001.99 -0.121097 0.00 !Mu0ChY80TRaw[Co4At1Ch16]
+970.583 -0.117145 0.00 !Mu0ChY81TRaw[Co4At2Ch1]
+986.462 -0.119118 0.00 !Mu0ChY82TRaw[Co4At2Ch2]
+981.625 -0.118534 0.00 !Mu0ChY83TRaw[Co4At2Ch3]
+996.206 -0.12031 0.00 !Mu0ChY84TRaw[Co4At2Ch4]
+1000.06 -0.120777 0.00 !Mu0ChY85TRaw[Co4At2Ch5]
+1002.53 -0.121085 0.00 !Mu0ChY86TRaw[Co4At2Ch6]
+998.357 -0.120569 0.00 !Mu0ChY87TRaw[Co4At2Ch7]
+1008.76 -0.121839 0.00 !Mu0ChY88TRaw[Co4At2Ch8]
+1004.65 -0.121339 0.00 !Mu0ChY89TRaw[Co4At2Ch9]
+1015 -0.122592 0.00 !Mu0ChY90TRaw[Co4At2Ch10]
+1025.62 -0.123897 0.00 !Mu0ChY91TRaw[Co4At2Ch11]
+1025.41 -0.123866 0.00 !Mu0ChY92TRaw[Co4At2Ch12]
+1020.27 -0.123256 0.00 !Mu0ChY93TRaw[Co4At2Ch13]
+1024.71 -0.123786 0.00 !Mu0ChY94TRaw[Co4At2Ch14]
+1021.51 -0.123408 0.00 !Mu0ChY95TRaw[Co4At2Ch15]
+1016.94 -0.122879 0.00 !Mu0ChY96TRaw[Co4At2Ch16]
+882.97 -0.106544 0.00 !Mu0ChY97TRaw[Co4At3Ch1]
+879.326 -0.106139 0.00 !Mu0ChY98TRaw[Co4At3Ch2]
+878.449 -0.106028 0.00 !Mu0ChY99TRaw[Co4At3Ch3]
+894.979 -0.108041 0.00 !Mu0ChY100TRaw[Co4At3Ch4]
+892.203 -0.107707 0.00 !Mu0ChY101TRaw[Co4At3Ch5]
+891.015 -0.10757 0.00 !Mu0ChY102TRaw[Co4At3Ch6]
+895.424 -0.108105 0.00 !Mu0ChY103TRaw[Co4At3Ch7]
+907.578 -0.10959 0.00 !Mu0ChY104TRaw[Co4At3Ch8]
+902.147 -0.108916 0.00 !Mu0ChY105TRaw[Co4At3Ch9]
+915.536 -0.110544 0.00 !Mu0ChY106TRaw[Co4At3Ch10]
+910.897 -0.109981 0.00 !Mu0ChY107TRaw[Co4At3Ch11]
+915.092 -0.11051 0.00 !Mu0ChY108TRaw[Co4At3Ch12]
+914.664 -0.110421 0.00 !Mu0ChY109TRaw[Co4At3Ch13]
+910.113 -0.109894 0.00 !Mu0ChY110TRaw[Co4At3Ch14]
+915.675 -0.110572 0.00 !Mu0ChY111TRaw[Co4At3Ch15]
+917.59 -0.110803 0.00 !Mu0ChY112TRaw[Co4At3Ch16]
+892.441 -0.107535 0.00 !Mu0ChY113TRaw[Co4At4Ch1]
+899.913 -0.108466 0.00 !Mu0ChY114TRaw[Co4At4Ch2]
+899.438 -0.108438 0.00 !Mu0ChY115TRaw[Co4At4Ch3]
+905.439 -0.109158 0.00 !Mu0ChY116TRaw[Co4At4Ch4]
+917.108 -0.110566 0.00 !Mu0ChY117TRaw[Co4At4Ch5]
+910.331 -0.109757 0.00 !Mu0ChY118TRaw[Co4At4Ch6]
+930.135 -0.112167 0.00 !Mu0ChY119TRaw[Co4At4Ch7]
+921.847 -0.111146 0.00 !Mu0ChY120TRaw[Co4At4Ch8]
+932.043 -0.112407 0.00 !Mu0ChY121TRaw[Co4At4Ch9]
+931.497 -0.112337 0.00 !Mu0ChY122TRaw[Co4At4Ch10]
+933.275 -0.112539 0.00 !Mu0ChY123TRaw[Co4At4Ch11]
+936.749 -0.112978 0.00 !Mu0ChY124TRaw[Co4At4Ch12]
+931.392 -0.112316 0.00 !Mu0ChY125TRaw[Co4At4Ch13]
+930.352 -0.112192 0.00 !Mu0ChY126TRaw[Co4At4Ch14]
+927.302 -0.111821 0.00 !Mu0ChY127TRaw[Co4At4Ch15]
+930.24 -0.112162 0.00 !Mu0ChY128TRaw[Co4At4Ch16]
+926.786 -0.11232 0.00 !Mu1ChX1TRaw[Co1At1Ch1]
+940.575 -0.114015 0.00 !Mu1ChX2TRaw[Co1At1Ch2]
+943.089 -0.114341 0.00 !Mu1ChX3TRaw[Co1At1Ch3]
+954.304 -0.115712 0.00 !Mu1ChX4TRaw[Co1At1Ch4]
+954.653 -0.115744 0.00 !Mu1ChX5TRaw[Co1At1Ch5]
+956.573 -0.115962 0.00 !Mu1ChX6TRaw[Co1At1Ch6]
+970.061 -0.117589 0.00 !Mu1ChX7TRaw[Co1At1Ch7]
+965.116 -0.116998 0.00 !Mu1ChX8TRaw[Co1At1Ch8]
+969.325 -0.117498 0.00 !Mu1ChX9TRaw[Co1At1Ch9]
+978.231 -0.118577 0.00 !Mu1ChX10TRaw[Co1At1Ch10]
+974.593 -0.118143 0.00 !Mu1ChX11TRaw[Co1At1Ch11]
+974.146 -0.118071 0.00 !Mu1ChX12TRaw[Co1At1Ch12]
+986.191 -0.11954 0.00 !Mu1ChX13TRaw[Co1At1Ch13]
+986.678 -0.119597 0.00 !Mu1ChX14TRaw[Co1At1Ch14]
+983.727 -0.119236 0.00 !Mu1ChX15TRaw[Co1At1Ch15]
+1371.19 -0.119179 0.00 !Mu1ChX16TRaw[Co1At1Ch16]
+922.557 -0.111777 0.00 !Mu1ChX17TRaw[Co1At2Ch1]
+945.525 -0.114612 0.00 !Mu1ChX18TRaw[Co1At2Ch2]
+946.378 -0.114738 0.00 !Mu1ChX19TRaw[Co1At2Ch3]
+943.86 -0.114439 0.00 !Mu1ChX20TRaw[Co1At2Ch4]
+952.199 -0.115464 0.00 !Mu1ChX21TRaw[Co1At2Ch5]
+965.45 -0.117052 0.00 !Mu1ChX22TRaw[Co1At2Ch6]
+954.947 -0.115762 0.00 !Mu1ChX23TRaw[Co1At2Ch7]
+971.26 -0.117739 0.00 !Mu1ChX24TRaw[Co1At2Ch8]
+969.364 -0.117531 0.00 !Mu1ChX25TRaw[Co1At2Ch9]
+972.531 -0.117923 0.00 !Mu1ChX26TRaw[Co1At2Ch10]
+971.171 -0.117737 0.00 !Mu1ChX27TRaw[Co1At2Ch11]
+974.954 -0.11821 0.00 !Mu1ChX28TRaw[Co1At2Ch12]
+978.834 -0.118677 0.00 !Mu1ChX29TRaw[Co1At2Ch13]
+975.807 -0.118324 0.00 !Mu1ChX30TRaw[Co1At2Ch14]
+974.804 -0.118198 0.00 !Mu1ChX31TRaw[Co1At2Ch15]
+984.936 -0.119148 0.00 !Mu1ChX32TRaw[Co1At2Ch16]
+875.904 -0.106165 0.00 !Mu1ChX33TRaw[Co1At3Ch1]
+875.79 -0.10618 0.00 !Mu1ChX34TRaw[Co1At3Ch2]
+891.706 -0.108064 0.00 !Mu1ChX35TRaw[Co1At3Ch3]
+873.845 -0.105941 0.00 !Mu1ChX36TRaw[Co1At3Ch4]
+891.762 -0.108105 0.00 !Mu1ChX37TRaw[Co1At3Ch5]
+897.589 -0.108823 0.00 !Mu1ChX38TRaw[Co1At3Ch6]
+889.745 -0.107861 0.00 !Mu1ChX39TRaw[Co1At3Ch7]
+894.521 -0.10842 0.00 !Mu1ChX40TRaw[Co1At3Ch8]
+897.332 -0.108779 0.00 !Mu1ChX41TRaw[Co1At3Ch9]
+897.319 -0.108754 0.00 !Mu1ChX42TRaw[Co1At3Ch10]
+905.732 -0.109783 0.00 !Mu1ChX43TRaw[Co1At3Ch11]
+897.833 -0.108855 0.00 !Mu1ChX44TRaw[Co1At3Ch12]
+907.458 -0.110019 0.00 !Mu1ChX45TRaw[Co1At3Ch13]
+905.696 -0.109854 0.00 !Mu1ChX46TRaw[Co1At3Ch14]
+903.207 -0.109528 0.00 !Mu1ChX47TRaw[Co1At3Ch15]
+918.195 -0.110055 0.00 !Mu1ChX48TRaw[Co1At3Ch16]
+865.632 -0.104838 0.00 !Mu1ChX49TRaw[Co1At4Ch1]
+871.03 -0.105455 0.00 !Mu1ChX50TRaw[Co1At4Ch2]
+883.706 -0.107015 0.00 !Mu1ChX51TRaw[Co1At4Ch3]
+886.118 -0.107338 0.00 !Mu1ChX52TRaw[Co1At4Ch4]
+888.977 -0.107685 0.00 !Mu1ChX53TRaw[Co1At4Ch5]
+889.176 -0.107699 0.00 !Mu1ChX54TRaw[Co1At4Ch6]
+893.053 -0.10819 0.00 !Mu1ChX55TRaw[Co1At4Ch7]
+898.958 -0.108878 0.00 !Mu1ChX56TRaw[Co1At4Ch8]
+905.343 -0.1097 0.00 !Mu1ChX57TRaw[Co1At4Ch9]
+901.014 -0.10916 0.00 !Mu1ChX58TRaw[Co1At4Ch10]
+909.801 -0.110244 0.00 !Mu1ChX59TRaw[Co1At4Ch11]
+902.356 -0.109308 0.00 !Mu1ChX60TRaw[Co1At4Ch12]
+915.181 -0.110894 0.00 !Mu1ChX61TRaw[Co1At4Ch13]
+906.646 -0.109867 0.00 !Mu1ChX62TRaw[Co1At4Ch14]
+906.177 -0.109791 0.00 !Mu1ChX63TRaw[Co1At4Ch15]
+917.322 -0.110777 0.00 !Mu1ChX64TRaw[Co1At4Ch16]
+947.375 -0.114723 0.00 !Mu1ChX65TRaw[Co2At1Ch1]
+949.155 -0.114949 0.00 !Mu1ChX66TRaw[Co2At1Ch2]
+962.658 -0.116629 0.00 !Mu1ChX67TRaw[Co2At1Ch3]
+962.29 -0.116557 0.00 !Mu1ChX68TRaw[Co2At1Ch4]
+964.501 -0.116827 0.00 !Mu1ChX69TRaw[Co2At1Ch5]
+972.559 -0.117811 0.00 !Mu1ChX70TRaw[Co2At1Ch6]
+972.248 -0.117758 0.00 !Mu1ChX71TRaw[Co2At1Ch7]
+977.48 -0.118392 0.00 !Mu1ChX72TRaw[Co2At1Ch8]
+974.838 -0.118063 0.00 !Mu1ChX73TRaw[Co2At1Ch9]
+989.581 -0.119853 0.00 !Mu1ChX74TRaw[Co2At1Ch10]
+985.59 -0.119377 0.00 !Mu1ChX75TRaw[Co2At1Ch11]
+983.734 -0.119141 0.00 !Mu1ChX76TRaw[Co2At1Ch12]
+990.699 -0.119982 0.00 !Mu1ChX77TRaw[Co2At1Ch13]
+992.465 -0.120199 0.00 !Mu1ChX78TRaw[Co2At1Ch14]
+992.485 -0.1202 0.00 !Mu1ChX79TRaw[Co2At1Ch15]
+1375.52 -0.120722 0.00 !Mu1ChX80TRaw[Co2At1Ch16]
+972.687 -0.117775 0.00 !Mu1ChX81TRaw[Co2At2Ch1]
+974.84 -0.118024 0.00 !Mu1ChX82TRaw[Co2At2Ch2]
+979.911 -0.118652 0.00 !Mu1ChX83TRaw[Co2At2Ch3]
+993.406 -0.120307 0.00 !Mu1ChX84TRaw[Co2At2Ch4]
+992.814 -0.120215 0.00 !Mu1ChX85TRaw[Co2At2Ch5]
+1002.31 -0.121389 0.00 !Mu1ChX86TRaw[Co2At2Ch6]
+1003.74 -0.121554 0.00 !Mu1ChX87TRaw[Co2At2Ch7]
+995.588 -0.12057 0.00 !Mu1ChX88TRaw[Co2At2Ch8]
+1010.12 -0.122345 0.00 !Mu1ChX89TRaw[Co2At2Ch9]
+1012.32 -0.12261 0.00 !Mu1ChX90TRaw[Co2At2Ch10]
+1007.94 -0.122082 0.00 !Mu1ChX91TRaw[Co2At2Ch11]
+1014.03 -0.12282 0.00 !Mu1ChX92TRaw[Co2At2Ch12]
+1013.77 -0.12279 0.00 !Mu1ChX93TRaw[Co2At2Ch13]
+1016.53 -0.123127 0.00 !Mu1ChX94TRaw[Co2At2Ch14]
+1016.3 -0.123096 0.00 !Mu1ChX95TRaw[Co2At2Ch15]
+1004.26 -0.12163 0.00 !Mu1ChX96TRaw[Co2At2Ch16]
+888.673 -0.107613 0.00 !Mu1ChX97TRaw[Co2At3Ch1]
+886.825 -0.107373 0.00 !Mu1ChX98TRaw[Co2At3Ch2]
+890.552 -0.107838 0.00 !Mu1ChX99TRaw[Co2At3Ch3]
+901.931 -0.109224 0.00 !Mu1ChX100TRaw[Co2At3Ch4]
+901.707 -0.1092 0.00 !Mu1ChX101TRaw[Co2At3Ch5]
+906.676 -0.109791 0.00 !Mu1ChX102TRaw[Co2At3Ch6]
+902.249 -0.109268 0.00 !Mu1ChX103TRaw[Co2At3Ch7]
+917.913 -0.111151 0.00 !Mu1ChX104TRaw[Co2At3Ch8]
+919.118 -0.11128 0.00 !Mu1ChX105TRaw[Co2At3Ch9]
+920.502 -0.111467 0.00 !Mu1ChX106TRaw[Co2At3Ch10]
+925.286 -0.112035 0.00 !Mu1ChX107TRaw[Co2At3Ch11]
+920.839 -0.111519 0.00 !Mu1ChX108TRaw[Co2At3Ch12]
+921.752 -0.111616 0.00 !Mu1ChX109TRaw[Co2At3Ch13]
+913.537 -0.110627 0.00 !Mu1ChX110TRaw[Co2At3Ch14]
+916.058 -0.110941 0.00 !Mu1ChX111TRaw[Co2At3Ch15]
+924.322 -0.11176 0.00 !Mu1ChX112TRaw[Co2At3Ch16]
+897.027 -0.108476 0.00 !Mu1ChX113TRaw[Co2At4Ch1]
+897.77 -0.108567 0.00 !Mu1ChX114TRaw[Co2At4Ch2]
+905.06 -0.10946 0.00 !Mu1ChX115TRaw[Co2At4Ch3]
+910.605 -0.110136 0.00 !Mu1ChX116TRaw[Co2At4Ch4]
+925.57 -0.111977 0.00 !Mu1ChX117TRaw[Co2At4Ch5]
+920.161 -0.111304 0.00 !Mu1ChX118TRaw[Co2At4Ch6]
+932.296 -0.112781 0.00 !Mu1ChX119TRaw[Co2At4Ch7]
+914.819 -0.110659 0.00 !Mu1ChX120TRaw[Co2At4Ch8]
+920.284 -0.111325 0.00 !Mu1ChX121TRaw[Co2At4Ch9]
+927.772 -0.112226 0.00 !Mu1ChX122TRaw[Co2At4Ch10]
+928.866 -0.11236 0.00 !Mu1ChX123TRaw[Co2At4Ch11]
+924.041 -0.111775 0.00 !Mu1ChX124TRaw[Co2At4Ch12]
+921.484 -0.111483 0.00 !Mu1ChX125TRaw[Co2At4Ch13]
+927.438 -0.112193 0.00 !Mu1ChX126TRaw[Co2At4Ch14]
+930.757 -0.112614 0.00 !Mu1ChX127TRaw[Co2At4Ch15]
+924.698 -0.111864 0.00 !Mu1ChX128TRaw[Co2At4Ch16]
+930.899 -0.11282 0.00 !Mu1ChY1TRaw[Co3At1Ch1]
+932.297 -0.113022 0.00 !Mu1ChY2TRaw[Co3At1Ch2]
+943.292 -0.114361 0.00 !Mu1ChY3TRaw[Co3At1Ch3]
+947.201 -0.114834 0.00 !Mu1ChY4TRaw[Co3At1Ch4]
+949.524 -0.115122 0.00 !Mu1ChY5TRaw[Co3At1Ch5]
+952.95 -0.115533 0.00 !Mu1ChY6TRaw[Co3At1Ch6]
+956.311 -0.115938 0.00 !Mu1ChY7TRaw[Co3At1Ch7]
+946.369 -0.114726 0.00 !Mu1ChY8TRaw[Co3At1Ch8]
+953.576 -0.11562 0.00 !Mu1ChY9TRaw[Co3At1Ch9]
+964.215 -0.116854 0.00 !Mu1ChY10TRaw[Co3At1Ch10]
+959.98 -0.116368 0.00 !Mu1ChY11TRaw[Co3At1Ch11]
+967.734 -0.117327 0.00 !Mu1ChY12TRaw[Co3At1Ch12]
+967.914 -0.117358 0.00 !Mu1ChY13TRaw[Co3At1Ch13]
+963.677 -0.116827 0.00 !Mu1ChY14TRaw[Co3At1Ch14]
+965.026 -0.116981 0.00 !Mu1ChY15TRaw[Co3At1Ch15]
+962.695 -0.116717 0.00 !Mu1ChY16TRaw[Co3At1Ch16]
+964.683 -0.116883 0.00 !Mu1ChY17TRaw[Co3At2Ch1]
+966.649 -0.117128 0.00 !Mu1ChY18TRaw[Co3At2Ch2]
+971.034 -0.117665 0.00 !Mu1ChY19TRaw[Co3At2Ch3]
+971.558 -0.117743 0.00 !Mu1ChY20TRaw[Co3At2Ch4]
+983.103 -0.119146 0.00 !Mu1ChY21TRaw[Co3At2Ch5]
+979.702 -0.118747 0.00 !Mu1ChY22TRaw[Co3At2Ch6]
+450 -0.119189 0.00 !Mu1ChY23TRaw[Co3At2Ch7]
+989.487 -0.119964 0.00 !Mu1ChY24TRaw[Co3At2Ch8]
+991.153 -0.120158 0.00 !Mu1ChY25TRaw[Co3At2Ch9]
+991.247 -0.120176 0.00 !Mu1ChY26TRaw[Co3At2Ch10]
+995.752 -0.120728 0.00 !Mu1ChY27TRaw[Co3At2Ch11]
+990.621 -0.120113 0.00 !Mu1ChY28TRaw[Co3At2Ch12]
+992.588 -0.120339 0.00 !Mu1ChY29TRaw[Co3At2Ch13]
+983.94 -0.119308 0.00 !Mu1ChY30TRaw[Co3At2Ch14]
+990.472 -0.120108 0.00 !Mu1ChY31TRaw[Co3At2Ch15]
+985.366 -0.119515 0.00 !Mu1ChY32TRaw[Co3At2Ch16]
+879.895 -0.106691 0.00 !Mu1ChY33TRaw[Co3At3Ch1]
+885.732 -0.10745 0.00 !Mu1ChY34TRaw[Co3At3Ch2]
+880.947 -0.106848 0.00 !Mu1ChY35TRaw[Co3At3Ch3]
+890.881 -0.108037 0.00 !Mu1ChY36TRaw[Co3At3Ch4]
+8.50641e+11 -1.03827e+08 0.00 !Mu1ChY37TRaw[Co3At3Ch5]
+901.269 -0.109433 0.00 !Mu1ChY38TRaw[Co3At3Ch6]
+900.483 -0.110242 0.00 !Mu1ChY39TRaw[Co3At3Ch7]
+902.133 -0.10944 0.00 !Mu1ChY40TRaw[Co3At3Ch8]
+890.343 -0.107957 0.00 !Mu1ChY41TRaw[Co3At3Ch9]
+902.898 -0.109521 0.00 !Mu1ChY42TRaw[Co3At3Ch10]
+895.657 -0.108623 0.00 !Mu1ChY43TRaw[Co3At3Ch11]
+904.61 -0.10969 0.00 !Mu1ChY44TRaw[Co3At3Ch12]
+907.072 -0.109989 0.00 !Mu1ChY45TRaw[Co3At3Ch13]
+901.222 -0.109312 0.00 !Mu1ChY46TRaw[Co3At3Ch14]
+905.951 -0.109844 0.00 !Mu1ChY47TRaw[Co3At3Ch15]
+901.159 -0.109257 0.00 !Mu1ChY48TRaw[Co3At3Ch16]
+883.344 -0.10696 0.00 !Mu1ChY49TRaw[Co3At4Ch1]
+882.465 -0.106852 0.00 !Mu1ChY50TRaw[Co3At4Ch2]
+878.872 -0.106436 0.00 !Mu1ChY51TRaw[Co3At4Ch3]
+892.099 -0.108049 0.00 !Mu1ChY52TRaw[Co3At4Ch4]
+897.834 -0.108781 0.00 !Mu1ChY53TRaw[Co3At4Ch5]
+899.02 -0.108923 0.00 !Mu1ChY54TRaw[Co3At4Ch6]
+898.979 -0.108922 0.00 !Mu1ChY55TRaw[Co3At4Ch7]
+899.225 -0.108949 0.00 !Mu1ChY56TRaw[Co3At4Ch8]
+911.018 -0.110395 0.00 !Mu1ChY57TRaw[Co3At4Ch9]
+910.225 -0.110294 0.00 !Mu1ChY58TRaw[Co3At4Ch10]
+905.692 -0.109746 0.00 !Mu1ChY59TRaw[Co3At4Ch11]
+908.504 -0.109802 0.00 !Mu1ChY60TRaw[Co3At4Ch12]
+905.665 -0.109742 0.00 !Mu1ChY61TRaw[Co3At4Ch13]
+913.658 -0.11072 0.00 !Mu1ChY62TRaw[Co3At4Ch14]
+915.004 -0.110879 0.00 !Mu1ChY63TRaw[Co3At4Ch15]
+915.999 -0.111037 0.00 !Mu1ChY64TRaw[Co3At4Ch16]
+945.876 -0.115194 0.00 !Mu1ChY65TRaw[Co4At1Ch1]
+952.653 -0.116053 0.00 !Mu1ChY66TRaw[Co4At1Ch2]
+958.599 -0.116788 0.00 !Mu1ChY67TRaw[Co4At1Ch3]
+962.073 -0.117211 0.00 !Mu1ChY68TRaw[Co4At1Ch4]
+965.512 -0.117617 0.00 !Mu1ChY69TRaw[Co4At1Ch5]
+973.646 -0.118609 0.00 !Mu1ChY70TRaw[Co4At1Ch6]
+969.091 -0.118053 0.00 !Mu1ChY71TRaw[Co4At1Ch7]
+977.205 -0.119038 0.00 !Mu1ChY72TRaw[Co4At1Ch8]
+978.244 -0.119163 0.00 !Mu1ChY73TRaw[Co4At1Ch9]
+981.509 -0.119552 0.00 !Mu1ChY74TRaw[Co4At1Ch10]
+983.33 -0.119777 0.00 !Mu1ChY75TRaw[Co4At1Ch11]
+980.28 -0.119391 0.00 !Mu1ChY76TRaw[Co4At1Ch12]
+987.378 -0.11981 0.00 !Mu1ChY77TRaw[Co4At1Ch13]
+981.221 -0.119505 0.00 !Mu1ChY78TRaw[Co4At1Ch14]
+982.019 -0.119601 0.00 !Mu1ChY79TRaw[Co4At1Ch15]
+986.869 -0.120194 0.00 !Mu1ChY80TRaw[Co4At1Ch16]
+942.041 -0.114646 0.00 !Mu1ChY81TRaw[Co4At2Ch1]
+950.256 -0.115676 0.00 !Mu1ChY82TRaw[Co4At2Ch2]
+949.146 -0.115551 0.00 !Mu1ChY83TRaw[Co4At2Ch3]
+956.132 -0.116392 0.00 !Mu1ChY84TRaw[Co4At2Ch4]
+955.603 -0.116344 0.00 !Mu1ChY85TRaw[Co4At2Ch5]
+965.862 -0.117589 0.00 !Mu1ChY86TRaw[Co4At2Ch6]
+966.696 -0.117699 0.00 !Mu1ChY87TRaw[Co4At2Ch7]
+973.856 -0.118567 0.00 !Mu1ChY88TRaw[Co4At2Ch8]
+974.942 -0.118705 0.00 !Mu1ChY89TRaw[Co4At2Ch9]
+967.58 -0.117807 0.00 !Mu1ChY90TRaw[Co4At2Ch10]
+972.217 -0.118376 0.00 !Mu1ChY91TRaw[Co4At2Ch11]
+980.142 -0.119333 0.00 !Mu1ChY92TRaw[Co4At2Ch12]
+980.758 -0.119429 0.00 !Mu1ChY93TRaw[Co4At2Ch13]
+973.754 -0.118576 0.00 !Mu1ChY94TRaw[Co4At2Ch14]
+977.548 -0.119031 0.00 !Mu1ChY95TRaw[Co4At2Ch15]
+988.795 -0.120471 0.00 !Mu1ChY96TRaw[Co4At2Ch16]
+871.404 -0.106136 0.00 !Mu1ChY97TRaw[Co4At3Ch1]
+870.084 -0.106 0.00 !Mu1ChY98TRaw[Co4At3Ch2]
+874.611 -0.106555 0.00 !Mu1ChY99TRaw[Co4At3Ch3]
+888.655 -0.108263 0.00 !Mu1ChY100TRaw[Co4At3Ch4]
+886.461 -0.10801 0.00 !Mu1ChY101TRaw[Co4At3Ch5]
+878.586 -0.107044 0.00 !Mu1ChY102TRaw[Co4At3Ch6]
+886.442 -0.108005 0.00 !Mu1ChY103TRaw[Co4At3Ch7]
+889.81 -0.108406 0.00 !Mu1ChY104TRaw[Co4At3Ch8]
+900.116 -0.109653 0.00 !Mu1ChY105TRaw[Co4At3Ch9]
+896.798 -0.10926 0.00 !Mu1ChY106TRaw[Co4At3Ch10]
+900.214 -0.10967 0.00 !Mu1ChY107TRaw[Co4At3Ch11]
+890.896 -0.108536 0.00 !Mu1ChY108TRaw[Co4At3Ch12]
+898.103 -0.109417 0.00 !Mu1ChY109TRaw[Co4At3Ch13]
+905.123 -0.110268 0.00 !Mu1ChY110TRaw[Co4At3Ch14]
+895.488 -0.109108 0.00 !Mu1ChY111TRaw[Co4At3Ch15]
+901.504 -0.109824 0.00 !Mu1ChY112TRaw[Co4At3Ch16]
+857.767 -0.104291 0.00 !Mu1ChY113TRaw[Co4At4Ch1]
+851.391 -0.103549 0.00 !Mu1ChY114TRaw[Co4At4Ch2]
+861.589 -0.104798 0.00 !Mu1ChY115TRaw[Co4At4Ch3]
+856.553 -0.10419 0.00 !Mu1ChY116TRaw[Co4At4Ch4]
+865 -0.105221 0.00 !Mu1ChY117TRaw[Co4At4Ch5]
+874.383 -0.106354 0.00 !Mu1ChY118TRaw[Co4At4Ch6]
+878.744 -0.1069 0.00 !Mu1ChY119TRaw[Co4At4Ch7]
+873.451 -0.106252 0.00 !Mu1ChY120TRaw[Co4At4Ch8]
+890.883 -0.108379 0.00 !Mu1ChY121TRaw[Co4At4Ch9]
+891.802 -0.108492 0.00 !Mu1ChY122TRaw[Co4At4Ch10]
+889.789 -0.108225 0.00 !Mu1ChY123TRaw[Co4At4Ch11]
+888.888 -0.108132 0.00 !Mu1ChY124TRaw[Co4At4Ch12]
+891.161 -0.108412 0.00 !Mu1ChY125TRaw[Co4At4Ch13]
+886.515 -0.10784 0.00 !Mu1ChY126TRaw[Co4At4Ch14]
+883.99 -0.107526 0.00 !Mu1ChY127TRaw[Co4At4Ch15]
+947.91 -0.121191 0.00 !Mu1ChY128TRaw[Co4At4Ch16]
+936.808 -0.113282 0.00 !Mu2ChX1TRaw[Co1At1Ch1]
+933.588 -0.112935 0.00 !Mu2ChX2TRaw[Co1At1Ch2]
+941.562 -0.113903 0.00 !Mu2ChX3TRaw[Co1At1Ch3]
+953.784 -0.11541 0.00 !Mu2ChX4TRaw[Co1At1Ch4]
+949.078 -0.114834 0.00 !Mu2ChX5TRaw[Co1At1Ch5]
+966.718 -0.116968 0.00 !Mu2ChX6TRaw[Co1At1Ch6]
+960.214 -0.116144 0.00 !Mu2ChX7TRaw[Co1At1Ch7]
+964.987 -0.116738 0.00 !Mu2ChX8TRaw[Co1At1Ch8]
+956.88 -0.115736 0.00 !Mu2ChX9TRaw[Co1At1Ch9]
+968.81 -0.117191 0.00 !Mu2ChX10TRaw[Co1At1Ch10]
+971.337 -0.117505 0.00 !Mu2ChX11TRaw[Co1At1Ch11]
+966.1 -0.116868 0.00 !Mu2ChX12TRaw[Co1At1Ch12]
+972.053 -0.117596 0.00 !Mu2ChX13TRaw[Co1At1Ch13]
+966.078 -0.116864 0.00 !Mu2ChX14TRaw[Co1At1Ch14]
+966.541 -0.116934 0.00 !Mu2ChX15TRaw[Co1At1Ch15]
+1367.28 -0.118078 0.00 !Mu2ChX16TRaw[Co1At1Ch16]
+918.709 -0.111042 0.00 !Mu2ChX17TRaw[Co1At2Ch1]
+933.754 -0.1129 0.00 !Mu2ChX18TRaw[Co1At2Ch2]
+936.423 -0.113239 0.00 !Mu2ChX19TRaw[Co1At2Ch3]
+935.388 -0.11311 0.00 !Mu2ChX20TRaw[Co1At2Ch4]
+946.289 -0.114433 0.00 !Mu2ChX21TRaw[Co1At2Ch5]
+941.937 -0.113893 0.00 !Mu2ChX22TRaw[Co1At2Ch6]
+939.701 -0.113604 0.00 !Mu2ChX23TRaw[Co1At2Ch7]
+947.866 -0.114596 0.00 !Mu2ChX24TRaw[Co1At2Ch8]
+939.11 -0.113523 0.00 !Mu2ChX25TRaw[Co1At2Ch9]
+947.312 -0.114529 0.00 !Mu2ChX26TRaw[Co1At2Ch10]
+947.872 -0.114587 0.00 !Mu2ChX27TRaw[Co1At2Ch11]
+944.089 -0.114127 0.00 !Mu2ChX28TRaw[Co1At2Ch12]
+951.541 -0.115049 0.00 !Mu2ChX29TRaw[Co1At2Ch13]
+947.806 -0.114577 0.00 !Mu2ChX30TRaw[Co1At2Ch14]
+949.646 -0.114801 0.00 !Mu2ChX31TRaw[Co1At2Ch15]
+1101.24 -0.114725 0.00 !Mu2ChX32TRaw[Co1At2Ch16]
+883.868 -0.106884 0.00 !Mu2ChX33TRaw[Co1At3Ch1]
+881.306 -0.106588 0.00 !Mu2ChX34TRaw[Co1At3Ch2]
+890.406 -0.10771 0.00 !Mu2ChX35TRaw[Co1At3Ch3]
+887.688 -0.10739 0.00 !Mu2ChX36TRaw[Co1At3Ch4]
+901.335 -0.109058 0.00 !Mu2ChX37TRaw[Co1At3Ch5]
+898.532 -0.108685 0.00 !Mu2ChX38TRaw[Co1At3Ch6]
+906.127 -0.109605 0.00 !Mu2ChX39TRaw[Co1At3Ch7]
+903.029 -0.109211 0.00 !Mu2ChX40TRaw[Co1At3Ch8]
+902.567 -0.109168 0.00 !Mu2ChX41TRaw[Co1At3Ch9]
+906.324 -0.109617 0.00 !Mu2ChX42TRaw[Co1At3Ch10]
+912.663 -0.1104 0.00 !Mu2ChX43TRaw[Co1At3Ch11]
+911.609 -0.110254 0.00 !Mu2ChX44TRaw[Co1At3Ch12]
+919.504 -0.111219 0.00 !Mu2ChX45TRaw[Co1At3Ch13]
+918.075 -0.111043 0.00 !Mu2ChX46TRaw[Co1At3Ch14]
+920.693 -0.111378 0.00 !Mu2ChX47TRaw[Co1At3Ch15]
+1304.08 -0.11089 0.00 !Mu2ChX48TRaw[Co1At3Ch16]
+852.901 -0.102956 0.00 !Mu2ChX49TRaw[Co1At4Ch1]
+862.836 -0.104191 0.00 !Mu2ChX50TRaw[Co1At4Ch2]
+872.425 -0.105362 0.00 !Mu2ChX51TRaw[Co1At4Ch3]
+866.551 -0.10464 0.00 !Mu2ChX52TRaw[Co1At4Ch4]
+875.507 -0.105723 0.00 !Mu2ChX53TRaw[Co1At4Ch5]
+875.722 -0.105755 0.00 !Mu2ChX54TRaw[Co1At4Ch6]
+877.794 -0.105984 0.00 !Mu2ChX55TRaw[Co1At4Ch7]
+885.59 -0.106931 0.00 !Mu2ChX56TRaw[Co1At4Ch8]
+894.535 -0.108024 0.00 !Mu2ChX57TRaw[Co1At4Ch9]
+896.983 -0.108307 0.00 !Mu2ChX58TRaw[Co1At4Ch10]
+888.442 -0.107279 0.00 !Mu2ChX59TRaw[Co1At4Ch11]
+898.855 -0.108543 0.00 !Mu2ChX60TRaw[Co1At4Ch12]
+900.217 -0.108721 0.00 !Mu2ChX61TRaw[Co1At4Ch13]
+899.805 -0.108665 0.00 !Mu2ChX62TRaw[Co1At4Ch14]
+896.358 -0.10824 0.00 !Mu2ChX63TRaw[Co1At4Ch15]
+1286.56 -0.107885 0.00 !Mu2ChX64TRaw[Co1At4Ch16]
+969.588 -0.117533 0.00 !Mu2ChX65TRaw[Co2At1Ch1]
+969.639 -0.117545 0.00 !Mu2ChX66TRaw[Co2At1Ch2]
+981.26 -0.118957 0.00 !Mu2ChX67TRaw[Co2At1Ch3]
+986.207 -0.119584 0.00 !Mu2ChX68TRaw[Co2At1Ch4]
+450 -0.119902 0.00 !Mu2ChX69TRaw[Co2At1Ch5]
+989.899 -0.12002 0.00 !Mu2ChX70TRaw[Co2At1Ch6]
+991.208 -0.120171 0.00 !Mu2ChX71TRaw[Co2At1Ch7]
+996.377 -0.120802 0.00 !Mu2ChX72TRaw[Co2At1Ch8]
+989.619 -0.119977 0.00 !Mu2ChX73TRaw[Co2At1Ch9]
+998.452 -0.12102 0.00 !Mu2ChX74TRaw[Co2At1Ch10]
+994.24 -0.12055 0.00 !Mu2ChX75TRaw[Co2At1Ch11]
+993.976 -0.12048 0.00 !Mu2ChX76TRaw[Co2At1Ch12]
+1003.64 -0.121688 0.00 !Mu2ChX77TRaw[Co2At1Ch13]
+1007.3 -0.122136 0.00 !Mu2ChX78TRaw[Co2At1Ch14]
+1010.11 -0.122472 0.00 !Mu2ChX79TRaw[Co2At1Ch15]
+1318.69 -0.121488 0.00 !Mu2ChX80TRaw[Co2At1Ch16]
+950.946 -0.115148 0.00 !Mu2ChX81TRaw[Co2At2Ch1]
+961.899 -0.116512 0.00 !Mu2ChX82TRaw[Co2At2Ch2]
+963.68 -0.116735 0.00 !Mu2ChX83TRaw[Co2At2Ch3]
+967.2 -0.117158 0.00 !Mu2ChX84TRaw[Co2At2Ch4]
+967.305 -0.117159 0.00 !Mu2ChX85TRaw[Co2At2Ch5]
+968.515 -0.117336 0.00 !Mu2ChX86TRaw[Co2At2Ch6]
+982.177 -0.118997 0.00 !Mu2ChX87TRaw[Co2At2Ch7]
+981.387 -0.118879 0.00 !Mu2ChX88TRaw[Co2At2Ch8]
+991.904 -0.120152 0.00 !Mu2ChX89TRaw[Co2At2Ch9]
+991.623 -0.120143 0.00 !Mu2ChX90TRaw[Co2At2Ch10]
+990.622 -0.120011 0.00 !Mu2ChX91TRaw[Co2At2Ch11]
+980.868 -0.118788 0.00 !Mu2ChX92TRaw[Co2At2Ch12]
+995.536 -0.120614 0.00 !Mu2ChX93TRaw[Co2At2Ch13]
+999.576 -0.12112 0.00 !Mu2ChX94TRaw[Co2At2Ch14]
+1000.5 -0.12123 0.00 !Mu2ChX95TRaw[Co2At2Ch15]
+985.324 -0.119394 0.00 !Mu2ChX96TRaw[Co2At2Ch16]
+898.921 -0.10895 0.00 !Mu2ChX97TRaw[Co2At3Ch1]
+915.715 -0.11099 0.00 !Mu2ChX98TRaw[Co2At3Ch2]
+911.411 -0.110483 0.00 !Mu2ChX99TRaw[Co2At3Ch3]
+911.648 -0.110494 0.00 !Mu2ChX100TRaw[Co2At3Ch4]
+920.871 -0.11163 0.00 !Mu2ChX101TRaw[Co2At3Ch5]
+920.388 -0.111573 0.00 !Mu2ChX102TRaw[Co2At3Ch6]
+918.664 -0.111368 0.00 !Mu2ChX103TRaw[Co2At3Ch7]
+923.174 -0.111888 0.00 !Mu2ChX104TRaw[Co2At3Ch8]
+933.198 -0.113122 0.00 !Mu2ChX105TRaw[Co2At3Ch9]
+930.187 -0.112764 0.00 !Mu2ChX106TRaw[Co2At3Ch10]
+935.147 -0.113373 0.00 !Mu2ChX107TRaw[Co2At3Ch11]
+930.349 -0.112797 0.00 !Mu2ChX108TRaw[Co2At3Ch12]
+933.561 -0.113176 0.00 !Mu2ChX109TRaw[Co2At3Ch13]
+940.135 -0.113973 0.00 !Mu2ChX110TRaw[Co2At3Ch14]
+940.914 -0.114066 0.00 !Mu2ChX111TRaw[Co2At3Ch15]
+940.163 -0.113973 0.00 !Mu2ChX112TRaw[Co2At3Ch16]
+900.272 -0.108961 0.00 !Mu2ChX113TRaw[Co2At4Ch1]
+905.007 -0.109531 0.00 !Mu2ChX114TRaw[Co2At4Ch2]
+912.464 -0.110461 0.00 !Mu2ChX115TRaw[Co2At4Ch3]
+912.22 -0.110414 0.00 !Mu2ChX116TRaw[Co2At4Ch4]
+927.733 -0.112323 0.00 !Mu2ChX117TRaw[Co2At4Ch5]
+930.691 -0.11267 0.00 !Mu2ChX118TRaw[Co2At4Ch6]
+936.077 -0.113333 0.00 !Mu2ChX119TRaw[Co2At4Ch7]
+939.108 -0.113698 0.00 !Mu2ChX120TRaw[Co2At4Ch8]
+938.924 -0.113666 0.00 !Mu2ChX121TRaw[Co2At4Ch9]
+947.571 -0.114745 0.00 !Mu2ChX122TRaw[Co2At4Ch10]
+938.938 -0.113673 0.00 !Mu2ChX123TRaw[Co2At4Ch11]
+945.07 -0.11443 0.00 !Mu2ChX124TRaw[Co2At4Ch12]
+934.733 -0.113174 0.00 !Mu2ChX125TRaw[Co2At4Ch13]
+934.595 -0.113143 0.00 !Mu2ChX126TRaw[Co2At4Ch14]
+943.044 -0.114176 0.00 !Mu2ChX127TRaw[Co2At4Ch15]
+943.184 -0.114186 0.00 !Mu2ChX128TRaw[Co2At4Ch16]
+987.442 -0.119525 0.00 !Mu2ChY1TRaw[Co3At1Ch1]
+990.37 -0.119903 0.00 !Mu2ChY2TRaw[Co3At1Ch2]
+989.136 -0.119776 0.00 !Mu2ChY3TRaw[Co3At1Ch3]
+995.437 -0.120524 0.00 !Mu2ChY4TRaw[Co3At1Ch4]
+1000.77 -0.121165 0.00 !Mu2ChY5TRaw[Co3At1Ch5]
+998.951 -0.120947 0.00 !Mu2ChY6TRaw[Co3At1Ch6]
+1003.75 -0.121526 0.00 !Mu2ChY7TRaw[Co3At1Ch7]
+1010.87 -0.122366 0.00 !Mu2ChY8TRaw[Co3At1Ch8]
+1012.21 -0.122539 0.00 !Mu2ChY9TRaw[Co3At1Ch9]
+1003.9 -0.121307 0.00 !Mu2ChY10TRaw[Co3At1Ch10]
+1010.24 -0.122275 0.00 !Mu2ChY11TRaw[Co3At1Ch11]
+1015.27 -0.122898 0.00 !Mu2ChY12TRaw[Co3At1Ch12]
+1017.2 -0.12312 0.00 !Mu2ChY13TRaw[Co3At1Ch13]
+1022.23 -0.123746 0.00 !Mu2ChY14TRaw[Co3At1Ch14]
+1021.37 -0.123621 0.00 !Mu2ChY15TRaw[Co3At1Ch15]
+1022.68 -0.123744 0.00 !Mu2ChY16TRaw[Co3At1Ch16]
+939.963 -0.113632 0.00 !Mu2ChY17TRaw[Co3At2Ch1]
+939.308 -0.11359 0.00 !Mu2ChY18TRaw[Co3At2Ch2]
+938.897 -0.113546 0.00 !Mu2ChY19TRaw[Co3At2Ch3]
+938.628 -0.113526 0.00 !Mu2ChY20TRaw[Co3At2Ch4]
+953.606 -0.115367 0.00 !Mu2ChY21TRaw[Co3At2Ch5]
+969.437 -0.117305 0.00 !Mu2ChY22TRaw[Co3At2Ch6]
+965.454 -0.11682 0.00 !Mu2ChY23TRaw[Co3At2Ch7]
+960.44 -0.116216 0.00 !Mu2ChY24TRaw[Co3At2Ch8]
+975.99 -0.118134 0.00 !Mu2ChY25TRaw[Co3At2Ch9]
+978.687 -0.118446 0.00 !Mu2ChY26TRaw[Co3At2Ch10]
+976.083 -0.117858 0.00 !Mu2ChY27TRaw[Co3At2Ch11]
+982.568 -0.11895 0.00 !Mu2ChY28TRaw[Co3At2Ch12]
+976.864 -0.118238 0.00 !Mu2ChY29TRaw[Co3At2Ch13]
+978.515 -0.118468 0.00 !Mu2ChY30TRaw[Co3At2Ch14]
+977.409 -0.118337 0.00 !Mu2ChY31TRaw[Co3At2Ch15]
+965.447 -0.116905 0.00 !Mu2ChY32TRaw[Co3At2Ch16]
+870.181 -0.105393 0.00 !Mu2ChY33TRaw[Co3At3Ch1]
+876.858 -0.106206 0.00 !Mu2ChY34TRaw[Co3At3Ch2]
+889.244 -0.107711 0.00 !Mu2ChY35TRaw[Co3At3Ch3]
+890.519 -0.10786 0.00 !Mu2ChY36TRaw[Co3At3Ch4]
+893.817 -0.108297 0.00 !Mu2ChY37TRaw[Co3At3Ch5]
+888.588 -0.107628 0.00 !Mu2ChY38TRaw[Co3At3Ch6]
+904.701 -0.109574 0.00 !Mu2ChY39TRaw[Co3At3Ch7]
+903.479 -0.109401 0.00 !Mu2ChY40TRaw[Co3At3Ch8]
+906.236 -0.109756 0.00 !Mu2ChY41TRaw[Co3At3Ch9]
+914.382 -0.110304 0.00 !Mu2ChY42TRaw[Co3At3Ch10]
+906.598 -0.10979 0.00 !Mu2ChY43TRaw[Co3At3Ch11]
+910.53 -0.110231 0.00 !Mu2ChY44TRaw[Co3At3Ch12]
+912.933 -0.110532 0.00 !Mu2ChY45TRaw[Co3At3Ch13]
+916.041 -0.110907 0.00 !Mu2ChY46TRaw[Co3At3Ch14]
+919.774 -0.111371 0.00 !Mu2ChY47TRaw[Co3At3Ch15]
+915.148 -0.110791 0.00 !Mu2ChY48TRaw[Co3At3Ch16]
+893.19 -0.108016 0.00 !Mu2ChY49TRaw[Co3At4Ch1]
+902.467 -0.109155 0.00 !Mu2ChY50TRaw[Co3At4Ch2]
+899.946 -0.108834 0.00 !Mu2ChY51TRaw[Co3At4Ch3]
+913.407 -0.110471 0.00 !Mu2ChY52TRaw[Co3At4Ch4]
+905.911 -0.109622 0.00 !Mu2ChY53TRaw[Co3At4Ch5]
+914.887 -0.110708 0.00 !Mu2ChY54TRaw[Co3At4Ch6]
+922.021 -0.111116 0.00 !Mu2ChY55TRaw[Co3At4Ch7]
+914.007 -0.11061 0.00 !Mu2ChY56TRaw[Co3At4Ch8]
+926.973 -0.11216 0.00 !Mu2ChY57TRaw[Co3At4Ch9]
+918.182 -0.111079 0.00 !Mu2ChY58TRaw[Co3At4Ch10]
+920.356 -0.111393 0.00 !Mu2ChY59TRaw[Co3At4Ch11]
+924.322 -0.11168 0.00 !Mu2ChY60TRaw[Co3At4Ch12]
+940.509 -0.11386 0.00 !Mu2ChY61TRaw[Co3At4Ch13]
+925.883 -0.112068 0.00 !Mu2ChY62TRaw[Co3At4Ch14]
+921.861 -0.111623 0.00 !Mu2ChY63TRaw[Co3At4Ch15]
+929.763 -0.112593 0.00 !Mu2ChY64TRaw[Co3At4Ch16]
+924.331 -0.111864 0.00 !Mu2ChY65TRaw[Co4At1Ch1]
+943.62 -0.114242 0.00 !Mu2ChY66TRaw[Co4At1Ch2]
+947.992 -0.114763 0.00 !Mu2ChY67TRaw[Co4At1Ch3]
+945.728 -0.114477 0.00 !Mu2ChY68TRaw[Co4At1Ch4]
+972.019 -0.117701 0.00 !Mu2ChY69TRaw[Co4At1Ch5]
+960.071 -0.116242 0.00 !Mu2ChY70TRaw[Co4At1Ch6]
+967.505 -0.117144 0.00 !Mu2ChY71TRaw[Co4At1Ch7]
+964.472 -0.116783 0.00 !Mu2ChY72TRaw[Co4At1Ch8]
+955.96 -0.115747 0.00 !Mu2ChY73TRaw[Co4At1Ch9]
+958.084 -0.115989 0.00 !Mu2ChY74TRaw[Co4At1Ch10]
+964.33 -0.116762 0.00 !Mu2ChY75TRaw[Co4At1Ch11]
+977.202 -0.118324 0.00 !Mu2ChY76TRaw[Co4At1Ch12]
+973.571 -0.117892 0.00 !Mu2ChY77TRaw[Co4At1Ch13]
+976.2 -0.118194 0.00 !Mu2ChY78TRaw[Co4At1Ch14]
+967.051 -0.117092 0.00 !Mu2ChY79TRaw[Co4At1Ch15]
+968.99 -0.117343 0.00 !Mu2ChY80TRaw[Co4At1Ch16]
+944.542 -0.114246 0.00 !Mu2ChY81TRaw[Co4At2Ch1]
+939.064 -0.113582 0.00 !Mu2ChY82TRaw[Co4At2Ch2]
+951.122 -0.115097 0.00 !Mu2ChY83TRaw[Co4At2Ch3]
+946.764 -0.114574 0.00 !Mu2ChY84TRaw[Co4At2Ch4]
+955.625 -0.115653 0.00 !Mu2ChY85TRaw[Co4At2Ch5]
+966 -0.11692 0.00 !Mu2ChY86TRaw[Co4At2Ch6]
+964.199 -0.116695 0.00 !Mu2ChY87TRaw[Co4At2Ch7]
+969.926 -0.117388 0.00 !Mu2ChY88TRaw[Co4At2Ch8]
+972.649 -0.117739 0.00 !Mu2ChY89TRaw[Co4At2Ch9]
+974.635 -0.11797 0.00 !Mu2ChY90TRaw[Co4At2Ch10]
+979.1 -0.118525 0.00 !Mu2ChY91TRaw[Co4At2Ch11]
+969.715 -0.117371 0.00 !Mu2ChY92TRaw[Co4At2Ch12]
+977.475 -0.118331 0.00 !Mu2ChY93TRaw[Co4At2Ch13]
+977.142 -0.118283 0.00 !Mu2ChY94TRaw[Co4At2Ch14]
+984.646 -0.119174 0.00 !Mu2ChY95TRaw[Co4At2Ch15]
+989.259 -0.119806 0.00 !Mu2ChY96TRaw[Co4At2Ch16]
+897.538 -0.108639 0.00 !Mu2ChY97TRaw[Co4At3Ch1]
+893.51 -0.108189 0.00 !Mu2ChY98TRaw[Co4At3Ch2]
+904.052 -0.109474 0.00 !Mu2ChY99TRaw[Co4At3Ch3]
+902.752 -0.109308 0.00 !Mu2ChY100TRaw[Co4At3Ch4]
+916.527 -0.110997 0.00 !Mu2ChY101TRaw[Co4At3Ch5]
+924.175 -0.111938 0.00 !Mu2ChY102TRaw[Co4At3Ch6]
+914.572 -0.110746 0.00 !Mu2ChY103TRaw[Co4At3Ch7]
+930.562 -0.112691 0.00 !Mu2ChY104TRaw[Co4At3Ch8]
+925.104 -0.112025 0.00 !Mu2ChY105TRaw[Co4At3Ch9]
+920.853 -0.111507 0.00 !Mu2ChY106TRaw[Co4At3Ch10]
+922.078 -0.111663 0.00 !Mu2ChY107TRaw[Co4At3Ch11]
+921.772 -0.111623 0.00 !Mu2ChY108TRaw[Co4At3Ch12]
+925.31 -0.112066 0.00 !Mu2ChY109TRaw[Co4At3Ch13]
+926.033 -0.11214 0.00 !Mu2ChY110TRaw[Co4At3Ch14]
+922.391 -0.111703 0.00 !Mu2ChY111TRaw[Co4At3Ch15]
+912.83 -0.110525 0.00 !Mu2ChY112TRaw[Co4At3Ch16]
+852.798 -0.102981 0.00 !Mu2ChY113TRaw[Co4At4Ch1]
+868.843 -0.104976 0.00 !Mu2ChY114TRaw[Co4At4Ch2]
+876.793 -0.105936 0.00 !Mu2ChY115TRaw[Co4At4Ch3]
+875.311 -0.10575 0.00 !Mu2ChY116TRaw[Co4At4Ch4]
+883.331 -0.106741 0.00 !Mu2ChY117TRaw[Co4At4Ch5]
+879.699 -0.10628 0.00 !Mu2ChY118TRaw[Co4At4Ch6]
+891.993 -0.107805 0.00 !Mu2ChY119TRaw[Co4At4Ch7]
+893.52 -0.107966 0.00 !Mu2ChY120TRaw[Co4At4Ch8]
+883.484 -0.106759 0.00 !Mu2ChY121TRaw[Co4At4Ch9]
+896.835 -0.108381 0.00 !Mu2ChY122TRaw[Co4At4Ch10]
+895.32 -0.108195 0.00 !Mu2ChY123TRaw[Co4At4Ch11]
+1336.18 -0.108195 0.00 !Mu2ChY124TRaw[Co4At4Ch12]
+897.921 -0.108519 0.00 !Mu2ChY125TRaw[Co4At4Ch13]
+898.896 -0.10863 0.00 !Mu2ChY126TRaw[Co4At4Ch14]
+900.009 -0.108768 0.00 !Mu2ChY127TRaw[Co4At4Ch15]
+896.14 -0.108297 0.00 !Mu2ChY128TRaw[Co4At4Ch16]
+936.261 -0.113591 0.00 !Mu3ChX1TRaw[Co1At1Ch1]
+949.597 -0.115254 0.00 !Mu3ChX2TRaw[Co1At1Ch2]
+954.137 -0.115822 0.00 !Mu3ChX3TRaw[Co1At1Ch3]
+956.021 -0.116042 0.00 !Mu3ChX4TRaw[Co1At1Ch4]
+948.148 -0.115096 0.00 !Mu3ChX5TRaw[Co1At1Ch5]
+962.715 -0.11686 0.00 !Mu3ChX6TRaw[Co1At1Ch6]
+967.087 -0.117385 0.00 !Mu3ChX7TRaw[Co1At1Ch7]
+972.268 -0.118019 0.00 !Mu3ChX8TRaw[Co1At1Ch8]
+970.481 -0.117779 0.00 !Mu3ChX9TRaw[Co1At1Ch9]
+968.226 -0.117496 0.00 !Mu3ChX10TRaw[Co1At1Ch10]
+970.608 -0.117795 0.00 !Mu3ChX11TRaw[Co1At1Ch11]
+982.826 -0.119273 0.00 !Mu3ChX12TRaw[Co1At1Ch12]
+972.655 -0.118031 0.00 !Mu3ChX13TRaw[Co1At1Ch13]
+978.966 -0.118805 0.00 !Mu3ChX14TRaw[Co1At1Ch14]
+976.646 -0.118524 0.00 !Mu3ChX15TRaw[Co1At1Ch15]
+1358.4 -0.119127 0.00 !Mu3ChX16TRaw[Co1At1Ch16]
+965.022 -0.117029 0.00 !Mu3ChX17TRaw[Co1At2Ch1]
+961.069 -0.116582 0.00 !Mu3ChX18TRaw[Co1At2Ch2]
+979.729 -0.11886 0.00 !Mu3ChX19TRaw[Co1At2Ch3]
+975.886 -0.118386 0.00 !Mu3ChX20TRaw[Co1At2Ch4]
+982.811 -0.119229 0.00 !Mu3ChX21TRaw[Co1At2Ch5]
+989.956 -0.120114 0.00 !Mu3ChX22TRaw[Co1At2Ch6]
+982.322 -0.119177 0.00 !Mu3ChX23TRaw[Co1At2Ch7]
+986.837 -0.119693 0.00 !Mu3ChX24TRaw[Co1At2Ch8]
+984.553 -0.119405 0.00 !Mu3ChX25TRaw[Co1At2Ch9]
+985.367 -0.119523 0.00 !Mu3ChX26TRaw[Co1At2Ch10]
+998.436 -0.12115 0.00 !Mu3ChX27TRaw[Co1At2Ch11]
+994.592 -0.120628 0.00 !Mu3ChX28TRaw[Co1At2Ch12]
+1004.55 -0.121885 0.00 !Mu3ChX29TRaw[Co1At2Ch13]
+997.75 -0.121035 0.00 !Mu3ChX30TRaw[Co1At2Ch14]
+999.387 -0.121233 0.00 !Mu3ChX31TRaw[Co1At2Ch15]
+994.205 -0.120654 0.00 !Mu3ChX32TRaw[Co1At2Ch16]
+895.626 -0.108693 0.00 !Mu3ChX33TRaw[Co1At3Ch1]
+901.788 -0.109485 0.00 !Mu3ChX34TRaw[Co1At3Ch2]
+909.669 -0.110421 0.00 !Mu3ChX35TRaw[Co1At3Ch3]
+902.809 -0.109588 0.00 !Mu3ChX36TRaw[Co1At3Ch4]
+908.707 -0.110301 0.00 !Mu3ChX37TRaw[Co1At3Ch5]
+917.184 -0.111327 0.00 !Mu3ChX38TRaw[Co1At3Ch6]
+918.636 -0.111495 0.00 !Mu3ChX39TRaw[Co1At3Ch7]
+927.002 -0.112521 0.00 !Mu3ChX40TRaw[Co1At3Ch8]
+934.79 -0.11347 0.00 !Mu3ChX41TRaw[Co1At3Ch9]
+928.489 -0.112717 0.00 !Mu3ChX42TRaw[Co1At3Ch10]
+925.669 -0.112335 0.00 !Mu3ChX43TRaw[Co1At3Ch11]
+450 -0.112964 0.00 !Mu3ChX44TRaw[Co1At3Ch12]
+932.907 -0.113245 0.00 !Mu3ChX45TRaw[Co1At3Ch13]
+927.364 -0.11258 0.00 !Mu3ChX46TRaw[Co1At3Ch14]
+934.8 -0.113476 0.00 !Mu3ChX47TRaw[Co1At3Ch15]
+933.166 -0.113256 0.00 !Mu3ChX48TRaw[Co1At3Ch16]
+863.882 -0.104661 0.00 !Mu3ChX49TRaw[Co1At4Ch1]
+863.742 -0.104634 0.00 !Mu3ChX50TRaw[Co1At4Ch2]
+876.032 -0.106155 0.00 !Mu3ChX51TRaw[Co1At4Ch3]
+885.987 -0.107364 0.00 !Mu3ChX52TRaw[Co1At4Ch4]
+886.077 -0.107368 0.00 !Mu3ChX53TRaw[Co1At4Ch5]
+882.141 -0.106861 0.00 !Mu3ChX54TRaw[Co1At4Ch6]
+894.386 -0.108382 0.00 !Mu3ChX55TRaw[Co1At4Ch7]
+897.465 -0.108733 0.00 !Mu3ChX56TRaw[Co1At4Ch8]
+894.9 -0.10844 0.00 !Mu3ChX57TRaw[Co1At4Ch9]
+900.295 -0.10908 0.00 !Mu3ChX58TRaw[Co1At4Ch10]
+895.793 -0.108538 0.00 !Mu3ChX59TRaw[Co1At4Ch11]
+895.372 -0.10849 0.00 !Mu3ChX60TRaw[Co1At4Ch12]
+902.176 -0.109312 0.00 !Mu3ChX61TRaw[Co1At4Ch13]
+903.192 -0.109445 0.00 !Mu3ChX62TRaw[Co1At4Ch14]
+889.712 -0.107803 0.00 !Mu3ChX63TRaw[Co1At4Ch15]
+921.265 -0.108862 0.00 !Mu3ChX64TRaw[Co1At4Ch16]
+981.944 -0.119126 0.00 !Mu3ChX65TRaw[Co2At1Ch1]
+987.148 -0.119789 0.00 !Mu3ChX66TRaw[Co2At1Ch2]
+987.456 -0.119851 0.00 !Mu3ChX67TRaw[Co2At1Ch3]
+1003.28 -0.121753 0.00 !Mu3ChX68TRaw[Co2At1Ch4]
+1003.82 -0.121824 0.00 !Mu3ChX69TRaw[Co2At1Ch5]
+1000.66 -0.121446 0.00 !Mu3ChX70TRaw[Co2At1Ch6]
+1004.35 -0.121893 0.00 !Mu3ChX71TRaw[Co2At1Ch7]
+1008.06 -0.122347 0.00 !Mu3ChX72TRaw[Co2At1Ch8]
+1004.22 -0.121883 0.00 !Mu3ChX73TRaw[Co2At1Ch9]
+1011.08 -0.122684 0.00 !Mu3ChX74TRaw[Co2At1Ch10]
+1019.46 -0.123722 0.00 !Mu3ChX75TRaw[Co2At1Ch11]
+1029.58 -0.124938 0.00 !Mu3ChX76TRaw[Co2At1Ch12]
+1011.08 -0.122709 0.00 !Mu3ChX77TRaw[Co2At1Ch13]
+1010.81 -0.12265 0.00 !Mu3ChX78TRaw[Co2At1Ch14]
+1022.22 -0.124061 0.00 !Mu3ChX79TRaw[Co2At1Ch15]
+1391.94 -0.123313 0.00 !Mu3ChX80TRaw[Co2At1Ch16]
+939.257 -0.11381 0.00 !Mu3ChX81TRaw[Co2At2Ch1]
+945.066 -0.114558 0.00 !Mu3ChX82TRaw[Co2At2Ch2]
+948.6 -0.114986 0.00 !Mu3ChX83TRaw[Co2At2Ch3]
+947.122 -0.114804 0.00 !Mu3ChX84TRaw[Co2At2Ch4]
+961.987 -0.116619 0.00 !Mu3ChX85TRaw[Co2At2Ch5]
+964.59 -0.11693 0.00 !Mu3ChX86TRaw[Co2At2Ch6]
+959.397 -0.116299 0.00 !Mu3ChX87TRaw[Co2At2Ch7]
+964.355 -0.116863 0.00 !Mu3ChX88TRaw[Co2At2Ch8]
+975.002 -0.118161 0.00 !Mu3ChX89TRaw[Co2At2Ch9]
+971.077 -0.117687 0.00 !Mu3ChX90TRaw[Co2At2Ch10]
+976.04 -0.118304 0.00 !Mu3ChX91TRaw[Co2At2Ch11]
+983.975 -0.119256 0.00 !Mu3ChX92TRaw[Co2At2Ch12]
+983.617 -0.119241 0.00 !Mu3ChX93TRaw[Co2At2Ch13]
+983.301 -0.119186 0.00 !Mu3ChX94TRaw[Co2At2Ch14]
+980.734 -0.118879 0.00 !Mu3ChX95TRaw[Co2At2Ch15]
+975.837 -0.118278 0.00 !Mu3ChX96TRaw[Co2At2Ch16]
+858.761 -0.104124 0.00 !Mu3ChX97TRaw[Co2At3Ch1]
+863.527 -0.104728 0.00 !Mu3ChX98TRaw[Co2At3Ch2]
+863.719 -0.104753 0.00 !Mu3ChX99TRaw[Co2At3Ch3]
+869.797 -0.105492 0.00 !Mu3ChX100TRaw[Co2At3Ch4]
+879.582 -0.106693 0.00 !Mu3ChX101TRaw[Co2At3Ch5]
+874.971 -0.10614 0.00 !Mu3ChX102TRaw[Co2At3Ch6]
+879.706 -0.106708 0.00 !Mu3ChX103TRaw[Co2At3Ch7]
+878.738 -0.106567 0.00 !Mu3ChX104TRaw[Co2At3Ch8]
+887.854 -0.107671 0.00 !Mu3ChX105TRaw[Co2At3Ch9]
+892.385 -0.108216 0.00 !Mu3ChX106TRaw[Co2At3Ch10]
+884.225 -0.107225 0.00 !Mu3ChX107TRaw[Co2At3Ch11]
+894.981 -0.108561 0.00 !Mu3ChX108TRaw[Co2At3Ch12]
+895.51 -0.108609 0.00 !Mu3ChX109TRaw[Co2At3Ch13]
+891.851 -0.108191 0.00 !Mu3ChX110TRaw[Co2At3Ch14]
+901.356 -0.109337 0.00 !Mu3ChX111TRaw[Co2At3Ch15]
+900.727 -0.108709 0.00 !Mu3ChX112TRaw[Co2At3Ch16]
+855.952 -0.103629 0.00 !Mu3ChX113TRaw[Co2At4Ch1]
+865.7 -0.10481 0.00 !Mu3ChX114TRaw[Co2At4Ch2]
+866.161 -0.1049 0.00 !Mu3ChX115TRaw[Co2At4Ch3]
+872.362 -0.105647 0.00 !Mu3ChX116TRaw[Co2At4Ch4]
+1490.13 -0.126949 0.00 !Mu3ChX117TRaw[Co2At4Ch5]
+876.561 -0.106145 0.00 !Mu3ChX118TRaw[Co2At4Ch6]
+884.075 -0.107055 0.00 !Mu3ChX119TRaw[Co2At4Ch7]
+881.54 -0.10675 0.00 !Mu3ChX120TRaw[Co2At4Ch8]
+884.679 -0.107137 0.00 !Mu3ChX121TRaw[Co2At4Ch9]
+888.637 -0.107599 0.00 !Mu3ChX122TRaw[Co2At4Ch10]
+884.493 -0.107093 0.00 !Mu3ChX123TRaw[Co2At4Ch11]
+893.964 -0.108252 0.00 !Mu3ChX124TRaw[Co2At4Ch12]
+888.064 -0.107522 0.00 !Mu3ChX125TRaw[Co2At4Ch13]
+894.536 -0.108336 0.00 !Mu3ChX126TRaw[Co2At4Ch14]
+882.088 -0.106793 0.00 !Mu3ChX127TRaw[Co2At4Ch15]
+890.98 -0.107896 0.00 !Mu3ChX128TRaw[Co2At4Ch16]
+916.716 -0.11121 0.00 !Mu3ChY1TRaw[Co3At1Ch1]
+924.259 -0.112154 0.00 !Mu3ChY2TRaw[Co3At1Ch2]
+933.256 -0.113241 0.00 !Mu3ChY3TRaw[Co3At1Ch3]
+942.953 -0.114409 0.00 !Mu3ChY4TRaw[Co3At1Ch4]
+939.901 -0.114032 0.00 !Mu3ChY5TRaw[Co3At1Ch5]
+947.878 -0.114994 0.00 !Mu3ChY6TRaw[Co3At1Ch6]
+952.484 -0.115552 0.00 !Mu3ChY7TRaw[Co3At1Ch7]
+952.713 -0.115546 0.00 !Mu3ChY8TRaw[Co3At1Ch8]
+960.463 -0.116506 0.00 !Mu3ChY9TRaw[Co3At1Ch9]
+964.543 -0.117006 0.00 !Mu3ChY10TRaw[Co3At1Ch10]
+966.84 -0.117251 0.00 !Mu3ChY11TRaw[Co3At1Ch11]
+965.68 -0.117093 0.00 !Mu3ChY12TRaw[Co3At1Ch12]
+975.182 -0.118272 0.00 !Mu3ChY13TRaw[Co3At1Ch13]
+981.614 -0.119048 0.00 !Mu3ChY14TRaw[Co3At1Ch14]
+973.869 -0.118075 0.00 !Mu3ChY15TRaw[Co3At1Ch15]
+981.076 -0.118941 0.00 !Mu3ChY16TRaw[Co3At1Ch16]
+967.206 -0.117174 0.00 !Mu3ChY17TRaw[Co3At2Ch1]
+980.188 -0.118815 0.00 !Mu3ChY18TRaw[Co3At2Ch2]
+981.134 -0.118931 0.00 !Mu3ChY19TRaw[Co3At2Ch3]
+986.719 -0.119638 0.00 !Mu3ChY20TRaw[Co3At2Ch4]
+992.386 -0.12034 0.00 !Mu3ChY21TRaw[Co3At2Ch5]
+1002.21 -0.121551 0.00 !Mu3ChY22TRaw[Co3At2Ch6]
+997.474 -0.120998 0.00 !Mu3ChY23TRaw[Co3At2Ch7]
+992.008 -0.120321 0.00 !Mu3ChY24TRaw[Co3At2Ch8]
+998.021 -0.121073 0.00 !Mu3ChY25TRaw[Co3At2Ch9]
+1004.15 -0.121839 0.00 !Mu3ChY26TRaw[Co3At2Ch10]
+1004.31 -0.121856 0.00 !Mu3ChY27TRaw[Co3At2Ch11]
+1010.69 -0.122649 0.00 !Mu3ChY28TRaw[Co3At2Ch12]
+1013.79 -0.12302 0.00 !Mu3ChY29TRaw[Co3At2Ch13]
+1002.56 -0.121668 0.00 !Mu3ChY30TRaw[Co3At2Ch14]
+1011.72 -0.122794 0.00 !Mu3ChY31TRaw[Co3At2Ch15]
+1012.54 -0.122927 0.00 !Mu3ChY32TRaw[Co3At2Ch16]
+868.546 -0.105446 0.00 !Mu3ChY33TRaw[Co3At3Ch1]
+865.415 -0.105092 0.00 !Mu3ChY34TRaw[Co3At3Ch2]
+870.615 -0.10573 0.00 !Mu3ChY35TRaw[Co3At3Ch3]
+867.501 -0.105345 0.00 !Mu3ChY36TRaw[Co3At3Ch4]
+879.085 -0.106744 0.00 !Mu3ChY37TRaw[Co3At3Ch5]
+878.372 -0.106654 0.00 !Mu3ChY38TRaw[Co3At3Ch6]
+883.834 -0.107294 0.00 !Mu3ChY39TRaw[Co3At3Ch7]
+892.468 -0.108361 0.00 !Mu3ChY40TRaw[Co3At3Ch8]
+889.652 -0.10799 0.00 !Mu3ChY41TRaw[Co3At3Ch9]
+893.582 -0.10846 0.00 !Mu3ChY42TRaw[Co3At3Ch10]
+902.982 -0.109593 0.00 !Mu3ChY43TRaw[Co3At3Ch11]
+899.542 -0.109195 0.00 !Mu3ChY44TRaw[Co3At3Ch12]
+894.786 -0.108568 0.00 !Mu3ChY45TRaw[Co3At3Ch13]
+904.997 -0.109804 0.00 !Mu3ChY46TRaw[Co3At3Ch14]
+908.733 -0.110263 0.00 !Mu3ChY47TRaw[Co3At3Ch15]
+901.41 -0.109382 0.00 !Mu3ChY48TRaw[Co3At3Ch16]
+874.853 -0.105997 0.00 !Mu3ChY49TRaw[Co3At4Ch1]
+880.713 -0.106772 0.00 !Mu3ChY50TRaw[Co3At4Ch2]
+892.705 -0.108217 0.00 !Mu3ChY51TRaw[Co3At4Ch3]
+895.218 -0.108527 0.00 !Mu3ChY52TRaw[Co3At4Ch4]
+889.343 -0.107825 0.00 !Mu3ChY53TRaw[Co3At4Ch5]
+897.932 -0.108862 0.00 !Mu3ChY54TRaw[Co3At4Ch6]
+902.448 -0.109456 0.00 !Mu3ChY55TRaw[Co3At4Ch7]
+908.367 -0.110152 0.00 !Mu3ChY56TRaw[Co3At4Ch8]
+912.74 -0.110718 0.00 !Mu3ChY57TRaw[Co3At4Ch9]
+911.519 -0.11056 0.00 !Mu3ChY58TRaw[Co3At4Ch10]
+920.413 -0.111636 0.00 !Mu3ChY59TRaw[Co3At4Ch11]
+906.185 -0.109934 0.00 !Mu3ChY60TRaw[Co3At4Ch12]
+919.759 -0.111581 0.00 !Mu3ChY61TRaw[Co3At4Ch13]
+920.555 -0.111694 0.00 !Mu3ChY62TRaw[Co3At4Ch14]
+915.715 -0.1111 0.00 !Mu3ChY63TRaw[Co3At4Ch15]
+918.454 -0.11144 0.00 !Mu3ChY64TRaw[Co3At4Ch16]
+901.244 -0.109216 0.00 !Mu3ChY65TRaw[Co4At1Ch1]
+907.742 -0.110026 0.00 !Mu3ChY66TRaw[Co4At1Ch2]
+908.334 -0.110106 0.00 !Mu3ChY67TRaw[Co4At1Ch3]
+916.785 -0.11114 0.00 !Mu3ChY68TRaw[Co4At1Ch4]
+928.178 -0.11252 0.00 !Mu3ChY69TRaw[Co4At1Ch5]
+936.612 -0.113544 0.00 !Mu3ChY70TRaw[Co4At1Ch6]
+929.327 -0.112672 0.00 !Mu3ChY71TRaw[Co4At1Ch7]
+927.889 -0.112491 0.00 !Mu3ChY72TRaw[Co4At1Ch8]
+944.015 -0.114462 0.00 !Mu3ChY73TRaw[Co4At1Ch9]
+936.5 -0.11354 0.00 !Mu3ChY74TRaw[Co4At1Ch10]
+952.669 -0.115517 0.00 !Mu3ChY75TRaw[Co4At1Ch11]
+949.121 -0.115086 0.00 !Mu3ChY76TRaw[Co4At1Ch12]
+961.66 -0.116618 0.00 !Mu3ChY77TRaw[Co4At1Ch13]
+950.324 -0.115232 0.00 !Mu3ChY78TRaw[Co4At1Ch14]
+943.005 -0.114343 0.00 !Mu3ChY79TRaw[Co4At1Ch15]
+948.05 -0.114947 0.00 !Mu3ChY80TRaw[Co4At1Ch16]
+967.814 -0.117288 0.00 !Mu3ChY81TRaw[Co4At2Ch1]
+979.35 -0.118727 0.00 !Mu3ChY82TRaw[Co4At2Ch2]
+985.387 -0.119474 0.00 !Mu3ChY83TRaw[Co4At2Ch3]
+988.884 -0.119909 0.00 !Mu3ChY84TRaw[Co4At2Ch4]
+990.688 -0.120116 0.00 !Mu3ChY85TRaw[Co4At2Ch5]
+997.728 -0.120975 0.00 !Mu3ChY86TRaw[Co4At2Ch6]
+994.598 -0.120606 0.00 !Mu3ChY87TRaw[Co4At2Ch7]
+996.045 -0.12076 0.00 !Mu3ChY88TRaw[Co4At2Ch8]
+1000.77 -0.121336 0.00 !Mu3ChY89TRaw[Co4At2Ch9]
+1011.99 -0.122713 0.00 !Mu3ChY90TRaw[Co4At2Ch10]
+1015.05 -0.1231 0.00 !Mu3ChY91TRaw[Co4At2Ch11]
+1003.4 -0.121678 0.00 !Mu3ChY92TRaw[Co4At2Ch12]
+1011.74 -0.122697 0.00 !Mu3ChY93TRaw[Co4At2Ch13]
+1014.96 -0.123087 0.00 !Mu3ChY94TRaw[Co4At2Ch14]
+1007.34 -0.122144 0.00 !Mu3ChY95TRaw[Co4At2Ch15]
+1008.36 -0.122274 0.00 !Mu3ChY96TRaw[Co4At2Ch16]
+871.329 -0.105573 0.00 !Mu3ChY97TRaw[Co4At3Ch1]
+868.142 -0.105224 0.00 !Mu3ChY98TRaw[Co4At3Ch2]
+872.865 -0.105791 0.00 !Mu3ChY99TRaw[Co4At3Ch3]
+882.085 -0.106904 0.00 !Mu3ChY100TRaw[Co4At3Ch4]
+889.159 -0.107789 0.00 !Mu3ChY101TRaw[Co4At3Ch5]
+888.956 -0.107742 0.00 !Mu3ChY102TRaw[Co4At3Ch6]
+899.906 -0.109085 0.00 !Mu3ChY103TRaw[Co4At3Ch7]
+892.033 -0.108126 0.00 !Mu3ChY104TRaw[Co4At3Ch8]
+899.207 -0.108999 0.00 !Mu3ChY105TRaw[Co4At3Ch9]
+891.613 -0.108068 0.00 !Mu3ChY106TRaw[Co4At3Ch10]
+891.136 -0.108006 0.00 !Mu3ChY107TRaw[Co4At3Ch11]
+900.207 -0.109125 0.00 !Mu3ChY108TRaw[Co4At3Ch12]
+902.911 -0.109439 0.00 !Mu3ChY109TRaw[Co4At3Ch13]
+900.692 -0.109168 0.00 !Mu3ChY110TRaw[Co4At3Ch14]
+896.133 -0.108625 0.00 !Mu3ChY111TRaw[Co4At3Ch15]
+902.665 -0.109416 0.00 !Mu3ChY112TRaw[Co4At3Ch16]
+888.587 -0.107554 0.00 !Mu3ChY113TRaw[Co4At4Ch1]
+895.918 -0.108473 0.00 !Mu3ChY114TRaw[Co4At4Ch2]
+898.97 -0.108848 0.00 !Mu3ChY115TRaw[Co4At4Ch3]
+894.394 -0.108292 0.00 !Mu3ChY116TRaw[Co4At4Ch4]
+902.574 -0.109288 0.00 !Mu3ChY117TRaw[Co4At4Ch5]
+907.964 -0.109943 0.00 !Mu3ChY118TRaw[Co4At4Ch6]
+906.564 -0.109765 0.00 !Mu3ChY119TRaw[Co4At4Ch7]
+905.798 -0.109672 0.00 !Mu3ChY120TRaw[Co4At4Ch8]
+912.702 -0.110512 0.00 !Mu3ChY121TRaw[Co4At4Ch9]
+921.335 -0.111588 0.00 !Mu3ChY122TRaw[Co4At4Ch10]
+924.085 -0.111915 0.00 !Mu3ChY123TRaw[Co4At4Ch11]
+906.564 -0.109772 0.00 !Mu3ChY124TRaw[Co4At4Ch12]
+910.838 -0.11029 0.00 !Mu3ChY125TRaw[Co4At4Ch13]
+916.176 -0.110947 0.00 !Mu3ChY126TRaw[Co4At4Ch14]
+917.763 -0.111116 0.00 !Mu3ChY127TRaw[Co4At4Ch15]
+925.891 -0.112131 0.00 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/calib_simu/.DS_Store b/Projects/MUSETT/calibration/calib_simu/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..f634712db90992f67033ce105c1d0b259dd8a414
Binary files /dev/null and b/Projects/MUSETT/calibration/calib_simu/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/calib_simu/Calibration.txt b/Projects/MUSETT/calibration/calib_simu/Calibration.txt
new file mode 100755
index 0000000000000000000000000000000000000000..f9c8fd827ecc027383447ddca282737a0c4ec402
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Calibration.txt
@@ -0,0 +1,21 @@
+CalibrationFilePath
+  calibration/double_alpha_Ra222_R271-279/M0_E/Cal_Str_X_E_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_E/Cal_Str_X_E_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_E/Cal_Str_X_E_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_E/Cal_Str_X_E_MM3.cal
+
+
+  calibration/double_alpha_Ra222_R271-279/M0_E/Cal_Str_Y_E_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_E/Cal_Str_Y_E_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_E/Cal_Str_Y_E_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_E/Cal_Str_Y_E_MM3.cal
+
+  calibration/double_alpha_Ra222_R271-279/M0_T/Cal_Str_X_T_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_T/Cal_Str_X_T_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_T/Cal_Str_X_T_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_T/Cal_Str_X_T_MM3.cal
+
+  calibration/double_alpha_Ra222_R271-279/M0_T/Cal_Str_Y_T_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_T/Cal_Str_Y_T_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_T/Cal_Str_Y_T_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_T/Cal_Str_Y_T_MM3.cal
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/.DS_Store b/Projects/MUSETT/calibration/calib_simu/Energy/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..2776b30c28fa4318f947f0895bb93c1685f4aa29
Binary files /dev/null and b/Projects/MUSETT/calibration/calib_simu/Energy/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/.root_hist b/Projects/MUSETT/calibration/calib_simu/Energy/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..09dfc734ee013cb276530bcb513b3517ad5ad8e5
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/.root_hist
@@ -0,0 +1,97 @@
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.qqqqqqqqqqq
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.x ExtractRawHisto_E_Pedestals.C
+.L ExtractRawHisto_E_Pedestals.C+
+we 
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+q
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+.x ExtractRawHisto_E_Pedestals.C
+.q
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+.q
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.ls
+.q
+TFile *_file0 = TFile::Open("Histograms/run_1_pedestals_RawMUST2Histos.root")
+new TBrowser
+.q
+.L ExtractRawHisto_E.C+
+.q
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_7_pedestals","MUST2")
+ew TBrowser
+new TBrowser
+.q
+.L EnergyCalibrator.C+
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+ls
+.ls
+.q
+ExtractRawHistos("run_9","MUST2")
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_9","MUST2")
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_19","MUST2")
+ls
+.ls
+.L EnergyCalibrator+
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q 
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/.DS_Store b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/.root_hist b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..c37259c1cc98a5df9fb1857211ba438c6f0f0080
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/.root_hist
@@ -0,0 +1,5 @@
+new TBrowser
+q
+.q
+new TBrowser
+.q
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..59533f1c2519edd5aac99e291c7b1ce2b6b0e9a5
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
@@ -0,0 +1,147 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 1
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c52a1498c48fb030cff766a611dcc953c32ec35f
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E -61.4176 0.00749736
+MUSETT_T0_DSSD_X1_E -61.7332 0.00753786
+MUSETT_T0_DSSD_X2_E -61.3896 0.00749605
+MUSETT_T0_DSSD_X3_E -61.2903 0.00748199
+MUSETT_T0_DSSD_X4_E -61.431 0.00750212
+MUSETT_T0_DSSD_X5_E -61.326 0.00748787
+MUSETT_T0_DSSD_X6_E -61.0441 0.00745321
+MUSETT_T0_DSSD_X7_E -60.8321 0.00742833
+MUSETT_T0_DSSD_X8_E -60.8507 0.00742788
+MUSETT_T0_DSSD_X9_E -62.3428 0.0076116
+MUSETT_T0_DSSD_X10_E -62.0533 0.00757613
+MUSETT_T0_DSSD_X11_E -61.706 0.00753425
+MUSETT_T0_DSSD_X12_E -61.8146 0.00754892
+MUSETT_T0_DSSD_X13_E -61.4548 0.00750366
+MUSETT_T0_DSSD_X14_E -62.103 0.00758278
+MUSETT_T0_DSSD_X15_E -61.0209 0.00745076
+MUSETT_T0_DSSD_X16_E -62.6789 0.0076538
+MUSETT_T0_DSSD_X17_E -62.1645 0.00759548
+MUSETT_T0_DSSD_X18_E -61.9167 0.00755979
+MUSETT_T0_DSSD_X19_E -61.9572 0.00756687
+MUSETT_T0_DSSD_X20_E -63.6131 0.00776601
+MUSETT_T0_DSSD_X21_E -62.1196 0.00758583
+MUSETT_T0_DSSD_X22_E -62.0121 0.00757122
+MUSETT_T0_DSSD_X23_E -62.3166 0.00761046
+MUSETT_T0_DSSD_X24_E -62.4782 0.00762937
+MUSETT_T0_DSSD_X25_E -62.5948 0.00764366
+MUSETT_T0_DSSD_X26_E -62.8291 0.00767039
+MUSETT_T0_DSSD_X27_E -62.1445 0.00759002
+MUSETT_T0_DSSD_X28_E -62.7578 0.00766138
+MUSETT_T0_DSSD_X29_E -62.2734 0.00760445
+MUSETT_T0_DSSD_X30_E -63.1287 0.00770747
+MUSETT_T0_DSSD_X31_E -62.259 0.007602
+MUSETT_T0_DSSD_X32_E -56.1626 0.0068604
+MUSETT_T0_DSSD_X33_E -56.4142 0.00688949
+MUSETT_T0_DSSD_X34_E -55.0958 0.00672999
+MUSETT_T0_DSSD_X35_E -55.8984 0.00682813
+MUSETT_T0_DSSD_X36_E -55.6715 0.00679777
+MUSETT_T0_DSSD_X37_E -54.9391 0.00671187
+MUSETT_T0_DSSD_X38_E -55.4656 0.00677524
+MUSETT_T0_DSSD_X39_E -55.2745 0.00675192
+MUSETT_T0_DSSD_X40_E -55.9564 0.00683237
+MUSETT_T0_DSSD_X41_E -55.6024 0.00678835
+MUSETT_T0_DSSD_X42_E -55.7768 0.00681221
+MUSETT_T0_DSSD_X43_E -55.9848 0.00683639
+MUSETT_T0_DSSD_X44_E -56.0388 0.00684277
+MUSETT_T0_DSSD_X45_E -100.746 0.0122904
+MUSETT_T0_DSSD_X46_E -99.399 0.0121408
+MUSETT_T0_DSSD_X47_E -55.6563 0.00679819
+MUSETT_T0_DSSD_X48_E -57.4429 0.0070159
+MUSETT_T0_DSSD_X49_E -57.5152 0.00702414
+MUSETT_T0_DSSD_X50_E -57.487 0.00701839
+MUSETT_T0_DSSD_X51_E -56.9208 0.00695135
+MUSETT_T0_DSSD_X52_E -58.0107 0.00708119
+MUSETT_T0_DSSD_X53_E -56.9193 0.00694986
+MUSETT_T0_DSSD_X54_E -57.4367 0.00701404
+MUSETT_T0_DSSD_X55_E -57.1583 0.00697967
+MUSETT_T0_DSSD_X56_E -58.0046 0.00708458
+MUSETT_T0_DSSD_X57_E -57.3176 0.00699982
+MUSETT_T0_DSSD_X58_E -57.134 0.00697341
+MUSETT_T0_DSSD_X59_E -57.4375 0.00701403
+MUSETT_T0_DSSD_X60_E -56.9962 0.00695735
+MUSETT_T0_DSSD_X61_E -57.5621 0.00702929
+MUSETT_T0_DSSD_X62_E -57.6273 0.00703611
+MUSETT_T0_DSSD_X63_E -57.8094 0.00705862
+MUSETT_T0_DSSD_X64_E -62.5694 0.00764554
+MUSETT_T0_DSSD_X65_E -62.7765 0.00767141
+MUSETT_T0_DSSD_X66_E -62.6601 0.00765656
+MUSETT_T0_DSSD_X67_E -63.0717 0.00770888
+MUSETT_T0_DSSD_X68_E -62.275 0.00761087
+MUSETT_T0_DSSD_X69_E -62.7076 0.00766829
+MUSETT_T0_DSSD_X70_E -63.2742 0.00772849
+MUSETT_T0_DSSD_X71_E -61.7578 0.00755677
+MUSETT_T0_DSSD_X72_E -62.8436 0.00768583
+MUSETT_T0_DSSD_X73_E -61.1488 0.00748861
+MUSETT_T0_DSSD_X74_E -62.5469 0.00765229
+MUSETT_T0_DSSD_X75_E -62.2494 0.00761832
+MUSETT_T0_DSSD_X76_E -61.9556 0.00758282
+MUSETT_T0_DSSD_X77_E -61.7742 0.00756394
+MUSETT_T0_DSSD_X78_E -62.631 0.00766349
+MUSETT_T0_DSSD_X79_E -62.5657 0.00766188
+MUSETT_T0_DSSD_X80_E -59.317 0.00726294
+MUSETT_T0_DSSD_X81_E -58.8177 0.0072054
+MUSETT_T0_DSSD_X82_E -59.0886 0.00723829
+MUSETT_T0_DSSD_X83_E -59.6477 0.00730317
+MUSETT_T0_DSSD_X84_E -59.8536 0.00732352
+MUSETT_T0_DSSD_X85_E -60.4055 0.00739355
+MUSETT_T0_DSSD_X86_E -60.3646 0.00738021
+MUSETT_T0_DSSD_X87_E -60.8435 0.00744227
+MUSETT_T0_DSSD_X88_E -60.8501 0.00743939
+MUSETT_T0_DSSD_X89_E -60.5184 0.00739918
+MUSETT_T0_DSSD_X90_E -60.6657 0.00741709
+MUSETT_T0_DSSD_X91_E -61.8484 0.00756021
+MUSETT_T0_DSSD_X92_E -61.0175 0.00745665
+MUSETT_T0_DSSD_X93_E -59.9938 0.00733538
+MUSETT_T0_DSSD_X94_E -60.5911 0.00740502
+MUSETT_T0_DSSD_X95_E -61.5567 0.00752034
+MUSETT_T0_DSSD_X96_E -56.9853 0.00695607
+MUSETT_T0_DSSD_X97_E -56.805 0.00694169
+MUSETT_T0_DSSD_X98_E -57.0758 0.00697401
+MUSETT_T0_DSSD_X99_E -56.7956 0.00693482
+MUSETT_T0_DSSD_X100_E -57.7593 0.0070528
+MUSETT_T0_DSSD_X101_E -57.6971 0.00704109
+MUSETT_T0_DSSD_X102_E -57.1712 0.0069833
+MUSETT_T0_DSSD_X103_E -56.5661 0.00691177
+MUSETT_T0_DSSD_X104_E -56.8282 0.00694184
+MUSETT_T0_DSSD_X105_E -57.3391 0.00700475
+MUSETT_T0_DSSD_X106_E -56.6671 0.00692293
+MUSETT_T0_DSSD_X107_E -56.8853 0.00695107
+MUSETT_T0_DSSD_X108_E -57.9765 0.00708265
+MUSETT_T0_DSSD_X109_E -57.388 0.00701232
+MUSETT_T0_DSSD_X110_E -56.5401 0.00691485
+MUSETT_T0_DSSD_X111_E -57.0413 0.00697142
+MUSETT_T0_DSSD_X112_E -58.286 0.00712194
+MUSETT_T0_DSSD_X113_E -58.5104 0.00714936
+MUSETT_T0_DSSD_X114_E -57.7679 0.00705962
+MUSETT_T0_DSSD_X115_E -57.9796 0.00708441
+MUSETT_T0_DSSD_X116_E -57.4801 0.00702354
+MUSETT_T0_DSSD_X117_E -57.6419 0.00704336
+MUSETT_T0_DSSD_X118_E -57.9462 0.00707592
+MUSETT_T0_DSSD_X119_E -58.1659 0.00710274
+MUSETT_T0_DSSD_X120_E -57.9026 0.00707413
+MUSETT_T0_DSSD_X121_E -58.1983 0.00710762
+MUSETT_T0_DSSD_X122_E -57.9833 0.00708219
+MUSETT_T0_DSSD_X123_E -59.0073 0.00720479
+MUSETT_T0_DSSD_X124_E -57.4047 0.00701145
+MUSETT_T0_DSSD_X125_E -57.9162 0.00707506
+MUSETT_T0_DSSD_X126_E -58.0998 0.00709359
+MUSETT_T0_DSSD_X127_E -58.9229 0.00719802
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..f8ae648fae141c1fc741a6261a14a3bd269603fa
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E_Zero_Dispersion 0.102913
+MUSETT_T0_DSSD_X1_E_Zero_Dispersion 2.24487
+MUSETT_T0_DSSD_X2_E_Zero_Dispersion 2.40801
+MUSETT_T0_DSSD_X3_E_Zero_Dispersion 0.290031
+MUSETT_T0_DSSD_X4_E_Zero_Dispersion 3.51494
+MUSETT_T0_DSSD_X5_E_Zero_Dispersion 1.95333
+MUSETT_T0_DSSD_X6_E_Zero_Dispersion 1.68842
+MUSETT_T0_DSSD_X7_E_Zero_Dispersion 2.79134
+MUSETT_T0_DSSD_X8_E_Zero_Dispersion -0.20541
+MUSETT_T0_DSSD_X9_E_Zero_Dispersion 1.50734
+MUSETT_T0_DSSD_X10_E_Zero_Dispersion 1.37658
+MUSETT_T0_DSSD_X11_E_Zero_Dispersion 1.92986
+MUSETT_T0_DSSD_X12_E_Zero_Dispersion 3.45815
+MUSETT_T0_DSSD_X13_E_Zero_Dispersion 2.02481
+MUSETT_T0_DSSD_X14_E_Zero_Dispersion 1.99584
+MUSETT_T0_DSSD_X15_E_Zero_Dispersion 2.11099
+MUSETT_T0_DSSD_X16_E_Zero_Dispersion 2.73808
+MUSETT_T0_DSSD_X17_E_Zero_Dispersion 7.59976
+MUSETT_T0_DSSD_X18_E_Zero_Dispersion 1.73776
+MUSETT_T0_DSSD_X19_E_Zero_Dispersion 4.04507
+MUSETT_T0_DSSD_X20_E_Zero_Dispersion 0.773641
+MUSETT_T0_DSSD_X21_E_Zero_Dispersion 3.09557
+MUSETT_T0_DSSD_X22_E_Zero_Dispersion 1.50144
+MUSETT_T0_DSSD_X23_E_Zero_Dispersion 3.71503
+MUSETT_T0_DSSD_X24_E_Zero_Dispersion 2.83617
+MUSETT_T0_DSSD_X25_E_Zero_Dispersion 2.88454
+MUSETT_T0_DSSD_X26_E_Zero_Dispersion 0.86892
+MUSETT_T0_DSSD_X27_E_Zero_Dispersion 4.34091
+MUSETT_T0_DSSD_X28_E_Zero_Dispersion 0.546165
+MUSETT_T0_DSSD_X29_E_Zero_Dispersion 2.92398
+MUSETT_T0_DSSD_X30_E_Zero_Dispersion 1.41443
+MUSETT_T0_DSSD_X31_E_Zero_Dispersion 2.18272
+MUSETT_T0_DSSD_X32_E_Zero_Dispersion 5.50955
+MUSETT_T0_DSSD_X33_E_Zero_Dispersion 3.54479
+MUSETT_T0_DSSD_X34_E_Zero_Dispersion 5.38916
+MUSETT_T0_DSSD_X35_E_Zero_Dispersion 5.51265
+MUSETT_T0_DSSD_X36_E_Zero_Dispersion 2.32903
+MUSETT_T0_DSSD_X37_E_Zero_Dispersion 6.63815
+MUSETT_T0_DSSD_X38_E_Zero_Dispersion 5.48844
+MUSETT_T0_DSSD_X39_E_Zero_Dispersion 5.51694
+MUSETT_T0_DSSD_X40_E_Zero_Dispersion 2.10885
+MUSETT_T0_DSSD_X41_E_Zero_Dispersion 1.14006
+MUSETT_T0_DSSD_X42_E_Zero_Dispersion 4.22353
+MUSETT_T0_DSSD_X43_E_Zero_Dispersion 2.76535
+MUSETT_T0_DSSD_X44_E_Zero_Dispersion 2.5117
+MUSETT_T0_DSSD_X45_E_Zero_Dispersion -5.0981
+MUSETT_T0_DSSD_X46_E_Zero_Dispersion 4.81708
+MUSETT_T0_DSSD_X47_E_Zero_Dispersion 5.06188
+MUSETT_T0_DSSD_X48_E_Zero_Dispersion 4.46775
+MUSETT_T0_DSSD_X49_E_Zero_Dispersion 3.77405
+MUSETT_T0_DSSD_X50_E_Zero_Dispersion 1.09247
+MUSETT_T0_DSSD_X51_E_Zero_Dispersion 3.54488
+MUSETT_T0_DSSD_X52_E_Zero_Dispersion -0.232348
+MUSETT_T0_DSSD_X53_E_Zero_Dispersion 2.00614
+MUSETT_T0_DSSD_X54_E_Zero_Dispersion 3.18011
+MUSETT_T0_DSSD_X55_E_Zero_Dispersion 2.74231
+MUSETT_T0_DSSD_X56_E_Zero_Dispersion 4.55659
+MUSETT_T0_DSSD_X57_E_Zero_Dispersion 3.56342
+MUSETT_T0_DSSD_X58_E_Zero_Dispersion -1.12628
+MUSETT_T0_DSSD_X59_E_Zero_Dispersion 3.05041
+MUSETT_T0_DSSD_X60_E_Zero_Dispersion -0.231608
+MUSETT_T0_DSSD_X61_E_Zero_Dispersion 3.1073
+MUSETT_T0_DSSD_X62_E_Zero_Dispersion 1.78151
+MUSETT_T0_DSSD_X63_E_Zero_Dispersion 2.0984
+MUSETT_T0_DSSD_X64_E_Zero_Dispersion 8.21535
+MUSETT_T0_DSSD_X65_E_Zero_Dispersion 8.81345
+MUSETT_T0_DSSD_X66_E_Zero_Dispersion 8.15405
+MUSETT_T0_DSSD_X67_E_Zero_Dispersion 10.302
+MUSETT_T0_DSSD_X68_E_Zero_Dispersion 9.61918
+MUSETT_T0_DSSD_X69_E_Zero_Dispersion 14.4759
+MUSETT_T0_DSSD_X70_E_Zero_Dispersion 4.87172
+MUSETT_T0_DSSD_X71_E_Zero_Dispersion 19.4779
+MUSETT_T0_DSSD_X72_E_Zero_Dispersion 15.4516
+MUSETT_T0_DSSD_X73_E_Zero_Dispersion 26.4327
+MUSETT_T0_DSSD_X74_E_Zero_Dispersion 18.3719
+MUSETT_T0_DSSD_X75_E_Zero_Dispersion 20.993
+MUSETT_T0_DSSD_X76_E_Zero_Dispersion 21.4767
+MUSETT_T0_DSSD_X77_E_Zero_Dispersion 25.0765
+MUSETT_T0_DSSD_X78_E_Zero_Dispersion 19.3561
+MUSETT_T0_DSSD_X79_E_Zero_Dispersion 26.1513
+MUSETT_T0_DSSD_X80_E_Zero_Dispersion 24.9254
+MUSETT_T0_DSSD_X81_E_Zero_Dispersion 28.9995
+MUSETT_T0_DSSD_X82_E_Zero_Dispersion 28.6547
+MUSETT_T0_DSSD_X83_E_Zero_Dispersion 24.6368
+MUSETT_T0_DSSD_X84_E_Zero_Dispersion 19.2
+MUSETT_T0_DSSD_X85_E_Zero_Dispersion 21.9724
+MUSETT_T0_DSSD_X86_E_Zero_Dispersion 12.7551
+MUSETT_T0_DSSD_X87_E_Zero_Dispersion 16.6039
+MUSETT_T0_DSSD_X88_E_Zero_Dispersion 12.5542
+MUSETT_T0_DSSD_X89_E_Zero_Dispersion 12.9298
+MUSETT_T0_DSSD_X90_E_Zero_Dispersion 12.8183
+MUSETT_T0_DSSD_X91_E_Zero_Dispersion 11.2252
+MUSETT_T0_DSSD_X92_E_Zero_Dispersion 9.04167
+MUSETT_T0_DSSD_X93_E_Zero_Dispersion 13.3112
+MUSETT_T0_DSSD_X94_E_Zero_Dispersion 9.56023
+MUSETT_T0_DSSD_X95_E_Zero_Dispersion 6.64401
+MUSETT_T0_DSSD_X96_E_Zero_Dispersion -0.169952
+MUSETT_T0_DSSD_X97_E_Zero_Dispersion 8.82478
+MUSETT_T0_DSSD_X98_E_Zero_Dispersion 7.93764
+MUSETT_T0_DSSD_X99_E_Zero_Dispersion 2.09013
+MUSETT_T0_DSSD_X100_E_Zero_Dispersion 2.4381
+MUSETT_T0_DSSD_X101_E_Zero_Dispersion -2.35007
+MUSETT_T0_DSSD_X102_E_Zero_Dispersion 5.15856
+MUSETT_T0_DSSD_X103_E_Zero_Dispersion 7.96765
+MUSETT_T0_DSSD_X104_E_Zero_Dispersion 5.67829
+MUSETT_T0_DSSD_X105_E_Zero_Dispersion 6.25581
+MUSETT_T0_DSSD_X106_E_Zero_Dispersion 6.57618
+MUSETT_T0_DSSD_X107_E_Zero_Dispersion 8.33115
+MUSETT_T0_DSSD_X108_E_Zero_Dispersion 6.29503
+MUSETT_T0_DSSD_X109_E_Zero_Dispersion 8.12487
+MUSETT_T0_DSSD_X110_E_Zero_Dispersion 15.3838
+MUSETT_T0_DSSD_X111_E_Zero_Dispersion 9.83817
+MUSETT_T0_DSSD_X112_E_Zero_Dispersion 7.99507
+MUSETT_T0_DSSD_X113_E_Zero_Dispersion 7.99615
+MUSETT_T0_DSSD_X114_E_Zero_Dispersion 9.13852
+MUSETT_T0_DSSD_X115_E_Zero_Dispersion 7.88735
+MUSETT_T0_DSSD_X116_E_Zero_Dispersion 8.07551
+MUSETT_T0_DSSD_X117_E_Zero_Dispersion 8.13797
+MUSETT_T0_DSSD_X118_E_Zero_Dispersion 2.79139
+MUSETT_T0_DSSD_X119_E_Zero_Dispersion 2.77742
+MUSETT_T0_DSSD_X120_E_Zero_Dispersion 6.88387
+MUSETT_T0_DSSD_X121_E_Zero_Dispersion 3.85057
+MUSETT_T0_DSSD_X122_E_Zero_Dispersion 4.80636
+MUSETT_T0_DSSD_X123_E_Zero_Dispersion 1.98461
+MUSETT_T0_DSSD_X124_E_Zero_Dispersion 4.72226
+MUSETT_T0_DSSD_X125_E_Zero_Dispersion 6.02878
+MUSETT_T0_DSSD_X126_E_Zero_Dispersion 1.53415
+MUSETT_T0_DSSD_X127_E_Zero_Dispersion 6.01497
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/latex/double_alpha_run_0274_X_MM0_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/latex/double_alpha_run_0274_X_MM0_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..0f0b8b95b2be370ed23cf83a5c8c58f0417f5f55
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/latex/double_alpha_run_0274_X_MM0_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  0
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 0 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM0_E/latex/pictures/Telescope0Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.10885
+
+Sigma fit sigma: 0.331137
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/peaks/Cal_Str_X_E_MM0.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM0_E/peaks/Cal_Str_X_E_MM0.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..7777df8b98e27e5e884c065c80d8f14990e2144d
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E -62.3477 0.007611
+MUSETT_T1_DSSD_X1_E -62.308 0.00760306
+MUSETT_T1_DSSD_X2_E -62.1697 0.0075878
+MUSETT_T1_DSSD_X3_E -62.0173 0.00756982
+MUSETT_T1_DSSD_X4_E -61.3648 0.00749166
+MUSETT_T1_DSSD_X5_E -61.5997 0.00751643
+MUSETT_T1_DSSD_X6_E -62.4787 0.00762243
+MUSETT_T1_DSSD_X7_E -61.3185 0.00748472
+MUSETT_T1_DSSD_X8_E -61.1328 0.00746245
+MUSETT_T1_DSSD_X9_E -61.4827 0.00750394
+MUSETT_T1_DSSD_X10_E -61.8118 0.0075418
+MUSETT_T1_DSSD_X11_E -61.9258 0.00755463
+MUSETT_T1_DSSD_X12_E -61.8767 0.00755134
+MUSETT_T1_DSSD_X13_E -61.3156 0.0074846
+MUSETT_T1_DSSD_X14_E -61.3699 0.00748612
+MUSETT_T1_DSSD_X15_E -62.1632 0.00758373
+MUSETT_T1_DSSD_X16_E -62.9211 0.00767431
+MUSETT_T1_DSSD_X17_E -62.0562 0.00756866
+MUSETT_T1_DSSD_X18_E -62.0386 0.00757545
+MUSETT_T1_DSSD_X19_E -62.2875 0.0075986
+MUSETT_T1_DSSD_X20_E -62.8822 0.00767441
+MUSETT_T1_DSSD_X21_E -62.3374 0.00760465
+MUSETT_T1_DSSD_X22_E -62.852 0.00767109
+MUSETT_T1_DSSD_X23_E -62.8192 0.00765988
+MUSETT_T1_DSSD_X24_E -62.4176 0.00761481
+MUSETT_T1_DSSD_X25_E -62.2038 0.00758803
+MUSETT_T1_DSSD_X26_E -62.0181 0.00756821
+MUSETT_T1_DSSD_X27_E -61.9276 0.00755372
+MUSETT_T1_DSSD_X28_E -61.6034 0.00751835
+MUSETT_T1_DSSD_X29_E -62.9333 0.00767748
+MUSETT_T1_DSSD_X30_E -62.1268 0.0075773
+MUSETT_T1_DSSD_X31_E -63.1585 0.00770313
+MUSETT_T1_DSSD_X32_E -58.3057 0.00711587
+MUSETT_T1_DSSD_X33_E -58.4042 0.00712871
+MUSETT_T1_DSSD_X34_E -58.4884 0.00713562
+MUSETT_T1_DSSD_X35_E -57.4835 0.00702506
+MUSETT_T1_DSSD_X36_E -58.3917 0.00712193
+MUSETT_T1_DSSD_X37_E -58.5648 0.00714415
+MUSETT_T1_DSSD_X38_E -58.5559 0.00713839
+MUSETT_T1_DSSD_X39_E -58.5374 0.00714562
+MUSETT_T1_DSSD_X40_E -58.7158 0.00715871
+MUSETT_T1_DSSD_X41_E -58.8359 0.00717997
+MUSETT_T1_DSSD_X42_E -58.2602 0.00710755
+MUSETT_T1_DSSD_X43_E -57.8239 0.00706527
+MUSETT_T1_DSSD_X44_E -58.7242 0.00716462
+MUSETT_T1_DSSD_X45_E -59.6459 0.00727511
+MUSETT_T1_DSSD_X46_E -59.1603 0.00721451
+MUSETT_T1_DSSD_X47_E -58.6549 0.00715909
+MUSETT_T1_DSSD_X48_E -57.9484 0.00706941
+MUSETT_T1_DSSD_X49_E -58.7332 0.00716424
+MUSETT_T1_DSSD_X50_E -58.1769 0.00709735
+MUSETT_T1_DSSD_X51_E -57.9451 0.00706791
+MUSETT_T1_DSSD_X52_E -58.1687 0.00709592
+MUSETT_T1_DSSD_X53_E -57.9405 0.00707027
+MUSETT_T1_DSSD_X54_E -58.0919 0.00708762
+MUSETT_T1_DSSD_X55_E -58.0252 0.00707798
+MUSETT_T1_DSSD_X56_E -58.1604 0.00709681
+MUSETT_T1_DSSD_X57_E -57.9484 0.00706999
+MUSETT_T1_DSSD_X58_E -58.6075 0.00715036
+MUSETT_T1_DSSD_X59_E -57.6713 0.00703735
+MUSETT_T1_DSSD_X60_E -57.8203 0.00705456
+MUSETT_T1_DSSD_X61_E -58.3158 0.00711494
+MUSETT_T1_DSSD_X62_E -58.225 0.00710301
+MUSETT_T1_DSSD_X63_E -58.3159 0.00711583
+MUSETT_T1_DSSD_X64_E -60.9382 0.00743605
+MUSETT_T1_DSSD_X65_E -61.7124 0.00752921
+MUSETT_T1_DSSD_X66_E -61.2888 0.00748085
+MUSETT_T1_DSSD_X67_E -61.849 0.00754516
+MUSETT_T1_DSSD_X68_E -61.6144 0.00752229
+MUSETT_T1_DSSD_X69_E -61.4359 0.00749578
+MUSETT_T1_DSSD_X70_E -62.0725 0.00756872
+MUSETT_T1_DSSD_X71_E -61.9649 0.00756182
+MUSETT_T1_DSSD_X72_E -61.4025 0.00749204
+MUSETT_T1_DSSD_X73_E -62.3351 0.0076103
+MUSETT_T1_DSSD_X74_E -61.716 0.00753373
+MUSETT_T1_DSSD_X75_E -61.8091 0.00754583
+MUSETT_T1_DSSD_X76_E -61.6917 0.00752919
+MUSETT_T1_DSSD_X77_E -61.6932 0.00752907
+MUSETT_T1_DSSD_X78_E -61.7762 0.00753336
+MUSETT_T1_DSSD_X79_E -61.6882 0.00753087
+MUSETT_T1_DSSD_X80_E -63.4393 0.0077416
+MUSETT_T1_DSSD_X81_E -63.5227 0.00775487
+MUSETT_T1_DSSD_X82_E -64.1587 0.00782973
+MUSETT_T1_DSSD_X83_E -63.9945 0.0078081
+MUSETT_T1_DSSD_X84_E -64.0395 0.00781725
+MUSETT_T1_DSSD_X85_E -63.6515 0.00777089
+MUSETT_T1_DSSD_X86_E -64.4594 0.00786175
+MUSETT_T1_DSSD_X87_E -64.6224 0.0078816
+MUSETT_T1_DSSD_X88_E -63.8054 0.00779141
+MUSETT_T1_DSSD_X89_E -64.3273 0.00785003
+MUSETT_T1_DSSD_X90_E -63.2969 0.0077277
+MUSETT_T1_DSSD_X91_E -63.3398 0.00773073
+MUSETT_T1_DSSD_X92_E -64.83 0.00790919
+MUSETT_T1_DSSD_X93_E -63.8665 0.00779592
+MUSETT_T1_DSSD_X94_E -63.4522 0.0077484
+MUSETT_T1_DSSD_X95_E -63.846 0.00778696
+MUSETT_T1_DSSD_X96_E -56.5424 0.00689651
+MUSETT_T1_DSSD_X97_E -56.7469 0.00692393
+MUSETT_T1_DSSD_X98_E -56.7961 0.00693011
+MUSETT_T1_DSSD_X99_E -56.5307 0.00689674
+MUSETT_T1_DSSD_X100_E -56.647 0.0069118
+MUSETT_T1_DSSD_X101_E -57.1825 0.00697855
+MUSETT_T1_DSSD_X102_E -57.4464 0.00700859
+MUSETT_T1_DSSD_X103_E -56.52 0.00689815
+MUSETT_T1_DSSD_X104_E -56.9595 0.00694911
+MUSETT_T1_DSSD_X105_E -56.9963 0.00695535
+MUSETT_T1_DSSD_X106_E -57.9167 0.0070665
+MUSETT_T1_DSSD_X107_E -57.7395 0.00704685
+MUSETT_T1_DSSD_X108_E -57.738 0.00704522
+MUSETT_T1_DSSD_X109_E -57.4812 0.00701462
+MUSETT_T1_DSSD_X110_E -57.7292 0.00704441
+MUSETT_T1_DSSD_X111_E -58.0147 0.00707895
+MUSETT_T1_DSSD_X112_E -57.13 0.00697333
+MUSETT_T1_DSSD_X113_E -57.2102 0.00698216
+MUSETT_T1_DSSD_X114_E -56.8331 0.0069354
+MUSETT_T1_DSSD_X115_E -57.7562 0.00704746
+MUSETT_T1_DSSD_X116_E -57.2371 0.00698564
+MUSETT_T1_DSSD_X117_E -57.2535 0.00698716
+MUSETT_T1_DSSD_X118_E -56.4116 0.00688587
+MUSETT_T1_DSSD_X119_E -58.4293 0.00712899
+MUSETT_T1_DSSD_X120_E -57.5313 0.00701926
+MUSETT_T1_DSSD_X121_E -57.8937 0.00706324
+MUSETT_T1_DSSD_X122_E -57.779 0.00705032
+MUSETT_T1_DSSD_X123_E -57.6016 0.00702717
+MUSETT_T1_DSSD_X124_E -57.8107 0.00705219
+MUSETT_T1_DSSD_X125_E -57.7972 0.00705126
+MUSETT_T1_DSSD_X126_E -56.9888 0.00695535
+MUSETT_T1_DSSD_X127_E -57.9332 0.00706948
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..9c5f44ef381e031fcd2a0e76e310f1b3a2df8192
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E_Zero_Dispersion 0.207675
+MUSETT_T1_DSSD_X1_E_Zero_Dispersion -3.12166
+MUSETT_T1_DSSD_X2_E_Zero_Dispersion -1.37277
+MUSETT_T1_DSSD_X3_E_Zero_Dispersion -0.696181
+MUSETT_T1_DSSD_X4_E_Zero_Dispersion 0.922503
+MUSETT_T1_DSSD_X5_E_Zero_Dispersion -3.34158
+MUSETT_T1_DSSD_X6_E_Zero_Dispersion -4.69115
+MUSETT_T1_DSSD_X7_E_Zero_Dispersion -0.496055
+MUSETT_T1_DSSD_X8_E_Zero_Dispersion -0.0470192
+MUSETT_T1_DSSD_X9_E_Zero_Dispersion -1.38881
+MUSETT_T1_DSSD_X10_E_Zero_Dispersion -3.90049
+MUSETT_T1_DSSD_X11_E_Zero_Dispersion -5.07207
+MUSETT_T1_DSSD_X12_E_Zero_Dispersion -2.14227
+MUSETT_T1_DSSD_X13_E_Zero_Dispersion -0.234495
+MUSETT_T1_DSSD_X14_E_Zero_Dispersion -5.82493
+MUSETT_T1_DSSD_X15_E_Zero_Dispersion -4.92261
+MUSETT_T1_DSSD_X16_E_Zero_Dispersion -6.92733
+MUSETT_T1_DSSD_X17_E_Zero_Dispersion -7.09341
+MUSETT_T1_DSSD_X18_E_Zero_Dispersion 2.56607
+MUSETT_T1_DSSD_X19_E_Zero_Dispersion -5.23495
+MUSETT_T1_DSSD_X20_E_Zero_Dispersion -1.75695
+MUSETT_T1_DSSD_X21_E_Zero_Dispersion -5.26724
+MUSETT_T1_DSSD_X22_E_Zero_Dispersion -1.36292
+MUSETT_T1_DSSD_X23_E_Zero_Dispersion -9.07008
+MUSETT_T1_DSSD_X24_E_Zero_Dispersion -4.87091
+MUSETT_T1_DSSD_X25_E_Zero_Dispersion -5.62481
+MUSETT_T1_DSSD_X26_E_Zero_Dispersion -2.54779
+MUSETT_T1_DSSD_X27_E_Zero_Dispersion -6.29276
+MUSETT_T1_DSSD_X28_E_Zero_Dispersion -1.73424
+MUSETT_T1_DSSD_X29_E_Zero_Dispersion -5.12994
+MUSETT_T1_DSSD_X30_E_Zero_Dispersion -7.07016
+MUSETT_T1_DSSD_X31_E_Zero_Dispersion -7.06883
+MUSETT_T1_DSSD_X32_E_Zero_Dispersion -1.75746
+MUSETT_T1_DSSD_X33_E_Zero_Dispersion -0.825512
+MUSETT_T1_DSSD_X34_E_Zero_Dispersion -4.68256
+MUSETT_T1_DSSD_X35_E_Zero_Dispersion 9.36896
+MUSETT_T1_DSSD_X36_E_Zero_Dispersion -6.86266
+MUSETT_T1_DSSD_X37_E_Zero_Dispersion -5.58357
+MUSETT_T1_DSSD_X38_E_Zero_Dispersion -10.959
+MUSETT_T1_DSSD_X39_E_Zero_Dispersion -0.0687966
+MUSETT_T1_DSSD_X40_E_Zero_Dispersion -9.99784
+MUSETT_T1_DSSD_X41_E_Zero_Dispersion -2.44016
+MUSETT_T1_DSSD_X42_E_Zero_Dispersion -4.94577
+MUSETT_T1_DSSD_X43_E_Zero_Dispersion 7.75454
+MUSETT_T1_DSSD_X44_E_Zero_Dispersion -4.41858
+MUSETT_T1_DSSD_X45_E_Zero_Dispersion -6.63503
+MUSETT_T1_DSSD_X46_E_Zero_Dispersion -8.18599
+MUSETT_T1_DSSD_X47_E_Zero_Dispersion -1.05895
+MUSETT_T1_DSSD_X48_E_Zero_Dispersion -5.06197
+MUSETT_T1_DSSD_X49_E_Zero_Dispersion -6.10946
+MUSETT_T1_DSSD_X50_E_Zero_Dispersion -4.98572
+MUSETT_T1_DSSD_X51_E_Zero_Dispersion -6.33386
+MUSETT_T1_DSSD_X52_E_Zero_Dispersion -5.48155
+MUSETT_T1_DSSD_X53_E_Zero_Dispersion -2.95043
+MUSETT_T1_DSSD_X54_E_Zero_Dispersion -4.24495
+MUSETT_T1_DSSD_X55_E_Zero_Dispersion -5.98882
+MUSETT_T1_DSSD_X56_E_Zero_Dispersion -3.2979
+MUSETT_T1_DSSD_X57_E_Zero_Dispersion -4.38577
+MUSETT_T1_DSSD_X58_E_Zero_Dispersion -4.43741
+MUSETT_T1_DSSD_X59_E_Zero_Dispersion -3.03098
+MUSETT_T1_DSSD_X60_E_Zero_Dispersion -4.15964
+MUSETT_T1_DSSD_X61_E_Zero_Dispersion -4.25378
+MUSETT_T1_DSSD_X62_E_Zero_Dispersion -5.22603
+MUSETT_T1_DSSD_X63_E_Zero_Dispersion -3.23753
+MUSETT_T1_DSSD_X64_E_Zero_Dispersion -2.97709
+MUSETT_T1_DSSD_X65_E_Zero_Dispersion -4.39933
+MUSETT_T1_DSSD_X66_E_Zero_Dispersion -0.765858
+MUSETT_T1_DSSD_X67_E_Zero_Dispersion -5.17521
+MUSETT_T1_DSSD_X68_E_Zero_Dispersion 1.08472
+MUSETT_T1_DSSD_X69_E_Zero_Dispersion -4.06467
+MUSETT_T1_DSSD_X70_E_Zero_Dispersion -9.18942
+MUSETT_T1_DSSD_X71_E_Zero_Dispersion -2.43993
+MUSETT_T1_DSSD_X72_E_Zero_Dispersion -3.6973
+MUSETT_T1_DSSD_X73_E_Zero_Dispersion 1.11852
+MUSETT_T1_DSSD_X74_E_Zero_Dispersion 0.0432011
+MUSETT_T1_DSSD_X75_E_Zero_Dispersion 0.838378
+MUSETT_T1_DSSD_X76_E_Zero_Dispersion -1.66996
+MUSETT_T1_DSSD_X77_E_Zero_Dispersion -1.99084
+MUSETT_T1_DSSD_X78_E_Zero_Dispersion -8.34532
+MUSETT_T1_DSSD_X79_E_Zero_Dispersion 0.627745
+MUSETT_T1_DSSD_X80_E_Zero_Dispersion -2.60163
+MUSETT_T1_DSSD_X81_E_Zero_Dispersion 0.662357
+MUSETT_T1_DSSD_X82_E_Zero_Dispersion -2.24635
+MUSETT_T1_DSSD_X83_E_Zero_Dispersion -3.90974
+MUSETT_T1_DSSD_X84_E_Zero_Dispersion -0.0795075
+MUSETT_T1_DSSD_X85_E_Zero_Dispersion 0.988812
+MUSETT_T1_DSSD_X86_E_Zero_Dispersion -7.12063
+MUSETT_T1_DSSD_X87_E_Zero_Dispersion -7.15203
+MUSETT_T1_DSSD_X88_E_Zero_Dispersion 2.79429
+MUSETT_T1_DSSD_X89_E_Zero_Dispersion -2.5303
+MUSETT_T1_DSSD_X90_E_Zero_Dispersion 1.09268
+MUSETT_T1_DSSD_X91_E_Zero_Dispersion -1.25755
+MUSETT_T1_DSSD_X92_E_Zero_Dispersion -4.78431
+MUSETT_T1_DSSD_X93_E_Zero_Dispersion -0.296209
+MUSETT_T1_DSSD_X94_E_Zero_Dispersion 2.9226
+MUSETT_T1_DSSD_X95_E_Zero_Dispersion -7.09196
+MUSETT_T1_DSSD_X96_E_Zero_Dispersion -6.70346
+MUSETT_T1_DSSD_X97_E_Zero_Dispersion -3.77243
+MUSETT_T1_DSSD_X98_E_Zero_Dispersion -3.55
+MUSETT_T1_DSSD_X99_E_Zero_Dispersion -4.7306
+MUSETT_T1_DSSD_X100_E_Zero_Dispersion -3.70206
+MUSETT_T1_DSSD_X101_E_Zero_Dispersion -2.03397
+MUSETT_T1_DSSD_X102_E_Zero_Dispersion -4.56362
+MUSETT_T1_DSSD_X103_E_Zero_Dispersion -1.50341
+MUSETT_T1_DSSD_X104_E_Zero_Dispersion -4.65139
+MUSETT_T1_DSSD_X105_E_Zero_Dispersion -2.58858
+MUSETT_T1_DSSD_X106_E_Zero_Dispersion -3.95507
+MUSETT_T1_DSSD_X107_E_Zero_Dispersion -1.66488
+MUSETT_T1_DSSD_X108_E_Zero_Dispersion -3.35039
+MUSETT_T1_DSSD_X109_E_Zero_Dispersion -2.48819
+MUSETT_T1_DSSD_X110_E_Zero_Dispersion -3.0314
+MUSETT_T1_DSSD_X111_E_Zero_Dispersion -3.38841
+MUSETT_T1_DSSD_X112_E_Zero_Dispersion -0.641331
+MUSETT_T1_DSSD_X113_E_Zero_Dispersion -1.76825
+MUSETT_T1_DSSD_X114_E_Zero_Dispersion -2.63496
+MUSETT_T1_DSSD_X115_E_Zero_Dispersion -3.31573
+MUSETT_T1_DSSD_X116_E_Zero_Dispersion -1.54376
+MUSETT_T1_DSSD_X117_E_Zero_Dispersion -2.102
+MUSETT_T1_DSSD_X118_E_Zero_Dispersion -0.370533
+MUSETT_T1_DSSD_X119_E_Zero_Dispersion -4.01352
+MUSETT_T1_DSSD_X120_E_Zero_Dispersion -4.20468
+MUSETT_T1_DSSD_X121_E_Zero_Dispersion -4.47258
+MUSETT_T1_DSSD_X122_E_Zero_Dispersion -3.22979
+MUSETT_T1_DSSD_X123_E_Zero_Dispersion -4.98259
+MUSETT_T1_DSSD_X124_E_Zero_Dispersion -5.54173
+MUSETT_T1_DSSD_X125_E_Zero_Dispersion -4.71733
+MUSETT_T1_DSSD_X126_E_Zero_Dispersion -1.51981
+MUSETT_T1_DSSD_X127_E_Zero_Dispersion -2.8288
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/latex/double_alpha_run_0274_X_MM1_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/latex/double_alpha_run_0274_X_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..a4bb552c18f9bd933b86bda8de52a06f4ece6722
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/latex/double_alpha_run_0274_X_MM1_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.04129
+
+Sigma fit sigma: 0.593411
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..92a5f108ce207d52baeea155c51fab4a6653745a
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E -62.5366 0.00763956
+MUSETT_T2_DSSD_X1_E -62.6099 0.00763888
+MUSETT_T2_DSSD_X2_E -62.823 0.00766708
+MUSETT_T2_DSSD_X3_E -62.257 0.00759549
+MUSETT_T2_DSSD_X4_E -62.0597 0.00757342
+MUSETT_T2_DSSD_X5_E -62.5307 0.00763323
+MUSETT_T2_DSSD_X6_E -62.3807 0.00761398
+MUSETT_T2_DSSD_X7_E -62.9375 0.0076789
+MUSETT_T2_DSSD_X8_E -62.9224 0.00767896
+MUSETT_T2_DSSD_X9_E -62.1614 0.00758679
+MUSETT_T2_DSSD_X10_E -62.4417 0.00762037
+MUSETT_T2_DSSD_X11_E -62.4249 0.0076183
+MUSETT_T2_DSSD_X12_E -62.5094 0.00763316
+MUSETT_T2_DSSD_X13_E -62.5081 0.0076287
+MUSETT_T2_DSSD_X14_E -62.5989 0.00763997
+MUSETT_T2_DSSD_X15_E -63.3009 0.00773126
+MUSETT_T2_DSSD_X16_E -62.2936 0.00760052
+MUSETT_T2_DSSD_X17_E -61.672 0.00752836
+MUSETT_T2_DSSD_X18_E -61.6376 0.00752157
+MUSETT_T2_DSSD_X19_E -61.5695 0.00751193
+MUSETT_T2_DSSD_X20_E -61.5665 0.0075144
+MUSETT_T2_DSSD_X21_E -62.4688 0.00762107
+MUSETT_T2_DSSD_X22_E -62.1354 0.00758375
+MUSETT_T2_DSSD_X23_E -61.8155 0.00754313
+MUSETT_T2_DSSD_X24_E -61.4306 0.00749834
+MUSETT_T2_DSSD_X25_E -61.9883 0.00756594
+MUSETT_T2_DSSD_X26_E -61.8156 0.00754772
+MUSETT_T2_DSSD_X27_E -61.7444 0.00753541
+MUSETT_T2_DSSD_X28_E -61.7334 0.00753213
+MUSETT_T2_DSSD_X29_E -61.4228 0.00749322
+MUSETT_T2_DSSD_X30_E -62.1977 0.00759248
+MUSETT_T2_DSSD_X31_E -61.6447 0.00752122
+MUSETT_T2_DSSD_X32_E -58.935 0.00719311
+MUSETT_T2_DSSD_X33_E -58.1147 0.00709182
+MUSETT_T2_DSSD_X34_E -58.5596 0.007148
+MUSETT_T2_DSSD_X35_E -58.5961 0.00714764
+MUSETT_T2_DSSD_X36_E -58.3105 0.00711447
+MUSETT_T2_DSSD_X37_E -58.0487 0.00708602
+MUSETT_T2_DSSD_X38_E -58.1502 0.0070988
+MUSETT_T2_DSSD_X39_E -57.7857 0.00705326
+MUSETT_T2_DSSD_X40_E -57.4608 0.00701359
+MUSETT_T2_DSSD_X41_E -58.5375 0.00714392
+MUSETT_T2_DSSD_X42_E -59.0118 0.0071977
+MUSETT_T2_DSSD_X43_E -58.2242 0.00710688
+MUSETT_T2_DSSD_X44_E -58.3352 0.00712354
+MUSETT_T2_DSSD_X45_E -58.3114 0.00712245
+MUSETT_T2_DSSD_X46_E -58.4466 0.00713226
+MUSETT_T2_DSSD_X47_E -58.5104 0.00713991
+MUSETT_T2_DSSD_X48_E -57.8607 0.00705903
+MUSETT_T2_DSSD_X49_E -57.1886 0.00697896
+MUSETT_T2_DSSD_X50_E -58.0113 0.00708101
+MUSETT_T2_DSSD_X51_E -57.7279 0.00704713
+MUSETT_T2_DSSD_X52_E -57.4556 0.00701364
+MUSETT_T2_DSSD_X53_E -57.1649 0.00697518
+MUSETT_T2_DSSD_X54_E -57.8984 0.00706521
+MUSETT_T2_DSSD_X55_E -57.63 0.00703352
+MUSETT_T2_DSSD_X56_E -58.0258 0.00707928
+MUSETT_T2_DSSD_X57_E -57.4642 0.00701702
+MUSETT_T2_DSSD_X58_E -58.132 0.00709186
+MUSETT_T2_DSSD_X59_E -57.1561 0.00697346
+MUSETT_T2_DSSD_X60_E -57.6188 0.00702948
+MUSETT_T2_DSSD_X61_E -56.6504 0.00691451
+MUSETT_T2_DSSD_X62_E -57.3571 0.00700169
+MUSETT_T2_DSSD_X63_E -57.7666 0.00705029
+MUSETT_T2_DSSD_X64_E -63.3097 0.00772569
+MUSETT_T2_DSSD_X65_E -64.9047 0.0079212
+MUSETT_T2_DSSD_X66_E -64.0703 0.0078168
+MUSETT_T2_DSSD_X67_E -63.7681 0.00778096
+MUSETT_T2_DSSD_X68_E 7.39123 0.851608
+MUSETT_T2_DSSD_X69_E -64.3545 0.00785369
+MUSETT_T2_DSSD_X70_E -63.7255 0.00777554
+MUSETT_T2_DSSD_X71_E -63.4889 0.00774685
+MUSETT_T2_DSSD_X72_E -63.5163 0.00774852
+MUSETT_T2_DSSD_X73_E -63.1974 0.00771009
+MUSETT_T2_DSSD_X74_E -63.9963 0.00780668
+MUSETT_T2_DSSD_X75_E -63.7405 0.0077769
+MUSETT_T2_DSSD_X76_E -63.7719 0.00778584
+MUSETT_T2_DSSD_X77_E -63.7168 0.00777911
+MUSETT_T2_DSSD_X78_E -63.5337 0.00775379
+MUSETT_T2_DSSD_X79_E -63.3949 0.00773821
+MUSETT_T2_DSSD_X80_E -63.4539 0.0077397
+MUSETT_T2_DSSD_X81_E -63.4815 0.00774493
+MUSETT_T2_DSSD_X82_E -63.2698 0.00771876
+MUSETT_T2_DSSD_X83_E -63.3573 0.00772905
+MUSETT_T2_DSSD_X84_E -64.1625 0.00782699
+MUSETT_T2_DSSD_X85_E -64.0116 0.00780771
+MUSETT_T2_DSSD_X86_E -64.0772 0.00781423
+MUSETT_T2_DSSD_X87_E -64.0599 0.00781546
+MUSETT_T2_DSSD_X88_E -63.251 0.00771539
+MUSETT_T2_DSSD_X89_E -63.6831 0.00777027
+MUSETT_T2_DSSD_X90_E -63.3564 0.00773379
+MUSETT_T2_DSSD_X91_E -63.787 0.00778135
+MUSETT_T2_DSSD_X92_E -63.3512 0.00773017
+MUSETT_T2_DSSD_X93_E -64.7604 0.00790006
+MUSETT_T2_DSSD_X94_E -64.0132 0.00780733
+MUSETT_T2_DSSD_X95_E -63.8549 0.00778867
+MUSETT_T2_DSSD_X96_E -59.0282 0.00720288
+MUSETT_T2_DSSD_X97_E -58.4936 0.00713811
+MUSETT_T2_DSSD_X98_E -58.4712 0.0071327
+MUSETT_T2_DSSD_X99_E -58.4859 0.00713993
+MUSETT_T2_DSSD_X100_E -59.3214 0.00723965
+MUSETT_T2_DSSD_X101_E -59.3697 0.00724433
+MUSETT_T2_DSSD_X102_E -58.6853 0.00716351
+MUSETT_T2_DSSD_X103_E -59.023 0.00720218
+MUSETT_T2_DSSD_X104_E -58.8858 0.00718901
+MUSETT_T2_DSSD_X105_E -59.0599 0.00720698
+MUSETT_T2_DSSD_X106_E -58.7339 0.00716764
+MUSETT_T2_DSSD_X107_E -59.1791 0.00721879
+MUSETT_T2_DSSD_X108_E -58.8627 0.00718154
+MUSETT_T2_DSSD_X109_E -60.4055 0.00737306
+MUSETT_T2_DSSD_X110_E -59.0673 0.00720612
+MUSETT_T2_DSSD_X111_E -58.3996 0.00712943
+MUSETT_T2_DSSD_X112_E -59.447 0.00725194
+MUSETT_T2_DSSD_X113_E -59.4328 0.00725039
+MUSETT_T2_DSSD_X114_E -59.8168 0.00729738
+MUSETT_T2_DSSD_X115_E -59.2689 0.0072298
+MUSETT_T2_DSSD_X116_E -59.8131 0.00729784
+MUSETT_T2_DSSD_X117_E -59.9981 0.00732151
+MUSETT_T2_DSSD_X118_E -59.5137 0.00726182
+MUSETT_T2_DSSD_X119_E -59.3863 0.00724848
+MUSETT_T2_DSSD_X120_E -59.9252 0.0073143
+MUSETT_T2_DSSD_X121_E -58.732 0.00716699
+MUSETT_T2_DSSD_X122_E -59.0078 0.00720103
+MUSETT_T2_DSSD_X123_E -59.1915 0.00722497
+MUSETT_T2_DSSD_X124_E -59.0543 0.00720394
+MUSETT_T2_DSSD_X125_E -58.9019 0.00718805
+MUSETT_T2_DSSD_X126_E -59.23 0.00722589
+MUSETT_T2_DSSD_X127_E -59.1923 0.00722341
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..2175ed5a50a587cb99ab47570237c02d69c6fcaa
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E_Zero_Dispersion 6.11899
+MUSETT_T2_DSSD_X1_E_Zero_Dispersion -4.20805
+MUSETT_T2_DSSD_X2_E_Zero_Dispersion -1.86488
+MUSETT_T2_DSSD_X3_E_Zero_Dispersion -4.58098
+MUSETT_T2_DSSD_X4_E_Zero_Dispersion -2.40657
+MUSETT_T2_DSSD_X5_E_Zero_Dispersion 0.0920053
+MUSETT_T2_DSSD_X6_E_Zero_Dispersion -0.910839
+MUSETT_T2_DSSD_X7_E_Zero_Dispersion -4.15844
+MUSETT_T2_DSSD_X8_E_Zero_Dispersion -2.1288
+MUSETT_T2_DSSD_X9_E_Zero_Dispersion -1.37912
+MUSETT_T2_DSSD_X10_E_Zero_Dispersion -2.05567
+MUSETT_T2_DSSD_X11_E_Zero_Dispersion -2.07325
+MUSETT_T2_DSSD_X12_E_Zero_Dispersion 2.81111
+MUSETT_T2_DSSD_X13_E_Zero_Dispersion -1.80673
+MUSETT_T2_DSSD_X14_E_Zero_Dispersion -1.60517
+MUSETT_T2_DSSD_X15_E_Zero_Dispersion 4.34084
+MUSETT_T2_DSSD_X16_E_Zero_Dispersion -3.96451
+MUSETT_T2_DSSD_X17_E_Zero_Dispersion 0.0445557
+MUSETT_T2_DSSD_X18_E_Zero_Dispersion -2.78144
+MUSETT_T2_DSSD_X19_E_Zero_Dispersion -4.22976
+MUSETT_T2_DSSD_X20_E_Zero_Dispersion -1.13585
+MUSETT_T2_DSSD_X21_E_Zero_Dispersion -4.86085
+MUSETT_T2_DSSD_X22_E_Zero_Dispersion -1.23012
+MUSETT_T2_DSSD_X23_E_Zero_Dispersion -2.93315
+MUSETT_T2_DSSD_X24_E_Zero_Dispersion -0.567119
+MUSETT_T2_DSSD_X25_E_Zero_Dispersion -1.08228
+MUSETT_T2_DSSD_X26_E_Zero_Dispersion 2.03054
+MUSETT_T2_DSSD_X27_E_Zero_Dispersion -1.8977
+MUSETT_T2_DSSD_X28_E_Zero_Dispersion -4.00109
+MUSETT_T2_DSSD_X29_E_Zero_Dispersion -5.10994
+MUSETT_T2_DSSD_X30_E_Zero_Dispersion -0.0205928
+MUSETT_T2_DSSD_X31_E_Zero_Dispersion -4.09755
+MUSETT_T2_DSSD_X32_E_Zero_Dispersion -1.25514
+MUSETT_T2_DSSD_X33_E_Zero_Dispersion -2.61227
+MUSETT_T2_DSSD_X34_E_Zero_Dispersion -0.440474
+MUSETT_T2_DSSD_X35_E_Zero_Dispersion -5.95833
+MUSETT_T2_DSSD_X36_E_Zero_Dispersion -4.04569
+MUSETT_T2_DSSD_X37_E_Zero_Dispersion 0.0077729
+MUSETT_T2_DSSD_X38_E_Zero_Dispersion 0.445825
+MUSETT_T2_DSSD_X39_E_Zero_Dispersion -0.760995
+MUSETT_T2_DSSD_X40_E_Zero_Dispersion -0.779193
+MUSETT_T2_DSSD_X41_E_Zero_Dispersion -2.03756
+MUSETT_T2_DSSD_X42_E_Zero_Dispersion -6.7056
+MUSETT_T2_DSSD_X43_E_Zero_Dispersion -0.653277
+MUSETT_T2_DSSD_X44_E_Zero_Dispersion 2.92757
+MUSETT_T2_DSSD_X45_E_Zero_Dispersion 5.00509
+MUSETT_T2_DSSD_X46_E_Zero_Dispersion -2.68399
+MUSETT_T2_DSSD_X47_E_Zero_Dispersion -2.83135
+MUSETT_T2_DSSD_X48_E_Zero_Dispersion -4.68951
+MUSETT_T2_DSSD_X49_E_Zero_Dispersion -2.42602
+MUSETT_T2_DSSD_X50_E_Zero_Dispersion -0.516333
+MUSETT_T2_DSSD_X51_E_Zero_Dispersion 0.312368
+MUSETT_T2_DSSD_X52_E_Zero_Dispersion 0.0122945
+MUSETT_T2_DSSD_X53_E_Zero_Dispersion -3.47949
+MUSETT_T2_DSSD_X54_E_Zero_Dispersion -2.87002
+MUSETT_T2_DSSD_X55_E_Zero_Dispersion -1.61444
+MUSETT_T2_DSSD_X56_E_Zero_Dispersion -4.5746
+MUSETT_T2_DSSD_X57_E_Zero_Dispersion 2.74437
+MUSETT_T2_DSSD_X58_E_Zero_Dispersion -5.00423
+MUSETT_T2_DSSD_X59_E_Zero_Dispersion -4.23142
+MUSETT_T2_DSSD_X60_E_Zero_Dispersion -4.72474
+MUSETT_T2_DSSD_X61_E_Zero_Dispersion -0.975189
+MUSETT_T2_DSSD_X62_E_Zero_Dispersion 0.109618
+MUSETT_T2_DSSD_X63_E_Zero_Dispersion -1.50696
+MUSETT_T2_DSSD_X64_E_Zero_Dispersion -2.70853
+MUSETT_T2_DSSD_X65_E_Zero_Dispersion -1.80166
+MUSETT_T2_DSSD_X66_E_Zero_Dispersion -4.48537
+MUSETT_T2_DSSD_X67_E_Zero_Dispersion -3.40495
+MUSETT_T2_DSSD_X68_E_Zero_Dispersion 8200.68
+MUSETT_T2_DSSD_X69_E_Zero_Dispersion -2.17963
+MUSETT_T2_DSSD_X70_E_Zero_Dispersion -3.6384
+MUSETT_T2_DSSD_X71_E_Zero_Dispersion -3.43843
+MUSETT_T2_DSSD_X72_E_Zero_Dispersion -5.22173
+MUSETT_T2_DSSD_X73_E_Zero_Dispersion -4.72123
+MUSETT_T2_DSSD_X74_E_Zero_Dispersion -5.63015
+MUSETT_T2_DSSD_X75_E_Zero_Dispersion -4.13665
+MUSETT_T2_DSSD_X76_E_Zero_Dispersion 1.24523
+MUSETT_T2_DSSD_X77_E_Zero_Dispersion 1.23439
+MUSETT_T2_DSSD_X78_E_Zero_Dispersion -1.89727
+MUSETT_T2_DSSD_X79_E_Zero_Dispersion -0.447251
+MUSETT_T2_DSSD_X80_E_Zero_Dispersion -6.49207
+MUSETT_T2_DSSD_X81_E_Zero_Dispersion -4.52581
+MUSETT_T2_DSSD_X82_E_Zero_Dispersion -4.8822
+MUSETT_T2_DSSD_X83_E_Zero_Dispersion -5.2954
+MUSETT_T2_DSSD_X84_E_Zero_Dispersion -5.59878
+MUSETT_T2_DSSD_X85_E_Zero_Dispersion -6.51265
+MUSETT_T2_DSSD_X86_E_Zero_Dispersion -8.06397
+MUSETT_T2_DSSD_X87_E_Zero_Dispersion -4.56011
+MUSETT_T2_DSSD_X88_E_Zero_Dispersion -6.02613
+MUSETT_T2_DSSD_X89_E_Zero_Dispersion -3.74084
+MUSETT_T2_DSSD_X90_E_Zero_Dispersion -0.158172
+MUSETT_T2_DSSD_X91_E_Zero_Dispersion -5.41945
+MUSETT_T2_DSSD_X92_E_Zero_Dispersion -3.32195
+MUSETT_T2_DSSD_X93_E_Zero_Dispersion -5.45422
+MUSETT_T2_DSSD_X94_E_Zero_Dispersion -7.11956
+MUSETT_T2_DSSD_X95_E_Zero_Dispersion -6.43228
+MUSETT_T2_DSSD_X96_E_Zero_Dispersion -3.0892
+MUSETT_T2_DSSD_X97_E_Zero_Dispersion -2.5437
+MUSETT_T2_DSSD_X98_E_Zero_Dispersion -5.63205
+MUSETT_T2_DSSD_X99_E_Zero_Dispersion 0.622242
+MUSETT_T2_DSSD_X100_E_Zero_Dispersion -1.95818
+MUSETT_T2_DSSD_X101_E_Zero_Dispersion -3.3241
+MUSETT_T2_DSSD_X102_E_Zero_Dispersion -0.260072
+MUSETT_T2_DSSD_X103_E_Zero_Dispersion -3.16489
+MUSETT_T2_DSSD_X104_E_Zero_Dispersion 0.907419
+MUSETT_T2_DSSD_X105_E_Zero_Dispersion -2.81874
+MUSETT_T2_DSSD_X106_E_Zero_Dispersion -2.31876
+MUSETT_T2_DSSD_X107_E_Zero_Dispersion -5.91743
+MUSETT_T2_DSSD_X108_E_Zero_Dispersion -4.3861
+MUSETT_T2_DSSD_X109_E_Zero_Dispersion -0.733514
+MUSETT_T2_DSSD_X110_E_Zero_Dispersion -4.8252
+MUSETT_T2_DSSD_X111_E_Zero_Dispersion 0.653802
+MUSETT_T2_DSSD_X112_E_Zero_Dispersion -5.38964
+MUSETT_T2_DSSD_X113_E_Zero_Dispersion -5.18522
+MUSETT_T2_DSSD_X114_E_Zero_Dispersion -5.01951
+MUSETT_T2_DSSD_X115_E_Zero_Dispersion -5.85542
+MUSETT_T2_DSSD_X116_E_Zero_Dispersion -3.99512
+MUSETT_T2_DSSD_X117_E_Zero_Dispersion -2.76824
+MUSETT_T2_DSSD_X118_E_Zero_Dispersion -3.42856
+MUSETT_T2_DSSD_X119_E_Zero_Dispersion -0.924597
+MUSETT_T2_DSSD_X120_E_Zero_Dispersion -0.889406
+MUSETT_T2_DSSD_X121_E_Zero_Dispersion -2.79347
+MUSETT_T2_DSSD_X122_E_Zero_Dispersion -2.34855
+MUSETT_T2_DSSD_X123_E_Zero_Dispersion -0.634432
+MUSETT_T2_DSSD_X124_E_Zero_Dispersion -5.50355
+MUSETT_T2_DSSD_X125_E_Zero_Dispersion -2.4172
+MUSETT_T2_DSSD_X126_E_Zero_Dispersion -4.91707
+MUSETT_T2_DSSD_X127_E_Zero_Dispersion -2.51241
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/latex/double_alpha_run_0274_X_MM2_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/latex/double_alpha_run_0274_X_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..ac2735d3cb8597e3fabac45b3f77c8621519a7f6
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/latex/double_alpha_run_0274_X_MM2_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+68 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.14784
+
+Sigma fit sigma: 0.618476
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..f8e4c59253891d9021ba3560f9481f1d2833aa18
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E -61.7475 0.00754365
+MUSETT_T3_DSSD_X1_E -61.3279 0.00749158
+MUSETT_T3_DSSD_X2_E -61.6596 0.0075318
+MUSETT_T3_DSSD_X3_E -61.7171 0.00753951
+MUSETT_T3_DSSD_X4_E -61.4553 0.00750656
+MUSETT_T3_DSSD_X5_E -61.3762 0.00749656
+MUSETT_T3_DSSD_X6_E -61.5322 0.00751647
+MUSETT_T3_DSSD_X7_E -61.2036 0.0074747
+MUSETT_T3_DSSD_X8_E -61.3418 0.00749155
+MUSETT_T3_DSSD_X9_E -61.3643 0.00749498
+MUSETT_T3_DSSD_X10_E -61.5146 0.00751027
+MUSETT_T3_DSSD_X11_E -62.5512 0.00763887
+MUSETT_T3_DSSD_X12_E -61.3127 0.00748672
+MUSETT_T3_DSSD_X13_E -61.5248 0.00751198
+MUSETT_T3_DSSD_X14_E -61.2067 0.00747599
+MUSETT_T3_DSSD_X15_E -62.199 0.00759553
+MUSETT_T3_DSSD_X16_E -63.291 0.00772834
+MUSETT_T3_DSSD_X17_E -62.6431 0.00764987
+MUSETT_T3_DSSD_X18_E -62.5264 0.00763546
+MUSETT_T3_DSSD_X19_E -62.54 0.00763491
+MUSETT_T3_DSSD_X20_E -62.2248 0.00759793
+MUSETT_T3_DSSD_X21_E -62.5934 0.00764571
+MUSETT_T3_DSSD_X22_E -63.1363 0.00771819
+MUSETT_T3_DSSD_X23_E -63.378 0.00773985
+MUSETT_T3_DSSD_X24_E -62.0995 0.00758736
+MUSETT_T3_DSSD_X25_E -63.1387 0.00770998
+MUSETT_T3_DSSD_X26_E -63.0598 0.00770204
+MUSETT_T3_DSSD_X27_E -62.7893 0.00766932
+MUSETT_T3_DSSD_X28_E -62.9673 0.00769104
+MUSETT_T3_DSSD_X29_E -62.9568 0.00769116
+MUSETT_T3_DSSD_X30_E -63.9027 0.00780659
+MUSETT_T3_DSSD_X31_E -62.8794 0.00768443
+MUSETT_T3_DSSD_X32_E -58.1027 0.0071075
+MUSETT_T3_DSSD_X33_E -57.9939 0.00709412
+MUSETT_T3_DSSD_X34_E -56.9563 0.00696692
+MUSETT_T3_DSSD_X35_E -57.2356 0.00699925
+MUSETT_T3_DSSD_X36_E -57.8181 0.00706923
+MUSETT_T3_DSSD_X37_E -58.0886 0.00710147
+MUSETT_T3_DSSD_X38_E -58.2613 0.00712383
+MUSETT_T3_DSSD_X39_E -57.8152 0.00706775
+MUSETT_T3_DSSD_X40_E -58.4241 0.00714095
+MUSETT_T3_DSSD_X41_E -57.8933 0.0070794
+MUSETT_T3_DSSD_X42_E -58.0439 0.00709692
+MUSETT_T3_DSSD_X43_E 7.39123 0.851608
+MUSETT_T3_DSSD_X44_E -58.3014 0.00712825
+MUSETT_T3_DSSD_X45_E -58.706 0.00717278
+MUSETT_T3_DSSD_X46_E -58.282 0.0071191
+MUSETT_T3_DSSD_X47_E -58.5478 0.00715315
+MUSETT_T3_DSSD_X48_E -56.8326 0.00694268
+MUSETT_T3_DSSD_X49_E -56.5904 0.00691381
+MUSETT_T3_DSSD_X50_E -56.2694 0.00687536
+MUSETT_T3_DSSD_X51_E -56.3974 0.00689359
+MUSETT_T3_DSSD_X52_E -56.0544 0.00685429
+MUSETT_T3_DSSD_X53_E -56.5244 0.00691084
+MUSETT_T3_DSSD_X54_E -55.9116 0.00683458
+MUSETT_T3_DSSD_X55_E -56.3099 0.00688659
+MUSETT_T3_DSSD_X56_E -56.8089 0.00694464
+MUSETT_T3_DSSD_X57_E -55.5634 0.00679492
+MUSETT_T3_DSSD_X58_E -56.3701 0.00689601
+MUSETT_T3_DSSD_X59_E -56.0208 0.00685211
+MUSETT_T3_DSSD_X60_E -55.2121 0.00675438
+MUSETT_T3_DSSD_X61_E -55.8207 0.00682687
+MUSETT_T3_DSSD_X62_E -55.6304 0.00680525
+MUSETT_T3_DSSD_X63_E -55.1928 0.00675491
+MUSETT_T3_DSSD_X64_E -63.9696 0.00780931
+MUSETT_T3_DSSD_X65_E -63.3555 0.00773855
+MUSETT_T3_DSSD_X66_E -63.1771 0.00771551
+MUSETT_T3_DSSD_X67_E -63.5098 0.00775306
+MUSETT_T3_DSSD_X68_E -63.3882 0.00773862
+MUSETT_T3_DSSD_X69_E -63.0461 0.00769634
+MUSETT_T3_DSSD_X70_E -64.0234 0.00781715
+MUSETT_T3_DSSD_X71_E -62.1448 0.00758861
+MUSETT_T3_DSSD_X72_E -62.356 0.00761402
+MUSETT_T3_DSSD_X73_E -62.6019 0.00764474
+MUSETT_T3_DSSD_X74_E -62.8733 0.00767594
+MUSETT_T3_DSSD_X75_E -63.1537 0.00771003
+MUSETT_T3_DSSD_X76_E -63.7982 0.00778975
+MUSETT_T3_DSSD_X77_E -62.1866 0.0075927
+MUSETT_T3_DSSD_X78_E -62.3106 0.00760775
+MUSETT_T3_DSSD_X79_E -62.7171 0.00765713
+MUSETT_T3_DSSD_X80_E -62.2113 0.0075955
+MUSETT_T3_DSSD_X81_E -62.4889 0.00763009
+MUSETT_T3_DSSD_X82_E -62.433 0.00762271
+MUSETT_T3_DSSD_X83_E -62.3816 0.00761606
+MUSETT_T3_DSSD_X84_E -61.8228 0.0075474
+MUSETT_T3_DSSD_X85_E -62.0885 0.00758168
+MUSETT_T3_DSSD_X86_E -62.1847 0.00759208
+MUSETT_T3_DSSD_X87_E -61.7134 0.00753717
+MUSETT_T3_DSSD_X88_E -61.9746 0.00756738
+MUSETT_T3_DSSD_X89_E -62.3044 0.00760928
+MUSETT_T3_DSSD_X90_E -62.1099 0.00758286
+MUSETT_T3_DSSD_X91_E -61.5959 0.00752284
+MUSETT_T3_DSSD_X92_E -62.3641 0.00761711
+MUSETT_T3_DSSD_X93_E -62.2005 0.00759558
+MUSETT_T3_DSSD_X94_E -61.8202 0.00754895
+MUSETT_T3_DSSD_X95_E -62.1497 0.00758769
+MUSETT_T3_DSSD_X96_E -55.9035 0.00682462
+MUSETT_T3_DSSD_X97_E -55.4954 0.00677857
+MUSETT_T3_DSSD_X98_E -54.9585 0.00670973
+MUSETT_T3_DSSD_X99_E -55.3775 0.00676383
+MUSETT_T3_DSSD_X100_E -55.7181 0.00680553
+MUSETT_T3_DSSD_X101_E -55.6337 0.00679291
+MUSETT_T3_DSSD_X102_E -55.6556 0.00679656
+MUSETT_T3_DSSD_X103_E -54.9843 0.00671304
+MUSETT_T3_DSSD_X104_E -55.3714 0.00675929
+MUSETT_T3_DSSD_X105_E -55.6203 0.00679297
+MUSETT_T3_DSSD_X106_E -55.651 0.00679392
+MUSETT_T3_DSSD_X107_E -55.5623 0.00678286
+MUSETT_T3_DSSD_X108_E -56.4102 0.00689092
+MUSETT_T3_DSSD_X109_E -55.8281 0.00681951
+MUSETT_T3_DSSD_X110_E -55.6717 0.00679537
+MUSETT_T3_DSSD_X111_E -55.5708 0.0067833
+MUSETT_T3_DSSD_X112_E -57.0662 0.00697157
+MUSETT_T3_DSSD_X113_E -56.5305 0.00690489
+MUSETT_T3_DSSD_X114_E -57.4322 0.00701067
+MUSETT_T3_DSSD_X115_E -56.6085 0.00691311
+MUSETT_T3_DSSD_X116_E -57.6268 0.00703901
+MUSETT_T3_DSSD_X117_E -56.8313 0.00694126
+MUSETT_T3_DSSD_X118_E -57.0933 0.00697294
+MUSETT_T3_DSSD_X119_E -55.8642 0.00682494
+MUSETT_T3_DSSD_X120_E -56.4873 0.00689798
+MUSETT_T3_DSSD_X121_E -57.4399 0.00701642
+MUSETT_T3_DSSD_X122_E -57.0316 0.00696599
+MUSETT_T3_DSSD_X123_E -56.5839 0.00691232
+MUSETT_T3_DSSD_X124_E -57.4735 0.0070168
+MUSETT_T3_DSSD_X125_E -56.4109 0.00688805
+MUSETT_T3_DSSD_X126_E -57.6384 0.00703652
+MUSETT_T3_DSSD_X127_E -56.1553 0.00685853
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..b5fa204258284f9cd6b57600d0dc56f3b075c029
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E_Zero_Dispersion 6.63254
+MUSETT_T3_DSSD_X1_E_Zero_Dispersion 5.74949
+MUSETT_T3_DSSD_X2_E_Zero_Dispersion 5.42348
+MUSETT_T3_DSSD_X3_E_Zero_Dispersion 6.18133
+MUSETT_T3_DSSD_X4_E_Zero_Dispersion 5.11964
+MUSETT_T3_DSSD_X5_E_Zero_Dispersion 4.75466
+MUSETT_T3_DSSD_X6_E_Zero_Dispersion 5.68136
+MUSETT_T3_DSSD_X7_E_Zero_Dispersion 3.9033
+MUSETT_T3_DSSD_X8_E_Zero_Dispersion 3.86185
+MUSETT_T3_DSSD_X9_E_Zero_Dispersion 4.605
+MUSETT_T3_DSSD_X10_E_Zero_Dispersion 1.26815
+MUSETT_T3_DSSD_X11_E_Zero_Dispersion 3.4552
+MUSETT_T3_DSSD_X12_E_Zero_Dispersion 2.46614
+MUSETT_T3_DSSD_X13_E_Zero_Dispersion 1.77666
+MUSETT_T3_DSSD_X14_E_Zero_Dispersion 4.88605
+MUSETT_T3_DSSD_X15_E_Zero_Dispersion 3.10354
+MUSETT_T3_DSSD_X16_E_Zero_Dispersion 2.53841
+MUSETT_T3_DSSD_X17_E_Zero_Dispersion 3.22056
+MUSETT_T3_DSSD_X18_E_Zero_Dispersion 3.04206
+MUSETT_T3_DSSD_X19_E_Zero_Dispersion 0.685915
+MUSETT_T3_DSSD_X20_E_Zero_Dispersion 2.29495
+MUSETT_T3_DSSD_X21_E_Zero_Dispersion 5.26527
+MUSETT_T3_DSSD_X22_E_Zero_Dispersion 11.8048
+MUSETT_T3_DSSD_X23_E_Zero_Dispersion 3.45973
+MUSETT_T3_DSSD_X24_E_Zero_Dispersion 7.39581
+MUSETT_T3_DSSD_X25_E_Zero_Dispersion 2.78975
+MUSETT_T3_DSSD_X26_E_Zero_Dispersion 4.58737
+MUSETT_T3_DSSD_X27_E_Zero_Dispersion 4.92463
+MUSETT_T3_DSSD_X28_E_Zero_Dispersion 4.89984
+MUSETT_T3_DSSD_X29_E_Zero_Dispersion 6.39284
+MUSETT_T3_DSSD_X30_E_Zero_Dispersion 6.26056
+MUSETT_T3_DSSD_X31_E_Zero_Dispersion 9.2975
+MUSETT_T3_DSSD_X32_E_Zero_Dispersion 17.1538
+MUSETT_T3_DSSD_X33_E_Zero_Dispersion 17.0711
+MUSETT_T3_DSSD_X34_E_Zero_Dispersion 16.7475
+MUSETT_T3_DSSD_X35_E_Zero_Dispersion 14.6113
+MUSETT_T3_DSSD_X36_E_Zero_Dispersion 13.1613
+MUSETT_T3_DSSD_X37_E_Zero_Dispersion 12.1957
+MUSETT_T3_DSSD_X38_E_Zero_Dispersion 13.6338
+MUSETT_T3_DSSD_X39_E_Zero_Dispersion 11.8618
+MUSETT_T3_DSSD_X40_E_Zero_Dispersion 10.4463
+MUSETT_T3_DSSD_X41_E_Zero_Dispersion 14.2917
+MUSETT_T3_DSSD_X42_E_Zero_Dispersion 13.258
+MUSETT_T3_DSSD_X43_E_Zero_Dispersion 8200.68
+MUSETT_T3_DSSD_X44_E_Zero_Dispersion 13.079
+MUSETT_T3_DSSD_X45_E_Zero_Dispersion 7.44103
+MUSETT_T3_DSSD_X46_E_Zero_Dispersion 5.29528
+MUSETT_T3_DSSD_X47_E_Zero_Dispersion 7.10408
+MUSETT_T3_DSSD_X48_E_Zero_Dispersion 6.02579
+MUSETT_T3_DSSD_X49_E_Zero_Dispersion 6.87837
+MUSETT_T3_DSSD_X50_E_Zero_Dispersion 7.78668
+MUSETT_T3_DSSD_X51_E_Zero_Dispersion 10.8579
+MUSETT_T3_DSSD_X52_E_Zero_Dispersion 14.0069
+MUSETT_T3_DSSD_X53_E_Zero_Dispersion 12.908
+MUSETT_T3_DSSD_X54_E_Zero_Dispersion 11.3155
+MUSETT_T3_DSSD_X55_E_Zero_Dispersion 15.2509
+MUSETT_T3_DSSD_X56_E_Zero_Dispersion 11.7545
+MUSETT_T3_DSSD_X57_E_Zero_Dispersion 14.8099
+MUSETT_T3_DSSD_X58_E_Zero_Dispersion 17.6948
+MUSETT_T3_DSSD_X59_E_Zero_Dispersion 16.2995
+MUSETT_T3_DSSD_X60_E_Zero_Dispersion 17.7334
+MUSETT_T3_DSSD_X61_E_Zero_Dispersion 15.3887
+MUSETT_T3_DSSD_X62_E_Zero_Dispersion 17.36
+MUSETT_T3_DSSD_X63_E_Zero_Dispersion 21.2396
+MUSETT_T3_DSSD_X64_E_Zero_Dispersion 0.54688
+MUSETT_T3_DSSD_X65_E_Zero_Dispersion 5.00404
+MUSETT_T3_DSSD_X66_E_Zero_Dispersion 3.67625
+MUSETT_T3_DSSD_X67_E_Zero_Dispersion 0.418682
+MUSETT_T3_DSSD_X68_E_Zero_Dispersion 0.844769
+MUSETT_T3_DSSD_X69_E_Zero_Dispersion 0.310282
+MUSETT_T3_DSSD_X70_E_Zero_Dispersion 1.88164
+MUSETT_T3_DSSD_X71_E_Zero_Dispersion 2.773
+MUSETT_T3_DSSD_X72_E_Zero_Dispersion 2.36367
+MUSETT_T3_DSSD_X73_E_Zero_Dispersion 3.10533
+MUSETT_T3_DSSD_X74_E_Zero_Dispersion 1.03999
+MUSETT_T3_DSSD_X75_E_Zero_Dispersion 0.882051
+MUSETT_T3_DSSD_X76_E_Zero_Dispersion 1.97499
+MUSETT_T3_DSSD_X77_E_Zero_Dispersion 1.67487
+MUSETT_T3_DSSD_X78_E_Zero_Dispersion 1.59284
+MUSETT_T3_DSSD_X79_E_Zero_Dispersion 1.32705
+MUSETT_T3_DSSD_X80_E_Zero_Dispersion 1.45268
+MUSETT_T3_DSSD_X81_E_Zero_Dispersion 2.21072
+MUSETT_T3_DSSD_X82_E_Zero_Dispersion 1.60635
+MUSETT_T3_DSSD_X83_E_Zero_Dispersion 1.2076
+MUSETT_T3_DSSD_X84_E_Zero_Dispersion 0.732884
+MUSETT_T3_DSSD_X85_E_Zero_Dispersion 2.71973
+MUSETT_T3_DSSD_X86_E_Zero_Dispersion 1.26472
+MUSETT_T3_DSSD_X87_E_Zero_Dispersion 4.12606
+MUSETT_T3_DSSD_X88_E_Zero_Dispersion 2.29194
+MUSETT_T3_DSSD_X89_E_Zero_Dispersion 4.04424
+MUSETT_T3_DSSD_X90_E_Zero_Dispersion 1.16739
+MUSETT_T3_DSSD_X91_E_Zero_Dispersion 4.13851
+MUSETT_T3_DSSD_X92_E_Zero_Dispersion 4.62734
+MUSETT_T3_DSSD_X93_E_Zero_Dispersion 2.96159
+MUSETT_T3_DSSD_X94_E_Zero_Dispersion 2.75865
+MUSETT_T3_DSSD_X95_E_Zero_Dispersion 1.13467
+MUSETT_T3_DSSD_X96_E_Zero_Dispersion 0.560919
+MUSETT_T3_DSSD_X97_E_Zero_Dispersion 5.11095
+MUSETT_T3_DSSD_X98_E_Zero_Dispersion 1.14066
+MUSETT_T3_DSSD_X99_E_Zero_Dispersion 4.70192
+MUSETT_T3_DSSD_X100_E_Zero_Dispersion 4.82997
+MUSETT_T3_DSSD_X101_E_Zero_Dispersion 2.03176
+MUSETT_T3_DSSD_X102_E_Zero_Dispersion 3.20693
+MUSETT_T3_DSSD_X103_E_Zero_Dispersion 1.32489
+MUSETT_T3_DSSD_X104_E_Zero_Dispersion 0.0996645
+MUSETT_T3_DSSD_X105_E_Zero_Dispersion 4.07351
+MUSETT_T3_DSSD_X106_E_Zero_Dispersion 0.709593
+MUSETT_T3_DSSD_X107_E_Zero_Dispersion 0.418541
+MUSETT_T3_DSSD_X108_E_Zero_Dispersion 5.84514
+MUSETT_T3_DSSD_X109_E_Zero_Dispersion 5.46992
+MUSETT_T3_DSSD_X110_E_Zero_Dispersion -0.584243
+MUSETT_T3_DSSD_X111_E_Zero_Dispersion -0.299269
+MUSETT_T3_DSSD_X112_E_Zero_Dispersion 6.43671
+MUSETT_T3_DSSD_X113_E_Zero_Dispersion 4.9844
+MUSETT_T3_DSSD_X114_E_Zero_Dispersion -0.124211
+MUSETT_T3_DSSD_X115_E_Zero_Dispersion 3.4256
+MUSETT_T3_DSSD_X116_E_Zero_Dispersion 5.23201
+MUSETT_T3_DSSD_X117_E_Zero_Dispersion 4.53419
+MUSETT_T3_DSSD_X118_E_Zero_Dispersion 4.16371
+MUSETT_T3_DSSD_X119_E_Zero_Dispersion 6.69004
+MUSETT_T3_DSSD_X120_E_Zero_Dispersion 3.03511
+MUSETT_T3_DSSD_X121_E_Zero_Dispersion 5.50333
+MUSETT_T3_DSSD_X122_E_Zero_Dispersion 4.84654
+MUSETT_T3_DSSD_X123_E_Zero_Dispersion 6.04781
+MUSETT_T3_DSSD_X124_E_Zero_Dispersion 1.15854
+MUSETT_T3_DSSD_X125_E_Zero_Dispersion 2.32906
+MUSETT_T3_DSSD_X126_E_Zero_Dispersion 0.678591
+MUSETT_T3_DSSD_X127_E_Zero_Dispersion 4.34674
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/latex/double_alpha_run_0274_X_MM3_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/latex/double_alpha_run_0274_X_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..052d4c198b5188d9f6165d0051ac816c1e4827da
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/latex/double_alpha_run_0274_X_MM3_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+43 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 1.90056
+
+Sigma fit sigma: 0.335518
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0e94c581d2f45cea94e846763ede16df8e9cd22d
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_Y0_E 6.82575 -0.844837
+MUSETT_T0_DSSD_Y1_E 59.9396 -0.00731092
+MUSETT_T0_DSSD_Y2_E 60.4106 -0.00736742
+MUSETT_T0_DSSD_Y3_E 60.536 -0.00738222
+MUSETT_T0_DSSD_Y4_E 59.5713 -0.00726647
+MUSETT_T0_DSSD_Y5_E 59.6593 -0.0072751
+MUSETT_T0_DSSD_Y6_E 60.2169 -0.00734415
+MUSETT_T0_DSSD_Y7_E 60.0432 -0.00732455
+MUSETT_T0_DSSD_Y8_E 59.5902 -0.00726598
+MUSETT_T0_DSSD_Y9_E 59.4347 -0.00724787
+MUSETT_T0_DSSD_Y10_E 59.9372 -0.00730993
+MUSETT_T0_DSSD_Y11_E 59.6307 -0.00727372
+MUSETT_T0_DSSD_Y12_E 60.3787 -0.00736332
+MUSETT_T0_DSSD_Y13_E 64.1489 -0.00787871
+MUSETT_T0_DSSD_Y14_E 60.5738 -0.00738797
+MUSETT_T0_DSSD_Y15_E 60.1216 -0.00733002
+MUSETT_T0_DSSD_Y16_E 59.9228 -0.0073087
+MUSETT_T0_DSSD_Y17_E 59.9655 -0.00731221
+MUSETT_T0_DSSD_Y18_E 59.7151 -0.00728067
+MUSETT_T0_DSSD_Y19_E 59.6477 -0.00727435
+MUSETT_T0_DSSD_Y20_E 59.8071 -0.00729347
+MUSETT_T0_DSSD_Y21_E 59.9607 -0.00731324
+MUSETT_T0_DSSD_Y22_E 59.7539 -0.00728791
+MUSETT_T0_DSSD_Y23_E 59.0607 -0.00720123
+MUSETT_T0_DSSD_Y24_E 59.5327 -0.00725816
+MUSETT_T0_DSSD_Y25_E 59.2586 -0.00722739
+MUSETT_T0_DSSD_Y26_E 59.6039 -0.00727089
+MUSETT_T0_DSSD_Y27_E 59.8624 -0.00730066
+MUSETT_T0_DSSD_Y28_E 59.4132 -0.00724484
+MUSETT_T0_DSSD_Y29_E 59.2535 -0.00722877
+MUSETT_T0_DSSD_Y30_E 59.4539 -0.00725365
+MUSETT_T0_DSSD_Y31_E 60.5797 -0.00739042
+MUSETT_T0_DSSD_Y32_E 56.1608 -0.00684825
+MUSETT_T0_DSSD_Y33_E 56.5204 -0.00689187
+MUSETT_T0_DSSD_Y34_E 56.2288 -0.00686031
+MUSETT_T0_DSSD_Y35_E 56.6772 -0.00691344
+MUSETT_T0_DSSD_Y36_E 56.9245 -0.00694145
+MUSETT_T0_DSSD_Y37_E 56.9461 -0.00694672
+MUSETT_T0_DSSD_Y38_E 56.0767 -0.0068407
+MUSETT_T0_DSSD_Y39_E 56.1027 -0.006843
+MUSETT_T0_DSSD_Y40_E 56.5705 -0.00690073
+MUSETT_T0_DSSD_Y41_E 56.1805 -0.00684956
+MUSETT_T0_DSSD_Y42_E 56.2323 -0.00685952
+MUSETT_T0_DSSD_Y43_E 56.1879 -0.00685347
+MUSETT_T0_DSSD_Y44_E 56.4542 -0.00688626
+MUSETT_T0_DSSD_Y45_E 56.549 -0.00689733
+MUSETT_T0_DSSD_Y46_E 57.2559 -0.00698044
+MUSETT_T0_DSSD_Y47_E 56.1545 -0.00684912
+MUSETT_T0_DSSD_Y48_E 57.2081 -0.00697815
+MUSETT_T0_DSSD_Y49_E 56.525 -0.00689257
+MUSETT_T0_DSSD_Y50_E 56.3639 -0.00687465
+MUSETT_T0_DSSD_Y51_E 56.0496 -0.00683669
+MUSETT_T0_DSSD_Y52_E 56.6657 -0.00691036
+MUSETT_T0_DSSD_Y53_E 56.4242 -0.00687821
+MUSETT_T0_DSSD_Y54_E 56.3254 -0.00687194
+MUSETT_T0_DSSD_Y55_E 56.9205 -0.00693805
+MUSETT_T0_DSSD_Y56_E 57.0242 -0.00695791
+MUSETT_T0_DSSD_Y57_E 56.5056 -0.00689519
+MUSETT_T0_DSSD_Y58_E 56.4569 -0.00688479
+MUSETT_T0_DSSD_Y59_E 56.8005 -0.006928
+MUSETT_T0_DSSD_Y60_E 56.6359 -0.00690454
+MUSETT_T0_DSSD_Y61_E 56.5755 -0.00689818
+MUSETT_T0_DSSD_Y62_E 57.045 -0.00695521
+MUSETT_T0_DSSD_Y63_E 57.4402 -0.00700138
+MUSETT_T0_DSSD_Y64_E 60.581 -0.00738974
+MUSETT_T0_DSSD_Y65_E 60.6496 -0.00739714
+MUSETT_T0_DSSD_Y66_E 60.4622 -0.00737333
+MUSETT_T0_DSSD_Y67_E 60.936 -0.00743343
+MUSETT_T0_DSSD_Y68_E 60.0202 -0.00732222
+MUSETT_T0_DSSD_Y69_E 61.036 -0.00744431
+MUSETT_T0_DSSD_Y70_E 60.3324 -0.00735687
+MUSETT_T0_DSSD_Y71_E 60.0203 -0.00732156
+MUSETT_T0_DSSD_Y72_E 61.2337 -0.00746905
+MUSETT_T0_DSSD_Y73_E 60.6202 -0.00739313
+MUSETT_T0_DSSD_Y74_E 60.6822 -0.00740078
+MUSETT_T0_DSSD_Y75_E 60.8037 -0.00741032
+MUSETT_T0_DSSD_Y76_E 60.2306 -0.00734812
+MUSETT_T0_DSSD_Y77_E 60.9684 -0.0074378
+MUSETT_T0_DSSD_Y78_E 61.3278 -0.00748195
+MUSETT_T0_DSSD_Y79_E 60.5917 -0.00738993
+MUSETT_T0_DSSD_Y80_E 61.6875 -0.00751447
+MUSETT_T0_DSSD_Y81_E 60.5067 -0.00737839
+MUSETT_T0_DSSD_Y82_E 61.0018 -0.00743772
+MUSETT_T0_DSSD_Y83_E 61.7662 -0.00753354
+MUSETT_T0_DSSD_Y84_E 60.3646 -0.00735909
+MUSETT_T0_DSSD_Y85_E 60.2349 -0.007342
+MUSETT_T0_DSSD_Y86_E 61.2239 -0.00746588
+MUSETT_T0_DSSD_Y87_E 60.8481 -0.00741858
+MUSETT_T0_DSSD_Y88_E 60.432 -0.00736679
+MUSETT_T0_DSSD_Y89_E 60.8595 -0.0074229
+MUSETT_T0_DSSD_Y90_E 60.6124 -0.00739208
+MUSETT_T0_DSSD_Y91_E 60.9829 -0.00743762
+MUSETT_T0_DSSD_Y92_E 61.2564 -0.00746856
+MUSETT_T0_DSSD_Y93_E 61.0818 -0.0074474
+MUSETT_T0_DSSD_Y94_E 61.7604 -0.00752996
+MUSETT_T0_DSSD_Y95_E 60.1873 -0.00733724
+MUSETT_T0_DSSD_Y96_E 55.7827 -0.00679989
+MUSETT_T0_DSSD_Y97_E 56.0999 -0.00683972
+MUSETT_T0_DSSD_Y98_E 56.2346 -0.00686015
+MUSETT_T0_DSSD_Y99_E 56.0143 -0.00683094
+MUSETT_T0_DSSD_Y100_E 55.7323 -0.00679648
+MUSETT_T0_DSSD_Y101_E 55.8821 -0.00681118
+MUSETT_T0_DSSD_Y102_E 55.5714 -0.00677554
+MUSETT_T0_DSSD_Y103_E 55.9719 -0.00682257
+MUSETT_T0_DSSD_Y104_E 56.5704 -0.00690135
+MUSETT_T0_DSSD_Y105_E 55.6434 -0.00678573
+MUSETT_T0_DSSD_Y106_E 56.6027 -0.00690209
+MUSETT_T0_DSSD_Y107_E 56.9725 -0.00694856
+MUSETT_T0_DSSD_Y108_E 56.0688 -0.00683764
+MUSETT_T0_DSSD_Y109_E 56.1521 -0.00684898
+MUSETT_T0_DSSD_Y110_E 56.3271 -0.00687067
+MUSETT_T0_DSSD_Y111_E 55.8965 -0.00681587
+MUSETT_T0_DSSD_Y112_E 56.4834 -0.00688847
+MUSETT_T0_DSSD_Y113_E 56.3634 -0.00686863
+MUSETT_T0_DSSD_Y114_E 56.6287 -0.00690812
+MUSETT_T0_DSSD_Y115_E 56.4297 -0.0068832
+MUSETT_T0_DSSD_Y116_E 56.7518 -0.00691987
+MUSETT_T0_DSSD_Y117_E 56.0688 -0.00683716
+MUSETT_T0_DSSD_Y118_E 55.8832 -0.00681286
+MUSETT_T0_DSSD_Y119_E 56.0852 -0.00683815
+MUSETT_T0_DSSD_Y120_E 56.9102 -0.0069408
+MUSETT_T0_DSSD_Y121_E 56.6179 -0.00690191
+MUSETT_T0_DSSD_Y122_E 56.2517 -0.00685791
+MUSETT_T0_DSSD_Y123_E 55.6493 -0.0067881
+MUSETT_T0_DSSD_Y124_E 55.7588 -0.00679547
+MUSETT_T0_DSSD_Y125_E 55.3298 -0.00674464
+MUSETT_T0_DSSD_Y126_E 56.5723 -0.00690015
+MUSETT_T0_DSSD_Y127_E 55.9475 -0.00682061
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..56dce7bc4b19a542bdf9afb2fecfb3b1b15d9014
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E_Zero_Dispersion 8183.92
+MUSETT_T0_DSSD_X1_E_Zero_Dispersion -6.63295
+MUSETT_T0_DSSD_X2_E_Zero_Dispersion -7.7008
+MUSETT_T0_DSSD_X3_E_Zero_Dispersion -8.2479
+MUSETT_T0_DSSD_X4_E_Zero_Dispersion -6.11069
+MUSETT_T0_DSSD_X5_E_Zero_Dispersion -8.48188
+MUSETT_T0_DSSD_X6_E_Zero_Dispersion -7.31025
+MUSETT_T0_DSSD_X7_E_Zero_Dispersion -5.53197
+MUSETT_T0_DSSD_X8_E_Zero_Dispersion -9.25746
+MUSETT_T0_DSSD_X9_E_Zero_Dispersion -8.30132
+MUSETT_T0_DSSD_X10_E_Zero_Dispersion -7.41508
+MUSETT_T0_DSSD_X11_E_Zero_Dispersion -6.10382
+MUSETT_T0_DSSD_X12_E_Zero_Dispersion -7.91969
+MUSETT_T0_DSSD_X13_E_Zero_Dispersion 49.9456
+MUSETT_T0_DSSD_X14_E_Zero_Dispersion -6.97607
+MUSETT_T0_DSSD_X15_E_Zero_Dispersion -10.1047
+MUSETT_T0_DSSD_X16_E_Zero_Dispersion -6.83215
+MUSETT_T0_DSSD_X17_E_Zero_Dispersion -8.73859
+MUSETT_T0_DSSD_X18_E_Zero_Dispersion -9.86747
+MUSETT_T0_DSSD_X19_E_Zero_Dispersion -7.73418
+MUSETT_T0_DSSD_X20_E_Zero_Dispersion -8.09245
+MUSETT_T0_DSSD_X21_E_Zero_Dispersion -6.92018
+MUSETT_T0_DSSD_X22_E_Zero_Dispersion -7.03661
+MUSETT_T0_DSSD_X23_E_Zero_Dispersion -9.47716
+MUSETT_T0_DSSD_X24_E_Zero_Dispersion -10.1866
+MUSETT_T0_DSSD_X25_E_Zero_Dispersion -7.16795
+MUSETT_T0_DSSD_X26_E_Zero_Dispersion -5.6114
+MUSETT_T0_DSSD_X27_E_Zero_Dispersion -7.5916
+MUSETT_T0_DSSD_X28_E_Zero_Dispersion -8.76414
+MUSETT_T0_DSSD_X29_E_Zero_Dispersion -4.90095
+MUSETT_T0_DSSD_X30_E_Zero_Dispersion -4.41223
+MUSETT_T0_DSSD_X31_E_Zero_Dispersion -5.04983
+MUSETT_T0_DSSD_X32_E_Zero_Dispersion -8.74888
+MUSETT_T0_DSSD_X33_E_Zero_Dispersion -9.02414
+MUSETT_T0_DSSD_X34_E_Zero_Dispersion -4.24547
+MUSETT_T0_DSSD_X35_E_Zero_Dispersion -6.11783
+MUSETT_T0_DSSD_X36_E_Zero_Dispersion -8.67274
+MUSETT_T0_DSSD_X37_E_Zero_Dispersion -5.55349
+MUSETT_T0_DSSD_X38_E_Zero_Dispersion -5.49848
+MUSETT_T0_DSSD_X39_E_Zero_Dispersion -6.55596
+MUSETT_T0_DSSD_X40_E_Zero_Dispersion -5.75522
+MUSETT_T0_DSSD_X41_E_Zero_Dispersion -10.0658
+MUSETT_T0_DSSD_X42_E_Zero_Dispersion -5.70397
+MUSETT_T0_DSSD_X43_E_Zero_Dispersion -6.46707
+MUSETT_T0_DSSD_X44_E_Zero_Dispersion -6.08433
+MUSETT_T0_DSSD_X45_E_Zero_Dispersion -6.67154
+MUSETT_T0_DSSD_X46_E_Zero_Dispersion -10.3332
+MUSETT_T0_DSSD_X47_E_Zero_Dispersion -6.79015
+MUSETT_T0_DSSD_X48_E_Zero_Dispersion -6.18417
+MUSETT_T0_DSSD_X49_E_Zero_Dispersion -8.85446
+MUSETT_T0_DSSD_X50_E_Zero_Dispersion -6.79964
+MUSETT_T0_DSSD_X51_E_Zero_Dispersion -6.34267
+MUSETT_T0_DSSD_X52_E_Zero_Dispersion -8.10679
+MUSETT_T0_DSSD_X53_E_Zero_Dispersion -11.3244
+MUSETT_T0_DSSD_X54_E_Zero_Dispersion -4.43412
+MUSETT_T0_DSSD_X55_E_Zero_Dispersion -12.1053
+MUSETT_T0_DSSD_X56_E_Zero_Dispersion -3.59209
+MUSETT_T0_DSSD_X57_E_Zero_Dispersion -2.93464
+MUSETT_T0_DSSD_X58_E_Zero_Dispersion -8.23944
+MUSETT_T0_DSSD_X59_E_Zero_Dispersion -6.68791
+MUSETT_T0_DSSD_X60_E_Zero_Dispersion -10.701
+MUSETT_T0_DSSD_X61_E_Zero_Dispersion -9.50467
+MUSETT_T0_DSSD_X62_E_Zero_Dispersion -9.75864
+MUSETT_T0_DSSD_X63_E_Zero_Dispersion -12.1268
+MUSETT_T0_DSSD_X64_E_Zero_Dispersion -5.98167
+MUSETT_T0_DSSD_X65_E_Zero_Dispersion -7.06478
+MUSETT_T0_DSSD_X66_E_Zero_Dispersion -8.11857
+MUSETT_T0_DSSD_X67_E_Zero_Dispersion -5.55447
+MUSETT_T0_DSSD_X68_E_Zero_Dispersion -4.99593
+MUSETT_T0_DSSD_X69_E_Zero_Dispersion -7.02027
+MUSETT_T0_DSSD_X70_E_Zero_Dispersion -8.83169
+MUSETT_T0_DSSD_X71_E_Zero_Dispersion -5.74392
+MUSETT_T0_DSSD_X72_E_Zero_Dispersion -6.31696
+MUSETT_T0_DSSD_X73_E_Zero_Dispersion -7.52914
+MUSETT_T0_DSSD_X74_E_Zero_Dispersion -7.43815
+MUSETT_T0_DSSD_X75_E_Zero_Dispersion -13.2719
+MUSETT_T0_DSSD_X76_E_Zero_Dispersion -4.73017
+MUSETT_T0_DSSD_X77_E_Zero_Dispersion -5.09789
+MUSETT_T0_DSSD_X78_E_Zero_Dispersion -4.76807
+MUSETT_T0_DSSD_X79_E_Zero_Dispersion -7.22795
+MUSETT_T0_DSSD_X80_E_Zero_Dispersion -17.1633
+MUSETT_T0_DSSD_X81_E_Zero_Dispersion -8.52399
+MUSETT_T0_DSSD_X82_E_Zero_Dispersion -9.67415
+MUSETT_T0_DSSD_X83_E_Zero_Dispersion -6.82375
+MUSETT_T0_DSSD_X84_E_Zero_Dispersion -10.7194
+MUSETT_T0_DSSD_X85_E_Zero_Dispersion -12.1529
+MUSETT_T0_DSSD_X86_E_Zero_Dispersion -8.48907
+MUSETT_T0_DSSD_X87_E_Zero_Dispersion -10.1272
+MUSETT_T0_DSSD_X88_E_Zero_Dispersion -11.3035
+MUSETT_T0_DSSD_X89_E_Zero_Dispersion -6.88179
+MUSETT_T0_DSSD_X90_E_Zero_Dispersion -7.64239
+MUSETT_T0_DSSD_X91_E_Zero_Dispersion -7.25621
+MUSETT_T0_DSSD_X92_E_Zero_Dispersion -9.90046
+MUSETT_T0_DSSD_X93_E_Zero_Dispersion -9.76531
+MUSETT_T0_DSSD_X94_E_Zero_Dispersion -9.94603
+MUSETT_T0_DSSD_X95_E_Zero_Dispersion -10.9835
+MUSETT_T0_DSSD_X96_E_Zero_Dispersion -11.4783
+MUSETT_T0_DSSD_X97_E_Zero_Dispersion -10.0747
+MUSETT_T0_DSSD_X98_E_Zero_Dispersion -5.29075
+MUSETT_T0_DSSD_X99_E_Zero_Dispersion -8.08608
+MUSETT_T0_DSSD_X100_E_Zero_Dispersion -8.17472
+MUSETT_T0_DSSD_X101_E_Zero_Dispersion -12.4671
+MUSETT_T0_DSSD_X102_E_Zero_Dispersion -9.76917
+MUSETT_T0_DSSD_X103_E_Zero_Dispersion -11.9265
+MUSETT_T0_DSSD_X104_E_Zero_Dispersion -5.00413
+MUSETT_T0_DSSD_X105_E_Zero_Dispersion -8.06976
+MUSETT_T0_DSSD_X106_E_Zero_Dispersion -8.81165
+MUSETT_T0_DSSD_X107_E_Zero_Dispersion -7.18314
+MUSETT_T0_DSSD_X108_E_Zero_Dispersion -8.03071
+MUSETT_T0_DSSD_X109_E_Zero_Dispersion -6.61411
+MUSETT_T0_DSSD_X110_E_Zero_Dispersion -6.2023
+MUSETT_T0_DSSD_X111_E_Zero_Dispersion -8.92192
+MUSETT_T0_DSSD_X112_E_Zero_Dispersion -7.70585
+MUSETT_T0_DSSD_X113_E_Zero_Dispersion -13.9267
+MUSETT_T0_DSSD_X114_E_Zero_Dispersion -5.41344
+MUSETT_T0_DSSD_X115_E_Zero_Dispersion -6.16773
+MUSETT_T0_DSSD_X116_E_Zero_Dispersion -9.27551
+MUSETT_T0_DSSD_X117_E_Zero_Dispersion -8.58972
+MUSETT_T0_DSSD_X118_E_Zero_Dispersion -10.599
+MUSETT_T0_DSSD_X119_E_Zero_Dispersion -9.81363
+MUSETT_T0_DSSD_X120_E_Zero_Dispersion -7.37254
+MUSETT_T0_DSSD_X121_E_Zero_Dispersion -11.2188
+MUSETT_T0_DSSD_X122_E_Zero_Dispersion -10.4584
+MUSETT_T0_DSSD_X123_E_Zero_Dispersion -6.05833
+MUSETT_T0_DSSD_X124_E_Zero_Dispersion -13.2832
+MUSETT_T0_DSSD_X125_E_Zero_Dispersion -11.5256
+MUSETT_T0_DSSD_X126_E_Zero_Dispersion -6.70314
+MUSETT_T0_DSSD_X127_E_Zero_Dispersion -10.7178
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/latex/double_alpha_run_0274_Y_MM0_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/latex/double_alpha_run_0274_Y_MM0_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..7431b47b293f2b279d97bbb808af6f4a2eb0c1b4
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/latex/double_alpha_run_0274_Y_MM0_E.tex
@@ -0,0 +1,62 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  0
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 0 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+0 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+13 &  zero extrapolation too high:49.9456channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM0_E/latex/pictures/Telescope0Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.10006
+
+Sigma fit sigma: 0.178421
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/peaks/Cal_Str_Y_E_MM0.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/peaks/Cal_Str_Y_E_MM0.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b0b0dae0ad5a4dcfd2658fe9202440da49d36dbd
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_E 59.5713 -0.00727366
+MUSETT_T1_DSSD_Y1_E 60.1008 -0.00733351
+MUSETT_T1_DSSD_Y2_E 59.5524 -0.00726963
+MUSETT_T1_DSSD_Y3_E 59.1431 -0.00721903
+MUSETT_T1_DSSD_Y4_E 59.9251 -0.00731315
+MUSETT_T1_DSSD_Y5_E 60.0201 -0.00732852
+MUSETT_T1_DSSD_Y6_E 59.289 -0.00723845
+MUSETT_T1_DSSD_Y7_E 59.4021 -0.007252
+MUSETT_T1_DSSD_Y8_E 59.3992 -0.00725239
+MUSETT_T1_DSSD_Y9_E 59.5263 -0.00726694
+MUSETT_T1_DSSD_Y10_E 59.2864 -0.00723601
+MUSETT_T1_DSSD_Y11_E 59.4514 -0.00725811
+MUSETT_T1_DSSD_Y12_E 60.0312 -0.00732756
+MUSETT_T1_DSSD_Y13_E 59.2537 -0.00723424
+MUSETT_T1_DSSD_Y14_E 59.3893 -0.00725095
+MUSETT_T1_DSSD_Y15_E 59.7658 -0.0072936
+MUSETT_T1_DSSD_Y16_E 62.2769 -0.00760174
+MUSETT_T1_DSSD_Y17_E 62.117 -0.00757965
+MUSETT_T1_DSSD_Y18_E 62.072 -0.00757377
+MUSETT_T1_DSSD_Y19_E 61.9724 -0.00756654
+MUSETT_T1_DSSD_Y20_E 62.0118 -0.00756272
+MUSETT_T1_DSSD_Y21_E 62.1497 -0.00758453
+MUSETT_T1_DSSD_Y22_E 6.82575 -0.844837
+MUSETT_T1_DSSD_Y23_E 61.6857 -0.00752703
+MUSETT_T1_DSSD_Y24_E 61.3481 -0.0074851
+MUSETT_T1_DSSD_Y25_E 61.369 -0.0074932
+MUSETT_T1_DSSD_Y26_E 62.0024 -0.00756996
+MUSETT_T1_DSSD_Y27_E 61.921 -0.00755903
+MUSETT_T1_DSSD_Y28_E 62.0404 -0.00757219
+MUSETT_T1_DSSD_Y29_E 61.9073 -0.00755709
+MUSETT_T1_DSSD_Y30_E 61.3619 -0.00748814
+MUSETT_T1_DSSD_Y31_E 61.3944 -0.00749024
+MUSETT_T1_DSSD_Y32_E 55.862 -0.0068178
+MUSETT_T1_DSSD_Y33_E 56.1905 -0.00686073
+MUSETT_T1_DSSD_Y34_E 55.4752 -0.00677191
+MUSETT_T1_DSSD_Y35_E 55.4395 -0.00676548
+MUSETT_T1_DSSD_Y36_E 55.1726 -0.00673431
+MUSETT_T1_DSSD_Y37_E 56.143 -0.00685196
+MUSETT_T1_DSSD_Y38_E 55.1566 -0.00673131
+MUSETT_T1_DSSD_Y39_E 55.718 -0.00680006
+MUSETT_T1_DSSD_Y40_E 56.1499 -0.00685882
+MUSETT_T1_DSSD_Y41_E 55.8773 -0.00681981
+MUSETT_T1_DSSD_Y42_E 55.2904 -0.00674786
+MUSETT_T1_DSSD_Y43_E 56.4892 -0.00689618
+MUSETT_T1_DSSD_Y44_E 55.4436 -0.00676674
+MUSETT_T1_DSSD_Y45_E 55.639 -0.00679338
+MUSETT_T1_DSSD_Y46_E 55.5529 -0.00677944
+MUSETT_T1_DSSD_Y47_E 55.484 -0.00677176
+MUSETT_T1_DSSD_Y48_E 56.9644 -0.00695219
+MUSETT_T1_DSSD_Y49_E 56.285 -0.00686719
+MUSETT_T1_DSSD_Y50_E 56.1211 -0.00684591
+MUSETT_T1_DSSD_Y51_E 55.6085 -0.00678336
+MUSETT_T1_DSSD_Y52_E 56.6749 -0.00691731
+MUSETT_T1_DSSD_Y53_E 55.8722 -0.00681439
+MUSETT_T1_DSSD_Y54_E 56.1028 -0.00684409
+MUSETT_T1_DSSD_Y55_E 56.0397 -0.00683656
+MUSETT_T1_DSSD_Y56_E 56.9231 -0.00694547
+MUSETT_T1_DSSD_Y57_E 56.8501 -0.00693858
+MUSETT_T1_DSSD_Y58_E 56.2203 -0.00685803
+MUSETT_T1_DSSD_Y59_E 57.1097 -0.00697017
+MUSETT_T1_DSSD_Y60_E 57.2955 -0.00699211
+MUSETT_T1_DSSD_Y61_E 56.5987 -0.00690325
+MUSETT_T1_DSSD_Y62_E 56.0145 -0.00683747
+MUSETT_T1_DSSD_Y63_E 57.1694 -0.00697746
+MUSETT_T1_DSSD_Y64_E 60.8531 -0.00742731
+MUSETT_T1_DSSD_Y65_E 61.2035 -0.00746692
+MUSETT_T1_DSSD_Y66_E 61.1281 -0.00746104
+MUSETT_T1_DSSD_Y67_E 61.3924 -0.00749318
+MUSETT_T1_DSSD_Y68_E 61.0537 -0.00745178
+MUSETT_T1_DSSD_Y69_E 59.7484 -0.0072913
+MUSETT_T1_DSSD_Y70_E 60.1721 -0.00734278
+MUSETT_T1_DSSD_Y71_E 60.9846 -0.00744362
+MUSETT_T1_DSSD_Y72_E 60.1471 -0.00734103
+MUSETT_T1_DSSD_Y73_E 61.0101 -0.00744673
+MUSETT_T1_DSSD_Y74_E 60.715 -0.00741063
+MUSETT_T1_DSSD_Y75_E 60.1824 -0.00734473
+MUSETT_T1_DSSD_Y76_E 60.5111 -0.00738908
+MUSETT_T1_DSSD_Y77_E 60.8614 -0.00743023
+MUSETT_T1_DSSD_Y78_E 60.4805 -0.00738223
+MUSETT_T1_DSSD_Y79_E 61.2051 -0.00747177
+MUSETT_T1_DSSD_Y80_E 60.9209 -0.00743493
+MUSETT_T1_DSSD_Y81_E 60.7358 -0.00741074
+MUSETT_T1_DSSD_Y82_E 60.8 -0.00741892
+MUSETT_T1_DSSD_Y83_E 60.4562 -0.00738112
+MUSETT_T1_DSSD_Y84_E 60.1521 -0.00734031
+MUSETT_T1_DSSD_Y85_E 61.1671 -0.00746593
+MUSETT_T1_DSSD_Y86_E 60.6634 -0.00740806
+MUSETT_T1_DSSD_Y87_E 60.3342 -0.00736062
+MUSETT_T1_DSSD_Y88_E 60.8086 -0.00742136
+MUSETT_T1_DSSD_Y89_E 61.0582 -0.00745181
+MUSETT_T1_DSSD_Y90_E 60.4628 -0.0073781
+MUSETT_T1_DSSD_Y91_E 60.5439 -0.00738751
+MUSETT_T1_DSSD_Y92_E 60.173 -0.00734265
+MUSETT_T1_DSSD_Y93_E 61.2089 -0.00746997
+MUSETT_T1_DSSD_Y94_E 61.1999 -0.00746579
+MUSETT_T1_DSSD_Y95_E 60.5711 -0.00739332
+MUSETT_T1_DSSD_Y96_E 55.7695 -0.00680856
+MUSETT_T1_DSSD_Y97_E 55.239 -0.00674105
+MUSETT_T1_DSSD_Y98_E 55.7487 -0.0068081
+MUSETT_T1_DSSD_Y99_E 55.5363 -0.00678092
+MUSETT_T1_DSSD_Y100_E 55.7637 -0.00680698
+MUSETT_T1_DSSD_Y101_E 55.3921 -0.00676203
+MUSETT_T1_DSSD_Y102_E 55.4885 -0.00677566
+MUSETT_T1_DSSD_Y103_E 56.1288 -0.0068526
+MUSETT_T1_DSSD_Y104_E 55.0197 -0.00671458
+MUSETT_T1_DSSD_Y105_E 55.0473 -0.00671677
+MUSETT_T1_DSSD_Y106_E 55.8463 -0.00681955
+MUSETT_T1_DSSD_Y107_E 55.1768 -0.00673729
+MUSETT_T1_DSSD_Y108_E 55.6608 -0.00679222
+MUSETT_T1_DSSD_Y109_E 55.8837 -0.00682082
+MUSETT_T1_DSSD_Y110_E 56.0661 -0.00684396
+MUSETT_T1_DSSD_Y111_E 56.5742 -0.00690789
+MUSETT_T1_DSSD_Y112_E 54.6562 -0.00667282
+MUSETT_T1_DSSD_Y113_E 55.323 -0.00675101
+MUSETT_T1_DSSD_Y114_E 54.9651 -0.00670899
+MUSETT_T1_DSSD_Y115_E 55.0097 -0.00671473
+MUSETT_T1_DSSD_Y116_E 55.0182 -0.00671428
+MUSETT_T1_DSSD_Y117_E 55.2189 -0.00673988
+MUSETT_T1_DSSD_Y118_E 55.0491 -0.00671853
+MUSETT_T1_DSSD_Y119_E 55.547 -0.00677839
+MUSETT_T1_DSSD_Y120_E 55.6261 -0.00679154
+MUSETT_T1_DSSD_Y121_E 55.3517 -0.00675826
+MUSETT_T1_DSSD_Y122_E 54.6662 -0.00667402
+MUSETT_T1_DSSD_Y123_E 55.1066 -0.0067295
+MUSETT_T1_DSSD_Y124_E 55.106 -0.00672715
+MUSETT_T1_DSSD_Y125_E 55.0026 -0.00671395
+MUSETT_T1_DSSD_Y126_E 55.1727 -0.00673426
+MUSETT_T1_DSSD_Y127_E 56.0969 -0.0068486
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..cde968dc417489c3337516e28938fc54e9c535b4
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E_Zero_Dispersion 1.99155
+MUSETT_T1_DSSD_X1_E_Zero_Dispersion -3.36744
+MUSETT_T1_DSSD_X2_E_Zero_Dispersion 0.0532965
+MUSETT_T1_DSSD_X3_E_Zero_Dispersion -0.670512
+MUSETT_T1_DSSD_X4_E_Zero_Dispersion -2.15656
+MUSETT_T1_DSSD_X5_E_Zero_Dispersion 2.06015
+MUSETT_T1_DSSD_X6_E_Zero_Dispersion 1.15907
+MUSETT_T1_DSSD_X7_E_Zero_Dispersion 0.856124
+MUSETT_T1_DSSD_X8_E_Zero_Dispersion 1.70508
+MUSETT_T1_DSSD_X9_E_Zero_Dispersion 0.617081
+MUSETT_T1_DSSD_X10_E_Zero_Dispersion -1.24746
+MUSETT_T1_DSSD_X11_E_Zero_Dispersion 0.974372
+MUSETT_T1_DSSD_X12_E_Zero_Dispersion -0.523207
+MUSETT_T1_DSSD_X13_E_Zero_Dispersion 1.26217
+MUSETT_T1_DSSD_X14_E_Zero_Dispersion 1.45131
+MUSETT_T1_DSSD_X15_E_Zero_Dispersion -2.28
+MUSETT_T1_DSSD_X16_E_Zero_Dispersion -0.445466
+MUSETT_T1_DSSD_X17_E_Zero_Dispersion -3.22932
+MUSETT_T1_DSSD_X18_E_Zero_Dispersion -3.65555
+MUSETT_T1_DSSD_X19_E_Zero_Dispersion 1.68167
+MUSETT_T1_DSSD_X20_E_Zero_Dispersion -7.67168
+MUSETT_T1_DSSD_X21_E_Zero_Dispersion -2.26369
+MUSETT_T1_DSSD_X22_E_Zero_Dispersion 8183.92
+MUSETT_T1_DSSD_X23_E_Zero_Dispersion -3.22536
+MUSETT_T1_DSSD_X24_E_Zero_Dispersion -4.02648
+MUSETT_T1_DSSD_X25_E_Zero_Dispersion 2.03906
+MUSETT_T1_DSSD_X26_E_Zero_Dispersion 1.41268
+MUSETT_T1_DSSD_X27_E_Zero_Dispersion 0.34993
+MUSETT_T1_DSSD_X28_E_Zero_Dispersion -1.19268
+MUSETT_T1_DSSD_X29_E_Zero_Dispersion 0.0528127
+MUSETT_T1_DSSD_X30_E_Zero_Dispersion -2.53391
+MUSETT_T1_DSSD_X31_E_Zero_Dispersion -4.59477
+MUSETT_T1_DSSD_X32_E_Zero_Dispersion -1.55375
+MUSETT_T1_DSSD_X33_E_Zero_Dispersion 1.83181
+MUSETT_T1_DSSD_X34_E_Zero_Dispersion 0.0380421
+MUSETT_T1_DSSD_X35_E_Zero_Dispersion -2.47029
+MUSETT_T1_DSSD_X36_E_Zero_Dispersion -0.760245
+MUSETT_T1_DSSD_X37_E_Zero_Dispersion -1.70397
+MUSETT_T1_DSSD_X38_E_Zero_Dispersion -2.04435
+MUSETT_T1_DSSD_X39_E_Zero_Dispersion -1.75536
+MUSETT_T1_DSSD_X40_E_Zero_Dispersion 5.47503
+MUSETT_T1_DSSD_X41_E_Zero_Dispersion -1.38296
+MUSETT_T1_DSSD_X42_E_Zero_Dispersion -1.76707
+MUSETT_T1_DSSD_X43_E_Zero_Dispersion 0.635043
+MUSETT_T1_DSSD_X44_E_Zero_Dispersion -1.5517
+MUSETT_T1_DSSD_X45_E_Zero_Dispersion 1.82123
+MUSETT_T1_DSSD_X46_E_Zero_Dispersion -2.32144
+MUSETT_T1_DSSD_X47_E_Zero_Dispersion -1.44783
+MUSETT_T1_DSSD_X48_E_Zero_Dispersion -1.74129
+MUSETT_T1_DSSD_X49_E_Zero_Dispersion -4.22587
+MUSETT_T1_DSSD_X50_E_Zero_Dispersion -5.75529
+MUSETT_T1_DSSD_X51_E_Zero_Dispersion -5.79249
+MUSETT_T1_DSSD_X52_E_Zero_Dispersion -1.1894
+MUSETT_T1_DSSD_X53_E_Zero_Dispersion -7.15251
+MUSETT_T1_DSSD_X54_E_Zero_Dispersion -5.26423
+MUSETT_T1_DSSD_X55_E_Zero_Dispersion -5.06334
+MUSETT_T1_DSSD_X56_E_Zero_Dispersion -3.72446
+MUSETT_T1_DSSD_X57_E_Zero_Dispersion -1.33524
+MUSETT_T1_DSSD_X58_E_Zero_Dispersion -5.7377
+MUSETT_T1_DSSD_X59_E_Zero_Dispersion -1.44175
+MUSETT_T1_DSSD_X60_E_Zero_Dispersion -2.31319
+MUSETT_T1_DSSD_X61_E_Zero_Dispersion -6.84675
+MUSETT_T1_DSSD_X62_E_Zero_Dispersion -0.288522
+MUSETT_T1_DSSD_X63_E_Zero_Dispersion -1.4453
+MUSETT_T1_DSSD_X64_E_Zero_Dispersion -1.14669
+MUSETT_T1_DSSD_X65_E_Zero_Dispersion -4.61755
+MUSETT_T1_DSSD_X66_E_Zero_Dispersion -0.976242
+MUSETT_T1_DSSD_X67_E_Zero_Dispersion -1.10734
+MUSETT_T1_DSSD_X68_E_Zero_Dispersion -1.16978
+MUSETT_T1_DSSD_X69_E_Zero_Dispersion -2.47694
+MUSETT_T1_DSSD_X70_E_Zero_Dispersion -2.72998
+MUSETT_T1_DSSD_X71_E_Zero_Dispersion -0.877548
+MUSETT_T1_DSSD_X72_E_Zero_Dispersion -1.27685
+MUSETT_T1_DSSD_X73_E_Zero_Dispersion -0.870154
+MUSETT_T1_DSSD_X74_E_Zero_Dispersion -0.971537
+MUSETT_T1_DSSD_X75_E_Zero_Dispersion -1.95811
+MUSETT_T1_DSSD_X76_E_Zero_Dispersion 2.72883
+MUSETT_T1_DSSD_X77_E_Zero_Dispersion 0.949706
+MUSETT_T1_DSSD_X78_E_Zero_Dispersion -0.718313
+MUSETT_T1_DSSD_X79_E_Zero_Dispersion 0.487229
+MUSETT_T1_DSSD_X80_E_Zero_Dispersion -1.87203
+MUSETT_T1_DSSD_X81_E_Zero_Dispersion -3.64332
+MUSETT_T1_DSSD_X82_E_Zero_Dispersion -3.25926
+MUSETT_T1_DSSD_X83_E_Zero_Dispersion 1.34689
+MUSETT_T1_DSSD_X84_E_Zero_Dispersion -2.76229
+MUSETT_T1_DSSD_X85_E_Zero_Dispersion -0.820758
+MUSETT_T1_DSSD_X86_E_Zero_Dispersion 3.15827
+MUSETT_T1_DSSD_X87_E_Zero_Dispersion -4.89819
+MUSETT_T1_DSSD_X88_E_Zero_Dispersion -1.72898
+MUSETT_T1_DSSD_X89_E_Zero_Dispersion -1.73753
+MUSETT_T1_DSSD_X90_E_Zero_Dispersion -2.90363
+MUSETT_T1_DSSD_X91_E_Zero_Dispersion -3.4417
+MUSETT_T1_DSSD_X92_E_Zero_Dispersion -2.99842
+MUSETT_T1_DSSD_X93_E_Zero_Dispersion -1.99586
+MUSETT_T1_DSSD_X94_E_Zero_Dispersion -5.37291
+MUSETT_T1_DSSD_X95_E_Zero_Dispersion -0.680694
+MUSETT_T1_DSSD_X96_E_Zero_Dispersion 0.917666
+MUSETT_T1_DSSD_X97_E_Zero_Dispersion -2.42032
+MUSETT_T1_DSSD_X98_E_Zero_Dispersion 3.42181
+MUSETT_T1_DSSD_X99_E_Zero_Dispersion 1.9192
+MUSETT_T1_DSSD_X100_E_Zero_Dispersion -0.131786
+MUSETT_T1_DSSD_X101_E_Zero_Dispersion 0.365438
+MUSETT_T1_DSSD_X102_E_Zero_Dispersion 2.6059
+MUSETT_T1_DSSD_X103_E_Zero_Dispersion 1.11622
+MUSETT_T1_DSSD_X104_E_Zero_Dispersion -2.06555
+MUSETT_T1_DSSD_X105_E_Zero_Dispersion -3.4939
+MUSETT_T1_DSSD_X106_E_Zero_Dispersion 2.85683
+MUSETT_T1_DSSD_X107_E_Zero_Dispersion 2.2385
+MUSETT_T1_DSSD_X108_E_Zero_Dispersion -2.77996
+MUSETT_T1_DSSD_X109_E_Zero_Dispersion -1.11409
+MUSETT_T1_DSSD_X110_E_Zero_Dispersion -0.0559515
+MUSETT_T1_DSSD_X111_E_Zero_Dispersion 2.19809
+MUSETT_T1_DSSD_X112_E_Zero_Dispersion 1.1396
+MUSETT_T1_DSSD_X113_E_Zero_Dispersion -2.7754
+MUSETT_T1_DSSD_X114_E_Zero_Dispersion -0.753716
+MUSETT_T1_DSSD_X115_E_Zero_Dispersion -0.402319
+MUSETT_T1_DSSD_X116_E_Zero_Dispersion -2.20761
+MUSETT_T1_DSSD_X117_E_Zero_Dispersion -0.864114
+MUSETT_T1_DSSD_X118_E_Zero_Dispersion -1.62397
+MUSETT_T1_DSSD_X119_E_Zero_Dispersion -2.71892
+MUSETT_T1_DSSD_X120_E_Zero_Dispersion 1.49164
+MUSETT_T1_DSSD_X121_E_Zero_Dispersion 1.75966
+MUSETT_T1_DSSD_X122_E_Zero_Dispersion 1.11113
+MUSETT_T1_DSSD_X123_E_Zero_Dispersion 3.18743
+MUSETT_T1_DSSD_X124_E_Zero_Dispersion 0.422646
+MUSETT_T1_DSSD_X125_E_Zero_Dispersion -0.292593
+MUSETT_T1_DSSD_X126_E_Zero_Dispersion -0.836667
+MUSETT_T1_DSSD_X127_E_Zero_Dispersion 0.996941
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/latex/double_alpha_run_0274_Y_MM1_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/latex/double_alpha_run_0274_Y_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..649f1f152426bccf5d14303f65883cc30694cfd2
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/latex/double_alpha_run_0274_Y_MM1_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+22 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.33191
+
+Sigma fit sigma: 0.487957
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c8baaab11e0e8a21433926ecac9ae88c9197f13b
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_E 62.9053 -0.0076766
+MUSETT_T2_DSSD_Y1_E 63.6771 -0.00777088
+MUSETT_T2_DSSD_Y2_E 62.331 -0.00760718
+MUSETT_T2_DSSD_Y3_E 63.2578 -0.00772102
+MUSETT_T2_DSSD_Y4_E 62.7132 -0.00765406
+MUSETT_T2_DSSD_Y5_E 62.5292 -0.00763228
+MUSETT_T2_DSSD_Y6_E 62.8143 -0.00766532
+MUSETT_T2_DSSD_Y7_E 62.3329 -0.00760504
+MUSETT_T2_DSSD_Y8_E 62.4752 -0.00762288
+MUSETT_T2_DSSD_Y9_E 63.2006 -0.00771317
+MUSETT_T2_DSSD_Y10_E 62.6927 -0.00764988
+MUSETT_T2_DSSD_Y11_E 62.3066 -0.00760391
+MUSETT_T2_DSSD_Y12_E 61.8667 -0.00755085
+MUSETT_T2_DSSD_Y13_E 62.5037 -0.00762743
+MUSETT_T2_DSSD_Y14_E 62.7099 -0.00765226
+MUSETT_T2_DSSD_Y15_E 63.2095 -0.00771415
+MUSETT_T2_DSSD_Y16_E 61.1316 -0.00745457
+MUSETT_T2_DSSD_Y17_E 60.4523 -0.0073738
+MUSETT_T2_DSSD_Y18_E 60.4246 -0.00737171
+MUSETT_T2_DSSD_Y19_E 61.8438 -0.00754775
+MUSETT_T2_DSSD_Y20_E 60.7912 -0.00741418
+MUSETT_T2_DSSD_Y21_E 60.568 -0.00738896
+MUSETT_T2_DSSD_Y22_E 62.104 -0.00758231
+MUSETT_T2_DSSD_Y23_E 60.6819 -0.0074026
+MUSETT_T2_DSSD_Y24_E 60.7567 -0.00741337
+MUSETT_T2_DSSD_Y25_E 61.2726 -0.00747614
+MUSETT_T2_DSSD_Y26_E 61.018 -0.007449
+MUSETT_T2_DSSD_Y27_E 61.0798 -0.00745285
+MUSETT_T2_DSSD_Y28_E 61.4819 -0.00750524
+MUSETT_T2_DSSD_Y29_E 61.0725 -0.00745017
+MUSETT_T2_DSSD_Y30_E 61.0692 -0.00745178
+MUSETT_T2_DSSD_Y31_E 61.4178 -0.00749438
+MUSETT_T2_DSSD_Y32_E 56.1768 -0.00685736
+MUSETT_T2_DSSD_Y33_E 56.1338 -0.00684851
+MUSETT_T2_DSSD_Y34_E 56.6319 -0.00691225
+MUSETT_T2_DSSD_Y35_E 56.4588 -0.00688948
+MUSETT_T2_DSSD_Y36_E 56.8551 -0.00694108
+MUSETT_T2_DSSD_Y37_E 56.7297 -0.00692354
+MUSETT_T2_DSSD_Y38_E 56.5669 -0.00690904
+MUSETT_T2_DSSD_Y39_E 56.2353 -0.00686434
+MUSETT_T2_DSSD_Y40_E 56.0605 -0.00683605
+MUSETT_T2_DSSD_Y41_E 57.8921 -0.00706581
+MUSETT_T2_DSSD_Y42_E 56.8378 -0.00694167
+MUSETT_T2_DSSD_Y43_E 56.1668 -0.00685633
+MUSETT_T2_DSSD_Y44_E 57.1736 -0.00697438
+MUSETT_T2_DSSD_Y45_E 57.1146 -0.00697004
+MUSETT_T2_DSSD_Y46_E 57.0347 -0.00696503
+MUSETT_T2_DSSD_Y47_E 56.6995 -0.00692395
+MUSETT_T2_DSSD_Y48_E 57.6463 -0.00703935
+MUSETT_T2_DSSD_Y49_E 56.8816 -0.00694221
+MUSETT_T2_DSSD_Y50_E 57.6197 -0.007027
+MUSETT_T2_DSSD_Y51_E 57.0982 -0.00696628
+MUSETT_T2_DSSD_Y52_E 57.0607 -0.0069611
+MUSETT_T2_DSSD_Y53_E 58.2938 -0.00711296
+MUSETT_T2_DSSD_Y54_E 57.3536 -0.00699681
+MUSETT_T2_DSSD_Y55_E 57.7002 -0.0070433
+MUSETT_T2_DSSD_Y56_E 57.6913 -0.0070446
+MUSETT_T2_DSSD_Y57_E 57.4625 -0.00701406
+MUSETT_T2_DSSD_Y58_E 57.5339 -0.00702592
+MUSETT_T2_DSSD_Y59_E 58.1037 -0.00709062
+MUSETT_T2_DSSD_Y60_E 57.6517 -0.00703636
+MUSETT_T2_DSSD_Y61_E 57.2738 -0.00699268
+MUSETT_T2_DSSD_Y62_E 57.5479 -0.00702183
+MUSETT_T2_DSSD_Y63_E 57.9209 -0.0070673
+MUSETT_T2_DSSD_Y64_E 59.3445 -0.00724661
+MUSETT_T2_DSSD_Y65_E 59.1152 -0.00720968
+MUSETT_T2_DSSD_Y66_E 59.3455 -0.00724365
+MUSETT_T2_DSSD_Y67_E 60.3675 -0.00736968
+MUSETT_T2_DSSD_Y68_E 59.4674 -0.00725991
+MUSETT_T2_DSSD_Y69_E 59.7805 -0.00729818
+MUSETT_T2_DSSD_Y70_E 59.407 -0.0072506
+MUSETT_T2_DSSD_Y71_E 59.8303 -0.00730098
+MUSETT_T2_DSSD_Y72_E 59.6133 -0.00727175
+MUSETT_T2_DSSD_Y73_E 59.4611 -0.00725939
+MUSETT_T2_DSSD_Y74_E 59.819 -0.00730197
+MUSETT_T2_DSSD_Y75_E 59.9389 -0.00731478
+MUSETT_T2_DSSD_Y76_E 59.2682 -0.00723539
+MUSETT_T2_DSSD_Y77_E 59.7239 -0.00728809
+MUSETT_T2_DSSD_Y78_E 59.2572 -0.0072339
+MUSETT_T2_DSSD_Y79_E 59.9111 -0.00731045
+MUSETT_T2_DSSD_Y80_E 60.372 -0.00736937
+MUSETT_T2_DSSD_Y81_E 60.9866 -0.00744401
+MUSETT_T2_DSSD_Y82_E 60.3006 -0.00735778
+MUSETT_T2_DSSD_Y83_E 61.091 -0.00745649
+MUSETT_T2_DSSD_Y84_E 61.1408 -0.0074625
+MUSETT_T2_DSSD_Y85_E 60.6215 -0.00739872
+MUSETT_T2_DSSD_Y86_E 60.8191 -0.00742516
+MUSETT_T2_DSSD_Y87_E 61.2005 -0.00747154
+MUSETT_T2_DSSD_Y88_E 60.6151 -0.00739683
+MUSETT_T2_DSSD_Y89_E 60.6023 -0.00739569
+MUSETT_T2_DSSD_Y90_E 61.294 -0.00748233
+MUSETT_T2_DSSD_Y91_E 60.3249 -0.00736066
+MUSETT_T2_DSSD_Y92_E 60.7802 -0.00741634
+MUSETT_T2_DSSD_Y93_E 60.5912 -0.0073986
+MUSETT_T2_DSSD_Y94_E 61.0494 -0.0074543
+MUSETT_T2_DSSD_Y95_E 61.2259 -0.0074723
+MUSETT_T2_DSSD_Y96_E 56.767 -0.00692993
+MUSETT_T2_DSSD_Y97_E 55.8842 -0.00682215
+MUSETT_T2_DSSD_Y98_E 55.9948 -0.00683354
+MUSETT_T2_DSSD_Y99_E 56.5032 -0.00689574
+MUSETT_T2_DSSD_Y100_E 56.2013 -0.00685846
+MUSETT_T2_DSSD_Y101_E 56.6875 -0.00692035
+MUSETT_T2_DSSD_Y102_E 55.8833 -0.00682028
+MUSETT_T2_DSSD_Y103_E 56.9716 -0.00695232
+MUSETT_T2_DSSD_Y104_E 55.9808 -0.0068345
+MUSETT_T2_DSSD_Y105_E 56.3951 -0.00688072
+MUSETT_T2_DSSD_Y106_E 56.523 -0.00690076
+MUSETT_T2_DSSD_Y107_E 57.3852 -0.00700542
+MUSETT_T2_DSSD_Y108_E 56.8841 -0.006943
+MUSETT_T2_DSSD_Y109_E 56.4088 -0.00688278
+MUSETT_T2_DSSD_Y110_E 56.9256 -0.00694942
+MUSETT_T2_DSSD_Y111_E 56.0116 -0.00683751
+MUSETT_T2_DSSD_Y112_E 56.3369 -0.00687712
+MUSETT_T2_DSSD_Y113_E 57.2396 -0.00698874
+MUSETT_T2_DSSD_Y114_E 56.4917 -0.00689683
+MUSETT_T2_DSSD_Y115_E 56.6869 -0.00691913
+MUSETT_T2_DSSD_Y116_E 56.2888 -0.00687008
+MUSETT_T2_DSSD_Y117_E 56.3479 -0.00687777
+MUSETT_T2_DSSD_Y118_E 56.6964 -0.00692013
+MUSETT_T2_DSSD_Y119_E 56.5915 -0.00690786
+MUSETT_T2_DSSD_Y120_E 56.0884 -0.00684535
+MUSETT_T2_DSSD_Y121_E 56.9015 -0.00694589
+MUSETT_T2_DSSD_Y122_E 57.3743 -0.0070056
+MUSETT_T2_DSSD_Y123_E 6.82575 -0.844837
+MUSETT_T2_DSSD_Y124_E 56.0464 -0.00684178
+MUSETT_T2_DSSD_Y125_E 56.9017 -0.00694728
+MUSETT_T2_DSSD_Y126_E 56.2566 -0.006867
+MUSETT_T2_DSSD_Y127_E 56.0062 -0.00683531
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..d72fa5b9cad0904a8c51ed68141de2514ad9b58e
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E_Zero_Dispersion -2.42348
+MUSETT_T2_DSSD_X1_E_Zero_Dispersion -2.32565
+MUSETT_T2_DSSD_X2_E_Zero_Dispersion -1.70954
+MUSETT_T2_DSSD_X3_E_Zero_Dispersion -0.93988
+MUSETT_T2_DSSD_X4_E_Zero_Dispersion -1.4585
+MUSETT_T2_DSSD_X5_E_Zero_Dispersion -0.728393
+MUSETT_T2_DSSD_X6_E_Zero_Dispersion -2.61116
+MUSETT_T2_DSSD_X7_E_Zero_Dispersion -4.26056
+MUSETT_T2_DSSD_X8_E_Zero_Dispersion -3.7517
+MUSETT_T2_DSSD_X9_E_Zero_Dispersion -1.85143
+MUSETT_T2_DSSD_X10_E_Zero_Dispersion -3.24938
+MUSETT_T2_DSSD_X11_E_Zero_Dispersion -2.01508
+MUSETT_T2_DSSD_X12_E_Zero_Dispersion -1.33746
+MUSETT_T2_DSSD_X13_E_Zero_Dispersion -2.5894
+MUSETT_T2_DSSD_X14_E_Zero_Dispersion -2.94817
+MUSETT_T2_DSSD_X15_E_Zero_Dispersion -1.96166
+MUSETT_T2_DSSD_X16_E_Zero_Dispersion -8.56126
+MUSETT_T2_DSSD_X17_E_Zero_Dispersion -6.25371
+MUSETT_T2_DSSD_X18_E_Zero_Dispersion -4.81945
+MUSETT_T2_DSSD_X19_E_Zero_Dispersion -1.67631
+MUSETT_T2_DSSD_X20_E_Zero_Dispersion -7.31559
+MUSETT_T2_DSSD_X21_E_Zero_Dispersion -5.09282
+MUSETT_T2_DSSD_X22_E_Zero_Dispersion 1.35023
+MUSETT_T2_DSSD_X23_E_Zero_Dispersion -5.38096
+MUSETT_T2_DSSD_X24_E_Zero_Dispersion -3.55712
+MUSETT_T2_DSSD_X25_E_Zero_Dispersion -3.75293
+MUSETT_T2_DSSD_X26_E_Zero_Dispersion 0.56756
+MUSETT_T2_DSSD_X27_E_Zero_Dispersion -3.50174
+MUSETT_T2_DSSD_X28_E_Zero_Dispersion 0.133472
+MUSETT_T2_DSSD_X29_E_Zero_Dispersion -5.4653
+MUSETT_T2_DSSD_X30_E_Zero_Dispersion -3.25333
+MUSETT_T2_DSSD_X31_E_Zero_Dispersion -3.17121
+MUSETT_T2_DSSD_X32_E_Zero_Dispersion -0.196339
+MUSETT_T2_DSSD_X33_E_Zero_Dispersion -4.4941
+MUSETT_T2_DSSD_X34_E_Zero_Dispersion -0.967098
+MUSETT_T2_DSSD_X35_E_Zero_Dispersion -2.92968
+MUSETT_T2_DSSD_X36_E_Zero_Dispersion 0.898504
+MUSETT_T2_DSSD_X37_E_Zero_Dispersion -1.74236
+MUSETT_T2_DSSD_X38_E_Zero_Dispersion 4.62804
+MUSETT_T2_DSSD_X39_E_Zero_Dispersion -0.387863
+MUSETT_T2_DSSD_X40_E_Zero_Dispersion -8.72277
+MUSETT_T2_DSSD_X41_E_Zero_Dispersion -1.27485
+MUSETT_T2_DSSD_X42_E_Zero_Dispersion 4.09026
+MUSETT_T2_DSSD_X43_E_Zero_Dispersion 0.043723
+MUSETT_T2_DSSD_X44_E_Zero_Dispersion -5.66238
+MUSETT_T2_DSSD_X45_E_Zero_Dispersion -2.29688
+MUSETT_T2_DSSD_X46_E_Zero_Dispersion 3.27154
+MUSETT_T2_DSSD_X47_E_Zero_Dispersion 3.10116
+MUSETT_T2_DSSD_X48_E_Zero_Dispersion 2.85014
+MUSETT_T2_DSSD_X49_E_Zero_Dispersion -1.59283
+MUSETT_T2_DSSD_X50_E_Zero_Dispersion -7.76806
+MUSETT_T2_DSSD_X51_E_Zero_Dispersion -4.36698
+MUSETT_T2_DSSD_X52_E_Zero_Dispersion -5.08248
+MUSETT_T2_DSSD_X53_E_Zero_Dispersion -3.43024
+MUSETT_T2_DSSD_X54_E_Zero_Dispersion -5.11109
+MUSETT_T2_DSSD_X55_E_Zero_Dispersion -0.211241
+MUSETT_T2_DSSD_X56_E_Zero_Dispersion 2.57154
+MUSETT_T2_DSSD_X57_E_Zero_Dispersion -0.480694
+MUSETT_T2_DSSD_X58_E_Zero_Dispersion 3.19339
+MUSETT_T2_DSSD_X59_E_Zero_Dispersion -2.44151
+MUSETT_T2_DSSD_X60_E_Zero_Dispersion -1.4014
+MUSETT_T2_DSSD_X61_E_Zero_Dispersion 1.4657
+MUSETT_T2_DSSD_X62_E_Zero_Dispersion -3.5779
+MUSETT_T2_DSSD_X63_E_Zero_Dispersion -3.62517
+MUSETT_T2_DSSD_X64_E_Zero_Dispersion 2.71683
+MUSETT_T2_DSSD_X65_E_Zero_Dispersion -7.40988
+MUSETT_T2_DSSD_X66_E_Zero_Dispersion -0.76599
+MUSETT_T2_DSSD_X67_E_Zero_Dispersion 0.661453
+MUSETT_T2_DSSD_X68_E_Zero_Dispersion 0.798704
+MUSETT_T2_DSSD_X69_E_Zero_Dispersion 0.847437
+MUSETT_T2_DSSD_X70_E_Zero_Dispersion -1.38987
+MUSETT_T2_DSSD_X71_E_Zero_Dispersion -2.82554
+MUSETT_T2_DSSD_X72_E_Zero_Dispersion -5.92974
+MUSETT_T2_DSSD_X73_E_Zero_Dispersion 1.07297
+MUSETT_T2_DSSD_X74_E_Zero_Dispersion -0.164958
+MUSETT_T2_DSSD_X75_E_Zero_Dispersion -2.22346
+MUSETT_T2_DSSD_X76_E_Zero_Dispersion 0.572025
+MUSETT_T2_DSSD_X77_E_Zero_Dispersion -2.72737
+MUSETT_T2_DSSD_X78_E_Zero_Dispersion 0.409691
+MUSETT_T2_DSSD_X79_E_Zero_Dispersion -3.26428
+MUSETT_T2_DSSD_X80_E_Zero_Dispersion -0.280829
+MUSETT_T2_DSSD_X81_E_Zero_Dispersion -0.701766
+MUSETT_T2_DSSD_X82_E_Zero_Dispersion -3.4871
+MUSETT_T2_DSSD_X83_E_Zero_Dispersion -0.994055
+MUSETT_T2_DSSD_X84_E_Zero_Dispersion -1.07151
+MUSETT_T2_DSSD_X85_E_Zero_Dispersion -1.50907
+MUSETT_T2_DSSD_X86_E_Zero_Dispersion 1.05267
+MUSETT_T2_DSSD_X87_E_Zero_Dispersion 0.85632
+MUSETT_T2_DSSD_X88_E_Zero_Dispersion -2.73801
+MUSETT_T2_DSSD_X89_E_Zero_Dispersion -2.26986
+MUSETT_T2_DSSD_X90_E_Zero_Dispersion 0.17018
+MUSETT_T2_DSSD_X91_E_Zero_Dispersion -3.58063
+MUSETT_T2_DSSD_X92_E_Zero_Dispersion -3.44762
+MUSETT_T2_DSSD_X93_E_Zero_Dispersion 2.45593
+MUSETT_T2_DSSD_X94_E_Zero_Dispersion 2.17782
+MUSETT_T2_DSSD_X95_E_Zero_Dispersion -1.70958
+MUSETT_T2_DSSD_X96_E_Zero_Dispersion 0.439838
+MUSETT_T2_DSSD_X97_E_Zero_Dispersion 0.413338
+MUSETT_T2_DSSD_X98_E_Zero_Dispersion -2.1071
+MUSETT_T2_DSSD_X99_E_Zero_Dispersion -1.93597
+MUSETT_T2_DSSD_X100_E_Zero_Dispersion -2.44353
+MUSETT_T2_DSSD_X101_E_Zero_Dispersion 0.573167
+MUSETT_T2_DSSD_X102_E_Zero_Dispersion -1.69432
+MUSETT_T2_DSSD_X103_E_Zero_Dispersion -2.61017
+MUSETT_T2_DSSD_X104_E_Zero_Dispersion 1.08866
+MUSETT_T2_DSSD_X105_E_Zero_Dispersion -4.10709
+MUSETT_T2_DSSD_X106_E_Zero_Dispersion 1.16204
+MUSETT_T2_DSSD_X107_E_Zero_Dispersion 0.461815
+MUSETT_T2_DSSD_X108_E_Zero_Dispersion -1.01862
+MUSETT_T2_DSSD_X109_E_Zero_Dispersion -3.64241
+MUSETT_T2_DSSD_X110_E_Zero_Dispersion 0.576806
+MUSETT_T2_DSSD_X111_E_Zero_Dispersion 0.178436
+MUSETT_T2_DSSD_X112_E_Zero_Dispersion 0.0622636
+MUSETT_T2_DSSD_X113_E_Zero_Dispersion 1.74031
+MUSETT_T2_DSSD_X114_E_Zero_Dispersion 1.02572
+MUSETT_T2_DSSD_X115_E_Zero_Dispersion -0.77606
+MUSETT_T2_DSSD_X116_E_Zero_Dispersion -1.32185
+MUSETT_T2_DSSD_X117_E_Zero_Dispersion -0.750783
+MUSETT_T2_DSSD_X118_E_Zero_Dispersion -0.97089
+MUSETT_T2_DSSD_X119_E_Zero_Dispersion -0.329617
+MUSETT_T2_DSSD_X120_E_Zero_Dispersion -1.65754
+MUSETT_T2_DSSD_X121_E_Zero_Dispersion -0.11324
+MUSETT_T2_DSSD_X122_E_Zero_Dispersion 2.2277
+MUSETT_T2_DSSD_X123_E_Zero_Dispersion 8183.92
+MUSETT_T2_DSSD_X124_E_Zero_Dispersion 0.214499
+MUSETT_T2_DSSD_X125_E_Zero_Dispersion 1.49584
+MUSETT_T2_DSSD_X126_E_Zero_Dispersion -0.310643
+MUSETT_T2_DSSD_X127_E_Zero_Dispersion -1.65641
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/latex/double_alpha_run_0274_Y_MM2_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/latex/double_alpha_run_0274_Y_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..08927343ad82e24a6674ca03041c4e2afb7df7bd
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/latex/double_alpha_run_0274_Y_MM2_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+123 &  1 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.38247
+
+Sigma fit sigma: 0.516623
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a404c4da212317405c288baa69957d161a3a4755
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_E 59.702 -0.00728302
+MUSETT_T3_DSSD_Y1_E 58.3787 -0.0071186
+MUSETT_T3_DSSD_Y2_E 59.5406 -0.00726078
+MUSETT_T3_DSSD_Y3_E 59.4207 -0.00724628
+MUSETT_T3_DSSD_Y4_E 59.2519 -0.00722493
+MUSETT_T3_DSSD_Y5_E 59.5148 -0.00725591
+MUSETT_T3_DSSD_Y6_E 59.2665 -0.00722811
+MUSETT_T3_DSSD_Y7_E 59.672 -0.00727764
+MUSETT_T3_DSSD_Y8_E 59.8899 -0.00730264
+MUSETT_T3_DSSD_Y9_E 59.8021 -0.00729111
+MUSETT_T3_DSSD_Y10_E 59.6681 -0.00727735
+MUSETT_T3_DSSD_Y11_E 59.293 -0.00723063
+MUSETT_T3_DSSD_Y12_E 59.176 -0.00721645
+MUSETT_T3_DSSD_Y13_E 59.3339 -0.00723976
+MUSETT_T3_DSSD_Y14_E 60.0332 -0.00732142
+MUSETT_T3_DSSD_Y15_E 59.2042 -0.00721921
+MUSETT_T3_DSSD_Y16_E 62.3463 -0.00760203
+MUSETT_T3_DSSD_Y17_E 62.4922 -0.00761942
+MUSETT_T3_DSSD_Y18_E 61.5402 -0.00750213
+MUSETT_T3_DSSD_Y19_E 62.3021 -0.00760024
+MUSETT_T3_DSSD_Y20_E 62.7324 -0.00765137
+MUSETT_T3_DSSD_Y21_E 62.9757 -0.00767956
+MUSETT_T3_DSSD_Y22_E 62.4365 -0.00761384
+MUSETT_T3_DSSD_Y23_E 62.4332 -0.00761375
+MUSETT_T3_DSSD_Y24_E 62.9777 -0.00768004
+MUSETT_T3_DSSD_Y25_E 63.0395 -0.00769065
+MUSETT_T3_DSSD_Y26_E 62.0007 -0.00756011
+MUSETT_T3_DSSD_Y27_E 62.9293 -0.00767512
+MUSETT_T3_DSSD_Y28_E 62.0982 -0.0075755
+MUSETT_T3_DSSD_Y29_E 62.4728 -0.00761992
+MUSETT_T3_DSSD_Y30_E 62.5931 -0.00763427
+MUSETT_T3_DSSD_Y31_E 62.5802 -0.00763452
+MUSETT_T3_DSSD_Y32_E 55.7914 -0.00680641
+MUSETT_T3_DSSD_Y33_E 55.7674 -0.00680123
+MUSETT_T3_DSSD_Y34_E 55.329 -0.00674626
+MUSETT_T3_DSSD_Y35_E 55.2499 -0.00673764
+MUSETT_T3_DSSD_Y36_E 55.2989 -0.00674368
+MUSETT_T3_DSSD_Y37_E 55.8055 -0.00680603
+MUSETT_T3_DSSD_Y38_E 55.4683 -0.00676398
+MUSETT_T3_DSSD_Y39_E 55.2091 -0.00673465
+MUSETT_T3_DSSD_Y40_E 54.9662 -0.00670321
+MUSETT_T3_DSSD_Y41_E 55.7319 -0.00679671
+MUSETT_T3_DSSD_Y42_E 55.5277 -0.0067717
+MUSETT_T3_DSSD_Y43_E 54.9271 -0.00669793
+MUSETT_T3_DSSD_Y44_E 55.2872 -0.00674212
+MUSETT_T3_DSSD_Y45_E 55.1636 -0.0067267
+MUSETT_T3_DSSD_Y46_E 55.5176 -0.00677111
+MUSETT_T3_DSSD_Y47_E 55.445 -0.00676249
+MUSETT_T3_DSSD_Y48_E 56.3994 -0.00688159
+MUSETT_T3_DSSD_Y49_E 56.3874 -0.00687186
+MUSETT_T3_DSSD_Y50_E 56.7626 -0.00692332
+MUSETT_T3_DSSD_Y51_E 56.5674 -0.00690086
+MUSETT_T3_DSSD_Y52_E 56.1204 -0.00684563
+MUSETT_T3_DSSD_Y53_E 56.5875 -0.00690296
+MUSETT_T3_DSSD_Y54_E 56.3352 -0.00687243
+MUSETT_T3_DSSD_Y55_E 56.6813 -0.0069144
+MUSETT_T3_DSSD_Y56_E 56.8614 -0.00694052
+MUSETT_T3_DSSD_Y57_E 56.3936 -0.00688224
+MUSETT_T3_DSSD_Y58_E 57.1705 -0.00697448
+MUSETT_T3_DSSD_Y59_E 56.5912 -0.00690253
+MUSETT_T3_DSSD_Y60_E 57.3671 -0.00699323
+MUSETT_T3_DSSD_Y61_E 56.748 -0.00692368
+MUSETT_T3_DSSD_Y62_E 56.3286 -0.00686989
+MUSETT_T3_DSSD_Y63_E 56.8989 -0.00693749
+MUSETT_T3_DSSD_Y64_E 58.9479 -0.00718907
+MUSETT_T3_DSSD_Y65_E 59.4791 -0.00725117
+MUSETT_T3_DSSD_Y66_E 59.1331 -0.00721363
+MUSETT_T3_DSSD_Y67_E 58.9369 -0.00718937
+MUSETT_T3_DSSD_Y68_E 58.9593 -0.00719074
+MUSETT_T3_DSSD_Y69_E 58.3407 -0.00711646
+MUSETT_T3_DSSD_Y70_E 58.7466 -0.00716412
+MUSETT_T3_DSSD_Y71_E 59.5453 -0.0072637
+MUSETT_T3_DSSD_Y72_E 59.7258 -0.00728509
+MUSETT_T3_DSSD_Y73_E 59.0505 -0.00720025
+MUSETT_T3_DSSD_Y74_E 59.0541 -0.00720339
+MUSETT_T3_DSSD_Y75_E 59.1222 -0.00721096
+MUSETT_T3_DSSD_Y76_E 59.1137 -0.00720993
+MUSETT_T3_DSSD_Y77_E 59.0423 -0.00720339
+MUSETT_T3_DSSD_Y78_E 58.6663 -0.00715385
+MUSETT_T3_DSSD_Y79_E 59.5802 -0.00726772
+MUSETT_T3_DSSD_Y80_E 62.6379 -0.00764533
+MUSETT_T3_DSSD_Y81_E 62.4283 -0.00761774
+MUSETT_T3_DSSD_Y82_E 62.1525 -0.00758286
+MUSETT_T3_DSSD_Y83_E 61.8869 -0.00755255
+MUSETT_T3_DSSD_Y84_E 61.7925 -0.0075406
+MUSETT_T3_DSSD_Y85_E 62.4247 -0.00761548
+MUSETT_T3_DSSD_Y86_E 61.9409 -0.00755804
+MUSETT_T3_DSSD_Y87_E 62.6041 -0.00763803
+MUSETT_T3_DSSD_Y88_E 62.3788 -0.00761206
+MUSETT_T3_DSSD_Y89_E 62.1087 -0.00757722
+MUSETT_T3_DSSD_Y90_E 61.3528 -0.00748336
+MUSETT_T3_DSSD_Y91_E 61.7744 -0.00753941
+MUSETT_T3_DSSD_Y92_E 61.4575 -0.00749639
+MUSETT_T3_DSSD_Y93_E 61.7842 -0.00753712
+MUSETT_T3_DSSD_Y94_E 61.6046 -0.00751549
+MUSETT_T3_DSSD_Y95_E 61.6088 -0.00752019
+MUSETT_T3_DSSD_Y96_E 56.2634 -0.00686135
+MUSETT_T3_DSSD_Y97_E 56.2993 -0.00686374
+MUSETT_T3_DSSD_Y98_E 55.8122 -0.00680555
+MUSETT_T3_DSSD_Y99_E 55.437 -0.00675937
+MUSETT_T3_DSSD_Y100_E 55.921 -0.00682207
+MUSETT_T3_DSSD_Y101_E 55.8696 -0.00681459
+MUSETT_T3_DSSD_Y102_E 55.5832 -0.0067806
+MUSETT_T3_DSSD_Y103_E 55.6435 -0.00678703
+MUSETT_T3_DSSD_Y104_E 55.4529 -0.00676431
+MUSETT_T3_DSSD_Y105_E 55.8255 -0.00680724
+MUSETT_T3_DSSD_Y106_E 56.1601 -0.00685133
+MUSETT_T3_DSSD_Y107_E 55.9735 -0.00682879
+MUSETT_T3_DSSD_Y108_E 55.277 -0.00674092
+MUSETT_T3_DSSD_Y109_E 55.3963 -0.00675567
+MUSETT_T3_DSSD_Y110_E 56.2012 -0.00685345
+MUSETT_T3_DSSD_Y111_E 56.2256 -0.00685819
+MUSETT_T3_DSSD_Y112_E 56.9505 -0.00694708
+MUSETT_T3_DSSD_Y113_E 56.652 -0.00691043
+MUSETT_T3_DSSD_Y114_E 56.4607 -0.0068827
+MUSETT_T3_DSSD_Y115_E 56.5407 -0.00689618
+MUSETT_T3_DSSD_Y116_E 57.1472 -0.00696739
+MUSETT_T3_DSSD_Y117_E 56.8202 -0.00692948
+MUSETT_T3_DSSD_Y118_E 56.3612 -0.00687348
+MUSETT_T3_DSSD_Y119_E 57.3636 -0.00699479
+MUSETT_T3_DSSD_Y120_E 57.1678 -0.00697736
+MUSETT_T3_DSSD_Y121_E 56.3742 -0.00687323
+MUSETT_T3_DSSD_Y122_E 56.9107 -0.00694054
+MUSETT_T3_DSSD_Y123_E 56.493 -0.00688812
+MUSETT_T3_DSSD_Y124_E 57.1898 -0.00697686
+MUSETT_T3_DSSD_Y125_E 56.6657 -0.00691505
+MUSETT_T3_DSSD_Y126_E 57.119 -0.00697105
+MUSETT_T3_DSSD_Y127_E 56.999 -0.00695078
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..2751b83f51f665bbaa8e8fad09a37f1e59ac5a4d
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E_Zero_Dispersion -5.41957
+MUSETT_T3_DSSD_X1_E_Zero_Dispersion -8.86995
+MUSETT_T3_DSSD_X2_E_Zero_Dispersion -8.30108
+MUSETT_T3_DSSD_X3_E_Zero_Dispersion -8.15939
+MUSETT_T3_DSSD_X4_E_Zero_Dispersion -9.03932
+MUSETT_T3_DSSD_X5_E_Zero_Dispersion -10.2498
+MUSETT_T3_DSSD_X6_E_Zero_Dispersion -7.43945
+MUSETT_T3_DSSD_X7_E_Zero_Dispersion -7.36836
+MUSETT_T3_DSSD_X8_E_Zero_Dispersion -9.11958
+MUSETT_T3_DSSD_X9_E_Zero_Dispersion -10.0619
+MUSETT_T3_DSSD_X10_E_Zero_Dispersion -7.15612
+MUSETT_T3_DSSD_X11_E_Zero_Dispersion -8.24408
+MUSETT_T3_DSSD_X12_E_Zero_Dispersion -8.14575
+MUSETT_T3_DSSD_X13_E_Zero_Dispersion -3.56741
+MUSETT_T3_DSSD_X14_E_Zero_Dispersion -7.66734
+MUSETT_T3_DSSD_X15_E_Zero_Dispersion -8.92918
+MUSETT_T3_DSSD_X16_E_Zero_Dispersion -9.27725
+MUSETT_T3_DSSD_X17_E_Zero_Dispersion -9.70349
+MUSETT_T3_DSSD_X18_E_Zero_Dispersion -11.0327
+MUSETT_T3_DSSD_X19_E_Zero_Dispersion -5.38831
+MUSETT_T3_DSSD_X20_E_Zero_Dispersion -6.83881
+MUSETT_T3_DSSD_X21_E_Zero_Dispersion -8.42252
+MUSETT_T3_DSSD_X22_E_Zero_Dispersion -8.39345
+MUSETT_T3_DSSD_X23_E_Zero_Dispersion -8.05925
+MUSETT_T3_DSSD_X24_E_Zero_Dispersion -8.17293
+MUSETT_T3_DSSD_X25_E_Zero_Dispersion -4.9071
+MUSETT_T3_DSSD_X26_E_Zero_Dispersion -9.02688
+MUSETT_T3_DSSD_X27_E_Zero_Dispersion -7.12465
+MUSETT_T3_DSSD_X28_E_Zero_Dispersion -5.2376
+MUSETT_T3_DSSD_X29_E_Zero_Dispersion -6.61771
+MUSETT_T3_DSSD_X30_E_Zero_Dispersion -6.96243
+MUSETT_T3_DSSD_X31_E_Zero_Dispersion -5.00018
+MUSETT_T3_DSSD_X32_E_Zero_Dispersion -4.88267
+MUSETT_T3_DSSD_X33_E_Zero_Dispersion -7.59861
+MUSETT_T3_DSSD_X34_E_Zero_Dispersion -9.43247
+MUSETT_T3_DSSD_X35_E_Zero_Dispersion -8.19111
+MUSETT_T3_DSSD_X36_E_Zero_Dispersion -8.10079
+MUSETT_T3_DSSD_X37_E_Zero_Dispersion -7.41225
+MUSETT_T3_DSSD_X38_E_Zero_Dispersion -8.5484
+MUSETT_T3_DSSD_X39_E_Zero_Dispersion -5.77262
+MUSETT_T3_DSSD_X40_E_Zero_Dispersion -7.97901
+MUSETT_T3_DSSD_X41_E_Zero_Dispersion -7.83998
+MUSETT_T3_DSSD_X42_E_Zero_Dispersion -7.95986
+MUSETT_T3_DSSD_X43_E_Zero_Dispersion -8.60867
+MUSETT_T3_DSSD_X44_E_Zero_Dispersion -8.28093
+MUSETT_T3_DSSD_X45_E_Zero_Dispersion -8.6904
+MUSETT_T3_DSSD_X46_E_Zero_Dispersion -7.19054
+MUSETT_T3_DSSD_X47_E_Zero_Dispersion -6.90563
+MUSETT_T3_DSSD_X48_E_Zero_Dispersion -3.70104
+MUSETT_T3_DSSD_X49_E_Zero_Dispersion -13.5441
+MUSETT_T3_DSSD_X50_E_Zero_Dispersion -6.76592
+MUSETT_T3_DSSD_X51_E_Zero_Dispersion -5.14453
+MUSETT_T3_DSSD_X52_E_Zero_Dispersion -5.99688
+MUSETT_T3_DSSD_X53_E_Zero_Dispersion -5.57742
+MUSETT_T3_DSSD_X54_E_Zero_Dispersion -5.26969
+MUSETT_T3_DSSD_X55_E_Zero_Dispersion -5.56943
+MUSETT_T3_DSSD_X56_E_Zero_Dispersion -0.672954
+MUSETT_T3_DSSD_X57_E_Zero_Dispersion -2.07153
+MUSETT_T3_DSSD_X58_E_Zero_Dispersion -5.09013
+MUSETT_T3_DSSD_X59_E_Zero_Dispersion -6.62418
+MUSETT_T3_DSSD_X60_E_Zero_Dispersion -11.2358
+MUSETT_T3_DSSD_X61_E_Zero_Dispersion -4.21565
+MUSETT_T3_DSSD_X62_E_Zero_Dispersion -7.34583
+MUSETT_T3_DSSD_X63_E_Zero_Dispersion -9.65512
+MUSETT_T3_DSSD_X64_E_Zero_Dispersion -7.65683
+MUSETT_T3_DSSD_X65_E_Zero_Dispersion -10.6823
+MUSETT_T3_DSSD_X66_E_Zero_Dispersion -5.40653
+MUSETT_T3_DSSD_X67_E_Zero_Dispersion -5.79389
+MUSETT_T3_DSSD_X68_E_Zero_Dispersion -7.3289
+MUSETT_T3_DSSD_X69_E_Zero_Dispersion -5.99778
+MUSETT_T3_DSSD_X70_E_Zero_Dispersion -8.12196
+MUSETT_T3_DSSD_X71_E_Zero_Dispersion -5.65164
+MUSETT_T3_DSSD_X72_E_Zero_Dispersion -6.36576
+MUSETT_T3_DSSD_X73_E_Zero_Dispersion -9.1687
+MUSETT_T3_DSSD_X74_E_Zero_Dispersion -6.09965
+MUSETT_T3_DSSD_X75_E_Zero_Dispersion -6.93288
+MUSETT_T3_DSSD_X76_E_Zero_Dispersion -6.92679
+MUSETT_T3_DSSD_X77_E_Zero_Dispersion -4.45287
+MUSETT_T3_DSSD_X78_E_Zero_Dispersion -8.66758
+MUSETT_T3_DSSD_X79_E_Zero_Dispersion -5.9207
+MUSETT_T3_DSSD_X80_E_Zero_Dispersion -0.957496
+MUSETT_T3_DSSD_X81_E_Zero_Dispersion -3.12253
+MUSETT_T3_DSSD_X82_E_Zero_Dispersion -4.44679
+MUSETT_T3_DSSD_X83_E_Zero_Dispersion -2.17414
+MUSETT_T3_DSSD_X84_E_Zero_Dispersion -2.63732
+MUSETT_T3_DSSD_X85_E_Zero_Dispersion -5.08047
+MUSETT_T3_DSSD_X86_E_Zero_Dispersion -3.36589
+MUSETT_T3_DSSD_X87_E_Zero_Dispersion -4.36667
+MUSETT_T3_DSSD_X88_E_Zero_Dispersion -2.74132
+MUSETT_T3_DSSD_X89_E_Zero_Dispersion -4.76239
+MUSETT_T3_DSSD_X90_E_Zero_Dispersion -6.55583
+MUSETT_T3_DSSD_X91_E_Zero_Dispersion -1.53525
+MUSETT_T3_DSSD_X92_E_Zero_Dispersion -6.27653
+MUSETT_T3_DSSD_X93_E_Zero_Dispersion -5.3257
+MUSETT_T3_DSSD_X94_E_Zero_Dispersion -5.01043
+MUSETT_T3_DSSD_X95_E_Zero_Dispersion -0.456113
+MUSETT_T3_DSSD_X96_E_Zero_Dispersion -8.04745
+MUSETT_T3_DSSD_X97_E_Zero_Dispersion -10.4259
+MUSETT_T3_DSSD_X98_E_Zero_Dispersion -8.97827
+MUSETT_T3_DSSD_X99_E_Zero_Dispersion -9.50101
+MUSETT_T3_DSSD_X100_E_Zero_Dispersion -5.06649
+MUSETT_T3_DSSD_X101_E_Zero_Dispersion -6.52895
+MUSETT_T3_DSSD_X102_E_Zero_Dispersion -5.38737
+MUSETT_T3_DSSD_X103_E_Zero_Dispersion -6.51207
+MUSETT_T3_DSSD_X104_E_Zero_Dispersion -5.86657
+MUSETT_T3_DSSD_X105_E_Zero_Dispersion -8.89782
+MUSETT_T3_DSSD_X106_E_Zero_Dispersion -4.95711
+MUSETT_T3_DSSD_X107_E_Zero_Dispersion -4.69307
+MUSETT_T3_DSSD_X108_E_Zero_Dispersion -8.20475
+MUSETT_T3_DSSD_X109_E_Zero_Dispersion -7.97014
+MUSETT_T3_DSSD_X110_E_Zero_Dispersion -8.41562
+MUSETT_T3_DSSD_X111_E_Zero_Dispersion -6.30905
+MUSETT_T3_DSSD_X112_E_Zero_Dispersion -5.75683
+MUSETT_T3_DSSD_X113_E_Zero_Dispersion -6.0403
+MUSETT_T3_DSSD_X114_E_Zero_Dispersion -11.2787
+MUSETT_T3_DSSD_X115_E_Zero_Dispersion -6.84209
+MUSETT_T3_DSSD_X116_E_Zero_Dispersion -10.0933
+MUSETT_T3_DSSD_X117_E_Zero_Dispersion -7.77647
+MUSETT_T3_DSSD_X118_E_Zero_Dispersion -7.81202
+MUSETT_T3_DSSD_X119_E_Zero_Dispersion -8.89558
+MUSETT_T3_DSSD_X120_E_Zero_Dispersion -1.3233
+MUSETT_T3_DSSD_X121_E_Zero_Dispersion -10.0015
+MUSETT_T3_DSSD_X122_E_Zero_Dispersion -7.74672
+MUSETT_T3_DSSD_X123_E_Zero_Dispersion -9.50896
+MUSETT_T3_DSSD_X124_E_Zero_Dispersion -5.07719
+MUSETT_T3_DSSD_X125_E_Zero_Dispersion -2.54399
+MUSETT_T3_DSSD_X126_E_Zero_Dispersion -1.7462
+MUSETT_T3_DSSD_X127_E_Zero_Dispersion -8.38043
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/latex/double_alpha_run_0274_Y_MM3_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/latex/double_alpha_run_0274_Y_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..729d52a0b8315dd863e3bca55ac7e06e75028201
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/latex/double_alpha_run_0274_Y_MM3_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.00954
+
+Sigma fit sigma: 0.166493
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..3a2fa5a79e1b882f99538a1c3ea7ce354d532d91
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X1_E -61.1208 0.00746406
+MUSETT_T0_DSSD_X2_E -61.6675 0.00752582
+MUSETT_T0_DSSD_X3_E -61.2762 0.0074817
+MUSETT_T0_DSSD_X4_E -61.1528 0.00746629
+MUSETT_T0_DSSD_X5_E -61.4073 0.00749789
+MUSETT_T0_DSSD_X6_E -61.2983 0.00748309
+MUSETT_T0_DSSD_X7_E -60.9942 0.00744676
+MUSETT_T0_DSSD_X8_E -60.7568 0.00741862
+MUSETT_T0_DSSD_X9_E -60.7209 0.00741264
+MUSETT_T0_DSSD_X10_E -62.3275 0.00760814
+MUSETT_T0_DSSD_X11_E -62.0191 0.00757165
+MUSETT_T0_DSSD_X12_E -61.6158 0.00752169
+MUSETT_T0_DSSD_X13_E -61.6131 0.0075228
+MUSETT_T0_DSSD_X14_E -61.419 0.00749721
+MUSETT_T0_DSSD_X15_E -62.1513 0.00758648
+MUSETT_T0_DSSD_X16_E -61.0179 0.00744761
+MUSETT_T0_DSSD_X17_E -62.6095 0.00764466
+MUSETT_T0_DSSD_X18_E -61.9721 0.00757029
+MUSETT_T0_DSSD_X19_E -61.8277 0.00754841
+MUSETT_T0_DSSD_X20_E -61.9456 0.00756393
+MUSETT_T0_DSSD_X21_E -63.5377 0.00775798
+MUSETT_T0_DSSD_X22_E -62.0787 0.00758034
+MUSETT_T0_DSSD_X23_E -61.9391 0.00756191
+MUSETT_T0_DSSD_X24_E -62.145 0.00758935
+MUSETT_T0_DSSD_X25_E -62.3753 0.00761693
+MUSETT_T0_DSSD_X26_E -62.5654 0.00763812
+MUSETT_T0_DSSD_X27_E -62.6261 0.00764629
+MUSETT_T0_DSSD_X28_E -62.036 0.00757722
+MUSETT_T0_DSSD_X29_E -62.7202 0.00765514
+MUSETT_T0_DSSD_X30_E -62.1674 0.00759131
+MUSETT_T0_DSSD_X31_E -63.0507 0.00769798
+MUSETT_T0_DSSD_X32_E -62.2015 0.00759476
+MUSETT_T0_DSSD_X33_E -56.0625 0.00684513
+MUSETT_T0_DSSD_X34_E -56.3393 0.00687979
+MUSETT_T0_DSSD_X35_E -55.0695 0.00672469
+MUSETT_T0_DSSD_X36_E -55.825 0.00681772
+MUSETT_T0_DSSD_X37_E -55.5784 0.00678682
+MUSETT_T0_DSSD_X38_E -54.9215 0.00670936
+MUSETT_T0_DSSD_X39_E -55.4209 0.00676909
+MUSETT_T0_DSSD_X40_E -55.19 0.00674055
+MUSETT_T0_DSSD_X41_E -55.8977 0.00682444
+MUSETT_T0_DSSD_X42_E -55.5041 0.00677725
+MUSETT_T0_DSSD_X43_E -55.7618 0.00680926
+MUSETT_T0_DSSD_X44_E -55.8855 0.00682401
+MUSETT_T0_DSSD_X45_E -55.9116 0.00682759
+MUSETT_T0_DSSD_X46_E -56.0731 0.00684536
+MUSETT_T0_DSSD_X47_E -55.4323 0.00677014
+MUSETT_T0_DSSD_X48_E -55.6243 0.00679015
+MUSETT_T0_DSSD_X49_E -57.4481 0.00701463
+MUSETT_T0_DSSD_X50_E -57.3166 0.00699996
+MUSETT_T0_DSSD_X51_E -57.4682 0.00701473
+MUSETT_T0_DSSD_X52_E -56.9036 0.00694772
+MUSETT_T0_DSSD_X53_E -57.9253 0.00707135
+MUSETT_T0_DSSD_X54_E -56.8322 0.00693982
+MUSETT_T0_DSSD_X55_E -57.3403 0.00700263
+MUSETT_T0_DSSD_X56_E -57.11 0.00697302
+MUSETT_T0_DSSD_X57_E -58.0662 0.00709005
+MUSETT_T0_DSSD_X58_E -57.1909 0.00698498
+MUSETT_T0_DSSD_X59_E -57.1516 0.00697543
+MUSETT_T0_DSSD_X60_E -57.3091 0.00699896
+MUSETT_T0_DSSD_X61_E -56.8788 0.00694276
+MUSETT_T0_DSSD_X62_E -57.5062 0.00702177
+MUSETT_T0_DSSD_X63_E -57.4608 0.00701642
+MUSETT_T0_DSSD_X64_E -57.6054 0.00703493
+MUSETT_T0_DSSD_X65_E -62.6637 0.00765519
+MUSETT_T0_DSSD_X66_E -62.8084 0.00767265
+MUSETT_T0_DSSD_X67_E -62.6318 0.00765143
+MUSETT_T0_DSSD_X68_E -63.6899 0.00777649
+MUSETT_T0_DSSD_X69_E -62.46 0.00763065
+MUSETT_T0_DSSD_X70_E -62.9383 0.00769239
+MUSETT_T0_DSSD_X71_E -63.1232 0.00771022
+MUSETT_T0_DSSD_X72_E -62.3967 0.00762575
+MUSETT_T0_DSSD_X73_E -63.1794 0.007721
+MUSETT_T0_DSSD_X74_E -62.2726 0.00761037
+MUSETT_T0_DSSD_X75_E -62.7728 0.00767497
+MUSETT_T0_DSSD_X76_E -62.9363 0.00769246
+MUSETT_T0_DSSD_X77_E -62.5638 0.00764824
+MUSETT_T0_DSSD_X78_E -62.5178 0.00764408
+MUSETT_T0_DSSD_X79_E -62.6461 0.00766375
+MUSETT_T0_DSSD_X80_E -63.525 0.00776621
+MUSETT_T0_DSSD_X81_E -59.9128 0.00732741
+MUSETT_T0_DSSD_X82_E -59.3636 0.00726247
+MUSETT_T0_DSSD_X83_E -59.8482 0.00731971
+MUSETT_T0_DSSD_X84_E -60.4754 0.00739241
+MUSETT_T0_DSSD_X85_E -60.3435 0.00737654
+MUSETT_T0_DSSD_X86_E -60.9015 0.00744372
+MUSETT_T0_DSSD_X87_E -60.4558 0.00738888
+MUSETT_T0_DSSD_X88_E -61.235 0.00748304
+MUSETT_T0_DSSD_X89_E -61.2602 0.00748247
+MUSETT_T0_DSSD_X90_E -60.8604 0.00743528
+MUSETT_T0_DSSD_X91_E -61.0173 0.00745408
+MUSETT_T0_DSSD_X92_E -62.0709 0.00758305
+MUSETT_T0_DSSD_X93_E -61.1413 0.00746888
+MUSETT_T0_DSSD_X94_E -60.3266 0.00736933
+MUSETT_T0_DSSD_X95_E -60.7026 0.00741607
+MUSETT_T0_DSSD_X96_E -61.6511 0.00752938
+MUSETT_T0_DSSD_X97_E -56.8975 0.00694585
+MUSETT_T0_DSSD_X98_E -56.7045 0.00692979
+MUSETT_T0_DSSD_X99_E -57.4852 0.00701765
+MUSETT_T0_DSSD_X100_E -56.5094 0.00690243
+MUSETT_T0_DSSD_X101_E -58.135 0.0070925
+MUSETT_T0_DSSD_X102_E -57.0159 0.00696594
+MUSETT_T0_DSSD_X103_E -56.915 0.00695517
+MUSETT_T0_DSSD_X104_E -56.5216 0.00690647
+MUSETT_T0_DSSD_X105_E -56.8348 0.00694123
+MUSETT_T0_DSSD_X106_E -57.3582 0.00700658
+MUSETT_T0_DSSD_X107_E -56.9332 0.00695083
+MUSETT_T0_DSSD_X108_E -56.998 0.00696262
+MUSETT_T0_DSSD_X109_E -58.1328 0.00709928
+MUSETT_T0_DSSD_X110_E -57.4545 0.00701814
+MUSETT_T0_DSSD_X111_E -56.8124 0.0069431
+MUSETT_T0_DSSD_X112_E -56.9338 0.00695883
+MUSETT_T0_DSSD_X113_E -58.4826 0.00714263
+MUSETT_T0_DSSD_X114_E -58.3264 0.00712789
+MUSETT_T0_DSSD_X115_E -57.9386 0.00707706
+MUSETT_T0_DSSD_X116_E -58.0162 0.00708749
+MUSETT_T0_DSSD_X117_E -57.4747 0.00702134
+MUSETT_T0_DSSD_X118_E -57.6784 0.00704615
+MUSETT_T0_DSSD_X119_E -57.8784 0.00706734
+MUSETT_T0_DSSD_X120_E -58.208 0.0071064
+MUSETT_T0_DSSD_X121_E -57.9961 0.00708332
+MUSETT_T0_DSSD_X122_E -58.2606 0.00711423
+MUSETT_T0_DSSD_X123_E -57.9878 0.00708282
+MUSETT_T0_DSSD_X124_E -59.0777 0.00721175
+MUSETT_T0_DSSD_X125_E -57.4447 0.0070148
+MUSETT_T0_DSSD_X126_E -58.0233 0.00708585
+MUSETT_T0_DSSD_X127_E -58.1629 0.00710048
+MUSETT_T0_DSSD_X128_E -58.9941 0.007205
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..27a78260e778badc1e65dd5e1c0642cdbe333ccd
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X1_E_Zero_Dispersion 3.31826
+MUSETT_T1_DSSD_X2_E_Zero_Dispersion -2.12122
+MUSETT_T1_DSSD_X3_E_Zero_Dispersion 1.8638
+MUSETT_T1_DSSD_X4_E_Zero_Dispersion 1.47715
+MUSETT_T1_DSSD_X5_E_Zero_Dispersion 2.05422
+MUSETT_T1_DSSD_X6_E_Zero_Dispersion 0.429893
+MUSETT_T1_DSSD_X7_E_Zero_Dispersion 1.29458
+MUSETT_T1_DSSD_X8_E_Zero_Dispersion 2.2296
+MUSETT_T1_DSSD_X9_E_Zero_Dispersion 0.455026
+MUSETT_T1_DSSD_X10_E_Zero_Dispersion -0.202696
+MUSETT_T1_DSSD_X11_E_Zero_Dispersion 1.03105
+MUSETT_T1_DSSD_X12_E_Zero_Dispersion 0.253439
+MUSETT_T1_DSSD_X13_E_Zero_Dispersion 1.82041
+MUSETT_T1_DSSD_X14_E_Zero_Dispersion -0.247248
+MUSETT_T1_DSSD_X15_E_Zero_Dispersion -0.372974
+MUSETT_T1_DSSD_X16_E_Zero_Dispersion -0.948618
+MUSETT_T1_DSSD_X17_E_Zero_Dispersion 2.0412
+MUSETT_T1_DSSD_X18_E_Zero_Dispersion 5.76735
+MUSETT_T1_DSSD_X19_E_Zero_Dispersion 1.16575
+MUSETT_T1_DSSD_X20_E_Zero_Dispersion 2.39481
+MUSETT_T1_DSSD_X21_E_Zero_Dispersion 2.02453
+MUSETT_T1_DSSD_X22_E_Zero_Dispersion 2.56637
+MUSETT_T1_DSSD_X23_E_Zero_Dispersion 1.06394
+MUSETT_T1_DSSD_X24_E_Zero_Dispersion 3.56234
+MUSETT_T1_DSSD_X25_E_Zero_Dispersion 2.95716
+MUSETT_T1_DSSD_X26_E_Zero_Dispersion 0.789701
+MUSETT_T1_DSSD_X27_E_Zero_Dispersion 1.60545
+MUSETT_T1_DSSD_X28_E_Zero_Dispersion 4.83078
+MUSETT_T1_DSSD_X29_E_Zero_Dispersion -1.20681
+MUSETT_T1_DSSD_X30_E_Zero_Dispersion 2.7154
+MUSETT_T1_DSSD_X31_E_Zero_Dispersion 1.45376
+MUSETT_T1_DSSD_X32_E_Zero_Dispersion 1.9387
+MUSETT_T1_DSSD_X33_E_Zero_Dispersion 1.87169
+MUSETT_T1_DSSD_X34_E_Zero_Dispersion 2.89343
+MUSETT_T1_DSSD_X35_E_Zero_Dispersion 2.8554
+MUSETT_T1_DSSD_X36_E_Zero_Dispersion 3.77693
+MUSETT_T1_DSSD_X37_E_Zero_Dispersion 2.83182
+MUSETT_T1_DSSD_X38_E_Zero_Dispersion 6.19925
+MUSETT_T1_DSSD_X39_E_Zero_Dispersion 4.64912
+MUSETT_T1_DSSD_X40_E_Zero_Dispersion 4.2395
+MUSETT_T1_DSSD_X41_E_Zero_Dispersion 1.18291
+MUSETT_T1_DSSD_X42_E_Zero_Dispersion 2.2358
+MUSETT_T1_DSSD_X43_E_Zero_Dispersion 2.89726
+MUSETT_T1_DSSD_X44_E_Zero_Dispersion 2.45726
+MUSETT_T1_DSSD_X45_E_Zero_Dispersion 2.9394
+MUSETT_T1_DSSD_X46_E_Zero_Dispersion 0.597119
+MUSETT_T1_DSSD_X47_E_Zero_Dispersion 4.23
+MUSETT_T1_DSSD_X48_E_Zero_Dispersion 0.091128
+MUSETT_T1_DSSD_X49_E_Zero_Dispersion 2.24858
+MUSETT_T1_DSSD_X50_E_Zero_Dispersion 3.85479
+MUSETT_T1_DSSD_X51_E_Zero_Dispersion -0.509961
+MUSETT_T1_DSSD_X52_E_Zero_Dispersion 1.73771
+MUSETT_T1_DSSD_X53_E_Zero_Dispersion 0.444579
+MUSETT_T1_DSSD_X54_E_Zero_Dispersion 2.70882
+MUSETT_T1_DSSD_X55_E_Zero_Dispersion 3.60445
+MUSETT_T1_DSSD_X56_E_Zero_Dispersion 1.8604
+MUSETT_T1_DSSD_X57_E_Zero_Dispersion 2.17985
+MUSETT_T1_DSSD_X58_E_Zero_Dispersion 4.30362
+MUSETT_T1_DSSD_X59_E_Zero_Dispersion -1.27124
+MUSETT_T1_DSSD_X60_E_Zero_Dispersion 3.76398
+MUSETT_T1_DSSD_X61_E_Zero_Dispersion -0.528796
+MUSETT_T1_DSSD_X62_E_Zero_Dispersion 2.30742
+MUSETT_T1_DSSD_X63_E_Zero_Dispersion 2.52882
+MUSETT_T1_DSSD_X64_E_Zero_Dispersion 3.52446
+MUSETT_T1_DSSD_X65_E_Zero_Dispersion 6.21631
+MUSETT_T1_DSSD_X66_E_Zero_Dispersion 5.9921
+MUSETT_T1_DSSD_X67_E_Zero_Dispersion 6.36861
+MUSETT_T1_DSSD_X68_E_Zero_Dispersion 1.94082
+MUSETT_T1_DSSD_X69_E_Zero_Dispersion 6.59321
+MUSETT_T1_DSSD_X70_E_Zero_Dispersion 10.1099
+MUSETT_T1_DSSD_X71_E_Zero_Dispersion 5.05423
+MUSETT_T1_DSSD_X72_E_Zero_Dispersion 9.62236
+MUSETT_T1_DSSD_X73_E_Zero_Dispersion 9.19309
+MUSETT_T1_DSSD_X74_E_Zero_Dispersion 9.40983
+MUSETT_T1_DSSD_X75_E_Zero_Dispersion 13.1014
+MUSETT_T1_DSSD_X76_E_Zero_Dispersion 10.4419
+MUSETT_T1_DSSD_X77_E_Zero_Dispersion 11.8371
+MUSETT_T1_DSSD_X78_E_Zero_Dispersion 13.4091
+MUSETT_T1_DSSD_X79_E_Zero_Dispersion 17.6642
+MUSETT_T1_DSSD_X80_E_Zero_Dispersion 12.3404
+MUSETT_T1_DSSD_X81_E_Zero_Dispersion 15.4726
+MUSETT_T1_DSSD_X82_E_Zero_Dispersion 17.9738
+MUSETT_T1_DSSD_X83_E_Zero_Dispersion 15.6833
+MUSETT_T1_DSSD_X84_E_Zero_Dispersion 11.262
+MUSETT_T1_DSSD_X85_E_Zero_Dispersion 11.5359
+MUSETT_T1_DSSD_X86_E_Zero_Dispersion 10.4098
+MUSETT_T1_DSSD_X87_E_Zero_Dispersion 9.99555
+MUSETT_T1_DSSD_X88_E_Zero_Dispersion 8.8319
+MUSETT_T1_DSSD_X89_E_Zero_Dispersion 4.84346
+MUSETT_T1_DSSD_X90_E_Zero_Dispersion 6.63797
+MUSETT_T1_DSSD_X91_E_Zero_Dispersion 6.23688
+MUSETT_T1_DSSD_X92_E_Zero_Dispersion 6.52259
+MUSETT_T1_DSSD_X93_E_Zero_Dispersion 5.8684
+MUSETT_T1_DSSD_X94_E_Zero_Dispersion 5.82198
+MUSETT_T1_DSSD_X95_E_Zero_Dispersion 6.72663
+MUSETT_T1_DSSD_X96_E_Zero_Dispersion 3.9278
+MUSETT_T1_DSSD_X97_E_Zero_Dispersion 0.411282
+MUSETT_T1_DSSD_X98_E_Zero_Dispersion 9.27819
+MUSETT_T1_DSSD_X99_E_Zero_Dispersion 0.488031
+MUSETT_T1_DSSD_X100_E_Zero_Dispersion 5.11102
+MUSETT_T1_DSSD_X101_E_Zero_Dispersion -4.68532
+MUSETT_T1_DSSD_X102_E_Zero_Dispersion 7.03328
+MUSETT_T1_DSSD_X103_E_Zero_Dispersion 8.87449
+MUSETT_T1_DSSD_X104_E_Zero_Dispersion 8.14285
+MUSETT_T1_DSSD_X105_E_Zero_Dispersion 4.00011
+MUSETT_T1_DSSD_X106_E_Zero_Dispersion 5.67661
+MUSETT_T1_DSSD_X107_E_Zero_Dispersion 1.15362
+MUSETT_T1_DSSD_X108_E_Zero_Dispersion 5.71981
+MUSETT_T1_DSSD_X109_E_Zero_Dispersion 3.44129
+MUSETT_T1_DSSD_X110_E_Zero_Dispersion 5.42935
+MUSETT_T1_DSSD_X111_E_Zero_Dispersion 9.43061
+MUSETT_T1_DSSD_X112_E_Zero_Dispersion 10.476
+MUSETT_T1_DSSD_X113_E_Zero_Dispersion 4.17
+MUSETT_T1_DSSD_X114_E_Zero_Dispersion 9.15367
+MUSETT_T1_DSSD_X115_E_Zero_Dispersion 5.19154
+MUSETT_T1_DSSD_X116_E_Zero_Dispersion 6.2837
+MUSETT_T1_DSSD_X117_E_Zero_Dispersion 6.28696
+MUSETT_T1_DSSD_X118_E_Zero_Dispersion 6.20439
+MUSETT_T1_DSSD_X119_E_Zero_Dispersion 2.44417
+MUSETT_T1_DSSD_X120_E_Zero_Dispersion 1.07086
+MUSETT_T1_DSSD_X121_E_Zero_Dispersion 4.31051
+MUSETT_T1_DSSD_X122_E_Zero_Dispersion 2.69751
+MUSETT_T1_DSSD_X123_E_Zero_Dispersion 4.89076
+MUSETT_T1_DSSD_X124_E_Zero_Dispersion 0.134467
+MUSETT_T1_DSSD_X125_E_Zero_Dispersion 2.93377
+MUSETT_T1_DSSD_X126_E_Zero_Dispersion 3.3914
+MUSETT_T1_DSSD_X127_E_Zero_Dispersion 0.596674
+MUSETT_T1_DSSD_X128_E_Zero_Dispersion 4.06162
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/latex/double_alpha_run_244_X_MM1_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/latex/double_alpha_run_244_X_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b1b0f08722ed1473489d981711d8984c0286ed97
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/latex/double_alpha_run_244_X_MM1_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 1.91975
+
+Sigma fit sigma: 0.254217
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1514879b173bb1c0abac27e92f48188a0ca62b20
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X1_E -62.3624 0.00761012
+MUSETT_T1_DSSD_X2_E -62.371 0.00760877
+MUSETT_T1_DSSD_X3_E -62.1936 0.00759021
+MUSETT_T1_DSSD_X4_E -62.0099 0.0075663
+MUSETT_T1_DSSD_X5_E -61.4333 0.00749709
+MUSETT_T1_DSSD_X6_E -61.6076 0.00751681
+MUSETT_T1_DSSD_X7_E -62.4597 0.00761988
+MUSETT_T1_DSSD_X8_E -61.3276 0.00748486
+MUSETT_T1_DSSD_X9_E -61.1994 0.00746931
+MUSETT_T1_DSSD_X10_E -61.5135 0.00750523
+MUSETT_T1_DSSD_X11_E -61.843 0.00754449
+MUSETT_T1_DSSD_X12_E -61.7608 0.00753579
+MUSETT_T1_DSSD_X13_E -61.9736 0.00756143
+MUSETT_T1_DSSD_X14_E -61.4587 0.00749868
+MUSETT_T1_DSSD_X15_E -61.3372 0.00748218
+MUSETT_T1_DSSD_X16_E -62.049 0.00757062
+MUSETT_T1_DSSD_X17_E -62.8031 0.00766039
+MUSETT_T1_DSSD_X18_E -62.1984 0.00758379
+MUSETT_T1_DSSD_X19_E -62.0833 0.00757771
+MUSETT_T1_DSSD_X20_E -62.3149 0.00759894
+MUSETT_T1_DSSD_X21_E -62.793 0.00766413
+MUSETT_T1_DSSD_X22_E -62.3253 0.00760286
+MUSETT_T1_DSSD_X23_E -62.9052 0.00767299
+MUSETT_T1_DSSD_X24_E -62.6229 0.00763869
+MUSETT_T1_DSSD_X25_E -62.7474 0.00765064
+MUSETT_T1_DSSD_X26_E -62.3524 0.00760372
+MUSETT_T1_DSSD_X27_E -62.1417 0.00758143
+MUSETT_T1_DSSD_X28_E -61.9796 0.00755889
+MUSETT_T1_DSSD_X29_E -61.5268 0.00750914
+MUSETT_T1_DSSD_X30_E -63.0556 0.00769029
+MUSETT_T1_DSSD_X31_E -62.285 0.00759403
+MUSETT_T1_DSSD_X32_E -63.1497 0.00770174
+MUSETT_T1_DSSD_X33_E -58.2595 0.00710945
+MUSETT_T1_DSSD_X34_E -58.1495 0.0070983
+MUSETT_T1_DSSD_X35_E -58.425 0.00712764
+MUSETT_T1_DSSD_X36_E -57.5043 0.00702656
+MUSETT_T1_DSSD_X37_E -58.3774 0.00711928
+MUSETT_T1_DSSD_X38_E -58.4588 0.00712951
+MUSETT_T1_DSSD_X39_E -58.6065 0.00714334
+MUSETT_T1_DSSD_X40_E -58.9822 0.00719271
+MUSETT_T1_DSSD_X41_E -58.7956 0.00716704
+MUSETT_T1_DSSD_X42_E -58.8535 0.00718162
+MUSETT_T1_DSSD_X43_E -58.2322 0.00710428
+MUSETT_T1_DSSD_X44_E -57.8207 0.00706366
+MUSETT_T1_DSSD_X45_E -58.6346 0.0071536
+MUSETT_T1_DSSD_X46_E -59.7894 0.00728966
+MUSETT_T1_DSSD_X47_E -59.2746 0.00722547
+MUSETT_T1_DSSD_X48_E -58.529 0.00714105
+MUSETT_T1_DSSD_X49_E -58.0371 0.0070803
+MUSETT_T1_DSSD_X50_E -58.6199 0.00715229
+MUSETT_T1_DSSD_X51_E -58.337 0.00711425
+MUSETT_T1_DSSD_X52_E -58.0837 0.00708355
+MUSETT_T1_DSSD_X53_E -58.1637 0.00709458
+MUSETT_T1_DSSD_X54_E -57.9776 0.00707403
+MUSETT_T1_DSSD_X55_E -58.3312 0.00711354
+MUSETT_T1_DSSD_X56_E -58.1594 0.00709216
+MUSETT_T1_DSSD_X57_E -58.0287 0.00708161
+MUSETT_T1_DSSD_X58_E -57.9741 0.00707198
+MUSETT_T1_DSSD_X59_E -58.5591 0.00714465
+MUSETT_T1_DSSD_X60_E -57.7298 0.00704314
+MUSETT_T1_DSSD_X61_E -57.911 0.00706416
+MUSETT_T1_DSSD_X62_E -58.32 0.00711548
+MUSETT_T1_DSSD_X63_E -57.9209 0.00706902
+MUSETT_T1_DSSD_X64_E -57.6581 0.00704331
+MUSETT_T1_DSSD_X65_E -61.1032 0.00745382
+MUSETT_T1_DSSD_X66_E -61.5619 0.00751166
+MUSETT_T1_DSSD_X67_E -61.3687 0.00748805
+MUSETT_T1_DSSD_X68_E -61.9709 0.0075568
+MUSETT_T1_DSSD_X69_E -61.6644 0.00752686
+MUSETT_T1_DSSD_X70_E -61.3912 0.00749046
+MUSETT_T1_DSSD_X71_E -61.9218 0.007552
+MUSETT_T1_DSSD_X72_E -62.0173 0.00756577
+MUSETT_T1_DSSD_X73_E -61.2703 0.00747548
+MUSETT_T1_DSSD_X74_E -62.3646 0.00760904
+MUSETT_T1_DSSD_X75_E -61.6779 0.0075284
+MUSETT_T1_DSSD_X76_E -61.8796 0.00755244
+MUSETT_T1_DSSD_X77_E -61.8422 0.00754114
+MUSETT_T1_DSSD_X78_E -61.8398 0.00754322
+MUSETT_T1_DSSD_X79_E -61.5458 0.00750591
+MUSETT_T1_DSSD_X80_E -61.74 0.00753496
+MUSETT_T1_DSSD_X81_E -63.3825 0.00773354
+MUSETT_T1_DSSD_X82_E -63.5514 0.00775624
+MUSETT_T1_DSSD_X83_E -64.0743 0.00781917
+MUSETT_T1_DSSD_X84_E -63.8267 0.00778846
+MUSETT_T1_DSSD_X85_E -63.882 0.00779768
+MUSETT_T1_DSSD_X86_E -64.0168 0.00780882
+MUSETT_T1_DSSD_X87_E -64.3022 0.00784247
+MUSETT_T1_DSSD_X88_E -64.6835 0.00788668
+MUSETT_T1_DSSD_X89_E -63.7597 0.00778432
+MUSETT_T1_DSSD_X90_E -64.2214 0.00783607
+MUSETT_T1_DSSD_X91_E -63.1681 0.00770996
+MUSETT_T1_DSSD_X92_E -63.1287 0.00770542
+MUSETT_T1_DSSD_X93_E -64.6547 0.00788697
+MUSETT_T1_DSSD_X94_E -64.0697 0.00781609
+MUSETT_T1_DSSD_X95_E -63.3459 0.0077344
+MUSETT_T1_DSSD_X96_E -63.3339 0.00772929
+MUSETT_T1_DSSD_X97_E -56.6206 0.00690407
+MUSETT_T1_DSSD_X98_E -56.6271 0.00690945
+MUSETT_T1_DSSD_X99_E -56.8075 0.00692682
+MUSETT_T1_DSSD_X100_E -56.3784 0.00687942
+MUSETT_T1_DSSD_X101_E -56.5092 0.00689507
+MUSETT_T1_DSSD_X102_E -57.0925 0.00696497
+MUSETT_T1_DSSD_X103_E -57.4137 0.00700377
+MUSETT_T1_DSSD_X104_E -56.4692 0.00689105
+MUSETT_T1_DSSD_X105_E -56.8896 0.00693984
+MUSETT_T1_DSSD_X106_E -56.927 0.00694687
+MUSETT_T1_DSSD_X107_E -57.9729 0.0070716
+MUSETT_T1_DSSD_X108_E -57.6679 0.00703655
+MUSETT_T1_DSSD_X109_E -57.6556 0.00703509
+MUSETT_T1_DSSD_X110_E -57.3883 0.00700337
+MUSETT_T1_DSSD_X111_E -57.7513 0.00704555
+MUSETT_T1_DSSD_X112_E -57.877 0.00706349
+MUSETT_T1_DSSD_X113_E -57.2915 0.00698936
+MUSETT_T1_DSSD_X114_E -57.3171 0.00699306
+MUSETT_T1_DSSD_X115_E -56.6719 0.0069159
+MUSETT_T1_DSSD_X116_E -57.7554 0.00704559
+MUSETT_T1_DSSD_X117_E -57.1005 0.0069688
+MUSETT_T1_DSSD_X118_E -57.1996 0.00697882
+MUSETT_T1_DSSD_X119_E -56.7493 0.00691919
+MUSETT_T1_DSSD_X120_E -58.3182 0.00711505
+MUSETT_T1_DSSD_X121_E -57.4007 0.00700393
+MUSETT_T1_DSSD_X122_E -57.9735 0.00707107
+MUSETT_T1_DSSD_X123_E -57.7802 0.00704869
+MUSETT_T1_DSSD_X124_E -57.4132 0.00700545
+MUSETT_T1_DSSD_X125_E -57.6474 0.00703247
+MUSETT_T1_DSSD_X126_E -57.6019 0.00702875
+MUSETT_T1_DSSD_X127_E -57.0542 0.00696086
+MUSETT_T1_DSSD_X128_E -57.9072 0.00706381
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..a1d0d195e75ebc7fcffae98d035de65ce55b4e0f
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X1_E_Zero_Dispersion -2.66336
+MUSETT_T2_DSSD_X2_E_Zero_Dispersion -5.25288
+MUSETT_T2_DSSD_X3_E_Zero_Dispersion -1.92259
+MUSETT_T2_DSSD_X4_E_Zero_Dispersion -3.54109
+MUSETT_T2_DSSD_X5_E_Zero_Dispersion -2.28776
+MUSETT_T2_DSSD_X6_E_Zero_Dispersion -3.97271
+MUSETT_T2_DSSD_X7_E_Zero_Dispersion -4.93891
+MUSETT_T2_DSSD_X8_E_Zero_Dispersion -1.54904
+MUSETT_T2_DSSD_X9_E_Zero_Dispersion -1.45065
+MUSETT_T2_DSSD_X10_E_Zero_Dispersion -4.07884
+MUSETT_T2_DSSD_X11_E_Zero_Dispersion -5.10266
+MUSETT_T2_DSSD_X12_E_Zero_Dispersion -3.66286
+MUSETT_T2_DSSD_X13_E_Zero_Dispersion -4.01344
+MUSETT_T2_DSSD_X14_E_Zero_Dispersion -3.93852
+MUSETT_T2_DSSD_X15_E_Zero_Dispersion -5.7754
+MUSETT_T2_DSSD_X16_E_Zero_Dispersion -4.02067
+MUSETT_T2_DSSD_X17_E_Zero_Dispersion -6.42262
+MUSETT_T2_DSSD_X18_E_Zero_Dispersion -9.48953
+MUSETT_T2_DSSD_X19_E_Zero_Dispersion -0.891036
+MUSETT_T2_DSSD_X20_E_Zero_Dispersion -8.46321
+MUSETT_T2_DSSD_X21_E_Zero_Dispersion -1.10458
+MUSETT_T2_DSSD_X22_E_Zero_Dispersion -5.61099
+MUSETT_T2_DSSD_X23_E_Zero_Dispersion -6.26129
+MUSETT_T2_DSSD_X24_E_Zero_Dispersion -6.12355
+MUSETT_T2_DSSD_X25_E_Zero_Dispersion -9.58648
+MUSETT_T2_DSSD_X26_E_Zero_Dispersion -8.24656
+MUSETT_T2_DSSD_X27_E_Zero_Dispersion -4.5608
+MUSETT_T2_DSSD_X28_E_Zero_Dispersion -7.56859
+MUSETT_T2_DSSD_X29_E_Zero_Dispersion -1.5913
+MUSETT_T2_DSSD_X30_E_Zero_Dispersion -7.37654
+MUSETT_T2_DSSD_X31_E_Zero_Dispersion -9.83087
+MUSETT_T2_DSSD_X32_E_Zero_Dispersion -7.39623
+MUSETT_T2_DSSD_X33_E_Zero_Dispersion -2.66342
+MUSETT_T2_DSSD_X34_E_Zero_Dispersion -0.0289014
+MUSETT_T2_DSSD_X35_E_Zero_Dispersion -4.95942
+MUSETT_T2_DSSD_X36_E_Zero_Dispersion 8.1537
+MUSETT_T2_DSSD_X37_E_Zero_Dispersion -7.91062
+MUSETT_T2_DSSD_X38_E_Zero_Dispersion -7.56346
+MUSETT_T2_DSSD_X39_E_Zero_Dispersion -12.3574
+MUSETT_T2_DSSD_X40_E_Zero_Dispersion -8.28567
+MUSETT_T2_DSSD_X41_E_Zero_Dispersion -11.6126
+MUSETT_T2_DSSD_X42_E_Zero_Dispersion -3.01155
+MUSETT_T2_DSSD_X43_E_Zero_Dispersion -4.76688
+MUSETT_T2_DSSD_X44_E_Zero_Dispersion 6.34002
+MUSETT_T2_DSSD_X45_E_Zero_Dispersion -4.51005
+MUSETT_T2_DSSD_X46_E_Zero_Dispersion -9.94451
+MUSETT_T2_DSSD_X47_E_Zero_Dispersion -11.5601
+MUSETT_T2_DSSD_X48_E_Zero_Dispersion -4.13332
+MUSETT_T2_DSSD_X49_E_Zero_Dispersion -4.98186
+MUSETT_T2_DSSD_X50_E_Zero_Dispersion -3.95739
+MUSETT_T2_DSSD_X51_E_Zero_Dispersion -8.01934
+MUSETT_T2_DSSD_X52_E_Zero_Dispersion -7.80714
+MUSETT_T2_DSSD_X53_E_Zero_Dispersion -6.32075
+MUSETT_T2_DSSD_X54_E_Zero_Dispersion -3.84099
+MUSETT_T2_DSSD_X55_E_Zero_Dispersion -8.02657
+MUSETT_T2_DSSD_X56_E_Zero_Dispersion -8.51638
+MUSETT_T2_DSSD_X57_E_Zero_Dispersion -2.272
+MUSETT_T2_DSSD_X58_E_Zero_Dispersion -5.71716
+MUSETT_T2_DSSD_X59_E_Zero_Dispersion -4.2153
+MUSETT_T2_DSSD_X60_E_Zero_Dispersion -4.60056
+MUSETT_T2_DSSD_X61_E_Zero_Dispersion -5.86954
+MUSETT_T2_DSSD_X62_E_Zero_Dispersion -4.20939
+MUSETT_T2_DSSD_X63_E_Zero_Dispersion -1.61668
+MUSETT_T2_DSSD_X64_E_Zero_Dispersion 5.78277
+MUSETT_T2_DSSD_X65_E_Zero_Dispersion -5.57542
+MUSETT_T2_DSSD_X66_E_Zero_Dispersion -3.51091
+MUSETT_T2_DSSD_X67_E_Zero_Dispersion -3.55616
+MUSETT_T2_DSSD_X68_E_Zero_Dispersion -8.67517
+MUSETT_T2_DSSD_X69_E_Zero_Dispersion -0.576371
+MUSETT_T2_DSSD_X70_E_Zero_Dispersion -3.91829
+MUSETT_T2_DSSD_X71_E_Zero_Dispersion -7.39344
+MUSETT_T2_DSSD_X72_E_Zero_Dispersion -5.08126
+MUSETT_T2_DSSD_X73_E_Zero_Dispersion -4.17441
+MUSETT_T2_DSSD_X74_E_Zero_Dispersion -4.12028
+MUSETT_T2_DSSD_X75_E_Zero_Dispersion -0.68974
+MUSETT_T2_DSSD_X76_E_Zero_Dispersion -1.3283
+MUSETT_T2_DSSD_X77_E_Zero_Dispersion -8.64839
+MUSETT_T2_DSSD_X78_E_Zero_Dispersion -6.05987
+MUSETT_T2_DSSD_X79_E_Zero_Dispersion -7.65052
+MUSETT_T2_DSSD_X80_E_Zero_Dispersion -1.81011
+MUSETT_T2_DSSD_X81_E_Zero_Dispersion -3.79935
+MUSETT_T2_DSSD_X82_E_Zero_Dispersion -1.58273
+MUSETT_T2_DSSD_X83_E_Zero_Dispersion -2.51097
+MUSETT_T2_DSSD_X84_E_Zero_Dispersion -3.03033
+MUSETT_T2_DSSD_X85_E_Zero_Dispersion -0.442009
+MUSETT_T2_DSSD_X86_E_Zero_Dispersion -6.02322
+MUSETT_T2_DSSD_X87_E_Zero_Dispersion -7.2206
+MUSETT_T2_DSSD_X88_E_Zero_Dispersion -9.61511
+MUSETT_T2_DSSD_X89_E_Zero_Dispersion 1.2093
+MUSETT_T2_DSSD_X90_E_Zero_Dispersion -3.6126
+MUSETT_T2_DSSD_X91_E_Zero_Dispersion -1.05543
+MUSETT_T2_DSSD_X92_E_Zero_Dispersion -0.763344
+MUSETT_T2_DSSD_X93_E_Zero_Dispersion -5.66186
+MUSETT_T2_DSSD_X94_E_Zero_Dispersion -5.15498
+MUSETT_T2_DSSD_X95_E_Zero_Dispersion 1.84768
+MUSETT_T2_DSSD_X96_E_Zero_Dispersion -2.00809
+MUSETT_T2_DSSD_X97_E_Zero_Dispersion -9.04459
+MUSETT_T2_DSSD_X98_E_Zero_Dispersion -3.6058
+MUSETT_T2_DSSD_X99_E_Zero_Dispersion -9.10151
+MUSETT_T2_DSSD_X100_E_Zero_Dispersion -3.22846
+MUSETT_T2_DSSD_X101_E_Zero_Dispersion -3.5899
+MUSETT_T2_DSSD_X102_E_Zero_Dispersion -5.1005
+MUSETT_T2_DSSD_X103_E_Zero_Dispersion -5.54284
+MUSETT_T2_DSSD_X104_E_Zero_Dispersion -2.57029
+MUSETT_T2_DSSD_X105_E_Zero_Dispersion -5.53144
+MUSETT_T2_DSSD_X106_E_Zero_Dispersion -2.6213
+MUSETT_T2_DSSD_X107_E_Zero_Dispersion -5.99254
+MUSETT_T2_DSSD_X108_E_Zero_Dispersion -3.48025
+MUSETT_T2_DSSD_X109_E_Zero_Dispersion -3.43173
+MUSETT_T2_DSSD_X110_E_Zero_Dispersion -2.38627
+MUSETT_T2_DSSD_X111_E_Zero_Dispersion -4.85672
+MUSETT_T2_DSSD_X112_E_Zero_Dispersion -1.81737
+MUSETT_T2_DSSD_X113_E_Zero_Dispersion -4.94892
+MUSETT_T2_DSSD_X114_E_Zero_Dispersion -4.27881
+MUSETT_T2_DSSD_X115_E_Zero_Dispersion -2.43837
+MUSETT_T2_DSSD_X116_E_Zero_Dispersion -5.38135
+MUSETT_T2_DSSD_X117_E_Zero_Dispersion -1.73183
+MUSETT_T2_DSSD_X118_E_Zero_Dispersion -4.18097
+MUSETT_T2_DSSD_X119_E_Zero_Dispersion -9.72105
+MUSETT_T2_DSSD_X120_E_Zero_Dispersion -4.44539
+MUSETT_T2_DSSD_X121_E_Zero_Dispersion -3.4985
+MUSETT_T2_DSSD_X122_E_Zero_Dispersion -6.68664
+MUSETT_T2_DSSD_X123_E_Zero_Dispersion -5.29485
+MUSETT_T2_DSSD_X124_E_Zero_Dispersion -3.51126
+MUSETT_T2_DSSD_X125_E_Zero_Dispersion -5.32215
+MUSETT_T2_DSSD_X126_E_Zero_Dispersion -3.18144
+MUSETT_T2_DSSD_X127_E_Zero_Dispersion -4.42428
+MUSETT_T2_DSSD_X128_E_Zero_Dispersion -5.73232
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/latex/double_alpha_run_244_X_MM2_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/latex/double_alpha_run_244_X_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..3365edba553e22cb61ca91d540c539acf3053f1f
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/latex/double_alpha_run_244_X_MM2_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.20003
+
+Sigma fit sigma: 0.500241
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1ea46de722d52007ccdc52ae1a44116b84ad5488
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X1_E -62.3745 0.00761382
+MUSETT_T2_DSSD_X2_E -62.4133 0.00761549
+MUSETT_T2_DSSD_X3_E -62.9088 0.00767481
+MUSETT_T2_DSSD_X4_E -62.0005 0.00756534
+MUSETT_T2_DSSD_X5_E -62.0959 0.00757598
+MUSETT_T2_DSSD_X6_E -62.5355 0.00763149
+MUSETT_T2_DSSD_X7_E -62.3555 0.00760844
+MUSETT_T2_DSSD_X8_E -62.789 0.00766052
+MUSETT_T2_DSSD_X9_E -62.8245 0.00766499
+MUSETT_T2_DSSD_X10_E -61.8797 0.00755263
+MUSETT_T2_DSSD_X11_E -62.3935 0.00761255
+MUSETT_T2_DSSD_X12_E -62.4152 0.00761577
+MUSETT_T2_DSSD_X13_E -62.4159 0.00761702
+MUSETT_T2_DSSD_X14_E -62.3704 0.00761108
+MUSETT_T2_DSSD_X15_E -62.317 0.00760687
+MUSETT_T2_DSSD_X16_E -63.2168 0.00771561
+MUSETT_T2_DSSD_X17_E -61.9631 0.00756257
+MUSETT_T2_DSSD_X18_E -61.6056 0.00751788
+MUSETT_T2_DSSD_X19_E -61.6813 0.00752472
+MUSETT_T2_DSSD_X20_E -61.5714 0.00750962
+MUSETT_T2_DSSD_X21_E -61.6266 0.00751682
+MUSETT_T2_DSSD_X22_E -62.1879 0.00758809
+MUSETT_T2_DSSD_X23_E -62.1134 0.00757826
+MUSETT_T2_DSSD_X24_E -61.7582 0.0075354
+MUSETT_T2_DSSD_X25_E -61.39 0.00749151
+MUSETT_T2_DSSD_X26_E -61.6812 0.00752659
+MUSETT_T2_DSSD_X27_E -61.7485 0.00753617
+MUSETT_T2_DSSD_X28_E -61.651 0.00752289
+MUSETT_T2_DSSD_X29_E -61.6342 0.00751953
+MUSETT_T2_DSSD_X30_E -61.2964 0.00747738
+MUSETT_T2_DSSD_X31_E -62.1731 0.00758767
+MUSETT_T2_DSSD_X32_E -61.208 0.00747172
+MUSETT_T2_DSSD_X33_E -58.877 0.00718399
+MUSETT_T2_DSSD_X34_E -58.0501 0.00708321
+MUSETT_T2_DSSD_X35_E -58.7726 0.00716724
+MUSETT_T2_DSSD_X36_E -58.3747 0.00712148
+MUSETT_T2_DSSD_X37_E -58.0135 0.00707986
+MUSETT_T2_DSSD_X38_E -58.0463 0.00708209
+MUSETT_T2_DSSD_X39_E -58.2094 0.00710299
+MUSETT_T2_DSSD_X40_E -57.8569 0.00705858
+MUSETT_T2_DSSD_X41_E -57.4387 0.00700905
+MUSETT_T2_DSSD_X42_E -58.3993 0.00712671
+MUSETT_T2_DSSD_X43_E -58.7613 0.00716844
+MUSETT_T2_DSSD_X44_E -57.9448 0.00707376
+MUSETT_T2_DSSD_X45_E -58.3502 0.00712097
+MUSETT_T2_DSSD_X46_E -58.2534 0.00711005
+MUSETT_T2_DSSD_X47_E -58.0822 0.00708956
+MUSETT_T2_DSSD_X48_E -58.3382 0.00711898
+MUSETT_T2_DSSD_X49_E -57.8843 0.00706058
+MUSETT_T2_DSSD_X50_E -57.0287 0.00695961
+MUSETT_T2_DSSD_X51_E -58.0686 0.00708481
+MUSETT_T2_DSSD_X52_E -57.6552 0.00703664
+MUSETT_T2_DSSD_X53_E -57.4091 0.00700501
+MUSETT_T2_DSSD_X54_E -57.022 0.00695781
+MUSETT_T2_DSSD_X55_E -57.7248 0.00704344
+MUSETT_T2_DSSD_X56_E -57.6815 0.00703611
+MUSETT_T2_DSSD_X57_E -57.7522 0.00704777
+MUSETT_T2_DSSD_X58_E -57.4394 0.00700864
+MUSETT_T2_DSSD_X59_E -57.7521 0.00704837
+MUSETT_T2_DSSD_X60_E -57.0404 0.0069587
+MUSETT_T2_DSSD_X61_E -57.3805 0.00700244
+MUSETT_T2_DSSD_X62_E -56.5934 0.00690545
+MUSETT_T2_DSSD_X63_E -57.3124 0.00699347
+MUSETT_T2_DSSD_X64_E -57.6371 0.00703515
+MUSETT_T2_DSSD_X65_E -63.5966 0.0077563
+MUSETT_T2_DSSD_X66_E -64.8681 0.00791583
+MUSETT_T2_DSSD_X67_E -64.0001 0.00780914
+MUSETT_T2_DSSD_X68_E -63.7075 0.00777425
+MUSETT_T2_DSSD_X69_E 7.39123 0.851608
+MUSETT_T2_DSSD_X70_E -64.4456 0.00786221
+MUSETT_T2_DSSD_X71_E -63.6997 0.00777172
+MUSETT_T2_DSSD_X72_E -63.5222 0.00775005
+MUSETT_T2_DSSD_X73_E -63.3566 0.00773054
+MUSETT_T2_DSSD_X74_E -63.234 0.00771375
+MUSETT_T2_DSSD_X75_E -63.9226 0.00779819
+MUSETT_T2_DSSD_X76_E -63.8297 0.00778634
+MUSETT_T2_DSSD_X77_E -63.8052 0.00778563
+MUSETT_T2_DSSD_X78_E -63.7932 0.00778386
+MUSETT_T2_DSSD_X79_E -63.5252 0.00775286
+MUSETT_T2_DSSD_X80_E -63.5056 0.00775044
+MUSETT_T2_DSSD_X81_E -63.4693 0.00774158
+MUSETT_T2_DSSD_X82_E -63.6629 0.00776338
+MUSETT_T2_DSSD_X83_E -63.419 0.00773462
+MUSETT_T2_DSSD_X84_E -63.5625 0.00775087
+MUSETT_T2_DSSD_X85_E -64.3707 0.00785022
+MUSETT_T2_DSSD_X86_E -64.1999 0.00782862
+MUSETT_T2_DSSD_X87_E -64.0598 0.0078123
+MUSETT_T2_DSSD_X88_E -64.3996 0.00785195
+MUSETT_T2_DSSD_X89_E -63.2586 0.00771552
+MUSETT_T2_DSSD_X90_E -63.7169 0.0077721
+MUSETT_T2_DSSD_X91_E -63.3022 0.00772491
+MUSETT_T2_DSSD_X92_E -63.6661 0.00776698
+MUSETT_T2_DSSD_X93_E -63.3863 0.00773314
+MUSETT_T2_DSSD_X94_E -64.5447 0.00787516
+MUSETT_T2_DSSD_X95_E -64.0332 0.00780874
+MUSETT_T2_DSSD_X96_E -63.775 0.00777911
+MUSETT_T2_DSSD_X97_E -59.019 0.0072016
+MUSETT_T2_DSSD_X98_E -58.4069 0.00712773
+MUSETT_T2_DSSD_X99_E -58.2978 0.00711337
+MUSETT_T2_DSSD_X100_E -58.5285 0.00714353
+MUSETT_T2_DSSD_X101_E -59.2948 0.00723645
+MUSETT_T2_DSSD_X102_E -59.6459 0.00727401
+MUSETT_T2_DSSD_X103_E -58.6857 0.00716225
+MUSETT_T2_DSSD_X104_E -59.0033 0.00719967
+MUSETT_T2_DSSD_X105_E -58.9264 0.00719161
+MUSETT_T2_DSSD_X106_E -59.4858 0.00725265
+MUSETT_T2_DSSD_X107_E -58.7519 0.00716832
+MUSETT_T2_DSSD_X108_E -59.0331 0.00720173
+MUSETT_T2_DSSD_X109_E -59.0155 0.00719649
+MUSETT_T2_DSSD_X110_E -60.2759 0.00735525
+MUSETT_T2_DSSD_X111_E -59.0083 0.00719905
+MUSETT_T2_DSSD_X112_E -58.4919 0.00713902
+MUSETT_T2_DSSD_X113_E -59.3071 0.00723613
+MUSETT_T2_DSSD_X114_E -59.243 0.00722981
+MUSETT_T2_DSSD_X115_E -59.8876 0.00730493
+MUSETT_T2_DSSD_X116_E -59.0986 0.00721094
+MUSETT_T2_DSSD_X117_E -59.6857 0.00728175
+MUSETT_T2_DSSD_X118_E -60.0494 0.0073265
+MUSETT_T2_DSSD_X119_E -59.5067 0.00725986
+MUSETT_T2_DSSD_X120_E -59.3945 0.0072465
+MUSETT_T2_DSSD_X121_E -59.9528 0.00731699
+MUSETT_T2_DSSD_X122_E -58.6326 0.00715602
+MUSETT_T2_DSSD_X123_E -58.967 0.00719608
+MUSETT_T2_DSSD_X124_E -59.1874 0.00722373
+MUSETT_T2_DSSD_X125_E -58.8666 0.00718277
+MUSETT_T2_DSSD_X126_E -58.9483 0.00719295
+MUSETT_T2_DSSD_X127_E -59.211 0.00722381
+MUSETT_T2_DSSD_X128_E -59.1485 0.007219442
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..20618fb89cf2e49eae95d99759c4cbad1d78ed4f
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X1_E_Zero_Dispersion -0.272194
+MUSETT_T3_DSSD_X2_E_Zero_Dispersion -3.57484
+MUSETT_T3_DSSD_X3_E_Zero_Dispersion -4.78478
+MUSETT_T3_DSSD_X4_E_Zero_Dispersion -3.34246
+MUSETT_T3_DSSD_X5_E_Zero_Dispersion -4.42034
+MUSETT_T3_DSSD_X6_E_Zero_Dispersion -2.40323
+MUSETT_T3_DSSD_X7_E_Zero_Dispersion -3.56719
+MUSETT_T3_DSSD_X8_E_Zero_Dispersion -4.44476
+MUSETT_T3_DSSD_X9_E_Zero_Dispersion -4.29056
+MUSETT_T3_DSSD_X10_E_Zero_Dispersion -1.13362
+MUSETT_T3_DSSD_X11_E_Zero_Dispersion -4.13547
+MUSETT_T3_DSSD_X12_E_Zero_Dispersion -3.52441
+MUSETT_T3_DSSD_X13_E_Zero_Dispersion -2.27095
+MUSETT_T3_DSSD_X14_E_Zero_Dispersion -2.68251
+MUSETT_T3_DSSD_X15_E_Zero_Dispersion -0.195728
+MUSETT_T3_DSSD_X16_E_Zero_Dispersion -1.36364
+MUSETT_T3_DSSD_X17_E_Zero_Dispersion -1.39536
+MUSETT_T3_DSSD_X18_E_Zero_Dispersion -2.53981
+MUSETT_T3_DSSD_X19_E_Zero_Dispersion -5.15211
+MUSETT_T3_DSSD_X20_E_Zero_Dispersion -7.00928
+MUSETT_T3_DSSD_X21_E_Zero_Dispersion -6.49325
+MUSETT_T3_DSSD_X22_E_Zero_Dispersion -3.46926
+MUSETT_T3_DSSD_X23_E_Zero_Dispersion -4.25129
+MUSETT_T3_DSSD_X24_E_Zero_Dispersion -3.7358
+MUSETT_T3_DSSD_X25_E_Zero_Dispersion -2.60782
+MUSETT_T3_DSSD_X26_E_Zero_Dispersion -3.1108
+MUSETT_T3_DSSD_X27_E_Zero_Dispersion -1.61095
+MUSETT_T3_DSSD_X28_E_Zero_Dispersion -3.11692
+MUSETT_T3_DSSD_X29_E_Zero_Dispersion -4.54675
+MUSETT_T3_DSSD_X30_E_Zero_Dispersion -5.57507
+MUSETT_T3_DSSD_X31_E_Zero_Dispersion -1.97103
+MUSETT_T3_DSSD_X32_E_Zero_Dispersion 0.0507405
+MUSETT_T3_DSSD_X33_E_Zero_Dispersion -3.59308
+MUSETT_T3_DSSD_X34_E_Zero_Dispersion -3.44769
+MUSETT_T3_DSSD_X35_E_Zero_Dispersion -8.16984
+MUSETT_T3_DSSD_X36_E_Zero_Dispersion -4.99199
+MUSETT_T3_DSSD_X37_E_Zero_Dispersion -2.15116
+MUSETT_T3_DSSD_X38_E_Zero_Dispersion -4.20735
+MUSETT_T3_DSSD_X39_E_Zero_Dispersion -3.05659
+MUSETT_T3_DSSD_X40_E_Zero_Dispersion -4.67988
+MUSETT_T3_DSSD_X41_E_Zero_Dispersion -2.92491
+MUSETT_T3_DSSD_X42_E_Zero_Dispersion -2.42226
+MUSETT_T3_DSSD_X43_E_Zero_Dispersion -5.21746
+MUSETT_T3_DSSD_X44_E_Zero_Dispersion 0.477144
+MUSETT_T3_DSSD_X45_E_Zero_Dispersion -2.1261
+MUSETT_T3_DSSD_X46_E_Zero_Dispersion -1.11767
+MUSETT_T3_DSSD_X47_E_Zero_Dispersion -0.64482
+MUSETT_T3_DSSD_X48_E_Zero_Dispersion -2.74742
+MUSETT_T3_DSSD_X49_E_Zero_Dispersion -6.22693
+MUSETT_T3_DSSD_X50_E_Zero_Dispersion -2.24231
+MUSETT_T3_DSSD_X51_E_Zero_Dispersion -4.20288
+MUSETT_T3_DSSD_X52_E_Zero_Dispersion -1.5656
+MUSETT_T3_DSSD_X53_E_Zero_Dispersion -3.42217
+MUSETT_T3_DSSD_X54_E_Zero_Dispersion -3.38373
+MUSETT_T3_DSSD_X55_E_Zero_Dispersion -3.54143
+MUSETT_T3_DSSD_X56_E_Zero_Dispersion -5.92556
+MUSETT_T3_DSSD_X57_E_Zero_Dispersion -2.38321
+MUSETT_T3_DSSD_X58_E_Zero_Dispersion -3.50863
+MUSETT_T3_DSSD_X59_E_Zero_Dispersion -1.68054
+MUSETT_T3_DSSD_X60_E_Zero_Dispersion -4.98707
+MUSETT_T3_DSSD_X61_E_Zero_Dispersion -2.35383
+MUSETT_T3_DSSD_X62_E_Zero_Dispersion -3.46699
+MUSETT_T3_DSSD_X63_E_Zero_Dispersion -3.13198
+MUSETT_T3_DSSD_X64_E_Zero_Dispersion -0.735981
+MUSETT_T3_DSSD_X65_E_Zero_Dispersion -7.34884
+MUSETT_T3_DSSD_X66_E_Zero_Dispersion -2.733
+MUSETT_T3_DSSD_X67_E_Zero_Dispersion -3.52966
+MUSETT_T3_DSSD_X68_E_Zero_Dispersion -2.67818
+MUSETT_T3_DSSD_X69_E_Zero_Dispersion 8200.68
+MUSETT_T3_DSSD_X70_E_Zero_Dispersion -4.88533
+MUSETT_T3_DSSD_X71_E_Zero_Dispersion -4.34478
+MUSETT_T3_DSSD_X72_E_Zero_Dispersion -4.36081
+MUSETT_T3_DSSD_X73_E_Zero_Dispersion -3.62389
+MUSETT_T3_DSSD_X74_E_Zero_Dispersion -5.57414
+MUSETT_T3_DSSD_X75_E_Zero_Dispersion -5.10048
+MUSETT_T3_DSSD_X76_E_Zero_Dispersion -5.65346
+MUSETT_T3_DSSD_X77_E_Zero_Dispersion -3.25937
+MUSETT_T3_DSSD_X78_E_Zero_Dispersion -3.57589
+MUSETT_T3_DSSD_X79_E_Zero_Dispersion -1.77804
+MUSETT_T3_DSSD_X80_E_Zero_Dispersion -1.80417
+MUSETT_T3_DSSD_X81_E_Zero_Dispersion -6.49837
+MUSETT_T3_DSSD_X82_E_Zero_Dispersion -8.41806
+MUSETT_T3_DSSD_X83_E_Zero_Dispersion -7.36628
+MUSETT_T3_DSSD_X84_E_Zero_Dispersion -8.6958
+MUSETT_T3_DSSD_X85_E_Zero_Dispersion -7.8555
+MUSETT_T3_DSSD_X86_E_Zero_Dispersion -8.67096
+MUSETT_T3_DSSD_X87_E_Zero_Dispersion -7.86593
+MUSETT_T3_DSSD_X88_E_Zero_Dispersion -9.73612
+MUSETT_T3_DSSD_X89_E_Zero_Dispersion -6.86882
+MUSETT_T3_DSSD_X90_E_Zero_Dispersion -6.15759
+MUSETT_T3_DSSD_X91_E_Zero_Dispersion -2.54625
+MUSETT_T3_DSSD_X92_E_Zero_Dispersion -5.02406
+MUSETT_T3_DSSD_X93_E_Zero_Dispersion -4.70687
+MUSETT_T3_DSSD_X94_E_Zero_Dispersion -3.9826
+MUSETT_T3_DSSD_X95_E_Zero_Dispersion -8.18982
+MUSETT_T3_DSSD_X96_E_Zero_Dispersion -6.23549
+MUSETT_T3_DSSD_X97_E_Zero_Dispersion -3.26386
+MUSETT_T3_DSSD_X98_E_Zero_Dispersion -2.31023
+MUSETT_T3_DSSD_X99_E_Zero_Dispersion -3.52817
+MUSETT_T3_DSSD_X100_E_Zero_Dispersion -1.22212
+MUSETT_T3_DSSD_X101_E_Zero_Dispersion -1.91003
+MUSETT_T3_DSSD_X102_E_Zero_Dispersion -7.86838
+MUSETT_T3_DSSD_X103_E_Zero_Dispersion -1.75857
+MUSETT_T3_DSSD_X104_E_Zero_Dispersion -3.27153
+MUSETT_T3_DSSD_X105_E_Zero_Dispersion -1.77059
+MUSETT_T3_DSSD_X106_E_Zero_Dispersion -9.94726
+MUSETT_T3_DSSD_X107_E_Zero_Dispersion -4.05166
+MUSETT_T3_DSSD_X108_E_Zero_Dispersion -5.07817
+MUSETT_T3_DSSD_X109_E_Zero_Dispersion -8.59766
+MUSETT_T3_DSSD_X110_E_Zero_Dispersion -2.95256
+MUSETT_T3_DSSD_X111_E_Zero_Dispersion -4.68738
+MUSETT_T3_DSSD_X112_E_Zero_Dispersion -1.26695
+MUSETT_T3_DSSD_X113_E_Zero_Dispersion -3.96787
+MUSETT_T3_DSSD_X114_E_Zero_Dispersion -2.26424
+MUSETT_T3_DSSD_X115_E_Zero_Dispersion -6.23865
+MUSETT_T3_DSSD_X116_E_Zero_Dispersion -3.69418
+MUSETT_T3_DSSD_X117_E_Zero_Dispersion -4.60262
+MUSETT_T3_DSSD_X118_E_Zero_Dispersion -4.18733
+MUSETT_T3_DSSD_X119_E_Zero_Dispersion -4.68356
+MUSETT_T3_DSSD_X120_E_Zero_Dispersion -4.30828
+MUSETT_T3_DSSD_X121_E_Zero_Dispersion -1.65165
+MUSETT_T3_DSSD_X122_E_Zero_Dispersion -1.45627
+MUSETT_T3_DSSD_X123_E_Zero_Dispersion -2.32492
+MUSETT_T3_DSSD_X124_E_Zero_Dispersion -1.46822
+MUSETT_T3_DSSD_X125_E_Zero_Dispersion -3.52944
+MUSETT_T3_DSSD_X126_E_Zero_Dispersion -3.28717
+MUSETT_T3_DSSD_X127_E_Zero_Dispersion -4.64587
+MUSETT_T3_DSSD_X128_E_Zero_Dispersion -0.944562
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/latex/double_alpha_run_244_X_MM3_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/latex/double_alpha_run_244_X_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b268ca7a448fdfbc64e01b287dd8f1095639ef42
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/latex/double_alpha_run_244_X_MM3_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+69 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.25851
+
+Sigma fit sigma: 0.518519
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b8e9902c2040d7f915f407dcbf10e57ab64702b7
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X1_E -61.4344 0.00750796
+MUSETT_T3_DSSD_X2_E -60.9311 0.00744726
+MUSETT_T3_DSSD_X3_E -61.3152 0.00749341
+MUSETT_T3_DSSD_X4_E -61.4404 0.00750847
+MUSETT_T3_DSSD_X5_E -61.3511 0.00749425
+MUSETT_T3_DSSD_X6_E -61.1564 0.00747159
+MUSETT_T3_DSSD_X7_E -61.2654 0.00748535
+MUSETT_T3_DSSD_X8_E -60.9618 0.00744638
+MUSETT_T3_DSSD_X9_E -60.9521 0.00744771
+MUSETT_T3_DSSD_X10_E -61.3243 0.00748969
+MUSETT_T3_DSSD_X11_E -61.1676 0.00747118
+MUSETT_T3_DSSD_X12_E -62.3027 0.00760888
+MUSETT_T3_DSSD_X13_E -61.0781 0.00745987
+MUSETT_T3_DSSD_X14_E -61.2459 0.00748024
+MUSETT_T3_DSSD_X15_E -61.0256 0.00745258
+MUSETT_T3_DSSD_X16_E -62.0394 0.00757675
+MUSETT_T3_DSSD_X17_E -63.0618 0.00770125
+MUSETT_T3_DSSD_X18_E -62.549 0.0076384
+MUSETT_T3_DSSD_X19_E -62.3853 0.00761829
+MUSETT_T3_DSSD_X20_E -62.2692 0.00760521
+MUSETT_T3_DSSD_X21_E -62.1327 0.00758719
+MUSETT_T3_DSSD_X22_E -62.3744 0.00762015
+MUSETT_T3_DSSD_X23_E -63.0067 0.00769716
+MUSETT_T3_DSSD_X24_E -63.2836 0.00772789
+MUSETT_T3_DSSD_X25_E -61.9669 0.00757139
+MUSETT_T3_DSSD_X26_E -62.8285 0.00767525
+MUSETT_T3_DSSD_X27_E -62.7963 0.00767196
+MUSETT_T3_DSSD_X28_E -62.5152 0.00763828
+MUSETT_T3_DSSD_X29_E -62.678 0.00765939
+MUSETT_T3_DSSD_X30_E -62.7253 0.00766476
+MUSETT_T3_DSSD_X31_E -63.7153 0.00778588
+MUSETT_T3_DSSD_X32_E -62.5499 0.00764735
+MUSETT_T3_DSSD_X33_E -56.8213 0.00696677
+MUSETT_T3_DSSD_X34_E -56.7982 0.00696255
+MUSETT_T3_DSSD_X35_E -55.526 0.00681059
+MUSETT_T3_DSSD_X36_E -56.4154 0.00691009
+MUSETT_T3_DSSD_X37_E -56.4757 0.00692283
+MUSETT_T3_DSSD_X38_E -57.2453 0.00700874
+MUSETT_T3_DSSD_X39_E -57.0613 0.00699212
+MUSETT_T3_DSSD_X40_E -57.0886 0.00698759
+MUSETT_T3_DSSD_X41_E -57.7589 0.00706822
+MUSETT_T3_DSSD_X42_E -57.3428 0.0070182
+MUSETT_T3_DSSD_X43_E -57.7241 0.00706065
+MUSETT_T3_DSSD_X44_E 7.39123 0.851608
+MUSETT_T3_DSSD_X45_E -57.7224 0.00706052
+MUSETT_T3_DSSD_X46_E -58.2105 0.00711805
+MUSETT_T3_DSSD_X47_E -57.7339 0.00705913
+MUSETT_T3_DSSD_X48_E -58.3554 0.00713166
+MUSETT_T3_DSSD_X49_E -56.5837 0.00691576
+MUSETT_T3_DSSD_X50_E -56.257 0.00687717
+MUSETT_T3_DSSD_X51_E -55.8364 0.00682767
+MUSETT_T3_DSSD_X52_E -55.9874 0.00684895
+MUSETT_T3_DSSD_X53_E -55.4265 0.00678359
+MUSETT_T3_DSSD_X54_E -55.9351 0.00684516
+MUSETT_T3_DSSD_X55_E -55.2927 0.00676592
+MUSETT_T3_DSSD_X56_E -55.7086 0.00682041
+MUSETT_T3_DSSD_X57_E -56.235 0.00688176
+MUSETT_T3_DSSD_X58_E -54.8461 0.00671602
+MUSETT_T3_DSSD_X59_E -55.4902 0.00679944
+MUSETT_T3_DSSD_X60_E -55.0588 0.00674752
+MUSETT_T3_DSSD_X61_E -54.1771 0.00664112
+MUSETT_T3_DSSD_X62_E -54.5191 0.00668556
+MUSETT_T3_DSSD_X63_E -54.0062 0.00663013
+MUSETT_T3_DSSD_X64_E -53.5202 0.00657298
+MUSETT_T3_DSSD_X65_E -63.7555 0.00778507
+MUSETT_T3_DSSD_X66_E -63.3991 0.00774165
+MUSETT_T3_DSSD_X67_E -63.062 0.00770084
+MUSETT_T3_DSSD_X68_E -63.3627 0.00773595
+MUSETT_T3_DSSD_X69_E -63.2931 0.00772761
+MUSETT_T3_DSSD_X70_E -62.9059 0.00768021
+MUSETT_T3_DSSD_X71_E -63.8362 0.00779493
+MUSETT_T3_DSSD_X72_E -62.0544 0.00757796
+MUSETT_T3_DSSD_X73_E -62.2713 0.00760224
+MUSETT_T3_DSSD_X74_E -62.6003 0.00764373
+MUSETT_T3_DSSD_X75_E -62.7878 0.00766484
+MUSETT_T3_DSSD_X76_E -62.953 0.00768723
+MUSETT_T3_DSSD_X77_E -63.6786 0.00777506
+MUSETT_T3_DSSD_X78_E -61.9665 0.00756692
+MUSETT_T3_DSSD_X79_E -62.1503 0.00758847
+MUSETT_T3_DSSD_X80_E -62.6432 0.0076476
+MUSETT_T3_DSSD_X81_E -62.0631 0.00757748
+MUSETT_T3_DSSD_X82_E -62.3142 0.00760837
+MUSETT_T3_DSSD_X83_E -62.2456 0.0076
+MUSETT_T3_DSSD_X84_E -62.2345 0.00759733
+MUSETT_T3_DSSD_X85_E -61.7445 0.00753758
+MUSETT_T3_DSSD_X86_E -61.9859 0.00756955
+MUSETT_T3_DSSD_X87_E -61.9838 0.00756817
+MUSETT_T3_DSSD_X88_E -61.6506 0.00752898
+MUSETT_T3_DSSD_X89_E -61.8489 0.00755271
+MUSETT_T3_DSSD_X90_E -62.2366 0.00760022
+MUSETT_T3_DSSD_X91_E -61.9781 0.00756676
+MUSETT_T3_DSSD_X92_E -61.5129 0.00751273
+MUSETT_T3_DSSD_X93_E -62.2053 0.00759784
+MUSETT_T3_DSSD_X94_E -62.0013 0.00757199
+MUSETT_T3_DSSD_X95_E -61.8074 0.00754657
+MUSETT_T3_DSSD_X96_E -61.8809 0.0075563
+MUSETT_T3_DSSD_X97_E -55.7296 0.00680537
+MUSETT_T3_DSSD_X98_E -55.4005 0.00676761
+MUSETT_T3_DSSD_X99_E -54.8557 0.00669758
+MUSETT_T3_DSSD_X100_E -55.2366 0.00674709
+MUSETT_T3_DSSD_X101_E -55.5893 0.00678792
+MUSETT_T3_DSSD_X102_E -55.4701 0.00677435
+MUSETT_T3_DSSD_X103_E -55.4915 0.00677789
+MUSETT_T3_DSSD_X104_E -54.892 0.00670236
+MUSETT_T3_DSSD_X105_E -55.1963 0.00673947
+MUSETT_T3_DSSD_X106_E -55.5479 0.00678426
+MUSETT_T3_DSSD_X107_E -55.5634 0.00678306
+MUSETT_T3_DSSD_X108_E -55.4827 0.00677291
+MUSETT_T3_DSSD_X109_E -56.4925 0.00689605
+MUSETT_T3_DSSD_X110_E -55.8164 0.00681684
+MUSETT_T3_DSSD_X111_E -55.579 0.00678476
+MUSETT_T3_DSSD_X112_E -55.4701 0.00677075
+MUSETT_T3_DSSD_X113_E -57.0981 0.00697327
+MUSETT_T3_DSSD_X114_E -56.4556 0.00689535
+MUSETT_T3_DSSD_X115_E -57.1944 0.00698281
+MUSETT_T3_DSSD_X116_E -56.5164 0.00690203
+MUSETT_T3_DSSD_X117_E -68.2358 0.0083431
+MUSETT_T3_DSSD_X118_E -56.5714 0.00691135
+MUSETT_T3_DSSD_X119_E -56.8792 0.00694766
+MUSETT_T3_DSSD_X120_E -55.7309 0.00680731
+MUSETT_T3_DSSD_X121_E -56.3993 0.00688613
+MUSETT_T3_DSSD_X122_E -57.2433 0.00699377
+MUSETT_T3_DSSD_X123_E -57.1708 0.00698018
+MUSETT_T3_DSSD_X124_E -56.4433 0.00689599
+MUSETT_T3_DSSD_X125_E -57.2047 0.00698725
+MUSETT_T3_DSSD_X126_E -56.3667 0.00688249
+MUSETT_T3_DSSD_X127_E -57.3995 0.00700974
+MUSETT_T3_DSSD_X128_E -56.2814 0.00687093
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..9467a373b042d1abf6d1eab370731ae60f5b9e2b
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T4_DSSD_X1_E_Zero_Dispersion 9.43714
+MUSETT_T4_DSSD_X2_E_Zero_Dispersion 10.3151
+MUSETT_T4_DSSD_X3_E_Zero_Dispersion 9.45406
+MUSETT_T4_DSSD_X4_E_Zero_Dispersion 9.18506
+MUSETT_T4_DSSD_X5_E_Zero_Dispersion 5.57887
+MUSETT_T4_DSSD_X6_E_Zero_Dispersion 6.80755
+MUSETT_T4_DSSD_X7_E_Zero_Dispersion 7.29718
+MUSETT_T4_DSSD_X8_E_Zero_Dispersion 5.23075
+MUSETT_T4_DSSD_X9_E_Zero_Dispersion 7.9912
+MUSETT_T4_DSSD_X10_E_Zero_Dispersion 4.16206
+MUSETT_T4_DSSD_X11_E_Zero_Dispersion 4.86749
+MUSETT_T4_DSSD_X12_E_Zero_Dispersion 3.85003
+MUSETT_T4_DSSD_X13_E_Zero_Dispersion 4.43557
+MUSETT_T4_DSSD_X14_E_Zero_Dispersion 4.30789
+MUSETT_T4_DSSD_X15_E_Zero_Dispersion 3.47843
+MUSETT_T4_DSSD_X16_E_Zero_Dispersion 3.87588
+MUSETT_T4_DSSD_X17_E_Zero_Dispersion 3.48618
+MUSETT_T4_DSSD_X18_E_Zero_Dispersion 3.23736
+MUSETT_T4_DSSD_X19_E_Zero_Dispersion 3.11517
+MUSETT_T4_DSSD_X20_E_Zero_Dispersion 4.29254
+MUSETT_T4_DSSD_X21_E_Zero_Dispersion 2.83918
+MUSETT_T4_DSSD_X22_E_Zero_Dispersion 6.54141
+MUSETT_T4_DSSD_X23_E_Zero_Dispersion 6.2891
+MUSETT_T4_DSSD_X24_E_Zero_Dispersion 3.01035
+MUSETT_T4_DSSD_X25_E_Zero_Dispersion 7.64501
+MUSETT_T4_DSSD_X26_E_Zero_Dispersion 6.14988
+MUSETT_T4_DSSD_X27_E_Zero_Dispersion 6.82549
+MUSETT_T4_DSSD_X28_E_Zero_Dispersion 7.5375
+MUSETT_T4_DSSD_X29_E_Zero_Dispersion 8.83919
+MUSETT_T4_DSSD_X30_E_Zero_Dispersion 8.40668
+MUSETT_T4_DSSD_X31_E_Zero_Dispersion 8.56127
+MUSETT_T4_DSSD_X32_E_Zero_Dispersion 12.7163
+MUSETT_T4_DSSD_X33_E_Zero_Dispersion 35.9519
+MUSETT_T4_DSSD_X34_E_Zero_Dispersion 34.3338
+MUSETT_T4_DSSD_X35_E_Zero_Dispersion 39.1134
+MUSETT_T4_DSSD_X36_E_Zero_Dispersion 27.8005
+MUSETT_T4_DSSD_X37_E_Zero_Dispersion 34.1042
+MUSETT_T4_DSSD_X38_E_Zero_Dispersion 24.3036
+MUSETT_T4_DSSD_X39_E_Zero_Dispersion 31.1979
+MUSETT_T4_DSSD_X40_E_Zero_Dispersion 21.9896
+MUSETT_T4_DSSD_X41_E_Zero_Dispersion 20.3563
+MUSETT_T4_DSSD_X42_E_Zero_Dispersion 21.4134
+MUSETT_T4_DSSD_X43_E_Zero_Dispersion 16.5249
+MUSETT_T4_DSSD_X44_E_Zero_Dispersion 8200.68
+MUSETT_T4_DSSD_X45_E_Zero_Dispersion 16.6242
+MUSETT_T4_DSSD_X46_E_Zero_Dispersion 14.1255
+MUSETT_T4_DSSD_X47_E_Zero_Dispersion 13.3807
+MUSETT_T4_DSSD_X48_E_Zero_Dispersion 9.42373
+MUSETT_T4_DSSD_X49_E_Zero_Dispersion 10.1485
+MUSETT_T4_DSSD_X50_E_Zero_Dispersion 11.7371
+MUSETT_T4_DSSD_X51_E_Zero_Dispersion 14.0411
+MUSETT_T4_DSSD_X52_E_Zero_Dispersion 17.4005
+MUSETT_T4_DSSD_X53_E_Zero_Dispersion 21.3321
+MUSETT_T4_DSSD_X54_E_Zero_Dispersion 20.5253
+MUSETT_T4_DSSD_X55_E_Zero_Dispersion 19.7653
+MUSETT_T4_DSSD_X56_E_Zero_Dispersion 24.0834
+MUSETT_T4_DSSD_X57_E_Zero_Dispersion 20.4027
+MUSETT_T4_DSSD_X58_E_Zero_Dispersion 25.5444
+MUSETT_T4_DSSD_X59_E_Zero_Dispersion 30.9983
+MUSETT_T4_DSSD_X60_E_Zero_Dispersion 32.1426
+MUSETT_T4_DSSD_X61_E_Zero_Dispersion 34.1756
+MUSETT_T4_DSSD_X62_E_Zero_Dispersion 37.2374
+MUSETT_T4_DSSD_X63_E_Zero_Dispersion 46.4195
+MUSETT_T4_DSSD_X64_E_Zero_Dispersion 49.5439
+MUSETT_T4_DSSD_X65_E_Zero_Dispersion 2.54403
+MUSETT_T4_DSSD_X66_E_Zero_Dispersion 2.64722
+MUSETT_T4_DSSD_X67_E_Zero_Dispersion 3.02016
+MUSETT_T4_DSSD_X68_E_Zero_Dispersion 1.31956
+MUSETT_T4_DSSD_X69_E_Zero_Dispersion 1.48183
+MUSETT_T4_DSSD_X70_E_Zero_Dispersion 1.36036
+MUSETT_T4_DSSD_X71_E_Zero_Dispersion 2.54787
+MUSETT_T4_DSSD_X72_E_Zero_Dispersion 3.19439
+MUSETT_T4_DSSD_X73_E_Zero_Dispersion 0.815804
+MUSETT_T4_DSSD_X74_E_Zero_Dispersion 2.2367
+MUSETT_T4_DSSD_X75_E_Zero_Dispersion 0.333278
+MUSETT_T4_DSSD_X76_E_Zero_Dispersion 2.70478
+MUSETT_T4_DSSD_X77_E_Zero_Dispersion 1.88898
+MUSETT_T4_DSSD_X78_E_Zero_Dispersion 2.86848
+MUSETT_T4_DSSD_X79_E_Zero_Dispersion 1.90286
+MUSETT_T4_DSSD_X80_E_Zero_Dispersion 0.769777
+MUSETT_T4_DSSD_X81_E_Zero_Dispersion 1.53316
+MUSETT_T4_DSSD_X82_E_Zero_Dispersion 1.78934
+MUSETT_T4_DSSD_X83_E_Zero_Dispersion 1.7956
+MUSETT_T4_DSSD_X84_E_Zero_Dispersion 0.374982
+MUSETT_T4_DSSD_X85_E_Zero_Dispersion 0.447399
+MUSETT_T4_DSSD_X86_E_Zero_Dispersion 3.15039
+MUSETT_T4_DSSD_X87_E_Zero_Dispersion 1.93764
+MUSETT_T4_DSSD_X88_E_Zero_Dispersion 3.5625
+MUSETT_T4_DSSD_X89_E_Zero_Dispersion 3.03336
+MUSETT_T4_DSSD_X90_E_Zero_Dispersion 3.2148
+MUSETT_T4_DSSD_X91_E_Zero_Dispersion 1.15977
+MUSETT_T4_DSSD_X92_E_Zero_Dispersion 4.17241
+MUSETT_T4_DSSD_X93_E_Zero_Dispersion 4.77125
+MUSETT_T4_DSSD_X94_E_Zero_Dispersion 3.75748
+MUSETT_T4_DSSD_X95_E_Zero_Dispersion 1.86818
+MUSETT_T4_DSSD_X96_E_Zero_Dispersion 2.69147
+MUSETT_T4_DSSD_X97_E_Zero_Dispersion 2.94685
+MUSETT_T4_DSSD_X98_E_Zero_Dispersion 5.88338
+MUSETT_T4_DSSD_X99_E_Zero_Dispersion 1.62951
+MUSETT_T4_DSSD_X100_E_Zero_Dispersion 5.26274
+MUSETT_T4_DSSD_X101_E_Zero_Dispersion 2.55273
+MUSETT_T4_DSSD_X102_E_Zero_Dispersion 3.74598
+MUSETT_T4_DSSD_X103_E_Zero_Dispersion 4.8642
+MUSETT_T4_DSSD_X104_E_Zero_Dispersion 2.04672
+MUSETT_T4_DSSD_X105_E_Zero_Dispersion 2.00002
+MUSETT_T4_DSSD_X106_E_Zero_Dispersion 4.24525
+MUSETT_T4_DSSD_X107_E_Zero_Dispersion 0.510241
+MUSETT_T4_DSSD_X108_E_Zero_Dispersion 0.13569
+MUSETT_T4_DSSD_X109_E_Zero_Dispersion -0.00527578
+MUSETT_T4_DSSD_X110_E_Zero_Dispersion 3.98584
+MUSETT_T4_DSSD_X111_E_Zero_Dispersion 0.259296
+MUSETT_T4_DSSD_X112_E_Zero_Dispersion -0.602258
+MUSETT_T4_DSSD_X113_E_Zero_Dispersion 3.85513
+MUSETT_T4_DSSD_X114_E_Zero_Dispersion 4.51471
+MUSETT_T4_DSSD_X115_E_Zero_Dispersion 1.25465
+MUSETT_T4_DSSD_X116_E_Zero_Dispersion 3.63238
+MUSETT_T4_DSSD_X117_E_Zero_Dispersion 13.2951
+MUSETT_T4_DSSD_X118_E_Zero_Dispersion 6.71239
+MUSETT_T4_DSSD_X119_E_Zero_Dispersion 5.18727
+MUSETT_T4_DSSD_X120_E_Zero_Dispersion 5.07562
+MUSETT_T4_DSSD_X121_E_Zero_Dispersion 1.72684
+MUSETT_T4_DSSD_X122_E_Zero_Dispersion 7.10552
+MUSETT_T4_DSSD_X123_E_Zero_Dispersion 1.55087
+MUSETT_T4_DSSD_X124_E_Zero_Dispersion 7.0511
+MUSETT_T4_DSSD_X125_E_Zero_Dispersion 4.98496
+MUSETT_T4_DSSD_X126_E_Zero_Dispersion 2.12141
+MUSETT_T4_DSSD_X127_E_Zero_Dispersion 3.46279
+MUSETT_T4_DSSD_X128_E_Zero_Dispersion 0.731019
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/latex/double_alpha_run_244_X_MM4_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/latex/double_alpha_run_244_X_MM4_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2b328da3b288cd013ccc67870c591b23eee440cb
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/latex/double_alpha_run_244_X_MM4_E.tex
@@ -0,0 +1,72 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  4
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 4 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+33 &  zero extrapolation too high:35.9519channels;  \\ \hline 
+34 &  zero extrapolation too high:34.3338channels;  \\ \hline 
+35 &  zero extrapolation too high:39.1134channels;  \\ \hline 
+37 &  zero extrapolation too high:34.1042channels;  \\ \hline 
+39 &  zero extrapolation too high:31.1979channels;  \\ \hline 
+44 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+59 &  zero extrapolation too high:30.9983channels;  \\ \hline 
+60 &  zero extrapolation too high:32.1426channels;  \\ \hline 
+61 &  zero extrapolation too high:34.1756channels;  \\ \hline 
+62 &  zero extrapolation too high:37.2374channels;  \\ \hline 
+63 &  zero extrapolation too high:46.4195channels;  \\ \hline 
+64 &  zero extrapolation too high:49.5439channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM4_E/latex/pictures/Telescope4Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 1.94304
+
+Sigma fit sigma: 0.256664
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/peaks/Cal_Str_X_E_MM4.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_X_MM4_E/peaks/Cal_Str_X_E_MM4.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b6eb9970c8c803219b329c0168ce457398ffda3b
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,129 @@
+MUSETT_T0_DSSD_Y1_E 6.82575 -0.844837
+MUSETT_T0_DSSD_Y2_E 60.0305 -0.00732332
+MUSETT_T0_DSSD_Y3_E 60.4656 -0.00737752
+MUSETT_T0_DSSD_Y4_E 60.542 -0.00738408
+MUSETT_T0_DSSD_Y5_E 59.6447 -0.0072775
+MUSETT_T0_DSSD_Y6_E 59.7974 -0.00729656
+MUSETT_T0_DSSD_Y7_E 60.3772 -0.00736639
+MUSETT_T0_DSSD_Y8_E 60.1212 -0.00733684
+MUSETT_T0_DSSD_Y9_E 59.8625 -0.00730581
+MUSETT_T0_DSSD_Y10_E 59.496 -0.00725634
+MUSETT_T0_DSSD_Y11_E 59.9281 -0.00730956
+MUSETT_T0_DSSD_Y12_E 59.6043 -0.00727125
+MUSETT_T0_DSSD_Y13_E 60.4812 -0.00737889
+MUSETT_T0_DSSD_Y14_E 60.4433 -0.00737206
+MUSETT_T0_DSSD_Y15_E 60.6333 -0.00739619
+MUSETT_T0_DSSD_Y16_E 60.2417 -0.00734748
+MUSETT_T0_DSSD_Y17_E 59.7989 -0.00729235
+MUSETT_T0_DSSD_Y18_E 60.1387 -0.00733664
+MUSETT_T0_DSSD_Y19_E 59.8362 -0.00729822
+MUSETT_T0_DSSD_Y20_E 59.7958 -0.00729573
+MUSETT_T0_DSSD_Y21_E 59.8881 -0.00730571
+MUSETT_T0_DSSD_Y22_E 59.8897 -0.00730593
+MUSETT_T0_DSSD_Y23_E 59.8529 -0.0073019
+MUSETT_T0_DSSD_Y24_E 59.0455 -0.00719993
+MUSETT_T0_DSSD_Y25_E 59.7814 -0.00729341
+MUSETT_T0_DSSD_Y26_E 59.1099 -0.00720773
+MUSETT_T0_DSSD_Y27_E 59.6976 -0.00728338
+MUSETT_T0_DSSD_Y28_E 60.2085 -0.00734867
+MUSETT_T0_DSSD_Y29_E 59.5753 -0.00726912
+MUSETT_T0_DSSD_Y30_E 59.3138 -0.00723859
+MUSETT_T0_DSSD_Y31_E 59.3163 -0.00723493
+MUSETT_T0_DSSD_Y32_E 60.5241 -0.00738219
+MUSETT_T0_DSSD_Y33_E 56.2258 -0.00686009
+MUSETT_T0_DSSD_Y34_E 56.6532 -0.00691064
+MUSETT_T0_DSSD_Y35_E 56.2561 -0.00686504
+MUSETT_T0_DSSD_Y36_E 56.722 -0.0069207
+MUSETT_T0_DSSD_Y37_E 56.847 -0.00693147
+MUSETT_T0_DSSD_Y38_E 56.9544 -0.00694991
+MUSETT_T0_DSSD_Y39_E 56.134 -0.00684856
+MUSETT_T0_DSSD_Y40_E 56.0097 -0.00683111
+MUSETT_T0_DSSD_Y41_E 56.6694 -0.00691524
+MUSETT_T0_DSSD_Y42_E 56.2779 -0.00686313
+MUSETT_T0_DSSD_Y43_E 56.2253 -0.00685882
+MUSETT_T0_DSSD_Y44_E 56.1145 -0.00684532
+MUSETT_T0_DSSD_Y45_E 56.4761 -0.00688999
+MUSETT_T0_DSSD_Y46_E 56.4819 -0.00688879
+MUSETT_T0_DSSD_Y47_E 57.2404 -0.00698108
+MUSETT_T0_DSSD_Y48_E 56.2289 -0.00686101
+MUSETT_T0_DSSD_Y49_E 57.398 -0.00700506
+MUSETT_T0_DSSD_Y50_E 56.6208 -0.00690614
+MUSETT_T0_DSSD_Y51_E 56.4304 -0.00688429
+MUSETT_T0_DSSD_Y52_E 56.0271 -0.00683326
+MUSETT_T0_DSSD_Y53_E 56.7227 -0.00691907
+MUSETT_T0_DSSD_Y54_E 56.4653 -0.00688772
+MUSETT_T0_DSSD_Y55_E 56.1677 -0.00685025
+MUSETT_T0_DSSD_Y56_E 57.0927 -0.00696322
+MUSETT_T0_DSSD_Y57_E 56.9876 -0.00695253
+MUSETT_T0_DSSD_Y58_E 56.4869 -0.00689167
+MUSETT_T0_DSSD_Y59_E 56.5437 -0.00689688
+MUSETT_T0_DSSD_Y60_E 56.8763 -0.00693813
+MUSETT_T0_DSSD_Y61_E 56.7642 -0.00692306
+MUSETT_T0_DSSD_Y62_E 56.5536 -0.00689607
+MUSETT_T0_DSSD_Y63_E 57.0689 -0.00696044
+MUSETT_T0_DSSD_Y64_E 57.4824 -0.007011
+MUSETT_T0_DSSD_Y65_E 60.4372 -0.00737119
+MUSETT_T0_DSSD_Y66_E 60.7663 -0.0074137
+MUSETT_T0_DSSD_Y67_E 60.5292 -0.00738309
+MUSETT_T0_DSSD_Y68_E 60.9793 -0.00744018
+MUSETT_T0_DSSD_Y69_E 60.0308 -0.00732315
+MUSETT_T0_DSSD_Y70_E 60.9999 -0.00743892
+MUSETT_T0_DSSD_Y71_E 60.3109 -0.00735447
+MUSETT_T0_DSSD_Y72_E 59.935 -0.00731087
+MUSETT_T0_DSSD_Y73_E 61.1324 -0.0074552
+MUSETT_T0_DSSD_Y74_E 60.5495 -0.00738399
+MUSETT_T0_DSSD_Y75_E 60.5954 -0.0073903
+MUSETT_T0_DSSD_Y76_E 60.7486 -0.00740942
+MUSETT_T0_DSSD_Y77_E 60.1728 -0.00734104
+MUSETT_T0_DSSD_Y78_E 60.9903 -0.00744098
+MUSETT_T0_DSSD_Y79_E 61.279 -0.00747631
+MUSETT_T0_DSSD_Y80_E 60.4295 -0.00736811
+MUSETT_T0_DSSD_Y81_E 61.6075 -0.0075119
+MUSETT_T0_DSSD_Y82_E 60.614 -0.00739305
+MUSETT_T0_DSSD_Y83_E 60.9806 -0.00743603
+MUSETT_T0_DSSD_Y84_E 61.5583 -0.00750846
+MUSETT_T0_DSSD_Y85_E 60.4678 -0.00737414
+MUSETT_T0_DSSD_Y86_E 60.2097 -0.00734092
+MUSETT_T0_DSSD_Y87_E 61.2218 -0.00746599
+MUSETT_T0_DSSD_Y88_E 60.8157 -0.00741559
+MUSETT_T0_DSSD_Y89_E 60.5574 -0.00738398
+MUSETT_T0_DSSD_Y90_E 60.8627 -0.00742455
+MUSETT_T0_DSSD_Y91_E 60.5988 -0.00739044
+MUSETT_T0_DSSD_Y92_E 60.8428 -0.00741833
+MUSETT_T0_DSSD_Y93_E 61.1607 -0.00745558
+MUSETT_T0_DSSD_Y94_E 61.0983 -0.00745144
+MUSETT_T0_DSSD_Y95_E 61.8302 -0.0075415
+MUSETT_T0_DSSD_Y96_E 60.0553 -0.00731929
+MUSETT_T0_DSSD_Y97_E 55.7742 -0.00679946
+MUSETT_T0_DSSD_Y98_E 56.1832 -0.00685158
+MUSETT_T0_DSSD_Y99_E 56.152 -0.00684972
+MUSETT_T0_DSSD_Y100_E 55.912 -0.00681729
+MUSETT_T0_DSSD_Y101_E 55.6362 -0.00678371
+MUSETT_T0_DSSD_Y102_E 55.8572 -0.00681179
+MUSETT_T0_DSSD_Y103_E 55.486 -0.00676551
+MUSETT_T0_DSSD_Y104_E 55.885 -0.00681303
+MUSETT_T0_DSSD_Y105_E 56.4646 -0.00688688
+MUSETT_T0_DSSD_Y106_E 55.5213 -0.00677028
+MUSETT_T0_DSSD_Y107_E 56.5196 -0.00689244
+MUSETT_T0_DSSD_Y108_E 56.9227 -0.00694262
+MUSETT_T0_DSSD_Y109_E 56.1534 -0.00684992
+MUSETT_T0_DSSD_Y110_E 56.1398 -0.00684749
+MUSETT_T0_DSSD_Y111_E 56.3085 -0.00686958
+MUSETT_T0_DSSD_Y112_E 55.8333 -0.00680889
+MUSETT_T0_DSSD_Y113_E 56.4396 -0.00688391
+MUSETT_T0_DSSD_Y114_E 56.5463 -0.00689512
+MUSETT_T0_DSSD_Y115_E 56.5453 -0.00689864
+MUSETT_T0_DSSD_Y116_E 56.3018 -0.00686687
+MUSETT_T0_DSSD_Y117_E 56.705 -0.00691355
+MUSETT_T0_DSSD_Y118_E 56.201 -0.00685677
+MUSETT_T0_DSSD_Y119_E 55.7838 -0.00680077
+MUSETT_T0_DSSD_Y120_E 56.2447 -0.0068617
+MUSETT_T0_DSSD_Y121_E 56.8408 -0.00693173
+MUSETT_T0_DSSD_Y122_E 56.5297 -0.00689177
+MUSETT_T0_DSSD_Y123_E 56.1895 -0.00685299
+MUSETT_T0_DSSD_Y124_E 55.5455 -0.00677484
+MUSETT_T0_DSSD_Y125_E 55.8037 -0.00680289
+MUSETT_T0_DSSD_Y126_E 55.2461 -0.00673471
+MUSETT_T0_DSSD_Y127_E 56.4438 -0.00688289
+MUSETT_T0_DSSD_Y128_E 56.0716 -0.00683804
+0
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..318ba9987b5d4da82bdbcfd61fd4a701019ef34a
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X1_E_Zero_Dispersion 8183.92
+MUSETT_T1_DSSD_X2_E_Zero_Dispersion -5.17044
+MUSETT_T1_DSSD_X3_E_Zero_Dispersion -3.92847
+MUSETT_T1_DSSD_X4_E_Zero_Dispersion -6.99527
+MUSETT_T1_DSSD_X5_E_Zero_Dispersion -3.77063
+MUSETT_T1_DSSD_X6_E_Zero_Dispersion -3.28123
+MUSETT_T1_DSSD_X7_E_Zero_Dispersion -4.30523
+MUSETT_T1_DSSD_X8_E_Zero_Dispersion -2.42544
+MUSETT_T1_DSSD_X9_E_Zero_Dispersion -1.81463
+MUSETT_T1_DSSD_X10_E_Zero_Dispersion -7.16592
+MUSETT_T1_DSSD_X11_E_Zero_Dispersion -6.59667
+MUSETT_T1_DSSD_X12_E_Zero_Dispersion -5.2663
+MUSETT_T1_DSSD_X13_E_Zero_Dispersion -4.51215
+MUSETT_T1_DSSD_X14_E_Zero_Dispersion -6.97301
+MUSETT_T1_DSSD_X15_E_Zero_Dispersion -5.9137
+MUSETT_T1_DSSD_X16_E_Zero_Dispersion -6.95885
+MUSETT_T1_DSSD_X17_E_Zero_Dispersion -8.21584
+MUSETT_T1_DSSD_X18_E_Zero_Dispersion -5.03832
+MUSETT_T1_DSSD_X19_E_Zero_Dispersion -6.74204
+MUSETT_T1_DSSD_X20_E_Zero_Dispersion -4.0087
+MUSETT_T1_DSSD_X21_E_Zero_Dispersion -5.43692
+MUSETT_T1_DSSD_X22_E_Zero_Dispersion -5.40324
+MUSETT_T1_DSSD_X23_E_Zero_Dispersion -4.89198
+MUSETT_T1_DSSD_X24_E_Zero_Dispersion -8.84137
+MUSETT_T1_DSSD_X25_E_Zero_Dispersion -4.63797
+MUSETT_T1_DSSD_X26_E_Zero_Dispersion -8.90324
+MUSETT_T1_DSSD_X27_E_Zero_Dispersion -4.40912
+MUSETT_T1_DSSD_X28_E_Zero_Dispersion -1.11383
+MUSETT_T1_DSSD_X29_E_Zero_Dispersion -3.66571
+MUSETT_T1_DSSD_X30_E_Zero_Dispersion -2.10558
+MUSETT_T1_DSSD_X31_E_Zero_Dispersion -6.59864
+MUSETT_T1_DSSD_X32_E_Zero_Dispersion -6.67447
+MUSETT_T1_DSSD_X33_E_Zero_Dispersion -4.07185
+MUSETT_T1_DSSD_X34_E_Zero_Dispersion -5.96725
+MUSETT_T1_DSSD_X35_E_Zero_Dispersion -2.57858
+MUSETT_T1_DSSD_X36_E_Zero_Dispersion -3.98445
+MUSETT_T1_DSSD_X37_E_Zero_Dispersion -9.29023
+MUSETT_T1_DSSD_X38_E_Zero_Dispersion -2.99038
+MUSETT_T1_DSSD_X39_E_Zero_Dispersion -4.47744
+MUSETT_T1_DSSD_X40_E_Zero_Dispersion -7.21395
+MUSETT_T1_DSSD_X41_E_Zero_Dispersion -2.85691
+MUSETT_T1_DSSD_X42_E_Zero_Dispersion -8.03008
+MUSETT_T1_DSSD_X43_E_Zero_Dispersion -5.52405
+MUSETT_T1_DSSD_X44_E_Zero_Dispersion -5.50196
+MUSETT_T1_DSSD_X45_E_Zero_Dispersion -4.82071
+MUSETT_T1_DSSD_X46_E_Zero_Dispersion -7.09976
+MUSETT_T1_DSSD_X47_E_Zero_Dispersion -7.35468
+MUSETT_T1_DSSD_X48_E_Zero_Dispersion -3.43199
+MUSETT_T1_DSSD_X49_E_Zero_Dispersion -1.79955
+MUSETT_T1_DSSD_X50_E_Zero_Dispersion -6.61684
+MUSETT_T1_DSSD_X51_E_Zero_Dispersion -4.97747
+MUSETT_T1_DSSD_X52_E_Zero_Dispersion -7.18129
+MUSETT_T1_DSSD_X53_E_Zero_Dispersion -6.01197
+MUSETT_T1_DSSD_X54_E_Zero_Dispersion -5.97719
+MUSETT_T1_DSSD_X55_E_Zero_Dispersion -7.36041
+MUSETT_T1_DSSD_X56_E_Zero_Dispersion -7.17978
+MUSETT_T1_DSSD_X57_E_Zero_Dispersion -4.67205
+MUSETT_T1_DSSD_X58_E_Zero_Dispersion -4.40417
+MUSETT_T1_DSSD_X59_E_Zero_Dispersion -6.45299
+MUSETT_T1_DSSD_X60_E_Zero_Dispersion -5.64194
+MUSETT_T1_DSSD_X61_E_Zero_Dispersion -7.28262
+MUSETT_T1_DSSD_X62_E_Zero_Dispersion -8.83294
+MUSETT_T1_DSSD_X63_E_Zero_Dispersion -7.03943
+MUSETT_T1_DSSD_X64_E_Zero_Dispersion -6.87995
+MUSETT_T1_DSSD_X65_E_Zero_Dispersion -7.12
+MUSETT_T1_DSSD_X66_E_Zero_Dispersion -4.49207
+MUSETT_T1_DSSD_X67_E_Zero_Dispersion -6.36095
+MUSETT_T1_DSSD_X68_E_Zero_Dispersion -3.95364
+MUSETT_T1_DSSD_X69_E_Zero_Dispersion -5.40585
+MUSETT_T1_DSSD_X70_E_Zero_Dispersion -8.10005
+MUSETT_T1_DSSD_X71_E_Zero_Dispersion -8.57551
+MUSETT_T1_DSSD_X72_E_Zero_Dispersion -6.06378
+MUSETT_T1_DSSD_X73_E_Zero_Dispersion -7.96105
+MUSETT_T1_DSSD_X74_E_Zero_Dispersion -8.10179
+MUSETT_T1_DSSD_X75_E_Zero_Dispersion -7.31795
+MUSETT_T1_DSSD_X76_E_Zero_Dispersion -6.83977
+MUSETT_T1_DSSD_X77_E_Zero_Dispersion -4.77703
+MUSETT_T1_DSSD_X78_E_Zero_Dispersion -4.54183
+MUSETT_T1_DSSD_X79_E_Zero_Dispersion -4.41532
+MUSETT_T1_DSSD_X80_E_Zero_Dispersion -9.49729
+MUSETT_T1_DSSD_X81_E_Zero_Dispersion -9.32143
+MUSETT_T1_DSSD_X82_E_Zero_Dispersion -6.78535
+MUSETT_T1_DSSD_X83_E_Zero_Dispersion -8.69509
+MUSETT_T1_DSSD_X84_E_Zero_Dispersion -6.52163
+MUSETT_T1_DSSD_X85_E_Zero_Dispersion -7.98711
+MUSETT_T1_DSSD_X86_E_Zero_Dispersion -9.92926
+MUSETT_T1_DSSD_X87_E_Zero_Dispersion -8.09908
+MUSETT_T1_DSSD_X88_E_Zero_Dispersion -9.06084
+MUSETT_T1_DSSD_X89_E_Zero_Dispersion -9.19743
+MUSETT_T1_DSSD_X90_E_Zero_Dispersion -5.4875
+MUSETT_T1_DSSD_X91_E_Zero_Dispersion -7.61256
+MUSETT_T1_DSSD_X92_E_Zero_Dispersion -9.68182
+MUSETT_T1_DSSD_X93_E_Zero_Dispersion -11.3434
+MUSETT_T1_DSSD_X94_E_Zero_Dispersion -7.52494
+MUSETT_T1_DSSD_X95_E_Zero_Dispersion -6.66366
+MUSETT_T1_DSSD_X96_E_Zero_Dispersion -13.0664
+MUSETT_T1_DSSD_X97_E_Zero_Dispersion -10.7421
+MUSETT_T1_DSSD_X98_E_Zero_Dispersion -8.03092
+MUSETT_T1_DSSD_X99_E_Zero_Dispersion -5.70467
+MUSETT_T1_DSSD_X100_E_Zero_Dispersion -9.49564
+MUSETT_T1_DSSD_X101_E_Zero_Dispersion -9.43986
+MUSETT_T1_DSSD_X102_E_Zero_Dispersion -8.07489
+MUSETT_T1_DSSD_X103_E_Zero_Dispersion -9.29445
+MUSETT_T1_DSSD_X104_E_Zero_Dispersion -10.6584
+MUSETT_T1_DSSD_X105_E_Zero_Dispersion -6.86707
+MUSETT_T1_DSSD_X106_E_Zero_Dispersion -8.73563
+MUSETT_T1_DSSD_X107_E_Zero_Dispersion -8.23037
+MUSETT_T1_DSSD_X108_E_Zero_Dispersion -7.02417
+MUSETT_T1_DSSD_X109_E_Zero_Dispersion -5.66842
+MUSETT_T1_DSSD_X110_E_Zero_Dispersion -6.59401
+MUSETT_T1_DSSD_X111_E_Zero_Dispersion -4.7843
+MUSETT_T1_DSSD_X112_E_Zero_Dispersion -8.05371
+MUSETT_T1_DSSD_X113_E_Zero_Dispersion -6.76558
+MUSETT_T1_DSSD_X114_E_Zero_Dispersion -8.92279
+MUSETT_T1_DSSD_X115_E_Zero_Dispersion -4.59212
+MUSETT_T1_DSSD_X116_E_Zero_Dispersion -7.04071
+MUSETT_T1_DSSD_X117_E_Zero_Dispersion -10.0125
+MUSETT_T1_DSSD_X118_E_Zero_Dispersion -4.43158
+MUSETT_T1_DSSD_X119_E_Zero_Dispersion -10.5822
+MUSETT_T1_DSSD_X120_E_Zero_Dispersion -4.90309
+MUSETT_T1_DSSD_X121_E_Zero_Dispersion -8.08149
+MUSETT_T1_DSSD_X122_E_Zero_Dispersion -10.5025
+MUSETT_T1_DSSD_X123_E_Zero_Dispersion -7.25654
+MUSETT_T1_DSSD_X124_E_Zero_Dispersion -6.79145
+MUSETT_T1_DSSD_X125_E_Zero_Dispersion -10.95
+MUSETT_T1_DSSD_X126_E_Zero_Dispersion -11.1871
+MUSETT_T1_DSSD_X127_E_Zero_Dispersion -8.59784
+MUSETT_T1_DSSD_X128_E_Zero_Dispersion -7.95412
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/latex/double_alpha_run_244_Y_MM1_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/latex/double_alpha_run_244_Y_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..eec190f7d97791444a4ab3d075ec214dee739b61
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/latex/double_alpha_run_244_Y_MM1_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+1 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.017
+
+Sigma fit sigma: 0.189688
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..02b23fc2e880a8cad066a6062960ca364af00c13
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,129 @@
+MUSETT_T1_DSSD_Y1_E 59.5705 -0.00727398
+MUSETT_T1_DSSD_Y2_E 60.2151 -0.00734888
+MUSETT_T1_DSSD_Y3_E 59.57 -0.00727192
+MUSETT_T1_DSSD_Y4_E 59.201 -0.00722713
+MUSETT_T1_DSSD_Y5_E 60.1046 -0.00733734
+MUSETT_T1_DSSD_Y6_E 59.9026 -0.00731246
+MUSETT_T1_DSSD_Y7_E 59.388 -0.0072511
+MUSETT_T1_DSSD_Y8_E 59.1918 -0.0072224
+MUSETT_T1_DSSD_Y9_E 59.376 -0.0072489
+MUSETT_T1_DSSD_Y10_E 59.7253 -0.00729359
+MUSETT_T1_DSSD_Y11_E 16.0752 -0.00119596
+MUSETT_T1_DSSD_Y12_E 59.4842 -0.00726278
+MUSETT_T1_DSSD_Y13_E 60.0605 -0.00733142
+MUSETT_T1_DSSD_Y14_E 59.206 -0.00722921
+MUSETT_T1_DSSD_Y15_E 59.2192 -0.00722769
+MUSETT_T1_DSSD_Y16_E 59.6695 -0.00728356
+MUSETT_T1_DSSD_Y17_E 62.1482 -0.00758802
+MUSETT_T1_DSSD_Y18_E 62.2753 -0.0076006
+MUSETT_T1_DSSD_Y19_E 62.195 -0.00758977
+MUSETT_T1_DSSD_Y20_E 61.9362 -0.00756177
+MUSETT_T1_DSSD_Y21_E 61.7663 -0.00753461
+MUSETT_T1_DSSD_Y22_E 61.9215 -0.0075538
+MUSETT_T1_DSSD_Y23_E 6.82575 -0.844837
+MUSETT_T1_DSSD_Y24_E 61.8655 -0.00755191
+MUSETT_T1_DSSD_Y25_E 61.3176 -0.00748082
+MUSETT_T1_DSSD_Y26_E 61.2588 -0.00747669
+MUSETT_T1_DSSD_Y27_E 62.0872 -0.00758225
+MUSETT_T1_DSSD_Y28_E 61.8438 -0.00754851
+MUSETT_T1_DSSD_Y29_E 62.3111 -0.00760852
+MUSETT_T1_DSSD_Y30_E 61.8994 -0.00755587
+MUSETT_T1_DSSD_Y31_E 61.7287 -0.00753818
+MUSETT_T1_DSSD_Y32_E 61.5036 -0.007505
+MUSETT_T1_DSSD_Y33_E 55.8776 -0.00681857
+MUSETT_T1_DSSD_Y34_E 56.3128 -0.00687709
+MUSETT_T1_DSSD_Y35_E 55.5307 -0.00677956
+MUSETT_T1_DSSD_Y36_E 55.4016 -0.00676073
+MUSETT_T1_DSSD_Y37_E 53.1921 -0.00645194
+MUSETT_T1_DSSD_Y38_E 56.1812 -0.00685751
+MUSETT_T1_DSSD_Y39_E 55.196 -0.00673652
+MUSETT_T1_DSSD_Y40_E 55.6469 -0.00679102
+MUSETT_T1_DSSD_Y41_E 56.181 -0.00686375
+MUSETT_T1_DSSD_Y42_E 55.9769 -0.00683292
+MUSETT_T1_DSSD_Y43_E 55.3257 -0.00675247
+MUSETT_T1_DSSD_Y44_E 56.3504 -0.00687658
+MUSETT_T1_DSSD_Y45_E 55.5227 -0.00677836
+MUSETT_T1_DSSD_Y46_E 55.5291 -0.00677773
+MUSETT_T1_DSSD_Y47_E 55.5286 -0.00677689
+MUSETT_T1_DSSD_Y48_E 55.5031 -0.00677406
+MUSETT_T1_DSSD_Y49_E 57.0121 -0.00695828
+MUSETT_T1_DSSD_Y50_E 56.396 -0.0068824
+MUSETT_T1_DSSD_Y51_E 56.0249 -0.00683191
+MUSETT_T1_DSSD_Y52_E 55.6123 -0.00678369
+MUSETT_T1_DSSD_Y53_E 56.6957 -0.00692135
+MUSETT_T1_DSSD_Y54_E 55.743 -0.00679812
+MUSETT_T1_DSSD_Y55_E 56.5408 -0.00690599
+MUSETT_T1_DSSD_Y56_E 55.9616 -0.00682548
+MUSETT_T1_DSSD_Y57_E 56.9111 -0.00694268
+MUSETT_T1_DSSD_Y58_E 56.8826 -0.00694298
+MUSETT_T1_DSSD_Y59_E 56.2912 -0.00686755
+MUSETT_T1_DSSD_Y60_E 56.9681 -0.0069508
+MUSETT_T1_DSSD_Y61_E 57.2803 -0.00699287
+MUSETT_T1_DSSD_Y62_E 56.6306 -0.00690811
+MUSETT_T1_DSSD_Y63_E 56.0755 -0.00684657
+MUSETT_T1_DSSD_Y64_E 57.1404 -0.00697566
+MUSETT_T1_DSSD_Y65_E 60.8642 -0.00742914
+MUSETT_T1_DSSD_Y66_E 61.5287 -0.00751148
+MUSETT_T1_DSSD_Y67_E 61.1786 -0.00746816
+MUSETT_T1_DSSD_Y68_E 61.452 -0.00750172
+MUSETT_T1_DSSD_Y69_E 61.0464 -0.00745119
+MUSETT_T1_DSSD_Y70_E 59.8503 -0.00730518
+MUSETT_T1_DSSD_Y71_E 60.1717 -0.00734174
+MUSETT_T1_DSSD_Y72_E 60.9194 -0.0074351
+MUSETT_T1_DSSD_Y73_E 60.1838 -0.00734734
+MUSETT_T1_DSSD_Y74_E 60.9926 -0.00744338
+MUSETT_T1_DSSD_Y75_E 60.6965 -0.00740912
+MUSETT_T1_DSSD_Y76_E 60.1709 -0.00734455
+MUSETT_T1_DSSD_Y77_E 60.3451 -0.00736622
+MUSETT_T1_DSSD_Y78_E 60.8982 -0.00743519
+MUSETT_T1_DSSD_Y79_E 60.4023 -0.00737177
+MUSETT_T1_DSSD_Y80_E 61.1521 -0.00746358
+MUSETT_T1_DSSD_Y81_E 60.839 -0.00742397
+MUSETT_T1_DSSD_Y82_E 60.8305 -0.00742279
+MUSETT_T1_DSSD_Y83_E 60.8257 -0.00742368
+MUSETT_T1_DSSD_Y84_E 60.2943 -0.00735897
+MUSETT_T1_DSSD_Y85_E 60.1703 -0.0073422
+MUSETT_T1_DSSD_Y86_E 61.2194 -0.00747585
+MUSETT_T1_DSSD_Y87_E 60.6736 -0.00740962
+MUSETT_T1_DSSD_Y88_E 60.444 -0.00737797
+MUSETT_T1_DSSD_Y89_E 60.9583 -0.00744118
+MUSETT_T1_DSSD_Y90_E 61.1705 -0.00746654
+MUSETT_T1_DSSD_Y91_E 60.3498 -0.00736287
+MUSETT_T1_DSSD_Y92_E 60.6395 -0.00740081
+MUSETT_T1_DSSD_Y93_E 60.1318 -0.00733569
+MUSETT_T1_DSSD_Y94_E 61.2877 -0.00748294
+MUSETT_T1_DSSD_Y95_E 61.2431 -0.00747224
+MUSETT_T1_DSSD_Y96_E 60.4303 -0.00737412
+MUSETT_T1_DSSD_Y97_E 55.8061 -0.00681283
+MUSETT_T1_DSSD_Y98_E 55.4171 -0.00676627
+MUSETT_T1_DSSD_Y99_E 55.7214 -0.00680459
+MUSETT_T1_DSSD_Y100_E 55.2639 -0.00674314
+MUSETT_T1_DSSD_Y101_E 55.6849 -0.00679758
+MUSETT_T1_DSSD_Y102_E 55.3177 -0.00675153
+MUSETT_T1_DSSD_Y103_E 55.378 -0.00676143
+MUSETT_T1_DSSD_Y104_E 56.0478 -0.00684278
+MUSETT_T1_DSSD_Y105_E 55.1499 -0.00673191
+MUSETT_T1_DSSD_Y106_E 55.1058 -0.00672629
+MUSETT_T1_DSSD_Y107_E 55.8368 -0.00681743
+MUSETT_T1_DSSD_Y108_E 55.2548 -0.00674814
+MUSETT_T1_DSSD_Y109_E 55.6596 -0.00679294
+MUSETT_T1_DSSD_Y110_E 55.9243 -0.00682591
+MUSETT_T1_DSSD_Y111_E 56.0708 -0.00684616
+MUSETT_T1_DSSD_Y112_E 56.3903 -0.00688352
+MUSETT_T1_DSSD_Y113_E 54.7069 -0.00667838
+MUSETT_T1_DSSD_Y114_E 55.2602 -0.00674283
+MUSETT_T1_DSSD_Y115_E 55.0071 -0.00671389
+MUSETT_T1_DSSD_Y116_E 55.0806 -0.00672618
+MUSETT_T1_DSSD_Y117_E 55.1102 -0.00672804
+MUSETT_T1_DSSD_Y118_E 55.3182 -0.00675322
+MUSETT_T1_DSSD_Y119_E 55.1394 -0.00673094
+MUSETT_T1_DSSD_Y120_E 55.5783 -0.00678642
+MUSETT_T1_DSSD_Y121_E 55.6557 -0.00679265
+MUSETT_T1_DSSD_Y122_E 55.3764 -0.00676029
+MUSETT_T1_DSSD_Y123_E 54.6315 -0.00666751
+MUSETT_T1_DSSD_Y124_E 55.0287 -0.00671759
+MUSETT_T1_DSSD_Y125_E 55.0921 -0.00672524
+MUSETT_T1_DSSD_Y126_E 55.0536 -0.00671929
+MUSETT_T1_DSSD_Y127_E 55.165 -0.00673334
+MUSETT_T1_DSSD_Y128_E 56.1067 -0.00684803
+1
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..e618b3e89fa3f4466cb835dcf8f40712192b1207
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X1_E_Zero_Dispersion 2.46658
+MUSETT_T2_DSSD_X2_E_Zero_Dispersion -1.78382
+MUSETT_T2_DSSD_X3_E_Zero_Dispersion 0.215451
+MUSETT_T2_DSSD_X4_E_Zero_Dispersion 0.495236
+MUSETT_T2_DSSD_X5_E_Zero_Dispersion 0.3988
+MUSETT_T2_DSSD_X6_E_Zero_Dispersion 0.157444
+MUSETT_T2_DSSD_X7_E_Zero_Dispersion 1.7836
+MUSETT_T2_DSSD_X8_E_Zero_Dispersion -3.58366
+MUSETT_T2_DSSD_X9_E_Zero_Dispersion 0.966967
+MUSETT_T2_DSSD_X10_E_Zero_Dispersion 3.25767
+MUSETT_T2_DSSD_X11_E_Zero_Dispersion -5249.29
+MUSETT_T2_DSSD_X12_E_Zero_Dispersion 1.72085
+MUSETT_T2_DSSD_X13_E_Zero_Dispersion -0.211809
+MUSETT_T2_DSSD_X14_E_Zero_Dispersion 2.17294
+MUSETT_T2_DSSD_X15_E_Zero_Dispersion -1.38534
+MUSETT_T2_DSSD_X16_E_Zero_Dispersion -0.356436
+MUSETT_T2_DSSD_X17_E_Zero_Dispersion 1.69495
+MUSETT_T2_DSSD_X18_E_Zero_Dispersion -1.47987
+MUSETT_T2_DSSD_X19_E_Zero_Dispersion -2.58605
+MUSETT_T2_DSSD_X20_E_Zero_Dispersion 1.30178
+MUSETT_T2_DSSD_X21_E_Zero_Dispersion -5.66889
+MUSETT_T2_DSSD_X22_E_Zero_Dispersion -5.4075
+MUSETT_T2_DSSD_X23_E_Zero_Dispersion 8183.92
+MUSETT_T2_DSSD_X24_E_Zero_Dispersion -0.038001
+MUSETT_T2_DSSD_X25_E_Zero_Dispersion -4.63427
+MUSETT_T2_DSSD_X26_E_Zero_Dispersion -1.29601
+MUSETT_T2_DSSD_X27_E_Zero_Dispersion 3.51474
+MUSETT_T2_DSSD_X28_E_Zero_Dispersion -0.85752
+MUSETT_T2_DSSD_X29_E_Zero_Dispersion 2.35036
+MUSETT_T2_DSSD_X30_E_Zero_Dispersion -0.227067
+MUSETT_T2_DSSD_X31_E_Zero_Dispersion 3.20144
+MUSETT_T2_DSSD_X32_E_Zero_Dispersion -3.01983
+MUSETT_T2_DSSD_X33_E_Zero_Dispersion -2.90432
+MUSETT_T2_DSSD_X34_E_Zero_Dispersion 3.53618
+MUSETT_T2_DSSD_X35_E_Zero_Dispersion 1.10118
+MUSETT_T2_DSSD_X36_E_Zero_Dispersion -2.62621
+MUSETT_T2_DSSD_X37_E_Zero_Dispersion -52.3637
+MUSETT_T2_DSSD_X38_E_Zero_Dispersion -0.653989
+MUSETT_T2_DSSD_X39_E_Zero_Dispersion -1.53764
+MUSETT_T2_DSSD_X40_E_Zero_Dispersion -2.18515
+MUSETT_T2_DSSD_X41_E_Zero_Dispersion 6.82292
+MUSETT_T2_DSSD_X42_E_Zero_Dispersion -0.243571
+MUSETT_T2_DSSD_X43_E_Zero_Dispersion -1.39854
+MUSETT_T2_DSSD_X44_E_Zero_Dispersion -2.54148
+MUSETT_T2_DSSD_X45_E_Zero_Dispersion 0.824955
+MUSETT_T2_DSSD_X46_E_Zero_Dispersion -0.881018
+MUSETT_T2_DSSD_X47_E_Zero_Dispersion -1.82214
+MUSETT_T2_DSSD_X48_E_Zero_Dispersion -1.46902
+MUSETT_T2_DSSD_X49_E_Zero_Dispersion -1.42389
+MUSETT_T2_DSSD_X50_E_Zero_Dispersion -2.23688
+MUSETT_T2_DSSD_X51_E_Zero_Dispersion -8.47943
+MUSETT_T2_DSSD_X52_E_Zero_Dispersion -5.93955
+MUSETT_T2_DSSD_X53_E_Zero_Dispersion 0.583184
+MUSETT_T2_DSSD_X54_E_Zero_Dispersion -7.77127
+MUSETT_T2_DSSD_X55_E_Zero_Dispersion 4.7839
+MUSETT_T2_DSSD_X56_E_Zero_Dispersion -6.91851
+MUSETT_T2_DSSD_X57_E_Zero_Dispersion -5.27507
+MUSETT_T2_DSSD_X58_E_Zero_Dispersion -0.825614
+MUSETT_T2_DSSD_X59_E_Zero_Dispersion -4.69548
+MUSETT_T2_DSSD_X60_E_Zero_Dispersion -3.90577
+MUSETT_T2_DSSD_X61_E_Zero_Dispersion 0.756766
+MUSETT_T2_DSSD_X62_E_Zero_Dispersion -5.70142
+MUSETT_T2_DSSD_X63_E_Zero_Dispersion 1.69226
+MUSETT_T2_DSSD_X64_E_Zero_Dispersion 0.602726
+MUSETT_T2_DSSD_X65_E_Zero_Dispersion -0.629055
+MUSETT_T2_DSSD_X66_E_Zero_Dispersion 0.701984
+MUSETT_T2_DSSD_X67_E_Zero_Dispersion 0.0711705
+MUSETT_T2_DSSD_X68_E_Zero_Dispersion 0.286164
+MUSETT_T2_DSSD_X69_E_Zero_Dispersion -0.834185
+MUSETT_T2_DSSD_X70_E_Zero_Dispersion -0.854994
+MUSETT_T2_DSSD_X71_E_Zero_Dispersion -3.83721
+MUSETT_T2_DSSD_X72_E_Zero_Dispersion -1.48499
+MUSETT_T2_DSSD_X73_E_Zero_Dispersion 0.764159
+MUSETT_T2_DSSD_X74_E_Zero_Dispersion -2.20543
+MUSETT_T2_DSSD_X75_E_Zero_Dispersion -0.135162
+MUSETT_T2_DSSD_X76_E_Zero_Dispersion -0.598422
+MUSETT_T2_DSSD_X77_E_Zero_Dispersion -0.136367
+MUSETT_T2_DSSD_X78_E_Zero_Dispersion 1.45911
+MUSETT_T2_DSSD_X79_E_Zero_Dispersion -1.73055
+MUSETT_T2_DSSD_X80_E_Zero_Dispersion -1.39263
+MUSETT_T2_DSSD_X81_E_Zero_Dispersion -2.94408
+MUSETT_T2_DSSD_X82_E_Zero_Dispersion -3.10204
+MUSETT_T2_DSSD_X83_E_Zero_Dispersion -1.47031
+MUSETT_T2_DSSD_X84_E_Zero_Dispersion -1.30554
+MUSETT_T2_DSSD_X85_E_Zero_Dispersion -3.13034
+MUSETT_T2_DSSD_X86_E_Zero_Dispersion 3.0528
+MUSETT_T2_DSSD_X87_E_Zero_Dispersion 3.5033
+MUSETT_T2_DSSD_X88_E_Zero_Dispersion -0.496354
+MUSETT_T2_DSSD_X89_E_Zero_Dispersion -0.0103355
+MUSETT_T2_DSSD_X90_E_Zero_Dispersion -0.60827
+MUSETT_T2_DSSD_X91_E_Zero_Dispersion -4.50448
+MUSETT_T2_DSSD_X92_E_Zero_Dispersion -1.62803
+MUSETT_T2_DSSD_X93_E_Zero_Dispersion -5.15821
+MUSETT_T2_DSSD_X94_E_Zero_Dispersion 1.6757
+MUSETT_T2_DSSD_X95_E_Zero_Dispersion -4.09057
+MUSETT_T2_DSSD_X96_E_Zero_Dispersion -2.91394
+MUSETT_T2_DSSD_X97_E_Zero_Dispersion 0.674579
+MUSETT_T2_DSSD_X98_E_Zero_Dispersion 1.79696
+MUSETT_T2_DSSD_X99_E_Zero_Dispersion 3.20238
+MUSETT_T2_DSSD_X100_E_Zero_Dispersion -3.57047
+MUSETT_T2_DSSD_X101_E_Zero_Dispersion 0.12868
+MUSETT_T2_DSSD_X102_E_Zero_Dispersion -1.36355
+MUSETT_T2_DSSD_X103_E_Zero_Dispersion 1.71917
+MUSETT_T2_DSSD_X104_E_Zero_Dispersion 1.21368
+MUSETT_T2_DSSD_X105_E_Zero_Dispersion -0.316078
+MUSETT_T2_DSSD_X106_E_Zero_Dispersion -0.596855
+MUSETT_T2_DSSD_X107_E_Zero_Dispersion 1.69928
+MUSETT_T2_DSSD_X108_E_Zero_Dispersion 3.844
+MUSETT_T2_DSSD_X109_E_Zero_Dispersion -1.7394
+MUSETT_T2_DSSD_X110_E_Zero_Dispersion -0.947143
+MUSETT_T2_DSSD_X111_E_Zero_Dispersion 1.89807
+MUSETT_T2_DSSD_X112_E_Zero_Dispersion -0.0740967
+MUSETT_T2_DSSD_X113_E_Zero_Dispersion 0.361099
+MUSETT_T2_DSSD_X114_E_Zero_Dispersion -3.39836
+MUSETT_T2_DSSD_X115_E_Zero_Dispersion -1.03134
+MUSETT_T2_DSSD_X116_E_Zero_Dispersion 3.01242
+MUSETT_T2_DSSD_X117_E_Zero_Dispersion 0.878279
+MUSETT_T2_DSSD_X118_E_Zero_Dispersion 0.617765
+MUSETT_T2_DSSD_X119_E_Zero_Dispersion 0.0589642
+MUSETT_T2_DSSD_X120_E_Zero_Dispersion 2.36366
+MUSETT_T2_DSSD_X121_E_Zero_Dispersion -1.52548
+MUSETT_T2_DSSD_X122_E_Zero_Dispersion 0.580297
+MUSETT_T2_DSSD_X123_E_Zero_Dispersion -1.6797
+MUSETT_T2_DSSD_X124_E_Zero_Dispersion 0.263346
+MUSETT_T2_DSSD_X125_E_Zero_Dispersion 0.151479
+MUSETT_T2_DSSD_X126_E_Zero_Dispersion -1.36217
+MUSETT_T2_DSSD_X127_E_Zero_Dispersion -0.8161
+MUSETT_T2_DSSD_X128_E_Zero_Dispersion -1.12133
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/latex/double_alpha_run_244_Y_MM2_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/latex/double_alpha_run_244_Y_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..cd8829c73ed39fd04665446fa68b71f36146ae8b
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/latex/double_alpha_run_244_Y_MM2_E.tex
@@ -0,0 +1,63 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+11 &  zero extrapolation too high:-5249.29channels;  \\ \hline 
+23 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+37 &  zero extrapolation too high:-52.3637channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.32869
+
+Sigma fit sigma: 0.445892
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..89ff961585b7392e84ac6a282c62ea9e8f8540bc
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y1_E 62.9696 -0.00768446
+MUSETT_T2_DSSD_Y2_E 63.6646 -0.00776718
+MUSETT_T2_DSSD_Y3_E 62.408 -0.00761735
+MUSETT_T2_DSSD_Y4_E 63.2424 -0.00771872
+MUSETT_T2_DSSD_Y5_E 62.6675 -0.00764504
+MUSETT_T2_DSSD_Y6_E 62.6087 -0.00764254
+MUSETT_T2_DSSD_Y7_E 62.8947 -0.00767579
+MUSETT_T2_DSSD_Y8_E 62.5261 -0.00763211
+MUSETT_T2_DSSD_Y9_E 62.528 -0.00762973
+MUSETT_T2_DSSD_Y10_E 63.2307 -0.00771667
+MUSETT_T2_DSSD_Y11_E 62.6418 -0.00764334
+MUSETT_T2_DSSD_Y12_E 62.3872 -0.00761368
+MUSETT_T2_DSSD_Y13_E 61.8591 -0.00754885
+MUSETT_T2_DSSD_Y14_E 62.4679 -0.00762255
+MUSETT_T2_DSSD_Y15_E 62.7008 -0.00765026
+MUSETT_T2_DSSD_Y16_E 63.3551 -0.00773223
+MUSETT_T2_DSSD_Y17_E 61.3352 -0.00748234
+MUSETT_T2_DSSD_Y18_E 60.5521 -0.00738515
+MUSETT_T2_DSSD_Y19_E 60.5685 -0.00739241
+MUSETT_T2_DSSD_Y20_E 61.7065 -0.00752796
+MUSETT_T2_DSSD_Y21_E 60.6735 -0.00740095
+MUSETT_T2_DSSD_Y22_E 60.6699 -0.00740261
+MUSETT_T2_DSSD_Y23_E 62.071 -0.00757764
+MUSETT_T2_DSSD_Y24_E 60.7475 -0.00741138
+MUSETT_T2_DSSD_Y25_E 60.7386 -0.00741045
+MUSETT_T2_DSSD_Y26_E 61.2797 -0.00747636
+MUSETT_T2_DSSD_Y27_E 61.0832 -0.00745632
+MUSETT_T2_DSSD_Y28_E 61.3148 -0.00748463
+MUSETT_T2_DSSD_Y29_E 61.6303 -0.00752515
+MUSETT_T2_DSSD_Y30_E 61.125 -0.00745808
+MUSETT_T2_DSSD_Y31_E 60.9348 -0.00743314
+MUSETT_T2_DSSD_Y32_E 61.3989 -0.00748983
+MUSETT_T2_DSSD_Y33_E 56.1952 -0.00685817
+MUSETT_T2_DSSD_Y34_E 56.3063 -0.0068715
+MUSETT_T2_DSSD_Y35_E 56.6538 -0.00691505
+MUSETT_T2_DSSD_Y36_E 56.4972 -0.00689435
+MUSETT_T2_DSSD_Y37_E 56.8817 -0.00694325
+MUSETT_T2_DSSD_Y38_E 56.6748 -0.00691555
+MUSETT_T2_DSSD_Y39_E 56.4253 -0.00688901
+MUSETT_T2_DSSD_Y40_E 56.5601 -0.00690807
+MUSETT_T2_DSSD_Y41_E 56.1552 -0.00685461
+MUSETT_T2_DSSD_Y42_E 57.9279 -0.00707067
+MUSETT_T2_DSSD_Y43_E 56.7445 -0.00692782
+MUSETT_T2_DSSD_Y44_E 56.119 -0.00684937
+MUSETT_T2_DSSD_Y45_E 56.9957 -0.00695498
+MUSETT_T2_DSSD_Y46_E 57.2405 -0.00698921
+MUSETT_T2_DSSD_Y47_E 56.88 -0.00694151
+MUSETT_T2_DSSD_Y48_E 56.613 -0.00691086
+MUSETT_T2_DSSD_Y49_E 57.4333 -0.00700977
+MUSETT_T2_DSSD_Y50_E 57.2345 -0.00699068
+MUSETT_T2_DSSD_Y51_E 57.6386 -0.00703191
+MUSETT_T2_DSSD_Y52_E 57.3765 -0.00700354
+MUSETT_T2_DSSD_Y53_E 57.0322 -0.00695819
+MUSETT_T2_DSSD_Y54_E 58.6382 -0.00715991
+MUSETT_T2_DSSD_Y55_E 57.5071 -0.00701732
+MUSETT_T2_DSSD_Y56_E 57.4561 -0.00700876
+MUSETT_T2_DSSD_Y57_E 57.9355 -0.00707626
+MUSETT_T2_DSSD_Y58_E 57.2996 -0.00699196
+MUSETT_T2_DSSD_Y59_E 57.4134 -0.00701027
+MUSETT_T2_DSSD_Y60_E 57.9795 -0.00707456
+MUSETT_T2_DSSD_Y61_E 57.9301 -0.00707376
+MUSETT_T2_DSSD_Y62_E 57.3702 -0.00700489
+MUSETT_T2_DSSD_Y63_E 57.6224 -0.00703204
+MUSETT_T2_DSSD_Y64_E 57.9617 -0.00707244
+MUSETT_T2_DSSD_Y65_E 59.2845 -0.00723849
+MUSETT_T2_DSSD_Y66_E 59.3552 -0.00724338
+MUSETT_T2_DSSD_Y67_E 59.4277 -0.00725571
+MUSETT_T2_DSSD_Y68_E 60.3423 -0.00736738
+MUSETT_T2_DSSD_Y69_E 59.3284 -0.00724153
+MUSETT_T2_DSSD_Y70_E 59.6515 -0.00728136
+MUSETT_T2_DSSD_Y71_E 59.3639 -0.00724599
+MUSETT_T2_DSSD_Y72_E 59.8305 -0.00730471
+MUSETT_T2_DSSD_Y73_E 59.4632 -0.00725583
+MUSETT_T2_DSSD_Y74_E 59.4182 -0.00725297
+MUSETT_T2_DSSD_Y75_E 59.8054 -0.00730017
+MUSETT_T2_DSSD_Y76_E 60.0136 -0.00732756
+MUSETT_T2_DSSD_Y77_E 59.2215 -0.00722933
+MUSETT_T2_DSSD_Y78_E 59.7288 -0.00728927
+MUSETT_T2_DSSD_Y79_E 59.2356 -0.00723031
+MUSETT_T2_DSSD_Y80_E 59.8523 -0.0073024
+MUSETT_T2_DSSD_Y81_E 60.3502 -0.00736651
+MUSETT_T2_DSSD_Y82_E 61.1949 -0.00747228
+MUSETT_T2_DSSD_Y83_E 60.2825 -0.00735721
+MUSETT_T2_DSSD_Y84_E 61.0497 -0.00745147
+MUSETT_T2_DSSD_Y85_E 61.0062 -0.00744668
+MUSETT_T2_DSSD_Y86_E 60.8096 -0.00742536
+MUSETT_T2_DSSD_Y87_E 60.7138 -0.00741077
+MUSETT_T2_DSSD_Y88_E 61.1868 -0.00747042
+MUSETT_T2_DSSD_Y89_E 60.9587 -0.00744537
+MUSETT_T2_DSSD_Y90_E 60.5173 -0.00738459
+MUSETT_T2_DSSD_Y91_E 61.3266 -0.00748644
+MUSETT_T2_DSSD_Y92_E 60.3678 -0.00736723
+MUSETT_T2_DSSD_Y93_E 60.8698 -0.0074295
+MUSETT_T2_DSSD_Y94_E 60.5372 -0.00739126
+MUSETT_T2_DSSD_Y95_E 61.1493 -0.00746795
+MUSETT_T2_DSSD_Y96_E 61.24 -0.00747413
+MUSETT_T2_DSSD_Y97_E 56.7785 -0.00693163
+MUSETT_T2_DSSD_Y98_E 55.8642 -0.00682005
+MUSETT_T2_DSSD_Y99_E 55.9639 -0.00682944
+MUSETT_T2_DSSD_Y100_E 56.307 -0.00687006
+MUSETT_T2_DSSD_Y101_E 56.3035 -0.00687388
+MUSETT_T2_DSSD_Y102_E 56.6481 -0.00691634
+MUSETT_T2_DSSD_Y103_E 55.7931 -0.00681196
+MUSETT_T2_DSSD_Y104_E 56.8928 -0.00694196
+MUSETT_T2_DSSD_Y105_E 55.941 -0.00682942
+MUSETT_T2_DSSD_Y106_E 56.4688 -0.00689177
+MUSETT_T2_DSSD_Y107_E 56.5486 -0.00690473
+MUSETT_T2_DSSD_Y108_E 57.3136 -0.00699581
+MUSETT_T2_DSSD_Y109_E 56.9154 -0.00694746
+MUSETT_T2_DSSD_Y110_E 56.4094 -0.00688365
+MUSETT_T2_DSSD_Y111_E 56.9197 -0.00694954
+MUSETT_T2_DSSD_Y112_E 55.9961 -0.00683611
+MUSETT_T2_DSSD_Y113_E 56.4905 -0.00689823
+MUSETT_T2_DSSD_Y114_E 57.3805 -0.00700796
+MUSETT_T2_DSSD_Y115_E 56.3932 -0.00688319
+MUSETT_T2_DSSD_Y116_E 56.6059 -0.00690785
+MUSETT_T2_DSSD_Y117_E 56.2703 -0.00686753
+MUSETT_T2_DSSD_Y118_E 56.275 -0.0068674
+MUSETT_T2_DSSD_Y119_E 56.7938 -0.00693488
+MUSETT_T2_DSSD_Y120_E 56.6145 -0.00691195
+MUSETT_T2_DSSD_Y121_E 56.2102 -0.00686234
+MUSETT_T2_DSSD_Y122_E 56.9331 -0.00695032
+MUSETT_T2_DSSD_Y123_E 57.2777 -0.00699227
+MUSETT_T2_DSSD_Y124_E 6.82575 -0.844837
+MUSETT_T2_DSSD_Y125_E 55.9049 -0.00682177
+MUSETT_T2_DSSD_Y126_E 56.8814 -0.00694534
+MUSETT_T2_DSSD_Y127_E 56.2481 -0.00686735
+MUSETT_T2_DSSD_Y128_E 56.034 -0.006839782
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..83ec1ed8246674ff4aa7d02a1df0521fe33e5e49
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X1_E_Zero_Dispersion -2.41452
+MUSETT_T3_DSSD_X2_E_Zero_Dispersion -4.62314
+MUSETT_T3_DSSD_X3_E_Zero_Dispersion -0.868891
+MUSETT_T3_DSSD_X4_E_Zero_Dispersion -1.38342
+MUSETT_T3_DSSD_X5_E_Zero_Dispersion -5.15237
+MUSETT_T3_DSSD_X6_E_Zero_Dispersion -0.130584
+MUSETT_T3_DSSD_X7_E_Zero_Dispersion -1.90652
+MUSETT_T3_DSSD_X8_E_Zero_Dispersion -0.495975
+MUSETT_T3_DSSD_X9_E_Zero_Dispersion -3.30325
+MUSETT_T3_DSSD_X10_E_Zero_Dispersion -2.03449
+MUSETT_T3_DSSD_X11_E_Zero_Dispersion -3.60991
+MUSETT_T3_DSSD_X12_E_Zero_Dispersion -2.09425
+MUSETT_T3_DSSD_X13_E_Zero_Dispersion -2.50083
+MUSETT_T3_DSSD_X14_E_Zero_Dispersion -3.15323
+MUSETT_T3_DSSD_X15_E_Zero_Dispersion -3.90725
+MUSETT_T3_DSSD_X16_E_Zero_Dispersion -1.63926
+MUSETT_T3_DSSD_X17_E_Zero_Dispersion -5.33288
+MUSETT_T3_DSSD_X18_E_Zero_Dispersion -7.18027
+MUSETT_T3_DSSD_X19_E_Zero_Dispersion -1.32954
+MUSETT_T3_DSSD_X20_E_Zero_Dispersion -4.97396
+MUSETT_T3_DSSD_X21_E_Zero_Dispersion -6.07616
+MUSETT_T3_DSSD_X22_E_Zero_Dispersion -3.74321
+MUSETT_T3_DSSD_X23_E_Zero_Dispersion 0.663908
+MUSETT_T3_DSSD_X24_E_Zero_Dispersion -4.52288
+MUSETT_T3_DSSD_X25_E_Zero_Dispersion -4.33959
+MUSETT_T3_DSSD_X26_E_Zero_Dispersion -4.46834
+MUSETT_T3_DSSD_X27_E_Zero_Dispersion -0.136323
+MUSETT_T3_DSSD_X28_E_Zero_Dispersion -0.105464
+MUSETT_T3_DSSD_X29_E_Zero_Dispersion 2.08573
+MUSETT_T3_DSSD_X30_E_Zero_Dispersion -3.80806
+MUSETT_T3_DSSD_X31_E_Zero_Dispersion -5.72914
+MUSETT_T3_DSSD_X32_E_Zero_Dispersion -5.63244
+MUSETT_T3_DSSD_X33_E_Zero_Dispersion -1.91772
+MUSETT_T3_DSSD_X34_E_Zero_Dispersion -2.17757
+MUSETT_T3_DSSD_X35_E_Zero_Dispersion -0.820265
+MUSETT_T3_DSSD_X36_E_Zero_Dispersion -2.70672
+MUSETT_T3_DSSD_X37_E_Zero_Dispersion -0.371581
+MUSETT_T3_DSSD_X38_E_Zero_Dispersion -3.26869
+MUSETT_T3_DSSD_X39_E_Zero_Dispersion 1.37186
+MUSETT_T3_DSSD_X40_E_Zero_Dispersion 4.45981
+MUSETT_T3_DSSD_X41_E_Zero_Dispersion -0.328392
+MUSETT_T3_DSSD_X42_E_Zero_Dispersion -0.694481
+MUSETT_T3_DSSD_X43_E_Zero_Dispersion 1.18661
+MUSETT_T3_DSSD_X44_E_Zero_Dispersion -1.30229
+MUSETT_T3_DSSD_X45_E_Zero_Dispersion -2.94757
+MUSETT_T3_DSSD_X46_E_Zero_Dispersion 2.16577
+MUSETT_T3_DSSD_X47_E_Zero_Dispersion -2.18928
+MUSETT_T3_DSSD_X48_E_Zero_Dispersion 0.104608
+MUSETT_T3_DSSD_X49_E_Zero_Dispersion -1.32368
+MUSETT_T3_DSSD_X50_E_Zero_Dispersion 4.74399
+MUSETT_T3_DSSD_X51_E_Zero_Dispersion -4.71591
+MUSETT_T3_DSSD_X52_E_Zero_Dispersion -0.509006
+MUSETT_T3_DSSD_X53_E_Zero_Dispersion -4.41517
+MUSETT_T3_DSSD_X54_E_Zero_Dispersion 2.21521
+MUSETT_T3_DSSD_X55_E_Zero_Dispersion -3.01389
+MUSETT_T3_DSSD_X56_E_Zero_Dispersion -5.75791
+MUSETT_T3_DSSD_X57_E_Zero_Dispersion 4.69962
+MUSETT_T3_DSSD_X58_E_Zero_Dispersion -3.076
+MUSETT_T3_DSSD_X59_E_Zero_Dispersion 2.09821
+MUSETT_T3_DSSD_X60_E_Zero_Dispersion -3.48995
+MUSETT_T3_DSSD_X61_E_Zero_Dispersion 2.56403
+MUSETT_T3_DSSD_X62_E_Zero_Dispersion 1.98175
+MUSETT_T3_DSSD_X63_E_Zero_Dispersion -2.27108
+MUSETT_T3_DSSD_X64_E_Zero_Dispersion -3.42757
+MUSETT_T3_DSSD_X65_E_Zero_Dispersion 1.82693
+MUSETT_T3_DSSD_X66_E_Zero_Dispersion -2.40702
+MUSETT_T3_DSSD_X67_E_Zero_Dispersion 1.53094
+MUSETT_T3_DSSD_X68_E_Zero_Dispersion 1.53277
+MUSETT_T3_DSSD_X69_E_Zero_Dispersion -0.791383
+MUSETT_T3_DSSD_X70_E_Zero_Dispersion -0.362237
+MUSETT_T3_DSSD_X71_E_Zero_Dispersion -0.659603
+MUSETT_T3_DSSD_X72_E_Zero_Dispersion 1.32626
+MUSETT_T3_DSSD_X73_E_Zero_Dispersion -3.22076
+MUSETT_T3_DSSD_X74_E_Zero_Dispersion -0.251833
+MUSETT_T3_DSSD_X75_E_Zero_Dispersion -0.331908
+MUSETT_T3_DSSD_X76_E_Zero_Dispersion 1.87832
+MUSETT_T3_DSSD_X77_E_Zero_Dispersion 0.151597
+MUSETT_T3_DSSD_X78_E_Zero_Dispersion -2.06675
+MUSETT_T3_DSSD_X79_E_Zero_Dispersion -0.672223
+MUSETT_T3_DSSD_X80_E_Zero_Dispersion -4.24799
+MUSETT_T3_DSSD_X81_E_Zero_Dispersion -0.506594
+MUSETT_T3_DSSD_X82_E_Zero_Dispersion 2.41919
+MUSETT_T3_DSSD_X83_E_Zero_Dispersion -1.66554
+MUSETT_T3_DSSD_X84_E_Zero_Dispersion -0.972652
+MUSETT_T3_DSSD_X85_E_Zero_Dispersion -0.403224
+MUSETT_T3_DSSD_X86_E_Zero_Dispersion 2.55276
+MUSETT_T3_DSSD_X87_E_Zero_Dispersion -0.634855
+MUSETT_T3_DSSD_X88_E_Zero_Dispersion 1.44682
+MUSETT_T3_DSSD_X89_E_Zero_Dispersion 4.54114
+MUSETT_T3_DSSD_X90_E_Zero_Dispersion -3.08185
+MUSETT_T3_DSSD_X91_E_Zero_Dispersion 0.317454
+MUSETT_T3_DSSD_X92_E_Zero_Dispersion -2.08604
+MUSETT_T3_DSSD_X93_E_Zero_Dispersion -0.985475
+MUSETT_T3_DSSD_X94_E_Zero_Dispersion 1.62963
+MUSETT_T3_DSSD_X95_E_Zero_Dispersion 3.76716
+MUSETT_T3_DSSD_X96_E_Zero_Dispersion -1.59486
+MUSETT_T3_DSSD_X97_E_Zero_Dispersion 0.77823
+MUSETT_T3_DSSD_X98_E_Zero_Dispersion 0.822189
+MUSETT_T3_DSSD_X99_E_Zero_Dispersion -2.50977
+MUSETT_T3_DSSD_X100_E_Zero_Dispersion -4.00084
+MUSETT_T3_DSSD_X101_E_Zero_Dispersion 1.05943
+MUSETT_T3_DSSD_X102_E_Zero_Dispersion 1.51908
+MUSETT_T3_DSSD_X103_E_Zero_Dispersion 1.53918
+MUSETT_T3_DSSD_X104_E_Zero_Dispersion -3.48824
+MUSETT_T3_DSSD_X105_E_Zero_Dispersion 0.816455
+MUSETT_T3_DSSD_X106_E_Zero_Dispersion -1.65375
+MUSETT_T3_DSSD_X107_E_Zero_Dispersion 2.15443
+MUSETT_T3_DSSD_X108_E_Zero_Dispersion -0.56696
+MUSETT_T3_DSSD_X109_E_Zero_Dispersion -0.26407
+MUSETT_T3_DSSD_X110_E_Zero_Dispersion -2.68868
+MUSETT_T3_DSSD_X111_E_Zero_Dispersion 1.5642
+MUSETT_T3_DSSD_X112_E_Zero_Dispersion 0.774111
+MUSETT_T3_DSSD_X113_E_Zero_Dispersion 2.8693
+MUSETT_T3_DSSD_X114_E_Zero_Dispersion 4.10331
+MUSETT_T3_DSSD_X115_E_Zero_Dispersion -0.889989
+MUSETT_T3_DSSD_X116_E_Zero_Dispersion -2.43413
+MUSETT_T3_DSSD_X117_E_Zero_Dispersion -1.67811
+MUSETT_T3_DSSD_X118_E_Zero_Dispersion -2.51115
+MUSETT_T3_DSSD_X119_E_Zero_Dispersion 2.41323
+MUSETT_T3_DSSD_X120_E_Zero_Dispersion 1.18431
+MUSETT_T3_DSSD_X121_E_Zero_Dispersion 0.881997
+MUSETT_T3_DSSD_X122_E_Zero_Dispersion 0.569719
+MUSETT_T3_DSSD_X123_E_Zero_Dispersion 0.434787
+MUSETT_T3_DSSD_X124_E_Zero_Dispersion 8183.92
+MUSETT_T3_DSSD_X125_E_Zero_Dispersion -3.08136
+MUSETT_T3_DSSD_X126_E_Zero_Dispersion 2.12758
+MUSETT_T3_DSSD_X127_E_Zero_Dispersion 1.35063
+MUSETT_T3_DSSD_X128_E_Zero_Dispersion -0.367075
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/latex/double_alpha_run_244_Y_MM3_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/latex/double_alpha_run_244_Y_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d4e55b9f104591a15b76020d1d9e05788486e41e
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/latex/double_alpha_run_244_Y_MM3_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+124 &  1 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.28892
+
+Sigma fit sigma: 0.565314
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.cal b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.cal
new file mode 100644
index 0000000000000000000000000000000000000000..8a89504b3dc807daabb33e82ab3f2391497ddbf1
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y1_E 59.5234 -0.00725765
+MUSETT_T3_DSSD_Y2_E 58.5127 -0.00713688
+MUSETT_T3_DSSD_Y3_E 59.574 -0.00726549
+MUSETT_T3_DSSD_Y4_E 59.51 -0.00725796
+MUSETT_T3_DSSD_Y5_E 59.2116 -0.00722064
+MUSETT_T3_DSSD_Y6_E 59.4237 -0.00724658
+MUSETT_T3_DSSD_Y7_E 59.0257 -0.00719413
+MUSETT_T3_DSSD_Y8_E 59.537 -0.00725846
+MUSETT_T3_DSSD_Y9_E 59.9426 -0.00730929
+MUSETT_T3_DSSD_Y10_E 59.6876 -0.00727441
+MUSETT_T3_DSSD_Y11_E 59.5449 -0.00725957
+MUSETT_T3_DSSD_Y12_E 59.3479 -0.00723827
+MUSETT_T3_DSSD_Y13_E 59.032 -0.0071972
+MUSETT_T3_DSSD_Y14_E 59.265 -0.00722989
+MUSETT_T3_DSSD_Y15_E 60.0166 -0.00731897
+MUSETT_T3_DSSD_Y16_E 59.3186 -0.00723564
+MUSETT_T3_DSSD_Y17_E 62.3545 -0.00760396
+MUSETT_T3_DSSD_Y18_E 62.624 -0.00763656
+MUSETT_T3_DSSD_Y19_E 61.4411 -0.00748826
+MUSETT_T3_DSSD_Y20_E 62.2082 -0.00758654
+MUSETT_T3_DSSD_Y21_E 62.6184 -0.00763608
+MUSETT_T3_DSSD_Y22_E 62.8879 -0.00766657
+MUSETT_T3_DSSD_Y23_E 62.305 -0.0075962
+MUSETT_T3_DSSD_Y24_E 62.4905 -0.00762219
+MUSETT_T3_DSSD_Y25_E 62.9493 -0.00767672
+MUSETT_T3_DSSD_Y26_E 62.9678 -0.0076806
+MUSETT_T3_DSSD_Y27_E 61.9803 -0.00755709
+MUSETT_T3_DSSD_Y28_E 62.9625 -0.00767967
+MUSETT_T3_DSSD_Y29_E 62.2051 -0.00758948
+MUSETT_T3_DSSD_Y30_E 62.4204 -0.00761303
+MUSETT_T3_DSSD_Y31_E 62.5487 -0.00762832
+MUSETT_T3_DSSD_Y32_E 62.481 -0.00762089
+MUSETT_T3_DSSD_Y33_E 55.6954 -0.00679321
+MUSETT_T3_DSSD_Y34_E 55.862 -0.00681429
+MUSETT_T3_DSSD_Y35_E 55.2595 -0.00673682
+MUSETT_T3_DSSD_Y36_E 55.2613 -0.0067392
+MUSETT_T3_DSSD_Y37_E 55.3232 -0.00674678
+MUSETT_T3_DSSD_Y38_E 55.7697 -0.00680183
+MUSETT_T3_DSSD_Y39_E 55.4597 -0.00676292
+MUSETT_T3_DSSD_Y40_E 55.1054 -0.00672069
+MUSETT_T3_DSSD_Y41_E 54.9776 -0.0067034
+MUSETT_T3_DSSD_Y42_E 55.6329 -0.00678247
+MUSETT_T3_DSSD_Y43_E 55.5045 -0.00676804
+MUSETT_T3_DSSD_Y44_E 54.833 -0.00668532
+MUSETT_T3_DSSD_Y45_E 55.268 -0.00673901
+MUSETT_T3_DSSD_Y46_E 55.1892 -0.00673083
+MUSETT_T3_DSSD_Y47_E 55.4934 -0.00676746
+MUSETT_T3_DSSD_Y48_E 55.4247 -0.00675997
+MUSETT_T3_DSSD_Y49_E 56.2861 -0.00686516
+MUSETT_T3_DSSD_Y50_E 56.3992 -0.00687703
+MUSETT_T3_DSSD_Y51_E 56.6985 -0.00691472
+MUSETT_T3_DSSD_Y52_E 56.5241 -0.00689401
+MUSETT_T3_DSSD_Y53_E 56.1254 -0.00684574
+MUSETT_T3_DSSD_Y54_E 56.6081 -0.00690538
+MUSETT_T3_DSSD_Y55_E 56.3216 -0.00687193
+MUSETT_T3_DSSD_Y56_E 56.5475 -0.006896
+MUSETT_T3_DSSD_Y57_E 56.7187 -0.00691876
+MUSETT_T3_DSSD_Y58_E 56.1262 -0.00684421
+MUSETT_T3_DSSD_Y59_E 57.0384 -0.00695577
+MUSETT_T3_DSSD_Y60_E 56.6041 -0.0069031
+MUSETT_T3_DSSD_Y61_E 57.1317 -0.00696705
+MUSETT_T3_DSSD_Y62_E 56.6654 -0.006912
+MUSETT_T3_DSSD_Y63_E 56.4458 -0.00688605
+MUSETT_T3_DSSD_Y64_E 57.0189 -0.00695467
+MUSETT_T3_DSSD_Y65_E 58.866 -0.00717739
+MUSETT_T3_DSSD_Y66_E 59.3718 -0.00723936
+MUSETT_T3_DSSD_Y67_E 58.8606 -0.00717536
+MUSETT_T3_DSSD_Y68_E 59.0432 -0.00720334
+MUSETT_T3_DSSD_Y69_E 58.8518 -0.00717572
+MUSETT_T3_DSSD_Y70_E 58.1666 -0.00709048
+MUSETT_T3_DSSD_Y71_E 58.6539 -0.00715115
+MUSETT_T3_DSSD_Y72_E 59.4352 -0.00724736
+MUSETT_T3_DSSD_Y73_E 59.6808 -0.00727892
+MUSETT_T3_DSSD_Y74_E 58.9154 -0.0071833
+MUSETT_T3_DSSD_Y75_E 58.9534 -0.00718787
+MUSETT_T3_DSSD_Y76_E 59.1119 -0.00720917
+MUSETT_T3_DSSD_Y77_E 59.0564 -0.00720162
+MUSETT_T3_DSSD_Y78_E 58.8468 -0.00717579
+MUSETT_T3_DSSD_Y79_E 58.5676 -0.00714313
+MUSETT_T3_DSSD_Y80_E 59.5249 -0.00725969
+MUSETT_T3_DSSD_Y81_E 62.5316 -0.00763049
+MUSETT_T3_DSSD_Y82_E 62.3098 -0.00760082
+MUSETT_T3_DSSD_Y83_E 62.1091 -0.00757633
+MUSETT_T3_DSSD_Y84_E 61.7125 -0.00752821
+MUSETT_T3_DSSD_Y85_E 61.7896 -0.00754096
+MUSETT_T3_DSSD_Y86_E 62.3687 -0.0076099
+MUSETT_T3_DSSD_Y87_E 62.0224 -0.00756846
+MUSETT_T3_DSSD_Y88_E 62.3511 -0.00760351
+MUSETT_T3_DSSD_Y89_E 62.3244 -0.00760376
+MUSETT_T3_DSSD_Y90_E 62.1206 -0.00757798
+MUSETT_T3_DSSD_Y91_E 61.3832 -0.0074877
+MUSETT_T3_DSSD_Y92_E 61.5775 -0.00751155
+MUSETT_T3_DSSD_Y93_E 61.483 -0.007499
+MUSETT_T3_DSSD_Y94_E 61.7077 -0.00752956
+MUSETT_T3_DSSD_Y95_E 61.4383 -0.00749316
+MUSETT_T3_DSSD_Y96_E 61.4678 -0.00749923
+MUSETT_T3_DSSD_Y97_E 55.9891 -0.0068234
+MUSETT_T3_DSSD_Y98_E 56.238 -0.00685463
+MUSETT_T3_DSSD_Y99_E 55.7145 -0.00679225
+MUSETT_T3_DSSD_Y100_E 55.3441 -0.00674679
+MUSETT_T3_DSSD_Y101_E 55.7335 -0.00679658
+MUSETT_T3_DSSD_Y102_E 55.7497 -0.00679727
+MUSETT_T3_DSSD_Y103_E 55.3707 -0.0067502
+MUSETT_T3_DSSD_Y104_E 55.4781 -0.00676373
+MUSETT_T3_DSSD_Y105_E 55.2205 -0.00673093
+MUSETT_T3_DSSD_Y106_E 55.7488 -0.00679679
+MUSETT_T3_DSSD_Y107_E 55.9598 -0.00682393
+MUSETT_T3_DSSD_Y108_E 55.7521 -0.00679752
+MUSETT_T3_DSSD_Y109_E 55.2111 -0.00673195
+MUSETT_T3_DSSD_Y110_E 55.3052 -0.00674172
+MUSETT_T3_DSSD_Y111_E 56.0662 -0.00683506
+MUSETT_T3_DSSD_Y112_E 56.0236 -0.00682937
+MUSETT_T3_DSSD_Y113_E 56.7839 -0.00692618
+MUSETT_T3_DSSD_Y114_E 56.5644 -0.00689877
+MUSETT_T3_DSSD_Y115_E 56.3829 -0.00687154
+MUSETT_T3_DSSD_Y116_E 56.4761 -0.00688733
+MUSETT_T3_DSSD_Y117_E 57.0804 -0.00695954
+MUSETT_T3_DSSD_Y118_E 56.6645 -0.00690751
+MUSETT_T3_DSSD_Y119_E 56.1478 -0.0068441
+MUSETT_T3_DSSD_Y120_E 57.1191 -0.00696464
+MUSETT_T3_DSSD_Y121_E 57.1449 -0.00697197
+MUSETT_T3_DSSD_Y122_E 56.1944 -0.00684715
+MUSETT_T3_DSSD_Y123_E 56.9821 -0.00694955
+MUSETT_T3_DSSD_Y124_E 56.3139 -0.00686238
+MUSETT_T3_DSSD_Y125_E 57.1661 -0.00697354
+MUSETT_T3_DSSD_Y126_E 56.4641 -0.00688782
+MUSETT_T3_DSSD_Y127_E 57.0575 -0.00696247
+MUSETT_T3_DSSD_Y128_E 56.782 -0.006919733
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.dispersion b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..6c14fada3338d7ab4a13340bb9b25fa05e2e259f
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T4_DSSD_X1_E_Zero_Dispersion -9.46769
+MUSETT_T4_DSSD_X2_E_Zero_Dispersion -6.63941
+MUSETT_T4_DSSD_X3_E_Zero_Dispersion -7.59066
+MUSETT_T4_DSSD_X4_E_Zero_Dispersion -7.27873
+MUSETT_T4_DSSD_X5_E_Zero_Dispersion -8.33041
+MUSETT_T4_DSSD_X6_E_Zero_Dispersion -8.25031
+MUSETT_T4_DSSD_X7_E_Zero_Dispersion -12.7051
+MUSETT_T4_DSSD_X8_E_Zero_Dispersion -10.4257
+MUSETT_T4_DSSD_X9_E_Zero_Dispersion -8.87304
+MUSETT_T4_DSSD_X10_E_Zero_Dispersion -13.1471
+MUSETT_T4_DSSD_X11_E_Zero_Dispersion -10.2696
+MUSETT_T4_DSSD_X12_E_Zero_Dispersion -7.18175
+MUSETT_T4_DSSD_X13_E_Zero_Dispersion -10.08
+MUSETT_T4_DSSD_X14_E_Zero_Dispersion -5.22013
+MUSETT_T4_DSSD_X15_E_Zero_Dispersion -8.14216
+MUSETT_T4_DSSD_X16_E_Zero_Dispersion -6.10666
+MUSETT_T4_DSSD_X17_E_Zero_Dispersion -8.26993
+MUSETT_T4_DSSD_X18_E_Zero_Dispersion -8.55315
+MUSETT_T4_DSSD_X19_E_Zero_Dispersion -12.9968
+MUSETT_T4_DSSD_X20_E_Zero_Dispersion -7.81329
+MUSETT_T4_DSSD_X21_E_Zero_Dispersion -8.33246
+MUSETT_T4_DSSD_X22_E_Zero_Dispersion -10.8731
+MUSETT_T4_DSSD_X23_E_Zero_Dispersion -10.1298
+MUSETT_T4_DSSD_X24_E_Zero_Dispersion -6.49554
+MUSETT_T4_DSSD_X25_E_Zero_Dispersion -8.03084
+MUSETT_T4_DSSD_X26_E_Zero_Dispersion -6.28445
+MUSETT_T4_DSSD_X27_E_Zero_Dispersion -9.61192
+MUSETT_T4_DSSD_X28_E_Zero_Dispersion -6.60574
+MUSETT_T4_DSSD_X29_E_Zero_Dispersion -4.2257
+MUSETT_T4_DSSD_X30_E_Zero_Dispersion -7.14973
+MUSETT_T4_DSSD_X31_E_Zero_Dispersion -7.53233
+MUSETT_T4_DSSD_X32_E_Zero_Dispersion -6.64291
+MUSETT_T4_DSSD_X33_E_Zero_Dispersion -6.68809
+MUSETT_T4_DSSD_X34_E_Zero_Dispersion -5.77713
+MUSETT_T4_DSSD_X35_E_Zero_Dispersion -10.6039
+MUSETT_T4_DSSD_X36_E_Zero_Dispersion -7.96819
+MUSETT_T4_DSSD_X37_E_Zero_Dispersion -7.94165
+MUSETT_T4_DSSD_X38_E_Zero_Dispersion -7.21244
+MUSETT_T4_DSSD_X39_E_Zero_Dispersion -8.55547
+MUSETT_T4_DSSD_X40_E_Zero_Dispersion -7.36818
+MUSETT_T4_DSSD_X41_E_Zero_Dispersion -9.44709
+MUSETT_T4_DSSD_X42_E_Zero_Dispersion -10.4522
+MUSETT_T4_DSSD_X43_E_Zero_Dispersion -8.97489
+MUSETT_T4_DSSD_X44_E_Zero_Dispersion -10
+MUSETT_T4_DSSD_X45_E_Zero_Dispersion -9.2142
+MUSETT_T4_DSSD_X46_E_Zero_Dispersion -7.46812
+MUSETT_T4_DSSD_X47_E_Zero_Dispersion -8.04091
+MUSETT_T4_DSSD_X48_E_Zero_Dispersion -6.95261
+MUSETT_T4_DSSD_X49_E_Zero_Dispersion -6.80019
+MUSETT_T4_DSSD_X50_E_Zero_Dispersion -9.09434
+MUSETT_T4_DSSD_X51_E_Zero_Dispersion -7.67807
+MUSETT_T4_DSSD_X52_E_Zero_Dispersion -7.01785
+MUSETT_T4_DSSD_X53_E_Zero_Dispersion -6.58275
+MUSETT_T4_DSSD_X54_E_Zero_Dispersion -5.67122
+MUSETT_T4_DSSD_X55_E_Zero_Dispersion -3.88878
+MUSETT_T4_DSSD_X56_E_Zero_Dispersion -8.03944
+MUSETT_T4_DSSD_X57_E_Zero_Dispersion -5.81276
+MUSETT_T4_DSSD_X58_E_Zero_Dispersion -8.54494
+MUSETT_T4_DSSD_X59_E_Zero_Dispersion -8.16751
+MUSETT_T4_DSSD_X60_E_Zero_Dispersion -7.80874
+MUSETT_T4_DSSD_X61_E_Zero_Dispersion -8.26822
+MUSETT_T4_DSSD_X62_E_Zero_Dispersion -6.11378
+MUSETT_T4_DSSD_X63_E_Zero_Dispersion -5.12248
+MUSETT_T4_DSSD_X64_E_Zero_Dispersion -6.64078
+MUSETT_T4_DSSD_X65_E_Zero_Dispersion -9.58986
+MUSETT_T4_DSSD_X66_E_Zero_Dispersion -9.24837
+MUSETT_T4_DSSD_X67_E_Zero_Dispersion -11.1603
+MUSETT_T4_DSSD_X68_E_Zero_Dispersion -4.63863
+MUSETT_T4_DSSD_X69_E_Zero_Dispersion -9.52264
+MUSETT_T4_DSSD_X70_E_Zero_Dispersion -11.479
+MUSETT_T4_DSSD_X71_E_Zero_Dispersion -10.0137
+MUSETT_T4_DSSD_X72_E_Zero_Dispersion -8.94496
+MUSETT_T4_DSSD_X73_E_Zero_Dispersion -7.12698
+MUSETT_T4_DSSD_X74_E_Zero_Dispersion -9.7154
+MUSETT_T4_DSSD_X75_E_Zero_Dispersion -9.78426
+MUSETT_T4_DSSD_X76_E_Zero_Dispersion -7.53312
+MUSETT_T4_DSSD_X77_E_Zero_Dispersion -8.43401
+MUSETT_T4_DSSD_X78_E_Zero_Dispersion -8.73408
+MUSETT_T4_DSSD_X79_E_Zero_Dispersion -7.14449
+MUSETT_T4_DSSD_X80_E_Zero_Dispersion -7.37592
+MUSETT_T4_DSSD_X81_E_Zero_Dispersion -2.96715
+MUSETT_T4_DSSD_X82_E_Zero_Dispersion -5.76667
+MUSETT_T4_DSSD_X83_E_Zero_Dispersion -5.78229
+MUSETT_T4_DSSD_X84_E_Zero_Dispersion -5.50772
+MUSETT_T4_DSSD_X85_E_Zero_Dispersion -1.86551
+MUSETT_T4_DSSD_X86_E_Zero_Dispersion -3.73733
+MUSETT_T4_DSSD_X87_E_Zero_Dispersion -2.84542
+MUSETT_T4_DSSD_X88_E_Zero_Dispersion -8.3055
+MUSETT_T4_DSSD_X89_E_Zero_Dispersion -4.52337
+MUSETT_T4_DSSD_X90_E_Zero_Dispersion -5.51395
+MUSETT_T4_DSSD_X91_E_Zero_Dispersion -5.87937
+MUSETT_T4_DSSD_X92_E_Zero_Dispersion -5.71029
+MUSETT_T4_DSSD_X93_E_Zero_Dispersion -6.8214
+MUSETT_T4_DSSD_X94_E_Zero_Dispersion -3.3959
+MUSETT_T4_DSSD_X95_E_Zero_Dispersion -7.24608
+MUSETT_T4_DSSD_X96_E_Zero_Dispersion -4.55237
+MUSETT_T4_DSSD_X97_E_Zero_Dispersion -13.4435
+MUSETT_T4_DSSD_X98_E_Zero_Dispersion -12.3841
+MUSETT_T4_DSSD_X99_E_Zero_Dispersion -10.6606
+MUSETT_T4_DSSD_X100_E_Zero_Dispersion -11.0243
+MUSETT_T4_DSSD_X101_E_Zero_Dispersion -8.23096
+MUSETT_T4_DSSD_X102_E_Zero_Dispersion -9.78454
+MUSETT_T4_DSSD_X103_E_Zero_Dispersion -10.8303
+MUSETT_T4_DSSD_X104_E_Zero_Dispersion -10.3008
+MUSETT_T4_DSSD_X105_E_Zero_Dispersion -11.9899
+MUSETT_T4_DSSD_X106_E_Zero_Dispersion -10.234
+MUSETT_T4_DSSD_X107_E_Zero_Dispersion -8.52824
+MUSETT_T4_DSSD_X108_E_Zero_Dispersion -9.83499
+MUSETT_T4_DSSD_X109_E_Zero_Dispersion -9.35842
+MUSETT_T4_DSSD_X110_E_Zero_Dispersion -11.4331
+MUSETT_T4_DSSD_X111_E_Zero_Dispersion -10.7369
+MUSETT_T4_DSSD_X112_E_Zero_Dispersion -11.3431
+MUSETT_T4_DSSD_X113_E_Zero_Dispersion -6.44424
+MUSETT_T4_DSSD_X114_E_Zero_Dispersion -7.19987
+MUSETT_T4_DSSD_X115_E_Zero_Dispersion -13.2774
+MUSETT_T4_DSSD_X116_E_Zero_Dispersion -8.00115
+MUSETT_T4_DSSD_X117_E_Zero_Dispersion -9.74113
+MUSETT_T4_DSSD_X118_E_Zero_Dispersion -11.3227
+MUSETT_T4_DSSD_X119_E_Zero_Dispersion -11.8247
+MUSETT_T4_DSSD_X120_E_Zero_Dispersion -9.29674
+MUSETT_T4_DSSD_X121_E_Zero_Dispersion -4.37841
+MUSETT_T4_DSSD_X122_E_Zero_Dispersion -14.9703
+MUSETT_T4_DSSD_X123_E_Zero_Dispersion -7.38905
+MUSETT_T4_DSSD_X124_E_Zero_Dispersion -14.1675
+MUSETT_T4_DSSD_X125_E_Zero_Dispersion -5.57399
+MUSETT_T4_DSSD_X126_E_Zero_Dispersion -5.67467
+MUSETT_T4_DSSD_X127_E_Zero_Dispersion -3.0189
+MUSETT_T4_DSSD_X128_E_Zero_Dispersion -13.8068
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/latex/double_alpha_run_244_Y_MM4_E.tex b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/latex/double_alpha_run_244_Y_MM4_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..19b7e5c7fe7ef0dafc92bdd24671bbd7b3b403ce
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/latex/double_alpha_run_244_Y_MM4_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  4
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 4 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM4_E/latex/pictures/Telescope4Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.05778
+
+Sigma fit sigma: 0.173405
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/peaks/Cal_Str_Y_E_MM4.peak b/Projects/MUSETT/calibration/calib_simu/Energy/Calibration/double_alpha_run_244_Y_MM4_E/peaks/Cal_Str_Y_E_MM4.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/EnergyCalibrator.C b/Projects/MUSETT/calibration/calib_simu/Energy/EnergyCalibrator.C
new file mode 100644
index 0000000000000000000000000000000000000000..3e38e7214e317a1d5e9e353e14fc066143fb0df8
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/EnergyCalibrator.C
@@ -0,0 +1,928 @@
+// Contain global variable declaration, comment and option
+#include "EnergyCalibrator.h"
+
+void AutoCalibration(int Telescope_Start, int Telescope_End)
+{
+  for(int i = Telescope_Start ; i<=Telescope_End ;i++)
+  {
+    AlThickness = 0.3*micrometer ;
+    SiThickness = 0.0*micrometer ;
+    CThickness = 127*nanometer ;
+    double Al_step = 0.01*micrometer;
+    int step_limit = 100;
+    int k = 0 ;
+
+    TString inFileName = frun;
+
+    Telescope_Number = i ;
+    // Create a folder to Hold all the file from calibration
+    ostringstream FolderName;
+
+    FolderName << Experiment << "_" << inFileName << "_" << xy << "_MM" << Telescope_Number << "_E";
+    
+    main_name = FolderName.str() ;
+    TString make_folder = "mkdir ./Calibration/" + main_name ;   
+    folder = "./Calibration/" + FolderName.str() ;
+    system(make_folder);
+    system(make_folder+"/peaks");
+    system(make_folder+"/dispersion");
+    system(make_folder+"/latex");
+    system(make_folder+"/latex/pictures");
+
+    // open the ROOT file to process
+    TString path  = "./Histograms/";
+    inFile = new TFile(path + inFileName +"_RawMUSETTHistos.root");
+    // inFile = new TFile(path + inFileName +"_RawMust2Histos.root");
+    //inFile = new TFile(path + inFileName +"_RawMust2Histos_Threshold.root");
+    //  cout<<path + inFileName +"_RawMust2Histos.root"<<endl;
+    //cout<<inFile<<endl;
+
+    EnergyCalibrator();
+/*
+    bool check1=false,check2=false;
+    while( !(mean_extrapolation <0.1 && mean_extrapolation >-0.1 ) && k < step_limit )
+    {
+      if(mean_extrapolation < 0)
+      {
+        if(xy=="X")
+          AlThickness -= Al_step;
+        else if(xy=="Y")
+          AlThickness += Al_step;
+
+        check1=true;
+      }
+
+      else if (mean_extrapolation > 0)
+      {
+        if(xy=="X")
+          AlThickness += Al_step;
+        else if(xy=="Y")
+          AlThickness -= Al_step;
+
+        check2=true;
+      }
+
+      if(check1&&check2)
+      {
+        Al_step=Al_step/10.;
+        check1=false;check2=false;
+      }
+      latex_file.close();
+      EnergyCalibrator(fDet);
+
+      cout << " Iteration Results: Al Thickness: " << AlThickness/micrometer << "um | Mean Extrapolation  "  << mean_extrapolation << "Chan. "<< endl ;
+
+      k++;
+    }
+*/
+    LatexSummaryEnder();
+
+    delete Buffer;
+    delete Source_branching_ratio;
+    delete Source_E;
+    delete Source_Sig;
+    delete energyX;
+    delete errorsX;
+    delete energyY;
+    delete errorsY;
+
+  }
+
+  return;
+}
+
+
+/////////////////////////////
+void DefineSource(TString sourceName)
+{
+  if(sourceName=="3 alphas")
+  {
+    NumberOfIsotope = 3 ;
+    energyX = new Double_t[NumberOfIsotope]; errorsX = new Double_t[NumberOfIsotope];
+    energyY = new Double_t[NumberOfIsotope]; errorsY = new Double_t[NumberOfIsotope];
+
+    /// Information used in the summary
+    Source_Number_Peak = 8;
+    Source_isotope = new TString[Source_Number_Peak] ;Source_E = new Double_t[Source_Number_Peak] ; Source_Sig = new Double_t[Source_Number_Peak] ; Source_branching_ratio = new Double_t[Source_Number_Peak] ;
+
+    // 244Pu
+    Source_isotope[0]="$^{239}$Pu"; Source_E[0]   = 5.15659 ; Source_Sig[0] = 0.00014 ; Source_branching_ratio[0] = 70.77 ;
+    Source_isotope[1]="$^{239}$Pu"; Source_E[1]   = 5.14438 ; Source_Sig[1] = 0.00014 ; Source_branching_ratio[1] = 17.11 ;
+    Source_isotope[2]="$^{239}$Pu"; Source_E[2]   = 5.1055  ; Source_Sig[2] = 0.00014 ; Source_branching_ratio[2] = 11.94 ;
+
+    // 241Am
+    Source_isotope[3]="$^{241}$Am"; Source_E[3]   = 5.48556 ; Source_Sig[3] = 0.00012 ; Source_branching_ratio[3] = 84.8 ;
+    Source_isotope[4]="$^{241}$Am"; Source_E[4]   = 5.44280 ; Source_Sig[4] = 0.00012 ; Source_branching_ratio[4] = 13.1 ;
+    Source_isotope[5]="$^{241}$Am"; Source_E[5]   = 5.388   ; Source_Sig[5] = 0.00012 ; Source_branching_ratio[5] = 1.66 ;
+
+    // 244Cm
+    Source_isotope[6]="$^{244}$Cm"; Source_E[6]   = 5.80477 ; Source_Sig[6] = 0.00005 ; Source_branching_ratio[6] = 76.40 ;
+    Source_isotope[7]="$^{244}$Cm"; Source_E[7]   = 5.76264 ; Source_Sig[7] = 0.00005 ; Source_branching_ratio[7] = 23.60 ;
+
+    // Corrected value of main peak used in the fit
+    Double_t sig_value = 0.1;
+    Double_t alpha1_Sig = sig_value ; Double_t alpha2_Sig = sig_value ; Double_t alpha3_Sig = sig_value ; 
+
+    Double_t alpha1_E , alpha2_E , alpha3_E;
+
+    alpha1_E = EL_Al.Slow(	Source_E[0]*MeV , // Energy of the detected particle
+        AlThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha1_E = EL_Si.Slow(	alpha1_E*MeV    , // Energy of the detected particle
+        SiThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha2_E = EL_Al.Slow(	Source_E[3]*MeV , // Energy of the detected particle
+        AlThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha2_E = EL_Si.Slow(	alpha2_E*MeV    , // Energy of the detected particle
+        SiThickness	    , // Target Thickness at 0 degree
+        0     		      ) ;		
+
+    alpha3_E = EL_Al.Slow(	Source_E[6]*MeV , // Energy of the detected particle
+        AlThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha3_E = EL_Si.Slow(	alpha3_E*MeV    , // Energy of the detected particle
+        SiThickness   	, // Target Thickness at 0 degree
+        0     		      ) ;		                          
+
+    // X and Y are in a reversed order        
+    energyX[0] = alpha1_E   ; energyX[1] = alpha2_E   ; energyX[2] = alpha3_E   ;
+    errorsX[0] = alpha1_Sig ; errorsX[1] = alpha2_Sig ; errorsX[2] = alpha3_Sig ;
+
+    energyY[0] = alpha3_E   ; energyY[1] = alpha2_E   ; energyY[2] = alpha1_E   ;
+    errorsY[0] = alpha3_Sig ; errorsY[1] = alpha2_Sig ; errorsY[2] = alpha1_Sig ;
+  }
+  if(sourceName=="222Ra 218Rn 214Po"){
+    std::cout << "///////////////////////////////////////////////// TEST /////////////////////" <<std::endl;
+    NumberOfIsotope = 3 ;
+    energyX = new Double_t[NumberOfIsotope]; errorsX = new Double_t[NumberOfIsotope];
+    energyY = new Double_t[NumberOfIsotope]; errorsY = new Double_t[NumberOfIsotope];
+
+    /// Information used in the summary
+    Source_Number_Peak = 4;
+    Source_isotope = new TString[Source_Number_Peak] ;Source_E = new Double_t[Source_Number_Peak] ; Source_Sig = new Double_t[Source_Number_Peak] ; Source_branching_ratio = new Double_t[Source_Number_Peak] ;
+
+    // 222Ra
+    Source_isotope[0]="$^{222}$Ra"; Source_E[0]   = 6.558 ; Source_Sig[0] = 0.00014 ; Source_branching_ratio[0] = 96.95 ;
+    Source_isotope[1]="$^{222}$Ra"; Source_E[1]   = 6.239 ; Source_Sig[1] = 0.00014 ; Source_branching_ratio[1] = 3.05 ;
+
+    // 218Rn
+    Source_isotope[2]="$^{218}$Rn"; Source_E[2]   = 7.1291 ; Source_Sig[2] = 0.00005 ; Source_branching_ratio[2] = 100 ;
+
+    // 214Po
+    Source_isotope[3]="$^{214}$Po"; Source_E[3]   = 7.68682 ; Source_Sig[3] = 0.00005 ; Source_branching_ratio[3] = 100 ;
+
+    // Corrected value of main peak used in the fit
+    Double_t sig_value = 0.1;
+    Double_t alpha1_Sig = sig_value ; Double_t alpha2_Sig = sig_value ; Double_t alpha3_Sig = sig_value ; 
+
+    Double_t alpha1_E , alpha2_E , alpha3_E;
+
+
+    alpha1_E = EL_C.Slow(	Source_E[0]*MeV    , // Energy of the detected particle
+        CThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha2_E = EL_C.Slow(	Source_E[2]*MeV    , // Energy of the detected particle
+        CThickness	    , // Target Thickness at 0 degree
+        0     		      ) ;		
+
+    alpha3_E = EL_C.Slow(	Source_E[3]*MeV    , // Energy of the detected particle
+        CThickness   	, // Target Thickness at 0 degree
+        0     		      ) ;		                          
+
+    // X and Y are in a reversed order        
+    energyX[0] = alpha1_E   ; energyX[1] = alpha2_E   ; energyX[2] = alpha3_E   ;
+    errorsX[0] = alpha1_Sig ; errorsX[1] = alpha2_Sig ; errorsX[2] = alpha3_Sig ;
+
+    energyY[0] = alpha3_E   ; energyY[1] = alpha2_E   ; energyY[2] = alpha1_E   ;
+    errorsY[0] = alpha3_Sig ; errorsY[1] = alpha2_Sig ; errorsY[2] = alpha1_Sig ;
+
+  }
+
+  return;  
+}
+
+
+/////////////////////////////
+void EnergyCalibrator()
+{
+  std::cout << "test 1" << std::endl;
+  // Set-up the root Style
+  gStyle->SetOptTitle();
+  gStyle->SetOptTitle();
+  gStyle->SetOptStat(111111111);
+  //gPad->SetSetShowStyle(true);
+
+  DefineSource("222Ra 218Rn 214Po");
+
+  TString str;
+  TString str1;
+  TString str2;
+  TString strbuff;
+  TString strbuff2;
+  TString fname;
+  TString fname2;
+  TString fname3;
+  TString hname;
+  LatexSummaryHeader(xy);
+
+  // Clear everything
+  BadStrip.clear() ;
+  sigma_fit = new TH1F("Sigma", "Sigma from fit (channel)", 80, 0,10);
+  Dispersion= new TH1F("Dispersion", "Dispersion from Zero Extrapolation (channel)", 40, -20,20);
+  ZeroDispersion = new TGraph(128);
+  coeff_a = new TGraph(128);
+  coeff_b = new TGraph(128);
+
+  ostringstream number ;
+  number << Telescope_Number  ;
+  CurrentTelescope = Telescope_Number ;
+  if (xy == "X"){ 
+    //////// Input Files ///////////
+    str = "hMM"+number.str()+"_STRX_E";
+    str1 = "Cal_Str_X_E_MM"+number.str();
+  }	 
+  else if (xy == "Y"){ 	
+    //////// Input Files ///////////
+    str = "hMM"+number.str()+"_STRY_E";
+    str1 = "Cal_Str_Y_E_MM"+number.str();
+  }	 
+  else {cout<< "ERROR FOR X or Y PARAMETER"<< endl;}
+
+  fname =  folder + "/peaks/" + str1 + ".peak";
+  peaks_file.open( ( (string)fname ).c_str() );
+
+  fname2 = folder + "/" + str1 + ".cal";
+  calib_file.open( ( (string)fname2 ).c_str() );
+
+  fname3 = folder + "/" + str1 + ".dispersion";
+  dispersion_file.open( ( (string)fname3 ).c_str() );
+
+  Tsummary = new TCanvas((TString)("Telescope"+number.str()+"Summary"), (TString)("Telescope "+number.str()+" Summary"), 700, 700);
+  Tsummary->Divide(2,3);
+  Buffer  = new TCanvas((TString)("Buffer"), (TString)("Buffer"), 10, 10);
+  Buffer->cd(1);
+  std::cout << "test 2" << std::endl;
+
+  TH1F *histAlphaToPrint;
+  Int_t StripToPrint=127;
+
+  for (Int_t j = Strip_Start; j <= Strip_End; j++)
+  {
+  std::cout << "test 3 " << j << std::endl;
+    ///// Get the histogram of det i and strip j /////
+    CurrentStrip=j;
+    number.seekp(0);
+    number << j;
+    hname = str+(number.str().c_str());
+    TH1F *hist = (TH1F*) inFile->Get(((string)hname).c_str());
+
+    // Prevent rebinning in Pedestal
+    TH1F *histAlpha = (TH1F*)hist->Clone();
+    histAlpha->Rebin(2);
+
+    Alpha(histAlpha,
+        xy,
+        Pedestals(hist));
+
+    //Tsummary->WaitPrimitive();
+    /*if(xy == "X") 	   histAlpha->GetXaxis()->SetRangeUser(8500,9200);
+    else if(xy == "Y") histAlpha->GetXaxis()->SetRangeUser(7000,8000);*/
+    if(xy == "X") 	   histAlpha->GetXaxis()->SetRangeUser(Xmin,Xmax);
+    else if(xy == "Y") histAlpha->GetXaxis()->SetRangeUser(Ymin,Ymax);
+
+
+    if(j == StripToPrint-1) 
+    { //TH1F histAlpha67 = TH1F(*histAlpha);
+      histAlphaToPrint = (TH1F*)histAlpha->Clone();
+    }
+
+    //Buffer->WaitPrimitive();
+  }
+
+  Tsummary->cd(1); 
+  mean_extrapolation = ZeroDispersion->GetMean(2);
+  ZeroDispersion->SetMaximum(mean_extrapolation+30);ZeroDispersion->SetMinimum(mean_extrapolation-30);
+  ZeroDispersion->SetTitle("Scattered plot of zero extrapolation dispersion : Ped.+b/a");
+  ZeroDispersion->SetMarkerStyle(2);
+  ZeroDispersion->Draw("ap");
+  //Draw the mean line
+  TLine mean_line = TLine(0, ZeroDispersion->GetMean(2), 140, ZeroDispersion->GetMean(2) );
+  mean_line.Draw("");
+
+
+  std::cout << "test 4" << std::endl;
+  Tsummary->cd(2);
+  histAlphaToPrint->SetStats(true);
+  histAlphaToPrint->SetTitle("Raw Spectrum of a strip with gaussian fit");
+  histAlphaToPrint->Draw();
+
+  Tsummary->cd(3); 
+  Dispersion->Draw();
+
+  Tsummary->cd(4); 
+  sigma_fit->Draw();
+  TF1 *sigma_fit_fit = new TF1("sigma_fit_fit", "gaus", 0, 5);
+  sigma_fit->Fit("sigma_fit_fit", "Q");
+  sigma_fit_centroid = sigma_fit_fit->GetParameter(1);
+  sigma_fit_sigma = sigma_fit_fit->GetParameter(2);
+
+  Tsummary->cd(5) ;
+  coeff_a->SetMarkerStyle(2);
+  coeff_a->SetMaximum(coeff_a->GetMean(2)+0.002);coeff_a->SetMinimum(coeff_a->GetMean(2)-0.002);
+  coeff_a->SetTitle("Gain a (MeV/channel)");
+  coeff_a->Draw("ap");
+
+  Tsummary->cd(6);
+  coeff_b->SetMaximum(coeff_b->GetMean(2)+10);coeff_b->SetMinimum(coeff_b->GetMean(2)-10);
+  coeff_b->SetMarkerStyle(2);
+  coeff_b->SetTitle("Offset b (MeV)");
+  coeff_b->Draw("ap");
+
+  TString filename = Tsummary->GetName();
+  Tsummary->SaveAs(filename+".pdf");
+  Tsummary->Close();
+  system("mv "+filename+".pdf ./" + folder + "/latex/pictures");
+
+  peaks_file.close();
+  calib_file.close();
+  dispersion_file.close();
+
+  LatexSummaryTelescope();
+  delete Tsummary   ;
+  delete sigma_fit  ;
+  delete Dispersion ;
+
+  Buffer->Close();   
+}
+
+/////////////////////////////////
+Double_t Pedestals(TH1F *hist)
+{
+
+  if(Pedestals_Aligned)
+    return 8192 ;
+
+  else
+  {
+    TF1 *gauss=new TF1("gauss","gaus",0,1024);
+
+    hist->SetAxisRange(7800,8500);
+
+    ///// Peak search /////
+    TSpectrum *s = new TSpectrum(2,1);
+    Int_t nfound =0;
+    nfound = s->Search(hist,2," ");
+
+    /* Float_t *xpeaks = s->GetPositionX(); */
+    Double_t *xpeaks = s->GetPositionX();
+
+    Float_t linf =0, lsup =0; 
+    Double_t sum=0, mean=0, sigma=0;
+
+    if(nfound != 1 ) 
+      cout << "########   PROBLEM Nfound != NAsked !  ########   " << hist->GetName() <<"  Nfound:"<<nfound<<endl;
+
+    else {
+      linf = xpeaks[0]-10;
+      lsup = xpeaks[0]+10; 
+      gauss=new TF1("gauss","gaus",linf,lsup); 
+      gauss->SetRange(linf,lsup);
+      hist->Fit(gauss,"RQ");
+
+      sum = gauss->GetParameter(0);
+      mean = gauss->GetParameter(1);
+      sigma = gauss->GetParameter(2);
+
+      if(sigma > 3)
+        BadStrip[CurrentStrip] += " Alpha peak too large;" ;
+
+    }
+
+    delete s; delete gauss;
+    return (mean) ;
+  }
+
+
+}
+
+/////////////////////////////////
+void Alpha(TH1F *hist, TString xy, Double_t Pedestal)
+{
+
+  if(xy == "X") 		hist->GetXaxis()->SetRangeUser(Xmin,Xmax);
+//  if(xy == "X") 		hist->GetXaxis()->SetRangeUser(8300,10000);
+  else if(xy == "Y") 	hist->GetXaxis()->SetRangeUser(Ymin,Ymax);
+
+  if(!Finder(hist, xy, mean, sigma )) cout << "On "<< hist->GetName() << endl ;
+
+  // Fit 
+  TGraphErrors* gr_MM= new TGraphErrors(4);
+
+  if(method == "ZeroForce")
+  {
+    a = Calib_ZeroForceMethod((string)xy,gr_MM,Pedestal, mean,sigma);
+    b = -Pedestal*a ;
+  }
+
+  else if(method == "ZeroExtrapolation")
+  {
+    Calib_ZeroExtrapolationMethod(hist,(string)xy,gr_MM,Pedestal, mean, sigma,a,b);
+  }
+
+}
+
+/////////////////////////////////
+bool Finder(TH1F *h, TString xy, Double_t *mean, Double_t *sigma)
+{
+
+  /////////////////////////////////////////////////
+  //						                                 //
+  //	           ALPHA  FINDER		               //
+  //						                                 //
+  /////////////////////////////////////////////////
+
+  for(int k=0; k<3; k++)
+  {
+    mean[k]=0;
+    sigma[k]=0;
+  }
+
+  Double_t resolsig = 5;
+  Float_t resolsigTSpec = 1;
+  Double_t seuil = 0.05;
+  Int_t npeaks = 3;   // maximum number of peaks that can be found
+
+  //////// Peak finder
+
+  TSpectrum *s = new TSpectrum(npeaks,resolsigTSpec);
+
+  Int_t nfound = s->Search(h, resolsig, "new", seuil);
+  Double_t *xpeaks = s->GetPositionX();
+ 
+  //for(int i=0; i< nfound; i++)
+    //cout << xpeaks[i] << endl;
+
+  //Sort in growing order the array
+  if(nfound>1)
+  {
+    for(Int_t p=0;p<nfound;p++)
+    {
+      for(Int_t i=0;i<nfound-1;i++)
+      {
+        if(xpeaks[i]>xpeaks[i+1])
+        {
+          Float_t varia=xpeaks[i];
+          xpeaks[i]=xpeaks[i+1];
+          xpeaks[i+1]=varia;
+        }	  
+      }
+    }
+  }
+
+  Float_t linf=0, lsup=0; 
+
+  // If 3 peaks found
+  if(nfound == 3)
+  {
+    for (Int_t p=0;p<nfound;p++)
+    {   
+      if(xy == "X")
+      {			
+        linf = xpeaks[p]-2;
+        lsup = xpeaks[p]+8;
+      }
+
+      else if (xy == "Y")
+      {			
+        linf = xpeaks[p]-8;
+        lsup = xpeaks[p]+2;
+      }
+
+      TF1 *gauss = new TF1("gauss","gaus",linf,lsup);
+      h->Fit(gauss,"RQ");
+      mean[p] = gauss->GetParameter(1);
+      sigma[p]= gauss->GetParameter(2);
+      //cout << mean[p] << endl;
+
+      sigma_fit->Fill(gauss->GetParameter(2));
+    }
+  }
+
+  if(nfound!=3)
+  {
+    ostringstream numP;
+    numP << nfound ;
+    cout << nfound << "peaks found!" << endl;
+    BadStrip[CurrentStrip] += " " + numP.str() + " peak(s) found;" ;
+
+    for (Int_t p=0;p<3;p++)
+    {
+      cout << "attention, nombre de pics different de 3!!!" ;
+      mean[p]=-1;
+      sigma[p]=-1;
+      return false ;
+    }
+  }
+
+  return true ;
+}
+
+
+/////////////////////////////////
+Double_t Calib_ZeroForceMethod(string xy,TGraphErrors *gr,float Pedestal, Double_t *mean, Double_t *sigma)
+{  
+  Double_t energy[3];
+  Double_t errors[3];
+
+  if(xy=="X")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyX[i];
+      errors[i] = errorsX[i];
+    }
+
+  if(xy=="Y")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyY[i];
+      errors[i] = errorsY[i];
+    }
+
+  gr->SetPoint(0,Pedestal,energy[0]);
+
+  for (Int_t p = 0; p < 3; p++) {
+    gr->SetPoint(p, mean[p], energy[p]);
+    gr->SetPointError(p, sigma[p], errors[p]);    
+  }
+
+  TF1 *f1 = new TF1("f1",Form("[0]*(x-%f)",Pedestal));
+  gr->Fit("f1", "Q" );
+
+  a = f1 -> GetParameter(0);
+
+  if (xy == "X"){
+    calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+
+  else if (xy == "Y"){
+    calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+  delete f1;
+  return a ;
+}
+
+/////////////////////////////////
+Double_t Calib_ZeroExtrapolationMethod(TH1F* hist , string xy,TGraphErrors *gr, float Pedestal, Double_t* mean, Double_t* sigma, Double_t &a , Double_t &b)
+{  
+  Double_t energy[3];
+  Double_t errors[3];
+
+  if(xy=="X")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyX[i];
+      errors[i] = errorsX[i];
+    }
+
+  if(xy=="Y")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyY[i];
+      errors[i] = errorsY[i];
+    }
+
+  for (Int_t p = 0; p < 3; p++) {
+    gr->SetPoint(p, mean[p], energy[p]);
+    gr->SetPointError(p, sigma[p], errors[p]);    
+  }
+
+  TF1 *f1 = new TF1("f1","[1]+[0]*x");
+  gr->Fit("f1", "Q" );
+
+  a = f1 -> GetParameter(0);
+  b = f1 -> GetParameter(1);
+
+  if(RefitWithSatellite)
+  {
+    Find_Satellites(hist);
+
+    for (Int_t p = 0; p < 3; p++) 
+    {
+      gr->SetPoint(p, mean[p], energy[p]);
+      gr->SetPointError(p, sigma[p], a*sigma[p]);    
+    }
+
+    gr->Fit("f1", "Q" );
+
+    a = f1 -> GetParameter(0);
+    b = f1 -> GetParameter(1);
+  }
+  std::cout << "/////////////// " << energy[0] << "  " << mean[0] << std::endl;
+
+
+  if( (a < 0.009 &&  a > 0.006) || (a > -0.009 &&  a < -0.006) )  
+    coeff_a->SetPoint(CurrentStrip,CurrentStrip,a);
+
+  if( (b < -54 && b > -72) || (b > 54 && b < 72) )
+    coeff_b->SetPoint(CurrentStrip,CurrentStrip,b);
+
+  // look at the dispersion around Pedestals
+  Double_t dispersion = Pedestal + b/a ;
+  dispersion_file  << "MUSETT_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_E_Zero_Dispersion " << dispersion << endl ;
+
+  // Condition avoid Mean problem due to a few large value
+  if(dispersion<40 && dispersion>-40 )
+    ZeroDispersion->SetPoint(CurrentStrip,CurrentStrip,dispersion);
+
+  Dispersion->Fill(dispersion);
+
+  if(dispersion > 30 || dispersion < -30)
+  {
+    ostringstream disp;
+    disp << dispersion ;
+    BadStrip[CurrentStrip] += " zero extrapolation too high:" + disp.str() +"channels; ";
+  }
+
+
+  if (xy == "X"){
+    calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+
+  else if (xy == "Y"){
+    calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+  delete f1;
+  return a ;
+
+}
+
+/////////////////////////////////////////
+void LatexSummaryHeader(TString xy)
+{
+
+  latex_file.open(folder+"/latex/"+main_name+".tex");
+
+  ///// Write File Header
+
+  latex_file << "\\documentclass[a4paper,6pt]{article}" << endl ;
+  latex_file << "\\usepackage[french]{babel}" << endl ;
+  latex_file << "\\usepackage[T1]{fontenc}" << endl ;
+  latex_file << "\\usepackage{graphicx}" << endl ;
+  latex_file << "\\usepackage{fullpage}" << endl ;
+  latex_file << "\\topmargin = 0pt" << endl ;
+  latex_file << "\\headsep = 0pt" << endl ;
+
+  // Start Document
+  latex_file << "\\begin{document}" << endl ;
+  latex_file << "\\title{MUSETT DSSD Energy Calibration Report}" << endl ;
+
+  latex_file << "\\date{}" << endl ;
+  latex_file << "\\maketitle" << endl ;
+
+  // Write Report header
+  latex_file << "\\section{Calibration Summary}" << endl ;
+  latex_file << "\\begin{itemize}" << endl ;
+  latex_file << "\t \\item[{\\bf Experiment:}] "<< Experiment << endl ;
+  latex_file << "\t \\item[{\\bf Operator:}] "<< Operator << endl ;
+  latex_file << "\t \\item[{\\bf App. Date:}] "<< Run_Period << endl ;
+  latex_file << "\t \\item[{\\bf Source:}] "<< Source << endl ;
+  latex_file << "\t \\item[{\\bf Dead Layer:}] "<< "Al "<< AlThickness/micrometer << "$\\mu$m + Si " << SiThickness/micrometer << "$\\mu$m" << endl ;
+  latex_file << "\t \\item[{\\bf Comment:}] "<< Comment << endl ;
+  latex_file << "\t \\item[] "<< endl ;
+  latex_file << "\t \\item[{\\bf Calibration Method:}] "<< " " << method << " "<< endl ;
+  latex_file << "\t \\item[{\\bf Telescope Treated:}] "<<  " " << Telescope_Number << endl ;
+  latex_file << "\t \\item[{\\bf Strip Treated:}] "<<  " " << Strip_Start << " to "<< Strip_End << " " << endl ;
+  latex_file << "\t \\item[{\\bf DSSD Side:}] "<< " " <<  xy << endl ;
+
+  latex_file << "\\end{itemize}" << endl ;
+
+  latex_file << "\\begin{itemize}" << endl ;
+  latex_file << "\t \\item[] "<< endl ;
+  latex_file << "\t \\item[] "<< endl ;
+  latex_file << "\\end{itemize}" << endl ;
+
+  latex_file << "{\\bf Source Description:} " << endl ;
+  latex_file << "\\begin{center}"<<endl ;
+  latex_file << "\\begin{tabular}{ | c | c | c | } "<<endl ;
+  latex_file << "\\hline "<<endl ;
+  latex_file << "Isotope & Original Energy (MeV) & Branching Ratio \\\\ \\hline " << endl ;
+
+  for(int hh = 0 ; hh < Source_Number_Peak ; hh++)
+  {
+    latex_file << Source_isotope[hh] << " & " << Source_E[hh] << " & " << Source_branching_ratio[hh] << " \\\\ \\hline" << endl;
+  }
+
+  latex_file << "\\end{tabular} "<<endl ;
+  latex_file << "\\end{center}"<<endl ;
+
+  latex_file <<"\\pagebreak"<<endl ;
+}
+
+///
+void LatexSummaryEnder()
+{
+  latex_file << endl <<  "\\end{document}" << endl ;
+  latex_file.close();
+  // generate the pdf file and clean-up
+  system("pdflatex "+folder+"/latex/"+main_name+".tex");
+  system("rm -f *.log");
+  system("rm -f *.aux");
+  system("mv " + main_name+".pdf "+folder  );
+}
+
+///
+void LatexSummaryTelescope()
+{
+  /// Write main summary
+  latex_file << "\\section{Telescope "<< CurrentTelescope << " }"<<endl ;
+  /// List symptomatic strips and reason
+
+  if(BadStrip.size()>0)
+  {
+    latex_file << " Bad Strip:" << endl ;
+    latex_file << "\\begin{center}"<<endl ;
+    latex_file << "\\begin{tabular}{ | c | c | } "<<endl ;
+    latex_file << "\\hline "<<endl ;
+    latex_file << " Strip Number & Problem \\\\ \\hline "<<endl ;
+    map<int,string>::iterator it ;
+    for(it = BadStrip.begin() ; it!=BadStrip.end() ; it++)
+    {
+      latex_file << it->first << " & " << it->second <<  " \\\\ \\hline "<<endl ;
+    }
+
+    latex_file << "\\end{tabular} "<<endl ;
+    latex_file << "\\end{center}"<<endl ;
+  }
+
+  else
+    latex_file << "Bad Strip : All Strip are ok."<<endl ;
+
+  // Add the Graph
+  TString filename = Tsummary->GetName();
+  TString path = folder+"/latex/pictures/"+filename+".pdf";
+
+  latex_file <<"\\begin{figure}[htcb!]"<<endl ;
+  latex_file <<"\\begin{center}"<<endl ;
+  latex_file <<"\\includegraphics[width=0.7\\textwidth]{"+path +"}"<<endl ;
+  latex_file <<"\\end{center}"<<endl ;
+  latex_file <<"\\end{figure}"<<endl ;
+
+  latex_file <<"\\pagebreak"<<endl ;
+
+  latex_file << "Sigma fit centroid: " << sigma_fit_centroid << endl << endl;
+  latex_file << "Sigma fit sigma: " << sigma_fit_sigma << endl;
+
+  /// add summary graph and image
+
+}
+
+
+//////// Satellite finder and description of the Peak+Sattelite look-a-like function
+void Find_Satellites(TH1F *h)
+{
+
+  if(mean[0]==0 && mean[1]==0 && mean[2]==0) { cout << "pas de pics ---> pas de satellites!" << endl;}
+
+  else {
+
+    Float_t linf1 =0 , lsup1 =0, linf2 =0 , lsup2 =0 , linf3 =0 , lsup3=0;
+
+    if(a>0) { // ie Y case
+      linf1 = mean[0]-15; lsup1 = mean[0]+10;
+      linf2 = mean[1]-15; lsup2 = mean[1]+10;
+      linf3 = mean[2]-15; lsup3 = mean[2]+10;
+    }
+
+    else { // ie X case 
+      lsup1 = mean[0]+15; linf1 = mean[0]-10;
+      lsup2 = mean[1]+15; linf2 = mean[1]-10;
+      lsup3 = mean[2]+15; linf3 = mean[2]-10;
+    }
+
+    Double_t keVtoMeV = 1./1000. ;
+
+    TF1 *Pu = new TF1("fit_sat_Pu", source_Pu, linf1, lsup1, 6);
+    Pu->SetParameters(150,mean[0],mean[0]-12.4*keVtoMeV/a,mean[0]-51.6*keVtoMeV/a,sigma[0]);
+    Pu->SetParLimits(2,mean[0]-12.4*keVtoMeV/a-10,mean[0]-12.6*keVtoMeV/a+10);
+    Pu->SetParLimits(3,mean[0]-51.6*keVtoMeV/a-10,mean[0]-51.6*keVtoMeV/a+10);
+    Pu->SetParNames("Constant","Mean_value1","Mean_value2","Mean_value3","SigmaPu");
+    h->Fit("fit_sat_Pu", "RQ");
+
+    TF1 *Am = new TF1("fit_sat_Am", source_Am, linf2, lsup2, 6);
+    Am->SetParameters(150,mean[1],mean[1]-43.2*keVtoMeV/a,mean[1]-98.4*keVtoMeV/a,sigma[1]);
+    Am->SetParLimits(2,mean[1]-43.2*keVtoMeV/a-10,mean[1]-43.2*keVtoMeV/a+10);
+    Am->SetParLimits(3,mean[1]-98.4*keVtoMeV/a-10,mean[1]-98.4*keVtoMeV/a+10);
+    Am->SetParNames("Constant","Mean_value1","Mean_value2","Mean_value3","SigmaAm");
+    h->Fit("fit_sat_Am", "RQ+");
+
+
+    TF1 *Cm = new TF1("fit_sat_Cm", source_Cm, linf3, lsup3, 6);
+    Cm->SetParameters(150,mean[2],mean[2]-43.1*keVtoMeV/a,sigma[2]);
+    Cm->SetParLimits(2,mean[2]-43.1*keVtoMeV/a-10,mean[0]-43.1*keVtoMeV/a-10);
+    Cm->SetParNames("Constant","Mean_value1","Mean_value2","SigmaCm");
+    h->Fit("fit_sat_Cm", "RQ+");
+
+    mean[0]=Pu->GetParameter(1);  // Position of the 1st principal peak
+    sigma[0]=Pu->GetParameter(4); // Sigma of the 1st principal peak
+    sigma_fit->Fill(sigma[0]) ;
+    error_par[0]= Pu->GetParError(1);
+    mean[1]=Am->GetParameter(1);
+    sigma[1]=Am->GetParameter(4);
+    sigma_fit->Fill(sigma[1]) ;
+    error_par[1]= Am->GetParError(1);
+    mean[2]=Cm->GetParameter(1);
+    sigma[2]=Cm->GetParameter(3);
+    sigma_fit->Fill(sigma[2]) ;
+    error_par[2]= Cm->GetParError(1);
+  }
+
+}
+
+///////////////////////////////////////////////
+Double_t source_Pu(Double_t *x, Double_t *par)
+{
+  // [0] : constant
+  // [1] : position peak1
+  // [2] : position peak2
+  // [3] : position peak3
+  // [4] : sigma
+
+  Double_t arg1 = 0;
+  Double_t arg2 = 0;
+  Double_t arg3 = 0;
+
+  if(par[4]!=0) { 
+    arg1 = (x[0]-par[1])/par[4];
+    arg2 = (x[0]-par[2])/par[4];
+    arg3 = (x[0]-par[3])/par[4];
+  }
+
+  else cout << " Attention, sigma est nul !" << endl;
+
+  Double_t gaus1 =           par[0]*exp(-0.5*arg1*arg1);
+  Double_t gaus2 = 15.1/73.8*par[0]*exp(-0.5*arg2*arg2);
+  Double_t gaus3 = 11.5/73.8*par[0]*exp(-0.5*arg3*arg3);
+  Double_t fitval = gaus1+gaus2+gaus3;
+
+  return fitval;
+}
+
+///////////////////////////////////////////////
+Double_t source_Am(Double_t *x, Double_t *par)
+{
+  // [0] : constant
+  // [1] : position peak1
+  // [2] : position peak2
+  // [3] : position peak3
+  // [4] : sigma
+
+  Double_t arg1 = 0;
+  Double_t arg2 = 0;
+  Double_t arg3 = 0;
+
+  if(par[4]!=0) { 
+    arg1 = (x[0]-par[1])/par[4];
+    arg2 = (x[0]-par[2])/par[4];
+    arg3 = (x[0]-par[3])/par[4];
+  }
+
+  else cout << " Attention, sigma est nul !" << endl;
+
+  Double_t gaus1 =           par[0]*exp(-0.5*arg1*arg1);
+  Double_t gaus2 = 13.0/84.5*par[0]*exp(-0.5*arg2*arg2);
+  Double_t gaus3 = 1.6/84.5 *par[0]*exp(-0.5*arg3*arg3);
+  Double_t fitval= gaus1+gaus2+gaus3;
+
+  return fitval;
+}
+
+///////////////////////////////////////////////
+Double_t source_Cm(Double_t *x, Double_t *par)
+{
+  // [0] : constante
+  // [1] : position peak1
+  // [2] : position peak2
+  // [3] : sigma
+
+  Double_t arg1 = 0;
+  Double_t arg2 = 0;
+
+  if(par[3]!=0) { 
+    arg1 = (x[0]-par[1])/par[3];
+    arg2 = (x[0]-par[2])/par[3];
+  }
+
+  else cout << " Attention, sigma est nul !" << endl;
+
+  Double_t gaus1 =           par[0]*exp(-0.5*arg1*arg1);
+  Double_t gaus2 = 23.6/76.4*par[0]*exp(-0.5*arg2*arg2);
+  Double_t fitval= gaus1+gaus2; 
+
+  return fitval;
+}  
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/EnergyCalibrator.h b/Projects/MUSETT/calibration/calib_simu/Energy/EnergyCalibrator.h
new file mode 100644
index 0000000000000000000000000000000000000000..9a14ef624c44f1e4b32b7b2a25b3a1ca7fb12147
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/EnergyCalibrator.h
@@ -0,0 +1,134 @@
+// STL
+#include<stdlib.h>
+#include<stdio.h>
+#include <time.h>
+#include <iostream>
+#include <fstream>
+#include <sstream>
+#include <map>
+
+// Root
+#include "TString.h"
+#include "TSpectrum.h"
+#include "TGraphErrors.h"
+#include "TGraph.h"
+#include "TCanvas.h"
+#include "TFile.h"
+#include "TTree.h"
+#include "TH1F.h"
+#include "TF1.h"
+#include "TStyle.h"
+#include "TLine.h"
+
+//NPTool
+#include "NPEnergyLoss.h"
+#include "NPSystemOfUnits.h"
+
+
+using namespace NPUNITS;
+using namespace NPL;
+
+/// DEFINING GLOBAL VARIABLE
+
+double mean_extrapolation=100;
+
+/// Parameter used in the macro
+// Micrometer
+Double_t AlThickness;
+Double_t SiThickness;
+Double_t CThickness;
+EnergyLoss EL_Al("./EnergyLossTable/alpha_Al.G4table" , "G4Table", 100) ;
+EnergyLoss EL_Si("./EnergyLossTable/alpha_Si.G4table" , "G4Table", 100) ;
+EnergyLoss EL_C("./EnergyLossTable/alpha_C.G4table" , "G4Table", 100) ;
+// Information about the calibration condition (use Latex marks-up)
+
+const TString xy                  = "Y";
+const TString Experiment          = "double_alpha";
+const TString Run_Period          = "21/06/2023"; 
+const TString Operator            = "Hugo";
+const TString Source              = "3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po";
+const TString Comment             = "MUSETT";
+const char* frun = "run_0274";
+
+
+
+
+int Telescope_Number=0;
+const int Strip_Start=0;
+const int Strip_End=127;
+
+const int Xmin = 8700;
+const int Xmax = 9500;
+
+const int Ymin = 6800;
+const int Ymax = 8000;
+
+// choosing a method for the fit
+const TString method = "ZeroExtrapolation" ;
+//const TString method = "ZeroForce";
+const bool RefitWithSatellite = false;
+const bool Pedestals_Aligned = true;   
+Int_t CurrentTelescope = 0;
+Int_t CurrentStrip     = 0;
+TString folder;
+TString main_name;
+TCanvas* Tsummary;
+TCanvas* Buffer;
+double sigma_fit_centroid = 0.;
+double sigma_fit_sigma = 0.;
+
+map<int,string> BadStrip;
+
+// Defining the array used after (order needs to be diffent for X and Y )
+Int_t NumberOfIsotope;
+
+// Source original value
+Int_t Source_Number_Peak;
+TString*  Source_isotope;
+Double_t* Source_branching_ratio;
+Double_t* Source_E;
+Double_t* Source_Sig;
+
+// Source corrected value
+Double_t* energyX;
+Double_t* errorsX;
+Double_t* energyY;
+Double_t* errorsY;
+
+// Calibration Coefficient
+Double_t a ;
+Double_t b ;
+
+Double_t* mean      = new Double_t[3]; 
+Double_t* sigma     = new Double_t[3];
+Double_t* error_par = new Double_t[3];
+
+TGraph* ZeroDispersion ;
+ofstream peaks_file, calib_file, dispersion_file , calib_online_file, latex_file;; 
+
+TH1F* sigma_fit  ;
+TH1F* Dispersion ;
+TGraph* coeff_a ;
+TGraph* coeff_b ;
+
+TFile *inFile;
+
+/// Function Header
+void AutoCalibration(int first_telescope ,int last_telescope, std::string fDet);
+void EnergyCalibrator();
+Double_t Pedestals(TH1F *);
+void Alpha(TH1F*, TString, Double_t);
+bool Finder(TH1F*, TString , Double_t*, Double_t*);
+Double_t Calib_ZeroForceMethod(string ,TGraphErrors*,float, Double_t*, Double_t*);
+Double_t Calib_ZeroExtrapolationMethod(TH1F* hist ,string ,TGraphErrors*,float, Double_t*, Double_t*, Double_t &a , Double_t &b);
+void LatexSummaryHeader(TString xy);
+void LatexSummaryEnder();
+void LatexSummaryTelescope();
+void DefineSource(TString sourceName="3 alphas");
+
+
+void Find_Satellites(TH1F *h);
+Double_t source_Pu(Double_t *x, Double_t *par);
+Double_t source_Am(Double_t *x, Double_t *par);
+Double_t source_Cm(Double_t *x, Double_t *par);
+
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/EnergyCalibrator_C.d b/Projects/MUSETT/calibration/calib_simu/Energy/EnergyCalibrator_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..998cb85a8698d6155c17e737757ae896dd57f834
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/EnergyCalibrator_C.d
@@ -0,0 +1,110 @@
+
+# DO NOT DELETE
+
+./EnergyCalibrator_C.so: EnergyCalibrator.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSpectrum.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraphErrors.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraph.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCanvas.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TPad.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualPad.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttPad.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/GuiTypes.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Buttons.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttBBox2D.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttCanvas.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFormula.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/Types.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMethodCall.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1AbsComposition.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMath.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TError.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/ParamFunctor.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStyle.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttText.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TColor.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TLine.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPEnergyLoss.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSpline.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPGlobalSystemOfUnits.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPPhysicalConstants.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPSystemOfUnits.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+EnergyCalibrator_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/EnergyLossTable/alpha_Al.G4table b/Projects/MUSETT/calibration/calib_simu/Energy/EnergyLossTable/alpha_Al.G4table
new file mode 100644
index 0000000000000000000000000000000000000000..e709021f7318e8035a1b958d1a4a4746ddd0822d
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/EnergyLossTable/alpha_Al.G4table
@@ -0,0 +1,10002 @@
+Table from Geant4 generate using NPSimulation 	Particle: alpha	Material: Aluminium
+0	0
+0.12	0.263296
+0.24	0.321639
+0.36	0.343225
+0.48	0.35083
+0.6	0.351191
+0.72	0.347455
+0.84	0.341367
+0.96	0.334008
+1.08	0.32598
+1.2	0.317694
+1.32	0.30938
+1.44	0.301191
+1.56	0.293217
+1.68	0.285509
+1.8	0.278096
+1.92	0.270987
+2.04	0.264181
+2.16	0.257675
+2.28	0.251464
+2.4	0.245534
+2.52	0.239869
+2.64	0.234458
+2.76	0.229288
+2.88	0.224347
+3	0.219621
+3.12	0.215096
+3.24	0.210762
+3.36	0.206608
+3.48	0.202622
+3.6	0.198797
+3.72	0.195121
+3.84	0.191588
+3.96	0.18819
+4.08	0.184918
+4.2	0.181769
+4.32	0.178734
+4.44	0.175806
+4.56	0.172981
+4.68	0.170252
+4.8	0.167615
+4.92	0.165066
+5.04	0.1626
+5.16	0.160215
+5.28	0.157903
+5.4	0.155662
+5.52	0.15349
+5.64	0.151385
+5.76	0.149342
+5.88	0.147358
+6	0.145432
+6.12	0.14356
+6.24	0.14174
+6.36	0.13997
+6.48	0.138249
+6.6	0.136573
+6.72	0.134941
+6.84	0.133351
+6.96	0.131802
+7.08	0.130293
+7.2	0.12882
+7.32	0.127384
+7.44	0.125983
+7.56	0.124615
+7.68	0.12328
+7.8	0.121976
+7.92	0.120701
+8.04	0.119219
+8.16	0.117982
+8.28	0.116771
+8.4	0.115586
+8.52	0.114426
+8.64	0.11329
+8.76	0.112177
+8.88	0.111086
+9	0.110018
+9.12	0.108971
+9.24	0.107944
+9.36	0.106938
+9.48	0.106318
+9.6	0.105349
+9.72	0.104294
+9.84	0.103368
+9.96	0.10246
+10.08	0.101568
+10.2	0.100698
+10.32	0.0998523
+10.44	0.0990212
+10.56	0.0982045
+10.68	0.0974016
+10.8	0.0966124
+10.92	0.0958364
+11.04	0.0953229
+11.16	0.0945601
+11.28	0.0937563
+11.4	0.0930218
+11.52	0.0922994
+11.64	0.0915887
+11.76	0.0910948
+11.88	0.0904129
+12	0.0897418
+12.12	0.0890813
+12.24	0.0884311
+12.36	0.087791
+12.48	0.0871608
+12.6	0.0865384
+12.72	0.0859271
+12.84	0.0853251
+12.96	0.0846983
+13.08	0.0841171
+13.2	0.0835445
+13.32	0.0831803
+13.44	0.082624
+13.56	0.0820757
+13.68	0.0815354
+13.8	0.0810029
+13.92	0.0804779
+14.04	0.0799603
+14.16	0.0794499
+14.28	0.0789467
+14.4	0.0784503
+14.52	0.0779608
+14.64	0.077478
+14.76	0.0770016
+14.88	0.0765317
+15	0.076068
+15.12	0.0756105
+15.24	0.075159
+15.36	0.0747134
+15.48	0.0742736
+15.6	0.0738394
+15.72	0.0736242
+15.84	0.0732002
+15.96	0.0727806
+16.08	0.072365
+16.2	0.071949
+16.32	0.0715452
+16.44	0.0711466
+16.56	0.0707529
+16.68	0.0703642
+16.8	0.0699802
+16.92	0.0696009
+17.04	0.0692261
+17.16	0.0688559
+17.28	0.0684902
+17.4	0.0681287
+17.52	0.0677716
+17.64	0.0674186
+17.76	0.0670698
+17.88	0.066725
+18	0.0663841
+18.12	0.0660472
+18.24	0.0657141
+18.36	0.0653848
+18.48	0.0650591
+18.6	0.0647371
+18.72	0.0644187
+18.84	0.0641038
+18.96	0.0637924
+19.08	0.0634843
+19.2	0.0631796
+19.32	0.0628782
+19.44	0.0625931
+19.56	0.0622985
+19.68	0.0620071
+19.8	0.0617188
+19.92	0.0614334
+20.04	0.0611511
+20.16	0.0608716
+20.28	0.0605951
+20.4	0.0603214
+20.52	0.0600504
+20.64	0.0597822
+20.76	0.0595167
+20.88	0.0592539
+21	0.0589936
+21.12	0.058736
+21.24	0.0584809
+21.36	0.0582283
+21.48	0.0579781
+21.6	0.0577304
+21.72	0.0574851
+21.84	0.0572421
+21.96	0.0570015
+22.08	0.0567632
+22.2	0.0565271
+22.32	0.0562933
+22.44	0.0560617
+22.56	0.0558322
+22.68	0.055618
+22.8	0.0553926
+22.92	0.0551694
+23.04	0.0549482
+23.16	0.0547289
+23.28	0.0545117
+23.4	0.0542964
+23.52	0.054083
+23.64	0.0540172
+23.76	0.0538059
+23.88	0.0535964
+24	0.0533888
+24.12	0.053183
+24.24	0.052979
+24.36	0.0527942
+24.48	0.0525939
+24.6	0.0523953
+24.72	0.0521983
+24.84	0.0520031
+24.96	0.0518095
+25.08	0.0516175
+25.2	0.0514271
+25.32	0.0512383
+25.44	0.0510511
+25.56	0.0508654
+25.68	0.0506812
+25.8	0.0504985
+25.92	0.0503174
+26.04	0.0501377
+26.16	0.0499594
+26.28	0.0497826
+26.4	0.0496071
+26.52	0.0494331
+26.64	0.0492605
+26.76	0.0490892
+26.88	0.0489193
+27	0.0487507
+27.12	0.0485834
+27.24	0.0484174
+27.36	0.0482527
+27.48	0.0480893
+27.6	0.047949
+27.72	0.0477881
+27.84	0.0476283
+27.96	0.0474698
+28.08	0.0473124
+28.2	0.0471562
+28.32	0.0470012
+28.44	0.0468475
+28.56	0.0466953
+28.68	0.0465443
+28.8	0.0463944
+28.92	0.0462455
+29.04	0.0460978
+29.16	0.045951
+29.28	0.0458054
+29.4	0.0456607
+29.52	0.0455171
+29.64	0.0453746
+29.76	0.045233
+29.88	0.0450924
+30	0.0449528
+30.12	0.0448141
+30.24	0.0446765
+30.36	0.0445397
+30.48	0.0444039
+30.6	0.0442691
+30.72	0.0441352
+30.84	0.0440021
+30.96	0.04387
+31.08	0.0437388
+31.2	0.0436085
+31.32	0.043479
+31.44	0.0433504
+31.56	0.0432226
+31.68	0.0430957
+31.8	0.0429697
+31.92	0.0428444
+32.04	0.04272
+32.16	0.0425964
+32.28	0.0424736
+32.4	0.0423516
+32.52	0.0422824
+32.64	0.0421619
+32.76	0.0420422
+32.88	0.0419232
+33	0.041805
+33.12	0.0416875
+33.24	0.0415708
+33.36	0.0414548
+33.48	0.0413396
+33.6	0.041225
+33.72	0.0411112
+33.84	0.0409981
+33.96	0.0408857
+34.08	0.040774
+34.2	0.040663
+34.32	0.0405526
+34.44	0.0404429
+34.56	0.0403339
+34.68	0.0402256
+34.8	0.0401179
+34.92	0.0400109
+35.04	0.0399045
+35.16	0.0397987
+35.28	0.0396936
+35.4	0.0395891
+35.52	0.0394852
+35.64	0.039382
+35.76	0.0392793
+35.88	0.0391773
+36	0.0390758
+36.12	0.038975
+36.24	0.0388747
+36.36	0.038775
+36.48	0.0386759
+36.6	0.0385773
+36.72	0.0384794
+36.84	0.038382
+36.96	0.0382851
+37.08	0.0381888
+37.2	0.038093
+37.32	0.0379978
+37.44	0.0379031
+37.56	0.037809
+37.68	0.0377153
+37.8	0.0376222
+37.92	0.0375297
+38.04	0.0374376
+38.16	0.037346
+38.28	0.037255
+38.4	0.0371644
+38.52	0.0370744
+38.64	0.0369848
+38.76	0.0368957
+38.88	0.0368071
+39	0.036719
+39.12	0.0366314
+39.24	0.0365442
+39.36	0.0364575
+39.48	0.0363713
+39.6	0.0362137
+39.72	0.0361264
+39.84	0.0360395
+39.96	0.0359532
+40.08	0.0358672
+40.2	0.0357818
+40.32	0.0356968
+40.44	0.0356122
+40.56	0.0355281
+40.68	0.0354444
+40.8	0.0353611
+40.92	0.0352783
+41.04	0.0351959
+41.16	0.035114
+41.28	0.0350325
+41.4	0.0349514
+41.52	0.0348707
+41.64	0.0347905
+41.76	0.0347106
+41.88	0.0346311
+42	0.0345521
+42.12	0.0344734
+42.24	0.0343952
+42.36	0.0343173
+42.48	0.0342398
+42.6	0.0341627
+42.72	0.034086
+42.84	0.0340097
+42.96	0.0339337
+43.08	0.0338582
+43.2	0.033783
+43.32	0.0337081
+43.44	0.0336337
+43.56	0.0335595
+43.68	0.0334858
+43.8	0.0334124
+43.92	0.0333394
+44.04	0.0332667
+44.16	0.0331944
+44.28	0.0331224
+44.4	0.0330507
+44.52	0.0329794
+44.64	0.0329085
+44.76	0.0328378
+44.88	0.0327676
+45	0.0326976
+45.12	0.032628
+45.24	0.0325587
+45.36	0.0324897
+45.48	0.032421
+45.6	0.0323527
+45.72	0.0322847
+45.84	0.032217
+45.96	0.0321496
+46.08	0.0320825
+46.2	0.0320158
+46.32	0.0319493
+46.44	0.0318831
+46.56	0.0318173
+46.68	0.0317517
+46.8	0.0316865
+46.92	0.0316215
+47.04	0.0315568
+47.16	0.0314925
+47.28	0.0314284
+47.4	0.0313646
+47.52	0.0313011
+47.64	0.0312378
+47.76	0.0311749
+47.88	0.0311122
+48	0.0310498
+48.12	0.0309877
+48.24	0.0309259
+48.36	0.0308643
+48.48	0.030803
+48.6	0.030742
+48.72	0.0306812
+48.84	0.0306207
+48.96	0.0305605
+49.08	0.0305519
+49.2	0.0304919
+49.32	0.0304322
+49.44	0.0303728
+49.56	0.0303136
+49.68	0.0302547
+49.8	0.030196
+49.92	0.0301375
+50.04	0.0300794
+50.16	0.0300214
+50.28	0.0299637
+50.4	0.0299063
+50.52	0.0298491
+50.64	0.0297921
+50.76	0.0297354
+50.88	0.0296789
+51	0.0296227
+51.12	0.0295666
+51.24	0.0295108
+51.36	0.0294553
+51.48	0.0294
+51.6	0.0293449
+51.72	0.02929
+51.84	0.0292354
+51.96	0.029181
+52.08	0.0291268
+52.2	0.0290728
+52.32	0.029019
+52.44	0.0289655
+52.56	0.0289122
+52.68	0.0288591
+52.8	0.0288062
+52.92	0.0287535
+53.04	0.028701
+53.16	0.0286488
+53.28	0.0285968
+53.4	0.0285449
+53.52	0.0284933
+53.64	0.0284419
+53.76	0.0283906
+53.88	0.0283396
+54	0.0282888
+54.12	0.0282382
+54.24	0.0281878
+54.36	0.0281376
+54.48	0.0280875
+54.6	0.0280377
+54.72	0.0279881
+54.84	0.0279387
+54.96	0.0278894
+55.08	0.0278404
+55.2	0.0277915
+55.32	0.0277429
+55.44	0.0276944
+55.56	0.0276461
+55.68	0.0275068
+55.8	0.0274626
+55.92	0.0274185
+56.04	0.0273745
+56.16	0.0273308
+56.28	0.0272871
+56.4	0.0272437
+56.52	0.0272003
+56.64	0.0271572
+56.76	0.0271141
+56.88	0.0270712
+57	0.0270285
+57.12	0.0269859
+57.24	0.0269435
+57.36	0.0269012
+57.48	0.026859
+57.6	0.026817
+57.72	0.0267751
+57.84	0.0267334
+57.96	0.0266918
+58.08	0.0266504
+58.2	0.0266091
+58.32	0.0265679
+58.44	0.0265269
+58.56	0.026486
+58.68	0.0264453
+58.8	0.0264046
+58.92	0.0263642
+59.04	0.0263238
+59.16	0.0262836
+59.28	0.0262435
+59.4	0.0262036
+59.52	0.0261638
+59.64	0.0261241
+59.76	0.0260846
+59.88	0.0260451
+60	0.0260059
+60.12	0.0259667
+60.24	0.0259277
+60.36	0.0258888
+60.48	0.02585
+60.6	0.0258114
+60.72	0.0257728
+60.84	0.0257344
+60.96	0.0256962
+61.08	0.025658
+61.2	0.02562
+61.32	0.0255821
+61.44	0.0255443
+61.56	0.0255067
+61.68	0.0254691
+61.8	0.0254317
+61.92	0.0253944
+62.04	0.0253573
+62.16	0.0253202
+62.28	0.0252833
+62.4	0.0252465
+62.52	0.0252098
+62.64	0.0251732
+62.76	0.0251367
+62.88	0.0251004
+63	0.0250641
+63.12	0.025028
+63.24	0.024992
+63.36	0.0249561
+63.48	0.0249203
+63.6	0.0248847
+63.72	0.0248491
+63.84	0.0248137
+63.96	0.0247783
+64.08	0.0247431
+64.2	0.024708
+64.32	0.024673
+64.44	0.0246381
+64.56	0.0246033
+64.68	0.0245686
+64.8	0.0245341
+64.92	0.0244996
+65.04	0.0244653
+65.16	0.024431
+65.28	0.0243969
+65.4	0.0243628
+65.52	0.0243289
+65.64	0.0242951
+65.76	0.0242614
+65.88	0.0242278
+66	0.0241942
+66.12	0.0241608
+66.24	0.0241275
+66.36	0.0240943
+66.48	0.0240612
+66.6	0.0240282
+66.72	0.0239953
+66.84	0.0239625
+66.96	0.0239298
+67.08	0.0238972
+67.2	0.0238646
+67.32	0.0238322
+67.44	0.0237999
+67.56	0.0237677
+67.68	0.0237355
+67.8	0.0237035
+67.92	0.0236716
+68.04	0.0236397
+68.16	0.023608
+68.28	0.0235763
+68.4	0.0235448
+68.52	0.0235133
+68.64	0.0234819
+68.76	0.0234506
+68.88	0.0234195
+69	0.0233884
+69.12	0.0233574
+69.24	0.0233264
+69.36	0.0232956
+69.48	0.0232649
+69.6	0.0232342
+69.72	0.0232037
+69.84	0.0231732
+69.96	0.0231428
+70.08	0.0231125
+70.2	0.0230823
+70.32	0.0230522
+70.44	0.0230222
+70.56	0.0229922
+70.68	0.0229624
+70.8	0.0229326
+70.92	0.0229029
+71.04	0.0228733
+71.16	0.0228438
+71.28	0.0228143
+71.4	0.022785
+71.52	0.0227557
+71.64	0.0227265
+71.76	0.0226974
+71.88	0.0226684
+72	0.0226395
+72.12	0.0226106
+72.24	0.0225818
+72.36	0.0225532
+72.48	0.0225245
+72.6	0.022496
+72.72	0.0224676
+72.84	0.0224392
+72.96	0.0224109
+73.08	0.0223827
+73.2	0.0223545
+73.32	0.0223265
+73.44	0.0222985
+73.56	0.0222706
+73.68	0.0222428
+73.8	0.022215
+73.92	0.0221874
+74.04	0.0221598
+74.16	0.0221323
+74.28	0.0221048
+74.4	0.0220774
+74.52	0.0220502
+74.64	0.0220229
+74.76	0.0219958
+74.88	0.0219687
+75	0.0219417
+75.12	0.0219148
+75.24	0.021888
+75.36	0.0218612
+75.48	0.0218345
+75.6	0.0218079
+75.72	0.0217813
+75.84	0.0217548
+75.96	0.0217284
+76.08	0.0217021
+76.2	0.0216758
+76.32	0.0216496
+76.44	0.0216235
+76.56	0.0215974
+76.68	0.0215714
+76.8	0.0215455
+76.92	0.0215196
+77.04	0.0214939
+77.16	0.0214681
+77.28	0.0214425
+77.4	0.0214169
+77.52	0.0213914
+77.64	0.021366
+77.76	0.0213406
+77.88	0.0213153
+78	0.02129
+78.12	0.0212649
+78.24	0.0212398
+78.36	0.0212147
+78.48	0.0211897
+78.6	0.0211648
+78.72	0.02114
+78.84	0.0211152
+78.96	0.0210905
+79.08	0.0210658
+79.2	0.0210412
+79.32	0.0210167
+79.44	0.0209923
+79.56	0.0209679
+79.68	0.0209435
+79.8	0.0209193
+79.92	0.020895
+80.04	0.0208709
+80.16	0.0208468
+80.28	0.0208228
+80.4	0.0207988
+80.52	0.0207749
+80.64	0.0207511
+80.76	0.0207273
+80.88	0.0207036
+81	0.0206799
+81.12	0.0206563
+81.24	0.0206328
+81.36	0.0206093
+81.48	0.0205859
+81.6	0.0205626
+81.72	0.0205393
+81.84	0.020516
+81.96	0.0204928
+82.08	0.0204697
+82.2	0.0204467
+82.32	0.0204237
+82.44	0.0204007
+82.56	0.0203779
+82.68	0.020355
+82.8	0.0203551
+82.92	0.0203323
+83.04	0.0203096
+83.16	0.0202869
+83.28	0.0202643
+83.4	0.0202417
+83.52	0.0202192
+83.64	0.0201967
+83.76	0.0201743
+83.88	0.020152
+84	0.0201297
+84.12	0.0201075
+84.24	0.0200853
+84.36	0.0200632
+84.48	0.0200411
+84.6	0.0200191
+84.72	0.0199971
+84.84	0.0199752
+84.96	0.0199534
+85.08	0.0199316
+85.2	0.0199098
+85.32	0.0198881
+85.44	0.0198665
+85.56	0.0198449
+85.68	0.0198234
+85.8	0.0198019
+85.92	0.0197804
+86.04	0.0197591
+86.16	0.0197377
+86.28	0.0197164
+86.4	0.0196952
+86.52	0.019674
+86.64	0.0196529
+86.76	0.0196318
+86.88	0.0196108
+87	0.0195899
+87.12	0.0195689
+87.24	0.0195481
+87.36	0.0195272
+87.48	0.0195065
+87.6	0.0194857
+87.72	0.0194651
+87.84	0.0194444
+87.96	0.0194239
+88.08	0.0194033
+88.2	0.0193828
+88.32	0.0193624
+88.44	0.019342
+88.56	0.0193217
+88.68	0.0193014
+88.8	0.0192812
+88.92	0.019261
+89.04	0.0192408
+89.16	0.0192207
+89.28	0.0192007
+89.4	0.0191807
+89.52	0.0191607
+89.64	0.0191408
+89.76	0.019121
+89.88	0.0191011
+90	0.0190814
+90.12	0.0190616
+90.24	0.019042
+90.36	0.0190223
+90.48	0.0190027
+90.6	0.0189832
+90.72	0.0189637
+90.84	0.0189442
+90.96	0.0189248
+91.08	0.0189055
+91.2	0.0188861
+91.32	0.0188669
+91.44	0.0188476
+91.56	0.0188284
+91.68	0.0188093
+91.8	0.0187902
+91.92	0.0187711
+92.04	0.0187521
+92.16	0.0187332
+92.28	0.0187142
+92.4	0.0186953
+92.52	0.0186765
+92.64	0.0186577
+92.76	0.0186389
+92.88	0.0186202
+93	0.0186016
+93.12	0.0185829
+93.24	0.0185643
+93.36	0.0185458
+93.48	0.0185273
+93.6	0.0185088
+93.72	0.0184904
+93.84	0.018472
+93.96	0.0184537
+94.08	0.0184354
+94.2	0.0184171
+94.32	0.0183989
+94.44	0.0183807
+94.56	0.0183626
+94.68	0.0183445
+94.8	0.0183264
+94.92	0.0183084
+95.04	0.0182904
+95.16	0.0182725
+95.28	0.0182546
+95.4	0.0182367
+95.52	0.0182189
+95.64	0.0182011
+95.76	0.0181834
+95.88	0.0181657
+96	0.018148
+96.12	0.0181304
+96.24	0.0181128
+96.36	0.0180953
+96.48	0.0180778
+96.6	0.0180603
+96.72	0.0180429
+96.84	0.0180255
+96.96	0.0180081
+97.08	0.0179908
+97.2	0.0179735
+97.32	0.0179563
+97.44	0.017939
+97.56	0.0179219
+97.68	0.0179047
+97.8	0.0178876
+97.92	0.0178706
+98.04	0.0178536
+98.16	0.0178366
+98.28	0.0178196
+98.4	0.0178027
+98.52	0.0177858
+98.64	0.017769
+98.76	0.0177522
+98.88	0.0177354
+99	0.0177187
+99.12	0.017702
+99.24	0.0176853
+99.36	0.0176687
+99.48	0.0176521
+99.6	0.0176355
+99.72	0.017619
+99.84	0.0176025
+99.96	0.0175861
+100.08	0.0175696
+100.2	0.0175532
+100.32	0.0175369
+100.44	0.0175206
+100.56	0.0175043
+100.68	0.017488
+100.8	0.0174718
+100.92	0.0174557
+101.04	0.0174395
+101.16	0.0174234
+101.28	0.0174073
+101.4	0.0173913
+101.52	0.0173753
+101.64	0.0173593
+101.76	0.0173433
+101.88	0.0173274
+102	0.0173115
+102.12	0.0172957
+102.24	0.0172799
+102.36	0.0172641
+102.48	0.0172483
+102.6	0.0172326
+102.72	0.0172169
+102.84	0.0172013
+102.96	0.0171857
+103.08	0.0171701
+103.2	0.0171545
+103.32	0.017139
+103.44	0.0171235
+103.56	0.0171081
+103.68	0.0170926
+103.8	0.0170772
+103.92	0.0170619
+104.04	0.0170465
+104.16	0.0170312
+104.28	0.0170159
+104.4	0.0170007
+104.52	0.0169855
+104.64	0.0169703
+104.76	0.0169552
+104.88	0.01694
+105	0.0169249
+105.12	0.0169099
+105.24	0.0168949
+105.36	0.0168799
+105.48	0.0168649
+105.6	0.01685
+105.72	0.016835
+105.84	0.0168202
+105.96	0.0168053
+106.08	0.0167905
+106.2	0.0167757
+106.32	0.0167609
+106.44	0.0167462
+106.56	0.0167315
+106.68	0.0167168
+106.8	0.0167022
+106.92	0.0166876
+107.04	0.016673
+107.16	0.0166584
+107.28	0.0166439
+107.4	0.0166294
+107.52	0.0166149
+107.64	0.0166005
+107.76	0.0165861
+107.88	0.0165717
+108	0.0165573
+108.12	0.016543
+108.24	0.0165287
+108.36	0.0165144
+108.48	0.0165002
+108.6	0.016486
+108.72	0.0164718
+108.84	0.0164576
+108.96	0.0164435
+109.08	0.0164294
+109.2	0.0164153
+109.32	0.0164013
+109.44	0.0163872
+109.56	0.0163732
+109.68	0.0163593
+109.8	0.0163453
+109.92	0.0163314
+110.04	0.0163175
+110.16	0.0163037
+110.28	0.0162898
+110.4	0.016276
+110.52	0.0162623
+110.64	0.0162485
+110.76	0.0162348
+110.88	0.0162211
+111	0.0162074
+111.12	0.0161937
+111.24	0.0161801
+111.36	0.0161665
+111.48	0.016153
+111.6	0.0161394
+111.72	0.0161259
+111.84	0.0161124
+111.96	0.0160989
+112.08	0.0160855
+112.2	0.0160721
+112.32	0.0160587
+112.44	0.0160453
+112.56	0.016032
+112.68	0.0160187
+112.8	0.0160054
+112.92	0.0159921
+113.04	0.0159789
+113.16	0.0159657
+113.28	0.0159525
+113.4	0.0159393
+113.52	0.0159262
+113.64	0.015913
+113.76	0.0158999
+113.88	0.0158869
+114	0.0158738
+114.12	0.0158608
+114.24	0.0158478
+114.36	0.0158349
+114.48	0.0158219
+114.6	0.015809
+114.72	0.0157961
+114.84	0.0157832
+114.96	0.0157704
+115.08	0.0157575
+115.2	0.0157447
+115.32	0.0157319
+115.44	0.0157192
+115.56	0.0157065
+115.68	0.0156938
+115.8	0.0156811
+115.92	0.0156684
+116.04	0.0156558
+116.16	0.0156431
+116.28	0.0156306
+116.4	0.015618
+116.52	0.0156054
+116.64	0.0155929
+116.76	0.0155804
+116.88	0.0155679
+117	0.0155555
+117.12	0.015543
+117.24	0.0155306
+117.36	0.0155182
+117.48	0.015517
+117.6	0.0155047
+117.72	0.0154923
+117.84	0.01548
+117.96	0.0154677
+118.08	0.0154554
+118.2	0.0154431
+118.32	0.0154309
+118.44	0.0154187
+118.56	0.0154065
+118.68	0.0153943
+118.8	0.0153822
+118.92	0.01537
+119.04	0.0153579
+119.16	0.0153459
+119.28	0.0153338
+119.4	0.0153217
+119.52	0.0153097
+119.64	0.0152977
+119.76	0.0152857
+119.88	0.0152738
+120	0.0152619
+120.12	0.0152499
+120.24	0.015238
+120.36	0.0152262
+120.48	0.0152143
+120.6	0.0152025
+120.72	0.0151907
+120.84	0.0151789
+120.96	0.0151671
+121.08	0.0151554
+121.2	0.0151437
+121.32	0.015132
+121.44	0.0151203
+121.56	0.0151086
+121.68	0.015097
+121.8	0.0150853
+121.92	0.0150737
+122.04	0.0150622
+122.16	0.0150506
+122.28	0.015039
+122.4	0.0150275
+122.52	0.015016
+122.64	0.0150045
+122.76	0.0149931
+122.88	0.0149816
+123	0.0149702
+123.12	0.0149588
+123.24	0.0149474
+123.36	0.0149361
+123.48	0.0149247
+123.6	0.0149134
+123.72	0.0149021
+123.84	0.0148908
+123.96	0.0148795
+124.08	0.0148683
+124.2	0.0148571
+124.32	0.0148459
+124.44	0.0148347
+124.56	0.0148235
+124.68	0.0148124
+124.8	0.0148012
+124.92	0.0147901
+125.04	0.014779
+125.16	0.014768
+125.28	0.0147569
+125.4	0.0147459
+125.52	0.0147349
+125.64	0.0147239
+125.76	0.0147129
+125.88	0.0147019
+126	0.014691
+126.12	0.0146801
+126.24	0.0146691
+126.36	0.0146583
+126.48	0.0146474
+126.6	0.0146365
+126.72	0.0146257
+126.84	0.0146149
+126.96	0.0146041
+127.08	0.0145933
+127.2	0.0145826
+127.32	0.0145718
+127.44	0.0145611
+127.56	0.0145504
+127.68	0.0145397
+127.8	0.0145291
+127.92	0.0145184
+128.04	0.0145078
+128.16	0.0144972
+128.28	0.0144866
+128.4	0.014476
+128.52	0.0144654
+128.64	0.0144549
+128.76	0.0144443
+128.88	0.0144338
+129	0.0144233
+129.12	0.0144129
+129.24	0.0144024
+129.36	0.014392
+129.48	0.0143816
+129.6	0.0143711
+129.72	0.0143608
+129.84	0.0143504
+129.96	0.01434
+130.08	0.0143297
+130.2	0.0143194
+130.32	0.0143091
+130.44	0.0142988
+130.56	0.0142885
+130.68	0.0142783
+130.8	0.014268
+130.92	0.0142578
+131.04	0.0142476
+131.16	0.0142374
+131.28	0.0142273
+131.4	0.0142171
+131.52	0.014207
+131.64	0.0141969
+131.76	0.0141868
+131.88	0.0141767
+132	0.0141666
+132.12	0.0141566
+132.24	0.0141465
+132.36	0.0141365
+132.48	0.0141265
+132.6	0.0141165
+132.72	0.0141065
+132.84	0.0140966
+132.96	0.0140866
+133.08	0.0140767
+133.2	0.0140668
+133.32	0.0140569
+133.44	0.014047
+133.56	0.0140372
+133.68	0.0140273
+133.8	0.0140175
+133.92	0.0140077
+134.04	0.0139979
+134.16	0.0139881
+134.28	0.0139784
+134.4	0.0139686
+134.52	0.0139589
+134.64	0.0139491
+134.76	0.0139394
+134.88	0.0139298
+135	0.0139201
+135.12	0.0139104
+135.24	0.0139008
+135.36	0.0138912
+135.48	0.0138815
+135.6	0.013872
+135.72	0.0138624
+135.84	0.0138528
+135.96	0.0138433
+136.08	0.0138337
+136.2	0.0138242
+136.32	0.0138147
+136.44	0.0138052
+136.56	0.0137957
+136.68	0.0137863
+136.8	0.0137768
+136.92	0.0137674
+137.04	0.013758
+137.16	0.0137486
+137.28	0.0137392
+137.4	0.0137298
+137.52	0.0137205
+137.64	0.0137111
+137.76	0.0137018
+137.88	0.0136925
+138	0.0136832
+138.12	0.0136739
+138.24	0.0136647
+138.36	0.0136554
+138.48	0.0136462
+138.6	0.0136369
+138.72	0.0136277
+138.84	0.0136185
+138.96	0.0136093
+139.08	0.0136002
+139.2	0.013591
+139.32	0.0135819
+139.44	0.0135728
+139.56	0.0135637
+139.68	0.0135546
+139.8	0.0135455
+139.92	0.0135364
+140.04	0.0135273
+140.16	0.0135183
+140.28	0.0135093
+140.4	0.0135003
+140.52	0.0134913
+140.64	0.0134823
+140.76	0.0134733
+140.88	0.0134643
+141	0.0134554
+141.12	0.0134465
+141.24	0.0134376
+141.36	0.0134286
+141.48	0.0134198
+141.6	0.0134109
+141.72	0.013402
+141.84	0.0133932
+141.96	0.0133843
+142.08	0.0133755
+142.2	0.0133667
+142.32	0.0133579
+142.44	0.0133491
+142.56	0.0133403
+142.68	0.0133316
+142.8	0.0133228
+142.92	0.0133141
+143.04	0.0133054
+143.16	0.0132967
+143.28	0.013288
+143.4	0.0132793
+143.52	0.0132707
+143.64	0.013262
+143.76	0.0132534
+143.88	0.0132447
+144	0.0132361
+144.12	0.0132275
+144.24	0.0132189
+144.36	0.0132104
+144.48	0.0132018
+144.6	0.0131933
+144.72	0.0131847
+144.84	0.0131762
+144.96	0.0131677
+145.08	0.0131592
+145.2	0.0131507
+145.32	0.0131422
+145.44	0.0131338
+145.56	0.0131253
+145.68	0.0131169
+145.8	0.0131085
+145.92	0.0131001
+146.04	0.0130917
+146.16	0.0130833
+146.28	0.0130749
+146.4	0.0130665
+146.52	0.0130582
+146.64	0.0130499
+146.76	0.0130415
+146.88	0.0130332
+147	0.0130249
+147.12	0.0130166
+147.24	0.0130084
+147.36	0.0130001
+147.48	0.0129918
+147.6	0.0129836
+147.72	0.0129754
+147.84	0.0129672
+147.96	0.012959
+148.08	0.0129508
+148.2	0.0129426
+148.32	0.0129344
+148.44	0.0129263
+148.56	0.0129181
+148.68	0.01291
+148.8	0.0129019
+148.92	0.0128938
+149.04	0.0128857
+149.16	0.0128776
+149.28	0.0128695
+149.4	0.0128614
+149.52	0.0128534
+149.64	0.0128454
+149.76	0.0128373
+149.88	0.0128293
+150	0.0128213
+150.12	0.0128133
+150.24	0.0128053
+150.36	0.0127974
+150.48	0.0127894
+150.6	0.0127815
+150.72	0.0127735
+150.84	0.0127656
+150.96	0.0127577
+151.08	0.0127498
+151.2	0.0127419
+151.32	0.012734
+151.44	0.0127262
+151.56	0.0127183
+151.68	0.0127105
+151.8	0.0127026
+151.92	0.0126948
+152.04	0.012687
+152.16	0.0126792
+152.28	0.0126714
+152.4	0.0126636
+152.52	0.0126559
+152.64	0.0126481
+152.76	0.0126404
+152.88	0.0126326
+153	0.0126249
+153.12	0.0126172
+153.24	0.0126095
+153.36	0.0126018
+153.48	0.0125941
+153.6	0.0125864
+153.72	0.0125788
+153.84	0.0125711
+153.96	0.0125635
+154.08	0.0125559
+154.2	0.0125483
+154.32	0.0125407
+154.44	0.0125331
+154.56	0.0125255
+154.68	0.0125179
+154.8	0.0125103
+154.92	0.0125028
+155.04	0.0124952
+155.16	0.0124877
+155.28	0.0124802
+155.4	0.0124727
+155.52	0.0124652
+155.64	0.0124577
+155.76	0.0124502
+155.88	0.0124428
+156	0.0124353
+156.12	0.0124278
+156.24	0.0124204
+156.36	0.012413
+156.48	0.0124056
+156.6	0.0123982
+156.72	0.0123908
+156.84	0.0123834
+156.96	0.012376
+157.08	0.0123686
+157.2	0.0123613
+157.32	0.0123539
+157.44	0.0123466
+157.56	0.0123393
+157.68	0.012332
+157.8	0.0123247
+157.92	0.0123174
+158.04	0.0123101
+158.16	0.0123028
+158.28	0.0122955
+158.4	0.0122883
+158.52	0.012281
+158.64	0.0122738
+158.76	0.0122666
+158.88	0.0122594
+159	0.0122521
+159.12	0.0122449
+159.24	0.0122378
+159.36	0.0122306
+159.48	0.0122234
+159.6	0.0122163
+159.72	0.0122091
+159.84	0.012202
+159.96	0.0121948
+160.08	0.0121877
+160.2	0.0121806
+160.32	0.0121735
+160.44	0.0121664
+160.56	0.0121593
+160.68	0.0121523
+160.8	0.0121452
+160.92	0.0121382
+161.04	0.0121311
+161.16	0.0121241
+161.28	0.0121171
+161.4	0.0121101
+161.52	0.012103
+161.64	0.0120961
+161.76	0.0120891
+161.88	0.0120821
+162	0.0120751
+162.12	0.0120682
+162.24	0.0120612
+162.36	0.0120543
+162.48	0.0120474
+162.6	0.0120404
+162.72	0.0120335
+162.84	0.0120266
+162.96	0.0120197
+163.08	0.0120128
+163.2	0.012006
+163.32	0.0119991
+163.44	0.0119922
+163.56	0.0119854
+163.68	0.0119786
+163.8	0.0119717
+163.92	0.0119649
+164.04	0.0119581
+164.16	0.0119513
+164.28	0.0119445
+164.4	0.0119377
+164.52	0.011931
+164.64	0.0119242
+164.76	0.0119174
+164.88	0.0119107
+165	0.0119039
+165.12	0.0118972
+165.24	0.0118905
+165.36	0.0118838
+165.48	0.0118771
+165.6	0.0118704
+165.72	0.0118637
+165.84	0.011857
+165.96	0.0118504
+166.08	0.0118437
+166.2	0.0118371
+166.32	0.0118304
+166.44	0.0118238
+166.56	0.0118172
+166.68	0.0118105
+166.8	0.0118039
+166.92	0.0117973
+167.04	0.0117907
+167.16	0.0117842
+167.28	0.0117776
+167.4	0.011771
+167.52	0.0117645
+167.64	0.0117579
+167.76	0.0117514
+167.88	0.0117449
+168	0.0117383
+168.12	0.0117318
+168.24	0.0117253
+168.36	0.0117188
+168.48	0.0117123
+168.6	0.0117058
+168.72	0.0116994
+168.84	0.0116929
+168.96	0.0116865
+169.08	0.01168
+169.2	0.0116736
+169.32	0.0116671
+169.44	0.0116607
+169.56	0.0116543
+169.68	0.0116479
+169.8	0.0116415
+169.92	0.0116351
+170.04	0.0116287
+170.16	0.0116224
+170.28	0.011616
+170.4	0.0116096
+170.52	0.0116033
+170.64	0.0115969
+170.76	0.0115906
+170.88	0.0115843
+171	0.011578
+171.12	0.0115717
+171.24	0.0115679
+171.36	0.0115616
+171.48	0.0115554
+171.6	0.0115491
+171.72	0.0115428
+171.84	0.0115366
+171.96	0.0115303
+172.08	0.0115241
+172.2	0.0115178
+172.32	0.0115116
+172.44	0.0115054
+172.56	0.0114992
+172.68	0.011493
+172.8	0.0114868
+172.92	0.0114806
+173.04	0.0114744
+173.16	0.0114682
+173.28	0.0114621
+173.4	0.0114559
+173.52	0.0114498
+173.64	0.0114436
+173.76	0.0114375
+173.88	0.0114314
+174	0.0114253
+174.12	0.0114192
+174.24	0.011413
+174.36	0.011407
+174.48	0.0114009
+174.6	0.0113948
+174.72	0.0113887
+174.84	0.0113826
+174.96	0.0113766
+175.08	0.0113705
+175.2	0.0113645
+175.32	0.0113585
+175.44	0.0113524
+175.56	0.0113464
+175.68	0.0113404
+175.8	0.0113344
+175.92	0.0113284
+176.04	0.0113224
+176.16	0.0113164
+176.28	0.0113105
+176.4	0.0113045
+176.52	0.0112985
+176.64	0.0112926
+176.76	0.0112866
+176.88	0.0112807
+177	0.0112748
+177.12	0.0112688
+177.24	0.0112629
+177.36	0.011257
+177.48	0.0112511
+177.6	0.0112452
+177.72	0.0112393
+177.84	0.0112334
+177.96	0.0112276
+178.08	0.0112217
+178.2	0.0112158
+178.32	0.01121
+178.44	0.0112041
+178.56	0.0111983
+178.68	0.0111925
+178.8	0.0111866
+178.92	0.0111808
+179.04	0.011175
+179.16	0.0111692
+179.28	0.0111634
+179.4	0.0111576
+179.52	0.0111519
+179.64	0.0111461
+179.76	0.0111403
+179.88	0.0111345
+180	0.0111288
+180.12	0.011123
+180.24	0.0111173
+180.36	0.0111116
+180.48	0.0111058
+180.6	0.0111001
+180.72	0.0110944
+180.84	0.0110887
+180.96	0.011083
+181.08	0.0110773
+181.2	0.0110716
+181.32	0.011066
+181.44	0.0110603
+181.56	0.0110546
+181.68	0.011049
+181.8	0.0110433
+181.92	0.0110377
+182.04	0.011032
+182.16	0.0110264
+182.28	0.0110208
+182.4	0.0110152
+182.52	0.0110095
+182.64	0.0110039
+182.76	0.0109983
+182.88	0.0109927
+183	0.0109872
+183.12	0.0109816
+183.24	0.010976
+183.36	0.0109705
+183.48	0.0109649
+183.6	0.0109593
+183.72	0.0109538
+183.84	0.0109483
+183.96	0.0109427
+184.08	0.0109372
+184.2	0.0109317
+184.32	0.0109262
+184.44	0.0109207
+184.56	0.0109152
+184.68	0.0109097
+184.8	0.0109042
+184.92	0.0108987
+185.04	0.0108932
+185.16	0.0108878
+185.28	0.0108823
+185.4	0.0108769
+185.52	0.0108714
+185.64	0.010866
+185.76	0.0108605
+185.88	0.0108551
+186	0.0108497
+186.12	0.0108443
+186.24	0.0108389
+186.36	0.0108334
+186.48	0.0108281
+186.6	0.0108227
+186.72	0.0108173
+186.84	0.0108119
+186.96	0.0108065
+187.08	0.0108012
+187.2	0.0107958
+187.32	0.0107904
+187.44	0.0107851
+187.56	0.0107798
+187.68	0.0107744
+187.8	0.0107691
+187.92	0.0107638
+188.04	0.0107585
+188.16	0.0107531
+188.28	0.0107478
+188.4	0.0107425
+188.52	0.0107373
+188.64	0.010732
+188.76	0.0107267
+188.88	0.0107214
+189	0.0107161
+189.12	0.0107109
+189.24	0.0107056
+189.36	0.0107004
+189.48	0.0106951
+189.6	0.0106899
+189.72	0.0106847
+189.84	0.0106794
+189.96	0.0106742
+190.08	0.010669
+190.2	0.0106638
+190.32	0.0106586
+190.44	0.0106534
+190.56	0.0106482
+190.68	0.010643
+190.8	0.0106379
+190.92	0.0106327
+191.04	0.0106275
+191.16	0.0106224
+191.28	0.0106172
+191.4	0.0106121
+191.52	0.0106069
+191.64	0.0106018
+191.76	0.0105966
+191.88	0.0105915
+192	0.0105864
+192.12	0.0105813
+192.24	0.0105762
+192.36	0.0105711
+192.48	0.010566
+192.6	0.0105609
+192.72	0.0105558
+192.84	0.0105507
+192.96	0.0105457
+193.08	0.0105406
+193.2	0.0105355
+193.32	0.0105305
+193.44	0.0105254
+193.56	0.0105204
+193.68	0.0105153
+193.8	0.0105103
+193.92	0.0105053
+194.04	0.0105003
+194.16	0.0104952
+194.28	0.0104902
+194.4	0.0104852
+194.52	0.0104802
+194.64	0.0104752
+194.76	0.0104702
+194.88	0.0104653
+195	0.0104603
+195.12	0.0104553
+195.24	0.0104503
+195.36	0.0104454
+195.48	0.0104404
+195.6	0.0104355
+195.72	0.0104305
+195.84	0.0104256
+195.96	0.0104207
+196.08	0.0104157
+196.2	0.0104108
+196.32	0.0104059
+196.44	0.010401
+196.56	0.0103961
+196.68	0.0103912
+196.8	0.0103863
+196.92	0.0103814
+197.04	0.0103765
+197.16	0.0103716
+197.28	0.0103668
+197.4	0.0103619
+197.52	0.010357
+197.64	0.0103522
+197.76	0.0103473
+197.88	0.0103425
+198	0.0103376
+198.12	0.0103328
+198.24	0.010328
+198.36	0.0103231
+198.48	0.0103183
+198.6	0.0103135
+198.72	0.0103087
+198.84	0.0103039
+198.96	0.0102991
+199.08	0.0102943
+199.2	0.0102895
+199.32	0.0102847
+199.44	0.01028
+199.56	0.0102752
+199.68	0.0102704
+199.8	0.0102656
+199.92	0.0102609
+200.04	0.0102561
+200.16	0.0102514
+200.28	0.0102467
+200.4	0.0102419
+200.52	0.0102372
+200.64	0.0102325
+200.76	0.0102277
+200.88	0.010223
+201	0.0102183
+201.12	0.0102136
+201.24	0.0102089
+201.36	0.0102042
+201.48	0.0101995
+201.6	0.0101948
+201.72	0.0101902
+201.84	0.0101855
+201.96	0.0101808
+202.08	0.0101761
+202.2	0.0101715
+202.32	0.0101668
+202.44	0.0101622
+202.56	0.0101575
+202.68	0.0101529
+202.8	0.0101483
+202.92	0.0101436
+203.04	0.010139
+203.16	0.0101344
+203.28	0.0101298
+203.4	0.0101252
+203.52	0.0101206
+203.64	0.010116
+203.76	0.0101114
+203.88	0.0101068
+204	0.0101022
+204.12	0.0100976
+204.24	0.010093
+204.36	0.0100885
+204.48	0.0100839
+204.6	0.0100793
+204.72	0.0100748
+204.84	0.0100702
+204.96	0.0100657
+205.08	0.0100611
+205.2	0.0100566
+205.32	0.0100521
+205.44	0.0100475
+205.56	0.010043
+205.68	0.0100385
+205.8	0.010034
+205.92	0.0100295
+206.04	0.010025
+206.16	0.0100205
+206.28	0.010016
+206.4	0.0100115
+206.52	0.010007
+206.64	0.0100025
+206.76	0.00999805
+206.88	0.00999358
+207	0.00998911
+207.12	0.00998465
+207.24	0.0099802
+207.36	0.00997574
+207.48	0.0099713
+207.6	0.00996686
+207.72	0.00996242
+207.84	0.00995799
+207.96	0.00995356
+208.08	0.00994913
+208.2	0.00994471
+208.32	0.0099403
+208.44	0.00993589
+208.56	0.00993149
+208.68	0.00992709
+208.8	0.00992269
+208.92	0.0099183
+209.04	0.00991391
+209.16	0.00990953
+209.28	0.00990515
+209.4	0.00990078
+209.52	0.00989641
+209.64	0.00989205
+209.76	0.00988769
+209.88	0.00988333
+210	0.00987898
+210.12	0.00987464
+210.24	0.0098703
+210.36	0.00986596
+210.48	0.00986163
+210.6	0.0098573
+210.72	0.00985298
+210.84	0.00984866
+210.96	0.00984435
+211.08	0.00984004
+211.2	0.00983573
+211.32	0.00983143
+211.44	0.00982713
+211.56	0.00982284
+211.68	0.00981855
+211.8	0.00981427
+211.92	0.00980999
+212.04	0.00980572
+212.16	0.00980145
+212.28	0.00979718
+212.4	0.00979292
+212.52	0.00978866
+212.64	0.00978441
+212.76	0.00978016
+212.88	0.00977592
+213	0.00977168
+213.12	0.00976745
+213.24	0.00976322
+213.36	0.00975899
+213.48	0.00975477
+213.6	0.00975055
+213.72	0.00974634
+213.84	0.00974213
+213.96	0.00973792
+214.08	0.00973372
+214.2	0.00972953
+214.32	0.00972533
+214.44	0.00972115
+214.56	0.00971696
+214.68	0.00971278
+214.8	0.00970861
+214.92	0.00970444
+215.04	0.00970027
+215.16	0.00969611
+215.28	0.00969195
+215.4	0.0096878
+215.52	0.00968365
+215.64	0.0096795
+215.76	0.00967536
+215.88	0.00967123
+216	0.00966709
+216.12	0.00966296
+216.24	0.00965884
+216.36	0.00965472
+216.48	0.0096506
+216.6	0.00964649
+216.72	0.00964238
+216.84	0.00963828
+216.96	0.00963418
+217.08	0.00963009
+217.2	0.00962599
+217.32	0.00962191
+217.44	0.00961782
+217.56	0.00961375
+217.68	0.00960967
+217.8	0.0096056
+217.92	0.00960153
+218.04	0.00959747
+218.16	0.00959341
+218.28	0.00958936
+218.4	0.00958531
+218.52	0.00958126
+218.64	0.00957722
+218.76	0.00957318
+218.88	0.00956915
+219	0.00956512
+219.12	0.0095611
+219.24	0.00955708
+219.36	0.00955306
+219.48	0.00954904
+219.6	0.00954504
+219.72	0.00954103
+219.84	0.00953703
+219.96	0.00953303
+220.08	0.00952904
+220.2	0.00952505
+220.32	0.00952107
+220.44	0.00951708
+220.56	0.00951311
+220.68	0.00950913
+220.8	0.00950516
+220.92	0.0095012
+221.04	0.00949724
+221.16	0.00949328
+221.28	0.00948933
+221.4	0.00948538
+221.52	0.00948143
+221.64	0.00947749
+221.76	0.00947355
+221.88	0.00946962
+222	0.00946569
+222.12	0.00946176
+222.24	0.00945784
+222.36	0.00945392
+222.48	0.00945
+222.6	0.00944609
+222.72	0.00944218
+222.84	0.00943828
+222.96	0.00943438
+223.08	0.00943049
+223.2	0.00942659
+223.32	0.00942271
+223.44	0.00941882
+223.56	0.00941494
+223.68	0.00941106
+223.8	0.00940719
+223.92	0.00940332
+224.04	0.00939946
+224.16	0.00939559
+224.28	0.00939174
+224.4	0.00938788
+224.52	0.00938403
+224.64	0.00938019
+224.76	0.00937634
+224.88	0.0093725
+225	0.00936867
+225.12	0.00936484
+225.24	0.00936101
+225.36	0.00935719
+225.48	0.00935336
+225.6	0.00934955
+225.72	0.00934573
+225.84	0.00934193
+225.96	0.00933812
+226.08	0.00933432
+226.2	0.00933052
+226.32	0.00932673
+226.44	0.00932293
+226.56	0.00931915
+226.68	0.00931536
+226.8	0.00931158
+226.92	0.00930781
+227.04	0.00930403
+227.16	0.00930027
+227.28	0.0092965
+227.4	0.00929274
+227.52	0.00928898
+227.64	0.00928523
+227.76	0.00928147
+227.88	0.00927773
+228	0.00927398
+228.12	0.00927024
+228.24	0.00926651
+228.36	0.00926277
+228.48	0.00925904
+228.6	0.00925532
+228.72	0.0092516
+228.84	0.00924788
+228.96	0.00924416
+229.08	0.00924045
+229.2	0.00923674
+229.32	0.00923304
+229.44	0.00922934
+229.56	0.00922564
+229.68	0.00922195
+229.8	0.00921826
+229.92	0.00921457
+230.04	0.00921089
+230.16	0.00920721
+230.28	0.00920353
+230.4	0.00919986
+230.52	0.00919619
+230.64	0.00919252
+230.76	0.00918886
+230.88	0.0091852
+231	0.00918154
+231.12	0.00917789
+231.24	0.00917424
+231.36	0.0091706
+231.48	0.00916696
+231.6	0.00916332
+231.72	0.00915968
+231.84	0.00915605
+231.96	0.00915243
+232.08	0.0091488
+232.2	0.00914518
+232.32	0.00914156
+232.44	0.00913795
+232.56	0.00913434
+232.68	0.00913073
+232.8	0.00912713
+232.92	0.00912352
+233.04	0.00911993
+233.16	0.00911633
+233.28	0.00911274
+233.4	0.00910916
+233.52	0.00910557
+233.64	0.00910199
+233.76	0.00909842
+233.88	0.00909484
+234	0.00909127
+234.12	0.0090877
+234.24	0.00908414
+234.36	0.00908058
+234.48	0.00907702
+234.6	0.00907347
+234.72	0.00906992
+234.84	0.00906637
+234.96	0.00906283
+235.08	0.00905929
+235.2	0.00905575
+235.32	0.00905222
+235.44	0.00904869
+235.56	0.00904516
+235.68	0.00904164
+235.8	0.00903812
+235.92	0.0090346
+236.04	0.00903108
+236.16	0.00902757
+236.28	0.00902407
+236.4	0.00902056
+236.52	0.00901706
+236.64	0.00901356
+236.76	0.00901007
+236.88	0.00900658
+237	0.00900309
+237.12	0.0089996
+237.24	0.00899612
+237.36	0.00899264
+237.48	0.00898917
+237.6	0.00898569
+237.72	0.00898223
+237.84	0.00897876
+237.96	0.0089753
+238.08	0.00897184
+238.2	0.00896838
+238.32	0.00896493
+238.44	0.00896148
+238.56	0.00895803
+238.68	0.00895459
+238.8	0.00895115
+238.92	0.00894771
+239.04	0.00894428
+239.16	0.00894085
+239.28	0.00893742
+239.4	0.008934
+239.52	0.00893057
+239.64	0.00892716
+239.76	0.00892374
+239.88	0.00892033
+240	0.00891692
+240.12	0.00891351
+240.24	0.00891011
+240.36	0.00890671
+240.48	0.00890332
+240.6	0.00889992
+240.72	0.00889653
+240.84	0.00889314
+240.96	0.00888976
+241.08	0.00888638
+241.2	0.008883
+241.32	0.00887963
+241.44	0.00887626
+241.56	0.00887289
+241.68	0.00886952
+241.8	0.00886616
+241.92	0.0088628
+242.04	0.00885944
+242.16	0.00885609
+242.28	0.00885274
+242.4	0.00884939
+242.52	0.00884605
+242.64	0.00884271
+242.76	0.00883937
+242.88	0.00883603
+243	0.0088327
+243.12	0.00882937
+243.24	0.00882604
+243.36	0.00882272
+243.48	0.0088194
+243.6	0.00881608
+243.72	0.00881277
+243.84	0.00880946
+243.96	0.00880615
+244.08	0.00880284
+244.2	0.00879954
+244.32	0.00879624
+244.44	0.00879295
+244.56	0.00878965
+244.68	0.00878636
+244.8	0.00878307
+244.92	0.00877979
+245.04	0.00877651
+245.16	0.00877323
+245.28	0.00876995
+245.4	0.00876668
+245.52	0.00876341
+245.64	0.00876014
+245.76	0.00875688
+245.88	0.00875362
+246	0.00875036
+246.12	0.0087471
+246.24	0.00874385
+246.36	0.0087406
+246.48	0.00873735
+246.6	0.00873411
+246.72	0.00873087
+246.84	0.00872763
+246.96	0.0087244
+247.08	0.00872116
+247.2	0.00871793
+247.32	0.00871471
+247.44	0.00871148
+247.56	0.00870826
+247.68	0.00870505
+247.8	0.00870183
+247.92	0.00869862
+248.04	0.00869541
+248.16	0.0086922
+248.28	0.008689
+248.4	0.0086858
+248.52	0.0086826
+248.64	0.0086794
+248.76	0.00867621
+248.88	0.00867302
+249	0.00866984
+249.12	0.00866665
+249.24	0.00866347
+249.36	0.00866029
+249.48	0.00865712
+249.6	0.00865394
+249.72	0.00865077
+249.84	0.00864761
+249.96	0.00864444
+250.08	0.00864128
+250.2	0.00863812
+250.32	0.00863497
+250.44	0.00863181
+250.56	0.00862866
+250.68	0.00862551
+250.8	0.00862237
+250.92	0.00861923
+251.04	0.00861609
+251.16	0.00861295
+251.28	0.00860982
+251.4	0.00860668
+251.52	0.00860356
+251.64	0.00860043
+251.76	0.00859731
+251.88	0.00859419
+252	0.00859107
+252.12	0.00858795
+252.24	0.00858484
+252.36	0.00858173
+252.48	0.00857862
+252.6	0.00857552
+252.72	0.00857242
+252.84	0.00856932
+252.96	0.00856622
+253.08	0.00856313
+253.2	0.00856004
+253.32	0.00855695
+253.44	0.00855387
+253.56	0.00855078
+253.68	0.0085477
+253.8	0.00854463
+253.92	0.00854155
+254.04	0.00853848
+254.16	0.00853541
+254.28	0.00853234
+254.4	0.00852928
+254.52	0.00852622
+254.64	0.00852316
+254.76	0.0085201
+254.88	0.00851705
+255	0.008514
+255.12	0.00851095
+255.24	0.00850791
+255.36	0.00850486
+255.48	0.00850182
+255.6	0.00849879
+255.72	0.00849575
+255.84	0.00849272
+255.96	0.00848969
+256.08	0.00848666
+256.2	0.00848364
+256.32	0.00848061
+256.44	0.00847759
+256.56	0.00847458
+256.68	0.00847156
+256.8	0.00846855
+256.92	0.00846554
+257.04	0.00846254
+257.16	0.00845953
+257.28	0.00845653
+257.4	0.00845353
+257.52	0.00845053
+257.64	0.00844754
+257.76	0.00844455
+257.88	0.00844156
+258	0.00843857
+258.12	0.00843559
+258.24	0.00843261
+258.36	0.00842963
+258.48	0.00842666
+258.6	0.00842368
+258.72	0.00842071
+258.84	0.00841774
+258.96	0.00841478
+259.08	0.00841181
+259.2	0.00840885
+259.32	0.00840589
+259.44	0.00840294
+259.56	0.00839999
+259.68	0.00839703
+259.8	0.00839409
+259.92	0.00839114
+260.04	0.0083882
+260.16	0.00838526
+260.28	0.00838232
+260.4	0.00837938
+260.52	0.00837645
+260.64	0.00837352
+260.76	0.00837059
+260.88	0.00836766
+261	0.00836474
+261.12	0.00836182
+261.24	0.0083589
+261.36	0.00835598
+261.48	0.00835307
+261.6	0.00835016
+261.72	0.00834725
+261.84	0.00834434
+261.96	0.00834144
+262.08	0.00833854
+262.2	0.00833564
+262.32	0.00833274
+262.44	0.00832985
+262.56	0.00832696
+262.68	0.00832407
+262.8	0.00832118
+262.92	0.0083183
+263.04	0.00831541
+263.16	0.00831254
+263.28	0.00830966
+263.4	0.00830678
+263.52	0.00830391
+263.64	0.00830104
+263.76	0.00829817
+263.88	0.00829531
+264	0.00829244
+264.12	0.00828958
+264.24	0.00828673
+264.36	0.00828387
+264.48	0.00828102
+264.6	0.00827817
+264.72	0.00827532
+264.84	0.00827247
+264.96	0.00826963
+265.08	0.00826679
+265.2	0.00826395
+265.32	0.00826111
+265.44	0.00825828
+265.56	0.00825544
+265.68	0.00825261
+265.8	0.00824979
+265.92	0.00824696
+266.04	0.00824414
+266.16	0.00824132
+266.28	0.0082385
+266.4	0.00823568
+266.52	0.00823287
+266.64	0.00823006
+266.76	0.00822725
+266.88	0.00822445
+267	0.00822164
+267.12	0.00821884
+267.24	0.00821604
+267.36	0.00821324
+267.48	0.00821045
+267.6	0.00820766
+267.72	0.00820486
+267.84	0.00820208
+267.96	0.00819929
+268.08	0.00819651
+268.2	0.00819373
+268.32	0.00819095
+268.44	0.00818817
+268.56	0.0081854
+268.68	0.00818262
+268.8	0.00817986
+268.92	0.00817709
+269.04	0.00817432
+269.16	0.00817156
+269.28	0.0081688
+269.4	0.00816604
+269.52	0.00816328
+269.64	0.00816053
+269.76	0.00815778
+269.88	0.00815503
+270	0.00815228
+270.12	0.00814954
+270.24	0.00814679
+270.36	0.00814405
+270.48	0.00814132
+270.6	0.00813858
+270.72	0.00813585
+270.84	0.00813311
+270.96	0.00813038
+271.08	0.00812766
+271.2	0.00812493
+271.32	0.00812221
+271.44	0.00811949
+271.56	0.00811677
+271.68	0.00811406
+271.8	0.00811134
+271.92	0.00810863
+272.04	0.00810592
+272.16	0.00810321
+272.28	0.00810051
+272.4	0.00809781
+272.52	0.0080951
+272.64	0.00809241
+272.76	0.00808971
+272.88	0.00808702
+273	0.00808432
+273.12	0.00808163
+273.24	0.00807895
+273.36	0.00807626
+273.48	0.00807358
+273.6	0.0080709
+273.72	0.00806822
+273.84	0.00806554
+273.96	0.00806287
+274.08	0.0080602
+274.2	0.00805753
+274.32	0.00805486
+274.44	0.0080522
+274.56	0.00804953
+274.68	0.00804687
+274.8	0.00804421
+274.92	0.00804156
+275.04	0.0080389
+275.16	0.00803625
+275.28	0.0080336
+275.4	0.00803095
+275.52	0.0080283
+275.64	0.00802566
+275.76	0.00802302
+275.88	0.00802038
+276	0.00801774
+276.12	0.0080151
+276.24	0.00801247
+276.36	0.00800984
+276.48	0.00800721
+276.6	0.00800458
+276.72	0.00800196
+276.84	0.00799933
+276.96	0.00799671
+277.08	0.00799409
+277.2	0.00799148
+277.32	0.00798886
+277.44	0.00798625
+277.56	0.00798364
+277.68	0.00798103
+277.8	0.00797843
+277.92	0.00797582
+278.04	0.00797322
+278.16	0.00797062
+278.28	0.00796802
+278.4	0.00796542
+278.52	0.00796283
+278.64	0.00796024
+278.76	0.00795765
+278.88	0.00795506
+279	0.00795247
+279.12	0.00794989
+279.24	0.00794731
+279.36	0.00794473
+279.48	0.00794215
+279.6	0.00793958
+279.72	0.007937
+279.84	0.00793443
+279.96	0.00793186
+280.08	0.00792929
+280.2	0.00792673
+280.32	0.00792416
+280.44	0.0079216
+280.56	0.00791904
+280.68	0.00791649
+280.8	0.00791393
+280.92	0.00791138
+281.04	0.00790883
+281.16	0.00790628
+281.28	0.00790373
+281.4	0.00790118
+281.52	0.00789864
+281.64	0.0078961
+281.76	0.00789356
+281.88	0.00789102
+282	0.00788849
+282.12	0.00788595
+282.24	0.00788342
+282.36	0.00788089
+282.48	0.00787837
+282.6	0.00787584
+282.72	0.00787332
+282.84	0.0078708
+282.96	0.00786828
+283.08	0.00786576
+283.2	0.00786324
+283.32	0.00786073
+283.44	0.00785822
+283.56	0.00785571
+283.68	0.0078532
+283.8	0.0078507
+283.92	0.00784819
+284.04	0.00784569
+284.16	0.00784319
+284.28	0.00784069
+284.4	0.0078382
+284.52	0.0078357
+284.64	0.00783321
+284.76	0.00783072
+284.88	0.00782823
+285	0.00782574
+285.12	0.00782326
+285.24	0.00782078
+285.36	0.0078183
+285.48	0.00781582
+285.6	0.00781334
+285.72	0.00781087
+285.84	0.00780839
+285.96	0.00780592
+286.08	0.00780345
+286.2	0.00780099
+286.32	0.00779852
+286.44	0.00779606
+286.56	0.0077936
+286.68	0.00779114
+286.8	0.00778868
+286.92	0.00778622
+287.04	0.00778377
+287.16	0.00778132
+287.28	0.00777887
+287.4	0.00777642
+287.52	0.00777397
+287.64	0.00777153
+287.76	0.00776909
+287.88	0.00776665
+288	0.00776421
+288.12	0.00776177
+288.24	0.00775933
+288.36	0.0077569
+288.48	0.00775447
+288.6	0.00775204
+288.72	0.00774961
+288.84	0.00774719
+288.96	0.00774476
+289.08	0.00774234
+289.2	0.00773992
+289.32	0.0077375
+289.44	0.00773508
+289.56	0.00773267
+289.68	0.00773026
+289.8	0.00772785
+289.92	0.00772544
+290.04	0.00772303
+290.16	0.00772062
+290.28	0.00771822
+290.4	0.00771582
+290.52	0.00771342
+290.64	0.00771102
+290.76	0.00770862
+290.88	0.00770623
+291	0.00770384
+291.12	0.00770144
+291.24	0.00769906
+291.36	0.00769667
+291.48	0.00769428
+291.6	0.0076919
+291.72	0.00768952
+291.84	0.00768714
+291.96	0.00768476
+292.08	0.00768238
+292.2	0.00768001
+292.32	0.00767763
+292.44	0.00767526
+292.56	0.00767289
+292.68	0.00767053
+292.8	0.00766816
+292.92	0.0076658
+293.04	0.00766343
+293.16	0.00766107
+293.28	0.00765871
+293.4	0.00765636
+293.52	0.007654
+293.64	0.00765165
+293.76	0.0076493
+293.88	0.00764695
+294	0.0076446
+294.12	0.00764225
+294.24	0.00763991
+294.36	0.00763757
+294.48	0.00763523
+294.6	0.00763289
+294.72	0.00763055
+294.84	0.00762821
+294.96	0.00762588
+295.08	0.00762355
+295.2	0.00762122
+295.32	0.00761889
+295.44	0.00761656
+295.56	0.00761424
+295.68	0.00761191
+295.8	0.00760959
+295.92	0.00760727
+296.04	0.00760495
+296.16	0.00760263
+296.28	0.00760032
+296.4	0.00759801
+296.52	0.0075957
+296.64	0.00759339
+296.76	0.00759108
+296.88	0.00758877
+297	0.00758647
+297.12	0.00758416
+297.24	0.00758186
+297.36	0.00757956
+297.48	0.00757727
+297.6	0.00757497
+297.72	0.00757268
+297.84	0.00757038
+297.96	0.00756809
+298.08	0.0075658
+298.2	0.00756352
+298.32	0.00756123
+298.44	0.00755895
+298.56	0.00755666
+298.68	0.00755438
+298.8	0.0075521
+298.92	0.00754983
+299.04	0.00754755
+299.16	0.00754528
+299.28	0.007543
+299.4	0.00754073
+299.52	0.00753846
+299.64	0.0075362
+299.76	0.00753393
+299.88	0.00753167
+300	0.00752941
+300.12	0.00752714
+300.24	0.00752489
+300.36	0.00752263
+300.48	0.00752037
+300.6	0.00751812
+300.72	0.00751587
+300.84	0.00751362
+300.96	0.00751137
+301.08	0.00750912
+301.2	0.00750687
+301.32	0.00750463
+301.44	0.00750239
+301.56	0.00750015
+301.68	0.00749791
+301.8	0.00749567
+301.92	0.00749343
+302.04	0.0074912
+302.16	0.00748897
+302.28	0.00748674
+302.4	0.00748451
+302.52	0.00748228
+302.64	0.00748005
+302.76	0.00747783
+302.88	0.00747561
+303	0.00747339
+303.12	0.00747117
+303.24	0.00746895
+303.36	0.00746673
+303.48	0.00746452
+303.6	0.0074623
+303.72	0.00746009
+303.84	0.00745788
+303.96	0.00745567
+304.08	0.00745347
+304.2	0.00745126
+304.32	0.00744906
+304.44	0.00744686
+304.56	0.00744466
+304.68	0.00744246
+304.8	0.00744026
+304.92	0.00743807
+305.04	0.00743587
+305.16	0.00743368
+305.28	0.00743149
+305.4	0.0074293
+305.52	0.00742711
+305.64	0.00742493
+305.76	0.00742274
+305.88	0.00742056
+306	0.00741838
+306.12	0.0074162
+306.24	0.00741402
+306.36	0.00741184
+306.48	0.00740967
+306.6	0.0074075
+306.72	0.00740532
+306.84	0.00740315
+306.96	0.00740099
+307.08	0.00739882
+307.2	0.00739665
+307.32	0.00739449
+307.44	0.00739233
+307.56	0.00739017
+307.68	0.00738801
+307.8	0.00738585
+307.92	0.00738369
+308.04	0.00738154
+308.16	0.00737938
+308.28	0.00737723
+308.4	0.00737508
+308.52	0.00737293
+308.64	0.00737079
+308.76	0.00736864
+308.88	0.0073665
+309	0.00736436
+309.12	0.00736222
+309.24	0.00736008
+309.36	0.00735794
+309.48	0.0073558
+309.6	0.00735367
+309.72	0.00735154
+309.84	0.0073494
+309.96	0.00734727
+310.08	0.00734514
+310.2	0.00734302
+310.32	0.00734089
+310.44	0.00733877
+310.56	0.00733665
+310.68	0.00733452
+310.8	0.00733241
+310.92	0.00733029
+311.04	0.00732817
+311.16	0.00732606
+311.28	0.00732394
+311.4	0.00732183
+311.52	0.00731972
+311.64	0.00731761
+311.76	0.0073155
+311.88	0.0073134
+312	0.00731129
+312.12	0.00730919
+312.24	0.00730709
+312.36	0.00730499
+312.48	0.00730289
+312.6	0.00730079
+312.72	0.0072987
+312.84	0.0072966
+312.96	0.00729451
+313.08	0.00729242
+313.2	0.00729033
+313.32	0.00728824
+313.44	0.00728616
+313.56	0.00728407
+313.68	0.00728199
+313.8	0.00727991
+313.92	0.00727782
+314.04	0.00727575
+314.16	0.00727367
+314.28	0.00727159
+314.4	0.00726952
+314.52	0.00726744
+314.64	0.00726537
+314.76	0.0072633
+314.88	0.00726123
+315	0.00725916
+315.12	0.0072571
+315.24	0.00725503
+315.36	0.00725297
+315.48	0.00725091
+315.6	0.00724885
+315.72	0.00724679
+315.84	0.00724473
+315.96	0.00724268
+316.08	0.00724062
+316.2	0.00723857
+316.32	0.00723652
+316.44	0.00723447
+316.56	0.00723242
+316.68	0.00723037
+316.8	0.00722832
+316.92	0.00722628
+317.04	0.00722424
+317.16	0.00722219
+317.28	0.00722015
+317.4	0.00721812
+317.52	0.00721608
+317.64	0.00721404
+317.76	0.00721201
+317.88	0.00720997
+318	0.00720794
+318.12	0.00720591
+318.24	0.00720388
+318.36	0.00720186
+318.48	0.00719983
+318.6	0.00719781
+318.72	0.00719578
+318.84	0.00719376
+318.96	0.00719174
+319.08	0.00718972
+319.2	0.0071877
+319.32	0.00718569
+319.44	0.00718367
+319.56	0.00718166
+319.68	0.00717965
+319.8	0.00717764
+319.92	0.00717563
+320.04	0.00717362
+320.16	0.00717161
+320.28	0.00716961
+320.4	0.0071676
+320.52	0.0071656
+320.64	0.0071636
+320.76	0.0071616
+320.88	0.0071596
+321	0.00715761
+321.12	0.00715561
+321.24	0.00715362
+321.36	0.00715162
+321.48	0.00714963
+321.6	0.00714764
+321.72	0.00714565
+321.84	0.00714367
+321.96	0.00714168
+322.08	0.0071397
+322.2	0.00713771
+322.32	0.00713573
+322.44	0.00713375
+322.56	0.00713177
+322.68	0.00712979
+322.8	0.00712782
+322.92	0.00712584
+323.04	0.00712387
+323.16	0.0071219
+323.28	0.00711993
+323.4	0.00711796
+323.52	0.00711599
+323.64	0.00711402
+323.76	0.00711206
+323.88	0.00711009
+324	0.00710813
+324.12	0.00710617
+324.24	0.00710421
+324.36	0.00710225
+324.48	0.00710029
+324.6	0.00709834
+324.72	0.00709638
+324.84	0.00709443
+324.96	0.00709248
+325.08	0.00709053
+325.2	0.00708858
+325.32	0.00708663
+325.44	0.00708468
+325.56	0.00708274
+325.68	0.00708079
+325.8	0.00707885
+325.92	0.00707691
+326.04	0.00707497
+326.16	0.00707303
+326.28	0.00707109
+326.4	0.00706915
+326.52	0.00706722
+326.64	0.00706529
+326.76	0.00706335
+326.88	0.00706142
+327	0.00705949
+327.12	0.00705757
+327.24	0.00705564
+327.36	0.00705371
+327.48	0.00705179
+327.6	0.00704987
+327.72	0.00704794
+327.84	0.00704602
+327.96	0.0070441
+328.08	0.00704219
+328.2	0.00704027
+328.32	0.00703835
+328.44	0.00703644
+328.56	0.00703453
+328.68	0.00703262
+328.8	0.00703071
+328.92	0.0070288
+329.04	0.00702689
+329.16	0.00702498
+329.28	0.00702308
+329.4	0.00702117
+329.52	0.00701927
+329.64	0.00701737
+329.76	0.00701547
+329.88	0.00701357
+330	0.00701167
+330.12	0.00700978
+330.24	0.00700788
+330.36	0.00700599
+330.48	0.0070041
+330.6	0.00700221
+330.72	0.00700032
+330.84	0.00699843
+330.96	0.00699654
+331.08	0.00699466
+331.2	0.00699277
+331.32	0.00699089
+331.44	0.00698901
+331.56	0.00698713
+331.68	0.00698525
+331.8	0.00698337
+331.92	0.00698149
+332.04	0.00697961
+332.16	0.00697774
+332.28	0.00697587
+332.4	0.00697399
+332.52	0.00697212
+332.64	0.00697025
+332.76	0.00696839
+332.88	0.00696652
+333	0.00696465
+333.12	0.00696279
+333.24	0.00696093
+333.36	0.00695906
+333.48	0.0069572
+333.6	0.00695534
+333.72	0.00695348
+333.84	0.00695163
+333.96	0.00694977
+334.08	0.00694792
+334.2	0.00694606
+334.32	0.00694421
+334.44	0.00694236
+334.56	0.00694051
+334.68	0.00693866
+334.8	0.00693681
+334.92	0.00693497
+335.04	0.00693312
+335.16	0.00693128
+335.28	0.00692944
+335.4	0.0069276
+335.52	0.00692576
+335.64	0.00692392
+335.76	0.00692208
+335.88	0.00692024
+336	0.00691841
+336.12	0.00691657
+336.24	0.00691474
+336.36	0.00691291
+336.48	0.00691108
+336.6	0.00690925
+336.72	0.00690742
+336.84	0.0069056
+336.96	0.00690377
+337.08	0.00690195
+337.2	0.00690012
+337.32	0.0068983
+337.44	0.00689648
+337.56	0.00689466
+337.68	0.00689284
+337.8	0.00689103
+337.92	0.00688921
+338.04	0.0068874
+338.16	0.00688558
+338.28	0.00688377
+338.4	0.00688196
+338.52	0.00688015
+338.64	0.00687834
+338.76	0.00687653
+338.88	0.00687473
+339	0.00687292
+339.12	0.00687112
+339.24	0.00686931
+339.36	0.00686751
+339.48	0.00686571
+339.6	0.00686391
+339.72	0.00686211
+339.84	0.00686032
+339.96	0.00685852
+340.08	0.00685673
+340.2	0.00685493
+340.32	0.00685314
+340.44	0.00685135
+340.56	0.00684956
+340.68	0.00684777
+340.8	0.00684598
+340.92	0.0068442
+341.04	0.00684241
+341.16	0.00684063
+341.28	0.00683885
+341.4	0.00683706
+341.52	0.00683528
+341.64	0.0068335
+341.76	0.00683173
+341.88	0.00682995
+342	0.00682817
+342.12	0.0068264
+342.24	0.00682462
+342.36	0.00682285
+342.48	0.00682108
+342.6	0.00681931
+342.72	0.00681754
+342.84	0.00681577
+342.96	0.00681401
+343.08	0.00681224
+343.2	0.00681048
+343.32	0.00680871
+343.44	0.00680695
+343.56	0.00680519
+343.68	0.00680343
+343.8	0.00680167
+343.92	0.00679991
+344.04	0.00679816
+344.16	0.0067964
+344.28	0.00679465
+344.4	0.00679289
+344.52	0.00679114
+344.64	0.00678939
+344.76	0.00678764
+344.88	0.00678589
+345	0.00678415
+345.12	0.0067824
+345.24	0.00678065
+345.36	0.00677891
+345.48	0.00677717
+345.6	0.00677542
+345.72	0.00677368
+345.84	0.00677194
+345.96	0.00677021
+346.08	0.00676847
+346.2	0.00676673
+346.32	0.006765
+346.44	0.00676326
+346.56	0.00676153
+346.68	0.0067598
+346.8	0.00675807
+346.92	0.00675634
+347.04	0.00675461
+347.16	0.00675288
+347.28	0.00675116
+347.4	0.00674943
+347.52	0.00674771
+347.64	0.00674598
+347.76	0.00674426
+347.88	0.00674254
+348	0.00674082
+348.12	0.0067391
+348.24	0.00673738
+348.36	0.00673567
+348.48	0.00673395
+348.6	0.00673224
+348.72	0.00673053
+348.84	0.00672881
+348.96	0.0067271
+349.08	0.00672539
+349.2	0.00672368
+349.32	0.00672198
+349.44	0.00672027
+349.56	0.00671856
+349.68	0.00671686
+349.8	0.00671516
+349.92	0.00671345
+350.04	0.00671175
+350.16	0.00671005
+350.28	0.00670835
+350.4	0.00670666
+350.52	0.00670496
+350.64	0.00670326
+350.76	0.00670157
+350.88	0.00669988
+351	0.00669818
+351.12	0.00669649
+351.24	0.0066948
+351.36	0.00669311
+351.48	0.00669142
+351.6	0.00668974
+351.72	0.00668805
+351.84	0.00668636
+351.96	0.00668468
+352.08	0.006683
+352.2	0.00668132
+352.32	0.00667964
+352.44	0.00667796
+352.56	0.00667628
+352.68	0.0066746
+352.8	0.00667292
+352.92	0.00667125
+353.04	0.00666957
+353.16	0.0066679
+353.28	0.00666623
+353.4	0.00666456
+353.52	0.00666289
+353.64	0.00666122
+353.76	0.00665955
+353.88	0.00665788
+354	0.00665621
+354.12	0.00665455
+354.24	0.00665289
+354.36	0.00665122
+354.48	0.00664956
+354.6	0.0066479
+354.72	0.00664624
+354.84	0.00664458
+354.96	0.00664292
+355.08	0.00664127
+355.2	0.00663961
+355.32	0.00663796
+355.44	0.0066363
+355.56	0.00663465
+355.68	0.006633
+355.8	0.00663135
+355.92	0.0066297
+356.04	0.00662805
+356.16	0.0066264
+356.28	0.00662476
+356.4	0.00662311
+356.52	0.00662147
+356.64	0.00661982
+356.76	0.00661818
+356.88	0.00661654
+357	0.0066149
+357.12	0.00661326
+357.24	0.00661162
+357.36	0.00660999
+357.48	0.00660835
+357.6	0.00660671
+357.72	0.00660508
+357.84	0.00660345
+357.96	0.00660182
+358.08	0.00660018
+358.2	0.00659855
+358.32	0.00659692
+358.44	0.0065953
+358.56	0.00659367
+358.68	0.00659204
+358.8	0.00659042
+358.92	0.00658879
+359.04	0.00658717
+359.16	0.00658555
+359.28	0.00658393
+359.4	0.00658231
+359.52	0.00658069
+359.64	0.00657907
+359.76	0.00657745
+359.88	0.00657584
+360	0.00657422
+360.12	0.00657261
+360.24	0.006571
+360.36	0.00656938
+360.48	0.00656777
+360.6	0.00656616
+360.72	0.00656455
+360.84	0.00656295
+360.96	0.00656134
+361.08	0.00655973
+361.2	0.00655813
+361.32	0.00655652
+361.44	0.00655492
+361.56	0.00655332
+361.68	0.00655172
+361.8	0.00655012
+361.92	0.00654852
+362.04	0.00654692
+362.16	0.00654532
+362.28	0.00654373
+362.4	0.00654213
+362.52	0.00654054
+362.64	0.00653894
+362.76	0.00653735
+362.88	0.00653576
+363	0.00653417
+363.12	0.00653258
+363.24	0.00653099
+363.36	0.0065294
+363.48	0.00652782
+363.6	0.00652623
+363.72	0.00652465
+363.84	0.00652306
+363.96	0.00652148
+364.08	0.0065199
+364.2	0.00651832
+364.32	0.00651674
+364.44	0.00651516
+364.56	0.00651358
+364.68	0.00651201
+364.8	0.00651043
+364.92	0.00650886
+365.04	0.00650728
+365.16	0.00650571
+365.28	0.00650414
+365.4	0.00650257
+365.52	0.006501
+365.64	0.00649943
+365.76	0.00649786
+365.88	0.00649629
+366	0.00649473
+366.12	0.00649316
+366.24	0.0064916
+366.36	0.00649003
+366.48	0.00648847
+366.6	0.00648691
+366.72	0.00648535
+366.84	0.00648379
+366.96	0.00648223
+367.08	0.00648067
+367.2	0.00647912
+367.32	0.00647756
+367.44	0.00647601
+367.56	0.00647445
+367.68	0.0064729
+367.8	0.00647135
+367.92	0.0064698
+368.04	0.00646825
+368.16	0.0064667
+368.28	0.00646515
+368.4	0.0064636
+368.52	0.00646205
+368.64	0.00646051
+368.76	0.00645896
+368.88	0.00645742
+369	0.00645588
+369.12	0.00645434
+369.24	0.0064528
+369.36	0.00645126
+369.48	0.00644972
+369.6	0.00644818
+369.72	0.00644664
+369.84	0.0064451
+369.96	0.00644357
+370.08	0.00644204
+370.2	0.0064405
+370.32	0.00643897
+370.44	0.00643744
+370.56	0.00643591
+370.68	0.00643438
+370.8	0.00643285
+370.92	0.00643132
+371.04	0.00642979
+371.16	0.00642827
+371.28	0.00642674
+371.4	0.00642522
+371.52	0.0064237
+371.64	0.00642217
+371.76	0.00642065
+371.88	0.00641913
+372	0.00641761
+372.12	0.00641609
+372.24	0.00641457
+372.36	0.00641306
+372.48	0.00641154
+372.6	0.00641003
+372.72	0.00640851
+372.84	0.006407
+372.96	0.00640549
+373.08	0.00640398
+373.2	0.00640246
+373.32	0.00640095
+373.44	0.00639945
+373.56	0.00639794
+373.68	0.00639643
+373.8	0.00639492
+373.92	0.00639342
+374.04	0.00639192
+374.16	0.00639041
+374.28	0.00638891
+374.4	0.00638741
+374.52	0.00638591
+374.64	0.00638441
+374.76	0.00638291
+374.88	0.00638141
+375	0.00637991
+375.12	0.00637842
+375.24	0.00637692
+375.36	0.00637543
+375.48	0.00637393
+375.6	0.00637244
+375.72	0.00637095
+375.84	0.00636946
+375.96	0.00636797
+376.08	0.00636648
+376.2	0.00636499
+376.32	0.0063635
+376.44	0.00636202
+376.56	0.00636053
+376.68	0.00635905
+376.8	0.00635756
+376.92	0.00635608
+377.04	0.0063546
+377.16	0.00635312
+377.28	0.00635164
+377.4	0.00635016
+377.52	0.00634868
+377.64	0.0063472
+377.76	0.00634572
+377.88	0.00634425
+378	0.00634277
+378.12	0.0063413
+378.24	0.00633982
+378.36	0.00633835
+378.48	0.00633688
+378.6	0.00633541
+378.72	0.00633394
+378.84	0.00633247
+378.96	0.006331
+379.08	0.00632953
+379.2	0.00632807
+379.32	0.0063266
+379.44	0.00632514
+379.56	0.00632367
+379.68	0.00632221
+379.8	0.00632075
+379.92	0.00631929
+380.04	0.00631783
+380.16	0.00631637
+380.28	0.00631491
+380.4	0.00631345
+380.52	0.00631199
+380.64	0.00631054
+380.76	0.00630908
+380.88	0.00630763
+381	0.00630617
+381.12	0.00630472
+381.24	0.00630327
+381.36	0.00630182
+381.48	0.00630037
+381.6	0.00629892
+381.72	0.00629747
+381.84	0.00629602
+381.96	0.00629457
+382.08	0.00629313
+382.2	0.00629168
+382.32	0.00629024
+382.44	0.0062888
+382.56	0.00628735
+382.68	0.00628591
+382.8	0.00628447
+382.92	0.00628303
+383.04	0.00628159
+383.16	0.00628015
+383.28	0.00627871
+383.4	0.00627728
+383.52	0.00627584
+383.64	0.00627441
+383.76	0.00627297
+383.88	0.00627154
+384	0.00627011
+384.12	0.00626868
+384.24	0.00626724
+384.36	0.00626581
+384.48	0.00626438
+384.6	0.00626296
+384.72	0.00626153
+384.84	0.0062601
+384.96	0.00625868
+385.08	0.00625725
+385.2	0.00625583
+385.32	0.0062544
+385.44	0.00625298
+385.56	0.00625156
+385.68	0.00625014
+385.8	0.00624872
+385.92	0.0062473
+386.04	0.00624588
+386.16	0.00624446
+386.28	0.00624304
+386.4	0.00624163
+386.52	0.00624021
+386.64	0.0062388
+386.76	0.00623739
+386.88	0.00623597
+387	0.00623456
+387.12	0.00623315
+387.24	0.00623174
+387.36	0.00623033
+387.48	0.00622892
+387.6	0.00622751
+387.72	0.00622611
+387.84	0.0062247
+387.96	0.00622329
+388.08	0.00622189
+388.2	0.00622048
+388.32	0.00621908
+388.44	0.00621768
+388.56	0.00621628
+388.68	0.00621488
+388.8	0.00621348
+388.92	0.00621208
+389.04	0.00621068
+389.16	0.00620928
+389.28	0.00620789
+389.4	0.00620649
+389.52	0.0062051
+389.64	0.0062037
+389.76	0.00620231
+389.88	0.00620091
+390	0.00619952
+390.12	0.00619813
+390.24	0.00619674
+390.36	0.00619535
+390.48	0.00619396
+390.6	0.00619258
+390.72	0.00619119
+390.84	0.0061898
+390.96	0.00618842
+391.08	0.00618703
+391.2	0.00618565
+391.32	0.00618426
+391.44	0.00618288
+391.56	0.0061815
+391.68	0.00618012
+391.8	0.00617874
+391.92	0.00617736
+392.04	0.00617598
+392.16	0.0061746
+392.28	0.00617323
+392.4	0.00617185
+392.52	0.00617048
+392.64	0.0061691
+392.76	0.00616773
+392.88	0.00616635
+393	0.00616498
+393.12	0.00616361
+393.24	0.00616224
+393.36	0.00616087
+393.48	0.0061595
+393.6	0.00615813
+393.72	0.00615677
+393.84	0.0061554
+393.96	0.00615403
+394.08	0.00615267
+394.2	0.0061513
+394.32	0.00614994
+394.44	0.00614858
+394.56	0.00614722
+394.68	0.00614585
+394.8	0.00614449
+394.92	0.00614313
+395.04	0.00614177
+395.16	0.00614042
+395.28	0.00613906
+395.4	0.0061377
+395.52	0.00613635
+395.64	0.00613499
+395.76	0.00613364
+395.88	0.00613228
+396	0.00613093
+396.12	0.00612958
+396.24	0.00612823
+396.36	0.00612688
+396.48	0.00612553
+396.6	0.00612418
+396.72	0.00612283
+396.84	0.00612148
+396.96	0.00612013
+397.08	0.00611879
+397.2	0.00611744
+397.32	0.0061161
+397.44	0.00611475
+397.56	0.00611341
+397.68	0.00611207
+397.8	0.00611073
+397.92	0.00610939
+398.04	0.00610805
+398.16	0.00610671
+398.28	0.00610537
+398.4	0.00610403
+398.52	0.00610269
+398.64	0.00610136
+398.76	0.00610002
+398.88	0.00609869
+399	0.00609735
+399.12	0.00609602
+399.24	0.00609469
+399.36	0.00609336
+399.48	0.00609203
+399.6	0.00609069
+399.72	0.00608937
+399.84	0.00608804
+399.96	0.00608671
+400.08	0.00608538
+400.2	0.00608405
+400.32	0.00608273
+400.44	0.0060814
+400.56	0.00608008
+400.68	0.00607876
+400.8	0.00607743
+400.92	0.00607611
+401.04	0.00607479
+401.16	0.00607347
+401.28	0.00607215
+401.4	0.00607083
+401.52	0.00606951
+401.64	0.00606819
+401.76	0.00606688
+401.88	0.00606556
+402	0.00606424
+402.12	0.00606293
+402.24	0.00606162
+402.36	0.0060603
+402.48	0.00605899
+402.6	0.00605768
+402.72	0.00605637
+402.84	0.00605506
+402.96	0.00605375
+403.08	0.00605244
+403.2	0.00605113
+403.32	0.00604982
+403.44	0.00604851
+403.56	0.00604721
+403.68	0.0060459
+403.8	0.0060446
+403.92	0.00604329
+404.04	0.00604199
+404.16	0.00604069
+404.28	0.00603939
+404.4	0.00603809
+404.52	0.00603679
+404.64	0.00603549
+404.76	0.00603419
+404.88	0.00603289
+405	0.00603159
+405.12	0.0060303
+405.24	0.006029
+405.36	0.0060277
+405.48	0.00602641
+405.6	0.00602512
+405.72	0.00602382
+405.84	0.00602253
+405.96	0.00602124
+406.08	0.00601995
+406.2	0.00601866
+406.32	0.00601737
+406.44	0.00601608
+406.56	0.00601479
+406.68	0.0060135
+406.8	0.00601222
+406.92	0.00601093
+407.04	0.00600964
+407.16	0.00600836
+407.28	0.00600708
+407.4	0.00600579
+407.52	0.00600451
+407.64	0.00600323
+407.76	0.00600195
+407.88	0.00600067
+408	0.00599939
+408.12	0.00599811
+408.24	0.00599683
+408.36	0.00599555
+408.48	0.00599428
+408.6	0.005993
+408.72	0.00599172
+408.84	0.00599045
+408.96	0.00598917
+409.08	0.0059879
+409.2	0.00598663
+409.32	0.00598536
+409.44	0.00598408
+409.56	0.00598281
+409.68	0.00598154
+409.8	0.00598028
+409.92	0.00597901
+410.04	0.00597774
+410.16	0.00597647
+410.28	0.00597521
+410.4	0.00597394
+410.52	0.00597268
+410.64	0.00597141
+410.76	0.00597015
+410.88	0.00596889
+411	0.00596762
+411.12	0.00596636
+411.24	0.0059651
+411.36	0.00596384
+411.48	0.00596258
+411.6	0.00596133
+411.72	0.00596007
+411.84	0.00595881
+411.96	0.00595755
+412.08	0.0059563
+412.2	0.00595504
+412.32	0.00595379
+412.44	0.00595254
+412.56	0.00595128
+412.68	0.00595003
+412.8	0.00594878
+412.92	0.00594753
+413.04	0.00594628
+413.16	0.00594503
+413.28	0.00594378
+413.4	0.00594253
+413.52	0.00594128
+413.64	0.00594004
+413.76	0.00593879
+413.88	0.00593754
+414	0.0059363
+414.12	0.00593505
+414.24	0.00593381
+414.36	0.00593257
+414.48	0.00593133
+414.6	0.00593008
+414.72	0.00592884
+414.84	0.0059276
+414.96	0.00592636
+415.08	0.00592512
+415.2	0.00592389
+415.32	0.00592265
+415.44	0.00592141
+415.56	0.00592018
+415.68	0.00591894
+415.8	0.0059177
+415.92	0.00591647
+416.04	0.00591524
+416.16	0.005914
+416.28	0.00591277
+416.4	0.00591154
+416.52	0.00591031
+416.64	0.00590908
+416.76	0.00590785
+416.88	0.00590662
+417	0.00590539
+417.12	0.00590416
+417.24	0.00590294
+417.36	0.00590171
+417.48	0.00590049
+417.6	0.00589926
+417.72	0.00589804
+417.84	0.00589681
+417.96	0.00589559
+418.08	0.00589437
+418.2	0.00589315
+418.32	0.00589192
+418.44	0.0058907
+418.56	0.00588948
+418.68	0.00588827
+418.8	0.00588705
+418.92	0.00588583
+419.04	0.00588461
+419.16	0.0058834
+419.28	0.00588218
+419.4	0.00588096
+419.52	0.00587975
+419.64	0.00587854
+419.76	0.00587732
+419.88	0.00587611
+420	0.0058749
+420.12	0.00587369
+420.24	0.00587248
+420.36	0.00587127
+420.48	0.00587006
+420.6	0.00586885
+420.72	0.00586764
+420.84	0.00586643
+420.96	0.00586523
+421.08	0.00586402
+421.2	0.00586281
+421.32	0.00586161
+421.44	0.0058604
+421.56	0.0058592
+421.68	0.005858
+421.8	0.0058568
+421.92	0.00585559
+422.04	0.00585439
+422.16	0.00585319
+422.28	0.00585199
+422.4	0.00585079
+422.52	0.0058496
+422.64	0.0058484
+422.76	0.0058472
+422.88	0.005846
+423	0.00584481
+423.12	0.00584361
+423.24	0.00584242
+423.36	0.00584122
+423.48	0.00584003
+423.6	0.00583884
+423.72	0.00583765
+423.84	0.00583645
+423.96	0.00583526
+424.08	0.00583407
+424.2	0.00583288
+424.32	0.00583169
+424.44	0.00583051
+424.56	0.00582932
+424.68	0.00582813
+424.8	0.00582694
+424.92	0.00582576
+425.04	0.00582457
+425.16	0.00582339
+425.28	0.0058222
+425.4	0.00582102
+425.52	0.00581984
+425.64	0.00581866
+425.76	0.00581747
+425.88	0.00581629
+426	0.00581511
+426.12	0.00581393
+426.24	0.00581275
+426.36	0.00581158
+426.48	0.0058104
+426.6	0.00580922
+426.72	0.00580804
+426.84	0.00580687
+426.96	0.00580569
+427.08	0.00580452
+427.2	0.00580334
+427.32	0.00580217
+427.44	0.005801
+427.56	0.00579983
+427.68	0.00579865
+427.8	0.00579748
+427.92	0.00579631
+428.04	0.00579514
+428.16	0.00579397
+428.28	0.0057928
+428.4	0.00579164
+428.52	0.00579047
+428.64	0.0057893
+428.76	0.00578814
+428.88	0.00578697
+429	0.00578581
+429.12	0.00578464
+429.24	0.00578348
+429.36	0.00578232
+429.48	0.00578115
+429.6	0.00577999
+429.72	0.00577883
+429.84	0.00577767
+429.96	0.00577651
+430.08	0.00577535
+430.2	0.00577419
+430.32	0.00577303
+430.44	0.00577187
+430.56	0.00577072
+430.68	0.00576956
+430.8	0.00576841
+430.92	0.00576725
+431.04	0.0057661
+431.16	0.00576494
+431.28	0.00576379
+431.4	0.00576263
+431.52	0.00576148
+431.64	0.00576033
+431.76	0.00575918
+431.88	0.00575803
+432	0.00575688
+432.12	0.00575573
+432.24	0.00575458
+432.36	0.00575343
+432.48	0.00575229
+432.6	0.00575114
+432.72	0.00574999
+432.84	0.00574885
+432.96	0.0057477
+433.08	0.00574656
+433.2	0.00574541
+433.32	0.00574427
+433.44	0.00574313
+433.56	0.00574199
+433.68	0.00574084
+433.8	0.0057397
+433.92	0.00573856
+434.04	0.00573742
+434.16	0.00573628
+434.28	0.00573515
+434.4	0.00573401
+434.52	0.00573287
+434.64	0.00573173
+434.76	0.0057306
+434.88	0.00572946
+435	0.00572833
+435.12	0.00572719
+435.24	0.00572606
+435.36	0.00572492
+435.48	0.00572379
+435.6	0.00572266
+435.72	0.00572153
+435.84	0.0057204
+435.96	0.00571927
+436.08	0.00571814
+436.2	0.00571701
+436.32	0.00571588
+436.44	0.00571475
+436.56	0.00571362
+436.68	0.0057125
+436.8	0.00571137
+436.92	0.00571024
+437.04	0.00570912
+437.16	0.00570799
+437.28	0.00570687
+437.4	0.00570575
+437.52	0.00570462
+437.64	0.0057035
+437.76	0.00570238
+437.88	0.00570126
+438	0.00570014
+438.12	0.00569902
+438.24	0.0056979
+438.36	0.00569678
+438.48	0.00569566
+438.6	0.00569454
+438.72	0.00569343
+438.84	0.00569231
+438.96	0.00569119
+439.08	0.00569008
+439.2	0.00568896
+439.32	0.00568785
+439.44	0.00568673
+439.56	0.00568562
+439.68	0.00568451
+439.8	0.0056834
+439.92	0.00568229
+440.04	0.00568117
+440.16	0.00568006
+440.28	0.00567895
+440.4	0.00567785
+440.52	0.00567674
+440.64	0.00567563
+440.76	0.00567452
+440.88	0.00567341
+441	0.00567231
+441.12	0.0056712
+441.24	0.0056701
+441.36	0.00566899
+441.48	0.00566789
+441.6	0.00566678
+441.72	0.00566568
+441.84	0.00566458
+441.96	0.00566348
+442.08	0.00566238
+442.2	0.00566127
+442.32	0.00566017
+442.44	0.00565907
+442.56	0.00565798
+442.68	0.00565688
+442.8	0.00565578
+442.92	0.00565468
+443.04	0.00565358
+443.16	0.00565249
+443.28	0.00565139
+443.4	0.0056503
+443.52	0.0056492
+443.64	0.00564811
+443.76	0.00564702
+443.88	0.00564592
+444	0.00564483
+444.12	0.00564374
+444.24	0.00564265
+444.36	0.00564156
+444.48	0.00564047
+444.6	0.00563938
+444.72	0.00563829
+444.84	0.0056372
+444.96	0.00563611
+445.08	0.00563502
+445.2	0.00563394
+445.32	0.00563285
+445.44	0.00563176
+445.56	0.00563068
+445.68	0.00562959
+445.8	0.00562851
+445.92	0.00562743
+446.04	0.00562634
+446.16	0.00562526
+446.28	0.00562418
+446.4	0.0056231
+446.52	0.00562201
+446.64	0.00562093
+446.76	0.00561985
+446.88	0.00561878
+447	0.0056177
+447.12	0.00561662
+447.24	0.00561554
+447.36	0.00561446
+447.48	0.00561339
+447.6	0.00561231
+447.72	0.00561124
+447.84	0.00561016
+447.96	0.00560909
+448.08	0.00560801
+448.2	0.00560694
+448.32	0.00560587
+448.44	0.00560479
+448.56	0.00560372
+448.68	0.00560265
+448.8	0.00560158
+448.92	0.00560051
+449.04	0.00559944
+449.16	0.00559837
+449.28	0.0055973
+449.4	0.00559623
+449.52	0.00559517
+449.64	0.0055941
+449.76	0.00559303
+449.88	0.00559197
+450	0.0055909
+450.12	0.00558984
+450.24	0.00558877
+450.36	0.00558771
+450.48	0.00558665
+450.6	0.00558558
+450.72	0.00558452
+450.84	0.00558346
+450.96	0.0055824
+451.08	0.00558134
+451.2	0.00558028
+451.32	0.00557922
+451.44	0.00557816
+451.56	0.0055771
+451.68	0.00557604
+451.8	0.00557498
+451.92	0.00557393
+452.04	0.00557287
+452.16	0.00557182
+452.28	0.00557076
+452.4	0.00556971
+452.52	0.00556865
+452.64	0.0055676
+452.76	0.00556654
+452.88	0.00556549
+453	0.00556444
+453.12	0.00556339
+453.24	0.00556234
+453.36	0.00556129
+453.48	0.00556024
+453.6	0.00555919
+453.72	0.00555814
+453.84	0.00555709
+453.96	0.00555604
+454.08	0.00555499
+454.2	0.00555395
+454.32	0.0055529
+454.44	0.00555185
+454.56	0.00555081
+454.68	0.00554976
+454.8	0.00554872
+454.92	0.00554767
+455.04	0.00554663
+455.16	0.00554559
+455.28	0.00554455
+455.4	0.0055435
+455.52	0.00554246
+455.64	0.00554142
+455.76	0.00554038
+455.88	0.00553934
+456	0.0055383
+456.12	0.00553726
+456.24	0.00553623
+456.36	0.00553519
+456.48	0.00553415
+456.6	0.00553311
+456.72	0.00553208
+456.84	0.00553104
+456.96	0.00553001
+457.08	0.00552897
+457.2	0.00552794
+457.32	0.0055269
+457.44	0.00552587
+457.56	0.00552484
+457.68	0.00552381
+457.8	0.00552277
+457.92	0.00552174
+458.04	0.00552071
+458.16	0.00551968
+458.28	0.00551865
+458.4	0.00551762
+458.52	0.0055166
+458.64	0.00551557
+458.76	0.00551454
+458.88	0.00551351
+459	0.00551249
+459.12	0.00551146
+459.24	0.00551043
+459.36	0.00550941
+459.48	0.00550838
+459.6	0.00550736
+459.72	0.00550634
+459.84	0.00550531
+459.96	0.00550429
+460.08	0.00550327
+460.2	0.00550225
+460.32	0.00550123
+460.44	0.00550021
+460.56	0.00549919
+460.68	0.00549817
+460.8	0.00549715
+460.92	0.00549613
+461.04	0.00549511
+461.16	0.00549409
+461.28	0.00549308
+461.4	0.00549206
+461.52	0.00549104
+461.64	0.00549003
+461.76	0.00548901
+461.88	0.005488
+462	0.00548698
+462.12	0.00548597
+462.24	0.00548496
+462.36	0.00548394
+462.48	0.00548293
+462.6	0.00548192
+462.72	0.00548091
+462.84	0.0054799
+462.96	0.00547889
+463.08	0.00547788
+463.2	0.00547687
+463.32	0.00547586
+463.44	0.00547485
+463.56	0.00547384
+463.68	0.00547284
+463.8	0.00547183
+463.92	0.00547082
+464.04	0.00546982
+464.16	0.00546881
+464.28	0.00546781
+464.4	0.0054668
+464.52	0.0054658
+464.64	0.0054648
+464.76	0.00546379
+464.88	0.00546279
+465	0.00546179
+465.12	0.00546079
+465.24	0.00545979
+465.36	0.00545879
+465.48	0.00545779
+465.6	0.00545679
+465.72	0.00545579
+465.84	0.00545479
+465.96	0.00545379
+466.08	0.00545279
+466.2	0.0054518
+466.32	0.0054508
+466.44	0.0054498
+466.56	0.00544881
+466.68	0.00544781
+466.8	0.00544682
+466.92	0.00544582
+467.04	0.00544483
+467.16	0.00544384
+467.28	0.00544284
+467.4	0.00544185
+467.52	0.00544086
+467.64	0.00543987
+467.76	0.00543888
+467.88	0.00543789
+468	0.0054369
+468.12	0.00543591
+468.24	0.00543492
+468.36	0.00543393
+468.48	0.00543294
+468.6	0.00543195
+468.72	0.00543097
+468.84	0.00542998
+468.96	0.00542899
+469.08	0.00542801
+469.2	0.00542702
+469.32	0.00542604
+469.44	0.00542506
+469.56	0.00542407
+469.68	0.00542309
+469.8	0.00542211
+469.92	0.00542112
+470.04	0.00542014
+470.16	0.00541916
+470.28	0.00541818
+470.4	0.0054172
+470.52	0.00541622
+470.64	0.00541524
+470.76	0.00541426
+470.88	0.00541328
+471	0.0054123
+471.12	0.00541132
+471.24	0.00541035
+471.36	0.00540937
+471.48	0.00540839
+471.6	0.00540742
+471.72	0.00540644
+471.84	0.00540547
+471.96	0.00540449
+472.08	0.00540352
+472.2	0.00540255
+472.32	0.00540157
+472.44	0.0054006
+472.56	0.00539963
+472.68	0.00539866
+472.8	0.00539769
+472.92	0.00539672
+473.04	0.00539575
+473.16	0.00539478
+473.28	0.00539381
+473.4	0.00539284
+473.52	0.00539187
+473.64	0.0053909
+473.76	0.00538993
+473.88	0.00538897
+474	0.005388
+474.12	0.00538703
+474.24	0.00538607
+474.36	0.0053851
+474.48	0.00538414
+474.6	0.00538317
+474.72	0.00538221
+474.84	0.00538125
+474.96	0.00538028
+475.08	0.00537932
+475.2	0.00537836
+475.32	0.0053774
+475.44	0.00537644
+475.56	0.00537548
+475.68	0.00537452
+475.8	0.00537356
+475.92	0.0053726
+476.04	0.00537164
+476.16	0.00537068
+476.28	0.00536972
+476.4	0.00536876
+476.52	0.00536781
+476.64	0.00536685
+476.76	0.00536589
+476.88	0.00536494
+477	0.00536398
+477.12	0.00536303
+477.24	0.00536207
+477.36	0.00536112
+477.48	0.00536017
+477.6	0.00535921
+477.72	0.00535826
+477.84	0.00535731
+477.96	0.00535636
+478.08	0.00535541
+478.2	0.00535446
+478.32	0.00535351
+478.44	0.00535256
+478.56	0.00535161
+478.68	0.00535066
+478.8	0.00534971
+478.92	0.00534876
+479.04	0.00534781
+479.16	0.00534687
+479.28	0.00534592
+479.4	0.00534497
+479.52	0.00534403
+479.64	0.00534308
+479.76	0.00534214
+479.88	0.00534119
+480	0.00534025
+480.12	0.00533931
+480.24	0.00533836
+480.36	0.00533742
+480.48	0.00533648
+480.6	0.00533554
+480.72	0.00533459
+480.84	0.00533365
+480.96	0.00533271
+481.08	0.00533177
+481.2	0.00533083
+481.32	0.00532989
+481.44	0.00532896
+481.56	0.00532802
+481.68	0.00532708
+481.8	0.00532614
+481.92	0.0053252
+482.04	0.00532427
+482.16	0.00532333
+482.28	0.0053224
+482.4	0.00532146
+482.52	0.00532053
+482.64	0.00531959
+482.76	0.00531866
+482.88	0.00531772
+483	0.00531679
+483.12	0.00531586
+483.24	0.00531493
+483.36	0.00531399
+483.48	0.00531306
+483.6	0.00531213
+483.72	0.0053112
+483.84	0.00531027
+483.96	0.00530934
+484.08	0.00530841
+484.2	0.00530748
+484.32	0.00530656
+484.44	0.00530563
+484.56	0.0053047
+484.68	0.00530377
+484.8	0.00530285
+484.92	0.00530192
+485.04	0.005301
+485.16	0.00530007
+485.28	0.00529915
+485.4	0.00529822
+485.52	0.0052973
+485.64	0.00529637
+485.76	0.00529545
+485.88	0.00529453
+486	0.00529361
+486.12	0.00529268
+486.24	0.00529176
+486.36	0.00529084
+486.48	0.00528992
+486.6	0.005289
+486.72	0.00528808
+486.84	0.00528716
+486.96	0.00528624
+487.08	0.00528532
+487.2	0.00528441
+487.32	0.00528349
+487.44	0.00528257
+487.56	0.00528165
+487.68	0.00528074
+487.8	0.00527982
+487.92	0.00527891
+488.04	0.00527799
+488.16	0.00527708
+488.28	0.00527616
+488.4	0.00527525
+488.52	0.00527434
+488.64	0.00527342
+488.76	0.00527251
+488.88	0.0052716
+489	0.00527069
+489.12	0.00526978
+489.24	0.00526886
+489.36	0.00526795
+489.48	0.00526704
+489.6	0.00526613
+489.72	0.00526523
+489.84	0.00526432
+489.96	0.00526341
+490.08	0.0052625
+490.2	0.00526159
+490.32	0.00526069
+490.44	0.00525978
+490.56	0.00525887
+490.68	0.00525797
+490.8	0.00525706
+490.92	0.00525616
+491.04	0.00525525
+491.16	0.00525435
+491.28	0.00525344
+491.4	0.00525254
+491.52	0.00525164
+491.64	0.00525073
+491.76	0.00524983
+491.88	0.00524893
+492	0.00524803
+492.12	0.00524713
+492.24	0.00524623
+492.36	0.00524533
+492.48	0.00524443
+492.6	0.00524353
+492.72	0.00524263
+492.84	0.00524173
+492.96	0.00524083
+493.08	0.00523994
+493.2	0.00523904
+493.32	0.00523814
+493.44	0.00523725
+493.56	0.00523635
+493.68	0.00523545
+493.8	0.00523456
+493.92	0.00523367
+494.04	0.00523277
+494.16	0.00523188
+494.28	0.00523098
+494.4	0.00523009
+494.52	0.0052292
+494.64	0.00522831
+494.76	0.00522741
+494.88	0.00522652
+495	0.00522563
+495.12	0.00522474
+495.24	0.00522385
+495.36	0.00522296
+495.48	0.00522207
+495.6	0.00522118
+495.72	0.00522029
+495.84	0.0052194
+495.96	0.00521852
+496.08	0.00521763
+496.2	0.00521674
+496.32	0.00521586
+496.44	0.00521497
+496.56	0.00521408
+496.68	0.0052132
+496.8	0.00521231
+496.92	0.00521143
+497.04	0.00521054
+497.16	0.00520966
+497.28	0.00520878
+497.4	0.00520789
+497.52	0.00520701
+497.64	0.00520613
+497.76	0.00520525
+497.88	0.00520437
+498	0.00520349
+498.12	0.00520261
+498.24	0.00520173
+498.36	0.00520085
+498.48	0.00519997
+498.6	0.00519909
+498.72	0.00519821
+498.84	0.00519733
+498.96	0.00519645
+499.08	0.00519557
+499.2	0.0051947
+499.32	0.00519382
+499.44	0.00519294
+499.56	0.00519207
+499.68	0.00519119
+499.8	0.00519032
+499.92	0.00518944
+500.04	0.00518857
+500.16	0.0051877
+500.28	0.00518682
+500.4	0.00518595
+500.52	0.00518508
+500.64	0.0051842
+500.76	0.00518333
+500.88	0.00518246
+501	0.00518159
+501.12	0.00518072
+501.24	0.00517985
+501.36	0.00517898
+501.48	0.00517811
+501.6	0.00517724
+501.72	0.00517637
+501.84	0.0051755
+501.96	0.00517463
+502.08	0.00517377
+502.2	0.0051729
+502.32	0.00517203
+502.44	0.00517117
+502.56	0.0051703
+502.68	0.00516944
+502.8	0.00516857
+502.92	0.00516771
+503.04	0.00516684
+503.16	0.00516598
+503.28	0.00516511
+503.4	0.00516425
+503.52	0.00516339
+503.64	0.00516252
+503.76	0.00516166
+503.88	0.0051608
+504	0.00515994
+504.12	0.00515908
+504.24	0.00515822
+504.36	0.00515736
+504.48	0.0051565
+504.6	0.00515564
+504.72	0.00515478
+504.84	0.00515392
+504.96	0.00515306
+505.08	0.0051522
+505.2	0.00515135
+505.32	0.00515049
+505.44	0.00514963
+505.56	0.00514878
+505.68	0.00514792
+505.8	0.00514706
+505.92	0.00514621
+506.04	0.00514535
+506.16	0.0051445
+506.28	0.00514365
+506.4	0.00514279
+506.52	0.00514194
+506.64	0.00514109
+506.76	0.00514023
+506.88	0.00513938
+507	0.00513853
+507.12	0.00513768
+507.24	0.00513683
+507.36	0.00513598
+507.48	0.00513513
+507.6	0.00513428
+507.72	0.00513343
+507.84	0.00513258
+507.96	0.00513173
+508.08	0.00513088
+508.2	0.00513003
+508.32	0.00512918
+508.44	0.00512834
+508.56	0.00512749
+508.68	0.00512664
+508.8	0.0051258
+508.92	0.00512495
+509.04	0.00512411
+509.16	0.00512326
+509.28	0.00512242
+509.4	0.00512157
+509.52	0.00512073
+509.64	0.00511988
+509.76	0.00511904
+509.88	0.0051182
+510	0.00511736
+510.12	0.00511651
+510.24	0.00511567
+510.36	0.00511483
+510.48	0.00511399
+510.6	0.00511315
+510.72	0.00511231
+510.84	0.00511147
+510.96	0.00511063
+511.08	0.00510979
+511.2	0.00510895
+511.32	0.00510811
+511.44	0.00510727
+511.56	0.00510644
+511.68	0.0051056
+511.8	0.00510476
+511.92	0.00510393
+512.04	0.00510309
+512.16	0.00510225
+512.28	0.00510142
+512.4	0.00510058
+512.52	0.00509975
+512.64	0.00509892
+512.76	0.00509808
+512.88	0.00509725
+513	0.00509641
+513.12	0.00509558
+513.24	0.00509475
+513.36	0.00509392
+513.48	0.00509309
+513.6	0.00509225
+513.72	0.00509142
+513.84	0.00509059
+513.96	0.00508976
+514.08	0.00508893
+514.2	0.0050881
+514.32	0.00508727
+514.44	0.00508645
+514.56	0.00508562
+514.68	0.00508479
+514.8	0.00508396
+514.92	0.00508313
+515.04	0.00508231
+515.16	0.00508148
+515.28	0.00508065
+515.4	0.00507983
+515.52	0.005079
+515.64	0.00507818
+515.76	0.00507735
+515.88	0.00507653
+516	0.0050757
+516.12	0.00507488
+516.24	0.00507406
+516.36	0.00507323
+516.48	0.00507241
+516.6	0.00507159
+516.72	0.00507077
+516.84	0.00506994
+516.96	0.00506912
+517.08	0.0050683
+517.2	0.00506748
+517.32	0.00506666
+517.44	0.00506584
+517.56	0.00506502
+517.68	0.0050642
+517.8	0.00506339
+517.92	0.00506257
+518.04	0.00506175
+518.16	0.00506093
+518.28	0.00506011
+518.4	0.0050593
+518.52	0.00505848
+518.64	0.00505766
+518.76	0.00505685
+518.88	0.00505603
+519	0.00505522
+519.12	0.0050544
+519.24	0.00505359
+519.36	0.00505277
+519.48	0.00505196
+519.6	0.00505115
+519.72	0.00505033
+519.84	0.00504952
+519.96	0.00504871
+520.08	0.0050479
+520.2	0.00504709
+520.32	0.00504627
+520.44	0.00504546
+520.56	0.00504465
+520.68	0.00504384
+520.8	0.00504303
+520.92	0.00504222
+521.04	0.00504141
+521.16	0.0050406
+521.28	0.0050398
+521.4	0.00503899
+521.52	0.00503818
+521.64	0.00503737
+521.76	0.00503657
+521.88	0.00503576
+522	0.00503495
+522.12	0.00503415
+522.24	0.00503334
+522.36	0.00503254
+522.48	0.00503173
+522.6	0.00503093
+522.72	0.00503012
+522.84	0.00502932
+522.96	0.00502851
+523.08	0.00502771
+523.2	0.00502691
+523.32	0.00502611
+523.44	0.0050253
+523.56	0.0050245
+523.68	0.0050237
+523.8	0.0050229
+523.92	0.0050221
+524.04	0.0050213
+524.16	0.0050205
+524.28	0.0050197
+524.4	0.0050189
+524.52	0.0050181
+524.64	0.0050173
+524.76	0.0050165
+524.88	0.0050157
+525	0.00501491
+525.12	0.00501411
+525.24	0.00501331
+525.36	0.00501252
+525.48	0.00501172
+525.6	0.00501092
+525.72	0.00501013
+525.84	0.00500933
+525.96	0.00500854
+526.08	0.00500774
+526.2	0.00500695
+526.32	0.00500615
+526.44	0.00500536
+526.56	0.00500457
+526.68	0.00500377
+526.8	0.00500298
+526.92	0.00500219
+527.04	0.0050014
+527.16	0.00500061
+527.28	0.00499981
+527.4	0.00499902
+527.52	0.00499823
+527.64	0.00499744
+527.76	0.00499665
+527.88	0.00499586
+528	0.00499507
+528.12	0.00499429
+528.24	0.0049935
+528.36	0.00499271
+528.48	0.00499192
+528.6	0.00499113
+528.72	0.00499035
+528.84	0.00498956
+528.96	0.00498877
+529.08	0.00498799
+529.2	0.0049872
+529.32	0.00498642
+529.44	0.00498563
+529.56	0.00498485
+529.68	0.00498406
+529.8	0.00498328
+529.92	0.00498249
+530.04	0.00498171
+530.16	0.00498093
+530.28	0.00498014
+530.4	0.00497936
+530.52	0.00497858
+530.64	0.0049778
+530.76	0.00497702
+530.88	0.00497623
+531	0.00497545
+531.12	0.00497467
+531.24	0.00497389
+531.36	0.00497311
+531.48	0.00497233
+531.6	0.00497155
+531.72	0.00497078
+531.84	0.00497
+531.96	0.00496922
+532.08	0.00496844
+532.2	0.00496766
+532.32	0.00496689
+532.44	0.00496611
+532.56	0.00496533
+532.68	0.00496456
+532.8	0.00496378
+532.92	0.00496301
+533.04	0.00496223
+533.16	0.00496146
+533.28	0.00496068
+533.4	0.00495991
+533.52	0.00495913
+533.64	0.00495836
+533.76	0.00495759
+533.88	0.00495681
+534	0.00495604
+534.12	0.00495527
+534.24	0.0049545
+534.36	0.00495373
+534.48	0.00495295
+534.6	0.00495218
+534.72	0.00495141
+534.84	0.00495064
+534.96	0.00494987
+535.08	0.0049491
+535.2	0.00494833
+535.32	0.00494756
+535.44	0.0049468
+535.56	0.00494603
+535.68	0.00494526
+535.8	0.00494449
+535.92	0.00494372
+536.04	0.00494296
+536.16	0.00494219
+536.28	0.00494142
+536.4	0.00494066
+536.52	0.00493989
+536.64	0.00493913
+536.76	0.00493836
+536.88	0.0049376
+537	0.00493683
+537.12	0.00493607
+537.24	0.0049353
+537.36	0.00493454
+537.48	0.00493378
+537.6	0.00493301
+537.72	0.00493225
+537.84	0.00493149
+537.96	0.00493073
+538.08	0.00492997
+538.2	0.00492921
+538.32	0.00492844
+538.44	0.00492768
+538.56	0.00492692
+538.68	0.00492616
+538.8	0.0049254
+538.92	0.00492464
+539.04	0.00492389
+539.16	0.00492313
+539.28	0.00492237
+539.4	0.00492161
+539.52	0.00492085
+539.64	0.00492009
+539.76	0.00491934
+539.88	0.00491858
+540	0.00491782
+540.12	0.00491707
+540.24	0.00491631
+540.36	0.00491556
+540.48	0.0049148
+540.6	0.00491405
+540.72	0.00491329
+540.84	0.00491254
+540.96	0.00491178
+541.08	0.00491103
+541.2	0.00491028
+541.32	0.00490952
+541.44	0.00490877
+541.56	0.00490802
+541.68	0.00490727
+541.8	0.00490652
+541.92	0.00490576
+542.04	0.00490501
+542.16	0.00490426
+542.28	0.00490351
+542.4	0.00490276
+542.52	0.00490201
+542.64	0.00490126
+542.76	0.00490051
+542.88	0.00489976
+543	0.00489902
+543.12	0.00489827
+543.24	0.00489752
+543.36	0.00489677
+543.48	0.00489602
+543.6	0.00489528
+543.72	0.00489453
+543.84	0.00489378
+543.96	0.00489304
+544.08	0.00489229
+544.2	0.00489155
+544.32	0.0048908
+544.44	0.00489006
+544.56	0.00488931
+544.68	0.00488857
+544.8	0.00488782
+544.92	0.00488708
+545.04	0.00488634
+545.16	0.00488559
+545.28	0.00488485
+545.4	0.00488411
+545.52	0.00488337
+545.64	0.00488262
+545.76	0.00488188
+545.88	0.00488114
+546	0.0048804
+546.12	0.00487966
+546.24	0.00487892
+546.36	0.00487818
+546.48	0.00487744
+546.6	0.0048767
+546.72	0.00487596
+546.84	0.00487522
+546.96	0.00487449
+547.08	0.00487375
+547.2	0.00487301
+547.32	0.00487227
+547.44	0.00487154
+547.56	0.0048708
+547.68	0.00487006
+547.8	0.00486933
+547.92	0.00486859
+548.04	0.00486786
+548.16	0.00486712
+548.28	0.00486639
+548.4	0.00486565
+548.52	0.00486492
+548.64	0.00486418
+548.76	0.00486345
+548.88	0.00486272
+549	0.00486198
+549.12	0.00486125
+549.24	0.00486052
+549.36	0.00485979
+549.48	0.00485905
+549.6	0.00485832
+549.72	0.00485759
+549.84	0.00485686
+549.96	0.00485613
+550.08	0.0048554
+550.2	0.00485467
+550.32	0.00485394
+550.44	0.00485321
+550.56	0.00485248
+550.68	0.00485175
+550.8	0.00485102
+550.92	0.0048503
+551.04	0.00484957
+551.16	0.00484884
+551.28	0.00484811
+551.4	0.00484739
+551.52	0.00484666
+551.64	0.00484593
+551.76	0.00484521
+551.88	0.00484448
+552	0.00484375
+552.12	0.00484303
+552.24	0.0048423
+552.36	0.00484158
+552.48	0.00484086
+552.6	0.00484013
+552.72	0.00483941
+552.84	0.00483868
+552.96	0.00483796
+553.08	0.00483724
+553.2	0.00483652
+553.32	0.00483579
+553.44	0.00483507
+553.56	0.00483435
+553.68	0.00483363
+553.8	0.00483291
+553.92	0.00483219
+554.04	0.00483147
+554.16	0.00483075
+554.28	0.00483003
+554.4	0.00482931
+554.52	0.00482859
+554.64	0.00482787
+554.76	0.00482715
+554.88	0.00482643
+555	0.00482571
+555.12	0.00482499
+555.24	0.00482428
+555.36	0.00482356
+555.48	0.00482284
+555.6	0.00482213
+555.72	0.00482141
+555.84	0.00482069
+555.96	0.00481998
+556.08	0.00481926
+556.2	0.00481855
+556.32	0.00481783
+556.44	0.00481712
+556.56	0.0048164
+556.68	0.00481569
+556.8	0.00481498
+556.92	0.00481426
+557.04	0.00481355
+557.16	0.00481284
+557.28	0.00481212
+557.4	0.00481141
+557.52	0.0048107
+557.64	0.00480999
+557.76	0.00480928
+557.88	0.00480856
+558	0.00480785
+558.12	0.00480714
+558.24	0.00480643
+558.36	0.00480572
+558.48	0.00480501
+558.6	0.0048043
+558.72	0.00480359
+558.84	0.00480289
+558.96	0.00480218
+559.08	0.00480147
+559.2	0.00480076
+559.32	0.00480005
+559.44	0.00479935
+559.56	0.00479864
+559.68	0.00479793
+559.8	0.00479723
+559.92	0.00479652
+560.04	0.00479581
+560.16	0.00479511
+560.28	0.0047944
+560.4	0.0047937
+560.52	0.00479299
+560.64	0.00479229
+560.76	0.00479158
+560.88	0.00479088
+561	0.00479018
+561.12	0.00478947
+561.24	0.00478877
+561.36	0.00478807
+561.48	0.00478736
+561.6	0.00478666
+561.72	0.00478596
+561.84	0.00478526
+561.96	0.00478456
+562.08	0.00478385
+562.2	0.00478315
+562.32	0.00478245
+562.44	0.00478175
+562.56	0.00478105
+562.68	0.00478035
+562.8	0.00477965
+562.92	0.00477895
+563.04	0.00477826
+563.16	0.00477756
+563.28	0.00477686
+563.4	0.00477616
+563.52	0.00477546
+563.64	0.00477477
+563.76	0.00477407
+563.88	0.00477337
+564	0.00477267
+564.12	0.00477198
+564.24	0.00477128
+564.36	0.00477059
+564.48	0.00476989
+564.6	0.0047692
+564.72	0.0047685
+564.84	0.00476781
+564.96	0.00476711
+565.08	0.00476642
+565.2	0.00476572
+565.32	0.00476503
+565.44	0.00476434
+565.56	0.00476364
+565.68	0.00476295
+565.8	0.00476226
+565.92	0.00476157
+566.04	0.00476087
+566.16	0.00476018
+566.28	0.00475949
+566.4	0.0047588
+566.52	0.00475811
+566.64	0.00475742
+566.76	0.00475673
+566.88	0.00475604
+567	0.00475535
+567.12	0.00475466
+567.24	0.00475397
+567.36	0.00475328
+567.48	0.00475259
+567.6	0.0047519
+567.72	0.00475122
+567.84	0.00475053
+567.96	0.00474984
+568.08	0.00474915
+568.2	0.00474847
+568.32	0.00474778
+568.44	0.00474709
+568.56	0.00474641
+568.68	0.00474572
+568.8	0.00474504
+568.92	0.00474435
+569.04	0.00474367
+569.16	0.00474298
+569.28	0.0047423
+569.4	0.00474161
+569.52	0.00474093
+569.64	0.00474024
+569.76	0.00473956
+569.88	0.00473888
+570	0.0047382
+570.12	0.00473751
+570.24	0.00473683
+570.36	0.00473615
+570.48	0.00473547
+570.6	0.00473478
+570.72	0.0047341
+570.84	0.00473342
+570.96	0.00473274
+571.08	0.00473206
+571.2	0.00473138
+571.32	0.0047307
+571.44	0.00473002
+571.56	0.00472934
+571.68	0.00472866
+571.8	0.00472798
+571.92	0.00472731
+572.04	0.00472663
+572.16	0.00472595
+572.28	0.00472527
+572.4	0.00472459
+572.52	0.00472392
+572.64	0.00472324
+572.76	0.00472256
+572.88	0.00472189
+573	0.00472121
+573.12	0.00472054
+573.24	0.00471986
+573.36	0.00471918
+573.48	0.00471851
+573.6	0.00471783
+573.72	0.00471716
+573.84	0.00471649
+573.96	0.00471581
+574.08	0.00471514
+574.2	0.00471447
+574.32	0.00471379
+574.44	0.00471312
+574.56	0.00471245
+574.68	0.00471177
+574.8	0.0047111
+574.92	0.00471043
+575.04	0.00470976
+575.16	0.00470909
+575.28	0.00470842
+575.4	0.00470775
+575.52	0.00470707
+575.64	0.0047064
+575.76	0.00470573
+575.88	0.00470506
+576	0.0047044
+576.12	0.00470373
+576.24	0.00470306
+576.36	0.00470239
+576.48	0.00470172
+576.6	0.00470105
+576.72	0.00470038
+576.84	0.00469972
+576.96	0.00469905
+577.08	0.00469838
+577.2	0.00469771
+577.32	0.00469705
+577.44	0.00469638
+577.56	0.00469572
+577.68	0.00469505
+577.8	0.00469438
+577.92	0.00469372
+578.04	0.00469305
+578.16	0.00469239
+578.28	0.00469173
+578.4	0.00469106
+578.52	0.0046904
+578.64	0.00468973
+578.76	0.00468907
+578.88	0.00468841
+579	0.00468774
+579.12	0.00468708
+579.24	0.00468642
+579.36	0.00468576
+579.48	0.00468509
+579.6	0.00468443
+579.72	0.00468377
+579.84	0.00468311
+579.96	0.00468245
+580.08	0.00468179
+580.2	0.00468113
+580.32	0.00468047
+580.44	0.00467981
+580.56	0.00467915
+580.68	0.00467849
+580.8	0.00467783
+580.92	0.00467717
+581.04	0.00467651
+581.16	0.00467586
+581.28	0.0046752
+581.4	0.00467454
+581.52	0.00467388
+581.64	0.00467322
+581.76	0.00467257
+581.88	0.00467191
+582	0.00467125
+582.12	0.0046706
+582.24	0.00466994
+582.36	0.00466929
+582.48	0.00466863
+582.6	0.00466798
+582.72	0.00466732
+582.84	0.00466667
+582.96	0.00466601
+583.08	0.00466536
+583.2	0.0046647
+583.32	0.00466405
+583.44	0.0046634
+583.56	0.00466274
+583.68	0.00466209
+583.8	0.00466144
+583.92	0.00466079
+584.04	0.00466013
+584.16	0.00465948
+584.28	0.00465883
+584.4	0.00465818
+584.52	0.00465753
+584.64	0.00465688
+584.76	0.00465623
+584.88	0.00465558
+585	0.00465493
+585.12	0.00465428
+585.24	0.00465363
+585.36	0.00465298
+585.48	0.00465233
+585.6	0.00465168
+585.72	0.00465103
+585.84	0.00465038
+585.96	0.00464973
+586.08	0.00464909
+586.2	0.00464844
+586.32	0.00464779
+586.44	0.00464714
+586.56	0.0046465
+586.68	0.00464585
+586.8	0.0046452
+586.92	0.00464456
+587.04	0.00464391
+587.16	0.00464327
+587.28	0.00464262
+587.4	0.00464198
+587.52	0.00464133
+587.64	0.00464069
+587.76	0.00464004
+587.88	0.0046394
+588	0.00463875
+588.12	0.00463811
+588.24	0.00463747
+588.36	0.00463682
+588.48	0.00463618
+588.6	0.00463554
+588.72	0.0046349
+588.84	0.00463425
+588.96	0.00463361
+589.08	0.00463297
+589.2	0.00463233
+589.32	0.00463169
+589.44	0.00463105
+589.56	0.00463041
+589.68	0.00462977
+589.8	0.00462913
+589.92	0.00462849
+590.04	0.00462785
+590.16	0.00462721
+590.28	0.00462657
+590.4	0.00462593
+590.52	0.00462529
+590.64	0.00462465
+590.76	0.00462401
+590.88	0.00462338
+591	0.00462274
+591.12	0.0046221
+591.24	0.00462146
+591.36	0.00462083
+591.48	0.00462019
+591.6	0.00461955
+591.72	0.00461892
+591.84	0.00461828
+591.96	0.00461765
+592.08	0.00461701
+592.2	0.00461637
+592.32	0.00461574
+592.44	0.0046151
+592.56	0.00461447
+592.68	0.00461384
+592.8	0.0046132
+592.92	0.00461257
+593.04	0.00461193
+593.16	0.0046113
+593.28	0.00461067
+593.4	0.00461004
+593.52	0.0046094
+593.64	0.00460877
+593.76	0.00460814
+593.88	0.00460751
+594	0.00460688
+594.12	0.00460624
+594.24	0.00460561
+594.36	0.00460498
+594.48	0.00460435
+594.6	0.00460372
+594.72	0.00460309
+594.84	0.00460246
+594.96	0.00460183
+595.08	0.0046012
+595.2	0.00460057
+595.32	0.00459994
+595.44	0.00459931
+595.56	0.00459869
+595.68	0.00459806
+595.8	0.00459743
+595.92	0.0045968
+596.04	0.00459617
+596.16	0.00459555
+596.28	0.00459492
+596.4	0.00459429
+596.52	0.00459367
+596.64	0.00459304
+596.76	0.00459241
+596.88	0.00459179
+597	0.00459116
+597.12	0.00459054
+597.24	0.00458991
+597.36	0.00458929
+597.48	0.00458866
+597.6	0.00458804
+597.72	0.00458741
+597.84	0.00458679
+597.96	0.00458617
+598.08	0.00458554
+598.2	0.00458492
+598.32	0.0045843
+598.44	0.00458367
+598.56	0.00458305
+598.68	0.00458243
+598.8	0.00458181
+598.92	0.00458119
+599.04	0.00458056
+599.16	0.00457994
+599.28	0.00457932
+599.4	0.0045787
+599.52	0.00457808
+599.64	0.00457746
+599.76	0.00457684
+599.88	0.00457622
+600	0.0045756
+600.12	0.00457498
+600.24	0.00457436
+600.36	0.00457374
+600.48	0.00457312
+600.6	0.00457251
+600.72	0.00457189
+600.84	0.00457127
+600.96	0.00457065
+601.08	0.00457003
+601.2	0.00456942
+601.32	0.0045688
+601.44	0.00456818
+601.56	0.00456757
+601.68	0.00456695
+601.8	0.00456633
+601.92	0.00456572
+602.04	0.0045651
+602.16	0.00456449
+602.28	0.00456387
+602.4	0.00456326
+602.52	0.00456264
+602.64	0.00456203
+602.76	0.00456141
+602.88	0.0045608
+603	0.00456018
+603.12	0.00455957
+603.24	0.00455896
+603.36	0.00455834
+603.48	0.00455773
+603.6	0.00455712
+603.72	0.00455651
+603.84	0.00455589
+603.96	0.00455528
+604.08	0.00455467
+604.2	0.00455406
+604.32	0.00455345
+604.44	0.00455284
+604.56	0.00455223
+604.68	0.00455161
+604.8	0.004551
+604.92	0.00455039
+605.04	0.00454978
+605.16	0.00454917
+605.28	0.00454856
+605.4	0.00454796
+605.52	0.00454735
+605.64	0.00454674
+605.76	0.00454613
+605.88	0.00454552
+606	0.00454491
+606.12	0.0045443
+606.24	0.0045437
+606.36	0.00454309
+606.48	0.00454248
+606.6	0.00454188
+606.72	0.00454127
+606.84	0.00454066
+606.96	0.00454006
+607.08	0.00453945
+607.2	0.00453884
+607.32	0.00453824
+607.44	0.00453763
+607.56	0.00453703
+607.68	0.00453642
+607.8	0.00453582
+607.92	0.00453521
+608.04	0.00453461
+608.16	0.00453401
+608.28	0.0045334
+608.4	0.0045328
+608.52	0.0045322
+608.64	0.00453159
+608.76	0.00453099
+608.88	0.00453039
+609	0.00452978
+609.12	0.00452918
+609.24	0.00452858
+609.36	0.00452798
+609.48	0.00452738
+609.6	0.00452678
+609.72	0.00452617
+609.84	0.00452557
+609.96	0.00452497
+610.08	0.00452437
+610.2	0.00452377
+610.32	0.00452317
+610.44	0.00452257
+610.56	0.00452197
+610.68	0.00452137
+610.8	0.00452077
+610.92	0.00452018
+611.04	0.00451958
+611.16	0.00451898
+611.28	0.00451838
+611.4	0.00451778
+611.52	0.00451718
+611.64	0.00451659
+611.76	0.00451599
+611.88	0.00451539
+612	0.0045148
+612.12	0.0045142
+612.24	0.0045136
+612.36	0.00451301
+612.48	0.00451241
+612.6	0.00451181
+612.72	0.00451122
+612.84	0.00451062
+612.96	0.00451003
+613.08	0.00450943
+613.2	0.00450884
+613.32	0.00450824
+613.44	0.00450765
+613.56	0.00450706
+613.68	0.00450646
+613.8	0.00450587
+613.92	0.00450528
+614.04	0.00450468
+614.16	0.00450409
+614.28	0.0045035
+614.4	0.00450291
+614.52	0.00450231
+614.64	0.00450172
+614.76	0.00450113
+614.88	0.00450054
+615	0.00449995
+615.12	0.00449936
+615.24	0.00449876
+615.36	0.00449817
+615.48	0.00449758
+615.6	0.00449699
+615.72	0.0044964
+615.84	0.00449581
+615.96	0.00449522
+616.08	0.00449463
+616.2	0.00449404
+616.32	0.00449346
+616.44	0.00449287
+616.56	0.00449228
+616.68	0.00449169
+616.8	0.0044911
+616.92	0.00449051
+617.04	0.00448993
+617.16	0.00448934
+617.28	0.00448875
+617.4	0.00448817
+617.52	0.00448758
+617.64	0.00448699
+617.76	0.00448641
+617.88	0.00448582
+618	0.00448523
+618.12	0.00448465
+618.24	0.00448406
+618.36	0.00448348
+618.48	0.00448289
+618.6	0.00448231
+618.72	0.00448172
+618.84	0.00448114
+618.96	0.00448055
+619.08	0.00447997
+619.2	0.00447939
+619.32	0.0044788
+619.44	0.00447822
+619.56	0.00447764
+619.68	0.00447705
+619.8	0.00447647
+619.92	0.00447589
+620.04	0.00447531
+620.16	0.00447472
+620.28	0.00447414
+620.4	0.00447356
+620.52	0.00447298
+620.64	0.0044724
+620.76	0.00447182
+620.88	0.00447124
+621	0.00447066
+621.12	0.00447008
+621.24	0.0044695
+621.36	0.00446892
+621.48	0.00446834
+621.6	0.00446776
+621.72	0.00446718
+621.84	0.0044666
+621.96	0.00446602
+622.08	0.00446544
+622.2	0.00446486
+622.32	0.00446428
+622.44	0.00446371
+622.56	0.00446313
+622.68	0.00446255
+622.8	0.00446197
+622.92	0.0044614
+623.04	0.00446082
+623.16	0.00446024
+623.28	0.00445967
+623.4	0.00445909
+623.52	0.00445851
+623.64	0.00445794
+623.76	0.00445736
+623.88	0.00445679
+624	0.00445621
+624.12	0.00445564
+624.24	0.00445506
+624.36	0.00445449
+624.48	0.00445391
+624.6	0.00445334
+624.72	0.00445276
+624.84	0.00445219
+624.96	0.00445162
+625.08	0.00445104
+625.2	0.00445047
+625.32	0.0044499
+625.44	0.00444932
+625.56	0.00444875
+625.68	0.00444818
+625.8	0.00444761
+625.92	0.00444704
+626.04	0.00444646
+626.16	0.00444589
+626.28	0.00444532
+626.4	0.00444475
+626.52	0.00444418
+626.64	0.00444361
+626.76	0.00444304
+626.88	0.00444247
+627	0.0044419
+627.12	0.00444133
+627.24	0.00444076
+627.36	0.00444019
+627.48	0.00443962
+627.6	0.00443905
+627.72	0.00443848
+627.84	0.00443791
+627.96	0.00443734
+628.08	0.00443678
+628.2	0.00443621
+628.32	0.00443564
+628.44	0.00443507
+628.56	0.00443451
+628.68	0.00443394
+628.8	0.00443337
+628.92	0.0044328
+629.04	0.00443224
+629.16	0.00443167
+629.28	0.00443111
+629.4	0.00443054
+629.52	0.00442997
+629.64	0.00442941
+629.76	0.00442884
+629.88	0.00442828
+630	0.00442771
+630.12	0.00442715
+630.24	0.00442658
+630.36	0.00442602
+630.48	0.00442546
+630.6	0.00442489
+630.72	0.00442433
+630.84	0.00442376
+630.96	0.0044232
+631.08	0.00442264
+631.2	0.00442208
+631.32	0.00442151
+631.44	0.00442095
+631.56	0.00442039
+631.68	0.00441983
+631.8	0.00441926
+631.92	0.0044187
+632.04	0.00441814
+632.16	0.00441758
+632.28	0.00441702
+632.4	0.00441646
+632.52	0.0044159
+632.64	0.00441534
+632.76	0.00441478
+632.88	0.00441422
+633	0.00441366
+633.12	0.0044131
+633.24	0.00441254
+633.36	0.00441198
+633.48	0.00441142
+633.6	0.00441086
+633.72	0.0044103
+633.84	0.00440974
+633.96	0.00440919
+634.08	0.00440863
+634.2	0.00440807
+634.32	0.00440751
+634.44	0.00440695
+634.56	0.0044064
+634.68	0.00440584
+634.8	0.00440528
+634.92	0.00440473
+635.04	0.00440417
+635.16	0.00440361
+635.28	0.00440306
+635.4	0.0044025
+635.52	0.00440195
+635.64	0.00440139
+635.76	0.00440084
+635.88	0.00440028
+636	0.00439973
+636.12	0.00439917
+636.24	0.00439862
+636.36	0.00439806
+636.48	0.00439751
+636.6	0.00439696
+636.72	0.0043964
+636.84	0.00439585
+636.96	0.00439529
+637.08	0.00439474
+637.2	0.00439419
+637.32	0.00439364
+637.44	0.00439308
+637.56	0.00439253
+637.68	0.00439198
+637.8	0.00439143
+637.92	0.00439088
+638.04	0.00439032
+638.16	0.00438977
+638.28	0.00438922
+638.4	0.00438867
+638.52	0.00438812
+638.64	0.00438757
+638.76	0.00438702
+638.88	0.00438647
+639	0.00438592
+639.12	0.00438537
+639.24	0.00438482
+639.36	0.00438427
+639.48	0.00438372
+639.6	0.00438317
+639.72	0.00438262
+639.84	0.00438208
+639.96	0.00438153
+640.08	0.00438098
+640.2	0.00438043
+640.32	0.00437988
+640.44	0.00437934
+640.56	0.00437879
+640.68	0.00437824
+640.8	0.0043777
+640.92	0.00437715
+641.04	0.0043766
+641.16	0.00437606
+641.28	0.00437551
+641.4	0.00437496
+641.52	0.00437442
+641.64	0.00437387
+641.76	0.00437333
+641.88	0.00437278
+642	0.00437224
+642.12	0.00437169
+642.24	0.00437115
+642.36	0.0043706
+642.48	0.00437006
+642.6	0.00436951
+642.72	0.00436897
+642.84	0.00436843
+642.96	0.00436788
+643.08	0.00436734
+643.2	0.0043668
+643.32	0.00436625
+643.44	0.00436571
+643.56	0.00436517
+643.68	0.00436463
+643.8	0.00436408
+643.92	0.00436354
+644.04	0.004363
+644.16	0.00436246
+644.28	0.00436192
+644.4	0.00436138
+644.52	0.00436084
+644.64	0.0043603
+644.76	0.00435975
+644.88	0.00435921
+645	0.00435867
+645.12	0.00435813
+645.24	0.00435759
+645.36	0.00435705
+645.48	0.00435652
+645.6	0.00435598
+645.72	0.00435544
+645.84	0.0043549
+645.96	0.00435436
+646.08	0.00435382
+646.2	0.00435328
+646.32	0.00435274
+646.44	0.00435221
+646.56	0.00435167
+646.68	0.00435113
+646.8	0.00435059
+646.92	0.00435006
+647.04	0.00434952
+647.16	0.00434898
+647.28	0.00434845
+647.4	0.00434791
+647.52	0.00434737
+647.64	0.00434684
+647.76	0.0043463
+647.88	0.00434577
+648	0.00434523
+648.12	0.0043447
+648.24	0.00434416
+648.36	0.00434363
+648.48	0.00434309
+648.6	0.00434256
+648.72	0.00434202
+648.84	0.00434149
+648.96	0.00434095
+649.08	0.00434042
+649.2	0.00433989
+649.32	0.00433935
+649.44	0.00433882
+649.56	0.00433829
+649.68	0.00433775
+649.8	0.00433722
+649.92	0.00433669
+650.04	0.00433616
+650.16	0.00433563
+650.28	0.00433509
+650.4	0.00433456
+650.52	0.00433403
+650.64	0.0043335
+650.76	0.00433297
+650.88	0.00433244
+651	0.00433191
+651.12	0.00433138
+651.24	0.00433084
+651.36	0.00433031
+651.48	0.00432978
+651.6	0.00432925
+651.72	0.00432873
+651.84	0.0043282
+651.96	0.00432767
+652.08	0.00432714
+652.2	0.00432661
+652.32	0.00432608
+652.44	0.00432555
+652.56	0.00432502
+652.68	0.00432449
+652.8	0.00432397
+652.92	0.00432344
+653.04	0.00432291
+653.16	0.00432238
+653.28	0.00432186
+653.4	0.00432133
+653.52	0.0043208
+653.64	0.00432028
+653.76	0.00431975
+653.88	0.00431922
+654	0.0043187
+654.12	0.00431817
+654.24	0.00431765
+654.36	0.00431712
+654.48	0.00431659
+654.6	0.00431607
+654.72	0.00431554
+654.84	0.00431502
+654.96	0.00431449
+655.08	0.00431397
+655.2	0.00431345
+655.32	0.00431292
+655.44	0.0043124
+655.56	0.00431187
+655.68	0.00431135
+655.8	0.00431083
+655.92	0.0043103
+656.04	0.00430978
+656.16	0.00430926
+656.28	0.00430874
+656.4	0.00430821
+656.52	0.00430769
+656.64	0.00430717
+656.76	0.00430665
+656.88	0.00430612
+657	0.0043056
+657.12	0.00430508
+657.24	0.00430456
+657.36	0.00430404
+657.48	0.00430352
+657.6	0.004303
+657.72	0.00430248
+657.84	0.00430196
+657.96	0.00430144
+658.08	0.00430092
+658.2	0.0043004
+658.32	0.00429988
+658.44	0.00429936
+658.56	0.00429884
+658.68	0.00429832
+658.8	0.0042978
+658.92	0.00429728
+659.04	0.00429676
+659.16	0.00429625
+659.28	0.00429573
+659.4	0.00429521
+659.52	0.00429469
+659.64	0.00429417
+659.76	0.00429366
+659.88	0.00429314
+660	0.00429262
+660.12	0.00429211
+660.24	0.00429159
+660.36	0.00429107
+660.48	0.00429056
+660.6	0.00429004
+660.72	0.00428952
+660.84	0.00428901
+660.96	0.00428849
+661.08	0.00428798
+661.2	0.00428746
+661.32	0.00428695
+661.44	0.00428643
+661.56	0.00428592
+661.68	0.0042854
+661.8	0.00428489
+661.92	0.00428437
+662.04	0.00428386
+662.16	0.00428335
+662.28	0.00428283
+662.4	0.00428232
+662.52	0.00428181
+662.64	0.00428129
+662.76	0.00428078
+662.88	0.00428027
+663	0.00427975
+663.12	0.00427924
+663.24	0.00427873
+663.36	0.00427822
+663.48	0.00427771
+663.6	0.00427719
+663.72	0.00427668
+663.84	0.00427617
+663.96	0.00427566
+664.08	0.00427515
+664.2	0.00427464
+664.32	0.00427413
+664.44	0.00427362
+664.56	0.00427311
+664.68	0.0042726
+664.8	0.00427209
+664.92	0.00427158
+665.04	0.00427107
+665.16	0.00427056
+665.28	0.00427005
+665.4	0.00426954
+665.52	0.00426903
+665.64	0.00426852
+665.76	0.00426801
+665.88	0.0042675
+666	0.004267
+666.12	0.00426649
+666.24	0.00426598
+666.36	0.00426547
+666.48	0.00426496
+666.6	0.00426446
+666.72	0.00426395
+666.84	0.00426344
+666.96	0.00426294
+667.08	0.00426243
+667.2	0.00426192
+667.32	0.00426142
+667.44	0.00426091
+667.56	0.0042604
+667.68	0.0042599
+667.8	0.00425939
+667.92	0.00425889
+668.04	0.00425838
+668.16	0.00425788
+668.28	0.00425737
+668.4	0.00425687
+668.52	0.00425636
+668.64	0.00425586
+668.76	0.00425535
+668.88	0.00425485
+669	0.00425435
+669.12	0.00425384
+669.24	0.00425334
+669.36	0.00425284
+669.48	0.00425233
+669.6	0.00425183
+669.72	0.00425133
+669.84	0.00425082
+669.96	0.00425032
+670.08	0.00424982
+670.2	0.00424932
+670.32	0.00424881
+670.44	0.00424831
+670.56	0.00424781
+670.68	0.00424731
+670.8	0.00424681
+670.92	0.00424631
+671.04	0.00424581
+671.16	0.00424531
+671.28	0.0042448
+671.4	0.0042443
+671.52	0.0042438
+671.64	0.0042433
+671.76	0.0042428
+671.88	0.0042423
+672	0.0042418
+672.12	0.00424131
+672.24	0.00424081
+672.36	0.00424031
+672.48	0.00423981
+672.6	0.00423931
+672.72	0.00423881
+672.84	0.00423831
+672.96	0.00423781
+673.08	0.00423732
+673.2	0.00423682
+673.32	0.00423632
+673.44	0.00423582
+673.56	0.00423533
+673.68	0.00423483
+673.8	0.00423433
+673.92	0.00423383
+674.04	0.00423334
+674.16	0.00423284
+674.28	0.00423234
+674.4	0.00423185
+674.52	0.00423135
+674.64	0.00423086
+674.76	0.00423036
+674.88	0.00422986
+675	0.00422937
+675.12	0.00422887
+675.24	0.00422838
+675.36	0.00422788
+675.48	0.00422739
+675.6	0.00422689
+675.72	0.0042264
+675.84	0.00422591
+675.96	0.00422541
+676.08	0.00422492
+676.2	0.00422442
+676.32	0.00422393
+676.44	0.00422344
+676.56	0.00422294
+676.68	0.00422245
+676.8	0.00422196
+676.92	0.00422147
+677.04	0.00422097
+677.16	0.00422048
+677.28	0.00421999
+677.4	0.0042195
+677.52	0.004219
+677.64	0.00421851
+677.76	0.00421802
+677.88	0.00421753
+678	0.00421704
+678.12	0.00421655
+678.24	0.00421606
+678.36	0.00421557
+678.48	0.00421508
+678.6	0.00421458
+678.72	0.00421409
+678.84	0.0042136
+678.96	0.00421311
+679.08	0.00421263
+679.2	0.00421214
+679.32	0.00421165
+679.44	0.00421116
+679.56	0.00421067
+679.68	0.00421018
+679.8	0.00420969
+679.92	0.0042092
+680.04	0.00420871
+680.16	0.00420822
+680.28	0.00420774
+680.4	0.00420725
+680.52	0.00420676
+680.64	0.00420627
+680.76	0.00420579
+680.88	0.0042053
+681	0.00420481
+681.12	0.00420432
+681.24	0.00420384
+681.36	0.00420335
+681.48	0.00420286
+681.6	0.00420238
+681.72	0.00420189
+681.84	0.00420141
+681.96	0.00420092
+682.08	0.00420044
+682.2	0.00419995
+682.32	0.00419946
+682.44	0.00419898
+682.56	0.00419849
+682.68	0.00419801
+682.8	0.00419752
+682.92	0.00419704
+683.04	0.00419656
+683.16	0.00419607
+683.28	0.00419559
+683.4	0.0041951
+683.52	0.00419462
+683.64	0.00419414
+683.76	0.00419365
+683.88	0.00419317
+684	0.00419269
+684.12	0.0041922
+684.24	0.00419172
+684.36	0.00419124
+684.48	0.00419076
+684.6	0.00419027
+684.72	0.00418979
+684.84	0.00418931
+684.96	0.00418883
+685.08	0.00418835
+685.2	0.00418787
+685.32	0.00418738
+685.44	0.0041869
+685.56	0.00418642
+685.68	0.00418594
+685.8	0.00418546
+685.92	0.00418498
+686.04	0.0041845
+686.16	0.00418402
+686.28	0.00418354
+686.4	0.00418306
+686.52	0.00418258
+686.64	0.0041821
+686.76	0.00418162
+686.88	0.00418114
+687	0.00418066
+687.12	0.00418018
+687.24	0.00417971
+687.36	0.00417923
+687.48	0.00417875
+687.6	0.00417827
+687.72	0.00417779
+687.84	0.00417731
+687.96	0.00417684
+688.08	0.00417636
+688.2	0.00417588
+688.32	0.0041754
+688.44	0.00417493
+688.56	0.00417445
+688.68	0.00417397
+688.8	0.0041735
+688.92	0.00417302
+689.04	0.00417254
+689.16	0.00417207
+689.28	0.00417159
+689.4	0.00417112
+689.52	0.00417064
+689.64	0.00417016
+689.76	0.00416969
+689.88	0.00416921
+690	0.00416874
+690.12	0.00416826
+690.24	0.00416779
+690.36	0.00416732
+690.48	0.00416684
+690.6	0.00416637
+690.72	0.00416589
+690.84	0.00416542
+690.96	0.00416494
+691.08	0.00416447
+691.2	0.004164
+691.32	0.00416352
+691.44	0.00416305
+691.56	0.00416258
+691.68	0.00416211
+691.8	0.00416163
+691.92	0.00416116
+692.04	0.00416069
+692.16	0.00416022
+692.28	0.00415974
+692.4	0.00415927
+692.52	0.0041588
+692.64	0.00415833
+692.76	0.00415786
+692.88	0.00415739
+693	0.00415691
+693.12	0.00415644
+693.24	0.00415597
+693.36	0.0041555
+693.48	0.00415503
+693.6	0.00415456
+693.72	0.00415409
+693.84	0.00415362
+693.96	0.00415315
+694.08	0.00415268
+694.2	0.00415221
+694.32	0.00415174
+694.44	0.00415127
+694.56	0.0041508
+694.68	0.00415033
+694.8	0.00414987
+694.92	0.0041494
+695.04	0.00414893
+695.16	0.00414846
+695.28	0.00414799
+695.4	0.00414752
+695.52	0.00414706
+695.64	0.00414659
+695.76	0.00414612
+695.88	0.00414565
+696	0.00414519
+696.12	0.00414472
+696.24	0.00414425
+696.36	0.00414378
+696.48	0.00414332
+696.6	0.00414285
+696.72	0.00414239
+696.84	0.00414192
+696.96	0.00414145
+697.08	0.00414099
+697.2	0.00414052
+697.32	0.00414006
+697.44	0.00413959
+697.56	0.00413913
+697.68	0.00413866
+697.8	0.0041382
+697.92	0.00413773
+698.04	0.00413727
+698.16	0.0041368
+698.28	0.00413634
+698.4	0.00413587
+698.52	0.00413541
+698.64	0.00413494
+698.76	0.00413448
+698.88	0.00413402
+699	0.00413355
+699.12	0.00413309
+699.24	0.00413263
+699.36	0.00413216
+699.48	0.0041317
+699.6	0.00413124
+699.72	0.00413078
+699.84	0.00413031
+699.96	0.00412985
+700.08	0.00412939
+700.2	0.00412893
+700.32	0.00412847
+700.44	0.004128
+700.56	0.00412754
+700.68	0.00412708
+700.8	0.00412662
+700.92	0.00412616
+701.04	0.0041257
+701.16	0.00412524
+701.28	0.00412478
+701.4	0.00412432
+701.52	0.00412386
+701.64	0.0041234
+701.76	0.00412294
+701.88	0.00412248
+702	0.00412202
+702.12	0.00412156
+702.24	0.0041211
+702.36	0.00412064
+702.48	0.00412018
+702.6	0.00411972
+702.72	0.00411926
+702.84	0.0041188
+702.96	0.00411834
+703.08	0.00411789
+703.2	0.00411743
+703.32	0.00411697
+703.44	0.00411651
+703.56	0.00411605
+703.68	0.0041156
+703.8	0.00411514
+703.92	0.00411468
+704.04	0.00411423
+704.16	0.00411377
+704.28	0.00411331
+704.4	0.00411285
+704.52	0.0041124
+704.64	0.00411194
+704.76	0.00411149
+704.88	0.00411103
+705	0.00411057
+705.12	0.00411012
+705.24	0.00410966
+705.36	0.00410921
+705.48	0.00410875
+705.6	0.0041083
+705.72	0.00410784
+705.84	0.00410739
+705.96	0.00410693
+706.08	0.00410648
+706.2	0.00410602
+706.32	0.00410557
+706.44	0.00410511
+706.56	0.00410466
+706.68	0.00410421
+706.8	0.00410375
+706.92	0.0041033
+707.04	0.00410284
+707.16	0.00410239
+707.28	0.00410194
+707.4	0.00410149
+707.52	0.00410103
+707.64	0.00410058
+707.76	0.00410013
+707.88	0.00409967
+708	0.00409922
+708.12	0.00409877
+708.24	0.00409832
+708.36	0.00409787
+708.48	0.00409742
+708.6	0.00409696
+708.72	0.00409651
+708.84	0.00409606
+708.96	0.00409561
+709.08	0.00409516
+709.2	0.00409471
+709.32	0.00409426
+709.44	0.00409381
+709.56	0.00409336
+709.68	0.00409291
+709.8	0.00409246
+709.92	0.00409201
+710.04	0.00409156
+710.16	0.00409111
+710.28	0.00409066
+710.4	0.00409021
+710.52	0.00408976
+710.64	0.00408931
+710.76	0.00408886
+710.88	0.00408841
+711	0.00408796
+711.12	0.00408752
+711.24	0.00408707
+711.36	0.00408662
+711.48	0.00408617
+711.6	0.00408572
+711.72	0.00408527
+711.84	0.00408483
+711.96	0.00408438
+712.08	0.00408393
+712.2	0.00408349
+712.32	0.00408304
+712.44	0.00408259
+712.56	0.00408214
+712.68	0.0040817
+712.8	0.00408125
+712.92	0.00408081
+713.04	0.00408036
+713.16	0.00407991
+713.28	0.00407947
+713.4	0.00407902
+713.52	0.00407858
+713.64	0.00407813
+713.76	0.00407769
+713.88	0.00407724
+714	0.00407679
+714.12	0.00407635
+714.24	0.00407591
+714.36	0.00407546
+714.48	0.00407502
+714.6	0.00407457
+714.72	0.00407413
+714.84	0.00407368
+714.96	0.00407324
+715.08	0.0040728
+715.2	0.00407235
+715.32	0.00407191
+715.44	0.00407147
+715.56	0.00407102
+715.68	0.00407058
+715.8	0.00407014
+715.92	0.00406969
+716.04	0.00406925
+716.16	0.00406881
+716.28	0.00406837
+716.4	0.00406792
+716.52	0.00406748
+716.64	0.00406704
+716.76	0.0040666
+716.88	0.00406616
+717	0.00406572
+717.12	0.00406527
+717.24	0.00406483
+717.36	0.00406439
+717.48	0.00406395
+717.6	0.00406351
+717.72	0.00406307
+717.84	0.00406263
+717.96	0.00406219
+718.08	0.00406175
+718.2	0.00406131
+718.32	0.00406087
+718.44	0.00406043
+718.56	0.00405999
+718.68	0.00405955
+718.8	0.00405911
+718.92	0.00405867
+719.04	0.00405823
+719.16	0.00405779
+719.28	0.00405735
+719.4	0.00405692
+719.52	0.00405648
+719.64	0.00405604
+719.76	0.0040556
+719.88	0.00405516
+720	0.00405472
+720.12	0.00405429
+720.24	0.00405385
+720.36	0.00405341
+720.48	0.00405297
+720.6	0.00405254
+720.72	0.0040521
+720.84	0.00405166
+720.96	0.00405123
+721.08	0.00405079
+721.2	0.00405035
+721.32	0.00404992
+721.44	0.00404948
+721.56	0.00404904
+721.68	0.00404861
+721.8	0.00404817
+721.92	0.00404774
+722.04	0.0040473
+722.16	0.00404686
+722.28	0.00404643
+722.4	0.00404599
+722.52	0.00404556
+722.64	0.00404512
+722.76	0.00404469
+722.88	0.00404426
+723	0.00404382
+723.12	0.00404339
+723.24	0.00404295
+723.36	0.00404252
+723.48	0.00404208
+723.6	0.00404165
+723.72	0.00404122
+723.84	0.00404078
+723.96	0.00404035
+724.08	0.00403992
+724.2	0.00403948
+724.32	0.00403905
+724.44	0.00403862
+724.56	0.00403818
+724.68	0.00403775
+724.8	0.00403732
+724.92	0.00403689
+725.04	0.00403646
+725.16	0.00403602
+725.28	0.00403559
+725.4	0.00403516
+725.52	0.00403473
+725.64	0.0040343
+725.76	0.00403387
+725.88	0.00403343
+726	0.004033
+726.12	0.00403257
+726.24	0.00403214
+726.36	0.00403171
+726.48	0.00403128
+726.6	0.00403085
+726.72	0.00403042
+726.84	0.00402999
+726.96	0.00402956
+727.08	0.00402913
+727.2	0.0040287
+727.32	0.00402827
+727.44	0.00402784
+727.56	0.00402741
+727.68	0.00402698
+727.8	0.00402655
+727.92	0.00402612
+728.04	0.0040257
+728.16	0.00402527
+728.28	0.00402484
+728.4	0.00402441
+728.52	0.00402398
+728.64	0.00402355
+728.76	0.00402313
+728.88	0.0040227
+729	0.00402227
+729.12	0.00402184
+729.24	0.00402142
+729.36	0.00402099
+729.48	0.00402056
+729.6	0.00402013
+729.72	0.00401971
+729.84	0.00401928
+729.96	0.00401885
+730.08	0.00401843
+730.2	0.004018
+730.32	0.00401758
+730.44	0.00401715
+730.56	0.00401672
+730.68	0.0040163
+730.8	0.00401587
+730.92	0.00401545
+731.04	0.00401502
+731.16	0.0040146
+731.28	0.00401417
+731.4	0.00401375
+731.52	0.00401332
+731.64	0.0040129
+731.76	0.00401247
+731.88	0.00401205
+732	0.00401162
+732.12	0.0040112
+732.24	0.00401077
+732.36	0.00401035
+732.48	0.00400993
+732.6	0.0040095
+732.72	0.00400908
+732.84	0.00400866
+732.96	0.00400823
+733.08	0.00400781
+733.2	0.00400739
+733.32	0.00400696
+733.44	0.00400654
+733.56	0.00400612
+733.68	0.0040057
+733.8	0.00400527
+733.92	0.00400485
+734.04	0.00400443
+734.16	0.00400401
+734.28	0.00400359
+734.4	0.00400316
+734.52	0.00400274
+734.64	0.00400232
+734.76	0.0040019
+734.88	0.00400148
+735	0.00400106
+735.12	0.00400064
+735.24	0.00400022
+735.36	0.0039998
+735.48	0.00399937
+735.6	0.00399895
+735.72	0.00399853
+735.84	0.00399811
+735.96	0.00399769
+736.08	0.00399727
+736.2	0.00399685
+736.32	0.00399643
+736.44	0.00399602
+736.56	0.0039956
+736.68	0.00399518
+736.8	0.00399476
+736.92	0.00399434
+737.04	0.00399392
+737.16	0.0039935
+737.28	0.00399308
+737.4	0.00399266
+737.52	0.00399225
+737.64	0.00399183
+737.76	0.00399141
+737.88	0.00399099
+738	0.00399057
+738.12	0.00399016
+738.24	0.00398974
+738.36	0.00398932
+738.48	0.00398891
+738.6	0.00398849
+738.72	0.00398807
+738.84	0.00398765
+738.96	0.00398724
+739.08	0.00398682
+739.2	0.0039864
+739.32	0.00398599
+739.44	0.00398557
+739.56	0.00398516
+739.68	0.00398474
+739.8	0.00398432
+739.92	0.00398391
+740.04	0.00398349
+740.16	0.00398308
+740.28	0.00398266
+740.4	0.00398225
+740.52	0.00398183
+740.64	0.00398142
+740.76	0.003981
+740.88	0.00398059
+741	0.00398017
+741.12	0.00397976
+741.24	0.00397934
+741.36	0.00397893
+741.48	0.00397852
+741.6	0.0039781
+741.72	0.00397769
+741.84	0.00397728
+741.96	0.00397686
+742.08	0.00397645
+742.2	0.00397604
+742.32	0.00397562
+742.44	0.00397521
+742.56	0.0039748
+742.68	0.00397438
+742.8	0.00397397
+742.92	0.00397356
+743.04	0.00397315
+743.16	0.00397273
+743.28	0.00397232
+743.4	0.00397191
+743.52	0.0039715
+743.64	0.00397109
+743.76	0.00397067
+743.88	0.00397026
+744	0.00396985
+744.12	0.00396944
+744.24	0.00396903
+744.36	0.00396862
+744.48	0.00396821
+744.6	0.0039678
+744.72	0.00396739
+744.84	0.00396698
+744.96	0.00396657
+745.08	0.00396616
+745.2	0.00396575
+745.32	0.00396534
+745.44	0.00396493
+745.56	0.00396452
+745.68	0.00396411
+745.8	0.0039637
+745.92	0.00396329
+746.04	0.00396288
+746.16	0.00396247
+746.28	0.00396206
+746.4	0.00396165
+746.52	0.00396124
+746.64	0.00396084
+746.76	0.00396043
+746.88	0.00396002
+747	0.00395961
+747.12	0.0039592
+747.24	0.00395879
+747.36	0.00395839
+747.48	0.00395798
+747.6	0.00395757
+747.72	0.00395716
+747.84	0.00395676
+747.96	0.00395635
+748.08	0.00395594
+748.2	0.00395554
+748.32	0.00395513
+748.44	0.00395472
+748.56	0.00395432
+748.68	0.00395391
+748.8	0.0039535
+748.92	0.0039531
+749.04	0.00395269
+749.16	0.00395229
+749.28	0.00395188
+749.4	0.00395147
+749.52	0.00395107
+749.64	0.00395066
+749.76	0.00395026
+749.88	0.00394985
+750	0.00394945
+750.12	0.00394904
+750.24	0.00394864
+750.36	0.00394823
+750.48	0.00394783
+750.6	0.00394742
+750.72	0.00394702
+750.84	0.00394662
+750.96	0.00394621
+751.08	0.00394581
+751.2	0.0039454
+751.32	0.003945
+751.44	0.0039446
+751.56	0.00394419
+751.68	0.00394379
+751.8	0.00394339
+751.92	0.00394298
+752.04	0.00394258
+752.16	0.00394218
+752.28	0.00394178
+752.4	0.00394137
+752.52	0.00394097
+752.64	0.00394057
+752.76	0.00394017
+752.88	0.00393976
+753	0.00393936
+753.12	0.00393896
+753.24	0.00393856
+753.36	0.00393816
+753.48	0.00393776
+753.6	0.00393735
+753.72	0.00393695
+753.84	0.00393655
+753.96	0.00393615
+754.08	0.00393575
+754.2	0.00393535
+754.32	0.00393495
+754.44	0.00393455
+754.56	0.00393415
+754.68	0.00393375
+754.8	0.00393335
+754.92	0.00393295
+755.04	0.00393255
+755.16	0.00393215
+755.28	0.00393175
+755.4	0.00393135
+755.52	0.00393095
+755.64	0.00393055
+755.76	0.00393015
+755.88	0.00392975
+756	0.00392935
+756.12	0.00392895
+756.24	0.00392856
+756.36	0.00392816
+756.48	0.00392776
+756.6	0.00392736
+756.72	0.00392696
+756.84	0.00392656
+756.96	0.00392617
+757.08	0.00392577
+757.2	0.00392537
+757.32	0.00392497
+757.44	0.00392458
+757.56	0.00392418
+757.68	0.00392378
+757.8	0.00392338
+757.92	0.00392299
+758.04	0.00392259
+758.16	0.00392219
+758.28	0.0039218
+758.4	0.0039214
+758.52	0.003921
+758.64	0.00392061
+758.76	0.00392021
+758.88	0.00391982
+759	0.00391942
+759.12	0.00391902
+759.24	0.00391863
+759.36	0.00391823
+759.48	0.00391784
+759.6	0.00391744
+759.72	0.00391705
+759.84	0.00391665
+759.96	0.00391626
+760.08	0.00391586
+760.2	0.00391547
+760.32	0.00391507
+760.44	0.00391468
+760.56	0.00391428
+760.68	0.00391389
+760.8	0.0039135
+760.92	0.0039131
+761.04	0.00391271
+761.16	0.00391232
+761.28	0.00391192
+761.4	0.00391153
+761.52	0.00391113
+761.64	0.00391074
+761.76	0.00391035
+761.88	0.00390996
+762	0.00390956
+762.12	0.00390917
+762.24	0.00390878
+762.36	0.00390838
+762.48	0.00390799
+762.6	0.0039076
+762.72	0.00390721
+762.84	0.00390682
+762.96	0.00390642
+763.08	0.00390603
+763.2	0.00390564
+763.32	0.00390525
+763.44	0.00390486
+763.56	0.00390447
+763.68	0.00390407
+763.8	0.00390368
+763.92	0.00390329
+764.04	0.0039029
+764.16	0.00390251
+764.28	0.00390212
+764.4	0.00390173
+764.52	0.00390134
+764.64	0.00390095
+764.76	0.00390056
+764.88	0.00390017
+765	0.00389978
+765.12	0.00389939
+765.24	0.003899
+765.36	0.00389861
+765.48	0.00389822
+765.6	0.00389783
+765.72	0.00389744
+765.84	0.00389705
+765.96	0.00389666
+766.08	0.00389627
+766.2	0.00389589
+766.32	0.0038955
+766.44	0.00389511
+766.56	0.00389472
+766.68	0.00389433
+766.8	0.00389394
+766.92	0.00389356
+767.04	0.00389317
+767.16	0.00389278
+767.28	0.00389239
+767.4	0.003892
+767.52	0.00389162
+767.64	0.00389123
+767.76	0.00389084
+767.88	0.00389046
+768	0.00389007
+768.12	0.00388968
+768.24	0.00388929
+768.36	0.00388891
+768.48	0.00388852
+768.6	0.00388814
+768.72	0.00388775
+768.84	0.00388736
+768.96	0.00388698
+769.08	0.00388659
+769.2	0.0038862
+769.32	0.00388582
+769.44	0.00388543
+769.56	0.00388505
+769.68	0.00388466
+769.8	0.00388428
+769.92	0.00388389
+770.04	0.00388351
+770.16	0.00388312
+770.28	0.00388274
+770.4	0.00388235
+770.52	0.00388197
+770.64	0.00388158
+770.76	0.0038812
+770.88	0.00388082
+771	0.00388043
+771.12	0.00388005
+771.24	0.00387966
+771.36	0.00387928
+771.48	0.0038789
+771.6	0.00387851
+771.72	0.00387813
+771.84	0.00387775
+771.96	0.00387736
+772.08	0.00387698
+772.2	0.0038766
+772.32	0.00387621
+772.44	0.00387583
+772.56	0.00387545
+772.68	0.00387507
+772.8	0.00387468
+772.92	0.0038743
+773.04	0.00387392
+773.16	0.00387354
+773.28	0.00387315
+773.4	0.00387277
+773.52	0.00387239
+773.64	0.00387201
+773.76	0.00387163
+773.88	0.00387125
+774	0.00387086
+774.12	0.00387048
+774.24	0.0038701
+774.36	0.00386972
+774.48	0.00386934
+774.6	0.00386896
+774.72	0.00386858
+774.84	0.0038682
+774.96	0.00386782
+775.08	0.00386744
+775.2	0.00386706
+775.32	0.00386668
+775.44	0.0038663
+775.56	0.00386592
+775.68	0.00386554
+775.8	0.00386516
+775.92	0.00386478
+776.04	0.0038644
+776.16	0.00386402
+776.28	0.00386364
+776.4	0.00386326
+776.52	0.00386288
+776.64	0.00386251
+776.76	0.00386213
+776.88	0.00386175
+777	0.00386137
+777.12	0.00386099
+777.24	0.00386061
+777.36	0.00386024
+777.48	0.00385986
+777.6	0.00385948
+777.72	0.0038591
+777.84	0.00385872
+777.96	0.00385835
+778.08	0.00385797
+778.2	0.00385759
+778.32	0.00385721
+778.44	0.00385684
+778.56	0.00385646
+778.68	0.00385608
+778.8	0.00385571
+778.92	0.00385533
+779.04	0.00385495
+779.16	0.00385458
+779.28	0.0038542
+779.4	0.00385382
+779.52	0.00385345
+779.64	0.00385307
+779.76	0.0038527
+779.88	0.00385232
+780	0.00385195
+780.12	0.00385157
+780.24	0.00385119
+780.36	0.00385082
+780.48	0.00385044
+780.6	0.00385007
+780.72	0.00384969
+780.84	0.00384932
+780.96	0.00384894
+781.08	0.00384857
+781.2	0.00384819
+781.32	0.00384782
+781.44	0.00384745
+781.56	0.00384707
+781.68	0.0038467
+781.8	0.00384632
+781.92	0.00384595
+782.04	0.00384558
+782.16	0.0038452
+782.28	0.00384483
+782.4	0.00384446
+782.52	0.00384408
+782.64	0.00384371
+782.76	0.00384334
+782.88	0.00384296
+783	0.00384259
+783.12	0.00384222
+783.24	0.00384184
+783.36	0.00384147
+783.48	0.0038411
+783.6	0.00384073
+783.72	0.00384035
+783.84	0.00383998
+783.96	0.00383961
+784.08	0.00383924
+784.2	0.00383887
+784.32	0.00383849
+784.44	0.00383812
+784.56	0.00383775
+784.68	0.00383738
+784.8	0.00383701
+784.92	0.00383664
+785.04	0.00383627
+785.16	0.0038359
+785.28	0.00383553
+785.4	0.00383515
+785.52	0.00383478
+785.64	0.00383441
+785.76	0.00383404
+785.88	0.00383367
+786	0.0038333
+786.12	0.00383293
+786.24	0.00383256
+786.36	0.00383219
+786.48	0.00383182
+786.6	0.00383145
+786.72	0.00383108
+786.84	0.00383071
+786.96	0.00383035
+787.08	0.00382998
+787.2	0.00382961
+787.32	0.00382924
+787.44	0.00382887
+787.56	0.0038285
+787.68	0.00382813
+787.8	0.00382776
+787.92	0.00382739
+788.04	0.00382703
+788.16	0.00382666
+788.28	0.00382629
+788.4	0.00382592
+788.52	0.00382555
+788.64	0.00382519
+788.76	0.00382482
+788.88	0.00382445
+789	0.00382408
+789.12	0.00382372
+789.24	0.00382335
+789.36	0.00382298
+789.48	0.00382262
+789.6	0.00382225
+789.72	0.00382188
+789.84	0.00382151
+789.96	0.00382115
+790.08	0.00382078
+790.2	0.00382042
+790.32	0.00382005
+790.44	0.00381968
+790.56	0.00381932
+790.68	0.00381895
+790.8	0.00381858
+790.92	0.00381822
+791.04	0.00381785
+791.16	0.00381749
+791.28	0.00381712
+791.4	0.00381676
+791.52	0.00381639
+791.64	0.00381603
+791.76	0.00381566
+791.88	0.0038153
+792	0.00381493
+792.12	0.00381457
+792.24	0.0038142
+792.36	0.00381384
+792.48	0.00381347
+792.6	0.00381311
+792.72	0.00381275
+792.84	0.00381238
+792.96	0.00381202
+793.08	0.00381165
+793.2	0.00381129
+793.32	0.00381093
+793.44	0.00381056
+793.56	0.0038102
+793.68	0.00380984
+793.8	0.00380947
+793.92	0.00380911
+794.04	0.00380875
+794.16	0.00380838
+794.28	0.00380802
+794.4	0.00380766
+794.52	0.0038073
+794.64	0.00380693
+794.76	0.00380657
+794.88	0.00380621
+795	0.00380585
+795.12	0.00380548
+795.24	0.00380512
+795.36	0.00380476
+795.48	0.0038044
+795.6	0.00380404
+795.72	0.00380368
+795.84	0.00380331
+795.96	0.00380295
+796.08	0.00380259
+796.2	0.00380223
+796.32	0.00380187
+796.44	0.00380151
+796.56	0.00380115
+796.68	0.00380079
+796.8	0.00380043
+796.92	0.00380007
+797.04	0.00379971
+797.16	0.00379935
+797.28	0.00379899
+797.4	0.00379863
+797.52	0.00379827
+797.64	0.00379791
+797.76	0.00379755
+797.88	0.00379719
+798	0.00379683
+798.12	0.00379647
+798.24	0.00379611
+798.36	0.00379575
+798.48	0.00379539
+798.6	0.00379503
+798.72	0.00379467
+798.84	0.00379431
+798.96	0.00379395
+799.08	0.0037936
+799.2	0.00379324
+799.32	0.00379288
+799.44	0.00379252
+799.56	0.00379216
+799.68	0.0037918
+799.8	0.00379145
+799.92	0.00379109
+800.04	0.00379073
+800.16	0.00379037
+800.28	0.00379002
+800.4	0.00378966
+800.52	0.0037893
+800.64	0.00378894
+800.76	0.00378859
+800.88	0.00378823
+801	0.00378787
+801.12	0.00378752
+801.24	0.00378716
+801.36	0.0037868
+801.48	0.00378645
+801.6	0.00378609
+801.72	0.00378573
+801.84	0.00378538
+801.96	0.00378502
+802.08	0.00378466
+802.2	0.00378431
+802.32	0.00378395
+802.44	0.0037836
+802.56	0.00378324
+802.68	0.00378289
+802.8	0.00378253
+802.92	0.00378218
+803.04	0.00378182
+803.16	0.00378147
+803.28	0.00378111
+803.4	0.00378076
+803.52	0.0037804
+803.64	0.00378005
+803.76	0.00377969
+803.88	0.00377934
+804	0.00377898
+804.12	0.00377863
+804.24	0.00377827
+804.36	0.00377792
+804.48	0.00377757
+804.6	0.00377721
+804.72	0.00377686
+804.84	0.0037765
+804.96	0.00377615
+805.08	0.0037758
+805.2	0.00377544
+805.32	0.00377509
+805.44	0.00377474
+805.56	0.00377438
+805.68	0.00377403
+805.8	0.00377368
+805.92	0.00377333
+806.04	0.00377297
+806.16	0.00377262
+806.28	0.00377227
+806.4	0.00377192
+806.52	0.00377156
+806.64	0.00377121
+806.76	0.00377086
+806.88	0.00377051
+807	0.00377016
+807.12	0.0037698
+807.24	0.00376945
+807.36	0.0037691
+807.48	0.00376875
+807.6	0.0037684
+807.72	0.00376805
+807.84	0.0037677
+807.96	0.00376734
+808.08	0.00376699
+808.2	0.00376664
+808.32	0.00376629
+808.44	0.00376594
+808.56	0.00376559
+808.68	0.00376524
+808.8	0.00376489
+808.92	0.00376454
+809.04	0.00376419
+809.16	0.00376384
+809.28	0.00376349
+809.4	0.00376314
+809.52	0.00376279
+809.64	0.00376244
+809.76	0.00376209
+809.88	0.00376174
+810	0.00376139
+810.12	0.00376104
+810.24	0.00376069
+810.36	0.00376034
+810.48	0.00376
+810.6	0.00375965
+810.72	0.0037593
+810.84	0.00375895
+810.96	0.0037586
+811.08	0.00375825
+811.2	0.0037579
+811.32	0.00375756
+811.44	0.00375721
+811.56	0.00375686
+811.68	0.00375651
+811.8	0.00375616
+811.92	0.00375582
+812.04	0.00375547
+812.16	0.00375512
+812.28	0.00375477
+812.4	0.00375443
+812.52	0.00375408
+812.64	0.00375373
+812.76	0.00375338
+812.88	0.00375304
+813	0.00375269
+813.12	0.00375234
+813.24	0.003752
+813.36	0.00375165
+813.48	0.0037513
+813.6	0.00375096
+813.72	0.00375061
+813.84	0.00375027
+813.96	0.00374992
+814.08	0.00374957
+814.2	0.00374923
+814.32	0.00374888
+814.44	0.00374854
+814.56	0.00374819
+814.68	0.00374784
+814.8	0.0037475
+814.92	0.00374715
+815.04	0.00374681
+815.16	0.00374646
+815.28	0.00374612
+815.4	0.00374577
+815.52	0.00374543
+815.64	0.00374508
+815.76	0.00374474
+815.88	0.0037444
+816	0.00374405
+816.12	0.00374371
+816.24	0.00374336
+816.36	0.00374302
+816.48	0.00374267
+816.6	0.00374233
+816.72	0.00374199
+816.84	0.00374164
+816.96	0.0037413
+817.08	0.00374096
+817.2	0.00374061
+817.32	0.00374027
+817.44	0.00373993
+817.56	0.00373958
+817.68	0.00373924
+817.8	0.0037389
+817.92	0.00373855
+818.04	0.00373821
+818.16	0.00373787
+818.28	0.00373753
+818.4	0.00373718
+818.52	0.00373684
+818.64	0.0037365
+818.76	0.00373616
+818.88	0.00373581
+819	0.00373547
+819.12	0.00373513
+819.24	0.00373479
+819.36	0.00373445
+819.48	0.0037341
+819.6	0.00373376
+819.72	0.00373342
+819.84	0.00373308
+819.96	0.00373274
+820.08	0.0037324
+820.2	0.00373206
+820.32	0.00373172
+820.44	0.00373138
+820.56	0.00373104
+820.68	0.0037307
+820.8	0.00373035
+820.92	0.00373001
+821.04	0.00372967
+821.16	0.00372933
+821.28	0.00372899
+821.4	0.00372865
+821.52	0.00372831
+821.64	0.00372797
+821.76	0.00372763
+821.88	0.0037273
+822	0.00372696
+822.12	0.00372662
+822.24	0.00372628
+822.36	0.00372594
+822.48	0.0037256
+822.6	0.00372526
+822.72	0.00372492
+822.84	0.00372458
+822.96	0.00372424
+823.08	0.0037239
+823.2	0.00372357
+823.32	0.00372323
+823.44	0.00372289
+823.56	0.00372255
+823.68	0.00372221
+823.8	0.00372188
+823.92	0.00372154
+824.04	0.0037212
+824.16	0.00372086
+824.28	0.00372052
+824.4	0.00372019
+824.52	0.00371985
+824.64	0.00371951
+824.76	0.00371917
+824.88	0.00371884
+825	0.0037185
+825.12	0.00371816
+825.24	0.00371783
+825.36	0.00371749
+825.48	0.00371715
+825.6	0.00371682
+825.72	0.00371648
+825.84	0.00371614
+825.96	0.00371581
+826.08	0.00371547
+826.2	0.00371513
+826.32	0.0037148
+826.44	0.00371446
+826.56	0.00371413
+826.68	0.00371379
+826.8	0.00371345
+826.92	0.00371312
+827.04	0.00371278
+827.16	0.00371245
+827.28	0.00371211
+827.4	0.00371178
+827.52	0.00371144
+827.64	0.00371111
+827.76	0.00371077
+827.88	0.00371044
+828	0.0037101
+828.12	0.00370977
+828.24	0.00370943
+828.36	0.0037091
+828.48	0.00370877
+828.6	0.00370843
+828.72	0.0037081
+828.84	0.00370776
+828.96	0.00370743
+829.08	0.00370709
+829.2	0.00370676
+829.32	0.00370643
+829.44	0.00370609
+829.56	0.00370576
+829.68	0.00370543
+829.8	0.00370509
+829.92	0.00370476
+830.04	0.00370443
+830.16	0.00370409
+830.28	0.00370376
+830.4	0.00370343
+830.52	0.0037031
+830.64	0.00370276
+830.76	0.00370243
+830.88	0.0037021
+831	0.00370177
+831.12	0.00370143
+831.24	0.0037011
+831.36	0.00370077
+831.48	0.00370044
+831.6	0.0037001
+831.72	0.00369977
+831.84	0.00369944
+831.96	0.00369911
+832.08	0.00369878
+832.2	0.00369845
+832.32	0.00369811
+832.44	0.00369778
+832.56	0.00369745
+832.68	0.00369712
+832.8	0.00369679
+832.92	0.00369646
+833.04	0.00369613
+833.16	0.0036958
+833.28	0.00369547
+833.4	0.00369514
+833.52	0.00369481
+833.64	0.00369448
+833.76	0.00369415
+833.88	0.00369381
+834	0.00369348
+834.12	0.00369315
+834.24	0.00369282
+834.36	0.00369249
+834.48	0.00369217
+834.6	0.00369184
+834.72	0.00369151
+834.84	0.00369118
+834.96	0.00369085
+835.08	0.00369052
+835.2	0.00369019
+835.32	0.00368986
+835.44	0.00368953
+835.56	0.0036892
+835.68	0.00368887
+835.8	0.00368854
+835.92	0.00368822
+836.04	0.00368789
+836.16	0.00368756
+836.28	0.00368723
+836.4	0.0036869
+836.52	0.00368657
+836.64	0.00368625
+836.76	0.00368592
+836.88	0.00368559
+837	0.00368526
+837.12	0.00368493
+837.24	0.00368461
+837.36	0.00368428
+837.48	0.00368395
+837.6	0.00368362
+837.72	0.0036833
+837.84	0.00368297
+837.96	0.00368264
+838.08	0.00368232
+838.2	0.00368199
+838.32	0.00368166
+838.44	0.00368133
+838.56	0.00368101
+838.68	0.00368068
+838.8	0.00368036
+838.92	0.00368003
+839.04	0.0036797
+839.16	0.00367938
+839.28	0.00367905
+839.4	0.00367872
+839.52	0.0036784
+839.64	0.00367807
+839.76	0.00367775
+839.88	0.00367742
+840	0.0036771
+840.12	0.00367677
+840.24	0.00367644
+840.36	0.00367612
+840.48	0.00367579
+840.6	0.00367547
+840.72	0.00367514
+840.84	0.00367482
+840.96	0.00367449
+841.08	0.00367417
+841.2	0.00367384
+841.32	0.00367352
+841.44	0.0036732
+841.56	0.00367287
+841.68	0.00367255
+841.8	0.00367222
+841.92	0.0036719
+842.04	0.00367157
+842.16	0.00367125
+842.28	0.00367093
+842.4	0.0036706
+842.52	0.00367028
+842.64	0.00366996
+842.76	0.00366963
+842.88	0.00366931
+843	0.00366899
+843.12	0.00366866
+843.24	0.00366834
+843.36	0.00366802
+843.48	0.00366769
+843.6	0.00366737
+843.72	0.00366705
+843.84	0.00366672
+843.96	0.0036664
+844.08	0.00366608
+844.2	0.00366576
+844.32	0.00366543
+844.44	0.00366511
+844.56	0.00366479
+844.68	0.00366447
+844.8	0.00366415
+844.92	0.00366382
+845.04	0.0036635
+845.16	0.00366318
+845.28	0.00366286
+845.4	0.00366254
+845.52	0.00366222
+845.64	0.00366189
+845.76	0.00366157
+845.88	0.00366125
+846	0.00366093
+846.12	0.00366061
+846.24	0.00366029
+846.36	0.00365997
+846.48	0.00365965
+846.6	0.00365933
+846.72	0.00365901
+846.84	0.00365869
+846.96	0.00365836
+847.08	0.00365804
+847.2	0.00365772
+847.32	0.0036574
+847.44	0.00365708
+847.56	0.00365676
+847.68	0.00365644
+847.8	0.00365612
+847.92	0.0036558
+848.04	0.00365548
+848.16	0.00365517
+848.28	0.00365485
+848.4	0.00365453
+848.52	0.00365421
+848.64	0.00365389
+848.76	0.00365357
+848.88	0.00365325
+849	0.00365293
+849.12	0.00365261
+849.24	0.00365229
+849.36	0.00365197
+849.48	0.00365166
+849.6	0.00365134
+849.72	0.00365102
+849.84	0.0036507
+849.96	0.00365038
+850.08	0.00365006
+850.2	0.00364975
+850.32	0.00364943
+850.44	0.00364911
+850.56	0.00364879
+850.68	0.00364847
+850.8	0.00364816
+850.92	0.00364784
+851.04	0.00364752
+851.16	0.0036472
+851.28	0.00364689
+851.4	0.00364657
+851.52	0.00364625
+851.64	0.00364594
+851.76	0.00364562
+851.88	0.0036453
+852	0.00364499
+852.12	0.00364467
+852.24	0.00364435
+852.36	0.00364404
+852.48	0.00364372
+852.6	0.0036434
+852.72	0.00364309
+852.84	0.00364277
+852.96	0.00364245
+853.08	0.00364214
+853.2	0.00364182
+853.32	0.00364151
+853.44	0.00364119
+853.56	0.00364088
+853.68	0.00364056
+853.8	0.00364024
+853.92	0.00363993
+854.04	0.00363961
+854.16	0.0036393
+854.28	0.00363898
+854.4	0.00363867
+854.52	0.00363835
+854.64	0.00363804
+854.76	0.00363772
+854.88	0.00363741
+855	0.00363709
+855.12	0.00363678
+855.24	0.00363647
+855.36	0.00363615
+855.48	0.00363584
+855.6	0.00363552
+855.72	0.00363521
+855.84	0.00363489
+855.96	0.00363458
+856.08	0.00363427
+856.2	0.00363395
+856.32	0.00363364
+856.44	0.00363333
+856.56	0.00363301
+856.68	0.0036327
+856.8	0.00363239
+856.92	0.00363207
+857.04	0.00363176
+857.16	0.00363145
+857.28	0.00363113
+857.4	0.00363082
+857.52	0.00363051
+857.64	0.00363019
+857.76	0.00362988
+857.88	0.00362957
+858	0.00362926
+858.12	0.00362894
+858.24	0.00362863
+858.36	0.00362832
+858.48	0.00362801
+858.6	0.0036277
+858.72	0.00362738
+858.84	0.00362707
+858.96	0.00362676
+859.08	0.00362645
+859.2	0.00362614
+859.32	0.00362582
+859.44	0.00362551
+859.56	0.0036252
+859.68	0.00362489
+859.8	0.00362458
+859.92	0.00362427
+860.04	0.00362396
+860.16	0.00362365
+860.28	0.00362334
+860.4	0.00362302
+860.52	0.00362271
+860.64	0.0036224
+860.76	0.00362209
+860.88	0.00362178
+861	0.00362147
+861.12	0.00362116
+861.24	0.00362085
+861.36	0.00362054
+861.48	0.00362023
+861.6	0.00361992
+861.72	0.00361961
+861.84	0.0036193
+861.96	0.00361899
+862.08	0.00361868
+862.2	0.00361837
+862.32	0.00361806
+862.44	0.00361775
+862.56	0.00361744
+862.68	0.00361713
+862.8	0.00361683
+862.92	0.00361652
+863.04	0.00361621
+863.16	0.0036159
+863.28	0.00361559
+863.4	0.00361528
+863.52	0.00361497
+863.64	0.00361466
+863.76	0.00361436
+863.88	0.00361405
+864	0.00361374
+864.12	0.00361343
+864.24	0.00361312
+864.36	0.00361281
+864.48	0.00361251
+864.6	0.0036122
+864.72	0.00361189
+864.84	0.00361158
+864.96	0.00361128
+865.08	0.00361097
+865.2	0.00361066
+865.32	0.00361035
+865.44	0.00361005
+865.56	0.00360974
+865.68	0.00360943
+865.8	0.00360912
+865.92	0.00360882
+866.04	0.00360851
+866.16	0.0036082
+866.28	0.0036079
+866.4	0.00360759
+866.52	0.00360728
+866.64	0.00360698
+866.76	0.00360667
+866.88	0.00360636
+867	0.00360606
+867.12	0.00360575
+867.24	0.00360545
+867.36	0.00360514
+867.48	0.00360483
+867.6	0.00360453
+867.72	0.00360422
+867.84	0.00360392
+867.96	0.00360361
+868.08	0.0036033
+868.2	0.003603
+868.32	0.00360269
+868.44	0.00360239
+868.56	0.00360208
+868.68	0.00360178
+868.8	0.00360147
+868.92	0.00360117
+869.04	0.00360086
+869.16	0.00360056
+869.28	0.00360025
+869.4	0.00359995
+869.52	0.00359965
+869.64	0.00359934
+869.76	0.00359904
+869.88	0.00359873
+870	0.00359843
+870.12	0.00359812
+870.24	0.00359782
+870.36	0.00359752
+870.48	0.00359721
+870.6	0.00359691
+870.72	0.0035966
+870.84	0.0035963
+870.96	0.003596
+871.08	0.00359569
+871.2	0.00359539
+871.32	0.00359509
+871.44	0.00359478
+871.56	0.00359448
+871.68	0.00359418
+871.8	0.00359387
+871.92	0.00359357
+872.04	0.00359327
+872.16	0.00359297
+872.28	0.00359266
+872.4	0.00359236
+872.52	0.00359206
+872.64	0.00359176
+872.76	0.00359145
+872.88	0.00359115
+873	0.00359085
+873.12	0.00359055
+873.24	0.00359024
+873.36	0.00358994
+873.48	0.00358964
+873.6	0.00358934
+873.72	0.00358904
+873.84	0.00358874
+873.96	0.00358843
+874.08	0.00358813
+874.2	0.00358783
+874.32	0.00358753
+874.44	0.00358723
+874.56	0.00358693
+874.68	0.00358663
+874.8	0.00358633
+874.92	0.00358602
+875.04	0.00358572
+875.16	0.00358542
+875.28	0.00358512
+875.4	0.00358482
+875.52	0.00358452
+875.64	0.00358422
+875.76	0.00358392
+875.88	0.00358362
+876	0.00358332
+876.12	0.00358302
+876.24	0.00358272
+876.36	0.00358242
+876.48	0.00358212
+876.6	0.00358182
+876.72	0.00358152
+876.84	0.00358122
+876.96	0.00358092
+877.08	0.00358062
+877.2	0.00358032
+877.32	0.00358002
+877.44	0.00357972
+877.56	0.00357942
+877.68	0.00357913
+877.8	0.00357883
+877.92	0.00357853
+878.04	0.00357823
+878.16	0.00357793
+878.28	0.00357763
+878.4	0.00357733
+878.52	0.00357703
+878.64	0.00357674
+878.76	0.00357644
+878.88	0.00357614
+879	0.00357584
+879.12	0.00357554
+879.24	0.00357524
+879.36	0.00357495
+879.48	0.00357465
+879.6	0.00357435
+879.72	0.00357405
+879.84	0.00357376
+879.96	0.00357346
+880.08	0.00357316
+880.2	0.00357286
+880.32	0.00357257
+880.44	0.00357227
+880.56	0.00357197
+880.68	0.00357167
+880.8	0.00357138
+880.92	0.00357108
+881.04	0.00357078
+881.16	0.00357049
+881.28	0.00357019
+881.4	0.00356989
+881.52	0.0035696
+881.64	0.0035693
+881.76	0.003569
+881.88	0.00356871
+882	0.00356841
+882.12	0.00356812
+882.24	0.00356782
+882.36	0.00356752
+882.48	0.00356723
+882.6	0.00356693
+882.72	0.00356664
+882.84	0.00356634
+882.96	0.00356604
+883.08	0.00356575
+883.2	0.00356545
+883.32	0.00356516
+883.44	0.00356486
+883.56	0.00356457
+883.68	0.00356427
+883.8	0.00356398
+883.92	0.00356368
+884.04	0.00356339
+884.16	0.00356309
+884.28	0.0035628
+884.4	0.0035625
+884.52	0.00356221
+884.64	0.00356191
+884.76	0.00356162
+884.88	0.00356132
+885	0.00356103
+885.12	0.00356074
+885.24	0.00356044
+885.36	0.00356015
+885.48	0.00355985
+885.6	0.00355956
+885.72	0.00355927
+885.84	0.00355897
+885.96	0.00355868
+886.08	0.00355838
+886.2	0.00355809
+886.32	0.0035578
+886.44	0.0035575
+886.56	0.00355721
+886.68	0.00355692
+886.8	0.00355662
+886.92	0.00355633
+887.04	0.00355604
+887.16	0.00355575
+887.28	0.00355545
+887.4	0.00355516
+887.52	0.00355487
+887.64	0.00355458
+887.76	0.00355428
+887.88	0.00355399
+888	0.0035537
+888.12	0.00355341
+888.24	0.00355311
+888.36	0.00355282
+888.48	0.00355253
+888.6	0.00355224
+888.72	0.00355194
+888.84	0.00355165
+888.96	0.00355136
+889.08	0.00355107
+889.2	0.00355078
+889.32	0.00355049
+889.44	0.0035502
+889.56	0.0035499
+889.68	0.00354961
+889.8	0.00354932
+889.92	0.00354903
+890.04	0.00354874
+890.16	0.00354845
+890.28	0.00354816
+890.4	0.00354787
+890.52	0.00354758
+890.64	0.00354728
+890.76	0.00354699
+890.88	0.0035467
+891	0.00354641
+891.12	0.00354612
+891.24	0.00354583
+891.36	0.00354554
+891.48	0.00354525
+891.6	0.00354496
+891.72	0.00354467
+891.84	0.00354438
+891.96	0.00354409
+892.08	0.0035438
+892.2	0.00354351
+892.32	0.00354322
+892.44	0.00354293
+892.56	0.00354264
+892.68	0.00354235
+892.8	0.00354206
+892.92	0.00354178
+893.04	0.00354149
+893.16	0.0035412
+893.28	0.00354091
+893.4	0.00354062
+893.52	0.00354033
+893.64	0.00354004
+893.76	0.00353975
+893.88	0.00353946
+894	0.00353918
+894.12	0.00353889
+894.24	0.0035386
+894.36	0.00353831
+894.48	0.00353802
+894.6	0.00353773
+894.72	0.00353745
+894.84	0.00353716
+894.96	0.00353687
+895.08	0.00353658
+895.2	0.00353629
+895.32	0.00353601
+895.44	0.00353572
+895.56	0.00353543
+895.68	0.00353514
+895.8	0.00353486
+895.92	0.00353457
+896.04	0.00353428
+896.16	0.00353399
+896.28	0.00353371
+896.4	0.00353342
+896.52	0.00353313
+896.64	0.00353285
+896.76	0.00353256
+896.88	0.00353227
+897	0.00353199
+897.12	0.0035317
+897.24	0.00353141
+897.36	0.00353113
+897.48	0.00353084
+897.6	0.00353055
+897.72	0.00353027
+897.84	0.00352998
+897.96	0.00352969
+898.08	0.00352941
+898.2	0.00352912
+898.32	0.00352884
+898.44	0.00352855
+898.56	0.00352826
+898.68	0.00352798
+898.8	0.00352769
+898.92	0.00352741
+899.04	0.00352712
+899.16	0.00352684
+899.28	0.00352655
+899.4	0.00352627
+899.52	0.00352598
+899.64	0.0035257
+899.76	0.00352541
+899.88	0.00352513
+900	0.00352484
+900.12	0.00352456
+900.24	0.00352427
+900.36	0.00352399
+900.48	0.0035237
+900.6	0.00352342
+900.72	0.00352313
+900.84	0.00352285
+900.96	0.00352257
+901.08	0.00352228
+901.2	0.003522
+901.32	0.00352171
+901.44	0.00352143
+901.56	0.00352114
+901.68	0.00352086
+901.8	0.00352058
+901.92	0.00352029
+902.04	0.00352001
+902.16	0.00351973
+902.28	0.00351944
+902.4	0.00351916
+902.52	0.00351888
+902.64	0.00351859
+902.76	0.00351831
+902.88	0.00351803
+903	0.00351774
+903.12	0.00351746
+903.24	0.00351718
+903.36	0.00351689
+903.48	0.00351661
+903.6	0.00351633
+903.72	0.00351605
+903.84	0.00351576
+903.96	0.00351548
+904.08	0.0035152
+904.2	0.00351492
+904.32	0.00351463
+904.44	0.00351435
+904.56	0.00351407
+904.68	0.00351379
+904.8	0.00351351
+904.92	0.00351322
+905.04	0.00351294
+905.16	0.00351266
+905.28	0.00351238
+905.4	0.0035121
+905.52	0.00351182
+905.64	0.00351154
+905.76	0.00351125
+905.88	0.00351097
+906	0.00351069
+906.12	0.00351041
+906.24	0.00351013
+906.36	0.00350985
+906.48	0.00350957
+906.6	0.00350929
+906.72	0.00350901
+906.84	0.00350872
+906.96	0.00350844
+907.08	0.00350816
+907.2	0.00350788
+907.32	0.0035076
+907.44	0.00350732
+907.56	0.00350704
+907.68	0.00350676
+907.8	0.00350648
+907.92	0.0035062
+908.04	0.00350592
+908.16	0.00350564
+908.28	0.00350536
+908.4	0.00350508
+908.52	0.0035048
+908.64	0.00350452
+908.76	0.00350424
+908.88	0.00350396
+909	0.00350368
+909.12	0.0035034
+909.24	0.00350313
+909.36	0.00350285
+909.48	0.00350257
+909.6	0.00350229
+909.72	0.00350201
+909.84	0.00350173
+909.96	0.00350145
+910.08	0.00350117
+910.2	0.00350089
+910.32	0.00350062
+910.44	0.00350034
+910.56	0.00350006
+910.68	0.00349978
+910.8	0.0034995
+910.92	0.00349922
+911.04	0.00349895
+911.16	0.00349867
+911.28	0.00349839
+911.4	0.00349811
+911.52	0.00349783
+911.64	0.00349756
+911.76	0.00349728
+911.88	0.003497
+912	0.00349672
+912.12	0.00349644
+912.24	0.00349617
+912.36	0.00349589
+912.48	0.00349561
+912.6	0.00349533
+912.72	0.00349506
+912.84	0.00349478
+912.96	0.0034945
+913.08	0.00349423
+913.2	0.00349395
+913.32	0.00349367
+913.44	0.0034934
+913.56	0.00349312
+913.68	0.00349284
+913.8	0.00349257
+913.92	0.00349229
+914.04	0.00349201
+914.16	0.00349174
+914.28	0.00349146
+914.4	0.00349118
+914.52	0.00349091
+914.64	0.00349063
+914.76	0.00349036
+914.88	0.00349008
+915	0.0034898
+915.12	0.00348953
+915.24	0.00348925
+915.36	0.00348898
+915.48	0.0034887
+915.6	0.00348843
+915.72	0.00348815
+915.84	0.00348787
+915.96	0.0034876
+916.08	0.00348732
+916.2	0.00348705
+916.32	0.00348677
+916.44	0.0034865
+916.56	0.00348622
+916.68	0.00348595
+916.8	0.00348567
+916.92	0.0034854
+917.04	0.00348513
+917.16	0.00348485
+917.28	0.00348458
+917.4	0.0034843
+917.52	0.00348403
+917.64	0.00348375
+917.76	0.00348348
+917.88	0.0034832
+918	0.00348293
+918.12	0.00348266
+918.24	0.00348238
+918.36	0.00348211
+918.48	0.00348183
+918.6	0.00348156
+918.72	0.00348129
+918.84	0.00348101
+918.96	0.00348074
+919.08	0.00348047
+919.2	0.00348019
+919.32	0.00347992
+919.44	0.00347965
+919.56	0.00347937
+919.68	0.0034791
+919.8	0.00347883
+919.92	0.00347855
+920.04	0.00347828
+920.16	0.00347801
+920.28	0.00347773
+920.4	0.00347746
+920.52	0.00347719
+920.64	0.00347692
+920.76	0.00347664
+920.88	0.00347637
+921	0.0034761
+921.12	0.00347583
+921.24	0.00347556
+921.36	0.00347528
+921.48	0.00347501
+921.6	0.00347474
+921.72	0.00347447
+921.84	0.00347419
+921.96	0.00347392
+922.08	0.00347365
+922.2	0.00347338
+922.32	0.00347311
+922.44	0.00347284
+922.56	0.00347256
+922.68	0.00347229
+922.8	0.00347202
+922.92	0.00347175
+923.04	0.00347148
+923.16	0.00347121
+923.28	0.00347094
+923.4	0.00347067
+923.52	0.0034704
+923.64	0.00347012
+923.76	0.00346985
+923.88	0.00346958
+924	0.00346931
+924.12	0.00346904
+924.24	0.00346877
+924.36	0.0034685
+924.48	0.00346823
+924.6	0.00346796
+924.72	0.00346769
+924.84	0.00346742
+924.96	0.00346715
+925.08	0.00346688
+925.2	0.00346661
+925.32	0.00346634
+925.44	0.00346607
+925.56	0.0034658
+925.68	0.00346553
+925.8	0.00346526
+925.92	0.00346499
+926.04	0.00346472
+926.16	0.00346445
+926.28	0.00346418
+926.4	0.00346391
+926.52	0.00346364
+926.64	0.00346337
+926.76	0.00346311
+926.88	0.00346284
+927	0.00346257
+927.12	0.0034623
+927.24	0.00346203
+927.36	0.00346176
+927.48	0.00346149
+927.6	0.00346122
+927.72	0.00346096
+927.84	0.00346069
+927.96	0.00346042
+928.08	0.00346015
+928.2	0.00345988
+928.32	0.00345961
+928.44	0.00345935
+928.56	0.00345908
+928.68	0.00345881
+928.8	0.00345854
+928.92	0.00345827
+929.04	0.00345801
+929.16	0.00345774
+929.28	0.00345747
+929.4	0.0034572
+929.52	0.00345693
+929.64	0.00345667
+929.76	0.0034564
+929.88	0.00345613
+930	0.00345587
+930.12	0.0034556
+930.24	0.00345533
+930.36	0.00345506
+930.48	0.0034548
+930.6	0.00345453
+930.72	0.00345426
+930.84	0.003454
+930.96	0.00345373
+931.08	0.00345346
+931.2	0.0034532
+931.32	0.00345293
+931.44	0.00345266
+931.56	0.0034524
+931.68	0.00345213
+931.8	0.00345186
+931.92	0.0034516
+932.04	0.00345133
+932.16	0.00345107
+932.28	0.0034508
+932.4	0.00345053
+932.52	0.00345027
+932.64	0.00345
+932.76	0.00344974
+932.88	0.00344947
+933	0.0034492
+933.12	0.00344894
+933.24	0.00344867
+933.36	0.00344841
+933.48	0.00344814
+933.6	0.00344788
+933.72	0.00344761
+933.84	0.00344735
+933.96	0.00344708
+934.08	0.00344682
+934.2	0.00344655
+934.32	0.00344629
+934.44	0.00344602
+934.56	0.00344576
+934.68	0.00344549
+934.8	0.00344523
+934.92	0.00344496
+935.04	0.0034447
+935.16	0.00344443
+935.28	0.00344417
+935.4	0.00344391
+935.52	0.00344364
+935.64	0.00344338
+935.76	0.00344311
+935.88	0.00344285
+936	0.00344259
+936.12	0.00344232
+936.24	0.00344206
+936.36	0.00344179
+936.48	0.00344153
+936.6	0.00344127
+936.72	0.003441
+936.84	0.00344074
+936.96	0.00344048
+937.08	0.00344021
+937.2	0.00343995
+937.32	0.00343969
+937.44	0.00343942
+937.56	0.00343916
+937.68	0.0034389
+937.8	0.00343863
+937.92	0.00343837
+938.04	0.00343811
+938.16	0.00343785
+938.28	0.00343758
+938.4	0.00343732
+938.52	0.00343706
+938.64	0.0034368
+938.76	0.00343653
+938.88	0.00343627
+939	0.00343601
+939.12	0.00343575
+939.24	0.00343548
+939.36	0.00343522
+939.48	0.00343496
+939.6	0.0034347
+939.72	0.00343444
+939.84	0.00343417
+939.96	0.00343391
+940.08	0.00343365
+940.2	0.00343339
+940.32	0.00343313
+940.44	0.00343287
+940.56	0.0034326
+940.68	0.00343234
+940.8	0.00343208
+940.92	0.00343182
+941.04	0.00343156
+941.16	0.0034313
+941.28	0.00343104
+941.4	0.00343078
+941.52	0.00343051
+941.64	0.00343025
+941.76	0.00342999
+941.88	0.00342973
+942	0.00342947
+942.12	0.00342921
+942.24	0.00342895
+942.36	0.00342869
+942.48	0.00342843
+942.6	0.00342817
+942.72	0.00342791
+942.84	0.00342765
+942.96	0.00342739
+943.08	0.00342713
+943.2	0.00342687
+943.32	0.00342661
+943.44	0.00342635
+943.56	0.00342609
+943.68	0.00342583
+943.8	0.00342557
+943.92	0.00342531
+944.04	0.00342505
+944.16	0.00342479
+944.28	0.00342453
+944.4	0.00342427
+944.52	0.00342401
+944.64	0.00342375
+944.76	0.00342349
+944.88	0.00342323
+945	0.00342297
+945.12	0.00342272
+945.24	0.00342246
+945.36	0.0034222
+945.48	0.00342194
+945.6	0.00342168
+945.72	0.00342142
+945.84	0.00342116
+945.96	0.0034209
+946.08	0.00342065
+946.2	0.00342039
+946.32	0.00342013
+946.44	0.00341987
+946.56	0.00341961
+946.68	0.00341935
+946.8	0.0034191
+946.92	0.00341884
+947.04	0.00341858
+947.16	0.00341832
+947.28	0.00341806
+947.4	0.00341781
+947.52	0.00341755
+947.64	0.00341729
+947.76	0.00341703
+947.88	0.00341678
+948	0.00341652
+948.12	0.00341626
+948.24	0.003416
+948.36	0.00341575
+948.48	0.00341549
+948.6	0.00341523
+948.72	0.00341497
+948.84	0.00341472
+948.96	0.00341446
+949.08	0.0034142
+949.2	0.00341395
+949.32	0.00341369
+949.44	0.00341343
+949.56	0.00341318
+949.68	0.00341292
+949.8	0.00341266
+949.92	0.00341241
+950.04	0.00341215
+950.16	0.00341189
+950.28	0.00341164
+950.4	0.00341138
+950.52	0.00341112
+950.64	0.00341087
+950.76	0.00341061
+950.88	0.00341036
+951	0.0034101
+951.12	0.00340985
+951.24	0.00340959
+951.36	0.00340933
+951.48	0.00340908
+951.6	0.00340882
+951.72	0.00340857
+951.84	0.00340831
+951.96	0.00340806
+952.08	0.0034078
+952.2	0.00340755
+952.32	0.00340729
+952.44	0.00340703
+952.56	0.00340678
+952.68	0.00340652
+952.8	0.00340627
+952.92	0.00340601
+953.04	0.00340576
+953.16	0.00340551
+953.28	0.00340525
+953.4	0.003405
+953.52	0.00340474
+953.64	0.00340449
+953.76	0.00340423
+953.88	0.00340398
+954	0.00340372
+954.12	0.00340347
+954.24	0.00340321
+954.36	0.00340296
+954.48	0.00340271
+954.6	0.00340245
+954.72	0.0034022
+954.84	0.00340194
+954.96	0.00340169
+955.08	0.00340144
+955.2	0.00340118
+955.32	0.00340093
+955.44	0.00340068
+955.56	0.00340042
+955.68	0.00340017
+955.8	0.00339992
+955.92	0.00339966
+956.04	0.00339941
+956.16	0.00339916
+956.28	0.0033989
+956.4	0.00339865
+956.52	0.0033984
+956.64	0.00339814
+956.76	0.00339789
+956.88	0.00339764
+957	0.00339738
+957.12	0.00339713
+957.24	0.00339688
+957.36	0.00339663
+957.48	0.00339637
+957.6	0.00339612
+957.72	0.00339587
+957.84	0.00339562
+957.96	0.00339536
+958.08	0.00339511
+958.2	0.00339486
+958.32	0.00339461
+958.44	0.00339436
+958.56	0.0033941
+958.68	0.00339385
+958.8	0.0033936
+958.92	0.00339335
+959.04	0.0033931
+959.16	0.00339284
+959.28	0.00339259
+959.4	0.00339234
+959.52	0.00339209
+959.64	0.00339184
+959.76	0.00339159
+959.88	0.00339134
+960	0.00339108
+960.12	0.00339083
+960.24	0.00339058
+960.36	0.00339033
+960.48	0.00339008
+960.6	0.00338983
+960.72	0.00338958
+960.84	0.00338933
+960.96	0.00338908
+961.08	0.00338883
+961.2	0.00338858
+961.32	0.00338832
+961.44	0.00338807
+961.56	0.00338782
+961.68	0.00338757
+961.8	0.00338732
+961.92	0.00338707
+962.04	0.00338682
+962.16	0.00338657
+962.28	0.00338632
+962.4	0.00338607
+962.52	0.00338582
+962.64	0.00338557
+962.76	0.00338532
+962.88	0.00338507
+963	0.00338482
+963.12	0.00338457
+963.24	0.00338432
+963.36	0.00338407
+963.48	0.00338382
+963.6	0.00338358
+963.72	0.00338333
+963.84	0.00338308
+963.96	0.00338283
+964.08	0.00338258
+964.2	0.00338233
+964.32	0.00338208
+964.44	0.00338183
+964.56	0.00338158
+964.68	0.00338133
+964.8	0.00338108
+964.92	0.00338084
+965.04	0.00338059
+965.16	0.00338034
+965.28	0.00338009
+965.4	0.00337984
+965.52	0.00337959
+965.64	0.00337934
+965.76	0.0033791
+965.88	0.00337885
+966	0.0033786
+966.12	0.00337835
+966.24	0.0033781
+966.36	0.00337785
+966.48	0.00337761
+966.6	0.00337736
+966.72	0.00337711
+966.84	0.00337686
+966.96	0.00337662
+967.08	0.00337637
+967.2	0.00337612
+967.32	0.00337587
+967.44	0.00337563
+967.56	0.00337538
+967.68	0.00337513
+967.8	0.00337488
+967.92	0.00337464
+968.04	0.00337439
+968.16	0.00337414
+968.28	0.00337389
+968.4	0.00337365
+968.52	0.0033734
+968.64	0.00337315
+968.76	0.00337291
+968.88	0.00337266
+969	0.00337241
+969.12	0.00337217
+969.24	0.00337192
+969.36	0.00337167
+969.48	0.00337143
+969.6	0.00337118
+969.72	0.00337093
+969.84	0.00337069
+969.96	0.00337044
+970.08	0.0033702
+970.2	0.00336995
+970.32	0.0033697
+970.44	0.00336946
+970.56	0.00336921
+970.68	0.00336896
+970.8	0.00336872
+970.92	0.00336847
+971.04	0.00336823
+971.16	0.00336798
+971.28	0.00336774
+971.4	0.00336749
+971.52	0.00336725
+971.64	0.003367
+971.76	0.00336675
+971.88	0.00336651
+972	0.00336626
+972.12	0.00336602
+972.24	0.00336577
+972.36	0.00336553
+972.48	0.00336528
+972.6	0.00336504
+972.72	0.00336479
+972.84	0.00336455
+972.96	0.0033643
+973.08	0.00336406
+973.2	0.00336381
+973.32	0.00336357
+973.44	0.00336333
+973.56	0.00336308
+973.68	0.00336284
+973.8	0.00336259
+973.92	0.00336235
+974.04	0.0033621
+974.16	0.00336186
+974.28	0.00336162
+974.4	0.00336137
+974.52	0.00336113
+974.64	0.00336088
+974.76	0.00336064
+974.88	0.0033604
+975	0.00336015
+975.12	0.00335991
+975.24	0.00335966
+975.36	0.00335942
+975.48	0.00335918
+975.6	0.00335893
+975.72	0.00335869
+975.84	0.00335845
+975.96	0.0033582
+976.08	0.00335796
+976.2	0.00335772
+976.32	0.00335747
+976.44	0.00335723
+976.56	0.00335699
+976.68	0.00335675
+976.8	0.0033565
+976.92	0.00335626
+977.04	0.00335602
+977.16	0.00335577
+977.28	0.00335553
+977.4	0.00335529
+977.52	0.00335505
+977.64	0.0033548
+977.76	0.00335456
+977.88	0.00335432
+978	0.00335408
+978.12	0.00335383
+978.24	0.00335359
+978.36	0.00335335
+978.48	0.00335311
+978.6	0.00335287
+978.72	0.00335262
+978.84	0.00335238
+978.96	0.00335214
+979.08	0.0033519
+979.2	0.00335166
+979.32	0.00335141
+979.44	0.00335117
+979.56	0.00335093
+979.68	0.00335069
+979.8	0.00335045
+979.92	0.00335021
+980.04	0.00334997
+980.16	0.00334972
+980.28	0.00334948
+980.4	0.00334924
+980.52	0.003349
+980.64	0.00334876
+980.76	0.00334852
+980.88	0.00334828
+981	0.00334804
+981.12	0.0033478
+981.24	0.00334756
+981.36	0.00334731
+981.48	0.00334707
+981.6	0.00334683
+981.72	0.00334659
+981.84	0.00334635
+981.96	0.00334611
+982.08	0.00334587
+982.2	0.00334563
+982.32	0.00334539
+982.44	0.00334515
+982.56	0.00334491
+982.68	0.00334467
+982.8	0.00334443
+982.92	0.00334419
+983.04	0.00334395
+983.16	0.00334371
+983.28	0.00334347
+983.4	0.00334323
+983.52	0.00334299
+983.64	0.00334275
+983.76	0.00334251
+983.88	0.00334227
+984	0.00334203
+984.12	0.00334179
+984.24	0.00334156
+984.36	0.00334132
+984.48	0.00334108
+984.6	0.00334084
+984.72	0.0033406
+984.84	0.00334036
+984.96	0.00334012
+985.08	0.00333988
+985.2	0.00333964
+985.32	0.0033394
+985.44	0.00333917
+985.56	0.00333893
+985.68	0.00333869
+985.8	0.00333845
+985.92	0.00333821
+986.04	0.00333797
+986.16	0.00333773
+986.28	0.0033375
+986.4	0.00333726
+986.52	0.00333702
+986.64	0.00333678
+986.76	0.00333654
+986.88	0.0033363
+987	0.00333607
+987.12	0.00333583
+987.24	0.00333559
+987.36	0.00333535
+987.48	0.00333511
+987.6	0.00333488
+987.72	0.00333464
+987.84	0.0033344
+987.96	0.00333416
+988.08	0.00333393
+988.2	0.00333369
+988.32	0.00333345
+988.44	0.00333321
+988.56	0.00333298
+988.68	0.00333274
+988.8	0.0033325
+988.92	0.00333227
+989.04	0.00333203
+989.16	0.00333179
+989.28	0.00333155
+989.4	0.00333132
+989.52	0.00333108
+989.64	0.00333084
+989.76	0.00333061
+989.88	0.00333037
+990	0.00333013
+990.12	0.0033299
+990.24	0.00332966
+990.36	0.00332942
+990.48	0.00332919
+990.6	0.00332895
+990.72	0.00332872
+990.84	0.00332848
+990.96	0.00332824
+991.08	0.00332801
+991.2	0.00332777
+991.32	0.00332754
+991.44	0.0033273
+991.56	0.00332706
+991.68	0.00332683
+991.8	0.00332659
+991.92	0.00332636
+992.04	0.00332612
+992.16	0.00332588
+992.28	0.00332565
+992.4	0.00332541
+992.52	0.00332518
+992.64	0.00332494
+992.76	0.00332471
+992.88	0.00332447
+993	0.00332424
+993.12	0.003324
+993.24	0.00332377
+993.36	0.00332353
+993.48	0.0033233
+993.6	0.00332306
+993.72	0.00332283
+993.84	0.00332259
+993.96	0.00332236
+994.08	0.00332212
+994.2	0.00332189
+994.32	0.00332165
+994.44	0.00332142
+994.56	0.00332118
+994.68	0.00332095
+994.8	0.00332072
+994.92	0.00332048
+995.04	0.00332025
+995.16	0.00332001
+995.28	0.00331978
+995.4	0.00331954
+995.52	0.00331931
+995.64	0.00331908
+995.76	0.00331884
+995.88	0.00331861
+996	0.00331837
+996.12	0.00331814
+996.24	0.00331791
+996.36	0.00331767
+996.48	0.00331744
+996.6	0.00331721
+996.72	0.00331697
+996.84	0.00331674
+996.96	0.00331651
+997.08	0.00331627
+997.2	0.00331604
+997.32	0.00331581
+997.44	0.00331557
+997.56	0.00331534
+997.68	0.00331511
+997.8	0.00331487
+997.92	0.00331464
+998.04	0.00331441
+998.16	0.00331417
+998.28	0.00331394
+998.4	0.00331371
+998.52	0.00331348
+998.64	0.00331324
+998.76	0.00331301
+998.88	0.00331278
+999	0.00331255
+999.12	0.00331231
+999.24	0.00331208
+999.36	0.00331185
+999.48	0.00331162
+999.6	0.00331138
+999.72	0.00331115
+999.84	0.00331092
+999.96	0.00331069
+1000.08	0.00331046
+1000.2	0.00331022
+1000.32	0.00330999
+1000.44	0.00330976
+1000.56	0.00330953
+1000.68	0.0033093
+1000.8	0.00330907
+1000.92	0.00330883
+1001.04	0.0033086
+1001.16	0.00330837
+1001.28	0.00330814
+1001.4	0.00330791
+1001.52	0.00330768
+1001.64	0.00330745
+1001.76	0.00330721
+1001.88	0.00330698
+1002	0.00330675
+1002.12	0.00330652
+1002.24	0.00330629
+1002.36	0.00330606
+1002.48	0.00330583
+1002.6	0.0033056
+1002.72	0.00330537
+1002.84	0.00330514
+1002.96	0.00330491
+1003.08	0.00330467
+1003.2	0.00330444
+1003.32	0.00330421
+1003.44	0.00330398
+1003.56	0.00330375
+1003.68	0.00330352
+1003.8	0.00330329
+1003.92	0.00330306
+1004.04	0.00330283
+1004.16	0.0033026
+1004.28	0.00330237
+1004.4	0.00330214
+1004.52	0.00330191
+1004.64	0.00330168
+1004.76	0.00330145
+1004.88	0.00330122
+1005	0.00330099
+1005.12	0.00330076
+1005.24	0.00330053
+1005.36	0.0033003
+1005.48	0.00330007
+1005.6	0.00329984
+1005.72	0.00329961
+1005.84	0.00329939
+1005.96	0.00329916
+1006.08	0.00329893
+1006.2	0.0032987
+1006.32	0.00329847
+1006.44	0.00329824
+1006.56	0.00329801
+1006.68	0.00329778
+1006.8	0.00329755
+1006.92	0.00329732
+1007.04	0.00329709
+1007.16	0.00329687
+1007.28	0.00329664
+1007.4	0.00329641
+1007.52	0.00329618
+1007.64	0.00329595
+1007.76	0.00329572
+1007.88	0.00329549
+1008	0.00329527
+1008.12	0.00329504
+1008.24	0.00329481
+1008.36	0.00329458
+1008.48	0.00329435
+1008.6	0.00329412
+1008.72	0.0032939
+1008.84	0.00329367
+1008.96	0.00329344
+1009.08	0.00329321
+1009.2	0.00329298
+1009.32	0.00329276
+1009.44	0.00329253
+1009.56	0.0032923
+1009.68	0.00329207
+1009.8	0.00329185
+1009.92	0.00329162
+1010.04	0.00329139
+1010.16	0.00329116
+1010.28	0.00329094
+1010.4	0.00329071
+1010.52	0.00329048
+1010.64	0.00329025
+1010.76	0.00329003
+1010.88	0.0032898
+1011	0.00328957
+1011.12	0.00328934
+1011.24	0.00328912
+1011.36	0.00328889
+1011.48	0.00328866
+1011.6	0.00328844
+1011.72	0.00328821
+1011.84	0.00328798
+1011.96	0.00328776
+1012.08	0.00328753
+1012.2	0.0032873
+1012.32	0.00328708
+1012.44	0.00328685
+1012.56	0.00328662
+1012.68	0.0032864
+1012.8	0.00328617
+1012.92	0.00328595
+1013.04	0.00328572
+1013.16	0.00328549
+1013.28	0.00328527
+1013.4	0.00328504
+1013.52	0.00328482
+1013.64	0.00328459
+1013.76	0.00328436
+1013.88	0.00328414
+1014	0.00328391
+1014.12	0.00328369
+1014.24	0.00328346
+1014.36	0.00328323
+1014.48	0.00328301
+1014.6	0.00328278
+1014.72	0.00328256
+1014.84	0.00328233
+1014.96	0.00328211
+1015.08	0.00328188
+1015.2	0.00328166
+1015.32	0.00328143
+1015.44	0.00328121
+1015.56	0.00328098
+1015.68	0.00328076
+1015.8	0.00328053
+1015.92	0.00328031
+1016.04	0.00328008
+1016.16	0.00327986
+1016.28	0.00327963
+1016.4	0.00327941
+1016.52	0.00327918
+1016.64	0.00327896
+1016.76	0.00327873
+1016.88	0.00327851
+1017	0.00327828
+1017.12	0.00327806
+1017.24	0.00327784
+1017.36	0.00327761
+1017.48	0.00327739
+1017.6	0.00327716
+1017.72	0.00327694
+1017.84	0.00327671
+1017.96	0.00327649
+1018.08	0.00327627
+1018.2	0.00327604
+1018.32	0.00327582
+1018.44	0.00327559
+1018.56	0.00327537
+1018.68	0.00327515
+1018.8	0.00327492
+1018.92	0.0032747
+1019.04	0.00327448
+1019.16	0.00327425
+1019.28	0.00327403
+1019.4	0.00327381
+1019.52	0.00327358
+1019.64	0.00327336
+1019.76	0.00327314
+1019.88	0.00327291
+1020	0.00327269
+1020.12	0.00327247
+1020.24	0.00327224
+1020.36	0.00327202
+1020.48	0.0032718
+1020.6	0.00327157
+1020.72	0.00327135
+1020.84	0.00327113
+1020.96	0.0032709
+1021.08	0.00327068
+1021.2	0.00327046
+1021.32	0.00327024
+1021.44	0.00327001
+1021.56	0.00326979
+1021.68	0.00326957
+1021.8	0.00326935
+1021.92	0.00326912
+1022.04	0.0032689
+1022.16	0.00326868
+1022.28	0.00326846
+1022.4	0.00326824
+1022.52	0.00326801
+1022.64	0.00326779
+1022.76	0.00326757
+1022.88	0.00326735
+1023	0.00326713
+1023.12	0.0032669
+1023.24	0.00326668
+1023.36	0.00326646
+1023.48	0.00326624
+1023.6	0.00326602
+1023.72	0.0032658
+1023.84	0.00326557
+1023.96	0.00326535
+1024.08	0.00326513
+1024.2	0.00326491
+1024.32	0.00326469
+1024.44	0.00326447
+1024.56	0.00326425
+1024.68	0.00326402
+1024.8	0.0032638
+1024.92	0.00326358
+1025.04	0.00326336
+1025.16	0.00326314
+1025.28	0.00326292
+1025.4	0.0032627
+1025.52	0.00326248
+1025.64	0.00326226
+1025.76	0.00326204
+1025.88	0.00326181
+1026	0.00326159
+1026.12	0.00326137
+1026.24	0.00326115
+1026.36	0.00326093
+1026.48	0.00326071
+1026.6	0.00326049
+1026.72	0.00326027
+1026.84	0.00326005
+1026.96	0.00325983
+1027.08	0.00325961
+1027.2	0.00325939
+1027.32	0.00325917
+1027.44	0.00325895
+1027.56	0.00325873
+1027.68	0.00325851
+1027.8	0.00325829
+1027.92	0.00325807
+1028.04	0.00325785
+1028.16	0.00325763
+1028.28	0.00325741
+1028.4	0.00325719
+1028.52	0.00325697
+1028.64	0.00325675
+1028.76	0.00325653
+1028.88	0.00325631
+1029	0.00325609
+1029.12	0.00325588
+1029.24	0.00325566
+1029.36	0.00325544
+1029.48	0.00325522
+1029.6	0.003255
+1029.72	0.00325478
+1029.84	0.00325456
+1029.96	0.00325434
+1030.08	0.00325412
+1030.2	0.0032539
+1030.32	0.00325368
+1030.44	0.00325347
+1030.56	0.00325325
+1030.68	0.00325303
+1030.8	0.00325281
+1030.92	0.00325259
+1031.04	0.00325237
+1031.16	0.00325215
+1031.28	0.00325194
+1031.4	0.00325172
+1031.52	0.0032515
+1031.64	0.00325128
+1031.76	0.00325106
+1031.88	0.00325084
+1032	0.00325063
+1032.12	0.00325041
+1032.24	0.00325019
+1032.36	0.00324997
+1032.48	0.00324975
+1032.6	0.00324954
+1032.72	0.00324932
+1032.84	0.0032491
+1032.96	0.00324888
+1033.08	0.00324867
+1033.2	0.00324845
+1033.32	0.00324823
+1033.44	0.00324801
+1033.56	0.00324779
+1033.68	0.00324758
+1033.8	0.00324736
+1033.92	0.00324714
+1034.04	0.00324693
+1034.16	0.00324671
+1034.28	0.00324649
+1034.4	0.00324627
+1034.52	0.00324606
+1034.64	0.00324584
+1034.76	0.00324562
+1034.88	0.00324541
+1035	0.00324519
+1035.12	0.00324497
+1035.24	0.00324476
+1035.36	0.00324454
+1035.48	0.00324432
+1035.6	0.00324411
+1035.72	0.00324389
+1035.84	0.00324367
+1035.96	0.00324346
+1036.08	0.00324324
+1036.2	0.00324302
+1036.32	0.00324281
+1036.44	0.00324259
+1036.56	0.00324237
+1036.68	0.00324216
+1036.8	0.00324194
+1036.92	0.00324173
+1037.04	0.00324151
+1037.16	0.00324129
+1037.28	0.00324108
+1037.4	0.00324086
+1037.52	0.00324065
+1037.64	0.00324043
+1037.76	0.00324021
+1037.88	0.00324
+1038	0.00323978
+1038.12	0.00323957
+1038.24	0.00323935
+1038.36	0.00323914
+1038.48	0.00323892
+1038.6	0.0032387
+1038.72	0.00323849
+1038.84	0.00323827
+1038.96	0.00323806
+1039.08	0.00323784
+1039.2	0.00323763
+1039.32	0.00323741
+1039.44	0.0032372
+1039.56	0.00323698
+1039.68	0.00323677
+1039.8	0.00323655
+1039.92	0.00323634
+1040.04	0.00323612
+1040.16	0.00323591
+1040.28	0.00323569
+1040.4	0.00323548
+1040.52	0.00323526
+1040.64	0.00323505
+1040.76	0.00323484
+1040.88	0.00323462
+1041	0.00323441
+1041.12	0.00323419
+1041.24	0.00323398
+1041.36	0.00323376
+1041.48	0.00323355
+1041.6	0.00323334
+1041.72	0.00323312
+1041.84	0.00323291
+1041.96	0.00323269
+1042.08	0.00323248
+1042.2	0.00323226
+1042.32	0.00323205
+1042.44	0.00323184
+1042.56	0.00323162
+1042.68	0.00323141
+1042.8	0.0032312
+1042.92	0.00323098
+1043.04	0.00323077
+1043.16	0.00323055
+1043.28	0.00323034
+1043.4	0.00323013
+1043.52	0.00322991
+1043.64	0.0032297
+1043.76	0.00322949
+1043.88	0.00322927
+1044	0.00322906
+1044.12	0.00322885
+1044.24	0.00322863
+1044.36	0.00322842
+1044.48	0.00322821
+1044.6	0.003228
+1044.72	0.00322778
+1044.84	0.00322757
+1044.96	0.00322736
+1045.08	0.00322714
+1045.2	0.00322693
+1045.32	0.00322672
+1045.44	0.00322651
+1045.56	0.00322629
+1045.68	0.00322608
+1045.8	0.00322587
+1045.92	0.00322566
+1046.04	0.00322544
+1046.16	0.00322523
+1046.28	0.00322502
+1046.4	0.00322481
+1046.52	0.00322459
+1046.64	0.00322438
+1046.76	0.00322417
+1046.88	0.00322396
+1047	0.00322375
+1047.12	0.00322353
+1047.24	0.00322332
+1047.36	0.00322311
+1047.48	0.0032229
+1047.6	0.00322269
+1047.72	0.00322247
+1047.84	0.00322226
+1047.96	0.00322205
+1048.08	0.00322184
+1048.2	0.00322163
+1048.32	0.00322142
+1048.44	0.0032212
+1048.56	0.00322099
+1048.68	0.00322078
+1048.8	0.00322057
+1048.92	0.00322036
+1049.04	0.00322015
+1049.16	0.00321994
+1049.28	0.00321973
+1049.4	0.00321951
+1049.52	0.0032193
+1049.64	0.00321909
+1049.76	0.00321888
+1049.88	0.00321867
+1050	0.00321846
+1050.12	0.00321825
+1050.24	0.00321804
+1050.36	0.00321783
+1050.48	0.00321762
+1050.6	0.00321741
+1050.72	0.0032172
+1050.84	0.00321699
+1050.96	0.00321677
+1051.08	0.00321656
+1051.2	0.00321635
+1051.32	0.00321614
+1051.44	0.00321593
+1051.56	0.00321572
+1051.68	0.00321551
+1051.8	0.0032153
+1051.92	0.00321509
+1052.04	0.00321488
+1052.16	0.00321467
+1052.28	0.00321446
+1052.4	0.00321425
+1052.52	0.00321404
+1052.64	0.00321383
+1052.76	0.00321362
+1052.88	0.00321341
+1053	0.0032132
+1053.12	0.00321299
+1053.24	0.00321278
+1053.36	0.00321258
+1053.48	0.00321237
+1053.6	0.00321216
+1053.72	0.00321195
+1053.84	0.00321174
+1053.96	0.00321153
+1054.08	0.00321132
+1054.2	0.00321111
+1054.32	0.0032109
+1054.44	0.00321069
+1054.56	0.00321048
+1054.68	0.00321027
+1054.8	0.00321006
+1054.92	0.00320986
+1055.04	0.00320965
+1055.16	0.00320944
+1055.28	0.00320923
+1055.4	0.00320902
+1055.52	0.00320881
+1055.64	0.0032086
+1055.76	0.00320839
+1055.88	0.00320819
+1056	0.00320798
+1056.12	0.00320777
+1056.24	0.00320756
+1056.36	0.00320735
+1056.48	0.00320714
+1056.6	0.00320694
+1056.72	0.00320673
+1056.84	0.00320652
+1056.96	0.00320631
+1057.08	0.0032061
+1057.2	0.00320589
+1057.32	0.00320569
+1057.44	0.00320548
+1057.56	0.00320527
+1057.68	0.00320506
+1057.8	0.00320485
+1057.92	0.00320465
+1058.04	0.00320444
+1058.16	0.00320423
+1058.28	0.00320402
+1058.4	0.00320382
+1058.52	0.00320361
+1058.64	0.0032034
+1058.76	0.00320319
+1058.88	0.00320299
+1059	0.00320278
+1059.12	0.00320257
+1059.24	0.00320236
+1059.36	0.00320216
+1059.48	0.00320195
+1059.6	0.00320174
+1059.72	0.00320154
+1059.84	0.00320133
+1059.96	0.00320112
+1060.08	0.00320092
+1060.2	0.00320071
+1060.32	0.0032005
+1060.44	0.00320029
+1060.56	0.00320009
+1060.68	0.00319988
+1060.8	0.00319967
+1060.92	0.00319947
+1061.04	0.00319926
+1061.16	0.00319905
+1061.28	0.00319885
+1061.4	0.00319864
+1061.52	0.00319844
+1061.64	0.00319823
+1061.76	0.00319802
+1061.88	0.00319782
+1062	0.00319761
+1062.12	0.0031974
+1062.24	0.0031972
+1062.36	0.00319699
+1062.48	0.00319679
+1062.6	0.00319658
+1062.72	0.00319637
+1062.84	0.00319617
+1062.96	0.00319596
+1063.08	0.00319576
+1063.2	0.00319555
+1063.32	0.00319535
+1063.44	0.00319514
+1063.56	0.00319493
+1063.68	0.00319473
+1063.8	0.00319452
+1063.92	0.00319432
+1064.04	0.00319411
+1064.16	0.00319391
+1064.28	0.0031937
+1064.4	0.0031935
+1064.52	0.00319329
+1064.64	0.00319309
+1064.76	0.00319288
+1064.88	0.00319268
+1065	0.00319247
+1065.12	0.00319227
+1065.24	0.00319206
+1065.36	0.00319186
+1065.48	0.00319165
+1065.6	0.00319145
+1065.72	0.00319124
+1065.84	0.00319104
+1065.96	0.00319083
+1066.08	0.00319063
+1066.2	0.00319042
+1066.32	0.00319022
+1066.44	0.00319001
+1066.56	0.00318981
+1066.68	0.0031896
+1066.8	0.0031894
+1066.92	0.0031892
+1067.04	0.00318899
+1067.16	0.00318879
+1067.28	0.00318858
+1067.4	0.00318838
+1067.52	0.00318817
+1067.64	0.00318797
+1067.76	0.00318777
+1067.88	0.00318756
+1068	0.00318736
+1068.12	0.00318715
+1068.24	0.00318695
+1068.36	0.00318675
+1068.48	0.00318654
+1068.6	0.00318634
+1068.72	0.00318614
+1068.84	0.00318593
+1068.96	0.00318573
+1069.08	0.00318553
+1069.2	0.00318532
+1069.32	0.00318512
+1069.44	0.00318491
+1069.56	0.00318471
+1069.68	0.00318451
+1069.8	0.0031843
+1069.92	0.0031841
+1070.04	0.0031839
+1070.16	0.0031837
+1070.28	0.00318349
+1070.4	0.00318329
+1070.52	0.00318309
+1070.64	0.00318288
+1070.76	0.00318268
+1070.88	0.00318248
+1071	0.00318227
+1071.12	0.00318207
+1071.24	0.00318187
+1071.36	0.00318167
+1071.48	0.00318146
+1071.6	0.00318126
+1071.72	0.00318106
+1071.84	0.00318086
+1071.96	0.00318065
+1072.08	0.00318045
+1072.2	0.00318025
+1072.32	0.00318005
+1072.44	0.00317984
+1072.56	0.00317964
+1072.68	0.00317944
+1072.8	0.00317924
+1072.92	0.00317904
+1073.04	0.00317883
+1073.16	0.00317863
+1073.28	0.00317843
+1073.4	0.00317823
+1073.52	0.00317803
+1073.64	0.00317782
+1073.76	0.00317762
+1073.88	0.00317742
+1074	0.00317722
+1074.12	0.00317702
+1074.24	0.00317682
+1074.36	0.00317661
+1074.48	0.00317641
+1074.6	0.00317621
+1074.72	0.00317601
+1074.84	0.00317581
+1074.96	0.00317561
+1075.08	0.00317541
+1075.2	0.0031752
+1075.32	0.003175
+1075.44	0.0031748
+1075.56	0.0031746
+1075.68	0.0031744
+1075.8	0.0031742
+1075.92	0.003174
+1076.04	0.0031738
+1076.16	0.0031736
+1076.28	0.0031734
+1076.4	0.00317319
+1076.52	0.00317299
+1076.64	0.00317279
+1076.76	0.00317259
+1076.88	0.00317239
+1077	0.00317219
+1077.12	0.00317199
+1077.24	0.00317179
+1077.36	0.00317159
+1077.48	0.00317139
+1077.6	0.00317119
+1077.72	0.00317099
+1077.84	0.00317079
+1077.96	0.00317059
+1078.08	0.00317039
+1078.2	0.00317019
+1078.32	0.00316999
+1078.44	0.00316979
+1078.56	0.00316959
+1078.68	0.00316939
+1078.8	0.00316919
+1078.92	0.00316899
+1079.04	0.00316879
+1079.16	0.00316859
+1079.28	0.00316839
+1079.4	0.00316819
+1079.52	0.00316799
+1079.64	0.00316779
+1079.76	0.00316759
+1079.88	0.00316739
+1080	0.00316719
+1080.12	0.00316699
+1080.24	0.00316679
+1080.36	0.00316659
+1080.48	0.00316639
+1080.6	0.00316619
+1080.72	0.00316599
+1080.84	0.0031658
+1080.96	0.0031656
+1081.08	0.0031654
+1081.2	0.0031652
+1081.32	0.003165
+1081.44	0.0031648
+1081.56	0.0031646
+1081.68	0.0031644
+1081.8	0.0031642
+1081.92	0.003164
+1082.04	0.00316381
+1082.16	0.00316361
+1082.28	0.00316341
+1082.4	0.00316321
+1082.52	0.00316301
+1082.64	0.00316281
+1082.76	0.00316261
+1082.88	0.00316242
+1083	0.00316222
+1083.12	0.00316202
+1083.24	0.00316182
+1083.36	0.00316162
+1083.48	0.00316142
+1083.6	0.00316123
+1083.72	0.00316103
+1083.84	0.00316083
+1083.96	0.00316063
+1084.08	0.00316043
+1084.2	0.00316024
+1084.32	0.00316004
+1084.44	0.00315984
+1084.56	0.00315964
+1084.68	0.00315944
+1084.8	0.00315925
+1084.92	0.00315905
+1085.04	0.00315885
+1085.16	0.00315865
+1085.28	0.00315846
+1085.4	0.00315826
+1085.52	0.00315806
+1085.64	0.00315786
+1085.76	0.00315767
+1085.88	0.00315747
+1086	0.00315727
+1086.12	0.00315707
+1086.24	0.00315688
+1086.36	0.00315668
+1086.48	0.00315648
+1086.6	0.00315628
+1086.72	0.00315609
+1086.84	0.00315589
+1086.96	0.00315569
+1087.08	0.0031555
+1087.2	0.0031553
+1087.32	0.0031551
+1087.44	0.00315491
+1087.56	0.00315471
+1087.68	0.00315451
+1087.8	0.00315432
+1087.92	0.00315412
+1088.04	0.00315392
+1088.16	0.00315373
+1088.28	0.00315353
+1088.4	0.00315333
+1088.52	0.00315314
+1088.64	0.00315294
+1088.76	0.00315274
+1088.88	0.00315255
+1089	0.00315235
+1089.12	0.00315216
+1089.24	0.00315196
+1089.36	0.00315176
+1089.48	0.00315157
+1089.6	0.00315137
+1089.72	0.00315117
+1089.84	0.00315098
+1089.96	0.00315078
+1090.08	0.00315059
+1090.2	0.00315039
+1090.32	0.0031502
+1090.44	0.00315
+1090.56	0.0031498
+1090.68	0.00314961
+1090.8	0.00314941
+1090.92	0.00314922
+1091.04	0.00314902
+1091.16	0.00314883
+1091.28	0.00314863
+1091.4	0.00314844
+1091.52	0.00314824
+1091.64	0.00314804
+1091.76	0.00314785
+1091.88	0.00314765
+1092	0.00314746
+1092.12	0.00314726
+1092.24	0.00314707
+1092.36	0.00314687
+1092.48	0.00314668
+1092.6	0.00314648
+1092.72	0.00314629
+1092.84	0.00314609
+1092.96	0.0031459
+1093.08	0.0031457
+1093.2	0.00314551
+1093.32	0.00314531
+1093.44	0.00314512
+1093.56	0.00314493
+1093.68	0.00314473
+1093.8	0.00314454
+1093.92	0.00314434
+1094.04	0.00314415
+1094.16	0.00314395
+1094.28	0.00314376
+1094.4	0.00314356
+1094.52	0.00314337
+1094.64	0.00314318
+1094.76	0.00314298
+1094.88	0.00314279
+1095	0.00314259
+1095.12	0.0031424
+1095.24	0.00314221
+1095.36	0.00314201
+1095.48	0.00314182
+1095.6	0.00314162
+1095.72	0.00314143
+1095.84	0.00314124
+1095.96	0.00314104
+1096.08	0.00314085
+1096.2	0.00314065
+1096.32	0.00314046
+1096.44	0.00314027
+1096.56	0.00314007
+1096.68	0.00313988
+1096.8	0.00313969
+1096.92	0.00313949
+1097.04	0.0031393
+1097.16	0.00313911
+1097.28	0.00313891
+1097.4	0.00313872
+1097.52	0.00313853
+1097.64	0.00313833
+1097.76	0.00313814
+1097.88	0.00313795
+1098	0.00313775
+1098.12	0.00313756
+1098.24	0.00313737
+1098.36	0.00313718
+1098.48	0.00313698
+1098.6	0.00313679
+1098.72	0.0031366
+1098.84	0.0031364
+1098.96	0.00313621
+1099.08	0.00313602
+1099.2	0.00313583
+1099.32	0.00313563
+1099.44	0.00313544
+1099.56	0.00313525
+1099.68	0.00313506
+1099.8	0.00313486
+1099.92	0.00313467
+1100.04	0.00313448
+1100.16	0.00313429
+1100.28	0.00313409
+1100.4	0.0031339
+1100.52	0.00313371
+1100.64	0.00313352
+1100.76	0.00313333
+1100.88	0.00313313
+1101	0.00313294
+1101.12	0.00313275
+1101.24	0.00313256
+1101.36	0.00313237
+1101.48	0.00313217
+1101.6	0.00313198
+1101.72	0.00313179
+1101.84	0.0031316
+1101.96	0.00313141
+1102.08	0.00313122
+1102.2	0.00313102
+1102.32	0.00313083
+1102.44	0.00313064
+1102.56	0.00313045
+1102.68	0.00313026
+1102.8	0.00313007
+1102.92	0.00312987
+1103.04	0.00312968
+1103.16	0.00312949
+1103.28	0.0031293
+1103.4	0.00312911
+1103.52	0.00312892
+1103.64	0.00312873
+1103.76	0.00312854
+1103.88	0.00312835
+1104	0.00312815
+1104.12	0.00312796
+1104.24	0.00312777
+1104.36	0.00312758
+1104.48	0.00312739
+1104.6	0.0031272
+1104.72	0.00312701
+1104.84	0.00312682
+1104.96	0.00312663
+1105.08	0.00312644
+1105.2	0.00312625
+1105.32	0.00312606
+1105.44	0.00312587
+1105.56	0.00312568
+1105.68	0.00312548
+1105.8	0.00312529
+1105.92	0.0031251
+1106.04	0.00312491
+1106.16	0.00312472
+1106.28	0.00312453
+1106.4	0.00312434
+1106.52	0.00312415
+1106.64	0.00312396
+1106.76	0.00312377
+1106.88	0.00312358
+1107	0.00312339
+1107.12	0.0031232
+1107.24	0.00312301
+1107.36	0.00312282
+1107.48	0.00312263
+1107.6	0.00312244
+1107.72	0.00312225
+1107.84	0.00312206
+1107.96	0.00312187
+1108.08	0.00312168
+1108.2	0.0031215
+1108.32	0.00312131
+1108.44	0.00312112
+1108.56	0.00312093
+1108.68	0.00312074
+1108.8	0.00312055
+1108.92	0.00312036
+1109.04	0.00312017
+1109.16	0.00311998
+1109.28	0.00311979
+1109.4	0.0031196
+1109.52	0.00311941
+1109.64	0.00311922
+1109.76	0.00311903
+1109.88	0.00311885
+1110	0.00311866
+1110.12	0.00311847
+1110.24	0.00311828
+1110.36	0.00311809
+1110.48	0.0031179
+1110.6	0.00311771
+1110.72	0.00311752
+1110.84	0.00311733
+1110.96	0.00311715
+1111.08	0.00311696
+1111.2	0.00311677
+1111.32	0.00311658
+1111.44	0.00311639
+1111.56	0.0031162
+1111.68	0.00311602
+1111.8	0.00311583
+1111.92	0.00311564
+1112.04	0.00311545
+1112.16	0.00311526
+1112.28	0.00311507
+1112.4	0.00311489
+1112.52	0.0031147
+1112.64	0.00311451
+1112.76	0.00311432
+1112.88	0.00311413
+1113	0.00311395
+1113.12	0.00311376
+1113.24	0.00311357
+1113.36	0.00311338
+1113.48	0.00311319
+1113.6	0.00311301
+1113.72	0.00311282
+1113.84	0.00311263
+1113.96	0.00311244
+1114.08	0.00311226
+1114.2	0.00311207
+1114.32	0.00311188
+1114.44	0.00311169
+1114.56	0.00311151
+1114.68	0.00311132
+1114.8	0.00311113
+1114.92	0.00311094
+1115.04	0.00311076
+1115.16	0.00311057
+1115.28	0.00311038
+1115.4	0.00311019
+1115.52	0.00311001
+1115.64	0.00310982
+1115.76	0.00310963
+1115.88	0.00310945
+1116	0.00310926
+1116.12	0.00310907
+1116.24	0.00310889
+1116.36	0.0031087
+1116.48	0.00310851
+1116.6	0.00310833
+1116.72	0.00310814
+1116.84	0.00310795
+1116.96	0.00310777
+1117.08	0.00310758
+1117.2	0.00310739
+1117.32	0.00310721
+1117.44	0.00310702
+1117.56	0.00310683
+1117.68	0.00310665
+1117.8	0.00310646
+1117.92	0.00310627
+1118.04	0.00310609
+1118.16	0.0031059
+1118.28	0.00310571
+1118.4	0.00310553
+1118.52	0.00310534
+1118.64	0.00310516
+1118.76	0.00310497
+1118.88	0.00310478
+1119	0.0031046
+1119.12	0.00310441
+1119.24	0.00310423
+1119.36	0.00310404
+1119.48	0.00310385
+1119.6	0.00310367
+1119.72	0.00310348
+1119.84	0.0031033
+1119.96	0.00310311
+1120.08	0.00310293
+1120.2	0.00310274
+1120.32	0.00310256
+1120.44	0.00310237
+1120.56	0.00310218
+1120.68	0.003102
+1120.8	0.00310181
+1120.92	0.00310163
+1121.04	0.00310144
+1121.16	0.00310126
+1121.28	0.00310107
+1121.4	0.00310089
+1121.52	0.0031007
+1121.64	0.00310052
+1121.76	0.00310033
+1121.88	0.00310015
+1122	0.00309996
+1122.12	0.00309978
+1122.24	0.00309959
+1122.36	0.00309941
+1122.48	0.00309922
+1122.6	0.00309904
+1122.72	0.00309885
+1122.84	0.00309867
+1122.96	0.00309848
+1123.08	0.0030983
+1123.2	0.00309811
+1123.32	0.00309793
+1123.44	0.00309774
+1123.56	0.00309756
+1123.68	0.00309738
+1123.8	0.00309719
+1123.92	0.00309701
+1124.04	0.00309682
+1124.16	0.00309664
+1124.28	0.00309645
+1124.4	0.00309627
+1124.52	0.00309609
+1124.64	0.0030959
+1124.76	0.00309572
+1124.88	0.00309553
+1125	0.00309535
+1125.12	0.00309517
+1125.24	0.00309498
+1125.36	0.0030948
+1125.48	0.00309461
+1125.6	0.00309443
+1125.72	0.00309425
+1125.84	0.00309406
+1125.96	0.00309388
+1126.08	0.0030937
+1126.2	0.00309351
+1126.32	0.00309333
+1126.44	0.00309314
+1126.56	0.00309296
+1126.68	0.00309278
+1126.8	0.00309259
+1126.92	0.00309241
+1127.04	0.00309223
+1127.16	0.00309204
+1127.28	0.00309186
+1127.4	0.00309168
+1127.52	0.00309149
+1127.64	0.00309131
+1127.76	0.00309113
+1127.88	0.00309094
+1128	0.00309076
+1128.12	0.00309058
+1128.24	0.0030904
+1128.36	0.00309021
+1128.48	0.00309003
+1128.6	0.00308985
+1128.72	0.00308966
+1128.84	0.00308948
+1128.96	0.0030893
+1129.08	0.00308912
+1129.2	0.00308893
+1129.32	0.00308875
+1129.44	0.00308857
+1129.56	0.00308839
+1129.68	0.0030882
+1129.8	0.00308802
+1129.92	0.00308784
+1130.04	0.00308766
+1130.16	0.00308747
+1130.28	0.00308729
+1130.4	0.00308711
+1130.52	0.00308693
+1130.64	0.00308674
+1130.76	0.00308656
+1130.88	0.00308638
+1131	0.0030862
+1131.12	0.00308602
+1131.24	0.00308583
+1131.36	0.00308565
+1131.48	0.00308547
+1131.6	0.00308529
+1131.72	0.00308511
+1131.84	0.00308492
+1131.96	0.00308474
+1132.08	0.00308456
+1132.2	0.00308438
+1132.32	0.0030842
+1132.44	0.00308402
+1132.56	0.00308383
+1132.68	0.00308365
+1132.8	0.00308347
+1132.92	0.00308329
+1133.04	0.00308311
+1133.16	0.00308293
+1133.28	0.00308275
+1133.4	0.00308256
+1133.52	0.00308238
+1133.64	0.0030822
+1133.76	0.00308202
+1133.88	0.00308184
+1134	0.00308166
+1134.12	0.00308148
+1134.24	0.0030813
+1134.36	0.00308111
+1134.48	0.00308093
+1134.6	0.00308075
+1134.72	0.00308057
+1134.84	0.00308039
+1134.96	0.00308021
+1135.08	0.00308003
+1135.2	0.00307985
+1135.32	0.00307967
+1135.44	0.00307949
+1135.56	0.00307931
+1135.68	0.00307913
+1135.8	0.00307895
+1135.92	0.00307876
+1136.04	0.00307858
+1136.16	0.0030784
+1136.28	0.00307822
+1136.4	0.00307804
+1136.52	0.00307786
+1136.64	0.00307768
+1136.76	0.0030775
+1136.88	0.00307732
+1137	0.00307714
+1137.12	0.00307696
+1137.24	0.00307678
+1137.36	0.0030766
+1137.48	0.00307642
+1137.6	0.00307624
+1137.72	0.00307606
+1137.84	0.00307588
+1137.96	0.0030757
+1138.08	0.00307552
+1138.2	0.00307534
+1138.32	0.00307516
+1138.44	0.00307498
+1138.56	0.0030748
+1138.68	0.00307462
+1138.8	0.00307444
+1138.92	0.00307426
+1139.04	0.00307408
+1139.16	0.0030739
+1139.28	0.00307372
+1139.4	0.00307355
+1139.52	0.00307337
+1139.64	0.00307319
+1139.76	0.00307301
+1139.88	0.00307283
+1140	0.00307265
+1140.12	0.00307247
+1140.24	0.00307229
+1140.36	0.00307211
+1140.48	0.00307193
+1140.6	0.00307175
+1140.72	0.00307157
+1140.84	0.00307139
+1140.96	0.00307122
+1141.08	0.00307104
+1141.2	0.00307086
+1141.32	0.00307068
+1141.44	0.0030705
+1141.56	0.00307032
+1141.68	0.00307014
+1141.8	0.00306996
+1141.92	0.00306979
+1142.04	0.00306961
+1142.16	0.00306943
+1142.28	0.00306925
+1142.4	0.00306907
+1142.52	0.00306889
+1142.64	0.00306871
+1142.76	0.00306854
+1142.88	0.00306836
+1143	0.00306818
+1143.12	0.003068
+1143.24	0.00306782
+1143.36	0.00306764
+1143.48	0.00306747
+1143.6	0.00306729
+1143.72	0.00306711
+1143.84	0.00306693
+1143.96	0.00306675
+1144.08	0.00306658
+1144.2	0.0030664
+1144.32	0.00306622
+1144.44	0.00306604
+1144.56	0.00306586
+1144.68	0.00306569
+1144.8	0.00306551
+1144.92	0.00306533
+1145.04	0.00306515
+1145.16	0.00306498
+1145.28	0.0030648
+1145.4	0.00306462
+1145.52	0.00306444
+1145.64	0.00306427
+1145.76	0.00306409
+1145.88	0.00306391
+1146	0.00306373
+1146.12	0.00306356
+1146.24	0.00306338
+1146.36	0.0030632
+1146.48	0.00306302
+1146.6	0.00306285
+1146.72	0.00306267
+1146.84	0.00306249
+1146.96	0.00306231
+1147.08	0.00306214
+1147.2	0.00306196
+1147.32	0.00306178
+1147.44	0.00306161
+1147.56	0.00306143
+1147.68	0.00306125
+1147.8	0.00306108
+1147.92	0.0030609
+1148.04	0.00306072
+1148.16	0.00306055
+1148.28	0.00306037
+1148.4	0.00306019
+1148.52	0.00306002
+1148.64	0.00305984
+1148.76	0.00305966
+1148.88	0.00305949
+1149	0.00305931
+1149.12	0.00305913
+1149.24	0.00305896
+1149.36	0.00305878
+1149.48	0.0030586
+1149.6	0.00305843
+1149.72	0.00305825
+1149.84	0.00305808
+1149.96	0.0030579
+1150.08	0.00305772
+1150.2	0.00305755
+1150.32	0.00305737
+1150.44	0.00305719
+1150.56	0.00305702
+1150.68	0.00305684
+1150.8	0.00305667
+1150.92	0.00305649
+1151.04	0.00305631
+1151.16	0.00305614
+1151.28	0.00305596
+1151.4	0.00305579
+1151.52	0.00305561
+1151.64	0.00305544
+1151.76	0.00305526
+1151.88	0.00305508
+1152	0.00305491
+1152.12	0.00305473
+1152.24	0.00305456
+1152.36	0.00305438
+1152.48	0.00305421
+1152.6	0.00305403
+1152.72	0.00305386
+1152.84	0.00305368
+1152.96	0.00305351
+1153.08	0.00305333
+1153.2	0.00305316
+1153.32	0.00305298
+1153.44	0.0030528
+1153.56	0.00305263
+1153.68	0.00305245
+1153.8	0.00305228
+1153.92	0.0030521
+1154.04	0.00305193
+1154.16	0.00305175
+1154.28	0.00305158
+1154.4	0.0030514
+1154.52	0.00305123
+1154.64	0.00305106
+1154.76	0.00305088
+1154.88	0.00305071
+1155	0.00305053
+1155.12	0.00305036
+1155.24	0.00305018
+1155.36	0.00305001
+1155.48	0.00304983
+1155.6	0.00304966
+1155.72	0.00304948
+1155.84	0.00304931
+1155.96	0.00304914
+1156.08	0.00304896
+1156.2	0.00304879
+1156.32	0.00304861
+1156.44	0.00304844
+1156.56	0.00304826
+1156.68	0.00304809
+1156.8	0.00304792
+1156.92	0.00304774
+1157.04	0.00304757
+1157.16	0.00304739
+1157.28	0.00304722
+1157.4	0.00304705
+1157.52	0.00304687
+1157.64	0.0030467
+1157.76	0.00304652
+1157.88	0.00304635
+1158	0.00304618
+1158.12	0.003046
+1158.24	0.00304583
+1158.36	0.00304565
+1158.48	0.00304548
+1158.6	0.00304531
+1158.72	0.00304513
+1158.84	0.00304496
+1158.96	0.00304479
+1159.08	0.00304461
+1159.2	0.00304444
+1159.32	0.00304427
+1159.44	0.00304409
+1159.56	0.00304392
+1159.68	0.00304375
+1159.8	0.00304357
+1159.92	0.0030434
+1160.04	0.00304323
+1160.16	0.00304305
+1160.28	0.00304288
+1160.4	0.00304271
+1160.52	0.00304253
+1160.64	0.00304236
+1160.76	0.00304219
+1160.88	0.00304202
+1161	0.00304184
+1161.12	0.00304167
+1161.24	0.0030415
+1161.36	0.00304132
+1161.48	0.00304115
+1161.6	0.00304098
+1161.72	0.00304081
+1161.84	0.00304063
+1161.96	0.00304046
+1162.08	0.00304029
+1162.2	0.00304012
+1162.32	0.00303994
+1162.44	0.00303977
+1162.56	0.0030396
+1162.68	0.00303943
+1162.8	0.00303925
+1162.92	0.00303908
+1163.04	0.00303891
+1163.16	0.00303874
+1163.28	0.00303856
+1163.4	0.00303839
+1163.52	0.00303822
+1163.64	0.00303805
+1163.76	0.00303788
+1163.88	0.0030377
+1164	0.00303753
+1164.12	0.00303736
+1164.24	0.00303719
+1164.36	0.00303702
+1164.48	0.00303684
+1164.6	0.00303667
+1164.72	0.0030365
+1164.84	0.00303633
+1164.96	0.00303616
+1165.08	0.00303599
+1165.2	0.00303581
+1165.32	0.00303564
+1165.44	0.00303547
+1165.56	0.0030353
+1165.68	0.00303513
+1165.8	0.00303496
+1165.92	0.00303478
+1166.04	0.00303461
+1166.16	0.00303444
+1166.28	0.00303427
+1166.4	0.0030341
+1166.52	0.00303393
+1166.64	0.00303376
+1166.76	0.00303358
+1166.88	0.00303341
+1167	0.00303324
+1167.12	0.00303307
+1167.24	0.0030329
+1167.36	0.00303273
+1167.48	0.00303256
+1167.6	0.00303239
+1167.72	0.00303222
+1167.84	0.00303205
+1167.96	0.00303187
+1168.08	0.0030317
+1168.2	0.00303153
+1168.32	0.00303136
+1168.44	0.00303119
+1168.56	0.00303102
+1168.68	0.00303085
+1168.8	0.00303068
+1168.92	0.00303051
+1169.04	0.00303034
+1169.16	0.00303017
+1169.28	0.00303
+1169.4	0.00302983
+1169.52	0.00302966
+1169.64	0.00302949
+1169.76	0.00302932
+1169.88	0.00302915
+1170	0.00302898
+1170.12	0.00302881
+1170.24	0.00302864
+1170.36	0.00302846
+1170.48	0.00302829
+1170.6	0.00302812
+1170.72	0.00302795
+1170.84	0.00302778
+1170.96	0.00302761
+1171.08	0.00302744
+1171.2	0.00302727
+1171.32	0.0030271
+1171.44	0.00302693
+1171.56	0.00302677
+1171.68	0.0030266
+1171.8	0.00302643
+1171.92	0.00302626
+1172.04	0.00302609
+1172.16	0.00302592
+1172.28	0.00302575
+1172.4	0.00302558
+1172.52	0.00302541
+1172.64	0.00302524
+1172.76	0.00302507
+1172.88	0.0030249
+1173	0.00302473
+1173.12	0.00302456
+1173.24	0.00302439
+1173.36	0.00302422
+1173.48	0.00302405
+1173.6	0.00302388
+1173.72	0.00302371
+1173.84	0.00302354
+1173.96	0.00302338
+1174.08	0.00302321
+1174.2	0.00302304
+1174.32	0.00302287
+1174.44	0.0030227
+1174.56	0.00302253
+1174.68	0.00302236
+1174.8	0.00302219
+1174.92	0.00302202
+1175.04	0.00302186
+1175.16	0.00302169
+1175.28	0.00302152
+1175.4	0.00302135
+1175.52	0.00302118
+1175.64	0.00302101
+1175.76	0.00302084
+1175.88	0.00302067
+1176	0.00302051
+1176.12	0.00302034
+1176.24	0.00302017
+1176.36	0.00302
+1176.48	0.00301983
+1176.6	0.00301966
+1176.72	0.0030195
+1176.84	0.00301933
+1176.96	0.00301916
+1177.08	0.00301899
+1177.2	0.00301882
+1177.32	0.00301865
+1177.44	0.00301849
+1177.56	0.00301832
+1177.68	0.00301815
+1177.8	0.00301798
+1177.92	0.00301781
+1178.04	0.00301765
+1178.16	0.00301748
+1178.28	0.00301731
+1178.4	0.00301714
+1178.52	0.00301697
+1178.64	0.00301681
+1178.76	0.00301664
+1178.88	0.00301647
+1179	0.0030163
+1179.12	0.00301614
+1179.24	0.00301597
+1179.36	0.0030158
+1179.48	0.00301563
+1179.6	0.00301547
+1179.72	0.0030153
+1179.84	0.00301513
+1179.96	0.00301496
+1180.08	0.0030148
+1180.2	0.00301463
+1180.32	0.00301446
+1180.44	0.00301429
+1180.56	0.00301413
+1180.68	0.00301396
+1180.8	0.00301379
+1180.92	0.00301362
+1181.04	0.00301346
+1181.16	0.00301329
+1181.28	0.00301312
+1181.4	0.00301296
+1181.52	0.00301279
+1181.64	0.00301262
+1181.76	0.00301246
+1181.88	0.00301229
+1182	0.00301212
+1182.12	0.00301195
+1182.24	0.00301179
+1182.36	0.00301162
+1182.48	0.00301145
+1182.6	0.00301129
+1182.72	0.00301112
+1182.84	0.00301095
+1182.96	0.00301079
+1183.08	0.00301062
+1183.2	0.00301045
+1183.32	0.00301029
+1183.44	0.00301012
+1183.56	0.00300996
+1183.68	0.00300979
+1183.8	0.00300962
+1183.92	0.00300946
+1184.04	0.00300929
+1184.16	0.00300912
+1184.28	0.00300896
+1184.4	0.00300879
+1184.52	0.00300863
+1184.64	0.00300846
+1184.76	0.00300829
+1184.88	0.00300813
+1185	0.00300796
+1185.12	0.00300779
+1185.24	0.00300763
+1185.36	0.00300746
+1185.48	0.0030073
+1185.6	0.00300713
+1185.72	0.00300697
+1185.84	0.0030068
+1185.96	0.00300663
+1186.08	0.00300647
+1186.2	0.0030063
+1186.32	0.00300614
+1186.44	0.00300597
+1186.56	0.00300581
+1186.68	0.00300564
+1186.8	0.00300547
+1186.92	0.00300531
+1187.04	0.00300514
+1187.16	0.00300498
+1187.28	0.00300481
+1187.4	0.00300465
+1187.52	0.00300448
+1187.64	0.00300432
+1187.76	0.00300415
+1187.88	0.00300399
+1188	0.00300382
+1188.12	0.00300366
+1188.24	0.00300349
+1188.36	0.00300333
+1188.48	0.00300316
+1188.6	0.003003
+1188.72	0.00300283
+1188.84	0.00300267
+1188.96	0.0030025
+1189.08	0.00300234
+1189.2	0.00300217
+1189.32	0.00300201
+1189.44	0.00300184
+1189.56	0.00300168
+1189.68	0.00300151
+1189.8	0.00300135
+1189.92	0.00300118
+1190.04	0.00300102
+1190.16	0.00300085
+1190.28	0.00300069
+1190.4	0.00300052
+1190.52	0.00300036
+1190.64	0.0030002
+1190.76	0.00300003
+1190.88	0.00299987
+1191	0.0029997
+1191.12	0.00299954
+1191.24	0.00299937
+1191.36	0.00299921
+1191.48	0.00299905
+1191.6	0.00299888
+1191.72	0.00299872
+1191.84	0.00299855
+1191.96	0.00299839
+1192.08	0.00299822
+1192.2	0.00299806
+1192.32	0.0029979
+1192.44	0.00299773
+1192.56	0.00299757
+1192.68	0.0029974
+1192.8	0.00299724
+1192.92	0.00299708
+1193.04	0.00299691
+1193.16	0.00299675
+1193.28	0.00299659
+1193.4	0.00299642
+1193.52	0.00299626
+1193.64	0.00299609
+1193.76	0.00299593
+1193.88	0.00299577
+1194	0.0029956
+1194.12	0.00299544
+1194.24	0.00299528
+1194.36	0.00299511
+1194.48	0.00299495
+1194.6	0.00299479
+1194.72	0.00299462
+1194.84	0.00299446
+1194.96	0.0029943
+1195.08	0.00299413
+1195.2	0.00299397
+1195.32	0.00299381
+1195.44	0.00299364
+1195.56	0.00299348
+1195.68	0.00299332
+1195.8	0.00299315
+1195.92	0.00299299
+1196.04	0.00299283
+1196.16	0.00299267
+1196.28	0.0029925
+1196.4	0.00299234
+1196.52	0.00299218
+1196.64	0.00299201
+1196.76	0.00299185
+1196.88	0.00299169
+1197	0.00299153
+1197.12	0.00299136
+1197.24	0.0029912
+1197.36	0.00299104
+1197.48	0.00299088
+1197.6	0.00299071
+1197.72	0.00299055
+1197.84	0.00299039
+1197.96	0.00299023
+1198.08	0.00299006
+1198.2	0.0029899
+1198.32	0.00298974
+1198.44	0.00298958
+1198.56	0.00298941
+1198.68	0.00298925
+1198.8	0.00298909
+1198.92	0.00298893
+1199.04	0.00298876
+1199.16	0.0029886
+1199.28	0.00298844
+1199.4	0.00298828
+1199.52	0.00298812
+1199.64	0.00298795
+1199.76	0.00298779
+1199.88	0.00298763
+1200	0.00298747
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/EnergyLossTable/alpha_C.G4table b/Projects/MUSETT/calibration/calib_simu/Energy/EnergyLossTable/alpha_C.G4table
new file mode 100644
index 0000000000000000000000000000000000000000..91d510b0e8ed01b1f226819b76166c1f4e9ceb8a
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/EnergyLossTable/alpha_C.G4table
@@ -0,0 +1,469 @@
+Table from Geant4 generate using NPSimulation 	Particle: alpha	Material: NPS_C
+0	0
+0.001	0.0800342
+0.002	0.089502
+0.003	0.0968824
+0.004	0.103038
+0.005	0.108819
+0.006	0.114128
+0.007	0.119081
+0.008	0.123761
+0.009	0.128328
+0.01	0.132552
+0.011	0.136608
+0.012	0.140564
+0.013	0.144303
+0.014	0.148047
+0.015	0.151666
+0.016	0.155131
+0.017	0.158456
+0.018	0.161655
+0.019	0.164737
+0.02	0.167765
+0.021	0.170886
+0.022	0.173916
+0.023	0.176861
+0.024	0.179726
+0.025	0.182516
+0.026	0.185237
+0.027	0.187892
+0.028	0.190484
+0.029	0.193017
+0.03	0.195495
+0.031	0.19792
+0.032	0.200294
+0.033	0.202621
+0.034	0.204901
+0.035	0.207138
+0.036	0.209332
+0.037	0.211487
+0.038	0.213603
+0.039	0.215681
+0.041	0.219878
+0.043	0.224
+0.045	0.227999
+0.047	0.231883
+0.049	0.235659
+0.051	0.239333
+0.053	0.242918
+0.055	0.246466
+0.057	0.249928
+0.059	0.253309
+0.061	0.256612
+0.063	0.259842
+0.065	0.263
+0.067	0.266109
+0.069	0.269169
+0.071	0.272168
+0.073	0.275106
+0.075	0.277988
+0.077	0.280814
+0.079	0.283587
+0.083	0.289035
+0.087	0.294293
+0.091	0.299371
+0.095	0.30428
+0.099	0.30903
+0.103	0.313629
+0.107	0.3181
+0.111	0.32246
+0.115	0.326691
+0.119	0.330798
+0.123	0.334787
+0.127	0.338663
+0.131	0.342431
+0.135	0.346118
+0.139	0.349712
+0.143	0.353209
+0.147	0.356613
+0.155	0.363155
+0.163	0.369359
+0.171	0.375248
+0.179	0.38084
+0.187	0.386152
+0.195	0.391198
+0.203	0.396017
+0.211	0.400612
+0.219	0.404979
+0.227	0.409129
+0.235	0.413072
+0.251	0.420375
+0.267	0.426962
+0.283	0.432917
+0.299	0.438259
+0.315	0.443034
+0.331	0.447285
+0.363	0.454365
+0.395	0.459772
+0.427	0.46378
+0.491	0.468233
+0.619	0.467001
+0.875	0.444095
+1.131	0.412876
+1.387	0.382064
+1.643	0.354088
+1.899	0.329315
+2.155	0.307531
+2.411	0.288349
+2.667	0.271385
+2.923	0.256314
+3.179	0.242844
+3.435	0.230743
+3.691	0.219815
+3.947	0.209901
+4.203	0.200873
+4.459	0.192614
+4.715	0.18503
+4.971	0.178041
+5.227	0.171581
+5.483	0.165592
+5.739	0.160024
+5.995	0.154834
+6.251	0.149984
+6.507	0.145441
+6.763	0.141177
+7.019	0.137168
+7.275	0.133391
+7.531	0.129825
+7.787	0.126454
+8.043	0.123441
+8.299	0.120855
+8.555	0.118379
+8.811	0.116008
+9.067	0.113736
+9.323	0.111558
+9.579	0.109468
+9.835	0.107448
+10.091	0.105493
+10.347	0.103614
+10.603	0.101806
+10.859	0.100067
+11.115	0.0983906
+11.371	0.096775
+11.627	0.0952167
+11.883	0.0937127
+12.139	0.0922597
+12.395	0.0908512
+12.651	0.0894897
+12.907	0.0881729
+13.163	0.0868987
+13.419	0.0856654
+13.675	0.0844707
+13.931	0.0833126
+14.187	0.0821896
+14.443	0.0811
+14.699	0.0800423
+14.955	0.0790151
+15.211	0.0780171
+15.467	0.0770469
+15.723	0.0761036
+15.979	0.0751419
+16.235	0.074249
+16.491	0.0733688
+16.747	0.0725115
+17.003	0.0716763
+17.259	0.0708623
+17.515	0.0700687
+17.771	0.0692946
+18.027	0.0685394
+18.283	0.0678023
+18.539	0.0670828
+18.795	0.06638
+19.051	0.0656936
+19.307	0.0650228
+19.563	0.0643672
+19.819	0.0637261
+20.331	0.0624859
+20.843	0.0612985
+21.355	0.0601605
+21.867	0.0590699
+22.379	0.0580238
+22.891	0.0570164
+23.403	0.056041
+23.915	0.0551019
+24.427	0.054197
+24.939	0.0533246
+25.451	0.0524827
+25.963	0.0516698
+26.475	0.0508844
+26.987	0.0501251
+27.499	0.0493905
+28.011	0.0486794
+28.523	0.0479908
+29.035	0.0473235
+29.547	0.0466765
+30.059	0.0460489
+30.571	0.0454397
+31.083	0.0448483
+31.595	0.0442737
+32.107	0.0437154
+32.619	0.0431724
+33.131	0.0426421
+33.643	0.0421258
+34.155	0.041623
+34.667	0.0411333
+35.179	0.0406561
+35.691	0.040191
+36.203	0.0397375
+36.715	0.0392951
+37.227	0.0388634
+37.739	0.0384421
+38.251	0.0380307
+38.763	0.037629
+39.275	0.0372364
+39.787	0.0368528
+40.299	0.0364778
+40.811	0.0361112
+41.323	0.0357525
+42.347	0.0350583
+43.371	0.0343932
+44.395	0.0337554
+45.419	0.033143
+46.443	0.0325547
+47.467	0.031989
+48.491	0.0314446
+49.515	0.0309203
+50.539	0.0304149
+51.563	0.0299275
+52.587	0.0294571
+53.611	0.0290026
+54.635	0.0285634
+55.659	0.0281387
+56.683	0.0277277
+57.707	0.0273298
+58.731	0.0269442
+59.755	0.0265706
+60.779	0.0262082
+61.803	0.0258566
+62.827	0.0255153
+63.851	0.0251838
+64.875	0.0248617
+65.899	0.0245487
+66.923	0.0242442
+67.947	0.023948
+68.971	0.0236597
+69.995	0.0233791
+71.019	0.0231057
+72.043	0.0228393
+73.067	0.0225797
+74.091	0.0223265
+75.115	0.0220796
+76.139	0.0218386
+77.163	0.0216035
+78.187	0.0213739
+79.211	0.0211497
+80.235	0.0209306
+81.259	0.0207166
+82.283	0.0205074
+83.307	0.0203028
+85.355	0.019907
+87.403	0.019528
+89.451	0.0191648
+91.499	0.0188164
+93.547	0.0184818
+95.595	0.0181602
+97.643	0.017851
+99.691	0.0175533
+101.739	0.0172665
+103.787	0.01699
+105.835	0.0167233
+107.883	0.0164658
+109.931	0.0162171
+111.979	0.0159767
+114.027	0.0157441
+116.075	0.0155191
+118.123	0.0153012
+120.171	0.0150901
+122.219	0.0148854
+124.267	0.014687
+126.315	0.0144944
+128.363	0.0143074
+130.411	0.0141259
+132.459	0.0139495
+134.507	0.013778
+136.555	0.0136112
+138.603	0.0134489
+140.651	0.013291
+142.699	0.0131373
+144.747	0.0129875
+146.795	0.0128416
+148.843	0.0126993
+150.891	0.0125607
+152.939	0.0124254
+154.987	0.0122934
+157.035	0.0121646
+159.083	0.0120388
+161.131	0.011916
+163.179	0.0117961
+165.227	0.0116788
+169.323	0.0114522
+173.419	0.0112354
+177.515	0.0110279
+181.611	0.0108291
+185.707	0.0106383
+189.803	0.0104551
+193.899	0.0102792
+197.995	0.0101099
+202.091	0.009947
+206.187	0.00979009
+210.283	0.00963885
+214.379	0.00949298
+218.475	0.00935218
+222.571	0.00921618
+226.667	0.00908475
+230.763	0.00895765
+234.859	0.00883466
+238.955	0.0087156
+243.051	0.00860026
+247.147	0.00848848
+251.243	0.00838009
+255.339	0.00827494
+259.435	0.00817287
+263.531	0.00807376
+267.627	0.00797748
+271.723	0.0078839
+275.819	0.00779291
+279.915	0.00770441
+284.011	0.00761829
+288.107	0.00753445
+292.203	0.00745281
+296.299	0.00737327
+300.395	0.00729576
+304.491	0.0072202
+308.587	0.00714652
+312.683	0.00707464
+316.779	0.0070045
+324.971	0.00686919
+333.163	0.00674011
+341.355	0.00661684
+349.547	0.006499
+357.739	0.00638622
+365.931	0.00627818
+374.123	0.00617459
+382.315	0.00607517
+390.507	0.00597968
+398.699	0.00588789
+406.891	0.00579957
+415.083	0.00571455
+423.275	0.00563262
+431.467	0.00555363
+439.659	0.00547743
+447.851	0.00540385
+456.043	0.00533277
+464.235	0.00526407
+472.427	0.00519762
+480.619	0.00513331
+488.811	0.00507105
+497.003	0.00501073
+505.195	0.00495227
+513.387	0.00489557
+521.579	0.00484057
+529.771	0.00478718
+537.963	0.00473534
+546.155	0.00468498
+554.347	0.00463603
+562.539	0.00458844
+570.731	0.00454215
+578.923	0.0044971
+595.307	0.00441057
+611.691	0.00432846
+628.075	0.00425044
+644.459	0.00417622
+660.843	0.00410552
+677.227	0.0040381
+693.611	0.00397374
+709.995	0.00391223
+726.379	0.00385339
+742.763	0.00379705
+759.147	0.00374305
+775.531	0.00369126
+791.915	0.00364153
+808.299	0.00359375
+824.683	0.00354781
+841.067	0.0035036
+857.451	0.00346102
+873.835	0.00342
+890.219	0.00338045
+906.603	0.00334228
+922.987	0.00330544
+939.371	0.00326984
+955.755	0.00323544
+972.139	0.00320217
+988.523	0.00316997
+1004.91	0.00313881
+1037.68	0.00307937
+1070.44	0.00302351
+1103.21	0.00297091
+1135.98	0.0029213
+1168.75	0.00287444
+1201.52	0.00283011
+1234.28	0.00278786
+1267.05	0.00274775
+1299.82	0.00270964
+1332.59	0.00267341
+1365.36	0.00263891
+1398.12	0.00260603
+1430.89	0.00257466
+1463.66	0.00254471
+1496.43	0.00251607
+1529.2	0.00248868
+1561.96	0.00246245
+1594.73	0.00243731
+1627.5	0.00241321
+1693.04	0.00236785
+1758.57	0.00232595
+1824.11	0.00228716
+1889.64	0.00225114
+1955.18	0.00221764
+2020.72	0.0021864
+2086.25	0.00215722
+2151.79	0.00212991
+2217.32	0.00210432
+2282.86	0.00208029
+2348.4	0.00205769
+2413.93	0.00203642
+2479.47	0.00201636
+2610.54	0.00197952
+2741.61	0.00194655
+2872.68	0.00191691
+3003.76	0.00189016
+3134.83	0.00186594
+3265.9	0.00184395
+3396.97	0.00182392
+3528.04	0.00180563
+3659.12	0.0017889
+3921.26	0.00175945
+4183.4	0.00173449
+4445.55	0.00171322
+4707.69	0.00169498
+4969.84	0.00167928
+5494.12	0.00165396
+6018.41	0.00163486
+6542.7	0.00162036
+7591.28	0.00160102
+8639.85	0.00159018
+10737	0.0015826
+14931.3	0.00159117
+23319.9	0.00162878
+31708.5	0.00166528
+40097.1	0.00169651
+48485.7	0.00172312
+56874.3	0.00174605
+65263	0.00176609
+73651.6	0.00178383
+82040.2	0.00179971
+98817.4	0.00182714
+115595	0.00185021
+132372	0.00187008
+149149	0.00188749
+182703	0.00191691
+216258	0.00194114
+249812	0.0019617
+283367	0.00197955
+350476	0.00200939
+417584	0.00203375
+484693	0.00205431
+551802	0.0020721
+686020	0.00210174
+820238	0.00212588
+954455	0.00214623
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/EnergyLossTable/alpha_Si.G4table b/Projects/MUSETT/calibration/calib_simu/Energy/EnergyLossTable/alpha_Si.G4table
new file mode 100644
index 0000000000000000000000000000000000000000..50a1580b2306c631e507fcfccdfd89fd7f91c3d1
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/EnergyLossTable/alpha_Si.G4table
@@ -0,0 +1,10002 @@
+Table from Geant4 generate using NPSimulation 	Particle: alpha	Material: Si
+0	0
+0.12	0.227842
+0.24	0.318853
+0.36	0.356212
+0.48	0.363529
+0.6	0.35703
+0.72	0.345305
+0.84	0.332168
+0.96	0.319206
+1.08	0.306973
+1.2	0.295608
+1.32	0.285112
+1.44	0.27541
+1.56	0.266429
+1.68	0.25809
+1.8	0.250323
+1.92	0.243073
+2.04	0.236281
+2.16	0.229904
+2.28	0.223901
+2.4	0.21824
+2.52	0.212893
+2.64	0.207831
+2.76	0.203029
+2.88	0.198468
+3	0.19413
+3.12	0.19
+3.24	0.18606
+3.36	0.182298
+3.48	0.1787
+3.6	0.175257
+3.72	0.171957
+3.84	0.168792
+3.96	0.165754
+4.08	0.162834
+4.2	0.160027
+4.32	0.157324
+4.44	0.15472
+4.56	0.152212
+4.68	0.149793
+4.8	0.147457
+4.92	0.145201
+5.04	0.14302
+5.16	0.140912
+5.28	0.13887
+5.4	0.136892
+5.52	0.134975
+5.64	0.133117
+5.76	0.131315
+5.88	0.129567
+6	0.12787
+6.12	0.126221
+6.24	0.12462
+6.36	0.123062
+6.48	0.121547
+6.6	0.120073
+6.72	0.118638
+6.84	0.117241
+6.96	0.115879
+7.08	0.114552
+7.2	0.113259
+7.32	0.111997
+7.44	0.110766
+7.56	0.109565
+7.68	0.108392
+7.8	0.107247
+7.92	0.106128
+8.04	0.105037
+8.16	0.10397
+8.28	0.102924
+8.4	0.1019
+8.52	0.100896
+8.64	0.0999119
+8.76	0.0989477
+8.88	0.0980026
+9	0.0970766
+9.12	0.0961686
+9.24	0.0952783
+9.36	0.0942125
+9.48	0.0933637
+9.6	0.092531
+9.72	0.0920727
+9.84	0.0912566
+9.96	0.0904557
+10.08	0.0896695
+10.2	0.0888977
+10.32	0.0881399
+10.44	0.0873957
+10.56	0.0866649
+10.68	0.0859469
+10.8	0.0852416
+10.92	0.0845486
+11.04	0.0838761
+11.16	0.0832164
+11.28	0.0824697
+11.4	0.0818352
+11.52	0.0812108
+11.64	0.0808357
+11.76	0.0802298
+11.88	0.0796336
+12	0.0790469
+12.12	0.0784692
+12.24	0.0779006
+12.36	0.0773406
+12.48	0.0767892
+12.6	0.0762446
+12.72	0.0757095
+12.84	0.0751825
+12.96	0.0746633
+13.08	0.0741517
+13.2	0.0735978
+13.32	0.0731032
+13.44	0.0726157
+13.56	0.0722883
+13.68	0.0718082
+13.8	0.0713349
+13.92	0.0708683
+14.04	0.0704082
+14.16	0.0699546
+14.28	0.0695072
+14.4	0.069066
+14.52	0.0686308
+14.64	0.0683369
+14.76	0.0679157
+14.88	0.0675003
+15	0.0670638
+15.12	0.0666612
+15.24	0.0662639
+15.36	0.0658717
+15.48	0.0654846
+15.6	0.0651025
+15.72	0.0647253
+15.84	0.0643528
+15.96	0.0639851
+16.08	0.063622
+16.2	0.0632634
+16.32	0.0629092
+16.44	0.0625594
+16.56	0.0623445
+16.68	0.0620026
+16.8	0.0616649
+16.92	0.0613312
+17.04	0.0610015
+17.16	0.0606754
+17.28	0.0603517
+17.4	0.0600319
+17.52	0.0597159
+17.64	0.0594036
+17.76	0.059095
+17.88	0.05879
+18	0.0584885
+18.12	0.0581905
+18.24	0.0578959
+18.36	0.0576047
+18.48	0.0573167
+18.6	0.0570319
+18.72	0.0567503
+18.84	0.0564554
+18.96	0.0561809
+19.08	0.0559094
+19.2	0.0556408
+19.32	0.0553751
+19.44	0.0552671
+19.56	0.0550061
+19.68	0.0547479
+19.8	0.0544924
+19.92	0.0542396
+20.04	0.0539894
+20.16	0.0537418
+20.28	0.0534968
+20.4	0.0532542
+20.52	0.0530142
+20.64	0.0527766
+20.76	0.0525414
+20.88	0.0523085
+21	0.052078
+21.12	0.0518498
+21.24	0.0516238
+21.36	0.0514
+21.48	0.0511784
+21.6	0.050959
+21.72	0.0507417
+21.84	0.0505264
+21.96	0.0503133
+22.08	0.0501021
+22.2	0.049893
+22.32	0.0496858
+22.44	0.0494806
+22.56	0.0492812
+22.68	0.0490801
+22.8	0.0488809
+22.92	0.0486834
+23.04	0.0484878
+23.16	0.048294
+23.28	0.0481019
+23.4	0.0479115
+23.52	0.0477228
+23.64	0.0475358
+23.76	0.0473505
+23.88	0.0471669
+24	0.0469849
+24.12	0.0468044
+24.24	0.0466256
+24.36	0.0464483
+24.48	0.0462725
+24.6	0.0460982
+24.72	0.0459254
+24.84	0.045754
+24.96	0.0455841
+25.08	0.0454157
+25.2	0.0452486
+25.32	0.045083
+25.44	0.0449187
+25.56	0.0447558
+25.68	0.0445942
+25.8	0.0444339
+25.92	0.0442749
+26.04	0.0441173
+26.16	0.0439609
+26.28	0.0438057
+26.4	0.0436621
+26.52	0.0435094
+26.64	0.0433579
+26.76	0.0432076
+26.88	0.0430585
+27	0.0429105
+27.12	0.0427637
+27.24	0.0426181
+27.36	0.0424735
+27.48	0.0423301
+27.6	0.0421878
+27.72	0.0420466
+27.84	0.0419064
+27.96	0.0417673
+28.08	0.0416292
+28.2	0.0414922
+28.32	0.0413649
+28.44	0.04123
+28.56	0.0410961
+28.68	0.0409632
+28.8	0.0408313
+28.92	0.0407004
+29.04	0.0405704
+29.16	0.0404413
+29.28	0.0404063
+29.4	0.040278
+29.52	0.0401507
+29.64	0.0400243
+29.76	0.0398988
+29.88	0.0397743
+30	0.0396506
+30.12	0.0395277
+30.24	0.0394058
+30.36	0.0392846
+30.48	0.0391644
+30.6	0.0390449
+30.72	0.0389266
+30.84	0.0388092
+30.96	0.0386926
+31.08	0.0385768
+31.2	0.0384618
+31.32	0.0383476
+31.44	0.0382341
+31.56	0.0381213
+31.68	0.0380094
+31.8	0.0378981
+31.92	0.0377876
+32.04	0.0376778
+32.16	0.0375819
+32.28	0.0374735
+32.4	0.0373658
+32.52	0.0372588
+32.64	0.0371525
+32.76	0.0370469
+32.88	0.036942
+33	0.0368377
+33.12	0.0367341
+33.24	0.0366311
+33.36	0.0365288
+33.48	0.0364271
+33.6	0.0363261
+33.72	0.0362257
+33.84	0.0361259
+33.96	0.0360268
+34.08	0.0359282
+34.2	0.0358303
+34.32	0.035733
+34.44	0.0356362
+34.56	0.0355401
+34.68	0.0354445
+34.8	0.0353495
+34.92	0.0352551
+35.04	0.0351613
+35.16	0.035068
+35.28	0.0349753
+35.4	0.0348831
+35.52	0.0347915
+35.64	0.0347004
+35.76	0.0346098
+35.88	0.0345198
+36	0.0344303
+36.12	0.0343414
+36.24	0.0342529
+36.36	0.034165
+36.48	0.0340775
+36.6	0.0339906
+36.72	0.0339042
+36.84	0.0338183
+36.96	0.0337328
+37.08	0.0336479
+37.2	0.0335634
+37.32	0.0334794
+37.44	0.0333959
+37.56	0.0333129
+37.68	0.0332303
+37.8	0.0331482
+37.92	0.0330851
+38.04	0.0330039
+38.16	0.0329232
+38.28	0.0328429
+38.4	0.032763
+38.52	0.0326836
+38.64	0.0326046
+38.76	0.032526
+38.88	0.0324479
+39	0.0323701
+39.12	0.0322928
+39.24	0.032216
+39.36	0.0321395
+39.48	0.0320634
+39.6	0.0319878
+39.72	0.0319125
+39.84	0.0318377
+39.96	0.0317632
+40.08	0.0316892
+40.2	0.0316155
+40.32	0.0315422
+40.44	0.0314693
+40.56	0.0313968
+40.68	0.0313246
+40.8	0.0312529
+40.92	0.0311815
+41.04	0.0311104
+41.16	0.0310398
+41.28	0.0309694
+41.4	0.0308995
+41.52	0.0308299
+41.64	0.0307607
+41.76	0.0306918
+41.88	0.0306233
+42	0.0305551
+42.12	0.0304872
+42.24	0.0304197
+42.36	0.0303525
+42.48	0.0302857
+42.6	0.0302192
+42.72	0.030153
+42.84	0.0300872
+42.96	0.0300216
+43.08	0.0299564
+43.2	0.0298916
+43.32	0.029827
+43.44	0.0297627
+43.56	0.0296988
+43.68	0.0296352
+43.8	0.0295718
+43.92	0.0295088
+44.04	0.0294461
+44.16	0.0293837
+44.28	0.0293216
+44.4	0.0292598
+44.52	0.0291983
+44.64	0.0291371
+44.76	0.0290762
+44.88	0.0290155
+45	0.0289552
+45.12	0.0288952
+45.24	0.0288354
+45.36	0.0287759
+45.48	0.0287167
+45.6	0.0286577
+45.72	0.028599
+45.84	0.0285407
+45.96	0.0284825
+46.08	0.0284247
+46.2	0.0283671
+46.32	0.0283097
+46.44	0.0282527
+46.56	0.0281959
+46.68	0.0281393
+46.8	0.028083
+46.92	0.028027
+47.04	0.0279712
+47.16	0.0279156
+47.28	0.0278603
+47.4	0.0278053
+47.52	0.0277505
+47.64	0.027696
+47.76	0.0276417
+47.88	0.0275876
+48	0.0275338
+48.12	0.0274802
+48.24	0.0274268
+48.36	0.0273737
+48.48	0.0273208
+48.6	0.0272681
+48.72	0.0272157
+48.84	0.0271635
+48.96	0.0271115
+49.08	0.0270598
+49.2	0.0269207
+49.32	0.0268684
+49.44	0.0268163
+49.56	0.0267645
+49.68	0.0267129
+49.8	0.0266615
+49.92	0.0266103
+50.04	0.0265593
+50.16	0.0265086
+50.28	0.026458
+50.4	0.0264077
+50.52	0.0263576
+50.64	0.0263077
+50.76	0.026258
+50.88	0.0262085
+51	0.0261592
+51.12	0.0261102
+51.24	0.0260613
+51.36	0.0260126
+51.48	0.0259642
+51.6	0.0259159
+51.72	0.0258679
+51.84	0.02582
+51.96	0.0257723
+52.08	0.0257248
+52.2	0.0256776
+52.32	0.0256305
+52.44	0.0255836
+52.56	0.0255369
+52.68	0.0254904
+52.8	0.025444
+52.92	0.0253979
+53.04	0.0253519
+53.16	0.0253062
+53.28	0.0252606
+53.4	0.0252152
+53.52	0.0251699
+53.64	0.0251249
+53.76	0.02508
+53.88	0.0250353
+54	0.0249908
+54.12	0.0249465
+54.24	0.0249023
+54.36	0.0248583
+54.48	0.0248145
+54.6	0.0247708
+54.72	0.0247273
+54.84	0.024684
+54.96	0.0246409
+55.08	0.0245979
+55.2	0.0245551
+55.32	0.0245125
+55.44	0.02447
+55.56	0.0244277
+55.68	0.0243855
+55.8	0.0243435
+55.92	0.0243017
+56.04	0.02426
+56.16	0.0242185
+56.28	0.0241771
+56.4	0.0241359
+56.52	0.0240949
+56.64	0.024054
+56.76	0.0240133
+56.88	0.0239727
+57	0.0239322
+57.12	0.0238919
+57.24	0.0238853
+57.36	0.0238452
+57.48	0.0238052
+57.6	0.0237654
+57.72	0.0237257
+57.84	0.0236862
+57.96	0.0236468
+58.08	0.0236075
+58.2	0.0235684
+58.32	0.0235295
+58.44	0.0234906
+58.56	0.023452
+58.68	0.0234134
+58.8	0.023375
+58.92	0.0233368
+59.04	0.0232987
+59.16	0.0232607
+59.28	0.0232229
+59.4	0.0231852
+59.52	0.0231476
+59.64	0.0231102
+59.76	0.0230729
+59.88	0.0230358
+60	0.0229987
+60.12	0.0229618
+60.24	0.0229251
+60.36	0.0228885
+60.48	0.022852
+60.6	0.0228156
+60.72	0.0227793
+60.84	0.0227432
+60.96	0.0227072
+61.08	0.0226714
+61.2	0.0226356
+61.32	0.0226
+61.44	0.0225645
+61.56	0.0225292
+61.68	0.0224939
+61.8	0.0224588
+61.92	0.0224238
+62.04	0.0223889
+62.16	0.0223542
+62.28	0.0223195
+62.4	0.022285
+62.52	0.0222506
+62.64	0.0222163
+62.76	0.0221821
+62.88	0.0221481
+63	0.0221141
+63.12	0.0220803
+63.24	0.0220466
+63.36	0.022013
+63.48	0.0219795
+63.6	0.0219462
+63.72	0.0219129
+63.84	0.0218798
+63.96	0.0218467
+64.08	0.0218138
+64.2	0.021781
+64.32	0.0217483
+64.44	0.0217157
+64.56	0.0216832
+64.68	0.0216508
+64.8	0.0216186
+64.92	0.0215864
+65.04	0.0215543
+65.16	0.0215224
+65.28	0.0214905
+65.4	0.0214588
+65.52	0.0214271
+65.64	0.0213956
+65.76	0.0213641
+65.88	0.0213328
+66	0.0213016
+66.12	0.0212704
+66.24	0.0212394
+66.36	0.0212085
+66.48	0.0211776
+66.6	0.0211469
+66.72	0.0211163
+66.84	0.0210857
+66.96	0.0210553
+67.08	0.021025
+67.2	0.0209947
+67.32	0.0209646
+67.44	0.0209345
+67.56	0.0209046
+67.68	0.0208747
+67.8	0.0208449
+67.92	0.0208153
+68.04	0.0207857
+68.16	0.0207562
+68.28	0.0207268
+68.4	0.0206975
+68.52	0.0206683
+68.64	0.0206391
+68.76	0.0206101
+68.88	0.0205812
+69	0.0205523
+69.12	0.0205236
+69.24	0.0204949
+69.36	0.0204292
+69.48	0.0204026
+69.6	0.0203761
+69.72	0.0203496
+69.84	0.0203233
+69.96	0.020297
+70.08	0.0202708
+70.2	0.0202447
+70.32	0.0202187
+70.44	0.0201927
+70.56	0.0201668
+70.68	0.020141
+70.8	0.0201152
+70.92	0.0200895
+71.04	0.0200639
+71.16	0.0200384
+71.28	0.0200129
+71.4	0.0199875
+71.52	0.0199622
+71.64	0.0199369
+71.76	0.0199117
+71.88	0.0198866
+72	0.0198616
+72.12	0.0198366
+72.24	0.0198117
+72.36	0.0197868
+72.48	0.019762
+72.6	0.0197373
+72.72	0.0197127
+72.84	0.0196881
+72.96	0.0196636
+73.08	0.0196392
+73.2	0.0196148
+73.32	0.0195905
+73.44	0.0195663
+73.56	0.0195421
+73.68	0.019518
+73.8	0.019494
+73.92	0.01947
+74.04	0.0194461
+74.16	0.0194222
+74.28	0.0193984
+74.4	0.0193747
+74.52	0.0193511
+74.64	0.0193275
+74.76	0.0193039
+74.88	0.0192805
+75	0.0192571
+75.12	0.0192337
+75.24	0.0192104
+75.36	0.0191872
+75.48	0.0191641
+75.6	0.019141
+75.72	0.0191179
+75.84	0.019095
+75.96	0.0190721
+76.08	0.0190492
+76.2	0.0190264
+76.32	0.0190037
+76.44	0.018981
+76.56	0.0189584
+76.68	0.0189359
+76.8	0.0189134
+76.92	0.0188909
+77.04	0.0188686
+77.16	0.0188462
+77.28	0.018824
+77.4	0.0188018
+77.52	0.0187796
+77.64	0.0187576
+77.76	0.0187355
+77.88	0.0187136
+78	0.0186917
+78.12	0.0186698
+78.24	0.018648
+78.36	0.0186262
+78.48	0.0186046
+78.6	0.0185829
+78.72	0.0185613
+78.84	0.0185398
+78.96	0.0185184
+79.08	0.0184969
+79.2	0.0184756
+79.32	0.0184543
+79.44	0.018433
+79.56	0.0184118
+79.68	0.0183907
+79.8	0.0183696
+79.92	0.0183486
+80.04	0.0183276
+80.16	0.0183067
+80.28	0.0182858
+80.4	0.018265
+80.52	0.0182442
+80.64	0.0182235
+80.76	0.0182028
+80.88	0.0181822
+81	0.0181616
+81.12	0.0181411
+81.24	0.0181207
+81.36	0.0181003
+81.48	0.0180799
+81.6	0.0180596
+81.72	0.0180394
+81.84	0.0180191
+81.96	0.017999
+82.08	0.0179789
+82.2	0.0179588
+82.32	0.0179388
+82.44	0.0179189
+82.56	0.017899
+82.68	0.0178791
+82.8	0.0178593
+82.92	0.0178395
+83.04	0.0178198
+83.16	0.0178002
+83.28	0.0177805
+83.4	0.017761
+83.52	0.0177414
+83.64	0.017722
+83.76	0.0177025
+83.88	0.0176832
+84	0.0176638
+84.12	0.0176446
+84.24	0.0176253
+84.36	0.0176061
+84.48	0.017587
+84.6	0.0175679
+84.72	0.0175488
+84.84	0.0175298
+84.96	0.0175109
+85.08	0.0174919
+85.2	0.0174731
+85.32	0.0174542
+85.44	0.0174355
+85.56	0.0174167
+85.68	0.017398
+85.8	0.0173794
+85.92	0.0173608
+86.04	0.0173422
+86.16	0.0173237
+86.28	0.0173053
+86.4	0.0172868
+86.52	0.0172685
+86.64	0.0172501
+86.76	0.0172318
+86.88	0.0172136
+87	0.0171954
+87.12	0.0171772
+87.24	0.0171591
+87.36	0.017141
+87.48	0.017123
+87.6	0.017105
+87.72	0.017087
+87.84	0.0170691
+87.96	0.0170512
+88.08	0.0170334
+88.2	0.0170156
+88.32	0.0169979
+88.44	0.0169802
+88.56	0.0169625
+88.68	0.0169449
+88.8	0.0169273
+88.92	0.0169098
+89.04	0.0168923
+89.16	0.0168748
+89.28	0.0168574
+89.4	0.01684
+89.52	0.0168227
+89.64	0.0168054
+89.76	0.0167882
+89.88	0.0167709
+90	0.0167538
+90.12	0.0167366
+90.24	0.0167195
+90.36	0.0167025
+90.48	0.0166855
+90.6	0.0166685
+90.72	0.0166515
+90.84	0.0166346
+90.96	0.0166178
+91.08	0.016601
+91.2	0.0165842
+91.32	0.0165674
+91.44	0.0165507
+91.56	0.016534
+91.68	0.0165174
+91.8	0.0165008
+91.92	0.0164842
+92.04	0.0164677
+92.16	0.0164512
+92.28	0.0164348
+92.4	0.0164184
+92.52	0.016402
+92.64	0.0163856
+92.76	0.0163693
+92.88	0.0163531
+93	0.0163368
+93.12	0.0163206
+93.24	0.0163045
+93.36	0.0162884
+93.48	0.0162723
+93.6	0.0162562
+93.72	0.0162402
+93.84	0.0162242
+93.96	0.0162083
+94.08	0.0161924
+94.2	0.0161765
+94.32	0.0161606
+94.44	0.0161448
+94.56	0.0161291
+94.68	0.0161133
+94.8	0.0160976
+94.92	0.016082
+95.04	0.0160663
+95.16	0.0160507
+95.28	0.0160352
+95.4	0.0160196
+95.52	0.0160041
+95.64	0.0159887
+95.76	0.0159732
+95.88	0.0159578
+96	0.0159425
+96.12	0.0159271
+96.24	0.0159118
+96.36	0.0158966
+96.48	0.0158813
+96.6	0.0158661
+96.72	0.015851
+96.84	0.0158578
+96.96	0.0158427
+97.08	0.0158275
+97.2	0.0158125
+97.32	0.0157974
+97.44	0.0157824
+97.56	0.0157674
+97.68	0.0157524
+97.8	0.0157375
+97.92	0.0157225
+98.04	0.0157077
+98.16	0.0156928
+98.28	0.015678
+98.4	0.0156632
+98.52	0.0156485
+98.64	0.0156338
+98.76	0.0156191
+98.88	0.0156044
+99	0.0155898
+99.12	0.0155752
+99.24	0.0155607
+99.36	0.0155461
+99.48	0.0155316
+99.6	0.0155172
+99.72	0.0155027
+99.84	0.0154883
+99.96	0.0154739
+100.08	0.0154596
+100.2	0.0154453
+100.32	0.015431
+100.44	0.0154167
+100.56	0.0154025
+100.68	0.0153883
+100.8	0.0153741
+100.92	0.01536
+101.04	0.0153459
+101.16	0.0153318
+101.28	0.0153177
+101.4	0.0153037
+101.52	0.0152897
+101.64	0.0152757
+101.76	0.0152618
+101.88	0.0152479
+102	0.015234
+102.12	0.0152201
+102.24	0.0152063
+102.36	0.0151925
+102.48	0.0151787
+102.6	0.015165
+102.72	0.0151513
+102.84	0.0151376
+102.96	0.0151239
+103.08	0.0151103
+103.2	0.0150967
+103.32	0.0150831
+103.44	0.0150696
+103.56	0.0150561
+103.68	0.0150426
+103.8	0.0150291
+103.92	0.0150157
+104.04	0.0150023
+104.16	0.0149889
+104.28	0.0149755
+104.4	0.0149622
+104.52	0.0149489
+104.64	0.0149356
+104.76	0.0149224
+104.88	0.0149091
+105	0.0148959
+105.12	0.0148828
+105.24	0.0148696
+105.36	0.0148565
+105.48	0.0148434
+105.6	0.0148303
+105.72	0.0148173
+105.84	0.0148043
+105.96	0.0147913
+106.08	0.0147783
+106.2	0.0147654
+106.32	0.0147525
+106.44	0.0147396
+106.56	0.0147267
+106.68	0.0147139
+106.8	0.0147011
+106.92	0.0146883
+107.04	0.0146755
+107.16	0.0146628
+107.28	0.0146501
+107.4	0.0146374
+107.52	0.0146247
+107.64	0.0146121
+107.76	0.0145995
+107.88	0.0145869
+108	0.0145743
+108.12	0.0145618
+108.24	0.0145493
+108.36	0.0145368
+108.48	0.0145243
+108.6	0.0145119
+108.72	0.0144994
+108.84	0.014487
+108.96	0.0144747
+109.08	0.0144623
+109.2	0.01445
+109.32	0.0144377
+109.44	0.0144254
+109.56	0.0144132
+109.68	0.0144009
+109.8	0.0143887
+109.92	0.0143766
+110.04	0.0143644
+110.16	0.0143523
+110.28	0.0143401
+110.4	0.0143281
+110.52	0.014316
+110.64	0.0143039
+110.76	0.0142919
+110.88	0.0142799
+111	0.014268
+111.12	0.014256
+111.24	0.0142441
+111.36	0.0142322
+111.48	0.0142203
+111.6	0.0142084
+111.72	0.0141966
+111.84	0.0141848
+111.96	0.014173
+112.08	0.0141612
+112.2	0.0141494
+112.32	0.0141377
+112.44	0.014126
+112.56	0.0141143
+112.68	0.0141027
+112.8	0.014091
+112.92	0.0140794
+113.04	0.0140678
+113.16	0.0140562
+113.28	0.0140447
+113.4	0.0140331
+113.52	0.0140216
+113.64	0.0140101
+113.76	0.0139987
+113.88	0.0139872
+114	0.0139758
+114.12	0.0139644
+114.24	0.013953
+114.36	0.0139416
+114.48	0.0139303
+114.6	0.013919
+114.72	0.0139077
+114.84	0.0138964
+114.96	0.0138851
+115.08	0.0138739
+115.2	0.0138627
+115.32	0.0138515
+115.44	0.0138403
+115.56	0.0138291
+115.68	0.013818
+115.8	0.0138069
+115.92	0.0137958
+116.04	0.0137847
+116.16	0.0137737
+116.28	0.0137626
+116.4	0.0137516
+116.52	0.0137406
+116.64	0.0137296
+116.76	0.0137187
+116.88	0.0137077
+117	0.0136968
+117.12	0.0136859
+117.24	0.0136751
+117.36	0.0136642
+117.48	0.0136534
+117.6	0.0136425
+117.72	0.0136317
+117.84	0.013621
+117.96	0.0136102
+118.08	0.0135995
+118.2	0.0135887
+118.32	0.013578
+118.44	0.0135674
+118.56	0.0135567
+118.68	0.0135461
+118.8	0.0135354
+118.92	0.0135248
+119.04	0.0135143
+119.16	0.0135037
+119.28	0.0134931
+119.4	0.0134826
+119.52	0.0134721
+119.64	0.0134616
+119.76	0.0134511
+119.88	0.0134407
+120	0.0134302
+120.12	0.0134198
+120.24	0.0134094
+120.36	0.013399
+120.48	0.0133887
+120.6	0.0133783
+120.72	0.013368
+120.84	0.0133577
+120.96	0.0133474
+121.08	0.0133371
+121.2	0.0133269
+121.32	0.0133166
+121.44	0.0133064
+121.56	0.0132962
+121.68	0.013286
+121.8	0.0132759
+121.92	0.0132657
+122.04	0.0132556
+122.16	0.0132455
+122.28	0.0132354
+122.4	0.0132253
+122.52	0.0132153
+122.64	0.0132052
+122.76	0.0131952
+122.88	0.0131852
+123	0.0131752
+123.12	0.0131652
+123.24	0.0131553
+123.36	0.0131453
+123.48	0.0131354
+123.6	0.0131255
+123.72	0.0131156
+123.84	0.0131057
+123.96	0.0130959
+124.08	0.013086
+124.2	0.0130762
+124.32	0.0130664
+124.44	0.0130566
+124.56	0.0130469
+124.68	0.0130371
+124.8	0.0130274
+124.92	0.0130177
+125.04	0.013008
+125.16	0.0129983
+125.28	0.0129886
+125.4	0.0129789
+125.52	0.0129693
+125.64	0.0129597
+125.76	0.0129501
+125.88	0.0129405
+126	0.0129309
+126.12	0.0129214
+126.24	0.0129118
+126.36	0.0129023
+126.48	0.0128928
+126.6	0.0128833
+126.72	0.0128738
+126.84	0.0128643
+126.96	0.0128549
+127.08	0.0128455
+127.2	0.0128361
+127.32	0.0128267
+127.44	0.0128173
+127.56	0.0128079
+127.68	0.0127986
+127.8	0.0127892
+127.92	0.0127799
+128.04	0.0127706
+128.16	0.0127613
+128.28	0.012752
+128.4	0.0127428
+128.52	0.0127335
+128.64	0.0127243
+128.76	0.0127151
+128.88	0.0127059
+129	0.0126967
+129.12	0.0126876
+129.24	0.0126784
+129.36	0.0126693
+129.48	0.0126601
+129.6	0.012651
+129.72	0.0126419
+129.84	0.0126329
+129.96	0.0126238
+130.08	0.0126148
+130.2	0.0126057
+130.32	0.0125967
+130.44	0.0125877
+130.56	0.0125787
+130.68	0.0125697
+130.8	0.0125608
+130.92	0.0125518
+131.04	0.0125429
+131.16	0.012534
+131.28	0.0125251
+131.4	0.0125162
+131.52	0.0125073
+131.64	0.0124985
+131.76	0.0124896
+131.88	0.0124808
+132	0.012472
+132.12	0.0124632
+132.24	0.0124544
+132.36	0.0124456
+132.48	0.0124369
+132.6	0.0124281
+132.72	0.0124194
+132.84	0.0124107
+132.96	0.012402
+133.08	0.0123933
+133.2	0.0123846
+133.32	0.012376
+133.44	0.0123673
+133.56	0.0123587
+133.68	0.0123501
+133.8	0.0123415
+133.92	0.0123329
+134.04	0.0123243
+134.16	0.0123157
+134.28	0.0123072
+134.4	0.0122986
+134.52	0.0122901
+134.64	0.0122816
+134.76	0.0122731
+134.88	0.0122646
+135	0.0122562
+135.12	0.0122477
+135.24	0.0122393
+135.36	0.0122308
+135.48	0.0122224
+135.6	0.012214
+135.72	0.0122056
+135.84	0.0121973
+135.96	0.0121889
+136.08	0.0121805
+136.2	0.0121722
+136.32	0.0121639
+136.44	0.0121556
+136.56	0.0121473
+136.68	0.012139
+136.8	0.0121307
+136.92	0.0121225
+137.04	0.0121142
+137.16	0.012106
+137.28	0.0120978
+137.4	0.0120895
+137.52	0.0120814
+137.64	0.0120732
+137.76	0.0120737
+137.88	0.0120656
+138	0.0120574
+138.12	0.0120492
+138.24	0.0120411
+138.36	0.012033
+138.48	0.0120249
+138.6	0.0120168
+138.72	0.0120087
+138.84	0.0120006
+138.96	0.0119925
+139.08	0.0119845
+139.2	0.0119765
+139.32	0.0119684
+139.44	0.0119604
+139.56	0.0119524
+139.68	0.0119444
+139.8	0.0119365
+139.92	0.0119285
+140.04	0.0119205
+140.16	0.0119126
+140.28	0.0119047
+140.4	0.0118968
+140.52	0.0118889
+140.64	0.011881
+140.76	0.0118731
+140.88	0.0118652
+141	0.0118574
+141.12	0.0118495
+141.24	0.0118417
+141.36	0.0118339
+141.48	0.0118261
+141.6	0.0118183
+141.72	0.0118105
+141.84	0.0118027
+141.96	0.011795
+142.08	0.0117872
+142.2	0.0117795
+142.32	0.0117717
+142.44	0.011764
+142.56	0.0117563
+142.68	0.0117486
+142.8	0.011741
+142.92	0.0117333
+143.04	0.0117256
+143.16	0.011718
+143.28	0.0117104
+143.4	0.0117027
+143.52	0.0116951
+143.64	0.0116875
+143.76	0.0116799
+143.88	0.0116724
+144	0.0116648
+144.12	0.0116572
+144.24	0.0116497
+144.36	0.0116422
+144.48	0.0116347
+144.6	0.0116271
+144.72	0.0116196
+144.84	0.0116122
+144.96	0.0116047
+145.08	0.0115972
+145.2	0.0115898
+145.32	0.0115823
+145.44	0.0115749
+145.56	0.0115675
+145.68	0.0115601
+145.8	0.0115527
+145.92	0.0115453
+146.04	0.0115379
+146.16	0.0115305
+146.28	0.0115232
+146.4	0.0115158
+146.52	0.0115085
+146.64	0.0115012
+146.76	0.0114939
+146.88	0.0114866
+147	0.0114793
+147.12	0.011472
+147.24	0.0114647
+147.36	0.0114575
+147.48	0.0114502
+147.6	0.011443
+147.72	0.0114357
+147.84	0.0114285
+147.96	0.0114213
+148.08	0.0114141
+148.2	0.0114069
+148.32	0.0113998
+148.44	0.0113926
+148.56	0.0113855
+148.68	0.0113783
+148.8	0.0113712
+148.92	0.0113641
+149.04	0.0113569
+149.16	0.0113498
+149.28	0.0113428
+149.4	0.0113357
+149.52	0.0113286
+149.64	0.0113215
+149.76	0.0113145
+149.88	0.0113074
+150	0.0113004
+150.12	0.0112934
+150.24	0.0112864
+150.36	0.0112794
+150.48	0.0112724
+150.6	0.0112654
+150.72	0.0112584
+150.84	0.0112515
+150.96	0.0112445
+151.08	0.0112376
+151.2	0.0112307
+151.32	0.0112237
+151.44	0.0112168
+151.56	0.0112099
+151.68	0.011203
+151.8	0.0111962
+151.92	0.0111893
+152.04	0.0111824
+152.16	0.0111756
+152.28	0.0111687
+152.4	0.0111619
+152.52	0.0111551
+152.64	0.0111483
+152.76	0.0111414
+152.88	0.0111347
+153	0.0111279
+153.12	0.0111211
+153.24	0.0111143
+153.36	0.0111076
+153.48	0.0111008
+153.6	0.0110941
+153.72	0.0110874
+153.84	0.0110806
+153.96	0.0110739
+154.08	0.0110672
+154.2	0.0110605
+154.32	0.0110539
+154.44	0.0110472
+154.56	0.0110405
+154.68	0.0110339
+154.8	0.0110272
+154.92	0.0110206
+155.04	0.011014
+155.16	0.0110073
+155.28	0.0110007
+155.4	0.0109941
+155.52	0.0109875
+155.64	0.010981
+155.76	0.0109744
+155.88	0.0109678
+156	0.0109613
+156.12	0.0109547
+156.24	0.0109482
+156.36	0.0109417
+156.48	0.0109352
+156.6	0.0109286
+156.72	0.0109221
+156.84	0.0109157
+156.96	0.0109092
+157.08	0.0109027
+157.2	0.0108962
+157.32	0.0108898
+157.44	0.0108833
+157.56	0.0108769
+157.68	0.0108705
+157.8	0.0108641
+157.92	0.0108576
+158.04	0.0108512
+158.16	0.0108449
+158.28	0.0108385
+158.4	0.0108321
+158.52	0.0108257
+158.64	0.0108194
+158.76	0.010813
+158.88	0.0108067
+159	0.0108003
+159.12	0.010794
+159.24	0.0107877
+159.36	0.0107814
+159.48	0.0107751
+159.6	0.0107688
+159.72	0.0107625
+159.84	0.0107562
+159.96	0.01075
+160.08	0.0107437
+160.2	0.0107375
+160.32	0.0107312
+160.44	0.010725
+160.56	0.0107188
+160.68	0.0107126
+160.8	0.0107064
+160.92	0.0107002
+161.04	0.010694
+161.16	0.0106878
+161.28	0.0106816
+161.4	0.0106754
+161.52	0.0106693
+161.64	0.0106631
+161.76	0.010657
+161.88	0.0106509
+162	0.0106448
+162.12	0.0106386
+162.24	0.0106325
+162.36	0.0106264
+162.48	0.0106203
+162.6	0.0106143
+162.72	0.0106082
+162.84	0.0106021
+162.96	0.0105961
+163.08	0.01059
+163.2	0.010584
+163.32	0.0105779
+163.44	0.0105719
+163.56	0.0105659
+163.68	0.0105599
+163.8	0.0105539
+163.92	0.0105479
+164.04	0.0105419
+164.16	0.0105359
+164.28	0.0105299
+164.4	0.010524
+164.52	0.010518
+164.64	0.0105121
+164.76	0.0105061
+164.88	0.0105002
+165	0.0104943
+165.12	0.0104884
+165.24	0.0104825
+165.36	0.0104765
+165.48	0.0104707
+165.6	0.0104648
+165.72	0.0104589
+165.84	0.010453
+165.96	0.0104472
+166.08	0.0104413
+166.2	0.0104355
+166.32	0.0104296
+166.44	0.0104238
+166.56	0.010418
+166.68	0.0104121
+166.8	0.0104063
+166.92	0.0104005
+167.04	0.0103947
+167.16	0.0103889
+167.28	0.0103832
+167.4	0.0103774
+167.52	0.0103716
+167.64	0.0103659
+167.76	0.0103601
+167.88	0.0103544
+168	0.0103486
+168.12	0.0103429
+168.24	0.0103372
+168.36	0.0103315
+168.48	0.0103258
+168.6	0.0103201
+168.72	0.0103144
+168.84	0.0103087
+168.96	0.010303
+169.08	0.0102974
+169.2	0.0102917
+169.32	0.010286
+169.44	0.0102804
+169.56	0.0102748
+169.68	0.0102691
+169.8	0.0102635
+169.92	0.0102579
+170.04	0.0102523
+170.16	0.0102467
+170.28	0.0102411
+170.4	0.0102355
+170.52	0.0102299
+170.64	0.0102243
+170.76	0.0102187
+170.88	0.0102132
+171	0.0102076
+171.12	0.0102021
+171.24	0.0101965
+171.36	0.010191
+171.48	0.0101855
+171.6	0.01018
+171.72	0.0101744
+171.84	0.0101689
+171.96	0.0101634
+172.08	0.0101579
+172.2	0.0101525
+172.32	0.010147
+172.44	0.0101415
+172.56	0.010136
+172.68	0.0101306
+172.8	0.0101251
+172.92	0.0101197
+173.04	0.0101143
+173.16	0.0101088
+173.28	0.0101034
+173.4	0.010098
+173.52	0.0100926
+173.64	0.0100872
+173.76	0.0100818
+173.88	0.0100764
+174	0.010071
+174.12	0.0100656
+174.24	0.0100602
+174.36	0.0100549
+174.48	0.0100495
+174.6	0.0100442
+174.72	0.0100388
+174.84	0.0100335
+174.96	0.0100282
+175.08	0.0100228
+175.2	0.0100175
+175.32	0.0100122
+175.44	0.0100069
+175.56	0.0100016
+175.68	0.00999632
+175.8	0.00999104
+175.92	0.00998576
+176.04	0.00998049
+176.16	0.00997522
+176.28	0.00996996
+176.4	0.00996471
+176.52	0.00995947
+176.64	0.00995423
+176.76	0.00994899
+176.88	0.00994377
+177	0.00993855
+177.12	0.00993333
+177.24	0.00992813
+177.36	0.00992293
+177.48	0.00991773
+177.6	0.00991255
+177.72	0.00990736
+177.84	0.00990219
+177.96	0.00989702
+178.08	0.00989186
+178.2	0.0098867
+178.32	0.00988156
+178.44	0.00987641
+178.56	0.00987128
+178.68	0.00986615
+178.8	0.00986102
+178.92	0.0098559
+179.04	0.00985079
+179.16	0.00984569
+179.28	0.00984059
+179.4	0.00983549
+179.52	0.00983041
+179.64	0.00982533
+179.76	0.00982025
+179.88	0.00981518
+180	0.00981012
+180.12	0.00980506
+180.24	0.00980001
+180.36	0.00979497
+180.48	0.00978993
+180.6	0.0097849
+180.72	0.00977987
+180.84	0.00977485
+180.96	0.00976984
+181.08	0.00976483
+181.2	0.00975983
+181.32	0.00975483
+181.44	0.00974984
+181.56	0.00974486
+181.68	0.00973988
+181.8	0.00973491
+181.92	0.00972994
+182.04	0.00972498
+182.16	0.00972002
+182.28	0.00971507
+182.4	0.00971013
+182.52	0.0097052
+182.64	0.00970026
+182.76	0.00969534
+182.88	0.00969042
+183	0.00968551
+183.12	0.0096806
+183.24	0.0096757
+183.36	0.0096708
+183.48	0.00966591
+183.6	0.00966103
+183.72	0.00965615
+183.84	0.00965127
+183.96	0.00964641
+184.08	0.00964154
+184.2	0.00963669
+184.32	0.00963184
+184.44	0.00962699
+184.56	0.00962216
+184.68	0.00961732
+184.8	0.0096125
+184.92	0.00960767
+185.04	0.00960286
+185.16	0.00959805
+185.28	0.00959324
+185.4	0.00958844
+185.52	0.00958365
+185.64	0.00957886
+185.76	0.00957408
+185.88	0.0095693
+186	0.00956453
+186.12	0.00955977
+186.24	0.00955501
+186.36	0.00955025
+186.48	0.0095455
+186.6	0.00954076
+186.72	0.00953602
+186.84	0.00953129
+186.96	0.00952656
+187.08	0.00952184
+187.2	0.00951713
+187.32	0.00951242
+187.44	0.00950771
+187.56	0.00950301
+187.68	0.00949832
+187.8	0.00949363
+187.92	0.00948895
+188.04	0.00948427
+188.16	0.0094796
+188.28	0.00947493
+188.4	0.00947027
+188.52	0.00946561
+188.64	0.00946096
+188.76	0.00945632
+188.88	0.00945168
+189	0.00944704
+189.12	0.00944241
+189.24	0.00943779
+189.36	0.00943317
+189.48	0.00942856
+189.6	0.00942395
+189.72	0.00941934
+189.84	0.00941475
+189.96	0.00941015
+190.08	0.00940557
+190.2	0.00940098
+190.32	0.00939641
+190.44	0.00939184
+190.56	0.00938727
+190.68	0.00938271
+190.8	0.00937815
+190.92	0.0093736
+191.04	0.00936906
+191.16	0.00936452
+191.28	0.00935998
+191.4	0.00935545
+191.52	0.00935093
+191.64	0.00934641
+191.76	0.00934189
+191.88	0.00933738
+192	0.00933288
+192.12	0.00932838
+192.24	0.00932389
+192.36	0.0093194
+192.48	0.00931491
+192.6	0.00931043
+192.72	0.00930596
+192.84	0.00930149
+192.96	0.00929703
+193.08	0.00929257
+193.2	0.00928811
+193.32	0.00928367
+193.44	0.00927922
+193.56	0.00927478
+193.68	0.00927035
+193.8	0.00926592
+193.92	0.0092615
+194.04	0.00925708
+194.16	0.00925266
+194.28	0.00924825
+194.4	0.00924385
+194.52	0.00923945
+194.64	0.00923506
+194.76	0.00923067
+194.88	0.00922628
+195	0.0092219
+195.12	0.00921753
+195.24	0.00921316
+195.36	0.00920879
+195.48	0.00920443
+195.6	0.00920008
+195.72	0.00919573
+195.84	0.00919138
+195.96	0.00918704
+196.08	0.00918271
+196.2	0.00917838
+196.32	0.00917405
+196.44	0.00916973
+196.56	0.00916541
+196.68	0.0091611
+196.8	0.00915679
+196.92	0.00915249
+197.04	0.00914819
+197.16	0.0091439
+197.28	0.00913961
+197.4	0.00913533
+197.52	0.00913105
+197.64	0.00912678
+197.76	0.00912251
+197.88	0.00911824
+198	0.00911398
+198.12	0.00910973
+198.24	0.00910548
+198.36	0.00910123
+198.48	0.00909699
+198.6	0.00909275
+198.72	0.00908852
+198.84	0.00908429
+198.96	0.00908007
+199.08	0.00907585
+199.2	0.00907164
+199.32	0.00906743
+199.44	0.00906323
+199.56	0.00905903
+199.68	0.00905483
+199.8	0.00905064
+199.92	0.00904646
+200.04	0.00904228
+200.16	0.0090381
+200.28	0.00903393
+200.4	0.00902976
+200.52	0.0090256
+200.64	0.00902144
+200.76	0.00901728
+200.88	0.00901313
+201	0.00900899
+201.12	0.00900485
+201.24	0.00900071
+201.36	0.00899658
+201.48	0.00899245
+201.6	0.00899289
+201.72	0.00898878
+201.84	0.00898466
+201.96	0.00898055
+202.08	0.00897645
+202.2	0.00897235
+202.32	0.00896825
+202.44	0.00896416
+202.56	0.00896008
+202.68	0.00895599
+202.8	0.00895191
+202.92	0.00894784
+203.04	0.00894377
+203.16	0.00893971
+203.28	0.00893565
+203.4	0.00893159
+203.52	0.00892754
+203.64	0.00892349
+203.76	0.00891945
+203.88	0.00891541
+204	0.00891137
+204.12	0.00890734
+204.24	0.00890332
+204.36	0.0088993
+204.48	0.00889528
+204.6	0.00889126
+204.72	0.00888726
+204.84	0.00888325
+204.96	0.00887925
+205.08	0.00887525
+205.2	0.00887126
+205.32	0.00886727
+205.44	0.00886329
+205.56	0.00885931
+205.68	0.00885534
+205.8	0.00885137
+205.92	0.0088474
+206.04	0.00884344
+206.16	0.00883948
+206.28	0.00883552
+206.4	0.00883157
+206.52	0.00882763
+206.64	0.00882369
+206.76	0.00881975
+206.88	0.00881582
+207	0.00881189
+207.12	0.00880796
+207.24	0.00880404
+207.36	0.00880012
+207.48	0.00879621
+207.6	0.0087923
+207.72	0.0087884
+207.84	0.0087845
+207.96	0.0087806
+208.08	0.00877671
+208.2	0.00877282
+208.32	0.00876894
+208.44	0.00876506
+208.56	0.00876118
+208.68	0.00875731
+208.8	0.00875344
+208.92	0.00874958
+209.04	0.00874572
+209.16	0.00874186
+209.28	0.00873801
+209.4	0.00873416
+209.52	0.00873032
+209.64	0.00872648
+209.76	0.00872264
+209.88	0.00871881
+210	0.00871498
+210.12	0.00871116
+210.24	0.00870734
+210.36	0.00870352
+210.48	0.00869971
+210.6	0.0086959
+210.72	0.0086921
+210.84	0.0086883
+210.96	0.0086845
+211.08	0.00868071
+211.2	0.00867692
+211.32	0.00867313
+211.44	0.00866935
+211.56	0.00866558
+211.68	0.0086618
+211.8	0.00865804
+211.92	0.00865427
+212.04	0.00865051
+212.16	0.00864675
+212.28	0.008643
+212.4	0.00863925
+212.52	0.0086355
+212.64	0.00863176
+212.76	0.00862802
+212.88	0.00862429
+213	0.00862056
+213.12	0.00861683
+213.24	0.00861311
+213.36	0.00860939
+213.48	0.00860567
+213.6	0.00860196
+213.72	0.00859825
+213.84	0.00859455
+213.96	0.00859085
+214.08	0.00858715
+214.2	0.00858346
+214.32	0.00857977
+214.44	0.00857609
+214.56	0.0085724
+214.68	0.00856873
+214.8	0.00856505
+214.92	0.00856138
+215.04	0.00855772
+215.16	0.00855405
+215.28	0.00855039
+215.4	0.00854674
+215.52	0.00854309
+215.64	0.00853944
+215.76	0.00853579
+215.88	0.00853215
+216	0.00852852
+216.12	0.00852488
+216.24	0.00852125
+216.36	0.00851763
+216.48	0.00851401
+216.6	0.00851039
+216.72	0.00850677
+216.84	0.00850316
+216.96	0.00849955
+217.08	0.00849595
+217.2	0.00849235
+217.32	0.00848875
+217.44	0.00848516
+217.56	0.00848157
+217.68	0.00847798
+217.8	0.0084744
+217.92	0.00847082
+218.04	0.00846724
+218.16	0.00846367
+218.28	0.00846011
+218.4	0.00845654
+218.52	0.00845298
+218.64	0.00844942
+218.76	0.00844587
+218.88	0.00844232
+219	0.00843877
+219.12	0.00843523
+219.24	0.00843169
+219.36	0.00842815
+219.48	0.00842462
+219.6	0.00842109
+219.72	0.00841756
+219.84	0.00841404
+219.96	0.00841052
+220.08	0.00840701
+220.2	0.00840349
+220.32	0.00839999
+220.44	0.00839648
+220.56	0.00839298
+220.68	0.00838948
+220.8	0.00838599
+220.92	0.0083825
+221.04	0.00837901
+221.16	0.00837552
+221.28	0.00837204
+221.4	0.00836857
+221.52	0.00836509
+221.64	0.00836162
+221.76	0.00835816
+221.88	0.00835469
+222	0.00835123
+222.12	0.00834778
+222.24	0.00834432
+222.36	0.00834087
+222.48	0.00833742
+222.6	0.00833398
+222.72	0.00833054
+222.84	0.00832711
+222.96	0.00832367
+223.08	0.00832024
+223.2	0.00831682
+223.32	0.00831339
+223.44	0.00830997
+223.56	0.00830656
+223.68	0.00830314
+223.8	0.00829973
+223.92	0.00829633
+224.04	0.00829292
+224.16	0.00828952
+224.28	0.00828613
+224.4	0.00828274
+224.52	0.00827935
+224.64	0.00827596
+224.76	0.00827258
+224.88	0.0082692
+225	0.00826582
+225.12	0.00826245
+225.24	0.00825908
+225.36	0.00825571
+225.48	0.00825234
+225.6	0.00824898
+225.72	0.00824563
+225.84	0.00824227
+225.96	0.00823892
+226.08	0.00823558
+226.2	0.00823223
+226.32	0.00822889
+226.44	0.00822555
+226.56	0.00822222
+226.68	0.00821889
+226.8	0.00821556
+226.92	0.00821223
+227.04	0.00820891
+227.16	0.00820559
+227.28	0.00820228
+227.4	0.00819897
+227.52	0.00819566
+227.64	0.00819235
+227.76	0.00818905
+227.88	0.00818575
+228	0.00818245
+228.12	0.00817916
+228.24	0.00817587
+228.36	0.00817258
+228.48	0.0081693
+228.6	0.00816602
+228.72	0.00816274
+228.84	0.00815947
+228.96	0.0081562
+229.08	0.00815293
+229.2	0.00814966
+229.32	0.0081464
+229.44	0.00814314
+229.56	0.00813989
+229.68	0.00813664
+229.8	0.00813339
+229.92	0.00813014
+230.04	0.0081269
+230.16	0.00812366
+230.28	0.00812042
+230.4	0.00811719
+230.52	0.00811395
+230.64	0.00811073
+230.76	0.0081075
+230.88	0.00810428
+231	0.00810106
+231.12	0.00809785
+231.24	0.00809463
+231.36	0.00809142
+231.48	0.00808822
+231.6	0.00808501
+231.72	0.00808181
+231.84	0.00807862
+231.96	0.00807542
+232.08	0.00807223
+232.2	0.00806904
+232.32	0.00806586
+232.44	0.00806267
+232.56	0.00805949
+232.68	0.00805632
+232.8	0.00805314
+232.92	0.00804997
+233.04	0.00804681
+233.16	0.00804364
+233.28	0.00804048
+233.4	0.00803732
+233.52	0.00803417
+233.64	0.00803101
+233.76	0.00802786
+233.88	0.00802472
+234	0.00802157
+234.12	0.00801843
+234.24	0.00801529
+234.36	0.00801216
+234.48	0.00800903
+234.6	0.0080059
+234.72	0.00800277
+234.84	0.00799965
+234.96	0.00799653
+235.08	0.00799341
+235.2	0.00799029
+235.32	0.00798718
+235.44	0.00798407
+235.56	0.00798097
+235.68	0.00797786
+235.8	0.00797476
+235.92	0.00797167
+236.04	0.00796857
+236.16	0.00796548
+236.28	0.00796239
+236.4	0.00795931
+236.52	0.00795622
+236.64	0.00795314
+236.76	0.00795007
+236.88	0.00794699
+237	0.00794392
+237.12	0.00794085
+237.24	0.00793779
+237.36	0.00793473
+237.48	0.00793167
+237.6	0.00792861
+237.72	0.00792556
+237.84	0.00792251
+237.96	0.00791946
+238.08	0.00791641
+238.2	0.00791337
+238.32	0.00791033
+238.44	0.00790729
+238.56	0.00790426
+238.68	0.00790123
+238.8	0.0078982
+238.92	0.00789517
+239.04	0.00789215
+239.16	0.00788913
+239.28	0.00788611
+239.4	0.0078831
+239.52	0.00788008
+239.64	0.00787707
+239.76	0.00787407
+239.88	0.00787106
+240	0.00786806
+240.12	0.00786506
+240.24	0.00786207
+240.36	0.00785908
+240.48	0.00785608
+240.6	0.0078531
+240.72	0.00785011
+240.84	0.00784713
+240.96	0.00784415
+241.08	0.00784117
+241.2	0.0078382
+241.32	0.00783523
+241.44	0.00783226
+241.56	0.00782929
+241.68	0.00782633
+241.8	0.00782337
+241.92	0.00782041
+242.04	0.00781746
+242.16	0.00781451
+242.28	0.00781156
+242.4	0.00780861
+242.52	0.00780566
+242.64	0.00780272
+242.76	0.00779978
+242.88	0.00779685
+243	0.00779391
+243.12	0.00779098
+243.24	0.00778805
+243.36	0.00778513
+243.48	0.0077822
+243.6	0.00777928
+243.72	0.00777636
+243.84	0.00777345
+243.96	0.00777054
+244.08	0.00776763
+244.2	0.00776472
+244.32	0.00776181
+244.44	0.00775891
+244.56	0.00775601
+244.68	0.00775311
+244.8	0.00775022
+244.92	0.00774733
+245.04	0.00774444
+245.16	0.00774155
+245.28	0.00773867
+245.4	0.00773579
+245.52	0.00773291
+245.64	0.00773003
+245.76	0.00772716
+245.88	0.00772428
+246	0.00772142
+246.12	0.00771855
+246.24	0.00771569
+246.36	0.00771282
+246.48	0.00770997
+246.6	0.00770711
+246.72	0.00770426
+246.84	0.0077014
+246.96	0.00769856
+247.08	0.00769571
+247.2	0.00769287
+247.32	0.00769003
+247.44	0.00768719
+247.56	0.00768435
+247.68	0.00768152
+247.8	0.00767869
+247.92	0.00767586
+248.04	0.00767303
+248.16	0.00767021
+248.28	0.00766739
+248.4	0.00766457
+248.52	0.00766175
+248.64	0.00765894
+248.76	0.00765613
+248.88	0.00765332
+249	0.00765052
+249.12	0.00764771
+249.24	0.00764491
+249.36	0.00764211
+249.48	0.00763932
+249.6	0.00763652
+249.72	0.00763373
+249.84	0.00763094
+249.96	0.00762816
+250.08	0.00762537
+250.2	0.00762259
+250.32	0.00761981
+250.44	0.00761703
+250.56	0.00761426
+250.68	0.00761149
+250.8	0.00760872
+250.92	0.00760595
+251.04	0.00760319
+251.16	0.00760043
+251.28	0.00759767
+251.4	0.00759491
+251.52	0.00759215
+251.64	0.0075894
+251.76	0.00758665
+251.88	0.0075839
+252	0.00758116
+252.12	0.00757842
+252.24	0.00757568
+252.36	0.00757294
+252.48	0.0075702
+252.6	0.00756747
+252.72	0.00756474
+252.84	0.00756201
+252.96	0.00755928
+253.08	0.00755656
+253.2	0.00755384
+253.32	0.00755112
+253.44	0.0075484
+253.56	0.00754569
+253.68	0.00754297
+253.8	0.00754027
+253.92	0.00753756
+254.04	0.00753485
+254.16	0.00753215
+254.28	0.00752945
+254.4	0.00752675
+254.52	0.00752406
+254.64	0.00752136
+254.76	0.00751867
+254.88	0.00751598
+255	0.0075133
+255.12	0.00751061
+255.24	0.00750793
+255.36	0.00750525
+255.48	0.00750257
+255.6	0.0074999
+255.72	0.00749723
+255.84	0.00749456
+255.96	0.00749189
+256.08	0.00748922
+256.2	0.00748656
+256.32	0.0074839
+256.44	0.00748124
+256.56	0.00747858
+256.68	0.00747593
+256.8	0.00747327
+256.92	0.00747062
+257.04	0.00746798
+257.16	0.00746533
+257.28	0.00746269
+257.4	0.00746005
+257.52	0.00745741
+257.64	0.00745477
+257.76	0.00745214
+257.88	0.00744951
+258	0.00744688
+258.12	0.00744425
+258.24	0.00744162
+258.36	0.007439
+258.48	0.00743638
+258.6	0.00743376
+258.72	0.00743115
+258.84	0.00742853
+258.96	0.00742592
+259.08	0.00742331
+259.2	0.0074207
+259.32	0.0074181
+259.44	0.0074155
+259.56	0.00741289
+259.68	0.0074103
+259.8	0.0074077
+259.92	0.00740511
+260.04	0.00740251
+260.16	0.00739992
+260.28	0.00739734
+260.4	0.00739475
+260.52	0.00739217
+260.64	0.00738959
+260.76	0.00738701
+260.88	0.00738443
+261	0.00738186
+261.12	0.00737928
+261.24	0.00737671
+261.36	0.00737415
+261.48	0.00737158
+261.6	0.00736902
+261.72	0.00736645
+261.84	0.0073639
+261.96	0.00736134
+262.08	0.00735878
+262.2	0.00735623
+262.32	0.00735368
+262.44	0.00735113
+262.56	0.00734858
+262.68	0.00734604
+262.8	0.0073435
+262.92	0.00734096
+263.04	0.00733842
+263.16	0.00733588
+263.28	0.00733335
+263.4	0.00733082
+263.52	0.00732829
+263.64	0.00732576
+263.76	0.00732323
+263.88	0.00732071
+264	0.00731819
+264.12	0.00731567
+264.24	0.00731315
+264.36	0.00731064
+264.48	0.00730813
+264.6	0.00730562
+264.72	0.00730311
+264.84	0.0073006
+264.96	0.0072981
+265.08	0.00729559
+265.2	0.00729309
+265.32	0.00729059
+265.44	0.0072881
+265.56	0.0072856
+265.68	0.00728311
+265.8	0.00728062
+265.92	0.00727813
+266.04	0.00727565
+266.16	0.00727316
+266.28	0.00727068
+266.4	0.0072682
+266.52	0.00726572
+266.64	0.00726325
+266.76	0.00726078
+266.88	0.0072583
+267	0.00725583
+267.12	0.00725337
+267.24	0.0072509
+267.36	0.00724844
+267.48	0.00724598
+267.6	0.00724352
+267.72	0.00724106
+267.84	0.0072386
+267.96	0.00723615
+268.08	0.0072337
+268.2	0.00723125
+268.32	0.0072288
+268.44	0.00722636
+268.56	0.00722391
+268.68	0.00722147
+268.8	0.00721903
+268.92	0.0072166
+269.04	0.00721416
+269.16	0.00721173
+269.28	0.0072093
+269.4	0.00720687
+269.52	0.00720444
+269.64	0.00720201
+269.76	0.00719959
+269.88	0.00719717
+270	0.00719475
+270.12	0.00719233
+270.24	0.00718992
+270.36	0.0071875
+270.48	0.00718509
+270.6	0.00718268
+270.72	0.00718027
+270.84	0.00717787
+270.96	0.00717546
+271.08	0.00717306
+271.2	0.00717066
+271.32	0.00716826
+271.44	0.00716587
+271.56	0.00716347
+271.68	0.00716108
+271.8	0.00715869
+271.92	0.0071563
+272.04	0.00715392
+272.16	0.00715153
+272.28	0.00714915
+272.4	0.00714677
+272.52	0.00714439
+272.64	0.00714201
+272.76	0.00713964
+272.88	0.00713727
+273	0.0071349
+273.12	0.00713253
+273.24	0.00713016
+273.36	0.00712779
+273.48	0.00712543
+273.6	0.00712307
+273.72	0.00712071
+273.84	0.00711835
+273.96	0.007116
+274.08	0.00711364
+274.2	0.00711129
+274.32	0.00710894
+274.44	0.00710659
+274.56	0.00710425
+274.68	0.0071019
+274.8	0.00709956
+274.92	0.00709722
+275.04	0.00709488
+275.16	0.00709254
+275.28	0.00709021
+275.4	0.00708787
+275.52	0.00708554
+275.64	0.00708321
+275.76	0.00708089
+275.88	0.00707856
+276	0.00707624
+276.12	0.00707391
+276.24	0.00707159
+276.36	0.00706927
+276.48	0.00706696
+276.6	0.00706464
+276.72	0.00706233
+276.84	0.00706002
+276.96	0.00705771
+277.08	0.0070554
+277.2	0.0070531
+277.32	0.00705079
+277.44	0.00704849
+277.56	0.00704619
+277.68	0.00704389
+277.8	0.0070416
+277.92	0.0070393
+278.04	0.00703701
+278.16	0.00703472
+278.28	0.00703243
+278.4	0.00703014
+278.52	0.00702786
+278.64	0.00702557
+278.76	0.00702329
+278.88	0.00702101
+279	0.00701873
+279.12	0.00701646
+279.24	0.00701418
+279.36	0.00701191
+279.48	0.00700964
+279.6	0.00700737
+279.72	0.0070051
+279.84	0.00700284
+279.96	0.00700057
+280.08	0.00699831
+280.2	0.00699605
+280.32	0.00699379
+280.44	0.00699153
+280.56	0.00698928
+280.68	0.00698703
+280.8	0.00698477
+280.92	0.00698252
+281.04	0.00698028
+281.16	0.00697803
+281.28	0.00697578
+281.4	0.00697354
+281.52	0.0069713
+281.64	0.00696906
+281.76	0.00696682
+281.88	0.00696459
+282	0.00696235
+282.12	0.00696012
+282.24	0.00695789
+282.36	0.00695566
+282.48	0.00695344
+282.6	0.00695121
+282.72	0.00694899
+282.84	0.00694677
+282.96	0.00694455
+283.08	0.00694233
+283.2	0.00694011
+283.32	0.0069379
+283.44	0.00693568
+283.56	0.00693347
+283.68	0.00693126
+283.8	0.00692905
+283.92	0.00692685
+284.04	0.00692464
+284.16	0.00692244
+284.28	0.00692024
+284.4	0.00691804
+284.52	0.00691584
+284.64	0.00691364
+284.76	0.00691145
+284.88	0.00690926
+285	0.00690707
+285.12	0.00690488
+285.24	0.00690269
+285.36	0.0069005
+285.48	0.00689832
+285.6	0.00689614
+285.72	0.00689396
+285.84	0.00689178
+285.96	0.0068896
+286.08	0.00688742
+286.2	0.00688525
+286.32	0.00688308
+286.44	0.00688091
+286.56	0.00687874
+286.68	0.00687657
+286.8	0.0068744
+286.92	0.00687224
+287.04	0.00687008
+287.16	0.00686792
+287.28	0.00686576
+287.4	0.0068636
+287.52	0.00686144
+287.64	0.00685929
+287.76	0.00685714
+287.88	0.00685499
+288	0.00685284
+288.12	0.00685069
+288.24	0.00684854
+288.36	0.0068464
+288.48	0.00684426
+288.6	0.00684211
+288.72	0.00683998
+288.84	0.00683784
+288.96	0.0068357
+289.08	0.00683357
+289.2	0.00683143
+289.32	0.0068293
+289.44	0.00682717
+289.56	0.00682504
+289.68	0.00682292
+289.8	0.00682079
+289.92	0.00681867
+290.04	0.00681655
+290.16	0.00681443
+290.28	0.00681231
+290.4	0.00681019
+290.52	0.00680808
+290.64	0.00680597
+290.76	0.00680385
+290.88	0.00680174
+291	0.00679963
+291.12	0.00679753
+291.24	0.00679542
+291.36	0.00679332
+291.48	0.00679122
+291.6	0.00678911
+291.72	0.00678702
+291.84	0.00678492
+291.96	0.00678282
+292.08	0.00678073
+292.2	0.00677863
+292.32	0.00677654
+292.44	0.00677445
+292.56	0.00677237
+292.68	0.00677028
+292.8	0.00676819
+292.92	0.00676611
+293.04	0.00676403
+293.16	0.00676195
+293.28	0.00675987
+293.4	0.00675779
+293.52	0.00675572
+293.64	0.00675364
+293.76	0.00675157
+293.88	0.0067495
+294	0.00674743
+294.12	0.00674536
+294.24	0.0067433
+294.36	0.00674123
+294.48	0.00673917
+294.6	0.00673711
+294.72	0.00673505
+294.84	0.00673299
+294.96	0.00673093
+295.08	0.00672888
+295.2	0.00672682
+295.32	0.00672477
+295.44	0.00672272
+295.56	0.00672067
+295.68	0.00671862
+295.8	0.00671658
+295.92	0.00671453
+296.04	0.00671249
+296.16	0.00671045
+296.28	0.00670841
+296.4	0.00670637
+296.52	0.00670433
+296.64	0.0067023
+296.76	0.00670027
+296.88	0.00669823
+297	0.0066962
+297.12	0.00669417
+297.24	0.00669215
+297.36	0.00669012
+297.48	0.0066881
+297.6	0.00668607
+297.72	0.00668405
+297.84	0.00668203
+297.96	0.00668001
+298.08	0.006678
+298.2	0.00667598
+298.32	0.00667397
+298.44	0.00667196
+298.56	0.00666994
+298.68	0.00666793
+298.8	0.00666593
+298.92	0.00666392
+299.04	0.00666192
+299.16	0.00665991
+299.28	0.00665791
+299.4	0.00665591
+299.52	0.00665391
+299.64	0.00665191
+299.76	0.00664992
+299.88	0.00664792
+300	0.00664593
+300.12	0.00664394
+300.24	0.00664195
+300.36	0.00663996
+300.48	0.00663797
+300.6	0.00663598
+300.72	0.006634
+300.84	0.00663202
+300.96	0.00663003
+301.08	0.00662805
+301.2	0.00662608
+301.32	0.0066241
+301.44	0.00662212
+301.56	0.00662015
+301.68	0.00661818
+301.8	0.0066162
+301.92	0.00661423
+302.04	0.00661227
+302.16	0.0066103
+302.28	0.00660833
+302.4	0.00660637
+302.52	0.00660441
+302.64	0.00660244
+302.76	0.00660048
+302.88	0.00659853
+303	0.00659657
+303.12	0.00659461
+303.24	0.00659266
+303.36	0.00659071
+303.48	0.00658875
+303.6	0.0065868
+303.72	0.00658486
+303.84	0.00658291
+303.96	0.00658096
+304.08	0.00657902
+304.2	0.00657708
+304.32	0.00657513
+304.44	0.00657319
+304.56	0.00657126
+304.68	0.00656932
+304.8	0.00656738
+304.92	0.00656545
+305.04	0.00656352
+305.16	0.00656158
+305.28	0.00655965
+305.4	0.00655772
+305.52	0.0065558
+305.64	0.00655387
+305.76	0.00655195
+305.88	0.00655002
+306	0.0065481
+306.12	0.00654618
+306.24	0.00654426
+306.36	0.00654234
+306.48	0.00654043
+306.6	0.00653851
+306.72	0.0065366
+306.84	0.00653469
+306.96	0.00653278
+307.08	0.00653087
+307.2	0.00652896
+307.32	0.00652705
+307.44	0.00652515
+307.56	0.00652324
+307.68	0.00652134
+307.8	0.00651944
+307.92	0.00651754
+308.04	0.00651564
+308.16	0.00651375
+308.28	0.00651185
+308.4	0.00650996
+308.52	0.00650806
+308.64	0.00650617
+308.76	0.00650428
+308.88	0.00650239
+309	0.00650051
+309.12	0.00649862
+309.24	0.00649673
+309.36	0.00649485
+309.48	0.00649297
+309.6	0.00649109
+309.72	0.00648921
+309.84	0.00648733
+309.96	0.00648545
+310.08	0.00648358
+310.2	0.00648171
+310.32	0.00647983
+310.44	0.00647796
+310.56	0.00647609
+310.68	0.00647422
+310.8	0.00647236
+310.92	0.00647049
+311.04	0.00646862
+311.16	0.00646676
+311.28	0.0064649
+311.4	0.00646304
+311.52	0.00646118
+311.64	0.00645932
+311.76	0.00645746
+311.88	0.00645561
+312	0.00645375
+312.12	0.0064519
+312.24	0.00645005
+312.36	0.0064482
+312.48	0.00644635
+312.6	0.0064445
+312.72	0.00644266
+312.84	0.00644081
+312.96	0.00643897
+313.08	0.00643713
+313.2	0.00643528
+313.32	0.00643345
+313.44	0.00643161
+313.56	0.00642977
+313.68	0.00642793
+313.8	0.0064261
+313.92	0.00642427
+314.04	0.00642243
+314.16	0.0064206
+314.28	0.00641877
+314.4	0.00641695
+314.52	0.00641512
+314.64	0.00641329
+314.76	0.00641147
+314.88	0.00640965
+315	0.00640782
+315.12	0.006406
+315.24	0.00640418
+315.36	0.00640237
+315.48	0.00640055
+315.6	0.00639873
+315.72	0.00639692
+315.84	0.00639511
+315.96	0.0063933
+316.08	0.00639149
+316.2	0.00638968
+316.32	0.00638787
+316.44	0.00638606
+316.56	0.00638426
+316.68	0.00638245
+316.8	0.00638065
+316.92	0.00637885
+317.04	0.00637705
+317.16	0.00637525
+317.28	0.00637345
+317.4	0.00637166
+317.52	0.00636986
+317.64	0.00636807
+317.76	0.00636627
+317.88	0.00636448
+318	0.00636269
+318.12	0.0063609
+318.24	0.00635912
+318.36	0.00635733
+318.48	0.00635554
+318.6	0.00635376
+318.72	0.00635198
+318.84	0.0063502
+318.96	0.00634842
+319.08	0.00634664
+319.2	0.00634486
+319.32	0.00634308
+319.44	0.00634131
+319.56	0.00633953
+319.68	0.00633776
+319.8	0.00633599
+319.92	0.00633422
+320.04	0.00633245
+320.16	0.00633068
+320.28	0.00632891
+320.4	0.00632715
+320.52	0.00632538
+320.64	0.00632362
+320.76	0.00632186
+320.88	0.0063201
+321	0.00631834
+321.12	0.00631658
+321.24	0.00631482
+321.36	0.00631307
+321.48	0.00631131
+321.6	0.00630956
+321.72	0.00630781
+321.84	0.00630606
+321.96	0.00630431
+322.08	0.00630256
+322.2	0.00630081
+322.32	0.00629907
+322.44	0.00629732
+322.56	0.00629558
+322.68	0.00629383
+322.8	0.00629209
+322.92	0.00629035
+323.04	0.00628861
+323.16	0.00628688
+323.28	0.00628514
+323.4	0.0062834
+323.52	0.00628167
+323.64	0.00627994
+323.76	0.0062782
+323.88	0.00627647
+324	0.00627474
+324.12	0.00627302
+324.24	0.00627129
+324.36	0.00626956
+324.48	0.00626784
+324.6	0.00626611
+324.72	0.00626439
+324.84	0.00626267
+324.96	0.00626095
+325.08	0.00625923
+325.2	0.00625751
+325.32	0.0062558
+325.44	0.00625408
+325.56	0.00625237
+325.68	0.00625066
+325.8	0.00624894
+325.92	0.00624723
+326.04	0.00624552
+326.16	0.00624381
+326.28	0.00624211
+326.4	0.0062404
+326.52	0.0062387
+326.64	0.00623699
+326.76	0.00623529
+326.88	0.00623359
+327	0.00623189
+327.12	0.00623019
+327.24	0.00622849
+327.36	0.00622679
+327.48	0.0062251
+327.6	0.0062234
+327.72	0.00622171
+327.84	0.00622002
+327.96	0.00621833
+328.08	0.00621664
+328.2	0.00621495
+328.32	0.00621326
+328.44	0.00621157
+328.56	0.00620989
+328.68	0.0062082
+328.8	0.00620652
+328.92	0.00620484
+329.04	0.00620316
+329.16	0.00620148
+329.28	0.0061998
+329.4	0.00619812
+329.52	0.00619645
+329.64	0.00619477
+329.76	0.0061931
+329.88	0.00619142
+330	0.00618975
+330.12	0.00618808
+330.24	0.00618641
+330.36	0.00618474
+330.48	0.00618307
+330.6	0.00618141
+330.72	0.00617974
+330.84	0.00617808
+330.96	0.00617642
+331.08	0.00617475
+331.2	0.00617309
+331.32	0.00617143
+331.44	0.00616978
+331.56	0.00616812
+331.68	0.00616646
+331.8	0.00616481
+331.92	0.00616315
+332.04	0.0061615
+332.16	0.00615985
+332.28	0.0061582
+332.4	0.00615655
+332.52	0.0061549
+332.64	0.00615325
+332.76	0.00615161
+332.88	0.00614996
+333	0.00614832
+333.12	0.00614667
+333.24	0.00614503
+333.36	0.00614339
+333.48	0.00614175
+333.6	0.00614011
+333.72	0.00613847
+333.84	0.00613684
+333.96	0.0061352
+334.08	0.00613357
+334.2	0.00613193
+334.32	0.0061303
+334.44	0.00612867
+334.56	0.00612704
+334.68	0.00612541
+334.8	0.00612378
+334.92	0.00612216
+335.04	0.00612053
+335.16	0.00611891
+335.28	0.00611728
+335.4	0.00611566
+335.52	0.00611404
+335.64	0.00611242
+335.76	0.0061108
+335.88	0.00610918
+336	0.00610756
+336.12	0.00610595
+336.24	0.00610433
+336.36	0.00610272
+336.48	0.00610111
+336.6	0.00609949
+336.72	0.00609788
+336.84	0.00609627
+336.96	0.00609466
+337.08	0.00609306
+337.2	0.00609145
+337.32	0.00608985
+337.44	0.00608824
+337.56	0.00608664
+337.68	0.00608504
+337.8	0.00608343
+337.92	0.00608183
+338.04	0.00608023
+338.16	0.00607864
+338.28	0.00607704
+338.4	0.00607544
+338.52	0.00607385
+338.64	0.00607225
+338.76	0.00607066
+338.88	0.00606907
+339	0.00606748
+339.12	0.00606589
+339.24	0.0060643
+339.36	0.00606271
+339.48	0.00606113
+339.6	0.00605954
+339.72	0.00605796
+339.84	0.00605637
+339.96	0.00605479
+340.08	0.00605321
+340.2	0.00605163
+340.32	0.00605005
+340.44	0.00604847
+340.56	0.00604689
+340.68	0.00604532
+340.8	0.00604374
+340.92	0.00604217
+341.04	0.00604059
+341.16	0.00603902
+341.28	0.00603745
+341.4	0.00603588
+341.52	0.00603431
+341.64	0.00603274
+341.76	0.00603118
+341.88	0.00602961
+342	0.00602804
+342.12	0.00602648
+342.24	0.00602492
+342.36	0.00602335
+342.48	0.00602179
+342.6	0.00602023
+342.72	0.00601867
+342.84	0.00601712
+342.96	0.00601556
+343.08	0.006014
+343.2	0.00601245
+343.32	0.00601089
+343.44	0.00600934
+343.56	0.00600779
+343.68	0.00600624
+343.8	0.00600469
+343.92	0.00600314
+344.04	0.00600159
+344.16	0.00600004
+344.28	0.0059985
+344.4	0.00599695
+344.52	0.00599541
+344.64	0.00599387
+344.76	0.00599232
+344.88	0.00599078
+345	0.00598924
+345.12	0.0059877
+345.24	0.00598617
+345.36	0.00598463
+345.48	0.00598309
+345.6	0.00598156
+345.72	0.00598002
+345.84	0.00597849
+345.96	0.00597696
+346.08	0.00597543
+346.2	0.0059739
+346.32	0.00597237
+346.44	0.00597084
+346.56	0.00596931
+346.68	0.00596779
+346.8	0.00596626
+346.92	0.00596474
+347.04	0.00596321
+347.16	0.00596169
+347.28	0.00596017
+347.4	0.00595865
+347.52	0.00595713
+347.64	0.00595561
+347.76	0.00595409
+347.88	0.00595258
+348	0.00595106
+348.12	0.00594955
+348.24	0.00594803
+348.36	0.00594652
+348.48	0.00594501
+348.6	0.0059435
+348.72	0.00594199
+348.84	0.00594048
+348.96	0.00593897
+349.08	0.00593747
+349.2	0.00593596
+349.32	0.00593445
+349.44	0.00593295
+349.56	0.00593145
+349.68	0.00592995
+349.8	0.00592844
+349.92	0.00592694
+350.04	0.00592545
+350.16	0.00592395
+350.28	0.00592245
+350.4	0.00592095
+350.52	0.00591946
+350.64	0.00591796
+350.76	0.00591647
+350.88	0.00591498
+351	0.00591349
+351.12	0.00591199
+351.24	0.0059105
+351.36	0.00590902
+351.48	0.00590753
+351.6	0.00590604
+351.72	0.00590455
+351.84	0.00590307
+351.96	0.00590159
+352.08	0.0059001
+352.2	0.00589862
+352.32	0.00589714
+352.44	0.00589566
+352.56	0.00589418
+352.68	0.0058927
+352.8	0.00589122
+352.92	0.00588975
+353.04	0.00588827
+353.16	0.0058868
+353.28	0.00588532
+353.4	0.00588385
+353.52	0.00588238
+353.64	0.00588091
+353.76	0.00587944
+353.88	0.00587797
+354	0.0058765
+354.12	0.00587503
+354.24	0.00587356
+354.36	0.0058721
+354.48	0.00587063
+354.6	0.00586917
+354.72	0.00586771
+354.84	0.00586624
+354.96	0.00586478
+355.08	0.00586332
+355.2	0.00586186
+355.32	0.00586041
+355.44	0.00585895
+355.56	0.00585749
+355.68	0.00585604
+355.8	0.00585458
+355.92	0.00585313
+356.04	0.00585168
+356.16	0.00585022
+356.28	0.00584877
+356.4	0.00584732
+356.52	0.00584587
+356.64	0.00584443
+356.76	0.00584298
+356.88	0.00584153
+357	0.00584009
+357.12	0.00583864
+357.24	0.0058372
+357.36	0.00583575
+357.48	0.00583431
+357.6	0.00583287
+357.72	0.00583143
+357.84	0.00582999
+357.96	0.00582855
+358.08	0.00582712
+358.2	0.00582568
+358.32	0.00582424
+358.44	0.00582281
+358.56	0.00582137
+358.68	0.00581994
+358.8	0.00581851
+358.92	0.00581708
+359.04	0.00581565
+359.16	0.00581422
+359.28	0.00581279
+359.4	0.00581136
+359.52	0.00580994
+359.64	0.00580851
+359.76	0.00580708
+359.88	0.00580566
+360	0.00580424
+360.12	0.00580281
+360.24	0.00580139
+360.36	0.00579997
+360.48	0.00579855
+360.6	0.00579713
+360.72	0.00579571
+360.84	0.0057943
+360.96	0.00579288
+361.08	0.00579147
+361.2	0.00579005
+361.32	0.00578864
+361.44	0.00578722
+361.56	0.00578581
+361.68	0.0057844
+361.8	0.00578299
+361.92	0.00578158
+362.04	0.00578017
+362.16	0.00577877
+362.28	0.00577736
+362.4	0.00577595
+362.52	0.00577455
+362.64	0.00577314
+362.76	0.00577174
+362.88	0.00577034
+363	0.00576894
+363.12	0.00576754
+363.24	0.00576614
+363.36	0.00576474
+363.48	0.00576334
+363.6	0.00576194
+363.72	0.00576054
+363.84	0.00575915
+363.96	0.00575775
+364.08	0.00575636
+364.2	0.00575497
+364.32	0.00575357
+364.44	0.00575218
+364.56	0.00575079
+364.68	0.0057494
+364.8	0.00574801
+364.92	0.00574663
+365.04	0.00574524
+365.16	0.00574385
+365.28	0.00574247
+365.4	0.00574108
+365.52	0.0057397
+365.64	0.00573832
+365.76	0.00573693
+365.88	0.00573555
+366	0.00573417
+366.12	0.00573279
+366.24	0.00573141
+366.36	0.00573004
+366.48	0.00572866
+366.6	0.00572728
+366.72	0.00572591
+366.84	0.00572453
+366.96	0.00572316
+367.08	0.00572179
+367.2	0.00572041
+367.32	0.00571904
+367.44	0.00571767
+367.56	0.0057163
+367.68	0.00571493
+367.8	0.00571357
+367.92	0.0057122
+368.04	0.00571083
+368.16	0.00570947
+368.28	0.0057081
+368.4	0.00570674
+368.52	0.00570538
+368.64	0.00570401
+368.76	0.00570265
+368.88	0.00570129
+369	0.00569993
+369.12	0.00569857
+369.24	0.00569722
+369.36	0.00569586
+369.48	0.0056945
+369.6	0.00569315
+369.72	0.00569179
+369.84	0.00569044
+369.96	0.00568908
+370.08	0.00568773
+370.2	0.00568638
+370.32	0.00568503
+370.44	0.00568368
+370.56	0.00568233
+370.68	0.00568098
+370.8	0.00567963
+370.92	0.00567829
+371.04	0.00567694
+371.16	0.0056756
+371.28	0.00567425
+371.4	0.00567291
+371.52	0.00567157
+371.64	0.00567023
+371.76	0.00566888
+371.88	0.00566754
+372	0.0056662
+372.12	0.00566487
+372.24	0.00566353
+372.36	0.00566219
+372.48	0.00566086
+372.6	0.00565952
+372.72	0.00565819
+372.84	0.00565685
+372.96	0.00565552
+373.08	0.00565419
+373.2	0.00565285
+373.32	0.00565152
+373.44	0.00565019
+373.56	0.00564887
+373.68	0.00564754
+373.8	0.00564621
+373.92	0.00564488
+374.04	0.00564356
+374.16	0.00564223
+374.28	0.00564091
+374.4	0.00563958
+374.52	0.00563826
+374.64	0.00563694
+374.76	0.00563562
+374.88	0.0056343
+375	0.00563298
+375.12	0.00563166
+375.24	0.00563034
+375.36	0.00562902
+375.48	0.00562771
+375.6	0.00562639
+375.72	0.00562508
+375.84	0.00562376
+375.96	0.00562245
+376.08	0.00562114
+376.2	0.00561982
+376.32	0.00561851
+376.44	0.0056172
+376.56	0.00561589
+376.68	0.00561459
+376.8	0.00561328
+376.92	0.00561197
+377.04	0.00561066
+377.16	0.00560936
+377.28	0.00560805
+377.4	0.00560675
+377.52	0.00560545
+377.64	0.00560414
+377.76	0.00560284
+377.88	0.00560154
+378	0.00560024
+378.12	0.00559894
+378.24	0.00559764
+378.36	0.00559634
+378.48	0.00559505
+378.6	0.00559375
+378.72	0.00559246
+378.84	0.00559116
+378.96	0.00558987
+379.08	0.00558857
+379.2	0.00558728
+379.32	0.00558599
+379.44	0.0055847
+379.56	0.00558341
+379.68	0.00558212
+379.8	0.00558083
+379.92	0.00557954
+380.04	0.00557825
+380.16	0.00557697
+380.28	0.00557568
+380.4	0.0055744
+380.52	0.00557311
+380.64	0.00557183
+380.76	0.00557055
+380.88	0.00556926
+381	0.00556798
+381.12	0.0055667
+381.24	0.00556542
+381.36	0.00556414
+381.48	0.00556286
+381.6	0.00556159
+381.72	0.00556031
+381.84	0.00555903
+381.96	0.00555776
+382.08	0.00555648
+382.2	0.00555521
+382.32	0.00555394
+382.44	0.00555266
+382.56	0.00555139
+382.68	0.00555012
+382.8	0.00554885
+382.92	0.00554758
+383.04	0.00554631
+383.16	0.00554505
+383.28	0.00554378
+383.4	0.00554251
+383.52	0.00554125
+383.64	0.00553998
+383.76	0.00553872
+383.88	0.00553745
+384	0.00553619
+384.12	0.00553493
+384.24	0.00553367
+384.36	0.00553241
+384.48	0.00553115
+384.6	0.00552989
+384.72	0.00552863
+384.84	0.00552737
+384.96	0.00552612
+385.08	0.00552486
+385.2	0.0055236
+385.32	0.00552235
+385.44	0.0055211
+385.56	0.00551984
+385.68	0.00551859
+385.8	0.00551734
+385.92	0.00551609
+386.04	0.00551484
+386.16	0.00551359
+386.28	0.00551234
+386.4	0.00551109
+386.52	0.00550984
+386.64	0.00550859
+386.76	0.00550735
+386.88	0.0055061
+387	0.00550486
+387.12	0.00550361
+387.24	0.00550237
+387.36	0.00550113
+387.48	0.00549989
+387.6	0.00549865
+387.72	0.00549741
+387.84	0.00549617
+387.96	0.00549493
+388.08	0.00549369
+388.2	0.00549245
+388.32	0.00549121
+388.44	0.00548998
+388.56	0.00548874
+388.68	0.00548751
+388.8	0.00548627
+388.92	0.00548504
+389.04	0.00548381
+389.16	0.00548258
+389.28	0.00548135
+389.4	0.00548012
+389.52	0.00547889
+389.64	0.00547766
+389.76	0.00547643
+389.88	0.0054752
+390	0.00547397
+390.12	0.00547275
+390.24	0.00547152
+390.36	0.0054703
+390.48	0.00546907
+390.6	0.00546785
+390.72	0.00546663
+390.84	0.0054654
+390.96	0.00546418
+391.08	0.00546296
+391.2	0.00546174
+391.32	0.00546052
+391.44	0.00545931
+391.56	0.00545809
+391.68	0.00545687
+391.8	0.00545565
+391.92	0.00545444
+392.04	0.00545322
+392.16	0.00545201
+392.28	0.00545079
+392.4	0.00544958
+392.52	0.00544837
+392.64	0.00544716
+392.76	0.00544595
+392.88	0.00544474
+393	0.00544353
+393.12	0.00544232
+393.24	0.00544111
+393.36	0.0054399
+393.48	0.00543869
+393.6	0.00543749
+393.72	0.00543628
+393.84	0.00543508
+393.96	0.00543387
+394.08	0.00543267
+394.2	0.00543147
+394.32	0.00543027
+394.44	0.00542906
+394.56	0.00542786
+394.68	0.00542666
+394.8	0.00542546
+394.92	0.00542427
+395.04	0.00542307
+395.16	0.00542187
+395.28	0.00542067
+395.4	0.00541948
+395.52	0.00541828
+395.64	0.00541709
+395.76	0.00541589
+395.88	0.0054147
+396	0.00541351
+396.12	0.00541232
+396.24	0.00541112
+396.36	0.00540993
+396.48	0.00540874
+396.6	0.00540755
+396.72	0.00540637
+396.84	0.00540518
+396.96	0.00540399
+397.08	0.0054028
+397.2	0.00540162
+397.32	0.00540043
+397.44	0.00539925
+397.56	0.00539806
+397.68	0.00539688
+397.8	0.0053957
+397.92	0.00539452
+398.04	0.00539334
+398.16	0.00539215
+398.28	0.00539097
+398.4	0.0053898
+398.52	0.00538862
+398.64	0.00538744
+398.76	0.00538626
+398.88	0.00538508
+399	0.00538391
+399.12	0.00538273
+399.24	0.00538156
+399.36	0.00538038
+399.48	0.00537921
+399.6	0.00537804
+399.72	0.00537687
+399.84	0.0053757
+399.96	0.00537452
+400.08	0.00537335
+400.2	0.00537218
+400.32	0.00537102
+400.44	0.00536985
+400.56	0.00536868
+400.68	0.00536751
+400.8	0.00536635
+400.92	0.00536518
+401.04	0.00536402
+401.16	0.00536285
+401.28	0.00536169
+401.4	0.00536053
+401.52	0.00535936
+401.64	0.0053582
+401.76	0.00535704
+401.88	0.00535588
+402	0.00535472
+402.12	0.00535356
+402.24	0.0053524
+402.36	0.00535125
+402.48	0.00535009
+402.6	0.00534893
+402.72	0.00534778
+402.84	0.00534662
+402.96	0.00534547
+403.08	0.00534431
+403.2	0.00534316
+403.32	0.00534201
+403.44	0.00534085
+403.56	0.0053397
+403.68	0.00533855
+403.8	0.0053374
+403.92	0.00533625
+404.04	0.0053351
+404.16	0.00533396
+404.28	0.00533281
+404.4	0.00533166
+404.52	0.00533051
+404.64	0.00532937
+404.76	0.00532822
+404.88	0.00532708
+405	0.00532594
+405.12	0.00532479
+405.24	0.00532365
+405.36	0.00532251
+405.48	0.00532137
+405.6	0.00532023
+405.72	0.00531909
+405.84	0.00531795
+405.96	0.00531681
+406.08	0.00531567
+406.2	0.00531453
+406.32	0.0053134
+406.44	0.00531226
+406.56	0.00531112
+406.68	0.00530999
+406.8	0.00530885
+406.92	0.00530772
+407.04	0.00530659
+407.16	0.00530545
+407.28	0.00530432
+407.4	0.00530319
+407.52	0.00530206
+407.64	0.00530093
+407.76	0.0052998
+407.88	0.00529867
+408	0.00529754
+408.12	0.00529642
+408.24	0.00529529
+408.36	0.00529416
+408.48	0.00529304
+408.6	0.00529191
+408.72	0.00529079
+408.84	0.00528966
+408.96	0.00528854
+409.08	0.00528742
+409.2	0.0052863
+409.32	0.00528517
+409.44	0.00528405
+409.56	0.00528293
+409.68	0.00528181
+409.8	0.0052807
+409.92	0.00527958
+410.04	0.00527846
+410.16	0.00527734
+410.28	0.00527623
+410.4	0.00527511
+410.52	0.00527399
+410.64	0.00527288
+410.76	0.00527177
+410.88	0.00527065
+411	0.00526954
+411.12	0.00526843
+411.24	0.00526731
+411.36	0.0052662
+411.48	0.00526509
+411.6	0.00526398
+411.72	0.00526287
+411.84	0.00526177
+411.96	0.00526066
+412.08	0.00525955
+412.2	0.00525844
+412.32	0.00525734
+412.44	0.00525623
+412.56	0.00525513
+412.68	0.00525402
+412.8	0.00525292
+412.92	0.00525181
+413.04	0.00525071
+413.16	0.00524961
+413.28	0.00524851
+413.4	0.00524741
+413.52	0.00524631
+413.64	0.00524521
+413.76	0.00524411
+413.88	0.00524301
+414	0.00524191
+414.12	0.00524081
+414.24	0.00523972
+414.36	0.00523862
+414.48	0.00523753
+414.6	0.00523643
+414.72	0.00523534
+414.84	0.00523424
+414.96	0.00523315
+415.08	0.00523206
+415.2	0.00523096
+415.32	0.00522987
+415.44	0.00522878
+415.56	0.00522769
+415.68	0.0052266
+415.8	0.00522551
+415.92	0.00522442
+416.04	0.00522334
+416.16	0.00522225
+416.28	0.00522116
+416.4	0.00522008
+416.52	0.00521899
+416.64	0.00521791
+416.76	0.00521682
+416.88	0.00521574
+417	0.00521465
+417.12	0.00521357
+417.24	0.00521249
+417.36	0.00521141
+417.48	0.00521033
+417.6	0.00520925
+417.72	0.00520817
+417.84	0.00520709
+417.96	0.00520601
+418.08	0.00520493
+418.2	0.00520385
+418.32	0.00520278
+418.44	0.0052017
+418.56	0.00520062
+418.68	0.00519955
+418.8	0.00519847
+418.92	0.0051974
+419.04	0.00519633
+419.16	0.00519525
+419.28	0.00519418
+419.4	0.00519311
+419.52	0.00519204
+419.64	0.00519097
+419.76	0.0051899
+419.88	0.00518883
+420	0.00518776
+420.12	0.00518669
+420.24	0.00518562
+420.36	0.00518456
+420.48	0.00518349
+420.6	0.00518242
+420.72	0.00518136
+420.84	0.00518029
+420.96	0.00517923
+421.08	0.00517817
+421.2	0.0051771
+421.32	0.00517604
+421.44	0.00517498
+421.56	0.00517392
+421.68	0.00517286
+421.8	0.00517179
+421.92	0.00517073
+422.04	0.00516968
+422.16	0.00516862
+422.28	0.00516756
+422.4	0.0051665
+422.52	0.00516544
+422.64	0.00516439
+422.76	0.00516333
+422.88	0.00516228
+423	0.00516122
+423.12	0.00516017
+423.24	0.00515911
+423.36	0.00515806
+423.48	0.00515701
+423.6	0.00515596
+423.72	0.0051549
+423.84	0.00515385
+423.96	0.0051528
+424.08	0.00515175
+424.2	0.0051507
+424.32	0.00514966
+424.44	0.00514861
+424.56	0.00514756
+424.68	0.00514651
+424.8	0.00514547
+424.92	0.00514442
+425.04	0.00514337
+425.16	0.00514233
+425.28	0.00514129
+425.4	0.00514024
+425.52	0.0051392
+425.64	0.00513816
+425.76	0.00513711
+425.88	0.00513607
+426	0.00513503
+426.12	0.00513399
+426.24	0.00513295
+426.36	0.00513191
+426.48	0.00513087
+426.6	0.00512983
+426.72	0.0051288
+426.84	0.00512776
+426.96	0.00512672
+427.08	0.00512569
+427.2	0.00512465
+427.32	0.00512362
+427.44	0.00512258
+427.56	0.00512155
+427.68	0.00512051
+427.8	0.00511948
+427.92	0.00511845
+428.04	0.00511742
+428.16	0.00511639
+428.28	0.00511536
+428.4	0.00511433
+428.52	0.0051133
+428.64	0.00511227
+428.76	0.00511124
+428.88	0.00511021
+429	0.00510918
+429.12	0.00510816
+429.24	0.00510713
+429.36	0.0051061
+429.48	0.00510508
+429.6	0.00510405
+429.72	0.00510303
+429.84	0.00510201
+429.96	0.00510098
+430.08	0.00509996
+430.2	0.00509894
+430.32	0.00509792
+430.44	0.0050969
+430.56	0.00509587
+430.68	0.00509485
+430.8	0.00509384
+430.92	0.00509282
+431.04	0.0050918
+431.16	0.00509078
+431.28	0.00508976
+431.4	0.00508875
+431.52	0.00508773
+431.64	0.00508671
+431.76	0.0050857
+431.88	0.00508468
+432	0.00508367
+432.12	0.00508266
+432.24	0.00508164
+432.36	0.00508063
+432.48	0.00507962
+432.6	0.00507861
+432.72	0.0050776
+432.84	0.00507658
+432.96	0.00507557
+433.08	0.00507457
+433.2	0.00507356
+433.32	0.00507255
+433.44	0.00507154
+433.56	0.00507053
+433.68	0.00506953
+433.8	0.00506852
+433.92	0.00506751
+434.04	0.00506651
+434.16	0.0050655
+434.28	0.0050645
+434.4	0.0050635
+434.52	0.00506249
+434.64	0.00506149
+434.76	0.00506049
+434.88	0.00505949
+435	0.00505848
+435.12	0.00505748
+435.24	0.00505648
+435.36	0.00505548
+435.48	0.00505449
+435.6	0.00505349
+435.72	0.00505249
+435.84	0.00505149
+435.96	0.00505049
+436.08	0.0050495
+436.2	0.0050485
+436.32	0.00504751
+436.44	0.00504651
+436.56	0.00504552
+436.68	0.00504452
+436.8	0.00504353
+436.92	0.00504254
+437.04	0.00504154
+437.16	0.00504055
+437.28	0.00503956
+437.4	0.00503857
+437.52	0.00503758
+437.64	0.00503659
+437.76	0.0050356
+437.88	0.00503461
+438	0.00503362
+438.12	0.00503263
+438.24	0.00503165
+438.36	0.00503066
+438.48	0.00502967
+438.6	0.00502869
+438.72	0.0050277
+438.84	0.00502672
+438.96	0.00502573
+439.08	0.00502475
+439.2	0.00502377
+439.32	0.00502278
+439.44	0.0050218
+439.56	0.00502082
+439.68	0.00501984
+439.8	0.00501886
+439.92	0.00501788
+440.04	0.0050169
+440.16	0.00501592
+440.28	0.00501494
+440.4	0.00501396
+440.52	0.00501298
+440.64	0.005012
+440.76	0.00501103
+440.88	0.00501005
+441	0.00500907
+441.12	0.0050081
+441.24	0.00500712
+441.36	0.00500615
+441.48	0.00500518
+441.6	0.0050042
+441.72	0.00500323
+441.84	0.00500226
+441.96	0.00500128
+442.08	0.00500031
+442.2	0.00499934
+442.32	0.00499837
+442.44	0.0049974
+442.56	0.00499643
+442.68	0.00499546
+442.8	0.0049945
+442.92	0.00499353
+443.04	0.00499256
+443.16	0.00499159
+443.28	0.00499063
+443.4	0.00498966
+443.52	0.00498869
+443.64	0.00498773
+443.76	0.00498677
+443.88	0.0049858
+444	0.00498484
+444.12	0.00498388
+444.24	0.00498291
+444.36	0.00498195
+444.48	0.00498099
+444.6	0.00498003
+444.72	0.00497907
+444.84	0.00497811
+444.96	0.00497715
+445.08	0.00497619
+445.2	0.00497523
+445.32	0.00497427
+445.44	0.00497332
+445.56	0.00497236
+445.68	0.0049714
+445.8	0.00497045
+445.92	0.00496949
+446.04	0.00496854
+446.16	0.00496758
+446.28	0.00496663
+446.4	0.00496567
+446.52	0.00496472
+446.64	0.00496377
+446.76	0.00496282
+446.88	0.00496186
+447	0.00496091
+447.12	0.00495996
+447.24	0.00495901
+447.36	0.00495806
+447.48	0.00495711
+447.6	0.00495616
+447.72	0.00495522
+447.84	0.00495427
+447.96	0.00495332
+448.08	0.00495237
+448.2	0.00495143
+448.32	0.00495048
+448.44	0.00494954
+448.56	0.00494859
+448.68	0.00494765
+448.8	0.0049467
+448.92	0.00494576
+449.04	0.00494482
+449.16	0.00494387
+449.28	0.00494293
+449.4	0.00494199
+449.52	0.00494105
+449.64	0.00494011
+449.76	0.00493917
+449.88	0.00493823
+450	0.00493729
+450.12	0.00493635
+450.24	0.00493541
+450.36	0.00493447
+450.48	0.00493353
+450.6	0.0049326
+450.72	0.00493166
+450.84	0.00493072
+450.96	0.00492979
+451.08	0.00492885
+451.2	0.00492792
+451.32	0.00492698
+451.44	0.00492605
+451.56	0.00492512
+451.68	0.00492418
+451.8	0.00492325
+451.92	0.00492232
+452.04	0.00492139
+452.16	0.00492046
+452.28	0.00491953
+452.4	0.0049186
+452.52	0.00491767
+452.64	0.00491674
+452.76	0.00491581
+452.88	0.00491488
+453	0.00491395
+453.12	0.00491303
+453.24	0.0049121
+453.36	0.00491117
+453.48	0.00491025
+453.6	0.00490932
+453.72	0.0049084
+453.84	0.00490747
+453.96	0.00490655
+454.08	0.00490562
+454.2	0.0049047
+454.32	0.00490378
+454.44	0.00490285
+454.56	0.00490193
+454.68	0.00490101
+454.8	0.00490009
+454.92	0.00489917
+455.04	0.00489825
+455.16	0.00489733
+455.28	0.00489641
+455.4	0.00489549
+455.52	0.00489457
+455.64	0.00489366
+455.76	0.00489274
+455.88	0.00489182
+456	0.00489091
+456.12	0.00488999
+456.24	0.00488907
+456.36	0.00488816
+456.48	0.00488724
+456.6	0.00488633
+456.72	0.00488542
+456.84	0.0048845
+456.96	0.00488359
+457.08	0.00488268
+457.2	0.00488177
+457.32	0.00488085
+457.44	0.00487994
+457.56	0.00487903
+457.68	0.00487812
+457.8	0.00487721
+457.92	0.0048763
+458.04	0.0048754
+458.16	0.00487449
+458.28	0.00487358
+458.4	0.00487267
+458.52	0.00487176
+458.64	0.00487086
+458.76	0.00486995
+458.88	0.00486905
+459	0.00486814
+459.12	0.00486724
+459.24	0.00486633
+459.36	0.00486543
+459.48	0.00486452
+459.6	0.00486362
+459.72	0.00486272
+459.84	0.00486182
+459.96	0.00486091
+460.08	0.00486001
+460.2	0.00485911
+460.32	0.00485821
+460.44	0.00485731
+460.56	0.00485641
+460.68	0.00485551
+460.8	0.00485462
+460.92	0.00485372
+461.04	0.00485282
+461.16	0.00485192
+461.28	0.00485102
+461.4	0.00485013
+461.52	0.00484923
+461.64	0.00484834
+461.76	0.00484744
+461.88	0.00484655
+462	0.00484565
+462.12	0.00484476
+462.24	0.00484387
+462.36	0.00484297
+462.48	0.00484208
+462.6	0.00484119
+462.72	0.0048403
+462.84	0.0048394
+462.96	0.00483851
+463.08	0.00483762
+463.2	0.00483673
+463.32	0.00483584
+463.44	0.00483495
+463.56	0.00483407
+463.68	0.00483318
+463.8	0.00483229
+463.92	0.0048314
+464.04	0.00483052
+464.16	0.00482963
+464.28	0.00482874
+464.4	0.00482786
+464.52	0.00482697
+464.64	0.00482609
+464.76	0.0048252
+464.88	0.00482432
+465	0.00482344
+465.12	0.00482255
+465.24	0.00482167
+465.36	0.00482079
+465.48	0.00481991
+465.6	0.00481902
+465.72	0.00481814
+465.84	0.00481726
+465.96	0.00481638
+466.08	0.0048155
+466.2	0.00481462
+466.32	0.00481375
+466.44	0.00481287
+466.56	0.00481199
+466.68	0.00481111
+466.8	0.00481023
+466.92	0.00480936
+467.04	0.00480848
+467.16	0.00480761
+467.28	0.00480673
+467.4	0.00480585
+467.52	0.00480498
+467.64	0.00480411
+467.76	0.00480323
+467.88	0.00480236
+468	0.00480149
+468.12	0.00480061
+468.24	0.00479974
+468.36	0.00479887
+468.48	0.004798
+468.6	0.00479713
+468.72	0.00479626
+468.84	0.00479539
+468.96	0.00479452
+469.08	0.00479365
+469.2	0.00479278
+469.32	0.00479191
+469.44	0.00479104
+469.56	0.00479018
+469.68	0.00478931
+469.8	0.00478844
+469.92	0.00478758
+470.04	0.00478671
+470.16	0.00478584
+470.28	0.00478498
+470.4	0.00478411
+470.52	0.00478325
+470.64	0.00478239
+470.76	0.00478152
+470.88	0.00478066
+471	0.0047798
+471.12	0.00477894
+471.24	0.00477807
+471.36	0.00477721
+471.48	0.00477635
+471.6	0.00477549
+471.72	0.00477463
+471.84	0.00477377
+471.96	0.00477291
+472.08	0.00477205
+472.2	0.00477119
+472.32	0.00477034
+472.44	0.00476948
+472.56	0.00476862
+472.68	0.00476776
+472.8	0.00476691
+472.92	0.00476605
+473.04	0.0047652
+473.16	0.00476434
+473.28	0.00476349
+473.4	0.00476263
+473.52	0.00476178
+473.64	0.00476092
+473.76	0.00476007
+473.88	0.00475922
+474	0.00475837
+474.12	0.00475751
+474.24	0.00475666
+474.36	0.00475581
+474.48	0.00475496
+474.6	0.00475411
+474.72	0.00475326
+474.84	0.00475241
+474.96	0.00475156
+475.08	0.00475071
+475.2	0.00474986
+475.32	0.00474902
+475.44	0.00474817
+475.56	0.00474732
+475.68	0.00474648
+475.8	0.00474563
+475.92	0.00474478
+476.04	0.00474394
+476.16	0.00474309
+476.28	0.00474225
+476.4	0.0047414
+476.52	0.00474056
+476.64	0.00473972
+476.76	0.00473887
+476.88	0.00473803
+477	0.00473719
+477.12	0.00473635
+477.24	0.0047355
+477.36	0.00473466
+477.48	0.00473382
+477.6	0.00473298
+477.72	0.00473214
+477.84	0.0047313
+477.96	0.00473046
+478.08	0.00472962
+478.2	0.00472879
+478.32	0.00472795
+478.44	0.00472711
+478.56	0.00472627
+478.68	0.00472544
+478.8	0.0047246
+478.92	0.00472376
+479.04	0.00472293
+479.16	0.00472209
+479.28	0.00472126
+479.4	0.00472042
+479.52	0.00471959
+479.64	0.00471876
+479.76	0.00471792
+479.88	0.00471709
+480	0.00471626
+480.12	0.00471543
+480.24	0.00471459
+480.36	0.00471376
+480.48	0.00471293
+480.6	0.0047121
+480.72	0.00471127
+480.84	0.00471044
+480.96	0.00470961
+481.08	0.00470878
+481.2	0.00470795
+481.32	0.00470713
+481.44	0.0047063
+481.56	0.00470547
+481.68	0.00470464
+481.8	0.00470382
+481.92	0.00470299
+482.04	0.00470216
+482.16	0.00470134
+482.28	0.00470051
+482.4	0.00469969
+482.52	0.00469886
+482.64	0.00469804
+482.76	0.00469722
+482.88	0.00469639
+483	0.00469557
+483.12	0.00469475
+483.24	0.00469393
+483.36	0.0046931
+483.48	0.00469228
+483.6	0.00469146
+483.72	0.00469064
+483.84	0.00468982
+483.96	0.004689
+484.08	0.00468818
+484.2	0.00468736
+484.32	0.00468654
+484.44	0.00468573
+484.56	0.00468491
+484.68	0.00468409
+484.8	0.00468327
+484.92	0.00468246
+485.04	0.00468164
+485.16	0.00468083
+485.28	0.00468001
+485.4	0.00467919
+485.52	0.00467838
+485.64	0.00467756
+485.76	0.00467675
+485.88	0.00467594
+486	0.00467512
+486.12	0.00467431
+486.24	0.0046735
+486.36	0.00467269
+486.48	0.00467187
+486.6	0.00467106
+486.72	0.00467025
+486.84	0.00466944
+486.96	0.00466863
+487.08	0.00466782
+487.2	0.00466701
+487.32	0.0046662
+487.44	0.00466539
+487.56	0.00466458
+487.68	0.00466378
+487.8	0.00466297
+487.92	0.00466216
+488.04	0.00466135
+488.16	0.00466055
+488.28	0.00465974
+488.4	0.00465894
+488.52	0.00465813
+488.64	0.00465733
+488.76	0.00465652
+488.88	0.00465572
+489	0.00465491
+489.12	0.00465411
+489.24	0.00465331
+489.36	0.0046525
+489.48	0.0046517
+489.6	0.0046509
+489.72	0.0046501
+489.84	0.00464929
+489.96	0.00464849
+490.08	0.00464769
+490.2	0.00464689
+490.32	0.00464609
+490.44	0.00464529
+490.56	0.00464449
+490.68	0.00464369
+490.8	0.0046429
+490.92	0.0046421
+491.04	0.0046413
+491.16	0.0046405
+491.28	0.00463971
+491.4	0.00463891
+491.52	0.00463811
+491.64	0.00463732
+491.76	0.00463652
+491.88	0.00463573
+492	0.00463493
+492.12	0.00463414
+492.24	0.00463334
+492.36	0.00463255
+492.48	0.00463176
+492.6	0.00463096
+492.72	0.00463017
+492.84	0.00462938
+492.96	0.00462859
+493.08	0.00462779
+493.2	0.004627
+493.32	0.00462621
+493.44	0.00462542
+493.56	0.00462463
+493.68	0.00462384
+493.8	0.00462305
+493.92	0.00462226
+494.04	0.00462147
+494.16	0.00462069
+494.28	0.0046199
+494.4	0.00461911
+494.52	0.00461832
+494.64	0.00461754
+494.76	0.00461675
+494.88	0.00461596
+495	0.00461518
+495.12	0.00461439
+495.24	0.00461361
+495.36	0.00461282
+495.48	0.00461204
+495.6	0.00461125
+495.72	0.00461047
+495.84	0.00460969
+495.96	0.0046089
+496.08	0.00460812
+496.2	0.00460734
+496.32	0.00460656
+496.44	0.00460578
+496.56	0.00460499
+496.68	0.00460421
+496.8	0.00460343
+496.92	0.00460265
+497.04	0.00460187
+497.16	0.00460109
+497.28	0.00460032
+497.4	0.00459954
+497.52	0.00459876
+497.64	0.00459798
+497.76	0.0045972
+497.88	0.00459643
+498	0.00459565
+498.12	0.00459487
+498.24	0.0045941
+498.36	0.00459332
+498.48	0.00459254
+498.6	0.00459177
+498.72	0.00459099
+498.84	0.00459022
+498.96	0.00458945
+499.08	0.00458867
+499.2	0.0045879
+499.32	0.00458712
+499.44	0.00458635
+499.56	0.00458558
+499.68	0.00458481
+499.8	0.00458404
+499.92	0.00458326
+500.04	0.00458249
+500.16	0.00458172
+500.28	0.00458095
+500.4	0.00458018
+500.52	0.00457941
+500.64	0.00457864
+500.76	0.00457787
+500.88	0.00457711
+501	0.00457634
+501.12	0.00457557
+501.24	0.0045748
+501.36	0.00457404
+501.48	0.00457327
+501.6	0.0045725
+501.72	0.00457174
+501.84	0.00457097
+501.96	0.0045702
+502.08	0.00456944
+502.2	0.00456867
+502.32	0.00456791
+502.44	0.00456715
+502.56	0.00456638
+502.68	0.00456562
+502.8	0.00456486
+502.92	0.00456409
+503.04	0.00456333
+503.16	0.00456257
+503.28	0.00456181
+503.4	0.00456105
+503.52	0.00456028
+503.64	0.00455952
+503.76	0.00455876
+503.88	0.004558
+504	0.00455724
+504.12	0.00455648
+504.24	0.00455572
+504.36	0.00455497
+504.48	0.00455421
+504.6	0.00455345
+504.72	0.00455269
+504.84	0.00455194
+504.96	0.00455118
+505.08	0.00455042
+505.2	0.00454967
+505.32	0.00454891
+505.44	0.00454815
+505.56	0.0045474
+505.68	0.00454664
+505.8	0.00454589
+505.92	0.00454513
+506.04	0.00454438
+506.16	0.00454363
+506.28	0.00454287
+506.4	0.00454212
+506.52	0.00454137
+506.64	0.00454062
+506.76	0.00453986
+506.88	0.00453911
+507	0.00453836
+507.12	0.00453761
+507.24	0.00453686
+507.36	0.00453611
+507.48	0.00453536
+507.6	0.00453461
+507.72	0.00453386
+507.84	0.00453311
+507.96	0.00453236
+508.08	0.00453161
+508.2	0.00453087
+508.32	0.00453012
+508.44	0.00452937
+508.56	0.00452863
+508.68	0.00452788
+508.8	0.00452713
+508.92	0.00452639
+509.04	0.00452564
+509.16	0.0045249
+509.28	0.00452415
+509.4	0.00452341
+509.52	0.00452266
+509.64	0.00452192
+509.76	0.00452117
+509.88	0.00452043
+510	0.00451969
+510.12	0.00451895
+510.24	0.0045182
+510.36	0.00451746
+510.48	0.00451672
+510.6	0.00451598
+510.72	0.00451524
+510.84	0.0045145
+510.96	0.00451376
+511.08	0.00451302
+511.2	0.00451228
+511.32	0.00451154
+511.44	0.0045108
+511.56	0.00451006
+511.68	0.00450932
+511.8	0.00450858
+511.92	0.00450784
+512.04	0.00450711
+512.16	0.00450637
+512.28	0.00450563
+512.4	0.0045049
+512.52	0.00450416
+512.64	0.00450342
+512.76	0.00450269
+512.88	0.00450195
+513	0.00450122
+513.12	0.00450049
+513.24	0.00449975
+513.36	0.00449902
+513.48	0.00449828
+513.6	0.00449755
+513.72	0.00449682
+513.84	0.00449608
+513.96	0.00449535
+514.08	0.00449462
+514.2	0.00449389
+514.32	0.00449316
+514.44	0.00449243
+514.56	0.0044917
+514.68	0.00449097
+514.8	0.00449024
+514.92	0.00448951
+515.04	0.00448878
+515.16	0.00448805
+515.28	0.00448732
+515.4	0.00448659
+515.52	0.00448586
+515.64	0.00448513
+515.76	0.00448441
+515.88	0.00448368
+516	0.00448295
+516.12	0.00448223
+516.24	0.0044815
+516.36	0.00448077
+516.48	0.00448005
+516.6	0.00447932
+516.72	0.0044786
+516.84	0.00447787
+516.96	0.00447715
+517.08	0.00447643
+517.2	0.0044757
+517.32	0.00447498
+517.44	0.00447426
+517.56	0.00447353
+517.68	0.00447281
+517.8	0.00447209
+517.92	0.00447137
+518.04	0.00447065
+518.16	0.00446992
+518.28	0.0044692
+518.4	0.00446848
+518.52	0.00446776
+518.64	0.00446704
+518.76	0.00446632
+518.88	0.0044656
+519	0.00446489
+519.12	0.00446417
+519.24	0.00446345
+519.36	0.00446273
+519.48	0.00446201
+519.6	0.0044613
+519.72	0.00446058
+519.84	0.00445986
+519.96	0.00445915
+520.08	0.00445843
+520.2	0.00445771
+520.32	0.004457
+520.44	0.00445628
+520.56	0.00445557
+520.68	0.00445485
+520.8	0.00445414
+520.92	0.00445342
+521.04	0.00445271
+521.16	0.004452
+521.28	0.00445128
+521.4	0.00445057
+521.52	0.00444986
+521.64	0.00444915
+521.76	0.00444844
+521.88	0.00444772
+522	0.00444701
+522.12	0.0044463
+522.24	0.00444559
+522.36	0.00444488
+522.48	0.00444417
+522.6	0.00444346
+522.72	0.00444275
+522.84	0.00444204
+522.96	0.00444133
+523.08	0.00444063
+523.2	0.00443992
+523.32	0.00443921
+523.44	0.0044385
+523.56	0.0044378
+523.68	0.00443709
+523.8	0.00443638
+523.92	0.00443568
+524.04	0.00443497
+524.16	0.00443426
+524.28	0.00443356
+524.4	0.00443285
+524.52	0.00443215
+524.64	0.00443144
+524.76	0.00443074
+524.88	0.00443004
+525	0.00442933
+525.12	0.00442863
+525.24	0.00442793
+525.36	0.00442722
+525.48	0.00442652
+525.6	0.00442582
+525.72	0.00442512
+525.84	0.00442442
+525.96	0.00442372
+526.08	0.00442301
+526.2	0.00442231
+526.32	0.00442161
+526.44	0.00442091
+526.56	0.00442021
+526.68	0.00441951
+526.8	0.00441882
+526.92	0.00441812
+527.04	0.00441742
+527.16	0.00441672
+527.28	0.00441602
+527.4	0.00441532
+527.52	0.00441463
+527.64	0.00441393
+527.76	0.00441323
+527.88	0.00441254
+528	0.00441184
+528.12	0.00441115
+528.24	0.00441045
+528.36	0.00440976
+528.48	0.00440906
+528.6	0.00440837
+528.72	0.00440767
+528.84	0.00440698
+528.96	0.00440628
+529.08	0.00440559
+529.2	0.0044049
+529.32	0.0044042
+529.44	0.00440351
+529.56	0.00440282
+529.68	0.00440213
+529.8	0.00440144
+529.92	0.00440075
+530.04	0.00440005
+530.16	0.00439936
+530.28	0.00439867
+530.4	0.00439798
+530.52	0.00439729
+530.64	0.0043966
+530.76	0.00439591
+530.88	0.00439523
+531	0.00439454
+531.12	0.00439385
+531.24	0.00439316
+531.36	0.00439247
+531.48	0.00439178
+531.6	0.0043911
+531.72	0.00439041
+531.84	0.00438972
+531.96	0.00438904
+532.08	0.00438835
+532.2	0.00438767
+532.32	0.00438698
+532.44	0.0043863
+532.56	0.00438561
+532.68	0.00438493
+532.8	0.00438424
+532.92	0.00438356
+533.04	0.00438287
+533.16	0.00438219
+533.28	0.00438151
+533.4	0.00438082
+533.52	0.00438014
+533.64	0.00437946
+533.76	0.00437878
+533.88	0.0043781
+534	0.00437741
+534.12	0.00437673
+534.24	0.00437605
+534.36	0.00437537
+534.48	0.00437469
+534.6	0.00437401
+534.72	0.00437333
+534.84	0.00437265
+534.96	0.00437197
+535.08	0.00437129
+535.2	0.00437062
+535.32	0.00436994
+535.44	0.00436926
+535.56	0.00436858
+535.68	0.0043679
+535.8	0.00436723
+535.92	0.00436655
+536.04	0.00436587
+536.16	0.0043652
+536.28	0.00436452
+536.4	0.00436385
+536.52	0.00436317
+536.64	0.0043625
+536.76	0.00436182
+536.88	0.00436115
+537	0.00436047
+537.12	0.0043598
+537.24	0.00435912
+537.36	0.00435845
+537.48	0.00435778
+537.6	0.00435711
+537.72	0.00435643
+537.84	0.00435576
+537.96	0.00435509
+538.08	0.00435442
+538.2	0.00435375
+538.32	0.00435307
+538.44	0.0043524
+538.56	0.00435173
+538.68	0.00435106
+538.8	0.00435039
+538.92	0.00434972
+539.04	0.00434905
+539.16	0.00434838
+539.28	0.00434772
+539.4	0.00434705
+539.52	0.00434638
+539.64	0.00434571
+539.76	0.00434504
+539.88	0.00434437
+540	0.00434371
+540.12	0.00434304
+540.24	0.00434237
+540.36	0.00434171
+540.48	0.00434104
+540.6	0.00434038
+540.72	0.00433971
+540.84	0.00433905
+540.96	0.00433838
+541.08	0.00433772
+541.2	0.00433705
+541.32	0.00433639
+541.44	0.00433572
+541.56	0.00433506
+541.68	0.0043344
+541.8	0.00433373
+541.92	0.00433307
+542.04	0.00433241
+542.16	0.00433175
+542.28	0.00433108
+542.4	0.00433042
+542.52	0.00432976
+542.64	0.0043291
+542.76	0.00432844
+542.88	0.00432778
+543	0.00432712
+543.12	0.00432646
+543.24	0.0043258
+543.36	0.00432514
+543.48	0.00432448
+543.6	0.00432382
+543.72	0.00432316
+543.84	0.0043225
+543.96	0.00432185
+544.08	0.00432119
+544.2	0.00432053
+544.32	0.00431987
+544.44	0.00431922
+544.56	0.00431856
+544.68	0.0043179
+544.8	0.00431725
+544.92	0.00431659
+545.04	0.00431593
+545.16	0.00431528
+545.28	0.00431462
+545.4	0.00431397
+545.52	0.00431331
+545.64	0.00431266
+545.76	0.00431201
+545.88	0.00431135
+546	0.0043107
+546.12	0.00431005
+546.24	0.00430939
+546.36	0.00430874
+546.48	0.00430809
+546.6	0.00430744
+546.72	0.00430678
+546.84	0.00430613
+546.96	0.00430548
+547.08	0.00430483
+547.2	0.00430418
+547.32	0.00430353
+547.44	0.00430288
+547.56	0.00430223
+547.68	0.00430158
+547.8	0.00430093
+547.92	0.00430028
+548.04	0.00429963
+548.16	0.00429898
+548.28	0.00429833
+548.4	0.00429769
+548.52	0.00429704
+548.64	0.00429639
+548.76	0.00429574
+548.88	0.0042951
+549	0.00429445
+549.12	0.0042938
+549.24	0.00429316
+549.36	0.00429251
+549.48	0.00429187
+549.6	0.00429122
+549.72	0.00429058
+549.84	0.00428993
+549.96	0.00428929
+550.08	0.00428864
+550.2	0.004288
+550.32	0.00428735
+550.44	0.00428671
+550.56	0.00428607
+550.68	0.00428542
+550.8	0.00428478
+550.92	0.00428414
+551.04	0.0042835
+551.16	0.00428285
+551.28	0.00428221
+551.4	0.00428157
+551.52	0.00428093
+551.64	0.00428029
+551.76	0.00427965
+551.88	0.00427901
+552	0.00427837
+552.12	0.00427773
+552.24	0.00427709
+552.36	0.00427645
+552.48	0.00427581
+552.6	0.00427517
+552.72	0.00427453
+552.84	0.00427389
+552.96	0.00427326
+553.08	0.00427262
+553.2	0.00427198
+553.32	0.00427134
+553.44	0.00427071
+553.56	0.00427007
+553.68	0.00426943
+553.8	0.0042688
+553.92	0.00426816
+554.04	0.00426753
+554.16	0.00426689
+554.28	0.00426625
+554.4	0.00426562
+554.52	0.00426498
+554.64	0.00426435
+554.76	0.00426372
+554.88	0.00426308
+555	0.00426245
+555.12	0.00426182
+555.24	0.00426118
+555.36	0.00426055
+555.48	0.00425992
+555.6	0.00425928
+555.72	0.00425865
+555.84	0.00425802
+555.96	0.00425739
+556.08	0.00425676
+556.2	0.00425613
+556.32	0.0042555
+556.44	0.00425487
+556.56	0.00425424
+556.68	0.00425361
+556.8	0.00425298
+556.92	0.00425235
+557.04	0.00425172
+557.16	0.00425109
+557.28	0.00425046
+557.4	0.00424983
+557.52	0.0042492
+557.64	0.00424857
+557.76	0.00424795
+557.88	0.00424732
+558	0.00424669
+558.12	0.00424606
+558.24	0.00424544
+558.36	0.00424481
+558.48	0.00424419
+558.6	0.00424356
+558.72	0.00424293
+558.84	0.00424231
+558.96	0.00424168
+559.08	0.00424106
+559.2	0.00424043
+559.32	0.00423981
+559.44	0.00423918
+559.56	0.00423856
+559.68	0.00423794
+559.8	0.00423731
+559.92	0.00423669
+560.04	0.00423607
+560.16	0.00423545
+560.28	0.00423482
+560.4	0.0042342
+560.52	0.00423358
+560.64	0.00423296
+560.76	0.00423234
+560.88	0.00423171
+561	0.00423109
+561.12	0.00423047
+561.24	0.00422985
+561.36	0.00422923
+561.48	0.00422861
+561.6	0.00422799
+561.72	0.00422737
+561.84	0.00422675
+561.96	0.00422614
+562.08	0.00422552
+562.2	0.0042249
+562.32	0.00422428
+562.44	0.00422366
+562.56	0.00422304
+562.68	0.00422243
+562.8	0.00422181
+562.92	0.00422119
+563.04	0.00422058
+563.16	0.00421996
+563.28	0.00421934
+563.4	0.00421873
+563.52	0.00421811
+563.64	0.0042175
+563.76	0.00421688
+563.88	0.00421627
+564	0.00421565
+564.12	0.00421504
+564.24	0.00421442
+564.36	0.00421381
+564.48	0.0042132
+564.6	0.00421258
+564.72	0.00421197
+564.84	0.00421136
+564.96	0.00421074
+565.08	0.00421013
+565.2	0.00420952
+565.32	0.00420891
+565.44	0.00420829
+565.56	0.00420768
+565.68	0.00420707
+565.8	0.00420646
+565.92	0.00420585
+566.04	0.00420524
+566.16	0.00420463
+566.28	0.00420402
+566.4	0.00420341
+566.52	0.0042028
+566.64	0.00420219
+566.76	0.00420158
+566.88	0.00420097
+567	0.00420036
+567.12	0.00419976
+567.24	0.00419915
+567.36	0.00419854
+567.48	0.00419793
+567.6	0.00419733
+567.72	0.00419672
+567.84	0.00419611
+567.96	0.0041955
+568.08	0.0041949
+568.2	0.00419429
+568.32	0.00419369
+568.44	0.00419308
+568.56	0.00419248
+568.68	0.00419187
+568.8	0.00419127
+568.92	0.00419066
+569.04	0.00419006
+569.16	0.00418945
+569.28	0.00418885
+569.4	0.00418824
+569.52	0.00418764
+569.64	0.00418704
+569.76	0.00418643
+569.88	0.00418583
+570	0.00418523
+570.12	0.00418463
+570.24	0.00418402
+570.36	0.00418342
+570.48	0.00418282
+570.6	0.00418222
+570.72	0.00418162
+570.84	0.00418102
+570.96	0.00418042
+571.08	0.00417982
+571.2	0.00417922
+571.32	0.00417862
+571.44	0.00417802
+571.56	0.00417742
+571.68	0.00417682
+571.8	0.00417622
+571.92	0.00417562
+572.04	0.00417502
+572.16	0.00417442
+572.28	0.00417383
+572.4	0.00417323
+572.52	0.00417263
+572.64	0.00417203
+572.76	0.00417144
+572.88	0.00417084
+573	0.00417024
+573.12	0.00416965
+573.24	0.00416905
+573.36	0.00416846
+573.48	0.00416786
+573.6	0.00416726
+573.72	0.00416667
+573.84	0.00416607
+573.96	0.00416548
+574.08	0.00416488
+574.2	0.00416429
+574.32	0.0041637
+574.44	0.0041631
+574.56	0.00416251
+574.68	0.00416192
+574.8	0.00416132
+574.92	0.00416073
+575.04	0.00416014
+575.16	0.00415955
+575.28	0.00415895
+575.4	0.00415836
+575.52	0.00415777
+575.64	0.00415718
+575.76	0.00415659
+575.88	0.004156
+576	0.00415541
+576.12	0.00415481
+576.24	0.00415422
+576.36	0.00415363
+576.48	0.00415304
+576.6	0.00415246
+576.72	0.00415187
+576.84	0.00415128
+576.96	0.00415069
+577.08	0.0041501
+577.2	0.00414951
+577.32	0.00414892
+577.44	0.00414833
+577.56	0.00414775
+577.68	0.00414716
+577.8	0.00414657
+577.92	0.00414599
+578.04	0.0041454
+578.16	0.00414481
+578.28	0.00414423
+578.4	0.00414364
+578.52	0.00414305
+578.64	0.00414247
+578.76	0.00414188
+578.88	0.0041413
+579	0.00414071
+579.12	0.00414013
+579.24	0.00413954
+579.36	0.00413896
+579.48	0.00413837
+579.6	0.00413779
+579.72	0.00413721
+579.84	0.00413662
+579.96	0.00413604
+580.08	0.00413546
+580.2	0.00413488
+580.32	0.00413429
+580.44	0.00413371
+580.56	0.00413313
+580.68	0.00413255
+580.8	0.00413197
+580.92	0.00413138
+581.04	0.0041308
+581.16	0.00413022
+581.28	0.00412964
+581.4	0.00412906
+581.52	0.00412848
+581.64	0.0041279
+581.76	0.00412732
+581.88	0.00412674
+582	0.00412616
+582.12	0.00412558
+582.24	0.004125
+582.36	0.00412443
+582.48	0.00412385
+582.6	0.00412327
+582.72	0.00412269
+582.84	0.00412211
+582.96	0.00412154
+583.08	0.00412096
+583.2	0.00412038
+583.32	0.00411981
+583.44	0.00411923
+583.56	0.00411865
+583.68	0.00411808
+583.8	0.0041175
+583.92	0.00411692
+584.04	0.00411635
+584.16	0.00411577
+584.28	0.0041152
+584.4	0.00411462
+584.52	0.00411405
+584.64	0.00411348
+584.76	0.0041129
+584.88	0.00411233
+585	0.00411175
+585.12	0.00411118
+585.24	0.00411061
+585.36	0.00411003
+585.48	0.00410946
+585.6	0.00410889
+585.72	0.00410832
+585.84	0.00410774
+585.96	0.00410717
+586.08	0.0041066
+586.2	0.00410603
+586.32	0.00410546
+586.44	0.00410489
+586.56	0.00410432
+586.68	0.00410375
+586.8	0.00410318
+586.92	0.00410261
+587.04	0.00410204
+587.16	0.00410147
+587.28	0.0041009
+587.4	0.00410033
+587.52	0.00409976
+587.64	0.00409919
+587.76	0.00409862
+587.88	0.00409805
+588	0.00409748
+588.12	0.00409692
+588.24	0.00409635
+588.36	0.00409578
+588.48	0.00409521
+588.6	0.00409465
+588.72	0.00409408
+588.84	0.00409351
+588.96	0.00409295
+589.08	0.00409238
+589.2	0.00409181
+589.32	0.00409125
+589.44	0.00409068
+589.56	0.00409012
+589.68	0.00408955
+589.8	0.00408899
+589.92	0.00408842
+590.04	0.00408786
+590.16	0.00408729
+590.28	0.00408673
+590.4	0.00408617
+590.52	0.0040856
+590.64	0.00408504
+590.76	0.00408448
+590.88	0.00408391
+591	0.00408335
+591.12	0.00408279
+591.24	0.00408223
+591.36	0.00408166
+591.48	0.0040811
+591.6	0.00408054
+591.72	0.00407998
+591.84	0.00407942
+591.96	0.00407886
+592.08	0.0040783
+592.2	0.00407774
+592.32	0.00407718
+592.44	0.00407662
+592.56	0.00407606
+592.68	0.0040755
+592.8	0.00407494
+592.92	0.00407438
+593.04	0.00407382
+593.16	0.00407326
+593.28	0.0040727
+593.4	0.00407215
+593.52	0.00407159
+593.64	0.00407103
+593.76	0.00407047
+593.88	0.00406991
+594	0.00406936
+594.12	0.0040688
+594.24	0.00406824
+594.36	0.00406769
+594.48	0.00406713
+594.6	0.00406658
+594.72	0.00406602
+594.84	0.00406546
+594.96	0.00406491
+595.08	0.00406435
+595.2	0.0040638
+595.32	0.00406324
+595.44	0.00406269
+595.56	0.00406213
+595.68	0.00406158
+595.8	0.00406103
+595.92	0.00406047
+596.04	0.00405992
+596.16	0.00405937
+596.28	0.00405881
+596.4	0.00405826
+596.52	0.00405771
+596.64	0.00405715
+596.76	0.0040566
+596.88	0.00405605
+597	0.0040555
+597.12	0.00405495
+597.24	0.00405439
+597.36	0.00405384
+597.48	0.00405329
+597.6	0.00405274
+597.72	0.00405219
+597.84	0.00405164
+597.96	0.00405109
+598.08	0.00405054
+598.2	0.00404999
+598.32	0.00404944
+598.44	0.00404889
+598.56	0.00404834
+598.68	0.00404779
+598.8	0.00404724
+598.92	0.0040467
+599.04	0.00404615
+599.16	0.0040456
+599.28	0.00404505
+599.4	0.0040445
+599.52	0.00404396
+599.64	0.00404341
+599.76	0.00404286
+599.88	0.00404232
+600	0.00404177
+600.12	0.00404122
+600.24	0.00404068
+600.36	0.00404013
+600.48	0.00403958
+600.6	0.00403904
+600.72	0.00403849
+600.84	0.00403795
+600.96	0.0040374
+601.08	0.00403686
+601.2	0.00403631
+601.32	0.00403577
+601.44	0.00403523
+601.56	0.00403468
+601.68	0.00403414
+601.8	0.00403359
+601.92	0.00403305
+602.04	0.00403251
+602.16	0.00403196
+602.28	0.00403142
+602.4	0.00403088
+602.52	0.00403034
+602.64	0.00402979
+602.76	0.00402925
+602.88	0.00402871
+603	0.00402817
+603.12	0.00402763
+603.24	0.00402709
+603.36	0.00402655
+603.48	0.00402601
+603.6	0.00402547
+603.72	0.00402492
+603.84	0.00402438
+603.96	0.00402384
+604.08	0.00402331
+604.2	0.00402277
+604.32	0.00402223
+604.44	0.00402169
+604.56	0.00402115
+604.68	0.00402061
+604.8	0.00402007
+604.92	0.00401953
+605.04	0.00401899
+605.16	0.00401846
+605.28	0.00401792
+605.4	0.00401738
+605.52	0.00401684
+605.64	0.00401631
+605.76	0.00401577
+605.88	0.00401523
+606	0.0040147
+606.12	0.00401416
+606.24	0.00401363
+606.36	0.00401309
+606.48	0.00401255
+606.6	0.00401202
+606.72	0.00401148
+606.84	0.00401095
+606.96	0.00401041
+607.08	0.00400988
+607.2	0.00400934
+607.32	0.00400881
+607.44	0.00400828
+607.56	0.00400774
+607.68	0.00400721
+607.8	0.00400668
+607.92	0.00400614
+608.04	0.00400561
+608.16	0.00400508
+608.28	0.00400454
+608.4	0.00400401
+608.52	0.00400348
+608.64	0.00400295
+608.76	0.00400241
+608.88	0.00400188
+609	0.00400135
+609.12	0.00400082
+609.24	0.00400029
+609.36	0.00399976
+609.48	0.00399923
+609.6	0.0039987
+609.72	0.00399817
+609.84	0.00399764
+609.96	0.00399711
+610.08	0.00399658
+610.2	0.00399605
+610.32	0.00399552
+610.44	0.00399499
+610.56	0.00399446
+610.68	0.00399393
+610.8	0.0039934
+610.92	0.00399288
+611.04	0.00399235
+611.16	0.00399182
+611.28	0.00399129
+611.4	0.00399076
+611.52	0.00399024
+611.64	0.00398971
+611.76	0.00398918
+611.88	0.00398866
+612	0.00398813
+612.12	0.0039876
+612.24	0.00398708
+612.36	0.00398655
+612.48	0.00398603
+612.6	0.0039855
+612.72	0.00398497
+612.84	0.00398445
+612.96	0.00398392
+613.08	0.0039834
+613.2	0.00398287
+613.32	0.00398235
+613.44	0.00398183
+613.56	0.0039813
+613.68	0.00398078
+613.8	0.00398026
+613.92	0.00397973
+614.04	0.00397921
+614.16	0.00397869
+614.28	0.00397816
+614.4	0.00397764
+614.52	0.00397712
+614.64	0.0039766
+614.76	0.00397607
+614.88	0.00397555
+615	0.00397503
+615.12	0.00397451
+615.24	0.00397399
+615.36	0.00397347
+615.48	0.00397294
+615.6	0.00397242
+615.72	0.0039719
+615.84	0.00397138
+615.96	0.00397086
+616.08	0.00397034
+616.2	0.00396982
+616.32	0.0039693
+616.44	0.00396878
+616.56	0.00396827
+616.68	0.00396775
+616.8	0.00396723
+616.92	0.00396671
+617.04	0.00396619
+617.16	0.00396567
+617.28	0.00396515
+617.4	0.00396464
+617.52	0.00396412
+617.64	0.0039636
+617.76	0.00396308
+617.88	0.00396257
+618	0.00396205
+618.12	0.00396153
+618.24	0.00396102
+618.36	0.0039605
+618.48	0.00395998
+618.6	0.00395947
+618.72	0.00395895
+618.84	0.00395844
+618.96	0.00395792
+619.08	0.00395741
+619.2	0.00395689
+619.32	0.00395638
+619.44	0.00395586
+619.56	0.00395535
+619.68	0.00395483
+619.8	0.00395432
+619.92	0.00395381
+620.04	0.00395329
+620.16	0.00395278
+620.28	0.00395227
+620.4	0.00395175
+620.52	0.00395124
+620.64	0.00395073
+620.76	0.00395021
+620.88	0.0039497
+621	0.00394919
+621.12	0.00394868
+621.24	0.00394817
+621.36	0.00394765
+621.48	0.00394714
+621.6	0.00394663
+621.72	0.00394612
+621.84	0.00394561
+621.96	0.0039451
+622.08	0.00394459
+622.2	0.00394408
+622.32	0.00394357
+622.44	0.00394306
+622.56	0.00394255
+622.68	0.00394204
+622.8	0.00394153
+622.92	0.00394102
+623.04	0.00394051
+623.16	0.00394
+623.28	0.00393949
+623.4	0.00393899
+623.52	0.00393848
+623.64	0.00393797
+623.76	0.00393746
+623.88	0.00393695
+624	0.00393645
+624.12	0.00393594
+624.24	0.00393543
+624.36	0.00393493
+624.48	0.00393442
+624.6	0.00393391
+624.72	0.00393341
+624.84	0.0039329
+624.96	0.00393239
+625.08	0.00393189
+625.2	0.00393138
+625.32	0.00393088
+625.44	0.00393037
+625.56	0.00392987
+625.68	0.00392936
+625.8	0.00392886
+625.92	0.00392835
+626.04	0.00392785
+626.16	0.00392734
+626.28	0.00392684
+626.4	0.00392634
+626.52	0.00392583
+626.64	0.00392533
+626.76	0.00392483
+626.88	0.00392432
+627	0.00392382
+627.12	0.00392332
+627.24	0.00392281
+627.36	0.00392231
+627.48	0.00392181
+627.6	0.00392131
+627.72	0.00392081
+627.84	0.0039203
+627.96	0.0039198
+628.08	0.0039193
+628.2	0.0039188
+628.32	0.0039183
+628.44	0.0039178
+628.56	0.0039173
+628.68	0.0039168
+628.8	0.0039163
+628.92	0.0039158
+629.04	0.0039153
+629.16	0.0039148
+629.28	0.0039143
+629.4	0.0039138
+629.52	0.0039133
+629.64	0.0039128
+629.76	0.0039123
+629.88	0.00391181
+630	0.00391131
+630.12	0.00391081
+630.24	0.00391031
+630.36	0.00390981
+630.48	0.00390932
+630.6	0.00390882
+630.72	0.00390832
+630.84	0.00390782
+630.96	0.00390733
+631.08	0.00390683
+631.2	0.00390633
+631.32	0.00390584
+631.44	0.00390534
+631.56	0.00390484
+631.68	0.00390435
+631.8	0.00390385
+631.92	0.00390336
+632.04	0.00390286
+632.16	0.00390237
+632.28	0.00390187
+632.4	0.00390138
+632.52	0.00390088
+632.64	0.00390039
+632.76	0.00389989
+632.88	0.0038994
+633	0.00389891
+633.12	0.00389841
+633.24	0.00389792
+633.36	0.00389743
+633.48	0.00389693
+633.6	0.00389644
+633.72	0.00389595
+633.84	0.00389545
+633.96	0.00389496
+634.08	0.00389447
+634.2	0.00389398
+634.32	0.00389349
+634.44	0.00389299
+634.56	0.0038925
+634.68	0.00389201
+634.8	0.00389152
+634.92	0.00389103
+635.04	0.00389054
+635.16	0.00389005
+635.28	0.00388956
+635.4	0.00388907
+635.52	0.00388858
+635.64	0.00388809
+635.76	0.0038876
+635.88	0.00388711
+636	0.00388662
+636.12	0.00388613
+636.24	0.00388564
+636.36	0.00388515
+636.48	0.00388466
+636.6	0.00388417
+636.72	0.00388368
+636.84	0.0038832
+636.96	0.00388271
+637.08	0.00388222
+637.2	0.00388173
+637.32	0.00388124
+637.44	0.00388076
+637.56	0.00388027
+637.68	0.00387978
+637.8	0.0038793
+637.92	0.00387881
+638.04	0.00387832
+638.16	0.00387784
+638.28	0.00387735
+638.4	0.00387686
+638.52	0.00387638
+638.64	0.00387589
+638.76	0.00387541
+638.88	0.00387492
+639	0.00387444
+639.12	0.00387395
+639.24	0.00387347
+639.36	0.00387298
+639.48	0.0038725
+639.6	0.00387201
+639.72	0.00387153
+639.84	0.00387105
+639.96	0.00387056
+640.08	0.00387008
+640.2	0.0038696
+640.32	0.00386911
+640.44	0.00386863
+640.56	0.00386815
+640.68	0.00386766
+640.8	0.00386718
+640.92	0.0038667
+641.04	0.00386622
+641.16	0.00386573
+641.28	0.00386525
+641.4	0.00386477
+641.52	0.00386429
+641.64	0.00386381
+641.76	0.00386333
+641.88	0.00386285
+642	0.00386237
+642.12	0.00386188
+642.24	0.0038614
+642.36	0.00386092
+642.48	0.00386044
+642.6	0.00385996
+642.72	0.00385948
+642.84	0.003859
+642.96	0.00385852
+643.08	0.00385805
+643.2	0.00385757
+643.32	0.00385709
+643.44	0.00385661
+643.56	0.00385613
+643.68	0.00385565
+643.8	0.00385517
+643.92	0.0038547
+644.04	0.00385422
+644.16	0.00385374
+644.28	0.00385326
+644.4	0.00385278
+644.52	0.00385231
+644.64	0.00385183
+644.76	0.00385135
+644.88	0.00385088
+645	0.0038504
+645.12	0.00384992
+645.24	0.00384945
+645.36	0.00384897
+645.48	0.0038485
+645.6	0.00384802
+645.72	0.00384754
+645.84	0.00384707
+645.96	0.00384659
+646.08	0.00384612
+646.2	0.00384564
+646.32	0.00384517
+646.44	0.00384469
+646.56	0.00384422
+646.68	0.00384375
+646.8	0.00384327
+646.92	0.0038428
+647.04	0.00384232
+647.16	0.00384185
+647.28	0.00384138
+647.4	0.0038409
+647.52	0.00384043
+647.64	0.00383996
+647.76	0.00383949
+647.88	0.00383901
+648	0.00383854
+648.12	0.00383807
+648.24	0.0038376
+648.36	0.00383712
+648.48	0.00383665
+648.6	0.00383618
+648.72	0.00383571
+648.84	0.00383524
+648.96	0.00383477
+649.08	0.0038343
+649.2	0.00383383
+649.32	0.00383335
+649.44	0.00383288
+649.56	0.00383241
+649.68	0.00383194
+649.8	0.00383147
+649.92	0.003831
+650.04	0.00383054
+650.16	0.00383007
+650.28	0.0038296
+650.4	0.00382913
+650.52	0.00382866
+650.64	0.00382819
+650.76	0.00382772
+650.88	0.00382725
+651	0.00382678
+651.12	0.00382632
+651.24	0.00382585
+651.36	0.00382538
+651.48	0.00382491
+651.6	0.00382445
+651.72	0.00382398
+651.84	0.00382351
+651.96	0.00382304
+652.08	0.00382258
+652.2	0.00382211
+652.32	0.00382164
+652.44	0.00382118
+652.56	0.00382071
+652.68	0.00382025
+652.8	0.00381978
+652.92	0.00381931
+653.04	0.00381885
+653.16	0.00381838
+653.28	0.00381792
+653.4	0.00381745
+653.52	0.00381699
+653.64	0.00381652
+653.76	0.00381606
+653.88	0.0038156
+654	0.00381513
+654.12	0.00381467
+654.24	0.0038142
+654.36	0.00381374
+654.48	0.00381328
+654.6	0.00381281
+654.72	0.00381235
+654.84	0.00381189
+654.96	0.00381142
+655.08	0.00381096
+655.2	0.0038105
+655.32	0.00381004
+655.44	0.00380957
+655.56	0.00380911
+655.68	0.00380865
+655.8	0.00380819
+655.92	0.00380773
+656.04	0.00380726
+656.16	0.0038068
+656.28	0.00380634
+656.4	0.00380588
+656.52	0.00380542
+656.64	0.00380496
+656.76	0.0038045
+656.88	0.00380404
+657	0.00380358
+657.12	0.00380312
+657.24	0.00380266
+657.36	0.0038022
+657.48	0.00380174
+657.6	0.00380128
+657.72	0.00380082
+657.84	0.00380036
+657.96	0.0037999
+658.08	0.00379944
+658.2	0.00379899
+658.32	0.00379853
+658.44	0.00379807
+658.56	0.00379761
+658.68	0.00379715
+658.8	0.0037967
+658.92	0.00379624
+659.04	0.00379578
+659.16	0.00379532
+659.28	0.00379487
+659.4	0.00379441
+659.52	0.00379395
+659.64	0.0037935
+659.76	0.00379304
+659.88	0.00379258
+660	0.00379213
+660.12	0.00379167
+660.24	0.00379122
+660.36	0.00379076
+660.48	0.0037903
+660.6	0.00378985
+660.72	0.00378939
+660.84	0.00378894
+660.96	0.00378848
+661.08	0.00378803
+661.2	0.00378757
+661.32	0.00378712
+661.44	0.00378667
+661.56	0.00378621
+661.68	0.00378576
+661.8	0.0037853
+661.92	0.00378485
+662.04	0.0037844
+662.16	0.00378394
+662.28	0.00378349
+662.4	0.00378304
+662.52	0.00378258
+662.64	0.00378213
+662.76	0.00378168
+662.88	0.00378123
+663	0.00378077
+663.12	0.00378032
+663.24	0.00377987
+663.36	0.00377942
+663.48	0.00377897
+663.6	0.00377851
+663.72	0.00377806
+663.84	0.00377761
+663.96	0.00377716
+664.08	0.00377671
+664.2	0.00377626
+664.32	0.00377581
+664.44	0.00377536
+664.56	0.00377491
+664.68	0.00377446
+664.8	0.00377401
+664.92	0.00377356
+665.04	0.00377311
+665.16	0.00377266
+665.28	0.00377221
+665.4	0.00377176
+665.52	0.00377131
+665.64	0.00377086
+665.76	0.00377041
+665.88	0.00376997
+666	0.00376952
+666.12	0.00376907
+666.24	0.00376862
+666.36	0.00376817
+666.48	0.00376773
+666.6	0.00376728
+666.72	0.00376683
+666.84	0.00376638
+666.96	0.00376594
+667.08	0.00376549
+667.2	0.00376504
+667.32	0.0037646
+667.44	0.00376415
+667.56	0.0037637
+667.68	0.00376326
+667.8	0.00376281
+667.92	0.00376236
+668.04	0.00376192
+668.16	0.00376147
+668.28	0.00376103
+668.4	0.00376058
+668.52	0.00376014
+668.64	0.00375969
+668.76	0.00375925
+668.88	0.0037588
+669	0.00375836
+669.12	0.00375791
+669.24	0.00375747
+669.36	0.00375702
+669.48	0.00375658
+669.6	0.00375614
+669.72	0.00375569
+669.84	0.00375525
+669.96	0.00375481
+670.08	0.00375436
+670.2	0.00375392
+670.32	0.00375348
+670.44	0.00375303
+670.56	0.00375259
+670.68	0.00375215
+670.8	0.00375171
+670.92	0.00375126
+671.04	0.00375082
+671.16	0.00375038
+671.28	0.00374994
+671.4	0.0037495
+671.52	0.00374906
+671.64	0.00374861
+671.76	0.00374817
+671.88	0.00374773
+672	0.00374729
+672.12	0.00374685
+672.24	0.00374641
+672.36	0.00374597
+672.48	0.00374553
+672.6	0.00374509
+672.72	0.00374465
+672.84	0.00374421
+672.96	0.00374377
+673.08	0.00374333
+673.2	0.00374289
+673.32	0.00374245
+673.44	0.00374201
+673.56	0.00374158
+673.68	0.00374114
+673.8	0.0037407
+673.92	0.00374026
+674.04	0.00373982
+674.16	0.00373938
+674.28	0.00373895
+674.4	0.00373851
+674.52	0.00373807
+674.64	0.00373763
+674.76	0.00373719
+674.88	0.00373676
+675	0.00373632
+675.12	0.00373588
+675.24	0.00373545
+675.36	0.00373501
+675.48	0.00373457
+675.6	0.00373414
+675.72	0.0037337
+675.84	0.00373327
+675.96	0.00373283
+676.08	0.00373239
+676.2	0.00373196
+676.32	0.00373152
+676.44	0.00373109
+676.56	0.00373065
+676.68	0.00373022
+676.8	0.00372978
+676.92	0.00372935
+677.04	0.00372891
+677.16	0.00372848
+677.28	0.00372804
+677.4	0.00372761
+677.52	0.00372718
+677.64	0.00372674
+677.76	0.00372631
+677.88	0.00372587
+678	0.00372544
+678.12	0.00372501
+678.24	0.00372458
+678.36	0.00372414
+678.48	0.00372371
+678.6	0.00372328
+678.72	0.00372284
+678.84	0.00372241
+678.96	0.00372198
+679.08	0.00372155
+679.2	0.00372112
+679.32	0.00372068
+679.44	0.00372025
+679.56	0.00371982
+679.68	0.00371939
+679.8	0.00371896
+679.92	0.00371853
+680.04	0.0037181
+680.16	0.00371767
+680.28	0.00371723
+680.4	0.0037168
+680.52	0.00371637
+680.64	0.00371594
+680.76	0.00371551
+680.88	0.00371508
+681	0.00371465
+681.12	0.00371422
+681.24	0.00371379
+681.36	0.00371337
+681.48	0.00371294
+681.6	0.00371251
+681.72	0.00371208
+681.84	0.00371165
+681.96	0.00371122
+682.08	0.00371079
+682.2	0.00371036
+682.32	0.00370994
+682.44	0.00370951
+682.56	0.00370908
+682.68	0.00370865
+682.8	0.00370822
+682.92	0.0037078
+683.04	0.00370737
+683.16	0.00370694
+683.28	0.00370652
+683.4	0.00370609
+683.52	0.00370566
+683.64	0.00370524
+683.76	0.00370481
+683.88	0.00370438
+684	0.00370396
+684.12	0.00370353
+684.24	0.0037031
+684.36	0.00370268
+684.48	0.00370225
+684.6	0.00370183
+684.72	0.0037014
+684.84	0.00370098
+684.96	0.00370055
+685.08	0.00370013
+685.2	0.0036997
+685.32	0.00369928
+685.44	0.00369885
+685.56	0.00369843
+685.68	0.003698
+685.8	0.00369758
+685.92	0.00369716
+686.04	0.00369673
+686.16	0.00369631
+686.28	0.00369589
+686.4	0.00369546
+686.52	0.00369504
+686.64	0.00369462
+686.76	0.00369419
+686.88	0.00369377
+687	0.00369335
+687.12	0.00369293
+687.24	0.0036925
+687.36	0.00369208
+687.48	0.00369166
+687.6	0.00369124
+687.72	0.00369082
+687.84	0.00369039
+687.96	0.00368997
+688.08	0.00368955
+688.2	0.00368913
+688.32	0.00368871
+688.44	0.00368829
+688.56	0.00368787
+688.68	0.00368745
+688.8	0.00368703
+688.92	0.0036866
+689.04	0.00368618
+689.16	0.00368576
+689.28	0.00368534
+689.4	0.00368492
+689.52	0.0036845
+689.64	0.00368409
+689.76	0.00368367
+689.88	0.00368325
+690	0.00368283
+690.12	0.00368241
+690.24	0.00368199
+690.36	0.00368157
+690.48	0.00368115
+690.6	0.00368073
+690.72	0.00368032
+690.84	0.0036799
+690.96	0.00367948
+691.08	0.00367906
+691.2	0.00367864
+691.32	0.00367823
+691.44	0.00367781
+691.56	0.00367739
+691.68	0.00367697
+691.8	0.00367656
+691.92	0.00367614
+692.04	0.00367572
+692.16	0.00367531
+692.28	0.00367489
+692.4	0.00367447
+692.52	0.00367406
+692.64	0.00367364
+692.76	0.00367323
+692.88	0.00367281
+693	0.00367239
+693.12	0.00367198
+693.24	0.00367156
+693.36	0.00367115
+693.48	0.00367073
+693.6	0.00367032
+693.72	0.0036699
+693.84	0.00366949
+693.96	0.00366907
+694.08	0.00366866
+694.2	0.00366824
+694.32	0.00366783
+694.44	0.00366742
+694.56	0.003667
+694.68	0.00366659
+694.8	0.00366618
+694.92	0.00366576
+695.04	0.00366535
+695.16	0.00366493
+695.28	0.00366452
+695.4	0.00366411
+695.52	0.0036637
+695.64	0.00366328
+695.76	0.00366287
+695.88	0.00366246
+696	0.00366205
+696.12	0.00366163
+696.24	0.00366122
+696.36	0.00366081
+696.48	0.0036604
+696.6	0.00365999
+696.72	0.00365958
+696.84	0.00365916
+696.96	0.00365875
+697.08	0.00365834
+697.2	0.00365793
+697.32	0.00365752
+697.44	0.00365711
+697.56	0.0036567
+697.68	0.00365629
+697.8	0.00365588
+697.92	0.00365547
+698.04	0.00365506
+698.16	0.00365465
+698.28	0.00365424
+698.4	0.00365383
+698.52	0.00365342
+698.64	0.00365301
+698.76	0.0036526
+698.88	0.00365219
+699	0.00365178
+699.12	0.00365137
+699.24	0.00365097
+699.36	0.00365056
+699.48	0.00365015
+699.6	0.00364974
+699.72	0.00364933
+699.84	0.00364892
+699.96	0.00364852
+700.08	0.00364811
+700.2	0.0036477
+700.32	0.00364729
+700.44	0.00364689
+700.56	0.00364648
+700.68	0.00364607
+700.8	0.00364567
+700.92	0.00364526
+701.04	0.00364485
+701.16	0.00364445
+701.28	0.00364404
+701.4	0.00364363
+701.52	0.00364323
+701.64	0.00364282
+701.76	0.00364242
+701.88	0.00364201
+702	0.0036416
+702.12	0.0036412
+702.24	0.00364079
+702.36	0.00364039
+702.48	0.00363998
+702.6	0.00363958
+702.72	0.00363917
+702.84	0.00363877
+702.96	0.00363836
+703.08	0.00363796
+703.2	0.00363756
+703.32	0.00363715
+703.44	0.00363675
+703.56	0.00363634
+703.68	0.00363594
+703.8	0.00363554
+703.92	0.00363513
+704.04	0.00363473
+704.16	0.00363433
+704.28	0.00363392
+704.4	0.00363352
+704.52	0.00363312
+704.64	0.00363271
+704.76	0.00363231
+704.88	0.00363191
+705	0.00363151
+705.12	0.00363111
+705.24	0.0036307
+705.36	0.0036303
+705.48	0.0036299
+705.6	0.0036295
+705.72	0.0036291
+705.84	0.0036287
+705.96	0.00362829
+706.08	0.00362789
+706.2	0.00362749
+706.32	0.00362709
+706.44	0.00362669
+706.56	0.00362629
+706.68	0.00362589
+706.8	0.00362549
+706.92	0.00362509
+707.04	0.00362469
+707.16	0.00362429
+707.28	0.00362389
+707.4	0.00362349
+707.52	0.00362309
+707.64	0.00362269
+707.76	0.00362229
+707.88	0.00362189
+708	0.00362149
+708.12	0.00362109
+708.24	0.00362069
+708.36	0.0036203
+708.48	0.0036199
+708.6	0.0036195
+708.72	0.0036191
+708.84	0.0036187
+708.96	0.0036183
+709.08	0.00361791
+709.2	0.00361751
+709.32	0.00361711
+709.44	0.00361671
+709.56	0.00361632
+709.68	0.00361592
+709.8	0.00361552
+709.92	0.00361513
+710.04	0.00361473
+710.16	0.00361433
+710.28	0.00361394
+710.4	0.00361354
+710.52	0.00361314
+710.64	0.00361275
+710.76	0.00361235
+710.88	0.00361195
+711	0.00361156
+711.12	0.00361116
+711.24	0.00361077
+711.36	0.00361037
+711.48	0.00360998
+711.6	0.00360958
+711.72	0.00360919
+711.84	0.00360879
+711.96	0.0036084
+712.08	0.003608
+712.2	0.00360761
+712.32	0.00360721
+712.44	0.00360682
+712.56	0.00360642
+712.68	0.00360603
+712.8	0.00360564
+712.92	0.00360524
+713.04	0.00360485
+713.16	0.00360446
+713.28	0.00360406
+713.4	0.00360367
+713.52	0.00360328
+713.64	0.00360288
+713.76	0.00360249
+713.88	0.0036021
+714	0.0036017
+714.12	0.00360131
+714.24	0.00360092
+714.36	0.00360053
+714.48	0.00360013
+714.6	0.00359974
+714.72	0.00359935
+714.84	0.00359896
+714.96	0.00359857
+715.08	0.00359818
+715.2	0.00359778
+715.32	0.00359739
+715.44	0.003597
+715.56	0.00359661
+715.68	0.00359622
+715.8	0.00359583
+715.92	0.00359544
+716.04	0.00359505
+716.16	0.00359466
+716.28	0.00359427
+716.4	0.00359388
+716.52	0.00359349
+716.64	0.0035931
+716.76	0.00359271
+716.88	0.00359232
+717	0.00359193
+717.12	0.00359154
+717.24	0.00359115
+717.36	0.00359076
+717.48	0.00359037
+717.6	0.00358998
+717.72	0.00358959
+717.84	0.00358921
+717.96	0.00358882
+718.08	0.00358843
+718.2	0.00358804
+718.32	0.00358765
+718.44	0.00358726
+718.56	0.00358688
+718.68	0.00358649
+718.8	0.0035861
+718.92	0.00358571
+719.04	0.00358533
+719.16	0.00358494
+719.28	0.00358455
+719.4	0.00358416
+719.52	0.00358378
+719.64	0.00358339
+719.76	0.003583
+719.88	0.00358262
+720	0.00358223
+720.12	0.00358184
+720.24	0.00358146
+720.36	0.00358107
+720.48	0.00358069
+720.6	0.0035803
+720.72	0.00357991
+720.84	0.00357953
+720.96	0.00357914
+721.08	0.00357876
+721.2	0.00357837
+721.32	0.00357799
+721.44	0.0035776
+721.56	0.00357722
+721.68	0.00357683
+721.8	0.00357645
+721.92	0.00357606
+722.04	0.00357568
+722.16	0.0035753
+722.28	0.00357491
+722.4	0.00357453
+722.52	0.00357414
+722.64	0.00357376
+722.76	0.00357338
+722.88	0.00357299
+723	0.00357261
+723.12	0.00357223
+723.24	0.00357184
+723.36	0.00357146
+723.48	0.00357108
+723.6	0.0035707
+723.72	0.00357031
+723.84	0.00356993
+723.96	0.00356955
+724.08	0.00356917
+724.2	0.00356878
+724.32	0.0035684
+724.44	0.00356802
+724.56	0.00356764
+724.68	0.00356726
+724.8	0.00356687
+724.92	0.00356649
+725.04	0.00356611
+725.16	0.00356573
+725.28	0.00356535
+725.4	0.00356497
+725.52	0.00356459
+725.64	0.00356421
+725.76	0.00356383
+725.88	0.00356345
+726	0.00356307
+726.12	0.00356269
+726.24	0.00356231
+726.36	0.00356193
+726.48	0.00356155
+726.6	0.00356117
+726.72	0.00356079
+726.84	0.00356041
+726.96	0.00356003
+727.08	0.00355965
+727.2	0.00355927
+727.32	0.00355889
+727.44	0.00355851
+727.56	0.00355813
+727.68	0.00355775
+727.8	0.00355738
+727.92	0.003557
+728.04	0.00355662
+728.16	0.00355624
+728.28	0.00355586
+728.4	0.00355548
+728.52	0.00355511
+728.64	0.00355473
+728.76	0.00355435
+728.88	0.00355397
+729	0.0035536
+729.12	0.00355322
+729.24	0.00355284
+729.36	0.00355246
+729.48	0.00355209
+729.6	0.00355171
+729.72	0.00355133
+729.84	0.00355096
+729.96	0.00355058
+730.08	0.00355021
+730.2	0.00354983
+730.32	0.00354945
+730.44	0.00354908
+730.56	0.0035487
+730.68	0.00354833
+730.8	0.00354795
+730.92	0.00354757
+731.04	0.0035472
+731.16	0.00354682
+731.28	0.00354645
+731.4	0.00354607
+731.52	0.0035457
+731.64	0.00354532
+731.76	0.00354495
+731.88	0.00354458
+732	0.0035442
+732.12	0.00354383
+732.24	0.00354345
+732.36	0.00354308
+732.48	0.0035427
+732.6	0.00354233
+732.72	0.00354196
+732.84	0.00354158
+732.96	0.00354121
+733.08	0.00354084
+733.2	0.00354046
+733.32	0.00354009
+733.44	0.00353972
+733.56	0.00353934
+733.68	0.00353897
+733.8	0.0035386
+733.92	0.00353823
+734.04	0.00353785
+734.16	0.00353748
+734.28	0.00353711
+734.4	0.00353674
+734.52	0.00353637
+734.64	0.00353599
+734.76	0.00353562
+734.88	0.00353525
+735	0.00353488
+735.12	0.00353451
+735.24	0.00353414
+735.36	0.00353377
+735.48	0.00353339
+735.6	0.00353302
+735.72	0.00353265
+735.84	0.00353228
+735.96	0.00353191
+736.08	0.00353154
+736.2	0.00353117
+736.32	0.0035308
+736.44	0.00353043
+736.56	0.00353006
+736.68	0.00352969
+736.8	0.00352932
+736.92	0.00352895
+737.04	0.00352858
+737.16	0.00352821
+737.28	0.00352784
+737.4	0.00352747
+737.52	0.00352711
+737.64	0.00352674
+737.76	0.00352637
+737.88	0.003526
+738	0.00352563
+738.12	0.00352526
+738.24	0.00352489
+738.36	0.00352453
+738.48	0.00352416
+738.6	0.00352379
+738.72	0.00352342
+738.84	0.00352305
+738.96	0.00352269
+739.08	0.00352232
+739.2	0.00352195
+739.32	0.00352158
+739.44	0.00352122
+739.56	0.00352085
+739.68	0.00352048
+739.8	0.00352012
+739.92	0.00351975
+740.04	0.00351938
+740.16	0.00351902
+740.28	0.00351865
+740.4	0.00351828
+740.52	0.00351792
+740.64	0.00351755
+740.76	0.00351718
+740.88	0.00351682
+741	0.00351645
+741.12	0.00351609
+741.24	0.00351572
+741.36	0.00351536
+741.48	0.00351499
+741.6	0.00351463
+741.72	0.00351426
+741.84	0.0035139
+741.96	0.00351353
+742.08	0.00351317
+742.2	0.0035128
+742.32	0.00351244
+742.44	0.00351207
+742.56	0.00351171
+742.68	0.00351134
+742.8	0.00351098
+742.92	0.00351062
+743.04	0.00351025
+743.16	0.00350989
+743.28	0.00350953
+743.4	0.00350916
+743.52	0.0035088
+743.64	0.00350844
+743.76	0.00350807
+743.88	0.00350771
+744	0.00350735
+744.12	0.00350698
+744.24	0.00350662
+744.36	0.00350626
+744.48	0.0035059
+744.6	0.00350553
+744.72	0.00350517
+744.84	0.00350481
+744.96	0.00350445
+745.08	0.00350408
+745.2	0.00350372
+745.32	0.00350336
+745.44	0.003503
+745.56	0.00350264
+745.68	0.00350228
+745.8	0.00350192
+745.92	0.00350155
+746.04	0.00350119
+746.16	0.00350083
+746.28	0.00350047
+746.4	0.00350011
+746.52	0.00349975
+746.64	0.00349939
+746.76	0.00349903
+746.88	0.00349867
+747	0.00349831
+747.12	0.00349795
+747.24	0.00349759
+747.36	0.00349723
+747.48	0.00349687
+747.6	0.00349651
+747.72	0.00349615
+747.84	0.00349579
+747.96	0.00349543
+748.08	0.00349507
+748.2	0.00349471
+748.32	0.00349436
+748.44	0.003494
+748.56	0.00349364
+748.68	0.00349328
+748.8	0.00349292
+748.92	0.00349256
+749.04	0.0034922
+749.16	0.00349185
+749.28	0.00349149
+749.4	0.00349113
+749.52	0.00349077
+749.64	0.00349041
+749.76	0.00349006
+749.88	0.0034897
+750	0.00348934
+750.12	0.00348899
+750.24	0.00348863
+750.36	0.00348827
+750.48	0.00348791
+750.6	0.00348756
+750.72	0.0034872
+750.84	0.00348684
+750.96	0.00348649
+751.08	0.00348613
+751.2	0.00348577
+751.32	0.00348542
+751.44	0.00348506
+751.56	0.00348471
+751.68	0.00348435
+751.8	0.00348399
+751.92	0.00348364
+752.04	0.00348328
+752.16	0.00348293
+752.28	0.00348257
+752.4	0.00348222
+752.52	0.00348186
+752.64	0.00348151
+752.76	0.00348115
+752.88	0.0034808
+753	0.00348044
+753.12	0.00348009
+753.24	0.00347973
+753.36	0.00347938
+753.48	0.00347903
+753.6	0.00347867
+753.72	0.00347832
+753.84	0.00347796
+753.96	0.00347761
+754.08	0.00347726
+754.2	0.0034769
+754.32	0.00347655
+754.44	0.0034762
+754.56	0.00347584
+754.68	0.00347549
+754.8	0.00347514
+754.92	0.00347478
+755.04	0.00347443
+755.16	0.00347408
+755.28	0.00347373
+755.4	0.00347337
+755.52	0.00347302
+755.64	0.00347267
+755.76	0.00347232
+755.88	0.00347196
+756	0.00347161
+756.12	0.00347126
+756.24	0.00347091
+756.36	0.00347056
+756.48	0.00347021
+756.6	0.00346985
+756.72	0.0034695
+756.84	0.00346915
+756.96	0.0034688
+757.08	0.00346845
+757.2	0.0034681
+757.32	0.00346775
+757.44	0.0034674
+757.56	0.00346705
+757.68	0.0034667
+757.8	0.00346635
+757.92	0.003466
+758.04	0.00346565
+758.16	0.0034653
+758.28	0.00346495
+758.4	0.0034646
+758.52	0.00346425
+758.64	0.0034639
+758.76	0.00346355
+758.88	0.0034632
+759	0.00346285
+759.12	0.0034625
+759.24	0.00346215
+759.36	0.0034618
+759.48	0.00346145
+759.6	0.0034611
+759.72	0.00346075
+759.84	0.00346041
+759.96	0.00346006
+760.08	0.00345971
+760.2	0.00345936
+760.32	0.00345901
+760.44	0.00345866
+760.56	0.00345832
+760.68	0.00345797
+760.8	0.00345762
+760.92	0.00345727
+761.04	0.00345693
+761.16	0.00345658
+761.28	0.00345623
+761.4	0.00345588
+761.52	0.00345554
+761.64	0.00345519
+761.76	0.00345484
+761.88	0.0034545
+762	0.00345415
+762.12	0.0034538
+762.24	0.00345346
+762.36	0.00345311
+762.48	0.00345276
+762.6	0.00345242
+762.72	0.00345207
+762.84	0.00345173
+762.96	0.00345138
+763.08	0.00345103
+763.2	0.00345069
+763.32	0.00345034
+763.44	0.00345
+763.56	0.00344965
+763.68	0.00344931
+763.8	0.00344896
+763.92	0.00344862
+764.04	0.00344827
+764.16	0.00344793
+764.28	0.00344758
+764.4	0.00344724
+764.52	0.00344689
+764.64	0.00344655
+764.76	0.00344621
+764.88	0.00344586
+765	0.00344552
+765.12	0.00344517
+765.24	0.00344483
+765.36	0.00344449
+765.48	0.00344414
+765.6	0.0034438
+765.72	0.00344346
+765.84	0.00344311
+765.96	0.00344277
+766.08	0.00344243
+766.2	0.00344208
+766.32	0.00344174
+766.44	0.0034414
+766.56	0.00344105
+766.68	0.00344071
+766.8	0.00344037
+766.92	0.00344003
+767.04	0.00343968
+767.16	0.00343934
+767.28	0.003439
+767.4	0.00343866
+767.52	0.00343832
+767.64	0.00343797
+767.76	0.00343763
+767.88	0.00343729
+768	0.00343695
+768.12	0.00343661
+768.24	0.00343627
+768.36	0.00343593
+768.48	0.00343558
+768.6	0.00343524
+768.72	0.0034349
+768.84	0.00343456
+768.96	0.00343422
+769.08	0.00343388
+769.2	0.00343354
+769.32	0.0034332
+769.44	0.00343286
+769.56	0.00343252
+769.68	0.00343218
+769.8	0.00343184
+769.92	0.0034315
+770.04	0.00343116
+770.16	0.00343082
+770.28	0.00343048
+770.4	0.00343014
+770.52	0.0034298
+770.64	0.00342946
+770.76	0.00342912
+770.88	0.00342878
+771	0.00342845
+771.12	0.00342811
+771.24	0.00342777
+771.36	0.00342743
+771.48	0.00342709
+771.6	0.00342675
+771.72	0.00342641
+771.84	0.00342608
+771.96	0.00342574
+772.08	0.0034254
+772.2	0.00342506
+772.32	0.00342472
+772.44	0.00342439
+772.56	0.00342405
+772.68	0.00342371
+772.8	0.00342337
+772.92	0.00342304
+773.04	0.0034227
+773.16	0.00342236
+773.28	0.00342203
+773.4	0.00342169
+773.52	0.00342135
+773.64	0.00342101
+773.76	0.00342068
+773.88	0.00342034
+774	0.00342001
+774.12	0.00341967
+774.24	0.00341933
+774.36	0.003419
+774.48	0.00341866
+774.6	0.00341832
+774.72	0.00341799
+774.84	0.00341765
+774.96	0.00341732
+775.08	0.00341698
+775.2	0.00341665
+775.32	0.00341631
+775.44	0.00341598
+775.56	0.00341564
+775.68	0.00341531
+775.8	0.00341497
+775.92	0.00341464
+776.04	0.0034143
+776.16	0.00341397
+776.28	0.00341363
+776.4	0.0034133
+776.52	0.00341296
+776.64	0.00341263
+776.76	0.00341229
+776.88	0.00341196
+777	0.00341163
+777.12	0.00341129
+777.24	0.00341096
+777.36	0.00341063
+777.48	0.00341029
+777.6	0.00340996
+777.72	0.00340963
+777.84	0.00340929
+777.96	0.00340896
+778.08	0.00340863
+778.2	0.00340829
+778.32	0.00340796
+778.44	0.00340763
+778.56	0.00340729
+778.68	0.00340696
+778.8	0.00340663
+778.92	0.0034063
+779.04	0.00340597
+779.16	0.00340563
+779.28	0.0034053
+779.4	0.00340497
+779.52	0.00340464
+779.64	0.00340431
+779.76	0.00340397
+779.88	0.00340364
+780	0.00340331
+780.12	0.00340298
+780.24	0.00340265
+780.36	0.00340232
+780.48	0.00340199
+780.6	0.00340165
+780.72	0.00340132
+780.84	0.00340099
+780.96	0.00340066
+781.08	0.00340033
+781.2	0.0034
+781.32	0.00339967
+781.44	0.00339934
+781.56	0.00339901
+781.68	0.00339868
+781.8	0.00339835
+781.92	0.00339802
+782.04	0.00339769
+782.16	0.00339736
+782.28	0.00339703
+782.4	0.0033967
+782.52	0.00339637
+782.64	0.00339604
+782.76	0.00339571
+782.88	0.00339538
+783	0.00339506
+783.12	0.00339473
+783.24	0.0033944
+783.36	0.00339407
+783.48	0.00339374
+783.6	0.00339341
+783.72	0.00339308
+783.84	0.00339276
+783.96	0.00339243
+784.08	0.0033921
+784.2	0.00339177
+784.32	0.00339144
+784.44	0.00339112
+784.56	0.00339079
+784.68	0.00339046
+784.8	0.00339013
+784.92	0.0033898
+785.04	0.00338948
+785.16	0.00338915
+785.28	0.00338882
+785.4	0.0033885
+785.52	0.00338817
+785.64	0.00338784
+785.76	0.00338751
+785.88	0.00338719
+786	0.00338686
+786.12	0.00338653
+786.24	0.00338621
+786.36	0.00338588
+786.48	0.00338556
+786.6	0.00338523
+786.72	0.0033849
+786.84	0.00338458
+786.96	0.00338425
+787.08	0.00338393
+787.2	0.0033836
+787.32	0.00338327
+787.44	0.00338295
+787.56	0.00338262
+787.68	0.0033823
+787.8	0.00338197
+787.92	0.00338165
+788.04	0.00338132
+788.16	0.003381
+788.28	0.00338067
+788.4	0.00338035
+788.52	0.00338002
+788.64	0.0033797
+788.76	0.00337938
+788.88	0.00337905
+789	0.00337873
+789.12	0.0033784
+789.24	0.00337808
+789.36	0.00337775
+789.48	0.00337743
+789.6	0.00337711
+789.72	0.00337678
+789.84	0.00337646
+789.96	0.00337614
+790.08	0.00337581
+790.2	0.00337549
+790.32	0.00337517
+790.44	0.00337484
+790.56	0.00337452
+790.68	0.0033742
+790.8	0.00337387
+790.92	0.00337355
+791.04	0.00337323
+791.16	0.00337291
+791.28	0.00337258
+791.4	0.00337226
+791.52	0.00337194
+791.64	0.00337162
+791.76	0.0033713
+791.88	0.00337097
+792	0.00337065
+792.12	0.00337033
+792.24	0.00337001
+792.36	0.00336969
+792.48	0.00336937
+792.6	0.00336904
+792.72	0.00336872
+792.84	0.0033684
+792.96	0.00336808
+793.08	0.00336776
+793.2	0.00336744
+793.32	0.00336712
+793.44	0.0033668
+793.56	0.00336648
+793.68	0.00336616
+793.8	0.00336583
+793.92	0.00336551
+794.04	0.00336519
+794.16	0.00336487
+794.28	0.00336455
+794.4	0.00336423
+794.52	0.00336391
+794.64	0.00336359
+794.76	0.00336327
+794.88	0.00336295
+795	0.00336263
+795.12	0.00336232
+795.24	0.003362
+795.36	0.00336168
+795.48	0.00336136
+795.6	0.00336104
+795.72	0.00336072
+795.84	0.0033604
+795.96	0.00336008
+796.08	0.00335976
+796.2	0.00335944
+796.32	0.00335913
+796.44	0.00335881
+796.56	0.00335849
+796.68	0.00335817
+796.8	0.00335785
+796.92	0.00335753
+797.04	0.00335722
+797.16	0.0033569
+797.28	0.00335658
+797.4	0.00335626
+797.52	0.00335595
+797.64	0.00335563
+797.76	0.00335531
+797.88	0.00335499
+798	0.00335468
+798.12	0.00335436
+798.24	0.00335404
+798.36	0.00335372
+798.48	0.00335341
+798.6	0.00335309
+798.72	0.00335277
+798.84	0.00335246
+798.96	0.00335214
+799.08	0.00335183
+799.2	0.00335151
+799.32	0.00335119
+799.44	0.00335088
+799.56	0.00335056
+799.68	0.00335024
+799.8	0.00334993
+799.92	0.00334961
+800.04	0.0033493
+800.16	0.00334898
+800.28	0.00334867
+800.4	0.00334835
+800.52	0.00334804
+800.64	0.00334772
+800.76	0.0033474
+800.88	0.00334709
+801	0.00334677
+801.12	0.00334646
+801.24	0.00334615
+801.36	0.00334583
+801.48	0.00334552
+801.6	0.0033452
+801.72	0.00334489
+801.84	0.00334457
+801.96	0.00334426
+802.08	0.00334394
+802.2	0.00334363
+802.32	0.00334332
+802.44	0.003343
+802.56	0.00334269
+802.68	0.00334237
+802.8	0.00334206
+802.92	0.00334175
+803.04	0.00334143
+803.16	0.00334112
+803.28	0.00334081
+803.4	0.00334049
+803.52	0.00334018
+803.64	0.00333987
+803.76	0.00333956
+803.88	0.00333924
+804	0.00333893
+804.12	0.00333862
+804.24	0.0033383
+804.36	0.00333799
+804.48	0.00333768
+804.6	0.00333737
+804.72	0.00333706
+804.84	0.00333674
+804.96	0.00333643
+805.08	0.00333612
+805.2	0.00333581
+805.32	0.0033355
+805.44	0.00333518
+805.56	0.00333487
+805.68	0.00333456
+805.8	0.00333425
+805.92	0.00333394
+806.04	0.00333363
+806.16	0.00333332
+806.28	0.00333301
+806.4	0.00333269
+806.52	0.00333238
+806.64	0.00333207
+806.76	0.00333176
+806.88	0.00333145
+807	0.00333114
+807.12	0.00333083
+807.24	0.00333052
+807.36	0.00333021
+807.48	0.0033299
+807.6	0.00332959
+807.72	0.00332928
+807.84	0.00332897
+807.96	0.00332866
+808.08	0.00332835
+808.2	0.00332804
+808.32	0.00332773
+808.44	0.00332742
+808.56	0.00332711
+808.68	0.0033268
+808.8	0.0033265
+808.92	0.00332619
+809.04	0.00332588
+809.16	0.00332557
+809.28	0.00332526
+809.4	0.00332495
+809.52	0.00332464
+809.64	0.00332433
+809.76	0.00332403
+809.88	0.00332372
+810	0.00332341
+810.12	0.0033231
+810.24	0.00332279
+810.36	0.00332248
+810.48	0.00332218
+810.6	0.00332187
+810.72	0.00332156
+810.84	0.00332125
+810.96	0.00332095
+811.08	0.00332064
+811.2	0.00332033
+811.32	0.00332002
+811.44	0.00331972
+811.56	0.00331941
+811.68	0.0033191
+811.8	0.0033188
+811.92	0.00331849
+812.04	0.00331818
+812.16	0.00331787
+812.28	0.00331757
+812.4	0.00331726
+812.52	0.00331696
+812.64	0.00331665
+812.76	0.00331634
+812.88	0.00331604
+813	0.00331573
+813.12	0.00331542
+813.24	0.00331512
+813.36	0.00331481
+813.48	0.00331451
+813.6	0.0033142
+813.72	0.0033139
+813.84	0.00331359
+813.96	0.00331328
+814.08	0.00331298
+814.2	0.00331267
+814.32	0.00331237
+814.44	0.00331206
+814.56	0.00331176
+814.68	0.00331145
+814.8	0.00331115
+814.92	0.00331085
+815.04	0.00331054
+815.16	0.00331024
+815.28	0.00330993
+815.4	0.00330963
+815.52	0.00330932
+815.64	0.00330902
+815.76	0.00330871
+815.88	0.00330841
+816	0.00330811
+816.12	0.0033078
+816.24	0.0033075
+816.36	0.0033072
+816.48	0.00330689
+816.6	0.00330659
+816.72	0.00330629
+816.84	0.00330598
+816.96	0.00330568
+817.08	0.00330538
+817.2	0.00330507
+817.32	0.00330477
+817.44	0.00330447
+817.56	0.00330416
+817.68	0.00330386
+817.8	0.00330356
+817.92	0.00330326
+818.04	0.00330295
+818.16	0.00330265
+818.28	0.00330235
+818.4	0.00330205
+818.52	0.00330174
+818.64	0.00330144
+818.76	0.00330114
+818.88	0.00330084
+819	0.00330054
+819.12	0.00330024
+819.24	0.00329993
+819.36	0.00329963
+819.48	0.00329933
+819.6	0.00329903
+819.72	0.00329873
+819.84	0.00329843
+819.96	0.00329813
+820.08	0.00329782
+820.2	0.00329752
+820.32	0.00329722
+820.44	0.00329692
+820.56	0.00329662
+820.68	0.00329632
+820.8	0.00329602
+820.92	0.00329572
+821.04	0.00329542
+821.16	0.00329512
+821.28	0.00329482
+821.4	0.00329452
+821.52	0.00329422
+821.64	0.00329392
+821.76	0.00329362
+821.88	0.00329332
+822	0.00329302
+822.12	0.00329272
+822.24	0.00329242
+822.36	0.00329212
+822.48	0.00329182
+822.6	0.00329152
+822.72	0.00329122
+822.84	0.00329092
+822.96	0.00329063
+823.08	0.00329033
+823.2	0.00329003
+823.32	0.00328973
+823.44	0.00328943
+823.56	0.00328913
+823.68	0.00328883
+823.8	0.00328854
+823.92	0.00328824
+824.04	0.00328794
+824.16	0.00328764
+824.28	0.00328734
+824.4	0.00328704
+824.52	0.00328675
+824.64	0.00328645
+824.76	0.00328615
+824.88	0.00328585
+825	0.00328556
+825.12	0.00328526
+825.24	0.00328496
+825.36	0.00328466
+825.48	0.00328437
+825.6	0.00328407
+825.72	0.00328377
+825.84	0.00328348
+825.96	0.00328318
+826.08	0.00328288
+826.2	0.00328259
+826.32	0.00328229
+826.44	0.00328199
+826.56	0.0032817
+826.68	0.0032814
+826.8	0.0032811
+826.92	0.00328081
+827.04	0.00328051
+827.16	0.00328021
+827.28	0.00327992
+827.4	0.00327962
+827.52	0.00327933
+827.64	0.00327903
+827.76	0.00327874
+827.88	0.00327844
+828	0.00327814
+828.12	0.00327785
+828.24	0.00327755
+828.36	0.00327726
+828.48	0.00327696
+828.6	0.00327667
+828.72	0.00327637
+828.84	0.00327608
+828.96	0.00327578
+829.08	0.00327549
+829.2	0.00327519
+829.32	0.0032749
+829.44	0.0032746
+829.56	0.00327431
+829.68	0.00327402
+829.8	0.00327372
+829.92	0.00327343
+830.04	0.00327313
+830.16	0.00327284
+830.28	0.00327255
+830.4	0.00327225
+830.52	0.00327196
+830.64	0.00327166
+830.76	0.00327137
+830.88	0.00327108
+831	0.00327078
+831.12	0.00327049
+831.24	0.0032702
+831.36	0.0032699
+831.48	0.00326961
+831.6	0.00326932
+831.72	0.00326903
+831.84	0.00326873
+831.96	0.00326844
+832.08	0.00326815
+832.2	0.00326785
+832.32	0.00326756
+832.44	0.00326727
+832.56	0.00326698
+832.68	0.00326668
+832.8	0.00326639
+832.92	0.0032661
+833.04	0.00326581
+833.16	0.00326552
+833.28	0.00326522
+833.4	0.00326493
+833.52	0.00326464
+833.64	0.00326435
+833.76	0.00326406
+833.88	0.00326377
+834	0.00326347
+834.12	0.00326318
+834.24	0.00326289
+834.36	0.0032626
+834.48	0.00326231
+834.6	0.00326202
+834.72	0.00326173
+834.84	0.00326144
+834.96	0.00326115
+835.08	0.00326086
+835.2	0.00326057
+835.32	0.00326027
+835.44	0.00325998
+835.56	0.00325969
+835.68	0.0032594
+835.8	0.00325911
+835.92	0.00325882
+836.04	0.00325853
+836.16	0.00325824
+836.28	0.00325795
+836.4	0.00325766
+836.52	0.00325737
+836.64	0.00325708
+836.76	0.00325679
+836.88	0.00325651
+837	0.00325622
+837.12	0.00325593
+837.24	0.00325564
+837.36	0.00325535
+837.48	0.00325506
+837.6	0.00325477
+837.72	0.00325448
+837.84	0.00325419
+837.96	0.0032539
+838.08	0.00325362
+838.2	0.00325333
+838.32	0.00325304
+838.44	0.00325275
+838.56	0.00325246
+838.68	0.00325217
+838.8	0.00325188
+838.92	0.0032516
+839.04	0.00325131
+839.16	0.00325102
+839.28	0.00325073
+839.4	0.00325045
+839.52	0.00325016
+839.64	0.00324987
+839.76	0.00324958
+839.88	0.00324929
+840	0.00324901
+840.12	0.00324872
+840.24	0.00324843
+840.36	0.00324815
+840.48	0.00324786
+840.6	0.00324757
+840.72	0.00324728
+840.84	0.003247
+840.96	0.00324671
+841.08	0.00324642
+841.2	0.00324614
+841.32	0.00324585
+841.44	0.00324556
+841.56	0.00324528
+841.68	0.00324499
+841.8	0.00324471
+841.92	0.00324442
+842.04	0.00324413
+842.16	0.00324385
+842.28	0.00324356
+842.4	0.00324328
+842.52	0.00324299
+842.64	0.0032427
+842.76	0.00324242
+842.88	0.00324213
+843	0.00324185
+843.12	0.00324156
+843.24	0.00324128
+843.36	0.00324099
+843.48	0.00324071
+843.6	0.00324042
+843.72	0.00324014
+843.84	0.00323985
+843.96	0.00323957
+844.08	0.00323928
+844.2	0.003239
+844.32	0.00323871
+844.44	0.00323843
+844.56	0.00323815
+844.68	0.00323786
+844.8	0.00323758
+844.92	0.00323729
+845.04	0.00323701
+845.16	0.00323672
+845.28	0.00323644
+845.4	0.00323616
+845.52	0.00323587
+845.64	0.00323559
+845.76	0.00323531
+845.88	0.00323502
+846	0.00323474
+846.12	0.00323445
+846.24	0.00323417
+846.36	0.00323389
+846.48	0.00323361
+846.6	0.00323332
+846.72	0.00323304
+846.84	0.00323276
+846.96	0.00323247
+847.08	0.00323219
+847.2	0.00323191
+847.32	0.00323163
+847.44	0.00323134
+847.56	0.00323106
+847.68	0.00323078
+847.8	0.0032305
+847.92	0.00323021
+848.04	0.00322993
+848.16	0.00322965
+848.28	0.00322937
+848.4	0.00322909
+848.52	0.0032288
+848.64	0.00322852
+848.76	0.00322824
+848.88	0.00322796
+849	0.00322768
+849.12	0.0032274
+849.24	0.00322711
+849.36	0.00322683
+849.48	0.00322655
+849.6	0.00322627
+849.72	0.00322599
+849.84	0.00322571
+849.96	0.00322543
+850.08	0.00322515
+850.2	0.00322487
+850.32	0.00322458
+850.44	0.0032243
+850.56	0.00322402
+850.68	0.00322374
+850.8	0.00322346
+850.92	0.00322318
+851.04	0.0032229
+851.16	0.00322262
+851.28	0.00322234
+851.4	0.00322206
+851.52	0.00322178
+851.64	0.0032215
+851.76	0.00322122
+851.88	0.00322094
+852	0.00322066
+852.12	0.00322038
+852.24	0.0032201
+852.36	0.00321982
+852.48	0.00321955
+852.6	0.00321927
+852.72	0.00321899
+852.84	0.00321871
+852.96	0.00321843
+853.08	0.00321815
+853.2	0.00321787
+853.32	0.00321759
+853.44	0.00321731
+853.56	0.00321703
+853.68	0.00321676
+853.8	0.00321648
+853.92	0.0032162
+854.04	0.00321592
+854.16	0.00321564
+854.28	0.00321536
+854.4	0.00321509
+854.52	0.00321481
+854.64	0.00321453
+854.76	0.00321425
+854.88	0.00321397
+855	0.0032137
+855.12	0.00321342
+855.24	0.00321314
+855.36	0.00321286
+855.48	0.00321259
+855.6	0.00321231
+855.72	0.00321203
+855.84	0.00321175
+855.96	0.00321148
+856.08	0.0032112
+856.2	0.00321092
+856.32	0.00321065
+856.44	0.00321037
+856.56	0.00321009
+856.68	0.00320982
+856.8	0.00320954
+856.92	0.00320926
+857.04	0.00320899
+857.16	0.00320871
+857.28	0.00320843
+857.4	0.00320816
+857.52	0.00320788
+857.64	0.00320761
+857.76	0.00320733
+857.88	0.00320705
+858	0.00320678
+858.12	0.0032065
+858.24	0.00320623
+858.36	0.00320595
+858.48	0.00320568
+858.6	0.0032054
+858.72	0.00320512
+858.84	0.00320485
+858.96	0.00320457
+859.08	0.0032043
+859.2	0.00320402
+859.32	0.00320375
+859.44	0.00320347
+859.56	0.0032032
+859.68	0.00320292
+859.8	0.00320265
+859.92	0.00320237
+860.04	0.0032021
+860.16	0.00320183
+860.28	0.00320155
+860.4	0.00320128
+860.52	0.003201
+860.64	0.00320073
+860.76	0.00320045
+860.88	0.00320018
+861	0.00319991
+861.12	0.00319963
+861.24	0.00319936
+861.36	0.00319908
+861.48	0.00319881
+861.6	0.00319854
+861.72	0.00319826
+861.84	0.00319799
+861.96	0.00319772
+862.08	0.00319744
+862.2	0.00319717
+862.32	0.0031969
+862.44	0.00319662
+862.56	0.00319635
+862.68	0.00319608
+862.8	0.0031958
+862.92	0.00319553
+863.04	0.00319526
+863.16	0.00319499
+863.28	0.00319471
+863.4	0.00319444
+863.52	0.00319417
+863.64	0.0031939
+863.76	0.00319362
+863.88	0.00319335
+864	0.00319308
+864.12	0.00319281
+864.24	0.00319254
+864.36	0.00319226
+864.48	0.00319199
+864.6	0.00319172
+864.72	0.00319145
+864.84	0.00319118
+864.96	0.0031909
+865.08	0.00319063
+865.2	0.00319036
+865.32	0.00319009
+865.44	0.00318982
+865.56	0.00318955
+865.68	0.00318928
+865.8	0.00318901
+865.92	0.00318873
+866.04	0.00318846
+866.16	0.00318819
+866.28	0.00318792
+866.4	0.00318765
+866.52	0.00318738
+866.64	0.00318711
+866.76	0.00318684
+866.88	0.00318657
+867	0.0031863
+867.12	0.00318603
+867.24	0.00318576
+867.36	0.00318549
+867.48	0.00318522
+867.6	0.00318495
+867.72	0.00318468
+867.84	0.00318441
+867.96	0.00318414
+868.08	0.00318387
+868.2	0.0031836
+868.32	0.00318333
+868.44	0.00318306
+868.56	0.00318279
+868.68	0.00318252
+868.8	0.00318225
+868.92	0.00318198
+869.04	0.00318171
+869.16	0.00318144
+869.28	0.00318118
+869.4	0.00318091
+869.52	0.00318064
+869.64	0.00318037
+869.76	0.0031801
+869.88	0.00317983
+870	0.00317956
+870.12	0.00317929
+870.24	0.00317903
+870.36	0.00317876
+870.48	0.00317849
+870.6	0.00317822
+870.72	0.00317795
+870.84	0.00317769
+870.96	0.00317742
+871.08	0.00317715
+871.2	0.00317688
+871.32	0.00317661
+871.44	0.00317635
+871.56	0.00317608
+871.68	0.00317581
+871.8	0.00317554
+871.92	0.00317528
+872.04	0.00317501
+872.16	0.00317474
+872.28	0.00317447
+872.4	0.00317421
+872.52	0.00317394
+872.64	0.00317367
+872.76	0.00317341
+872.88	0.00317314
+873	0.00317287
+873.12	0.00317261
+873.24	0.00317234
+873.36	0.00317207
+873.48	0.00317181
+873.6	0.00317154
+873.72	0.00317127
+873.84	0.00317101
+873.96	0.00317074
+874.08	0.00317048
+874.2	0.00317021
+874.32	0.00316994
+874.44	0.00316968
+874.56	0.00316941
+874.68	0.00316915
+874.8	0.00316888
+874.92	0.00316861
+875.04	0.00316835
+875.16	0.00316808
+875.28	0.00316782
+875.4	0.00316755
+875.52	0.00316729
+875.64	0.00316702
+875.76	0.00316676
+875.88	0.00316649
+876	0.00316623
+876.12	0.00316596
+876.24	0.0031657
+876.36	0.00316543
+876.48	0.00316517
+876.6	0.0031649
+876.72	0.00316464
+876.84	0.00316437
+876.96	0.00316411
+877.08	0.00316384
+877.2	0.00316358
+877.32	0.00316332
+877.44	0.00316305
+877.56	0.00316279
+877.68	0.00316252
+877.8	0.00316226
+877.92	0.003162
+878.04	0.00316173
+878.16	0.00316147
+878.28	0.0031612
+878.4	0.00316094
+878.52	0.00316068
+878.64	0.00316041
+878.76	0.00316015
+878.88	0.00315989
+879	0.00315962
+879.12	0.00315936
+879.24	0.0031591
+879.36	0.00315883
+879.48	0.00315857
+879.6	0.00315831
+879.72	0.00315805
+879.84	0.00315778
+879.96	0.00315752
+880.08	0.00315726
+880.2	0.003157
+880.32	0.00315673
+880.44	0.00315647
+880.56	0.00315621
+880.68	0.00315595
+880.8	0.00315568
+880.92	0.00315542
+881.04	0.00315516
+881.16	0.0031549
+881.28	0.00315464
+881.4	0.00315437
+881.52	0.00315411
+881.64	0.00315385
+881.76	0.00315359
+881.88	0.00315333
+882	0.00315307
+882.12	0.0031528
+882.24	0.00315254
+882.36	0.00315228
+882.48	0.00315202
+882.6	0.00315176
+882.72	0.0031515
+882.84	0.00315124
+882.96	0.00315098
+883.08	0.00315071
+883.2	0.00315045
+883.32	0.00315019
+883.44	0.00314993
+883.56	0.00314967
+883.68	0.00314941
+883.8	0.00314915
+883.92	0.00314889
+884.04	0.00314863
+884.16	0.00314837
+884.28	0.00314811
+884.4	0.00314785
+884.52	0.00314759
+884.64	0.00314733
+884.76	0.00314707
+884.88	0.00314681
+885	0.00314655
+885.12	0.00314629
+885.24	0.00314603
+885.36	0.00314577
+885.48	0.00314551
+885.6	0.00314525
+885.72	0.00314499
+885.84	0.00314473
+885.96	0.00314447
+886.08	0.00314421
+886.2	0.00314396
+886.32	0.0031437
+886.44	0.00314344
+886.56	0.00314318
+886.68	0.00314292
+886.8	0.00314266
+886.92	0.0031424
+887.04	0.00314214
+887.16	0.00314188
+887.28	0.00314163
+887.4	0.00314137
+887.52	0.00314111
+887.64	0.00314085
+887.76	0.00314059
+887.88	0.00314034
+888	0.00314008
+888.12	0.00313982
+888.24	0.00313956
+888.36	0.0031393
+888.48	0.00313905
+888.6	0.00313879
+888.72	0.00313853
+888.84	0.00313827
+888.96	0.00313802
+889.08	0.00313776
+889.2	0.0031375
+889.32	0.00313724
+889.44	0.00313699
+889.56	0.00313673
+889.68	0.00313647
+889.8	0.00313621
+889.92	0.00313596
+890.04	0.0031357
+890.16	0.00313544
+890.28	0.00313519
+890.4	0.00313493
+890.52	0.00313467
+890.64	0.00313442
+890.76	0.00313416
+890.88	0.0031339
+891	0.00313365
+891.12	0.00313339
+891.24	0.00313314
+891.36	0.00313288
+891.48	0.00313262
+891.6	0.00313237
+891.72	0.00313211
+891.84	0.00313186
+891.96	0.0031316
+892.08	0.00313134
+892.2	0.00313109
+892.32	0.00313083
+892.44	0.00313058
+892.56	0.00313032
+892.68	0.00313007
+892.8	0.00312981
+892.92	0.00312956
+893.04	0.0031293
+893.16	0.00312905
+893.28	0.00312879
+893.4	0.00312854
+893.52	0.00312828
+893.64	0.00312803
+893.76	0.00312777
+893.88	0.00312752
+894	0.00312726
+894.12	0.00312701
+894.24	0.00312675
+894.36	0.0031265
+894.48	0.00312624
+894.6	0.00312599
+894.72	0.00312573
+894.84	0.00312548
+894.96	0.00312523
+895.08	0.00312497
+895.2	0.00312472
+895.32	0.00312446
+895.44	0.00312421
+895.56	0.00312396
+895.68	0.0031237
+895.8	0.00312345
+895.92	0.0031232
+896.04	0.00312294
+896.16	0.00312269
+896.28	0.00312244
+896.4	0.00312218
+896.52	0.00312193
+896.64	0.00312168
+896.76	0.00312142
+896.88	0.00312117
+897	0.00312092
+897.12	0.00312066
+897.24	0.00312041
+897.36	0.00312016
+897.48	0.0031199
+897.6	0.00311965
+897.72	0.0031194
+897.84	0.00311915
+897.96	0.00311889
+898.08	0.00311864
+898.2	0.00311839
+898.32	0.00311814
+898.44	0.00311788
+898.56	0.00311763
+898.68	0.00311738
+898.8	0.00311713
+898.92	0.00311688
+899.04	0.00311662
+899.16	0.00311637
+899.28	0.00311612
+899.4	0.00311587
+899.52	0.00311562
+899.64	0.00311537
+899.76	0.00311511
+899.88	0.00311486
+900	0.00311461
+900.12	0.00311436
+900.24	0.00311411
+900.36	0.00311386
+900.48	0.00311361
+900.6	0.00311336
+900.72	0.0031131
+900.84	0.00311285
+900.96	0.0031126
+901.08	0.00311235
+901.2	0.0031121
+901.32	0.00311185
+901.44	0.0031116
+901.56	0.00311135
+901.68	0.0031111
+901.8	0.00311085
+901.92	0.0031106
+902.04	0.00311035
+902.16	0.0031101
+902.28	0.00310985
+902.4	0.0031096
+902.52	0.00310935
+902.64	0.0031091
+902.76	0.00310885
+902.88	0.0031086
+903	0.00310835
+903.12	0.0031081
+903.24	0.00310785
+903.36	0.0031076
+903.48	0.00310735
+903.6	0.0031071
+903.72	0.00310685
+903.84	0.0031066
+903.96	0.00310635
+904.08	0.0031061
+904.2	0.00310585
+904.32	0.0031056
+904.44	0.00310536
+904.56	0.00310511
+904.68	0.00310486
+904.8	0.00310461
+904.92	0.00310436
+905.04	0.00310411
+905.16	0.00310386
+905.28	0.00310361
+905.4	0.00310337
+905.52	0.00310312
+905.64	0.00310287
+905.76	0.00310262
+905.88	0.00310237
+906	0.00310212
+906.12	0.00310188
+906.24	0.00310163
+906.36	0.00310138
+906.48	0.00310113
+906.6	0.00310088
+906.72	0.00310064
+906.84	0.00310039
+906.96	0.00310014
+907.08	0.00309989
+907.2	0.00309965
+907.32	0.0030994
+907.44	0.00309915
+907.56	0.0030989
+907.68	0.00309866
+907.8	0.00309841
+907.92	0.00309816
+908.04	0.00309792
+908.16	0.00309767
+908.28	0.00309742
+908.4	0.00309717
+908.52	0.00309693
+908.64	0.00309668
+908.76	0.00309643
+908.88	0.00309619
+909	0.00309594
+909.12	0.00309569
+909.24	0.00309545
+909.36	0.0030952
+909.48	0.00309495
+909.6	0.00309471
+909.72	0.00309446
+909.84	0.00309422
+909.96	0.00309397
+910.08	0.00309372
+910.2	0.00309348
+910.32	0.00309323
+910.44	0.00309299
+910.56	0.00309274
+910.68	0.0030925
+910.8	0.00309225
+910.92	0.003092
+911.04	0.00309176
+911.16	0.00309151
+911.28	0.00309127
+911.4	0.00309102
+911.52	0.00309078
+911.64	0.00309053
+911.76	0.00309029
+911.88	0.00309004
+912	0.0030898
+912.12	0.00308955
+912.24	0.00308931
+912.36	0.00308906
+912.48	0.00308882
+912.6	0.00308857
+912.72	0.00308833
+912.84	0.00308808
+912.96	0.00308784
+913.08	0.00308759
+913.2	0.00308735
+913.32	0.00308711
+913.44	0.00308686
+913.56	0.00308662
+913.68	0.00308637
+913.8	0.00308613
+913.92	0.00308588
+914.04	0.00308564
+914.16	0.0030854
+914.28	0.00308515
+914.4	0.00308491
+914.52	0.00308467
+914.64	0.00308442
+914.76	0.00308418
+914.88	0.00308393
+915	0.00308369
+915.12	0.00308345
+915.24	0.0030832
+915.36	0.00308296
+915.48	0.00308272
+915.6	0.00308248
+915.72	0.00308223
+915.84	0.00308199
+915.96	0.00308175
+916.08	0.0030815
+916.2	0.00308126
+916.32	0.00308102
+916.44	0.00308077
+916.56	0.00308053
+916.68	0.00308029
+916.8	0.00308005
+916.92	0.0030798
+917.04	0.00307956
+917.16	0.00307932
+917.28	0.00307908
+917.4	0.00307884
+917.52	0.00307859
+917.64	0.00307835
+917.76	0.00307811
+917.88	0.00307787
+918	0.00307763
+918.12	0.00307738
+918.24	0.00307714
+918.36	0.0030769
+918.48	0.00307666
+918.6	0.00307642
+918.72	0.00307617
+918.84	0.00307593
+918.96	0.00307569
+919.08	0.00307545
+919.2	0.00307521
+919.32	0.00307497
+919.44	0.00307473
+919.56	0.00307449
+919.68	0.00307424
+919.8	0.003074
+919.92	0.00307376
+920.04	0.00307352
+920.16	0.00307328
+920.28	0.00307304
+920.4	0.0030728
+920.52	0.00307256
+920.64	0.00307232
+920.76	0.00307208
+920.88	0.00307184
+921	0.0030716
+921.12	0.00307136
+921.24	0.00307112
+921.36	0.00307088
+921.48	0.00307064
+921.6	0.0030704
+921.72	0.00307016
+921.84	0.00306992
+921.96	0.00306968
+922.08	0.00306944
+922.2	0.0030692
+922.32	0.00306896
+922.44	0.00306872
+922.56	0.00306848
+922.68	0.00306824
+922.8	0.003068
+922.92	0.00306776
+923.04	0.00306752
+923.16	0.00306728
+923.28	0.00306704
+923.4	0.0030668
+923.52	0.00306656
+923.64	0.00306632
+923.76	0.00306609
+923.88	0.00306585
+924	0.00306561
+924.12	0.00306537
+924.24	0.00306513
+924.36	0.00306489
+924.48	0.00306465
+924.6	0.00306441
+924.72	0.00306418
+924.84	0.00306394
+924.96	0.0030637
+925.08	0.00306346
+925.2	0.00306322
+925.32	0.00306298
+925.44	0.00306275
+925.56	0.00306251
+925.68	0.00306227
+925.8	0.00306203
+925.92	0.00306179
+926.04	0.00306156
+926.16	0.00306132
+926.28	0.00306108
+926.4	0.00306084
+926.52	0.0030606
+926.64	0.00306037
+926.76	0.00306013
+926.88	0.00305989
+927	0.00305966
+927.12	0.00305942
+927.24	0.00305918
+927.36	0.00305894
+927.48	0.00305871
+927.6	0.00305847
+927.72	0.00305823
+927.84	0.003058
+927.96	0.00305776
+928.08	0.00305752
+928.2	0.00305728
+928.32	0.00305705
+928.44	0.00305681
+928.56	0.00305657
+928.68	0.00305634
+928.8	0.0030561
+928.92	0.00305587
+929.04	0.00305563
+929.16	0.00305539
+929.28	0.00305516
+929.4	0.00305492
+929.52	0.00305468
+929.64	0.00305445
+929.76	0.00305421
+929.88	0.00305398
+930	0.00305374
+930.12	0.0030535
+930.24	0.00305327
+930.36	0.00305303
+930.48	0.0030528
+930.6	0.00305256
+930.72	0.00305233
+930.84	0.00305209
+930.96	0.00305186
+931.08	0.00305162
+931.2	0.00305138
+931.32	0.00305115
+931.44	0.00305091
+931.56	0.00305068
+931.68	0.00305044
+931.8	0.00305021
+931.92	0.00304997
+932.04	0.00304974
+932.16	0.0030495
+932.28	0.00304927
+932.4	0.00304903
+932.52	0.0030488
+932.64	0.00304857
+932.76	0.00304833
+932.88	0.0030481
+933	0.00304786
+933.12	0.00304763
+933.24	0.00304739
+933.36	0.00304716
+933.48	0.00304693
+933.6	0.00304669
+933.72	0.00304646
+933.84	0.00304622
+933.96	0.00304599
+934.08	0.00304576
+934.2	0.00304552
+934.32	0.00304529
+934.44	0.00304505
+934.56	0.00304482
+934.68	0.00304459
+934.8	0.00304435
+934.92	0.00304412
+935.04	0.00304389
+935.16	0.00304365
+935.28	0.00304342
+935.4	0.00304319
+935.52	0.00304295
+935.64	0.00304272
+935.76	0.00304249
+935.88	0.00304225
+936	0.00304202
+936.12	0.00304179
+936.24	0.00304156
+936.36	0.00304132
+936.48	0.00304109
+936.6	0.00304086
+936.72	0.00304062
+936.84	0.00304039
+936.96	0.00304016
+937.08	0.00303993
+937.2	0.00303969
+937.32	0.00303946
+937.44	0.00303923
+937.56	0.003039
+937.68	0.00303877
+937.8	0.00303853
+937.92	0.0030383
+938.04	0.00303807
+938.16	0.00303784
+938.28	0.00303761
+938.4	0.00303737
+938.52	0.00303714
+938.64	0.00303691
+938.76	0.00303668
+938.88	0.00303645
+939	0.00303622
+939.12	0.00303598
+939.24	0.00303575
+939.36	0.00303552
+939.48	0.00303529
+939.6	0.00303506
+939.72	0.00303483
+939.84	0.0030346
+939.96	0.00303437
+940.08	0.00303413
+940.2	0.0030339
+940.32	0.00303367
+940.44	0.00303344
+940.56	0.00303321
+940.68	0.00303298
+940.8	0.00303275
+940.92	0.00303252
+941.04	0.00303229
+941.16	0.00303206
+941.28	0.00303183
+941.4	0.0030316
+941.52	0.00303137
+941.64	0.00303114
+941.76	0.00303091
+941.88	0.00303068
+942	0.00303045
+942.12	0.00303022
+942.24	0.00302999
+942.36	0.00302976
+942.48	0.00302953
+942.6	0.0030293
+942.72	0.00302907
+942.84	0.00302884
+942.96	0.00302861
+943.08	0.00302838
+943.2	0.00302815
+943.32	0.00302792
+943.44	0.00302769
+943.56	0.00302746
+943.68	0.00302723
+943.8	0.003027
+943.92	0.00302677
+944.04	0.00302654
+944.16	0.00302632
+944.28	0.00302609
+944.4	0.00302586
+944.52	0.00302563
+944.64	0.0030254
+944.76	0.00302517
+944.88	0.00302494
+945	0.00302471
+945.12	0.00302448
+945.24	0.00302426
+945.36	0.00302403
+945.48	0.0030238
+945.6	0.00302357
+945.72	0.00302334
+945.84	0.00302311
+945.96	0.00302289
+946.08	0.00302266
+946.2	0.00302243
+946.32	0.0030222
+946.44	0.00302197
+946.56	0.00302175
+946.68	0.00302152
+946.8	0.00302129
+946.92	0.00302106
+947.04	0.00302083
+947.16	0.00302061
+947.28	0.00302038
+947.4	0.00302015
+947.52	0.00301992
+947.64	0.0030197
+947.76	0.00301947
+947.88	0.00301924
+948	0.00301902
+948.12	0.00301879
+948.24	0.00301856
+948.36	0.00301833
+948.48	0.00301811
+948.6	0.00301788
+948.72	0.00301765
+948.84	0.00301743
+948.96	0.0030172
+949.08	0.00301697
+949.2	0.00301675
+949.32	0.00301652
+949.44	0.00301629
+949.56	0.00301607
+949.68	0.00301584
+949.8	0.00301561
+949.92	0.00301539
+950.04	0.00301516
+950.16	0.00301493
+950.28	0.00301471
+950.4	0.00301448
+950.52	0.00301426
+950.64	0.00301403
+950.76	0.0030138
+950.88	0.00301358
+951	0.00301335
+951.12	0.00301313
+951.24	0.0030129
+951.36	0.00301268
+951.48	0.00301245
+951.6	0.00301222
+951.72	0.003012
+951.84	0.00301177
+951.96	0.00301155
+952.08	0.00301132
+952.2	0.0030111
+952.32	0.00301087
+952.44	0.00301065
+952.56	0.00301042
+952.68	0.0030102
+952.8	0.00300997
+952.92	0.00300975
+953.04	0.00300952
+953.16	0.0030093
+953.28	0.00300907
+953.4	0.00300885
+953.52	0.00300862
+953.64	0.0030084
+953.76	0.00300817
+953.88	0.00300795
+954	0.00300772
+954.12	0.0030075
+954.24	0.00300728
+954.36	0.00300705
+954.48	0.00300683
+954.6	0.0030066
+954.72	0.00300638
+954.84	0.00300615
+954.96	0.00300593
+955.08	0.00300571
+955.2	0.00300548
+955.32	0.00300526
+955.44	0.00300503
+955.56	0.00300481
+955.68	0.00300459
+955.8	0.00300436
+955.92	0.00300414
+956.04	0.00300392
+956.16	0.00300369
+956.28	0.00300347
+956.4	0.00300325
+956.52	0.00300302
+956.64	0.0030028
+956.76	0.00300258
+956.88	0.00300235
+957	0.00300213
+957.12	0.00300191
+957.24	0.00300168
+957.36	0.00300146
+957.48	0.00300124
+957.6	0.00300102
+957.72	0.00300079
+957.84	0.00300057
+957.96	0.00300035
+958.08	0.00300012
+958.2	0.0029999
+958.32	0.00299968
+958.44	0.00299946
+958.56	0.00299923
+958.68	0.00299901
+958.8	0.00299879
+958.92	0.00299857
+959.04	0.00299835
+959.16	0.00299812
+959.28	0.0029979
+959.4	0.00299768
+959.52	0.00299746
+959.64	0.00299724
+959.76	0.00299701
+959.88	0.00299679
+960	0.00299657
+960.12	0.00299635
+960.24	0.00299613
+960.36	0.00299591
+960.48	0.00299568
+960.6	0.00299546
+960.72	0.00299524
+960.84	0.00299502
+960.96	0.0029948
+961.08	0.00299458
+961.2	0.00299436
+961.32	0.00299413
+961.44	0.00299391
+961.56	0.00299369
+961.68	0.00299347
+961.8	0.00299325
+961.92	0.00299303
+962.04	0.00299281
+962.16	0.00299259
+962.28	0.00299237
+962.4	0.00299215
+962.52	0.00299193
+962.64	0.00299171
+962.76	0.00299148
+962.88	0.00299126
+963	0.00299104
+963.12	0.00299082
+963.24	0.0029906
+963.36	0.00299038
+963.48	0.00299016
+963.6	0.00298994
+963.72	0.00298972
+963.84	0.0029895
+963.96	0.00298928
+964.08	0.00298906
+964.2	0.00298884
+964.32	0.00298862
+964.44	0.0029884
+964.56	0.00298818
+964.68	0.00298796
+964.8	0.00298774
+964.92	0.00298752
+965.04	0.00298731
+965.16	0.00298709
+965.28	0.00298687
+965.4	0.00298665
+965.52	0.00298643
+965.64	0.00298621
+965.76	0.00298599
+965.88	0.00298577
+966	0.00298555
+966.12	0.00298533
+966.24	0.00298511
+966.36	0.00298489
+966.48	0.00298468
+966.6	0.00298446
+966.72	0.00298424
+966.84	0.00298402
+966.96	0.0029838
+967.08	0.00298358
+967.2	0.00298336
+967.32	0.00298314
+967.44	0.00298293
+967.56	0.00298271
+967.68	0.00298249
+967.8	0.00298227
+967.92	0.00298205
+968.04	0.00298184
+968.16	0.00298162
+968.28	0.0029814
+968.4	0.00298118
+968.52	0.00298096
+968.64	0.00298075
+968.76	0.00298053
+968.88	0.00298031
+969	0.00298009
+969.12	0.00297987
+969.24	0.00297966
+969.36	0.00297944
+969.48	0.00297922
+969.6	0.002979
+969.72	0.00297879
+969.84	0.00297857
+969.96	0.00297835
+970.08	0.00297813
+970.2	0.00297792
+970.32	0.0029777
+970.44	0.00297748
+970.56	0.00297727
+970.68	0.00297705
+970.8	0.00297683
+970.92	0.00297661
+971.04	0.0029764
+971.16	0.00297618
+971.28	0.00297596
+971.4	0.00297575
+971.52	0.00297553
+971.64	0.00297531
+971.76	0.0029751
+971.88	0.00297488
+972	0.00297467
+972.12	0.00297445
+972.24	0.00297423
+972.36	0.00297402
+972.48	0.0029738
+972.6	0.00297358
+972.72	0.00297337
+972.84	0.00297315
+972.96	0.00297294
+973.08	0.00297272
+973.2	0.0029725
+973.32	0.00297229
+973.44	0.00297207
+973.56	0.00297186
+973.68	0.00297164
+973.8	0.00297142
+973.92	0.00297121
+974.04	0.00297099
+974.16	0.00297078
+974.28	0.00297056
+974.4	0.00297035
+974.52	0.00297013
+974.64	0.00296992
+974.76	0.0029697
+974.88	0.00296949
+975	0.00296927
+975.12	0.00296906
+975.24	0.00296884
+975.36	0.00296863
+975.48	0.00296841
+975.6	0.0029682
+975.72	0.00296798
+975.84	0.00296777
+975.96	0.00296755
+976.08	0.00296734
+976.2	0.00296712
+976.32	0.00296691
+976.44	0.00296669
+976.56	0.00296648
+976.68	0.00296626
+976.8	0.00296605
+976.92	0.00296584
+977.04	0.00296562
+977.16	0.00296541
+977.28	0.00296519
+977.4	0.00296498
+977.52	0.00296476
+977.64	0.00296455
+977.76	0.00296434
+977.88	0.00296412
+978	0.00296391
+978.12	0.0029637
+978.24	0.00296348
+978.36	0.00296327
+978.48	0.00296305
+978.6	0.00296284
+978.72	0.00296263
+978.84	0.00296241
+978.96	0.0029622
+979.08	0.00296199
+979.2	0.00296177
+979.32	0.00296156
+979.44	0.00296135
+979.56	0.00296113
+979.68	0.00296092
+979.8	0.00296071
+979.92	0.00296049
+980.04	0.00296028
+980.16	0.00296007
+980.28	0.00295986
+980.4	0.00295964
+980.52	0.00295943
+980.64	0.00295922
+980.76	0.002959
+980.88	0.00295879
+981	0.00295858
+981.12	0.00295837
+981.24	0.00295815
+981.36	0.00295794
+981.48	0.00295773
+981.6	0.00295752
+981.72	0.0029573
+981.84	0.00295709
+981.96	0.00295688
+982.08	0.00295667
+982.2	0.00295646
+982.32	0.00295624
+982.44	0.00295603
+982.56	0.00295582
+982.68	0.00295561
+982.8	0.0029554
+982.92	0.00295518
+983.04	0.00295497
+983.16	0.00295476
+983.28	0.00295455
+983.4	0.00295434
+983.52	0.00295413
+983.64	0.00295392
+983.76	0.0029537
+983.88	0.00295349
+984	0.00295328
+984.12	0.00295307
+984.24	0.00295286
+984.36	0.00295265
+984.48	0.00295244
+984.6	0.00295223
+984.72	0.00295201
+984.84	0.0029518
+984.96	0.00295159
+985.08	0.00295138
+985.2	0.00295117
+985.32	0.00295096
+985.44	0.00295075
+985.56	0.00295054
+985.68	0.00295033
+985.8	0.00295012
+985.92	0.00294991
+986.04	0.0029497
+986.16	0.00294949
+986.28	0.00294928
+986.4	0.00294907
+986.52	0.00294886
+986.64	0.00294864
+986.76	0.00294843
+986.88	0.00294822
+987	0.00294801
+987.12	0.0029478
+987.24	0.00294759
+987.36	0.00294738
+987.48	0.00294717
+987.6	0.00294696
+987.72	0.00294676
+987.84	0.00294655
+987.96	0.00294634
+988.08	0.00294613
+988.2	0.00294592
+988.32	0.00294571
+988.44	0.0029455
+988.56	0.00294529
+988.68	0.00294508
+988.8	0.00294487
+988.92	0.00294466
+989.04	0.00294445
+989.16	0.00294424
+989.28	0.00294403
+989.4	0.00294382
+989.52	0.00294361
+989.64	0.00294341
+989.76	0.0029432
+989.88	0.00294299
+990	0.00294278
+990.12	0.00294257
+990.24	0.00294236
+990.36	0.00294215
+990.48	0.00294194
+990.6	0.00294174
+990.72	0.00294153
+990.84	0.00294132
+990.96	0.00294111
+991.08	0.0029409
+991.2	0.00294069
+991.32	0.00294049
+991.44	0.00294028
+991.56	0.00294007
+991.68	0.00293986
+991.8	0.00293965
+991.92	0.00293944
+992.04	0.00293924
+992.16	0.00293903
+992.28	0.00293882
+992.4	0.00293861
+992.52	0.00293841
+992.64	0.0029382
+992.76	0.00293799
+992.88	0.00293778
+993	0.00293757
+993.12	0.00293737
+993.24	0.00293716
+993.36	0.00293695
+993.48	0.00293674
+993.6	0.00293654
+993.72	0.00293633
+993.84	0.00293612
+993.96	0.00293592
+994.08	0.00293571
+994.2	0.0029355
+994.32	0.00293529
+994.44	0.00293509
+994.56	0.00293488
+994.68	0.00293467
+994.8	0.00293447
+994.92	0.00293426
+995.04	0.00293405
+995.16	0.00293385
+995.28	0.00293364
+995.4	0.00293343
+995.52	0.00293323
+995.64	0.00293302
+995.76	0.00293281
+995.88	0.00293261
+996	0.0029324
+996.12	0.00293219
+996.24	0.00293199
+996.36	0.00293178
+996.48	0.00293158
+996.6	0.00293137
+996.72	0.00293116
+996.84	0.00293096
+996.96	0.00293075
+997.08	0.00293055
+997.2	0.00293034
+997.32	0.00293013
+997.44	0.00292993
+997.56	0.00292972
+997.68	0.00292952
+997.8	0.00292931
+997.92	0.00292911
+998.04	0.0029289
+998.16	0.00292869
+998.28	0.00292849
+998.4	0.00292828
+998.52	0.00292808
+998.64	0.00292787
+998.76	0.00292767
+998.88	0.00292746
+999	0.00292726
+999.12	0.00292705
+999.24	0.00292685
+999.36	0.00292664
+999.48	0.00292644
+999.6	0.00292623
+999.72	0.00292603
+999.84	0.00292582
+999.96	0.00292562
+1000.08	0.00292541
+1000.2	0.00292521
+1000.32	0.002925
+1000.44	0.0029248
+1000.56	0.00292459
+1000.68	0.00292439
+1000.8	0.00292419
+1000.92	0.00292398
+1001.04	0.00292378
+1001.16	0.00292357
+1001.28	0.00292337
+1001.4	0.00292316
+1001.52	0.00292296
+1001.64	0.00292276
+1001.76	0.00292255
+1001.88	0.00292235
+1002	0.00292214
+1002.12	0.00292194
+1002.24	0.00292174
+1002.36	0.00292153
+1002.48	0.00292133
+1002.6	0.00292112
+1002.72	0.00292092
+1002.84	0.00292072
+1002.96	0.00292051
+1003.08	0.00292031
+1003.2	0.00292011
+1003.32	0.0029199
+1003.44	0.0029197
+1003.56	0.0029195
+1003.68	0.00291929
+1003.8	0.00291909
+1003.92	0.00291889
+1004.04	0.00291868
+1004.16	0.00291848
+1004.28	0.00291828
+1004.4	0.00291807
+1004.52	0.00291787
+1004.64	0.00291767
+1004.76	0.00291747
+1004.88	0.00291726
+1005	0.00291706
+1005.12	0.00291686
+1005.24	0.00291665
+1005.36	0.00291645
+1005.48	0.00291625
+1005.6	0.00291605
+1005.72	0.00291584
+1005.84	0.00291564
+1005.96	0.00291544
+1006.08	0.00291524
+1006.2	0.00291503
+1006.32	0.00291483
+1006.44	0.00291463
+1006.56	0.00291443
+1006.68	0.00291423
+1006.8	0.00291402
+1006.92	0.00291382
+1007.04	0.00291362
+1007.16	0.00291342
+1007.28	0.00291322
+1007.4	0.00291301
+1007.52	0.00291281
+1007.64	0.00291261
+1007.76	0.00291241
+1007.88	0.00291221
+1008	0.00291201
+1008.12	0.0029118
+1008.24	0.0029116
+1008.36	0.0029114
+1008.48	0.0029112
+1008.6	0.002911
+1008.72	0.0029108
+1008.84	0.0029106
+1008.96	0.00291039
+1009.08	0.00291019
+1009.2	0.00290999
+1009.32	0.00290979
+1009.44	0.00290959
+1009.56	0.00290939
+1009.68	0.00290919
+1009.8	0.00290899
+1009.92	0.00290879
+1010.04	0.00290859
+1010.16	0.00290839
+1010.28	0.00290818
+1010.4	0.00290798
+1010.52	0.00290778
+1010.64	0.00290758
+1010.76	0.00290738
+1010.88	0.00290718
+1011	0.00290698
+1011.12	0.00290678
+1011.24	0.00290658
+1011.36	0.00290638
+1011.48	0.00290618
+1011.6	0.00290598
+1011.72	0.00290578
+1011.84	0.00290558
+1011.96	0.00290538
+1012.08	0.00290518
+1012.2	0.00290498
+1012.32	0.00290478
+1012.44	0.00290458
+1012.56	0.00290438
+1012.68	0.00290418
+1012.8	0.00290398
+1012.92	0.00290378
+1013.04	0.00290358
+1013.16	0.00290338
+1013.28	0.00290318
+1013.4	0.00290298
+1013.52	0.00290278
+1013.64	0.00290258
+1013.76	0.00290238
+1013.88	0.00290219
+1014	0.00290199
+1014.12	0.00290179
+1014.24	0.00290159
+1014.36	0.00290139
+1014.48	0.00290119
+1014.6	0.00290099
+1014.72	0.00290079
+1014.84	0.00290059
+1014.96	0.00290039
+1015.08	0.00290019
+1015.2	0.0029
+1015.32	0.0028998
+1015.44	0.0028996
+1015.56	0.0028994
+1015.68	0.0028992
+1015.8	0.002899
+1015.92	0.0028988
+1016.04	0.00289861
+1016.16	0.00289841
+1016.28	0.00289821
+1016.4	0.00289801
+1016.52	0.00289781
+1016.64	0.00289761
+1016.76	0.00289742
+1016.88	0.00289722
+1017	0.00289702
+1017.12	0.00289682
+1017.24	0.00289662
+1017.36	0.00289642
+1017.48	0.00289623
+1017.6	0.00289603
+1017.72	0.00289583
+1017.84	0.00289563
+1017.96	0.00289544
+1018.08	0.00289524
+1018.2	0.00289504
+1018.32	0.00289484
+1018.44	0.00289465
+1018.56	0.00289445
+1018.68	0.00289425
+1018.8	0.00289405
+1018.92	0.00289386
+1019.04	0.00289366
+1019.16	0.00289346
+1019.28	0.00289326
+1019.4	0.00289307
+1019.52	0.00289287
+1019.64	0.00289267
+1019.76	0.00289247
+1019.88	0.00289228
+1020	0.00289208
+1020.12	0.00289188
+1020.24	0.00289169
+1020.36	0.00289149
+1020.48	0.00289129
+1020.6	0.0028911
+1020.72	0.0028909
+1020.84	0.0028907
+1020.96	0.00289051
+1021.08	0.00289031
+1021.2	0.00289011
+1021.32	0.00288992
+1021.44	0.00288972
+1021.56	0.00288952
+1021.68	0.00288933
+1021.8	0.00288913
+1021.92	0.00288894
+1022.04	0.00288874
+1022.16	0.00288854
+1022.28	0.00288835
+1022.4	0.00288815
+1022.52	0.00288795
+1022.64	0.00288776
+1022.76	0.00288756
+1022.88	0.00288737
+1023	0.00288717
+1023.12	0.00288698
+1023.24	0.00288678
+1023.36	0.00288658
+1023.48	0.00288639
+1023.6	0.00288619
+1023.72	0.002886
+1023.84	0.0028858
+1023.96	0.00288561
+1024.08	0.00288541
+1024.2	0.00288522
+1024.32	0.00288502
+1024.44	0.00288482
+1024.56	0.00288463
+1024.68	0.00288443
+1024.8	0.00288424
+1024.92	0.00288404
+1025.04	0.00288385
+1025.16	0.00288365
+1025.28	0.00288346
+1025.4	0.00288326
+1025.52	0.00288307
+1025.64	0.00288287
+1025.76	0.00288268
+1025.88	0.00288248
+1026	0.00288229
+1026.12	0.00288209
+1026.24	0.0028819
+1026.36	0.00288171
+1026.48	0.00288151
+1026.6	0.00288132
+1026.72	0.00288112
+1026.84	0.00288093
+1026.96	0.00288073
+1027.08	0.00288054
+1027.2	0.00288034
+1027.32	0.00288015
+1027.44	0.00287996
+1027.56	0.00287976
+1027.68	0.00287957
+1027.8	0.00287937
+1027.92	0.00287918
+1028.04	0.00287899
+1028.16	0.00287879
+1028.28	0.0028786
+1028.4	0.0028784
+1028.52	0.00287821
+1028.64	0.00287802
+1028.76	0.00287782
+1028.88	0.00287763
+1029	0.00287744
+1029.12	0.00287724
+1029.24	0.00287705
+1029.36	0.00287686
+1029.48	0.00287666
+1029.6	0.00287647
+1029.72	0.00287628
+1029.84	0.00287608
+1029.96	0.00287589
+1030.08	0.0028757
+1030.2	0.0028755
+1030.32	0.00287531
+1030.44	0.00287512
+1030.56	0.00287492
+1030.68	0.00287473
+1030.8	0.00287454
+1030.92	0.00287434
+1031.04	0.00287415
+1031.16	0.00287396
+1031.28	0.00287377
+1031.4	0.00287357
+1031.52	0.00287338
+1031.64	0.00287319
+1031.76	0.00287299
+1031.88	0.0028728
+1032	0.00287261
+1032.12	0.00287242
+1032.24	0.00287222
+1032.36	0.00287203
+1032.48	0.00287184
+1032.6	0.00287165
+1032.72	0.00287146
+1032.84	0.00287126
+1032.96	0.00287107
+1033.08	0.00287088
+1033.2	0.00287069
+1033.32	0.00287049
+1033.44	0.0028703
+1033.56	0.00287011
+1033.68	0.00286992
+1033.8	0.00286973
+1033.92	0.00286954
+1034.04	0.00286934
+1034.16	0.00286915
+1034.28	0.00286896
+1034.4	0.00286877
+1034.52	0.00286858
+1034.64	0.00286839
+1034.76	0.00286819
+1034.88	0.002868
+1035	0.00286781
+1035.12	0.00286762
+1035.24	0.00286743
+1035.36	0.00286724
+1035.48	0.00286705
+1035.6	0.00286685
+1035.72	0.00286666
+1035.84	0.00286647
+1035.96	0.00286628
+1036.08	0.00286609
+1036.2	0.0028659
+1036.32	0.00286571
+1036.44	0.00286552
+1036.56	0.00286533
+1036.68	0.00286514
+1036.8	0.00286494
+1036.92	0.00286475
+1037.04	0.00286456
+1037.16	0.00286437
+1037.28	0.00286418
+1037.4	0.00286399
+1037.52	0.0028638
+1037.64	0.00286361
+1037.76	0.00286342
+1037.88	0.00286323
+1038	0.00286304
+1038.12	0.00286285
+1038.24	0.00286266
+1038.36	0.00286247
+1038.48	0.00286228
+1038.6	0.00286209
+1038.72	0.0028619
+1038.84	0.00286171
+1038.96	0.00286152
+1039.08	0.00286133
+1039.2	0.00286114
+1039.32	0.00286095
+1039.44	0.00286076
+1039.56	0.00286057
+1039.68	0.00286038
+1039.8	0.00286019
+1039.92	0.00286
+1040.04	0.00285981
+1040.16	0.00285962
+1040.28	0.00285943
+1040.4	0.00285924
+1040.52	0.00285905
+1040.64	0.00285886
+1040.76	0.00285867
+1040.88	0.00285848
+1041	0.0028583
+1041.12	0.00285811
+1041.24	0.00285792
+1041.36	0.00285773
+1041.48	0.00285754
+1041.6	0.00285735
+1041.72	0.00285716
+1041.84	0.00285697
+1041.96	0.00285678
+1042.08	0.00285659
+1042.2	0.0028564
+1042.32	0.00285622
+1042.44	0.00285603
+1042.56	0.00285584
+1042.68	0.00285565
+1042.8	0.00285546
+1042.92	0.00285527
+1043.04	0.00285508
+1043.16	0.0028549
+1043.28	0.00285471
+1043.4	0.00285452
+1043.52	0.00285433
+1043.64	0.00285414
+1043.76	0.00285395
+1043.88	0.00285377
+1044	0.00285358
+1044.12	0.00285339
+1044.24	0.0028532
+1044.36	0.00285301
+1044.48	0.00285282
+1044.6	0.00285264
+1044.72	0.00285245
+1044.84	0.00285226
+1044.96	0.00285207
+1045.08	0.00285189
+1045.2	0.0028517
+1045.32	0.00285151
+1045.44	0.00285132
+1045.56	0.00285113
+1045.68	0.00285095
+1045.8	0.00285076
+1045.92	0.00285057
+1046.04	0.00285038
+1046.16	0.0028502
+1046.28	0.00285001
+1046.4	0.00284982
+1046.52	0.00284963
+1046.64	0.00284945
+1046.76	0.00284926
+1046.88	0.00284907
+1047	0.00284889
+1047.12	0.0028487
+1047.24	0.00284851
+1047.36	0.00284832
+1047.48	0.00284814
+1047.6	0.00284795
+1047.72	0.00284776
+1047.84	0.00284758
+1047.96	0.00284739
+1048.08	0.0028472
+1048.2	0.00284702
+1048.32	0.00284683
+1048.44	0.00284664
+1048.56	0.00284646
+1048.68	0.00284627
+1048.8	0.00284608
+1048.92	0.0028459
+1049.04	0.00284571
+1049.16	0.00284552
+1049.28	0.00284534
+1049.4	0.00284515
+1049.52	0.00284497
+1049.64	0.00284478
+1049.76	0.00284459
+1049.88	0.00284441
+1050	0.00284422
+1050.12	0.00284404
+1050.24	0.00284385
+1050.36	0.00284366
+1050.48	0.00284348
+1050.6	0.00284329
+1050.72	0.00284311
+1050.84	0.00284292
+1050.96	0.00284273
+1051.08	0.00284255
+1051.2	0.00284236
+1051.32	0.00284218
+1051.44	0.00284199
+1051.56	0.00284181
+1051.68	0.00284162
+1051.8	0.00284143
+1051.92	0.00284125
+1052.04	0.00284106
+1052.16	0.00284088
+1052.28	0.00284069
+1052.4	0.00284051
+1052.52	0.00284032
+1052.64	0.00284014
+1052.76	0.00283995
+1052.88	0.00283977
+1053	0.00283958
+1053.12	0.0028394
+1053.24	0.00283921
+1053.36	0.00283903
+1053.48	0.00283884
+1053.6	0.00283866
+1053.72	0.00283847
+1053.84	0.00283829
+1053.96	0.0028381
+1054.08	0.00283792
+1054.2	0.00283773
+1054.32	0.00283755
+1054.44	0.00283736
+1054.56	0.00283718
+1054.68	0.002837
+1054.8	0.00283681
+1054.92	0.00283663
+1055.04	0.00283644
+1055.16	0.00283626
+1055.28	0.00283607
+1055.4	0.00283589
+1055.52	0.00283571
+1055.64	0.00283552
+1055.76	0.00283534
+1055.88	0.00283515
+1056	0.00283497
+1056.12	0.00283479
+1056.24	0.0028346
+1056.36	0.00283442
+1056.48	0.00283423
+1056.6	0.00283405
+1056.72	0.00283387
+1056.84	0.00283368
+1056.96	0.0028335
+1057.08	0.00283332
+1057.2	0.00283313
+1057.32	0.00283295
+1057.44	0.00283276
+1057.56	0.00283258
+1057.68	0.0028324
+1057.8	0.00283221
+1057.92	0.00283203
+1058.04	0.00283185
+1058.16	0.00283166
+1058.28	0.00283148
+1058.4	0.0028313
+1058.52	0.00283111
+1058.64	0.00283093
+1058.76	0.00283075
+1058.88	0.00283057
+1059	0.00283038
+1059.12	0.0028302
+1059.24	0.00283002
+1059.36	0.00282983
+1059.48	0.00282965
+1059.6	0.00282947
+1059.72	0.00282928
+1059.84	0.0028291
+1059.96	0.00282892
+1060.08	0.00282874
+1060.2	0.00282855
+1060.32	0.00282837
+1060.44	0.00282819
+1060.56	0.00282801
+1060.68	0.00282782
+1060.8	0.00282764
+1060.92	0.00282746
+1061.04	0.00282728
+1061.16	0.0028271
+1061.28	0.00282691
+1061.4	0.00282673
+1061.52	0.00282655
+1061.64	0.00282637
+1061.76	0.00282618
+1061.88	0.002826
+1062	0.00282582
+1062.12	0.00282564
+1062.24	0.00282546
+1062.36	0.00282527
+1062.48	0.00282509
+1062.6	0.00282491
+1062.72	0.00282473
+1062.84	0.00282455
+1062.96	0.00282437
+1063.08	0.00282418
+1063.2	0.002824
+1063.32	0.00282382
+1063.44	0.00282364
+1063.56	0.00282346
+1063.68	0.00282328
+1063.8	0.0028231
+1063.92	0.00282291
+1064.04	0.00282273
+1064.16	0.00282255
+1064.28	0.00282237
+1064.4	0.00282219
+1064.52	0.00282201
+1064.64	0.00282183
+1064.76	0.00282165
+1064.88	0.00282146
+1065	0.00282128
+1065.12	0.0028211
+1065.24	0.00282092
+1065.36	0.00282074
+1065.48	0.00282056
+1065.6	0.00282038
+1065.72	0.0028202
+1065.84	0.00282002
+1065.96	0.00281984
+1066.08	0.00281966
+1066.2	0.00281948
+1066.32	0.0028193
+1066.44	0.00281912
+1066.56	0.00281893
+1066.68	0.00281875
+1066.8	0.00281857
+1066.92	0.00281839
+1067.04	0.00281821
+1067.16	0.00281803
+1067.28	0.00281785
+1067.4	0.00281767
+1067.52	0.00281749
+1067.64	0.00281731
+1067.76	0.00281713
+1067.88	0.00281695
+1068	0.00281677
+1068.12	0.00281659
+1068.24	0.00281641
+1068.36	0.00281623
+1068.48	0.00281605
+1068.6	0.00281587
+1068.72	0.00281569
+1068.84	0.00281551
+1068.96	0.00281533
+1069.08	0.00281515
+1069.2	0.00281497
+1069.32	0.00281479
+1069.44	0.00281462
+1069.56	0.00281444
+1069.68	0.00281426
+1069.8	0.00281408
+1069.92	0.0028139
+1070.04	0.00281372
+1070.16	0.00281354
+1070.28	0.00281336
+1070.4	0.00281318
+1070.52	0.002813
+1070.64	0.00281282
+1070.76	0.00281264
+1070.88	0.00281246
+1071	0.00281229
+1071.12	0.00281211
+1071.24	0.00281193
+1071.36	0.00281175
+1071.48	0.00281157
+1071.6	0.00281139
+1071.72	0.00281121
+1071.84	0.00281103
+1071.96	0.00281085
+1072.08	0.00281068
+1072.2	0.0028105
+1072.32	0.00281032
+1072.44	0.00281014
+1072.56	0.00280996
+1072.68	0.00280978
+1072.8	0.00280961
+1072.92	0.00280943
+1073.04	0.00280925
+1073.16	0.00280907
+1073.28	0.00280889
+1073.4	0.00280871
+1073.52	0.00280854
+1073.64	0.00280836
+1073.76	0.00280818
+1073.88	0.002808
+1074	0.00280782
+1074.12	0.00280765
+1074.24	0.00280747
+1074.36	0.00280729
+1074.48	0.00280711
+1074.6	0.00280693
+1074.72	0.00280676
+1074.84	0.00280658
+1074.96	0.0028064
+1075.08	0.00280622
+1075.2	0.00280605
+1075.32	0.00280587
+1075.44	0.00280569
+1075.56	0.00280551
+1075.68	0.00280534
+1075.8	0.00280516
+1075.92	0.00280498
+1076.04	0.0028048
+1076.16	0.00280463
+1076.28	0.00280445
+1076.4	0.00280427
+1076.52	0.00280409
+1076.64	0.00280392
+1076.76	0.00280374
+1076.88	0.00280356
+1077	0.00280339
+1077.12	0.00280321
+1077.24	0.00280303
+1077.36	0.00280285
+1077.48	0.00280268
+1077.6	0.0028025
+1077.72	0.00280232
+1077.84	0.00280215
+1077.96	0.00280197
+1078.08	0.00280179
+1078.2	0.00280162
+1078.32	0.00280144
+1078.44	0.00280126
+1078.56	0.00280109
+1078.68	0.00280091
+1078.8	0.00280073
+1078.92	0.00280056
+1079.04	0.00280038
+1079.16	0.00280021
+1079.28	0.00280003
+1079.4	0.00279985
+1079.52	0.00279968
+1079.64	0.0027995
+1079.76	0.00279932
+1079.88	0.00279915
+1080	0.00279897
+1080.12	0.0027988
+1080.24	0.00279862
+1080.36	0.00279844
+1080.48	0.00279827
+1080.6	0.00279809
+1080.72	0.00279792
+1080.84	0.00279774
+1080.96	0.00279757
+1081.08	0.00279739
+1081.2	0.00279721
+1081.32	0.00279704
+1081.44	0.00279686
+1081.56	0.00279669
+1081.68	0.00279651
+1081.8	0.00279634
+1081.92	0.00279616
+1082.04	0.00279599
+1082.16	0.00279581
+1082.28	0.00279563
+1082.4	0.00279546
+1082.52	0.00279528
+1082.64	0.00279511
+1082.76	0.00279493
+1082.88	0.00279476
+1083	0.00279458
+1083.12	0.00279441
+1083.24	0.00279423
+1083.36	0.00279406
+1083.48	0.00279388
+1083.6	0.00279371
+1083.72	0.00279353
+1083.84	0.00279336
+1083.96	0.00279318
+1084.08	0.00279301
+1084.2	0.00279283
+1084.32	0.00279266
+1084.44	0.00279248
+1084.56	0.00279231
+1084.68	0.00279214
+1084.8	0.00279196
+1084.92	0.00279179
+1085.04	0.00279161
+1085.16	0.00279144
+1085.28	0.00279126
+1085.4	0.00279109
+1085.52	0.00279091
+1085.64	0.00279074
+1085.76	0.00279057
+1085.88	0.00279039
+1086	0.00279022
+1086.12	0.00279004
+1086.24	0.00278987
+1086.36	0.0027897
+1086.48	0.00278952
+1086.6	0.00278935
+1086.72	0.00278917
+1086.84	0.002789
+1086.96	0.00278883
+1087.08	0.00278865
+1087.2	0.00278848
+1087.32	0.0027883
+1087.44	0.00278813
+1087.56	0.00278796
+1087.68	0.00278778
+1087.8	0.00278761
+1087.92	0.00278744
+1088.04	0.00278726
+1088.16	0.00278709
+1088.28	0.00278692
+1088.4	0.00278674
+1088.52	0.00278657
+1088.64	0.0027864
+1088.76	0.00278622
+1088.88	0.00278605
+1089	0.00278588
+1089.12	0.0027857
+1089.24	0.00278553
+1089.36	0.00278536
+1089.48	0.00278518
+1089.6	0.00278501
+1089.72	0.00278484
+1089.84	0.00278466
+1089.96	0.00278449
+1090.08	0.00278432
+1090.2	0.00278415
+1090.32	0.00278397
+1090.44	0.0027838
+1090.56	0.00278363
+1090.68	0.00278346
+1090.8	0.00278328
+1090.92	0.00278311
+1091.04	0.00278294
+1091.16	0.00278276
+1091.28	0.00278259
+1091.4	0.00278242
+1091.52	0.00278225
+1091.64	0.00278207
+1091.76	0.0027819
+1091.88	0.00278173
+1092	0.00278156
+1092.12	0.00278139
+1092.24	0.00278121
+1092.36	0.00278104
+1092.48	0.00278087
+1092.6	0.0027807
+1092.72	0.00278052
+1092.84	0.00278035
+1092.96	0.00278018
+1093.08	0.00278001
+1093.2	0.00277984
+1093.32	0.00277967
+1093.44	0.00277949
+1093.56	0.00277932
+1093.68	0.00277915
+1093.8	0.00277898
+1093.92	0.00277881
+1094.04	0.00277863
+1094.16	0.00277846
+1094.28	0.00277829
+1094.4	0.00277812
+1094.52	0.00277795
+1094.64	0.00277778
+1094.76	0.00277761
+1094.88	0.00277743
+1095	0.00277726
+1095.12	0.00277709
+1095.24	0.00277692
+1095.36	0.00277675
+1095.48	0.00277658
+1095.6	0.00277641
+1095.72	0.00277624
+1095.84	0.00277606
+1095.96	0.00277589
+1096.08	0.00277572
+1096.2	0.00277555
+1096.32	0.00277538
+1096.44	0.00277521
+1096.56	0.00277504
+1096.68	0.00277487
+1096.8	0.0027747
+1096.92	0.00277453
+1097.04	0.00277436
+1097.16	0.00277418
+1097.28	0.00277401
+1097.4	0.00277384
+1097.52	0.00277367
+1097.64	0.0027735
+1097.76	0.00277333
+1097.88	0.00277316
+1098	0.00277299
+1098.12	0.00277282
+1098.24	0.00277265
+1098.36	0.00277248
+1098.48	0.00277231
+1098.6	0.00277214
+1098.72	0.00277197
+1098.84	0.0027718
+1098.96	0.00277163
+1099.08	0.00277146
+1099.2	0.00277129
+1099.32	0.00277112
+1099.44	0.00277095
+1099.56	0.00277078
+1099.68	0.00277061
+1099.8	0.00277044
+1099.92	0.00277027
+1100.04	0.0027701
+1100.16	0.00276993
+1100.28	0.00276976
+1100.4	0.00276959
+1100.52	0.00276942
+1100.64	0.00276925
+1100.76	0.00276908
+1100.88	0.00276891
+1101	0.00276874
+1101.12	0.00276857
+1101.24	0.0027684
+1101.36	0.00276823
+1101.48	0.00276806
+1101.6	0.0027679
+1101.72	0.00276773
+1101.84	0.00276756
+1101.96	0.00276739
+1102.08	0.00276722
+1102.2	0.00276705
+1102.32	0.00276688
+1102.44	0.00276671
+1102.56	0.00276654
+1102.68	0.00276637
+1102.8	0.0027662
+1102.92	0.00276603
+1103.04	0.00276587
+1103.16	0.0027657
+1103.28	0.00276553
+1103.4	0.00276536
+1103.52	0.00276519
+1103.64	0.00276502
+1103.76	0.00276485
+1103.88	0.00276468
+1104	0.00276452
+1104.12	0.00276435
+1104.24	0.00276418
+1104.36	0.00276401
+1104.48	0.00276384
+1104.6	0.00276367
+1104.72	0.00276351
+1104.84	0.00276334
+1104.96	0.00276317
+1105.08	0.002763
+1105.2	0.00276283
+1105.32	0.00276266
+1105.44	0.0027625
+1105.56	0.00276233
+1105.68	0.00276216
+1105.8	0.00276199
+1105.92	0.00276182
+1106.04	0.00276166
+1106.16	0.00276149
+1106.28	0.00276132
+1106.4	0.00276115
+1106.52	0.00276098
+1106.64	0.00276082
+1106.76	0.00276065
+1106.88	0.00276048
+1107	0.00276031
+1107.12	0.00276014
+1107.24	0.00275998
+1107.36	0.00275981
+1107.48	0.00275964
+1107.6	0.00275947
+1107.72	0.00275931
+1107.84	0.00275914
+1107.96	0.00275897
+1108.08	0.0027588
+1108.2	0.00275864
+1108.32	0.00275847
+1108.44	0.0027583
+1108.56	0.00275814
+1108.68	0.00275797
+1108.8	0.0027578
+1108.92	0.00275763
+1109.04	0.00275747
+1109.16	0.0027573
+1109.28	0.00275713
+1109.4	0.00275697
+1109.52	0.0027568
+1109.64	0.00275663
+1109.76	0.00275647
+1109.88	0.0027563
+1110	0.00275613
+1110.12	0.00275596
+1110.24	0.0027558
+1110.36	0.00275563
+1110.48	0.00275546
+1110.6	0.0027553
+1110.72	0.00275513
+1110.84	0.00275496
+1110.96	0.0027548
+1111.08	0.00275463
+1111.2	0.00275447
+1111.32	0.0027543
+1111.44	0.00275413
+1111.56	0.00275397
+1111.68	0.0027538
+1111.8	0.00275363
+1111.92	0.00275347
+1112.04	0.0027533
+1112.16	0.00275313
+1112.28	0.00275297
+1112.4	0.0027528
+1112.52	0.00275264
+1112.64	0.00275247
+1112.76	0.0027523
+1112.88	0.00275214
+1113	0.00275197
+1113.12	0.00275181
+1113.24	0.00275164
+1113.36	0.00275147
+1113.48	0.00275131
+1113.6	0.00275114
+1113.72	0.00275098
+1113.84	0.00275081
+1113.96	0.00275065
+1114.08	0.00275048
+1114.2	0.00275032
+1114.32	0.00275015
+1114.44	0.00274998
+1114.56	0.00274982
+1114.68	0.00274965
+1114.8	0.00274949
+1114.92	0.00274932
+1115.04	0.00274916
+1115.16	0.00274899
+1115.28	0.00274883
+1115.4	0.00274866
+1115.52	0.0027485
+1115.64	0.00274833
+1115.76	0.00274817
+1115.88	0.002748
+1116	0.00274784
+1116.12	0.00274767
+1116.24	0.00274751
+1116.36	0.00274734
+1116.48	0.00274718
+1116.6	0.00274701
+1116.72	0.00274685
+1116.84	0.00274668
+1116.96	0.00274652
+1117.08	0.00274635
+1117.2	0.00274619
+1117.32	0.00274602
+1117.44	0.00274586
+1117.56	0.00274569
+1117.68	0.00274553
+1117.8	0.00274536
+1117.92	0.0027452
+1118.04	0.00274504
+1118.16	0.00274487
+1118.28	0.00274471
+1118.4	0.00274454
+1118.52	0.00274438
+1118.64	0.00274421
+1118.76	0.00274405
+1118.88	0.00274388
+1119	0.00274372
+1119.12	0.00274356
+1119.24	0.00274339
+1119.36	0.00274323
+1119.48	0.00274306
+1119.6	0.0027429
+1119.72	0.00274274
+1119.84	0.00274257
+1119.96	0.00274241
+1120.08	0.00274224
+1120.2	0.00274208
+1120.32	0.00274192
+1120.44	0.00274175
+1120.56	0.00274159
+1120.68	0.00274143
+1120.8	0.00274126
+1120.92	0.0027411
+1121.04	0.00274093
+1121.16	0.00274077
+1121.28	0.00274061
+1121.4	0.00274044
+1121.52	0.00274028
+1121.64	0.00274012
+1121.76	0.00273995
+1121.88	0.00273979
+1122	0.00273963
+1122.12	0.00273946
+1122.24	0.0027393
+1122.36	0.00273914
+1122.48	0.00273897
+1122.6	0.00273881
+1122.72	0.00273865
+1122.84	0.00273849
+1122.96	0.00273832
+1123.08	0.00273816
+1123.2	0.002738
+1123.32	0.00273783
+1123.44	0.00273767
+1123.56	0.00273751
+1123.68	0.00273734
+1123.8	0.00273718
+1123.92	0.00273702
+1124.04	0.00273686
+1124.16	0.00273669
+1124.28	0.00273653
+1124.4	0.00273637
+1124.52	0.00273621
+1124.64	0.00273604
+1124.76	0.00273588
+1124.88	0.00273572
+1125	0.00273556
+1125.12	0.00273539
+1125.24	0.00273523
+1125.36	0.00273507
+1125.48	0.00273491
+1125.6	0.00273474
+1125.72	0.00273458
+1125.84	0.00273442
+1125.96	0.00273426
+1126.08	0.0027341
+1126.2	0.00273393
+1126.32	0.00273377
+1126.44	0.00273361
+1126.56	0.00273345
+1126.68	0.00273328
+1126.8	0.00273312
+1126.92	0.00273296
+1127.04	0.0027328
+1127.16	0.00273264
+1127.28	0.00273248
+1127.4	0.00273231
+1127.52	0.00273215
+1127.64	0.00273199
+1127.76	0.00273183
+1127.88	0.00273167
+1128	0.00273151
+1128.12	0.00273134
+1128.24	0.00273118
+1128.36	0.00273102
+1128.48	0.00273086
+1128.6	0.0027307
+1128.72	0.00273054
+1128.84	0.00273038
+1128.96	0.00273021
+1129.08	0.00273005
+1129.2	0.00272989
+1129.32	0.00272973
+1129.44	0.00272957
+1129.56	0.00272941
+1129.68	0.00272925
+1129.8	0.00272909
+1129.92	0.00272892
+1130.04	0.00272876
+1130.16	0.0027286
+1130.28	0.00272844
+1130.4	0.00272828
+1130.52	0.00272812
+1130.64	0.00272796
+1130.76	0.0027278
+1130.88	0.00272764
+1131	0.00272748
+1131.12	0.00272732
+1131.24	0.00272715
+1131.36	0.00272699
+1131.48	0.00272683
+1131.6	0.00272667
+1131.72	0.00272651
+1131.84	0.00272635
+1131.96	0.00272619
+1132.08	0.00272603
+1132.2	0.00272587
+1132.32	0.00272571
+1132.44	0.00272555
+1132.56	0.00272539
+1132.68	0.00272523
+1132.8	0.00272507
+1132.92	0.00272491
+1133.04	0.00272475
+1133.16	0.00272459
+1133.28	0.00272443
+1133.4	0.00272427
+1133.52	0.00272411
+1133.64	0.00272395
+1133.76	0.00272379
+1133.88	0.00272363
+1134	0.00272347
+1134.12	0.00272331
+1134.24	0.00272315
+1134.36	0.00272299
+1134.48	0.00272283
+1134.6	0.00272267
+1134.72	0.00272251
+1134.84	0.00272235
+1134.96	0.00272219
+1135.08	0.00272203
+1135.2	0.00272187
+1135.32	0.00272171
+1135.44	0.00272155
+1135.56	0.00272139
+1135.68	0.00272123
+1135.8	0.00272107
+1135.92	0.00272091
+1136.04	0.00272075
+1136.16	0.0027206
+1136.28	0.00272044
+1136.4	0.00272028
+1136.52	0.00272012
+1136.64	0.00271996
+1136.76	0.0027198
+1136.88	0.00271964
+1137	0.00271948
+1137.12	0.00271932
+1137.24	0.00271916
+1137.36	0.002719
+1137.48	0.00271885
+1137.6	0.00271869
+1137.72	0.00271853
+1137.84	0.00271837
+1137.96	0.00271821
+1138.08	0.00271805
+1138.2	0.00271789
+1138.32	0.00271773
+1138.44	0.00271757
+1138.56	0.00271742
+1138.68	0.00271726
+1138.8	0.0027171
+1138.92	0.00271694
+1139.04	0.00271678
+1139.16	0.00271662
+1139.28	0.00271646
+1139.4	0.00271631
+1139.52	0.00271615
+1139.64	0.00271599
+1139.76	0.00271583
+1139.88	0.00271567
+1140	0.00271551
+1140.12	0.00271536
+1140.24	0.0027152
+1140.36	0.00271504
+1140.48	0.00271488
+1140.6	0.00271472
+1140.72	0.00271457
+1140.84	0.00271441
+1140.96	0.00271425
+1141.08	0.00271409
+1141.2	0.00271393
+1141.32	0.00271378
+1141.44	0.00271362
+1141.56	0.00271346
+1141.68	0.0027133
+1141.8	0.00271314
+1141.92	0.00271299
+1142.04	0.00271283
+1142.16	0.00271267
+1142.28	0.00271251
+1142.4	0.00271236
+1142.52	0.0027122
+1142.64	0.00271204
+1142.76	0.00271188
+1142.88	0.00271173
+1143	0.00271157
+1143.12	0.00271141
+1143.24	0.00271125
+1143.36	0.0027111
+1143.48	0.00271094
+1143.6	0.00271078
+1143.72	0.00271063
+1143.84	0.00271047
+1143.96	0.00271031
+1144.08	0.00271015
+1144.2	0.00271
+1144.32	0.00270984
+1144.44	0.00270968
+1144.56	0.00270953
+1144.68	0.00270937
+1144.8	0.00270921
+1144.92	0.00270905
+1145.04	0.0027089
+1145.16	0.00270874
+1145.28	0.00270858
+1145.4	0.00270843
+1145.52	0.00270827
+1145.64	0.00270811
+1145.76	0.00270796
+1145.88	0.0027078
+1146	0.00270764
+1146.12	0.00270749
+1146.24	0.00270733
+1146.36	0.00270717
+1146.48	0.00270702
+1146.6	0.00270686
+1146.72	0.0027067
+1146.84	0.00270655
+1146.96	0.00270639
+1147.08	0.00270624
+1147.2	0.00270608
+1147.32	0.00270592
+1147.44	0.00270577
+1147.56	0.00270561
+1147.68	0.00270545
+1147.8	0.0027053
+1147.92	0.00270514
+1148.04	0.00270499
+1148.16	0.00270483
+1148.28	0.00270467
+1148.4	0.00270452
+1148.52	0.00270436
+1148.64	0.00270421
+1148.76	0.00270405
+1148.88	0.00270389
+1149	0.00270374
+1149.12	0.00270358
+1149.24	0.00270343
+1149.36	0.00270327
+1149.48	0.00270312
+1149.6	0.00270296
+1149.72	0.0027028
+1149.84	0.00270265
+1149.96	0.00270249
+1150.08	0.00270234
+1150.2	0.00270218
+1150.32	0.00270203
+1150.44	0.00270187
+1150.56	0.00270172
+1150.68	0.00270156
+1150.8	0.00270141
+1150.92	0.00270125
+1151.04	0.00270109
+1151.16	0.00270094
+1151.28	0.00270078
+1151.4	0.00270063
+1151.52	0.00270047
+1151.64	0.00270032
+1151.76	0.00270016
+1151.88	0.00270001
+1152	0.00269985
+1152.12	0.0026997
+1152.24	0.00269954
+1152.36	0.00269939
+1152.48	0.00269923
+1152.6	0.00269908
+1152.72	0.00269892
+1152.84	0.00269877
+1152.96	0.00269861
+1153.08	0.00269846
+1153.2	0.00269831
+1153.32	0.00269815
+1153.44	0.002698
+1153.56	0.00269784
+1153.68	0.00269769
+1153.8	0.00269753
+1153.92	0.00269738
+1154.04	0.00269722
+1154.16	0.00269707
+1154.28	0.00269691
+1154.4	0.00269676
+1154.52	0.00269661
+1154.64	0.00269645
+1154.76	0.0026963
+1154.88	0.00269614
+1155	0.00269599
+1155.12	0.00269583
+1155.24	0.00269568
+1155.36	0.00269553
+1155.48	0.00269537
+1155.6	0.00269522
+1155.72	0.00269506
+1155.84	0.00269491
+1155.96	0.00269476
+1156.08	0.0026946
+1156.2	0.00269445
+1156.32	0.00269429
+1156.44	0.00269414
+1156.56	0.00269399
+1156.68	0.00269383
+1156.8	0.00269368
+1156.92	0.00269353
+1157.04	0.00269337
+1157.16	0.00269322
+1157.28	0.00269306
+1157.4	0.00269291
+1157.52	0.00269276
+1157.64	0.0026926
+1157.76	0.00269245
+1157.88	0.0026923
+1158	0.00269214
+1158.12	0.00269199
+1158.24	0.00269184
+1158.36	0.00269168
+1158.48	0.00269153
+1158.6	0.00269138
+1158.72	0.00269122
+1158.84	0.00269107
+1158.96	0.00269092
+1159.08	0.00269076
+1159.2	0.00269061
+1159.32	0.00269046
+1159.44	0.0026903
+1159.56	0.00269015
+1159.68	0.00269
+1159.8	0.00268985
+1159.92	0.00268969
+1160.04	0.00268954
+1160.16	0.00268939
+1160.28	0.00268923
+1160.4	0.00268908
+1160.52	0.00268893
+1160.64	0.00268878
+1160.76	0.00268862
+1160.88	0.00268847
+1161	0.00268832
+1161.12	0.00268817
+1161.24	0.00268801
+1161.36	0.00268786
+1161.48	0.00268771
+1161.6	0.00268756
+1161.72	0.0026874
+1161.84	0.00268725
+1161.96	0.0026871
+1162.08	0.00268695
+1162.2	0.00268679
+1162.32	0.00268664
+1162.44	0.00268649
+1162.56	0.00268634
+1162.68	0.00268618
+1162.8	0.00268603
+1162.92	0.00268588
+1163.04	0.00268573
+1163.16	0.00268558
+1163.28	0.00268542
+1163.4	0.00268527
+1163.52	0.00268512
+1163.64	0.00268497
+1163.76	0.00268482
+1163.88	0.00268466
+1164	0.00268451
+1164.12	0.00268436
+1164.24	0.00268421
+1164.36	0.00268406
+1164.48	0.00268391
+1164.6	0.00268375
+1164.72	0.0026836
+1164.84	0.00268345
+1164.96	0.0026833
+1165.08	0.00268315
+1165.2	0.002683
+1165.32	0.00268284
+1165.44	0.00268269
+1165.56	0.00268254
+1165.68	0.00268239
+1165.8	0.00268224
+1165.92	0.00268209
+1166.04	0.00268194
+1166.16	0.00268178
+1166.28	0.00268163
+1166.4	0.00268148
+1166.52	0.00268133
+1166.64	0.00268118
+1166.76	0.00268103
+1166.88	0.00268088
+1167	0.00268073
+1167.12	0.00268057
+1167.24	0.00268042
+1167.36	0.00268027
+1167.48	0.00268012
+1167.6	0.00267997
+1167.72	0.00267982
+1167.84	0.00267967
+1167.96	0.00267952
+1168.08	0.00267937
+1168.2	0.00267922
+1168.32	0.00267907
+1168.44	0.00267891
+1168.56	0.00267876
+1168.68	0.00267861
+1168.8	0.00267846
+1168.92	0.00267831
+1169.04	0.00267816
+1169.16	0.00267801
+1169.28	0.00267786
+1169.4	0.00267771
+1169.52	0.00267756
+1169.64	0.00267741
+1169.76	0.00267726
+1169.88	0.00267711
+1170	0.00267696
+1170.12	0.00267681
+1170.24	0.00267666
+1170.36	0.00267651
+1170.48	0.00267636
+1170.6	0.00267621
+1170.72	0.00267606
+1170.84	0.00267591
+1170.96	0.00267576
+1171.08	0.00267561
+1171.2	0.00267546
+1171.32	0.00267531
+1171.44	0.00267516
+1171.56	0.00267501
+1171.68	0.00267486
+1171.8	0.00267471
+1171.92	0.00267456
+1172.04	0.00267441
+1172.16	0.00267426
+1172.28	0.00267411
+1172.4	0.00267396
+1172.52	0.00267381
+1172.64	0.00267366
+1172.76	0.00267351
+1172.88	0.00267336
+1173	0.00267321
+1173.12	0.00267306
+1173.24	0.00267291
+1173.36	0.00267276
+1173.48	0.00267261
+1173.6	0.00267246
+1173.72	0.00267231
+1173.84	0.00267216
+1173.96	0.00267201
+1174.08	0.00267187
+1174.2	0.00267172
+1174.32	0.00267157
+1174.44	0.00267142
+1174.56	0.00267127
+1174.68	0.00267112
+1174.8	0.00267097
+1174.92	0.00267082
+1175.04	0.00267067
+1175.16	0.00267052
+1175.28	0.00267037
+1175.4	0.00267023
+1175.52	0.00267008
+1175.64	0.00266993
+1175.76	0.00266978
+1175.88	0.00266963
+1176	0.00266948
+1176.12	0.00266933
+1176.24	0.00266918
+1176.36	0.00266903
+1176.48	0.00266889
+1176.6	0.00266874
+1176.72	0.00266859
+1176.84	0.00266844
+1176.96	0.00266829
+1177.08	0.00266814
+1177.2	0.00266799
+1177.32	0.00266785
+1177.44	0.0026677
+1177.56	0.00266755
+1177.68	0.0026674
+1177.8	0.00266725
+1177.92	0.0026671
+1178.04	0.00266696
+1178.16	0.00266681
+1178.28	0.00266666
+1178.4	0.00266651
+1178.52	0.00266636
+1178.64	0.00266621
+1178.76	0.00266607
+1178.88	0.00266592
+1179	0.00266577
+1179.12	0.00266562
+1179.24	0.00266547
+1179.36	0.00266533
+1179.48	0.00266518
+1179.6	0.00266503
+1179.72	0.00266488
+1179.84	0.00266473
+1179.96	0.00266459
+1180.08	0.00266444
+1180.2	0.00266429
+1180.32	0.00266414
+1180.44	0.002664
+1180.56	0.00266385
+1180.68	0.0026637
+1180.8	0.00266355
+1180.92	0.00266341
+1181.04	0.00266326
+1181.16	0.00266311
+1181.28	0.00266296
+1181.4	0.00266282
+1181.52	0.00266267
+1181.64	0.00266252
+1181.76	0.00266237
+1181.88	0.00266223
+1182	0.00266208
+1182.12	0.00266193
+1182.24	0.00266178
+1182.36	0.00266164
+1182.48	0.00266149
+1182.6	0.00266134
+1182.72	0.0026612
+1182.84	0.00266105
+1182.96	0.0026609
+1183.08	0.00266075
+1183.2	0.00266061
+1183.32	0.00266046
+1183.44	0.00266031
+1183.56	0.00266017
+1183.68	0.00266002
+1183.8	0.00265987
+1183.92	0.00265973
+1184.04	0.00265958
+1184.16	0.00265943
+1184.28	0.00265929
+1184.4	0.00265914
+1184.52	0.00265899
+1184.64	0.00265885
+1184.76	0.0026587
+1184.88	0.00265855
+1185	0.00265841
+1185.12	0.00265826
+1185.24	0.00265811
+1185.36	0.00265797
+1185.48	0.00265782
+1185.6	0.00265767
+1185.72	0.00265753
+1185.84	0.00265738
+1185.96	0.00265724
+1186.08	0.00265709
+1186.2	0.00265694
+1186.32	0.0026568
+1186.44	0.00265665
+1186.56	0.0026565
+1186.68	0.00265636
+1186.8	0.00265621
+1186.92	0.00265607
+1187.04	0.00265592
+1187.16	0.00265577
+1187.28	0.00265563
+1187.4	0.00265548
+1187.52	0.00265534
+1187.64	0.00265519
+1187.76	0.00265504
+1187.88	0.0026549
+1188	0.00265475
+1188.12	0.00265461
+1188.24	0.00265446
+1188.36	0.00265432
+1188.48	0.00265417
+1188.6	0.00265402
+1188.72	0.00265388
+1188.84	0.00265373
+1188.96	0.00265359
+1189.08	0.00265344
+1189.2	0.0026533
+1189.32	0.00265315
+1189.44	0.00265301
+1189.56	0.00265286
+1189.68	0.00265271
+1189.8	0.00265257
+1189.92	0.00265242
+1190.04	0.00265228
+1190.16	0.00265213
+1190.28	0.00265199
+1190.4	0.00265184
+1190.52	0.0026517
+1190.64	0.00265155
+1190.76	0.00265141
+1190.88	0.00265126
+1191	0.00265112
+1191.12	0.00265097
+1191.24	0.00265083
+1191.36	0.00265068
+1191.48	0.00265054
+1191.6	0.00265039
+1191.72	0.00265025
+1191.84	0.0026501
+1191.96	0.00264996
+1192.08	0.00264981
+1192.2	0.00264967
+1192.32	0.00264952
+1192.44	0.00264938
+1192.56	0.00264923
+1192.68	0.00264909
+1192.8	0.00264894
+1192.92	0.0026488
+1193.04	0.00264866
+1193.16	0.00264851
+1193.28	0.00264837
+1193.4	0.00264822
+1193.52	0.00264808
+1193.64	0.00264793
+1193.76	0.00264779
+1193.88	0.00264764
+1194	0.0026475
+1194.12	0.00264736
+1194.24	0.00264721
+1194.36	0.00264707
+1194.48	0.00264692
+1194.6	0.00264678
+1194.72	0.00264663
+1194.84	0.00264649
+1194.96	0.00264635
+1195.08	0.0026462
+1195.2	0.00264606
+1195.32	0.00264591
+1195.44	0.00264577
+1195.56	0.00264563
+1195.68	0.00264548
+1195.8	0.00264534
+1195.92	0.00264519
+1196.04	0.00264505
+1196.16	0.00264491
+1196.28	0.00264476
+1196.4	0.00264462
+1196.52	0.00264447
+1196.64	0.00264433
+1196.76	0.00264419
+1196.88	0.00264404
+1197	0.0026439
+1197.12	0.00264376
+1197.24	0.00264361
+1197.36	0.00264347
+1197.48	0.00264333
+1197.6	0.00264318
+1197.72	0.00264304
+1197.84	0.0026429
+1197.96	0.00264275
+1198.08	0.00264261
+1198.2	0.00264247
+1198.32	0.00264232
+1198.44	0.00264218
+1198.56	0.00264204
+1198.68	0.00264189
+1198.8	0.00264175
+1198.92	0.00264161
+1199.04	0.00264146
+1199.16	0.00264132
+1199.28	0.00264118
+1199.4	0.00264103
+1199.52	0.00264089
+1199.64	0.00264075
+1199.76	0.0026406
+1199.88	0.00264046
+1200	0.00264032
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/ExtractRawHisto_E.C b/Projects/MUSETT/calibration/calib_simu/Energy/ExtractRawHisto_E.C
new file mode 100644
index 0000000000000000000000000000000000000000..bc1d6295c31f7e694191e51a6f1f77a3f470e0ae
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/ExtractRawHisto_E.C
@@ -0,0 +1,135 @@
+////////////////////////////////////////////////////////////////////////////
+// This macro takes a converted ROOT file from the GANIL e569 exp. and    //
+// create an histogram for each strip (X and Y) of the MUST2 array filled //
+// with the energy. The histograms are dumped in an output ROOT file.     //
+//                                                                        //
+// This is especially usefull for calibration purposes when there is no   //
+// need to work directly on the TChain                                     //
+////////////////////////////////////////////////////////////////////////////
+#include <iostream>
+
+#include "TROOT.h"
+#include "TSystem.h"
+#include "TFile.h"
+#include "TString.h"
+#include "TChain.h"
+#include "TBranch.h"
+#include "TH1F.h"
+#include "TMust2Data.h"
+#include "TMugastData.h"
+#include "TMUSETTData.h"
+#include "RootInput.h"
+
+
+#define NBTELESCOPE 4	
+#define	NBSTRIPS	128
+#define NBSILI     0
+
+
+void ExtractRawHistos(const char* fname = "")
+{
+  RootInput* Input = RootInput::getInstance("RunToTreat.txt");
+  TChain* Chain = Input->GetChain();
+
+  // connect the TfDet.c_str()Data branch  
+  Chain->SetBranchStatus("MUSETT",true);
+  Chain->SetBranchStatus("fMM*",true);
+
+  TMUSETTData* rawMUSETT = new TMUSETTData();
+  Chain->SetBranchAddress("MUSETT",&rawMUSETT);
+
+  // open the output ROOT file
+  TString outFileName = "./Histograms/";
+  outFileName += fname;
+  outFileName += "_RawMUSETTHistos.root";
+  std::cout<< outFileName<< std::endl;
+  TFile *outFile = new TFile(outFileName, "recreate");
+
+  // prepare output histograms for Must2
+  TH1F* hStripXEnergy[NBTELESCOPE][NBSTRIPS];
+  TH1F* hStripYEnergy[NBTELESCOPE][NBSTRIPS];
+  //from i=4 because I wanted only the T5,T8
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSTRIPS; j++) {
+      // strips XE
+      TString hnameXE     = Form("hMM%d_STRX_E%d", i, j);
+      TString htitleXE    = Form("MM%d_STRX_E%d", i, j);
+      hStripXEnergy[i][j] = new TH1F(hnameXE, htitleXE, 16384, 0, 16384);
+      // strips YE
+      TString hnameYE     = Form("hMM%d_STRY_E%d", i, j);
+      TString htitleYE    = Form("MM%d_STRY_E%d", i, j);
+      hStripYEnergy[i][j] = new TH1F(hnameYE, htitleYE, 16384, 0, 16384);
+    }
+  }
+  TH1F* hSiLiEnergy[NBTELESCOPE][NBSILI];
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSILI; j++) {
+      TString hnameSiLiE     = Form("hMM%d_SILI_E%d", i, j);
+      TString htitleSiLiE    = Form("MM%d_SILI_E%d", i, j);
+      hSiLiEnergy[i][j] = new TH1F(hnameSiLiE, htitleSiLiE, 16384, 0, 16384);
+    }
+  }
+
+  // read the data
+  Int_t nentries = Chain->GetEntries();
+  std::cout << "TChain contains " << nentries << " events" << std::endl;
+  for (Int_t i = 0; i < nentries; i++) {
+    if (i%1000 == 0) std::cout << "\rEntry " << i << "\t" << i/(double)nentries * 100 << " %" << flush;
+    ///////////////////////
+    // read Must2 branch //
+    ///////////////////////
+    //brMust2->GetEntry(i);
+    Chain->GetEntry(i);
+    // get StripXE multiplicity
+    Int_t multXE = 0; 
+    multXE = rawMUSETT->GetDSSDXEMult();
+    //std::cout<< "multXE" << multXE<< std::endl;
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    //
+    Int_t det = 0;   
+    Int_t stripX = 0;
+    Int_t energy = 0;
+
+    for (Int_t j = 0; j < multXE; j++) {
+      det    = rawMUSETT->GetDSSDXEDetectorNbr(j);
+      stripX = rawMUSETT->GetDSSDXEStripNbr(j);
+      energy = rawMUSETT->GetDSSDXEEnergy(j);
+      if ((det < NBTELESCOPE) && (stripX < NBSTRIPS)) {
+        hStripXEnergy[det][stripX]->Fill(energy);
+      } 
+      else {
+        std::cout << "Error filling histograms: X_E" << std::endl;
+        rawMUSETT->Dump();
+      }
+    }
+    // get StripYE multiplicity
+    Int_t multYE=0;
+    multYE = rawMUSETT->GetDSSDYEMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+
+    det = 0;   
+    Int_t stripY = 0;
+    energy = 0;
+    for (Int_t j = 0; j < multYE; j++) {
+      det    = rawMUSETT->GetDSSDYEDetectorNbr(j);
+      stripY = rawMUSETT->GetDSSDYEStripNbr(j);
+      energy = rawMUSETT->GetDSSDYEEnergy(j);
+
+      if ((det < NBTELESCOPE) && (stripY < NBSTRIPS)) {
+        hStripYEnergy[det][stripY]->Fill(energy);
+      }
+      else {
+        std::cout << "Error filling histograms: Y_E" << std::endl;
+          rawMUSETT->Dump();
+      }
+    }
+
+  }
+  std::cout << '\n';
+
+  // write on disk output file and close it
+  outFile->Write();
+  outFile->Close();
+}
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/ExtractRawHisto_E_C.d b/Projects/MUSETT/calibration/calib_simu/Energy/ExtractRawHisto_E_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..f73ae0701dbdcd661dae56769450b132008af571
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/ExtractRawHisto_E_C.d
@@ -0,0 +1,118 @@
+
+# DO NOT DELETE
+
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSystem.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInetAddress.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTimer.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSysEvtHandler.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTime.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TChain.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TMust2Data.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TMugastData.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TMUSETTData.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/RootInput.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReader.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReaderUtils.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchProxyDirector.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TLeaf.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClonesArray.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TError.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualCollectionProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClassRef.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNotifyLink.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReaderValue.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReaderArray.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPInputParser.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVector3.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVector2.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrix.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixF.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixT.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixTBase.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFBasefwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixDBasefwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixTUtils.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFUtils.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFUtilsfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMath.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+ExtractRawHisto_E_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/ExtractRawHisto_E_Pedestals.C b/Projects/MUSETT/calibration/calib_simu/Energy/ExtractRawHisto_E_Pedestals.C
new file mode 100644
index 0000000000000000000000000000000000000000..07e08e0c7185b3cab9dbea5f474415b7d893ae8f
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/ExtractRawHisto_E_Pedestals.C
@@ -0,0 +1,326 @@
+////////////////////////////////////////////////////////////////////////////
+// This macro takes a converted ROOT file from the GANIL e569 exp. and    //
+// create an histogram for each strip (X and Y) of the MUST2 array filled //
+// with the energy. The histograms are dumped in an output ROOT file.     //
+//                                                                        //
+// This is especially usefull for calibration purposes when there is no   //
+// need to work directly on the TChain                                     //
+////////////////////////////////////////////////////////////////////////////
+#include <iostream>
+#include <fstream>
+#include <map>
+#include <string>
+#include <vector>
+
+#include "TROOT.h"
+#include "TSystem.h"
+#include "TFile.h"
+#include "TString.h"
+#include "TChain.h"
+#include "TBranch.h"
+#include "TH1F.h"
+
+#include "/home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/MUST2/TMust2Data.h"
+#include "/home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/Mugast/TMugastData.h"
+#include "/home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/include/RootInput.h"
+
+#define NBTELESCOPE 4	
+#define	NBSTRIPS	128
+#define NBSILI     0
+
+class pedestal{
+  public:
+    pedestal(){};
+    ~pedestal(){};
+  public: 
+    map<int, vector<int> > pedestalX;
+    map<int, vector<int> > pedestalY;
+  
+    int get_pedestalX(int det,int strip){
+      return pedestalX[det][strip-1];
+      }
+    int get_pedestalY(int det,int strip){
+      return pedestalY[det][strip-1];
+      }
+
+  public:
+    int SubstractX(int det, int strip,pedestal other){
+        return (get_pedestalX(det,strip)-other.get_pedestalX(det,strip));
+      }
+    
+    int SubstractY(int det, int strip,pedestal other){
+        return (get_pedestalY(det,strip)-other.get_pedestalY(det,strip));
+      }
+
+
+    void print(){
+      cout << "X" << endl;
+      for(auto& it: pedestalX){
+        cout << " Telescope: " << it.first << endl;
+        unsigned int size = it.second.size();
+        for(unsigned int i = 0 ; i < size ; i++){
+          std::cout << " strip: " << i+1 << " pedestal: " << it.second[i] << "\n"; 
+        } 
+      }
+
+      cout << "Y" << endl;
+      for(auto& it: pedestalY){
+        cout << " Telescope: " << it.first << endl;
+        unsigned int size = it.second.size();
+        for(unsigned int i = 0 ; i < size ; i++){
+          std::cout << " strip: " << i+1 << " pedestal: " << it.second[i] << "\n"; 
+        } 
+      }
+    }
+
+    void LoadPedestals(const std::string& path, int num){
+      ifstream file(path.c_str());
+      std::string buffer;
+      // ignore the first line of comments
+      getline(file,buffer);
+      int pedestalE,pedestalT;
+      int mate=0;
+      int count=0;
+
+      while (file >> pedestalE >> pedestalT){
+        if(count++%16==0){
+          mate++; 
+        }
+        if(mate<9){ // X
+          pedestalX[num].push_back(pedestalE);
+        } 
+        else if(mate>8&&mate<17){ // Y
+          pedestalY[num].push_back(pedestalE);
+        }
+        else{ // SiLi/CsI
+          break; 
+        }
+      }
+    }
+};
+////////////////////////////////////////////////////////////////////////////////
+void Test(){
+  pedestal q;
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector1",1);
+
+  pedestal p;
+  p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI3_Sector1",1);
+ 
+  for(unsigned int i = 0 ; i < 128 ; i++){
+    cout << p.SubstractX(1,i+1,q) << " " << p.SubstractY(1,i+1,q)  << endl;
+  }
+}
+///////////////////////////////////////////////////////////////////////////////
+void ExtractRawHistos(const char* fname = "run_XXXX_X", std::string fDet="MUST2")
+{
+
+  pedestal p,q;
+  if(fDet=="MUST2"){
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector1.pedestal",1);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector2.pedestal",2);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector3.pedestal",3);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector4.pedestal",4); 
+
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector1.pedestal",1);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector2.pedestal",2);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector3.pedestal",3);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector4.pedestal",4); 
+
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector1",1);
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector2",2);
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector3",3);
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector4",4); 
+
+    }
+
+ else if(fDet=="Mugast"){
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector1",1);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector2",3);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector3",4);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector4",5); 
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector1",7);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector2",9);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector3",10);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector4",11); 
+
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector1",1);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector2",3);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector3",4);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector4",5); 
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector1",7);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector2",9);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector3",10);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector4",11); 
+ 
+    }
+
+  else{
+    cout << "Error in detector name " << fDet << endl;
+    exit(1);
+    }
+
+
+  RootInput* Input = RootInput::getInstance("RunToTreat.txt");
+  TChain* Chain = Input->GetChain();
+  // connect the TfDet.c_str()Data branch  
+  Chain->SetBranchStatus(fDet.c_str(),true);
+  Chain->SetBranchStatus("fMM*",true);
+
+  TMust2Data *rawMust2;
+  TMugastData *rawMugast;
+  if (fDet=="MUST2"){
+    rawMust2 = new TMust2Data();
+    Chain->SetBranchAddress(fDet.c_str(),&rawMust2);
+  }
+  else if (fDet=="Mugast"){
+    rawMugast = new TMugastData();
+    Chain->SetBranchAddress(fDet.c_str(),&rawMugast);
+  }
+
+  // open the output ROOT file
+  TString outFileName = "./Histograms/";
+  outFileName += fname;
+  outFileName += "_Raw" + fDet + "Histos_CorrectionPedestals.root";
+  cout<< outFileName<< endl;
+  TFile *outFile = new TFile(outFileName, "recreate");
+
+  // prepare output histograms for Must2
+  TH1F* hStripXEnergy[NBTELESCOPE][NBSTRIPS];
+  TH1F* hStripYEnergy[NBTELESCOPE][NBSTRIPS];
+  //from i=4 because I wanted only the T5,T8
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSTRIPS; j++) {
+      // strips XE
+      TString hnameXE     = Form("hMM%d_STRX_E%d", i+1, j+1);
+      TString htitleXE    = Form("MM%d_STRX_E%d", i+1, j+1);
+      hStripXEnergy[i][j] = new TH1F(hnameXE, htitleXE, 16384, 0, 16384);
+      // strips YE
+      TString hnameYE     = Form("hMM%d_STRY_E%d", i+1, j+1);
+      TString htitleYE    = Form("MM%d_STRY_E%d", i+1, j+1);
+      hStripYEnergy[i][j] = new TH1F(hnameYE, htitleYE, 16384, 0, 16384);
+    }
+  }
+  TH1F* hSiLiEnergy[NBTELESCOPE][NBSILI];
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSILI; j++) {
+      TString hnameSiLiE     = Form("hMM%d_SILI_E%d", i+1, j+1);
+      TString htitleSiLiE    = Form("MM%d_SILI_E%d", i+1, j+1);
+      hSiLiEnergy[i][j] = new TH1F(hnameSiLiE, htitleSiLiE, 16384, 0, 16384);
+    }
+  }
+
+  // read the data
+  Int_t nentries = Chain->GetEntries();
+  cout << "TChain contains " << nentries << " events" << endl;
+  for (Int_t i = 0; i < nentries; i++) {
+    if (i%1000 == 0) cout << "\rEntry " << i << "\t" << i/(double)nentries * 100 << " %" << flush;
+    ///////////////////////
+    // read Must2 branch //
+    ///////////////////////
+    //brMust2->GetEntry(i);
+    Chain->GetEntry(i);
+    // get StripXE multiplicity
+    Int_t multXE = 0; 
+    if (fDet=="MUST2"){
+      multXE = rawMust2->GetMMStripXEMult();
+    }else if (fDet=="Mugast"){
+      multXE = rawMugast->GetDSSDXEMult();
+    }
+    //cout<< "multXE" << multXE<< endl;
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    //
+    Int_t det = 0;   
+    Int_t stripX = 0;
+    Int_t energy = 0;
+
+    for (Int_t j = 0; j < multXE; j++) {
+      if (fDet=="MUST2"){
+        det    = rawMust2->GetMMStripXEDetectorNbr(j);
+        stripX = rawMust2->GetMMStripXEStripNbr(j);
+        energy = rawMust2->GetMMStripXEEnergy(j);
+      } else if (fDet=="Mugast"){
+        det    = rawMugast->GetDSSDXEDetectorNbr(j);
+        stripX = rawMugast->GetDSSDXEStripNbr(j);
+        energy = rawMugast->GetDSSDXEEnergy(j);
+      }
+      if ((det < NBTELESCOPE+1) && (stripX < NBSTRIPS+1)) {
+        std::cout << ">>>>>>>>>> DEBUG : " << 0 << std::endl;
+        std::cout << det << " " << stripX << " " << q  << std::endl;
+        hStripXEnergy[det-1][stripX-1]->Fill(energy + p.SubstractX(det, stripX, q));
+        std::cout << ">>>>>>>>>> DEBUG : " << 1 << std::endl;
+      } else {
+        cout << "Error filling histograms: X_E" << endl;
+        if (fDet=="MUST2"){
+          rawMust2->Dump();
+        } else if (fDet=="Mugast"){
+          rawMugast->Dump();
+        }
+      }
+    }
+    std::cout << ">>>>>>>>>> DEBUG : " << 2 << std::endl;
+    // get StripYE multiplicity
+    Int_t multYE=0;
+    if (fDet=="MUST2"){
+      multYE = rawMust2->GetMMStripYEMult();
+    } else if (fDet=="Mugast"){
+      multYE = rawMugast->GetDSSDYEMult();
+    }
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+
+    det = 0;   
+    Int_t stripY = 0;
+    energy = 0;
+    for (Int_t j = 0; j < multYE; j++) {
+      if (fDet=="MUST2"){
+        det    = rawMust2->GetMMStripYEDetectorNbr(j);
+        stripY = rawMust2->GetMMStripYEStripNbr(j);
+        energy = rawMust2->GetMMStripYEEnergy(j);
+      }else if (fDet=="Mugast"){
+        det    = rawMugast->GetDSSDYEDetectorNbr(j);
+        stripY = rawMugast->GetDSSDYEStripNbr(j);
+        energy = rawMugast->GetDSSDYEEnergy(j);
+      }
+
+      if ((det < NBTELESCOPE+1) && (stripY < NBSTRIPS+1)) {
+        hStripYEnergy[det-1][stripY-1]->Fill(energy + p.SubstractY(det, stripY, q));
+      }
+      else {
+        cout << "Error filling histograms: Y_E" << endl;
+        if (fDet=="MUST2"){
+          rawMust2->Dump();
+        }else if (fDet=="Mugast"){
+          rawMugast->Dump();
+        }
+      }
+    }
+    // get SiLiE multiplicity
+
+    //Int_t multSiLiE = rawMust2->GetMMSiLiEMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    /* for (Int_t j = 0; j < multSiLiE; j++) {
+       Int_t det    = rawMust2->GetMMSiLiEDetectorNbr(j);
+       Int_t pad = rawMust2->GetMMSiLiEPadNbr(j);
+       Int_t energy = rawMust2->GetMMSiLiEEnergy(j);
+       if ((det < NBTELESCOPE+1) && (pad < NBSTRIPS+1)) {
+       hSiLiEnergy[det-1][pad-1]->Fill(energy);
+       }
+       else {
+       cout << "Error filling histograms: Must2_SiLi_E" << endl;
+       rawMust2->Dump();
+       }
+       }*/
+
+  }
+  cout << '\n';
+
+  // write on disk output file and close it
+  outFile->Write();
+  outFile->Close();
+}
+
+
+
+
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/ExtractRawHisto_E_Pedestals_C.d b/Projects/MUSETT/calibration/calib_simu/Energy/ExtractRawHisto_E_Pedestals_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..d138211b1436102725e3c59c452c1132ac2f6696
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/ExtractRawHisto_E_Pedestals_C.d
@@ -0,0 +1,105 @@
+
+# DO NOT DELETE
+
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TROOT.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDirectory.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TNamed.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TObject.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Rtypes.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RtypesCore.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RConfig.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RVersion.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RConfigure.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/DllImport.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/strtok.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/strlcpy.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/snprintf.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TGenericClassInfo.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSchemaHelper.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TIsAProxy.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualIsAProxy.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TStorage.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVersionCheck.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RVersion.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TString.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMathBase.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RStringView.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RWrap_libcpp_string_view.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/libcpp_string_view.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TypeTraits.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TClass.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDictionary.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ESTLType.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TObjArray.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSeqCollection.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TCollection.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TIterator.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualRWMutex.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualMutex.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TUUID.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TList.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBuffer.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDataType.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Bytes.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSystem.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TInetAddress.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TTimer.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSysEvtHandler.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TQObject.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualQConnection.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TInterpreter.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TInterpreterValue.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TTime.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TFile.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Compression.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDirectoryFile.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDatime.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TUrl.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RConcurrentHashColl.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TRWSpinLock.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TSpinMutex.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TChain.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TTree.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TIOFeatures.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayD.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArray.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayI.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttFill.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttLine.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttMarker.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualTreePlayer.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBranch.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBranchCacheInfo.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBits.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TH1F.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TH1.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAxis.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttAxis.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayC.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayS.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayF.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Foption.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/EExecutionPolicy.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVectorFfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVectorDfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TFitResultPtr.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/MUST2/TMust2Data.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/Mugast/TMugastData.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/include/RootInput.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/include/NPInputParser.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVector3.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TError.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVector2.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrix.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixF.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixT.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixTBase.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFBasefwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixDBasefwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixTUtils.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFUtils.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFUtilsfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMath.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RVersion.h /home/global/root/root_v6.24.06_C7_build/include/RConfig.h /home/global/root/root_v6.24.06_C7_build/include/TClass.h /home/global/root/root_v6.24.06_C7_build/include/TDictAttributeMap.h /home/global/root/root_v6.24.06_C7_build/include/TInterpreter.h /home/global/root/root_v6.24.06_C7_build/include/TROOT.h /home/global/root/root_v6.24.06_C7_build/include/TBuffer.h /home/global/root/root_v6.24.06_C7_build/include/TMemberInspector.h /home/global/root/root_v6.24.06_C7_build/include/TError.h /home/global/root/root_v6.24.06_C7_build/include/RtypesImp.h /home/global/root/root_v6.24.06_C7_build/include/TIsAProxy.h /home/global/root/root_v6.24.06_C7_build/include/TFileMergeInfo.h /home/global/root/root_v6.24.06_C7_build/include/TCollectionProxyInfo.h /home/global/root/root_v6.24.06_C7_build/bin/rootcling
+ExtractRawHisto_E_Pedestals_C__ROOTBUILDVERSION= 6.24/06
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/Histograms/.root_hist b/Projects/MUSETT/calibration/calib_simu/Energy/Histograms/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..6b4b500a7726e9e6c5e7c63a866a6a205d31e8a3
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/Histograms/.root_hist
@@ -0,0 +1,6 @@
+TFile *_file0 = TFile::Open("run_9_RawMUST2Histos.root")
+new TBrowser
+.q
+TFile *_file0 = TFile::Open("run_19_RawMUST2Histos.root")
+new TBrowser
+.q
diff --git a/Projects/MUSETT/calibration/calib_simu/Energy/RunToTreat.txt b/Projects/MUSETT/calibration/calib_simu/Energy/RunToTreat.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d0a124b1b2968d6a7b0be5aea4352f4afd832cb1
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Energy/RunToTreat.txt
@@ -0,0 +1,4 @@
+TTreeName 
+	RD
+RootFileName 
+  ~/npTreeReader/np-tree-reader/Projects/MUSETT/RootR/run_0274.root
diff --git a/Projects/MUSETT/calibration/calib_simu/M0_E/Cal_Str_X_E_MM0.cal b/Projects/MUSETT/calibration/calib_simu/M0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..edde1a669cba73d499c4b890c5d818da2888143f
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E 0.0 1.0
+MUSETT_T0_DSSD_X1_E 0.0 1.0
+MUSETT_T0_DSSD_X2_E 0.0 1.0
+MUSETT_T0_DSSD_X3_E 0.0 1.0
+MUSETT_T0_DSSD_X4_E 0.0 1.0
+MUSETT_T0_DSSD_X5_E 0.0 1.0
+MUSETT_T0_DSSD_X6_E 0.0 1.0
+MUSETT_T0_DSSD_X7_E 0.0 1.0
+MUSETT_T0_DSSD_X8_E 0.0 1.0
+MUSETT_T0_DSSD_X9_E 0.0 1.0
+MUSETT_T0_DSSD_X10_E 0.0 1.0
+MUSETT_T0_DSSD_X11_E 0.0 1.0
+MUSETT_T0_DSSD_X12_E 0.0 1.0
+MUSETT_T0_DSSD_X13_E 0.0 1.0
+MUSETT_T0_DSSD_X14_E 0.0 1.0
+MUSETT_T0_DSSD_X15_E 0.0 1.0
+MUSETT_T0_DSSD_X16_E 0.0 1.0
+MUSETT_T0_DSSD_X17_E 0.0 1.0
+MUSETT_T0_DSSD_X18_E 0.0 1.0
+MUSETT_T0_DSSD_X19_E 0.0 1.0
+MUSETT_T0_DSSD_X20_E 0.0 1.0
+MUSETT_T0_DSSD_X21_E 0.0 1.0
+MUSETT_T0_DSSD_X22_E 0.0 1.0
+MUSETT_T0_DSSD_X23_E 0.0 1.0
+MUSETT_T0_DSSD_X24_E 0.0 1.0
+MUSETT_T0_DSSD_X25_E 0.0 1.0
+MUSETT_T0_DSSD_X26_E 0.0 1.0
+MUSETT_T0_DSSD_X27_E 0.0 1.0
+MUSETT_T0_DSSD_X28_E 0.0 1.0
+MUSETT_T0_DSSD_X29_E 0.0 1.0
+MUSETT_T0_DSSD_X30_E 0.0 1.0
+MUSETT_T0_DSSD_X31_E 0.0 1.0
+MUSETT_T0_DSSD_X32_E 0.0 1.0
+MUSETT_T0_DSSD_X33_E 0.0 1.0
+MUSETT_T0_DSSD_X34_E 0.0 1.0
+MUSETT_T0_DSSD_X35_E 0.0 1.0
+MUSETT_T0_DSSD_X36_E 0.0 1.0
+MUSETT_T0_DSSD_X37_E 0.0 1.0
+MUSETT_T0_DSSD_X38_E 0.0 1.0
+MUSETT_T0_DSSD_X39_E 0.0 1.0
+MUSETT_T0_DSSD_X40_E 0.0 1.0
+MUSETT_T0_DSSD_X41_E 0.0 1.0
+MUSETT_T0_DSSD_X42_E 0.0 1.0
+MUSETT_T0_DSSD_X43_E 0.0 1.0
+MUSETT_T0_DSSD_X44_E 0.0 1.0
+MUSETT_T0_DSSD_X45_E 0.0 1.0
+MUSETT_T0_DSSD_X46_E 0.0 1.0
+MUSETT_T0_DSSD_X47_E 0.0 1.0
+MUSETT_T0_DSSD_X48_E 0.0 1.0
+MUSETT_T0_DSSD_X49_E 0.0 1.0
+MUSETT_T0_DSSD_X50_E 0.0 1.0
+MUSETT_T0_DSSD_X51_E 0.0 1.0
+MUSETT_T0_DSSD_X52_E 0.0 1.0
+MUSETT_T0_DSSD_X53_E 0.0 1.0
+MUSETT_T0_DSSD_X54_E 0.0 1.0
+MUSETT_T0_DSSD_X55_E 0.0 1.0
+MUSETT_T0_DSSD_X56_E 0.0 1.0
+MUSETT_T0_DSSD_X57_E 0.0 1.0
+MUSETT_T0_DSSD_X58_E 0.0 1.0
+MUSETT_T0_DSSD_X59_E 0.0 1.0
+MUSETT_T0_DSSD_X60_E 0.0 1.0
+MUSETT_T0_DSSD_X61_E 0.0 1.0
+MUSETT_T0_DSSD_X62_E 0.0 1.0
+MUSETT_T0_DSSD_X63_E 0.0 1.0
+MUSETT_T0_DSSD_X64_E 0.0 1.0
+MUSETT_T0_DSSD_X65_E 0.0 1.0
+MUSETT_T0_DSSD_X66_E 0.0 1.0
+MUSETT_T0_DSSD_X67_E 0.0 1.0
+MUSETT_T0_DSSD_X68_E 0.0 1.0
+MUSETT_T0_DSSD_X69_E 0.0 1.0
+MUSETT_T0_DSSD_X70_E 0.0 1.0
+MUSETT_T0_DSSD_X71_E 0.0 1.0
+MUSETT_T0_DSSD_X72_E 0.0 1.0
+MUSETT_T0_DSSD_X73_E 0.0 1.0
+MUSETT_T0_DSSD_X74_E 0.0 1.0
+MUSETT_T0_DSSD_X75_E 0.0 1.0
+MUSETT_T0_DSSD_X76_E 0.0 1.0
+MUSETT_T0_DSSD_X77_E 0.0 1.0
+MUSETT_T0_DSSD_X78_E 0.0 1.0
+MUSETT_T0_DSSD_X79_E 0.0 1.0
+MUSETT_T0_DSSD_X80_E 0.0 1.0
+MUSETT_T0_DSSD_X81_E 0.0 1.0
+MUSETT_T0_DSSD_X82_E 0.0 1.0
+MUSETT_T0_DSSD_X83_E 0.0 1.0
+MUSETT_T0_DSSD_X84_E 0.0 1.0
+MUSETT_T0_DSSD_X85_E 0.0 1.0
+MUSETT_T0_DSSD_X86_E 0.0 1.0
+MUSETT_T0_DSSD_X87_E 0.0 1.0
+MUSETT_T0_DSSD_X88_E 0.0 1.0
+MUSETT_T0_DSSD_X89_E 0.0 1.0
+MUSETT_T0_DSSD_X90_E 0.0 1.0
+MUSETT_T0_DSSD_X91_E 0.0 1.0
+MUSETT_T0_DSSD_X92_E 0.0 1.0
+MUSETT_T0_DSSD_X93_E 0.0 1.0
+MUSETT_T0_DSSD_X94_E 0.0 1.0
+MUSETT_T0_DSSD_X95_E 0.0 1.0
+MUSETT_T0_DSSD_X96_E 0.0 1.0
+MUSETT_T0_DSSD_X97_E 0.0 1.0
+MUSETT_T0_DSSD_X98_E 0.0 1.0
+MUSETT_T0_DSSD_X99_E 0.0 1.0
+MUSETT_T0_DSSD_X100_E 0.0 1.0
+MUSETT_T0_DSSD_X101_E 0.0 1.0
+MUSETT_T0_DSSD_X102_E 0.0 1.0
+MUSETT_T0_DSSD_X103_E 0.0 1.0
+MUSETT_T0_DSSD_X104_E 0.0 1.0
+MUSETT_T0_DSSD_X105_E 0.0 1.0
+MUSETT_T0_DSSD_X106_E 0.0 1.0
+MUSETT_T0_DSSD_X107_E 0.0 1.0
+MUSETT_T0_DSSD_X108_E 0.0 1.0
+MUSETT_T0_DSSD_X109_E 0.0 1.0
+MUSETT_T0_DSSD_X110_E 0.0 1.0
+MUSETT_T0_DSSD_X111_E 0.0 1.0
+MUSETT_T0_DSSD_X112_E 0.0 1.0
+MUSETT_T0_DSSD_X113_E 0.0 1.0
+MUSETT_T0_DSSD_X114_E 0.0 1.0
+MUSETT_T0_DSSD_X115_E 0.0 1.0
+MUSETT_T0_DSSD_X116_E 0.0 1.0
+MUSETT_T0_DSSD_X117_E 0.0 1.0
+MUSETT_T0_DSSD_X118_E 0.0 1.0
+MUSETT_T0_DSSD_X119_E 0.0 1.0
+MUSETT_T0_DSSD_X120_E 0.0 1.0
+MUSETT_T0_DSSD_X121_E 0.0 1.0
+MUSETT_T0_DSSD_X122_E 0.0 1.0
+MUSETT_T0_DSSD_X123_E 0.0 1.0
+MUSETT_T0_DSSD_X124_E 0.0 1.0
+MUSETT_T0_DSSD_X125_E 0.0 1.0
+MUSETT_T0_DSSD_X126_E 0.0 1.0
+MUSETT_T0_DSSD_X127_E 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/M0_E/Cal_Str_Y_E_MM0.cal b/Projects/MUSETT/calibration/calib_simu/M0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..41e5b4e8d662c9201dd6c51280b33effdc872607
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_Y0_E 0.0 1.0
+MUSETT_T0_DSSD_Y1_E 0.0 1.0
+MUSETT_T0_DSSD_Y2_E 0.0 1.0
+MUSETT_T0_DSSD_Y3_E 0.0 1.0
+MUSETT_T0_DSSD_Y4_E 0.0 1.0
+MUSETT_T0_DSSD_Y5_E 0.0 1.0
+MUSETT_T0_DSSD_Y6_E 0.0 1.0
+MUSETT_T0_DSSD_Y7_E 0.0 1.0
+MUSETT_T0_DSSD_Y8_E 0.0 1.0
+MUSETT_T0_DSSD_Y9_E 0.0 1.0
+MUSETT_T0_DSSD_Y10_E 0.0 1.0
+MUSETT_T0_DSSD_Y11_E 0.0 1.0
+MUSETT_T0_DSSD_Y12_E 0.0 1.0
+MUSETT_T0_DSSD_Y13_E 0.0 1.0
+MUSETT_T0_DSSD_Y14_E 0.0 1.0
+MUSETT_T0_DSSD_Y15_E 0.0 1.0
+MUSETT_T0_DSSD_Y16_E 0.0 1.0
+MUSETT_T0_DSSD_Y17_E 0.0 1.0
+MUSETT_T0_DSSD_Y18_E 0.0 1.0
+MUSETT_T0_DSSD_Y19_E 0.0 1.0
+MUSETT_T0_DSSD_Y20_E 0.0 1.0
+MUSETT_T0_DSSD_Y21_E 0.0 1.0
+MUSETT_T0_DSSD_Y22_E 0.0 1.0
+MUSETT_T0_DSSD_Y23_E 0.0 1.0
+MUSETT_T0_DSSD_Y24_E 0.0 1.0
+MUSETT_T0_DSSD_Y25_E 0.0 1.0
+MUSETT_T0_DSSD_Y26_E 0.0 1.0
+MUSETT_T0_DSSD_Y27_E 0.0 1.0
+MUSETT_T0_DSSD_Y28_E 0.0 1.0
+MUSETT_T0_DSSD_Y29_E 0.0 1.0
+MUSETT_T0_DSSD_Y30_E 0.0 1.0
+MUSETT_T0_DSSD_Y31_E 0.0 1.0
+MUSETT_T0_DSSD_Y32_E 0.0 1.0
+MUSETT_T0_DSSD_Y33_E 0.0 1.0
+MUSETT_T0_DSSD_Y34_E 0.0 1.0
+MUSETT_T0_DSSD_Y35_E 0.0 1.0
+MUSETT_T0_DSSD_Y36_E 0.0 1.0
+MUSETT_T0_DSSD_Y37_E 0.0 1.0
+MUSETT_T0_DSSD_Y38_E 0.0 1.0
+MUSETT_T0_DSSD_Y39_E 0.0 1.0
+MUSETT_T0_DSSD_Y40_E 0.0 1.0
+MUSETT_T0_DSSD_Y41_E 0.0 1.0
+MUSETT_T0_DSSD_Y42_E 0.0 1.0
+MUSETT_T0_DSSD_Y43_E 0.0 1.0
+MUSETT_T0_DSSD_Y44_E 0.0 1.0
+MUSETT_T0_DSSD_Y45_E 0.0 1.0
+MUSETT_T0_DSSD_Y46_E 0.0 1.0
+MUSETT_T0_DSSD_Y47_E 0.0 1.0
+MUSETT_T0_DSSD_Y48_E 0.0 1.0
+MUSETT_T0_DSSD_Y49_E 0.0 1.0
+MUSETT_T0_DSSD_Y50_E 0.0 1.0
+MUSETT_T0_DSSD_Y51_E 0.0 1.0
+MUSETT_T0_DSSD_Y52_E 0.0 1.0
+MUSETT_T0_DSSD_Y53_E 0.0 1.0
+MUSETT_T0_DSSD_Y54_E 0.0 1.0
+MUSETT_T0_DSSD_Y55_E 0.0 1.0
+MUSETT_T0_DSSD_Y56_E 0.0 1.0
+MUSETT_T0_DSSD_Y57_E 0.0 1.0
+MUSETT_T0_DSSD_Y58_E 0.0 1.0
+MUSETT_T0_DSSD_Y59_E 0.0 1.0
+MUSETT_T0_DSSD_Y60_E 0.0 1.0
+MUSETT_T0_DSSD_Y61_E 0.0 1.0
+MUSETT_T0_DSSD_Y62_E 0.0 1.0
+MUSETT_T0_DSSD_Y63_E 0.0 1.0
+MUSETT_T0_DSSD_Y64_E 0.0 1.0
+MUSETT_T0_DSSD_Y65_E 0.0 1.0
+MUSETT_T0_DSSD_Y66_E 0.0 1.0
+MUSETT_T0_DSSD_Y67_E 0.0 1.0
+MUSETT_T0_DSSD_Y68_E 0.0 1.0
+MUSETT_T0_DSSD_Y69_E 0.0 1.0
+MUSETT_T0_DSSD_Y70_E 0.0 1.0
+MUSETT_T0_DSSD_Y71_E 0.0 1.0
+MUSETT_T0_DSSD_Y72_E 0.0 1.0
+MUSETT_T0_DSSD_Y73_E 0.0 1.0
+MUSETT_T0_DSSD_Y74_E 0.0 1.0
+MUSETT_T0_DSSD_Y75_E 0.0 1.0
+MUSETT_T0_DSSD_Y76_E 0.0 1.0
+MUSETT_T0_DSSD_Y77_E 0.0 1.0
+MUSETT_T0_DSSD_Y78_E 0.0 1.0
+MUSETT_T0_DSSD_Y79_E 0.0 1.0
+MUSETT_T0_DSSD_Y80_E 0.0 1.0
+MUSETT_T0_DSSD_Y81_E 0.0 1.0
+MUSETT_T0_DSSD_Y82_E 0.0 1.0
+MUSETT_T0_DSSD_Y83_E 0.0 1.0
+MUSETT_T0_DSSD_Y84_E 0.0 1.0
+MUSETT_T0_DSSD_Y85_E 0.0 1.0
+MUSETT_T0_DSSD_Y86_E 0.0 1.0
+MUSETT_T0_DSSD_Y87_E 0.0 1.0
+MUSETT_T0_DSSD_Y88_E 0.0 1.0
+MUSETT_T0_DSSD_Y89_E 0.0 1.0
+MUSETT_T0_DSSD_Y90_E 0.0 1.0
+MUSETT_T0_DSSD_Y91_E 0.0 1.0
+MUSETT_T0_DSSD_Y92_E 0.0 1.0
+MUSETT_T0_DSSD_Y93_E 0.0 1.0
+MUSETT_T0_DSSD_Y94_E 0.0 1.0
+MUSETT_T0_DSSD_Y95_E 0.0 1.0
+MUSETT_T0_DSSD_Y96_E 0.0 1.0
+MUSETT_T0_DSSD_Y97_E 0.0 1.0
+MUSETT_T0_DSSD_Y98_E 0.0 1.0
+MUSETT_T0_DSSD_Y99_E 0.0 1.0
+MUSETT_T0_DSSD_Y100_E 0.0 1.0
+MUSETT_T0_DSSD_Y101_E 0.0 1.0
+MUSETT_T0_DSSD_Y102_E 0.0 1.0
+MUSETT_T0_DSSD_Y103_E 0.0 1.0
+MUSETT_T0_DSSD_Y104_E 0.0 1.0
+MUSETT_T0_DSSD_Y105_E 0.0 1.0
+MUSETT_T0_DSSD_Y106_E 0.0 1.0
+MUSETT_T0_DSSD_Y107_E 0.0 1.0
+MUSETT_T0_DSSD_Y108_E 0.0 1.0
+MUSETT_T0_DSSD_Y109_E 0.0 1.0
+MUSETT_T0_DSSD_Y110_E 0.0 1.0
+MUSETT_T0_DSSD_Y111_E 0.0 1.0
+MUSETT_T0_DSSD_Y112_E 0.0 1.0
+MUSETT_T0_DSSD_Y113_E 0.0 1.0
+MUSETT_T0_DSSD_Y114_E 0.0 1.0
+MUSETT_T0_DSSD_Y115_E 0.0 1.0
+MUSETT_T0_DSSD_Y116_E 0.0 1.0
+MUSETT_T0_DSSD_Y117_E 0.0 1.0
+MUSETT_T0_DSSD_Y118_E 0.0 1.0
+MUSETT_T0_DSSD_Y119_E 0.0 1.0
+MUSETT_T0_DSSD_Y120_E 0.0 1.0
+MUSETT_T0_DSSD_Y121_E 0.0 1.0
+MUSETT_T0_DSSD_Y122_E 0.0 1.0
+MUSETT_T0_DSSD_Y123_E 0.0 1.0
+MUSETT_T0_DSSD_Y124_E 0.0 1.0
+MUSETT_T0_DSSD_Y125_E 0.0 1.0
+MUSETT_T0_DSSD_Y126_E 0.0 1.0
+MUSETT_T0_DSSD_Y127_E 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/calib_simu/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..f207bfd61b8feb24f5fd5fca389303104d2acbdc
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_T 0.0 1.0
+MUSETT_T0_DSSD_X1_T 0.0 1.0
+MUSETT_T0_DSSD_X2_T 0.0 1.0
+MUSETT_T0_DSSD_X3_T 0.0 1.0
+MUSETT_T0_DSSD_X4_T 0.0 1.0
+MUSETT_T0_DSSD_X5_T 0.0 1.0
+MUSETT_T0_DSSD_X6_T 0.0 1.0
+MUSETT_T0_DSSD_X7_T 0.0 1.0
+MUSETT_T0_DSSD_X8_T 0.0 1.0
+MUSETT_T0_DSSD_X9_T 0.0 1.0
+MUSETT_T0_DSSD_X10_T 0.0 1.0
+MUSETT_T0_DSSD_X11_T 0.0 1.0
+MUSETT_T0_DSSD_X12_T 0.0 1.0
+MUSETT_T0_DSSD_X13_T 0.0 1.0
+MUSETT_T0_DSSD_X14_T 0.0 1.0
+MUSETT_T0_DSSD_X15_T 0.0 1.0
+MUSETT_T0_DSSD_X16_T 0.0 1.0
+MUSETT_T0_DSSD_X17_T 0.0 1.0
+MUSETT_T0_DSSD_X18_T 0.0 1.0
+MUSETT_T0_DSSD_X19_T 0.0 1.0
+MUSETT_T0_DSSD_X20_T 0.0 1.0
+MUSETT_T0_DSSD_X21_T 0.0 1.0
+MUSETT_T0_DSSD_X22_T 0.0 1.0
+MUSETT_T0_DSSD_X23_T 0.0 1.0
+MUSETT_T0_DSSD_X24_T 0.0 1.0
+MUSETT_T0_DSSD_X25_T 0.0 1.0
+MUSETT_T0_DSSD_X26_T 0.0 1.0
+MUSETT_T0_DSSD_X27_T 0.0 1.0
+MUSETT_T0_DSSD_X28_T 0.0 1.0
+MUSETT_T0_DSSD_X29_T 0.0 1.0
+MUSETT_T0_DSSD_X30_T 0.0 1.0
+MUSETT_T0_DSSD_X31_T 0.0 1.0
+MUSETT_T0_DSSD_X32_T 0.0 1.0
+MUSETT_T0_DSSD_X33_T 0.0 1.0
+MUSETT_T0_DSSD_X34_T 0.0 1.0
+MUSETT_T0_DSSD_X35_T 0.0 1.0
+MUSETT_T0_DSSD_X36_T 0.0 1.0
+MUSETT_T0_DSSD_X37_T 0.0 1.0
+MUSETT_T0_DSSD_X38_T 0.0 1.0
+MUSETT_T0_DSSD_X39_T 0.0 1.0
+MUSETT_T0_DSSD_X40_T 0.0 1.0
+MUSETT_T0_DSSD_X41_T 0.0 1.0
+MUSETT_T0_DSSD_X42_T 0.0 1.0
+MUSETT_T0_DSSD_X43_T 0.0 1.0
+MUSETT_T0_DSSD_X44_T 0.0 1.0
+MUSETT_T0_DSSD_X45_T 0.0 1.0
+MUSETT_T0_DSSD_X46_T 0.0 1.0
+MUSETT_T0_DSSD_X47_T 0.0 1.0
+MUSETT_T0_DSSD_X48_T 0.0 1.0
+MUSETT_T0_DSSD_X49_T 0.0 1.0
+MUSETT_T0_DSSD_X50_T 0.0 1.0
+MUSETT_T0_DSSD_X51_T 0.0 1.0
+MUSETT_T0_DSSD_X52_T 0.0 1.0
+MUSETT_T0_DSSD_X53_T 0.0 1.0
+MUSETT_T0_DSSD_X54_T 0.0 1.0
+MUSETT_T0_DSSD_X55_T 0.0 1.0
+MUSETT_T0_DSSD_X56_T 0.0 1.0
+MUSETT_T0_DSSD_X57_T 0.0 1.0
+MUSETT_T0_DSSD_X58_T 0.0 1.0
+MUSETT_T0_DSSD_X59_T 0.0 1.0
+MUSETT_T0_DSSD_X60_T 0.0 1.0
+MUSETT_T0_DSSD_X61_T 0.0 1.0
+MUSETT_T0_DSSD_X62_T 0.0 1.0
+MUSETT_T0_DSSD_X63_T 0.0 1.0
+MUSETT_T0_DSSD_X64_T 0.0 1.0
+MUSETT_T0_DSSD_X65_T 0.0 1.0
+MUSETT_T0_DSSD_X66_T 0.0 1.0
+MUSETT_T0_DSSD_X67_T 0.0 1.0
+MUSETT_T0_DSSD_X68_T 0.0 1.0
+MUSETT_T0_DSSD_X69_T 0.0 1.0
+MUSETT_T0_DSSD_X70_T 0.0 1.0
+MUSETT_T0_DSSD_X71_T 0.0 1.0
+MUSETT_T0_DSSD_X72_T 0.0 1.0
+MUSETT_T0_DSSD_X73_T 0.0 1.0
+MUSETT_T0_DSSD_X74_T 0.0 1.0
+MUSETT_T0_DSSD_X75_T 0.0 1.0
+MUSETT_T0_DSSD_X76_T 0.0 1.0
+MUSETT_T0_DSSD_X77_T 0.0 1.0
+MUSETT_T0_DSSD_X78_T 0.0 1.0
+MUSETT_T0_DSSD_X79_T 0.0 1.0
+MUSETT_T0_DSSD_X80_T 0.0 1.0
+MUSETT_T0_DSSD_X81_T 0.0 1.0
+MUSETT_T0_DSSD_X82_T 0.0 1.0
+MUSETT_T0_DSSD_X83_T 0.0 1.0
+MUSETT_T0_DSSD_X84_T 0.0 1.0
+MUSETT_T0_DSSD_X85_T 0.0 1.0
+MUSETT_T0_DSSD_X86_T 0.0 1.0
+MUSETT_T0_DSSD_X87_T 0.0 1.0
+MUSETT_T0_DSSD_X88_T 0.0 1.0
+MUSETT_T0_DSSD_X89_T 0.0 1.0
+MUSETT_T0_DSSD_X90_T 0.0 1.0
+MUSETT_T0_DSSD_X91_T 0.0 1.0
+MUSETT_T0_DSSD_X92_T 0.0 1.0
+MUSETT_T0_DSSD_X93_T 0.0 1.0
+MUSETT_T0_DSSD_X94_T 0.0 1.0
+MUSETT_T0_DSSD_X95_T 0.0 1.0
+MUSETT_T0_DSSD_X96_T 0.0 1.0
+MUSETT_T0_DSSD_X97_T 0.0 1.0
+MUSETT_T0_DSSD_X98_T 0.0 1.0
+MUSETT_T0_DSSD_X99_T 0.0 1.0
+MUSETT_T0_DSSD_X100_T 0.0 1.0
+MUSETT_T0_DSSD_X101_T 0.0 1.0
+MUSETT_T0_DSSD_X102_T 0.0 1.0
+MUSETT_T0_DSSD_X103_T 0.0 1.0
+MUSETT_T0_DSSD_X104_T 0.0 1.0
+MUSETT_T0_DSSD_X105_T 0.0 1.0
+MUSETT_T0_DSSD_X106_T 0.0 1.0
+MUSETT_T0_DSSD_X107_T 0.0 1.0
+MUSETT_T0_DSSD_X108_T 0.0 1.0
+MUSETT_T0_DSSD_X109_T 0.0 1.0
+MUSETT_T0_DSSD_X110_T 0.0 1.0
+MUSETT_T0_DSSD_X111_T 0.0 1.0
+MUSETT_T0_DSSD_X112_T 0.0 1.0
+MUSETT_T0_DSSD_X113_T 0.0 1.0
+MUSETT_T0_DSSD_X114_T 0.0 1.0
+MUSETT_T0_DSSD_X115_T 0.0 1.0
+MUSETT_T0_DSSD_X116_T 0.0 1.0
+MUSETT_T0_DSSD_X117_T 0.0 1.0
+MUSETT_T0_DSSD_X118_T 0.0 1.0
+MUSETT_T0_DSSD_X119_T 0.0 1.0
+MUSETT_T0_DSSD_X120_T 0.0 1.0
+MUSETT_T0_DSSD_X121_T 0.0 1.0
+MUSETT_T0_DSSD_X122_T 0.0 1.0
+MUSETT_T0_DSSD_X123_T 0.0 1.0
+MUSETT_T0_DSSD_X124_T 0.0 1.0
+MUSETT_T0_DSSD_X125_T 0.0 1.0
+MUSETT_T0_DSSD_X126_T 0.0 1.0
+MUSETT_T0_DSSD_X127_T 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/calib_simu/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e082226a3962867722f57d0dddfbab3b1f0fad2e
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 0.0 1.0
+MUSETT_T0_DSSD_Y2_T 0.0 1.0
+MUSETT_T0_DSSD_Y3_T 0.0 1.0
+MUSETT_T0_DSSD_Y4_T 0.0 1.0
+MUSETT_T0_DSSD_Y5_T 0.0 1.0
+MUSETT_T0_DSSD_Y6_T 0.0 1.0
+MUSETT_T0_DSSD_Y7_T 0.0 1.0
+MUSETT_T0_DSSD_Y8_T 0.0 1.0
+MUSETT_T0_DSSD_Y9_T 0.0 1.0
+MUSETT_T0_DSSD_Y10_T 0.0 1.0
+MUSETT_T0_DSSD_Y11_T 0.0 1.0
+MUSETT_T0_DSSD_Y12_T 0.0 1.0
+MUSETT_T0_DSSD_Y13_T 0.0 1.0
+MUSETT_T0_DSSD_Y14_T 0.0 1.0
+MUSETT_T0_DSSD_Y15_T 0.0 1.0
+MUSETT_T0_DSSD_Y16_T 0.0 1.0
+MUSETT_T0_DSSD_Y17_T 0.0 1.0
+MUSETT_T0_DSSD_Y18_T 0.0 1.0
+MUSETT_T0_DSSD_Y19_T 0.0 1.0
+MUSETT_T0_DSSD_Y20_T 0.0 1.0
+MUSETT_T0_DSSD_Y21_T 0.0 1.0
+MUSETT_T0_DSSD_Y22_T 0.0 1.0
+MUSETT_T0_DSSD_Y23_T 0.0 1.0
+MUSETT_T0_DSSD_Y24_T 0.0 1.0
+MUSETT_T0_DSSD_Y25_T 0.0 1.0
+MUSETT_T0_DSSD_Y26_T 0.0 1.0
+MUSETT_T0_DSSD_Y27_T 0.0 1.0
+MUSETT_T0_DSSD_Y28_T 0.0 1.0
+MUSETT_T0_DSSD_Y29_T 0.0 1.0
+MUSETT_T0_DSSD_Y30_T 0.0 1.0
+MUSETT_T0_DSSD_Y31_T 0.0 1.0
+MUSETT_T0_DSSD_Y32_T 0.0 1.0
+MUSETT_T0_DSSD_Y33_T 0.0 1.0
+MUSETT_T0_DSSD_Y34_T 0.0 1.0
+MUSETT_T0_DSSD_Y35_T 0.0 1.0
+MUSETT_T0_DSSD_Y36_T 0.0 1.0
+MUSETT_T0_DSSD_Y37_T 0.0 1.0
+MUSETT_T0_DSSD_Y38_T 0.0 1.0
+MUSETT_T0_DSSD_Y39_T 0.0 1.0
+MUSETT_T0_DSSD_Y40_T 0.0 1.0
+MUSETT_T0_DSSD_Y41_T 0.0 1.0
+MUSETT_T0_DSSD_Y42_T 0.0 1.0
+MUSETT_T0_DSSD_Y43_T 0.0 1.0
+MUSETT_T0_DSSD_Y44_T 0.0 1.0
+MUSETT_T0_DSSD_Y45_T 0.0 1.0
+MUSETT_T0_DSSD_Y46_T 0.0 1.0
+MUSETT_T0_DSSD_Y47_T 0.0 1.0
+MUSETT_T0_DSSD_Y48_T 0.0 1.0
+MUSETT_T0_DSSD_Y49_T 0.0 1.0
+MUSETT_T0_DSSD_Y50_T 0.0 1.0
+MUSETT_T0_DSSD_Y51_T 0.0 1.0
+MUSETT_T0_DSSD_Y52_T 0.0 1.0
+MUSETT_T0_DSSD_Y53_T 0.0 1.0
+MUSETT_T0_DSSD_Y54_T 0.0 1.0
+MUSETT_T0_DSSD_Y55_T 0.0 1.0
+MUSETT_T0_DSSD_Y56_T 0.0 1.0
+MUSETT_T0_DSSD_Y57_T 0.0 1.0
+MUSETT_T0_DSSD_Y58_T 0.0 1.0
+MUSETT_T0_DSSD_Y59_T 0.0 1.0
+MUSETT_T0_DSSD_Y60_T 0.0 1.0
+MUSETT_T0_DSSD_Y61_T 0.0 1.0
+MUSETT_T0_DSSD_Y62_T 0.0 1.0
+MUSETT_T0_DSSD_Y63_T 0.0 1.0
+MUSETT_T0_DSSD_Y64_T 0.0 1.0
+MUSETT_T0_DSSD_Y65_T 0.0 1.0
+MUSETT_T0_DSSD_Y66_T 0.0 1.0
+MUSETT_T0_DSSD_Y67_T 0.0 1.0
+MUSETT_T0_DSSD_Y68_T 0.0 1.0
+MUSETT_T0_DSSD_Y69_T 0.0 1.0
+MUSETT_T0_DSSD_Y70_T 0.0 1.0
+MUSETT_T0_DSSD_Y71_T 0.0 1.0
+MUSETT_T0_DSSD_Y72_T 0.0 1.0
+MUSETT_T0_DSSD_Y73_T 0.0 1.0
+MUSETT_T0_DSSD_Y74_T 0.0 1.0
+MUSETT_T0_DSSD_Y75_T 0.0 1.0
+MUSETT_T0_DSSD_Y76_T 0.0 1.0
+MUSETT_T0_DSSD_Y77_T 0.0 1.0
+MUSETT_T0_DSSD_Y78_T 0.0 1.0
+MUSETT_T0_DSSD_Y79_T 0.0 1.0
+MUSETT_T0_DSSD_Y80_T 0.0 1.0
+MUSETT_T0_DSSD_Y81_T 0.0 1.0
+MUSETT_T0_DSSD_Y82_T 0.0 1.0
+MUSETT_T0_DSSD_Y83_T 0.0 1.0
+MUSETT_T0_DSSD_Y84_T 0.0 1.0
+MUSETT_T0_DSSD_Y85_T 0.0 1.0
+MUSETT_T0_DSSD_Y86_T 0.0 1.0
+MUSETT_T0_DSSD_Y87_T 0.0 1.0
+MUSETT_T0_DSSD_Y88_T 0.0 1.0
+MUSETT_T0_DSSD_Y89_T 0.0 1.0
+MUSETT_T0_DSSD_Y90_T 0.0 1.0
+MUSETT_T0_DSSD_Y91_T 0.0 1.0
+MUSETT_T0_DSSD_Y92_T 0.0 1.0
+MUSETT_T0_DSSD_Y93_T 0.0 1.0
+MUSETT_T0_DSSD_Y94_T 0.0 1.0
+MUSETT_T0_DSSD_Y95_T 0.0 1.0
+MUSETT_T0_DSSD_Y96_T 0.0 1.0
+MUSETT_T0_DSSD_Y97_T 0.0 1.0
+MUSETT_T0_DSSD_Y98_T 0.0 1.0
+MUSETT_T0_DSSD_Y99_T 0.0 1.0
+MUSETT_T0_DSSD_Y100_T 0.0 1.0
+MUSETT_T0_DSSD_Y101_T 0.0 1.0
+MUSETT_T0_DSSD_Y102_T 0.0 1.0
+MUSETT_T0_DSSD_Y103_T 0.0 1.0
+MUSETT_T0_DSSD_Y104_T 0.0 1.0
+MUSETT_T0_DSSD_Y105_T 0.0 1.0
+MUSETT_T0_DSSD_Y106_T 0.0 1.0
+MUSETT_T0_DSSD_Y107_T 0.0 1.0
+MUSETT_T0_DSSD_Y108_T 0.0 1.0
+MUSETT_T0_DSSD_Y109_T 0.0 1.0
+MUSETT_T0_DSSD_Y110_T 0.0 1.0
+MUSETT_T0_DSSD_Y111_T 0.0 1.0
+MUSETT_T0_DSSD_Y112_T 0.0 1.0
+MUSETT_T0_DSSD_Y113_T 0.0 1.0
+MUSETT_T0_DSSD_Y114_T 0.0 1.0
+MUSETT_T0_DSSD_Y115_T 0.0 1.0
+MUSETT_T0_DSSD_Y116_T 0.0 1.0
+MUSETT_T0_DSSD_Y117_T 0.0 1.0
+MUSETT_T0_DSSD_Y118_T 0.0 1.0
+MUSETT_T0_DSSD_Y119_T 0.0 1.0
+MUSETT_T0_DSSD_Y120_T 0.0 1.0
+MUSETT_T0_DSSD_Y121_T 0.0 1.0
+MUSETT_T0_DSSD_Y122_T 0.0 1.0
+MUSETT_T0_DSSD_Y123_T 0.0 1.0
+MUSETT_T0_DSSD_Y124_T 0.0 1.0
+MUSETT_T0_DSSD_Y125_T 0.0 1.0
+MUSETT_T0_DSSD_Y126_T 0.0 1.0
+MUSETT_T0_DSSD_Y127_T 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/M1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/calib_simu/M1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..99299640047e01ed447e30941d79c9f5130849c9
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E 0.0 1.0
+MUSETT_T1_DSSD_X1_E 0.0 1.0
+MUSETT_T1_DSSD_X2_E 0.0 1.0
+MUSETT_T1_DSSD_X3_E 0.0 1.0
+MUSETT_T1_DSSD_X4_E 0.0 1.0
+MUSETT_T1_DSSD_X5_E 0.0 1.0
+MUSETT_T1_DSSD_X6_E 0.0 1.0
+MUSETT_T1_DSSD_X7_E 0.0 1.0
+MUSETT_T1_DSSD_X8_E 0.0 1.0
+MUSETT_T1_DSSD_X9_E 0.0 1.0
+MUSETT_T1_DSSD_X10_E 0.0 1.0
+MUSETT_T1_DSSD_X11_E 0.0 1.0
+MUSETT_T1_DSSD_X12_E 0.0 1.0
+MUSETT_T1_DSSD_X13_E 0.0 1.0
+MUSETT_T1_DSSD_X14_E 0.0 1.0
+MUSETT_T1_DSSD_X15_E 0.0 1.0
+MUSETT_T1_DSSD_X16_E 0.0 1.0
+MUSETT_T1_DSSD_X17_E 0.0 1.0
+MUSETT_T1_DSSD_X18_E 0.0 1.0
+MUSETT_T1_DSSD_X19_E 0.0 1.0
+MUSETT_T1_DSSD_X20_E 0.0 1.0
+MUSETT_T1_DSSD_X21_E 0.0 1.0
+MUSETT_T1_DSSD_X22_E 0.0 1.0
+MUSETT_T1_DSSD_X23_E 0.0 1.0
+MUSETT_T1_DSSD_X24_E 0.0 1.0
+MUSETT_T1_DSSD_X25_E 0.0 1.0
+MUSETT_T1_DSSD_X26_E 0.0 1.0
+MUSETT_T1_DSSD_X27_E 0.0 1.0
+MUSETT_T1_DSSD_X28_E 0.0 1.0
+MUSETT_T1_DSSD_X29_E 0.0 1.0
+MUSETT_T1_DSSD_X30_E 0.0 1.0
+MUSETT_T1_DSSD_X31_E 0.0 1.0
+MUSETT_T1_DSSD_X32_E 0.0 1.0
+MUSETT_T1_DSSD_X33_E 0.0 1.0
+MUSETT_T1_DSSD_X34_E 0.0 1.0
+MUSETT_T1_DSSD_X35_E 0.0 1.0
+MUSETT_T1_DSSD_X36_E 0.0 1.0
+MUSETT_T1_DSSD_X37_E 0.0 1.0
+MUSETT_T1_DSSD_X38_E 0.0 1.0
+MUSETT_T1_DSSD_X39_E 0.0 1.0
+MUSETT_T1_DSSD_X40_E 0.0 1.0
+MUSETT_T1_DSSD_X41_E 0.0 1.0
+MUSETT_T1_DSSD_X42_E 0.0 1.0
+MUSETT_T1_DSSD_X43_E 0.0 1.0
+MUSETT_T1_DSSD_X44_E 0.0 1.0
+MUSETT_T1_DSSD_X45_E 0.0 1.0
+MUSETT_T1_DSSD_X46_E 0.0 1.0
+MUSETT_T1_DSSD_X47_E 0.0 1.0
+MUSETT_T1_DSSD_X48_E 0.0 1.0
+MUSETT_T1_DSSD_X49_E 0.0 1.0
+MUSETT_T1_DSSD_X50_E 0.0 1.0
+MUSETT_T1_DSSD_X51_E 0.0 1.0
+MUSETT_T1_DSSD_X52_E 0.0 1.0
+MUSETT_T1_DSSD_X53_E 0.0 1.0
+MUSETT_T1_DSSD_X54_E 0.0 1.0
+MUSETT_T1_DSSD_X55_E 0.0 1.0
+MUSETT_T1_DSSD_X56_E 0.0 1.0
+MUSETT_T1_DSSD_X57_E 0.0 1.0
+MUSETT_T1_DSSD_X58_E 0.0 1.0
+MUSETT_T1_DSSD_X59_E 0.0 1.0
+MUSETT_T1_DSSD_X60_E 0.0 1.0
+MUSETT_T1_DSSD_X61_E 0.0 1.0
+MUSETT_T1_DSSD_X62_E 0.0 1.0
+MUSETT_T1_DSSD_X63_E 0.0 1.0
+MUSETT_T1_DSSD_X64_E 0.0 1.0
+MUSETT_T1_DSSD_X65_E 0.0 1.0
+MUSETT_T1_DSSD_X66_E 0.0 1.0
+MUSETT_T1_DSSD_X67_E 0.0 1.0
+MUSETT_T1_DSSD_X68_E 0.0 1.0
+MUSETT_T1_DSSD_X69_E 0.0 1.0
+MUSETT_T1_DSSD_X70_E 0.0 1.0
+MUSETT_T1_DSSD_X71_E 0.0 1.0
+MUSETT_T1_DSSD_X72_E 0.0 1.0
+MUSETT_T1_DSSD_X73_E 0.0 1.0
+MUSETT_T1_DSSD_X74_E 0.0 1.0
+MUSETT_T1_DSSD_X75_E 0.0 1.0
+MUSETT_T1_DSSD_X76_E 0.0 1.0
+MUSETT_T1_DSSD_X77_E 0.0 1.0
+MUSETT_T1_DSSD_X78_E 0.0 1.0
+MUSETT_T1_DSSD_X79_E 0.0 1.0
+MUSETT_T1_DSSD_X80_E 0.0 1.0
+MUSETT_T1_DSSD_X81_E 0.0 1.0
+MUSETT_T1_DSSD_X82_E 0.0 1.0
+MUSETT_T1_DSSD_X83_E 0.0 1.0
+MUSETT_T1_DSSD_X84_E 0.0 1.0
+MUSETT_T1_DSSD_X85_E 0.0 1.0
+MUSETT_T1_DSSD_X86_E 0.0 1.0
+MUSETT_T1_DSSD_X87_E 0.0 1.0
+MUSETT_T1_DSSD_X88_E 0.0 1.0
+MUSETT_T1_DSSD_X89_E 0.0 1.0
+MUSETT_T1_DSSD_X90_E 0.0 1.0
+MUSETT_T1_DSSD_X91_E 0.0 1.0
+MUSETT_T1_DSSD_X92_E 0.0 1.0
+MUSETT_T1_DSSD_X93_E 0.0 1.0
+MUSETT_T1_DSSD_X94_E 0.0 1.0
+MUSETT_T1_DSSD_X95_E 0.0 1.0
+MUSETT_T1_DSSD_X96_E 0.0 1.0
+MUSETT_T1_DSSD_X97_E 0.0 1.0
+MUSETT_T1_DSSD_X98_E 0.0 1.0
+MUSETT_T1_DSSD_X99_E 0.0 1.0
+MUSETT_T1_DSSD_X100_E 0.0 1.0
+MUSETT_T1_DSSD_X101_E 0.0 1.0
+MUSETT_T1_DSSD_X102_E 0.0 1.0
+MUSETT_T1_DSSD_X103_E 0.0 1.0
+MUSETT_T1_DSSD_X104_E 0.0 1.0
+MUSETT_T1_DSSD_X105_E 0.0 1.0
+MUSETT_T1_DSSD_X106_E 0.0 1.0
+MUSETT_T1_DSSD_X107_E 0.0 1.0
+MUSETT_T1_DSSD_X108_E 0.0 1.0
+MUSETT_T1_DSSD_X109_E 0.0 1.0
+MUSETT_T1_DSSD_X110_E 0.0 1.0
+MUSETT_T1_DSSD_X111_E 0.0 1.0
+MUSETT_T1_DSSD_X112_E 0.0 1.0
+MUSETT_T1_DSSD_X113_E 0.0 1.0
+MUSETT_T1_DSSD_X114_E 0.0 1.0
+MUSETT_T1_DSSD_X115_E 0.0 1.0
+MUSETT_T1_DSSD_X116_E 0.0 1.0
+MUSETT_T1_DSSD_X117_E 0.0 1.0
+MUSETT_T1_DSSD_X118_E 0.0 1.0
+MUSETT_T1_DSSD_X119_E 0.0 1.0
+MUSETT_T1_DSSD_X120_E 0.0 1.0
+MUSETT_T1_DSSD_X121_E 0.0 1.0
+MUSETT_T1_DSSD_X122_E 0.0 1.0
+MUSETT_T1_DSSD_X123_E 0.0 1.0
+MUSETT_T1_DSSD_X124_E 0.0 1.0
+MUSETT_T1_DSSD_X125_E 0.0 1.0
+MUSETT_T1_DSSD_X126_E 0.0 1.0
+MUSETT_T1_DSSD_X127_E 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/M1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/calib_simu/M1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..64120abbc621cfbf3db4fda166d9f71f0a9f3f0d
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_E 0.0 1.0
+MUSETT_T1_DSSD_Y1_E 0.0 1.0
+MUSETT_T1_DSSD_Y2_E 0.0 1.0
+MUSETT_T1_DSSD_Y3_E 0.0 1.0
+MUSETT_T1_DSSD_Y4_E 0.0 1.0
+MUSETT_T1_DSSD_Y5_E 0.0 1.0
+MUSETT_T1_DSSD_Y6_E 0.0 1.0
+MUSETT_T1_DSSD_Y7_E 0.0 1.0
+MUSETT_T1_DSSD_Y8_E 0.0 1.0
+MUSETT_T1_DSSD_Y9_E 0.0 1.0
+MUSETT_T1_DSSD_Y10_E 0.0 1.0
+MUSETT_T1_DSSD_Y11_E 0.0 1.0
+MUSETT_T1_DSSD_Y12_E 0.0 1.0
+MUSETT_T1_DSSD_Y13_E 0.0 1.0
+MUSETT_T1_DSSD_Y14_E 0.0 1.0
+MUSETT_T1_DSSD_Y15_E 0.0 1.0
+MUSETT_T1_DSSD_Y16_E 0.0 1.0
+MUSETT_T1_DSSD_Y17_E 0.0 1.0
+MUSETT_T1_DSSD_Y18_E 0.0 1.0
+MUSETT_T1_DSSD_Y19_E 0.0 1.0
+MUSETT_T1_DSSD_Y20_E 0.0 1.0
+MUSETT_T1_DSSD_Y21_E 0.0 1.0
+MUSETT_T1_DSSD_Y22_E 0.0 1.0
+MUSETT_T1_DSSD_Y23_E 0.0 1.0
+MUSETT_T1_DSSD_Y24_E 0.0 1.0
+MUSETT_T1_DSSD_Y25_E 0.0 1.0
+MUSETT_T1_DSSD_Y26_E 0.0 1.0
+MUSETT_T1_DSSD_Y27_E 0.0 1.0
+MUSETT_T1_DSSD_Y28_E 0.0 1.0
+MUSETT_T1_DSSD_Y29_E 0.0 1.0
+MUSETT_T1_DSSD_Y30_E 0.0 1.0
+MUSETT_T1_DSSD_Y31_E 0.0 1.0
+MUSETT_T1_DSSD_Y32_E 0.0 1.0
+MUSETT_T1_DSSD_Y33_E 0.0 1.0
+MUSETT_T1_DSSD_Y34_E 0.0 1.0
+MUSETT_T1_DSSD_Y35_E 0.0 1.0
+MUSETT_T1_DSSD_Y36_E 0.0 1.0
+MUSETT_T1_DSSD_Y37_E 0.0 1.0
+MUSETT_T1_DSSD_Y38_E 0.0 1.0
+MUSETT_T1_DSSD_Y39_E 0.0 1.0
+MUSETT_T1_DSSD_Y40_E 0.0 1.0
+MUSETT_T1_DSSD_Y41_E 0.0 1.0
+MUSETT_T1_DSSD_Y42_E 0.0 1.0
+MUSETT_T1_DSSD_Y43_E 0.0 1.0
+MUSETT_T1_DSSD_Y44_E 0.0 1.0
+MUSETT_T1_DSSD_Y45_E 0.0 1.0
+MUSETT_T1_DSSD_Y46_E 0.0 1.0
+MUSETT_T1_DSSD_Y47_E 0.0 1.0
+MUSETT_T1_DSSD_Y48_E 0.0 1.0
+MUSETT_T1_DSSD_Y49_E 0.0 1.0
+MUSETT_T1_DSSD_Y50_E 0.0 1.0
+MUSETT_T1_DSSD_Y51_E 0.0 1.0
+MUSETT_T1_DSSD_Y52_E 0.0 1.0
+MUSETT_T1_DSSD_Y53_E 0.0 1.0
+MUSETT_T1_DSSD_Y54_E 0.0 1.0
+MUSETT_T1_DSSD_Y55_E 0.0 1.0
+MUSETT_T1_DSSD_Y56_E 0.0 1.0
+MUSETT_T1_DSSD_Y57_E 0.0 1.0
+MUSETT_T1_DSSD_Y58_E 0.0 1.0
+MUSETT_T1_DSSD_Y59_E 0.0 1.0
+MUSETT_T1_DSSD_Y60_E 0.0 1.0
+MUSETT_T1_DSSD_Y61_E 0.0 1.0
+MUSETT_T1_DSSD_Y62_E 0.0 1.0
+MUSETT_T1_DSSD_Y63_E 0.0 1.0
+MUSETT_T1_DSSD_Y64_E 0.0 1.0
+MUSETT_T1_DSSD_Y65_E 0.0 1.0
+MUSETT_T1_DSSD_Y66_E 0.0 1.0
+MUSETT_T1_DSSD_Y67_E 0.0 1.0
+MUSETT_T1_DSSD_Y68_E 0.0 1.0
+MUSETT_T1_DSSD_Y69_E 0.0 1.0
+MUSETT_T1_DSSD_Y70_E 0.0 1.0
+MUSETT_T1_DSSD_Y71_E 0.0 1.0
+MUSETT_T1_DSSD_Y72_E 0.0 1.0
+MUSETT_T1_DSSD_Y73_E 0.0 1.0
+MUSETT_T1_DSSD_Y74_E 0.0 1.0
+MUSETT_T1_DSSD_Y75_E 0.0 1.0
+MUSETT_T1_DSSD_Y76_E 0.0 1.0
+MUSETT_T1_DSSD_Y77_E 0.0 1.0
+MUSETT_T1_DSSD_Y78_E 0.0 1.0
+MUSETT_T1_DSSD_Y79_E 0.0 1.0
+MUSETT_T1_DSSD_Y80_E 0.0 1.0
+MUSETT_T1_DSSD_Y81_E 0.0 1.0
+MUSETT_T1_DSSD_Y82_E 0.0 1.0
+MUSETT_T1_DSSD_Y83_E 0.0 1.0
+MUSETT_T1_DSSD_Y84_E 0.0 1.0
+MUSETT_T1_DSSD_Y85_E 0.0 1.0
+MUSETT_T1_DSSD_Y86_E 0.0 1.0
+MUSETT_T1_DSSD_Y87_E 0.0 1.0
+MUSETT_T1_DSSD_Y88_E 0.0 1.0
+MUSETT_T1_DSSD_Y89_E 0.0 1.0
+MUSETT_T1_DSSD_Y90_E 0.0 1.0
+MUSETT_T1_DSSD_Y91_E 0.0 1.0
+MUSETT_T1_DSSD_Y92_E 0.0 1.0
+MUSETT_T1_DSSD_Y93_E 0.0 1.0
+MUSETT_T1_DSSD_Y94_E 0.0 1.0
+MUSETT_T1_DSSD_Y95_E 0.0 1.0
+MUSETT_T1_DSSD_Y96_E 0.0 1.0
+MUSETT_T1_DSSD_Y97_E 0.0 1.0
+MUSETT_T1_DSSD_Y98_E 0.0 1.0
+MUSETT_T1_DSSD_Y99_E 0.0 1.0
+MUSETT_T1_DSSD_Y100_E 0.0 1.0
+MUSETT_T1_DSSD_Y101_E 0.0 1.0
+MUSETT_T1_DSSD_Y102_E 0.0 1.0
+MUSETT_T1_DSSD_Y103_E 0.0 1.0
+MUSETT_T1_DSSD_Y104_E 0.0 1.0
+MUSETT_T1_DSSD_Y105_E 0.0 1.0
+MUSETT_T1_DSSD_Y106_E 0.0 1.0
+MUSETT_T1_DSSD_Y107_E 0.0 1.0
+MUSETT_T1_DSSD_Y108_E 0.0 1.0
+MUSETT_T1_DSSD_Y109_E 0.0 1.0
+MUSETT_T1_DSSD_Y110_E 0.0 1.0
+MUSETT_T1_DSSD_Y111_E 0.0 1.0
+MUSETT_T1_DSSD_Y112_E 0.0 1.0
+MUSETT_T1_DSSD_Y113_E 0.0 1.0
+MUSETT_T1_DSSD_Y114_E 0.0 1.0
+MUSETT_T1_DSSD_Y115_E 0.0 1.0
+MUSETT_T1_DSSD_Y116_E 0.0 1.0
+MUSETT_T1_DSSD_Y117_E 0.0 1.0
+MUSETT_T1_DSSD_Y118_E 0.0 1.0
+MUSETT_T1_DSSD_Y119_E 0.0 1.0
+MUSETT_T1_DSSD_Y120_E 0.0 1.0
+MUSETT_T1_DSSD_Y121_E 0.0 1.0
+MUSETT_T1_DSSD_Y122_E 0.0 1.0
+MUSETT_T1_DSSD_Y123_E 0.0 1.0
+MUSETT_T1_DSSD_Y124_E 0.0 1.0
+MUSETT_T1_DSSD_Y125_E 0.0 1.0
+MUSETT_T1_DSSD_Y126_E 0.0 1.0
+MUSETT_T1_DSSD_Y127_E 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/calib_simu/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..516f3af0083d3993f9d0933a197063f8ffc66f2f
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_T 0.0 1.0
+MUSETT_T1_DSSD_X1_T 0.0 1.0
+MUSETT_T1_DSSD_X2_T 0.0 1.0
+MUSETT_T1_DSSD_X3_T 0.0 1.0
+MUSETT_T1_DSSD_X4_T 0.0 1.0
+MUSETT_T1_DSSD_X5_T 0.0 1.0
+MUSETT_T1_DSSD_X6_T 0.0 1.0
+MUSETT_T1_DSSD_X7_T 0.0 1.0
+MUSETT_T1_DSSD_X8_T 0.0 1.0
+MUSETT_T1_DSSD_X9_T 0.0 1.0
+MUSETT_T1_DSSD_X10_T 0.0 1.0
+MUSETT_T1_DSSD_X11_T 0.0 1.0
+MUSETT_T1_DSSD_X12_T 0.0 1.0
+MUSETT_T1_DSSD_X13_T 0.0 1.0
+MUSETT_T1_DSSD_X14_T 0.0 1.0
+MUSETT_T1_DSSD_X15_T 0.0 1.0
+MUSETT_T1_DSSD_X16_T 0.0 1.0
+MUSETT_T1_DSSD_X17_T 0.0 1.0
+MUSETT_T1_DSSD_X18_T 0.0 1.0
+MUSETT_T1_DSSD_X19_T 0.0 1.0
+MUSETT_T1_DSSD_X20_T 0.0 1.0
+MUSETT_T1_DSSD_X21_T 0.0 1.0
+MUSETT_T1_DSSD_X22_T 0.0 1.0
+MUSETT_T1_DSSD_X23_T 0.0 1.0
+MUSETT_T1_DSSD_X24_T 0.0 1.0
+MUSETT_T1_DSSD_X25_T 0.0 1.0
+MUSETT_T1_DSSD_X26_T 0.0 1.0
+MUSETT_T1_DSSD_X27_T 0.0 1.0
+MUSETT_T1_DSSD_X28_T 0.0 1.0
+MUSETT_T1_DSSD_X29_T 0.0 1.0
+MUSETT_T1_DSSD_X30_T 0.0 1.0
+MUSETT_T1_DSSD_X31_T 0.0 1.0
+MUSETT_T1_DSSD_X32_T 0.0 1.0
+MUSETT_T1_DSSD_X33_T 0.0 1.0
+MUSETT_T1_DSSD_X34_T 0.0 1.0
+MUSETT_T1_DSSD_X35_T 0.0 1.0
+MUSETT_T1_DSSD_X36_T 0.0 1.0
+MUSETT_T1_DSSD_X37_T 0.0 1.0
+MUSETT_T1_DSSD_X38_T 0.0 1.0
+MUSETT_T1_DSSD_X39_T 0.0 1.0
+MUSETT_T1_DSSD_X40_T 0.0 1.0
+MUSETT_T1_DSSD_X41_T 0.0 1.0
+MUSETT_T1_DSSD_X42_T 0.0 1.0
+MUSETT_T1_DSSD_X43_T 0.0 1.0
+MUSETT_T1_DSSD_X44_T 0.0 1.0
+MUSETT_T1_DSSD_X45_T 0.0 1.0
+MUSETT_T1_DSSD_X46_T 0.0 1.0
+MUSETT_T1_DSSD_X47_T 0.0 1.0
+MUSETT_T1_DSSD_X48_T 0.0 1.0
+MUSETT_T1_DSSD_X49_T 0.0 1.0
+MUSETT_T1_DSSD_X50_T 0.0 1.0
+MUSETT_T1_DSSD_X51_T 0.0 1.0
+MUSETT_T1_DSSD_X52_T 0.0 1.0
+MUSETT_T1_DSSD_X53_T 0.0 1.0
+MUSETT_T1_DSSD_X54_T 0.0 1.0
+MUSETT_T1_DSSD_X55_T 0.0 1.0
+MUSETT_T1_DSSD_X56_T 0.0 1.0
+MUSETT_T1_DSSD_X57_T 0.0 1.0
+MUSETT_T1_DSSD_X58_T 0.0 1.0
+MUSETT_T1_DSSD_X59_T 0.0 1.0
+MUSETT_T1_DSSD_X60_T 0.0 1.0
+MUSETT_T1_DSSD_X61_T 0.0 1.0
+MUSETT_T1_DSSD_X62_T 0.0 1.0
+MUSETT_T1_DSSD_X63_T 0.0 1.0
+MUSETT_T1_DSSD_X64_T 0.0 1.0
+MUSETT_T1_DSSD_X65_T 0.0 1.0
+MUSETT_T1_DSSD_X66_T 0.0 1.0
+MUSETT_T1_DSSD_X67_T 0.0 1.0
+MUSETT_T1_DSSD_X68_T 0.0 1.0
+MUSETT_T1_DSSD_X69_T 0.0 1.0
+MUSETT_T1_DSSD_X70_T 0.0 1.0
+MUSETT_T1_DSSD_X71_T 0.0 1.0
+MUSETT_T1_DSSD_X72_T 0.0 1.0
+MUSETT_T1_DSSD_X73_T 0.0 1.0
+MUSETT_T1_DSSD_X74_T 0.0 1.0
+MUSETT_T1_DSSD_X75_T 0.0 1.0
+MUSETT_T1_DSSD_X76_T 0.0 1.0
+MUSETT_T1_DSSD_X77_T 0.0 1.0
+MUSETT_T1_DSSD_X78_T 0.0 1.0
+MUSETT_T1_DSSD_X79_T 0.0 1.0
+MUSETT_T1_DSSD_X80_T 0.0 1.0
+MUSETT_T1_DSSD_X81_T 0.0 1.0
+MUSETT_T1_DSSD_X82_T 0.0 1.0
+MUSETT_T1_DSSD_X83_T 0.0 1.0
+MUSETT_T1_DSSD_X84_T 0.0 1.0
+MUSETT_T1_DSSD_X85_T 0.0 1.0
+MUSETT_T1_DSSD_X86_T 0.0 1.0
+MUSETT_T1_DSSD_X87_T 0.0 1.0
+MUSETT_T1_DSSD_X88_T 0.0 1.0
+MUSETT_T1_DSSD_X89_T 0.0 1.0
+MUSETT_T1_DSSD_X90_T 0.0 1.0
+MUSETT_T1_DSSD_X91_T 0.0 1.0
+MUSETT_T1_DSSD_X92_T 0.0 1.0
+MUSETT_T1_DSSD_X93_T 0.0 1.0
+MUSETT_T1_DSSD_X94_T 0.0 1.0
+MUSETT_T1_DSSD_X95_T 0.0 1.0
+MUSETT_T1_DSSD_X96_T 0.0 1.0
+MUSETT_T1_DSSD_X97_T 0.0 1.0
+MUSETT_T1_DSSD_X98_T 0.0 1.0
+MUSETT_T1_DSSD_X99_T 0.0 1.0
+MUSETT_T1_DSSD_X100_T 0.0 1.0
+MUSETT_T1_DSSD_X101_T 0.0 1.0
+MUSETT_T1_DSSD_X102_T 0.0 1.0
+MUSETT_T1_DSSD_X103_T 0.0 1.0
+MUSETT_T1_DSSD_X104_T 0.0 1.0
+MUSETT_T1_DSSD_X105_T 0.0 1.0
+MUSETT_T1_DSSD_X106_T 0.0 1.0
+MUSETT_T1_DSSD_X107_T 0.0 1.0
+MUSETT_T1_DSSD_X108_T 0.0 1.0
+MUSETT_T1_DSSD_X109_T 0.0 1.0
+MUSETT_T1_DSSD_X110_T 0.0 1.0
+MUSETT_T1_DSSD_X111_T 0.0 1.0
+MUSETT_T1_DSSD_X112_T 0.0 1.0
+MUSETT_T1_DSSD_X113_T 0.0 1.0
+MUSETT_T1_DSSD_X114_T 0.0 1.0
+MUSETT_T1_DSSD_X115_T 0.0 1.0
+MUSETT_T1_DSSD_X116_T 0.0 1.0
+MUSETT_T1_DSSD_X117_T 0.0 1.0
+MUSETT_T1_DSSD_X118_T 0.0 1.0
+MUSETT_T1_DSSD_X119_T 0.0 1.0
+MUSETT_T1_DSSD_X120_T 0.0 1.0
+MUSETT_T1_DSSD_X121_T 0.0 1.0
+MUSETT_T1_DSSD_X122_T 0.0 1.0
+MUSETT_T1_DSSD_X123_T 0.0 1.0
+MUSETT_T1_DSSD_X124_T 0.0 1.0
+MUSETT_T1_DSSD_X125_T 0.0 1.0
+MUSETT_T1_DSSD_X126_T 0.0 1.0
+MUSETT_T1_DSSD_X127_T 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/calib_simu/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..dde6e7e3cf946fa79617637852eb0cf7ec3b1a36
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_T 0.0 1.0
+MUSETT_T1_DSSD_Y1_T 0.0 1.0
+MUSETT_T1_DSSD_Y2_T 0.0 1.0
+MUSETT_T1_DSSD_Y3_T 0.0 1.0
+MUSETT_T1_DSSD_Y4_T 0.0 1.0
+MUSETT_T1_DSSD_Y5_T 0.0 1.0
+MUSETT_T1_DSSD_Y6_T 0.0 1.0
+MUSETT_T1_DSSD_Y7_T 0.0 1.0
+MUSETT_T1_DSSD_Y8_T 0.0 1.0
+MUSETT_T1_DSSD_Y9_T 0.0 1.0
+MUSETT_T1_DSSD_Y10_T 0.0 1.0
+MUSETT_T1_DSSD_Y11_T 0.0 1.0
+MUSETT_T1_DSSD_Y12_T 0.0 1.0
+MUSETT_T1_DSSD_Y13_T 0.0 1.0
+MUSETT_T1_DSSD_Y14_T 0.0 1.0
+MUSETT_T1_DSSD_Y15_T 0.0 1.0
+MUSETT_T1_DSSD_Y16_T 0.0 1.0
+MUSETT_T1_DSSD_Y17_T 0.0 1.0
+MUSETT_T1_DSSD_Y18_T 0.0 1.0
+MUSETT_T1_DSSD_Y19_T 0.0 1.0
+MUSETT_T1_DSSD_Y20_T 0.0 1.0
+MUSETT_T1_DSSD_Y21_T 0.0 1.0
+MUSETT_T1_DSSD_Y22_T 0.0 1.0
+MUSETT_T1_DSSD_Y23_T 0.0 1.0
+MUSETT_T1_DSSD_Y24_T 0.0 1.0
+MUSETT_T1_DSSD_Y25_T 0.0 1.0
+MUSETT_T1_DSSD_Y26_T 0.0 1.0
+MUSETT_T1_DSSD_Y27_T 0.0 1.0
+MUSETT_T1_DSSD_Y28_T 0.0 1.0
+MUSETT_T1_DSSD_Y29_T 0.0 1.0
+MUSETT_T1_DSSD_Y30_T 0.0 1.0
+MUSETT_T1_DSSD_Y31_T 0.0 1.0
+MUSETT_T1_DSSD_Y32_T 0.0 1.0
+MUSETT_T1_DSSD_Y33_T 0.0 1.0
+MUSETT_T1_DSSD_Y34_T 0.0 1.0
+MUSETT_T1_DSSD_Y35_T 0.0 1.0
+MUSETT_T1_DSSD_Y36_T 0.0 1.0
+MUSETT_T1_DSSD_Y37_T 0.0 1.0
+MUSETT_T1_DSSD_Y38_T 0.0 1.0
+MUSETT_T1_DSSD_Y39_T 0.0 1.0
+MUSETT_T1_DSSD_Y40_T 0.0 1.0
+MUSETT_T1_DSSD_Y41_T 0.0 1.0
+MUSETT_T1_DSSD_Y42_T 0.0 1.0
+MUSETT_T1_DSSD_Y43_T 0.0 1.0
+MUSETT_T1_DSSD_Y44_T 0.0 1.0
+MUSETT_T1_DSSD_Y45_T 0.0 1.0
+MUSETT_T1_DSSD_Y46_T 0.0 1.0
+MUSETT_T1_DSSD_Y47_T 0.0 1.0
+MUSETT_T1_DSSD_Y48_T 0.0 1.0
+MUSETT_T1_DSSD_Y49_T 0.0 1.0
+MUSETT_T1_DSSD_Y50_T 0.0 1.0
+MUSETT_T1_DSSD_Y51_T 0.0 1.0
+MUSETT_T1_DSSD_Y52_T 0.0 1.0
+MUSETT_T1_DSSD_Y53_T 0.0 1.0
+MUSETT_T1_DSSD_Y54_T 0.0 1.0
+MUSETT_T1_DSSD_Y55_T 0.0 1.0
+MUSETT_T1_DSSD_Y56_T 0.0 1.0
+MUSETT_T1_DSSD_Y57_T 0.0 1.0
+MUSETT_T1_DSSD_Y58_T 0.0 1.0
+MUSETT_T1_DSSD_Y59_T 0.0 1.0
+MUSETT_T1_DSSD_Y60_T 0.0 1.0
+MUSETT_T1_DSSD_Y61_T 0.0 1.0
+MUSETT_T1_DSSD_Y62_T 0.0 1.0
+MUSETT_T1_DSSD_Y63_T 0.0 1.0
+MUSETT_T1_DSSD_Y64_T 0.0 1.0
+MUSETT_T1_DSSD_Y65_T 0.0 1.0
+MUSETT_T1_DSSD_Y66_T 0.0 1.0
+MUSETT_T1_DSSD_Y67_T 0.0 1.0
+MUSETT_T1_DSSD_Y68_T 0.0 1.0
+MUSETT_T1_DSSD_Y69_T 0.0 1.0
+MUSETT_T1_DSSD_Y70_T 0.0 1.0
+MUSETT_T1_DSSD_Y71_T 0.0 1.0
+MUSETT_T1_DSSD_Y72_T 0.0 1.0
+MUSETT_T1_DSSD_Y73_T 0.0 1.0
+MUSETT_T1_DSSD_Y74_T 0.0 1.0
+MUSETT_T1_DSSD_Y75_T 0.0 1.0
+MUSETT_T1_DSSD_Y76_T 0.0 1.0
+MUSETT_T1_DSSD_Y77_T 0.0 1.0
+MUSETT_T1_DSSD_Y78_T 0.0 1.0
+MUSETT_T1_DSSD_Y79_T 0.0 1.0
+MUSETT_T1_DSSD_Y80_T 0.0 1.0
+MUSETT_T1_DSSD_Y81_T 0.0 1.0
+MUSETT_T1_DSSD_Y82_T 0.0 1.0
+MUSETT_T1_DSSD_Y83_T 0.0 1.0
+MUSETT_T1_DSSD_Y84_T 0.0 1.0
+MUSETT_T1_DSSD_Y85_T 0.0 1.0
+MUSETT_T1_DSSD_Y86_T 0.0 1.0
+MUSETT_T1_DSSD_Y87_T 0.0 1.0
+MUSETT_T1_DSSD_Y88_T 0.0 1.0
+MUSETT_T1_DSSD_Y89_T 0.0 1.0
+MUSETT_T1_DSSD_Y90_T 0.0 1.0
+MUSETT_T1_DSSD_Y91_T 0.0 1.0
+MUSETT_T1_DSSD_Y92_T 0.0 1.0
+MUSETT_T1_DSSD_Y93_T 0.0 1.0
+MUSETT_T1_DSSD_Y94_T 0.0 1.0
+MUSETT_T1_DSSD_Y95_T 0.0 1.0
+MUSETT_T1_DSSD_Y96_T 0.0 1.0
+MUSETT_T1_DSSD_Y97_T 0.0 1.0
+MUSETT_T1_DSSD_Y98_T 0.0 1.0
+MUSETT_T1_DSSD_Y99_T 0.0 1.0
+MUSETT_T1_DSSD_Y100_T 0.0 1.0
+MUSETT_T1_DSSD_Y101_T 0.0 1.0
+MUSETT_T1_DSSD_Y102_T 0.0 1.0
+MUSETT_T1_DSSD_Y103_T 0.0 1.0
+MUSETT_T1_DSSD_Y104_T 0.0 1.0
+MUSETT_T1_DSSD_Y105_T 0.0 1.0
+MUSETT_T1_DSSD_Y106_T 0.0 1.0
+MUSETT_T1_DSSD_Y107_T 0.0 1.0
+MUSETT_T1_DSSD_Y108_T 0.0 1.0
+MUSETT_T1_DSSD_Y109_T 0.0 1.0
+MUSETT_T1_DSSD_Y110_T 0.0 1.0
+MUSETT_T1_DSSD_Y111_T 0.0 1.0
+MUSETT_T1_DSSD_Y112_T 0.0 1.0
+MUSETT_T1_DSSD_Y113_T 0.0 1.0
+MUSETT_T1_DSSD_Y114_T 0.0 1.0
+MUSETT_T1_DSSD_Y115_T 0.0 1.0
+MUSETT_T1_DSSD_Y116_T 0.0 1.0
+MUSETT_T1_DSSD_Y117_T 0.0 1.0
+MUSETT_T1_DSSD_Y118_T 0.0 1.0
+MUSETT_T1_DSSD_Y119_T 0.0 1.0
+MUSETT_T1_DSSD_Y120_T 0.0 1.0
+MUSETT_T1_DSSD_Y121_T 0.0 1.0
+MUSETT_T1_DSSD_Y122_T 0.0 1.0
+MUSETT_T1_DSSD_Y123_T 0.0 1.0
+MUSETT_T1_DSSD_Y124_T 0.0 1.0
+MUSETT_T1_DSSD_Y125_T 0.0 1.0
+MUSETT_T1_DSSD_Y126_T 0.0 1.0
+MUSETT_T1_DSSD_Y127_T 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/M2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/calib_simu/M2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..620ef6cba189860e4912e12232de2a71ad4f7292
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E 0.0 1.0
+MUSETT_T2_DSSD_X1_E 0.0 1.0
+MUSETT_T2_DSSD_X2_E 0.0 1.0
+MUSETT_T2_DSSD_X3_E 0.0 1.0
+MUSETT_T2_DSSD_X4_E 0.0 1.0
+MUSETT_T2_DSSD_X5_E 0.0 1.0
+MUSETT_T2_DSSD_X6_E 0.0 1.0
+MUSETT_T2_DSSD_X7_E 0.0 1.0
+MUSETT_T2_DSSD_X8_E 0.0 1.0
+MUSETT_T2_DSSD_X9_E 0.0 1.0
+MUSETT_T2_DSSD_X10_E 0.0 1.0
+MUSETT_T2_DSSD_X11_E 0.0 1.0
+MUSETT_T2_DSSD_X12_E 0.0 1.0
+MUSETT_T2_DSSD_X13_E 0.0 1.0
+MUSETT_T2_DSSD_X14_E 0.0 1.0
+MUSETT_T2_DSSD_X15_E 0.0 1.0
+MUSETT_T2_DSSD_X16_E 0.0 1.0
+MUSETT_T2_DSSD_X17_E 0.0 1.0
+MUSETT_T2_DSSD_X18_E 0.0 1.0
+MUSETT_T2_DSSD_X19_E 0.0 1.0
+MUSETT_T2_DSSD_X20_E 0.0 1.0
+MUSETT_T2_DSSD_X21_E 0.0 1.0
+MUSETT_T2_DSSD_X22_E 0.0 1.0
+MUSETT_T2_DSSD_X23_E 0.0 1.0
+MUSETT_T2_DSSD_X24_E 0.0 1.0
+MUSETT_T2_DSSD_X25_E 0.0 1.0
+MUSETT_T2_DSSD_X26_E 0.0 1.0
+MUSETT_T2_DSSD_X27_E 0.0 1.0
+MUSETT_T2_DSSD_X28_E 0.0 1.0
+MUSETT_T2_DSSD_X29_E 0.0 1.0
+MUSETT_T2_DSSD_X30_E 0.0 1.0
+MUSETT_T2_DSSD_X31_E 0.0 1.0
+MUSETT_T2_DSSD_X32_E 0.0 1.0
+MUSETT_T2_DSSD_X33_E 0.0 1.0
+MUSETT_T2_DSSD_X34_E 0.0 1.0
+MUSETT_T2_DSSD_X35_E 0.0 1.0
+MUSETT_T2_DSSD_X36_E 0.0 1.0
+MUSETT_T2_DSSD_X37_E 0.0 1.0
+MUSETT_T2_DSSD_X38_E 0.0 1.0
+MUSETT_T2_DSSD_X39_E 0.0 1.0
+MUSETT_T2_DSSD_X40_E 0.0 1.0
+MUSETT_T2_DSSD_X41_E 0.0 1.0
+MUSETT_T2_DSSD_X42_E 0.0 1.0
+MUSETT_T2_DSSD_X43_E 0.0 1.0
+MUSETT_T2_DSSD_X44_E 0.0 1.0
+MUSETT_T2_DSSD_X45_E 0.0 1.0
+MUSETT_T2_DSSD_X46_E 0.0 1.0
+MUSETT_T2_DSSD_X47_E 0.0 1.0
+MUSETT_T2_DSSD_X48_E 0.0 1.0
+MUSETT_T2_DSSD_X49_E 0.0 1.0
+MUSETT_T2_DSSD_X50_E 0.0 1.0
+MUSETT_T2_DSSD_X51_E 0.0 1.0
+MUSETT_T2_DSSD_X52_E 0.0 1.0
+MUSETT_T2_DSSD_X53_E 0.0 1.0
+MUSETT_T2_DSSD_X54_E 0.0 1.0
+MUSETT_T2_DSSD_X55_E 0.0 1.0
+MUSETT_T2_DSSD_X56_E 0.0 1.0
+MUSETT_T2_DSSD_X57_E 0.0 1.0
+MUSETT_T2_DSSD_X58_E 0.0 1.0
+MUSETT_T2_DSSD_X59_E 0.0 1.0
+MUSETT_T2_DSSD_X60_E 0.0 1.0
+MUSETT_T2_DSSD_X61_E 0.0 1.0
+MUSETT_T2_DSSD_X62_E 0.0 1.0
+MUSETT_T2_DSSD_X63_E 0.0 1.0
+MUSETT_T2_DSSD_X64_E 0.0 1.0
+MUSETT_T2_DSSD_X65_E 0.0 1.0
+MUSETT_T2_DSSD_X66_E 0.0 1.0
+MUSETT_T2_DSSD_X67_E 0.0 1.0
+MUSETT_T2_DSSD_X68_E 0.0 1.0
+MUSETT_T2_DSSD_X69_E 0.0 1.0
+MUSETT_T2_DSSD_X70_E 0.0 1.0
+MUSETT_T2_DSSD_X71_E 0.0 1.0
+MUSETT_T2_DSSD_X72_E 0.0 1.0
+MUSETT_T2_DSSD_X73_E 0.0 1.0
+MUSETT_T2_DSSD_X74_E 0.0 1.0
+MUSETT_T2_DSSD_X75_E 0.0 1.0
+MUSETT_T2_DSSD_X76_E 0.0 1.0
+MUSETT_T2_DSSD_X77_E 0.0 1.0
+MUSETT_T2_DSSD_X78_E 0.0 1.0
+MUSETT_T2_DSSD_X79_E 0.0 1.0
+MUSETT_T2_DSSD_X80_E 0.0 1.0
+MUSETT_T2_DSSD_X81_E 0.0 1.0
+MUSETT_T2_DSSD_X82_E 0.0 1.0
+MUSETT_T2_DSSD_X83_E 0.0 1.0
+MUSETT_T2_DSSD_X84_E 0.0 1.0
+MUSETT_T2_DSSD_X85_E 0.0 1.0
+MUSETT_T2_DSSD_X86_E 0.0 1.0
+MUSETT_T2_DSSD_X87_E 0.0 1.0
+MUSETT_T2_DSSD_X88_E 0.0 1.0
+MUSETT_T2_DSSD_X89_E 0.0 1.0
+MUSETT_T2_DSSD_X90_E 0.0 1.0
+MUSETT_T2_DSSD_X91_E 0.0 1.0
+MUSETT_T2_DSSD_X92_E 0.0 1.0
+MUSETT_T2_DSSD_X93_E 0.0 1.0
+MUSETT_T2_DSSD_X94_E 0.0 1.0
+MUSETT_T2_DSSD_X95_E 0.0 1.0
+MUSETT_T2_DSSD_X96_E 0.0 1.0
+MUSETT_T2_DSSD_X97_E 0.0 1.0
+MUSETT_T2_DSSD_X98_E 0.0 1.0
+MUSETT_T2_DSSD_X99_E 0.0 1.0
+MUSETT_T2_DSSD_X100_E 0.0 1.0
+MUSETT_T2_DSSD_X101_E 0.0 1.0
+MUSETT_T2_DSSD_X102_E 0.0 1.0
+MUSETT_T2_DSSD_X103_E 0.0 1.0
+MUSETT_T2_DSSD_X104_E 0.0 1.0
+MUSETT_T2_DSSD_X105_E 0.0 1.0
+MUSETT_T2_DSSD_X106_E 0.0 1.0
+MUSETT_T2_DSSD_X107_E 0.0 1.0
+MUSETT_T2_DSSD_X108_E 0.0 1.0
+MUSETT_T2_DSSD_X109_E 0.0 1.0
+MUSETT_T2_DSSD_X110_E 0.0 1.0
+MUSETT_T2_DSSD_X111_E 0.0 1.0
+MUSETT_T2_DSSD_X112_E 0.0 1.0
+MUSETT_T2_DSSD_X113_E 0.0 1.0
+MUSETT_T2_DSSD_X114_E 0.0 1.0
+MUSETT_T2_DSSD_X115_E 0.0 1.0
+MUSETT_T2_DSSD_X116_E 0.0 1.0
+MUSETT_T2_DSSD_X117_E 0.0 1.0
+MUSETT_T2_DSSD_X118_E 0.0 1.0
+MUSETT_T2_DSSD_X119_E 0.0 1.0
+MUSETT_T2_DSSD_X120_E 0.0 1.0
+MUSETT_T2_DSSD_X121_E 0.0 1.0
+MUSETT_T2_DSSD_X122_E 0.0 1.0
+MUSETT_T2_DSSD_X123_E 0.0 1.0
+MUSETT_T2_DSSD_X124_E 0.0 1.0
+MUSETT_T2_DSSD_X125_E 0.0 1.0
+MUSETT_T2_DSSD_X126_E 0.0 1.0
+MUSETT_T2_DSSD_X127_E 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/M2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/calib_simu/M2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0580cab055d1f1ced6d0020a9a38d9bafcbe79c0
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_E 0.0 1.0
+MUSETT_T2_DSSD_Y1_E 0.0 1.0
+MUSETT_T2_DSSD_Y2_E 0.0 1.0
+MUSETT_T2_DSSD_Y3_E 0.0 1.0
+MUSETT_T2_DSSD_Y4_E 0.0 1.0
+MUSETT_T2_DSSD_Y5_E 0.0 1.0
+MUSETT_T2_DSSD_Y6_E 0.0 1.0
+MUSETT_T2_DSSD_Y7_E 0.0 1.0
+MUSETT_T2_DSSD_Y8_E 0.0 1.0
+MUSETT_T2_DSSD_Y9_E 0.0 1.0
+MUSETT_T2_DSSD_Y10_E 0.0 1.0
+MUSETT_T2_DSSD_Y11_E 0.0 1.0
+MUSETT_T2_DSSD_Y12_E 0.0 1.0
+MUSETT_T2_DSSD_Y13_E 0.0 1.0
+MUSETT_T2_DSSD_Y14_E 0.0 1.0
+MUSETT_T2_DSSD_Y15_E 0.0 1.0
+MUSETT_T2_DSSD_Y16_E 0.0 1.0
+MUSETT_T2_DSSD_Y17_E 0.0 1.0
+MUSETT_T2_DSSD_Y18_E 0.0 1.0
+MUSETT_T2_DSSD_Y19_E 0.0 1.0
+MUSETT_T2_DSSD_Y20_E 0.0 1.0
+MUSETT_T2_DSSD_Y21_E 0.0 1.0
+MUSETT_T2_DSSD_Y22_E 0.0 1.0
+MUSETT_T2_DSSD_Y23_E 0.0 1.0
+MUSETT_T2_DSSD_Y24_E 0.0 1.0
+MUSETT_T2_DSSD_Y25_E 0.0 1.0
+MUSETT_T2_DSSD_Y26_E 0.0 1.0
+MUSETT_T2_DSSD_Y27_E 0.0 1.0
+MUSETT_T2_DSSD_Y28_E 0.0 1.0
+MUSETT_T2_DSSD_Y29_E 0.0 1.0
+MUSETT_T2_DSSD_Y30_E 0.0 1.0
+MUSETT_T2_DSSD_Y31_E 0.0 1.0
+MUSETT_T2_DSSD_Y32_E 0.0 1.0
+MUSETT_T2_DSSD_Y33_E 0.0 1.0
+MUSETT_T2_DSSD_Y34_E 0.0 1.0
+MUSETT_T2_DSSD_Y35_E 0.0 1.0
+MUSETT_T2_DSSD_Y36_E 0.0 1.0
+MUSETT_T2_DSSD_Y37_E 0.0 1.0
+MUSETT_T2_DSSD_Y38_E 0.0 1.0
+MUSETT_T2_DSSD_Y39_E 0.0 1.0
+MUSETT_T2_DSSD_Y40_E 0.0 1.0
+MUSETT_T2_DSSD_Y41_E 0.0 1.0
+MUSETT_T2_DSSD_Y42_E 0.0 1.0
+MUSETT_T2_DSSD_Y43_E 0.0 1.0
+MUSETT_T2_DSSD_Y44_E 0.0 1.0
+MUSETT_T2_DSSD_Y45_E 0.0 1.0
+MUSETT_T2_DSSD_Y46_E 0.0 1.0
+MUSETT_T2_DSSD_Y47_E 0.0 1.0
+MUSETT_T2_DSSD_Y48_E 0.0 1.0
+MUSETT_T2_DSSD_Y49_E 0.0 1.0
+MUSETT_T2_DSSD_Y50_E 0.0 1.0
+MUSETT_T2_DSSD_Y51_E 0.0 1.0
+MUSETT_T2_DSSD_Y52_E 0.0 1.0
+MUSETT_T2_DSSD_Y53_E 0.0 1.0
+MUSETT_T2_DSSD_Y54_E 0.0 1.0
+MUSETT_T2_DSSD_Y55_E 0.0 1.0
+MUSETT_T2_DSSD_Y56_E 0.0 1.0
+MUSETT_T2_DSSD_Y57_E 0.0 1.0
+MUSETT_T2_DSSD_Y58_E 0.0 1.0
+MUSETT_T2_DSSD_Y59_E 0.0 1.0
+MUSETT_T2_DSSD_Y60_E 0.0 1.0
+MUSETT_T2_DSSD_Y61_E 0.0 1.0
+MUSETT_T2_DSSD_Y62_E 0.0 1.0
+MUSETT_T2_DSSD_Y63_E 0.0 1.0
+MUSETT_T2_DSSD_Y64_E 0.0 1.0
+MUSETT_T2_DSSD_Y65_E 0.0 1.0
+MUSETT_T2_DSSD_Y66_E 0.0 1.0
+MUSETT_T2_DSSD_Y67_E 0.0 1.0
+MUSETT_T2_DSSD_Y68_E 0.0 1.0
+MUSETT_T2_DSSD_Y69_E 0.0 1.0
+MUSETT_T2_DSSD_Y70_E 0.0 1.0
+MUSETT_T2_DSSD_Y71_E 0.0 1.0
+MUSETT_T2_DSSD_Y72_E 0.0 1.0
+MUSETT_T2_DSSD_Y73_E 0.0 1.0
+MUSETT_T2_DSSD_Y74_E 0.0 1.0
+MUSETT_T2_DSSD_Y75_E 0.0 1.0
+MUSETT_T2_DSSD_Y76_E 0.0 1.0
+MUSETT_T2_DSSD_Y77_E 0.0 1.0
+MUSETT_T2_DSSD_Y78_E 0.0 1.0
+MUSETT_T2_DSSD_Y79_E 0.0 1.0
+MUSETT_T2_DSSD_Y80_E 0.0 1.0
+MUSETT_T2_DSSD_Y81_E 0.0 1.0
+MUSETT_T2_DSSD_Y82_E 0.0 1.0
+MUSETT_T2_DSSD_Y83_E 0.0 1.0
+MUSETT_T2_DSSD_Y84_E 0.0 1.0
+MUSETT_T2_DSSD_Y85_E 0.0 1.0
+MUSETT_T2_DSSD_Y86_E 0.0 1.0
+MUSETT_T2_DSSD_Y87_E 0.0 1.0
+MUSETT_T2_DSSD_Y88_E 0.0 1.0
+MUSETT_T2_DSSD_Y89_E 0.0 1.0
+MUSETT_T2_DSSD_Y90_E 0.0 1.0
+MUSETT_T2_DSSD_Y91_E 0.0 1.0
+MUSETT_T2_DSSD_Y92_E 0.0 1.0
+MUSETT_T2_DSSD_Y93_E 0.0 1.0
+MUSETT_T2_DSSD_Y94_E 0.0 1.0
+MUSETT_T2_DSSD_Y95_E 0.0 1.0
+MUSETT_T2_DSSD_Y96_E 0.0 1.0
+MUSETT_T2_DSSD_Y97_E 0.0 1.0
+MUSETT_T2_DSSD_Y98_E 0.0 1.0
+MUSETT_T2_DSSD_Y99_E 0.0 1.0
+MUSETT_T2_DSSD_Y100_E 0.0 1.0
+MUSETT_T2_DSSD_Y101_E 0.0 1.0
+MUSETT_T2_DSSD_Y102_E 0.0 1.0
+MUSETT_T2_DSSD_Y103_E 0.0 1.0
+MUSETT_T2_DSSD_Y104_E 0.0 1.0
+MUSETT_T2_DSSD_Y105_E 0.0 1.0
+MUSETT_T2_DSSD_Y106_E 0.0 1.0
+MUSETT_T2_DSSD_Y107_E 0.0 1.0
+MUSETT_T2_DSSD_Y108_E 0.0 1.0
+MUSETT_T2_DSSD_Y109_E 0.0 1.0
+MUSETT_T2_DSSD_Y110_E 0.0 1.0
+MUSETT_T2_DSSD_Y111_E 0.0 1.0
+MUSETT_T2_DSSD_Y112_E 0.0 1.0
+MUSETT_T2_DSSD_Y113_E 0.0 1.0
+MUSETT_T2_DSSD_Y114_E 0.0 1.0
+MUSETT_T2_DSSD_Y115_E 0.0 1.0
+MUSETT_T2_DSSD_Y116_E 0.0 1.0
+MUSETT_T2_DSSD_Y117_E 0.0 1.0
+MUSETT_T2_DSSD_Y118_E 0.0 1.0
+MUSETT_T2_DSSD_Y119_E 0.0 1.0
+MUSETT_T2_DSSD_Y120_E 0.0 1.0
+MUSETT_T2_DSSD_Y121_E 0.0 1.0
+MUSETT_T2_DSSD_Y122_E 0.0 1.0
+MUSETT_T2_DSSD_Y123_E 0.0 1.0
+MUSETT_T2_DSSD_Y124_E 0.0 1.0
+MUSETT_T2_DSSD_Y125_E 0.0 1.0
+MUSETT_T2_DSSD_Y126_E 0.0 1.0
+MUSETT_T2_DSSD_Y127_E 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/calib_simu/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..688223a79979ebae01b2f64e63c299e2f8c7efdf
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_T 0.0 1.0
+MUSETT_T2_DSSD_X1_T 0.0 1.0
+MUSETT_T2_DSSD_X2_T 0.0 1.0
+MUSETT_T2_DSSD_X3_T 0.0 1.0
+MUSETT_T2_DSSD_X4_T 0.0 1.0
+MUSETT_T2_DSSD_X5_T 0.0 1.0
+MUSETT_T2_DSSD_X6_T 0.0 1.0
+MUSETT_T2_DSSD_X7_T 0.0 1.0
+MUSETT_T2_DSSD_X8_T 0.0 1.0
+MUSETT_T2_DSSD_X9_T 0.0 1.0
+MUSETT_T2_DSSD_X10_T 0.0 1.0
+MUSETT_T2_DSSD_X11_T 0.0 1.0
+MUSETT_T2_DSSD_X12_T 0.0 1.0
+MUSETT_T2_DSSD_X13_T 0.0 1.0
+MUSETT_T2_DSSD_X14_T 0.0 1.0
+MUSETT_T2_DSSD_X15_T 0.0 1.0
+MUSETT_T2_DSSD_X16_T 0.0 1.0
+MUSETT_T2_DSSD_X17_T 0.0 1.0
+MUSETT_T2_DSSD_X18_T 0.0 1.0
+MUSETT_T2_DSSD_X19_T 0.0 1.0
+MUSETT_T2_DSSD_X20_T 0.0 1.0
+MUSETT_T2_DSSD_X21_T 0.0 1.0
+MUSETT_T2_DSSD_X22_T 0.0 1.0
+MUSETT_T2_DSSD_X23_T 0.0 1.0
+MUSETT_T2_DSSD_X24_T 0.0 1.0
+MUSETT_T2_DSSD_X25_T 0.0 1.0
+MUSETT_T2_DSSD_X26_T 0.0 1.0
+MUSETT_T2_DSSD_X27_T 0.0 1.0
+MUSETT_T2_DSSD_X28_T 0.0 1.0
+MUSETT_T2_DSSD_X29_T 0.0 1.0
+MUSETT_T2_DSSD_X30_T 0.0 1.0
+MUSETT_T2_DSSD_X31_T 0.0 1.0
+MUSETT_T2_DSSD_X32_T 0.0 1.0
+MUSETT_T2_DSSD_X33_T 0.0 1.0
+MUSETT_T2_DSSD_X34_T 0.0 1.0
+MUSETT_T2_DSSD_X35_T 0.0 1.0
+MUSETT_T2_DSSD_X36_T 0.0 1.0
+MUSETT_T2_DSSD_X37_T 0.0 1.0
+MUSETT_T2_DSSD_X38_T 0.0 1.0
+MUSETT_T2_DSSD_X39_T 0.0 1.0
+MUSETT_T2_DSSD_X40_T 0.0 1.0
+MUSETT_T2_DSSD_X41_T 0.0 1.0
+MUSETT_T2_DSSD_X42_T 0.0 1.0
+MUSETT_T2_DSSD_X43_T 0.0 1.0
+MUSETT_T2_DSSD_X44_T 0.0 1.0
+MUSETT_T2_DSSD_X45_T 0.0 1.0
+MUSETT_T2_DSSD_X46_T 0.0 1.0
+MUSETT_T2_DSSD_X47_T 0.0 1.0
+MUSETT_T2_DSSD_X48_T 0.0 1.0
+MUSETT_T2_DSSD_X49_T 0.0 1.0
+MUSETT_T2_DSSD_X50_T 0.0 1.0
+MUSETT_T2_DSSD_X51_T 0.0 1.0
+MUSETT_T2_DSSD_X52_T 0.0 1.0
+MUSETT_T2_DSSD_X53_T 0.0 1.0
+MUSETT_T2_DSSD_X54_T 0.0 1.0
+MUSETT_T2_DSSD_X55_T 0.0 1.0
+MUSETT_T2_DSSD_X56_T 0.0 1.0
+MUSETT_T2_DSSD_X57_T 0.0 1.0
+MUSETT_T2_DSSD_X58_T 0.0 1.0
+MUSETT_T2_DSSD_X59_T 0.0 1.0
+MUSETT_T2_DSSD_X60_T 0.0 1.0
+MUSETT_T2_DSSD_X61_T 0.0 1.0
+MUSETT_T2_DSSD_X62_T 0.0 1.0
+MUSETT_T2_DSSD_X63_T 0.0 1.0
+MUSETT_T2_DSSD_X64_T 0.0 1.0
+MUSETT_T2_DSSD_X65_T 0.0 1.0
+MUSETT_T2_DSSD_X66_T 0.0 1.0
+MUSETT_T2_DSSD_X67_T 0.0 1.0
+MUSETT_T2_DSSD_X68_T 0.0 1.0
+MUSETT_T2_DSSD_X69_T 0.0 1.0
+MUSETT_T2_DSSD_X70_T 0.0 1.0
+MUSETT_T2_DSSD_X71_T 0.0 1.0
+MUSETT_T2_DSSD_X72_T 0.0 1.0
+MUSETT_T2_DSSD_X73_T 0.0 1.0
+MUSETT_T2_DSSD_X74_T 0.0 1.0
+MUSETT_T2_DSSD_X75_T 0.0 1.0
+MUSETT_T2_DSSD_X76_T 0.0 1.0
+MUSETT_T2_DSSD_X77_T 0.0 1.0
+MUSETT_T2_DSSD_X78_T 0.0 1.0
+MUSETT_T2_DSSD_X79_T 0.0 1.0
+MUSETT_T2_DSSD_X80_T 0.0 1.0
+MUSETT_T2_DSSD_X81_T 0.0 1.0
+MUSETT_T2_DSSD_X82_T 0.0 1.0
+MUSETT_T2_DSSD_X83_T 0.0 1.0
+MUSETT_T2_DSSD_X84_T 0.0 1.0
+MUSETT_T2_DSSD_X85_T 0.0 1.0
+MUSETT_T2_DSSD_X86_T 0.0 1.0
+MUSETT_T2_DSSD_X87_T 0.0 1.0
+MUSETT_T2_DSSD_X88_T 0.0 1.0
+MUSETT_T2_DSSD_X89_T 0.0 1.0
+MUSETT_T2_DSSD_X90_T 0.0 1.0
+MUSETT_T2_DSSD_X91_T 0.0 1.0
+MUSETT_T2_DSSD_X92_T 0.0 1.0
+MUSETT_T2_DSSD_X93_T 0.0 1.0
+MUSETT_T2_DSSD_X94_T 0.0 1.0
+MUSETT_T2_DSSD_X95_T 0.0 1.0
+MUSETT_T2_DSSD_X96_T 0.0 1.0
+MUSETT_T2_DSSD_X97_T 0.0 1.0
+MUSETT_T2_DSSD_X98_T 0.0 1.0
+MUSETT_T2_DSSD_X99_T 0.0 1.0
+MUSETT_T2_DSSD_X100_T 0.0 1.0
+MUSETT_T2_DSSD_X101_T 0.0 1.0
+MUSETT_T2_DSSD_X102_T 0.0 1.0
+MUSETT_T2_DSSD_X103_T 0.0 1.0
+MUSETT_T2_DSSD_X104_T 0.0 1.0
+MUSETT_T2_DSSD_X105_T 0.0 1.0
+MUSETT_T2_DSSD_X106_T 0.0 1.0
+MUSETT_T2_DSSD_X107_T 0.0 1.0
+MUSETT_T2_DSSD_X108_T 0.0 1.0
+MUSETT_T2_DSSD_X109_T 0.0 1.0
+MUSETT_T2_DSSD_X110_T 0.0 1.0
+MUSETT_T2_DSSD_X111_T 0.0 1.0
+MUSETT_T2_DSSD_X112_T 0.0 1.0
+MUSETT_T2_DSSD_X113_T 0.0 1.0
+MUSETT_T2_DSSD_X114_T 0.0 1.0
+MUSETT_T2_DSSD_X115_T 0.0 1.0
+MUSETT_T2_DSSD_X116_T 0.0 1.0
+MUSETT_T2_DSSD_X117_T 0.0 1.0
+MUSETT_T2_DSSD_X118_T 0.0 1.0
+MUSETT_T2_DSSD_X119_T 0.0 1.0
+MUSETT_T2_DSSD_X120_T 0.0 1.0
+MUSETT_T2_DSSD_X121_T 0.0 1.0
+MUSETT_T2_DSSD_X122_T 0.0 1.0
+MUSETT_T2_DSSD_X123_T 0.0 1.0
+MUSETT_T2_DSSD_X124_T 0.0 1.0
+MUSETT_T2_DSSD_X125_T 0.0 1.0
+MUSETT_T2_DSSD_X126_T 0.0 1.0
+MUSETT_T2_DSSD_X127_T 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/calib_simu/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..77e9ef8bff18f80fff1e3baf6cf346ca1dcd7c25
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_T 0.0 1.0
+MUSETT_T2_DSSD_Y1_T 0.0 1.0
+MUSETT_T2_DSSD_Y2_T 0.0 1.0
+MUSETT_T2_DSSD_Y3_T 0.0 1.0
+MUSETT_T2_DSSD_Y4_T 0.0 1.0
+MUSETT_T2_DSSD_Y5_T 0.0 1.0
+MUSETT_T2_DSSD_Y6_T 0.0 1.0
+MUSETT_T2_DSSD_Y7_T 0.0 1.0
+MUSETT_T2_DSSD_Y8_T 0.0 1.0
+MUSETT_T2_DSSD_Y9_T 0.0 1.0
+MUSETT_T2_DSSD_Y10_T 0.0 1.0
+MUSETT_T2_DSSD_Y11_T 0.0 1.0
+MUSETT_T2_DSSD_Y12_T 0.0 1.0
+MUSETT_T2_DSSD_Y13_T 0.0 1.0
+MUSETT_T2_DSSD_Y14_T 0.0 1.0
+MUSETT_T2_DSSD_Y15_T 0.0 1.0
+MUSETT_T2_DSSD_Y16_T 0.0 1.0
+MUSETT_T2_DSSD_Y17_T 0.0 1.0
+MUSETT_T2_DSSD_Y18_T 0.0 1.0
+MUSETT_T2_DSSD_Y19_T 0.0 1.0
+MUSETT_T2_DSSD_Y20_T 0.0 1.0
+MUSETT_T2_DSSD_Y21_T 0.0 1.0
+MUSETT_T2_DSSD_Y22_T 0.0 1.0
+MUSETT_T2_DSSD_Y23_T 0.0 1.0
+MUSETT_T2_DSSD_Y24_T 0.0 1.0
+MUSETT_T2_DSSD_Y25_T 0.0 1.0
+MUSETT_T2_DSSD_Y26_T 0.0 1.0
+MUSETT_T2_DSSD_Y27_T 0.0 1.0
+MUSETT_T2_DSSD_Y28_T 0.0 1.0
+MUSETT_T2_DSSD_Y29_T 0.0 1.0
+MUSETT_T2_DSSD_Y30_T 0.0 1.0
+MUSETT_T2_DSSD_Y31_T 0.0 1.0
+MUSETT_T2_DSSD_Y32_T 0.0 1.0
+MUSETT_T2_DSSD_Y33_T 0.0 1.0
+MUSETT_T2_DSSD_Y34_T 0.0 1.0
+MUSETT_T2_DSSD_Y35_T 0.0 1.0
+MUSETT_T2_DSSD_Y36_T 0.0 1.0
+MUSETT_T2_DSSD_Y37_T 0.0 1.0
+MUSETT_T2_DSSD_Y38_T 0.0 1.0
+MUSETT_T2_DSSD_Y39_T 0.0 1.0
+MUSETT_T2_DSSD_Y40_T 0.0 1.0
+MUSETT_T2_DSSD_Y41_T 0.0 1.0
+MUSETT_T2_DSSD_Y42_T 0.0 1.0
+MUSETT_T2_DSSD_Y43_T 0.0 1.0
+MUSETT_T2_DSSD_Y44_T 0.0 1.0
+MUSETT_T2_DSSD_Y45_T 0.0 1.0
+MUSETT_T2_DSSD_Y46_T 0.0 1.0
+MUSETT_T2_DSSD_Y47_T 0.0 1.0
+MUSETT_T2_DSSD_Y48_T 0.0 1.0
+MUSETT_T2_DSSD_Y49_T 0.0 1.0
+MUSETT_T2_DSSD_Y50_T 0.0 1.0
+MUSETT_T2_DSSD_Y51_T 0.0 1.0
+MUSETT_T2_DSSD_Y52_T 0.0 1.0
+MUSETT_T2_DSSD_Y53_T 0.0 1.0
+MUSETT_T2_DSSD_Y54_T 0.0 1.0
+MUSETT_T2_DSSD_Y55_T 0.0 1.0
+MUSETT_T2_DSSD_Y56_T 0.0 1.0
+MUSETT_T2_DSSD_Y57_T 0.0 1.0
+MUSETT_T2_DSSD_Y58_T 0.0 1.0
+MUSETT_T2_DSSD_Y59_T 0.0 1.0
+MUSETT_T2_DSSD_Y60_T 0.0 1.0
+MUSETT_T2_DSSD_Y61_T 0.0 1.0
+MUSETT_T2_DSSD_Y62_T 0.0 1.0
+MUSETT_T2_DSSD_Y63_T 0.0 1.0
+MUSETT_T2_DSSD_Y64_T 0.0 1.0
+MUSETT_T2_DSSD_Y65_T 0.0 1.0
+MUSETT_T2_DSSD_Y66_T 0.0 1.0
+MUSETT_T2_DSSD_Y67_T 0.0 1.0
+MUSETT_T2_DSSD_Y68_T 0.0 1.0
+MUSETT_T2_DSSD_Y69_T 0.0 1.0
+MUSETT_T2_DSSD_Y70_T 0.0 1.0
+MUSETT_T2_DSSD_Y71_T 0.0 1.0
+MUSETT_T2_DSSD_Y72_T 0.0 1.0
+MUSETT_T2_DSSD_Y73_T 0.0 1.0
+MUSETT_T2_DSSD_Y74_T 0.0 1.0
+MUSETT_T2_DSSD_Y75_T 0.0 1.0
+MUSETT_T2_DSSD_Y76_T 0.0 1.0
+MUSETT_T2_DSSD_Y77_T 0.0 1.0
+MUSETT_T2_DSSD_Y78_T 0.0 1.0
+MUSETT_T2_DSSD_Y79_T 0.0 1.0
+MUSETT_T2_DSSD_Y80_T 0.0 1.0
+MUSETT_T2_DSSD_Y81_T 0.0 1.0
+MUSETT_T2_DSSD_Y82_T 0.0 1.0
+MUSETT_T2_DSSD_Y83_T 0.0 1.0
+MUSETT_T2_DSSD_Y84_T 0.0 1.0
+MUSETT_T2_DSSD_Y85_T 0.0 1.0
+MUSETT_T2_DSSD_Y86_T 0.0 1.0
+MUSETT_T2_DSSD_Y87_T 0.0 1.0
+MUSETT_T2_DSSD_Y88_T 0.0 1.0
+MUSETT_T2_DSSD_Y89_T 0.0 1.0
+MUSETT_T2_DSSD_Y90_T 0.0 1.0
+MUSETT_T2_DSSD_Y91_T 0.0 1.0
+MUSETT_T2_DSSD_Y92_T 0.0 1.0
+MUSETT_T2_DSSD_Y93_T 0.0 1.0
+MUSETT_T2_DSSD_Y94_T 0.0 1.0
+MUSETT_T2_DSSD_Y95_T 0.0 1.0
+MUSETT_T2_DSSD_Y96_T 0.0 1.0
+MUSETT_T2_DSSD_Y97_T 0.0 1.0
+MUSETT_T2_DSSD_Y98_T 0.0 1.0
+MUSETT_T2_DSSD_Y99_T 0.0 1.0
+MUSETT_T2_DSSD_Y100_T 0.0 1.0
+MUSETT_T2_DSSD_Y101_T 0.0 1.0
+MUSETT_T2_DSSD_Y102_T 0.0 1.0
+MUSETT_T2_DSSD_Y103_T 0.0 1.0
+MUSETT_T2_DSSD_Y104_T 0.0 1.0
+MUSETT_T2_DSSD_Y105_T 0.0 1.0
+MUSETT_T2_DSSD_Y106_T 0.0 1.0
+MUSETT_T2_DSSD_Y107_T 0.0 1.0
+MUSETT_T2_DSSD_Y108_T 0.0 1.0
+MUSETT_T2_DSSD_Y109_T 0.0 1.0
+MUSETT_T2_DSSD_Y110_T 0.0 1.0
+MUSETT_T2_DSSD_Y111_T 0.0 1.0
+MUSETT_T2_DSSD_Y112_T 0.0 1.0
+MUSETT_T2_DSSD_Y113_T 0.0 1.0
+MUSETT_T2_DSSD_Y114_T 0.0 1.0
+MUSETT_T2_DSSD_Y115_T 0.0 1.0
+MUSETT_T2_DSSD_Y116_T 0.0 1.0
+MUSETT_T2_DSSD_Y117_T 0.0 1.0
+MUSETT_T2_DSSD_Y118_T 0.0 1.0
+MUSETT_T2_DSSD_Y119_T 0.0 1.0
+MUSETT_T2_DSSD_Y120_T 0.0 1.0
+MUSETT_T2_DSSD_Y121_T 0.0 1.0
+MUSETT_T2_DSSD_Y122_T 0.0 1.0
+MUSETT_T2_DSSD_Y123_T 0.0 1.0
+MUSETT_T2_DSSD_Y124_T 0.0 1.0
+MUSETT_T2_DSSD_Y125_T 0.0 1.0
+MUSETT_T2_DSSD_Y126_T 0.0 1.0
+MUSETT_T2_DSSD_Y127_T 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/M3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/calib_simu/M3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..9ba217cde3e34d3e644e4cda4793a984e36e3427
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E 0.0 1.0
+MUSETT_T3_DSSD_X1_E 0.0 1.0
+MUSETT_T3_DSSD_X2_E 0.0 1.0
+MUSETT_T3_DSSD_X3_E 0.0 1.0
+MUSETT_T3_DSSD_X4_E 0.0 1.0
+MUSETT_T3_DSSD_X5_E 0.0 1.0
+MUSETT_T3_DSSD_X6_E 0.0 1.0
+MUSETT_T3_DSSD_X7_E 0.0 1.0
+MUSETT_T3_DSSD_X8_E 0.0 1.0
+MUSETT_T3_DSSD_X9_E 0.0 1.0
+MUSETT_T3_DSSD_X10_E 0.0 1.0
+MUSETT_T3_DSSD_X11_E 0.0 1.0
+MUSETT_T3_DSSD_X12_E 0.0 1.0
+MUSETT_T3_DSSD_X13_E 0.0 1.0
+MUSETT_T3_DSSD_X14_E 0.0 1.0
+MUSETT_T3_DSSD_X15_E 0.0 1.0
+MUSETT_T3_DSSD_X16_E 0.0 1.0
+MUSETT_T3_DSSD_X17_E 0.0 1.0
+MUSETT_T3_DSSD_X18_E 0.0 1.0
+MUSETT_T3_DSSD_X19_E 0.0 1.0
+MUSETT_T3_DSSD_X20_E 0.0 1.0
+MUSETT_T3_DSSD_X21_E 0.0 1.0
+MUSETT_T3_DSSD_X22_E 0.0 1.0
+MUSETT_T3_DSSD_X23_E 0.0 1.0
+MUSETT_T3_DSSD_X24_E 0.0 1.0
+MUSETT_T3_DSSD_X25_E 0.0 1.0
+MUSETT_T3_DSSD_X26_E 0.0 1.0
+MUSETT_T3_DSSD_X27_E 0.0 1.0
+MUSETT_T3_DSSD_X28_E 0.0 1.0
+MUSETT_T3_DSSD_X29_E 0.0 1.0
+MUSETT_T3_DSSD_X30_E 0.0 1.0
+MUSETT_T3_DSSD_X31_E 0.0 1.0
+MUSETT_T3_DSSD_X32_E 0.0 1.0
+MUSETT_T3_DSSD_X33_E 0.0 1.0
+MUSETT_T3_DSSD_X34_E 0.0 1.0
+MUSETT_T3_DSSD_X35_E 0.0 1.0
+MUSETT_T3_DSSD_X36_E 0.0 1.0
+MUSETT_T3_DSSD_X37_E 0.0 1.0
+MUSETT_T3_DSSD_X38_E 0.0 1.0
+MUSETT_T3_DSSD_X39_E 0.0 1.0
+MUSETT_T3_DSSD_X40_E 0.0 1.0
+MUSETT_T3_DSSD_X41_E 0.0 1.0
+MUSETT_T3_DSSD_X42_E 0.0 1.0
+MUSETT_T3_DSSD_X43_E 0.0 1.0
+MUSETT_T3_DSSD_X44_E 0.0 1.0
+MUSETT_T3_DSSD_X45_E 0.0 1.0
+MUSETT_T3_DSSD_X46_E 0.0 1.0
+MUSETT_T3_DSSD_X47_E 0.0 1.0
+MUSETT_T3_DSSD_X48_E 0.0 1.0
+MUSETT_T3_DSSD_X49_E 0.0 1.0
+MUSETT_T3_DSSD_X50_E 0.0 1.0
+MUSETT_T3_DSSD_X51_E 0.0 1.0
+MUSETT_T3_DSSD_X52_E 0.0 1.0
+MUSETT_T3_DSSD_X53_E 0.0 1.0
+MUSETT_T3_DSSD_X54_E 0.0 1.0
+MUSETT_T3_DSSD_X55_E 0.0 1.0
+MUSETT_T3_DSSD_X56_E 0.0 1.0
+MUSETT_T3_DSSD_X57_E 0.0 1.0
+MUSETT_T3_DSSD_X58_E 0.0 1.0
+MUSETT_T3_DSSD_X59_E 0.0 1.0
+MUSETT_T3_DSSD_X60_E 0.0 1.0
+MUSETT_T3_DSSD_X61_E 0.0 1.0
+MUSETT_T3_DSSD_X62_E 0.0 1.0
+MUSETT_T3_DSSD_X63_E 0.0 1.0
+MUSETT_T3_DSSD_X64_E 0.0 1.0
+MUSETT_T3_DSSD_X65_E 0.0 1.0
+MUSETT_T3_DSSD_X66_E 0.0 1.0
+MUSETT_T3_DSSD_X67_E 0.0 1.0
+MUSETT_T3_DSSD_X68_E 0.0 1.0
+MUSETT_T3_DSSD_X69_E 0.0 1.0
+MUSETT_T3_DSSD_X70_E 0.0 1.0
+MUSETT_T3_DSSD_X71_E 0.0 1.0
+MUSETT_T3_DSSD_X72_E 0.0 1.0
+MUSETT_T3_DSSD_X73_E 0.0 1.0
+MUSETT_T3_DSSD_X74_E 0.0 1.0
+MUSETT_T3_DSSD_X75_E 0.0 1.0
+MUSETT_T3_DSSD_X76_E 0.0 1.0
+MUSETT_T3_DSSD_X77_E 0.0 1.0
+MUSETT_T3_DSSD_X78_E 0.0 1.0
+MUSETT_T3_DSSD_X79_E 0.0 1.0
+MUSETT_T3_DSSD_X80_E 0.0 1.0
+MUSETT_T3_DSSD_X81_E 0.0 1.0
+MUSETT_T3_DSSD_X82_E 0.0 1.0
+MUSETT_T3_DSSD_X83_E 0.0 1.0
+MUSETT_T3_DSSD_X84_E 0.0 1.0
+MUSETT_T3_DSSD_X85_E 0.0 1.0
+MUSETT_T3_DSSD_X86_E 0.0 1.0
+MUSETT_T3_DSSD_X87_E 0.0 1.0
+MUSETT_T3_DSSD_X88_E 0.0 1.0
+MUSETT_T3_DSSD_X89_E 0.0 1.0
+MUSETT_T3_DSSD_X90_E 0.0 1.0
+MUSETT_T3_DSSD_X91_E 0.0 1.0
+MUSETT_T3_DSSD_X92_E 0.0 1.0
+MUSETT_T3_DSSD_X93_E 0.0 1.0
+MUSETT_T3_DSSD_X94_E 0.0 1.0
+MUSETT_T3_DSSD_X95_E 0.0 1.0
+MUSETT_T3_DSSD_X96_E 0.0 1.0
+MUSETT_T3_DSSD_X97_E 0.0 1.0
+MUSETT_T3_DSSD_X98_E 0.0 1.0
+MUSETT_T3_DSSD_X99_E 0.0 1.0
+MUSETT_T3_DSSD_X100_E 0.0 1.0
+MUSETT_T3_DSSD_X101_E 0.0 1.0
+MUSETT_T3_DSSD_X102_E 0.0 1.0
+MUSETT_T3_DSSD_X103_E 0.0 1.0
+MUSETT_T3_DSSD_X104_E 0.0 1.0
+MUSETT_T3_DSSD_X105_E 0.0 1.0
+MUSETT_T3_DSSD_X106_E 0.0 1.0
+MUSETT_T3_DSSD_X107_E 0.0 1.0
+MUSETT_T3_DSSD_X108_E 0.0 1.0
+MUSETT_T3_DSSD_X109_E 0.0 1.0
+MUSETT_T3_DSSD_X110_E 0.0 1.0
+MUSETT_T3_DSSD_X111_E 0.0 1.0
+MUSETT_T3_DSSD_X112_E 0.0 1.0
+MUSETT_T3_DSSD_X113_E 0.0 1.0
+MUSETT_T3_DSSD_X114_E 0.0 1.0
+MUSETT_T3_DSSD_X115_E 0.0 1.0
+MUSETT_T3_DSSD_X116_E 0.0 1.0
+MUSETT_T3_DSSD_X117_E 0.0 1.0
+MUSETT_T3_DSSD_X118_E 0.0 1.0
+MUSETT_T3_DSSD_X119_E 0.0 1.0
+MUSETT_T3_DSSD_X120_E 0.0 1.0
+MUSETT_T3_DSSD_X121_E 0.0 1.0
+MUSETT_T3_DSSD_X122_E 0.0 1.0
+MUSETT_T3_DSSD_X123_E 0.0 1.0
+MUSETT_T3_DSSD_X124_E 0.0 1.0
+MUSETT_T3_DSSD_X125_E 0.0 1.0
+MUSETT_T3_DSSD_X126_E 0.0 1.0
+MUSETT_T3_DSSD_X127_E 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/M3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/calib_simu/M3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d64b25f2d9f60625fece427998c9575c4e48dd03
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_E 0.0 1.0
+MUSETT_T3_DSSD_Y1_E 0.0 1.0
+MUSETT_T3_DSSD_Y2_E 0.0 1.0
+MUSETT_T3_DSSD_Y3_E 0.0 1.0
+MUSETT_T3_DSSD_Y4_E 0.0 1.0
+MUSETT_T3_DSSD_Y5_E 0.0 1.0
+MUSETT_T3_DSSD_Y6_E 0.0 1.0
+MUSETT_T3_DSSD_Y7_E 0.0 1.0
+MUSETT_T3_DSSD_Y8_E 0.0 1.0
+MUSETT_T3_DSSD_Y9_E 0.0 1.0
+MUSETT_T3_DSSD_Y10_E 0.0 1.0
+MUSETT_T3_DSSD_Y11_E 0.0 1.0
+MUSETT_T3_DSSD_Y12_E 0.0 1.0
+MUSETT_T3_DSSD_Y13_E 0.0 1.0
+MUSETT_T3_DSSD_Y14_E 0.0 1.0
+MUSETT_T3_DSSD_Y15_E 0.0 1.0
+MUSETT_T3_DSSD_Y16_E 0.0 1.0
+MUSETT_T3_DSSD_Y17_E 0.0 1.0
+MUSETT_T3_DSSD_Y18_E 0.0 1.0
+MUSETT_T3_DSSD_Y19_E 0.0 1.0
+MUSETT_T3_DSSD_Y20_E 0.0 1.0
+MUSETT_T3_DSSD_Y21_E 0.0 1.0
+MUSETT_T3_DSSD_Y22_E 0.0 1.0
+MUSETT_T3_DSSD_Y23_E 0.0 1.0
+MUSETT_T3_DSSD_Y24_E 0.0 1.0
+MUSETT_T3_DSSD_Y25_E 0.0 1.0
+MUSETT_T3_DSSD_Y26_E 0.0 1.0
+MUSETT_T3_DSSD_Y27_E 0.0 1.0
+MUSETT_T3_DSSD_Y28_E 0.0 1.0
+MUSETT_T3_DSSD_Y29_E 0.0 1.0
+MUSETT_T3_DSSD_Y30_E 0.0 1.0
+MUSETT_T3_DSSD_Y31_E 0.0 1.0
+MUSETT_T3_DSSD_Y32_E 0.0 1.0
+MUSETT_T3_DSSD_Y33_E 0.0 1.0
+MUSETT_T3_DSSD_Y34_E 0.0 1.0
+MUSETT_T3_DSSD_Y35_E 0.0 1.0
+MUSETT_T3_DSSD_Y36_E 0.0 1.0
+MUSETT_T3_DSSD_Y37_E 0.0 1.0
+MUSETT_T3_DSSD_Y38_E 0.0 1.0
+MUSETT_T3_DSSD_Y39_E 0.0 1.0
+MUSETT_T3_DSSD_Y40_E 0.0 1.0
+MUSETT_T3_DSSD_Y41_E 0.0 1.0
+MUSETT_T3_DSSD_Y42_E 0.0 1.0
+MUSETT_T3_DSSD_Y43_E 0.0 1.0
+MUSETT_T3_DSSD_Y44_E 0.0 1.0
+MUSETT_T3_DSSD_Y45_E 0.0 1.0
+MUSETT_T3_DSSD_Y46_E 0.0 1.0
+MUSETT_T3_DSSD_Y47_E 0.0 1.0
+MUSETT_T3_DSSD_Y48_E 0.0 1.0
+MUSETT_T3_DSSD_Y49_E 0.0 1.0
+MUSETT_T3_DSSD_Y50_E 0.0 1.0
+MUSETT_T3_DSSD_Y51_E 0.0 1.0
+MUSETT_T3_DSSD_Y52_E 0.0 1.0
+MUSETT_T3_DSSD_Y53_E 0.0 1.0
+MUSETT_T3_DSSD_Y54_E 0.0 1.0
+MUSETT_T3_DSSD_Y55_E 0.0 1.0
+MUSETT_T3_DSSD_Y56_E 0.0 1.0
+MUSETT_T3_DSSD_Y57_E 0.0 1.0
+MUSETT_T3_DSSD_Y58_E 0.0 1.0
+MUSETT_T3_DSSD_Y59_E 0.0 1.0
+MUSETT_T3_DSSD_Y60_E 0.0 1.0
+MUSETT_T3_DSSD_Y61_E 0.0 1.0
+MUSETT_T3_DSSD_Y62_E 0.0 1.0
+MUSETT_T3_DSSD_Y63_E 0.0 1.0
+MUSETT_T3_DSSD_Y64_E 0.0 1.0
+MUSETT_T3_DSSD_Y65_E 0.0 1.0
+MUSETT_T3_DSSD_Y66_E 0.0 1.0
+MUSETT_T3_DSSD_Y67_E 0.0 1.0
+MUSETT_T3_DSSD_Y68_E 0.0 1.0
+MUSETT_T3_DSSD_Y69_E 0.0 1.0
+MUSETT_T3_DSSD_Y70_E 0.0 1.0
+MUSETT_T3_DSSD_Y71_E 0.0 1.0
+MUSETT_T3_DSSD_Y72_E 0.0 1.0
+MUSETT_T3_DSSD_Y73_E 0.0 1.0
+MUSETT_T3_DSSD_Y74_E 0.0 1.0
+MUSETT_T3_DSSD_Y75_E 0.0 1.0
+MUSETT_T3_DSSD_Y76_E 0.0 1.0
+MUSETT_T3_DSSD_Y77_E 0.0 1.0
+MUSETT_T3_DSSD_Y78_E 0.0 1.0
+MUSETT_T3_DSSD_Y79_E 0.0 1.0
+MUSETT_T3_DSSD_Y80_E 0.0 1.0
+MUSETT_T3_DSSD_Y81_E 0.0 1.0
+MUSETT_T3_DSSD_Y82_E 0.0 1.0
+MUSETT_T3_DSSD_Y83_E 0.0 1.0
+MUSETT_T3_DSSD_Y84_E 0.0 1.0
+MUSETT_T3_DSSD_Y85_E 0.0 1.0
+MUSETT_T3_DSSD_Y86_E 0.0 1.0
+MUSETT_T3_DSSD_Y87_E 0.0 1.0
+MUSETT_T3_DSSD_Y88_E 0.0 1.0
+MUSETT_T3_DSSD_Y89_E 0.0 1.0
+MUSETT_T3_DSSD_Y90_E 0.0 1.0
+MUSETT_T3_DSSD_Y91_E 0.0 1.0
+MUSETT_T3_DSSD_Y92_E 0.0 1.0
+MUSETT_T3_DSSD_Y93_E 0.0 1.0
+MUSETT_T3_DSSD_Y94_E 0.0 1.0
+MUSETT_T3_DSSD_Y95_E 0.0 1.0
+MUSETT_T3_DSSD_Y96_E 0.0 1.0
+MUSETT_T3_DSSD_Y97_E 0.0 1.0
+MUSETT_T3_DSSD_Y98_E 0.0 1.0
+MUSETT_T3_DSSD_Y99_E 0.0 1.0
+MUSETT_T3_DSSD_Y100_E 0.0 1.0
+MUSETT_T3_DSSD_Y101_E 0.0 1.0
+MUSETT_T3_DSSD_Y102_E 0.0 1.0
+MUSETT_T3_DSSD_Y103_E 0.0 1.0
+MUSETT_T3_DSSD_Y104_E 0.0 1.0
+MUSETT_T3_DSSD_Y105_E 0.0 1.0
+MUSETT_T3_DSSD_Y106_E 0.0 1.0
+MUSETT_T3_DSSD_Y107_E 0.0 1.0
+MUSETT_T3_DSSD_Y108_E 0.0 1.0
+MUSETT_T3_DSSD_Y109_E 0.0 1.0
+MUSETT_T3_DSSD_Y110_E 0.0 1.0
+MUSETT_T3_DSSD_Y111_E 0.0 1.0
+MUSETT_T3_DSSD_Y112_E 0.0 1.0
+MUSETT_T3_DSSD_Y113_E 0.0 1.0
+MUSETT_T3_DSSD_Y114_E 0.0 1.0
+MUSETT_T3_DSSD_Y115_E 0.0 1.0
+MUSETT_T3_DSSD_Y116_E 0.0 1.0
+MUSETT_T3_DSSD_Y117_E 0.0 1.0
+MUSETT_T3_DSSD_Y118_E 0.0 1.0
+MUSETT_T3_DSSD_Y119_E 0.0 1.0
+MUSETT_T3_DSSD_Y120_E 0.0 1.0
+MUSETT_T3_DSSD_Y121_E 0.0 1.0
+MUSETT_T3_DSSD_Y122_E 0.0 1.0
+MUSETT_T3_DSSD_Y123_E 0.0 1.0
+MUSETT_T3_DSSD_Y124_E 0.0 1.0
+MUSETT_T3_DSSD_Y125_E 0.0 1.0
+MUSETT_T3_DSSD_Y126_E 0.0 1.0
+MUSETT_T3_DSSD_Y127_E 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/calib_simu/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..99b8bd38f63f0b5725ddd8bc867f90c13284879d
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_T 0.0 1.0
+MUSETT_T3_DSSD_X1_T 0.0 1.0
+MUSETT_T3_DSSD_X2_T 0.0 1.0
+MUSETT_T3_DSSD_X3_T 0.0 1.0
+MUSETT_T3_DSSD_X4_T 0.0 1.0
+MUSETT_T3_DSSD_X5_T 0.0 1.0
+MUSETT_T3_DSSD_X6_T 0.0 1.0
+MUSETT_T3_DSSD_X7_T 0.0 1.0
+MUSETT_T3_DSSD_X8_T 0.0 1.0
+MUSETT_T3_DSSD_X9_T 0.0 1.0
+MUSETT_T3_DSSD_X10_T 0.0 1.0
+MUSETT_T3_DSSD_X11_T 0.0 1.0
+MUSETT_T3_DSSD_X12_T 0.0 1.0
+MUSETT_T3_DSSD_X13_T 0.0 1.0
+MUSETT_T3_DSSD_X14_T 0.0 1.0
+MUSETT_T3_DSSD_X15_T 0.0 1.0
+MUSETT_T3_DSSD_X16_T 0.0 1.0
+MUSETT_T3_DSSD_X17_T 0.0 1.0
+MUSETT_T3_DSSD_X18_T 0.0 1.0
+MUSETT_T3_DSSD_X19_T 0.0 1.0
+MUSETT_T3_DSSD_X20_T 0.0 1.0
+MUSETT_T3_DSSD_X21_T 0.0 1.0
+MUSETT_T3_DSSD_X22_T 0.0 1.0
+MUSETT_T3_DSSD_X23_T 0.0 1.0
+MUSETT_T3_DSSD_X24_T 0.0 1.0
+MUSETT_T3_DSSD_X25_T 0.0 1.0
+MUSETT_T3_DSSD_X26_T 0.0 1.0
+MUSETT_T3_DSSD_X27_T 0.0 1.0
+MUSETT_T3_DSSD_X28_T 0.0 1.0
+MUSETT_T3_DSSD_X29_T 0.0 1.0
+MUSETT_T3_DSSD_X30_T 0.0 1.0
+MUSETT_T3_DSSD_X31_T 0.0 1.0
+MUSETT_T3_DSSD_X32_T 0.0 1.0
+MUSETT_T3_DSSD_X33_T 0.0 1.0
+MUSETT_T3_DSSD_X34_T 0.0 1.0
+MUSETT_T3_DSSD_X35_T 0.0 1.0
+MUSETT_T3_DSSD_X36_T 0.0 1.0
+MUSETT_T3_DSSD_X37_T 0.0 1.0
+MUSETT_T3_DSSD_X38_T 0.0 1.0
+MUSETT_T3_DSSD_X39_T 0.0 1.0
+MUSETT_T3_DSSD_X40_T 0.0 1.0
+MUSETT_T3_DSSD_X41_T 0.0 1.0
+MUSETT_T3_DSSD_X42_T 0.0 1.0
+MUSETT_T3_DSSD_X43_T 0.0 1.0
+MUSETT_T3_DSSD_X44_T 0.0 1.0
+MUSETT_T3_DSSD_X45_T 0.0 1.0
+MUSETT_T3_DSSD_X46_T 0.0 1.0
+MUSETT_T3_DSSD_X47_T 0.0 1.0
+MUSETT_T3_DSSD_X48_T 0.0 1.0
+MUSETT_T3_DSSD_X49_T 0.0 1.0
+MUSETT_T3_DSSD_X50_T 0.0 1.0
+MUSETT_T3_DSSD_X51_T 0.0 1.0
+MUSETT_T3_DSSD_X52_T 0.0 1.0
+MUSETT_T3_DSSD_X53_T 0.0 1.0
+MUSETT_T3_DSSD_X54_T 0.0 1.0
+MUSETT_T3_DSSD_X55_T 0.0 1.0
+MUSETT_T3_DSSD_X56_T 0.0 1.0
+MUSETT_T3_DSSD_X57_T 0.0 1.0
+MUSETT_T3_DSSD_X58_T 0.0 1.0
+MUSETT_T3_DSSD_X59_T 0.0 1.0
+MUSETT_T3_DSSD_X60_T 0.0 1.0
+MUSETT_T3_DSSD_X61_T 0.0 1.0
+MUSETT_T3_DSSD_X62_T 0.0 1.0
+MUSETT_T3_DSSD_X63_T 0.0 1.0
+MUSETT_T3_DSSD_X64_T 0.0 1.0
+MUSETT_T3_DSSD_X65_T 0.0 1.0
+MUSETT_T3_DSSD_X66_T 0.0 1.0
+MUSETT_T3_DSSD_X67_T 0.0 1.0
+MUSETT_T3_DSSD_X68_T 0.0 1.0
+MUSETT_T3_DSSD_X69_T 0.0 1.0
+MUSETT_T3_DSSD_X70_T 0.0 1.0
+MUSETT_T3_DSSD_X71_T 0.0 1.0
+MUSETT_T3_DSSD_X72_T 0.0 1.0
+MUSETT_T3_DSSD_X73_T 0.0 1.0
+MUSETT_T3_DSSD_X74_T 0.0 1.0
+MUSETT_T3_DSSD_X75_T 0.0 1.0
+MUSETT_T3_DSSD_X76_T 0.0 1.0
+MUSETT_T3_DSSD_X77_T 0.0 1.0
+MUSETT_T3_DSSD_X78_T 0.0 1.0
+MUSETT_T3_DSSD_X79_T 0.0 1.0
+MUSETT_T3_DSSD_X80_T 0.0 1.0
+MUSETT_T3_DSSD_X81_T 0.0 1.0
+MUSETT_T3_DSSD_X82_T 0.0 1.0
+MUSETT_T3_DSSD_X83_T 0.0 1.0
+MUSETT_T3_DSSD_X84_T 0.0 1.0
+MUSETT_T3_DSSD_X85_T 0.0 1.0
+MUSETT_T3_DSSD_X86_T 0.0 1.0
+MUSETT_T3_DSSD_X87_T 0.0 1.0
+MUSETT_T3_DSSD_X88_T 0.0 1.0
+MUSETT_T3_DSSD_X89_T 0.0 1.0
+MUSETT_T3_DSSD_X90_T 0.0 1.0
+MUSETT_T3_DSSD_X91_T 0.0 1.0
+MUSETT_T3_DSSD_X92_T 0.0 1.0
+MUSETT_T3_DSSD_X93_T 0.0 1.0
+MUSETT_T3_DSSD_X94_T 0.0 1.0
+MUSETT_T3_DSSD_X95_T 0.0 1.0
+MUSETT_T3_DSSD_X96_T 0.0 1.0
+MUSETT_T3_DSSD_X97_T 0.0 1.0
+MUSETT_T3_DSSD_X98_T 0.0 1.0
+MUSETT_T3_DSSD_X99_T 0.0 1.0
+MUSETT_T3_DSSD_X100_T 0.0 1.0
+MUSETT_T3_DSSD_X101_T 0.0 1.0
+MUSETT_T3_DSSD_X102_T 0.0 1.0
+MUSETT_T3_DSSD_X103_T 0.0 1.0
+MUSETT_T3_DSSD_X104_T 0.0 1.0
+MUSETT_T3_DSSD_X105_T 0.0 1.0
+MUSETT_T3_DSSD_X106_T 0.0 1.0
+MUSETT_T3_DSSD_X107_T 0.0 1.0
+MUSETT_T3_DSSD_X108_T 0.0 1.0
+MUSETT_T3_DSSD_X109_T 0.0 1.0
+MUSETT_T3_DSSD_X110_T 0.0 1.0
+MUSETT_T3_DSSD_X111_T 0.0 1.0
+MUSETT_T3_DSSD_X112_T 0.0 1.0
+MUSETT_T3_DSSD_X113_T 0.0 1.0
+MUSETT_T3_DSSD_X114_T 0.0 1.0
+MUSETT_T3_DSSD_X115_T 0.0 1.0
+MUSETT_T3_DSSD_X116_T 0.0 1.0
+MUSETT_T3_DSSD_X117_T 0.0 1.0
+MUSETT_T3_DSSD_X118_T 0.0 1.0
+MUSETT_T3_DSSD_X119_T 0.0 1.0
+MUSETT_T3_DSSD_X120_T 0.0 1.0
+MUSETT_T3_DSSD_X121_T 0.0 1.0
+MUSETT_T3_DSSD_X122_T 0.0 1.0
+MUSETT_T3_DSSD_X123_T 0.0 1.0
+MUSETT_T3_DSSD_X124_T 0.0 1.0
+MUSETT_T3_DSSD_X125_T 0.0 1.0
+MUSETT_T3_DSSD_X126_T 0.0 1.0
+MUSETT_T3_DSSD_X127_T 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/calib_simu/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e8569c932333428ee474732bdfcab02b673fc969
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_T 0.0 1.0
+MUSETT_T3_DSSD_Y1_T 0.0 1.0
+MUSETT_T3_DSSD_Y2_T 0.0 1.0
+MUSETT_T3_DSSD_Y3_T 0.0 1.0
+MUSETT_T3_DSSD_Y4_T 0.0 1.0
+MUSETT_T3_DSSD_Y5_T 0.0 1.0
+MUSETT_T3_DSSD_Y6_T 0.0 1.0
+MUSETT_T3_DSSD_Y7_T 0.0 1.0
+MUSETT_T3_DSSD_Y8_T 0.0 1.0
+MUSETT_T3_DSSD_Y9_T 0.0 1.0
+MUSETT_T3_DSSD_Y10_T 0.0 1.0
+MUSETT_T3_DSSD_Y11_T 0.0 1.0
+MUSETT_T3_DSSD_Y12_T 0.0 1.0
+MUSETT_T3_DSSD_Y13_T 0.0 1.0
+MUSETT_T3_DSSD_Y14_T 0.0 1.0
+MUSETT_T3_DSSD_Y15_T 0.0 1.0
+MUSETT_T3_DSSD_Y16_T 0.0 1.0
+MUSETT_T3_DSSD_Y17_T 0.0 1.0
+MUSETT_T3_DSSD_Y18_T 0.0 1.0
+MUSETT_T3_DSSD_Y19_T 0.0 1.0
+MUSETT_T3_DSSD_Y20_T 0.0 1.0
+MUSETT_T3_DSSD_Y21_T 0.0 1.0
+MUSETT_T3_DSSD_Y22_T 0.0 1.0
+MUSETT_T3_DSSD_Y23_T 0.0 1.0
+MUSETT_T3_DSSD_Y24_T 0.0 1.0
+MUSETT_T3_DSSD_Y25_T 0.0 1.0
+MUSETT_T3_DSSD_Y26_T 0.0 1.0
+MUSETT_T3_DSSD_Y27_T 0.0 1.0
+MUSETT_T3_DSSD_Y28_T 0.0 1.0
+MUSETT_T3_DSSD_Y29_T 0.0 1.0
+MUSETT_T3_DSSD_Y30_T 0.0 1.0
+MUSETT_T3_DSSD_Y31_T 0.0 1.0
+MUSETT_T3_DSSD_Y32_T 0.0 1.0
+MUSETT_T3_DSSD_Y33_T 0.0 1.0
+MUSETT_T3_DSSD_Y34_T 0.0 1.0
+MUSETT_T3_DSSD_Y35_T 0.0 1.0
+MUSETT_T3_DSSD_Y36_T 0.0 1.0
+MUSETT_T3_DSSD_Y37_T 0.0 1.0
+MUSETT_T3_DSSD_Y38_T 0.0 1.0
+MUSETT_T3_DSSD_Y39_T 0.0 1.0
+MUSETT_T3_DSSD_Y40_T 0.0 1.0
+MUSETT_T3_DSSD_Y41_T 0.0 1.0
+MUSETT_T3_DSSD_Y42_T 0.0 1.0
+MUSETT_T3_DSSD_Y43_T 0.0 1.0
+MUSETT_T3_DSSD_Y44_T 0.0 1.0
+MUSETT_T3_DSSD_Y45_T 0.0 1.0
+MUSETT_T3_DSSD_Y46_T 0.0 1.0
+MUSETT_T3_DSSD_Y47_T 0.0 1.0
+MUSETT_T3_DSSD_Y48_T 0.0 1.0
+MUSETT_T3_DSSD_Y49_T 0.0 1.0
+MUSETT_T3_DSSD_Y50_T 0.0 1.0
+MUSETT_T3_DSSD_Y51_T 0.0 1.0
+MUSETT_T3_DSSD_Y52_T 0.0 1.0
+MUSETT_T3_DSSD_Y53_T 0.0 1.0
+MUSETT_T3_DSSD_Y54_T 0.0 1.0
+MUSETT_T3_DSSD_Y55_T 0.0 1.0
+MUSETT_T3_DSSD_Y56_T 0.0 1.0
+MUSETT_T3_DSSD_Y57_T 0.0 1.0
+MUSETT_T3_DSSD_Y58_T 0.0 1.0
+MUSETT_T3_DSSD_Y59_T 0.0 1.0
+MUSETT_T3_DSSD_Y60_T 0.0 1.0
+MUSETT_T3_DSSD_Y61_T 0.0 1.0
+MUSETT_T3_DSSD_Y62_T 0.0 1.0
+MUSETT_T3_DSSD_Y63_T 0.0 1.0
+MUSETT_T3_DSSD_Y64_T 0.0 1.0
+MUSETT_T3_DSSD_Y65_T 0.0 1.0
+MUSETT_T3_DSSD_Y66_T 0.0 1.0
+MUSETT_T3_DSSD_Y67_T 0.0 1.0
+MUSETT_T3_DSSD_Y68_T 0.0 1.0
+MUSETT_T3_DSSD_Y69_T 0.0 1.0
+MUSETT_T3_DSSD_Y70_T 0.0 1.0
+MUSETT_T3_DSSD_Y71_T 0.0 1.0
+MUSETT_T3_DSSD_Y72_T 0.0 1.0
+MUSETT_T3_DSSD_Y73_T 0.0 1.0
+MUSETT_T3_DSSD_Y74_T 0.0 1.0
+MUSETT_T3_DSSD_Y75_T 0.0 1.0
+MUSETT_T3_DSSD_Y76_T 0.0 1.0
+MUSETT_T3_DSSD_Y77_T 0.0 1.0
+MUSETT_T3_DSSD_Y78_T 0.0 1.0
+MUSETT_T3_DSSD_Y79_T 0.0 1.0
+MUSETT_T3_DSSD_Y80_T 0.0 1.0
+MUSETT_T3_DSSD_Y81_T 0.0 1.0
+MUSETT_T3_DSSD_Y82_T 0.0 1.0
+MUSETT_T3_DSSD_Y83_T 0.0 1.0
+MUSETT_T3_DSSD_Y84_T 0.0 1.0
+MUSETT_T3_DSSD_Y85_T 0.0 1.0
+MUSETT_T3_DSSD_Y86_T 0.0 1.0
+MUSETT_T3_DSSD_Y87_T 0.0 1.0
+MUSETT_T3_DSSD_Y88_T 0.0 1.0
+MUSETT_T3_DSSD_Y89_T 0.0 1.0
+MUSETT_T3_DSSD_Y90_T 0.0 1.0
+MUSETT_T3_DSSD_Y91_T 0.0 1.0
+MUSETT_T3_DSSD_Y92_T 0.0 1.0
+MUSETT_T3_DSSD_Y93_T 0.0 1.0
+MUSETT_T3_DSSD_Y94_T 0.0 1.0
+MUSETT_T3_DSSD_Y95_T 0.0 1.0
+MUSETT_T3_DSSD_Y96_T 0.0 1.0
+MUSETT_T3_DSSD_Y97_T 0.0 1.0
+MUSETT_T3_DSSD_Y98_T 0.0 1.0
+MUSETT_T3_DSSD_Y99_T 0.0 1.0
+MUSETT_T3_DSSD_Y100_T 0.0 1.0
+MUSETT_T3_DSSD_Y101_T 0.0 1.0
+MUSETT_T3_DSSD_Y102_T 0.0 1.0
+MUSETT_T3_DSSD_Y103_T 0.0 1.0
+MUSETT_T3_DSSD_Y104_T 0.0 1.0
+MUSETT_T3_DSSD_Y105_T 0.0 1.0
+MUSETT_T3_DSSD_Y106_T 0.0 1.0
+MUSETT_T3_DSSD_Y107_T 0.0 1.0
+MUSETT_T3_DSSD_Y108_T 0.0 1.0
+MUSETT_T3_DSSD_Y109_T 0.0 1.0
+MUSETT_T3_DSSD_Y110_T 0.0 1.0
+MUSETT_T3_DSSD_Y111_T 0.0 1.0
+MUSETT_T3_DSSD_Y112_T 0.0 1.0
+MUSETT_T3_DSSD_Y113_T 0.0 1.0
+MUSETT_T3_DSSD_Y114_T 0.0 1.0
+MUSETT_T3_DSSD_Y115_T 0.0 1.0
+MUSETT_T3_DSSD_Y116_T 0.0 1.0
+MUSETT_T3_DSSD_Y117_T 0.0 1.0
+MUSETT_T3_DSSD_Y118_T 0.0 1.0
+MUSETT_T3_DSSD_Y119_T 0.0 1.0
+MUSETT_T3_DSSD_Y120_T 0.0 1.0
+MUSETT_T3_DSSD_Y121_T 0.0 1.0
+MUSETT_T3_DSSD_Y122_T 0.0 1.0
+MUSETT_T3_DSSD_Y123_T 0.0 1.0
+MUSETT_T3_DSSD_Y124_T 0.0 1.0
+MUSETT_T3_DSSD_Y125_T 0.0 1.0
+MUSETT_T3_DSSD_Y126_T 0.0 1.0
+MUSETT_T3_DSSD_Y127_T 0.0 1.0
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/.DS_Store b/Projects/MUSETT/calibration/calib_simu/Time/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..d865385328a1ec0e251f770cd0e3604d376c9214
Binary files /dev/null and b/Projects/MUSETT/calibration/calib_simu/Time/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/.root_hist b/Projects/MUSETT/calibration/calib_simu/Time/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..26bba7ed330471cd0bf9199205dbefbd3ba696f7
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/.root_hist
@@ -0,0 +1,35 @@
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0012","MUST2")
+.ls
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0012","MUST2")
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0012","MUST2")
+.q
+.L TimeCalibrator.C+
+TimeCalibrator("r0012","X")
+.q
+.L TimeCalibrator.C+
+TimeCalibrator("r0013","Y")
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0013","MUST2")
+TimeCalibrator("r0013","Y")
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0015","MUST2")
+.L TimeCalibrator.C+
+TimeCalibrator("r0015","X",32,"MUST2",3,3)
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0016","MUST2")
+.L TimeCalibrator.C+
+TimeCalibrator("r0016","Y",32,"MUST2",3,3)
+ExtractMust2Histos("r0017","MUST2")
+TimeCalibrator("r0017","Y",32,"MUST2",3,3)
+TimeCalibrator("r0017","X",32,"MUST2",4,4)
+ExtractMust2Histos("r0018","MUST2")
+TimeCalibrator("r0018","Y",32,"MUST2",4,4)
+.q
+.q
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/.DS_Store b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2083ac78f5072a59429f6de42a6c88ceec4bc589
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X1_T 926.099 -0.111982
+MUSETT_T0_DSSD_X2_T 869.874 -0.105192
+MUSETT_T0_DSSD_X3_T 867.818 -0.104955
+MUSETT_T0_DSSD_X4_T 937.107 -0.113338
+MUSETT_T0_DSSD_X5_T 887.963 -0.107397
+MUSETT_T0_DSSD_X6_T 935.505 -0.11314
+MUSETT_T0_DSSD_X7_T 876.58 -0.106033
+MUSETT_T0_DSSD_X8_T 932.855 -0.112807
+MUSETT_T0_DSSD_X9_T 878.364 -0.106227
+MUSETT_T0_DSSD_X10_T 925.852 -0.111943
+MUSETT_T0_DSSD_X11_T 892.804 -0.108005
+MUSETT_T0_DSSD_X12_T 921.22 -0.111378
+MUSETT_T0_DSSD_X13_T 894.475 -0.108195
+MUSETT_T0_DSSD_X14_T 913.548 -0.110456
+MUSETT_T0_DSSD_X15_T 892.476 -0.107979
+MUSETT_T0_DSSD_X16_T 922.196 -0.111499
+MUSETT_T0_DSSD_X17_T 895.157 -0.108302
+MUSETT_T0_DSSD_X18_T 913.814 -0.110458
+MUSETT_T0_DSSD_X19_T 895.419 -0.108334
+MUSETT_T0_DSSD_X20_T 909.716 -0.109955
+MUSETT_T0_DSSD_X21_T 894.752 -0.108243
+MUSETT_T0_DSSD_X22_T 907.059 -0.109652
+MUSETT_T0_DSSD_X23_T 901.721 -0.109095
+MUSETT_T0_DSSD_X24_T 903.944 -0.109295
+MUSETT_T0_DSSD_X25_T 896.865 -0.108505
+MUSETT_T0_DSSD_X26_T 903.08 -0.109464
+MUSETT_T0_DSSD_X27_T 891.69 -0.107877
+MUSETT_T0_DSSD_X28_T 890.381 -0.107622
+MUSETT_T0_DSSD_X29_T 894.258 -0.108187
+MUSETT_T0_DSSD_X30_T 884.86 -0.106942
+MUSETT_T0_DSSD_X31_T 881.631 -0.106556
+MUSETT_T0_DSSD_X32_T 894.901 -0.10826
+MUSETT_T0_DSSD_X33_T 991.094 -0.119947
+MUSETT_T0_DSSD_X34_T 943.498 -0.114176
+MUSETT_T0_DSSD_X35_T 954.542 -0.115529
+MUSETT_T0_DSSD_X36_T 995.135 -0.12045
+MUSETT_T0_DSSD_X37_T 955.481 -0.115657
+MUSETT_T0_DSSD_X38_T 998.458 -0.120851
+MUSETT_T0_DSSD_X39_T 969.726 -0.117409
+MUSETT_T0_DSSD_X40_T 1000.07 -0.121021
+MUSETT_T0_DSSD_X41_T 969.528 -0.117367
+MUSETT_T0_DSSD_X42_T 1004.27 -0.121545
+MUSETT_T0_DSSD_X43_T 969.351 -0.117353
+MUSETT_T0_DSSD_X44_T 1000.4 -0.121057
+MUSETT_T0_DSSD_X45_T 974.621 -0.117969
+MUSETT_T0_DSSD_X46_T 998.041 -0.120777
+MUSETT_T0_DSSD_X47_T 976.758 -0.118246
+MUSETT_T0_DSSD_X48_T 987.033 -0.119427
+MUSETT_T0_DSSD_X49_T 975.237 -0.118065
+MUSETT_T0_DSSD_X50_T 991.826 -0.120005
+MUSETT_T0_DSSD_X51_T 979.286 -0.118546
+MUSETT_T0_DSSD_X52_T 990.352 -0.119845
+MUSETT_T0_DSSD_X53_T 984.065 -0.119138
+MUSETT_T0_DSSD_X54_T 979.666 -0.118555
+MUSETT_T0_DSSD_X55_T 983.533 -0.119075
+MUSETT_T0_DSSD_X56_T 985.306 -0.119233
+MUSETT_T0_DSSD_X57_T 991.106 -0.119996
+MUSETT_T0_DSSD_X58_T 976.043 -0.118125
+MUSETT_T0_DSSD_X59_T 976.115 -0.118174
+MUSETT_T0_DSSD_X60_T 975.677 -0.118044
+MUSETT_T0_DSSD_X61_T 987.246 -0.119531
+MUSETT_T0_DSSD_X62_T 963.333 -0.116527
+MUSETT_T0_DSSD_X63_T 952.87 -0.115275
+MUSETT_T0_DSSD_X64_T 978.41 -0.118448
+MUSETT_T0_DSSD_X65_T 919.481 -0.111151
+MUSETT_T0_DSSD_X66_T 868.319 -0.105013
+MUSETT_T0_DSSD_X67_T 877.769 -0.106169
+MUSETT_T0_DSSD_X68_T 914.799 -0.110613
+MUSETT_T0_DSSD_X69_T 878.126 -0.106212
+MUSETT_T0_DSSD_X70_T 919.575 -0.11118
+MUSETT_T0_DSSD_X71_T 883.907 -0.106905
+MUSETT_T0_DSSD_X72_T 917.725 -0.110972
+MUSETT_T0_DSSD_X73_T 893.227 -0.108043
+MUSETT_T0_DSSD_X74_T 914.821 -0.110604
+MUSETT_T0_DSSD_X75_T 900.551 -0.108935
+MUSETT_T0_DSSD_X76_T 922.429 -0.111529
+MUSETT_T0_DSSD_X77_T 896.432 -0.108442
+MUSETT_T0_DSSD_X78_T 914.168 -0.1105
+MUSETT_T0_DSSD_X79_T 894.569 -0.108194
+MUSETT_T0_DSSD_X80_T 908.954 -0.109898
+MUSETT_T0_DSSD_X81_T 903.782 -0.109336
+MUSETT_T0_DSSD_X82_T 914.714 -0.110579
+MUSETT_T0_DSSD_X83_T 901.487 -0.109053
+MUSETT_T0_DSSD_X84_T 913.375 -0.110413
+MUSETT_T0_DSSD_X85_T 907.332 -0.109771
+MUSETT_T0_DSSD_X86_T 898.889 -0.108648
+MUSETT_T0_DSSD_X87_T 904.852 -0.109449
+MUSETT_T0_DSSD_X88_T 905.323 -0.109423
+MUSETT_T0_DSSD_X89_T 902.075 -0.109128
+MUSETT_T0_DSSD_X90_T 901.831 -0.109007
+MUSETT_T0_DSSD_X91_T 906.169 -0.109641
+MUSETT_T0_DSSD_X92_T 891.715 -0.107782
+MUSETT_T0_DSSD_X93_T 902.566 -0.109177
+MUSETT_T0_DSSD_X94_T 891.484 -0.107748
+MUSETT_T0_DSSD_X95_T 888.355 -0.107364
+MUSETT_T0_DSSD_X96_T 904.912 -0.109478
+MUSETT_T0_DSSD_X97_T 965.16 -0.116744
+MUSETT_T0_DSSD_X98_T 957.155 -0.115846
+MUSETT_T0_DSSD_X99_T 962.206 -0.11646
+MUSETT_T0_DSSD_X100_T 974.188 -0.117868
+MUSETT_T0_DSSD_X101_T 971.895 -0.117644
+MUSETT_T0_DSSD_X102_T 960.173 -0.116152
+MUSETT_T0_DSSD_X103_T 973.151 -0.117791
+MUSETT_T0_DSSD_X104_T 961.407 -0.116299
+MUSETT_T0_DSSD_X105_T 976.443 -0.118174
+MUSETT_T0_DSSD_X106_T 961.03 -0.11625
+MUSETT_T0_DSSD_X107_T 989.114 -0.119717
+MUSETT_T0_DSSD_X108_T 964.341 -0.11664
+MUSETT_T0_DSSD_X109_T 993.741 -0.120284
+MUSETT_T0_DSSD_X110_T 956.784 -0.115728
+MUSETT_T0_DSSD_X111_T 994.917 -0.120426
+MUSETT_T0_DSSD_X112_T 949.288 -0.114813
+MUSETT_T0_DSSD_X113_T 1005.69 -0.121763
+MUSETT_T0_DSSD_X114_T 942.586 -0.113978
+MUSETT_T0_DSSD_X115_T 986.82 -0.119445
+MUSETT_T0_DSSD_X116_T 949.396 -0.114818
+MUSETT_T0_DSSD_X117_T 1003.89 -0.121535
+MUSETT_T0_DSSD_X118_T 941.329 -0.113819
+MUSETT_T0_DSSD_X119_T 994.316 -0.120381
+MUSETT_T0_DSSD_X120_T 930.333 -0.112468
+MUSETT_T0_DSSD_X121_T 1001.66 -0.121262
+MUSETT_T0_DSSD_X122_T 936.88 -0.113281
+MUSETT_T0_DSSD_X123_T 1005.75 -0.121766
+MUSETT_T0_DSSD_X124_T 924.498 -0.111774
+MUSETT_T0_DSSD_X125_T 996.228 -0.120615
+MUSETT_T0_DSSD_X126_T 932.405 -0.112746
+MUSETT_T0_DSSD_X127_T 922.493 -0.111515
+MUSETT_T0_DSSD_X128_T 999.032 -0.120952
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..8cffd6b21f7ef333cdd61679eac198de93f58561
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 983.277 -0.118761
+MUSETT_T0_DSSD_Y2_T 938.109 -0.113175
+MUSETT_T0_DSSD_Y3_T 947.448 -0.114309
+MUSETT_T0_DSSD_Y4_T 976.65 -0.117944
+MUSETT_T0_DSSD_Y5_T 956.035 -0.115351
+MUSETT_T0_DSSD_Y6_T 974.115 -0.117633
+MUSETT_T0_DSSD_Y7_T 947.978 -0.11436
+MUSETT_T0_DSSD_Y8_T 978.32 -0.11814
+MUSETT_T0_DSSD_Y9_T 950.631 -0.114686
+MUSETT_T0_DSSD_Y10_T 980.648 -0.118398
+MUSETT_T0_DSSD_Y11_T 953.963 -0.115103
+MUSETT_T0_DSSD_Y12_T 974.23 -0.117632
+MUSETT_T0_DSSD_Y13_T 959.973 -0.115832
+MUSETT_T0_DSSD_Y14_T 971.457 -0.117316
+MUSETT_T0_DSSD_Y15_T 959.848 -0.115841
+MUSETT_T0_DSSD_Y16_T 975.83 -0.117842
+MUSETT_T0_DSSD_Y17_T 964.52 -0.116398
+MUSETT_T0_DSSD_Y18_T 969.183 -0.117018
+MUSETT_T0_DSSD_Y19_T 962.989 -0.116195
+MUSETT_T0_DSSD_Y20_T 971.85 -0.117339
+MUSETT_T0_DSSD_Y21_T 959.157 -0.115516
+MUSETT_T0_DSSD_Y22_T 973.261 -0.117481
+MUSETT_T0_DSSD_Y23_T 973.941 -0.117562
+MUSETT_T0_DSSD_Y24_T 957.491 -0.115563
+MUSETT_T0_DSSD_Y25_T 976.25 -0.117834
+MUSETT_T0_DSSD_Y26_T 962.012 -0.116104
+MUSETT_T0_DSSD_Y27_T 971.294 -0.11722
+MUSETT_T0_DSSD_Y28_T 944.005 -0.113921
+MUSETT_T0_DSSD_Y29_T 974.292 -0.11759
+MUSETT_T0_DSSD_Y30_T 944.925 -0.114033
+MUSETT_T0_DSSD_Y32_T 968.991 -0.116928
+MUSETT_T0_DSSD_Y33_T 903.665 -0.109056
+MUSETT_T0_DSSD_Y34_T 859.176 -0.103507
+MUSETT_T0_DSSD_Y35_T 870.909 -0.104888
+MUSETT_T0_DSSD_Y36_T 915.646 -0.110513
+MUSETT_T0_DSSD_Y37_T 866.307 -0.104347
+MUSETT_T0_DSSD_Y38_T 905.186 -0.10924
+MUSETT_T0_DSSD_Y39_T 883.056 -0.106391
+MUSETT_T0_DSSD_Y40_T 910.71 -0.109895
+MUSETT_T0_DSSD_Y41_T 885.647 -0.106718
+MUSETT_T0_DSSD_Y42_T 913.208 -0.110196
+MUSETT_T0_DSSD_Y43_T 886.974 -0.106878
+MUSETT_T0_DSSD_Y44_T 902.655 -0.108924
+MUSETT_T0_DSSD_Y45_T 883.169 -0.106441
+MUSETT_T0_DSSD_Y46_T 903.864 -0.109045
+MUSETT_T0_DSSD_Y47_T 891.212 -0.107426
+MUSETT_T0_DSSD_Y48_T 905.49 -0.109285
+MUSETT_T0_DSSD_Y49_T 892.785 -0.107608
+MUSETT_T0_DSSD_Y50_T 908.071 -0.109567
+MUSETT_T0_DSSD_Y51_T 897.104 -0.108136
+MUSETT_T0_DSSD_Y52_T 889.86 -0.107347
+MUSETT_T0_DSSD_Y53_T 904.326 -0.109012
+MUSETT_T0_DSSD_Y54_T 889.448 -0.107278
+MUSETT_T0_DSSD_Y55_T 903.135 -0.108611
+MUSETT_T0_DSSD_Y56_T 889.979 -0.107363
+MUSETT_T0_DSSD_Y57_T 901.746 -0.108719
+MUSETT_T0_DSSD_Y58_T 878.496 -0.105955
+MUSETT_T0_DSSD_Y59_T 908.712 -0.109581
+MUSETT_T0_DSSD_Y60_T 888.383 -0.107174
+MUSETT_T0_DSSD_Y61_T 903.269 -0.108895
+MUSETT_T0_DSSD_Y62_T 871.608 -0.105113
+MUSETT_T0_DSSD_Y63_T 871.769 -0.105131
+MUSETT_T0_DSSD_Y64_T 908.687 -0.109543
+MUSETT_T0_DSSD_Y65_T 1001.6 -0.121097
+MUSETT_T0_DSSD_Y66_T 970.056 -0.117145
+MUSETT_T0_DSSD_Y67_T 986.117 -0.119118
+MUSETT_T0_DSSD_Y68_T 994.499 -0.120247
+MUSETT_T0_DSSD_Y69_T 981.373 -0.118534
+MUSETT_T0_DSSD_Y70_T 997.331 -0.120579
+MUSETT_T0_DSSD_Y71_T 995.859 -0.12031
+MUSETT_T0_DSSD_Y72_T 995.389 -0.120327
+MUSETT_T0_DSSD_Y73_T 999.672 -0.120777
+MUSETT_T0_DSSD_Y74_T 1000.31 -0.120924
+MUSETT_T0_DSSD_Y75_T 1002.22 -0.121085
+MUSETT_T0_DSSD_Y76_T 989.884 -0.119656
+MUSETT_T0_DSSD_Y77_T 998.019 -0.120569
+MUSETT_T0_DSSD_Y78_T 981.143 -0.118591
+MUSETT_T0_DSSD_Y79_T 1008.32 -0.121839
+MUSETT_T0_DSSD_Y80_T 989.544 -0.119628
+MUSETT_T0_DSSD_Y81_T 1004.28 -0.121339
+MUSETT_T0_DSSD_Y82_T 985.816 -0.119156
+MUSETT_T0_DSSD_Y83_T 1014.52 -0.122592
+MUSETT_T0_DSSD_Y84_T 982.64 -0.118781
+MUSETT_T0_DSSD_Y85_T 1025.22 -0.123897
+MUSETT_T0_DSSD_Y86_T 983.206 -0.118825
+MUSETT_T0_DSSD_Y87_T 1024.79 -0.123866
+MUSETT_T0_DSSD_Y88_T 979.506 -0.118378
+MUSETT_T0_DSSD_Y89_T 1019.8 -0.123256
+MUSETT_T0_DSSD_Y90_T 976.674 -0.118028
+MUSETT_T0_DSSD_Y91_T 1024.3 -0.123786
+MUSETT_T0_DSSD_Y92_T 976.574 -0.118012
+MUSETT_T0_DSSD_Y93_T 1021.08 -0.123408
+MUSETT_T0_DSSD_Y94_T 970.82 -0.117302
+MUSETT_T0_DSSD_Y95_T 963.864 -0.116469
+MUSETT_T0_DSSD_Y96_T 1016.6 -0.122879
+MUSETT_T0_DSSD_Y97_T 917.078 -0.110803
+MUSETT_T0_DSSD_Y98_T 891.216 -0.107535
+MUSETT_T0_DSSD_Y99_T 899.129 -0.108466
+MUSETT_T0_DSSD_Y100_T 915.137 -0.110572
+MUSETT_T0_DSSD_Y101_T 898.718 -0.108438
+MUSETT_T0_DSSD_Y102_T 909.547 -0.109894
+MUSETT_T0_DSSD_Y103_T 904.591 -0.109158
+MUSETT_T0_DSSD_Y104_T 913.859 -0.110421
+MUSETT_T0_DSSD_Y105_T 916.06 -0.110566
+MUSETT_T0_DSSD_Y106_T 914.704 -0.11051
+MUSETT_T0_DSSD_Y107_T 909.441 -0.109757
+MUSETT_T0_DSSD_Y108_T 910.27 -0.109981
+MUSETT_T0_DSSD_Y109_T 929.211 -0.112167
+MUSETT_T0_DSSD_Y110_T 914.99 -0.110544
+MUSETT_T0_DSSD_Y111_T 920.724 -0.111146
+MUSETT_T0_DSSD_Y112_T 901.739 -0.108916
+MUSETT_T0_DSSD_Y113_T 931.107 -0.112407
+MUSETT_T0_DSSD_Y114_T 907.124 -0.10959
+MUSETT_T0_DSSD_Y115_T 930.357 -0.112337
+MUSETT_T0_DSSD_Y116_T 895.168 -0.108105
+MUSETT_T0_DSSD_Y117_T 932.102 -0.112539
+MUSETT_T0_DSSD_Y118_T 890.686 -0.10757
+MUSETT_T0_DSSD_Y119_T 935.662 -0.112978
+MUSETT_T0_DSSD_Y120_T 891.724 -0.107707
+MUSETT_T0_DSSD_Y121_T 930.191 -0.112316
+MUSETT_T0_DSSD_Y122_T 894.625 -0.108041
+MUSETT_T0_DSSD_Y123_T 929.054 -0.112192
+MUSETT_T0_DSSD_Y124_T 878.021 -0.106028
+MUSETT_T0_DSSD_Y125_T 926.166 -0.111821
+MUSETT_T0_DSSD_Y126_T 878.942 -0.106139
+MUSETT_T0_DSSD_Y127_T 882.25 -0.106544
+MUSETT_T0_DSSD_Y128_T 929.013 -0.112162
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..28ea02313a04318e3f08f995fa2cbcfdb811b04c
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X1_T 916.574 -0.110777
+MUSETT_T1_DSSD_X2_T 878.025 -0.106165
+MUSETT_T1_DSSD_X3_T 877.927 -0.10618
+MUSETT_T1_DSSD_X4_T 908.514 -0.109791
+MUSETT_T1_DSSD_X5_T 893.294 -0.108064
+MUSETT_T1_DSSD_X6_T 909.067 -0.109867
+MUSETT_T1_DSSD_X7_T 876.051 -0.105941
+MUSETT_T1_DSSD_X8_T 917.556 -0.110894
+MUSETT_T1_DSSD_X9_T 893.827 -0.108105
+MUSETT_T1_DSSD_X10_T 904.646 -0.109308
+MUSETT_T1_DSSD_X11_T 899.59 -0.108823
+MUSETT_T1_DSSD_X12_T 912.271 -0.110244
+MUSETT_T1_DSSD_X13_T 891.87 -0.107861
+MUSETT_T1_DSSD_X14_T 903.537 -0.10916
+MUSETT_T1_DSSD_X15_T 896.377 -0.10842
+MUSETT_T1_DSSD_X16_T 907.775 -0.1097
+MUSETT_T1_DSSD_X17_T 899.273 -0.108779
+MUSETT_T1_DSSD_X18_T 901.392 -0.108878
+MUSETT_T1_DSSD_X19_T 898.912 -0.108754
+MUSETT_T1_DSSD_X20_T 895.39 -0.10819
+MUSETT_T1_DSSD_X21_T 907.617 -0.109783
+MUSETT_T1_DSSD_X22_T 891.534 -0.107699
+MUSETT_T1_DSSD_X23_T 899.789 -0.108855
+MUSETT_T1_DSSD_X24_T 891.233 -0.107685
+MUSETT_T1_DSSD_X25_T 909.299 -0.110019
+MUSETT_T1_DSSD_X26_T 888.452 -0.107338
+MUSETT_T1_DSSD_X27_T 907.769 -0.109854
+MUSETT_T1_DSSD_X28_T 885.913 -0.107015
+MUSETT_T1_DSSD_X29_T 905.232 -0.109528
+MUSETT_T1_DSSD_X30_T 873.224 -0.105455
+MUSETT_T1_DSSD_X31_T 868.163 -0.104838
+MUSETT_T1_DSSD_X32_T 909.577 -0.110055
+MUSETT_T1_DSSD_X33_T 984.794 -0.119148
+MUSETT_T1_DSSD_X34_T 928.571 -0.11232
+MUSETT_T1_DSSD_X35_T 942.493 -0.114015
+MUSETT_T1_DSSD_X36_T 977.151 -0.118198
+MUSETT_T1_DSSD_X37_T 944.985 -0.114341
+MUSETT_T1_DSSD_X38_T 978.26 -0.118324
+MUSETT_T1_DSSD_X39_T 956.226 -0.115712
+MUSETT_T1_DSSD_X40_T 981.073 -0.118677
+MUSETT_T1_DSSD_X41_T 956.679 -0.115744
+MUSETT_T1_DSSD_X42_T 977.242 -0.11821
+MUSETT_T1_DSSD_X43_T 958.458 -0.115962
+MUSETT_T1_DSSD_X44_T 973.502 -0.117737
+MUSETT_T1_DSSD_X45_T 971.702 -0.117589
+MUSETT_T1_DSSD_X46_T 974.918 -0.117923
+MUSETT_T1_DSSD_X47_T 966.768 -0.116998
+MUSETT_T1_DSSD_X48_T 971.664 -0.117531
+MUSETT_T1_DSSD_X49_T 970.872 -0.117498
+MUSETT_T1_DSSD_X50_T 973.476 -0.117739
+MUSETT_T1_DSSD_X51_T 979.817 -0.118577
+MUSETT_T1_DSSD_X52_T 957.223 -0.115762
+MUSETT_T1_DSSD_X53_T 976.301 -0.118143
+MUSETT_T1_DSSD_X54_T 967.911 -0.117052
+MUSETT_T1_DSSD_X55_T 975.435 -0.118071
+MUSETT_T1_DSSD_X56_T 954.686 -0.115464
+MUSETT_T1_DSSD_X57_T 987.534 -0.11954
+MUSETT_T1_DSSD_X58_T 946.29 -0.114439
+MUSETT_T1_DSSD_X59_T 988.145 -0.119597
+MUSETT_T1_DSSD_X60_T 948.76 -0.114738
+MUSETT_T1_DSSD_X61_T 985.177 -0.119236
+MUSETT_T1_DSSD_X62_T 947.862 -0.114612
+MUSETT_T1_DSSD_X63_T 924.661 -0.111777
+MUSETT_T1_DSSD_X64_T 984.559 -0.119179
+MUSETT_T1_DSSD_X65_T 928.424 -0.111864
+MUSETT_T1_DSSD_X66_T 892.824 -0.107613
+MUSETT_T1_DSSD_X67_T 890.901 -0.107373
+MUSETT_T1_DSSD_X68_T 934.329 -0.112614
+MUSETT_T1_DSSD_X69_T 894.556 -0.107838
+MUSETT_T1_DSSD_X70_T 931.059 -0.112193
+MUSETT_T1_DSSD_X71_T 905.994 -0.109224
+MUSETT_T1_DSSD_X72_T 925.186 -0.111483
+MUSETT_T1_DSSD_X73_T 905.741 -0.1092
+MUSETT_T1_DSSD_X74_T 927.829 -0.111775
+MUSETT_T1_DSSD_X75_T 910.629 -0.109791
+MUSETT_T1_DSSD_X76_T 932.559 -0.11236
+MUSETT_T1_DSSD_X77_T 906.206 -0.109268
+MUSETT_T1_DSSD_X78_T 931.448 -0.112226
+MUSETT_T1_DSSD_X79_T 921.692 -0.111151
+MUSETT_T1_DSSD_X80_T 923.868 -0.111325
+MUSETT_T1_DSSD_X81_T 922.784 -0.11128
+MUSETT_T1_DSSD_X82_T 918.363 -0.110659
+MUSETT_T1_DSSD_X83_T 924.5 -0.111467
+MUSETT_T1_DSSD_X84_T 935.93 -0.112781
+MUSETT_T1_DSSD_X85_T 928.983 -0.112035
+MUSETT_T1_DSSD_X86_T 923.812 -0.111304
+MUSETT_T1_DSSD_X87_T 924.661 -0.111519
+MUSETT_T1_DSSD_X88_T 929.323 -0.111977
+MUSETT_T1_DSSD_X89_T 925.485 -0.111616
+MUSETT_T1_DSSD_X90_T 914.468 -0.110136
+MUSETT_T1_DSSD_X91_T 917.32 -0.110627
+MUSETT_T1_DSSD_X92_T 908.74 -0.10946
+MUSETT_T1_DSSD_X93_T 920.078 -0.110941
+MUSETT_T1_DSSD_X94_T 901.745 -0.108567
+MUSETT_T1_DSSD_X95_T 900.671 -0.108476
+MUSETT_T1_DSSD_X96_T 926.646 -0.11176
+MUSETT_T1_DSSD_X97_T 1008.1 -0.12163
+MUSETT_T1_DSSD_X98_T 951.079 -0.114723
+MUSETT_T1_DSSD_X99_T 952.897 -0.114949
+MUSETT_T1_DSSD_X100_T 1019.96 -0.123096
+MUSETT_T1_DSSD_X101_T 966.461 -0.116629
+MUSETT_T1_DSSD_X102_T 1020.31 -0.123127
+MUSETT_T1_DSSD_X103_T 965.985 -0.116557
+MUSETT_T1_DSSD_X104_T 1017.49 -0.12279
+MUSETT_T1_DSSD_X105_T 968.322 -0.116827
+MUSETT_T1_DSSD_X106_T 1018.04 -0.12282
+MUSETT_T1_DSSD_X107_T 976.11 -0.117811
+MUSETT_T1_DSSD_X108_T 1011.77 -0.122082
+MUSETT_T1_DSSD_X109_T 975.867 -0.117758
+MUSETT_T1_DSSD_X110_T 1016.22 -0.12261
+MUSETT_T1_DSSD_X111_T 981.064 -0.118392
+MUSETT_T1_DSSD_X112_T 1013.91 -0.122345
+MUSETT_T1_DSSD_X113_T 978.32 -0.118063
+MUSETT_T1_DSSD_X114_T 999.416 -0.12057
+MUSETT_T1_DSSD_X115_T 992.972 -0.119853
+MUSETT_T1_DSSD_X116_T 1007.52 -0.121554
+MUSETT_T1_DSSD_X117_T 989.034 -0.119377
+MUSETT_T1_DSSD_X118_T 1006.21 -0.121389
+MUSETT_T1_DSSD_X119_T 987.234 -0.119141
+MUSETT_T1_DSSD_X120_T 996.925 -0.120215
+MUSETT_T1_DSSD_X121_T 994.058 -0.119982
+MUSETT_T1_DSSD_X122_T 997.371 -0.120307
+MUSETT_T1_DSSD_X123_T 995.957 -0.120199
+MUSETT_T1_DSSD_X124_T 983.919 -0.118652
+MUSETT_T1_DSSD_X125_T 995.79 -0.1202
+MUSETT_T1_DSSD_X126_T 978.841 -0.118024
+MUSETT_T1_DSSD_X127_T 976.704 -0.117775
+MUSETT_T1_DSSD_X128_T 1000.15 -0.120722
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..479452366cadab56b76c2feaf880cbb51e2a6755
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y1_T 966.891 -0.116717
+MUSETT_T1_DSSD_Y2_T 968.928 -0.116883
+MUSETT_T1_DSSD_Y3_T 971.207 -0.117128
+MUSETT_T1_DSSD_Y4_T 969.17 -0.116981
+MUSETT_T1_DSSD_Y5_T 975.423 -0.117665
+MUSETT_T1_DSSD_Y6_T 967.943 -0.116827
+MUSETT_T1_DSSD_Y7_T 976.249 -0.117743
+MUSETT_T1_DSSD_Y8_T 972.184 -0.117358
+MUSETT_T1_DSSD_Y9_T 987.572 -0.119146
+MUSETT_T1_DSSD_Y10_T 972.004 -0.117327
+MUSETT_T1_DSSD_Y11_T 984.536 -0.118747
+MUSETT_T1_DSSD_Y12_T 964.104 -0.116368
+MUSETT_T1_DSSD_Y13_T 987.751 -0.119189
+MUSETT_T1_DSSD_Y14_T 968.288 -0.116854
+MUSETT_T1_DSSD_Y15_T 994.23 -0.119964
+MUSETT_T1_DSSD_Y16_T 958.21 -0.11562
+MUSETT_T1_DSSD_Y17_T 995.905 -0.120158
+MUSETT_T1_DSSD_Y18_T 950.839 -0.114726
+MUSETT_T1_DSSD_Y19_T 995.946 -0.120176
+MUSETT_T1_DSSD_Y20_T 960.868 -0.115938
+MUSETT_T1_DSSD_Y21_T 1000.5 -0.120728
+MUSETT_T1_DSSD_Y22_T 957.621 -0.115533
+MUSETT_T1_DSSD_Y23_T 995.25 -0.120113
+MUSETT_T1_DSSD_Y24_T 954.252 -0.115122
+MUSETT_T1_DSSD_Y25_T 997.145 -0.120339
+MUSETT_T1_DSSD_Y26_T 952.035 -0.114834
+MUSETT_T1_DSSD_Y27_T 988.864 -0.119308
+MUSETT_T1_DSSD_Y28_T 948.029 -0.114361
+MUSETT_T1_DSSD_Y29_T 995.199 -0.120108
+MUSETT_T1_DSSD_Y30_T 937.191 -0.113022
+MUSETT_T1_DSSD_Y31_T 935.35 -0.11282
+MUSETT_T1_DSSD_Y32_T 990.383 -0.119515
+MUSETT_T1_DSSD_Y33_T 905.741 -0.109257
+MUSETT_T1_DSSD_Y34_T 887.986 -0.10696
+MUSETT_T1_DSSD_Y35_T 887.216 -0.106852
+MUSETT_T1_DSSD_Y36_T 910.732 -0.109844
+MUSETT_T1_DSSD_Y37_T 883.77 -0.106436
+MUSETT_T1_DSSD_Y38_T 906.33 -0.109312
+MUSETT_T1_DSSD_Y39_T 896.97 -0.108049
+MUSETT_T1_DSSD_Y40_T 911.966 -0.109989
+MUSETT_T1_DSSD_Y41_T 903.022 -0.108781
+MUSETT_T1_DSSD_Y42_T 909.45 -0.10969
+MUSETT_T1_DSSD_Y43_T 904.319 -0.108923
+MUSETT_T1_DSSD_Y44_T 900.767 -0.108623
+MUSETT_T1_DSSD_Y45_T 904.183 -0.108922
+MUSETT_T1_DSSD_Y46_T 908.035 -0.109521
+MUSETT_T1_DSSD_Y47_T 904.336 -0.108949
+MUSETT_T1_DSSD_Y48_T 895.245 -0.107957
+MUSETT_T1_DSSD_Y49_T 916.034 -0.110395
+MUSETT_T1_DSSD_Y50_T 907.451 -0.10944
+MUSETT_T1_DSSD_Y51_T 915.216 -0.110294
+MUSETT_T1_DSSD_Y52_T 897.171 -0.108164
+MUSETT_T1_DSSD_Y53_T 910.734 -0.109746
+MUSETT_T1_DSSD_Y54_T 907.311 -0.109433
+MUSETT_T1_DSSD_Y55_T 913.293 -0.109802
+MUSETT_T1_DSSD_Y56_T 848677000000.0 -103827000.0
+MUSETT_T1_DSSD_Y57_T 910.448 -0.109742
+MUSETT_T1_DSSD_Y58_T 896.019 -0.108037
+MUSETT_T1_DSSD_Y59_T 918.647 -0.11072
+MUSETT_T1_DSSD_Y60_T 886.581 -0.106848
+MUSETT_T1_DSSD_Y61_T 920.049 -0.110879
+MUSETT_T1_DSSD_Y62_T 884.995 -0.106691
+MUSETT_T1_DSSD_Y63_T 1002.87 -0.141377
+MUSETT_T1_DSSD_Y64_T 921.093 -0.111037
+MUSETT_T1_DSSD_Y65_T 991.793 -0.120194
+MUSETT_T1_DSSD_Y66_T 947.005 -0.114646
+MUSETT_T1_DSSD_Y67_T 955.512 -0.115676
+MUSETT_T1_DSSD_Y68_T 986.667 -0.119601
+MUSETT_T1_DSSD_Y69_T 954.266 -0.115551
+MUSETT_T1_DSSD_Y70_T 985.922 -0.119505
+MUSETT_T1_DSSD_Y71_T 961.213 -0.116392
+MUSETT_T1_DSSD_Y72_T 988.378 -0.11981
+MUSETT_T1_DSSD_Y73_T 960.803 -0.116344
+MUSETT_T1_DSSD_Y74_T 985.147 -0.119391
+MUSETT_T1_DSSD_Y75_T 971.068 -0.117589
+MUSETT_T1_DSSD_Y76_T 988.169 -0.119777
+MUSETT_T1_DSSD_Y77_T 971.908 -0.117699
+MUSETT_T1_DSSD_Y78_T 986.47 -0.119552
+MUSETT_T1_DSSD_Y79_T 978.963 -0.118567
+MUSETT_T1_DSSD_Y80_T 983.419 -0.119163
+MUSETT_T1_DSSD_Y81_T 980.181 -0.118705
+MUSETT_T1_DSSD_Y82_T 982.479 -0.119038
+MUSETT_T1_DSSD_Y83_T 972.849 -0.117807
+MUSETT_T1_DSSD_Y84_T 974.345 -0.118053
+MUSETT_T1_DSSD_Y85_T 977.401 -0.118376
+MUSETT_T1_DSSD_Y86_T 978.784 -0.118609
+MUSETT_T1_DSSD_Y87_T 985.257 -0.119333
+MUSETT_T1_DSSD_Y88_T 970.687 -0.117617
+MUSETT_T1_DSSD_Y89_T 986.001 -0.119429
+MUSETT_T1_DSSD_Y90_T 967.43 -0.117211
+MUSETT_T1_DSSD_Y91_T 978.94 -0.118576
+MUSETT_T1_DSSD_Y92_T 963.945 -0.116788
+MUSETT_T1_DSSD_Y93_T 982.604 -0.119031
+MUSETT_T1_DSSD_Y94_T 958.17 -0.116053
+MUSETT_T1_DSSD_Y95_T 950.903 -0.115194
+MUSETT_T1_DSSD_Y96_T 994.308 -0.120471
+MUSETT_T1_DSSD_Y97_T 906.635 -0.109824
+MUSETT_T1_DSSD_Y98_T 862.399 -0.104291
+MUSETT_T1_DSSD_Y99_T 856.141 -0.103549
+MUSETT_T1_DSSD_Y100_T 900.796 -0.109108
+MUSETT_T1_DSSD_Y101_T 866.517 -0.104798
+MUSETT_T1_DSSD_Y102_T 910.268 -0.110268
+MUSETT_T1_DSSD_Y103_T 861.488 -0.10419
+MUSETT_T1_DSSD_Y104_T 903.241 -0.109417
+MUSETT_T1_DSSD_Y105_T 869.88 -0.105221
+MUSETT_T1_DSSD_Y106_T 896.217 -0.108536
+MUSETT_T1_DSSD_Y107_T 879.073 -0.106354
+MUSETT_T1_DSSD_Y108_T 905.347 -0.10967
+MUSETT_T1_DSSD_Y109_T 883.458 -0.1069
+MUSETT_T1_DSSD_Y110_T 902.144 -0.10926
+MUSETT_T1_DSSD_Y111_T 878.318 -0.106252
+MUSETT_T1_DSSD_Y112_T 905.296 -0.109653
+MUSETT_T1_DSSD_Y113_T 895.691 -0.108379
+MUSETT_T1_DSSD_Y114_T 895.11 -0.108406
+MUSETT_T1_DSSD_Y115_T 896.571 -0.108492
+MUSETT_T1_DSSD_Y116_T 891.891 -0.108005
+MUSETT_T1_DSSD_Y117_T 894.464 -0.108225
+MUSETT_T1_DSSD_Y118_T 884.05 -0.107044
+MUSETT_T1_DSSD_Y119_T 893.509 -0.108132
+MUSETT_T1_DSSD_Y120_T 891.902 -0.10801
+MUSETT_T1_DSSD_Y121_T 895.809 -0.108412
+MUSETT_T1_DSSD_Y122_T 894.071 -0.108263
+MUSETT_T1_DSSD_Y123_T 891.015 -0.10784
+MUSETT_T1_DSSD_Y124_T 880.13 -0.106555
+MUSETT_T1_DSSD_Y125_T 888.724 -0.107526
+MUSETT_T1_DSSD_Y126_T 875.524 -0.106
+MUSETT_T1_DSSD_Y127_T 876.691 -0.106136
+MUSETT_T1_DSSD_Y128_T 899.797 -0.109448
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..eb9e80680ce0a88ba927b74dd75d653adf4c3093
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X1_T 893.403 -0.107885
+MUSETT_T2_DSSD_X2_T 884.424 -0.106884
+MUSETT_T2_DSSD_X3_T 881.912 -0.106588
+MUSETT_T2_DSSD_X4_T 896.224 -0.10824
+MUSETT_T2_DSSD_X5_T 891.212 -0.10771
+MUSETT_T2_DSSD_X6_T 899.711 -0.108665
+MUSETT_T2_DSSD_X7_T 888.472 -0.10739
+MUSETT_T2_DSSD_X8_T 900.163 -0.108721
+MUSETT_T2_DSSD_X9_T 902.325 -0.109058
+MUSETT_T2_DSSD_X10_T 898.738 -0.108543
+MUSETT_T2_DSSD_X11_T 899.193 -0.108685
+MUSETT_T2_DSSD_X12_T 888.44 -0.107279
+MUSETT_T2_DSSD_X13_T 906.762 -0.109605
+MUSETT_T2_DSSD_X14_T 896.907 -0.108307
+MUSETT_T2_DSSD_X15_T 903.506 -0.109211
+MUSETT_T2_DSSD_X16_T 894.49 -0.108024
+MUSETT_T2_DSSD_X17_T 903.2 -0.109168
+MUSETT_T2_DSSD_X18_T 885.543 -0.106931
+MUSETT_T2_DSSD_X19_T 907.04 -0.109617
+MUSETT_T2_DSSD_X20_T 877.811 -0.105984
+MUSETT_T2_DSSD_X21_T 913.192 -0.1104
+MUSETT_T2_DSSD_X22_T 875.93 -0.105755
+MUSETT_T2_DSSD_X23_T 912.001 -0.110254
+MUSETT_T2_DSSD_X24_T 875.67 -0.105723
+MUSETT_T2_DSSD_X25_T 920.039 -0.111219
+MUSETT_T2_DSSD_X26_T 866.918 -0.10464
+MUSETT_T2_DSSD_X27_T 918.464 -0.111043
+MUSETT_T2_DSSD_X28_T 872.886 -0.105362
+MUSETT_T2_DSSD_X29_T 921.268 -0.111378
+MUSETT_T2_DSSD_X30_T 863.294 -0.104191
+MUSETT_T2_DSSD_X31_T 853.022 -0.102956
+MUSETT_T2_DSSD_X32_T 917.17 -0.11089
+MUSETT_T2_DSSD_X33_T 949.489 -0.114725
+MUSETT_T2_DSSD_X34_T 937.316 -0.113282
+MUSETT_T2_DSSD_X35_T 934.385 -0.112935
+MUSETT_T2_DSSD_X36_T 950.078 -0.114801
+MUSETT_T2_DSSD_X37_T 942.34 -0.113903
+MUSETT_T2_DSSD_X38_T 948.307 -0.114577
+MUSETT_T2_DSSD_X39_T 954.458 -0.11541
+MUSETT_T2_DSSD_X40_T 952.149 -0.115049
+MUSETT_T2_DSSD_X41_T 950.139 -0.114834
+MUSETT_T2_DSSD_X42_T 944.632 -0.114127
+MUSETT_T2_DSSD_X43_T 967.561 -0.116968
+MUSETT_T2_DSSD_X44_T 948.456 -0.114587
+MUSETT_T2_DSSD_X45_T 960.77 -0.116144
+MUSETT_T2_DSSD_X46_T 947.97 -0.114529
+MUSETT_T2_DSSD_X47_T 965.567 -0.116738
+MUSETT_T2_DSSD_X48_T 939.674 -0.113523
+MUSETT_T2_DSSD_X49_T 957.421 -0.115736
+MUSETT_T2_DSSD_X50_T 948.676 -0.114596
+MUSETT_T2_DSSD_X51_T 969.399 -0.117191
+MUSETT_T2_DSSD_X52_T 940.462 -0.113604
+MUSETT_T2_DSSD_X53_T 971.909 -0.117505
+MUSETT_T2_DSSD_X54_T 942.935 -0.113893
+MUSETT_T2_DSSD_X55_T 966.623 -0.116868
+MUSETT_T2_DSSD_X56_T 947.225 -0.114433
+MUSETT_T2_DSSD_X57_T 972.522 -0.117596
+MUSETT_T2_DSSD_X58_T 936.381 -0.11311
+MUSETT_T2_DSSD_X59_T 966.551 -0.116864
+MUSETT_T2_DSSD_X60_T 937.478 -0.113239
+MUSETT_T2_DSSD_X61_T 967.053 -0.116934
+MUSETT_T2_DSSD_X62_T 934.725 -0.1129
+MUSETT_T2_DSSD_X63_T 919.521 -0.111042
+MUSETT_T2_DSSD_X64_T 976.535 -0.118078
+MUSETT_T2_DSSD_X65_T 944.971 -0.114186
+MUSETT_T2_DSSD_X66_T 901.312 -0.10895
+MUSETT_T2_DSSD_X67_T 917.986 -0.11099
+MUSETT_T2_DSSD_X68_T 944.748 -0.114176
+MUSETT_T2_DSSD_X69_T 913.934 -0.110483
+MUSETT_T2_DSSD_X70_T 936.181 -0.113143
+MUSETT_T2_DSSD_X71_T 913.949 -0.110494
+MUSETT_T2_DSSD_X72_T 936.518 -0.113174
+MUSETT_T2_DSSD_X73_T 923.435 -0.11163
+MUSETT_T2_DSSD_X74_T 946.851 -0.11443
+MUSETT_T2_DSSD_X75_T 922.621 -0.111573
+MUSETT_T2_DSSD_X76_T 940.75 -0.113673
+MUSETT_T2_DSSD_X77_T 921.076 -0.111368
+MUSETT_T2_DSSD_X78_T 949.44 -0.114745
+MUSETT_T2_DSSD_X79_T 925.346 -0.111888
+MUSETT_T2_DSSD_X80_T 940.564 -0.113666
+MUSETT_T2_DSSD_X81_T 935.581 -0.113122
+MUSETT_T2_DSSD_X82_T 940.971 -0.113698
+MUSETT_T2_DSSD_X83_T 932.485 -0.112764
+MUSETT_T2_DSSD_X84_T 938.012 -0.113333
+MUSETT_T2_DSSD_X85_T 937.5 -0.113373
+MUSETT_T2_DSSD_X86_T 932.582 -0.11267
+MUSETT_T2_DSSD_X87_T 932.715 -0.112797
+MUSETT_T2_DSSD_X88_T 929.709 -0.112323
+MUSETT_T2_DSSD_X89_T 935.979 -0.113176
+MUSETT_T2_DSSD_X90_T 914.139 -0.110414
+MUSETT_T2_DSSD_X91_T 942.445 -0.113973
+MUSETT_T2_DSSD_X92_T 914.61 -0.110461
+MUSETT_T2_DSSD_X93_T 943.181 -0.114066
+MUSETT_T2_DSSD_X94_T 906.889 -0.109531
+MUSETT_T2_DSSD_X95_T 902.2 -0.108961
+MUSETT_T2_DSSD_X96_T 942.414 -0.113973
+MUSETT_T2_DSSD_X97_T 987.604 -0.119394
+MUSETT_T2_DSSD_X98_T 971.844 -0.117533
+MUSETT_T2_DSSD_X99_T 971.845 -0.117545
+MUSETT_T2_DSSD_X100_T 1002.51 -0.12123
+MUSETT_T2_DSSD_X101_T 983.582 -0.118957
+MUSETT_T2_DSSD_X102_T 1001.7 -0.12112
+MUSETT_T2_DSSD_X103_T 988.69 -0.119584
+MUSETT_T2_DSSD_X104_T 997.508 -0.120614
+MUSETT_T2_DSSD_X105_T 990.616 -0.119902
+MUSETT_T2_DSSD_X106_T 982.481 -0.118788
+MUSETT_T2_DSSD_X107_T 992.058 -0.12002
+MUSETT_T2_DSSD_X108_T 992.615 -0.120011
+MUSETT_T2_DSSD_X109_T 993.193 -0.120171
+MUSETT_T2_DSSD_X110_T 993.652 -0.120143
+MUSETT_T2_DSSD_X111_T 998.567 -0.120802
+MUSETT_T2_DSSD_X112_T 993.933 -0.120152
+MUSETT_T2_DSSD_X113_T 991.75 -0.119977
+MUSETT_T2_DSSD_X114_T 983.229 -0.118879
+MUSETT_T2_DSSD_X115_T 1000.28 -0.12102
+MUSETT_T2_DSSD_X116_T 984.429 -0.118997
+MUSETT_T2_DSSD_X117_T 996.389 -0.12055
+MUSETT_T2_DSSD_X118_T 970.748 -0.117336
+MUSETT_T2_DSSD_X119_T 995.946 -0.12048
+MUSETT_T2_DSSD_X120_T 969.333 -0.117159
+MUSETT_T2_DSSD_X121_T 1005.69 -0.121688
+MUSETT_T2_DSSD_X122_T 969.343 -0.117158
+MUSETT_T2_DSSD_X123_T 1009.38 -0.122136
+MUSETT_T2_DSSD_X124_T 965.866 -0.116735
+MUSETT_T2_DSSD_X125_T 1012.08 -0.122472
+MUSETT_T2_DSSD_X126_T 964.034 -0.116512
+MUSETT_T2_DSSD_X127_T 952.869 -0.115148
+MUSETT_T2_DSSD_X128_T 1003.93 -0.121488
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..bff45b74f99cfd7cd75c19c8e9acbe2ea26654c0
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y1_T 1024.2 -0.123744
+MUSETT_T2_DSSD_Y2_T 942.022 -0.113632
+MUSETT_T2_DSSD_Y3_T 941.851 -0.11359
+MUSETT_T2_DSSD_Y4_T 1023.43 -0.123621
+MUSETT_T2_DSSD_Y5_T 941.301 -0.113546
+MUSETT_T2_DSSD_Y6_T 1024.68 -0.123746
+MUSETT_T2_DSSD_Y7_T 941.196 -0.113526
+MUSETT_T2_DSSD_Y8_T 1019.48 -0.12312
+MUSETT_T2_DSSD_Y9_T 956.339 -0.115367
+MUSETT_T2_DSSD_Y10_T 1017.56 -0.122898
+MUSETT_T2_DSSD_Y11_T 972.159 -0.117305
+MUSETT_T2_DSSD_Y12_T 1012.4 -0.122275
+MUSETT_T2_DSSD_Y13_T 968.071 -0.11682
+MUSETT_T2_DSSD_Y14_T 1006.22 -0.121307
+MUSETT_T2_DSSD_Y15_T 963.198 -0.116216
+MUSETT_T2_DSSD_Y16_T 1014.58 -0.122539
+MUSETT_T2_DSSD_Y17_T 978.802 -0.118134
+MUSETT_T2_DSSD_Y18_T 1013.44 -0.122366
+MUSETT_T2_DSSD_Y19_T 981.332 -0.118446
+MUSETT_T2_DSSD_Y20_T 1006.43 -0.121526
+MUSETT_T2_DSSD_Y21_T 978.515 -0.117858
+MUSETT_T2_DSSD_Y22_T 1001.78 -0.120947
+MUSETT_T2_DSSD_Y23_T 985.445 -0.11895
+MUSETT_T2_DSSD_Y24_T 1003.53 -0.121165
+MUSETT_T2_DSSD_Y25_T 979.656 -0.118238
+MUSETT_T2_DSSD_Y26_T 998.524 -0.120524
+MUSETT_T2_DSSD_Y27_T 981.57 -0.118468
+MUSETT_T2_DSSD_Y28_T 992.258 -0.119776
+MUSETT_T2_DSSD_Y29_T 980.383 -0.118337
+MUSETT_T2_DSSD_Y30_T 993.077 -0.119903
+MUSETT_T2_DSSD_Y31_T 989.947 -0.119525
+MUSETT_T2_DSSD_Y32_T 968.968 -0.116905
+MUSETT_T2_DSSD_Y33_T 918.091 -0.110791
+MUSETT_T2_DSSD_Y34_T 896.545 -0.108016
+MUSETT_T2_DSSD_Y35_T 905.921 -0.109155
+MUSETT_T2_DSSD_Y36_T 922.863 -0.111371
+MUSETT_T2_DSSD_Y37_T 903.191 -0.108834
+MUSETT_T2_DSSD_Y38_T 919.243 -0.110907
+MUSETT_T2_DSSD_Y39_T 916.514 -0.110471
+MUSETT_T2_DSSD_Y40_T 915.986 -0.110532
+MUSETT_T2_DSSD_Y41_T 909.698 -0.109622
+MUSETT_T2_DSSD_Y42_T 913.535 -0.110231
+MUSETT_T2_DSSD_Y43_T 918.472 -0.110708
+MUSETT_T2_DSSD_Y44_T 910.049 -0.10979
+MUSETT_T2_DSSD_Y45_T 921.934 -0.111116
+MUSETT_T2_DSSD_Y46_T 914.061 -0.110304
+MUSETT_T2_DSSD_Y47_T 917.791 -0.11061
+MUSETT_T2_DSSD_Y48_T 909.649 -0.109756
+MUSETT_T2_DSSD_Y49_T 930.463 -0.11216
+MUSETT_T2_DSSD_Y50_T 906.817 -0.109401
+MUSETT_T2_DSSD_Y51_T 921.545 -0.111079
+MUSETT_T2_DSSD_Y52_T 908.152 -0.109574
+MUSETT_T2_DSSD_Y53_T 924.357 -0.111393
+MUSETT_T2_DSSD_Y54_T 892.44 -0.107628
+MUSETT_T2_DSSD_Y55_T 928.134 -0.11168
+MUSETT_T2_DSSD_Y56_T 897.82 -0.108297
+MUSETT_T2_DSSD_Y57_T 944.074 -0.11386
+MUSETT_T2_DSSD_Y58_T 894.339 -0.10786
+MUSETT_T2_DSSD_Y59_T 929.497 -0.112068
+MUSETT_T2_DSSD_Y60_T 893.026 -0.107711
+MUSETT_T2_DSSD_Y61_T 925.938 -0.111623
+MUSETT_T2_DSSD_Y62_T 880.638 -0.106206
+MUSETT_T2_DSSD_Y63_T 874.116 -0.105393
+MUSETT_T2_DSSD_Y64_T 933.858 -0.112593
+MUSETT_T2_DSSD_Y65_T 971.01 -0.117343
+MUSETT_T2_DSSD_Y66_T 946.074 -0.114246
+MUSETT_T2_DSSD_Y67_T 940.751 -0.113582
+MUSETT_T2_DSSD_Y68_T 968.878 -0.117092
+MUSETT_T2_DSSD_Y69_T 952.983 -0.115097
+MUSETT_T2_DSSD_Y70_T 977.792 -0.118194
+MUSETT_T2_DSSD_Y71_T 948.889 -0.114574
+MUSETT_T2_DSSD_Y72_T 975.406 -0.117892
+MUSETT_T2_DSSD_Y73_T 957.63 -0.115653
+MUSETT_T2_DSSD_Y74_T 979.2 -0.118324
+MUSETT_T2_DSSD_Y75_T 968.091 -0.11692
+MUSETT_T2_DSSD_Y76_T 966.385 -0.116762
+MUSETT_T2_DSSD_Y77_T 966.176 -0.116695
+MUSETT_T2_DSSD_Y78_T 960.237 -0.115989
+MUSETT_T2_DSSD_Y79_T 971.862 -0.117388
+MUSETT_T2_DSSD_Y80_T 958.107 -0.115747
+MUSETT_T2_DSSD_Y81_T 974.809 -0.117739
+MUSETT_T2_DSSD_Y82_T 966.661 -0.116783
+MUSETT_T2_DSSD_Y83_T 976.466 -0.11797
+MUSETT_T2_DSSD_Y84_T 969.683 -0.117144
+MUSETT_T2_DSSD_Y85_T 981.048 -0.118525
+MUSETT_T2_DSSD_Y86_T 962.11 -0.116242
+MUSETT_T2_DSSD_Y87_T 971.816 -0.117371
+MUSETT_T2_DSSD_Y88_T 974.181 -0.117701
+MUSETT_T2_DSSD_Y89_T 979.537 -0.118331
+MUSETT_T2_DSSD_Y90_T 947.803 -0.114477
+MUSETT_T2_DSSD_Y91_T 979.044 -0.118283
+MUSETT_T2_DSSD_Y92_T 950.053 -0.114763
+MUSETT_T2_DSSD_Y93_T 986.328 -0.119174
+MUSETT_T2_DSSD_Y94_T 945.736 -0.114242
+MUSETT_T2_DSSD_Y95_T 926.3 -0.111864
+MUSETT_T2_DSSD_Y96_T 991.309 -0.119806
+MUSETT_T2_DSSD_Y97_T 914.871 -0.110525
+MUSETT_T2_DSSD_Y98_T 854.155 -0.102981
+MUSETT_T2_DSSD_Y99_T 870.733 -0.104976
+MUSETT_T2_DSSD_Y100_T 924.467 -0.111703
+MUSETT_T2_DSSD_Y101_T 878.476 -0.105936
+MUSETT_T2_DSSD_Y102_T 928.251 -0.11214
+MUSETT_T2_DSSD_Y103_T 876.793 -0.10575
+MUSETT_T2_DSSD_Y104_T 927.531 -0.112066
+MUSETT_T2_DSSD_Y105_T 884.881 -0.106741
+MUSETT_T2_DSSD_Y106_T 924.057 -0.111623
+MUSETT_T2_DSSD_Y107_T 881.171 -0.10628
+MUSETT_T2_DSSD_Y108_T 924.408 -0.111663
+MUSETT_T2_DSSD_Y109_T 893.636 -0.107805
+MUSETT_T2_DSSD_Y110_T 923.243 -0.111507
+MUSETT_T2_DSSD_Y111_T 894.919 -0.107966
+MUSETT_T2_DSSD_Y112_T 927.33 -0.112025
+MUSETT_T2_DSSD_Y113_T 885.067 -0.106759
+MUSETT_T2_DSSD_Y114_T 932.767 -0.112691
+MUSETT_T2_DSSD_Y115_T 898.226 -0.108381
+MUSETT_T2_DSSD_Y116_T 916.909 -0.110746
+MUSETT_T2_DSSD_Y117_T 896.617 -0.108195
+MUSETT_T2_DSSD_Y118_T 926.674 -0.111938
+MUSETT_T2_DSSD_Y119_T 896.617 -0.108195
+MUSETT_T2_DSSD_Y120_T 919.012 -0.110997
+MUSETT_T2_DSSD_Y121_T 899.421 -0.108519
+MUSETT_T2_DSSD_Y122_T 905.068 -0.109308
+MUSETT_T2_DSSD_Y123_T 900.193 -0.10863
+MUSETT_T2_DSSD_Y124_T 906.665 -0.109474
+MUSETT_T2_DSSD_Y125_T 901.229 -0.108768
+MUSETT_T2_DSSD_Y126_T 896.011 -0.108189
+MUSETT_T2_DSSD_Y127_T 899.526 -0.108639
+MUSETT_T2_DSSD_Y128_T 897.311 -0.108297
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..cd7ff8fe4199ae797993f810d8820b5cb2a6c435
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X1_T 900.293 -0.108862
+MUSETT_T3_DSSD_X2_T 898.105 -0.108693
+MUSETT_T3_DSSD_X3_T 904.446 -0.109485
+MUSETT_T3_DSSD_X4_T 891.538 -0.107803
+MUSETT_T3_DSSD_X5_T 912.143 -0.110421
+MUSETT_T3_DSSD_X6_T 905.108 -0.109445
+MUSETT_T3_DSSD_X7_T 905.421 -0.109588
+MUSETT_T3_DSSD_X8_T 903.963 -0.109312
+MUSETT_T3_DSSD_X9_T 911.321 -0.110301
+MUSETT_T3_DSSD_X10_T 897.274 -0.10849
+MUSETT_T3_DSSD_X11_T 919.499 -0.111327
+MUSETT_T3_DSSD_X12_T 897.684 -0.108538
+MUSETT_T3_DSSD_X13_T 921.109 -0.111495
+MUSETT_T3_DSSD_X14_T 902.052 -0.10908
+MUSETT_T3_DSSD_X15_T 929.489 -0.112521
+MUSETT_T3_DSSD_X16_T 896.795 -0.10844
+MUSETT_T3_DSSD_X17_T 937.068 -0.11347
+MUSETT_T3_DSSD_X18_T 899.348 -0.108733
+MUSETT_T3_DSSD_X19_T 930.942 -0.112717
+MUSETT_T3_DSSD_X20_T 896.431 -0.108382
+MUSETT_T3_DSSD_X21_T 927.894 -0.112335
+MUSETT_T3_DSSD_X22_T 884.13 -0.106861
+MUSETT_T3_DSSD_X23_T 932.632 -0.112964
+MUSETT_T3_DSSD_X24_T 888.209 -0.107368
+MUSETT_T3_DSSD_X25_T 935.332 -0.113245
+MUSETT_T3_DSSD_X26_T 888.186 -0.107364
+MUSETT_T3_DSSD_X27_T 929.857 -0.11258
+MUSETT_T3_DSSD_X28_T 878.223 -0.106155
+MUSETT_T3_DSSD_X29_T 937.136 -0.113476
+MUSETT_T3_DSSD_X30_T 865.76 -0.104634
+MUSETT_T3_DSSD_X31_T 866.015 -0.104661
+MUSETT_T3_DSSD_X32_T 935.398 -0.113256
+MUSETT_T3_DSSD_X33_T 996.617 -0.120654
+MUSETT_T3_DSSD_X34_T 938.354 -0.113591
+MUSETT_T3_DSSD_X35_T 952.054 -0.115254
+MUSETT_T3_DSSD_X36_T 1001.37 -0.121233
+MUSETT_T3_DSSD_X37_T 956.534 -0.115822
+MUSETT_T3_DSSD_X38_T 999.766 -0.121035
+MUSETT_T3_DSSD_X39_T 958.488 -0.116042
+MUSETT_T3_DSSD_X40_T 1006.69 -0.121885
+MUSETT_T3_DSSD_X41_T 950.724 -0.115096
+MUSETT_T3_DSSD_X42_T 996.509 -0.120628
+MUSETT_T3_DSSD_X43_T 965.196 -0.11686
+MUSETT_T3_DSSD_X44_T 1000.74 -0.12115
+MUSETT_T3_DSSD_X45_T 969.308 -0.117385
+MUSETT_T3_DSSD_X46_T 987.489 -0.119523
+MUSETT_T3_DSSD_X47_T 974.569 -0.118019
+MUSETT_T3_DSSD_X48_T 986.58 -0.119405
+MUSETT_T3_DSSD_X49_T 972.643 -0.117779
+MUSETT_T3_DSSD_X50_T 988.858 -0.119693
+MUSETT_T3_DSSD_X51_T 970.352 -0.117496
+MUSETT_T3_DSSD_X52_T 984.595 -0.119177
+MUSETT_T3_DSSD_X53_T 972.778 -0.117795
+MUSETT_T3_DSSD_X54_T 992.422 -0.120114
+MUSETT_T3_DSSD_X55_T 984.9 -0.119273
+MUSETT_T3_DSSD_X56_T 985.228 -0.119229
+MUSETT_T3_DSSD_X57_T 974.806 -0.118031
+MUSETT_T3_DSSD_X58_T 978.048 -0.118386
+MUSETT_T3_DSSD_X59_T 981.032 -0.118805
+MUSETT_T3_DSSD_X60_T 982.136 -0.11886
+MUSETT_T3_DSSD_X61_T 978.727 -0.118524
+MUSETT_T3_DSSD_X62_T 963.403 -0.116582
+MUSETT_T3_DSSD_X63_T 967.055 -0.117029
+MUSETT_T3_DSSD_X64_T 983.561 -0.119127
+MUSETT_T3_DSSD_X65_T 894.433 -0.107896
+MUSETT_T3_DSSD_X66_T 862.689 -0.104124
+MUSETT_T3_DSSD_X67_T 867.813 -0.104728
+MUSETT_T3_DSSD_X68_T 885.342 -0.106793
+MUSETT_T3_DSSD_X69_T 867.895 -0.104753
+MUSETT_T3_DSSD_X70_T 898.089 -0.108336
+MUSETT_T3_DSSD_X71_T 873.835 -0.105492
+MUSETT_T3_DSSD_X72_T 891.27 -0.107522
+MUSETT_T3_DSSD_X73_T 883.843 -0.106693
+MUSETT_T3_DSSD_X74_T 897.245 -0.108252
+MUSETT_T3_DSSD_X75_T 879.494 -0.10614
+MUSETT_T3_DSSD_X76_T 887.829 -0.107093
+MUSETT_T3_DSSD_X77_T 883.805 -0.106708
+MUSETT_T3_DSSD_X78_T 892.007 -0.107599
+MUSETT_T3_DSSD_X79_T 882.86 -0.106567
+MUSETT_T3_DSSD_X80_T 888.126 -0.107137
+MUSETT_T3_DSSD_X81_T 891.887 -0.107671
+MUSETT_T3_DSSD_X82_T 884.874 -0.10675
+MUSETT_T3_DSSD_X83_T 896.27 -0.108216
+MUSETT_T3_DSSD_X84_T 887.525 -0.107055
+MUSETT_T3_DSSD_X85_T 888.15 -0.107225
+MUSETT_T3_DSSD_X86_T 880.15 -0.106145
+MUSETT_T3_DSSD_X87_T 899.039 -0.108561
+MUSETT_T3_DSSD_X88_T 788.143 -0.126949
+MUSETT_T3_DSSD_X89_T 899.371 -0.108609
+MUSETT_T3_DSSD_X90_T 876.122 -0.105647
+MUSETT_T3_DSSD_X91_T 896.002 -0.108191
+MUSETT_T3_DSSD_X92_T 869.978 -0.1049
+MUSETT_T3_DSSD_X93_T 905.511 -0.109337
+MUSETT_T3_DSSD_X94_T 869.213 -0.10481
+MUSETT_T3_DSSD_X95_T 859.472 -0.103629
+MUSETT_T3_DSSD_X96_T 900.32 -0.108709
+MUSETT_T3_DSSD_X97_T 979.288 -0.118278
+MUSETT_T3_DSSD_X98_T 985.824 -0.119126
+MUSETT_T3_DSSD_X99_T 991.541 -0.119789
+MUSETT_T3_DSSD_X100_T 984.211 -0.118879
+MUSETT_T3_DSSD_X101_T 991.866 -0.119851
+MUSETT_T3_DSSD_X102_T 986.603 -0.119186
+MUSETT_T3_DSSD_X103_T 1007.5 -0.121753
+MUSETT_T3_DSSD_X104_T 987.195 -0.119241
+MUSETT_T3_DSSD_X105_T 1008.13 -0.121824
+MUSETT_T3_DSSD_X106_T 987.225 -0.119256
+MUSETT_T3_DSSD_X107_T 1004.87 -0.121446
+MUSETT_T3_DSSD_X108_T 979.507 -0.118304
+MUSETT_T3_DSSD_X109_T 1008.48 -0.121893
+MUSETT_T3_DSSD_X110_T 974.374 -0.117687
+MUSETT_T3_DSSD_X111_T 1012.14 -0.122347
+MUSETT_T3_DSSD_X112_T 978.317 -0.118161
+MUSETT_T3_DSSD_X113_T 1008.38 -0.121883
+MUSETT_T3_DSSD_X114_T 967.787 -0.116863
+MUSETT_T3_DSSD_X115_T 1014.86 -0.122684
+MUSETT_T3_DSSD_X116_T 962.99 -0.116299
+MUSETT_T3_DSSD_X117_T 1023.57 -0.123722
+MUSETT_T3_DSSD_X118_T 968.345 -0.11693
+MUSETT_T3_DSSD_X119_T 1033.42 -0.124938
+MUSETT_T3_DSSD_X120_T 965.822 -0.116619
+MUSETT_T3_DSSD_X121_T 1015.34 -0.122709
+MUSETT_T3_DSSD_X122_T 951.022 -0.114804
+MUSETT_T3_DSSD_X123_T 1014.72 -0.12265
+MUSETT_T3_DSSD_X124_T 952.48 -0.114986
+MUSETT_T3_DSSD_X125_T 1026.27 -0.124061
+MUSETT_T3_DSSD_X126_T 949.104 -0.114558
+MUSETT_T3_DSSD_X127_T 942.714 -0.11381
+MUSETT_T3_DSSD_X128_T 1019.9 -0.123313
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a5d1e2b960c0c2e0f6ff362782bcb378748bf1e7
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y1_T 983.985 -0.118941
+MUSETT_T3_DSSD_Y2_T 970.371 -0.117174
+MUSETT_T3_DSSD_Y3_T 984.045 -0.118815
+MUSETT_T3_DSSD_Y4_T 977.123 -0.118075
+MUSETT_T3_DSSD_Y5_T 985.023 -0.118931
+MUSETT_T3_DSSD_Y6_T 985.112 -0.119048
+MUSETT_T3_DSSD_Y7_T 990.894 -0.119638
+MUSETT_T3_DSSD_Y8_T 978.827 -0.118272
+MUSETT_T3_DSSD_Y9_T 996.439 -0.12034
+MUSETT_T3_DSSD_Y10_T 969.011 -0.117093
+MUSETT_T3_DSSD_Y11_T 1006.18 -0.121551
+MUSETT_T3_DSSD_Y12_T 970.24 -0.117251
+MUSETT_T3_DSSD_Y13_T 1001.89 -0.120998
+MUSETT_T3_DSSD_Y14_T 968.513 -0.117006
+MUSETT_T3_DSSD_Y15_T 996.258 -0.120321
+MUSETT_T3_DSSD_Y16_T 964.281 -0.116506
+MUSETT_T3_DSSD_Y17_T 1002.35 -0.121073
+MUSETT_T3_DSSD_Y18_T 956.368 -0.115546
+MUSETT_T3_DSSD_Y19_T 1008.58 -0.121839
+MUSETT_T3_DSSD_Y20_T 956.591 -0.115552
+MUSETT_T3_DSSD_Y21_T 1008.51 -0.121856
+MUSETT_T3_DSSD_Y22_T 951.968 -0.114994
+MUSETT_T3_DSSD_Y23_T 1015.07 -0.122649
+MUSETT_T3_DSSD_Y24_T 944.162 -0.114032
+MUSETT_T3_DSSD_Y25_T 1018.24 -0.12302
+MUSETT_T3_DSSD_Y26_T 947.224 -0.114409
+MUSETT_T3_DSSD_Y27_T 1007.23 -0.121668
+MUSETT_T3_DSSD_Y28_T 937.754 -0.113241
+MUSETT_T3_DSSD_Y29_T 1016.39 -0.122794
+MUSETT_T3_DSSD_Y30_T 928.777 -0.112154
+MUSETT_T3_DSSD_Y31_T 920.954 -0.11121
+MUSETT_T3_DSSD_Y32_T 1017.37 -0.122927
+MUSETT_T3_DSSD_Y33_T 905.69 -0.109382
+MUSETT_T3_DSSD_Y34_T 879.206 -0.105997
+MUSETT_T3_DSSD_Y35_T 885.638 -0.106772
+MUSETT_T3_DSSD_Y36_T 912.926 -0.110263
+MUSETT_T3_DSSD_Y37_T 897.352 -0.108217
+MUSETT_T3_DSSD_Y38_T 909.287 -0.109804
+MUSETT_T3_DSSD_Y39_T 900.017 -0.108527
+MUSETT_T3_DSSD_Y40_T 899.078 -0.108568
+MUSETT_T3_DSSD_Y41_T 894.065 -0.107825
+MUSETT_T3_DSSD_Y42_T 904.332 -0.109195
+MUSETT_T3_DSSD_Y43_T 902.563 -0.108862
+MUSETT_T3_DSSD_Y44_T 907.563 -0.109593
+MUSETT_T3_DSSD_Y45_T 907.447 -0.109456
+MUSETT_T3_DSSD_Y46_T 898.134 -0.10846
+MUSETT_T3_DSSD_Y47_T 913.155 -0.110152
+MUSETT_T3_DSSD_Y48_T 894.272 -0.10799
+MUSETT_T3_DSSD_Y49_T 917.884 -0.110718
+MUSETT_T3_DSSD_Y50_T 897.411 -0.108361
+MUSETT_T3_DSSD_Y51_T 916.39 -0.11056
+MUSETT_T3_DSSD_Y52_T 888.675 -0.107294
+MUSETT_T3_DSSD_Y53_T 925.29 -0.111636
+MUSETT_T3_DSSD_Y54_T 883.52 -0.106654
+MUSETT_T3_DSSD_Y55_T 911.348 -0.109934
+MUSETT_T3_DSSD_Y56_T 884.229 -0.106744
+MUSETT_T3_DSSD_Y57_T 924.685 -0.111581
+MUSETT_T3_DSSD_Y58_T 872.76 -0.105345
+MUSETT_T3_DSSD_Y59_T 925.584 -0.111694
+MUSETT_T3_DSSD_Y60_T 875.902 -0.10573
+MUSETT_T3_DSSD_Y61_T 920.738 -0.1111
+MUSETT_T3_DSSD_Y62_T 870.737 -0.105092
+MUSETT_T3_DSSD_Y63_T 873.601 -0.105446
+MUSETT_T3_DSSD_Y64_T 923.494 -0.11144
+MUSETT_T3_DSSD_Y65_T 951.047 -0.114947
+MUSETT_T3_DSSD_Y66_T 970.943 -0.117288
+MUSETT_T3_DSSD_Y67_T 982.69 -0.118727
+MUSETT_T3_DSSD_Y68_T 945.988 -0.114343
+MUSETT_T3_DSSD_Y69_T 988.906 -0.119474
+MUSETT_T3_DSSD_Y70_T 953.345 -0.115232
+MUSETT_T3_DSSD_Y71_T 992.522 -0.119909
+MUSETT_T3_DSSD_Y72_T 964.745 -0.116618
+MUSETT_T3_DSSD_Y73_T 994.13 -0.120116
+MUSETT_T3_DSSD_Y74_T 952.282 -0.115086
+MUSETT_T3_DSSD_Y75_T 1001.12 -0.120975
+MUSETT_T3_DSSD_Y76_T 955.625 -0.115517
+MUSETT_T3_DSSD_Y77_T 998.108 -0.120606
+MUSETT_T3_DSSD_Y78_T 939.764 -0.11354
+MUSETT_T3_DSSD_Y79_T 999.312 -0.12076
+MUSETT_T3_DSSD_Y80_T 947.183 -0.114462
+MUSETT_T3_DSSD_Y81_T 1004.15 -0.121336
+MUSETT_T3_DSSD_Y82_T 931.288 -0.112491
+MUSETT_T3_DSSD_Y83_T 1015.36 -0.122713
+MUSETT_T3_DSSD_Y84_T 932.714 -0.112672
+MUSETT_T3_DSSD_Y85_T 1018.49 -0.1231
+MUSETT_T3_DSSD_Y86_T 939.668 -0.113544
+MUSETT_T3_DSSD_Y87_T 1006.74 -0.121678
+MUSETT_T3_DSSD_Y88_T 931.355 -0.11252
+MUSETT_T3_DSSD_Y89_T 1015.03 -0.122697
+MUSETT_T3_DSSD_Y90_T 920.222 -0.11114
+MUSETT_T3_DSSD_Y91_T 1018.29 -0.123087
+MUSETT_T3_DSSD_Y92_T 911.599 -0.110106
+MUSETT_T3_DSSD_Y93_T 1010.39 -0.122144
+MUSETT_T3_DSSD_Y94_T 911.098 -0.110026
+MUSETT_T3_DSSD_Y95_T 904.406 -0.109216
+MUSETT_T3_DSSD_Y96_T 1011.64 -0.122274
+MUSETT_T3_DSSD_Y97_T 905.657 -0.109416
+MUSETT_T3_DSSD_Y98_T 891.482 -0.107554
+MUSETT_T3_DSSD_Y99_T 898.972 -0.108473
+MUSETT_T3_DSSD_Y100_T 899.215 -0.108625
+MUSETT_T3_DSSD_Y101_T 902.164 -0.108848
+MUSETT_T3_DSSD_Y102_T 903.69 -0.109168
+MUSETT_T3_DSSD_Y103_T 897.423 -0.108292
+MUSETT_T3_DSSD_Y104_T 905.571 -0.109439
+MUSETT_T3_DSSD_Y105_T 905.477 -0.109288
+MUSETT_T3_DSSD_Y106_T 903.343 -0.109125
+MUSETT_T3_DSSD_Y107_T 910.936 -0.109943
+MUSETT_T3_DSSD_Y108_T 894.177 -0.108006
+MUSETT_T3_DSSD_Y109_T 909.486 -0.109765
+MUSETT_T3_DSSD_Y110_T 894.856 -0.108068
+MUSETT_T3_DSSD_Y111_T 908.693 -0.109672
+MUSETT_T3_DSSD_Y112_T 902.34 -0.108999
+MUSETT_T3_DSSD_Y113_T 915.535 -0.110512
+MUSETT_T3_DSSD_Y114_T 895.161 -0.108126
+MUSETT_T3_DSSD_Y115_T 924.289 -0.111588
+MUSETT_T3_DSSD_Y116_T 903.16 -0.109085
+MUSETT_T3_DSSD_Y117_T 926.875 -0.111915
+MUSETT_T3_DSSD_Y118_T 892.165 -0.107742
+MUSETT_T3_DSSD_Y119_T 909.469 -0.109772
+MUSETT_T3_DSSD_Y120_T 892.528 -0.107789
+MUSETT_T3_DSSD_Y121_T 913.618 -0.11029
+MUSETT_T3_DSSD_Y122_T 885.298 -0.106904
+MUSETT_T3_DSSD_Y123_T 919.137 -0.110947
+MUSETT_T3_DSSD_Y124_T 876.164 -0.105791
+MUSETT_T3_DSSD_Y125_T 920.413 -0.111116
+MUSETT_T3_DSSD_Y126_T 871.593 -0.105224
+MUSETT_T3_DSSD_Y127_T 874.337 -0.105573
+MUSETT_T3_DSSD_Y128_T 928.523 -0.112131
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..123aa411a7c823ee9d78218b42045d68ce15cf07
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
@@ -0,0 +1,140 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 0
+Tcal = 1
+clean = 1
+if Ecal :
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]+1
+            else :
+                strip = MapY[int(ch)-1]+1
+
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]+1
+            else :
+                strip = MapY[int(ch)-1]+1
+
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/calibE0.cal1 b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/calibE0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..5f77c3d04858dd864b1411813497cfbbcbbac345
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/calibE0.cal1
@@ -0,0 +1,1024 @@
+-61662.3 7.52711 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61862.3 7.5515 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61786 7.54225 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61488.6 7.50587 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61896.8 7.55579 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61641.5 7.52453 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61399.4 7.49501 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61236.4 7.47509 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-60986.5 7.4446 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62681.3 7.65148 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62393.5 7.61631 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61925.3 7.55919 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62029.9 7.57195 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62417.6 7.61932 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61275.3 7.47982 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63058.3 7.69749 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62722.2 7.65646 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62134.9 7.58477 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62458.1 7.62423 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63902.7 7.80057 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62519.9 7.63181 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62297.5 7.60463 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62659.6 7.64878 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62852.3 7.67238 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62985.4 7.68854 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63073.7 7.69941 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62632 7.64548 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-63013.4 7.69203 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62579 7.63901 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63401.5 7.7394 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62630 7.64523 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56399 6.88462 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56789.2 6.93221 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55564.2 6.78269 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56333.4 6.87654 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-56040.6 6.84084 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+-10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55909.7 6.82487 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55658.4 6.79421 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56211.8 6.86172 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55874 6.82053 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56164.8 6.85597 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56307.5 6.87343 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56382 6.88247 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+-10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+-10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55911.5 6.82508 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57927.5 7.07116 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57924.8 7.07081 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57746 7.049 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57343.1 6.99988 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58172.2 7.10106 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57237.7 6.98697 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57876.3 7.06488 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57523.5 7.02188 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58500.7 7.14114 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57786.5 7.05393 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57300.4 6.99465 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57790.9 7.05448 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57203.4 6.9828 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57985 7.0782 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57888.7 7.06644 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58127.1 7.09555 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63452.4 7.74561 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63612.1 7.76511 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63338.7 7.73174 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64021.8 7.81515 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63197.4 7.71456 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63968.4 7.80864 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63853.8 7.79469 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63356.4 7.73397 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64117.7 7.82683 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63242.6 7.72007 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63972.5 7.80918 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63941.4 7.8053 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63651.8 7.77009 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63754.3 7.78255 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64292.8 7.84837 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64690.6 7.89693 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61215.8 7.47271 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60865.1 7.42995 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61147.3 7.46434 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61469.6 7.50369 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61379.1 7.49269 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61888.7 7.55484 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61403.2 7.49554 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62166.5 7.58877 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61896.4 7.55578 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61572.1 7.51618 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61720.5 7.53424 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62796.5 7.66557 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61868.1 7.55224 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60999.1 7.44621 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61368.2 7.49129 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62166.8 7.58877 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57169.7 6.97872 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57564 7.02681 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57724.2 7.04642 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57113.1 6.97176 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58126.5 7.0955 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57746.5 7.04909 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57665.4 7.03921 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57244.7 6.98784 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57357.8 7.00171 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57943.6 7.0732 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57279.1 6.99197 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57628.2 7.03471 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58567.7 7.1494 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58013.5 7.08178 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57681.5 7.04111 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57795.4 7.05508 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59002.3 7.20244 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59192.2 7.22562 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58512.8 7.14267 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58671.3 7.16207 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58171.6 7.10101 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58350.5 7.12281 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.4 7.11445 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58508.2 7.1421 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58511.7 7.14253 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58653.9 7.15989 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58550.4 7.14724 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59318.4 7.24097 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57853 7.06214 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58498.4 7.14087 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58426.4 7.13213 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59512.6 7.26467 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60443.5 -7.37839 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60908.5 -7.43514 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61060.2 -7.45367 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59984.4 -7.32237 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60129.5 -7.3401 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60783.1 -7.41989 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60431 -7.37691 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60140.7 -7.34142 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59998.4 -7.32403 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60395.7 -7.37254 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60028.3 -7.32774 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60887.8 -7.43267 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61066.5 -7.45441 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61164 -7.46632 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60739.8 -7.41458 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60443.5 -7.37838 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60544.4 -7.39071 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60303 -7.3612 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60143.3 -7.34174 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60328.6 -7.3644 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60395.9 -7.37256 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60276 -7.35798 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59684.2 -7.28572 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60187.9 -7.34719 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.4 -7.29698 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60128.6 -7.33997 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60450.5 -7.37922 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59890.5 -7.31089 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59647.3 -7.2812 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59834.9 -7.30412 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60999.1 -7.44624 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56552.5 -6.90341 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57074.5 -6.96718 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56536.5 -6.9015 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57036.3 -6.96248 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57405.1 -7.0075 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57259.2 -6.98972 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56419.6 -6.88718 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56461.1 -6.89226 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56951.6 -6.95213 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56800 -6.93367 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56600.5 -6.90927 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56511.5 -6.8984 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56870.5 -6.94221 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56993.6 -6.95727 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57679.7 -7.04103 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56560.6 -6.90438 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57546.6 -7.02477 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57035.8 -6.96245 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56800.6 -6.93377 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56505.8 -6.89773 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57161.4 -6.97779 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56855 -6.94036 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56619.7 -6.91168 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57621.8 -7.03399 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57359.7 -7.00197 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56825.9 -6.93676 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57031.5 -6.96191 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57239.3 -6.98735 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57254.8 -6.98918 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57074.4 -6.96716 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57574.5 -7.02822 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57912.4 -7.06943 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+61002.8 -7.44668 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61155.3 -7.4653 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61053.3 -7.45282 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61373.4 -7.4919 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60489.7 -7.38403 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61580.3 -7.51716 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60895.6 -7.4336 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60400.3 -7.3731 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61676.2 -7.52889 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61107.3 -7.45944 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61113.2 -7.46014 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61230.4 -7.47441 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60593.4 -7.39669 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61412.2 -7.49666 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61676.7 -7.52894 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61114.5 -7.46029 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62335.5 -7.60932 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61110.8 -7.45984 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61589.5 -7.51825 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62064.5 -7.57624 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61004.9 -7.44692 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60900.3 -7.43416 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61810.8 -7.54524 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61439.5 -7.49992 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61153 -7.46501 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61309.9 -7.48418 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61160.3 -7.46589 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61470.5 -7.50377 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61862.5 -7.55157 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61676 -7.52886 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62387.3 -7.61565 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60904.4 -7.43464 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56381.2 -6.88248 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56647.7 -6.91501 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56593.9 -6.90848 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56466.6 -6.8929 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56205.1 -6.86097 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56339.2 -6.87735 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56071.1 -6.84463 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56586.9 -6.90762 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56922.8 -6.94858 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56073.7 -6.84493 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57080.7 -6.96791 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57414.3 -7.00859 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56582.5 -6.9071 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56583.6 -6.90725 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56679.2 -6.91888 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56421.5 -6.8874 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56904.4 -6.94638 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57127.8 -6.97364 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56965.6 -6.9538 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56822.1 -6.93632 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57302 -6.99491 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.2 -6.90362 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56421.8 -6.88745 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56645.4 -6.91475 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57398.8 -7.00675 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57237.3 -6.98696 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56689 -6.92007 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56011.6 -6.83742 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56467.7 -6.89303 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55922.3 -6.8265 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56957.2 -6.95281 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56586.5 -6.90758 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62384.5 7.61517 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62210.4 7.59389 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62273.5 7.60161 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62019.1 7.5706 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61476.5 7.50432 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61597 7.51908 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62319.3 7.60717 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61416.3 7.49697 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61327.1 7.48611 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61486.5 7.50558 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61673.4 7.52832 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61732.6 7.53556 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61963.2 7.56376 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61418.2 7.49719 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61209 7.47165 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61987.6 7.56667 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62554.4 7.63592 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61756 7.53848 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62264.1 7.60048 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61953.7 7.56258 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62913.2 7.67967 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62120.9 7.583 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62709 7.65477 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62390 7.61587 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62229.7 7.59629 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61997.7 7.56794 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-62036.5 7.57262 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61752 7.53798 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61655.6 7.52623 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62767.5 7.66194 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61803 7.54422 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62761.8 7.66122 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58303.5 7.11703 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58372.5 7.12549 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58359.9 7.12397 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58262.2 7.11204 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58041 7.08509 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58261 7.11167 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58055.7 7.0867 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58647.4 7.15904 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58203.9 7.10488 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58893.9 7.18895 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58051.5 7.08632 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58539.4 7.14586 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58554.4 7.14758 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59335.9 7.24309 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58725.8 7.16875 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58465.7 7.13677 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.8 7.06394 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58529.8 7.14462 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-57972.8 7.07665 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57725.1 7.04637 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57946.6 7.07339 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57919.5 7.07013 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57971 7.07643 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57812.9 7.05708 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58059.5 7.08722 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57860.9 7.06295 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58481.2 7.13869 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57673.5 7.04005 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57733.9 7.04747 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58243 7.10961 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.2 7.09391 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58246.7 7.11007 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61009.3 7.44733 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61630.7 7.52317 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61471.8 7.50372 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61716.9 7.53361 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61893.5 7.55524 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.6 7.48633 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61623.4 7.52221 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61911.8 7.55752 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61279.1 7.48026 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62438.1 7.62175 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61937.8 7.56062 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62078.7 7.57786 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61496.4 7.50682 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61721.2 7.53417 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61321.1 7.48534 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61930.9 7.55971 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63425.9 7.7423 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63726 7.77898 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.8 7.83822 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63931 7.80396 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64114.7 7.8264 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63881.4 7.7979 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64089.1 7.82321 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64226 7.83998 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64162.8 7.83225 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64227.3 7.84014 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63324.3 7.72992 0.00 !Mu1ChX91ERaw[C.o2At2Ch11]
+-63377.9 7.73646 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64592.4 7.88475 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64051.2 7.81864 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63785.3 7.78625 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63425.1 7.74221 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56277.1 6.86963 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56696.4 6.92087 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56524.2 6.89973 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56421.9 6.88734 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56516.9 6.89896 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-56987.1 6.95627 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57341.9 6.99957 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56590.4 6.90785 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56842.5 6.93859 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57029.9 6.96151 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57840.1 7.06034 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57754.1 7.04987 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57718.4 7.04556 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57495 7.01832 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57673.7 7.0401 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-58035.2 7.08421 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57254.3 6.98888 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57309.6 6.99565 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56813.7 6.93513 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57684.3 7.04141 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57273.6 6.99128 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57263.3 6.99002 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56331.2 6.87626 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58331 7.12035 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57448.3 7.0126 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57763.7 7.05109 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57724.2 7.04628 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57458.3 7.01385 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57586.5 7.02947 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57671.5 7.03982 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57076.6 6.9672 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57818.9 7.05784 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59628.2 -7.27891 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60484.2 -7.3834 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59719.3 -7.29006 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59358 -7.24601 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60209.4 -7.34991 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60023.9 -7.32724 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59427.4 -7.25442 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59479.8 -7.26081 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.6 -7.25995 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59661.5 -7.28303 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59523 -7.2661 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59520.7 -7.26582 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60207.7 -7.3497 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59281.6 -7.23662 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59499.5 -7.26329 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59822.2 -7.30262 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62231 -7.59672 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62517.6 -7.63166 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62462.5 -7.62493 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62047 -7.57417 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62207.3 -7.59375 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62362.9 -7.61277 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62017.5 -7.57064 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61713.9 -7.53355 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61449.1 -7.50123 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62086.1 -7.57898 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62077.7 -7.57796 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62287.6 -7.60362 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62027.9 -7.5719 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61668.6 -7.52799 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61804.8 -7.54468 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115.7 -6.85022 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56255.7 -6.86728 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55634.9 -6.79153 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55640.9 -6.79227 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55384.3 -6.76092 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56420.4 -6.88745 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55380.9 -6.76051 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55934.8 -6.82817 0.00 !Mu1ChY40ERaw[C.o3At3Ch8]
+56036.5 -6.84053 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56149.2 -6.85434 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55509.9 -6.77625 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56637.3 -6.9139 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55637.9 -6.79188 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55730.3 -6.80315 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55751.6 -6.80582 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55760.9 -6.80693 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.7 -6.9819 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56616.7 -6.91132 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56565.1 -6.90504 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56007.5 -6.83694 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56838.9 -6.93846 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56277 -6.86982 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56475.8 -6.89415 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56394.9 -6.88425 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57286.1 -6.99307 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57107.7 -6.97128 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56704.7 -6.92209 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57329.2 -6.99832 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57398.8 -7.00677 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57025.8 -6.96125 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56179.4 -6.85794 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57294.5 -6.99407 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61036 -7.45079 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61615.2 -7.52147 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61327.7 -7.48646 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61616.9 -7.52169 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61289.5 -7.48175 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60072.3 -7.33313 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60461.8 -7.38072 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61147.5 -7.46439 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60324.6 -7.36394 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61243.3 -7.47609 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60892.2 -7.43321 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60362.6 -7.36861 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60563.4 -7.39312 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60969.5 -7.44272 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60632 -7.40146 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61354.5 -7.48966 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61129 -7.46218 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61142.4 -7.46376 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61098.2 -7.45836 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60505 -7.38602 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60475.6 -7.38236 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61198.3 -7.47058 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60653.8 -7.40421 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60610.3 -7.39887 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61084.6 -7.45673 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61281.6 -7.48082 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60759.5 -7.41709 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60908.7 -7.43532 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60520.1 -7.38782 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61330.5 -7.48678 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61609.9 -7.52084 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60752.2 -7.41622 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55866.2 -6.81972 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55510.1 -6.77629 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55739.1 -6.80422 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55602.7 -6.78757 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55779.5 -6.80916 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55452.6 -6.76931 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55433.8 -6.76695 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56175.8 -6.85753 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55295 -6.75003 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55267.6 -6.74664 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55913.4 -6.82548 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55219 -6.74076 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55914.7 -6.82563 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56088.3 -6.84683 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56128.7 -6.85177 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.7 -6.9068 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54791.9 -6.68861 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55573.5 -6.78397 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55177.3 -6.73564 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.9 -6.722 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55271.1 -6.74706 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55426.4 -6.76607 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55308.9 -6.7517 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55560.5 -6.78242 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55828.4 -6.8151 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55461.9 -6.77042 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.4 -6.69404 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55154.2 -6.73277 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55218.5 -6.74067 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55198.9 -6.73821 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55347.2 -6.75638 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56270.5 -6.86904 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62771.8 7.66248 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62536.2 7.63367 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62923.2 7.68092 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62099.2 7.5803 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62071.6 7.577 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62762.5 7.66131 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62536.6 7.63372 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62863.4 7.6736 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62977.6 7.68755 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62169.2 7.58889 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62486.2 7.62758 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62494 7.62855 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62591.4 7.6404 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62596.5 7.64104 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62693.3 7.65283 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63431.9 7.74304 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62275.5 7.60186 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61847 7.54956 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61648.9 7.52542 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61472.2 7.5038 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61487.7 7.50573 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62323.6 7.60772 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62160.6 7.58783 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61801.5 7.54404 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61589.4 7.51813 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61837.9 7.54843 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61997.2 7.56788 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61886.9 7.55441 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61669.6 7.52787 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61317.6 7.48493 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62385.4 7.6153 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61544.8 7.51271 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59005.1 7.20263 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58125.4 7.0952 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58621 7.15577 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58420.8 7.13128 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58182.1 7.10215 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58179.5 7.10183 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58382.7 7.12665 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57951.6 7.074 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57619.4 7.03346 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58602.8 7.15349 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58763.6 7.17317 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58295.3 7.11601 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58611.5 7.15458 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58569.5 7.14945 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58368.6 7.12489 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58524.7 7.144 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57829.7 7.05919 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57177.7 6.97958 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58151 7.0984 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57925 7.07083 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57600.2 7.03119 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57219.8 6.9847 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57855.4 7.06228 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57682.2 7.04116 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57912.6 7.06929 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57598.9 7.03102 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57919.6 7.07016 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.5 6.9577 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57498.2 7.01871 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56729.1 6.92483 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57500.6 7.01901 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57910.6 7.06904 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63311 7.72824 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64991.8 7.93347 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-63994.5 7.8117 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63750.3 7.78186 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64408.5 7.86228 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63629 7.76702 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63438.8 7.74388 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63358.3 7.73399 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63144.6 7.70793 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63812.1 7.7894 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63662.4 7.77117 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63876.9 7.79733 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63771.1 7.78444 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63652.1 7.7699 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63600.3 7.76358 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63256.4 7.72158 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63333.7 7.73107 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63150 7.70859 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63204.5 7.71524 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63982.1 7.81015 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63771.3 7.78446 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63682.7 7.7737 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63921.1 7.80269 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63090.3 7.7013 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63548.7 7.75733 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63345.7 7.73257 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63537.7 7.75593 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63267.1 7.72292 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64614.3 7.88733 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63737 7.78019 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63627.5 7.76682 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59011.6 7.20345 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58536.3 7.14543 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58294.5 7.11592 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58764.5 7.17328 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59388.2 7.24938 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59353.9 7.24523 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58868.9 7.18606 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59020.4 7.20454 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59051.2 7.20827 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59067.7 7.21031 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58780.6 7.17527 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59011.8 7.20348 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58685.6 7.16369 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60313.6 7.36243 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58947.7 7.1956 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58640.6 7.15819 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59256.4 7.23333 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59391.4 7.24979 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59741.5 7.29254 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59153 7.2207 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59659.3 7.28255 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60043.5 7.32941 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59492.9 7.26218 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59355.9 7.2455 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60079 7.3337 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58759.7 7.17268 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59106.3 7.21501 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59356.4 7.24556 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58905.4 7.19045 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58909 7.19091 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59139.8 7.21905 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59244.4 7.23184 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63180.3 -7.71254 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63958.5 -7.80757 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62563.9 -7.63734 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63393.8 -7.73864 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62965.3 -7.6863 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62695.2 -7.65332 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63071 -7.6992 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62684.7 -7.65205 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62805.2 -7.66674 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63405.9 -7.74008 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+63006 -7.69129 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62613.8 -7.64344 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62135.8 -7.58506 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62797.8 -7.66584 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+63003.9 -7.69104 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63451.5 -7.74566 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61680.4 -7.52939 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60963.7 -7.44202 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60731.3 -7.4136 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62044.4 -7.57386 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.9 -7.46121 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60932 -7.4381 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62091.8 -7.57965 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61042.5 -7.45157 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61080.2 -7.45622 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61569 -7.51583 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61088.9 -7.45724 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61401.8 -7.49545 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61590.8 -7.51854 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61456.7 -7.50214 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61348.2 -7.48891 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61814.6 -7.54586 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56310.4 -6.87387 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56475.6 -6.89413 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56843.7 -6.93897 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56709.9 -6.9227 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+57006.5 -6.95894 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56922.7 -6.94871 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56395.9 -6.88437 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56437.5 -6.88946 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56168.1 -6.85657 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58137.4 -7.09691 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56752.1 -6.92786 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56268.3 -6.86879 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57248.3 -6.98843 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57237.7 -6.98715 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57062.5 -6.96574 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56700.2 -6.92152 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57609.4 -7.03252 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57045.1 -6.96368 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57893.4 -7.06716 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57432.1 -7.01085 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57327.3 -6.9981 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58593.6 -7.15267 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57713.2 -7.04516 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57801 -7.05589 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57750.1 -7.0497 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57564.6 -7.02705 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57513.2 -7.02079 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58298.6 -7.11669 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57883.6 -7.066 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57333.9 -6.99889 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57877.7 -7.06529 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58222.3 -7.10732 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59352.4 -7.24534 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59653 -7.28202 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59466.7 -7.25926 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60421 -7.37573 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59563.3 -7.27104 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59865.2 -7.30789 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59568.1 -7.27161 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59903.1 -7.31254 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59874.2 -7.30895 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59565.9 -7.27135 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59951.4 -7.31844 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60102.6 -7.33689 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59329 -7.24242 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59973.3 -7.32106 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59369.2 -7.24734 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60205.5 -7.34945 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60559.1 -7.39262 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61223.9 -7.47379 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60555.5 -7.39217 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61267.8 -7.47916 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61183.2 -7.46879 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60877.4 -7.43143 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60964.7 -7.44213 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61316.7 -7.48517 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60889.6 -7.43289 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60834.9 -7.42623 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61475.4 -7.50452 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60713.8 -7.41149 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61139.9 -7.46349 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60586.2 -7.39585 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61091.2 -7.45753 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61463 -7.50289 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56883.7 -6.94393 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55958.3 -6.83096 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56259.7 -6.86775 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56620.9 -6.91184 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56390.1 -6.88368 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56741.9 -6.92663 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55881.7 -6.82158 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57242.5 -6.98773 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56047.6 -6.84185 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56706.4 -6.92227 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56618.3 -6.91153 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57516.3 -7.02116 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57052.7 -6.96458 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56701.3 -6.92167 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57023.2 -6.96095 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56155.3 -6.85506 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56480.1 -6.89468 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57291 -6.99365 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56601.1 -6.90948 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56864.7 -6.94167 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56504.8 -6.89772 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56531 -6.90085 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56803.1 -6.93407 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56744.6 -6.92696 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56339.6 -6.87753 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57094.7 -6.96973 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57471.8 -7.01574 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56243.7 -6.86585 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56920.2 -6.94841 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56357.9 -6.87972 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56171.4 -6.85698 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62432 7.62115 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61898.1 7.55599 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62261.8 7.60035 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62377.7 7.61452 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61987.1 7.56678 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61925.3 7.55922 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62100.7 7.58066 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61621.8 7.5222 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61764.3 7.53956 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61918.3 7.55834 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61881.5 7.55388 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62903 7.67858 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61674.1 7.52859 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61812.4 7.54541 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61555.6 7.51408 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62627.4 7.64492 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63656.5 7.77047 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63108 7.70354 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62943.4 7.68346 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62837.7 7.67058 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62676.4 7.65089 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.8 7.70503 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63798 7.78783 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63791 7.78695 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62795 7.6654 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63502.6 7.75172 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63532.1 7.75542 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63309.9 7.72829 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63637.8 7.76831 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63587.2 7.76214 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64531.7 7.87739 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63742.8 7.78111 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59430.3 7.25494 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59220.2 7.22924 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58174.6 7.10163 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58373.6 7.12581 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58848.1 7.18369 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-59012.9 7.20387 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59307.2 7.23977 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58677.9 7.16294 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59283.1 7.23677 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58956.4 7.1969 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-59043.5 7.20751 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59047.9 7.20805 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59414.1 7.25268 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58832.8 7.18171 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59184.6 7.22469 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57410.4 7.00817 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57223.7 6.98537 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56941.7 6.95094 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57306.3 6.99545 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56939.2 6.95063 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57390.5 7.00573 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56638.3 6.91393 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57358.5 7.00183 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57684.4 7.04165 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56591.3 6.9082 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57508 7.02016 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57136.1 6.97475 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56380.4 6.88251 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56917.4 6.9481 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56824.5 6.93679 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56577 6.90664 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64140 7.82956 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63839.3 7.79281 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63564.4 7.75927 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63770.4 7.78438 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63671.6 7.77235 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63272.3 7.72359 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64307 7.84993 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62530.8 7.63314 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62672.9 7.65044 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63019 7.69272 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63152.8 7.70897 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63441 7.74419 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64109.3 7.82574 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62453.5 7.62365 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62622.2 7.64425 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63017.2 7.69251 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62453.4 7.62363 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62780.3 7.66354 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62670.1 7.65009 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62554.7 7.63598 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62062.4 7.57587 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62422.6 7.61994 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62402.7 7.61746 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.8 7.58526 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62351.6 7.61123 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62791 7.66488 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62302.7 7.60527 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62078.1 7.57785 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62829.3 7.66952 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.5 7.6367 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62144 7.5859 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62353.9 7.61152 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56131.1 6.85191 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55920.2 6.82616 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55178.7 6.73562 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55783.6 6.8095 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55958 6.83076 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55940.2 6.82857 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55976 6.83293 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55255.5 6.74498 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55479.7 6.77237 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-56040.3 6.84079 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55791.2 6.81044 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55701.6 6.79948 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56738.3 6.92598 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56293.9 6.87171 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55819.1 6.81378 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55694.2 6.79856 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57554.1 7.02556 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56976.8 6.95514 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57518.4 7.02123 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56980.7 6.95562 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58026.2 7.08323 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57191.1 6.98127 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57432 7.01071 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56290.9 6.87137 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56748.2 6.92722 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57901.7 7.06808 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57512.9 7.02056 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57112.4 6.9717 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57653.3 7.03769 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56762.7 6.92904 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57841.9 7.06073 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56524.8 6.89995 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60194.7 -7.34802 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987.9 -7.20075 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60132.2 -7.34041 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59977.5 -7.32152 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59787.4 -7.2983 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59893.4 -7.31122 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59798.6 -7.29963 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60251.3 -7.3549 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60589.5 -7.39622 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60436.6 -7.37756 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60189.7 -7.3474 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59826.4 -7.3031 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59687.2 -7.28606 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59622.1 -7.27818 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60574.8 -7.39447 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59719.2 -7.29002 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62963.1 -7.68601 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63186.9 -7.71331 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62262.3 -7.60044 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62806 -7.6668 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63246.8 -7.72062 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63550.3 -7.75759 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+63016.8 -7.69256 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62986.6 -7.68882 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63522.2 -7.75424 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63478.7 -7.7489 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62643.1 -7.64692 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63429.9 -7.74292 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62483.7 -7.62745 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62960.7 -7.68572 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63085.3 -7.7009 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62969.4 -7.68675 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84715 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56228.6 -6.86391 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55834.6 -6.81583 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55713 -6.80096 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55757 -6.80633 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56228 -6.86384 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55925.9 -6.82695 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55539.7 -6.77979 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55412.1 -6.76422 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185 -6.85859 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55981.8 -6.83375 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55370.8 -6.75918 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55748.9 -6.80537 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55612.3 -6.78871 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55926.3 -6.82699 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55801.2 -6.81172 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56670.8 -6.9179 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56949.5 -6.9519 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57147.1 -6.97597 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56960.4 -6.95318 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56493.9 -6.89629 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56963.2 -6.95364 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56581.6 -6.90701 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57050.7 -6.96421 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57076.9 -6.96747 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56623.8 -6.91216 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57493.2 -7.01827 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57089.4 -6.96896 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57586.3 -7.02963 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57044.7 -6.96349 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56777.7 -6.93089 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57421.6 -7.00961 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59437.6 -7.25562 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59994 -7.32351 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59523.9 -7.2662 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59337.1 -7.24336 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59498.6 -7.26303 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58818.6 -7.18002 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59332.2 -7.24276 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+60018.7 -7.32659 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60180.5 -7.3463 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59480.7 -7.26089 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59527.7 -7.26664 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59635.1 -7.27972 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59581.2 -7.27315 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59444.7 -7.25647 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59048.4 -7.20811 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59989.5 -7.32298 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62855.4 -7.67285 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62750.4 -7.66003 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62532.7 -7.63346 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62151.3 -7.58691 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.6 -7.57075 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62710.2 -7.65509 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62271.6 -7.60155 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62960 -7.68565 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62677.8 -7.65121 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62626.1 -7.64489 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61878.3 -7.55359 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61999.2 -7.56832 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61924.7 -7.55927 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+61995.6 -7.56788 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61960.5 -7.56357 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61833.6 -7.54812 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56731.4 -6.92523 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56909.9 -6.94702 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56318.3 -6.87484 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55946.5 -6.8294 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56299.8 -6.87252 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56328.7 -6.87609 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55986.5 -6.8343 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55996.3 -6.83546 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55858.1 -6.81861 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56336.4 -6.877 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56504.4 -6.89753 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56280.4 -6.87019 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55801.7 -6.81176 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55903.8 -6.82419 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56672.2 -6.91805 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56668.9 -6.91765 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57102.2 -6.97047 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57033.7 -6.96222 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57102 -6.97059 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+57015.2 -6.95994 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57666.6 -7.03944 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57327.3 -6.99806 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56838.8 -6.9384 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57642.3 -7.0364 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57472.4 -7.01575 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57009.2 -6.95917 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57427.6 -7.01028 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57105.1 -6.97094 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57606 -7.03198 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56852.7 -6.94013 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57287.8 -6.99311 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57526.7 -7.02236 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/calibT0.cal1 b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/calibT0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..09f74dedd1b793c1b5dd151ef57e7311b3f4476e
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/Calibration/double_alpha_Ra220/calibT0.cal1
@@ -0,0 +1,1023 @@
+943.498 -0.114176 0.00 !Mu0ChX1TRaw[Co1At1Ch1]
+954.542 -0.115529 0.00 !Mu0ChX2TRaw[Co1At1Ch2]
+955.481 -0.115657 0.00 !Mu0ChX3TRaw[Co1At1Ch3]
+969.726 -0.117409 0.00 !Mu0ChX4TRaw[Co1At1Ch4]
+969.528 -0.117367 0.00 !Mu0ChX5TRaw[Co1At1Ch5]
+969.351 -0.117353 0.00 !Mu0ChX6TRaw[Co1At1Ch6]
+974.621 -0.117969 0.00 !Mu0ChX7TRaw[Co1At1Ch7]
+976.758 -0.118246 0.00 !Mu0ChX8TRaw[Co1At1Ch8]
+975.237 -0.118065 0.00 !Mu0ChX9TRaw[Co1At1Ch9]
+979.286 -0.118546 0.00 !Mu0ChX10TRaw[Co1At1Ch10]
+984.065 -0.119138 0.00 !Mu0ChX11TRaw[Co1At1Ch11]
+983.533 -0.119075 0.00 !Mu0ChX12TRaw[Co1At1Ch12]
+991.106 -0.119996 0.00 !Mu0ChX13TRaw[Co1At1Ch13]
+976.115 -0.118174 0.00 !Mu0ChX14TRaw[Co1At1Ch14]
+987.246 -0.119531 0.00 !Mu0ChX15TRaw[Co1At1Ch15]
+978.41 -0.118448 0.00 !Mu0ChX16TRaw[Co1At1Ch16]
+952.87 -0.115275 0.00 !Mu0ChX17TRaw[Co1At2Ch1]
+963.333 -0.116527 0.00 !Mu0ChX18TRaw[Co1At2Ch2]
+975.677 -0.118044 0.00 !Mu0ChX19TRaw[Co1At2Ch3]
+976.043 -0.118125 0.00 !Mu0ChX20TRaw[Co1At2Ch4]
+985.306 -0.119233 0.00 !Mu0ChX21TRaw[Co1At2Ch5]
+979.666 -0.118555 0.00 !Mu0ChX22TRaw[Co1At2Ch6]
+990.352 -0.119845 0.00 !Mu0ChX23TRaw[Co1At2Ch7]
+991.826 -0.120005 0.00 !Mu0ChX24TRaw[Co1At2Ch8]
+987.033 -0.119427 0.00 !Mu0ChX25TRaw[Co1At2Ch9]
+998.041 -0.120777 0.00 !Mu0ChX26TRaw[Co1At2Ch10]
+1000.4 -0.121057 0.00 !Mu0ChX27TRaw[Co1At2Ch11]
+1004.27 -0.121545 0.00 !Mu0ChX28TRaw[Co1At2Ch12]
+1000.07 -0.121021 0.00 !Mu0ChX29TRaw[Co1At2Ch13]
+998.458 -0.120851 0.00 !Mu0ChX30TRaw[Co1At2Ch14]
+995.135 -0.12045 0.00 !Mu0ChX31TRaw[Co1At2Ch15]
+991.094 -0.119947 0.00 !Mu0ChX32TRaw[Co1At2Ch16]
+869.874 -0.105192 0.00 !Mu0ChX33TRaw[Co1At3Ch1]
+867.818 -0.104955 0.00 !Mu0ChX34TRaw[Co1At3Ch2]
+887.963 -0.107397 0.00 !Mu0ChX35TRaw[Co1At3Ch3]
+876.58 -0.106033 0.00 !Mu0ChX36TRaw[Co1At3Ch4]
+878.364 -0.106227 0.00 !Mu0ChX37TRaw[Co1At3Ch5]
+892.804 -0.108005 0.00 !Mu0ChX38TRaw[Co1At3Ch6]
+894.475 -0.108195 0.00 !Mu0ChX39TRaw[Co1At3Ch7]
+892.476 -0.107979 0.00 !Mu0ChX40TRaw[Co1At3Ch8]
+895.157 -0.108302 0.00 !Mu0ChX41TRaw[Co1At3Ch9]
+895.419 -0.108334 0.00 !Mu0ChX42TRaw[Co1At3Ch10]
+894.752 -0.108243 0.00 !Mu0ChX43TRaw[Co1At3Ch11]
+901.721 -0.109095 0.00 !Mu0ChX44TRaw[Co1At3Ch12]
+896.865 -0.108505 0.00 !Mu0ChX45TRaw[Co1At3Ch13]
+891.69 -0.107877 0.00 !Mu0ChX46TRaw[Co1At3Ch14]
+894.258 -0.108187 0.00 !Mu0ChX47TRaw[Co1At3Ch15]
+894.901 -0.10826 0.00 !Mu0ChX48TRaw[Co1At3Ch16]
+881.631 -0.106556 0.00 !Mu0ChX49TRaw[Co1At4Ch1]
+884.86 -0.106942 0.00 !Mu0ChX50TRaw[Co1At4Ch2]
+890.381 -0.107622 0.00 !Mu0ChX51TRaw[Co1At4Ch3]
+903.08 -0.109464 0.00 !Mu0ChX52TRaw[Co1At4Ch4]
+903.944 -0.109295 0.00 !Mu0ChX53TRaw[Co1At4Ch5]
+907.059 -0.109652 0.00 !Mu0ChX54TRaw[Co1At4Ch6]
+909.716 -0.109955 0.00 !Mu0ChX55TRaw[Co1At4Ch7]
+913.814 -0.110458 0.00 !Mu0ChX56TRaw[Co1At4Ch8]
+922.196 -0.111499 0.00 !Mu0ChX57TRaw[Co1At4Ch9]
+913.548 -0.110456 0.00 !Mu0ChX58TRaw[Co1At4Ch10]
+921.22 -0.111378 0.00 !Mu0ChX59TRaw[Co1At4Ch11]
+925.852 -0.111943 0.00 !Mu0ChX60TRaw[Co1At4Ch12]
+932.855 -0.112807 0.00 !Mu0ChX61TRaw[Co1At4Ch13]
+935.505 -0.11314 0.00 !Mu0ChX62TRaw[Co1At4Ch14]
+937.107 -0.113338 0.00 !Mu0ChX63TRaw[Co1At4Ch15]
+926.099 -0.111982 0.00 !Mu0ChX64TRaw[Co1At4Ch16]
+957.155 -0.115846 0.00 !Mu0ChX65TRaw[Co2At1Ch1]
+962.206 -0.11646 0.00 !Mu0ChX66TRaw[Co2At1Ch2]
+971.895 -0.117644 0.00 !Mu0ChX67TRaw[Co2At1Ch3]
+973.151 -0.117791 0.00 !Mu0ChX68TRaw[Co2At1Ch4]
+976.443 -0.118174 0.00 !Mu0ChX69TRaw[Co2At1Ch5]
+989.114 -0.119717 0.00 !Mu0ChX70TRaw[Co2At1Ch6]
+993.741 -0.120284 0.00 !Mu0ChX71TRaw[Co2At1Ch7]
+994.917 -0.120426 0.00 !Mu0ChX72TRaw[Co2At1Ch8]
+1005.69 -0.121763 0.00 !Mu0ChX73TRaw[Co2At1Ch9]
+986.82 -0.119445 0.00 !Mu0ChX74TRaw[Co2At1Ch10]
+1003.89 -0.121535 0.00 !Mu0ChX75TRaw[Co2At1Ch11]
+994.316 -0.120381 0.00 !Mu0ChX76TRaw[Co2At1Ch12]
+1001.66 -0.121262 0.00 !Mu0ChX77TRaw[Co2At1Ch13]
+1005.75 -0.121766 0.00 !Mu0ChX78TRaw[Co2At1Ch14]
+996.228 -0.120615 0.00 !Mu0ChX79TRaw[Co2At1Ch15]
+999.032 -0.120952 0.00 !Mu0ChX80TRaw[Co2At1Ch16]
+922.493 -0.111515 0.00 !Mu0ChX81TRaw[Co2At2Ch1]
+932.405 -0.112746 0.00 !Mu0ChX82TRaw[Co2At2Ch2]
+924.498 -0.111774 0.00 !Mu0ChX83TRaw[Co2At2Ch3]
+936.88 -0.113281 0.00 !Mu0ChX84TRaw[Co2At2Ch4]
+930.333 -0.112468 0.00 !Mu0ChX85TRaw[Co2At2Ch5]
+941.329 -0.113819 0.00 !Mu0ChX86TRaw[Co2At2Ch6]
+949.396 -0.114818 0.00 !Mu0ChX87TRaw[Co2At2Ch7]
+942.586 -0.113978 0.00 !Mu0ChX88TRaw[Co2At2Ch8]
+949.288 -0.114813 0.00 !Mu0ChX89TRaw[Co2At2Ch9]
+956.784 -0.115728 0.00 !Mu0ChX90TRaw[Co2At2Ch10]
+964.341 -0.11664 0.00 !Mu0ChX91TRaw[Co2At2Ch11]
+961.03 -0.11625 0.00 !Mu0ChX92TRaw[Co2At2Ch12]
+961.407 -0.116299 0.00 !Mu0ChX93TRaw[Co2At2Ch13]
+960.173 -0.116152 0.00 !Mu0ChX94TRaw[Co2At2Ch14]
+974.188 -0.117868 0.00 !Mu0ChX95TRaw[Co2At2Ch15]
+965.16 -0.116744 0.00 !Mu0ChX96TRaw[Co2At2Ch16]
+868.319 -0.105013 0.00 !Mu0ChX97TRaw[Co2At3Ch1]
+877.769 -0.106169 0.00 !Mu0ChX98TRaw[Co2At3Ch2]
+878.126 -0.106212 0.00 !Mu0ChX99TRaw[Co2At3Ch3]
+883.907 -0.106905 0.00 !Mu0ChX100TRaw[Co2At3Ch4]
+893.227 -0.108043 0.00 !Mu0ChX101TRaw[Co2At3Ch5]
+900.551 -0.108935 0.00 !Mu0ChX102TRaw[Co2At3Ch6]
+896.432 -0.108442 0.00 !Mu0ChX103TRaw[Co2At3Ch7]
+894.569 -0.108194 0.00 !Mu0ChX104TRaw[Co2At3Ch8]
+903.782 -0.109336 0.00 !Mu0ChX105TRaw[Co2At3Ch9]
+901.487 -0.109053 0.00 !Mu0ChX106TRaw[Co2At3Ch10]
+907.332 -0.109771 0.00 !Mu0ChX107TRaw[Co2At3Ch11]
+904.852 -0.109449 0.00 !Mu0ChX108TRaw[Co2At3Ch12]
+902.075 -0.109128 0.00 !Mu0ChX109TRaw[Co2At3Ch13]
+906.169 -0.109641 0.00 !Mu0ChX110TRaw[Co2At3Ch14]
+902.566 -0.109177 0.00 !Mu0ChX111TRaw[Co2At3Ch15]
+904.912 -0.109478 0.00 !Mu0ChX112TRaw[Co2At3Ch16]
+888.355 -0.107364 0.00 !Mu0ChX113TRaw[Co2At4Ch1]
+891.484 -0.107748 0.00 !Mu0ChX114TRaw[Co2At4Ch2]
+891.715 -0.107782 0.00 !Mu0ChX115TRaw[Co2At4Ch3]
+901.831 -0.109007 0.00 !Mu0ChX116TRaw[Co2At4Ch4]
+905.323 -0.109423 0.00 !Mu0ChX117TRaw[Co2At4Ch5]
+898.889 -0.108648 0.00 !Mu0ChX118TRaw[Co2At4Ch6]
+913.375 -0.110413 0.00 !Mu0ChX119TRaw[Co2At4Ch7]
+914.714 -0.110579 0.00 !Mu0ChX120TRaw[Co2At4Ch8]
+908.954 -0.109898 0.00 !Mu0ChX121TRaw[Co2At4Ch9]
+914.168 -0.1105 0.00 !Mu0ChX122TRaw[Co2At4Ch10]
+922.429 -0.111529 0.00 !Mu0ChX123TRaw[Co2At4Ch11]
+914.821 -0.110604 0.00 !Mu0ChX124TRaw[Co2At4Ch12]
+917.725 -0.110972 0.00 !Mu0ChX125TRaw[Co2At4Ch13]
+919.575 -0.11118 0.00 !Mu0ChX126TRaw[Co2At4Ch14]
+914.799 -0.110613 0.00 !Mu0ChX127TRaw[Co2At4Ch15]
+919.481 -0.111151 0.00 !Mu0ChX128TRaw[Co2At4Ch16]
+944.925 -0.114033 0.00 !Mu0ChY2TRaw[Co3At1Ch2]
+944.005 -0.113921 0.00 !Mu0ChY3TRaw[Co3At1Ch3]
+962.012 -0.116104 0.00 !Mu0ChY4TRaw[Co3At1Ch4]
+957.491 -0.115563 0.00 !Mu0ChY5TRaw[Co3At1Ch5]
+973.261 -0.117481 0.00 !Mu0ChY6TRaw[Co3At1Ch6]
+971.85 -0.117339 0.00 !Mu0ChY7TRaw[Co3At1Ch7]
+969.183 -0.117018 0.00 !Mu0ChY8TRaw[Co3At1Ch8]
+975.83 -0.117842 0.00 !Mu0ChY9TRaw[Co3At1Ch9]
+971.457 -0.117316 0.00 !Mu0ChY10TRaw[Co3At1Ch10]
+974.23 -0.117632 0.00 !Mu0ChY11TRaw[Co3At1Ch11]
+980.648 -0.118398 0.00 !Mu0ChY12TRaw[Co3At1Ch12]
+978.32 -0.11814 0.00 !Mu0ChY13TRaw[Co3At1Ch13]
+974.115 -0.117633 0.00 !Mu0ChY14TRaw[Co3At1Ch14]
+976.65 -0.117944 0.00 !Mu0ChY15TRaw[Co3At1Ch15]
+983.277 -0.118761 0.00 !Mu0ChY16TRaw[Co3At1Ch16]
+938.109 -0.113175 0.00 !Mu0ChY17TRaw[Co3At2Ch1]
+947.448 -0.114309 0.00 !Mu0ChY18TRaw[Co3At2Ch2]
+956.035 -0.115351 0.00 !Mu0ChY19TRaw[Co3At2Ch3]
+947.978 -0.11436 0.00 !Mu0ChY20TRaw[Co3At2Ch4]
+950.631 -0.114686 0.00 !Mu0ChY21TRaw[Co3At2Ch5]
+953.963 -0.115103 0.00 !Mu0ChY22TRaw[Co3At2Ch6]
+959.973 -0.115832 0.00 !Mu0ChY23TRaw[Co3At2Ch7]
+959.848 -0.115841 0.00 !Mu0ChY24TRaw[Co3At2Ch8]
+964.52 -0.116398 0.00 !Mu0ChY25TRaw[Co3At2Ch9]
+962.989 -0.116195 0.00 !Mu0ChY26TRaw[Co3At2Ch10]
+959.157 -0.115516 0.00 !Mu0ChY27TRaw[Co3At2Ch11]
+973.941 -0.117562 0.00 !Mu0ChY28TRaw[Co3At2Ch12]
+976.25 -0.117834 0.00 !Mu0ChY29TRaw[Co3At2Ch13]
+971.294 -0.11722 0.00 !Mu0ChY30TRaw[Co3At2Ch14]
+974.292 -0.11759 0.00 !Mu0ChY31TRaw[Co3At2Ch15]
+968.991 -0.116928 0.00 !Mu0ChY32TRaw[Co3At2Ch16]
+871.769 -0.105131 0.00 !Mu0ChY33TRaw[Co3At3Ch1]
+871.608 -0.105113 0.00 !Mu0ChY34TRaw[Co3At3Ch2]
+888.383 -0.107174 0.00 !Mu0ChY35TRaw[Co3At3Ch3]
+878.496 -0.105955 0.00 !Mu0ChY36TRaw[Co3At3Ch4]
+889.979 -0.107363 0.00 !Mu0ChY37TRaw[Co3At3Ch5]
+889.448 -0.107278 0.00 !Mu0ChY38TRaw[Co3At3Ch6]
+889.860 -0.107347 0.00 !Mu0ChY39TRaw[Co3At3Ch7]
+908.071 -0.109567 0.00 !Mu0ChY40TRaw[Co3At3Ch8]
+905.490 -0.109285 0.00 !Mu0ChY41TRaw[Co3At3Ch9]
+903.864 -0.109045 0.00 !Mu0ChY42TRaw[Co3At3Ch10]
+902.655 -0.108924 0.00 !Mu0ChY43TRaw[Co3At3Ch11]
+913.208 -0.110196 0.00 !Mu0ChY44TRaw[Co3At3Ch12]
+910.710 -0.109895 0.00 !Mu0ChY45TRaw[Co3At3Ch13]
+905.186 -0.109240 0.00 !Mu0ChY46TRaw[Co3At3Ch14]
+915.646 -0.110513 0.00 !Mu0ChY47TRaw[Co3At3Ch15]
+903.665 -0.109056 0.00 !Mu0ChY48TRaw[Co3At3Ch16]
+859.176 -0.103507 0.00 !Mu0ChY49TRaw[Co3At4Ch1]
+870.909 -0.104888 0.00 !Mu0ChY50TRaw[Co3At4Ch2]
+866.307 -0.104347 0.00 !Mu0ChY51TRaw[Co3At4Ch3]
+883.056 -0.106391 0.00 !Mu0ChY52TRaw[Co3At4Ch4]
+885.647 -0.106718 0.00 !Mu0ChY53TRaw[Co3At4Ch5]
+886.974 -0.106878 0.00 !Mu0ChY54TRaw[Co3At4Ch6]
+883.169 -0.106441 0.00 !Mu0ChY55TRaw[Co3At4Ch7]
+891.212 -0.107426 0.00 !Mu0ChY56TRaw[Co3At4Ch8]
+892.785 -0.107608 0.00 !Mu0ChY57TRaw[Co3At4Ch9]
+897.104 -0.108136 0.00 !Mu0ChY58TRaw[Co3At4Ch10]
+904.326 -0.109012 0.00 !Mu0ChY59TRaw[Co3At4Ch11]
+903.135 -0.108611 0.00 !Mu0ChY60TRaw[Co3At4Ch12]
+901.746 -0.108719 0.00 !Mu0ChY61TRaw[Co3At4Ch13]
+908.712 -0.109581 0.00 !Mu0ChY62TRaw[Co3At4Ch14]
+903.269 -0.108895 0.00 !Mu0ChY63TRaw[Co3At4Ch15]
+908.687 -0.109543 0.00 !Mu0ChY64TRaw[Co3At4Ch16]
+963.864 -0.116469 0.00 !Mu0ChY65TRaw[Co4At1Ch1]
+970.82 -0.117302 0.00 !Mu0ChY66TRaw[Co4At1Ch2]
+976.574 -0.118012 0.00 !Mu0ChY67TRaw[Co4At1Ch3]
+976.674 -0.118028 0.00 !Mu0ChY68TRaw[Co4At1Ch4]
+979.506 -0.118378 0.00 !Mu0ChY69TRaw[Co4At1Ch5]
+983.206 -0.118825 0.00 !Mu0ChY70TRaw[Co4At1Ch6]
+982.64 -0.118781 0.00 !Mu0ChY71TRaw[Co4At1Ch7]
+985.816 -0.119156 0.00 !Mu0ChY72TRaw[Co4At1Ch8]
+989.544 -0.119628 0.00 !Mu0ChY73TRaw[Co4At1Ch9]
+981.143 -0.118591 0.00 !Mu0ChY74TRaw[Co4At1Ch10]
+989.884 -0.119656 0.00 !Mu0ChY75TRaw[Co4At1Ch11]
+1000.31 -0.120924 0.00 !Mu0ChY76TRaw[Co4At1Ch12]
+995.389 -0.120327 0.00 !Mu0ChY77TRaw[Co4At1Ch13]
+997.331 -0.120579 0.00 !Mu0ChY78TRaw[Co4At1Ch14]
+994.499 -0.120247 0.00 !Mu0ChY79TRaw[Co4At1Ch15]
+1001.6 -0.121097 0.00 !Mu0ChY80TRaw[Co4At1Ch16]
+970.056 -0.117145 0.00 !Mu0ChY81TRaw[Co4At2Ch1]
+986.117 -0.119118 0.00 !Mu0ChY82TRaw[Co4At2Ch2]
+981.373 -0.118534 0.00 !Mu0ChY83TRaw[Co4At2Ch3]
+995.859 -0.12031 0.00 !Mu0ChY84TRaw[Co4At2Ch4]
+999.672 -0.120777 0.00 !Mu0ChY85TRaw[Co4At2Ch5]
+1002.22 -0.121085 0.00 !Mu0ChY86TRaw[Co4At2Ch6]
+998.019 -0.120569 0.00 !Mu0ChY87TRaw[Co4At2Ch7]
+1008.32 -0.121839 0.00 !Mu0ChY88TRaw[Co4At2Ch8]
+1004.28 -0.121339 0.00 !Mu0ChY89TRaw[Co4At2Ch9]
+1014.52 -0.122592 0.00 !Mu0ChY90TRaw[Co4At2Ch10]
+1025.22 -0.123897 0.00 !Mu0ChY91TRaw[Co4At2Ch11]
+1024.79 -0.123866 0.00 !Mu0ChY92TRaw[Co4At2Ch12]
+1019.8 -0.123256 0.00 !Mu0ChY93TRaw[Co4At2Ch13]
+1024.3 -0.123786 0.00 !Mu0ChY94TRaw[Co4At2Ch14]
+1021.08 -0.123408 0.00 !Mu0ChY95TRaw[Co4At2Ch15]
+1016.6 -0.122879 0.00 !Mu0ChY96TRaw[Co4At2Ch16]
+882.25 -0.106544 0.00 !Mu0ChY97TRaw[Co4At3Ch1]
+878.942 -0.106139 0.00 !Mu0ChY98TRaw[Co4At3Ch2]
+878.021 -0.106028 0.00 !Mu0ChY99TRaw[Co4At3Ch3]
+894.625 -0.108041 0.00 !Mu0ChY100TRaw[Co4At3Ch4]
+891.724 -0.107707 0.00 !Mu0ChY101TRaw[Co4At3Ch5]
+890.686 -0.10757 0.00 !Mu0ChY102TRaw[Co4At3Ch6]
+895.168 -0.108105 0.00 !Mu0ChY103TRaw[Co4At3Ch7]
+907.124 -0.10959 0.00 !Mu0ChY104TRaw[Co4At3Ch8]
+901.739 -0.108916 0.00 !Mu0ChY105TRaw[Co4At3Ch9]
+914.99 -0.110544 0.00 !Mu0ChY106TRaw[Co4At3Ch10]
+910.27 -0.109981 0.00 !Mu0ChY107TRaw[Co4At3Ch11]
+914.704 -0.11051 0.00 !Mu0ChY108TRaw[Co4At3Ch12]
+913.859 -0.110421 0.00 !Mu0ChY109TRaw[Co4At3Ch13]
+909.547 -0.109894 0.00 !Mu0ChY110TRaw[Co4At3Ch14]
+915.137 -0.110572 0.00 !Mu0ChY111TRaw[Co4At3Ch15]
+917.078 -0.110803 0.00 !Mu0ChY112TRaw[Co4At3Ch16]
+891.216 -0.107535 0.00 !Mu0ChY113TRaw[Co4At4Ch1]
+899.129 -0.108466 0.00 !Mu0ChY114TRaw[Co4At4Ch2]
+898.718 -0.108438 0.00 !Mu0ChY115TRaw[Co4At4Ch3]
+904.591 -0.109158 0.00 !Mu0ChY116TRaw[Co4At4Ch4]
+916.06 -0.110566 0.00 !Mu0ChY117TRaw[Co4At4Ch5]
+909.441 -0.109757 0.00 !Mu0ChY118TRaw[Co4At4Ch6]
+929.211 -0.112167 0.00 !Mu0ChY119TRaw[Co4At4Ch7]
+920.724 -0.111146 0.00 !Mu0ChY120TRaw[Co4At4Ch8]
+931.107 -0.112407 0.00 !Mu0ChY121TRaw[Co4At4Ch9]
+930.357 -0.112337 0.00 !Mu0ChY122TRaw[Co4At4Ch10]
+932.102 -0.112539 0.00 !Mu0ChY123TRaw[Co4At4Ch11]
+935.662 -0.112978 0.00 !Mu0ChY124TRaw[Co4At4Ch12]
+930.191 -0.112316 0.00 !Mu0ChY125TRaw[Co4At4Ch13]
+929.054 -0.112192 0.00 !Mu0ChY126TRaw[Co4At4Ch14]
+926.166 -0.111821 0.00 !Mu0ChY127TRaw[Co4At4Ch15]
+929.013 -0.112162 0.00 !Mu0ChY128TRaw[Co4At4Ch16]
+928.571 -0.11232 0.00 !Mu1ChX1TRaw[Co1At1Ch1]
+942.493 -0.114015 0.00 !Mu1ChX2TRaw[Co1At1Ch2]
+944.985 -0.114341 0.00 !Mu1ChX3TRaw[Co1At1Ch3]
+956.226 -0.115712 0.00 !Mu1ChX4TRaw[Co1At1Ch4]
+956.679 -0.115744 0.00 !Mu1ChX5TRaw[Co1At1Ch5]
+958.458 -0.115962 0.00 !Mu1ChX6TRaw[Co1At1Ch6]
+971.702 -0.117589 0.00 !Mu1ChX7TRaw[Co1At1Ch7]
+966.768 -0.116998 0.00 !Mu1ChX8TRaw[Co1At1Ch8]
+970.872 -0.117498 0.00 !Mu1ChX9TRaw[Co1At1Ch9]
+979.817 -0.118577 0.00 !Mu1ChX10TRaw[Co1At1Ch10]
+976.301 -0.118143 0.00 !Mu1ChX11TRaw[Co1At1Ch11]
+975.435 -0.118071 0.00 !Mu1ChX12TRaw[Co1At1Ch12]
+987.534 -0.11954 0.00 !Mu1ChX13TRaw[Co1At1Ch13]
+988.145 -0.119597 0.00 !Mu1ChX14TRaw[Co1At1Ch14]
+985.177 -0.119236 0.00 !Mu1ChX15TRaw[Co1At1Ch15]
+984.559 -0.119179 0.00 !Mu1ChX16TRaw[Co1At1Ch16]
+924.661 -0.111777 0.00 !Mu1ChX17TRaw[Co1At2Ch1]
+947.862 -0.114612 0.00 !Mu1ChX18TRaw[Co1At2Ch2]
+948.76 -0.114738 0.00 !Mu1ChX19TRaw[Co1At2Ch3]
+946.29 -0.114439 0.00 !Mu1ChX20TRaw[Co1At2Ch4]
+954.686 -0.115464 0.00 !Mu1ChX21TRaw[Co1At2Ch5]
+967.911 -0.117052 0.00 !Mu1ChX22TRaw[Co1At2Ch6]
+957.223 -0.115762 0.00 !Mu1ChX23TRaw[Co1At2Ch7]
+973.476 -0.117739 0.00 !Mu1ChX24TRaw[Co1At2Ch8]
+971.664 -0.117531 0.00 !Mu1ChX25TRaw[Co1At2Ch9]
+974.918 -0.117923 0.00 !Mu1ChX26TRaw[Co1At2Ch10]
+973.502 -0.117737 0.00 !Mu1ChX27TRaw[Co1At2Ch11]
+977.242 -0.11821 0.00 !Mu1ChX28TRaw[Co1At2Ch12]
+981.073 -0.118677 0.00 !Mu1ChX29TRaw[Co1At2Ch13]
+978.26 -0.118324 0.00 !Mu1ChX30TRaw[Co1At2Ch14]
+977.151 -0.118198 0.00 !Mu1ChX31TRaw[Co1At2Ch15]
+984.794 -0.119148 0.00 !Mu1ChX32TRaw[Co1At2Ch16]
+878.025 -0.106165 0.00 !Mu1ChX33TRaw[Co1At3Ch1]
+877.927 -0.10618 0.00 !Mu1ChX34TRaw[Co1At3Ch2]
+893.294 -0.108064 0.00 !Mu1ChX35TRaw[Co1At3Ch3]
+876.051 -0.105941 0.00 !Mu1ChX36TRaw[Co1At3Ch4]
+893.827 -0.108105 0.00 !Mu1ChX37TRaw[Co1At3Ch5]
+899.59 -0.108823 0.00 !Mu1ChX38TRaw[Co1At3Ch6]
+891.87 -0.107861 0.00 !Mu1ChX39TRaw[Co1At3Ch7]
+896.377 -0.10842 0.00 !Mu1ChX40TRaw[Co1At3Ch8]
+899.273 -0.108779 0.00 !Mu1ChX41TRaw[Co1At3Ch9]
+898.912 -0.108754 0.00 !Mu1ChX42TRaw[Co1At3Ch10]
+907.617 -0.109783 0.00 !Mu1ChX43TRaw[Co1At3Ch11]
+899.789 -0.108855 0.00 !Mu1ChX44TRaw[Co1At3Ch12]
+909.299 -0.110019 0.00 !Mu1ChX45TRaw[Co1At3Ch13]
+907.769 -0.109854 0.00 !Mu1ChX46TRaw[Co1At3Ch14]
+905.232 -0.109528 0.00 !Mu1ChX47TRaw[Co1At3Ch15]
+909.577 -0.110055 0.00 !Mu1ChX48TRaw[Co1At3Ch16]
+868.163 -0.104838 0.00 !Mu1ChX49TRaw[Co1At4Ch1]
+873.224 -0.105455 0.00 !Mu1ChX50TRaw[Co1At4Ch2]
+885.913 -0.107015 0.00 !Mu1ChX51TRaw[Co1At4Ch3]
+888.452 -0.107338 0.00 !Mu1ChX52TRaw[Co1At4Ch4]
+891.233 -0.107685 0.00 !Mu1ChX53TRaw[Co1At4Ch5]
+891.534 -0.107699 0.00 !Mu1ChX54TRaw[Co1At4Ch6]
+895.39 -0.10819 0.00 !Mu1ChX55TRaw[Co1At4Ch7]
+901.392 -0.108878 0.00 !Mu1ChX56TRaw[Co1At4Ch8]
+907.775 -0.1097 0.00 !Mu1ChX57TRaw[Co1At4Ch9]
+903.537 -0.10916 0.00 !Mu1ChX58TRaw[Co1At4Ch10]
+912.271 -0.110244 0.00 !Mu1ChX59TRaw[Co1At4Ch11]
+904.646 -0.109308 0.00 !Mu1ChX60TRaw[Co1At4Ch12]
+917.556 -0.110894 0.00 !Mu1ChX61TRaw[Co1At4Ch13]
+909.067 -0.109867 0.00 !Mu1ChX62TRaw[Co1At4Ch14]
+908.514 -0.109791 0.00 !Mu1ChX63TRaw[Co1At4Ch15]
+916.574 -0.110777 0.00 !Mu1ChX64TRaw[Co1At4Ch16]
+951.079 -0.114723 0.00 !Mu1ChX65TRaw[Co2At1Ch1]
+952.897 -0.114949 0.00 !Mu1ChX66TRaw[Co2At1Ch2]
+966.461 -0.116629 0.00 !Mu1ChX67TRaw[Co2At1Ch3]
+965.985 -0.116557 0.00 !Mu1ChX68TRaw[Co2At1Ch4]
+968.322 -0.116827 0.00 !Mu1ChX69TRaw[Co2At1Ch5]
+976.11 -0.117811 0.00 !Mu1ChX70TRaw[Co2At1Ch6]
+975.867 -0.117758 0.00 !Mu1ChX71TRaw[Co2At1Ch7]
+981.064 -0.118392 0.00 !Mu1ChX72TRaw[Co2At1Ch8]
+978.32 -0.118063 0.00 !Mu1ChX73TRaw[Co2At1Ch9]
+992.972 -0.119853 0.00 !Mu1ChX74TRaw[Co2At1Ch10]
+989.034 -0.119377 0.00 !Mu1ChX75TRaw[Co2At1Ch11]
+987.234 -0.119141 0.00 !Mu1ChX76TRaw[Co2At1Ch12]
+994.058 -0.119982 0.00 !Mu1ChX77TRaw[Co2At1Ch13]
+995.957 -0.120199 0.00 !Mu1ChX78TRaw[Co2At1Ch14]
+995.79 -0.1202 0.00 !Mu1ChX79TRaw[Co2At1Ch15]
+1000.15 -0.120722 0.00 !Mu1ChX80TRaw[Co2At1Ch16]
+976.704 -0.117775 0.00 !Mu1ChX81TRaw[Co2At2Ch1]
+978.841 -0.118024 0.00 !Mu1ChX82TRaw[Co2At2Ch2]
+983.919 -0.118652 0.00 !Mu1ChX83TRaw[Co2At2Ch3]
+997.371 -0.120307 0.00 !Mu1ChX84TRaw[Co2At2Ch4]
+996.925 -0.120215 0.00 !Mu1ChX85TRaw[Co2At2Ch5]
+1006.21 -0.121389 0.00 !Mu1ChX86TRaw[Co2At2Ch6]
+1007.52 -0.121554 0.00 !Mu1ChX87TRaw[Co2At2Ch7]
+999.416 -0.12057 0.00 !Mu1ChX88TRaw[Co2At2Ch8]
+1013.91 -0.122345 0.00 !Mu1ChX89TRaw[Co2At2Ch9]
+1016.22 -0.12261 0.00 !Mu1ChX90TRaw[Co2At2Ch10]
+1011.77 -0.122082 0.00 !Mu1ChX91TRaw[Co2At2Ch11]
+1018.04 -0.12282 0.00 !Mu1ChX92TRaw[Co2At2Ch12]
+1017.49 -0.12279 0.00 !Mu1ChX93TRaw[Co2At2Ch13]
+1020.31 -0.123127 0.00 !Mu1ChX94TRaw[Co2At2Ch14]
+1019.96 -0.123096 0.00 !Mu1ChX95TRaw[Co2At2Ch15]
+1008.1 -0.12163 0.00 !Mu1ChX96TRaw[Co2At2Ch16]
+892.824 -0.107613 0.00 !Mu1ChX97TRaw[Co2At3Ch1]
+890.901 -0.107373 0.00 !Mu1ChX98TRaw[Co2At3Ch2]
+894.556 -0.107838 0.00 !Mu1ChX99TRaw[Co2At3Ch3]
+905.994 -0.109224 0.00 !Mu1ChX100TRaw[Co2At3Ch4]
+905.741 -0.1092 0.00 !Mu1ChX101TRaw[Co2At3Ch5]
+910.629 -0.109791 0.00 !Mu1ChX102TRaw[Co2At3Ch6]
+906.206 -0.109268 0.00 !Mu1ChX103TRaw[Co2At3Ch7]
+921.692 -0.111151 0.00 !Mu1ChX104TRaw[Co2At3Ch8]
+922.784 -0.11128 0.00 !Mu1ChX105TRaw[Co2At3Ch9]
+924.5 -0.111467 0.00 !Mu1ChX106TRaw[Co2At3Ch10]
+928.983 -0.112035 0.00 !Mu1ChX107TRaw[Co2At3Ch11]
+924.661 -0.111519 0.00 !Mu1ChX108TRaw[Co2At3Ch12]
+925.485 -0.111616 0.00 !Mu1ChX109TRaw[Co2At3Ch13]
+917.32 -0.110627 0.00 !Mu1ChX110TRaw[Co2At3Ch14]
+920.078 -0.110941 0.00 !Mu1ChX111TRaw[Co2At3Ch15]
+926.646 -0.11176 0.00 !Mu1ChX112TRaw[Co2At3Ch16]
+900.671 -0.108476 0.00 !Mu1ChX113TRaw[Co2At4Ch1]
+901.745 -0.108567 0.00 !Mu1ChX114TRaw[Co2At4Ch2]
+908.74 -0.10946 0.00 !Mu1ChX115TRaw[Co2At4Ch3]
+914.468 -0.110136 0.00 !Mu1ChX116TRaw[Co2At4Ch4]
+929.323 -0.111977 0.00 !Mu1ChX117TRaw[Co2At4Ch5]
+923.812 -0.111304 0.00 !Mu1ChX118TRaw[Co2At4Ch6]
+935.93 -0.112781 0.00 !Mu1ChX119TRaw[Co2At4Ch7]
+918.363 -0.110659 0.00 !Mu1ChX120TRaw[Co2At4Ch8]
+923.868 -0.111325 0.00 !Mu1ChX121TRaw[Co2At4Ch9]
+931.448 -0.112226 0.00 !Mu1ChX122TRaw[Co2At4Ch10]
+932.559 -0.11236 0.00 !Mu1ChX123TRaw[Co2At4Ch11]
+927.829 -0.111775 0.00 !Mu1ChX124TRaw[Co2At4Ch12]
+925.186 -0.111483 0.00 !Mu1ChX125TRaw[Co2At4Ch13]
+931.059 -0.112193 0.00 !Mu1ChX126TRaw[Co2At4Ch14]
+934.329 -0.112614 0.00 !Mu1ChX127TRaw[Co2At4Ch15]
+928.424 -0.111864 0.00 !Mu1ChX128TRaw[Co2At4Ch16]
+935.35 -0.11282 0.00 !Mu1ChY1TRaw[Co3At1Ch1]
+937.191 -0.113022 0.00 !Mu1ChY2TRaw[Co3At1Ch2]
+948.029 -0.114361 0.00 !Mu1ChY3TRaw[Co3At1Ch3]
+952.035 -0.114834 0.00 !Mu1ChY4TRaw[Co3At1Ch4]
+954.252 -0.115122 0.00 !Mu1ChY5TRaw[Co3At1Ch5]
+957.621 -0.115533 0.00 !Mu1ChY6TRaw[Co3At1Ch6]
+960.868 -0.115938 0.00 !Mu1ChY7TRaw[Co3At1Ch7]
+950.839 -0.114726 0.00 !Mu1ChY8TRaw[Co3At1Ch8]
+958.21 -0.11562 0.00 !Mu1ChY9TRaw[Co3At1Ch9]
+968.288 -0.116854 0.00 !Mu1ChY10TRaw[Co3At1Ch10]
+964.104 -0.116368 0.00 !Mu1ChY11TRaw[Co3At1Ch11]
+972.004 -0.117327 0.00 !Mu1ChY12TRaw[Co3At1Ch12]
+972.184 -0.117358 0.00 !Mu1ChY13TRaw[Co3At1Ch13]
+967.943 -0.116827 0.00 !Mu1ChY14TRaw[Co3At1Ch14]
+969.17 -0.116981 0.00 !Mu1ChY15TRaw[Co3At1Ch15]
+966.891 -0.116717 0.00 !Mu1ChY16TRaw[Co3At1Ch16]
+968.928 -0.116883 0.00 !Mu1ChY17TRaw[Co3At2Ch1]
+971.207 -0.117128 0.00 !Mu1ChY18TRaw[Co3At2Ch2]
+975.423 -0.117665 0.00 !Mu1ChY19TRaw[Co3At2Ch3]
+976.249 -0.117743 0.00 !Mu1ChY20TRaw[Co3At2Ch4]
+987.572 -0.119146 0.00 !Mu1ChY21TRaw[Co3At2Ch5]
+984.536 -0.118747 0.00 !Mu1ChY22TRaw[Co3At2Ch6]
+987.751 -0.119189 0.00 !Mu1ChY23TRaw[Co3At2Ch7]
+994.23 -0.119964 0.00 !Mu1ChY24TRaw[Co3At2Ch8]
+995.905 -0.120158 0.00 !Mu1ChY25TRaw[Co3At2Ch9]
+995.946 -0.120176 0.00 !Mu1ChY26TRaw[Co3At2Ch10]
+1000.5 -0.120728 0.00 !Mu1ChY27TRaw[Co3At2Ch11]
+995.25 -0.120113 0.00 !Mu1ChY28TRaw[Co3At2Ch12]
+997.145 -0.120339 0.00 !Mu1ChY29TRaw[Co3At2Ch13]
+988.864 -0.119308 0.00 !Mu1ChY30TRaw[Co3At2Ch14]
+995.199 -0.120108 0.00 !Mu1ChY31TRaw[Co3At2Ch15]
+990.383 -0.119515 0.00 !Mu1ChY32TRaw[Co3At2Ch16]
+1002.87 -0.141377 0.00 !Mu1ChY33TRaw[Co3At3Ch1]
+884.995 -0.106691 0.00 !Mu1ChY34TRaw[Co3At3Ch2]
+886.581 -0.106848 0.00 !Mu1ChY35TRaw[Co3At3Ch3]
+896.019 -0.108037 0.00 !Mu1ChY36TRaw[Co3At3Ch4]
+8.48677e+11 -1.03827e+08 0.00 !Mu1ChY37TRaw[Co3At3Ch5]
+907.311 -0.109433 0.00 !Mu1ChY38TRaw[Co3At3Ch6]
+897.171 -0.108164 0.00 !Mu1ChY39TRaw[Co3At3Ch7]
+907.451 -0.10944 0.00 !Mu1ChY40TRaw[Co3At3Ch8]
+895.245 -0.107957 0.00 !Mu1ChY41TRaw[Co3At3Ch9]
+908.035 -0.109521 0.00 !Mu1ChY42TRaw[Co3At3Ch10]
+900.767 -0.108623 0.00 !Mu1ChY43TRaw[Co3At3Ch11]
+909.45 -0.10969 0.00 !Mu1ChY44TRaw[Co3At3Ch12]
+911.966 -0.109989 0.00 !Mu1ChY45TRaw[Co3At3Ch13]
+906.33 -0.109312 0.00 !Mu1ChY46TRaw[Co3At3Ch14]
+910.732 -0.109844 0.00 !Mu1ChY47TRaw[Co3At3Ch15]
+905.741 -0.109257 0.00 !Mu1ChY48TRaw[Co3At3Ch16]
+887.986 -0.10696 0.00 !Mu1ChY49TRaw[Co3At4Ch1]
+887.216 -0.106852 0.00 !Mu1ChY50TRaw[Co3At4Ch2]
+883.77 -0.106436 0.00 !Mu1ChY51TRaw[Co3At4Ch3]
+896.97 -0.108049 0.00 !Mu1ChY52TRaw[Co3At4Ch4]
+903.022 -0.108781 0.00 !Mu1ChY53TRaw[Co3At4Ch5]
+904.319 -0.108923 0.00 !Mu1ChY54TRaw[Co3At4Ch6]
+904.183 -0.108922 0.00 !Mu1ChY55TRaw[Co3At4Ch7]
+904.336 -0.108949 0.00 !Mu1ChY56TRaw[Co3At4Ch8]
+916.034 -0.110395 0.00 !Mu1ChY57TRaw[Co3At4Ch9]
+915.216 -0.110294 0.00 !Mu1ChY58TRaw[Co3At4Ch10]
+910.734 -0.109746 0.00 !Mu1ChY59TRaw[Co3At4Ch11]
+913.293 -0.109802 0.00 !Mu1ChY60TRaw[Co3At4Ch12]
+910.448 -0.109742 0.00 !Mu1ChY61TRaw[Co3At4Ch13]
+918.647 -0.11072 0.00 !Mu1ChY62TRaw[Co3At4Ch14]
+920.049 -0.110879 0.00 !Mu1ChY63TRaw[Co3At4Ch15]
+921.093 -0.111037 0.00 !Mu1ChY64TRaw[Co3At4Ch16]
+950.903 -0.115194 0.00 !Mu1ChY65TRaw[Co4At1Ch1]
+958.17 -0.116053 0.00 !Mu1ChY66TRaw[Co4At1Ch2]
+963.945 -0.116788 0.00 !Mu1ChY67TRaw[Co4At1Ch3]
+967.43 -0.117211 0.00 !Mu1ChY68TRaw[Co4At1Ch4]
+970.687 -0.117617 0.00 !Mu1ChY69TRaw[Co4At1Ch5]
+978.784 -0.118609 0.00 !Mu1ChY70TRaw[Co4At1Ch6]
+974.345 -0.118053 0.00 !Mu1ChY71TRaw[Co4At1Ch7]
+982.479 -0.119038 0.00 !Mu1ChY72TRaw[Co4At1Ch8]
+983.419 -0.119163 0.00 !Mu1ChY73TRaw[Co4At1Ch9]
+986.47 -0.119552 0.00 !Mu1ChY74TRaw[Co4At1Ch10]
+988.169 -0.119777 0.00 !Mu1ChY75TRaw[Co4At1Ch11]
+985.147 -0.119391 0.00 !Mu1ChY76TRaw[Co4At1Ch12]
+988.378 -0.11981 0.00 !Mu1ChY77TRaw[Co4At1Ch13]
+985.922 -0.119505 0.00 !Mu1ChY78TRaw[Co4At1Ch14]
+986.667 -0.119601 0.00 !Mu1ChY79TRaw[Co4At1Ch15]
+991.793 -0.120194 0.00 !Mu1ChY80TRaw[Co4At1Ch16]
+947.005 -0.114646 0.00 !Mu1ChY81TRaw[Co4At2Ch1]
+955.512 -0.115676 0.00 !Mu1ChY82TRaw[Co4At2Ch2]
+954.266 -0.115551 0.00 !Mu1ChY83TRaw[Co4At2Ch3]
+961.213 -0.116392 0.00 !Mu1ChY84TRaw[Co4At2Ch4]
+960.803 -0.116344 0.00 !Mu1ChY85TRaw[Co4At2Ch5]
+971.068 -0.117589 0.00 !Mu1ChY86TRaw[Co4At2Ch6]
+971.908 -0.117699 0.00 !Mu1ChY87TRaw[Co4At2Ch7]
+978.963 -0.118567 0.00 !Mu1ChY88TRaw[Co4At2Ch8]
+980.181 -0.118705 0.00 !Mu1ChY89TRaw[Co4At2Ch9]
+972.849 -0.117807 0.00 !Mu1ChY90TRaw[Co4At2Ch10]
+977.401 -0.118376 0.00 !Mu1ChY91TRaw[Co4At2Ch11]
+985.257 -0.119333 0.00 !Mu1ChY92TRaw[Co4At2Ch12]
+986.001 -0.119429 0.00 !Mu1ChY93TRaw[Co4At2Ch13]
+978.94 -0.118576 0.00 !Mu1ChY94TRaw[Co4At2Ch14]
+982.604 -0.119031 0.00 !Mu1ChY95TRaw[Co4At2Ch15]
+994.308 -0.120471 0.00 !Mu1ChY96TRaw[Co4At2Ch16]
+876.691 -0.106136 0.00 !Mu1ChY97TRaw[Co4At3Ch1]
+875.524 -0.106 0.00 !Mu1ChY98TRaw[Co4At3Ch2]
+880.13 -0.106555 0.00 !Mu1ChY99TRaw[Co4At3Ch3]
+894.071 -0.108263 0.00 !Mu1ChY100TRaw[Co4At3Ch4]
+891.902 -0.10801 0.00 !Mu1ChY101TRaw[Co4At3Ch5]
+884.05 -0.107044 0.00 !Mu1ChY102TRaw[Co4At3Ch6]
+891.891 -0.108005 0.00 !Mu1ChY103TRaw[Co4At3Ch7]
+895.11 -0.108406 0.00 !Mu1ChY104TRaw[Co4At3Ch8]
+905.296 -0.109653 0.00 !Mu1ChY105TRaw[Co4At3Ch9]
+902.144 -0.10926 0.00 !Mu1ChY106TRaw[Co4At3Ch10]
+905.347 -0.10967 0.00 !Mu1ChY107TRaw[Co4At3Ch11]
+896.217 -0.108536 0.00 !Mu1ChY108TRaw[Co4At3Ch12]
+903.241 -0.109417 0.00 !Mu1ChY109TRaw[Co4At3Ch13]
+910.268 -0.110268 0.00 !Mu1ChY110TRaw[Co4At3Ch14]
+900.796 -0.109108 0.00 !Mu1ChY111TRaw[Co4At3Ch15]
+906.635 -0.109824 0.00 !Mu1ChY112TRaw[Co4At3Ch16]
+862.399 -0.104291 0.00 !Mu1ChY113TRaw[Co4At4Ch1]
+856.141 -0.103549 0.00 !Mu1ChY114TRaw[Co4At4Ch2]
+866.517 -0.104798 0.00 !Mu1ChY115TRaw[Co4At4Ch3]
+861.488 -0.10419 0.00 !Mu1ChY116TRaw[Co4At4Ch4]
+869.88 -0.105221 0.00 !Mu1ChY117TRaw[Co4At4Ch5]
+879.073 -0.106354 0.00 !Mu1ChY118TRaw[Co4At4Ch6]
+883.458 -0.1069 0.00 !Mu1ChY119TRaw[Co4At4Ch7]
+878.318 -0.106252 0.00 !Mu1ChY120TRaw[Co4At4Ch8]
+895.691 -0.108379 0.00 !Mu1ChY121TRaw[Co4At4Ch9]
+896.571 -0.108492 0.00 !Mu1ChY122TRaw[Co4At4Ch10]
+894.464 -0.108225 0.00 !Mu1ChY123TRaw[Co4At4Ch11]
+893.509 -0.108132 0.00 !Mu1ChY124TRaw[Co4At4Ch12]
+895.809 -0.108412 0.00 !Mu1ChY125TRaw[Co4At4Ch13]
+891.015 -0.10784 0.00 !Mu1ChY126TRaw[Co4At4Ch14]
+888.724 -0.107526 0.00 !Mu1ChY127TRaw[Co4At4Ch15]
+899.797 -0.109448 0.00 !Mu1ChY128TRaw[Co4At4Ch16]
+937.316 -0.113282 0.00 !Mu2ChX1TRaw[Co1At1Ch1]
+934.385 -0.112935 0.00 !Mu2ChX2TRaw[Co1At1Ch2]
+942.34 -0.113903 0.00 !Mu2ChX3TRaw[Co1At1Ch3]
+954.458 -0.11541 0.00 !Mu2ChX4TRaw[Co1At1Ch4]
+950.139 -0.114834 0.00 !Mu2ChX5TRaw[Co1At1Ch5]
+967.561 -0.116968 0.00 !Mu2ChX6TRaw[Co1At1Ch6]
+960.77 -0.116144 0.00 !Mu2ChX7TRaw[Co1At1Ch7]
+965.567 -0.116738 0.00 !Mu2ChX8TRaw[Co1At1Ch8]
+957.421 -0.115736 0.00 !Mu2ChX9TRaw[Co1At1Ch9]
+969.399 -0.117191 0.00 !Mu2ChX10TRaw[Co1At1Ch10]
+971.909 -0.117505 0.00 !Mu2ChX11TRaw[Co1At1Ch11]
+966.623 -0.116868 0.00 !Mu2ChX12TRaw[Co1At1Ch12]
+972.522 -0.117596 0.00 !Mu2ChX13TRaw[Co1At1Ch13]
+966.551 -0.116864 0.00 !Mu2ChX14TRaw[Co1At1Ch14]
+967.053 -0.116934 0.00 !Mu2ChX15TRaw[Co1At1Ch15]
+976.535 -0.118078 0.00 !Mu2ChX16TRaw[Co1At1Ch16]
+919.521 -0.111042 0.00 !Mu2ChX17TRaw[Co1At2Ch1]
+934.725 -0.1129 0.00 !Mu2ChX18TRaw[Co1At2Ch2]
+937.478 -0.113239 0.00 !Mu2ChX19TRaw[Co1At2Ch3]
+936.381 -0.11311 0.00 !Mu2ChX20TRaw[Co1At2Ch4]
+947.225 -0.114433 0.00 !Mu2ChX21TRaw[Co1At2Ch5]
+942.935 -0.113893 0.00 !Mu2ChX22TRaw[Co1At2Ch6]
+940.462 -0.113604 0.00 !Mu2ChX23TRaw[Co1At2Ch7]
+948.676 -0.114596 0.00 !Mu2ChX24TRaw[Co1At2Ch8]
+939.674 -0.113523 0.00 !Mu2ChX25TRaw[Co1At2Ch9]
+947.97 -0.114529 0.00 !Mu2ChX26TRaw[Co1At2Ch10]
+948.456 -0.114587 0.00 !Mu2ChX27TRaw[Co1At2Ch11]
+944.632 -0.114127 0.00 !Mu2ChX28TRaw[Co1At2Ch12]
+952.149 -0.115049 0.00 !Mu2ChX29TRaw[Co1At2Ch13]
+948.307 -0.114577 0.00 !Mu2ChX30TRaw[Co1At2Ch14]
+950.078 -0.114801 0.00 !Mu2ChX31TRaw[Co1At2Ch15]
+949.489 -0.114725 0.00 !Mu2ChX32TRaw[Co1At2Ch16]
+884.424 -0.106884 0.00 !Mu2ChX33TRaw[Co1At3Ch1]
+881.912 -0.106588 0.00 !Mu2ChX34TRaw[Co1At3Ch2]
+891.212 -0.10771 0.00 !Mu2ChX35TRaw[Co1At3Ch3]
+888.472 -0.10739 0.00 !Mu2ChX36TRaw[Co1At3Ch4]
+902.325 -0.109058 0.00 !Mu2ChX37TRaw[Co1At3Ch5]
+899.193 -0.108685 0.00 !Mu2ChX38TRaw[Co1At3Ch6]
+906.762 -0.109605 0.00 !Mu2ChX39TRaw[Co1At3Ch7]
+903.506 -0.109211 0.00 !Mu2ChX40TRaw[Co1At3Ch8]
+903.2 -0.109168 0.00 !Mu2ChX41TRaw[Co1At3Ch9]
+907.04 -0.109617 0.00 !Mu2ChX42TRaw[Co1At3Ch10]
+913.192 -0.1104 0.00 !Mu2ChX43TRaw[Co1At3Ch11]
+912.001 -0.110254 0.00 !Mu2ChX44TRaw[Co1At3Ch12]
+920.039 -0.111219 0.00 !Mu2ChX45TRaw[Co1At3Ch13]
+918.464 -0.111043 0.00 !Mu2ChX46TRaw[Co1At3Ch14]
+921.268 -0.111378 0.00 !Mu2ChX47TRaw[Co1At3Ch15]
+917.17 -0.11089 0.00 !Mu2ChX48TRaw[Co1At3Ch16]
+853.022 -0.102956 0.00 !Mu2ChX49TRaw[Co1At4Ch1]
+863.294 -0.104191 0.00 !Mu2ChX50TRaw[Co1At4Ch2]
+872.886 -0.105362 0.00 !Mu2ChX51TRaw[Co1At4Ch3]
+866.918 -0.10464 0.00 !Mu2ChX52TRaw[Co1At4Ch4]
+875.67 -0.105723 0.00 !Mu2ChX53TRaw[Co1At4Ch5]
+875.93 -0.105755 0.00 !Mu2ChX54TRaw[Co1At4Ch6]
+877.811 -0.105984 0.00 !Mu2ChX55TRaw[Co1At4Ch7]
+885.543 -0.106931 0.00 !Mu2ChX56TRaw[Co1At4Ch8]
+894.49 -0.108024 0.00 !Mu2ChX57TRaw[Co1At4Ch9]
+896.907 -0.108307 0.00 !Mu2ChX58TRaw[Co1At4Ch10]
+888.44 -0.107279 0.00 !Mu2ChX59TRaw[Co1At4Ch11]
+898.738 -0.108543 0.00 !Mu2ChX60TRaw[Co1At4Ch12]
+900.163 -0.108721 0.00 !Mu2ChX61TRaw[Co1At4Ch13]
+899.711 -0.108665 0.00 !Mu2ChX62TRaw[Co1At4Ch14]
+896.224 -0.10824 0.00 !Mu2ChX63TRaw[Co1At4Ch15]
+893.403 -0.107885 0.00 !Mu2ChX64TRaw[Co1At4Ch16]
+971.844 -0.117533 0.00 !Mu2ChX65TRaw[Co2At1Ch1]
+971.845 -0.117545 0.00 !Mu2ChX66TRaw[Co2At1Ch2]
+983.582 -0.118957 0.00 !Mu2ChX67TRaw[Co2At1Ch3]
+988.69 -0.119584 0.00 !Mu2ChX68TRaw[Co2At1Ch4]
+990.616 -0.119902 0.00 !Mu2ChX69TRaw[Co2At1Ch5]
+992.058 -0.12002 0.00 !Mu2ChX70TRaw[Co2At1Ch6]
+993.193 -0.120171 0.00 !Mu2ChX71TRaw[Co2At1Ch7]
+998.567 -0.120802 0.00 !Mu2ChX72TRaw[Co2At1Ch8]
+991.75 -0.119977 0.00 !Mu2ChX73TRaw[Co2At1Ch9]
+1000.28 -0.12102 0.00 !Mu2ChX74TRaw[Co2At1Ch10]
+996.389 -0.12055 0.00 !Mu2ChX75TRaw[Co2At1Ch11]
+995.946 -0.12048 0.00 !Mu2ChX76TRaw[Co2At1Ch12]
+1005.69 -0.121688 0.00 !Mu2ChX77TRaw[Co2At1Ch13]
+1009.38 -0.122136 0.00 !Mu2ChX78TRaw[Co2At1Ch14]
+1012.08 -0.122472 0.00 !Mu2ChX79TRaw[Co2At1Ch15]
+1003.93 -0.121488 0.00 !Mu2ChX80TRaw[Co2At1Ch16]
+952.869 -0.115148 0.00 !Mu2ChX81TRaw[Co2At2Ch1]
+964.034 -0.116512 0.00 !Mu2ChX82TRaw[Co2At2Ch2]
+965.866 -0.116735 0.00 !Mu2ChX83TRaw[Co2At2Ch3]
+969.343 -0.117158 0.00 !Mu2ChX84TRaw[Co2At2Ch4]
+969.333 -0.117159 0.00 !Mu2ChX85TRaw[Co2At2Ch5]
+970.748 -0.117336 0.00 !Mu2ChX86TRaw[Co2At2Ch6]
+984.429 -0.118997 0.00 !Mu2ChX87TRaw[Co2At2Ch7]
+983.229 -0.118879 0.00 !Mu2ChX88TRaw[Co2At2Ch8]
+993.933 -0.120152 0.00 !Mu2ChX89TRaw[Co2At2Ch9]
+993.652 -0.120143 0.00 !Mu2ChX90TRaw[Co2At2Ch10]
+992.615 -0.120011 0.00 !Mu2ChX91TRaw[Co2At2Ch11]
+982.481 -0.118788 0.00 !Mu2ChX92TRaw[Co2At2Ch12]
+997.508 -0.120614 0.00 !Mu2ChX93TRaw[Co2At2Ch13]
+1001.7 -0.12112 0.00 !Mu2ChX94TRaw[Co2At2Ch14]
+1002.51 -0.12123 0.00 !Mu2ChX95TRaw[Co2At2Ch15]
+987.604 -0.119394 0.00 !Mu2ChX96TRaw[Co2At2Ch16]
+901.312 -0.10895 0.00 !Mu2ChX97TRaw[Co2At3Ch1]
+917.986 -0.11099 0.00 !Mu2ChX98TRaw[Co2At3Ch2]
+913.934 -0.110483 0.00 !Mu2ChX99TRaw[Co2At3Ch3]
+913.949 -0.110494 0.00 !Mu2ChX100TRaw[Co2At3Ch4]
+923.435 -0.11163 0.00 !Mu2ChX101TRaw[Co2At3Ch5]
+922.621 -0.111573 0.00 !Mu2ChX102TRaw[Co2At3Ch6]
+921.076 -0.111368 0.00 !Mu2ChX103TRaw[Co2At3Ch7]
+925.346 -0.111888 0.00 !Mu2ChX104TRaw[Co2At3Ch8]
+935.581 -0.113122 0.00 !Mu2ChX105TRaw[Co2At3Ch9]
+932.485 -0.112764 0.00 !Mu2ChX106TRaw[Co2At3Ch10]
+937.5 -0.113373 0.00 !Mu2ChX107TRaw[Co2At3Ch11]
+932.715 -0.112797 0.00 !Mu2ChX108TRaw[Co2At3Ch12]
+935.979 -0.113176 0.00 !Mu2ChX109TRaw[Co2At3Ch13]
+942.445 -0.113973 0.00 !Mu2ChX110TRaw[Co2At3Ch14]
+943.181 -0.114066 0.00 !Mu2ChX111TRaw[Co2At3Ch15]
+942.414 -0.113973 0.00 !Mu2ChX112TRaw[Co2At3Ch16]
+902.2 -0.108961 0.00 !Mu2ChX113TRaw[Co2At4Ch1]
+906.889 -0.109531 0.00 !Mu2ChX114TRaw[Co2At4Ch2]
+914.61 -0.110461 0.00 !Mu2ChX115TRaw[Co2At4Ch3]
+914.139 -0.110414 0.00 !Mu2ChX116TRaw[Co2At4Ch4]
+929.709 -0.112323 0.00 !Mu2ChX117TRaw[Co2At4Ch5]
+932.582 -0.11267 0.00 !Mu2ChX118TRaw[Co2At4Ch6]
+938.012 -0.113333 0.00 !Mu2ChX119TRaw[Co2At4Ch7]
+940.971 -0.113698 0.00 !Mu2ChX120TRaw[Co2At4Ch8]
+940.564 -0.113666 0.00 !Mu2ChX121TRaw[Co2At4Ch9]
+949.44 -0.114745 0.00 !Mu2ChX122TRaw[Co2At4Ch10]
+940.75 -0.113673 0.00 !Mu2ChX123TRaw[Co2At4Ch11]
+946.851 -0.11443 0.00 !Mu2ChX124TRaw[Co2At4Ch12]
+936.518 -0.113174 0.00 !Mu2ChX125TRaw[Co2At4Ch13]
+936.181 -0.113143 0.00 !Mu2ChX126TRaw[Co2At4Ch14]
+944.748 -0.114176 0.00 !Mu2ChX127TRaw[Co2At4Ch15]
+944.971 -0.114186 0.00 !Mu2ChX128TRaw[Co2At4Ch16]
+989.947 -0.119525 0.00 !Mu2ChY1TRaw[Co3At1Ch1]
+993.077 -0.119903 0.00 !Mu2ChY2TRaw[Co3At1Ch2]
+992.258 -0.119776 0.00 !Mu2ChY3TRaw[Co3At1Ch3]
+998.524 -0.120524 0.00 !Mu2ChY4TRaw[Co3At1Ch4]
+1003.53 -0.121165 0.00 !Mu2ChY5TRaw[Co3At1Ch5]
+1001.78 -0.120947 0.00 !Mu2ChY6TRaw[Co3At1Ch6]
+1006.43 -0.121526 0.00 !Mu2ChY7TRaw[Co3At1Ch7]
+1013.44 -0.122366 0.00 !Mu2ChY8TRaw[Co3At1Ch8]
+1014.58 -0.122539 0.00 !Mu2ChY9TRaw[Co3At1Ch9]
+1006.22 -0.121307 0.00 !Mu2ChY10TRaw[Co3At1Ch10]
+1012.4 -0.122275 0.00 !Mu2ChY11TRaw[Co3At1Ch11]
+1017.56 -0.122898 0.00 !Mu2ChY12TRaw[Co3At1Ch12]
+1019.48 -0.12312 0.00 !Mu2ChY13TRaw[Co3At1Ch13]
+1024.68 -0.123746 0.00 !Mu2ChY14TRaw[Co3At1Ch14]
+1023.43 -0.123621 0.00 !Mu2ChY15TRaw[Co3At1Ch15]
+1024.2 -0.123744 0.00 !Mu2ChY16TRaw[Co3At1Ch16]
+942.022 -0.113632 0.00 !Mu2ChY17TRaw[Co3At2Ch1]
+941.851 -0.11359 0.00 !Mu2ChY18TRaw[Co3At2Ch2]
+941.301 -0.113546 0.00 !Mu2ChY19TRaw[Co3At2Ch3]
+941.196 -0.113526 0.00 !Mu2ChY20TRaw[Co3At2Ch4]
+956.339 -0.115367 0.00 !Mu2ChY21TRaw[Co3At2Ch5]
+972.159 -0.117305 0.00 !Mu2ChY22TRaw[Co3At2Ch6]
+968.071 -0.11682 0.00 !Mu2ChY23TRaw[Co3At2Ch7]
+963.198 -0.116216 0.00 !Mu2ChY24TRaw[Co3At2Ch8]
+978.802 -0.118134 0.00 !Mu2ChY25TRaw[Co3At2Ch9]
+981.332 -0.118446 0.00 !Mu2ChY26TRaw[Co3At2Ch10]
+978.515 -0.117858 0.00 !Mu2ChY27TRaw[Co3At2Ch11]
+985.445 -0.11895 0.00 !Mu2ChY28TRaw[Co3At2Ch12]
+979.656 -0.118238 0.00 !Mu2ChY29TRaw[Co3At2Ch13]
+981.57 -0.118468 0.00 !Mu2ChY30TRaw[Co3At2Ch14]
+980.383 -0.118337 0.00 !Mu2ChY31TRaw[Co3At2Ch15]
+968.968 -0.116905 0.00 !Mu2ChY32TRaw[Co3At2Ch16]
+874.116 -0.105393 0.00 !Mu2ChY33TRaw[Co3At3Ch1]
+880.638 -0.106206 0.00 !Mu2ChY34TRaw[Co3At3Ch2]
+893.026 -0.107711 0.00 !Mu2ChY35TRaw[Co3At3Ch3]
+894.339 -0.10786 0.00 !Mu2ChY36TRaw[Co3At3Ch4]
+897.82 -0.108297 0.00 !Mu2ChY37TRaw[Co3At3Ch5]
+892.44 -0.107628 0.00 !Mu2ChY38TRaw[Co3At3Ch6]
+908.152 -0.109574 0.00 !Mu2ChY39TRaw[Co3At3Ch7]
+906.817 -0.109401 0.00 !Mu2ChY40TRaw[Co3At3Ch8]
+909.649 -0.109756 0.00 !Mu2ChY41TRaw[Co3At3Ch9]
+914.061 -0.110304 0.00 !Mu2ChY42TRaw[Co3At3Ch10]
+910.049 -0.10979 0.00 !Mu2ChY43TRaw[Co3At3Ch11]
+913.535 -0.110231 0.00 !Mu2ChY44TRaw[Co3At3Ch12]
+915.986 -0.110532 0.00 !Mu2ChY45TRaw[Co3At3Ch13]
+919.243 -0.110907 0.00 !Mu2ChY46TRaw[Co3At3Ch14]
+922.863 -0.111371 0.00 !Mu2ChY47TRaw[Co3At3Ch15]
+918.091 -0.110791 0.00 !Mu2ChY48TRaw[Co3At3Ch16]
+896.545 -0.108016 0.00 !Mu2ChY49TRaw[Co3At4Ch1]
+905.921 -0.109155 0.00 !Mu2ChY50TRaw[Co3At4Ch2]
+903.191 -0.108834 0.00 !Mu2ChY51TRaw[Co3At4Ch3]
+916.514 -0.110471 0.00 !Mu2ChY52TRaw[Co3At4Ch4]
+909.698 -0.109622 0.00 !Mu2ChY53TRaw[Co3At4Ch5]
+918.472 -0.110708 0.00 !Mu2ChY54TRaw[Co3At4Ch6]
+921.934 -0.111116 0.00 !Mu2ChY55TRaw[Co3At4Ch7]
+917.791 -0.11061 0.00 !Mu2ChY56TRaw[Co3At4Ch8]
+930.463 -0.11216 0.00 !Mu2ChY57TRaw[Co3At4Ch9]
+921.545 -0.111079 0.00 !Mu2ChY58TRaw[Co3At4Ch10]
+924.357 -0.111393 0.00 !Mu2ChY59TRaw[Co3At4Ch11]
+928.134 -0.11168 0.00 !Mu2ChY60TRaw[Co3At4Ch12]
+944.074 -0.11386 0.00 !Mu2ChY61TRaw[Co3At4Ch13]
+929.497 -0.112068 0.00 !Mu2ChY62TRaw[Co3At4Ch14]
+925.938 -0.111623 0.00 !Mu2ChY63TRaw[Co3At4Ch15]
+933.858 -0.112593 0.00 !Mu2ChY64TRaw[Co3At4Ch16]
+926.3 -0.111864 0.00 !Mu2ChY65TRaw[Co4At1Ch1]
+945.736 -0.114242 0.00 !Mu2ChY66TRaw[Co4At1Ch2]
+950.053 -0.114763 0.00 !Mu2ChY67TRaw[Co4At1Ch3]
+947.803 -0.114477 0.00 !Mu2ChY68TRaw[Co4At1Ch4]
+974.181 -0.117701 0.00 !Mu2ChY69TRaw[Co4At1Ch5]
+962.11 -0.116242 0.00 !Mu2ChY70TRaw[Co4At1Ch6]
+969.683 -0.117144 0.00 !Mu2ChY71TRaw[Co4At1Ch7]
+966.661 -0.116783 0.00 !Mu2ChY72TRaw[Co4At1Ch8]
+958.107 -0.115747 0.00 !Mu2ChY73TRaw[Co4At1Ch9]
+960.237 -0.115989 0.00 !Mu2ChY74TRaw[Co4At1Ch10]
+966.385 -0.116762 0.00 !Mu2ChY75TRaw[Co4At1Ch11]
+979.2 -0.118324 0.00 !Mu2ChY76TRaw[Co4At1Ch12]
+975.406 -0.117892 0.00 !Mu2ChY77TRaw[Co4At1Ch13]
+977.792 -0.118194 0.00 !Mu2ChY78TRaw[Co4At1Ch14]
+968.878 -0.117092 0.00 !Mu2ChY79TRaw[Co4At1Ch15]
+971.01 -0.117343 0.00 !Mu2ChY80TRaw[Co4At1Ch16]
+946.074 -0.114246 0.00 !Mu2ChY81TRaw[Co4At2Ch1]
+940.751 -0.113582 0.00 !Mu2ChY82TRaw[Co4At2Ch2]
+952.983 -0.115097 0.00 !Mu2ChY83TRaw[Co4At2Ch3]
+948.889 -0.114574 0.00 !Mu2ChY84TRaw[Co4At2Ch4]
+957.63 -0.115653 0.00 !Mu2ChY85TRaw[Co4At2Ch5]
+968.091 -0.11692 0.00 !Mu2ChY86TRaw[Co4At2Ch6]
+966.176 -0.116695 0.00 !Mu2ChY87TRaw[Co4At2Ch7]
+971.862 -0.117388 0.00 !Mu2ChY88TRaw[Co4At2Ch8]
+974.809 -0.117739 0.00 !Mu2ChY89TRaw[Co4At2Ch9]
+976.466 -0.11797 0.00 !Mu2ChY90TRaw[Co4At2Ch10]
+981.048 -0.118525 0.00 !Mu2ChY91TRaw[Co4At2Ch11]
+971.816 -0.117371 0.00 !Mu2ChY92TRaw[Co4At2Ch12]
+979.537 -0.118331 0.00 !Mu2ChY93TRaw[Co4At2Ch13]
+979.044 -0.118283 0.00 !Mu2ChY94TRaw[Co4At2Ch14]
+986.328 -0.119174 0.00 !Mu2ChY95TRaw[Co4At2Ch15]
+991.309 -0.119806 0.00 !Mu2ChY96TRaw[Co4At2Ch16]
+899.526 -0.108639 0.00 !Mu2ChY97TRaw[Co4At3Ch1]
+896.011 -0.108189 0.00 !Mu2ChY98TRaw[Co4At3Ch2]
+906.665 -0.109474 0.00 !Mu2ChY99TRaw[Co4At3Ch3]
+905.068 -0.109308 0.00 !Mu2ChY100TRaw[Co4At3Ch4]
+919.012 -0.110997 0.00 !Mu2ChY101TRaw[Co4At3Ch5]
+926.674 -0.111938 0.00 !Mu2ChY102TRaw[Co4At3Ch6]
+916.909 -0.110746 0.00 !Mu2ChY103TRaw[Co4At3Ch7]
+932.767 -0.112691 0.00 !Mu2ChY104TRaw[Co4At3Ch8]
+927.33 -0.112025 0.00 !Mu2ChY105TRaw[Co4At3Ch9]
+923.243 -0.111507 0.00 !Mu2ChY106TRaw[Co4At3Ch10]
+924.408 -0.111663 0.00 !Mu2ChY107TRaw[Co4At3Ch11]
+924.057 -0.111623 0.00 !Mu2ChY108TRaw[Co4At3Ch12]
+927.531 -0.112066 0.00 !Mu2ChY109TRaw[Co4At3Ch13]
+928.251 -0.11214 0.00 !Mu2ChY110TRaw[Co4At3Ch14]
+924.467 -0.111703 0.00 !Mu2ChY111TRaw[Co4At3Ch15]
+914.871 -0.110525 0.00 !Mu2ChY112TRaw[Co4At3Ch16]
+854.155 -0.102981 0.00 !Mu2ChY113TRaw[Co4At4Ch1]
+870.733 -0.104976 0.00 !Mu2ChY114TRaw[Co4At4Ch2]
+878.476 -0.105936 0.00 !Mu2ChY115TRaw[Co4At4Ch3]
+876.793 -0.10575 0.00 !Mu2ChY116TRaw[Co4At4Ch4]
+884.881 -0.106741 0.00 !Mu2ChY117TRaw[Co4At4Ch5]
+881.171 -0.10628 0.00 !Mu2ChY118TRaw[Co4At4Ch6]
+893.636 -0.107805 0.00 !Mu2ChY119TRaw[Co4At4Ch7]
+894.919 -0.107966 0.00 !Mu2ChY120TRaw[Co4At4Ch8]
+885.067 -0.106759 0.00 !Mu2ChY121TRaw[Co4At4Ch9]
+898.226 -0.108381 0.00 !Mu2ChY122TRaw[Co4At4Ch10]
+896.617 -0.108195 0.00 !Mu2ChY123TRaw[Co4At4Ch11]
+896.617 -0.108195 0.00 !Mu2ChY124TRaw[Co4At4Ch12]
+899.421 -0.108519 0.00 !Mu2ChY125TRaw[Co4At4Ch13]
+900.193 -0.10863 0.00 !Mu2ChY126TRaw[Co4At4Ch14]
+901.229 -0.108768 0.00 !Mu2ChY127TRaw[Co4At4Ch15]
+897.311 -0.108297 0.00 !Mu2ChY128TRaw[Co4At4Ch16]
+938.354 -0.113591 0.00 !Mu3ChX1TRaw[Co1At1Ch1]
+952.054 -0.115254 0.00 !Mu3ChX2TRaw[Co1At1Ch2]
+956.534 -0.115822 0.00 !Mu3ChX3TRaw[Co1At1Ch3]
+958.488 -0.116042 0.00 !Mu3ChX4TRaw[Co1At1Ch4]
+950.724 -0.115096 0.00 !Mu3ChX5TRaw[Co1At1Ch5]
+965.196 -0.11686 0.00 !Mu3ChX6TRaw[Co1At1Ch6]
+969.308 -0.117385 0.00 !Mu3ChX7TRaw[Co1At1Ch7]
+974.569 -0.118019 0.00 !Mu3ChX8TRaw[Co1At1Ch8]
+972.643 -0.117779 0.00 !Mu3ChX9TRaw[Co1At1Ch9]
+970.352 -0.117496 0.00 !Mu3ChX10TRaw[Co1At1Ch10]
+972.778 -0.117795 0.00 !Mu3ChX11TRaw[Co1At1Ch11]
+984.9 -0.119273 0.00 !Mu3ChX12TRaw[Co1At1Ch12]
+974.806 -0.118031 0.00 !Mu3ChX13TRaw[Co1At1Ch13]
+981.032 -0.118805 0.00 !Mu3ChX14TRaw[Co1At1Ch14]
+978.727 -0.118524 0.00 !Mu3ChX15TRaw[Co1At1Ch15]
+983.561 -0.119127 0.00 !Mu3ChX16TRaw[Co1At1Ch16]
+967.055 -0.117029 0.00 !Mu3ChX17TRaw[Co1At2Ch1]
+963.403 -0.116582 0.00 !Mu3ChX18TRaw[Co1At2Ch2]
+982.136 -0.11886 0.00 !Mu3ChX19TRaw[Co1At2Ch3]
+978.048 -0.118386 0.00 !Mu3ChX20TRaw[Co1At2Ch4]
+985.228 -0.119229 0.00 !Mu3ChX21TRaw[Co1At2Ch5]
+992.422 -0.120114 0.00 !Mu3ChX22TRaw[Co1At2Ch6]
+984.595 -0.119177 0.00 !Mu3ChX23TRaw[Co1At2Ch7]
+988.858 -0.119693 0.00 !Mu3ChX24TRaw[Co1At2Ch8]
+986.58 -0.119405 0.00 !Mu3ChX25TRaw[Co1At2Ch9]
+987.489 -0.119523 0.00 !Mu3ChX26TRaw[Co1At2Ch10]
+1000.74 -0.12115 0.00 !Mu3ChX27TRaw[Co1At2Ch11]
+996.509 -0.120628 0.00 !Mu3ChX28TRaw[Co1At2Ch12]
+1006.69 -0.121885 0.00 !Mu3ChX29TRaw[Co1At2Ch13]
+999.766 -0.121035 0.00 !Mu3ChX30TRaw[Co1At2Ch14]
+1001.37 -0.121233 0.00 !Mu3ChX31TRaw[Co1At2Ch15]
+996.617 -0.120654 0.00 !Mu3ChX32TRaw[Co1At2Ch16]
+898.105 -0.108693 0.00 !Mu3ChX33TRaw[Co1At3Ch1]
+904.446 -0.109485 0.00 !Mu3ChX34TRaw[Co1At3Ch2]
+912.143 -0.110421 0.00 !Mu3ChX35TRaw[Co1At3Ch3]
+905.421 -0.109588 0.00 !Mu3ChX36TRaw[Co1At3Ch4]
+911.321 -0.110301 0.00 !Mu3ChX37TRaw[Co1At3Ch5]
+919.499 -0.111327 0.00 !Mu3ChX38TRaw[Co1At3Ch6]
+921.109 -0.111495 0.00 !Mu3ChX39TRaw[Co1At3Ch7]
+929.489 -0.112521 0.00 !Mu3ChX40TRaw[Co1At3Ch8]
+937.068 -0.11347 0.00 !Mu3ChX41TRaw[Co1At3Ch9]
+930.942 -0.112717 0.00 !Mu3ChX42TRaw[Co1At3Ch10]
+927.894 -0.112335 0.00 !Mu3ChX43TRaw[Co1At3Ch11]
+932.632 -0.112964 0.00 !Mu3ChX44TRaw[Co1At3Ch12]
+935.332 -0.113245 0.00 !Mu3ChX45TRaw[Co1At3Ch13]
+929.857 -0.11258 0.00 !Mu3ChX46TRaw[Co1At3Ch14]
+937.136 -0.113476 0.00 !Mu3ChX47TRaw[Co1At3Ch15]
+935.398 -0.113256 0.00 !Mu3ChX48TRaw[Co1At3Ch16]
+866.015 -0.104661 0.00 !Mu3ChX49TRaw[Co1At4Ch1]
+865.76 -0.104634 0.00 !Mu3ChX50TRaw[Co1At4Ch2]
+878.223 -0.106155 0.00 !Mu3ChX51TRaw[Co1At4Ch3]
+888.186 -0.107364 0.00 !Mu3ChX52TRaw[Co1At4Ch4]
+888.209 -0.107368 0.00 !Mu3ChX53TRaw[Co1At4Ch5]
+884.13 -0.106861 0.00 !Mu3ChX54TRaw[Co1At4Ch6]
+896.431 -0.108382 0.00 !Mu3ChX55TRaw[Co1At4Ch7]
+899.348 -0.108733 0.00 !Mu3ChX56TRaw[Co1At4Ch8]
+896.795 -0.10844 0.00 !Mu3ChX57TRaw[Co1At4Ch9]
+902.052 -0.10908 0.00 !Mu3ChX58TRaw[Co1At4Ch10]
+897.684 -0.108538 0.00 !Mu3ChX59TRaw[Co1At4Ch11]
+897.274 -0.10849 0.00 !Mu3ChX60TRaw[Co1At4Ch12]
+903.963 -0.109312 0.00 !Mu3ChX61TRaw[Co1At4Ch13]
+905.108 -0.109445 0.00 !Mu3ChX62TRaw[Co1At4Ch14]
+891.538 -0.107803 0.00 !Mu3ChX63TRaw[Co1At4Ch15]
+900.293 -0.108862 0.00 !Mu3ChX64TRaw[Co1At4Ch16]
+985.824 -0.119126 0.00 !Mu3ChX65TRaw[Co2At1Ch1]
+991.541 -0.119789 0.00 !Mu3ChX66TRaw[Co2At1Ch2]
+991.866 -0.119851 0.00 !Mu3ChX67TRaw[Co2At1Ch3]
+1007.5 -0.121753 0.00 !Mu3ChX68TRaw[Co2At1Ch4]
+1008.13 -0.121824 0.00 !Mu3ChX69TRaw[Co2At1Ch5]
+1004.87 -0.121446 0.00 !Mu3ChX70TRaw[Co2At1Ch6]
+1008.48 -0.121893 0.00 !Mu3ChX71TRaw[Co2At1Ch7]
+1012.14 -0.122347 0.00 !Mu3ChX72TRaw[Co2At1Ch8]
+1008.38 -0.121883 0.00 !Mu3ChX73TRaw[Co2At1Ch9]
+1014.86 -0.122684 0.00 !Mu3ChX74TRaw[Co2At1Ch10]
+1023.57 -0.123722 0.00 !Mu3ChX75TRaw[Co2At1Ch11]
+1033.42 -0.124938 0.00 !Mu3ChX76TRaw[Co2At1Ch12]
+1015.34 -0.122709 0.00 !Mu3ChX77TRaw[Co2At1Ch13]
+1014.72 -0.12265 0.00 !Mu3ChX78TRaw[Co2At1Ch14]
+1026.27 -0.124061 0.00 !Mu3ChX79TRaw[Co2At1Ch15]
+1019.9 -0.123313 0.00 !Mu3ChX80TRaw[Co2At1Ch16]
+942.714 -0.11381 0.00 !Mu3ChX81TRaw[Co2At2Ch1]
+949.104 -0.114558 0.00 !Mu3ChX82TRaw[Co2At2Ch2]
+952.48 -0.114986 0.00 !Mu3ChX83TRaw[Co2At2Ch3]
+951.022 -0.114804 0.00 !Mu3ChX84TRaw[Co2At2Ch4]
+965.822 -0.116619 0.00 !Mu3ChX85TRaw[Co2At2Ch5]
+968.345 -0.11693 0.00 !Mu3ChX86TRaw[Co2At2Ch6]
+962.99 -0.116299 0.00 !Mu3ChX87TRaw[Co2At2Ch7]
+967.787 -0.116863 0.00 !Mu3ChX88TRaw[Co2At2Ch8]
+978.317 -0.118161 0.00 !Mu3ChX89TRaw[Co2At2Ch9]
+974.374 -0.117687 0.00 !Mu3ChX90TRaw[Co2At2Ch10]
+979.507 -0.118304 0.00 !Mu3ChX91TRaw[Co2At2Ch11]
+987.225 -0.119256 0.00 !Mu3ChX92TRaw[Co2At2Ch12]
+987.195 -0.119241 0.00 !Mu3ChX93TRaw[Co2At2Ch13]
+986.603 -0.119186 0.00 !Mu3ChX94TRaw[Co2At2Ch14]
+984.211 -0.118879 0.00 !Mu3ChX95TRaw[Co2At2Ch15]
+979.288 -0.118278 0.00 !Mu3ChX96TRaw[Co2At2Ch16]
+862.689 -0.104124 0.00 !Mu3ChX97TRaw[Co2At3Ch1]
+867.813 -0.104728 0.00 !Mu3ChX98TRaw[Co2At3Ch2]
+867.895 -0.104753 0.00 !Mu3ChX99TRaw[Co2At3Ch3]
+873.835 -0.105492 0.00 !Mu3ChX100TRaw[Co2At3Ch4]
+883.843 -0.106693 0.00 !Mu3ChX101TRaw[Co2At3Ch5]
+879.494 -0.10614 0.00 !Mu3ChX102TRaw[Co2At3Ch6]
+883.805 -0.106708 0.00 !Mu3ChX103TRaw[Co2At3Ch7]
+882.86 -0.106567 0.00 !Mu3ChX104TRaw[Co2At3Ch8]
+891.887 -0.107671 0.00 !Mu3ChX105TRaw[Co2At3Ch9]
+896.27 -0.108216 0.00 !Mu3ChX106TRaw[Co2At3Ch10]
+888.15 -0.107225 0.00 !Mu3ChX107TRaw[Co2At3Ch11]
+899.039 -0.108561 0.00 !Mu3ChX108TRaw[Co2At3Ch12]
+899.371 -0.108609 0.00 !Mu3ChX109TRaw[Co2At3Ch13]
+896.002 -0.108191 0.00 !Mu3ChX110TRaw[Co2At3Ch14]
+905.511 -0.109337 0.00 !Mu3ChX111TRaw[Co2At3Ch15]
+900.32 -0.108709 0.00 !Mu3ChX112TRaw[Co2At3Ch16]
+859.472 -0.103629 0.00 !Mu3ChX113TRaw[Co2At4Ch1]
+869.213 -0.10481 0.00 !Mu3ChX114TRaw[Co2At4Ch2]
+869.978 -0.1049 0.00 !Mu3ChX115TRaw[Co2At4Ch3]
+876.122 -0.105647 0.00 !Mu3ChX116TRaw[Co2At4Ch4]
+788.143 -0.126949 0.00 !Mu3ChX117TRaw[Co2At4Ch5]
+880.15 -0.106145 0.00 !Mu3ChX118TRaw[Co2At4Ch6]
+887.525 -0.107055 0.00 !Mu3ChX119TRaw[Co2At4Ch7]
+884.874 -0.10675 0.00 !Mu3ChX120TRaw[Co2At4Ch8]
+888.126 -0.107137 0.00 !Mu3ChX121TRaw[Co2At4Ch9]
+892.007 -0.107599 0.00 !Mu3ChX122TRaw[Co2At4Ch10]
+887.829 -0.107093 0.00 !Mu3ChX123TRaw[Co2At4Ch11]
+897.245 -0.108252 0.00 !Mu3ChX124TRaw[Co2At4Ch12]
+891.27 -0.107522 0.00 !Mu3ChX125TRaw[Co2At4Ch13]
+898.089 -0.108336 0.00 !Mu3ChX126TRaw[Co2At4Ch14]
+885.342 -0.106793 0.00 !Mu3ChX127TRaw[Co2At4Ch15]
+894.433 -0.107896 0.00 !Mu3ChX128TRaw[Co2At4Ch16]
+920.954 -0.11121 0.00 !Mu3ChY1TRaw[Co3At1Ch1]
+928.777 -0.112154 0.00 !Mu3ChY2TRaw[Co3At1Ch2]
+937.754 -0.113241 0.00 !Mu3ChY3TRaw[Co3At1Ch3]
+947.224 -0.114409 0.00 !Mu3ChY4TRaw[Co3At1Ch4]
+944.162 -0.114032 0.00 !Mu3ChY5TRaw[Co3At1Ch5]
+951.968 -0.114994 0.00 !Mu3ChY6TRaw[Co3At1Ch6]
+956.591 -0.115552 0.00 !Mu3ChY7TRaw[Co3At1Ch7]
+956.368 -0.115546 0.00 !Mu3ChY8TRaw[Co3At1Ch8]
+964.281 -0.116506 0.00 !Mu3ChY9TRaw[Co3At1Ch9]
+968.513 -0.117006 0.00 !Mu3ChY10TRaw[Co3At1Ch10]
+970.24 -0.117251 0.00 !Mu3ChY11TRaw[Co3At1Ch11]
+969.011 -0.117093 0.00 !Mu3ChY12TRaw[Co3At1Ch12]
+978.827 -0.118272 0.00 !Mu3ChY13TRaw[Co3At1Ch13]
+985.112 -0.119048 0.00 !Mu3ChY14TRaw[Co3At1Ch14]
+977.123 -0.118075 0.00 !Mu3ChY15TRaw[Co3At1Ch15]
+983.985 -0.118941 0.00 !Mu3ChY16TRaw[Co3At1Ch16]
+970.371 -0.117174 0.00 !Mu3ChY17TRaw[Co3At2Ch1]
+984.045 -0.118815 0.00 !Mu3ChY18TRaw[Co3At2Ch2]
+985.023 -0.118931 0.00 !Mu3ChY19TRaw[Co3At2Ch3]
+990.894 -0.119638 0.00 !Mu3ChY20TRaw[Co3At2Ch4]
+996.439 -0.12034 0.00 !Mu3ChY21TRaw[Co3At2Ch5]
+1006.18 -0.121551 0.00 !Mu3ChY22TRaw[Co3At2Ch6]
+1001.89 -0.120998 0.00 !Mu3ChY23TRaw[Co3At2Ch7]
+996.258 -0.120321 0.00 !Mu3ChY24TRaw[Co3At2Ch8]
+1002.35 -0.121073 0.00 !Mu3ChY25TRaw[Co3At2Ch9]
+1008.58 -0.121839 0.00 !Mu3ChY26TRaw[Co3At2Ch10]
+1008.51 -0.121856 0.00 !Mu3ChY27TRaw[Co3At2Ch11]
+1015.07 -0.122649 0.00 !Mu3ChY28TRaw[Co3At2Ch12]
+1018.24 -0.12302 0.00 !Mu3ChY29TRaw[Co3At2Ch13]
+1007.23 -0.121668 0.00 !Mu3ChY30TRaw[Co3At2Ch14]
+1016.39 -0.122794 0.00 !Mu3ChY31TRaw[Co3At2Ch15]
+1017.37 -0.122927 0.00 !Mu3ChY32TRaw[Co3At2Ch16]
+873.601 -0.105446 0.00 !Mu3ChY33TRaw[Co3At3Ch1]
+870.737 -0.105092 0.00 !Mu3ChY34TRaw[Co3At3Ch2]
+875.902 -0.10573 0.00 !Mu3ChY35TRaw[Co3At3Ch3]
+872.76 -0.105345 0.00 !Mu3ChY36TRaw[Co3At3Ch4]
+884.229 -0.106744 0.00 !Mu3ChY37TRaw[Co3At3Ch5]
+883.52 -0.106654 0.00 !Mu3ChY38TRaw[Co3At3Ch6]
+888.675 -0.107294 0.00 !Mu3ChY39TRaw[Co3At3Ch7]
+897.411 -0.108361 0.00 !Mu3ChY40TRaw[Co3At3Ch8]
+894.272 -0.10799 0.00 !Mu3ChY41TRaw[Co3At3Ch9]
+898.134 -0.10846 0.00 !Mu3ChY42TRaw[Co3At3Ch10]
+907.563 -0.109593 0.00 !Mu3ChY43TRaw[Co3At3Ch11]
+904.332 -0.109195 0.00 !Mu3ChY44TRaw[Co3At3Ch12]
+899.078 -0.108568 0.00 !Mu3ChY45TRaw[Co3At3Ch13]
+909.287 -0.109804 0.00 !Mu3ChY46TRaw[Co3At3Ch14]
+912.926 -0.110263 0.00 !Mu3ChY47TRaw[Co3At3Ch15]
+905.69 -0.109382 0.00 !Mu3ChY48TRaw[Co3At3Ch16]
+879.206 -0.105997 0.00 !Mu3ChY49TRaw[Co3At4Ch1]
+885.638 -0.106772 0.00 !Mu3ChY50TRaw[Co3At4Ch2]
+897.352 -0.108217 0.00 !Mu3ChY51TRaw[Co3At4Ch3]
+900.017 -0.108527 0.00 !Mu3ChY52TRaw[Co3At4Ch4]
+894.065 -0.107825 0.00 !Mu3ChY53TRaw[Co3At4Ch5]
+902.563 -0.108862 0.00 !Mu3ChY54TRaw[Co3At4Ch6]
+907.447 -0.109456 0.00 !Mu3ChY55TRaw[Co3At4Ch7]
+913.155 -0.110152 0.00 !Mu3ChY56TRaw[Co3At4Ch8]
+917.884 -0.110718 0.00 !Mu3ChY57TRaw[Co3At4Ch9]
+916.39 -0.11056 0.00 !Mu3ChY58TRaw[Co3At4Ch10]
+925.29 -0.111636 0.00 !Mu3ChY59TRaw[Co3At4Ch11]
+911.348 -0.109934 0.00 !Mu3ChY60TRaw[Co3At4Ch12]
+924.685 -0.111581 0.00 !Mu3ChY61TRaw[Co3At4Ch13]
+925.584 -0.111694 0.00 !Mu3ChY62TRaw[Co3At4Ch14]
+920.738 -0.1111 0.00 !Mu3ChY63TRaw[Co3At4Ch15]
+923.494 -0.11144 0.00 !Mu3ChY64TRaw[Co3At4Ch16]
+904.406 -0.109216 0.00 !Mu3ChY65TRaw[Co4At1Ch1]
+911.098 -0.110026 0.00 !Mu3ChY66TRaw[Co4At1Ch2]
+911.599 -0.110106 0.00 !Mu3ChY67TRaw[Co4At1Ch3]
+920.222 -0.11114 0.00 !Mu3ChY68TRaw[Co4At1Ch4]
+931.355 -0.11252 0.00 !Mu3ChY69TRaw[Co4At1Ch5]
+939.668 -0.113544 0.00 !Mu3ChY70TRaw[Co4At1Ch6]
+932.714 -0.112672 0.00 !Mu3ChY71TRaw[Co4At1Ch7]
+931.288 -0.112491 0.00 !Mu3ChY72TRaw[Co4At1Ch8]
+947.183 -0.114462 0.00 !Mu3ChY73TRaw[Co4At1Ch9]
+939.764 -0.11354 0.00 !Mu3ChY74TRaw[Co4At1Ch10]
+955.625 -0.115517 0.00 !Mu3ChY75TRaw[Co4At1Ch11]
+952.282 -0.115086 0.00 !Mu3ChY76TRaw[Co4At1Ch12]
+964.745 -0.116618 0.00 !Mu3ChY77TRaw[Co4At1Ch13]
+953.345 -0.115232 0.00 !Mu3ChY78TRaw[Co4At1Ch14]
+945.988 -0.114343 0.00 !Mu3ChY79TRaw[Co4At1Ch15]
+951.047 -0.114947 0.00 !Mu3ChY80TRaw[Co4At1Ch16]
+970.943 -0.117288 0.00 !Mu3ChY81TRaw[Co4At2Ch1]
+982.69 -0.118727 0.00 !Mu3ChY82TRaw[Co4At2Ch2]
+988.906 -0.119474 0.00 !Mu3ChY83TRaw[Co4At2Ch3]
+992.522 -0.119909 0.00 !Mu3ChY84TRaw[Co4At2Ch4]
+994.13 -0.120116 0.00 !Mu3ChY85TRaw[Co4At2Ch5]
+1001.12 -0.120975 0.00 !Mu3ChY86TRaw[Co4At2Ch6]
+998.108 -0.120606 0.00 !Mu3ChY87TRaw[Co4At2Ch7]
+999.312 -0.12076 0.00 !Mu3ChY88TRaw[Co4At2Ch8]
+1004.15 -0.121336 0.00 !Mu3ChY89TRaw[Co4At2Ch9]
+1015.36 -0.122713 0.00 !Mu3ChY90TRaw[Co4At2Ch10]
+1018.49 -0.1231 0.00 !Mu3ChY91TRaw[Co4At2Ch11]
+1006.74 -0.121678 0.00 !Mu3ChY92TRaw[Co4At2Ch12]
+1015.03 -0.122697 0.00 !Mu3ChY93TRaw[Co4At2Ch13]
+1018.29 -0.123087 0.00 !Mu3ChY94TRaw[Co4At2Ch14]
+1010.39 -0.122144 0.00 !Mu3ChY95TRaw[Co4At2Ch15]
+1011.64 -0.122274 0.00 !Mu3ChY96TRaw[Co4At2Ch16]
+874.337 -0.105573 0.00 !Mu3ChY97TRaw[Co4At3Ch1]
+871.593 -0.105224 0.00 !Mu3ChY98TRaw[Co4At3Ch2]
+876.164 -0.105791 0.00 !Mu3ChY99TRaw[Co4At3Ch3]
+885.298 -0.106904 0.00 !Mu3ChY100TRaw[Co4At3Ch4]
+892.528 -0.107789 0.00 !Mu3ChY101TRaw[Co4At3Ch5]
+892.165 -0.107742 0.00 !Mu3ChY102TRaw[Co4At3Ch6]
+903.16 -0.109085 0.00 !Mu3ChY103TRaw[Co4At3Ch7]
+895.161 -0.108126 0.00 !Mu3ChY104TRaw[Co4At3Ch8]
+902.34 -0.108999 0.00 !Mu3ChY105TRaw[Co4At3Ch9]
+894.856 -0.108068 0.00 !Mu3ChY106TRaw[Co4At3Ch10]
+894.177 -0.108006 0.00 !Mu3ChY107TRaw[Co4At3Ch11]
+903.343 -0.109125 0.00 !Mu3ChY108TRaw[Co4At3Ch12]
+905.571 -0.109439 0.00 !Mu3ChY109TRaw[Co4At3Ch13]
+903.69 -0.109168 0.00 !Mu3ChY110TRaw[Co4At3Ch14]
+899.215 -0.108625 0.00 !Mu3ChY111TRaw[Co4At3Ch15]
+905.657 -0.109416 0.00 !Mu3ChY112TRaw[Co4At3Ch16]
+891.482 -0.107554 0.00 !Mu3ChY113TRaw[Co4At4Ch1]
+898.972 -0.108473 0.00 !Mu3ChY114TRaw[Co4At4Ch2]
+902.164 -0.108848 0.00 !Mu3ChY115TRaw[Co4At4Ch3]
+897.423 -0.108292 0.00 !Mu3ChY116TRaw[Co4At4Ch4]
+905.477 -0.109288 0.00 !Mu3ChY117TRaw[Co4At4Ch5]
+910.936 -0.109943 0.00 !Mu3ChY118TRaw[Co4At4Ch6]
+909.486 -0.109765 0.00 !Mu3ChY119TRaw[Co4At4Ch7]
+908.693 -0.109672 0.00 !Mu3ChY120TRaw[Co4At4Ch8]
+915.535 -0.110512 0.00 !Mu3ChY121TRaw[Co4At4Ch9]
+924.289 -0.111588 0.00 !Mu3ChY122TRaw[Co4At4Ch10]
+926.875 -0.111915 0.00 !Mu3ChY123TRaw[Co4At4Ch11]
+909.469 -0.109772 0.00 !Mu3ChY124TRaw[Co4At4Ch12]
+913.618 -0.11029 0.00 !Mu3ChY125TRaw[Co4At4Ch13]
+919.137 -0.110947 0.00 !Mu3ChY126TRaw[Co4At4Ch14]
+920.413 -0.111116 0.00 !Mu3ChY127TRaw[Co4At4Ch15]
+928.523 -0.112131 0.00 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/Coeff/Cal_Str_X_T_MM1_run_0200.cal b/Projects/MUSETT/calibration/calib_simu/Time/Coeff/Cal_Str_X_T_MM1_run_0200.cal
new file mode 100644
index 0000000000000000000000000000000000000000..75fd18aa4723e482e5d79901e3e272b5f58b002e
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/Coeff/Cal_Str_X_T_MM1_run_0200.cal
@@ -0,0 +1,64 @@
+MUSETT_T1_DSSD_X1_T 954.599 -0.121763	7.01384e-07
+MUSETT_T1_DSSD_X2_T 967.922 -0.123541	7.26055e-07
+MUSETT_T1_DSSD_X3_T 961.88 -0.122284	6.0757e-07
+MUSETT_T1_DSSD_X4_T 978.032 -0.125354	7.20967e-07
+MUSETT_T1_DSSD_X5_T 986.23 -0.125953	7.65489e-07
+MUSETT_T1_DSSD_X6_T 987.96 -0.126599	8.20619e-07
+MUSETT_T1_DSSD_X7_T 984.219 -0.126018	7.27668e-07
+MUSETT_T1_DSSD_X8_T 985.856 -0.124783	6.08173e-07
+MUSETT_T1_DSSD_X9_T 988.949 -0.126482	7.59745e-07
+MUSETT_T1_DSSD_X10_T 992.701 -0.126472	7.16079e-07
+MUSETT_T1_DSSD_X11_T 992.831 -0.126239	6.55316e-07
+MUSETT_T1_DSSD_X12_T 996.87 -0.126281	6.553e-07
+MUSETT_T1_DSSD_X13_T 1006.36 -0.127949	7.17096e-07
+MUSETT_T1_DSSD_X14_T 987.503 -0.124659	5.90654e-07
+MUSETT_T1_DSSD_X15_T 1000.36 -0.127793	7.46879e-07
+MUSETT_T1_DSSD_X16_T 986.25 -0.12444	5.59837e-07
+MUSETT_T1_DSSD_X17_T 964.954 -0.122665	6.71169e-07
+MUSETT_T1_DSSD_X18_T 963.006 -0.11643	9.6873e-11
+MUSETT_T1_DSSD_X19_T 987.209 -0.124488	5.84763e-07
+MUSETT_T1_DSSD_X20_T 971.846 -0.117514	-5.4511e-08
+MUSETT_T1_DSSD_X21_T 987.621 -0.120137	6.81102e-08
+MUSETT_T1_DSSD_X22_T 976.231 -0.118639	4.23294e-11
+MUSETT_T1_DSSD_X23_T 981.587 -0.118294	-1.32395e-07
+MUSETT_T1_DSSD_X24_T 1006.36 -0.127949	7.17101e-07
+MUSETT_T1_DSSD_X25_T 981.565 -0.118872	-4.11001e-08
+MUSETT_T1_DSSD_X26_T 1004.98 -0.12628	5.06616e-07
+MUSETT_T1_DSSD_X27_T 997.459 -0.120096	-8.3353e-08
+MUSETT_T1_DSSD_X28_T 1003.43 -0.121364	-9.94967e-09
+MUSETT_T1_DSSD_X29_T 995.999 -0.120457	-5.8383e-08
+MUSETT_T1_DSSD_X30_T 995.815 -0.120512	-3.87946e-08
+MUSETT_T1_DSSD_X31_T 1005.12 -0.128179	7.04129e-07
+MUSETT_T1_DSSD_X32_T 992.127 -0.120162	1.69201e-08
+MUSETT_T1_DSSD_X33_T 883.917 -0.114701	8.52186e-07
+MUSETT_T1_DSSD_X34_T 881.153 -0.113932	8.15362e-07
+MUSETT_T1_DSSD_X35_T 896.635 -0.115598	7.58613e-07
+MUSETT_T1_DSSD_X36_T 887.918 -0.11403	7.36313e-07
+MUSETT_T1_DSSD_X37_T 886.863 -0.113974	7.12182e-07
+MUSETT_T1_DSSD_X38_T 904.09 -0.116967	8.13585e-07
+MUSETT_T1_DSSD_X39_T 899.906 -0.115007	6.31382e-07
+MUSETT_T1_DSSD_X40_T 905.286 -0.1165	7.84653e-07
+MUSETT_T1_DSSD_X41_T 892.708 -0.108895	4.19165e-08
+MUSETT_T1_DSSD_X42_T 908.746 -0.116546	7.39379e-07
+MUSETT_T1_DSSD_X43_T 906.086 -0.116933	7.82491e-07
+MUSETT_T1_DSSD_X44_T 915.4 -0.117122	7.33411e-07
+MUSETT_T1_DSSD_X45_T 912.244 -0.117268	7.89631e-07
+MUSETT_T1_DSSD_X46_T 908.165 -0.116835	8.01145e-07
+MUSETT_T1_DSSD_X47_T 903.121 -0.116119	7.29519e-07
+MUSETT_T1_DSSD_X48_T 903.827 -0.116056	7.04315e-07
+MUSETT_T1_DSSD_X49_T 896.544 -0.114638	7.3623e-07
+MUSETT_T1_DSSD_X50_T 895.865 -0.114409	6.78143e-07
+MUSETT_T1_DSSD_X51_T 899.927 -0.1147	6.53573e-07
+MUSETT_T1_DSSD_X52_T 907.668 -0.116135	7.5805e-07
+MUSETT_T1_DSSD_X53_T 915.828 -0.116231	6.31303e-07
+MUSETT_T1_DSSD_X54_T 913.447 -0.115813	5.77349e-07
+MUSETT_T1_DSSD_X55_T 920.745 -0.116359	5.93778e-07
+MUSETT_T1_DSSD_X56_T 920.539 -0.116871	6.04792e-07
+MUSETT_T1_DSSD_X57_T 937.997 -0.119851	7.58037e-07
+MUSETT_T1_DSSD_X58_T 923.581 -0.118299	7.10738e-07
+MUSETT_T1_DSSD_X59_T 936.772 -0.119366	7.14976e-07
+MUSETT_T1_DSSD_X60_T 936.468 -0.119298	6.66735e-07
+MUSETT_T1_DSSD_X61_T 947.735 -0.120999	7.29801e-07
+MUSETT_T1_DSSD_X62_T 952.292 -0.123036	8.82113e-07
+MUSETT_T1_DSSD_X63_T 953.571 -0.121901	7.55376e-07
+MUSETT_T1_DSSD_X64_T 936.886 -0.119031	6.42594e-07
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/Coeff/Cal_Str_X_T_MM1_run_0200.peak b/Projects/MUSETT/calibration/calib_simu/Time/Coeff/Cal_Str_X_T_MM1_run_0200.peak
new file mode 100644
index 0000000000000000000000000000000000000000..572b578455850cfbd5b2ac25ede01f35d6770a13
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/Coeff/Cal_Str_X_T_MM1_run_0200.peak
@@ -0,0 +1,1640 @@
+MUSETT_T1_DSSD_X1_T 
+0	3816.18
+1	3992.18
+2	4152.18
+3	4328.18
+4	4504.18
+5	4680.18
+6	4856.18
+7	5032.16
+8	5208.16
+9	5384.18
+10	5560.18
+11	5736.17
+12	5912.18
+13	6088.18
+14	6264.19
+15	6440.18
+16	6616.18
+17	6792.18
+18	6968.18
+19	7144.18
+20	7304.18
+21	7496.18
+22	7656.18
+23	7832.18
+24	8120.16
+MUSETT_T1_DSSD_X2_T 
+0	3864.19
+1	4040.17
+2	4216.2
+3	4392.18
+4	4552.18
+5	4728.18
+6	4904.18
+7	5080.16
+8	5256.18
+9	5416.18
+10	5592.18
+11	5768.18
+12	5944.18
+13	6120.18
+14	6296.18
+15	6456.18
+16	6632.18
+17	6808.18
+18	6984.18
+19	7160.18
+20	7336.18
+21	7496.18
+22	7672.18
+23	7848.18
+24	8120.18
+MUSETT_T1_DSSD_X3_T 
+0	3848.19
+1	4008.18
+2	4184.18
+3	4360.18
+4	4536.18
+5	4712.18
+6	4888.18
+7	5048.16
+8	5224.18
+9	5400.18
+10	5576.18
+11	5752.18
+12	5912.18
+13	6088.18
+14	6264.19
+15	6440.18
+16	6616.18
+17	6776.18
+18	6952.18
+19	7128.18
+20	7304.18
+21	7480.18
+22	7640.18
+23	7816.18
+24	8088.18
+MUSETT_T1_DSSD_X4_T 
+0	3896.19
+1	4056.17
+2	4232.2
+3	4408.18
+4	4568.18
+5	4744.18
+6	4920.18
+7	5080.16
+8	5256.18
+9	5416.18
+10	5592.18
+11	5768.18
+12	5944.18
+13	6104.18
+14	6280.18
+15	6440.18
+16	6616.18
+17	6792.18
+18	6952.18
+19	7128.18
+20	7304.18
+21	7464.18
+22	7640.18
+23	7816.18
+24	8072.18
+MUSETT_T1_DSSD_X5_T 
+0	3944.18
+1	4120.18
+2	4280.2
+3	4456.18
+4	4632.17
+5	4792.18
+6	4968.16
+7	5144.16
+8	5304.18
+9	5480.18
+10	5656.17
+11	5816.18
+12	5992.18
+13	6152.18
+14	6328.18
+15	6504.18
+16	6664.18
+17	6840.18
+18	7016.18
+19	7176.18
+20	7352.18
+21	7528.18
+22	7688.18
+23	7864.18
+24	8136.18
+MUSETT_T1_DSSD_X6_T 
+0	3944.18
+1	4120.18
+2	4280.2
+3	4456.18
+4	4632.17
+5	4792.18
+6	4968.16
+7	5144.16
+8	5304.18
+9	5480.18
+10	5640.17
+11	5816.18
+12	5992.18
+13	6152.18
+14	6328.18
+15	6504.18
+16	6664.18
+17	6840.18
+18	7016.18
+19	7176.18
+20	7352.18
+21	7528.18
+22	7688.18
+23	7864.18
+24	8136.18
+MUSETT_T1_DSSD_X7_T 
+0	3928.18
+1	4088.17
+2	4264.2
+3	4424.18
+4	4600.18
+5	4776.18
+6	4936.18
+7	5112.16
+8	5272.18
+9	5448.18
+10	5624.17
+11	5784.18
+12	5960.18
+13	6120.18
+14	6296.18
+15	6472.18
+16	6632.18
+17	6808.18
+18	6968.18
+19	7144.18
+20	7320.18
+21	7480.18
+22	7656.18
+23	7816.18
+24	8088.18
+MUSETT_T1_DSSD_X8_T 
+0	3800.18
+1	3960.18
+2	4136.18
+3	4296.2
+4	4472.18
+5	4648.17
+6	4808.18
+7	4984.16
+8	5144.16
+9	5320.18
+10	5496.18
+11	5656.17
+12	5832.18
+13	5992.18
+14	6168.18
+15	6328.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7512.18
+23	7688.18
+24	7864.18
+25	8120.18
+MUSETT_T1_DSSD_X9_T 
+0	3944.18
+1	4120.18
+2	4296.2
+3	4456.18
+4	4632.17
+5	4792.18
+6	4968.16
+7	5144.16
+8	5304.18
+9	5480.18
+10	5640.17
+11	5816.18
+12	5976.18
+13	6152.18
+14	6328.18
+15	6488.18
+16	6664.18
+17	6824.18
+18	7000.18
+19	7176.18
+20	7336.18
+21	7512.18
+22	7672.18
+23	7848.18
+24	8120.18
+MUSETT_T1_DSSD_X10_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4488.18
+5	4648.17
+6	4824.18
+7	4984.16
+8	5160.16
+9	5320.18
+10	5496.18
+11	5672.17
+12	5832.18
+13	6008.18
+14	6168.18
+15	6344.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7528.18
+23	7688.18
+24	7864.18
+25	8120.18
+MUSETT_T1_DSSD_X11_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4488.18
+5	4648.17
+6	4824.18
+7	4984.16
+8	5160.16
+9	5320.18
+10	5496.18
+11	5656.17
+12	5832.18
+13	5992.18
+14	6168.18
+15	6328.18
+16	6504.18
+17	6664.18
+18	6840.18
+19	7000.18
+20	7176.18
+21	7336.18
+22	7512.18
+23	7672.18
+24	7848.18
+25	8104.18
+MUSETT_T1_DSSD_X12_T 
+0	3848.19
+1	4008.18
+2	4184.18
+3	4344.18
+4	4520.18
+5	4680.18
+6	4856.18
+7	5016.16
+8	5192.16
+9	5352.18
+10	5528.18
+11	5688.17
+12	5864.18
+13	6024.18
+14	6200.18
+15	6360.18
+16	6536.18
+17	6696.18
+18	6872.18
+19	7032.18
+20	7208.18
+21	7368.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+MUSETT_T1_DSSD_X13_T 
+0	3880.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4536.18
+5	4712.18
+6	4872.18
+7	5048.16
+8	5208.16
+9	5368.18
+10	5544.18
+11	5704.17
+12	5880.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6536.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7208.18
+21	7384.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+MUSETT_T1_DSSD_X14_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4488.18
+5	4664.18
+6	4824.18
+7	5000.16
+8	5160.16
+9	5336.18
+10	5496.18
+11	5672.17
+12	5848.18
+13	6008.18
+14	6184.18
+15	6344.18
+16	6520.18
+17	6696.18
+18	6856.18
+19	7032.18
+20	7192.18
+21	7368.18
+22	7528.18
+23	7704.18
+24	7864.18
+25	8136.18
+MUSETT_T1_DSSD_X15_T 
+0	3832.19
+1	4008.18
+2	4168.18
+3	4344.18
+4	4504.18
+5	4664.18
+6	4840.18
+7	5000.16
+8	5176.16
+9	5336.18
+10	5512.18
+11	5672.17
+12	5848.18
+13	6008.18
+14	6184.18
+15	6344.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7512.18
+23	7688.18
+24	7848.18
+25	8120.18
+MUSETT_T1_DSSD_X16_T 
+0	3800.18
+1	3976.18
+2	4136.18
+3	4312.18
+4	4488.18
+5	4648.17
+6	4824.18
+7	4984.16
+8	5160.16
+9	5320.18
+10	5496.18
+11	5672.17
+12	5832.18
+13	6008.18
+14	6168.18
+15	6344.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7528.18
+23	7688.18
+24	7864.18
+25	8120.18
+MUSETT_T1_DSSD_X17_T 
+0	3864.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4552.18
+5	4728.18
+6	4904.18
+7	5080.16
+8	5256.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5944.18
+13	6120.18
+14	6296.18
+15	6472.18
+16	6632.18
+17	6808.18
+18	6984.18
+19	7160.18
+20	7336.18
+21	7512.18
+22	7688.18
+23	7848.18
+24	8120.18
+MUSETT_T1_DSSD_X18_T 
+0	3800.18
+1	3976.18
+2	4152.18
+3	4328.18
+4	4488.18
+5	4664.18
+6	4840.18
+7	5000.16
+8	5176.16
+9	5352.18
+10	5528.18
+11	5688.17
+12	5864.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6552.18
+17	6728.18
+18	6904.18
+19	7064.18
+20	7240.18
+21	7416.18
+22	7576.18
+23	7752.18
+24	7928.18
+25	8104.18
+MUSETT_T1_DSSD_X19_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4328.18
+4	4488.18
+5	4664.18
+6	4824.18
+7	5000.16
+8	5176.16
+9	5336.18
+10	5512.18
+11	5672.17
+12	5848.18
+13	6008.18
+14	6184.18
+15	6360.18
+16	6520.18
+17	6696.18
+18	6856.18
+19	7032.18
+20	7208.18
+21	7368.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+MUSETT_T1_DSSD_X20_T 
+0	3832.19
+1	4008.18
+2	4184.18
+3	4344.18
+4	4520.18
+5	4680.18
+6	4856.18
+7	5032.16
+8	5192.16
+9	5368.18
+10	5528.18
+11	5704.17
+12	5864.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6552.18
+17	6712.18
+18	6888.18
+19	7048.18
+20	7224.18
+21	7400.18
+22	7560.18
+23	7736.18
+24	7896.18
+25	8072.18
+MUSETT_T1_DSSD_X21_T 
+0	3896.19
+1	4072.17
+2	4232.2
+3	4408.18
+4	4568.18
+5	4744.18
+6	4904.18
+7	5064.16
+8	5240.18
+9	5416.18
+10	5576.18
+11	5736.17
+12	5912.18
+13	6072.18
+14	6248.19
+15	6408.18
+16	6584.18
+17	6744.18
+18	6920.18
+19	7080.18
+20	7256.18
+21	7416.18
+22	7592.18
+23	7752.18
+24	7928.18
+25	8088.18
+MUSETT_T1_DSSD_X22_T 
+0	3848.19
+1	4008.18
+2	4184.18
+3	4344.18
+4	4520.18
+5	4696.18
+6	4856.18
+7	5032.16
+8	5192.16
+9	5368.18
+10	5528.18
+11	5704.17
+12	5864.18
+13	6040.18
+14	6200.18
+15	6376.18
+16	6536.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7224.18
+21	7384.18
+22	7560.18
+23	7720.18
+24	7896.18
+25	8056.18
+MUSETT_T1_DSSD_X23_T 
+0	3880.19
+1	4056.17
+2	4216.2
+3	4392.18
+4	4552.18
+5	4728.18
+6	4888.18
+7	5064.16
+8	5224.18
+9	5384.18
+10	5560.18
+11	5720.17
+12	5896.18
+13	6056.18
+14	6232.18
+15	6392.18
+16	6552.18
+17	6728.18
+18	6888.18
+19	7064.18
+20	7224.18
+21	7384.18
+22	7560.18
+23	7720.18
+24	7896.18
+25	8056.18
+MUSETT_T1_DSSD_X24_T 
+0	3880.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4536.18
+5	4712.18
+6	4872.18
+7	5048.16
+8	5208.16
+9	5368.18
+10	5544.18
+11	5704.17
+12	5880.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6536.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7208.18
+21	7384.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+MUSETT_T1_DSSD_X25_T 
+0	3880.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4552.18
+5	4712.18
+6	4888.18
+7	5048.16
+8	5224.18
+9	5384.18
+10	5560.18
+11	5720.17
+12	5896.18
+13	6056.18
+14	6232.18
+15	6392.18
+16	6552.18
+17	6728.18
+18	6888.18
+19	7064.18
+20	7224.18
+21	7400.18
+22	7560.18
+23	7736.18
+24	7896.18
+25	8072.18
+MUSETT_T1_DSSD_X26_T 
+0	3896.19
+1	4056.17
+2	4232.2
+3	4392.18
+4	4552.18
+5	4728.18
+6	4888.18
+7	5048.16
+8	5224.18
+9	5384.18
+10	5560.18
+11	5720.17
+12	5880.18
+13	6056.18
+14	6216.18
+15	6376.18
+16	6552.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7208.18
+21	7368.18
+22	7544.18
+23	7704.18
+24	7864.18
+25	8120.17
+MUSETT_T1_DSSD_X27_T 
+0	3800.18
+1	3960.18
+2	4136.18
+3	4296.2
+4	4456.18
+5	4632.17
+6	4792.18
+7	4952.16
+8	5128.16
+9	5288.18
+10	5448.18
+11	5624.17
+12	5784.18
+13	5944.18
+14	6120.18
+15	6280.18
+16	6440.18
+17	6616.18
+18	6776.18
+19	6936.18
+20	7096.18
+21	7272.18
+22	7432.18
+23	7608.18
+24	7768.18
+25	7928.18
+26	8088.18
+MUSETT_T1_DSSD_X28_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4472.18
+5	4648.17
+6	4808.18
+7	4968.16
+8	5128.16
+9	5304.18
+10	5464.18
+11	5624.17
+12	5800.18
+13	5960.18
+14	6120.18
+15	6280.18
+16	6456.18
+17	6616.18
+18	6776.18
+19	6952.18
+20	7112.18
+21	7272.18
+22	7432.18
+23	7608.18
+24	7768.18
+25	7928.18
+26	8104.18
+MUSETT_T1_DSSD_X29_T 
+0	3944.18
+1	4104.18
+2	4280.2
+3	4440.18
+4	4600.18
+5	4776.18
+6	4936.18
+7	5096.16
+8	5272.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5928.18
+13	6088.18
+14	6264.19
+15	6424.18
+16	6584.18
+17	6744.18
+18	6920.18
+19	7080.18
+20	7240.18
+21	7416.18
+22	7576.18
+23	7736.18
+24	7912.18
+25	8072.18
+MUSETT_T1_DSSD_X30_T 
+0	3944.18
+1	4104.18
+2	4280.2
+3	4440.18
+4	4600.18
+5	4776.18
+6	4936.18
+7	5096.16
+8	5272.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5928.18
+13	6088.18
+14	6264.19
+15	6424.18
+16	6584.18
+17	6760.18
+18	6920.18
+19	7080.18
+20	7256.18
+21	7416.18
+22	7576.18
+23	7752.18
+24	7912.18
+25	8072.18
+MUSETT_T1_DSSD_X31_T 
+0	3864.19
+1	4024.18
+2	4184.18
+3	4360.18
+4	4520.18
+5	4680.18
+6	4856.18
+7	5016.16
+8	5192.16
+9	5352.18
+10	5512.18
+11	5688.17
+12	5848.18
+13	6024.18
+14	6184.18
+15	6344.18
+16	6520.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7512.18
+23	7672.18
+24	7848.18
+25	8104.18
+MUSETT_T1_DSSD_X32_T 
+0	3928.18
+1	4104.18
+2	4264.2
+3	4424.18
+4	4600.18
+5	4760.18
+6	4936.18
+7	5096.16
+8	5272.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5928.18
+13	6104.18
+14	6264.19
+15	6424.18
+16	6600.18
+17	6760.18
+18	6936.18
+19	7096.18
+20	7272.18
+21	7432.18
+22	7592.18
+23	7768.18
+24	7928.18
+25	8104.18
+MUSETT_T1_DSSD_X33_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4360.18
+4	4552.18
+5	4744.18
+6	4920.18
+7	5112.16
+8	5304.18
+9	5496.18
+10	5688.17
+11	5880.18
+12	6072.18
+13	6264.19
+14	6440.18
+15	6632.18
+16	6824.18
+17	7016.18
+18	7208.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X34_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4360.18
+4	4552.18
+5	4728.18
+6	4920.18
+7	5112.16
+8	5320.18
+9	5496.18
+10	5688.17
+11	5880.18
+12	6072.18
+13	6264.19
+14	6456.18
+15	6648.18
+16	6840.18
+17	7032.18
+18	7224.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8088.18
+MUSETT_T1_DSSD_X35_T 
+0	3864.19
+1	4056.17
+2	4232.2
+3	4424.18
+4	4616.17
+5	4792.18
+6	4984.16
+7	5176.16
+8	5352.18
+9	5544.18
+10	5736.17
+11	5912.18
+12	6104.18
+13	6280.18
+14	6472.18
+15	6664.18
+16	6856.18
+17	7032.18
+18	7224.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X36_T 
+0	3832.19
+1	4024.18
+2	4216.2
+3	4408.18
+4	4600.18
+5	4776.18
+6	4968.16
+7	5160.16
+8	5352.18
+9	5544.18
+10	5720.17
+11	5912.18
+12	6104.18
+13	6296.18
+14	6472.18
+15	6664.18
+16	6856.18
+17	7048.18
+18	7240.18
+19	7416.18
+20	7608.18
+21	7800.18
+22	8104.18
+MUSETT_T1_DSSD_X37_T 
+0	3832.19
+1	4008.18
+2	4200.18
+3	4392.18
+4	4584.18
+5	4776.18
+6	4952.16
+7	5144.16
+8	5336.18
+9	5528.18
+10	5704.17
+11	5896.18
+12	6088.18
+13	6280.18
+14	6456.18
+15	6648.18
+16	6840.18
+17	7032.18
+18	7224.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X38_T 
+0	3896.19
+1	4072.17
+2	4264.2
+3	4440.18
+4	4632.17
+5	4824.18
+6	5000.16
+7	5192.16
+8	5368.18
+9	5560.18
+10	5736.17
+11	5928.18
+12	6120.18
+13	6296.18
+14	6488.18
+15	6664.18
+16	6856.18
+17	7032.18
+18	7224.18
+19	7416.18
+20	7592.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X39_T 
+0	3896.19
+1	4088.17
+2	4264.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5560.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7224.18
+19	7416.18
+20	7592.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X40_T 
+0	3912.18
+1	4104.18
+2	4280.2
+3	4472.18
+4	4664.18
+5	4840.18
+6	5032.16
+7	5208.16
+8	5400.18
+9	5592.18
+10	5768.18
+11	5960.18
+12	6136.18
+13	6328.18
+14	6504.18
+15	6696.18
+16	6888.18
+17	7064.18
+18	7256.18
+19	7432.18
+20	7624.18
+21	7816.18
+22	8104.18
+MUSETT_T1_DSSD_X41_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4344.18
+4	4536.18
+5	4712.18
+6	4904.18
+7	5080.16
+8	5272.18
+9	5448.18
+10	5640.17
+11	5816.18
+12	6008.18
+13	6200.18
+14	6376.18
+15	6568.18
+16	6744.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7672.18
+22	7848.18
+23	8040.18
+MUSETT_T1_DSSD_X42_T 
+0	3944.18
+1	4120.18
+2	4312.18
+3	4488.18
+4	4680.18
+5	4856.18
+6	5048.16
+7	5224.18
+8	5416.18
+9	5608.17
+10	5784.18
+11	5976.18
+12	6152.18
+13	6344.18
+14	6520.18
+15	6712.18
+16	6888.18
+17	7080.18
+18	7256.18
+19	7448.18
+20	7624.18
+21	7816.18
+22	8104.18
+MUSETT_T1_DSSD_X43_T 
+0	3912.18
+1	4088.17
+2	4280.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5576.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7224.18
+19	7416.18
+20	7608.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X44_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4344.18
+4	4536.18
+5	4712.18
+6	4904.18
+7	5080.16
+8	5256.18
+9	5448.18
+10	5624.17
+11	5816.18
+12	5992.18
+13	6184.18
+14	6360.18
+15	6552.18
+16	6728.18
+17	6920.18
+18	7096.18
+19	7288.18
+20	7464.18
+21	7640.18
+22	7832.18
+23	8120.18
+MUSETT_T1_DSSD_X45_T 
+0	3944.18
+1	4136.18
+2	4328.18
+3	4504.18
+4	4696.18
+5	4872.18
+6	5048.16
+7	5240.18
+8	5432.18
+9	5608.17
+10	5800.18
+11	5976.18
+12	6168.18
+13	6344.18
+14	6536.18
+15	6712.18
+16	6904.18
+17	7080.18
+18	7272.18
+19	7448.18
+20	7640.18
+21	7816.18
+22	8120.18
+MUSETT_T1_DSSD_X46_T 
+0	3928.18
+1	4120.18
+2	4296.2
+3	4488.18
+4	4680.18
+5	4856.18
+6	5048.16
+7	5224.18
+8	5416.18
+9	5592.18
+10	5784.18
+11	5976.18
+12	6152.18
+13	6344.18
+14	6520.18
+15	6712.18
+16	6888.18
+17	7080.18
+18	7272.18
+19	7448.18
+20	7640.18
+21	7816.18
+22	8120.18
+MUSETT_T1_DSSD_X47_T 
+0	3896.19
+1	4088.17
+2	4280.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5560.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7240.18
+19	7416.18
+20	7608.18
+21	7784.18
+22	8072.17
+MUSETT_T1_DSSD_X48_T 
+0	3912.18
+1	4088.17
+2	4280.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5208.16
+8	5384.18
+9	5576.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7240.18
+19	7416.18
+20	7592.18
+21	7784.18
+22	8072.17
+MUSETT_T1_DSSD_X49_T 
+0	3896.19
+1	4088.17
+2	4264.2
+3	4456.18
+4	4648.17
+5	4840.18
+6	5016.16
+7	5208.16
+8	5400.18
+9	5592.18
+10	5768.18
+11	5960.18
+12	6152.18
+13	6344.18
+14	6520.18
+15	6712.18
+16	6904.18
+17	7080.18
+18	7272.18
+19	7464.18
+20	7656.18
+21	7832.18
+22	8136.16
+MUSETT_T1_DSSD_X50_T 
+0	3896.19
+1	4072.17
+2	4264.2
+3	4456.18
+4	4632.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5576.18
+10	5768.18
+11	5944.18
+12	6136.18
+13	6328.18
+14	6504.18
+15	6696.18
+16	6888.18
+17	7064.18
+18	7256.18
+19	7448.18
+20	7624.18
+21	7816.18
+22	8104.18
+MUSETT_T1_DSSD_X51_T 
+0	3912.18
+1	4104.18
+2	4280.2
+3	4472.18
+4	4664.18
+5	4840.18
+6	5032.16
+7	5224.18
+8	5400.18
+9	5592.18
+10	5768.18
+11	5960.18
+12	6152.18
+13	6328.18
+14	6520.18
+15	6712.18
+16	6888.18
+17	7080.18
+18	7256.18
+19	7448.18
+20	7640.18
+21	7816.18
+22	8104.18
+MUSETT_T1_DSSD_X52_T 
+0	3944.18
+1	4136.18
+2	4312.18
+3	4504.18
+4	4696.18
+5	4872.18
+6	5064.16
+7	5240.18
+8	5432.18
+9	5624.17
+10	5800.18
+11	5992.18
+12	6168.18
+13	6360.18
+14	6552.18
+15	6728.18
+16	6920.18
+17	7096.18
+18	7288.18
+19	7480.18
+20	7656.18
+21	7848.18
+22	8136.17
+MUSETT_T1_DSSD_X53_T 
+0	3816.18
+1	4008.18
+2	4184.18
+3	4376.18
+4	4552.18
+5	4728.18
+6	4920.18
+7	5096.16
+8	5288.18
+9	5464.18
+10	5656.17
+11	5832.18
+12	6008.18
+13	6200.18
+14	6376.18
+15	6568.18
+16	6744.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7848.18
+23	8120.18
+MUSETT_T1_DSSD_X54_T 
+0	3800.18
+1	3992.18
+2	4168.18
+3	4360.18
+4	4536.18
+5	4728.18
+6	4904.18
+7	5080.16
+8	5272.18
+9	5448.18
+10	5640.17
+11	5816.18
+12	5992.18
+13	6184.18
+14	6360.18
+15	6552.18
+16	6728.18
+17	6904.18
+18	7096.18
+19	7272.18
+20	7464.18
+21	7640.18
+22	7816.18
+23	8104.18
+MUSETT_T1_DSSD_X55_T 
+0	3848.19
+1	4040.17
+2	4216.2
+3	4408.18
+4	4584.18
+5	4776.18
+6	4952.16
+7	5128.16
+8	5304.18
+9	5496.18
+10	5672.17
+11	5864.18
+12	6040.18
+13	6216.18
+14	6408.18
+15	6584.18
+16	6776.18
+17	6952.18
+18	7128.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7864.18
+23	8136.18
+MUSETT_T1_DSSD_X56_T 
+0	3832.19
+1	4024.18
+2	4200.18
+3	4376.18
+4	4568.18
+5	4744.18
+6	4920.18
+7	5112.16
+8	5288.18
+9	5480.18
+10	5656.17
+11	5832.18
+12	6008.18
+13	6200.18
+14	6376.18
+15	6552.18
+16	6744.18
+17	6920.18
+18	7096.18
+19	7288.18
+20	7464.18
+21	7640.18
+22	7832.18
+23	8104.18
+MUSETT_T1_DSSD_X57_T 
+0	3912.18
+1	4088.17
+2	4264.2
+3	4440.18
+4	4632.17
+5	4808.18
+6	4984.16
+7	5160.16
+8	5336.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6248.19
+14	6424.18
+15	6600.18
+16	6776.18
+17	6952.18
+18	7144.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7864.18
+23	8136.18
+MUSETT_T1_DSSD_X58_T 
+0	3832.19
+1	4008.18
+2	4184.18
+3	4376.18
+4	4552.18
+5	4728.18
+6	4920.18
+7	5096.16
+8	5272.18
+9	5448.18
+10	5640.17
+11	5816.18
+12	6008.18
+13	6184.18
+14	6360.18
+15	6536.18
+16	6728.18
+17	6904.18
+18	7080.18
+19	7272.18
+20	7448.18
+21	7624.18
+22	7816.18
+23	8088.18
+MUSETT_T1_DSSD_X59_T 
+0	3912.18
+1	4088.17
+2	4264.2
+3	4440.18
+4	4632.17
+5	4808.18
+6	4984.16
+7	5160.16
+8	5352.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6248.19
+14	6424.18
+15	6600.18
+16	6776.18
+17	6952.18
+18	7144.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7864.18
+23	8136.18
+MUSETT_T1_DSSD_X60_T 
+0	3896.19
+1	4088.17
+2	4264.2
+3	4440.18
+4	4616.17
+5	4792.18
+6	4968.16
+7	5160.16
+8	5336.18
+9	5512.18
+10	5688.17
+11	5864.18
+12	6040.18
+13	6232.18
+14	6408.18
+15	6584.18
+16	6760.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7832.18
+23	8104.18
+MUSETT_T1_DSSD_X61_T 
+0	3944.18
+1	4120.18
+2	4312.18
+3	4488.18
+4	4664.18
+5	4840.18
+6	5016.16
+7	5192.16
+8	5368.18
+9	5544.18
+10	5720.17
+11	5896.18
+12	6072.18
+13	6248.19
+14	6424.18
+15	6600.18
+16	6792.18
+17	6968.18
+18	7144.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7848.18
+23	8120.18
+MUSETT_T1_DSSD_X62_T 
+0	3928.18
+1	4120.18
+2	4296.2
+3	4472.18
+4	4648.17
+5	4824.18
+6	5000.16
+7	5176.16
+8	5352.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6232.18
+14	6408.18
+15	6584.18
+16	6760.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7832.18
+23	8104.18
+MUSETT_T1_DSSD_X63_T 
+0	3800.18
+1	3976.18
+2	4152.18
+3	4328.18
+4	4504.18
+5	4680.18
+6	4856.18
+7	5032.16
+8	5208.16
+9	5384.18
+10	5560.18
+11	5736.17
+12	5912.18
+13	6088.18
+14	6264.19
+15	6440.18
+16	6616.18
+17	6792.18
+18	6968.18
+19	7144.18
+20	7320.18
+21	7496.18
+22	7672.18
+23	7848.18
+24	8136.16
+MUSETT_T1_DSSD_X64_T 
+0	3912.18
+1	4088.17
+2	4264.2
+3	4456.18
+4	4632.17
+5	4808.18
+6	4984.16
+7	5160.16
+8	5336.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6232.18
+14	6408.18
+15	6600.18
+16	6776.18
+17	6952.18
+18	7128.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7848.18
+23	8120.18
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/ExtractRawHisto_T.C b/Projects/MUSETT/calibration/calib_simu/Time/ExtractRawHisto_T.C
new file mode 100644
index 0000000000000000000000000000000000000000..828209dd0ef9c45b64b433e0b0042e6ece30c1bf
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/ExtractRawHisto_T.C
@@ -0,0 +1,113 @@
+////////////////////////////////////////////////////////////////////////////
+// This macro takes a converted ROOT file from the GANIL e569 exp. and    //
+// create an histogram for each strip (X and Y) of the MUST2 array filled //
+// with the energy. The histograms are dumped in an output ROOT file.     //
+//                                                                        //
+// This is especially usefull for calibration purposes when there is no   //
+// need to work directly on the TTree                                     //
+////////////////////////////////////////////////////////////////////////////
+#include <iostream>
+
+#include "TROOT.h"
+#include "TSystem.h"
+#include "TFile.h"
+#include "TString.h"
+#include "TTree.h"
+#include "TBranch.h"
+#include "TH1F.h"
+#include "TMUSETTData.h"
+#include "TChain.h"
+
+
+
+void ExtractMust2Histos(const char* fname = "run_0040", int NBTELESCOPE = 4, int NBSTRIPS = 128, int FIRSTSTRIP = 0, int FIRSTELESCOPE = 0)
+{
+
+  TString path  = "~/npTreeReader/np-tree-reader/Projects/MUSETT/RootR/";
+  TChain* tree = new TChain("RD");
+  tree->Add(path + fname + ".root");
+  //tree->Add(path + fname + "_1.root");
+  //tree->Add(path + fname + "_2.root");
+
+  tree->SetBranchStatus("*",false);
+
+  // connect the TMust2Data branch  
+  tree->SetBranchStatus("MUSETT",true);
+  tree->SetBranchStatus("fMM*",true);
+  TMUSETTData *rawMUSETT; 
+
+  std::cout << tree->GetEntries() << std::endl;
+
+  rawMUSETT = new TMUSETTData();
+  tree->SetBranchAddress("MUSETT", &rawMUSETT);
+
+
+
+  // open the output ROOT file
+  TString outFileName = "~/npTreeReader/np-tree-reader/Projects/MUSETT/calibration/Time/Histograms/";
+  outFileName += fname;
+  outFileName += "_RawMUSETTHistos.root";
+  std::cout<< outFileName<< std::endl;
+  TFile *outFile = new TFile(outFileName, "recreate");
+
+  // prepare output histograms for Must2
+  TH1F* hStripXTime[NBTELESCOPE-FIRSTELESCOPE][NBSTRIPS-FIRSTSTRIP];
+  TH1F* hStripYTime[NBTELESCOPE-FIRSTELESCOPE][NBSTRIPS-FIRSTSTRIP];
+  for (Int_t i = FIRSTELESCOPE; i < NBTELESCOPE; i++) {
+    for (Int_t j = FIRSTSTRIP; j < NBSTRIPS; j++) {
+      // strips XE
+      TString hnameXT     = Form("hMM%d_STRX_T%d", i, j);
+      TString htitleXT    = Form("MM%d_STRX_T%d", i, j);
+      hStripXTime[i][j] = new TH1F(hnameXT, htitleXT, 16384, 0, 16384);
+      // strips YE
+      TString hnameYT     = Form("hMM%d_STRY_T%d", i, j);
+      TString htitleYT    = Form("MM%d_STRY_T%d", i, j);
+      hStripYTime[i][j] = new TH1F(hnameYT, htitleYT, 16384, 0, 16384);
+    }
+  }
+
+  // read the data
+  Int_t nentries = tree->GetEntries();
+  //   nentries = 21000;
+  std::cout << "TTree contains " << nentries << " events" << std::endl;
+  for (Int_t i = 0; i < nentries; i++) {
+    if (i%10000 == 0) std::cout << "Entry " << i << std::endl;
+    
+    tree->GetEntry(i);
+    Int_t multXT = 0;
+    multXT = rawMUSETT->GetDSSDXTMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    for (Int_t j = 0; j < multXT; j++) {
+      Int_t det    = rawMUSETT->GetDSSDXTDetectorNbr(j);
+      Int_t stripX = rawMUSETT->GetDSSDXTStripNbr(j);
+      Int_t Time_ = rawMUSETT->GetDSSDXTTime(j);
+      if ((det < NBTELESCOPE) && (stripX < NBSTRIPS)) {
+        std::cout << det << " " << stripX << " " << Time_<< std::endl;
+        hStripXTime[det][stripX]->Fill(Time_);
+      }
+      else {
+        //std::cout << "Error filling histograms: MUSETT_X_T" << std::endl;
+      }
+    }
+    // get StripYE multiplicity
+    Int_t multYT = rawMUSETT->GetDSSDYTMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    for (Int_t j = 0; j < multYT; j++) {
+      Int_t det    = rawMUSETT->GetDSSDYTDetectorNbr(j);
+      Int_t stripY = rawMUSETT->GetDSSDYTStripNbr(j);
+      Int_t Time_ = rawMUSETT->GetDSSDYTTime(j);
+      if ((det < NBTELESCOPE) && (stripY < NBSTRIPS)) {
+        hStripYTime[det][stripY]->Fill(Time_);
+      }
+      else {
+        //std::cout << "Error filling histograms: MUSETT_Y_T" << std::endl;
+      }
+    }
+  }
+
+  // write on disk output file and close it
+  outFile->Write();
+  outFile->Close();
+}
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/ExtractRawHisto_T_C.d b/Projects/MUSETT/calibration/calib_simu/Time/ExtractRawHisto_T_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..8b366a233c98e6a83f3d1c61a31cf5d3e8878b57
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/ExtractRawHisto_T_C.d
@@ -0,0 +1,89 @@
+
+# DO NOT DELETE
+
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSystem.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInetAddress.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTimer.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSysEvtHandler.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTime.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./ExtractRawHisto_T_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TMUSETTData.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TChain.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+ExtractRawHisto_T_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/Histograms/.root_hist b/Projects/MUSETT/calibration/calib_simu/Time/Histograms/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..5d9de7637d13de4b12d1cf83318c5f3560ec847e
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/Histograms/.root_hist
@@ -0,0 +1,3 @@
+TFile *_file0 = TFile::Open("r0012_RawMUST2Histos.root")
+new TBrowser
+.q
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/RunToTreat.txt b/Projects/MUSETT/calibration/calib_simu/Time/RunToTreat.txt
new file mode 100644
index 0000000000000000000000000000000000000000..9c24dd33c012ad104f203bbc89f0ada9cac3f8ed
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/RunToTreat.txt
@@ -0,0 +1,4 @@
+TTreeName 
+	AutoTree
+RootFileName 
+  /data/mugastX/mugast/acquisition/root/run_0627.root 
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/TimeCalibrator.C b/Projects/MUSETT/calibration/calib_simu/Time/TimeCalibrator.C
new file mode 100644
index 0000000000000000000000000000000000000000..485707f949397cc44cbb16e2f4b0a69ba928584a
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/TimeCalibrator.C
@@ -0,0 +1,331 @@
+#include<stdlib.h>
+#include<stdio.h>
+#include <time.h>
+#include <iostream>
+#include <fstream>
+#include <sstream>
+#include "TString.h"
+#include "TSpectrum.h"
+#include "TGraphErrors.h"
+#include "TCanvas.h"
+#include "TFile.h"
+#include "TTree.h"
+#include "TH1F.h"
+#include "TF1.h"
+
+using namespace std;
+// #define TELESCOPE_START 1	
+// #define TELESCOPE_END 4
+#define STRIP_START	1
+#define STRIP_END 	64
+
+
+Int_t CurrentTelescope = 0 ;
+Int_t CurrentStrip     = 0 ;
+
+
+void TimeGene(TH1F*, TString, Int_t, int);
+Int_t Finder(TH1F*, Double_t*, Double_t*, Int_t);
+TF1* Calib(TGraphErrors*,Double_t*, Double_t*, Int_t);
+Double_t pol2 (Double_t *,Double_t *);
+		
+ofstream peaks_file, calib_file, dispersion_file,calib_online_file; 
+	
+void TimeCalibrator(const char* frun = "run_XXXX", TString xy = "X",Int_t npeak= 32, int TELESCOPE_START=1, int TELESCOPE_END=4)//49
+{
+	// open the ROOT file to process
+	TString path  = "./Histograms/";
+	TString inFileName = frun;
+  TFile *inFile;
+
+  inFile = new TFile(path + inFileName +"_RawMUSETTHistos.root");
+
+  TString str;
+  TString str1;
+  TString str2;
+  TString strbuff;
+  TString strbuff2;
+  TString fname;
+  TString fname2;
+
+	TString hname;
+	
+	TCanvas *c1 = new TCanvas("c1","c1",1200,900);
+  c1->cd();
+	//c1->Divide(16,8);
+
+	for (int det = TELESCOPE_START-1; det < TELESCOPE_END ; det++){
+			ostringstream number ;
+			number << det+1  ;
+			CurrentTelescope = det+1 ;
+		if (xy == "X"){ 
+			//////// Input Files ///////////
+			str = "hMM"+number.str()+"_STRX_T";
+			/////// Output Files ///////////
+        str1 = "Cal_Str_X_T_MM"+number.str()+"_"+frun;
+    
+    }	 
+		
+    else if (xy == "Y"){ 	
+			//////// Input Files ///////////
+			str = "hMM"+number.str()+"_STRY_T";
+			/////// Output Files ///////////
+        str1 = "Cal_Str_Y_T_MM"+number.str()+"_"+frun;
+	}	 
+		else {cout<< "ERROR FOR X or Y PARAMETER"<< endl;}
+
+		fname =  "./Coeff/" + str1 + ".peak";
+		peaks_file.open(( (string)fname ).c_str());
+
+		fname2 = "./Coeff/"+ str1 + ".cal";
+		calib_file.open( ( (string)fname2 ).c_str() );
+		
+		for (Int_t j = STRIP_START-1; j < STRIP_END; j++)
+		{
+			///// Get the histogram of det i and strip j /////
+			CurrentStrip=j+1;
+			number.seekp(0);
+			number << j+1;
+			hname = str+number.str().c_str();
+			TH1F *hist = (TH1F*) inFile->Get(((string)hname).c_str());
+		
+			TimeGene(	hist,
+								xy,
+								npeak, det);
+		}
+	peaks_file.close();
+	calib_file.close();
+	dispersion_file.close();
+	
+	}
+	
+}
+
+
+
+void TimeGene(TH1F *hist, TString xy, Int_t npeak, int DetNbr)
+	{
+	
+  // hist->GetXaxis()->SetRangeUser(0,16384);
+//  hist->GetXaxis()->SetRangeUser(0,8150);
+  TH1F* hist_clone = (TH1F*)hist->Clone();
+  //hist_clone->GetXaxis()->SetRangeUser(0,8150);
+
+ // int Nbins1 = hist_clone->GetNbinsX();
+ // cout<<"Nbins before "<<Nbins1<<endl;
+	
+//	std::cout << "est" << std::endl;
+  hist_clone->Rebin(16);
+  int Nbins = hist_clone->GetNbinsX();
+ // cout<<"Nbins after "<<Nbins<<endl;
+  for(int i =0; i<Nbins; i++){
+      if(hist_clone->GetBinCenter(i) > 8150 ) hist_clone->SetBinContent(i,0);
+     // if (DetNbr!=10){//range change for the anular telescope 11
+      if(hist_clone->GetBinCenter(i) < 3800 ) hist_clone->SetBinContent(i,0);
+     // }
+     // else {
+      //   if(hist_clone->GetBinCenter(i) < 100 ) hist_clone->SetBinContent(i,0);
+     // }  
+ } 
+//  hist_clone->Smooth(10);
+
+  
+  double Ecut = 0;
+  int maxbin = hist_clone->GetMaximumBin(); 
+  while(hist_clone->GetBinContent(maxbin) != 0){
+      maxbin++;
+  }
+  double maxE =  hist_clone->GetBinCenter(maxbin);
+  //cout << "maxbin : "<< maxbin << endl;
+  //cout << "maxE : "<< maxE << endl;
+/*
+  Nbins = hist->GetNbinsX();
+  for(int i =0; i<Nbins; i++){
+      if(hist->GetBinCenter(i) < maxE ) hist->SetBinContent(i,0);
+      if(hist->GetBinCenter(i) > 8180 ) hist->SetBinContent(i,0);
+  } 
+  */
+	Double_t *mean = new Double_t[npeak];
+  Double_t *sigma = new Double_t[npeak];
+
+	Int_t nfound = Finder(hist_clone, mean, sigma, npeak);
+
+	if (xy == "X"){
+	  peaks_file << "MUSETT_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_T " << endl;
+	  for(int i=0; i<nfound; i++) {
+	    peaks_file << i<< "\t" << mean[i] <<  endl;
+	  }
+	}
+	else if (xy == "Y"){
+	  peaks_file << "MUSETT_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_T " << endl;
+	  for(int i=0; i<nfound; i++) {
+	    peaks_file << i<< "\t" << mean[i] <<  endl;
+	  }
+  }
+
+	if(nfound<npeak) cout << "On "<< hist->GetName() << endl ;
+	
+	// Fit npeak
+	TGraphErrors* gr_MM= new TGraphErrors(nfound);
+	TF1* f = Calib(gr_MM, mean, sigma, nfound);
+	
+	Double_t a = f->GetParameter(0);
+	Double_t b = f->GetParameter(1);
+	Double_t c = f->GetParameter(2);
+  
+    if (xy == "X")
+      calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_T " << a << " " << b << "	" << c <<endl ;
+
+    else if (xy == "Y")
+      calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_T " << a << " " << b << " " << c << endl ;
+
+
+
+}
+
+Int_t Finder(TH1F *h, Double_t *mean, Double_t *sigma, Int_t npeak)
+{
+
+	/////////////////////////////////////////////////
+	//																						 //
+	//	           	PEAK  FINDER									 //
+	//																					 	 //
+	/////////////////////////////////////////////////
+
+
+	for(int k=0; k<npeak; k++)
+			{
+		    	mean[k]=0;
+		        sigma[k]=0;
+			}
+
+	//Double_t resolsig=5;
+	Double_t resolsig=2;
+	Float_t  resolsigTSpec=1;
+	Double_t seuil=0.00001;
+	Int_t nmax=npeak+1;   // nombre de pics maximum a prendre
+
+	//////// Peak finder
+
+	TSpectrum *s = new TSpectrum(nmax,resolsigTSpec);
+
+	Int_t nfound = s->Search(h,resolsig,"new",seuil);
+ 	
+  Double_t *xpeaks = s->GetPositionX();
+  cout << "NUMBER OF PEAKS" << " " << nfound << endl;
+	/// remise dans l ordre du tableau ordre croissant
+
+	if(nfound>1)
+	{
+		for(Int_t p=0;p<nfound;p++)
+		{
+			for(Int_t i=0;i<nfound-1;i++)
+			{
+				if(xpeaks[i]>xpeaks[i+1])
+				{
+					Double_t varia=xpeaks[i];
+					xpeaks[i]=xpeaks[i+1];
+					xpeaks[i+1]=varia;
+					cout <<"XPeak: " << xpeaks[i]<<endl;
+				}	  
+			}
+		}
+	}
+
+	
+	Float_t linf=0, lsup=0; 
+	
+	// if(nfound == npeak || nfound > npeak)
+	// {
+  	//struct FitResult{
+	//	double mean;
+	//	double sigma;
+	//};
+	//map<int, FitResult> results;
+
+		for (Int_t p=0;p<nfound;p++)
+		{   
+		linf = xpeaks[p]-5;
+		lsup = xpeaks[p]+5;
+
+		TF1 *gauss = new TF1("gauss","gaus",linf,lsup);
+		h->Fit(gauss,"RQ");
+		mean[p] = gauss->GetParameter(1);
+		sigma[p]= gauss->GetParameter(2);
+		//if (gauss->GetParameter(2)<10) {
+		//	results[p].mean = gauss->GetParameter(1); 
+		//	results[p].sigma = gauss->GetParameter(2);
+		//}
+    // std::cout <<  gauss->GetParameter(1) << std::endl;
+    // std::cout <<  gauss->GetParameter(2)<< std::endl;
+		 }
+	// }
+	//nfound=results.size();
+	//int cnt = 0;
+	//for (const auto & result: results){
+	//	mean[cnt]=result.second.mean;
+	//	sigma[cnt]=result.second.sigma;
+	//	cnt++;	
+	//	cout <<"Mean: " << mean[cnt]<<endl;
+	//}
+	
+	
+
+
+	if(nfound<npeak)
+	{
+	 cout << "attention, nombre de pics ("<<nfound<<") different de "<<npeak<<" !!!" ;
+		/*
+		for (Int_t p=0;p<npeak;p++)
+		{
+			mean[p]=-1;
+			sigma[p]=-1;
+			//return false ;
+		}
+		*/
+	 
+	}
+	
+	return nfound ;
+}
+
+TF1* Calib(TGraphErrors *gr, Double_t *mean, Double_t *sigma, Int_t npeak)
+{  
+	Double_t energy[npeak];
+  //Double_t errors[npeak];
+  
+	
+	for(int i = 0 ; i < npeak ; i ++)
+	{
+	energy[i] = (npeak-i)*20;
+	}
+			
+	
+	for (Int_t p = 0; p < npeak; p++) {
+		gr->SetPoint(p, mean[p], energy[p]);
+		gr->SetPointError(p, 0, 0);
+		//gr->SetPointError(p, sigma[p], errors[p]);    
+	}
+	
+	TF1 *f1 = new TF1("f1",pol2,mean[0],mean[npeak-1], npeak);
+	//TF1 *f1 = new TF1("f1",Form("[0]*(x-%f)",Pedestal));
+	gr->Fit("f1", "Q" );
+	// TCanvas*c2 = new TCanvas();
+	// c2->cd();
+	gr->Draw("AP");
+  // gPad->WaitPrimitive();
+
+	//Double_t a = f1 -> GetParameter(0);
+	
+	return f1 ;
+}
+
+Double_t pol2 (Double_t *x,Double_t *par){
+
+	Double_t result = 0;
+	result = par[0]+ x[0]*par[1]+ x[0]*x[0]*par[2];
+	return result;
+}
+
+
+	
diff --git a/Projects/MUSETT/calibration/calib_simu/Time/TimeCalibrator_C.d b/Projects/MUSETT/calibration/calib_simu/Time/TimeCalibrator_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..4978c4faf18f3c915c363eca8b7c6979be99f1b1
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/Time/TimeCalibrator_C.d
@@ -0,0 +1,100 @@
+
+# DO NOT DELETE
+
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSpectrum.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraphErrors.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraph.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCanvas.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TPad.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualPad.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttPad.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/GuiTypes.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Buttons.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttBBox2D.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttCanvas.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFormula.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/Types.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMethodCall.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1AbsComposition.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMath.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TError.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/ParamFunctor.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+TimeCalibrator_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/MUSETT/calibration/calib_simu/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/calib_simu/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..0676eef4bd2ef0ec8764dc27772a12d0d6396298
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/cal_to_NPTOOL.py
@@ -0,0 +1,150 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 1
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+        p0 = 0
+        p1 = 1000
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+        p0 = 0
+        p1 = 1
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/calib_simu/calibE0.cal1 b/Projects/MUSETT/calibration/calib_simu/calibE0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..5f77c3d04858dd864b1411813497cfbbcbbac345
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/calibE0.cal1
@@ -0,0 +1,1024 @@
+-61662.3 7.52711 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61862.3 7.5515 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61786 7.54225 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61488.6 7.50587 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61896.8 7.55579 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61641.5 7.52453 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61399.4 7.49501 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61236.4 7.47509 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-60986.5 7.4446 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62681.3 7.65148 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62393.5 7.61631 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61925.3 7.55919 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62029.9 7.57195 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62417.6 7.61932 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61275.3 7.47982 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63058.3 7.69749 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62722.2 7.65646 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62134.9 7.58477 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62458.1 7.62423 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63902.7 7.80057 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62519.9 7.63181 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62297.5 7.60463 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62659.6 7.64878 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62852.3 7.67238 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62985.4 7.68854 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63073.7 7.69941 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62632 7.64548 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-63013.4 7.69203 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62579 7.63901 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63401.5 7.7394 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62630 7.64523 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56399 6.88462 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56789.2 6.93221 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55564.2 6.78269 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56333.4 6.87654 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-56040.6 6.84084 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+-10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55909.7 6.82487 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55658.4 6.79421 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56211.8 6.86172 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55874 6.82053 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56164.8 6.85597 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56307.5 6.87343 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56382 6.88247 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+-10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+-10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55911.5 6.82508 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57927.5 7.07116 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57924.8 7.07081 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57746 7.049 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57343.1 6.99988 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58172.2 7.10106 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57237.7 6.98697 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57876.3 7.06488 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57523.5 7.02188 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58500.7 7.14114 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57786.5 7.05393 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57300.4 6.99465 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57790.9 7.05448 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57203.4 6.9828 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57985 7.0782 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57888.7 7.06644 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58127.1 7.09555 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63452.4 7.74561 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63612.1 7.76511 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63338.7 7.73174 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64021.8 7.81515 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63197.4 7.71456 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63968.4 7.80864 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63853.8 7.79469 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63356.4 7.73397 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64117.7 7.82683 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63242.6 7.72007 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63972.5 7.80918 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63941.4 7.8053 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63651.8 7.77009 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63754.3 7.78255 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64292.8 7.84837 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64690.6 7.89693 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61215.8 7.47271 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60865.1 7.42995 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61147.3 7.46434 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61469.6 7.50369 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61379.1 7.49269 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61888.7 7.55484 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61403.2 7.49554 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62166.5 7.58877 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61896.4 7.55578 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61572.1 7.51618 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61720.5 7.53424 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62796.5 7.66557 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61868.1 7.55224 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60999.1 7.44621 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61368.2 7.49129 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62166.8 7.58877 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57169.7 6.97872 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57564 7.02681 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57724.2 7.04642 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57113.1 6.97176 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58126.5 7.0955 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57746.5 7.04909 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57665.4 7.03921 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57244.7 6.98784 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57357.8 7.00171 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57943.6 7.0732 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57279.1 6.99197 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57628.2 7.03471 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58567.7 7.1494 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58013.5 7.08178 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57681.5 7.04111 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57795.4 7.05508 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59002.3 7.20244 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59192.2 7.22562 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58512.8 7.14267 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58671.3 7.16207 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58171.6 7.10101 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58350.5 7.12281 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.4 7.11445 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58508.2 7.1421 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58511.7 7.14253 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58653.9 7.15989 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58550.4 7.14724 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59318.4 7.24097 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57853 7.06214 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58498.4 7.14087 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58426.4 7.13213 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59512.6 7.26467 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60443.5 -7.37839 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60908.5 -7.43514 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61060.2 -7.45367 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59984.4 -7.32237 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60129.5 -7.3401 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60783.1 -7.41989 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60431 -7.37691 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60140.7 -7.34142 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59998.4 -7.32403 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60395.7 -7.37254 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60028.3 -7.32774 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60887.8 -7.43267 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61066.5 -7.45441 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61164 -7.46632 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60739.8 -7.41458 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60443.5 -7.37838 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60544.4 -7.39071 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60303 -7.3612 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60143.3 -7.34174 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60328.6 -7.3644 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60395.9 -7.37256 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60276 -7.35798 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59684.2 -7.28572 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60187.9 -7.34719 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.4 -7.29698 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60128.6 -7.33997 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60450.5 -7.37922 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59890.5 -7.31089 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59647.3 -7.2812 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59834.9 -7.30412 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60999.1 -7.44624 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56552.5 -6.90341 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57074.5 -6.96718 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56536.5 -6.9015 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57036.3 -6.96248 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57405.1 -7.0075 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57259.2 -6.98972 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56419.6 -6.88718 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56461.1 -6.89226 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56951.6 -6.95213 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56800 -6.93367 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56600.5 -6.90927 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56511.5 -6.8984 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56870.5 -6.94221 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56993.6 -6.95727 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57679.7 -7.04103 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56560.6 -6.90438 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57546.6 -7.02477 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57035.8 -6.96245 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56800.6 -6.93377 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56505.8 -6.89773 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57161.4 -6.97779 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56855 -6.94036 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56619.7 -6.91168 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57621.8 -7.03399 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57359.7 -7.00197 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56825.9 -6.93676 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57031.5 -6.96191 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57239.3 -6.98735 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57254.8 -6.98918 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57074.4 -6.96716 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57574.5 -7.02822 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57912.4 -7.06943 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+61002.8 -7.44668 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61155.3 -7.4653 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61053.3 -7.45282 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61373.4 -7.4919 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60489.7 -7.38403 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61580.3 -7.51716 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60895.6 -7.4336 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60400.3 -7.3731 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61676.2 -7.52889 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61107.3 -7.45944 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61113.2 -7.46014 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61230.4 -7.47441 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60593.4 -7.39669 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61412.2 -7.49666 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61676.7 -7.52894 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61114.5 -7.46029 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62335.5 -7.60932 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61110.8 -7.45984 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61589.5 -7.51825 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62064.5 -7.57624 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61004.9 -7.44692 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60900.3 -7.43416 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61810.8 -7.54524 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61439.5 -7.49992 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61153 -7.46501 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61309.9 -7.48418 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61160.3 -7.46589 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61470.5 -7.50377 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61862.5 -7.55157 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61676 -7.52886 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62387.3 -7.61565 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60904.4 -7.43464 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56381.2 -6.88248 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56647.7 -6.91501 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56593.9 -6.90848 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56466.6 -6.8929 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56205.1 -6.86097 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56339.2 -6.87735 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56071.1 -6.84463 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56586.9 -6.90762 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56922.8 -6.94858 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56073.7 -6.84493 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57080.7 -6.96791 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57414.3 -7.00859 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56582.5 -6.9071 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56583.6 -6.90725 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56679.2 -6.91888 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56421.5 -6.8874 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56904.4 -6.94638 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57127.8 -6.97364 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56965.6 -6.9538 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56822.1 -6.93632 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57302 -6.99491 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.2 -6.90362 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56421.8 -6.88745 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56645.4 -6.91475 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57398.8 -7.00675 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57237.3 -6.98696 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56689 -6.92007 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56011.6 -6.83742 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56467.7 -6.89303 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55922.3 -6.8265 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56957.2 -6.95281 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56586.5 -6.90758 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62384.5 7.61517 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62210.4 7.59389 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62273.5 7.60161 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62019.1 7.5706 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61476.5 7.50432 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61597 7.51908 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62319.3 7.60717 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61416.3 7.49697 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61327.1 7.48611 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61486.5 7.50558 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61673.4 7.52832 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61732.6 7.53556 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61963.2 7.56376 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61418.2 7.49719 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61209 7.47165 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61987.6 7.56667 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62554.4 7.63592 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61756 7.53848 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62264.1 7.60048 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61953.7 7.56258 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62913.2 7.67967 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62120.9 7.583 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62709 7.65477 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62390 7.61587 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62229.7 7.59629 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61997.7 7.56794 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-62036.5 7.57262 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61752 7.53798 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61655.6 7.52623 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62767.5 7.66194 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61803 7.54422 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62761.8 7.66122 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58303.5 7.11703 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58372.5 7.12549 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58359.9 7.12397 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58262.2 7.11204 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58041 7.08509 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58261 7.11167 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58055.7 7.0867 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58647.4 7.15904 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58203.9 7.10488 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58893.9 7.18895 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58051.5 7.08632 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58539.4 7.14586 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58554.4 7.14758 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59335.9 7.24309 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58725.8 7.16875 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58465.7 7.13677 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.8 7.06394 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58529.8 7.14462 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-57972.8 7.07665 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57725.1 7.04637 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57946.6 7.07339 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57919.5 7.07013 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57971 7.07643 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57812.9 7.05708 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58059.5 7.08722 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57860.9 7.06295 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58481.2 7.13869 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57673.5 7.04005 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57733.9 7.04747 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58243 7.10961 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.2 7.09391 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58246.7 7.11007 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61009.3 7.44733 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61630.7 7.52317 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61471.8 7.50372 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61716.9 7.53361 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61893.5 7.55524 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.6 7.48633 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61623.4 7.52221 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61911.8 7.55752 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61279.1 7.48026 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62438.1 7.62175 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61937.8 7.56062 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62078.7 7.57786 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61496.4 7.50682 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61721.2 7.53417 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61321.1 7.48534 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61930.9 7.55971 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63425.9 7.7423 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63726 7.77898 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.8 7.83822 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63931 7.80396 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64114.7 7.8264 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63881.4 7.7979 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64089.1 7.82321 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64226 7.83998 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64162.8 7.83225 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64227.3 7.84014 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63324.3 7.72992 0.00 !Mu1ChX91ERaw[C.o2At2Ch11]
+-63377.9 7.73646 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64592.4 7.88475 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64051.2 7.81864 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63785.3 7.78625 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63425.1 7.74221 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56277.1 6.86963 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56696.4 6.92087 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56524.2 6.89973 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56421.9 6.88734 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56516.9 6.89896 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-56987.1 6.95627 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57341.9 6.99957 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56590.4 6.90785 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56842.5 6.93859 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57029.9 6.96151 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57840.1 7.06034 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57754.1 7.04987 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57718.4 7.04556 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57495 7.01832 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57673.7 7.0401 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-58035.2 7.08421 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57254.3 6.98888 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57309.6 6.99565 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56813.7 6.93513 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57684.3 7.04141 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57273.6 6.99128 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57263.3 6.99002 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56331.2 6.87626 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58331 7.12035 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57448.3 7.0126 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57763.7 7.05109 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57724.2 7.04628 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57458.3 7.01385 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57586.5 7.02947 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57671.5 7.03982 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57076.6 6.9672 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57818.9 7.05784 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59628.2 -7.27891 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60484.2 -7.3834 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59719.3 -7.29006 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59358 -7.24601 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60209.4 -7.34991 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60023.9 -7.32724 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59427.4 -7.25442 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59479.8 -7.26081 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.6 -7.25995 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59661.5 -7.28303 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59523 -7.2661 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59520.7 -7.26582 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60207.7 -7.3497 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59281.6 -7.23662 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59499.5 -7.26329 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59822.2 -7.30262 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62231 -7.59672 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62517.6 -7.63166 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62462.5 -7.62493 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62047 -7.57417 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62207.3 -7.59375 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62362.9 -7.61277 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62017.5 -7.57064 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61713.9 -7.53355 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61449.1 -7.50123 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62086.1 -7.57898 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62077.7 -7.57796 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62287.6 -7.60362 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62027.9 -7.5719 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61668.6 -7.52799 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61804.8 -7.54468 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115.7 -6.85022 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56255.7 -6.86728 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55634.9 -6.79153 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55640.9 -6.79227 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55384.3 -6.76092 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56420.4 -6.88745 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55380.9 -6.76051 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55934.8 -6.82817 0.00 !Mu1ChY40ERaw[C.o3At3Ch8]
+56036.5 -6.84053 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56149.2 -6.85434 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55509.9 -6.77625 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56637.3 -6.9139 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55637.9 -6.79188 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55730.3 -6.80315 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55751.6 -6.80582 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55760.9 -6.80693 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.7 -6.9819 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56616.7 -6.91132 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56565.1 -6.90504 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56007.5 -6.83694 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56838.9 -6.93846 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56277 -6.86982 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56475.8 -6.89415 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56394.9 -6.88425 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57286.1 -6.99307 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57107.7 -6.97128 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56704.7 -6.92209 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57329.2 -6.99832 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57398.8 -7.00677 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57025.8 -6.96125 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56179.4 -6.85794 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57294.5 -6.99407 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61036 -7.45079 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61615.2 -7.52147 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61327.7 -7.48646 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61616.9 -7.52169 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61289.5 -7.48175 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60072.3 -7.33313 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60461.8 -7.38072 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61147.5 -7.46439 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60324.6 -7.36394 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61243.3 -7.47609 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60892.2 -7.43321 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60362.6 -7.36861 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60563.4 -7.39312 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60969.5 -7.44272 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60632 -7.40146 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61354.5 -7.48966 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61129 -7.46218 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61142.4 -7.46376 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61098.2 -7.45836 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60505 -7.38602 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60475.6 -7.38236 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61198.3 -7.47058 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60653.8 -7.40421 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60610.3 -7.39887 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61084.6 -7.45673 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61281.6 -7.48082 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60759.5 -7.41709 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60908.7 -7.43532 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60520.1 -7.38782 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61330.5 -7.48678 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61609.9 -7.52084 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60752.2 -7.41622 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55866.2 -6.81972 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55510.1 -6.77629 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55739.1 -6.80422 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55602.7 -6.78757 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55779.5 -6.80916 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55452.6 -6.76931 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55433.8 -6.76695 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56175.8 -6.85753 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55295 -6.75003 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55267.6 -6.74664 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55913.4 -6.82548 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55219 -6.74076 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55914.7 -6.82563 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56088.3 -6.84683 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56128.7 -6.85177 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.7 -6.9068 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54791.9 -6.68861 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55573.5 -6.78397 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55177.3 -6.73564 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.9 -6.722 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55271.1 -6.74706 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55426.4 -6.76607 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55308.9 -6.7517 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55560.5 -6.78242 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55828.4 -6.8151 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55461.9 -6.77042 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.4 -6.69404 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55154.2 -6.73277 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55218.5 -6.74067 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55198.9 -6.73821 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55347.2 -6.75638 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56270.5 -6.86904 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62771.8 7.66248 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62536.2 7.63367 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62923.2 7.68092 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62099.2 7.5803 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62071.6 7.577 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62762.5 7.66131 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62536.6 7.63372 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62863.4 7.6736 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62977.6 7.68755 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62169.2 7.58889 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62486.2 7.62758 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62494 7.62855 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62591.4 7.6404 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62596.5 7.64104 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62693.3 7.65283 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63431.9 7.74304 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62275.5 7.60186 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61847 7.54956 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61648.9 7.52542 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61472.2 7.5038 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61487.7 7.50573 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62323.6 7.60772 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62160.6 7.58783 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61801.5 7.54404 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61589.4 7.51813 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61837.9 7.54843 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61997.2 7.56788 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61886.9 7.55441 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61669.6 7.52787 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61317.6 7.48493 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62385.4 7.6153 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61544.8 7.51271 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59005.1 7.20263 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58125.4 7.0952 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58621 7.15577 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58420.8 7.13128 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58182.1 7.10215 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58179.5 7.10183 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58382.7 7.12665 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57951.6 7.074 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57619.4 7.03346 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58602.8 7.15349 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58763.6 7.17317 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58295.3 7.11601 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58611.5 7.15458 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58569.5 7.14945 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58368.6 7.12489 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58524.7 7.144 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57829.7 7.05919 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57177.7 6.97958 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58151 7.0984 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57925 7.07083 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57600.2 7.03119 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57219.8 6.9847 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57855.4 7.06228 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57682.2 7.04116 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57912.6 7.06929 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57598.9 7.03102 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57919.6 7.07016 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.5 6.9577 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57498.2 7.01871 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56729.1 6.92483 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57500.6 7.01901 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57910.6 7.06904 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63311 7.72824 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64991.8 7.93347 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-63994.5 7.8117 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63750.3 7.78186 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64408.5 7.86228 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63629 7.76702 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63438.8 7.74388 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63358.3 7.73399 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63144.6 7.70793 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63812.1 7.7894 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63662.4 7.77117 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63876.9 7.79733 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63771.1 7.78444 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63652.1 7.7699 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63600.3 7.76358 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63256.4 7.72158 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63333.7 7.73107 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63150 7.70859 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63204.5 7.71524 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63982.1 7.81015 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63771.3 7.78446 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63682.7 7.7737 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63921.1 7.80269 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63090.3 7.7013 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63548.7 7.75733 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63345.7 7.73257 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63537.7 7.75593 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63267.1 7.72292 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64614.3 7.88733 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63737 7.78019 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63627.5 7.76682 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59011.6 7.20345 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58536.3 7.14543 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58294.5 7.11592 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58764.5 7.17328 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59388.2 7.24938 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59353.9 7.24523 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58868.9 7.18606 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59020.4 7.20454 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59051.2 7.20827 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59067.7 7.21031 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58780.6 7.17527 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59011.8 7.20348 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58685.6 7.16369 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60313.6 7.36243 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58947.7 7.1956 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58640.6 7.15819 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59256.4 7.23333 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59391.4 7.24979 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59741.5 7.29254 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59153 7.2207 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59659.3 7.28255 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60043.5 7.32941 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59492.9 7.26218 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59355.9 7.2455 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60079 7.3337 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58759.7 7.17268 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59106.3 7.21501 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59356.4 7.24556 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58905.4 7.19045 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58909 7.19091 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59139.8 7.21905 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59244.4 7.23184 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63180.3 -7.71254 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63958.5 -7.80757 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62563.9 -7.63734 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63393.8 -7.73864 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62965.3 -7.6863 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62695.2 -7.65332 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63071 -7.6992 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62684.7 -7.65205 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62805.2 -7.66674 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63405.9 -7.74008 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+63006 -7.69129 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62613.8 -7.64344 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62135.8 -7.58506 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62797.8 -7.66584 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+63003.9 -7.69104 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63451.5 -7.74566 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61680.4 -7.52939 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60963.7 -7.44202 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60731.3 -7.4136 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62044.4 -7.57386 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.9 -7.46121 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60932 -7.4381 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62091.8 -7.57965 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61042.5 -7.45157 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61080.2 -7.45622 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61569 -7.51583 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61088.9 -7.45724 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61401.8 -7.49545 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61590.8 -7.51854 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61456.7 -7.50214 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61348.2 -7.48891 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61814.6 -7.54586 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56310.4 -6.87387 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56475.6 -6.89413 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56843.7 -6.93897 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56709.9 -6.9227 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+57006.5 -6.95894 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56922.7 -6.94871 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56395.9 -6.88437 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56437.5 -6.88946 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56168.1 -6.85657 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58137.4 -7.09691 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56752.1 -6.92786 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56268.3 -6.86879 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57248.3 -6.98843 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57237.7 -6.98715 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57062.5 -6.96574 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56700.2 -6.92152 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57609.4 -7.03252 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57045.1 -6.96368 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57893.4 -7.06716 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57432.1 -7.01085 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57327.3 -6.9981 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58593.6 -7.15267 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57713.2 -7.04516 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57801 -7.05589 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57750.1 -7.0497 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57564.6 -7.02705 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57513.2 -7.02079 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58298.6 -7.11669 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57883.6 -7.066 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57333.9 -6.99889 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57877.7 -7.06529 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58222.3 -7.10732 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59352.4 -7.24534 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59653 -7.28202 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59466.7 -7.25926 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60421 -7.37573 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59563.3 -7.27104 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59865.2 -7.30789 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59568.1 -7.27161 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59903.1 -7.31254 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59874.2 -7.30895 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59565.9 -7.27135 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59951.4 -7.31844 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60102.6 -7.33689 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59329 -7.24242 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59973.3 -7.32106 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59369.2 -7.24734 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60205.5 -7.34945 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60559.1 -7.39262 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61223.9 -7.47379 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60555.5 -7.39217 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61267.8 -7.47916 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61183.2 -7.46879 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60877.4 -7.43143 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60964.7 -7.44213 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61316.7 -7.48517 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60889.6 -7.43289 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60834.9 -7.42623 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61475.4 -7.50452 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60713.8 -7.41149 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61139.9 -7.46349 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60586.2 -7.39585 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61091.2 -7.45753 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61463 -7.50289 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56883.7 -6.94393 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55958.3 -6.83096 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56259.7 -6.86775 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56620.9 -6.91184 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56390.1 -6.88368 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56741.9 -6.92663 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55881.7 -6.82158 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57242.5 -6.98773 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56047.6 -6.84185 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56706.4 -6.92227 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56618.3 -6.91153 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57516.3 -7.02116 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57052.7 -6.96458 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56701.3 -6.92167 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57023.2 -6.96095 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56155.3 -6.85506 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56480.1 -6.89468 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57291 -6.99365 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56601.1 -6.90948 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56864.7 -6.94167 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56504.8 -6.89772 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56531 -6.90085 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56803.1 -6.93407 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56744.6 -6.92696 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56339.6 -6.87753 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57094.7 -6.96973 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57471.8 -7.01574 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56243.7 -6.86585 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56920.2 -6.94841 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56357.9 -6.87972 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56171.4 -6.85698 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62432 7.62115 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61898.1 7.55599 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62261.8 7.60035 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62377.7 7.61452 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61987.1 7.56678 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61925.3 7.55922 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62100.7 7.58066 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61621.8 7.5222 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61764.3 7.53956 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61918.3 7.55834 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61881.5 7.55388 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62903 7.67858 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61674.1 7.52859 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61812.4 7.54541 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61555.6 7.51408 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62627.4 7.64492 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63656.5 7.77047 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63108 7.70354 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62943.4 7.68346 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62837.7 7.67058 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62676.4 7.65089 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.8 7.70503 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63798 7.78783 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63791 7.78695 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62795 7.6654 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63502.6 7.75172 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63532.1 7.75542 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63309.9 7.72829 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63637.8 7.76831 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63587.2 7.76214 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64531.7 7.87739 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63742.8 7.78111 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59430.3 7.25494 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59220.2 7.22924 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58174.6 7.10163 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58373.6 7.12581 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58848.1 7.18369 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-59012.9 7.20387 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59307.2 7.23977 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58677.9 7.16294 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59283.1 7.23677 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58956.4 7.1969 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-59043.5 7.20751 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59047.9 7.20805 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59414.1 7.25268 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58832.8 7.18171 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59184.6 7.22469 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57410.4 7.00817 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57223.7 6.98537 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56941.7 6.95094 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57306.3 6.99545 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56939.2 6.95063 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57390.5 7.00573 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56638.3 6.91393 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57358.5 7.00183 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57684.4 7.04165 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56591.3 6.9082 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57508 7.02016 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57136.1 6.97475 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56380.4 6.88251 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56917.4 6.9481 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56824.5 6.93679 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56577 6.90664 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64140 7.82956 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63839.3 7.79281 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63564.4 7.75927 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63770.4 7.78438 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63671.6 7.77235 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63272.3 7.72359 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64307 7.84993 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62530.8 7.63314 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62672.9 7.65044 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63019 7.69272 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63152.8 7.70897 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63441 7.74419 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64109.3 7.82574 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62453.5 7.62365 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62622.2 7.64425 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63017.2 7.69251 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62453.4 7.62363 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62780.3 7.66354 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62670.1 7.65009 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62554.7 7.63598 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62062.4 7.57587 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62422.6 7.61994 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62402.7 7.61746 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.8 7.58526 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62351.6 7.61123 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62791 7.66488 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62302.7 7.60527 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62078.1 7.57785 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62829.3 7.66952 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.5 7.6367 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62144 7.5859 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62353.9 7.61152 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56131.1 6.85191 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55920.2 6.82616 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55178.7 6.73562 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55783.6 6.8095 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55958 6.83076 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55940.2 6.82857 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55976 6.83293 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55255.5 6.74498 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55479.7 6.77237 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-56040.3 6.84079 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55791.2 6.81044 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55701.6 6.79948 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56738.3 6.92598 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56293.9 6.87171 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55819.1 6.81378 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55694.2 6.79856 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57554.1 7.02556 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56976.8 6.95514 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57518.4 7.02123 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56980.7 6.95562 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58026.2 7.08323 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57191.1 6.98127 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57432 7.01071 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56290.9 6.87137 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56748.2 6.92722 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57901.7 7.06808 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57512.9 7.02056 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57112.4 6.9717 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57653.3 7.03769 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56762.7 6.92904 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57841.9 7.06073 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56524.8 6.89995 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60194.7 -7.34802 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987.9 -7.20075 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60132.2 -7.34041 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59977.5 -7.32152 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59787.4 -7.2983 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59893.4 -7.31122 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59798.6 -7.29963 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60251.3 -7.3549 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60589.5 -7.39622 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60436.6 -7.37756 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60189.7 -7.3474 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59826.4 -7.3031 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59687.2 -7.28606 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59622.1 -7.27818 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60574.8 -7.39447 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59719.2 -7.29002 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62963.1 -7.68601 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63186.9 -7.71331 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62262.3 -7.60044 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62806 -7.6668 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63246.8 -7.72062 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63550.3 -7.75759 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+63016.8 -7.69256 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62986.6 -7.68882 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63522.2 -7.75424 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63478.7 -7.7489 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62643.1 -7.64692 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63429.9 -7.74292 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62483.7 -7.62745 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62960.7 -7.68572 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63085.3 -7.7009 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62969.4 -7.68675 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84715 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56228.6 -6.86391 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55834.6 -6.81583 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55713 -6.80096 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55757 -6.80633 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56228 -6.86384 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55925.9 -6.82695 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55539.7 -6.77979 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55412.1 -6.76422 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185 -6.85859 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55981.8 -6.83375 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55370.8 -6.75918 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55748.9 -6.80537 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55612.3 -6.78871 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55926.3 -6.82699 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55801.2 -6.81172 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56670.8 -6.9179 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56949.5 -6.9519 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57147.1 -6.97597 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56960.4 -6.95318 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56493.9 -6.89629 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56963.2 -6.95364 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56581.6 -6.90701 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57050.7 -6.96421 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57076.9 -6.96747 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56623.8 -6.91216 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57493.2 -7.01827 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57089.4 -6.96896 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57586.3 -7.02963 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57044.7 -6.96349 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56777.7 -6.93089 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57421.6 -7.00961 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59437.6 -7.25562 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59994 -7.32351 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59523.9 -7.2662 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59337.1 -7.24336 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59498.6 -7.26303 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58818.6 -7.18002 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59332.2 -7.24276 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+60018.7 -7.32659 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60180.5 -7.3463 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59480.7 -7.26089 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59527.7 -7.26664 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59635.1 -7.27972 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59581.2 -7.27315 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59444.7 -7.25647 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59048.4 -7.20811 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59989.5 -7.32298 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62855.4 -7.67285 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62750.4 -7.66003 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62532.7 -7.63346 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62151.3 -7.58691 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.6 -7.57075 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62710.2 -7.65509 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62271.6 -7.60155 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62960 -7.68565 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62677.8 -7.65121 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62626.1 -7.64489 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61878.3 -7.55359 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61999.2 -7.56832 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61924.7 -7.55927 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+61995.6 -7.56788 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61960.5 -7.56357 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61833.6 -7.54812 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56731.4 -6.92523 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56909.9 -6.94702 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56318.3 -6.87484 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55946.5 -6.8294 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56299.8 -6.87252 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56328.7 -6.87609 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55986.5 -6.8343 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55996.3 -6.83546 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55858.1 -6.81861 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56336.4 -6.877 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56504.4 -6.89753 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56280.4 -6.87019 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55801.7 -6.81176 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55903.8 -6.82419 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56672.2 -6.91805 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56668.9 -6.91765 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57102.2 -6.97047 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57033.7 -6.96222 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57102 -6.97059 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+57015.2 -6.95994 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57666.6 -7.03944 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57327.3 -6.99806 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56838.8 -6.9384 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57642.3 -7.0364 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57472.4 -7.01575 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57009.2 -6.95917 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57427.6 -7.01028 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57105.1 -6.97094 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57606 -7.03198 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56852.7 -6.94013 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57287.8 -6.99311 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57526.7 -7.02236 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/calib_simu/calibT0.cal1 b/Projects/MUSETT/calibration/calib_simu/calibT0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..99605ef63058dd281004c7ed8c90ec17435b8b21
--- /dev/null
+++ b/Projects/MUSETT/calibration/calib_simu/calibT0.cal1
@@ -0,0 +1,1023 @@
+946.164 -0.114176 0.00 !Mu0ChX1TRaw[Co1At1Ch1]
+956.811 -0.115529 0.00 !Mu0ChX2TRaw[Co1At1Ch2]
+957.988 -0.115657 0.00 !Mu0ChX3TRaw[Co1At1Ch3]
+972.139 -0.117409 0.00 !Mu0ChX4TRaw[Co1At1Ch4]
+971.761 -0.117367 0.00 !Mu0ChX5TRaw[Co1At1Ch5]
+971.702 -0.117353 0.00 !Mu0ChX6TRaw[Co1At1Ch6]
+976.911 -0.117969 0.00 !Mu0ChX7TRaw[Co1At1Ch7]
+979.143 -0.118246 0.00 !Mu0ChX8TRaw[Co1At1Ch8]
+977.915 -0.118065 0.00 !Mu0ChX9TRaw[Co1At1Ch9]
+981.976 -0.118546 0.00 !Mu0ChX10TRaw[Co1At1Ch10]
+986.577 -0.119138 0.00 !Mu0ChX11TRaw[Co1At1Ch11]
+986.184 -0.119075 0.00 !Mu0ChX12TRaw[Co1At1Ch12]
+993.563 -0.119996 0.00 !Mu0ChX13TRaw[Co1At1Ch13]
+978.874 -0.118174 0.00 !Mu0ChX14TRaw[Co1At1Ch14]
+989.894 -0.119531 0.00 !Mu0ChX15TRaw[Co1At1Ch15]
+1318.57 -0.118448 0.00 !Mu0ChX16TRaw[Co1At1Ch16]
+955.564 -0.115275 0.00 !Mu0ChX17TRaw[Co1At2Ch1]
+965.774 -0.116527 0.00 !Mu0ChX18TRaw[Co1At2Ch2]
+978.184 -0.118044 0.00 !Mu0ChX19TRaw[Co1At2Ch3]
+978.854 -0.118125 0.00 !Mu0ChX20TRaw[Co1At2Ch4]
+987.988 -0.119233 0.00 !Mu0ChX21TRaw[Co1At2Ch5]
+982.353 -0.118555 0.00 !Mu0ChX22TRaw[Co1At2Ch6]
+992.928 -0.119845 0.00 !Mu0ChX23TRaw[Co1At2Ch7]
+994.329 -0.120005 0.00 !Mu0ChX24TRaw[Co1At2Ch8]
+989.504 -0.119427 0.00 !Mu0ChX25TRaw[Co1At2Ch9]
+1000.62 -0.120777 0.00 !Mu0ChX26TRaw[Co1At2Ch10]
+1002.92 -0.121057 0.00 !Mu0ChX27TRaw[Co1At2Ch11]
+1006.98 -0.121545 0.00 !Mu0ChX28TRaw[Co1At2Ch12]
+1002.57 -0.121021 0.00 !Mu0ChX29TRaw[Co1At2Ch13]
+1001.43 -0.120851 0.00 !Mu0ChX30TRaw[Co1At2Ch14]
+997.945 -0.12045 0.00 !Mu0ChX31TRaw[Co1At2Ch15]
+993.524 -0.119947 0.00 !Mu0ChX32TRaw[Co1At2Ch16]
+872.545 -0.105192 0.00 !Mu0ChX33TRaw[Co1At3Ch1]
+870.474 -0.104955 0.00 !Mu0ChX34TRaw[Co1At3Ch2]
+890.439 -0.107397 0.00 !Mu0ChX35TRaw[Co1At3Ch3]
+879.216 -0.106033 0.00 !Mu0ChX36TRaw[Co1At3Ch4]
+881.009 -0.106227 0.00 !Mu0ChX37TRaw[Co1At3Ch5]
+895.366 -0.108005 0.00 !Mu0ChX38TRaw[Co1At3Ch6]
+897.01 -0.108195 0.00 !Mu0ChX39TRaw[Co1At3Ch7]
+895.47 -0.107979 0.00 !Mu0ChX40TRaw[Co1At3Ch8]
+898.037 -0.108302 0.00 !Mu0ChX41TRaw[Co1At3Ch9]
+898.361 -0.108334 0.00 !Mu0ChX42TRaw[Co1At3Ch10]
+897.507 -0.108243 0.00 !Mu0ChX43TRaw[Co1At3Ch11]
+904.455 -0.109095 0.00 !Mu0ChX44TRaw[Co1At3Ch12]
+899.781 -0.108505 0.00 !Mu0ChX45TRaw[Co1At3Ch13]
+894.363 -0.107877 0.00 !Mu0ChX46TRaw[Co1At3Ch14]
+896.817 -0.108187 0.00 !Mu0ChX47TRaw[Co1At3Ch15]
+930.792 -0.10826 0.00 !Mu0ChX48TRaw[Co1At3Ch16]
+884.648 -0.106556 0.00 !Mu0ChX49TRaw[Co1At4Ch1]
+887.836 -0.106942 0.00 !Mu0ChX50TRaw[Co1At4Ch2]
+893.25 -0.107622 0.00 !Mu0ChX51TRaw[Co1At4Ch3]
+901.75 -0.109464 0.00 !Mu0ChX52TRaw[Co1At4Ch4]
+907.099 -0.109295 0.00 !Mu0ChX53TRaw[Co1At4Ch5]
+909.979 -0.109652 0.00 !Mu0ChX54TRaw[Co1At4Ch6]
+912.526 -0.109955 0.00 !Mu0ChX55TRaw[Co1At4Ch7]
+916.597 -0.110458 0.00 !Mu0ChX56TRaw[Co1At4Ch8]
+925.24 -0.111499 0.00 !Mu0ChX57TRaw[Co1At4Ch9]
+916.715 -0.110456 0.00 !Mu0ChX58TRaw[Co1At4Ch10]
+924.251 -0.111378 0.00 !Mu0ChX59TRaw[Co1At4Ch11]
+928.786 -0.111943 0.00 !Mu0ChX60TRaw[Co1At4Ch12]
+935.878 -0.112807 0.00 !Mu0ChX61TRaw[Co1At4Ch13]
+938.667 -0.11314 0.00 !Mu0ChX62TRaw[Co1At4Ch14]
+940.288 -0.113338 0.00 !Mu0ChX63TRaw[Co1At4Ch15]
+929.111 -0.111982 0.00 !Mu0ChX64TRaw[Co1At4Ch16]
+957.51 -0.115846 0.00 !Mu0ChX65TRaw[Co2At1Ch1]
+962.646 -0.11646 0.00 !Mu0ChX66TRaw[Co2At1Ch2]
+972.344 -0.117644 0.00 !Mu0ChX67TRaw[Co2At1Ch3]
+973.464 -0.117791 0.00 !Mu0ChX68TRaw[Co2At1Ch4]
+976.904 -0.118174 0.00 !Mu0ChX69TRaw[Co2At1Ch5]
+989.493 -0.119717 0.00 !Mu0ChX70TRaw[Co2At1Ch6]
+993.895 -0.120284 0.00 !Mu0ChX71TRaw[Co2At1Ch7]
+995.117 -0.120426 0.00 !Mu0ChX72TRaw[Co2At1Ch8]
+1006.3 -0.121763 0.00 !Mu0ChX73TRaw[Co2At1Ch9]
+987.403 -0.119445 0.00 !Mu0ChX74TRaw[Co2At1Ch10]
+1004.54 -0.121535 0.00 !Mu0ChX75TRaw[Co2At1Ch11]
+995.118 -0.120381 0.00 !Mu0ChX76TRaw[Co2At1Ch12]
+1002.39 -0.121262 0.00 !Mu0ChX77TRaw[Co2At1Ch13]
+1006.49 -0.121766 0.00 !Mu0ChX78TRaw[Co2At1Ch14]
+997.059 -0.120615 0.00 !Mu0ChX79TRaw[Co2At1Ch15]
+1377.74 -0.120952 0.00 !Mu0ChX80TRaw[Co2At1Ch16]
+923.114 -0.111515 0.00 !Mu0ChX81TRaw[Co2At2Ch1]
+932.866 -0.112746 0.00 !Mu0ChX82TRaw[Co2At2Ch2]
+924.928 -0.111774 0.00 !Mu0ChX83TRaw[Co2At2Ch3]
+937.265 -0.113281 0.00 !Mu0ChX84TRaw[Co2At2Ch4]
+930.752 -0.112468 0.00 !Mu0ChX85TRaw[Co2At2Ch5]
+941.628 -0.113819 0.00 !Mu0ChX86TRaw[Co2At2Ch6]
+949.998 -0.114818 0.00 !Mu0ChX87TRaw[Co2At2Ch7]
+943.027 -0.113978 0.00 !Mu0ChX88TRaw[Co2At2Ch8]
+949.721 -0.114813 0.00 !Mu0ChX89TRaw[Co2At2Ch9]
+957.242 -0.115728 0.00 !Mu0ChX90TRaw[Co2At2Ch10]
+964.815 -0.11664 0.00 !Mu0ChX91TRaw[Co2At2Ch11]
+961.466 -0.11625 0.00 !Mu0ChX92TRaw[Co2At2Ch12]
+961.749 -0.116299 0.00 !Mu0ChX93TRaw[Co2At2Ch13]
+960.655 -0.116152 0.00 !Mu0ChX94TRaw[Co2At2Ch14]
+974.674 -0.117868 0.00 !Mu0ChX95TRaw[Co2At2Ch15]
+992.705 -0.116744 0.00 !Mu0ChX96TRaw[Co2At2Ch16]
+868.269 -0.105013 0.00 !Mu0ChX97TRaw[Co2At3Ch1]
+877.648 -0.106169 0.00 !Mu0ChX98TRaw[Co2At3Ch2]
+878.241 -0.106212 0.00 !Mu0ChX99TRaw[Co2At3Ch3]
+883.994 -0.106905 0.00 !Mu0ChX100TRaw[Co2At3Ch4]
+893.321 -0.108043 0.00 !Mu0ChX101TRaw[Co2At3Ch5]
+900.56 -0.108935 0.00 !Mu0ChX102TRaw[Co2At3Ch6]
+896.766 -0.108442 0.00 !Mu0ChX103TRaw[Co2At3Ch7]
+894.903 -0.108194 0.00 !Mu0ChX104TRaw[Co2At3Ch8]
+904.239 -0.109336 0.00 !Mu0ChX105TRaw[Co2At3Ch9]
+902.018 -0.109053 0.00 !Mu0ChX106TRaw[Co2At3Ch10]
+907.673 -0.109771 0.00 !Mu0ChX107TRaw[Co2At3Ch11]
+904.96 -0.109449 0.00 !Mu0ChX108TRaw[Co2At3Ch12]
+902.795 -0.109128 0.00 !Mu0ChX109TRaw[Co2At3Ch13]
+906.335 -0.109641 0.00 !Mu0ChX110TRaw[Co2At3Ch14]
+903.029 -0.109177 0.00 !Mu0ChX111TRaw[Co2At3Ch15]
+912.908 -0.109478 0.00 !Mu0ChX112TRaw[Co2At3Ch16]
+888.694 -0.107364 0.00 !Mu0ChX113TRaw[Co2At4Ch1]
+891.736 -0.107748 0.00 !Mu0ChX114TRaw[Co2At4Ch2]
+891.957 -0.107782 0.00 !Mu0ChX115TRaw[Co2At4Ch3]
+901.87 -0.109007 0.00 !Mu0ChX116TRaw[Co2At4Ch4]
+905.48 -0.109423 0.00 !Mu0ChX117TRaw[Co2At4Ch5]
+899.196 -0.108648 0.00 !Mu0ChX118TRaw[Co2At4Ch6]
+913.782 -0.110413 0.00 !Mu0ChX119TRaw[Co2At4Ch7]
+914.779 -0.110579 0.00 !Mu0ChX120TRaw[Co2At4Ch8]
+909.004 -0.109898 0.00 !Mu0ChX121TRaw[Co2At4Ch9]
+914.282 -0.1105 0.00 !Mu0ChX122TRaw[Co2At4Ch10]
+922.657 -0.111529 0.00 !Mu0ChX123TRaw[Co2At4Ch11]
+914.822 -0.110604 0.00 !Mu0ChX124TRaw[Co2At4Ch12]
+917.977 -0.110972 0.00 !Mu0ChX125TRaw[Co2At4Ch13]
+919.687 -0.11118 0.00 !Mu0ChX126TRaw[Co2At4Ch14]
+914.922 -0.110613 0.00 !Mu0ChX127TRaw[Co2At4Ch15]
+925.329 -0.111151 0.00 !Mu0ChX128TRaw[Co2At4Ch16]
+942.169 -0.114033 0.00 !Mu0ChY2TRaw[Co3At1Ch2]
+941.094 -0.113921 0.00 !Mu0ChY3TRaw[Co3At1Ch3]
+959.045 -0.116104 0.00 !Mu0ChY4TRaw[Co3At1Ch4]
+954.629 -0.115563 0.00 !Mu0ChY5TRaw[Co3At1Ch5]
+970.443 -0.117481 0.00 !Mu0ChY6TRaw[Co3At1Ch6]
+969.234 -0.117339 0.00 !Mu0ChY7TRaw[Co3At1Ch7]
+966.53 -0.117018 0.00 !Mu0ChY8TRaw[Co3At1Ch8]
+973.409 -0.117842 0.00 !Mu0ChY9TRaw[Co3At1Ch9]
+968.923 -0.117316 0.00 !Mu0ChY10TRaw[Co3At1Ch10]
+971.661 -0.117632 0.00 !Mu0ChY11TRaw[Co3At1Ch11]
+977.841 -0.118398 0.00 !Mu0ChY12TRaw[Co3At1Ch12]
+975.821 -0.11814 0.00 !Mu0ChY13TRaw[Co3At1Ch13]
+971.638 -0.117633 0.00 !Mu0ChY14TRaw[Co3At1Ch14]
+974.225 -0.117944 0.00 !Mu0ChY15TRaw[Co3At1Ch15]
+980.805 -0.118761 0.00 !Mu0ChY16TRaw[Co3At1Ch16]
+935.973 -0.113175 0.00 !Mu0ChY17TRaw[Co3At2Ch1]
+944.972 -0.114309 0.00 !Mu0ChY18TRaw[Co3At2Ch2]
+953.592 -0.115351 0.00 !Mu0ChY19TRaw[Co3At2Ch3]
+945.492 -0.11436 0.00 !Mu0ChY20TRaw[Co3At2Ch4]
+948.066 -0.114686 0.00 !Mu0ChY21TRaw[Co3At2Ch5]
+951.558 -0.115103 0.00 !Mu0ChY22TRaw[Co3At2Ch6]
+957.545 -0.115832 0.00 !Mu0ChY23TRaw[Co3At2Ch7]
+957.576 -0.115841 0.00 !Mu0ChY24TRaw[Co3At2Ch8]
+962.251 -0.116398 0.00 !Mu0ChY25TRaw[Co3At2Ch9]
+960.479 -0.116195 0.00 !Mu0ChY26TRaw[Co3At2Ch10]
+957.007 -0.115516 0.00 !Mu0ChY27TRaw[Co3At2Ch11]
+971.646 -0.117562 0.00 !Mu0ChY28TRaw[Co3At2Ch12]
+974.064 -0.117834 0.00 !Mu0ChY29TRaw[Co3At2Ch13]
+968.974 -0.11722 0.00 !Mu0ChY30TRaw[Co3At2Ch14]
+971.944 -0.11759 0.00 !Mu0ChY31TRaw[Co3At2Ch15]
+966.713 -0.116928 0.00 !Mu0ChY32TRaw[Co3At2Ch16]
+869.43 -0.105131 0.00 !Mu0ChY33TRaw[Co3At3Ch1]
+868.989 -0.105113 0.00 !Mu0ChY34TRaw[Co3At3Ch2]
+886.133 -0.107174 0.00 !Mu0ChY35TRaw[Co3At3Ch3]
+876.002 -0.105955 0.00 !Mu0ChY36TRaw[Co3At3Ch4]
+887.653 -0.107363 0.00 !Mu0ChY37TRaw[Co3At3Ch5]
+886.897 -0.107278 0.00 !Mu0ChY38TRaw[Co3At3Ch6]
+887.559 -0.107347 0.00 !Mu0ChY39TRaw[Co3At3Ch7]
+905.525 -0.109567 0.00 !Mu0ChY40TRaw[Co3At3Ch8]
+903.288 -0.109268 0.00 !Mu0ChY41TRaw[Co3At3Ch9]
+901.488 -0.109045 0.00 !Mu0ChY42TRaw[Co3At3Ch10]
+900.453 -0.108924 0.00 !Mu0ChY43TRaw[Co3At3Ch11]
+911.154 -0.110196 0.00 !Mu0ChY44TRaw[Co3At3Ch12]
+908.4 -0.109895 0.00 !Mu0ChY45TRaw[Co3At3Ch13]
+903.164 -0.10924 0.00 !Mu0ChY46TRaw[Co3At3Ch14]
+913.419 -0.110513 0.00 !Mu0ChY47TRaw[Co3At3Ch15]
+901.371 -0.109056 0.00 !Mu0ChY48TRaw[Co3At3Ch16]
+855.809 -0.103507 0.00 !Mu0ChY49TRaw[Co3At4Ch1]
+866.963 -0.104888 0.00 !Mu0ChY50TRaw[Co3At4Ch2]
+862.301 -0.104347 0.00 !Mu0ChY51TRaw[Co3At4Ch3]
+879.214 -0.106391 0.00 !Mu0ChY52TRaw[Co3At4Ch4]
+881.851 -0.106718 0.00 !Mu0ChY53TRaw[Co3At4Ch5]
+883.115 -0.106878 0.00 !Mu0ChY54TRaw[Co3At4Ch6]
+879.659 -0.106441 0.00 !Mu0ChY55TRaw[Co3At4Ch7]
+887.765 -0.107426 0.00 !Mu0ChY56TRaw[Co3At4Ch8]
+889.179 -0.107608 0.00 !Mu0ChY57TRaw[Co3At4Ch9]
+893.434 -0.108136 0.00 !Mu0ChY58TRaw[Co3At4Ch10]
+900.612 -0.109012 0.00 !Mu0ChY59TRaw[Co3At4Ch11]
+899.41 -0.108611 0.00 !Mu0ChY60TRaw[Co3At4Ch12]
+898.225 -0.108719 0.00 !Mu0ChY61TRaw[Co3At4Ch13]
+905.378 -0.109581 0.00 !Mu0ChY62TRaw[Co3At4Ch14]
+899.576 -0.108895 0.00 !Mu0ChY63TRaw[Co3At4Ch15]
+904.856 -0.109543 0.00 !Mu0ChY64TRaw[Co3At4Ch16]
+964.166 -0.116469 0.00 !Mu0ChY65TRaw[Co4At1Ch1]
+970.821 -0.117302 0.00 !Mu0ChY66TRaw[Co4At1Ch2]
+976.54 -0.118012 0.00 !Mu0ChY67TRaw[Co4At1Ch3]
+976.814 -0.118028 0.00 !Mu0ChY68TRaw[Co4At1Ch4]
+979.621 -0.118378 0.00 !Mu0ChY69TRaw[Co4At1Ch5]
+983.271 -0.118825 0.00 !Mu0ChY70TRaw[Co4At1Ch6]
+982.977 -0.118781 0.00 !Mu0ChY71TRaw[Co4At1Ch7]
+986.021 -0.119156 0.00 !Mu0ChY72TRaw[Co4At1Ch8]
+989.88 -0.119628 0.00 !Mu0ChY73TRaw[Co4At1Ch9]
+981.368 -0.118591 0.00 !Mu0ChY74TRaw[Co4At1Ch10]
+990.1 -0.119656 0.00 !Mu0ChY75TRaw[Co4At1Ch11]
+1000.52 -0.120924 0.00 !Mu0ChY76TRaw[Co4At1Ch12]
+995.667 -0.120327 0.00 !Mu0ChY77TRaw[Co4At1Ch13]
+997.754 -0.120579 0.00 !Mu0ChY78TRaw[Co4At1Ch14]
+994.951 -0.120247 0.00 !Mu0ChY79TRaw[Co4At1Ch15]
+1001.99 -0.121097 0.00 !Mu0ChY80TRaw[Co4At1Ch16]
+970.583 -0.117145 0.00 !Mu0ChY81TRaw[Co4At2Ch1]
+986.462 -0.119118 0.00 !Mu0ChY82TRaw[Co4At2Ch2]
+981.625 -0.118534 0.00 !Mu0ChY83TRaw[Co4At2Ch3]
+996.206 -0.12031 0.00 !Mu0ChY84TRaw[Co4At2Ch4]
+1000.06 -0.120777 0.00 !Mu0ChY85TRaw[Co4At2Ch5]
+1002.53 -0.121085 0.00 !Mu0ChY86TRaw[Co4At2Ch6]
+998.357 -0.120569 0.00 !Mu0ChY87TRaw[Co4At2Ch7]
+1008.76 -0.121839 0.00 !Mu0ChY88TRaw[Co4At2Ch8]
+1004.65 -0.121339 0.00 !Mu0ChY89TRaw[Co4At2Ch9]
+1015 -0.122592 0.00 !Mu0ChY90TRaw[Co4At2Ch10]
+1025.62 -0.123897 0.00 !Mu0ChY91TRaw[Co4At2Ch11]
+1025.41 -0.123866 0.00 !Mu0ChY92TRaw[Co4At2Ch12]
+1020.27 -0.123256 0.00 !Mu0ChY93TRaw[Co4At2Ch13]
+1024.71 -0.123786 0.00 !Mu0ChY94TRaw[Co4At2Ch14]
+1021.51 -0.123408 0.00 !Mu0ChY95TRaw[Co4At2Ch15]
+1016.94 -0.122879 0.00 !Mu0ChY96TRaw[Co4At2Ch16]
+882.97 -0.106544 0.00 !Mu0ChY97TRaw[Co4At3Ch1]
+879.326 -0.106139 0.00 !Mu0ChY98TRaw[Co4At3Ch2]
+878.449 -0.106028 0.00 !Mu0ChY99TRaw[Co4At3Ch3]
+894.979 -0.108041 0.00 !Mu0ChY100TRaw[Co4At3Ch4]
+892.203 -0.107707 0.00 !Mu0ChY101TRaw[Co4At3Ch5]
+891.015 -0.10757 0.00 !Mu0ChY102TRaw[Co4At3Ch6]
+895.424 -0.108105 0.00 !Mu0ChY103TRaw[Co4At3Ch7]
+907.578 -0.10959 0.00 !Mu0ChY104TRaw[Co4At3Ch8]
+902.147 -0.108916 0.00 !Mu0ChY105TRaw[Co4At3Ch9]
+915.536 -0.110544 0.00 !Mu0ChY106TRaw[Co4At3Ch10]
+910.897 -0.109981 0.00 !Mu0ChY107TRaw[Co4At3Ch11]
+915.092 -0.11051 0.00 !Mu0ChY108TRaw[Co4At3Ch12]
+914.664 -0.110421 0.00 !Mu0ChY109TRaw[Co4At3Ch13]
+910.113 -0.109894 0.00 !Mu0ChY110TRaw[Co4At3Ch14]
+915.675 -0.110572 0.00 !Mu0ChY111TRaw[Co4At3Ch15]
+917.59 -0.110803 0.00 !Mu0ChY112TRaw[Co4At3Ch16]
+892.441 -0.107535 0.00 !Mu0ChY113TRaw[Co4At4Ch1]
+899.913 -0.108466 0.00 !Mu0ChY114TRaw[Co4At4Ch2]
+899.438 -0.108438 0.00 !Mu0ChY115TRaw[Co4At4Ch3]
+905.439 -0.109158 0.00 !Mu0ChY116TRaw[Co4At4Ch4]
+917.108 -0.110566 0.00 !Mu0ChY117TRaw[Co4At4Ch5]
+910.331 -0.109757 0.00 !Mu0ChY118TRaw[Co4At4Ch6]
+930.135 -0.112167 0.00 !Mu0ChY119TRaw[Co4At4Ch7]
+921.847 -0.111146 0.00 !Mu0ChY120TRaw[Co4At4Ch8]
+932.043 -0.112407 0.00 !Mu0ChY121TRaw[Co4At4Ch9]
+931.497 -0.112337 0.00 !Mu0ChY122TRaw[Co4At4Ch10]
+933.275 -0.112539 0.00 !Mu0ChY123TRaw[Co4At4Ch11]
+936.749 -0.112978 0.00 !Mu0ChY124TRaw[Co4At4Ch12]
+931.392 -0.112316 0.00 !Mu0ChY125TRaw[Co4At4Ch13]
+930.352 -0.112192 0.00 !Mu0ChY126TRaw[Co4At4Ch14]
+927.302 -0.111821 0.00 !Mu0ChY127TRaw[Co4At4Ch15]
+930.24 -0.112162 0.00 !Mu0ChY128TRaw[Co4At4Ch16]
+926.786 -0.11232 0.00 !Mu1ChX1TRaw[Co1At1Ch1]
+940.575 -0.114015 0.00 !Mu1ChX2TRaw[Co1At1Ch2]
+943.089 -0.114341 0.00 !Mu1ChX3TRaw[Co1At1Ch3]
+954.304 -0.115712 0.00 !Mu1ChX4TRaw[Co1At1Ch4]
+954.653 -0.115744 0.00 !Mu1ChX5TRaw[Co1At1Ch5]
+956.573 -0.115962 0.00 !Mu1ChX6TRaw[Co1At1Ch6]
+970.061 -0.117589 0.00 !Mu1ChX7TRaw[Co1At1Ch7]
+965.116 -0.116998 0.00 !Mu1ChX8TRaw[Co1At1Ch8]
+969.325 -0.117498 0.00 !Mu1ChX9TRaw[Co1At1Ch9]
+978.231 -0.118577 0.00 !Mu1ChX10TRaw[Co1At1Ch10]
+974.593 -0.118143 0.00 !Mu1ChX11TRaw[Co1At1Ch11]
+974.146 -0.118071 0.00 !Mu1ChX12TRaw[Co1At1Ch12]
+986.191 -0.11954 0.00 !Mu1ChX13TRaw[Co1At1Ch13]
+986.678 -0.119597 0.00 !Mu1ChX14TRaw[Co1At1Ch14]
+983.727 -0.119236 0.00 !Mu1ChX15TRaw[Co1At1Ch15]
+1371.19 -0.119179 0.00 !Mu1ChX16TRaw[Co1At1Ch16]
+922.557 -0.111777 0.00 !Mu1ChX17TRaw[Co1At2Ch1]
+945.525 -0.114612 0.00 !Mu1ChX18TRaw[Co1At2Ch2]
+946.378 -0.114738 0.00 !Mu1ChX19TRaw[Co1At2Ch3]
+943.86 -0.114439 0.00 !Mu1ChX20TRaw[Co1At2Ch4]
+952.199 -0.115464 0.00 !Mu1ChX21TRaw[Co1At2Ch5]
+965.45 -0.117052 0.00 !Mu1ChX22TRaw[Co1At2Ch6]
+954.947 -0.115762 0.00 !Mu1ChX23TRaw[Co1At2Ch7]
+971.26 -0.117739 0.00 !Mu1ChX24TRaw[Co1At2Ch8]
+969.364 -0.117531 0.00 !Mu1ChX25TRaw[Co1At2Ch9]
+972.531 -0.117923 0.00 !Mu1ChX26TRaw[Co1At2Ch10]
+971.171 -0.117737 0.00 !Mu1ChX27TRaw[Co1At2Ch11]
+974.954 -0.11821 0.00 !Mu1ChX28TRaw[Co1At2Ch12]
+978.834 -0.118677 0.00 !Mu1ChX29TRaw[Co1At2Ch13]
+975.807 -0.118324 0.00 !Mu1ChX30TRaw[Co1At2Ch14]
+974.804 -0.118198 0.00 !Mu1ChX31TRaw[Co1At2Ch15]
+984.936 -0.119148 0.00 !Mu1ChX32TRaw[Co1At2Ch16]
+875.904 -0.106165 0.00 !Mu1ChX33TRaw[Co1At3Ch1]
+875.79 -0.10618 0.00 !Mu1ChX34TRaw[Co1At3Ch2]
+891.706 -0.108064 0.00 !Mu1ChX35TRaw[Co1At3Ch3]
+873.845 -0.105941 0.00 !Mu1ChX36TRaw[Co1At3Ch4]
+891.762 -0.108105 0.00 !Mu1ChX37TRaw[Co1At3Ch5]
+897.589 -0.108823 0.00 !Mu1ChX38TRaw[Co1At3Ch6]
+889.745 -0.107861 0.00 !Mu1ChX39TRaw[Co1At3Ch7]
+894.521 -0.10842 0.00 !Mu1ChX40TRaw[Co1At3Ch8]
+897.332 -0.108779 0.00 !Mu1ChX41TRaw[Co1At3Ch9]
+897.319 -0.108754 0.00 !Mu1ChX42TRaw[Co1At3Ch10]
+905.732 -0.109783 0.00 !Mu1ChX43TRaw[Co1At3Ch11]
+897.833 -0.108855 0.00 !Mu1ChX44TRaw[Co1At3Ch12]
+907.458 -0.110019 0.00 !Mu1ChX45TRaw[Co1At3Ch13]
+905.696 -0.109854 0.00 !Mu1ChX46TRaw[Co1At3Ch14]
+903.207 -0.109528 0.00 !Mu1ChX47TRaw[Co1At3Ch15]
+918.195 -0.110055 0.00 !Mu1ChX48TRaw[Co1At3Ch16]
+865.632 -0.104838 0.00 !Mu1ChX49TRaw[Co1At4Ch1]
+871.03 -0.105455 0.00 !Mu1ChX50TRaw[Co1At4Ch2]
+883.706 -0.107015 0.00 !Mu1ChX51TRaw[Co1At4Ch3]
+886.118 -0.107338 0.00 !Mu1ChX52TRaw[Co1At4Ch4]
+888.977 -0.107685 0.00 !Mu1ChX53TRaw[Co1At4Ch5]
+889.176 -0.107699 0.00 !Mu1ChX54TRaw[Co1At4Ch6]
+893.053 -0.10819 0.00 !Mu1ChX55TRaw[Co1At4Ch7]
+898.958 -0.108878 0.00 !Mu1ChX56TRaw[Co1At4Ch8]
+905.343 -0.1097 0.00 !Mu1ChX57TRaw[Co1At4Ch9]
+901.014 -0.10916 0.00 !Mu1ChX58TRaw[Co1At4Ch10]
+909.801 -0.110244 0.00 !Mu1ChX59TRaw[Co1At4Ch11]
+902.356 -0.109308 0.00 !Mu1ChX60TRaw[Co1At4Ch12]
+915.181 -0.110894 0.00 !Mu1ChX61TRaw[Co1At4Ch13]
+906.646 -0.109867 0.00 !Mu1ChX62TRaw[Co1At4Ch14]
+906.177 -0.109791 0.00 !Mu1ChX63TRaw[Co1At4Ch15]
+917.322 -0.110777 0.00 !Mu1ChX64TRaw[Co1At4Ch16]
+947.375 -0.114723 0.00 !Mu1ChX65TRaw[Co2At1Ch1]
+949.155 -0.114949 0.00 !Mu1ChX66TRaw[Co2At1Ch2]
+962.658 -0.116629 0.00 !Mu1ChX67TRaw[Co2At1Ch3]
+962.29 -0.116557 0.00 !Mu1ChX68TRaw[Co2At1Ch4]
+964.501 -0.116827 0.00 !Mu1ChX69TRaw[Co2At1Ch5]
+972.559 -0.117811 0.00 !Mu1ChX70TRaw[Co2At1Ch6]
+972.248 -0.117758 0.00 !Mu1ChX71TRaw[Co2At1Ch7]
+977.48 -0.118392 0.00 !Mu1ChX72TRaw[Co2At1Ch8]
+974.838 -0.118063 0.00 !Mu1ChX73TRaw[Co2At1Ch9]
+989.581 -0.119853 0.00 !Mu1ChX74TRaw[Co2At1Ch10]
+985.59 -0.119377 0.00 !Mu1ChX75TRaw[Co2At1Ch11]
+983.734 -0.119141 0.00 !Mu1ChX76TRaw[Co2At1Ch12]
+990.699 -0.119982 0.00 !Mu1ChX77TRaw[Co2At1Ch13]
+992.465 -0.120199 0.00 !Mu1ChX78TRaw[Co2At1Ch14]
+992.485 -0.1202 0.00 !Mu1ChX79TRaw[Co2At1Ch15]
+1375.52 -0.120722 0.00 !Mu1ChX80TRaw[Co2At1Ch16]
+972.687 -0.117775 0.00 !Mu1ChX81TRaw[Co2At2Ch1]
+974.84 -0.118024 0.00 !Mu1ChX82TRaw[Co2At2Ch2]
+979.911 -0.118652 0.00 !Mu1ChX83TRaw[Co2At2Ch3]
+993.406 -0.120307 0.00 !Mu1ChX84TRaw[Co2At2Ch4]
+992.814 -0.120215 0.00 !Mu1ChX85TRaw[Co2At2Ch5]
+1002.31 -0.121389 0.00 !Mu1ChX86TRaw[Co2At2Ch6]
+1003.74 -0.121554 0.00 !Mu1ChX87TRaw[Co2At2Ch7]
+995.588 -0.12057 0.00 !Mu1ChX88TRaw[Co2At2Ch8]
+1010.12 -0.122345 0.00 !Mu1ChX89TRaw[Co2At2Ch9]
+1012.32 -0.12261 0.00 !Mu1ChX90TRaw[Co2At2Ch10]
+1007.94 -0.122082 0.00 !Mu1ChX91TRaw[Co2At2Ch11]
+1014.03 -0.12282 0.00 !Mu1ChX92TRaw[Co2At2Ch12]
+1013.77 -0.12279 0.00 !Mu1ChX93TRaw[Co2At2Ch13]
+1016.53 -0.123127 0.00 !Mu1ChX94TRaw[Co2At2Ch14]
+1016.3 -0.123096 0.00 !Mu1ChX95TRaw[Co2At2Ch15]
+1004.26 -0.12163 0.00 !Mu1ChX96TRaw[Co2At2Ch16]
+888.673 -0.107613 0.00 !Mu1ChX97TRaw[Co2At3Ch1]
+886.825 -0.107373 0.00 !Mu1ChX98TRaw[Co2At3Ch2]
+890.552 -0.107838 0.00 !Mu1ChX99TRaw[Co2At3Ch3]
+901.931 -0.109224 0.00 !Mu1ChX100TRaw[Co2At3Ch4]
+901.707 -0.1092 0.00 !Mu1ChX101TRaw[Co2At3Ch5]
+906.676 -0.109791 0.00 !Mu1ChX102TRaw[Co2At3Ch6]
+902.249 -0.109268 0.00 !Mu1ChX103TRaw[Co2At3Ch7]
+917.913 -0.111151 0.00 !Mu1ChX104TRaw[Co2At3Ch8]
+919.118 -0.11128 0.00 !Mu1ChX105TRaw[Co2At3Ch9]
+920.502 -0.111467 0.00 !Mu1ChX106TRaw[Co2At3Ch10]
+925.286 -0.112035 0.00 !Mu1ChX107TRaw[Co2At3Ch11]
+920.839 -0.111519 0.00 !Mu1ChX108TRaw[Co2At3Ch12]
+921.752 -0.111616 0.00 !Mu1ChX109TRaw[Co2At3Ch13]
+913.537 -0.110627 0.00 !Mu1ChX110TRaw[Co2At3Ch14]
+916.058 -0.110941 0.00 !Mu1ChX111TRaw[Co2At3Ch15]
+924.322 -0.11176 0.00 !Mu1ChX112TRaw[Co2At3Ch16]
+897.027 -0.108476 0.00 !Mu1ChX113TRaw[Co2At4Ch1]
+897.77 -0.108567 0.00 !Mu1ChX114TRaw[Co2At4Ch2]
+905.06 -0.10946 0.00 !Mu1ChX115TRaw[Co2At4Ch3]
+910.605 -0.110136 0.00 !Mu1ChX116TRaw[Co2At4Ch4]
+925.57 -0.111977 0.00 !Mu1ChX117TRaw[Co2At4Ch5]
+920.161 -0.111304 0.00 !Mu1ChX118TRaw[Co2At4Ch6]
+932.296 -0.112781 0.00 !Mu1ChX119TRaw[Co2At4Ch7]
+914.819 -0.110659 0.00 !Mu1ChX120TRaw[Co2At4Ch8]
+920.284 -0.111325 0.00 !Mu1ChX121TRaw[Co2At4Ch9]
+927.772 -0.112226 0.00 !Mu1ChX122TRaw[Co2At4Ch10]
+928.866 -0.11236 0.00 !Mu1ChX123TRaw[Co2At4Ch11]
+924.041 -0.111775 0.00 !Mu1ChX124TRaw[Co2At4Ch12]
+921.484 -0.111483 0.00 !Mu1ChX125TRaw[Co2At4Ch13]
+927.438 -0.112193 0.00 !Mu1ChX126TRaw[Co2At4Ch14]
+930.757 -0.112614 0.00 !Mu1ChX127TRaw[Co2At4Ch15]
+924.698 -0.111864 0.00 !Mu1ChX128TRaw[Co2At4Ch16]
+930.899 -0.11282 0.00 !Mu1ChY1TRaw[Co3At1Ch1]
+932.297 -0.113022 0.00 !Mu1ChY2TRaw[Co3At1Ch2]
+943.292 -0.114361 0.00 !Mu1ChY3TRaw[Co3At1Ch3]
+947.201 -0.114834 0.00 !Mu1ChY4TRaw[Co3At1Ch4]
+949.524 -0.115122 0.00 !Mu1ChY5TRaw[Co3At1Ch5]
+952.95 -0.115533 0.00 !Mu1ChY6TRaw[Co3At1Ch6]
+956.311 -0.115938 0.00 !Mu1ChY7TRaw[Co3At1Ch7]
+946.369 -0.114726 0.00 !Mu1ChY8TRaw[Co3At1Ch8]
+953.576 -0.11562 0.00 !Mu1ChY9TRaw[Co3At1Ch9]
+964.215 -0.116854 0.00 !Mu1ChY10TRaw[Co3At1Ch10]
+959.98 -0.116368 0.00 !Mu1ChY11TRaw[Co3At1Ch11]
+967.734 -0.117327 0.00 !Mu1ChY12TRaw[Co3At1Ch12]
+967.914 -0.117358 0.00 !Mu1ChY13TRaw[Co3At1Ch13]
+963.677 -0.116827 0.00 !Mu1ChY14TRaw[Co3At1Ch14]
+965.026 -0.116981 0.00 !Mu1ChY15TRaw[Co3At1Ch15]
+962.695 -0.116717 0.00 !Mu1ChY16TRaw[Co3At1Ch16]
+964.683 -0.116883 0.00 !Mu1ChY17TRaw[Co3At2Ch1]
+966.649 -0.117128 0.00 !Mu1ChY18TRaw[Co3At2Ch2]
+971.034 -0.117665 0.00 !Mu1ChY19TRaw[Co3At2Ch3]
+971.558 -0.117743 0.00 !Mu1ChY20TRaw[Co3At2Ch4]
+983.103 -0.119146 0.00 !Mu1ChY21TRaw[Co3At2Ch5]
+979.702 -0.118747 0.00 !Mu1ChY22TRaw[Co3At2Ch6]
+450 -0.119189 0.00 !Mu1ChY23TRaw[Co3At2Ch7]
+989.487 -0.119964 0.00 !Mu1ChY24TRaw[Co3At2Ch8]
+991.153 -0.120158 0.00 !Mu1ChY25TRaw[Co3At2Ch9]
+991.247 -0.120176 0.00 !Mu1ChY26TRaw[Co3At2Ch10]
+995.752 -0.120728 0.00 !Mu1ChY27TRaw[Co3At2Ch11]
+990.621 -0.120113 0.00 !Mu1ChY28TRaw[Co3At2Ch12]
+992.588 -0.120339 0.00 !Mu1ChY29TRaw[Co3At2Ch13]
+983.94 -0.119308 0.00 !Mu1ChY30TRaw[Co3At2Ch14]
+990.472 -0.120108 0.00 !Mu1ChY31TRaw[Co3At2Ch15]
+985.366 -0.119515 0.00 !Mu1ChY32TRaw[Co3At2Ch16]
+879.895 -0.106691 0.00 !Mu1ChY33TRaw[Co3At3Ch1]
+885.732 -0.10745 0.00 !Mu1ChY34TRaw[Co3At3Ch2]
+880.947 -0.106848 0.00 !Mu1ChY35TRaw[Co3At3Ch3]
+890.881 -0.108037 0.00 !Mu1ChY36TRaw[Co3At3Ch4]
+8.50641e+11 -1.03827e+08 0.00 !Mu1ChY37TRaw[Co3At3Ch5]
+901.269 -0.109433 0.00 !Mu1ChY38TRaw[Co3At3Ch6]
+900.483 -0.110242 0.00 !Mu1ChY39TRaw[Co3At3Ch7]
+902.133 -0.10944 0.00 !Mu1ChY40TRaw[Co3At3Ch8]
+890.343 -0.107957 0.00 !Mu1ChY41TRaw[Co3At3Ch9]
+902.898 -0.109521 0.00 !Mu1ChY42TRaw[Co3At3Ch10]
+895.657 -0.108623 0.00 !Mu1ChY43TRaw[Co3At3Ch11]
+904.61 -0.10969 0.00 !Mu1ChY44TRaw[Co3At3Ch12]
+907.072 -0.109989 0.00 !Mu1ChY45TRaw[Co3At3Ch13]
+901.222 -0.109312 0.00 !Mu1ChY46TRaw[Co3At3Ch14]
+905.951 -0.109844 0.00 !Mu1ChY47TRaw[Co3At3Ch15]
+901.159 -0.109257 0.00 !Mu1ChY48TRaw[Co3At3Ch16]
+883.344 -0.10696 0.00 !Mu1ChY49TRaw[Co3At4Ch1]
+882.465 -0.106852 0.00 !Mu1ChY50TRaw[Co3At4Ch2]
+878.872 -0.106436 0.00 !Mu1ChY51TRaw[Co3At4Ch3]
+892.099 -0.108049 0.00 !Mu1ChY52TRaw[Co3At4Ch4]
+897.834 -0.108781 0.00 !Mu1ChY53TRaw[Co3At4Ch5]
+899.02 -0.108923 0.00 !Mu1ChY54TRaw[Co3At4Ch6]
+898.979 -0.108922 0.00 !Mu1ChY55TRaw[Co3At4Ch7]
+899.225 -0.108949 0.00 !Mu1ChY56TRaw[Co3At4Ch8]
+911.018 -0.110395 0.00 !Mu1ChY57TRaw[Co3At4Ch9]
+910.225 -0.110294 0.00 !Mu1ChY58TRaw[Co3At4Ch10]
+905.692 -0.109746 0.00 !Mu1ChY59TRaw[Co3At4Ch11]
+908.504 -0.109802 0.00 !Mu1ChY60TRaw[Co3At4Ch12]
+905.665 -0.109742 0.00 !Mu1ChY61TRaw[Co3At4Ch13]
+913.658 -0.11072 0.00 !Mu1ChY62TRaw[Co3At4Ch14]
+915.004 -0.110879 0.00 !Mu1ChY63TRaw[Co3At4Ch15]
+915.999 -0.111037 0.00 !Mu1ChY64TRaw[Co3At4Ch16]
+945.876 -0.115194 0.00 !Mu1ChY65TRaw[Co4At1Ch1]
+952.653 -0.116053 0.00 !Mu1ChY66TRaw[Co4At1Ch2]
+958.599 -0.116788 0.00 !Mu1ChY67TRaw[Co4At1Ch3]
+962.073 -0.117211 0.00 !Mu1ChY68TRaw[Co4At1Ch4]
+965.512 -0.117617 0.00 !Mu1ChY69TRaw[Co4At1Ch5]
+973.646 -0.118609 0.00 !Mu1ChY70TRaw[Co4At1Ch6]
+969.091 -0.118053 0.00 !Mu1ChY71TRaw[Co4At1Ch7]
+977.205 -0.119038 0.00 !Mu1ChY72TRaw[Co4At1Ch8]
+978.244 -0.119163 0.00 !Mu1ChY73TRaw[Co4At1Ch9]
+981.509 -0.119552 0.00 !Mu1ChY74TRaw[Co4At1Ch10]
+983.33 -0.119777 0.00 !Mu1ChY75TRaw[Co4At1Ch11]
+980.28 -0.119391 0.00 !Mu1ChY76TRaw[Co4At1Ch12]
+987.378 -0.11981 0.00 !Mu1ChY77TRaw[Co4At1Ch13]
+981.221 -0.119505 0.00 !Mu1ChY78TRaw[Co4At1Ch14]
+982.019 -0.119601 0.00 !Mu1ChY79TRaw[Co4At1Ch15]
+986.869 -0.120194 0.00 !Mu1ChY80TRaw[Co4At1Ch16]
+942.041 -0.114646 0.00 !Mu1ChY81TRaw[Co4At2Ch1]
+950.256 -0.115676 0.00 !Mu1ChY82TRaw[Co4At2Ch2]
+949.146 -0.115551 0.00 !Mu1ChY83TRaw[Co4At2Ch3]
+956.132 -0.116392 0.00 !Mu1ChY84TRaw[Co4At2Ch4]
+955.603 -0.116344 0.00 !Mu1ChY85TRaw[Co4At2Ch5]
+965.862 -0.117589 0.00 !Mu1ChY86TRaw[Co4At2Ch6]
+966.696 -0.117699 0.00 !Mu1ChY87TRaw[Co4At2Ch7]
+973.856 -0.118567 0.00 !Mu1ChY88TRaw[Co4At2Ch8]
+974.942 -0.118705 0.00 !Mu1ChY89TRaw[Co4At2Ch9]
+967.58 -0.117807 0.00 !Mu1ChY90TRaw[Co4At2Ch10]
+972.217 -0.118376 0.00 !Mu1ChY91TRaw[Co4At2Ch11]
+980.142 -0.119333 0.00 !Mu1ChY92TRaw[Co4At2Ch12]
+980.758 -0.119429 0.00 !Mu1ChY93TRaw[Co4At2Ch13]
+973.754 -0.118576 0.00 !Mu1ChY94TRaw[Co4At2Ch14]
+977.548 -0.119031 0.00 !Mu1ChY95TRaw[Co4At2Ch15]
+988.795 -0.120471 0.00 !Mu1ChY96TRaw[Co4At2Ch16]
+871.404 -0.106136 0.00 !Mu1ChY97TRaw[Co4At3Ch1]
+870.084 -0.106 0.00 !Mu1ChY98TRaw[Co4At3Ch2]
+874.611 -0.106555 0.00 !Mu1ChY99TRaw[Co4At3Ch3]
+888.655 -0.108263 0.00 !Mu1ChY100TRaw[Co4At3Ch4]
+886.461 -0.10801 0.00 !Mu1ChY101TRaw[Co4At3Ch5]
+878.586 -0.107044 0.00 !Mu1ChY102TRaw[Co4At3Ch6]
+886.442 -0.108005 0.00 !Mu1ChY103TRaw[Co4At3Ch7]
+889.81 -0.108406 0.00 !Mu1ChY104TRaw[Co4At3Ch8]
+900.116 -0.109653 0.00 !Mu1ChY105TRaw[Co4At3Ch9]
+896.798 -0.10926 0.00 !Mu1ChY106TRaw[Co4At3Ch10]
+900.214 -0.10967 0.00 !Mu1ChY107TRaw[Co4At3Ch11]
+890.896 -0.108536 0.00 !Mu1ChY108TRaw[Co4At3Ch12]
+898.103 -0.109417 0.00 !Mu1ChY109TRaw[Co4At3Ch13]
+905.123 -0.110268 0.00 !Mu1ChY110TRaw[Co4At3Ch14]
+895.488 -0.109108 0.00 !Mu1ChY111TRaw[Co4At3Ch15]
+901.504 -0.109824 0.00 !Mu1ChY112TRaw[Co4At3Ch16]
+857.767 -0.104291 0.00 !Mu1ChY113TRaw[Co4At4Ch1]
+851.391 -0.103549 0.00 !Mu1ChY114TRaw[Co4At4Ch2]
+861.589 -0.104798 0.00 !Mu1ChY115TRaw[Co4At4Ch3]
+856.553 -0.10419 0.00 !Mu1ChY116TRaw[Co4At4Ch4]
+865 -0.105221 0.00 !Mu1ChY117TRaw[Co4At4Ch5]
+874.383 -0.106354 0.00 !Mu1ChY118TRaw[Co4At4Ch6]
+878.744 -0.1069 0.00 !Mu1ChY119TRaw[Co4At4Ch7]
+873.451 -0.106252 0.00 !Mu1ChY120TRaw[Co4At4Ch8]
+890.883 -0.108379 0.00 !Mu1ChY121TRaw[Co4At4Ch9]
+891.802 -0.108492 0.00 !Mu1ChY122TRaw[Co4At4Ch10]
+889.789 -0.108225 0.00 !Mu1ChY123TRaw[Co4At4Ch11]
+888.888 -0.108132 0.00 !Mu1ChY124TRaw[Co4At4Ch12]
+891.161 -0.108412 0.00 !Mu1ChY125TRaw[Co4At4Ch13]
+886.515 -0.10784 0.00 !Mu1ChY126TRaw[Co4At4Ch14]
+883.99 -0.107526 0.00 !Mu1ChY127TRaw[Co4At4Ch15]
+947.91 -0.121191 0.00 !Mu1ChY128TRaw[Co4At4Ch16]
+936.808 -0.113282 0.00 !Mu2ChX1TRaw[Co1At1Ch1]
+933.588 -0.112935 0.00 !Mu2ChX2TRaw[Co1At1Ch2]
+941.562 -0.113903 0.00 !Mu2ChX3TRaw[Co1At1Ch3]
+953.784 -0.11541 0.00 !Mu2ChX4TRaw[Co1At1Ch4]
+949.078 -0.114834 0.00 !Mu2ChX5TRaw[Co1At1Ch5]
+966.718 -0.116968 0.00 !Mu2ChX6TRaw[Co1At1Ch6]
+960.214 -0.116144 0.00 !Mu2ChX7TRaw[Co1At1Ch7]
+964.987 -0.116738 0.00 !Mu2ChX8TRaw[Co1At1Ch8]
+956.88 -0.115736 0.00 !Mu2ChX9TRaw[Co1At1Ch9]
+968.81 -0.117191 0.00 !Mu2ChX10TRaw[Co1At1Ch10]
+971.337 -0.117505 0.00 !Mu2ChX11TRaw[Co1At1Ch11]
+966.1 -0.116868 0.00 !Mu2ChX12TRaw[Co1At1Ch12]
+972.053 -0.117596 0.00 !Mu2ChX13TRaw[Co1At1Ch13]
+966.078 -0.116864 0.00 !Mu2ChX14TRaw[Co1At1Ch14]
+966.541 -0.116934 0.00 !Mu2ChX15TRaw[Co1At1Ch15]
+1367.28 -0.118078 0.00 !Mu2ChX16TRaw[Co1At1Ch16]
+918.709 -0.111042 0.00 !Mu2ChX17TRaw[Co1At2Ch1]
+933.754 -0.1129 0.00 !Mu2ChX18TRaw[Co1At2Ch2]
+936.423 -0.113239 0.00 !Mu2ChX19TRaw[Co1At2Ch3]
+935.388 -0.11311 0.00 !Mu2ChX20TRaw[Co1At2Ch4]
+946.289 -0.114433 0.00 !Mu2ChX21TRaw[Co1At2Ch5]
+941.937 -0.113893 0.00 !Mu2ChX22TRaw[Co1At2Ch6]
+939.701 -0.113604 0.00 !Mu2ChX23TRaw[Co1At2Ch7]
+947.866 -0.114596 0.00 !Mu2ChX24TRaw[Co1At2Ch8]
+939.11 -0.113523 0.00 !Mu2ChX25TRaw[Co1At2Ch9]
+947.312 -0.114529 0.00 !Mu2ChX26TRaw[Co1At2Ch10]
+947.872 -0.114587 0.00 !Mu2ChX27TRaw[Co1At2Ch11]
+944.089 -0.114127 0.00 !Mu2ChX28TRaw[Co1At2Ch12]
+951.541 -0.115049 0.00 !Mu2ChX29TRaw[Co1At2Ch13]
+947.806 -0.114577 0.00 !Mu2ChX30TRaw[Co1At2Ch14]
+949.646 -0.114801 0.00 !Mu2ChX31TRaw[Co1At2Ch15]
+1101.24 -0.114725 0.00 !Mu2ChX32TRaw[Co1At2Ch16]
+883.868 -0.106884 0.00 !Mu2ChX33TRaw[Co1At3Ch1]
+881.306 -0.106588 0.00 !Mu2ChX34TRaw[Co1At3Ch2]
+890.406 -0.10771 0.00 !Mu2ChX35TRaw[Co1At3Ch3]
+887.688 -0.10739 0.00 !Mu2ChX36TRaw[Co1At3Ch4]
+901.335 -0.109058 0.00 !Mu2ChX37TRaw[Co1At3Ch5]
+898.532 -0.108685 0.00 !Mu2ChX38TRaw[Co1At3Ch6]
+906.127 -0.109605 0.00 !Mu2ChX39TRaw[Co1At3Ch7]
+903.029 -0.109211 0.00 !Mu2ChX40TRaw[Co1At3Ch8]
+902.567 -0.109168 0.00 !Mu2ChX41TRaw[Co1At3Ch9]
+906.324 -0.109617 0.00 !Mu2ChX42TRaw[Co1At3Ch10]
+912.663 -0.1104 0.00 !Mu2ChX43TRaw[Co1At3Ch11]
+911.609 -0.110254 0.00 !Mu2ChX44TRaw[Co1At3Ch12]
+919.504 -0.111219 0.00 !Mu2ChX45TRaw[Co1At3Ch13]
+918.075 -0.111043 0.00 !Mu2ChX46TRaw[Co1At3Ch14]
+920.693 -0.111378 0.00 !Mu2ChX47TRaw[Co1At3Ch15]
+1304.08 -0.11089 0.00 !Mu2ChX48TRaw[Co1At3Ch16]
+852.901 -0.102956 0.00 !Mu2ChX49TRaw[Co1At4Ch1]
+862.836 -0.104191 0.00 !Mu2ChX50TRaw[Co1At4Ch2]
+872.425 -0.105362 0.00 !Mu2ChX51TRaw[Co1At4Ch3]
+866.551 -0.10464 0.00 !Mu2ChX52TRaw[Co1At4Ch4]
+875.507 -0.105723 0.00 !Mu2ChX53TRaw[Co1At4Ch5]
+875.722 -0.105755 0.00 !Mu2ChX54TRaw[Co1At4Ch6]
+877.794 -0.105984 0.00 !Mu2ChX55TRaw[Co1At4Ch7]
+885.59 -0.106931 0.00 !Mu2ChX56TRaw[Co1At4Ch8]
+894.535 -0.108024 0.00 !Mu2ChX57TRaw[Co1At4Ch9]
+896.983 -0.108307 0.00 !Mu2ChX58TRaw[Co1At4Ch10]
+888.442 -0.107279 0.00 !Mu2ChX59TRaw[Co1At4Ch11]
+898.855 -0.108543 0.00 !Mu2ChX60TRaw[Co1At4Ch12]
+900.217 -0.108721 0.00 !Mu2ChX61TRaw[Co1At4Ch13]
+899.805 -0.108665 0.00 !Mu2ChX62TRaw[Co1At4Ch14]
+896.358 -0.10824 0.00 !Mu2ChX63TRaw[Co1At4Ch15]
+1286.56 -0.107885 0.00 !Mu2ChX64TRaw[Co1At4Ch16]
+969.588 -0.117533 0.00 !Mu2ChX65TRaw[Co2At1Ch1]
+969.639 -0.117545 0.00 !Mu2ChX66TRaw[Co2At1Ch2]
+981.26 -0.118957 0.00 !Mu2ChX67TRaw[Co2At1Ch3]
+986.207 -0.119584 0.00 !Mu2ChX68TRaw[Co2At1Ch4]
+450 -0.119902 0.00 !Mu2ChX69TRaw[Co2At1Ch5]
+989.899 -0.12002 0.00 !Mu2ChX70TRaw[Co2At1Ch6]
+991.208 -0.120171 0.00 !Mu2ChX71TRaw[Co2At1Ch7]
+996.377 -0.120802 0.00 !Mu2ChX72TRaw[Co2At1Ch8]
+989.619 -0.119977 0.00 !Mu2ChX73TRaw[Co2At1Ch9]
+998.452 -0.12102 0.00 !Mu2ChX74TRaw[Co2At1Ch10]
+994.24 -0.12055 0.00 !Mu2ChX75TRaw[Co2At1Ch11]
+993.976 -0.12048 0.00 !Mu2ChX76TRaw[Co2At1Ch12]
+1003.64 -0.121688 0.00 !Mu2ChX77TRaw[Co2At1Ch13]
+1007.3 -0.122136 0.00 !Mu2ChX78TRaw[Co2At1Ch14]
+1010.11 -0.122472 0.00 !Mu2ChX79TRaw[Co2At1Ch15]
+1318.69 -0.121488 0.00 !Mu2ChX80TRaw[Co2At1Ch16]
+950.946 -0.115148 0.00 !Mu2ChX81TRaw[Co2At2Ch1]
+961.899 -0.116512 0.00 !Mu2ChX82TRaw[Co2At2Ch2]
+963.68 -0.116735 0.00 !Mu2ChX83TRaw[Co2At2Ch3]
+967.2 -0.117158 0.00 !Mu2ChX84TRaw[Co2At2Ch4]
+967.305 -0.117159 0.00 !Mu2ChX85TRaw[Co2At2Ch5]
+968.515 -0.117336 0.00 !Mu2ChX86TRaw[Co2At2Ch6]
+982.177 -0.118997 0.00 !Mu2ChX87TRaw[Co2At2Ch7]
+981.387 -0.118879 0.00 !Mu2ChX88TRaw[Co2At2Ch8]
+991.904 -0.120152 0.00 !Mu2ChX89TRaw[Co2At2Ch9]
+991.623 -0.120143 0.00 !Mu2ChX90TRaw[Co2At2Ch10]
+990.622 -0.120011 0.00 !Mu2ChX91TRaw[Co2At2Ch11]
+980.868 -0.118788 0.00 !Mu2ChX92TRaw[Co2At2Ch12]
+995.536 -0.120614 0.00 !Mu2ChX93TRaw[Co2At2Ch13]
+999.576 -0.12112 0.00 !Mu2ChX94TRaw[Co2At2Ch14]
+1000.5 -0.12123 0.00 !Mu2ChX95TRaw[Co2At2Ch15]
+985.324 -0.119394 0.00 !Mu2ChX96TRaw[Co2At2Ch16]
+898.921 -0.10895 0.00 !Mu2ChX97TRaw[Co2At3Ch1]
+915.715 -0.11099 0.00 !Mu2ChX98TRaw[Co2At3Ch2]
+911.411 -0.110483 0.00 !Mu2ChX99TRaw[Co2At3Ch3]
+911.648 -0.110494 0.00 !Mu2ChX100TRaw[Co2At3Ch4]
+920.871 -0.11163 0.00 !Mu2ChX101TRaw[Co2At3Ch5]
+920.388 -0.111573 0.00 !Mu2ChX102TRaw[Co2At3Ch6]
+918.664 -0.111368 0.00 !Mu2ChX103TRaw[Co2At3Ch7]
+923.174 -0.111888 0.00 !Mu2ChX104TRaw[Co2At3Ch8]
+933.198 -0.113122 0.00 !Mu2ChX105TRaw[Co2At3Ch9]
+930.187 -0.112764 0.00 !Mu2ChX106TRaw[Co2At3Ch10]
+935.147 -0.113373 0.00 !Mu2ChX107TRaw[Co2At3Ch11]
+930.349 -0.112797 0.00 !Mu2ChX108TRaw[Co2At3Ch12]
+933.561 -0.113176 0.00 !Mu2ChX109TRaw[Co2At3Ch13]
+940.135 -0.113973 0.00 !Mu2ChX110TRaw[Co2At3Ch14]
+940.914 -0.114066 0.00 !Mu2ChX111TRaw[Co2At3Ch15]
+940.163 -0.113973 0.00 !Mu2ChX112TRaw[Co2At3Ch16]
+900.272 -0.108961 0.00 !Mu2ChX113TRaw[Co2At4Ch1]
+905.007 -0.109531 0.00 !Mu2ChX114TRaw[Co2At4Ch2]
+912.464 -0.110461 0.00 !Mu2ChX115TRaw[Co2At4Ch3]
+912.22 -0.110414 0.00 !Mu2ChX116TRaw[Co2At4Ch4]
+927.733 -0.112323 0.00 !Mu2ChX117TRaw[Co2At4Ch5]
+930.691 -0.11267 0.00 !Mu2ChX118TRaw[Co2At4Ch6]
+936.077 -0.113333 0.00 !Mu2ChX119TRaw[Co2At4Ch7]
+939.108 -0.113698 0.00 !Mu2ChX120TRaw[Co2At4Ch8]
+938.924 -0.113666 0.00 !Mu2ChX121TRaw[Co2At4Ch9]
+947.571 -0.114745 0.00 !Mu2ChX122TRaw[Co2At4Ch10]
+938.938 -0.113673 0.00 !Mu2ChX123TRaw[Co2At4Ch11]
+945.07 -0.11443 0.00 !Mu2ChX124TRaw[Co2At4Ch12]
+934.733 -0.113174 0.00 !Mu2ChX125TRaw[Co2At4Ch13]
+934.595 -0.113143 0.00 !Mu2ChX126TRaw[Co2At4Ch14]
+943.044 -0.114176 0.00 !Mu2ChX127TRaw[Co2At4Ch15]
+943.184 -0.114186 0.00 !Mu2ChX128TRaw[Co2At4Ch16]
+987.442 -0.119525 0.00 !Mu2ChY1TRaw[Co3At1Ch1]
+990.37 -0.119903 0.00 !Mu2ChY2TRaw[Co3At1Ch2]
+989.136 -0.119776 0.00 !Mu2ChY3TRaw[Co3At1Ch3]
+995.437 -0.120524 0.00 !Mu2ChY4TRaw[Co3At1Ch4]
+1000.77 -0.121165 0.00 !Mu2ChY5TRaw[Co3At1Ch5]
+998.951 -0.120947 0.00 !Mu2ChY6TRaw[Co3At1Ch6]
+1003.75 -0.121526 0.00 !Mu2ChY7TRaw[Co3At1Ch7]
+1010.87 -0.122366 0.00 !Mu2ChY8TRaw[Co3At1Ch8]
+1012.21 -0.122539 0.00 !Mu2ChY9TRaw[Co3At1Ch9]
+1003.9 -0.121307 0.00 !Mu2ChY10TRaw[Co3At1Ch10]
+1010.24 -0.122275 0.00 !Mu2ChY11TRaw[Co3At1Ch11]
+1015.27 -0.122898 0.00 !Mu2ChY12TRaw[Co3At1Ch12]
+1017.2 -0.12312 0.00 !Mu2ChY13TRaw[Co3At1Ch13]
+1022.23 -0.123746 0.00 !Mu2ChY14TRaw[Co3At1Ch14]
+1021.37 -0.123621 0.00 !Mu2ChY15TRaw[Co3At1Ch15]
+1022.68 -0.123744 0.00 !Mu2ChY16TRaw[Co3At1Ch16]
+939.963 -0.113632 0.00 !Mu2ChY17TRaw[Co3At2Ch1]
+939.308 -0.11359 0.00 !Mu2ChY18TRaw[Co3At2Ch2]
+938.897 -0.113546 0.00 !Mu2ChY19TRaw[Co3At2Ch3]
+938.628 -0.113526 0.00 !Mu2ChY20TRaw[Co3At2Ch4]
+953.606 -0.115367 0.00 !Mu2ChY21TRaw[Co3At2Ch5]
+969.437 -0.117305 0.00 !Mu2ChY22TRaw[Co3At2Ch6]
+965.454 -0.11682 0.00 !Mu2ChY23TRaw[Co3At2Ch7]
+960.44 -0.116216 0.00 !Mu2ChY24TRaw[Co3At2Ch8]
+975.99 -0.118134 0.00 !Mu2ChY25TRaw[Co3At2Ch9]
+978.687 -0.118446 0.00 !Mu2ChY26TRaw[Co3At2Ch10]
+976.083 -0.117858 0.00 !Mu2ChY27TRaw[Co3At2Ch11]
+982.568 -0.11895 0.00 !Mu2ChY28TRaw[Co3At2Ch12]
+976.864 -0.118238 0.00 !Mu2ChY29TRaw[Co3At2Ch13]
+978.515 -0.118468 0.00 !Mu2ChY30TRaw[Co3At2Ch14]
+977.409 -0.118337 0.00 !Mu2ChY31TRaw[Co3At2Ch15]
+965.447 -0.116905 0.00 !Mu2ChY32TRaw[Co3At2Ch16]
+870.181 -0.105393 0.00 !Mu2ChY33TRaw[Co3At3Ch1]
+876.858 -0.106206 0.00 !Mu2ChY34TRaw[Co3At3Ch2]
+889.244 -0.107711 0.00 !Mu2ChY35TRaw[Co3At3Ch3]
+890.519 -0.10786 0.00 !Mu2ChY36TRaw[Co3At3Ch4]
+893.817 -0.108297 0.00 !Mu2ChY37TRaw[Co3At3Ch5]
+888.588 -0.107628 0.00 !Mu2ChY38TRaw[Co3At3Ch6]
+904.701 -0.109574 0.00 !Mu2ChY39TRaw[Co3At3Ch7]
+903.479 -0.109401 0.00 !Mu2ChY40TRaw[Co3At3Ch8]
+906.236 -0.109756 0.00 !Mu2ChY41TRaw[Co3At3Ch9]
+914.382 -0.110304 0.00 !Mu2ChY42TRaw[Co3At3Ch10]
+906.598 -0.10979 0.00 !Mu2ChY43TRaw[Co3At3Ch11]
+910.53 -0.110231 0.00 !Mu2ChY44TRaw[Co3At3Ch12]
+912.933 -0.110532 0.00 !Mu2ChY45TRaw[Co3At3Ch13]
+916.041 -0.110907 0.00 !Mu2ChY46TRaw[Co3At3Ch14]
+919.774 -0.111371 0.00 !Mu2ChY47TRaw[Co3At3Ch15]
+915.148 -0.110791 0.00 !Mu2ChY48TRaw[Co3At3Ch16]
+893.19 -0.108016 0.00 !Mu2ChY49TRaw[Co3At4Ch1]
+902.467 -0.109155 0.00 !Mu2ChY50TRaw[Co3At4Ch2]
+899.946 -0.108834 0.00 !Mu2ChY51TRaw[Co3At4Ch3]
+913.407 -0.110471 0.00 !Mu2ChY52TRaw[Co3At4Ch4]
+905.911 -0.109622 0.00 !Mu2ChY53TRaw[Co3At4Ch5]
+914.887 -0.110708 0.00 !Mu2ChY54TRaw[Co3At4Ch6]
+922.021 -0.111116 0.00 !Mu2ChY55TRaw[Co3At4Ch7]
+914.007 -0.11061 0.00 !Mu2ChY56TRaw[Co3At4Ch8]
+926.973 -0.11216 0.00 !Mu2ChY57TRaw[Co3At4Ch9]
+918.182 -0.111079 0.00 !Mu2ChY58TRaw[Co3At4Ch10]
+920.356 -0.111393 0.00 !Mu2ChY59TRaw[Co3At4Ch11]
+924.322 -0.11168 0.00 !Mu2ChY60TRaw[Co3At4Ch12]
+940.509 -0.11386 0.00 !Mu2ChY61TRaw[Co3At4Ch13]
+925.883 -0.112068 0.00 !Mu2ChY62TRaw[Co3At4Ch14]
+921.861 -0.111623 0.00 !Mu2ChY63TRaw[Co3At4Ch15]
+929.763 -0.112593 0.00 !Mu2ChY64TRaw[Co3At4Ch16]
+924.331 -0.111864 0.00 !Mu2ChY65TRaw[Co4At1Ch1]
+943.62 -0.114242 0.00 !Mu2ChY66TRaw[Co4At1Ch2]
+947.992 -0.114763 0.00 !Mu2ChY67TRaw[Co4At1Ch3]
+945.728 -0.114477 0.00 !Mu2ChY68TRaw[Co4At1Ch4]
+972.019 -0.117701 0.00 !Mu2ChY69TRaw[Co4At1Ch5]
+960.071 -0.116242 0.00 !Mu2ChY70TRaw[Co4At1Ch6]
+967.505 -0.117144 0.00 !Mu2ChY71TRaw[Co4At1Ch7]
+964.472 -0.116783 0.00 !Mu2ChY72TRaw[Co4At1Ch8]
+955.96 -0.115747 0.00 !Mu2ChY73TRaw[Co4At1Ch9]
+958.084 -0.115989 0.00 !Mu2ChY74TRaw[Co4At1Ch10]
+964.33 -0.116762 0.00 !Mu2ChY75TRaw[Co4At1Ch11]
+977.202 -0.118324 0.00 !Mu2ChY76TRaw[Co4At1Ch12]
+973.571 -0.117892 0.00 !Mu2ChY77TRaw[Co4At1Ch13]
+976.2 -0.118194 0.00 !Mu2ChY78TRaw[Co4At1Ch14]
+967.051 -0.117092 0.00 !Mu2ChY79TRaw[Co4At1Ch15]
+968.99 -0.117343 0.00 !Mu2ChY80TRaw[Co4At1Ch16]
+944.542 -0.114246 0.00 !Mu2ChY81TRaw[Co4At2Ch1]
+939.064 -0.113582 0.00 !Mu2ChY82TRaw[Co4At2Ch2]
+951.122 -0.115097 0.00 !Mu2ChY83TRaw[Co4At2Ch3]
+946.764 -0.114574 0.00 !Mu2ChY84TRaw[Co4At2Ch4]
+955.625 -0.115653 0.00 !Mu2ChY85TRaw[Co4At2Ch5]
+966 -0.11692 0.00 !Mu2ChY86TRaw[Co4At2Ch6]
+964.199 -0.116695 0.00 !Mu2ChY87TRaw[Co4At2Ch7]
+969.926 -0.117388 0.00 !Mu2ChY88TRaw[Co4At2Ch8]
+972.649 -0.117739 0.00 !Mu2ChY89TRaw[Co4At2Ch9]
+974.635 -0.11797 0.00 !Mu2ChY90TRaw[Co4At2Ch10]
+979.1 -0.118525 0.00 !Mu2ChY91TRaw[Co4At2Ch11]
+969.715 -0.117371 0.00 !Mu2ChY92TRaw[Co4At2Ch12]
+977.475 -0.118331 0.00 !Mu2ChY93TRaw[Co4At2Ch13]
+977.142 -0.118283 0.00 !Mu2ChY94TRaw[Co4At2Ch14]
+984.646 -0.119174 0.00 !Mu2ChY95TRaw[Co4At2Ch15]
+989.259 -0.119806 0.00 !Mu2ChY96TRaw[Co4At2Ch16]
+897.538 -0.108639 0.00 !Mu2ChY97TRaw[Co4At3Ch1]
+893.51 -0.108189 0.00 !Mu2ChY98TRaw[Co4At3Ch2]
+904.052 -0.109474 0.00 !Mu2ChY99TRaw[Co4At3Ch3]
+902.752 -0.109308 0.00 !Mu2ChY100TRaw[Co4At3Ch4]
+916.527 -0.110997 0.00 !Mu2ChY101TRaw[Co4At3Ch5]
+924.175 -0.111938 0.00 !Mu2ChY102TRaw[Co4At3Ch6]
+914.572 -0.110746 0.00 !Mu2ChY103TRaw[Co4At3Ch7]
+930.562 -0.112691 0.00 !Mu2ChY104TRaw[Co4At3Ch8]
+925.104 -0.112025 0.00 !Mu2ChY105TRaw[Co4At3Ch9]
+920.853 -0.111507 0.00 !Mu2ChY106TRaw[Co4At3Ch10]
+922.078 -0.111663 0.00 !Mu2ChY107TRaw[Co4At3Ch11]
+921.772 -0.111623 0.00 !Mu2ChY108TRaw[Co4At3Ch12]
+925.31 -0.112066 0.00 !Mu2ChY109TRaw[Co4At3Ch13]
+926.033 -0.11214 0.00 !Mu2ChY110TRaw[Co4At3Ch14]
+922.391 -0.111703 0.00 !Mu2ChY111TRaw[Co4At3Ch15]
+912.83 -0.110525 0.00 !Mu2ChY112TRaw[Co4At3Ch16]
+852.798 -0.102981 0.00 !Mu2ChY113TRaw[Co4At4Ch1]
+868.843 -0.104976 0.00 !Mu2ChY114TRaw[Co4At4Ch2]
+876.793 -0.105936 0.00 !Mu2ChY115TRaw[Co4At4Ch3]
+875.311 -0.10575 0.00 !Mu2ChY116TRaw[Co4At4Ch4]
+883.331 -0.106741 0.00 !Mu2ChY117TRaw[Co4At4Ch5]
+879.699 -0.10628 0.00 !Mu2ChY118TRaw[Co4At4Ch6]
+891.993 -0.107805 0.00 !Mu2ChY119TRaw[Co4At4Ch7]
+893.52 -0.107966 0.00 !Mu2ChY120TRaw[Co4At4Ch8]
+883.484 -0.106759 0.00 !Mu2ChY121TRaw[Co4At4Ch9]
+896.835 -0.108381 0.00 !Mu2ChY122TRaw[Co4At4Ch10]
+895.32 -0.108195 0.00 !Mu2ChY123TRaw[Co4At4Ch11]
+1336.18 -0.108195 0.00 !Mu2ChY124TRaw[Co4At4Ch12]
+897.921 -0.108519 0.00 !Mu2ChY125TRaw[Co4At4Ch13]
+898.896 -0.10863 0.00 !Mu2ChY126TRaw[Co4At4Ch14]
+900.009 -0.108768 0.00 !Mu2ChY127TRaw[Co4At4Ch15]
+896.14 -0.108297 0.00 !Mu2ChY128TRaw[Co4At4Ch16]
+936.261 -0.113591 0.00 !Mu3ChX1TRaw[Co1At1Ch1]
+949.597 -0.115254 0.00 !Mu3ChX2TRaw[Co1At1Ch2]
+954.137 -0.115822 0.00 !Mu3ChX3TRaw[Co1At1Ch3]
+956.021 -0.116042 0.00 !Mu3ChX4TRaw[Co1At1Ch4]
+948.148 -0.115096 0.00 !Mu3ChX5TRaw[Co1At1Ch5]
+962.715 -0.11686 0.00 !Mu3ChX6TRaw[Co1At1Ch6]
+967.087 -0.117385 0.00 !Mu3ChX7TRaw[Co1At1Ch7]
+972.268 -0.118019 0.00 !Mu3ChX8TRaw[Co1At1Ch8]
+970.481 -0.117779 0.00 !Mu3ChX9TRaw[Co1At1Ch9]
+968.226 -0.117496 0.00 !Mu3ChX10TRaw[Co1At1Ch10]
+970.608 -0.117795 0.00 !Mu3ChX11TRaw[Co1At1Ch11]
+982.826 -0.119273 0.00 !Mu3ChX12TRaw[Co1At1Ch12]
+972.655 -0.118031 0.00 !Mu3ChX13TRaw[Co1At1Ch13]
+978.966 -0.118805 0.00 !Mu3ChX14TRaw[Co1At1Ch14]
+976.646 -0.118524 0.00 !Mu3ChX15TRaw[Co1At1Ch15]
+1358.4 -0.119127 0.00 !Mu3ChX16TRaw[Co1At1Ch16]
+965.022 -0.117029 0.00 !Mu3ChX17TRaw[Co1At2Ch1]
+961.069 -0.116582 0.00 !Mu3ChX18TRaw[Co1At2Ch2]
+979.729 -0.11886 0.00 !Mu3ChX19TRaw[Co1At2Ch3]
+975.886 -0.118386 0.00 !Mu3ChX20TRaw[Co1At2Ch4]
+982.811 -0.119229 0.00 !Mu3ChX21TRaw[Co1At2Ch5]
+989.956 -0.120114 0.00 !Mu3ChX22TRaw[Co1At2Ch6]
+982.322 -0.119177 0.00 !Mu3ChX23TRaw[Co1At2Ch7]
+986.837 -0.119693 0.00 !Mu3ChX24TRaw[Co1At2Ch8]
+984.553 -0.119405 0.00 !Mu3ChX25TRaw[Co1At2Ch9]
+985.367 -0.119523 0.00 !Mu3ChX26TRaw[Co1At2Ch10]
+998.436 -0.12115 0.00 !Mu3ChX27TRaw[Co1At2Ch11]
+994.592 -0.120628 0.00 !Mu3ChX28TRaw[Co1At2Ch12]
+1004.55 -0.121885 0.00 !Mu3ChX29TRaw[Co1At2Ch13]
+997.75 -0.121035 0.00 !Mu3ChX30TRaw[Co1At2Ch14]
+999.387 -0.121233 0.00 !Mu3ChX31TRaw[Co1At2Ch15]
+994.205 -0.120654 0.00 !Mu3ChX32TRaw[Co1At2Ch16]
+895.626 -0.108693 0.00 !Mu3ChX33TRaw[Co1At3Ch1]
+901.788 -0.109485 0.00 !Mu3ChX34TRaw[Co1At3Ch2]
+909.669 -0.110421 0.00 !Mu3ChX35TRaw[Co1At3Ch3]
+902.809 -0.109588 0.00 !Mu3ChX36TRaw[Co1At3Ch4]
+908.707 -0.110301 0.00 !Mu3ChX37TRaw[Co1At3Ch5]
+917.184 -0.111327 0.00 !Mu3ChX38TRaw[Co1At3Ch6]
+918.636 -0.111495 0.00 !Mu3ChX39TRaw[Co1At3Ch7]
+927.002 -0.112521 0.00 !Mu3ChX40TRaw[Co1At3Ch8]
+934.79 -0.11347 0.00 !Mu3ChX41TRaw[Co1At3Ch9]
+928.489 -0.112717 0.00 !Mu3ChX42TRaw[Co1At3Ch10]
+925.669 -0.112335 0.00 !Mu3ChX43TRaw[Co1At3Ch11]
+450 -0.112964 0.00 !Mu3ChX44TRaw[Co1At3Ch12]
+932.907 -0.113245 0.00 !Mu3ChX45TRaw[Co1At3Ch13]
+927.364 -0.11258 0.00 !Mu3ChX46TRaw[Co1At3Ch14]
+934.8 -0.113476 0.00 !Mu3ChX47TRaw[Co1At3Ch15]
+933.166 -0.113256 0.00 !Mu3ChX48TRaw[Co1At3Ch16]
+863.882 -0.104661 0.00 !Mu3ChX49TRaw[Co1At4Ch1]
+863.742 -0.104634 0.00 !Mu3ChX50TRaw[Co1At4Ch2]
+876.032 -0.106155 0.00 !Mu3ChX51TRaw[Co1At4Ch3]
+885.987 -0.107364 0.00 !Mu3ChX52TRaw[Co1At4Ch4]
+886.077 -0.107368 0.00 !Mu3ChX53TRaw[Co1At4Ch5]
+882.141 -0.106861 0.00 !Mu3ChX54TRaw[Co1At4Ch6]
+894.386 -0.108382 0.00 !Mu3ChX55TRaw[Co1At4Ch7]
+897.465 -0.108733 0.00 !Mu3ChX56TRaw[Co1At4Ch8]
+894.9 -0.10844 0.00 !Mu3ChX57TRaw[Co1At4Ch9]
+900.295 -0.10908 0.00 !Mu3ChX58TRaw[Co1At4Ch10]
+895.793 -0.108538 0.00 !Mu3ChX59TRaw[Co1At4Ch11]
+895.372 -0.10849 0.00 !Mu3ChX60TRaw[Co1At4Ch12]
+902.176 -0.109312 0.00 !Mu3ChX61TRaw[Co1At4Ch13]
+903.192 -0.109445 0.00 !Mu3ChX62TRaw[Co1At4Ch14]
+889.712 -0.107803 0.00 !Mu3ChX63TRaw[Co1At4Ch15]
+921.265 -0.108862 0.00 !Mu3ChX64TRaw[Co1At4Ch16]
+981.944 -0.119126 0.00 !Mu3ChX65TRaw[Co2At1Ch1]
+987.148 -0.119789 0.00 !Mu3ChX66TRaw[Co2At1Ch2]
+987.456 -0.119851 0.00 !Mu3ChX67TRaw[Co2At1Ch3]
+1003.28 -0.121753 0.00 !Mu3ChX68TRaw[Co2At1Ch4]
+1003.82 -0.121824 0.00 !Mu3ChX69TRaw[Co2At1Ch5]
+1000.66 -0.121446 0.00 !Mu3ChX70TRaw[Co2At1Ch6]
+1004.35 -0.121893 0.00 !Mu3ChX71TRaw[Co2At1Ch7]
+1008.06 -0.122347 0.00 !Mu3ChX72TRaw[Co2At1Ch8]
+1004.22 -0.121883 0.00 !Mu3ChX73TRaw[Co2At1Ch9]
+1011.08 -0.122684 0.00 !Mu3ChX74TRaw[Co2At1Ch10]
+1019.46 -0.123722 0.00 !Mu3ChX75TRaw[Co2At1Ch11]
+1029.58 -0.124938 0.00 !Mu3ChX76TRaw[Co2At1Ch12]
+1011.08 -0.122709 0.00 !Mu3ChX77TRaw[Co2At1Ch13]
+1010.81 -0.12265 0.00 !Mu3ChX78TRaw[Co2At1Ch14]
+1022.22 -0.124061 0.00 !Mu3ChX79TRaw[Co2At1Ch15]
+1391.94 -0.123313 0.00 !Mu3ChX80TRaw[Co2At1Ch16]
+939.257 -0.11381 0.00 !Mu3ChX81TRaw[Co2At2Ch1]
+945.066 -0.114558 0.00 !Mu3ChX82TRaw[Co2At2Ch2]
+948.6 -0.114986 0.00 !Mu3ChX83TRaw[Co2At2Ch3]
+947.122 -0.114804 0.00 !Mu3ChX84TRaw[Co2At2Ch4]
+961.987 -0.116619 0.00 !Mu3ChX85TRaw[Co2At2Ch5]
+964.59 -0.11693 0.00 !Mu3ChX86TRaw[Co2At2Ch6]
+959.397 -0.116299 0.00 !Mu3ChX87TRaw[Co2At2Ch7]
+964.355 -0.116863 0.00 !Mu3ChX88TRaw[Co2At2Ch8]
+975.002 -0.118161 0.00 !Mu3ChX89TRaw[Co2At2Ch9]
+971.077 -0.117687 0.00 !Mu3ChX90TRaw[Co2At2Ch10]
+976.04 -0.118304 0.00 !Mu3ChX91TRaw[Co2At2Ch11]
+983.975 -0.119256 0.00 !Mu3ChX92TRaw[Co2At2Ch12]
+983.617 -0.119241 0.00 !Mu3ChX93TRaw[Co2At2Ch13]
+983.301 -0.119186 0.00 !Mu3ChX94TRaw[Co2At2Ch14]
+980.734 -0.118879 0.00 !Mu3ChX95TRaw[Co2At2Ch15]
+975.837 -0.118278 0.00 !Mu3ChX96TRaw[Co2At2Ch16]
+858.761 -0.104124 0.00 !Mu3ChX97TRaw[Co2At3Ch1]
+863.527 -0.104728 0.00 !Mu3ChX98TRaw[Co2At3Ch2]
+863.719 -0.104753 0.00 !Mu3ChX99TRaw[Co2At3Ch3]
+869.797 -0.105492 0.00 !Mu3ChX100TRaw[Co2At3Ch4]
+879.582 -0.106693 0.00 !Mu3ChX101TRaw[Co2At3Ch5]
+874.971 -0.10614 0.00 !Mu3ChX102TRaw[Co2At3Ch6]
+879.706 -0.106708 0.00 !Mu3ChX103TRaw[Co2At3Ch7]
+878.738 -0.106567 0.00 !Mu3ChX104TRaw[Co2At3Ch8]
+887.854 -0.107671 0.00 !Mu3ChX105TRaw[Co2At3Ch9]
+892.385 -0.108216 0.00 !Mu3ChX106TRaw[Co2At3Ch10]
+884.225 -0.107225 0.00 !Mu3ChX107TRaw[Co2At3Ch11]
+894.981 -0.108561 0.00 !Mu3ChX108TRaw[Co2At3Ch12]
+895.51 -0.108609 0.00 !Mu3ChX109TRaw[Co2At3Ch13]
+891.851 -0.108191 0.00 !Mu3ChX110TRaw[Co2At3Ch14]
+901.356 -0.109337 0.00 !Mu3ChX111TRaw[Co2At3Ch15]
+900.727 -0.108709 0.00 !Mu3ChX112TRaw[Co2At3Ch16]
+855.952 -0.103629 0.00 !Mu3ChX113TRaw[Co2At4Ch1]
+865.7 -0.10481 0.00 !Mu3ChX114TRaw[Co2At4Ch2]
+866.161 -0.1049 0.00 !Mu3ChX115TRaw[Co2At4Ch3]
+872.362 -0.105647 0.00 !Mu3ChX116TRaw[Co2At4Ch4]
+1490.13 -0.126949 0.00 !Mu3ChX117TRaw[Co2At4Ch5]
+876.561 -0.106145 0.00 !Mu3ChX118TRaw[Co2At4Ch6]
+884.075 -0.107055 0.00 !Mu3ChX119TRaw[Co2At4Ch7]
+881.54 -0.10675 0.00 !Mu3ChX120TRaw[Co2At4Ch8]
+884.679 -0.107137 0.00 !Mu3ChX121TRaw[Co2At4Ch9]
+888.637 -0.107599 0.00 !Mu3ChX122TRaw[Co2At4Ch10]
+884.493 -0.107093 0.00 !Mu3ChX123TRaw[Co2At4Ch11]
+893.964 -0.108252 0.00 !Mu3ChX124TRaw[Co2At4Ch12]
+888.064 -0.107522 0.00 !Mu3ChX125TRaw[Co2At4Ch13]
+894.536 -0.108336 0.00 !Mu3ChX126TRaw[Co2At4Ch14]
+882.088 -0.106793 0.00 !Mu3ChX127TRaw[Co2At4Ch15]
+890.98 -0.107896 0.00 !Mu3ChX128TRaw[Co2At4Ch16]
+916.716 -0.11121 0.00 !Mu3ChY1TRaw[Co3At1Ch1]
+924.259 -0.112154 0.00 !Mu3ChY2TRaw[Co3At1Ch2]
+933.256 -0.113241 0.00 !Mu3ChY3TRaw[Co3At1Ch3]
+942.953 -0.114409 0.00 !Mu3ChY4TRaw[Co3At1Ch4]
+939.901 -0.114032 0.00 !Mu3ChY5TRaw[Co3At1Ch5]
+947.878 -0.114994 0.00 !Mu3ChY6TRaw[Co3At1Ch6]
+952.484 -0.115552 0.00 !Mu3ChY7TRaw[Co3At1Ch7]
+952.713 -0.115546 0.00 !Mu3ChY8TRaw[Co3At1Ch8]
+960.463 -0.116506 0.00 !Mu3ChY9TRaw[Co3At1Ch9]
+964.543 -0.117006 0.00 !Mu3ChY10TRaw[Co3At1Ch10]
+966.84 -0.117251 0.00 !Mu3ChY11TRaw[Co3At1Ch11]
+965.68 -0.117093 0.00 !Mu3ChY12TRaw[Co3At1Ch12]
+975.182 -0.118272 0.00 !Mu3ChY13TRaw[Co3At1Ch13]
+981.614 -0.119048 0.00 !Mu3ChY14TRaw[Co3At1Ch14]
+973.869 -0.118075 0.00 !Mu3ChY15TRaw[Co3At1Ch15]
+981.076 -0.118941 0.00 !Mu3ChY16TRaw[Co3At1Ch16]
+967.206 -0.117174 0.00 !Mu3ChY17TRaw[Co3At2Ch1]
+980.188 -0.118815 0.00 !Mu3ChY18TRaw[Co3At2Ch2]
+981.134 -0.118931 0.00 !Mu3ChY19TRaw[Co3At2Ch3]
+986.719 -0.119638 0.00 !Mu3ChY20TRaw[Co3At2Ch4]
+992.386 -0.12034 0.00 !Mu3ChY21TRaw[Co3At2Ch5]
+1002.21 -0.121551 0.00 !Mu3ChY22TRaw[Co3At2Ch6]
+997.474 -0.120998 0.00 !Mu3ChY23TRaw[Co3At2Ch7]
+992.008 -0.120321 0.00 !Mu3ChY24TRaw[Co3At2Ch8]
+998.021 -0.121073 0.00 !Mu3ChY25TRaw[Co3At2Ch9]
+1004.15 -0.121839 0.00 !Mu3ChY26TRaw[Co3At2Ch10]
+1004.31 -0.121856 0.00 !Mu3ChY27TRaw[Co3At2Ch11]
+1010.69 -0.122649 0.00 !Mu3ChY28TRaw[Co3At2Ch12]
+1013.79 -0.12302 0.00 !Mu3ChY29TRaw[Co3At2Ch13]
+1002.56 -0.121668 0.00 !Mu3ChY30TRaw[Co3At2Ch14]
+1011.72 -0.122794 0.00 !Mu3ChY31TRaw[Co3At2Ch15]
+1012.54 -0.122927 0.00 !Mu3ChY32TRaw[Co3At2Ch16]
+868.546 -0.105446 0.00 !Mu3ChY33TRaw[Co3At3Ch1]
+865.415 -0.105092 0.00 !Mu3ChY34TRaw[Co3At3Ch2]
+870.615 -0.10573 0.00 !Mu3ChY35TRaw[Co3At3Ch3]
+867.501 -0.105345 0.00 !Mu3ChY36TRaw[Co3At3Ch4]
+879.085 -0.106744 0.00 !Mu3ChY37TRaw[Co3At3Ch5]
+878.372 -0.106654 0.00 !Mu3ChY38TRaw[Co3At3Ch6]
+883.834 -0.107294 0.00 !Mu3ChY39TRaw[Co3At3Ch7]
+892.468 -0.108361 0.00 !Mu3ChY40TRaw[Co3At3Ch8]
+889.652 -0.10799 0.00 !Mu3ChY41TRaw[Co3At3Ch9]
+893.582 -0.10846 0.00 !Mu3ChY42TRaw[Co3At3Ch10]
+902.982 -0.109593 0.00 !Mu3ChY43TRaw[Co3At3Ch11]
+899.542 -0.109195 0.00 !Mu3ChY44TRaw[Co3At3Ch12]
+894.786 -0.108568 0.00 !Mu3ChY45TRaw[Co3At3Ch13]
+904.997 -0.109804 0.00 !Mu3ChY46TRaw[Co3At3Ch14]
+908.733 -0.110263 0.00 !Mu3ChY47TRaw[Co3At3Ch15]
+901.41 -0.109382 0.00 !Mu3ChY48TRaw[Co3At3Ch16]
+874.853 -0.105997 0.00 !Mu3ChY49TRaw[Co3At4Ch1]
+880.713 -0.106772 0.00 !Mu3ChY50TRaw[Co3At4Ch2]
+892.705 -0.108217 0.00 !Mu3ChY51TRaw[Co3At4Ch3]
+895.218 -0.108527 0.00 !Mu3ChY52TRaw[Co3At4Ch4]
+889.343 -0.107825 0.00 !Mu3ChY53TRaw[Co3At4Ch5]
+897.932 -0.108862 0.00 !Mu3ChY54TRaw[Co3At4Ch6]
+902.448 -0.109456 0.00 !Mu3ChY55TRaw[Co3At4Ch7]
+908.367 -0.110152 0.00 !Mu3ChY56TRaw[Co3At4Ch8]
+912.74 -0.110718 0.00 !Mu3ChY57TRaw[Co3At4Ch9]
+911.519 -0.11056 0.00 !Mu3ChY58TRaw[Co3At4Ch10]
+920.413 -0.111636 0.00 !Mu3ChY59TRaw[Co3At4Ch11]
+906.185 -0.109934 0.00 !Mu3ChY60TRaw[Co3At4Ch12]
+919.759 -0.111581 0.00 !Mu3ChY61TRaw[Co3At4Ch13]
+920.555 -0.111694 0.00 !Mu3ChY62TRaw[Co3At4Ch14]
+915.715 -0.1111 0.00 !Mu3ChY63TRaw[Co3At4Ch15]
+918.454 -0.11144 0.00 !Mu3ChY64TRaw[Co3At4Ch16]
+901.244 -0.109216 0.00 !Mu3ChY65TRaw[Co4At1Ch1]
+907.742 -0.110026 0.00 !Mu3ChY66TRaw[Co4At1Ch2]
+908.334 -0.110106 0.00 !Mu3ChY67TRaw[Co4At1Ch3]
+916.785 -0.11114 0.00 !Mu3ChY68TRaw[Co4At1Ch4]
+928.178 -0.11252 0.00 !Mu3ChY69TRaw[Co4At1Ch5]
+936.612 -0.113544 0.00 !Mu3ChY70TRaw[Co4At1Ch6]
+929.327 -0.112672 0.00 !Mu3ChY71TRaw[Co4At1Ch7]
+927.889 -0.112491 0.00 !Mu3ChY72TRaw[Co4At1Ch8]
+944.015 -0.114462 0.00 !Mu3ChY73TRaw[Co4At1Ch9]
+936.5 -0.11354 0.00 !Mu3ChY74TRaw[Co4At1Ch10]
+952.669 -0.115517 0.00 !Mu3ChY75TRaw[Co4At1Ch11]
+949.121 -0.115086 0.00 !Mu3ChY76TRaw[Co4At1Ch12]
+961.66 -0.116618 0.00 !Mu3ChY77TRaw[Co4At1Ch13]
+950.324 -0.115232 0.00 !Mu3ChY78TRaw[Co4At1Ch14]
+943.005 -0.114343 0.00 !Mu3ChY79TRaw[Co4At1Ch15]
+948.05 -0.114947 0.00 !Mu3ChY80TRaw[Co4At1Ch16]
+967.814 -0.117288 0.00 !Mu3ChY81TRaw[Co4At2Ch1]
+979.35 -0.118727 0.00 !Mu3ChY82TRaw[Co4At2Ch2]
+985.387 -0.119474 0.00 !Mu3ChY83TRaw[Co4At2Ch3]
+988.884 -0.119909 0.00 !Mu3ChY84TRaw[Co4At2Ch4]
+990.688 -0.120116 0.00 !Mu3ChY85TRaw[Co4At2Ch5]
+997.728 -0.120975 0.00 !Mu3ChY86TRaw[Co4At2Ch6]
+994.598 -0.120606 0.00 !Mu3ChY87TRaw[Co4At2Ch7]
+996.045 -0.12076 0.00 !Mu3ChY88TRaw[Co4At2Ch8]
+1000.77 -0.121336 0.00 !Mu3ChY89TRaw[Co4At2Ch9]
+1011.99 -0.122713 0.00 !Mu3ChY90TRaw[Co4At2Ch10]
+1015.05 -0.1231 0.00 !Mu3ChY91TRaw[Co4At2Ch11]
+1003.4 -0.121678 0.00 !Mu3ChY92TRaw[Co4At2Ch12]
+1011.74 -0.122697 0.00 !Mu3ChY93TRaw[Co4At2Ch13]
+1014.96 -0.123087 0.00 !Mu3ChY94TRaw[Co4At2Ch14]
+1007.34 -0.122144 0.00 !Mu3ChY95TRaw[Co4At2Ch15]
+1008.36 -0.122274 0.00 !Mu3ChY96TRaw[Co4At2Ch16]
+871.329 -0.105573 0.00 !Mu3ChY97TRaw[Co4At3Ch1]
+868.142 -0.105224 0.00 !Mu3ChY98TRaw[Co4At3Ch2]
+872.865 -0.105791 0.00 !Mu3ChY99TRaw[Co4At3Ch3]
+882.085 -0.106904 0.00 !Mu3ChY100TRaw[Co4At3Ch4]
+889.159 -0.107789 0.00 !Mu3ChY101TRaw[Co4At3Ch5]
+888.956 -0.107742 0.00 !Mu3ChY102TRaw[Co4At3Ch6]
+899.906 -0.109085 0.00 !Mu3ChY103TRaw[Co4At3Ch7]
+892.033 -0.108126 0.00 !Mu3ChY104TRaw[Co4At3Ch8]
+899.207 -0.108999 0.00 !Mu3ChY105TRaw[Co4At3Ch9]
+891.613 -0.108068 0.00 !Mu3ChY106TRaw[Co4At3Ch10]
+891.136 -0.108006 0.00 !Mu3ChY107TRaw[Co4At3Ch11]
+900.207 -0.109125 0.00 !Mu3ChY108TRaw[Co4At3Ch12]
+902.911 -0.109439 0.00 !Mu3ChY109TRaw[Co4At3Ch13]
+900.692 -0.109168 0.00 !Mu3ChY110TRaw[Co4At3Ch14]
+896.133 -0.108625 0.00 !Mu3ChY111TRaw[Co4At3Ch15]
+902.665 -0.109416 0.00 !Mu3ChY112TRaw[Co4At3Ch16]
+888.587 -0.107554 0.00 !Mu3ChY113TRaw[Co4At4Ch1]
+895.918 -0.108473 0.00 !Mu3ChY114TRaw[Co4At4Ch2]
+898.97 -0.108848 0.00 !Mu3ChY115TRaw[Co4At4Ch3]
+894.394 -0.108292 0.00 !Mu3ChY116TRaw[Co4At4Ch4]
+902.574 -0.109288 0.00 !Mu3ChY117TRaw[Co4At4Ch5]
+907.964 -0.109943 0.00 !Mu3ChY118TRaw[Co4At4Ch6]
+906.564 -0.109765 0.00 !Mu3ChY119TRaw[Co4At4Ch7]
+905.798 -0.109672 0.00 !Mu3ChY120TRaw[Co4At4Ch8]
+912.702 -0.110512 0.00 !Mu3ChY121TRaw[Co4At4Ch9]
+921.335 -0.111588 0.00 !Mu3ChY122TRaw[Co4At4Ch10]
+924.085 -0.111915 0.00 !Mu3ChY123TRaw[Co4At4Ch11]
+906.564 -0.109772 0.00 !Mu3ChY124TRaw[Co4At4Ch12]
+910.838 -0.11029 0.00 !Mu3ChY125TRaw[Co4At4Ch13]
+916.176 -0.110947 0.00 !Mu3ChY126TRaw[Co4At4Ch14]
+917.763 -0.111116 0.00 !Mu3ChY127TRaw[Co4At4Ch15]
+925.891 -0.112131 0.00 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Calibration.txt b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Calibration.txt
new file mode 100755
index 0000000000000000000000000000000000000000..f9c8fd827ecc027383447ddca282737a0c4ec402
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Calibration.txt
@@ -0,0 +1,21 @@
+CalibrationFilePath
+  calibration/double_alpha_Ra222_R271-279/M0_E/Cal_Str_X_E_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_E/Cal_Str_X_E_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_E/Cal_Str_X_E_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_E/Cal_Str_X_E_MM3.cal
+
+
+  calibration/double_alpha_Ra222_R271-279/M0_E/Cal_Str_Y_E_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_E/Cal_Str_Y_E_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_E/Cal_Str_Y_E_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_E/Cal_Str_Y_E_MM3.cal
+
+  calibration/double_alpha_Ra222_R271-279/M0_T/Cal_Str_X_T_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_T/Cal_Str_X_T_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_T/Cal_Str_X_T_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_T/Cal_Str_X_T_MM3.cal
+
+  calibration/double_alpha_Ra222_R271-279/M0_T/Cal_Str_Y_T_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_T/Cal_Str_Y_T_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_T/Cal_Str_Y_T_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_T/Cal_Str_Y_T_MM3.cal
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/.root_hist b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..09dfc734ee013cb276530bcb513b3517ad5ad8e5
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/.root_hist
@@ -0,0 +1,97 @@
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.qqqqqqqqqqq
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.x ExtractRawHisto_E_Pedestals.C
+.L ExtractRawHisto_E_Pedestals.C+
+we 
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+q
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+.x ExtractRawHisto_E_Pedestals.C
+.q
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+.q
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.ls
+.q
+TFile *_file0 = TFile::Open("Histograms/run_1_pedestals_RawMUST2Histos.root")
+new TBrowser
+.q
+.L ExtractRawHisto_E.C+
+.q
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_7_pedestals","MUST2")
+ew TBrowser
+new TBrowser
+.q
+.L EnergyCalibrator.C+
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+ls
+.ls
+.q
+ExtractRawHistos("run_9","MUST2")
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_9","MUST2")
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_19","MUST2")
+ls
+.ls
+.L EnergyCalibrator+
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q 
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/.root_hist b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..c37259c1cc98a5df9fb1857211ba438c6f0f0080
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/.root_hist
@@ -0,0 +1,5 @@
+new TBrowser
+q
+.q
+new TBrowser
+.q
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..59533f1c2519edd5aac99e291c7b1ce2b6b0e9a5
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
@@ -0,0 +1,147 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 1
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c52a1498c48fb030cff766a611dcc953c32ec35f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E -61.4176 0.00749736
+MUSETT_T0_DSSD_X1_E -61.7332 0.00753786
+MUSETT_T0_DSSD_X2_E -61.3896 0.00749605
+MUSETT_T0_DSSD_X3_E -61.2903 0.00748199
+MUSETT_T0_DSSD_X4_E -61.431 0.00750212
+MUSETT_T0_DSSD_X5_E -61.326 0.00748787
+MUSETT_T0_DSSD_X6_E -61.0441 0.00745321
+MUSETT_T0_DSSD_X7_E -60.8321 0.00742833
+MUSETT_T0_DSSD_X8_E -60.8507 0.00742788
+MUSETT_T0_DSSD_X9_E -62.3428 0.0076116
+MUSETT_T0_DSSD_X10_E -62.0533 0.00757613
+MUSETT_T0_DSSD_X11_E -61.706 0.00753425
+MUSETT_T0_DSSD_X12_E -61.8146 0.00754892
+MUSETT_T0_DSSD_X13_E -61.4548 0.00750366
+MUSETT_T0_DSSD_X14_E -62.103 0.00758278
+MUSETT_T0_DSSD_X15_E -61.0209 0.00745076
+MUSETT_T0_DSSD_X16_E -62.6789 0.0076538
+MUSETT_T0_DSSD_X17_E -62.1645 0.00759548
+MUSETT_T0_DSSD_X18_E -61.9167 0.00755979
+MUSETT_T0_DSSD_X19_E -61.9572 0.00756687
+MUSETT_T0_DSSD_X20_E -63.6131 0.00776601
+MUSETT_T0_DSSD_X21_E -62.1196 0.00758583
+MUSETT_T0_DSSD_X22_E -62.0121 0.00757122
+MUSETT_T0_DSSD_X23_E -62.3166 0.00761046
+MUSETT_T0_DSSD_X24_E -62.4782 0.00762937
+MUSETT_T0_DSSD_X25_E -62.5948 0.00764366
+MUSETT_T0_DSSD_X26_E -62.8291 0.00767039
+MUSETT_T0_DSSD_X27_E -62.1445 0.00759002
+MUSETT_T0_DSSD_X28_E -62.7578 0.00766138
+MUSETT_T0_DSSD_X29_E -62.2734 0.00760445
+MUSETT_T0_DSSD_X30_E -63.1287 0.00770747
+MUSETT_T0_DSSD_X31_E -62.259 0.007602
+MUSETT_T0_DSSD_X32_E -56.1626 0.0068604
+MUSETT_T0_DSSD_X33_E -56.4142 0.00688949
+MUSETT_T0_DSSD_X34_E -55.0958 0.00672999
+MUSETT_T0_DSSD_X35_E -55.8984 0.00682813
+MUSETT_T0_DSSD_X36_E -55.6715 0.00679777
+MUSETT_T0_DSSD_X37_E -54.9391 0.00671187
+MUSETT_T0_DSSD_X38_E -55.4656 0.00677524
+MUSETT_T0_DSSD_X39_E -55.2745 0.00675192
+MUSETT_T0_DSSD_X40_E -55.9564 0.00683237
+MUSETT_T0_DSSD_X41_E -55.6024 0.00678835
+MUSETT_T0_DSSD_X42_E -55.7768 0.00681221
+MUSETT_T0_DSSD_X43_E -55.9848 0.00683639
+MUSETT_T0_DSSD_X44_E -56.0388 0.00684277
+MUSETT_T0_DSSD_X45_E -100.746 0.0122904
+MUSETT_T0_DSSD_X46_E -99.399 0.0121408
+MUSETT_T0_DSSD_X47_E -55.6563 0.00679819
+MUSETT_T0_DSSD_X48_E -57.4429 0.0070159
+MUSETT_T0_DSSD_X49_E -57.5152 0.00702414
+MUSETT_T0_DSSD_X50_E -57.487 0.00701839
+MUSETT_T0_DSSD_X51_E -56.9208 0.00695135
+MUSETT_T0_DSSD_X52_E -58.0107 0.00708119
+MUSETT_T0_DSSD_X53_E -56.9193 0.00694986
+MUSETT_T0_DSSD_X54_E -57.4367 0.00701404
+MUSETT_T0_DSSD_X55_E -57.1583 0.00697967
+MUSETT_T0_DSSD_X56_E -58.0046 0.00708458
+MUSETT_T0_DSSD_X57_E -57.3176 0.00699982
+MUSETT_T0_DSSD_X58_E -57.134 0.00697341
+MUSETT_T0_DSSD_X59_E -57.4375 0.00701403
+MUSETT_T0_DSSD_X60_E -56.9962 0.00695735
+MUSETT_T0_DSSD_X61_E -57.5621 0.00702929
+MUSETT_T0_DSSD_X62_E -57.6273 0.00703611
+MUSETT_T0_DSSD_X63_E -57.8094 0.00705862
+MUSETT_T0_DSSD_X64_E -62.5694 0.00764554
+MUSETT_T0_DSSD_X65_E -62.7765 0.00767141
+MUSETT_T0_DSSD_X66_E -62.6601 0.00765656
+MUSETT_T0_DSSD_X67_E -63.0717 0.00770888
+MUSETT_T0_DSSD_X68_E -62.275 0.00761087
+MUSETT_T0_DSSD_X69_E -62.7076 0.00766829
+MUSETT_T0_DSSD_X70_E -63.2742 0.00772849
+MUSETT_T0_DSSD_X71_E -61.7578 0.00755677
+MUSETT_T0_DSSD_X72_E -62.8436 0.00768583
+MUSETT_T0_DSSD_X73_E -61.1488 0.00748861
+MUSETT_T0_DSSD_X74_E -62.5469 0.00765229
+MUSETT_T0_DSSD_X75_E -62.2494 0.00761832
+MUSETT_T0_DSSD_X76_E -61.9556 0.00758282
+MUSETT_T0_DSSD_X77_E -61.7742 0.00756394
+MUSETT_T0_DSSD_X78_E -62.631 0.00766349
+MUSETT_T0_DSSD_X79_E -62.5657 0.00766188
+MUSETT_T0_DSSD_X80_E -59.317 0.00726294
+MUSETT_T0_DSSD_X81_E -58.8177 0.0072054
+MUSETT_T0_DSSD_X82_E -59.0886 0.00723829
+MUSETT_T0_DSSD_X83_E -59.6477 0.00730317
+MUSETT_T0_DSSD_X84_E -59.8536 0.00732352
+MUSETT_T0_DSSD_X85_E -60.4055 0.00739355
+MUSETT_T0_DSSD_X86_E -60.3646 0.00738021
+MUSETT_T0_DSSD_X87_E -60.8435 0.00744227
+MUSETT_T0_DSSD_X88_E -60.8501 0.00743939
+MUSETT_T0_DSSD_X89_E -60.5184 0.00739918
+MUSETT_T0_DSSD_X90_E -60.6657 0.00741709
+MUSETT_T0_DSSD_X91_E -61.8484 0.00756021
+MUSETT_T0_DSSD_X92_E -61.0175 0.00745665
+MUSETT_T0_DSSD_X93_E -59.9938 0.00733538
+MUSETT_T0_DSSD_X94_E -60.5911 0.00740502
+MUSETT_T0_DSSD_X95_E -61.5567 0.00752034
+MUSETT_T0_DSSD_X96_E -56.9853 0.00695607
+MUSETT_T0_DSSD_X97_E -56.805 0.00694169
+MUSETT_T0_DSSD_X98_E -57.0758 0.00697401
+MUSETT_T0_DSSD_X99_E -56.7956 0.00693482
+MUSETT_T0_DSSD_X100_E -57.7593 0.0070528
+MUSETT_T0_DSSD_X101_E -57.6971 0.00704109
+MUSETT_T0_DSSD_X102_E -57.1712 0.0069833
+MUSETT_T0_DSSD_X103_E -56.5661 0.00691177
+MUSETT_T0_DSSD_X104_E -56.8282 0.00694184
+MUSETT_T0_DSSD_X105_E -57.3391 0.00700475
+MUSETT_T0_DSSD_X106_E -56.6671 0.00692293
+MUSETT_T0_DSSD_X107_E -56.8853 0.00695107
+MUSETT_T0_DSSD_X108_E -57.9765 0.00708265
+MUSETT_T0_DSSD_X109_E -57.388 0.00701232
+MUSETT_T0_DSSD_X110_E -56.5401 0.00691485
+MUSETT_T0_DSSD_X111_E -57.0413 0.00697142
+MUSETT_T0_DSSD_X112_E -58.286 0.00712194
+MUSETT_T0_DSSD_X113_E -58.5104 0.00714936
+MUSETT_T0_DSSD_X114_E -57.7679 0.00705962
+MUSETT_T0_DSSD_X115_E -57.9796 0.00708441
+MUSETT_T0_DSSD_X116_E -57.4801 0.00702354
+MUSETT_T0_DSSD_X117_E -57.6419 0.00704336
+MUSETT_T0_DSSD_X118_E -57.9462 0.00707592
+MUSETT_T0_DSSD_X119_E -58.1659 0.00710274
+MUSETT_T0_DSSD_X120_E -57.9026 0.00707413
+MUSETT_T0_DSSD_X121_E -58.1983 0.00710762
+MUSETT_T0_DSSD_X122_E -57.9833 0.00708219
+MUSETT_T0_DSSD_X123_E -59.0073 0.00720479
+MUSETT_T0_DSSD_X124_E -57.4047 0.00701145
+MUSETT_T0_DSSD_X125_E -57.9162 0.00707506
+MUSETT_T0_DSSD_X126_E -58.0998 0.00709359
+MUSETT_T0_DSSD_X127_E -58.9229 0.00719802
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..f8ae648fae141c1fc741a6261a14a3bd269603fa
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E_Zero_Dispersion 0.102913
+MUSETT_T0_DSSD_X1_E_Zero_Dispersion 2.24487
+MUSETT_T0_DSSD_X2_E_Zero_Dispersion 2.40801
+MUSETT_T0_DSSD_X3_E_Zero_Dispersion 0.290031
+MUSETT_T0_DSSD_X4_E_Zero_Dispersion 3.51494
+MUSETT_T0_DSSD_X5_E_Zero_Dispersion 1.95333
+MUSETT_T0_DSSD_X6_E_Zero_Dispersion 1.68842
+MUSETT_T0_DSSD_X7_E_Zero_Dispersion 2.79134
+MUSETT_T0_DSSD_X8_E_Zero_Dispersion -0.20541
+MUSETT_T0_DSSD_X9_E_Zero_Dispersion 1.50734
+MUSETT_T0_DSSD_X10_E_Zero_Dispersion 1.37658
+MUSETT_T0_DSSD_X11_E_Zero_Dispersion 1.92986
+MUSETT_T0_DSSD_X12_E_Zero_Dispersion 3.45815
+MUSETT_T0_DSSD_X13_E_Zero_Dispersion 2.02481
+MUSETT_T0_DSSD_X14_E_Zero_Dispersion 1.99584
+MUSETT_T0_DSSD_X15_E_Zero_Dispersion 2.11099
+MUSETT_T0_DSSD_X16_E_Zero_Dispersion 2.73808
+MUSETT_T0_DSSD_X17_E_Zero_Dispersion 7.59976
+MUSETT_T0_DSSD_X18_E_Zero_Dispersion 1.73776
+MUSETT_T0_DSSD_X19_E_Zero_Dispersion 4.04507
+MUSETT_T0_DSSD_X20_E_Zero_Dispersion 0.773641
+MUSETT_T0_DSSD_X21_E_Zero_Dispersion 3.09557
+MUSETT_T0_DSSD_X22_E_Zero_Dispersion 1.50144
+MUSETT_T0_DSSD_X23_E_Zero_Dispersion 3.71503
+MUSETT_T0_DSSD_X24_E_Zero_Dispersion 2.83617
+MUSETT_T0_DSSD_X25_E_Zero_Dispersion 2.88454
+MUSETT_T0_DSSD_X26_E_Zero_Dispersion 0.86892
+MUSETT_T0_DSSD_X27_E_Zero_Dispersion 4.34091
+MUSETT_T0_DSSD_X28_E_Zero_Dispersion 0.546165
+MUSETT_T0_DSSD_X29_E_Zero_Dispersion 2.92398
+MUSETT_T0_DSSD_X30_E_Zero_Dispersion 1.41443
+MUSETT_T0_DSSD_X31_E_Zero_Dispersion 2.18272
+MUSETT_T0_DSSD_X32_E_Zero_Dispersion 5.50955
+MUSETT_T0_DSSD_X33_E_Zero_Dispersion 3.54479
+MUSETT_T0_DSSD_X34_E_Zero_Dispersion 5.38916
+MUSETT_T0_DSSD_X35_E_Zero_Dispersion 5.51265
+MUSETT_T0_DSSD_X36_E_Zero_Dispersion 2.32903
+MUSETT_T0_DSSD_X37_E_Zero_Dispersion 6.63815
+MUSETT_T0_DSSD_X38_E_Zero_Dispersion 5.48844
+MUSETT_T0_DSSD_X39_E_Zero_Dispersion 5.51694
+MUSETT_T0_DSSD_X40_E_Zero_Dispersion 2.10885
+MUSETT_T0_DSSD_X41_E_Zero_Dispersion 1.14006
+MUSETT_T0_DSSD_X42_E_Zero_Dispersion 4.22353
+MUSETT_T0_DSSD_X43_E_Zero_Dispersion 2.76535
+MUSETT_T0_DSSD_X44_E_Zero_Dispersion 2.5117
+MUSETT_T0_DSSD_X45_E_Zero_Dispersion -5.0981
+MUSETT_T0_DSSD_X46_E_Zero_Dispersion 4.81708
+MUSETT_T0_DSSD_X47_E_Zero_Dispersion 5.06188
+MUSETT_T0_DSSD_X48_E_Zero_Dispersion 4.46775
+MUSETT_T0_DSSD_X49_E_Zero_Dispersion 3.77405
+MUSETT_T0_DSSD_X50_E_Zero_Dispersion 1.09247
+MUSETT_T0_DSSD_X51_E_Zero_Dispersion 3.54488
+MUSETT_T0_DSSD_X52_E_Zero_Dispersion -0.232348
+MUSETT_T0_DSSD_X53_E_Zero_Dispersion 2.00614
+MUSETT_T0_DSSD_X54_E_Zero_Dispersion 3.18011
+MUSETT_T0_DSSD_X55_E_Zero_Dispersion 2.74231
+MUSETT_T0_DSSD_X56_E_Zero_Dispersion 4.55659
+MUSETT_T0_DSSD_X57_E_Zero_Dispersion 3.56342
+MUSETT_T0_DSSD_X58_E_Zero_Dispersion -1.12628
+MUSETT_T0_DSSD_X59_E_Zero_Dispersion 3.05041
+MUSETT_T0_DSSD_X60_E_Zero_Dispersion -0.231608
+MUSETT_T0_DSSD_X61_E_Zero_Dispersion 3.1073
+MUSETT_T0_DSSD_X62_E_Zero_Dispersion 1.78151
+MUSETT_T0_DSSD_X63_E_Zero_Dispersion 2.0984
+MUSETT_T0_DSSD_X64_E_Zero_Dispersion 8.21535
+MUSETT_T0_DSSD_X65_E_Zero_Dispersion 8.81345
+MUSETT_T0_DSSD_X66_E_Zero_Dispersion 8.15405
+MUSETT_T0_DSSD_X67_E_Zero_Dispersion 10.302
+MUSETT_T0_DSSD_X68_E_Zero_Dispersion 9.61918
+MUSETT_T0_DSSD_X69_E_Zero_Dispersion 14.4759
+MUSETT_T0_DSSD_X70_E_Zero_Dispersion 4.87172
+MUSETT_T0_DSSD_X71_E_Zero_Dispersion 19.4779
+MUSETT_T0_DSSD_X72_E_Zero_Dispersion 15.4516
+MUSETT_T0_DSSD_X73_E_Zero_Dispersion 26.4327
+MUSETT_T0_DSSD_X74_E_Zero_Dispersion 18.3719
+MUSETT_T0_DSSD_X75_E_Zero_Dispersion 20.993
+MUSETT_T0_DSSD_X76_E_Zero_Dispersion 21.4767
+MUSETT_T0_DSSD_X77_E_Zero_Dispersion 25.0765
+MUSETT_T0_DSSD_X78_E_Zero_Dispersion 19.3561
+MUSETT_T0_DSSD_X79_E_Zero_Dispersion 26.1513
+MUSETT_T0_DSSD_X80_E_Zero_Dispersion 24.9254
+MUSETT_T0_DSSD_X81_E_Zero_Dispersion 28.9995
+MUSETT_T0_DSSD_X82_E_Zero_Dispersion 28.6547
+MUSETT_T0_DSSD_X83_E_Zero_Dispersion 24.6368
+MUSETT_T0_DSSD_X84_E_Zero_Dispersion 19.2
+MUSETT_T0_DSSD_X85_E_Zero_Dispersion 21.9724
+MUSETT_T0_DSSD_X86_E_Zero_Dispersion 12.7551
+MUSETT_T0_DSSD_X87_E_Zero_Dispersion 16.6039
+MUSETT_T0_DSSD_X88_E_Zero_Dispersion 12.5542
+MUSETT_T0_DSSD_X89_E_Zero_Dispersion 12.9298
+MUSETT_T0_DSSD_X90_E_Zero_Dispersion 12.8183
+MUSETT_T0_DSSD_X91_E_Zero_Dispersion 11.2252
+MUSETT_T0_DSSD_X92_E_Zero_Dispersion 9.04167
+MUSETT_T0_DSSD_X93_E_Zero_Dispersion 13.3112
+MUSETT_T0_DSSD_X94_E_Zero_Dispersion 9.56023
+MUSETT_T0_DSSD_X95_E_Zero_Dispersion 6.64401
+MUSETT_T0_DSSD_X96_E_Zero_Dispersion -0.169952
+MUSETT_T0_DSSD_X97_E_Zero_Dispersion 8.82478
+MUSETT_T0_DSSD_X98_E_Zero_Dispersion 7.93764
+MUSETT_T0_DSSD_X99_E_Zero_Dispersion 2.09013
+MUSETT_T0_DSSD_X100_E_Zero_Dispersion 2.4381
+MUSETT_T0_DSSD_X101_E_Zero_Dispersion -2.35007
+MUSETT_T0_DSSD_X102_E_Zero_Dispersion 5.15856
+MUSETT_T0_DSSD_X103_E_Zero_Dispersion 7.96765
+MUSETT_T0_DSSD_X104_E_Zero_Dispersion 5.67829
+MUSETT_T0_DSSD_X105_E_Zero_Dispersion 6.25581
+MUSETT_T0_DSSD_X106_E_Zero_Dispersion 6.57618
+MUSETT_T0_DSSD_X107_E_Zero_Dispersion 8.33115
+MUSETT_T0_DSSD_X108_E_Zero_Dispersion 6.29503
+MUSETT_T0_DSSD_X109_E_Zero_Dispersion 8.12487
+MUSETT_T0_DSSD_X110_E_Zero_Dispersion 15.3838
+MUSETT_T0_DSSD_X111_E_Zero_Dispersion 9.83817
+MUSETT_T0_DSSD_X112_E_Zero_Dispersion 7.99507
+MUSETT_T0_DSSD_X113_E_Zero_Dispersion 7.99615
+MUSETT_T0_DSSD_X114_E_Zero_Dispersion 9.13852
+MUSETT_T0_DSSD_X115_E_Zero_Dispersion 7.88735
+MUSETT_T0_DSSD_X116_E_Zero_Dispersion 8.07551
+MUSETT_T0_DSSD_X117_E_Zero_Dispersion 8.13797
+MUSETT_T0_DSSD_X118_E_Zero_Dispersion 2.79139
+MUSETT_T0_DSSD_X119_E_Zero_Dispersion 2.77742
+MUSETT_T0_DSSD_X120_E_Zero_Dispersion 6.88387
+MUSETT_T0_DSSD_X121_E_Zero_Dispersion 3.85057
+MUSETT_T0_DSSD_X122_E_Zero_Dispersion 4.80636
+MUSETT_T0_DSSD_X123_E_Zero_Dispersion 1.98461
+MUSETT_T0_DSSD_X124_E_Zero_Dispersion 4.72226
+MUSETT_T0_DSSD_X125_E_Zero_Dispersion 6.02878
+MUSETT_T0_DSSD_X126_E_Zero_Dispersion 1.53415
+MUSETT_T0_DSSD_X127_E_Zero_Dispersion 6.01497
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/latex/double_alpha_run_0274_X_MM0_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/latex/double_alpha_run_0274_X_MM0_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..0f0b8b95b2be370ed23cf83a5c8c58f0417f5f55
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/latex/double_alpha_run_0274_X_MM0_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  0
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 0 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM0_E/latex/pictures/Telescope0Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.10885
+
+Sigma fit sigma: 0.331137
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/peaks/Cal_Str_X_E_MM0.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/peaks/Cal_Str_X_E_MM0.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..7777df8b98e27e5e884c065c80d8f14990e2144d
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E -62.3477 0.007611
+MUSETT_T1_DSSD_X1_E -62.308 0.00760306
+MUSETT_T1_DSSD_X2_E -62.1697 0.0075878
+MUSETT_T1_DSSD_X3_E -62.0173 0.00756982
+MUSETT_T1_DSSD_X4_E -61.3648 0.00749166
+MUSETT_T1_DSSD_X5_E -61.5997 0.00751643
+MUSETT_T1_DSSD_X6_E -62.4787 0.00762243
+MUSETT_T1_DSSD_X7_E -61.3185 0.00748472
+MUSETT_T1_DSSD_X8_E -61.1328 0.00746245
+MUSETT_T1_DSSD_X9_E -61.4827 0.00750394
+MUSETT_T1_DSSD_X10_E -61.8118 0.0075418
+MUSETT_T1_DSSD_X11_E -61.9258 0.00755463
+MUSETT_T1_DSSD_X12_E -61.8767 0.00755134
+MUSETT_T1_DSSD_X13_E -61.3156 0.0074846
+MUSETT_T1_DSSD_X14_E -61.3699 0.00748612
+MUSETT_T1_DSSD_X15_E -62.1632 0.00758373
+MUSETT_T1_DSSD_X16_E -62.9211 0.00767431
+MUSETT_T1_DSSD_X17_E -62.0562 0.00756866
+MUSETT_T1_DSSD_X18_E -62.0386 0.00757545
+MUSETT_T1_DSSD_X19_E -62.2875 0.0075986
+MUSETT_T1_DSSD_X20_E -62.8822 0.00767441
+MUSETT_T1_DSSD_X21_E -62.3374 0.00760465
+MUSETT_T1_DSSD_X22_E -62.852 0.00767109
+MUSETT_T1_DSSD_X23_E -62.8192 0.00765988
+MUSETT_T1_DSSD_X24_E -62.4176 0.00761481
+MUSETT_T1_DSSD_X25_E -62.2038 0.00758803
+MUSETT_T1_DSSD_X26_E -62.0181 0.00756821
+MUSETT_T1_DSSD_X27_E -61.9276 0.00755372
+MUSETT_T1_DSSD_X28_E -61.6034 0.00751835
+MUSETT_T1_DSSD_X29_E -62.9333 0.00767748
+MUSETT_T1_DSSD_X30_E -62.1268 0.0075773
+MUSETT_T1_DSSD_X31_E -63.1585 0.00770313
+MUSETT_T1_DSSD_X32_E -58.3057 0.00711587
+MUSETT_T1_DSSD_X33_E -58.4042 0.00712871
+MUSETT_T1_DSSD_X34_E -58.4884 0.00713562
+MUSETT_T1_DSSD_X35_E -57.4835 0.00702506
+MUSETT_T1_DSSD_X36_E -58.3917 0.00712193
+MUSETT_T1_DSSD_X37_E -58.5648 0.00714415
+MUSETT_T1_DSSD_X38_E -58.5559 0.00713839
+MUSETT_T1_DSSD_X39_E -58.5374 0.00714562
+MUSETT_T1_DSSD_X40_E -58.7158 0.00715871
+MUSETT_T1_DSSD_X41_E -58.8359 0.00717997
+MUSETT_T1_DSSD_X42_E -58.2602 0.00710755
+MUSETT_T1_DSSD_X43_E -57.8239 0.00706527
+MUSETT_T1_DSSD_X44_E -58.7242 0.00716462
+MUSETT_T1_DSSD_X45_E -59.6459 0.00727511
+MUSETT_T1_DSSD_X46_E -59.1603 0.00721451
+MUSETT_T1_DSSD_X47_E -58.6549 0.00715909
+MUSETT_T1_DSSD_X48_E -57.9484 0.00706941
+MUSETT_T1_DSSD_X49_E -58.7332 0.00716424
+MUSETT_T1_DSSD_X50_E -58.1769 0.00709735
+MUSETT_T1_DSSD_X51_E -57.9451 0.00706791
+MUSETT_T1_DSSD_X52_E -58.1687 0.00709592
+MUSETT_T1_DSSD_X53_E -57.9405 0.00707027
+MUSETT_T1_DSSD_X54_E -58.0919 0.00708762
+MUSETT_T1_DSSD_X55_E -58.0252 0.00707798
+MUSETT_T1_DSSD_X56_E -58.1604 0.00709681
+MUSETT_T1_DSSD_X57_E -57.9484 0.00706999
+MUSETT_T1_DSSD_X58_E -58.6075 0.00715036
+MUSETT_T1_DSSD_X59_E -57.6713 0.00703735
+MUSETT_T1_DSSD_X60_E -57.8203 0.00705456
+MUSETT_T1_DSSD_X61_E -58.3158 0.00711494
+MUSETT_T1_DSSD_X62_E -58.225 0.00710301
+MUSETT_T1_DSSD_X63_E -58.3159 0.00711583
+MUSETT_T1_DSSD_X64_E -60.9382 0.00743605
+MUSETT_T1_DSSD_X65_E -61.7124 0.00752921
+MUSETT_T1_DSSD_X66_E -61.2888 0.00748085
+MUSETT_T1_DSSD_X67_E -61.849 0.00754516
+MUSETT_T1_DSSD_X68_E -61.6144 0.00752229
+MUSETT_T1_DSSD_X69_E -61.4359 0.00749578
+MUSETT_T1_DSSD_X70_E -62.0725 0.00756872
+MUSETT_T1_DSSD_X71_E -61.9649 0.00756182
+MUSETT_T1_DSSD_X72_E -61.4025 0.00749204
+MUSETT_T1_DSSD_X73_E -62.3351 0.0076103
+MUSETT_T1_DSSD_X74_E -61.716 0.00753373
+MUSETT_T1_DSSD_X75_E -61.8091 0.00754583
+MUSETT_T1_DSSD_X76_E -61.6917 0.00752919
+MUSETT_T1_DSSD_X77_E -61.6932 0.00752907
+MUSETT_T1_DSSD_X78_E -61.7762 0.00753336
+MUSETT_T1_DSSD_X79_E -61.6882 0.00753087
+MUSETT_T1_DSSD_X80_E -63.4393 0.0077416
+MUSETT_T1_DSSD_X81_E -63.5227 0.00775487
+MUSETT_T1_DSSD_X82_E -64.1587 0.00782973
+MUSETT_T1_DSSD_X83_E -63.9945 0.0078081
+MUSETT_T1_DSSD_X84_E -64.0395 0.00781725
+MUSETT_T1_DSSD_X85_E -63.6515 0.00777089
+MUSETT_T1_DSSD_X86_E -64.4594 0.00786175
+MUSETT_T1_DSSD_X87_E -64.6224 0.0078816
+MUSETT_T1_DSSD_X88_E -63.8054 0.00779141
+MUSETT_T1_DSSD_X89_E -64.3273 0.00785003
+MUSETT_T1_DSSD_X90_E -63.2969 0.0077277
+MUSETT_T1_DSSD_X91_E -63.3398 0.00773073
+MUSETT_T1_DSSD_X92_E -64.83 0.00790919
+MUSETT_T1_DSSD_X93_E -63.8665 0.00779592
+MUSETT_T1_DSSD_X94_E -63.4522 0.0077484
+MUSETT_T1_DSSD_X95_E -63.846 0.00778696
+MUSETT_T1_DSSD_X96_E -56.5424 0.00689651
+MUSETT_T1_DSSD_X97_E -56.7469 0.00692393
+MUSETT_T1_DSSD_X98_E -56.7961 0.00693011
+MUSETT_T1_DSSD_X99_E -56.5307 0.00689674
+MUSETT_T1_DSSD_X100_E -56.647 0.0069118
+MUSETT_T1_DSSD_X101_E -57.1825 0.00697855
+MUSETT_T1_DSSD_X102_E -57.4464 0.00700859
+MUSETT_T1_DSSD_X103_E -56.52 0.00689815
+MUSETT_T1_DSSD_X104_E -56.9595 0.00694911
+MUSETT_T1_DSSD_X105_E -56.9963 0.00695535
+MUSETT_T1_DSSD_X106_E -57.9167 0.0070665
+MUSETT_T1_DSSD_X107_E -57.7395 0.00704685
+MUSETT_T1_DSSD_X108_E -57.738 0.00704522
+MUSETT_T1_DSSD_X109_E -57.4812 0.00701462
+MUSETT_T1_DSSD_X110_E -57.7292 0.00704441
+MUSETT_T1_DSSD_X111_E -58.0147 0.00707895
+MUSETT_T1_DSSD_X112_E -57.13 0.00697333
+MUSETT_T1_DSSD_X113_E -57.2102 0.00698216
+MUSETT_T1_DSSD_X114_E -56.8331 0.0069354
+MUSETT_T1_DSSD_X115_E -57.7562 0.00704746
+MUSETT_T1_DSSD_X116_E -57.2371 0.00698564
+MUSETT_T1_DSSD_X117_E -57.2535 0.00698716
+MUSETT_T1_DSSD_X118_E -56.4116 0.00688587
+MUSETT_T1_DSSD_X119_E -58.4293 0.00712899
+MUSETT_T1_DSSD_X120_E -57.5313 0.00701926
+MUSETT_T1_DSSD_X121_E -57.8937 0.00706324
+MUSETT_T1_DSSD_X122_E -57.779 0.00705032
+MUSETT_T1_DSSD_X123_E -57.6016 0.00702717
+MUSETT_T1_DSSD_X124_E -57.8107 0.00705219
+MUSETT_T1_DSSD_X125_E -57.7972 0.00705126
+MUSETT_T1_DSSD_X126_E -56.9888 0.00695535
+MUSETT_T1_DSSD_X127_E -57.9332 0.00706948
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..9c5f44ef381e031fcd2a0e76e310f1b3a2df8192
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E_Zero_Dispersion 0.207675
+MUSETT_T1_DSSD_X1_E_Zero_Dispersion -3.12166
+MUSETT_T1_DSSD_X2_E_Zero_Dispersion -1.37277
+MUSETT_T1_DSSD_X3_E_Zero_Dispersion -0.696181
+MUSETT_T1_DSSD_X4_E_Zero_Dispersion 0.922503
+MUSETT_T1_DSSD_X5_E_Zero_Dispersion -3.34158
+MUSETT_T1_DSSD_X6_E_Zero_Dispersion -4.69115
+MUSETT_T1_DSSD_X7_E_Zero_Dispersion -0.496055
+MUSETT_T1_DSSD_X8_E_Zero_Dispersion -0.0470192
+MUSETT_T1_DSSD_X9_E_Zero_Dispersion -1.38881
+MUSETT_T1_DSSD_X10_E_Zero_Dispersion -3.90049
+MUSETT_T1_DSSD_X11_E_Zero_Dispersion -5.07207
+MUSETT_T1_DSSD_X12_E_Zero_Dispersion -2.14227
+MUSETT_T1_DSSD_X13_E_Zero_Dispersion -0.234495
+MUSETT_T1_DSSD_X14_E_Zero_Dispersion -5.82493
+MUSETT_T1_DSSD_X15_E_Zero_Dispersion -4.92261
+MUSETT_T1_DSSD_X16_E_Zero_Dispersion -6.92733
+MUSETT_T1_DSSD_X17_E_Zero_Dispersion -7.09341
+MUSETT_T1_DSSD_X18_E_Zero_Dispersion 2.56607
+MUSETT_T1_DSSD_X19_E_Zero_Dispersion -5.23495
+MUSETT_T1_DSSD_X20_E_Zero_Dispersion -1.75695
+MUSETT_T1_DSSD_X21_E_Zero_Dispersion -5.26724
+MUSETT_T1_DSSD_X22_E_Zero_Dispersion -1.36292
+MUSETT_T1_DSSD_X23_E_Zero_Dispersion -9.07008
+MUSETT_T1_DSSD_X24_E_Zero_Dispersion -4.87091
+MUSETT_T1_DSSD_X25_E_Zero_Dispersion -5.62481
+MUSETT_T1_DSSD_X26_E_Zero_Dispersion -2.54779
+MUSETT_T1_DSSD_X27_E_Zero_Dispersion -6.29276
+MUSETT_T1_DSSD_X28_E_Zero_Dispersion -1.73424
+MUSETT_T1_DSSD_X29_E_Zero_Dispersion -5.12994
+MUSETT_T1_DSSD_X30_E_Zero_Dispersion -7.07016
+MUSETT_T1_DSSD_X31_E_Zero_Dispersion -7.06883
+MUSETT_T1_DSSD_X32_E_Zero_Dispersion -1.75746
+MUSETT_T1_DSSD_X33_E_Zero_Dispersion -0.825512
+MUSETT_T1_DSSD_X34_E_Zero_Dispersion -4.68256
+MUSETT_T1_DSSD_X35_E_Zero_Dispersion 9.36896
+MUSETT_T1_DSSD_X36_E_Zero_Dispersion -6.86266
+MUSETT_T1_DSSD_X37_E_Zero_Dispersion -5.58357
+MUSETT_T1_DSSD_X38_E_Zero_Dispersion -10.959
+MUSETT_T1_DSSD_X39_E_Zero_Dispersion -0.0687966
+MUSETT_T1_DSSD_X40_E_Zero_Dispersion -9.99784
+MUSETT_T1_DSSD_X41_E_Zero_Dispersion -2.44016
+MUSETT_T1_DSSD_X42_E_Zero_Dispersion -4.94577
+MUSETT_T1_DSSD_X43_E_Zero_Dispersion 7.75454
+MUSETT_T1_DSSD_X44_E_Zero_Dispersion -4.41858
+MUSETT_T1_DSSD_X45_E_Zero_Dispersion -6.63503
+MUSETT_T1_DSSD_X46_E_Zero_Dispersion -8.18599
+MUSETT_T1_DSSD_X47_E_Zero_Dispersion -1.05895
+MUSETT_T1_DSSD_X48_E_Zero_Dispersion -5.06197
+MUSETT_T1_DSSD_X49_E_Zero_Dispersion -6.10946
+MUSETT_T1_DSSD_X50_E_Zero_Dispersion -4.98572
+MUSETT_T1_DSSD_X51_E_Zero_Dispersion -6.33386
+MUSETT_T1_DSSD_X52_E_Zero_Dispersion -5.48155
+MUSETT_T1_DSSD_X53_E_Zero_Dispersion -2.95043
+MUSETT_T1_DSSD_X54_E_Zero_Dispersion -4.24495
+MUSETT_T1_DSSD_X55_E_Zero_Dispersion -5.98882
+MUSETT_T1_DSSD_X56_E_Zero_Dispersion -3.2979
+MUSETT_T1_DSSD_X57_E_Zero_Dispersion -4.38577
+MUSETT_T1_DSSD_X58_E_Zero_Dispersion -4.43741
+MUSETT_T1_DSSD_X59_E_Zero_Dispersion -3.03098
+MUSETT_T1_DSSD_X60_E_Zero_Dispersion -4.15964
+MUSETT_T1_DSSD_X61_E_Zero_Dispersion -4.25378
+MUSETT_T1_DSSD_X62_E_Zero_Dispersion -5.22603
+MUSETT_T1_DSSD_X63_E_Zero_Dispersion -3.23753
+MUSETT_T1_DSSD_X64_E_Zero_Dispersion -2.97709
+MUSETT_T1_DSSD_X65_E_Zero_Dispersion -4.39933
+MUSETT_T1_DSSD_X66_E_Zero_Dispersion -0.765858
+MUSETT_T1_DSSD_X67_E_Zero_Dispersion -5.17521
+MUSETT_T1_DSSD_X68_E_Zero_Dispersion 1.08472
+MUSETT_T1_DSSD_X69_E_Zero_Dispersion -4.06467
+MUSETT_T1_DSSD_X70_E_Zero_Dispersion -9.18942
+MUSETT_T1_DSSD_X71_E_Zero_Dispersion -2.43993
+MUSETT_T1_DSSD_X72_E_Zero_Dispersion -3.6973
+MUSETT_T1_DSSD_X73_E_Zero_Dispersion 1.11852
+MUSETT_T1_DSSD_X74_E_Zero_Dispersion 0.0432011
+MUSETT_T1_DSSD_X75_E_Zero_Dispersion 0.838378
+MUSETT_T1_DSSD_X76_E_Zero_Dispersion -1.66996
+MUSETT_T1_DSSD_X77_E_Zero_Dispersion -1.99084
+MUSETT_T1_DSSD_X78_E_Zero_Dispersion -8.34532
+MUSETT_T1_DSSD_X79_E_Zero_Dispersion 0.627745
+MUSETT_T1_DSSD_X80_E_Zero_Dispersion -2.60163
+MUSETT_T1_DSSD_X81_E_Zero_Dispersion 0.662357
+MUSETT_T1_DSSD_X82_E_Zero_Dispersion -2.24635
+MUSETT_T1_DSSD_X83_E_Zero_Dispersion -3.90974
+MUSETT_T1_DSSD_X84_E_Zero_Dispersion -0.0795075
+MUSETT_T1_DSSD_X85_E_Zero_Dispersion 0.988812
+MUSETT_T1_DSSD_X86_E_Zero_Dispersion -7.12063
+MUSETT_T1_DSSD_X87_E_Zero_Dispersion -7.15203
+MUSETT_T1_DSSD_X88_E_Zero_Dispersion 2.79429
+MUSETT_T1_DSSD_X89_E_Zero_Dispersion -2.5303
+MUSETT_T1_DSSD_X90_E_Zero_Dispersion 1.09268
+MUSETT_T1_DSSD_X91_E_Zero_Dispersion -1.25755
+MUSETT_T1_DSSD_X92_E_Zero_Dispersion -4.78431
+MUSETT_T1_DSSD_X93_E_Zero_Dispersion -0.296209
+MUSETT_T1_DSSD_X94_E_Zero_Dispersion 2.9226
+MUSETT_T1_DSSD_X95_E_Zero_Dispersion -7.09196
+MUSETT_T1_DSSD_X96_E_Zero_Dispersion -6.70346
+MUSETT_T1_DSSD_X97_E_Zero_Dispersion -3.77243
+MUSETT_T1_DSSD_X98_E_Zero_Dispersion -3.55
+MUSETT_T1_DSSD_X99_E_Zero_Dispersion -4.7306
+MUSETT_T1_DSSD_X100_E_Zero_Dispersion -3.70206
+MUSETT_T1_DSSD_X101_E_Zero_Dispersion -2.03397
+MUSETT_T1_DSSD_X102_E_Zero_Dispersion -4.56362
+MUSETT_T1_DSSD_X103_E_Zero_Dispersion -1.50341
+MUSETT_T1_DSSD_X104_E_Zero_Dispersion -4.65139
+MUSETT_T1_DSSD_X105_E_Zero_Dispersion -2.58858
+MUSETT_T1_DSSD_X106_E_Zero_Dispersion -3.95507
+MUSETT_T1_DSSD_X107_E_Zero_Dispersion -1.66488
+MUSETT_T1_DSSD_X108_E_Zero_Dispersion -3.35039
+MUSETT_T1_DSSD_X109_E_Zero_Dispersion -2.48819
+MUSETT_T1_DSSD_X110_E_Zero_Dispersion -3.0314
+MUSETT_T1_DSSD_X111_E_Zero_Dispersion -3.38841
+MUSETT_T1_DSSD_X112_E_Zero_Dispersion -0.641331
+MUSETT_T1_DSSD_X113_E_Zero_Dispersion -1.76825
+MUSETT_T1_DSSD_X114_E_Zero_Dispersion -2.63496
+MUSETT_T1_DSSD_X115_E_Zero_Dispersion -3.31573
+MUSETT_T1_DSSD_X116_E_Zero_Dispersion -1.54376
+MUSETT_T1_DSSD_X117_E_Zero_Dispersion -2.102
+MUSETT_T1_DSSD_X118_E_Zero_Dispersion -0.370533
+MUSETT_T1_DSSD_X119_E_Zero_Dispersion -4.01352
+MUSETT_T1_DSSD_X120_E_Zero_Dispersion -4.20468
+MUSETT_T1_DSSD_X121_E_Zero_Dispersion -4.47258
+MUSETT_T1_DSSD_X122_E_Zero_Dispersion -3.22979
+MUSETT_T1_DSSD_X123_E_Zero_Dispersion -4.98259
+MUSETT_T1_DSSD_X124_E_Zero_Dispersion -5.54173
+MUSETT_T1_DSSD_X125_E_Zero_Dispersion -4.71733
+MUSETT_T1_DSSD_X126_E_Zero_Dispersion -1.51981
+MUSETT_T1_DSSD_X127_E_Zero_Dispersion -2.8288
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/latex/double_alpha_run_0274_X_MM1_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/latex/double_alpha_run_0274_X_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..a4bb552c18f9bd933b86bda8de52a06f4ece6722
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/latex/double_alpha_run_0274_X_MM1_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.04129
+
+Sigma fit sigma: 0.593411
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..92a5f108ce207d52baeea155c51fab4a6653745a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E -62.5366 0.00763956
+MUSETT_T2_DSSD_X1_E -62.6099 0.00763888
+MUSETT_T2_DSSD_X2_E -62.823 0.00766708
+MUSETT_T2_DSSD_X3_E -62.257 0.00759549
+MUSETT_T2_DSSD_X4_E -62.0597 0.00757342
+MUSETT_T2_DSSD_X5_E -62.5307 0.00763323
+MUSETT_T2_DSSD_X6_E -62.3807 0.00761398
+MUSETT_T2_DSSD_X7_E -62.9375 0.0076789
+MUSETT_T2_DSSD_X8_E -62.9224 0.00767896
+MUSETT_T2_DSSD_X9_E -62.1614 0.00758679
+MUSETT_T2_DSSD_X10_E -62.4417 0.00762037
+MUSETT_T2_DSSD_X11_E -62.4249 0.0076183
+MUSETT_T2_DSSD_X12_E -62.5094 0.00763316
+MUSETT_T2_DSSD_X13_E -62.5081 0.0076287
+MUSETT_T2_DSSD_X14_E -62.5989 0.00763997
+MUSETT_T2_DSSD_X15_E -63.3009 0.00773126
+MUSETT_T2_DSSD_X16_E -62.2936 0.00760052
+MUSETT_T2_DSSD_X17_E -61.672 0.00752836
+MUSETT_T2_DSSD_X18_E -61.6376 0.00752157
+MUSETT_T2_DSSD_X19_E -61.5695 0.00751193
+MUSETT_T2_DSSD_X20_E -61.5665 0.0075144
+MUSETT_T2_DSSD_X21_E -62.4688 0.00762107
+MUSETT_T2_DSSD_X22_E -62.1354 0.00758375
+MUSETT_T2_DSSD_X23_E -61.8155 0.00754313
+MUSETT_T2_DSSD_X24_E -61.4306 0.00749834
+MUSETT_T2_DSSD_X25_E -61.9883 0.00756594
+MUSETT_T2_DSSD_X26_E -61.8156 0.00754772
+MUSETT_T2_DSSD_X27_E -61.7444 0.00753541
+MUSETT_T2_DSSD_X28_E -61.7334 0.00753213
+MUSETT_T2_DSSD_X29_E -61.4228 0.00749322
+MUSETT_T2_DSSD_X30_E -62.1977 0.00759248
+MUSETT_T2_DSSD_X31_E -61.6447 0.00752122
+MUSETT_T2_DSSD_X32_E -58.935 0.00719311
+MUSETT_T2_DSSD_X33_E -58.1147 0.00709182
+MUSETT_T2_DSSD_X34_E -58.5596 0.007148
+MUSETT_T2_DSSD_X35_E -58.5961 0.00714764
+MUSETT_T2_DSSD_X36_E -58.3105 0.00711447
+MUSETT_T2_DSSD_X37_E -58.0487 0.00708602
+MUSETT_T2_DSSD_X38_E -58.1502 0.0070988
+MUSETT_T2_DSSD_X39_E -57.7857 0.00705326
+MUSETT_T2_DSSD_X40_E -57.4608 0.00701359
+MUSETT_T2_DSSD_X41_E -58.5375 0.00714392
+MUSETT_T2_DSSD_X42_E -59.0118 0.0071977
+MUSETT_T2_DSSD_X43_E -58.2242 0.00710688
+MUSETT_T2_DSSD_X44_E -58.3352 0.00712354
+MUSETT_T2_DSSD_X45_E -58.3114 0.00712245
+MUSETT_T2_DSSD_X46_E -58.4466 0.00713226
+MUSETT_T2_DSSD_X47_E -58.5104 0.00713991
+MUSETT_T2_DSSD_X48_E -57.8607 0.00705903
+MUSETT_T2_DSSD_X49_E -57.1886 0.00697896
+MUSETT_T2_DSSD_X50_E -58.0113 0.00708101
+MUSETT_T2_DSSD_X51_E -57.7279 0.00704713
+MUSETT_T2_DSSD_X52_E -57.4556 0.00701364
+MUSETT_T2_DSSD_X53_E -57.1649 0.00697518
+MUSETT_T2_DSSD_X54_E -57.8984 0.00706521
+MUSETT_T2_DSSD_X55_E -57.63 0.00703352
+MUSETT_T2_DSSD_X56_E -58.0258 0.00707928
+MUSETT_T2_DSSD_X57_E -57.4642 0.00701702
+MUSETT_T2_DSSD_X58_E -58.132 0.00709186
+MUSETT_T2_DSSD_X59_E -57.1561 0.00697346
+MUSETT_T2_DSSD_X60_E -57.6188 0.00702948
+MUSETT_T2_DSSD_X61_E -56.6504 0.00691451
+MUSETT_T2_DSSD_X62_E -57.3571 0.00700169
+MUSETT_T2_DSSD_X63_E -57.7666 0.00705029
+MUSETT_T2_DSSD_X64_E -63.3097 0.00772569
+MUSETT_T2_DSSD_X65_E -64.9047 0.0079212
+MUSETT_T2_DSSD_X66_E -64.0703 0.0078168
+MUSETT_T2_DSSD_X67_E -63.7681 0.00778096
+MUSETT_T2_DSSD_X68_E 7.39123 0.851608
+MUSETT_T2_DSSD_X69_E -64.3545 0.00785369
+MUSETT_T2_DSSD_X70_E -63.7255 0.00777554
+MUSETT_T2_DSSD_X71_E -63.4889 0.00774685
+MUSETT_T2_DSSD_X72_E -63.5163 0.00774852
+MUSETT_T2_DSSD_X73_E -63.1974 0.00771009
+MUSETT_T2_DSSD_X74_E -63.9963 0.00780668
+MUSETT_T2_DSSD_X75_E -63.7405 0.0077769
+MUSETT_T2_DSSD_X76_E -63.7719 0.00778584
+MUSETT_T2_DSSD_X77_E -63.7168 0.00777911
+MUSETT_T2_DSSD_X78_E -63.5337 0.00775379
+MUSETT_T2_DSSD_X79_E -63.3949 0.00773821
+MUSETT_T2_DSSD_X80_E -63.4539 0.0077397
+MUSETT_T2_DSSD_X81_E -63.4815 0.00774493
+MUSETT_T2_DSSD_X82_E -63.2698 0.00771876
+MUSETT_T2_DSSD_X83_E -63.3573 0.00772905
+MUSETT_T2_DSSD_X84_E -64.1625 0.00782699
+MUSETT_T2_DSSD_X85_E -64.0116 0.00780771
+MUSETT_T2_DSSD_X86_E -64.0772 0.00781423
+MUSETT_T2_DSSD_X87_E -64.0599 0.00781546
+MUSETT_T2_DSSD_X88_E -63.251 0.00771539
+MUSETT_T2_DSSD_X89_E -63.6831 0.00777027
+MUSETT_T2_DSSD_X90_E -63.3564 0.00773379
+MUSETT_T2_DSSD_X91_E -63.787 0.00778135
+MUSETT_T2_DSSD_X92_E -63.3512 0.00773017
+MUSETT_T2_DSSD_X93_E -64.7604 0.00790006
+MUSETT_T2_DSSD_X94_E -64.0132 0.00780733
+MUSETT_T2_DSSD_X95_E -63.8549 0.00778867
+MUSETT_T2_DSSD_X96_E -59.0282 0.00720288
+MUSETT_T2_DSSD_X97_E -58.4936 0.00713811
+MUSETT_T2_DSSD_X98_E -58.4712 0.0071327
+MUSETT_T2_DSSD_X99_E -58.4859 0.00713993
+MUSETT_T2_DSSD_X100_E -59.3214 0.00723965
+MUSETT_T2_DSSD_X101_E -59.3697 0.00724433
+MUSETT_T2_DSSD_X102_E -58.6853 0.00716351
+MUSETT_T2_DSSD_X103_E -59.023 0.00720218
+MUSETT_T2_DSSD_X104_E -58.8858 0.00718901
+MUSETT_T2_DSSD_X105_E -59.0599 0.00720698
+MUSETT_T2_DSSD_X106_E -58.7339 0.00716764
+MUSETT_T2_DSSD_X107_E -59.1791 0.00721879
+MUSETT_T2_DSSD_X108_E -58.8627 0.00718154
+MUSETT_T2_DSSD_X109_E -60.4055 0.00737306
+MUSETT_T2_DSSD_X110_E -59.0673 0.00720612
+MUSETT_T2_DSSD_X111_E -58.3996 0.00712943
+MUSETT_T2_DSSD_X112_E -59.447 0.00725194
+MUSETT_T2_DSSD_X113_E -59.4328 0.00725039
+MUSETT_T2_DSSD_X114_E -59.8168 0.00729738
+MUSETT_T2_DSSD_X115_E -59.2689 0.0072298
+MUSETT_T2_DSSD_X116_E -59.8131 0.00729784
+MUSETT_T2_DSSD_X117_E -59.9981 0.00732151
+MUSETT_T2_DSSD_X118_E -59.5137 0.00726182
+MUSETT_T2_DSSD_X119_E -59.3863 0.00724848
+MUSETT_T2_DSSD_X120_E -59.9252 0.0073143
+MUSETT_T2_DSSD_X121_E -58.732 0.00716699
+MUSETT_T2_DSSD_X122_E -59.0078 0.00720103
+MUSETT_T2_DSSD_X123_E -59.1915 0.00722497
+MUSETT_T2_DSSD_X124_E -59.0543 0.00720394
+MUSETT_T2_DSSD_X125_E -58.9019 0.00718805
+MUSETT_T2_DSSD_X126_E -59.23 0.00722589
+MUSETT_T2_DSSD_X127_E -59.1923 0.00722341
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..2175ed5a50a587cb99ab47570237c02d69c6fcaa
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E_Zero_Dispersion 6.11899
+MUSETT_T2_DSSD_X1_E_Zero_Dispersion -4.20805
+MUSETT_T2_DSSD_X2_E_Zero_Dispersion -1.86488
+MUSETT_T2_DSSD_X3_E_Zero_Dispersion -4.58098
+MUSETT_T2_DSSD_X4_E_Zero_Dispersion -2.40657
+MUSETT_T2_DSSD_X5_E_Zero_Dispersion 0.0920053
+MUSETT_T2_DSSD_X6_E_Zero_Dispersion -0.910839
+MUSETT_T2_DSSD_X7_E_Zero_Dispersion -4.15844
+MUSETT_T2_DSSD_X8_E_Zero_Dispersion -2.1288
+MUSETT_T2_DSSD_X9_E_Zero_Dispersion -1.37912
+MUSETT_T2_DSSD_X10_E_Zero_Dispersion -2.05567
+MUSETT_T2_DSSD_X11_E_Zero_Dispersion -2.07325
+MUSETT_T2_DSSD_X12_E_Zero_Dispersion 2.81111
+MUSETT_T2_DSSD_X13_E_Zero_Dispersion -1.80673
+MUSETT_T2_DSSD_X14_E_Zero_Dispersion -1.60517
+MUSETT_T2_DSSD_X15_E_Zero_Dispersion 4.34084
+MUSETT_T2_DSSD_X16_E_Zero_Dispersion -3.96451
+MUSETT_T2_DSSD_X17_E_Zero_Dispersion 0.0445557
+MUSETT_T2_DSSD_X18_E_Zero_Dispersion -2.78144
+MUSETT_T2_DSSD_X19_E_Zero_Dispersion -4.22976
+MUSETT_T2_DSSD_X20_E_Zero_Dispersion -1.13585
+MUSETT_T2_DSSD_X21_E_Zero_Dispersion -4.86085
+MUSETT_T2_DSSD_X22_E_Zero_Dispersion -1.23012
+MUSETT_T2_DSSD_X23_E_Zero_Dispersion -2.93315
+MUSETT_T2_DSSD_X24_E_Zero_Dispersion -0.567119
+MUSETT_T2_DSSD_X25_E_Zero_Dispersion -1.08228
+MUSETT_T2_DSSD_X26_E_Zero_Dispersion 2.03054
+MUSETT_T2_DSSD_X27_E_Zero_Dispersion -1.8977
+MUSETT_T2_DSSD_X28_E_Zero_Dispersion -4.00109
+MUSETT_T2_DSSD_X29_E_Zero_Dispersion -5.10994
+MUSETT_T2_DSSD_X30_E_Zero_Dispersion -0.0205928
+MUSETT_T2_DSSD_X31_E_Zero_Dispersion -4.09755
+MUSETT_T2_DSSD_X32_E_Zero_Dispersion -1.25514
+MUSETT_T2_DSSD_X33_E_Zero_Dispersion -2.61227
+MUSETT_T2_DSSD_X34_E_Zero_Dispersion -0.440474
+MUSETT_T2_DSSD_X35_E_Zero_Dispersion -5.95833
+MUSETT_T2_DSSD_X36_E_Zero_Dispersion -4.04569
+MUSETT_T2_DSSD_X37_E_Zero_Dispersion 0.0077729
+MUSETT_T2_DSSD_X38_E_Zero_Dispersion 0.445825
+MUSETT_T2_DSSD_X39_E_Zero_Dispersion -0.760995
+MUSETT_T2_DSSD_X40_E_Zero_Dispersion -0.779193
+MUSETT_T2_DSSD_X41_E_Zero_Dispersion -2.03756
+MUSETT_T2_DSSD_X42_E_Zero_Dispersion -6.7056
+MUSETT_T2_DSSD_X43_E_Zero_Dispersion -0.653277
+MUSETT_T2_DSSD_X44_E_Zero_Dispersion 2.92757
+MUSETT_T2_DSSD_X45_E_Zero_Dispersion 5.00509
+MUSETT_T2_DSSD_X46_E_Zero_Dispersion -2.68399
+MUSETT_T2_DSSD_X47_E_Zero_Dispersion -2.83135
+MUSETT_T2_DSSD_X48_E_Zero_Dispersion -4.68951
+MUSETT_T2_DSSD_X49_E_Zero_Dispersion -2.42602
+MUSETT_T2_DSSD_X50_E_Zero_Dispersion -0.516333
+MUSETT_T2_DSSD_X51_E_Zero_Dispersion 0.312368
+MUSETT_T2_DSSD_X52_E_Zero_Dispersion 0.0122945
+MUSETT_T2_DSSD_X53_E_Zero_Dispersion -3.47949
+MUSETT_T2_DSSD_X54_E_Zero_Dispersion -2.87002
+MUSETT_T2_DSSD_X55_E_Zero_Dispersion -1.61444
+MUSETT_T2_DSSD_X56_E_Zero_Dispersion -4.5746
+MUSETT_T2_DSSD_X57_E_Zero_Dispersion 2.74437
+MUSETT_T2_DSSD_X58_E_Zero_Dispersion -5.00423
+MUSETT_T2_DSSD_X59_E_Zero_Dispersion -4.23142
+MUSETT_T2_DSSD_X60_E_Zero_Dispersion -4.72474
+MUSETT_T2_DSSD_X61_E_Zero_Dispersion -0.975189
+MUSETT_T2_DSSD_X62_E_Zero_Dispersion 0.109618
+MUSETT_T2_DSSD_X63_E_Zero_Dispersion -1.50696
+MUSETT_T2_DSSD_X64_E_Zero_Dispersion -2.70853
+MUSETT_T2_DSSD_X65_E_Zero_Dispersion -1.80166
+MUSETT_T2_DSSD_X66_E_Zero_Dispersion -4.48537
+MUSETT_T2_DSSD_X67_E_Zero_Dispersion -3.40495
+MUSETT_T2_DSSD_X68_E_Zero_Dispersion 8200.68
+MUSETT_T2_DSSD_X69_E_Zero_Dispersion -2.17963
+MUSETT_T2_DSSD_X70_E_Zero_Dispersion -3.6384
+MUSETT_T2_DSSD_X71_E_Zero_Dispersion -3.43843
+MUSETT_T2_DSSD_X72_E_Zero_Dispersion -5.22173
+MUSETT_T2_DSSD_X73_E_Zero_Dispersion -4.72123
+MUSETT_T2_DSSD_X74_E_Zero_Dispersion -5.63015
+MUSETT_T2_DSSD_X75_E_Zero_Dispersion -4.13665
+MUSETT_T2_DSSD_X76_E_Zero_Dispersion 1.24523
+MUSETT_T2_DSSD_X77_E_Zero_Dispersion 1.23439
+MUSETT_T2_DSSD_X78_E_Zero_Dispersion -1.89727
+MUSETT_T2_DSSD_X79_E_Zero_Dispersion -0.447251
+MUSETT_T2_DSSD_X80_E_Zero_Dispersion -6.49207
+MUSETT_T2_DSSD_X81_E_Zero_Dispersion -4.52581
+MUSETT_T2_DSSD_X82_E_Zero_Dispersion -4.8822
+MUSETT_T2_DSSD_X83_E_Zero_Dispersion -5.2954
+MUSETT_T2_DSSD_X84_E_Zero_Dispersion -5.59878
+MUSETT_T2_DSSD_X85_E_Zero_Dispersion -6.51265
+MUSETT_T2_DSSD_X86_E_Zero_Dispersion -8.06397
+MUSETT_T2_DSSD_X87_E_Zero_Dispersion -4.56011
+MUSETT_T2_DSSD_X88_E_Zero_Dispersion -6.02613
+MUSETT_T2_DSSD_X89_E_Zero_Dispersion -3.74084
+MUSETT_T2_DSSD_X90_E_Zero_Dispersion -0.158172
+MUSETT_T2_DSSD_X91_E_Zero_Dispersion -5.41945
+MUSETT_T2_DSSD_X92_E_Zero_Dispersion -3.32195
+MUSETT_T2_DSSD_X93_E_Zero_Dispersion -5.45422
+MUSETT_T2_DSSD_X94_E_Zero_Dispersion -7.11956
+MUSETT_T2_DSSD_X95_E_Zero_Dispersion -6.43228
+MUSETT_T2_DSSD_X96_E_Zero_Dispersion -3.0892
+MUSETT_T2_DSSD_X97_E_Zero_Dispersion -2.5437
+MUSETT_T2_DSSD_X98_E_Zero_Dispersion -5.63205
+MUSETT_T2_DSSD_X99_E_Zero_Dispersion 0.622242
+MUSETT_T2_DSSD_X100_E_Zero_Dispersion -1.95818
+MUSETT_T2_DSSD_X101_E_Zero_Dispersion -3.3241
+MUSETT_T2_DSSD_X102_E_Zero_Dispersion -0.260072
+MUSETT_T2_DSSD_X103_E_Zero_Dispersion -3.16489
+MUSETT_T2_DSSD_X104_E_Zero_Dispersion 0.907419
+MUSETT_T2_DSSD_X105_E_Zero_Dispersion -2.81874
+MUSETT_T2_DSSD_X106_E_Zero_Dispersion -2.31876
+MUSETT_T2_DSSD_X107_E_Zero_Dispersion -5.91743
+MUSETT_T2_DSSD_X108_E_Zero_Dispersion -4.3861
+MUSETT_T2_DSSD_X109_E_Zero_Dispersion -0.733514
+MUSETT_T2_DSSD_X110_E_Zero_Dispersion -4.8252
+MUSETT_T2_DSSD_X111_E_Zero_Dispersion 0.653802
+MUSETT_T2_DSSD_X112_E_Zero_Dispersion -5.38964
+MUSETT_T2_DSSD_X113_E_Zero_Dispersion -5.18522
+MUSETT_T2_DSSD_X114_E_Zero_Dispersion -5.01951
+MUSETT_T2_DSSD_X115_E_Zero_Dispersion -5.85542
+MUSETT_T2_DSSD_X116_E_Zero_Dispersion -3.99512
+MUSETT_T2_DSSD_X117_E_Zero_Dispersion -2.76824
+MUSETT_T2_DSSD_X118_E_Zero_Dispersion -3.42856
+MUSETT_T2_DSSD_X119_E_Zero_Dispersion -0.924597
+MUSETT_T2_DSSD_X120_E_Zero_Dispersion -0.889406
+MUSETT_T2_DSSD_X121_E_Zero_Dispersion -2.79347
+MUSETT_T2_DSSD_X122_E_Zero_Dispersion -2.34855
+MUSETT_T2_DSSD_X123_E_Zero_Dispersion -0.634432
+MUSETT_T2_DSSD_X124_E_Zero_Dispersion -5.50355
+MUSETT_T2_DSSD_X125_E_Zero_Dispersion -2.4172
+MUSETT_T2_DSSD_X126_E_Zero_Dispersion -4.91707
+MUSETT_T2_DSSD_X127_E_Zero_Dispersion -2.51241
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/latex/double_alpha_run_0274_X_MM2_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/latex/double_alpha_run_0274_X_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..ac2735d3cb8597e3fabac45b3f77c8621519a7f6
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/latex/double_alpha_run_0274_X_MM2_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+68 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.14784
+
+Sigma fit sigma: 0.618476
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..f8e4c59253891d9021ba3560f9481f1d2833aa18
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E -61.7475 0.00754365
+MUSETT_T3_DSSD_X1_E -61.3279 0.00749158
+MUSETT_T3_DSSD_X2_E -61.6596 0.0075318
+MUSETT_T3_DSSD_X3_E -61.7171 0.00753951
+MUSETT_T3_DSSD_X4_E -61.4553 0.00750656
+MUSETT_T3_DSSD_X5_E -61.3762 0.00749656
+MUSETT_T3_DSSD_X6_E -61.5322 0.00751647
+MUSETT_T3_DSSD_X7_E -61.2036 0.0074747
+MUSETT_T3_DSSD_X8_E -61.3418 0.00749155
+MUSETT_T3_DSSD_X9_E -61.3643 0.00749498
+MUSETT_T3_DSSD_X10_E -61.5146 0.00751027
+MUSETT_T3_DSSD_X11_E -62.5512 0.00763887
+MUSETT_T3_DSSD_X12_E -61.3127 0.00748672
+MUSETT_T3_DSSD_X13_E -61.5248 0.00751198
+MUSETT_T3_DSSD_X14_E -61.2067 0.00747599
+MUSETT_T3_DSSD_X15_E -62.199 0.00759553
+MUSETT_T3_DSSD_X16_E -63.291 0.00772834
+MUSETT_T3_DSSD_X17_E -62.6431 0.00764987
+MUSETT_T3_DSSD_X18_E -62.5264 0.00763546
+MUSETT_T3_DSSD_X19_E -62.54 0.00763491
+MUSETT_T3_DSSD_X20_E -62.2248 0.00759793
+MUSETT_T3_DSSD_X21_E -62.5934 0.00764571
+MUSETT_T3_DSSD_X22_E -63.1363 0.00771819
+MUSETT_T3_DSSD_X23_E -63.378 0.00773985
+MUSETT_T3_DSSD_X24_E -62.0995 0.00758736
+MUSETT_T3_DSSD_X25_E -63.1387 0.00770998
+MUSETT_T3_DSSD_X26_E -63.0598 0.00770204
+MUSETT_T3_DSSD_X27_E -62.7893 0.00766932
+MUSETT_T3_DSSD_X28_E -62.9673 0.00769104
+MUSETT_T3_DSSD_X29_E -62.9568 0.00769116
+MUSETT_T3_DSSD_X30_E -63.9027 0.00780659
+MUSETT_T3_DSSD_X31_E -62.8794 0.00768443
+MUSETT_T3_DSSD_X32_E -58.1027 0.0071075
+MUSETT_T3_DSSD_X33_E -57.9939 0.00709412
+MUSETT_T3_DSSD_X34_E -56.9563 0.00696692
+MUSETT_T3_DSSD_X35_E -57.2356 0.00699925
+MUSETT_T3_DSSD_X36_E -57.8181 0.00706923
+MUSETT_T3_DSSD_X37_E -58.0886 0.00710147
+MUSETT_T3_DSSD_X38_E -58.2613 0.00712383
+MUSETT_T3_DSSD_X39_E -57.8152 0.00706775
+MUSETT_T3_DSSD_X40_E -58.4241 0.00714095
+MUSETT_T3_DSSD_X41_E -57.8933 0.0070794
+MUSETT_T3_DSSD_X42_E -58.0439 0.00709692
+MUSETT_T3_DSSD_X43_E 7.39123 0.851608
+MUSETT_T3_DSSD_X44_E -58.3014 0.00712825
+MUSETT_T3_DSSD_X45_E -58.706 0.00717278
+MUSETT_T3_DSSD_X46_E -58.282 0.0071191
+MUSETT_T3_DSSD_X47_E -58.5478 0.00715315
+MUSETT_T3_DSSD_X48_E -56.8326 0.00694268
+MUSETT_T3_DSSD_X49_E -56.5904 0.00691381
+MUSETT_T3_DSSD_X50_E -56.2694 0.00687536
+MUSETT_T3_DSSD_X51_E -56.3974 0.00689359
+MUSETT_T3_DSSD_X52_E -56.0544 0.00685429
+MUSETT_T3_DSSD_X53_E -56.5244 0.00691084
+MUSETT_T3_DSSD_X54_E -55.9116 0.00683458
+MUSETT_T3_DSSD_X55_E -56.3099 0.00688659
+MUSETT_T3_DSSD_X56_E -56.8089 0.00694464
+MUSETT_T3_DSSD_X57_E -55.5634 0.00679492
+MUSETT_T3_DSSD_X58_E -56.3701 0.00689601
+MUSETT_T3_DSSD_X59_E -56.0208 0.00685211
+MUSETT_T3_DSSD_X60_E -55.2121 0.00675438
+MUSETT_T3_DSSD_X61_E -55.8207 0.00682687
+MUSETT_T3_DSSD_X62_E -55.6304 0.00680525
+MUSETT_T3_DSSD_X63_E -55.1928 0.00675491
+MUSETT_T3_DSSD_X64_E -63.9696 0.00780931
+MUSETT_T3_DSSD_X65_E -63.3555 0.00773855
+MUSETT_T3_DSSD_X66_E -63.1771 0.00771551
+MUSETT_T3_DSSD_X67_E -63.5098 0.00775306
+MUSETT_T3_DSSD_X68_E -63.3882 0.00773862
+MUSETT_T3_DSSD_X69_E -63.0461 0.00769634
+MUSETT_T3_DSSD_X70_E -64.0234 0.00781715
+MUSETT_T3_DSSD_X71_E -62.1448 0.00758861
+MUSETT_T3_DSSD_X72_E -62.356 0.00761402
+MUSETT_T3_DSSD_X73_E -62.6019 0.00764474
+MUSETT_T3_DSSD_X74_E -62.8733 0.00767594
+MUSETT_T3_DSSD_X75_E -63.1537 0.00771003
+MUSETT_T3_DSSD_X76_E -63.7982 0.00778975
+MUSETT_T3_DSSD_X77_E -62.1866 0.0075927
+MUSETT_T3_DSSD_X78_E -62.3106 0.00760775
+MUSETT_T3_DSSD_X79_E -62.7171 0.00765713
+MUSETT_T3_DSSD_X80_E -62.2113 0.0075955
+MUSETT_T3_DSSD_X81_E -62.4889 0.00763009
+MUSETT_T3_DSSD_X82_E -62.433 0.00762271
+MUSETT_T3_DSSD_X83_E -62.3816 0.00761606
+MUSETT_T3_DSSD_X84_E -61.8228 0.0075474
+MUSETT_T3_DSSD_X85_E -62.0885 0.00758168
+MUSETT_T3_DSSD_X86_E -62.1847 0.00759208
+MUSETT_T3_DSSD_X87_E -61.7134 0.00753717
+MUSETT_T3_DSSD_X88_E -61.9746 0.00756738
+MUSETT_T3_DSSD_X89_E -62.3044 0.00760928
+MUSETT_T3_DSSD_X90_E -62.1099 0.00758286
+MUSETT_T3_DSSD_X91_E -61.5959 0.00752284
+MUSETT_T3_DSSD_X92_E -62.3641 0.00761711
+MUSETT_T3_DSSD_X93_E -62.2005 0.00759558
+MUSETT_T3_DSSD_X94_E -61.8202 0.00754895
+MUSETT_T3_DSSD_X95_E -62.1497 0.00758769
+MUSETT_T3_DSSD_X96_E -55.9035 0.00682462
+MUSETT_T3_DSSD_X97_E -55.4954 0.00677857
+MUSETT_T3_DSSD_X98_E -54.9585 0.00670973
+MUSETT_T3_DSSD_X99_E -55.3775 0.00676383
+MUSETT_T3_DSSD_X100_E -55.7181 0.00680553
+MUSETT_T3_DSSD_X101_E -55.6337 0.00679291
+MUSETT_T3_DSSD_X102_E -55.6556 0.00679656
+MUSETT_T3_DSSD_X103_E -54.9843 0.00671304
+MUSETT_T3_DSSD_X104_E -55.3714 0.00675929
+MUSETT_T3_DSSD_X105_E -55.6203 0.00679297
+MUSETT_T3_DSSD_X106_E -55.651 0.00679392
+MUSETT_T3_DSSD_X107_E -55.5623 0.00678286
+MUSETT_T3_DSSD_X108_E -56.4102 0.00689092
+MUSETT_T3_DSSD_X109_E -55.8281 0.00681951
+MUSETT_T3_DSSD_X110_E -55.6717 0.00679537
+MUSETT_T3_DSSD_X111_E -55.5708 0.0067833
+MUSETT_T3_DSSD_X112_E -57.0662 0.00697157
+MUSETT_T3_DSSD_X113_E -56.5305 0.00690489
+MUSETT_T3_DSSD_X114_E -57.4322 0.00701067
+MUSETT_T3_DSSD_X115_E -56.6085 0.00691311
+MUSETT_T3_DSSD_X116_E -57.6268 0.00703901
+MUSETT_T3_DSSD_X117_E -56.8313 0.00694126
+MUSETT_T3_DSSD_X118_E -57.0933 0.00697294
+MUSETT_T3_DSSD_X119_E -55.8642 0.00682494
+MUSETT_T3_DSSD_X120_E -56.4873 0.00689798
+MUSETT_T3_DSSD_X121_E -57.4399 0.00701642
+MUSETT_T3_DSSD_X122_E -57.0316 0.00696599
+MUSETT_T3_DSSD_X123_E -56.5839 0.00691232
+MUSETT_T3_DSSD_X124_E -57.4735 0.0070168
+MUSETT_T3_DSSD_X125_E -56.4109 0.00688805
+MUSETT_T3_DSSD_X126_E -57.6384 0.00703652
+MUSETT_T3_DSSD_X127_E -56.1553 0.00685853
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..b5fa204258284f9cd6b57600d0dc56f3b075c029
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E_Zero_Dispersion 6.63254
+MUSETT_T3_DSSD_X1_E_Zero_Dispersion 5.74949
+MUSETT_T3_DSSD_X2_E_Zero_Dispersion 5.42348
+MUSETT_T3_DSSD_X3_E_Zero_Dispersion 6.18133
+MUSETT_T3_DSSD_X4_E_Zero_Dispersion 5.11964
+MUSETT_T3_DSSD_X5_E_Zero_Dispersion 4.75466
+MUSETT_T3_DSSD_X6_E_Zero_Dispersion 5.68136
+MUSETT_T3_DSSD_X7_E_Zero_Dispersion 3.9033
+MUSETT_T3_DSSD_X8_E_Zero_Dispersion 3.86185
+MUSETT_T3_DSSD_X9_E_Zero_Dispersion 4.605
+MUSETT_T3_DSSD_X10_E_Zero_Dispersion 1.26815
+MUSETT_T3_DSSD_X11_E_Zero_Dispersion 3.4552
+MUSETT_T3_DSSD_X12_E_Zero_Dispersion 2.46614
+MUSETT_T3_DSSD_X13_E_Zero_Dispersion 1.77666
+MUSETT_T3_DSSD_X14_E_Zero_Dispersion 4.88605
+MUSETT_T3_DSSD_X15_E_Zero_Dispersion 3.10354
+MUSETT_T3_DSSD_X16_E_Zero_Dispersion 2.53841
+MUSETT_T3_DSSD_X17_E_Zero_Dispersion 3.22056
+MUSETT_T3_DSSD_X18_E_Zero_Dispersion 3.04206
+MUSETT_T3_DSSD_X19_E_Zero_Dispersion 0.685915
+MUSETT_T3_DSSD_X20_E_Zero_Dispersion 2.29495
+MUSETT_T3_DSSD_X21_E_Zero_Dispersion 5.26527
+MUSETT_T3_DSSD_X22_E_Zero_Dispersion 11.8048
+MUSETT_T3_DSSD_X23_E_Zero_Dispersion 3.45973
+MUSETT_T3_DSSD_X24_E_Zero_Dispersion 7.39581
+MUSETT_T3_DSSD_X25_E_Zero_Dispersion 2.78975
+MUSETT_T3_DSSD_X26_E_Zero_Dispersion 4.58737
+MUSETT_T3_DSSD_X27_E_Zero_Dispersion 4.92463
+MUSETT_T3_DSSD_X28_E_Zero_Dispersion 4.89984
+MUSETT_T3_DSSD_X29_E_Zero_Dispersion 6.39284
+MUSETT_T3_DSSD_X30_E_Zero_Dispersion 6.26056
+MUSETT_T3_DSSD_X31_E_Zero_Dispersion 9.2975
+MUSETT_T3_DSSD_X32_E_Zero_Dispersion 17.1538
+MUSETT_T3_DSSD_X33_E_Zero_Dispersion 17.0711
+MUSETT_T3_DSSD_X34_E_Zero_Dispersion 16.7475
+MUSETT_T3_DSSD_X35_E_Zero_Dispersion 14.6113
+MUSETT_T3_DSSD_X36_E_Zero_Dispersion 13.1613
+MUSETT_T3_DSSD_X37_E_Zero_Dispersion 12.1957
+MUSETT_T3_DSSD_X38_E_Zero_Dispersion 13.6338
+MUSETT_T3_DSSD_X39_E_Zero_Dispersion 11.8618
+MUSETT_T3_DSSD_X40_E_Zero_Dispersion 10.4463
+MUSETT_T3_DSSD_X41_E_Zero_Dispersion 14.2917
+MUSETT_T3_DSSD_X42_E_Zero_Dispersion 13.258
+MUSETT_T3_DSSD_X43_E_Zero_Dispersion 8200.68
+MUSETT_T3_DSSD_X44_E_Zero_Dispersion 13.079
+MUSETT_T3_DSSD_X45_E_Zero_Dispersion 7.44103
+MUSETT_T3_DSSD_X46_E_Zero_Dispersion 5.29528
+MUSETT_T3_DSSD_X47_E_Zero_Dispersion 7.10408
+MUSETT_T3_DSSD_X48_E_Zero_Dispersion 6.02579
+MUSETT_T3_DSSD_X49_E_Zero_Dispersion 6.87837
+MUSETT_T3_DSSD_X50_E_Zero_Dispersion 7.78668
+MUSETT_T3_DSSD_X51_E_Zero_Dispersion 10.8579
+MUSETT_T3_DSSD_X52_E_Zero_Dispersion 14.0069
+MUSETT_T3_DSSD_X53_E_Zero_Dispersion 12.908
+MUSETT_T3_DSSD_X54_E_Zero_Dispersion 11.3155
+MUSETT_T3_DSSD_X55_E_Zero_Dispersion 15.2509
+MUSETT_T3_DSSD_X56_E_Zero_Dispersion 11.7545
+MUSETT_T3_DSSD_X57_E_Zero_Dispersion 14.8099
+MUSETT_T3_DSSD_X58_E_Zero_Dispersion 17.6948
+MUSETT_T3_DSSD_X59_E_Zero_Dispersion 16.2995
+MUSETT_T3_DSSD_X60_E_Zero_Dispersion 17.7334
+MUSETT_T3_DSSD_X61_E_Zero_Dispersion 15.3887
+MUSETT_T3_DSSD_X62_E_Zero_Dispersion 17.36
+MUSETT_T3_DSSD_X63_E_Zero_Dispersion 21.2396
+MUSETT_T3_DSSD_X64_E_Zero_Dispersion 0.54688
+MUSETT_T3_DSSD_X65_E_Zero_Dispersion 5.00404
+MUSETT_T3_DSSD_X66_E_Zero_Dispersion 3.67625
+MUSETT_T3_DSSD_X67_E_Zero_Dispersion 0.418682
+MUSETT_T3_DSSD_X68_E_Zero_Dispersion 0.844769
+MUSETT_T3_DSSD_X69_E_Zero_Dispersion 0.310282
+MUSETT_T3_DSSD_X70_E_Zero_Dispersion 1.88164
+MUSETT_T3_DSSD_X71_E_Zero_Dispersion 2.773
+MUSETT_T3_DSSD_X72_E_Zero_Dispersion 2.36367
+MUSETT_T3_DSSD_X73_E_Zero_Dispersion 3.10533
+MUSETT_T3_DSSD_X74_E_Zero_Dispersion 1.03999
+MUSETT_T3_DSSD_X75_E_Zero_Dispersion 0.882051
+MUSETT_T3_DSSD_X76_E_Zero_Dispersion 1.97499
+MUSETT_T3_DSSD_X77_E_Zero_Dispersion 1.67487
+MUSETT_T3_DSSD_X78_E_Zero_Dispersion 1.59284
+MUSETT_T3_DSSD_X79_E_Zero_Dispersion 1.32705
+MUSETT_T3_DSSD_X80_E_Zero_Dispersion 1.45268
+MUSETT_T3_DSSD_X81_E_Zero_Dispersion 2.21072
+MUSETT_T3_DSSD_X82_E_Zero_Dispersion 1.60635
+MUSETT_T3_DSSD_X83_E_Zero_Dispersion 1.2076
+MUSETT_T3_DSSD_X84_E_Zero_Dispersion 0.732884
+MUSETT_T3_DSSD_X85_E_Zero_Dispersion 2.71973
+MUSETT_T3_DSSD_X86_E_Zero_Dispersion 1.26472
+MUSETT_T3_DSSD_X87_E_Zero_Dispersion 4.12606
+MUSETT_T3_DSSD_X88_E_Zero_Dispersion 2.29194
+MUSETT_T3_DSSD_X89_E_Zero_Dispersion 4.04424
+MUSETT_T3_DSSD_X90_E_Zero_Dispersion 1.16739
+MUSETT_T3_DSSD_X91_E_Zero_Dispersion 4.13851
+MUSETT_T3_DSSD_X92_E_Zero_Dispersion 4.62734
+MUSETT_T3_DSSD_X93_E_Zero_Dispersion 2.96159
+MUSETT_T3_DSSD_X94_E_Zero_Dispersion 2.75865
+MUSETT_T3_DSSD_X95_E_Zero_Dispersion 1.13467
+MUSETT_T3_DSSD_X96_E_Zero_Dispersion 0.560919
+MUSETT_T3_DSSD_X97_E_Zero_Dispersion 5.11095
+MUSETT_T3_DSSD_X98_E_Zero_Dispersion 1.14066
+MUSETT_T3_DSSD_X99_E_Zero_Dispersion 4.70192
+MUSETT_T3_DSSD_X100_E_Zero_Dispersion 4.82997
+MUSETT_T3_DSSD_X101_E_Zero_Dispersion 2.03176
+MUSETT_T3_DSSD_X102_E_Zero_Dispersion 3.20693
+MUSETT_T3_DSSD_X103_E_Zero_Dispersion 1.32489
+MUSETT_T3_DSSD_X104_E_Zero_Dispersion 0.0996645
+MUSETT_T3_DSSD_X105_E_Zero_Dispersion 4.07351
+MUSETT_T3_DSSD_X106_E_Zero_Dispersion 0.709593
+MUSETT_T3_DSSD_X107_E_Zero_Dispersion 0.418541
+MUSETT_T3_DSSD_X108_E_Zero_Dispersion 5.84514
+MUSETT_T3_DSSD_X109_E_Zero_Dispersion 5.46992
+MUSETT_T3_DSSD_X110_E_Zero_Dispersion -0.584243
+MUSETT_T3_DSSD_X111_E_Zero_Dispersion -0.299269
+MUSETT_T3_DSSD_X112_E_Zero_Dispersion 6.43671
+MUSETT_T3_DSSD_X113_E_Zero_Dispersion 4.9844
+MUSETT_T3_DSSD_X114_E_Zero_Dispersion -0.124211
+MUSETT_T3_DSSD_X115_E_Zero_Dispersion 3.4256
+MUSETT_T3_DSSD_X116_E_Zero_Dispersion 5.23201
+MUSETT_T3_DSSD_X117_E_Zero_Dispersion 4.53419
+MUSETT_T3_DSSD_X118_E_Zero_Dispersion 4.16371
+MUSETT_T3_DSSD_X119_E_Zero_Dispersion 6.69004
+MUSETT_T3_DSSD_X120_E_Zero_Dispersion 3.03511
+MUSETT_T3_DSSD_X121_E_Zero_Dispersion 5.50333
+MUSETT_T3_DSSD_X122_E_Zero_Dispersion 4.84654
+MUSETT_T3_DSSD_X123_E_Zero_Dispersion 6.04781
+MUSETT_T3_DSSD_X124_E_Zero_Dispersion 1.15854
+MUSETT_T3_DSSD_X125_E_Zero_Dispersion 2.32906
+MUSETT_T3_DSSD_X126_E_Zero_Dispersion 0.678591
+MUSETT_T3_DSSD_X127_E_Zero_Dispersion 4.34674
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/latex/double_alpha_run_0274_X_MM3_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/latex/double_alpha_run_0274_X_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..052d4c198b5188d9f6165d0051ac816c1e4827da
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/latex/double_alpha_run_0274_X_MM3_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+43 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 1.90056
+
+Sigma fit sigma: 0.335518
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0e94c581d2f45cea94e846763ede16df8e9cd22d
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_Y0_E 6.82575 -0.844837
+MUSETT_T0_DSSD_Y1_E 59.9396 -0.00731092
+MUSETT_T0_DSSD_Y2_E 60.4106 -0.00736742
+MUSETT_T0_DSSD_Y3_E 60.536 -0.00738222
+MUSETT_T0_DSSD_Y4_E 59.5713 -0.00726647
+MUSETT_T0_DSSD_Y5_E 59.6593 -0.0072751
+MUSETT_T0_DSSD_Y6_E 60.2169 -0.00734415
+MUSETT_T0_DSSD_Y7_E 60.0432 -0.00732455
+MUSETT_T0_DSSD_Y8_E 59.5902 -0.00726598
+MUSETT_T0_DSSD_Y9_E 59.4347 -0.00724787
+MUSETT_T0_DSSD_Y10_E 59.9372 -0.00730993
+MUSETT_T0_DSSD_Y11_E 59.6307 -0.00727372
+MUSETT_T0_DSSD_Y12_E 60.3787 -0.00736332
+MUSETT_T0_DSSD_Y13_E 64.1489 -0.00787871
+MUSETT_T0_DSSD_Y14_E 60.5738 -0.00738797
+MUSETT_T0_DSSD_Y15_E 60.1216 -0.00733002
+MUSETT_T0_DSSD_Y16_E 59.9228 -0.0073087
+MUSETT_T0_DSSD_Y17_E 59.9655 -0.00731221
+MUSETT_T0_DSSD_Y18_E 59.7151 -0.00728067
+MUSETT_T0_DSSD_Y19_E 59.6477 -0.00727435
+MUSETT_T0_DSSD_Y20_E 59.8071 -0.00729347
+MUSETT_T0_DSSD_Y21_E 59.9607 -0.00731324
+MUSETT_T0_DSSD_Y22_E 59.7539 -0.00728791
+MUSETT_T0_DSSD_Y23_E 59.0607 -0.00720123
+MUSETT_T0_DSSD_Y24_E 59.5327 -0.00725816
+MUSETT_T0_DSSD_Y25_E 59.2586 -0.00722739
+MUSETT_T0_DSSD_Y26_E 59.6039 -0.00727089
+MUSETT_T0_DSSD_Y27_E 59.8624 -0.00730066
+MUSETT_T0_DSSD_Y28_E 59.4132 -0.00724484
+MUSETT_T0_DSSD_Y29_E 59.2535 -0.00722877
+MUSETT_T0_DSSD_Y30_E 59.4539 -0.00725365
+MUSETT_T0_DSSD_Y31_E 60.5797 -0.00739042
+MUSETT_T0_DSSD_Y32_E 56.1608 -0.00684825
+MUSETT_T0_DSSD_Y33_E 56.5204 -0.00689187
+MUSETT_T0_DSSD_Y34_E 56.2288 -0.00686031
+MUSETT_T0_DSSD_Y35_E 56.6772 -0.00691344
+MUSETT_T0_DSSD_Y36_E 56.9245 -0.00694145
+MUSETT_T0_DSSD_Y37_E 56.9461 -0.00694672
+MUSETT_T0_DSSD_Y38_E 56.0767 -0.0068407
+MUSETT_T0_DSSD_Y39_E 56.1027 -0.006843
+MUSETT_T0_DSSD_Y40_E 56.5705 -0.00690073
+MUSETT_T0_DSSD_Y41_E 56.1805 -0.00684956
+MUSETT_T0_DSSD_Y42_E 56.2323 -0.00685952
+MUSETT_T0_DSSD_Y43_E 56.1879 -0.00685347
+MUSETT_T0_DSSD_Y44_E 56.4542 -0.00688626
+MUSETT_T0_DSSD_Y45_E 56.549 -0.00689733
+MUSETT_T0_DSSD_Y46_E 57.2559 -0.00698044
+MUSETT_T0_DSSD_Y47_E 56.1545 -0.00684912
+MUSETT_T0_DSSD_Y48_E 57.2081 -0.00697815
+MUSETT_T0_DSSD_Y49_E 56.525 -0.00689257
+MUSETT_T0_DSSD_Y50_E 56.3639 -0.00687465
+MUSETT_T0_DSSD_Y51_E 56.0496 -0.00683669
+MUSETT_T0_DSSD_Y52_E 56.6657 -0.00691036
+MUSETT_T0_DSSD_Y53_E 56.4242 -0.00687821
+MUSETT_T0_DSSD_Y54_E 56.3254 -0.00687194
+MUSETT_T0_DSSD_Y55_E 56.9205 -0.00693805
+MUSETT_T0_DSSD_Y56_E 57.0242 -0.00695791
+MUSETT_T0_DSSD_Y57_E 56.5056 -0.00689519
+MUSETT_T0_DSSD_Y58_E 56.4569 -0.00688479
+MUSETT_T0_DSSD_Y59_E 56.8005 -0.006928
+MUSETT_T0_DSSD_Y60_E 56.6359 -0.00690454
+MUSETT_T0_DSSD_Y61_E 56.5755 -0.00689818
+MUSETT_T0_DSSD_Y62_E 57.045 -0.00695521
+MUSETT_T0_DSSD_Y63_E 57.4402 -0.00700138
+MUSETT_T0_DSSD_Y64_E 60.581 -0.00738974
+MUSETT_T0_DSSD_Y65_E 60.6496 -0.00739714
+MUSETT_T0_DSSD_Y66_E 60.4622 -0.00737333
+MUSETT_T0_DSSD_Y67_E 60.936 -0.00743343
+MUSETT_T0_DSSD_Y68_E 60.0202 -0.00732222
+MUSETT_T0_DSSD_Y69_E 61.036 -0.00744431
+MUSETT_T0_DSSD_Y70_E 60.3324 -0.00735687
+MUSETT_T0_DSSD_Y71_E 60.0203 -0.00732156
+MUSETT_T0_DSSD_Y72_E 61.2337 -0.00746905
+MUSETT_T0_DSSD_Y73_E 60.6202 -0.00739313
+MUSETT_T0_DSSD_Y74_E 60.6822 -0.00740078
+MUSETT_T0_DSSD_Y75_E 60.8037 -0.00741032
+MUSETT_T0_DSSD_Y76_E 60.2306 -0.00734812
+MUSETT_T0_DSSD_Y77_E 60.9684 -0.0074378
+MUSETT_T0_DSSD_Y78_E 61.3278 -0.00748195
+MUSETT_T0_DSSD_Y79_E 60.5917 -0.00738993
+MUSETT_T0_DSSD_Y80_E 61.6875 -0.00751447
+MUSETT_T0_DSSD_Y81_E 60.5067 -0.00737839
+MUSETT_T0_DSSD_Y82_E 61.0018 -0.00743772
+MUSETT_T0_DSSD_Y83_E 61.7662 -0.00753354
+MUSETT_T0_DSSD_Y84_E 60.3646 -0.00735909
+MUSETT_T0_DSSD_Y85_E 60.2349 -0.007342
+MUSETT_T0_DSSD_Y86_E 61.2239 -0.00746588
+MUSETT_T0_DSSD_Y87_E 60.8481 -0.00741858
+MUSETT_T0_DSSD_Y88_E 60.432 -0.00736679
+MUSETT_T0_DSSD_Y89_E 60.8595 -0.0074229
+MUSETT_T0_DSSD_Y90_E 60.6124 -0.00739208
+MUSETT_T0_DSSD_Y91_E 60.9829 -0.00743762
+MUSETT_T0_DSSD_Y92_E 61.2564 -0.00746856
+MUSETT_T0_DSSD_Y93_E 61.0818 -0.0074474
+MUSETT_T0_DSSD_Y94_E 61.7604 -0.00752996
+MUSETT_T0_DSSD_Y95_E 60.1873 -0.00733724
+MUSETT_T0_DSSD_Y96_E 55.7827 -0.00679989
+MUSETT_T0_DSSD_Y97_E 56.0999 -0.00683972
+MUSETT_T0_DSSD_Y98_E 56.2346 -0.00686015
+MUSETT_T0_DSSD_Y99_E 56.0143 -0.00683094
+MUSETT_T0_DSSD_Y100_E 55.7323 -0.00679648
+MUSETT_T0_DSSD_Y101_E 55.8821 -0.00681118
+MUSETT_T0_DSSD_Y102_E 55.5714 -0.00677554
+MUSETT_T0_DSSD_Y103_E 55.9719 -0.00682257
+MUSETT_T0_DSSD_Y104_E 56.5704 -0.00690135
+MUSETT_T0_DSSD_Y105_E 55.6434 -0.00678573
+MUSETT_T0_DSSD_Y106_E 56.6027 -0.00690209
+MUSETT_T0_DSSD_Y107_E 56.9725 -0.00694856
+MUSETT_T0_DSSD_Y108_E 56.0688 -0.00683764
+MUSETT_T0_DSSD_Y109_E 56.1521 -0.00684898
+MUSETT_T0_DSSD_Y110_E 56.3271 -0.00687067
+MUSETT_T0_DSSD_Y111_E 55.8965 -0.00681587
+MUSETT_T0_DSSD_Y112_E 56.4834 -0.00688847
+MUSETT_T0_DSSD_Y113_E 56.3634 -0.00686863
+MUSETT_T0_DSSD_Y114_E 56.6287 -0.00690812
+MUSETT_T0_DSSD_Y115_E 56.4297 -0.0068832
+MUSETT_T0_DSSD_Y116_E 56.7518 -0.00691987
+MUSETT_T0_DSSD_Y117_E 56.0688 -0.00683716
+MUSETT_T0_DSSD_Y118_E 55.8832 -0.00681286
+MUSETT_T0_DSSD_Y119_E 56.0852 -0.00683815
+MUSETT_T0_DSSD_Y120_E 56.9102 -0.0069408
+MUSETT_T0_DSSD_Y121_E 56.6179 -0.00690191
+MUSETT_T0_DSSD_Y122_E 56.2517 -0.00685791
+MUSETT_T0_DSSD_Y123_E 55.6493 -0.0067881
+MUSETT_T0_DSSD_Y124_E 55.7588 -0.00679547
+MUSETT_T0_DSSD_Y125_E 55.3298 -0.00674464
+MUSETT_T0_DSSD_Y126_E 56.5723 -0.00690015
+MUSETT_T0_DSSD_Y127_E 55.9475 -0.00682061
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..56dce7bc4b19a542bdf9afb2fecfb3b1b15d9014
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E_Zero_Dispersion 8183.92
+MUSETT_T0_DSSD_X1_E_Zero_Dispersion -6.63295
+MUSETT_T0_DSSD_X2_E_Zero_Dispersion -7.7008
+MUSETT_T0_DSSD_X3_E_Zero_Dispersion -8.2479
+MUSETT_T0_DSSD_X4_E_Zero_Dispersion -6.11069
+MUSETT_T0_DSSD_X5_E_Zero_Dispersion -8.48188
+MUSETT_T0_DSSD_X6_E_Zero_Dispersion -7.31025
+MUSETT_T0_DSSD_X7_E_Zero_Dispersion -5.53197
+MUSETT_T0_DSSD_X8_E_Zero_Dispersion -9.25746
+MUSETT_T0_DSSD_X9_E_Zero_Dispersion -8.30132
+MUSETT_T0_DSSD_X10_E_Zero_Dispersion -7.41508
+MUSETT_T0_DSSD_X11_E_Zero_Dispersion -6.10382
+MUSETT_T0_DSSD_X12_E_Zero_Dispersion -7.91969
+MUSETT_T0_DSSD_X13_E_Zero_Dispersion 49.9456
+MUSETT_T0_DSSD_X14_E_Zero_Dispersion -6.97607
+MUSETT_T0_DSSD_X15_E_Zero_Dispersion -10.1047
+MUSETT_T0_DSSD_X16_E_Zero_Dispersion -6.83215
+MUSETT_T0_DSSD_X17_E_Zero_Dispersion -8.73859
+MUSETT_T0_DSSD_X18_E_Zero_Dispersion -9.86747
+MUSETT_T0_DSSD_X19_E_Zero_Dispersion -7.73418
+MUSETT_T0_DSSD_X20_E_Zero_Dispersion -8.09245
+MUSETT_T0_DSSD_X21_E_Zero_Dispersion -6.92018
+MUSETT_T0_DSSD_X22_E_Zero_Dispersion -7.03661
+MUSETT_T0_DSSD_X23_E_Zero_Dispersion -9.47716
+MUSETT_T0_DSSD_X24_E_Zero_Dispersion -10.1866
+MUSETT_T0_DSSD_X25_E_Zero_Dispersion -7.16795
+MUSETT_T0_DSSD_X26_E_Zero_Dispersion -5.6114
+MUSETT_T0_DSSD_X27_E_Zero_Dispersion -7.5916
+MUSETT_T0_DSSD_X28_E_Zero_Dispersion -8.76414
+MUSETT_T0_DSSD_X29_E_Zero_Dispersion -4.90095
+MUSETT_T0_DSSD_X30_E_Zero_Dispersion -4.41223
+MUSETT_T0_DSSD_X31_E_Zero_Dispersion -5.04983
+MUSETT_T0_DSSD_X32_E_Zero_Dispersion -8.74888
+MUSETT_T0_DSSD_X33_E_Zero_Dispersion -9.02414
+MUSETT_T0_DSSD_X34_E_Zero_Dispersion -4.24547
+MUSETT_T0_DSSD_X35_E_Zero_Dispersion -6.11783
+MUSETT_T0_DSSD_X36_E_Zero_Dispersion -8.67274
+MUSETT_T0_DSSD_X37_E_Zero_Dispersion -5.55349
+MUSETT_T0_DSSD_X38_E_Zero_Dispersion -5.49848
+MUSETT_T0_DSSD_X39_E_Zero_Dispersion -6.55596
+MUSETT_T0_DSSD_X40_E_Zero_Dispersion -5.75522
+MUSETT_T0_DSSD_X41_E_Zero_Dispersion -10.0658
+MUSETT_T0_DSSD_X42_E_Zero_Dispersion -5.70397
+MUSETT_T0_DSSD_X43_E_Zero_Dispersion -6.46707
+MUSETT_T0_DSSD_X44_E_Zero_Dispersion -6.08433
+MUSETT_T0_DSSD_X45_E_Zero_Dispersion -6.67154
+MUSETT_T0_DSSD_X46_E_Zero_Dispersion -10.3332
+MUSETT_T0_DSSD_X47_E_Zero_Dispersion -6.79015
+MUSETT_T0_DSSD_X48_E_Zero_Dispersion -6.18417
+MUSETT_T0_DSSD_X49_E_Zero_Dispersion -8.85446
+MUSETT_T0_DSSD_X50_E_Zero_Dispersion -6.79964
+MUSETT_T0_DSSD_X51_E_Zero_Dispersion -6.34267
+MUSETT_T0_DSSD_X52_E_Zero_Dispersion -8.10679
+MUSETT_T0_DSSD_X53_E_Zero_Dispersion -11.3244
+MUSETT_T0_DSSD_X54_E_Zero_Dispersion -4.43412
+MUSETT_T0_DSSD_X55_E_Zero_Dispersion -12.1053
+MUSETT_T0_DSSD_X56_E_Zero_Dispersion -3.59209
+MUSETT_T0_DSSD_X57_E_Zero_Dispersion -2.93464
+MUSETT_T0_DSSD_X58_E_Zero_Dispersion -8.23944
+MUSETT_T0_DSSD_X59_E_Zero_Dispersion -6.68791
+MUSETT_T0_DSSD_X60_E_Zero_Dispersion -10.701
+MUSETT_T0_DSSD_X61_E_Zero_Dispersion -9.50467
+MUSETT_T0_DSSD_X62_E_Zero_Dispersion -9.75864
+MUSETT_T0_DSSD_X63_E_Zero_Dispersion -12.1268
+MUSETT_T0_DSSD_X64_E_Zero_Dispersion -5.98167
+MUSETT_T0_DSSD_X65_E_Zero_Dispersion -7.06478
+MUSETT_T0_DSSD_X66_E_Zero_Dispersion -8.11857
+MUSETT_T0_DSSD_X67_E_Zero_Dispersion -5.55447
+MUSETT_T0_DSSD_X68_E_Zero_Dispersion -4.99593
+MUSETT_T0_DSSD_X69_E_Zero_Dispersion -7.02027
+MUSETT_T0_DSSD_X70_E_Zero_Dispersion -8.83169
+MUSETT_T0_DSSD_X71_E_Zero_Dispersion -5.74392
+MUSETT_T0_DSSD_X72_E_Zero_Dispersion -6.31696
+MUSETT_T0_DSSD_X73_E_Zero_Dispersion -7.52914
+MUSETT_T0_DSSD_X74_E_Zero_Dispersion -7.43815
+MUSETT_T0_DSSD_X75_E_Zero_Dispersion -13.2719
+MUSETT_T0_DSSD_X76_E_Zero_Dispersion -4.73017
+MUSETT_T0_DSSD_X77_E_Zero_Dispersion -5.09789
+MUSETT_T0_DSSD_X78_E_Zero_Dispersion -4.76807
+MUSETT_T0_DSSD_X79_E_Zero_Dispersion -7.22795
+MUSETT_T0_DSSD_X80_E_Zero_Dispersion -17.1633
+MUSETT_T0_DSSD_X81_E_Zero_Dispersion -8.52399
+MUSETT_T0_DSSD_X82_E_Zero_Dispersion -9.67415
+MUSETT_T0_DSSD_X83_E_Zero_Dispersion -6.82375
+MUSETT_T0_DSSD_X84_E_Zero_Dispersion -10.7194
+MUSETT_T0_DSSD_X85_E_Zero_Dispersion -12.1529
+MUSETT_T0_DSSD_X86_E_Zero_Dispersion -8.48907
+MUSETT_T0_DSSD_X87_E_Zero_Dispersion -10.1272
+MUSETT_T0_DSSD_X88_E_Zero_Dispersion -11.3035
+MUSETT_T0_DSSD_X89_E_Zero_Dispersion -6.88179
+MUSETT_T0_DSSD_X90_E_Zero_Dispersion -7.64239
+MUSETT_T0_DSSD_X91_E_Zero_Dispersion -7.25621
+MUSETT_T0_DSSD_X92_E_Zero_Dispersion -9.90046
+MUSETT_T0_DSSD_X93_E_Zero_Dispersion -9.76531
+MUSETT_T0_DSSD_X94_E_Zero_Dispersion -9.94603
+MUSETT_T0_DSSD_X95_E_Zero_Dispersion -10.9835
+MUSETT_T0_DSSD_X96_E_Zero_Dispersion -11.4783
+MUSETT_T0_DSSD_X97_E_Zero_Dispersion -10.0747
+MUSETT_T0_DSSD_X98_E_Zero_Dispersion -5.29075
+MUSETT_T0_DSSD_X99_E_Zero_Dispersion -8.08608
+MUSETT_T0_DSSD_X100_E_Zero_Dispersion -8.17472
+MUSETT_T0_DSSD_X101_E_Zero_Dispersion -12.4671
+MUSETT_T0_DSSD_X102_E_Zero_Dispersion -9.76917
+MUSETT_T0_DSSD_X103_E_Zero_Dispersion -11.9265
+MUSETT_T0_DSSD_X104_E_Zero_Dispersion -5.00413
+MUSETT_T0_DSSD_X105_E_Zero_Dispersion -8.06976
+MUSETT_T0_DSSD_X106_E_Zero_Dispersion -8.81165
+MUSETT_T0_DSSD_X107_E_Zero_Dispersion -7.18314
+MUSETT_T0_DSSD_X108_E_Zero_Dispersion -8.03071
+MUSETT_T0_DSSD_X109_E_Zero_Dispersion -6.61411
+MUSETT_T0_DSSD_X110_E_Zero_Dispersion -6.2023
+MUSETT_T0_DSSD_X111_E_Zero_Dispersion -8.92192
+MUSETT_T0_DSSD_X112_E_Zero_Dispersion -7.70585
+MUSETT_T0_DSSD_X113_E_Zero_Dispersion -13.9267
+MUSETT_T0_DSSD_X114_E_Zero_Dispersion -5.41344
+MUSETT_T0_DSSD_X115_E_Zero_Dispersion -6.16773
+MUSETT_T0_DSSD_X116_E_Zero_Dispersion -9.27551
+MUSETT_T0_DSSD_X117_E_Zero_Dispersion -8.58972
+MUSETT_T0_DSSD_X118_E_Zero_Dispersion -10.599
+MUSETT_T0_DSSD_X119_E_Zero_Dispersion -9.81363
+MUSETT_T0_DSSD_X120_E_Zero_Dispersion -7.37254
+MUSETT_T0_DSSD_X121_E_Zero_Dispersion -11.2188
+MUSETT_T0_DSSD_X122_E_Zero_Dispersion -10.4584
+MUSETT_T0_DSSD_X123_E_Zero_Dispersion -6.05833
+MUSETT_T0_DSSD_X124_E_Zero_Dispersion -13.2832
+MUSETT_T0_DSSD_X125_E_Zero_Dispersion -11.5256
+MUSETT_T0_DSSD_X126_E_Zero_Dispersion -6.70314
+MUSETT_T0_DSSD_X127_E_Zero_Dispersion -10.7178
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/latex/double_alpha_run_0274_Y_MM0_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/latex/double_alpha_run_0274_Y_MM0_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..7431b47b293f2b279d97bbb808af6f4a2eb0c1b4
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/latex/double_alpha_run_0274_Y_MM0_E.tex
@@ -0,0 +1,62 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  0
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 0 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+0 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+13 &  zero extrapolation too high:49.9456channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM0_E/latex/pictures/Telescope0Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.10006
+
+Sigma fit sigma: 0.178421
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/peaks/Cal_Str_Y_E_MM0.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/peaks/Cal_Str_Y_E_MM0.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b0b0dae0ad5a4dcfd2658fe9202440da49d36dbd
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_E 59.5713 -0.00727366
+MUSETT_T1_DSSD_Y1_E 60.1008 -0.00733351
+MUSETT_T1_DSSD_Y2_E 59.5524 -0.00726963
+MUSETT_T1_DSSD_Y3_E 59.1431 -0.00721903
+MUSETT_T1_DSSD_Y4_E 59.9251 -0.00731315
+MUSETT_T1_DSSD_Y5_E 60.0201 -0.00732852
+MUSETT_T1_DSSD_Y6_E 59.289 -0.00723845
+MUSETT_T1_DSSD_Y7_E 59.4021 -0.007252
+MUSETT_T1_DSSD_Y8_E 59.3992 -0.00725239
+MUSETT_T1_DSSD_Y9_E 59.5263 -0.00726694
+MUSETT_T1_DSSD_Y10_E 59.2864 -0.00723601
+MUSETT_T1_DSSD_Y11_E 59.4514 -0.00725811
+MUSETT_T1_DSSD_Y12_E 60.0312 -0.00732756
+MUSETT_T1_DSSD_Y13_E 59.2537 -0.00723424
+MUSETT_T1_DSSD_Y14_E 59.3893 -0.00725095
+MUSETT_T1_DSSD_Y15_E 59.7658 -0.0072936
+MUSETT_T1_DSSD_Y16_E 62.2769 -0.00760174
+MUSETT_T1_DSSD_Y17_E 62.117 -0.00757965
+MUSETT_T1_DSSD_Y18_E 62.072 -0.00757377
+MUSETT_T1_DSSD_Y19_E 61.9724 -0.00756654
+MUSETT_T1_DSSD_Y20_E 62.0118 -0.00756272
+MUSETT_T1_DSSD_Y21_E 62.1497 -0.00758453
+MUSETT_T1_DSSD_Y22_E 6.82575 -0.844837
+MUSETT_T1_DSSD_Y23_E 61.6857 -0.00752703
+MUSETT_T1_DSSD_Y24_E 61.3481 -0.0074851
+MUSETT_T1_DSSD_Y25_E 61.369 -0.0074932
+MUSETT_T1_DSSD_Y26_E 62.0024 -0.00756996
+MUSETT_T1_DSSD_Y27_E 61.921 -0.00755903
+MUSETT_T1_DSSD_Y28_E 62.0404 -0.00757219
+MUSETT_T1_DSSD_Y29_E 61.9073 -0.00755709
+MUSETT_T1_DSSD_Y30_E 61.3619 -0.00748814
+MUSETT_T1_DSSD_Y31_E 61.3944 -0.00749024
+MUSETT_T1_DSSD_Y32_E 55.862 -0.0068178
+MUSETT_T1_DSSD_Y33_E 56.1905 -0.00686073
+MUSETT_T1_DSSD_Y34_E 55.4752 -0.00677191
+MUSETT_T1_DSSD_Y35_E 55.4395 -0.00676548
+MUSETT_T1_DSSD_Y36_E 55.1726 -0.00673431
+MUSETT_T1_DSSD_Y37_E 56.143 -0.00685196
+MUSETT_T1_DSSD_Y38_E 55.1566 -0.00673131
+MUSETT_T1_DSSD_Y39_E 55.718 -0.00680006
+MUSETT_T1_DSSD_Y40_E 56.1499 -0.00685882
+MUSETT_T1_DSSD_Y41_E 55.8773 -0.00681981
+MUSETT_T1_DSSD_Y42_E 55.2904 -0.00674786
+MUSETT_T1_DSSD_Y43_E 56.4892 -0.00689618
+MUSETT_T1_DSSD_Y44_E 55.4436 -0.00676674
+MUSETT_T1_DSSD_Y45_E 55.639 -0.00679338
+MUSETT_T1_DSSD_Y46_E 55.5529 -0.00677944
+MUSETT_T1_DSSD_Y47_E 55.484 -0.00677176
+MUSETT_T1_DSSD_Y48_E 56.9644 -0.00695219
+MUSETT_T1_DSSD_Y49_E 56.285 -0.00686719
+MUSETT_T1_DSSD_Y50_E 56.1211 -0.00684591
+MUSETT_T1_DSSD_Y51_E 55.6085 -0.00678336
+MUSETT_T1_DSSD_Y52_E 56.6749 -0.00691731
+MUSETT_T1_DSSD_Y53_E 55.8722 -0.00681439
+MUSETT_T1_DSSD_Y54_E 56.1028 -0.00684409
+MUSETT_T1_DSSD_Y55_E 56.0397 -0.00683656
+MUSETT_T1_DSSD_Y56_E 56.9231 -0.00694547
+MUSETT_T1_DSSD_Y57_E 56.8501 -0.00693858
+MUSETT_T1_DSSD_Y58_E 56.2203 -0.00685803
+MUSETT_T1_DSSD_Y59_E 57.1097 -0.00697017
+MUSETT_T1_DSSD_Y60_E 57.2955 -0.00699211
+MUSETT_T1_DSSD_Y61_E 56.5987 -0.00690325
+MUSETT_T1_DSSD_Y62_E 56.0145 -0.00683747
+MUSETT_T1_DSSD_Y63_E 57.1694 -0.00697746
+MUSETT_T1_DSSD_Y64_E 60.8531 -0.00742731
+MUSETT_T1_DSSD_Y65_E 61.2035 -0.00746692
+MUSETT_T1_DSSD_Y66_E 61.1281 -0.00746104
+MUSETT_T1_DSSD_Y67_E 61.3924 -0.00749318
+MUSETT_T1_DSSD_Y68_E 61.0537 -0.00745178
+MUSETT_T1_DSSD_Y69_E 59.7484 -0.0072913
+MUSETT_T1_DSSD_Y70_E 60.1721 -0.00734278
+MUSETT_T1_DSSD_Y71_E 60.9846 -0.00744362
+MUSETT_T1_DSSD_Y72_E 60.1471 -0.00734103
+MUSETT_T1_DSSD_Y73_E 61.0101 -0.00744673
+MUSETT_T1_DSSD_Y74_E 60.715 -0.00741063
+MUSETT_T1_DSSD_Y75_E 60.1824 -0.00734473
+MUSETT_T1_DSSD_Y76_E 60.5111 -0.00738908
+MUSETT_T1_DSSD_Y77_E 60.8614 -0.00743023
+MUSETT_T1_DSSD_Y78_E 60.4805 -0.00738223
+MUSETT_T1_DSSD_Y79_E 61.2051 -0.00747177
+MUSETT_T1_DSSD_Y80_E 60.9209 -0.00743493
+MUSETT_T1_DSSD_Y81_E 60.7358 -0.00741074
+MUSETT_T1_DSSD_Y82_E 60.8 -0.00741892
+MUSETT_T1_DSSD_Y83_E 60.4562 -0.00738112
+MUSETT_T1_DSSD_Y84_E 60.1521 -0.00734031
+MUSETT_T1_DSSD_Y85_E 61.1671 -0.00746593
+MUSETT_T1_DSSD_Y86_E 60.6634 -0.00740806
+MUSETT_T1_DSSD_Y87_E 60.3342 -0.00736062
+MUSETT_T1_DSSD_Y88_E 60.8086 -0.00742136
+MUSETT_T1_DSSD_Y89_E 61.0582 -0.00745181
+MUSETT_T1_DSSD_Y90_E 60.4628 -0.0073781
+MUSETT_T1_DSSD_Y91_E 60.5439 -0.00738751
+MUSETT_T1_DSSD_Y92_E 60.173 -0.00734265
+MUSETT_T1_DSSD_Y93_E 61.2089 -0.00746997
+MUSETT_T1_DSSD_Y94_E 61.1999 -0.00746579
+MUSETT_T1_DSSD_Y95_E 60.5711 -0.00739332
+MUSETT_T1_DSSD_Y96_E 55.7695 -0.00680856
+MUSETT_T1_DSSD_Y97_E 55.239 -0.00674105
+MUSETT_T1_DSSD_Y98_E 55.7487 -0.0068081
+MUSETT_T1_DSSD_Y99_E 55.5363 -0.00678092
+MUSETT_T1_DSSD_Y100_E 55.7637 -0.00680698
+MUSETT_T1_DSSD_Y101_E 55.3921 -0.00676203
+MUSETT_T1_DSSD_Y102_E 55.4885 -0.00677566
+MUSETT_T1_DSSD_Y103_E 56.1288 -0.0068526
+MUSETT_T1_DSSD_Y104_E 55.0197 -0.00671458
+MUSETT_T1_DSSD_Y105_E 55.0473 -0.00671677
+MUSETT_T1_DSSD_Y106_E 55.8463 -0.00681955
+MUSETT_T1_DSSD_Y107_E 55.1768 -0.00673729
+MUSETT_T1_DSSD_Y108_E 55.6608 -0.00679222
+MUSETT_T1_DSSD_Y109_E 55.8837 -0.00682082
+MUSETT_T1_DSSD_Y110_E 56.0661 -0.00684396
+MUSETT_T1_DSSD_Y111_E 56.5742 -0.00690789
+MUSETT_T1_DSSD_Y112_E 54.6562 -0.00667282
+MUSETT_T1_DSSD_Y113_E 55.323 -0.00675101
+MUSETT_T1_DSSD_Y114_E 54.9651 -0.00670899
+MUSETT_T1_DSSD_Y115_E 55.0097 -0.00671473
+MUSETT_T1_DSSD_Y116_E 55.0182 -0.00671428
+MUSETT_T1_DSSD_Y117_E 55.2189 -0.00673988
+MUSETT_T1_DSSD_Y118_E 55.0491 -0.00671853
+MUSETT_T1_DSSD_Y119_E 55.547 -0.00677839
+MUSETT_T1_DSSD_Y120_E 55.6261 -0.00679154
+MUSETT_T1_DSSD_Y121_E 55.3517 -0.00675826
+MUSETT_T1_DSSD_Y122_E 54.6662 -0.00667402
+MUSETT_T1_DSSD_Y123_E 55.1066 -0.0067295
+MUSETT_T1_DSSD_Y124_E 55.106 -0.00672715
+MUSETT_T1_DSSD_Y125_E 55.0026 -0.00671395
+MUSETT_T1_DSSD_Y126_E 55.1727 -0.00673426
+MUSETT_T1_DSSD_Y127_E 56.0969 -0.0068486
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..cde968dc417489c3337516e28938fc54e9c535b4
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E_Zero_Dispersion 1.99155
+MUSETT_T1_DSSD_X1_E_Zero_Dispersion -3.36744
+MUSETT_T1_DSSD_X2_E_Zero_Dispersion 0.0532965
+MUSETT_T1_DSSD_X3_E_Zero_Dispersion -0.670512
+MUSETT_T1_DSSD_X4_E_Zero_Dispersion -2.15656
+MUSETT_T1_DSSD_X5_E_Zero_Dispersion 2.06015
+MUSETT_T1_DSSD_X6_E_Zero_Dispersion 1.15907
+MUSETT_T1_DSSD_X7_E_Zero_Dispersion 0.856124
+MUSETT_T1_DSSD_X8_E_Zero_Dispersion 1.70508
+MUSETT_T1_DSSD_X9_E_Zero_Dispersion 0.617081
+MUSETT_T1_DSSD_X10_E_Zero_Dispersion -1.24746
+MUSETT_T1_DSSD_X11_E_Zero_Dispersion 0.974372
+MUSETT_T1_DSSD_X12_E_Zero_Dispersion -0.523207
+MUSETT_T1_DSSD_X13_E_Zero_Dispersion 1.26217
+MUSETT_T1_DSSD_X14_E_Zero_Dispersion 1.45131
+MUSETT_T1_DSSD_X15_E_Zero_Dispersion -2.28
+MUSETT_T1_DSSD_X16_E_Zero_Dispersion -0.445466
+MUSETT_T1_DSSD_X17_E_Zero_Dispersion -3.22932
+MUSETT_T1_DSSD_X18_E_Zero_Dispersion -3.65555
+MUSETT_T1_DSSD_X19_E_Zero_Dispersion 1.68167
+MUSETT_T1_DSSD_X20_E_Zero_Dispersion -7.67168
+MUSETT_T1_DSSD_X21_E_Zero_Dispersion -2.26369
+MUSETT_T1_DSSD_X22_E_Zero_Dispersion 8183.92
+MUSETT_T1_DSSD_X23_E_Zero_Dispersion -3.22536
+MUSETT_T1_DSSD_X24_E_Zero_Dispersion -4.02648
+MUSETT_T1_DSSD_X25_E_Zero_Dispersion 2.03906
+MUSETT_T1_DSSD_X26_E_Zero_Dispersion 1.41268
+MUSETT_T1_DSSD_X27_E_Zero_Dispersion 0.34993
+MUSETT_T1_DSSD_X28_E_Zero_Dispersion -1.19268
+MUSETT_T1_DSSD_X29_E_Zero_Dispersion 0.0528127
+MUSETT_T1_DSSD_X30_E_Zero_Dispersion -2.53391
+MUSETT_T1_DSSD_X31_E_Zero_Dispersion -4.59477
+MUSETT_T1_DSSD_X32_E_Zero_Dispersion -1.55375
+MUSETT_T1_DSSD_X33_E_Zero_Dispersion 1.83181
+MUSETT_T1_DSSD_X34_E_Zero_Dispersion 0.0380421
+MUSETT_T1_DSSD_X35_E_Zero_Dispersion -2.47029
+MUSETT_T1_DSSD_X36_E_Zero_Dispersion -0.760245
+MUSETT_T1_DSSD_X37_E_Zero_Dispersion -1.70397
+MUSETT_T1_DSSD_X38_E_Zero_Dispersion -2.04435
+MUSETT_T1_DSSD_X39_E_Zero_Dispersion -1.75536
+MUSETT_T1_DSSD_X40_E_Zero_Dispersion 5.47503
+MUSETT_T1_DSSD_X41_E_Zero_Dispersion -1.38296
+MUSETT_T1_DSSD_X42_E_Zero_Dispersion -1.76707
+MUSETT_T1_DSSD_X43_E_Zero_Dispersion 0.635043
+MUSETT_T1_DSSD_X44_E_Zero_Dispersion -1.5517
+MUSETT_T1_DSSD_X45_E_Zero_Dispersion 1.82123
+MUSETT_T1_DSSD_X46_E_Zero_Dispersion -2.32144
+MUSETT_T1_DSSD_X47_E_Zero_Dispersion -1.44783
+MUSETT_T1_DSSD_X48_E_Zero_Dispersion -1.74129
+MUSETT_T1_DSSD_X49_E_Zero_Dispersion -4.22587
+MUSETT_T1_DSSD_X50_E_Zero_Dispersion -5.75529
+MUSETT_T1_DSSD_X51_E_Zero_Dispersion -5.79249
+MUSETT_T1_DSSD_X52_E_Zero_Dispersion -1.1894
+MUSETT_T1_DSSD_X53_E_Zero_Dispersion -7.15251
+MUSETT_T1_DSSD_X54_E_Zero_Dispersion -5.26423
+MUSETT_T1_DSSD_X55_E_Zero_Dispersion -5.06334
+MUSETT_T1_DSSD_X56_E_Zero_Dispersion -3.72446
+MUSETT_T1_DSSD_X57_E_Zero_Dispersion -1.33524
+MUSETT_T1_DSSD_X58_E_Zero_Dispersion -5.7377
+MUSETT_T1_DSSD_X59_E_Zero_Dispersion -1.44175
+MUSETT_T1_DSSD_X60_E_Zero_Dispersion -2.31319
+MUSETT_T1_DSSD_X61_E_Zero_Dispersion -6.84675
+MUSETT_T1_DSSD_X62_E_Zero_Dispersion -0.288522
+MUSETT_T1_DSSD_X63_E_Zero_Dispersion -1.4453
+MUSETT_T1_DSSD_X64_E_Zero_Dispersion -1.14669
+MUSETT_T1_DSSD_X65_E_Zero_Dispersion -4.61755
+MUSETT_T1_DSSD_X66_E_Zero_Dispersion -0.976242
+MUSETT_T1_DSSD_X67_E_Zero_Dispersion -1.10734
+MUSETT_T1_DSSD_X68_E_Zero_Dispersion -1.16978
+MUSETT_T1_DSSD_X69_E_Zero_Dispersion -2.47694
+MUSETT_T1_DSSD_X70_E_Zero_Dispersion -2.72998
+MUSETT_T1_DSSD_X71_E_Zero_Dispersion -0.877548
+MUSETT_T1_DSSD_X72_E_Zero_Dispersion -1.27685
+MUSETT_T1_DSSD_X73_E_Zero_Dispersion -0.870154
+MUSETT_T1_DSSD_X74_E_Zero_Dispersion -0.971537
+MUSETT_T1_DSSD_X75_E_Zero_Dispersion -1.95811
+MUSETT_T1_DSSD_X76_E_Zero_Dispersion 2.72883
+MUSETT_T1_DSSD_X77_E_Zero_Dispersion 0.949706
+MUSETT_T1_DSSD_X78_E_Zero_Dispersion -0.718313
+MUSETT_T1_DSSD_X79_E_Zero_Dispersion 0.487229
+MUSETT_T1_DSSD_X80_E_Zero_Dispersion -1.87203
+MUSETT_T1_DSSD_X81_E_Zero_Dispersion -3.64332
+MUSETT_T1_DSSD_X82_E_Zero_Dispersion -3.25926
+MUSETT_T1_DSSD_X83_E_Zero_Dispersion 1.34689
+MUSETT_T1_DSSD_X84_E_Zero_Dispersion -2.76229
+MUSETT_T1_DSSD_X85_E_Zero_Dispersion -0.820758
+MUSETT_T1_DSSD_X86_E_Zero_Dispersion 3.15827
+MUSETT_T1_DSSD_X87_E_Zero_Dispersion -4.89819
+MUSETT_T1_DSSD_X88_E_Zero_Dispersion -1.72898
+MUSETT_T1_DSSD_X89_E_Zero_Dispersion -1.73753
+MUSETT_T1_DSSD_X90_E_Zero_Dispersion -2.90363
+MUSETT_T1_DSSD_X91_E_Zero_Dispersion -3.4417
+MUSETT_T1_DSSD_X92_E_Zero_Dispersion -2.99842
+MUSETT_T1_DSSD_X93_E_Zero_Dispersion -1.99586
+MUSETT_T1_DSSD_X94_E_Zero_Dispersion -5.37291
+MUSETT_T1_DSSD_X95_E_Zero_Dispersion -0.680694
+MUSETT_T1_DSSD_X96_E_Zero_Dispersion 0.917666
+MUSETT_T1_DSSD_X97_E_Zero_Dispersion -2.42032
+MUSETT_T1_DSSD_X98_E_Zero_Dispersion 3.42181
+MUSETT_T1_DSSD_X99_E_Zero_Dispersion 1.9192
+MUSETT_T1_DSSD_X100_E_Zero_Dispersion -0.131786
+MUSETT_T1_DSSD_X101_E_Zero_Dispersion 0.365438
+MUSETT_T1_DSSD_X102_E_Zero_Dispersion 2.6059
+MUSETT_T1_DSSD_X103_E_Zero_Dispersion 1.11622
+MUSETT_T1_DSSD_X104_E_Zero_Dispersion -2.06555
+MUSETT_T1_DSSD_X105_E_Zero_Dispersion -3.4939
+MUSETT_T1_DSSD_X106_E_Zero_Dispersion 2.85683
+MUSETT_T1_DSSD_X107_E_Zero_Dispersion 2.2385
+MUSETT_T1_DSSD_X108_E_Zero_Dispersion -2.77996
+MUSETT_T1_DSSD_X109_E_Zero_Dispersion -1.11409
+MUSETT_T1_DSSD_X110_E_Zero_Dispersion -0.0559515
+MUSETT_T1_DSSD_X111_E_Zero_Dispersion 2.19809
+MUSETT_T1_DSSD_X112_E_Zero_Dispersion 1.1396
+MUSETT_T1_DSSD_X113_E_Zero_Dispersion -2.7754
+MUSETT_T1_DSSD_X114_E_Zero_Dispersion -0.753716
+MUSETT_T1_DSSD_X115_E_Zero_Dispersion -0.402319
+MUSETT_T1_DSSD_X116_E_Zero_Dispersion -2.20761
+MUSETT_T1_DSSD_X117_E_Zero_Dispersion -0.864114
+MUSETT_T1_DSSD_X118_E_Zero_Dispersion -1.62397
+MUSETT_T1_DSSD_X119_E_Zero_Dispersion -2.71892
+MUSETT_T1_DSSD_X120_E_Zero_Dispersion 1.49164
+MUSETT_T1_DSSD_X121_E_Zero_Dispersion 1.75966
+MUSETT_T1_DSSD_X122_E_Zero_Dispersion 1.11113
+MUSETT_T1_DSSD_X123_E_Zero_Dispersion 3.18743
+MUSETT_T1_DSSD_X124_E_Zero_Dispersion 0.422646
+MUSETT_T1_DSSD_X125_E_Zero_Dispersion -0.292593
+MUSETT_T1_DSSD_X126_E_Zero_Dispersion -0.836667
+MUSETT_T1_DSSD_X127_E_Zero_Dispersion 0.996941
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/latex/double_alpha_run_0274_Y_MM1_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/latex/double_alpha_run_0274_Y_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..649f1f152426bccf5d14303f65883cc30694cfd2
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/latex/double_alpha_run_0274_Y_MM1_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+22 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.33191
+
+Sigma fit sigma: 0.487957
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c8baaab11e0e8a21433926ecac9ae88c9197f13b
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_E 62.9053 -0.0076766
+MUSETT_T2_DSSD_Y1_E 63.6771 -0.00777088
+MUSETT_T2_DSSD_Y2_E 62.331 -0.00760718
+MUSETT_T2_DSSD_Y3_E 63.2578 -0.00772102
+MUSETT_T2_DSSD_Y4_E 62.7132 -0.00765406
+MUSETT_T2_DSSD_Y5_E 62.5292 -0.00763228
+MUSETT_T2_DSSD_Y6_E 62.8143 -0.00766532
+MUSETT_T2_DSSD_Y7_E 62.3329 -0.00760504
+MUSETT_T2_DSSD_Y8_E 62.4752 -0.00762288
+MUSETT_T2_DSSD_Y9_E 63.2006 -0.00771317
+MUSETT_T2_DSSD_Y10_E 62.6927 -0.00764988
+MUSETT_T2_DSSD_Y11_E 62.3066 -0.00760391
+MUSETT_T2_DSSD_Y12_E 61.8667 -0.00755085
+MUSETT_T2_DSSD_Y13_E 62.5037 -0.00762743
+MUSETT_T2_DSSD_Y14_E 62.7099 -0.00765226
+MUSETT_T2_DSSD_Y15_E 63.2095 -0.00771415
+MUSETT_T2_DSSD_Y16_E 61.1316 -0.00745457
+MUSETT_T2_DSSD_Y17_E 60.4523 -0.0073738
+MUSETT_T2_DSSD_Y18_E 60.4246 -0.00737171
+MUSETT_T2_DSSD_Y19_E 61.8438 -0.00754775
+MUSETT_T2_DSSD_Y20_E 60.7912 -0.00741418
+MUSETT_T2_DSSD_Y21_E 60.568 -0.00738896
+MUSETT_T2_DSSD_Y22_E 62.104 -0.00758231
+MUSETT_T2_DSSD_Y23_E 60.6819 -0.0074026
+MUSETT_T2_DSSD_Y24_E 60.7567 -0.00741337
+MUSETT_T2_DSSD_Y25_E 61.2726 -0.00747614
+MUSETT_T2_DSSD_Y26_E 61.018 -0.007449
+MUSETT_T2_DSSD_Y27_E 61.0798 -0.00745285
+MUSETT_T2_DSSD_Y28_E 61.4819 -0.00750524
+MUSETT_T2_DSSD_Y29_E 61.0725 -0.00745017
+MUSETT_T2_DSSD_Y30_E 61.0692 -0.00745178
+MUSETT_T2_DSSD_Y31_E 61.4178 -0.00749438
+MUSETT_T2_DSSD_Y32_E 56.1768 -0.00685736
+MUSETT_T2_DSSD_Y33_E 56.1338 -0.00684851
+MUSETT_T2_DSSD_Y34_E 56.6319 -0.00691225
+MUSETT_T2_DSSD_Y35_E 56.4588 -0.00688948
+MUSETT_T2_DSSD_Y36_E 56.8551 -0.00694108
+MUSETT_T2_DSSD_Y37_E 56.7297 -0.00692354
+MUSETT_T2_DSSD_Y38_E 56.5669 -0.00690904
+MUSETT_T2_DSSD_Y39_E 56.2353 -0.00686434
+MUSETT_T2_DSSD_Y40_E 56.0605 -0.00683605
+MUSETT_T2_DSSD_Y41_E 57.8921 -0.00706581
+MUSETT_T2_DSSD_Y42_E 56.8378 -0.00694167
+MUSETT_T2_DSSD_Y43_E 56.1668 -0.00685633
+MUSETT_T2_DSSD_Y44_E 57.1736 -0.00697438
+MUSETT_T2_DSSD_Y45_E 57.1146 -0.00697004
+MUSETT_T2_DSSD_Y46_E 57.0347 -0.00696503
+MUSETT_T2_DSSD_Y47_E 56.6995 -0.00692395
+MUSETT_T2_DSSD_Y48_E 57.6463 -0.00703935
+MUSETT_T2_DSSD_Y49_E 56.8816 -0.00694221
+MUSETT_T2_DSSD_Y50_E 57.6197 -0.007027
+MUSETT_T2_DSSD_Y51_E 57.0982 -0.00696628
+MUSETT_T2_DSSD_Y52_E 57.0607 -0.0069611
+MUSETT_T2_DSSD_Y53_E 58.2938 -0.00711296
+MUSETT_T2_DSSD_Y54_E 57.3536 -0.00699681
+MUSETT_T2_DSSD_Y55_E 57.7002 -0.0070433
+MUSETT_T2_DSSD_Y56_E 57.6913 -0.0070446
+MUSETT_T2_DSSD_Y57_E 57.4625 -0.00701406
+MUSETT_T2_DSSD_Y58_E 57.5339 -0.00702592
+MUSETT_T2_DSSD_Y59_E 58.1037 -0.00709062
+MUSETT_T2_DSSD_Y60_E 57.6517 -0.00703636
+MUSETT_T2_DSSD_Y61_E 57.2738 -0.00699268
+MUSETT_T2_DSSD_Y62_E 57.5479 -0.00702183
+MUSETT_T2_DSSD_Y63_E 57.9209 -0.0070673
+MUSETT_T2_DSSD_Y64_E 59.3445 -0.00724661
+MUSETT_T2_DSSD_Y65_E 59.1152 -0.00720968
+MUSETT_T2_DSSD_Y66_E 59.3455 -0.00724365
+MUSETT_T2_DSSD_Y67_E 60.3675 -0.00736968
+MUSETT_T2_DSSD_Y68_E 59.4674 -0.00725991
+MUSETT_T2_DSSD_Y69_E 59.7805 -0.00729818
+MUSETT_T2_DSSD_Y70_E 59.407 -0.0072506
+MUSETT_T2_DSSD_Y71_E 59.8303 -0.00730098
+MUSETT_T2_DSSD_Y72_E 59.6133 -0.00727175
+MUSETT_T2_DSSD_Y73_E 59.4611 -0.00725939
+MUSETT_T2_DSSD_Y74_E 59.819 -0.00730197
+MUSETT_T2_DSSD_Y75_E 59.9389 -0.00731478
+MUSETT_T2_DSSD_Y76_E 59.2682 -0.00723539
+MUSETT_T2_DSSD_Y77_E 59.7239 -0.00728809
+MUSETT_T2_DSSD_Y78_E 59.2572 -0.0072339
+MUSETT_T2_DSSD_Y79_E 59.9111 -0.00731045
+MUSETT_T2_DSSD_Y80_E 60.372 -0.00736937
+MUSETT_T2_DSSD_Y81_E 60.9866 -0.00744401
+MUSETT_T2_DSSD_Y82_E 60.3006 -0.00735778
+MUSETT_T2_DSSD_Y83_E 61.091 -0.00745649
+MUSETT_T2_DSSD_Y84_E 61.1408 -0.0074625
+MUSETT_T2_DSSD_Y85_E 60.6215 -0.00739872
+MUSETT_T2_DSSD_Y86_E 60.8191 -0.00742516
+MUSETT_T2_DSSD_Y87_E 61.2005 -0.00747154
+MUSETT_T2_DSSD_Y88_E 60.6151 -0.00739683
+MUSETT_T2_DSSD_Y89_E 60.6023 -0.00739569
+MUSETT_T2_DSSD_Y90_E 61.294 -0.00748233
+MUSETT_T2_DSSD_Y91_E 60.3249 -0.00736066
+MUSETT_T2_DSSD_Y92_E 60.7802 -0.00741634
+MUSETT_T2_DSSD_Y93_E 60.5912 -0.0073986
+MUSETT_T2_DSSD_Y94_E 61.0494 -0.0074543
+MUSETT_T2_DSSD_Y95_E 61.2259 -0.0074723
+MUSETT_T2_DSSD_Y96_E 56.767 -0.00692993
+MUSETT_T2_DSSD_Y97_E 55.8842 -0.00682215
+MUSETT_T2_DSSD_Y98_E 55.9948 -0.00683354
+MUSETT_T2_DSSD_Y99_E 56.5032 -0.00689574
+MUSETT_T2_DSSD_Y100_E 56.2013 -0.00685846
+MUSETT_T2_DSSD_Y101_E 56.6875 -0.00692035
+MUSETT_T2_DSSD_Y102_E 55.8833 -0.00682028
+MUSETT_T2_DSSD_Y103_E 56.9716 -0.00695232
+MUSETT_T2_DSSD_Y104_E 55.9808 -0.0068345
+MUSETT_T2_DSSD_Y105_E 56.3951 -0.00688072
+MUSETT_T2_DSSD_Y106_E 56.523 -0.00690076
+MUSETT_T2_DSSD_Y107_E 57.3852 -0.00700542
+MUSETT_T2_DSSD_Y108_E 56.8841 -0.006943
+MUSETT_T2_DSSD_Y109_E 56.4088 -0.00688278
+MUSETT_T2_DSSD_Y110_E 56.9256 -0.00694942
+MUSETT_T2_DSSD_Y111_E 56.0116 -0.00683751
+MUSETT_T2_DSSD_Y112_E 56.3369 -0.00687712
+MUSETT_T2_DSSD_Y113_E 57.2396 -0.00698874
+MUSETT_T2_DSSD_Y114_E 56.4917 -0.00689683
+MUSETT_T2_DSSD_Y115_E 56.6869 -0.00691913
+MUSETT_T2_DSSD_Y116_E 56.2888 -0.00687008
+MUSETT_T2_DSSD_Y117_E 56.3479 -0.00687777
+MUSETT_T2_DSSD_Y118_E 56.6964 -0.00692013
+MUSETT_T2_DSSD_Y119_E 56.5915 -0.00690786
+MUSETT_T2_DSSD_Y120_E 56.0884 -0.00684535
+MUSETT_T2_DSSD_Y121_E 56.9015 -0.00694589
+MUSETT_T2_DSSD_Y122_E 57.3743 -0.0070056
+MUSETT_T2_DSSD_Y123_E 6.82575 -0.844837
+MUSETT_T2_DSSD_Y124_E 56.0464 -0.00684178
+MUSETT_T2_DSSD_Y125_E 56.9017 -0.00694728
+MUSETT_T2_DSSD_Y126_E 56.2566 -0.006867
+MUSETT_T2_DSSD_Y127_E 56.0062 -0.00683531
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..d72fa5b9cad0904a8c51ed68141de2514ad9b58e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E_Zero_Dispersion -2.42348
+MUSETT_T2_DSSD_X1_E_Zero_Dispersion -2.32565
+MUSETT_T2_DSSD_X2_E_Zero_Dispersion -1.70954
+MUSETT_T2_DSSD_X3_E_Zero_Dispersion -0.93988
+MUSETT_T2_DSSD_X4_E_Zero_Dispersion -1.4585
+MUSETT_T2_DSSD_X5_E_Zero_Dispersion -0.728393
+MUSETT_T2_DSSD_X6_E_Zero_Dispersion -2.61116
+MUSETT_T2_DSSD_X7_E_Zero_Dispersion -4.26056
+MUSETT_T2_DSSD_X8_E_Zero_Dispersion -3.7517
+MUSETT_T2_DSSD_X9_E_Zero_Dispersion -1.85143
+MUSETT_T2_DSSD_X10_E_Zero_Dispersion -3.24938
+MUSETT_T2_DSSD_X11_E_Zero_Dispersion -2.01508
+MUSETT_T2_DSSD_X12_E_Zero_Dispersion -1.33746
+MUSETT_T2_DSSD_X13_E_Zero_Dispersion -2.5894
+MUSETT_T2_DSSD_X14_E_Zero_Dispersion -2.94817
+MUSETT_T2_DSSD_X15_E_Zero_Dispersion -1.96166
+MUSETT_T2_DSSD_X16_E_Zero_Dispersion -8.56126
+MUSETT_T2_DSSD_X17_E_Zero_Dispersion -6.25371
+MUSETT_T2_DSSD_X18_E_Zero_Dispersion -4.81945
+MUSETT_T2_DSSD_X19_E_Zero_Dispersion -1.67631
+MUSETT_T2_DSSD_X20_E_Zero_Dispersion -7.31559
+MUSETT_T2_DSSD_X21_E_Zero_Dispersion -5.09282
+MUSETT_T2_DSSD_X22_E_Zero_Dispersion 1.35023
+MUSETT_T2_DSSD_X23_E_Zero_Dispersion -5.38096
+MUSETT_T2_DSSD_X24_E_Zero_Dispersion -3.55712
+MUSETT_T2_DSSD_X25_E_Zero_Dispersion -3.75293
+MUSETT_T2_DSSD_X26_E_Zero_Dispersion 0.56756
+MUSETT_T2_DSSD_X27_E_Zero_Dispersion -3.50174
+MUSETT_T2_DSSD_X28_E_Zero_Dispersion 0.133472
+MUSETT_T2_DSSD_X29_E_Zero_Dispersion -5.4653
+MUSETT_T2_DSSD_X30_E_Zero_Dispersion -3.25333
+MUSETT_T2_DSSD_X31_E_Zero_Dispersion -3.17121
+MUSETT_T2_DSSD_X32_E_Zero_Dispersion -0.196339
+MUSETT_T2_DSSD_X33_E_Zero_Dispersion -4.4941
+MUSETT_T2_DSSD_X34_E_Zero_Dispersion -0.967098
+MUSETT_T2_DSSD_X35_E_Zero_Dispersion -2.92968
+MUSETT_T2_DSSD_X36_E_Zero_Dispersion 0.898504
+MUSETT_T2_DSSD_X37_E_Zero_Dispersion -1.74236
+MUSETT_T2_DSSD_X38_E_Zero_Dispersion 4.62804
+MUSETT_T2_DSSD_X39_E_Zero_Dispersion -0.387863
+MUSETT_T2_DSSD_X40_E_Zero_Dispersion -8.72277
+MUSETT_T2_DSSD_X41_E_Zero_Dispersion -1.27485
+MUSETT_T2_DSSD_X42_E_Zero_Dispersion 4.09026
+MUSETT_T2_DSSD_X43_E_Zero_Dispersion 0.043723
+MUSETT_T2_DSSD_X44_E_Zero_Dispersion -5.66238
+MUSETT_T2_DSSD_X45_E_Zero_Dispersion -2.29688
+MUSETT_T2_DSSD_X46_E_Zero_Dispersion 3.27154
+MUSETT_T2_DSSD_X47_E_Zero_Dispersion 3.10116
+MUSETT_T2_DSSD_X48_E_Zero_Dispersion 2.85014
+MUSETT_T2_DSSD_X49_E_Zero_Dispersion -1.59283
+MUSETT_T2_DSSD_X50_E_Zero_Dispersion -7.76806
+MUSETT_T2_DSSD_X51_E_Zero_Dispersion -4.36698
+MUSETT_T2_DSSD_X52_E_Zero_Dispersion -5.08248
+MUSETT_T2_DSSD_X53_E_Zero_Dispersion -3.43024
+MUSETT_T2_DSSD_X54_E_Zero_Dispersion -5.11109
+MUSETT_T2_DSSD_X55_E_Zero_Dispersion -0.211241
+MUSETT_T2_DSSD_X56_E_Zero_Dispersion 2.57154
+MUSETT_T2_DSSD_X57_E_Zero_Dispersion -0.480694
+MUSETT_T2_DSSD_X58_E_Zero_Dispersion 3.19339
+MUSETT_T2_DSSD_X59_E_Zero_Dispersion -2.44151
+MUSETT_T2_DSSD_X60_E_Zero_Dispersion -1.4014
+MUSETT_T2_DSSD_X61_E_Zero_Dispersion 1.4657
+MUSETT_T2_DSSD_X62_E_Zero_Dispersion -3.5779
+MUSETT_T2_DSSD_X63_E_Zero_Dispersion -3.62517
+MUSETT_T2_DSSD_X64_E_Zero_Dispersion 2.71683
+MUSETT_T2_DSSD_X65_E_Zero_Dispersion -7.40988
+MUSETT_T2_DSSD_X66_E_Zero_Dispersion -0.76599
+MUSETT_T2_DSSD_X67_E_Zero_Dispersion 0.661453
+MUSETT_T2_DSSD_X68_E_Zero_Dispersion 0.798704
+MUSETT_T2_DSSD_X69_E_Zero_Dispersion 0.847437
+MUSETT_T2_DSSD_X70_E_Zero_Dispersion -1.38987
+MUSETT_T2_DSSD_X71_E_Zero_Dispersion -2.82554
+MUSETT_T2_DSSD_X72_E_Zero_Dispersion -5.92974
+MUSETT_T2_DSSD_X73_E_Zero_Dispersion 1.07297
+MUSETT_T2_DSSD_X74_E_Zero_Dispersion -0.164958
+MUSETT_T2_DSSD_X75_E_Zero_Dispersion -2.22346
+MUSETT_T2_DSSD_X76_E_Zero_Dispersion 0.572025
+MUSETT_T2_DSSD_X77_E_Zero_Dispersion -2.72737
+MUSETT_T2_DSSD_X78_E_Zero_Dispersion 0.409691
+MUSETT_T2_DSSD_X79_E_Zero_Dispersion -3.26428
+MUSETT_T2_DSSD_X80_E_Zero_Dispersion -0.280829
+MUSETT_T2_DSSD_X81_E_Zero_Dispersion -0.701766
+MUSETT_T2_DSSD_X82_E_Zero_Dispersion -3.4871
+MUSETT_T2_DSSD_X83_E_Zero_Dispersion -0.994055
+MUSETT_T2_DSSD_X84_E_Zero_Dispersion -1.07151
+MUSETT_T2_DSSD_X85_E_Zero_Dispersion -1.50907
+MUSETT_T2_DSSD_X86_E_Zero_Dispersion 1.05267
+MUSETT_T2_DSSD_X87_E_Zero_Dispersion 0.85632
+MUSETT_T2_DSSD_X88_E_Zero_Dispersion -2.73801
+MUSETT_T2_DSSD_X89_E_Zero_Dispersion -2.26986
+MUSETT_T2_DSSD_X90_E_Zero_Dispersion 0.17018
+MUSETT_T2_DSSD_X91_E_Zero_Dispersion -3.58063
+MUSETT_T2_DSSD_X92_E_Zero_Dispersion -3.44762
+MUSETT_T2_DSSD_X93_E_Zero_Dispersion 2.45593
+MUSETT_T2_DSSD_X94_E_Zero_Dispersion 2.17782
+MUSETT_T2_DSSD_X95_E_Zero_Dispersion -1.70958
+MUSETT_T2_DSSD_X96_E_Zero_Dispersion 0.439838
+MUSETT_T2_DSSD_X97_E_Zero_Dispersion 0.413338
+MUSETT_T2_DSSD_X98_E_Zero_Dispersion -2.1071
+MUSETT_T2_DSSD_X99_E_Zero_Dispersion -1.93597
+MUSETT_T2_DSSD_X100_E_Zero_Dispersion -2.44353
+MUSETT_T2_DSSD_X101_E_Zero_Dispersion 0.573167
+MUSETT_T2_DSSD_X102_E_Zero_Dispersion -1.69432
+MUSETT_T2_DSSD_X103_E_Zero_Dispersion -2.61017
+MUSETT_T2_DSSD_X104_E_Zero_Dispersion 1.08866
+MUSETT_T2_DSSD_X105_E_Zero_Dispersion -4.10709
+MUSETT_T2_DSSD_X106_E_Zero_Dispersion 1.16204
+MUSETT_T2_DSSD_X107_E_Zero_Dispersion 0.461815
+MUSETT_T2_DSSD_X108_E_Zero_Dispersion -1.01862
+MUSETT_T2_DSSD_X109_E_Zero_Dispersion -3.64241
+MUSETT_T2_DSSD_X110_E_Zero_Dispersion 0.576806
+MUSETT_T2_DSSD_X111_E_Zero_Dispersion 0.178436
+MUSETT_T2_DSSD_X112_E_Zero_Dispersion 0.0622636
+MUSETT_T2_DSSD_X113_E_Zero_Dispersion 1.74031
+MUSETT_T2_DSSD_X114_E_Zero_Dispersion 1.02572
+MUSETT_T2_DSSD_X115_E_Zero_Dispersion -0.77606
+MUSETT_T2_DSSD_X116_E_Zero_Dispersion -1.32185
+MUSETT_T2_DSSD_X117_E_Zero_Dispersion -0.750783
+MUSETT_T2_DSSD_X118_E_Zero_Dispersion -0.97089
+MUSETT_T2_DSSD_X119_E_Zero_Dispersion -0.329617
+MUSETT_T2_DSSD_X120_E_Zero_Dispersion -1.65754
+MUSETT_T2_DSSD_X121_E_Zero_Dispersion -0.11324
+MUSETT_T2_DSSD_X122_E_Zero_Dispersion 2.2277
+MUSETT_T2_DSSD_X123_E_Zero_Dispersion 8183.92
+MUSETT_T2_DSSD_X124_E_Zero_Dispersion 0.214499
+MUSETT_T2_DSSD_X125_E_Zero_Dispersion 1.49584
+MUSETT_T2_DSSD_X126_E_Zero_Dispersion -0.310643
+MUSETT_T2_DSSD_X127_E_Zero_Dispersion -1.65641
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/latex/double_alpha_run_0274_Y_MM2_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/latex/double_alpha_run_0274_Y_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..08927343ad82e24a6674ca03041c4e2afb7df7bd
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/latex/double_alpha_run_0274_Y_MM2_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+123 &  1 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.38247
+
+Sigma fit sigma: 0.516623
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a404c4da212317405c288baa69957d161a3a4755
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_E 59.702 -0.00728302
+MUSETT_T3_DSSD_Y1_E 58.3787 -0.0071186
+MUSETT_T3_DSSD_Y2_E 59.5406 -0.00726078
+MUSETT_T3_DSSD_Y3_E 59.4207 -0.00724628
+MUSETT_T3_DSSD_Y4_E 59.2519 -0.00722493
+MUSETT_T3_DSSD_Y5_E 59.5148 -0.00725591
+MUSETT_T3_DSSD_Y6_E 59.2665 -0.00722811
+MUSETT_T3_DSSD_Y7_E 59.672 -0.00727764
+MUSETT_T3_DSSD_Y8_E 59.8899 -0.00730264
+MUSETT_T3_DSSD_Y9_E 59.8021 -0.00729111
+MUSETT_T3_DSSD_Y10_E 59.6681 -0.00727735
+MUSETT_T3_DSSD_Y11_E 59.293 -0.00723063
+MUSETT_T3_DSSD_Y12_E 59.176 -0.00721645
+MUSETT_T3_DSSD_Y13_E 59.3339 -0.00723976
+MUSETT_T3_DSSD_Y14_E 60.0332 -0.00732142
+MUSETT_T3_DSSD_Y15_E 59.2042 -0.00721921
+MUSETT_T3_DSSD_Y16_E 62.3463 -0.00760203
+MUSETT_T3_DSSD_Y17_E 62.4922 -0.00761942
+MUSETT_T3_DSSD_Y18_E 61.5402 -0.00750213
+MUSETT_T3_DSSD_Y19_E 62.3021 -0.00760024
+MUSETT_T3_DSSD_Y20_E 62.7324 -0.00765137
+MUSETT_T3_DSSD_Y21_E 62.9757 -0.00767956
+MUSETT_T3_DSSD_Y22_E 62.4365 -0.00761384
+MUSETT_T3_DSSD_Y23_E 62.4332 -0.00761375
+MUSETT_T3_DSSD_Y24_E 62.9777 -0.00768004
+MUSETT_T3_DSSD_Y25_E 63.0395 -0.00769065
+MUSETT_T3_DSSD_Y26_E 62.0007 -0.00756011
+MUSETT_T3_DSSD_Y27_E 62.9293 -0.00767512
+MUSETT_T3_DSSD_Y28_E 62.0982 -0.0075755
+MUSETT_T3_DSSD_Y29_E 62.4728 -0.00761992
+MUSETT_T3_DSSD_Y30_E 62.5931 -0.00763427
+MUSETT_T3_DSSD_Y31_E 62.5802 -0.00763452
+MUSETT_T3_DSSD_Y32_E 55.7914 -0.00680641
+MUSETT_T3_DSSD_Y33_E 55.7674 -0.00680123
+MUSETT_T3_DSSD_Y34_E 55.329 -0.00674626
+MUSETT_T3_DSSD_Y35_E 55.2499 -0.00673764
+MUSETT_T3_DSSD_Y36_E 55.2989 -0.00674368
+MUSETT_T3_DSSD_Y37_E 55.8055 -0.00680603
+MUSETT_T3_DSSD_Y38_E 55.4683 -0.00676398
+MUSETT_T3_DSSD_Y39_E 55.2091 -0.00673465
+MUSETT_T3_DSSD_Y40_E 54.9662 -0.00670321
+MUSETT_T3_DSSD_Y41_E 55.7319 -0.00679671
+MUSETT_T3_DSSD_Y42_E 55.5277 -0.0067717
+MUSETT_T3_DSSD_Y43_E 54.9271 -0.00669793
+MUSETT_T3_DSSD_Y44_E 55.2872 -0.00674212
+MUSETT_T3_DSSD_Y45_E 55.1636 -0.0067267
+MUSETT_T3_DSSD_Y46_E 55.5176 -0.00677111
+MUSETT_T3_DSSD_Y47_E 55.445 -0.00676249
+MUSETT_T3_DSSD_Y48_E 56.3994 -0.00688159
+MUSETT_T3_DSSD_Y49_E 56.3874 -0.00687186
+MUSETT_T3_DSSD_Y50_E 56.7626 -0.00692332
+MUSETT_T3_DSSD_Y51_E 56.5674 -0.00690086
+MUSETT_T3_DSSD_Y52_E 56.1204 -0.00684563
+MUSETT_T3_DSSD_Y53_E 56.5875 -0.00690296
+MUSETT_T3_DSSD_Y54_E 56.3352 -0.00687243
+MUSETT_T3_DSSD_Y55_E 56.6813 -0.0069144
+MUSETT_T3_DSSD_Y56_E 56.8614 -0.00694052
+MUSETT_T3_DSSD_Y57_E 56.3936 -0.00688224
+MUSETT_T3_DSSD_Y58_E 57.1705 -0.00697448
+MUSETT_T3_DSSD_Y59_E 56.5912 -0.00690253
+MUSETT_T3_DSSD_Y60_E 57.3671 -0.00699323
+MUSETT_T3_DSSD_Y61_E 56.748 -0.00692368
+MUSETT_T3_DSSD_Y62_E 56.3286 -0.00686989
+MUSETT_T3_DSSD_Y63_E 56.8989 -0.00693749
+MUSETT_T3_DSSD_Y64_E 58.9479 -0.00718907
+MUSETT_T3_DSSD_Y65_E 59.4791 -0.00725117
+MUSETT_T3_DSSD_Y66_E 59.1331 -0.00721363
+MUSETT_T3_DSSD_Y67_E 58.9369 -0.00718937
+MUSETT_T3_DSSD_Y68_E 58.9593 -0.00719074
+MUSETT_T3_DSSD_Y69_E 58.3407 -0.00711646
+MUSETT_T3_DSSD_Y70_E 58.7466 -0.00716412
+MUSETT_T3_DSSD_Y71_E 59.5453 -0.0072637
+MUSETT_T3_DSSD_Y72_E 59.7258 -0.00728509
+MUSETT_T3_DSSD_Y73_E 59.0505 -0.00720025
+MUSETT_T3_DSSD_Y74_E 59.0541 -0.00720339
+MUSETT_T3_DSSD_Y75_E 59.1222 -0.00721096
+MUSETT_T3_DSSD_Y76_E 59.1137 -0.00720993
+MUSETT_T3_DSSD_Y77_E 59.0423 -0.00720339
+MUSETT_T3_DSSD_Y78_E 58.6663 -0.00715385
+MUSETT_T3_DSSD_Y79_E 59.5802 -0.00726772
+MUSETT_T3_DSSD_Y80_E 62.6379 -0.00764533
+MUSETT_T3_DSSD_Y81_E 62.4283 -0.00761774
+MUSETT_T3_DSSD_Y82_E 62.1525 -0.00758286
+MUSETT_T3_DSSD_Y83_E 61.8869 -0.00755255
+MUSETT_T3_DSSD_Y84_E 61.7925 -0.0075406
+MUSETT_T3_DSSD_Y85_E 62.4247 -0.00761548
+MUSETT_T3_DSSD_Y86_E 61.9409 -0.00755804
+MUSETT_T3_DSSD_Y87_E 62.6041 -0.00763803
+MUSETT_T3_DSSD_Y88_E 62.3788 -0.00761206
+MUSETT_T3_DSSD_Y89_E 62.1087 -0.00757722
+MUSETT_T3_DSSD_Y90_E 61.3528 -0.00748336
+MUSETT_T3_DSSD_Y91_E 61.7744 -0.00753941
+MUSETT_T3_DSSD_Y92_E 61.4575 -0.00749639
+MUSETT_T3_DSSD_Y93_E 61.7842 -0.00753712
+MUSETT_T3_DSSD_Y94_E 61.6046 -0.00751549
+MUSETT_T3_DSSD_Y95_E 61.6088 -0.00752019
+MUSETT_T3_DSSD_Y96_E 56.2634 -0.00686135
+MUSETT_T3_DSSD_Y97_E 56.2993 -0.00686374
+MUSETT_T3_DSSD_Y98_E 55.8122 -0.00680555
+MUSETT_T3_DSSD_Y99_E 55.437 -0.00675937
+MUSETT_T3_DSSD_Y100_E 55.921 -0.00682207
+MUSETT_T3_DSSD_Y101_E 55.8696 -0.00681459
+MUSETT_T3_DSSD_Y102_E 55.5832 -0.0067806
+MUSETT_T3_DSSD_Y103_E 55.6435 -0.00678703
+MUSETT_T3_DSSD_Y104_E 55.4529 -0.00676431
+MUSETT_T3_DSSD_Y105_E 55.8255 -0.00680724
+MUSETT_T3_DSSD_Y106_E 56.1601 -0.00685133
+MUSETT_T3_DSSD_Y107_E 55.9735 -0.00682879
+MUSETT_T3_DSSD_Y108_E 55.277 -0.00674092
+MUSETT_T3_DSSD_Y109_E 55.3963 -0.00675567
+MUSETT_T3_DSSD_Y110_E 56.2012 -0.00685345
+MUSETT_T3_DSSD_Y111_E 56.2256 -0.00685819
+MUSETT_T3_DSSD_Y112_E 56.9505 -0.00694708
+MUSETT_T3_DSSD_Y113_E 56.652 -0.00691043
+MUSETT_T3_DSSD_Y114_E 56.4607 -0.0068827
+MUSETT_T3_DSSD_Y115_E 56.5407 -0.00689618
+MUSETT_T3_DSSD_Y116_E 57.1472 -0.00696739
+MUSETT_T3_DSSD_Y117_E 56.8202 -0.00692948
+MUSETT_T3_DSSD_Y118_E 56.3612 -0.00687348
+MUSETT_T3_DSSD_Y119_E 57.3636 -0.00699479
+MUSETT_T3_DSSD_Y120_E 57.1678 -0.00697736
+MUSETT_T3_DSSD_Y121_E 56.3742 -0.00687323
+MUSETT_T3_DSSD_Y122_E 56.9107 -0.00694054
+MUSETT_T3_DSSD_Y123_E 56.493 -0.00688812
+MUSETT_T3_DSSD_Y124_E 57.1898 -0.00697686
+MUSETT_T3_DSSD_Y125_E 56.6657 -0.00691505
+MUSETT_T3_DSSD_Y126_E 57.119 -0.00697105
+MUSETT_T3_DSSD_Y127_E 56.999 -0.00695078
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..2751b83f51f665bbaa8e8fad09a37f1e59ac5a4d
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E_Zero_Dispersion -5.41957
+MUSETT_T3_DSSD_X1_E_Zero_Dispersion -8.86995
+MUSETT_T3_DSSD_X2_E_Zero_Dispersion -8.30108
+MUSETT_T3_DSSD_X3_E_Zero_Dispersion -8.15939
+MUSETT_T3_DSSD_X4_E_Zero_Dispersion -9.03932
+MUSETT_T3_DSSD_X5_E_Zero_Dispersion -10.2498
+MUSETT_T3_DSSD_X6_E_Zero_Dispersion -7.43945
+MUSETT_T3_DSSD_X7_E_Zero_Dispersion -7.36836
+MUSETT_T3_DSSD_X8_E_Zero_Dispersion -9.11958
+MUSETT_T3_DSSD_X9_E_Zero_Dispersion -10.0619
+MUSETT_T3_DSSD_X10_E_Zero_Dispersion -7.15612
+MUSETT_T3_DSSD_X11_E_Zero_Dispersion -8.24408
+MUSETT_T3_DSSD_X12_E_Zero_Dispersion -8.14575
+MUSETT_T3_DSSD_X13_E_Zero_Dispersion -3.56741
+MUSETT_T3_DSSD_X14_E_Zero_Dispersion -7.66734
+MUSETT_T3_DSSD_X15_E_Zero_Dispersion -8.92918
+MUSETT_T3_DSSD_X16_E_Zero_Dispersion -9.27725
+MUSETT_T3_DSSD_X17_E_Zero_Dispersion -9.70349
+MUSETT_T3_DSSD_X18_E_Zero_Dispersion -11.0327
+MUSETT_T3_DSSD_X19_E_Zero_Dispersion -5.38831
+MUSETT_T3_DSSD_X20_E_Zero_Dispersion -6.83881
+MUSETT_T3_DSSD_X21_E_Zero_Dispersion -8.42252
+MUSETT_T3_DSSD_X22_E_Zero_Dispersion -8.39345
+MUSETT_T3_DSSD_X23_E_Zero_Dispersion -8.05925
+MUSETT_T3_DSSD_X24_E_Zero_Dispersion -8.17293
+MUSETT_T3_DSSD_X25_E_Zero_Dispersion -4.9071
+MUSETT_T3_DSSD_X26_E_Zero_Dispersion -9.02688
+MUSETT_T3_DSSD_X27_E_Zero_Dispersion -7.12465
+MUSETT_T3_DSSD_X28_E_Zero_Dispersion -5.2376
+MUSETT_T3_DSSD_X29_E_Zero_Dispersion -6.61771
+MUSETT_T3_DSSD_X30_E_Zero_Dispersion -6.96243
+MUSETT_T3_DSSD_X31_E_Zero_Dispersion -5.00018
+MUSETT_T3_DSSD_X32_E_Zero_Dispersion -4.88267
+MUSETT_T3_DSSD_X33_E_Zero_Dispersion -7.59861
+MUSETT_T3_DSSD_X34_E_Zero_Dispersion -9.43247
+MUSETT_T3_DSSD_X35_E_Zero_Dispersion -8.19111
+MUSETT_T3_DSSD_X36_E_Zero_Dispersion -8.10079
+MUSETT_T3_DSSD_X37_E_Zero_Dispersion -7.41225
+MUSETT_T3_DSSD_X38_E_Zero_Dispersion -8.5484
+MUSETT_T3_DSSD_X39_E_Zero_Dispersion -5.77262
+MUSETT_T3_DSSD_X40_E_Zero_Dispersion -7.97901
+MUSETT_T3_DSSD_X41_E_Zero_Dispersion -7.83998
+MUSETT_T3_DSSD_X42_E_Zero_Dispersion -7.95986
+MUSETT_T3_DSSD_X43_E_Zero_Dispersion -8.60867
+MUSETT_T3_DSSD_X44_E_Zero_Dispersion -8.28093
+MUSETT_T3_DSSD_X45_E_Zero_Dispersion -8.6904
+MUSETT_T3_DSSD_X46_E_Zero_Dispersion -7.19054
+MUSETT_T3_DSSD_X47_E_Zero_Dispersion -6.90563
+MUSETT_T3_DSSD_X48_E_Zero_Dispersion -3.70104
+MUSETT_T3_DSSD_X49_E_Zero_Dispersion -13.5441
+MUSETT_T3_DSSD_X50_E_Zero_Dispersion -6.76592
+MUSETT_T3_DSSD_X51_E_Zero_Dispersion -5.14453
+MUSETT_T3_DSSD_X52_E_Zero_Dispersion -5.99688
+MUSETT_T3_DSSD_X53_E_Zero_Dispersion -5.57742
+MUSETT_T3_DSSD_X54_E_Zero_Dispersion -5.26969
+MUSETT_T3_DSSD_X55_E_Zero_Dispersion -5.56943
+MUSETT_T3_DSSD_X56_E_Zero_Dispersion -0.672954
+MUSETT_T3_DSSD_X57_E_Zero_Dispersion -2.07153
+MUSETT_T3_DSSD_X58_E_Zero_Dispersion -5.09013
+MUSETT_T3_DSSD_X59_E_Zero_Dispersion -6.62418
+MUSETT_T3_DSSD_X60_E_Zero_Dispersion -11.2358
+MUSETT_T3_DSSD_X61_E_Zero_Dispersion -4.21565
+MUSETT_T3_DSSD_X62_E_Zero_Dispersion -7.34583
+MUSETT_T3_DSSD_X63_E_Zero_Dispersion -9.65512
+MUSETT_T3_DSSD_X64_E_Zero_Dispersion -7.65683
+MUSETT_T3_DSSD_X65_E_Zero_Dispersion -10.6823
+MUSETT_T3_DSSD_X66_E_Zero_Dispersion -5.40653
+MUSETT_T3_DSSD_X67_E_Zero_Dispersion -5.79389
+MUSETT_T3_DSSD_X68_E_Zero_Dispersion -7.3289
+MUSETT_T3_DSSD_X69_E_Zero_Dispersion -5.99778
+MUSETT_T3_DSSD_X70_E_Zero_Dispersion -8.12196
+MUSETT_T3_DSSD_X71_E_Zero_Dispersion -5.65164
+MUSETT_T3_DSSD_X72_E_Zero_Dispersion -6.36576
+MUSETT_T3_DSSD_X73_E_Zero_Dispersion -9.1687
+MUSETT_T3_DSSD_X74_E_Zero_Dispersion -6.09965
+MUSETT_T3_DSSD_X75_E_Zero_Dispersion -6.93288
+MUSETT_T3_DSSD_X76_E_Zero_Dispersion -6.92679
+MUSETT_T3_DSSD_X77_E_Zero_Dispersion -4.45287
+MUSETT_T3_DSSD_X78_E_Zero_Dispersion -8.66758
+MUSETT_T3_DSSD_X79_E_Zero_Dispersion -5.9207
+MUSETT_T3_DSSD_X80_E_Zero_Dispersion -0.957496
+MUSETT_T3_DSSD_X81_E_Zero_Dispersion -3.12253
+MUSETT_T3_DSSD_X82_E_Zero_Dispersion -4.44679
+MUSETT_T3_DSSD_X83_E_Zero_Dispersion -2.17414
+MUSETT_T3_DSSD_X84_E_Zero_Dispersion -2.63732
+MUSETT_T3_DSSD_X85_E_Zero_Dispersion -5.08047
+MUSETT_T3_DSSD_X86_E_Zero_Dispersion -3.36589
+MUSETT_T3_DSSD_X87_E_Zero_Dispersion -4.36667
+MUSETT_T3_DSSD_X88_E_Zero_Dispersion -2.74132
+MUSETT_T3_DSSD_X89_E_Zero_Dispersion -4.76239
+MUSETT_T3_DSSD_X90_E_Zero_Dispersion -6.55583
+MUSETT_T3_DSSD_X91_E_Zero_Dispersion -1.53525
+MUSETT_T3_DSSD_X92_E_Zero_Dispersion -6.27653
+MUSETT_T3_DSSD_X93_E_Zero_Dispersion -5.3257
+MUSETT_T3_DSSD_X94_E_Zero_Dispersion -5.01043
+MUSETT_T3_DSSD_X95_E_Zero_Dispersion -0.456113
+MUSETT_T3_DSSD_X96_E_Zero_Dispersion -8.04745
+MUSETT_T3_DSSD_X97_E_Zero_Dispersion -10.4259
+MUSETT_T3_DSSD_X98_E_Zero_Dispersion -8.97827
+MUSETT_T3_DSSD_X99_E_Zero_Dispersion -9.50101
+MUSETT_T3_DSSD_X100_E_Zero_Dispersion -5.06649
+MUSETT_T3_DSSD_X101_E_Zero_Dispersion -6.52895
+MUSETT_T3_DSSD_X102_E_Zero_Dispersion -5.38737
+MUSETT_T3_DSSD_X103_E_Zero_Dispersion -6.51207
+MUSETT_T3_DSSD_X104_E_Zero_Dispersion -5.86657
+MUSETT_T3_DSSD_X105_E_Zero_Dispersion -8.89782
+MUSETT_T3_DSSD_X106_E_Zero_Dispersion -4.95711
+MUSETT_T3_DSSD_X107_E_Zero_Dispersion -4.69307
+MUSETT_T3_DSSD_X108_E_Zero_Dispersion -8.20475
+MUSETT_T3_DSSD_X109_E_Zero_Dispersion -7.97014
+MUSETT_T3_DSSD_X110_E_Zero_Dispersion -8.41562
+MUSETT_T3_DSSD_X111_E_Zero_Dispersion -6.30905
+MUSETT_T3_DSSD_X112_E_Zero_Dispersion -5.75683
+MUSETT_T3_DSSD_X113_E_Zero_Dispersion -6.0403
+MUSETT_T3_DSSD_X114_E_Zero_Dispersion -11.2787
+MUSETT_T3_DSSD_X115_E_Zero_Dispersion -6.84209
+MUSETT_T3_DSSD_X116_E_Zero_Dispersion -10.0933
+MUSETT_T3_DSSD_X117_E_Zero_Dispersion -7.77647
+MUSETT_T3_DSSD_X118_E_Zero_Dispersion -7.81202
+MUSETT_T3_DSSD_X119_E_Zero_Dispersion -8.89558
+MUSETT_T3_DSSD_X120_E_Zero_Dispersion -1.3233
+MUSETT_T3_DSSD_X121_E_Zero_Dispersion -10.0015
+MUSETT_T3_DSSD_X122_E_Zero_Dispersion -7.74672
+MUSETT_T3_DSSD_X123_E_Zero_Dispersion -9.50896
+MUSETT_T3_DSSD_X124_E_Zero_Dispersion -5.07719
+MUSETT_T3_DSSD_X125_E_Zero_Dispersion -2.54399
+MUSETT_T3_DSSD_X126_E_Zero_Dispersion -1.7462
+MUSETT_T3_DSSD_X127_E_Zero_Dispersion -8.38043
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/latex/double_alpha_run_0274_Y_MM3_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/latex/double_alpha_run_0274_Y_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..729d52a0b8315dd863e3bca55ac7e06e75028201
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/latex/double_alpha_run_0274_Y_MM3_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.00954
+
+Sigma fit sigma: 0.166493
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..3a2fa5a79e1b882f99538a1c3ea7ce354d532d91
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X1_E -61.1208 0.00746406
+MUSETT_T0_DSSD_X2_E -61.6675 0.00752582
+MUSETT_T0_DSSD_X3_E -61.2762 0.0074817
+MUSETT_T0_DSSD_X4_E -61.1528 0.00746629
+MUSETT_T0_DSSD_X5_E -61.4073 0.00749789
+MUSETT_T0_DSSD_X6_E -61.2983 0.00748309
+MUSETT_T0_DSSD_X7_E -60.9942 0.00744676
+MUSETT_T0_DSSD_X8_E -60.7568 0.00741862
+MUSETT_T0_DSSD_X9_E -60.7209 0.00741264
+MUSETT_T0_DSSD_X10_E -62.3275 0.00760814
+MUSETT_T0_DSSD_X11_E -62.0191 0.00757165
+MUSETT_T0_DSSD_X12_E -61.6158 0.00752169
+MUSETT_T0_DSSD_X13_E -61.6131 0.0075228
+MUSETT_T0_DSSD_X14_E -61.419 0.00749721
+MUSETT_T0_DSSD_X15_E -62.1513 0.00758648
+MUSETT_T0_DSSD_X16_E -61.0179 0.00744761
+MUSETT_T0_DSSD_X17_E -62.6095 0.00764466
+MUSETT_T0_DSSD_X18_E -61.9721 0.00757029
+MUSETT_T0_DSSD_X19_E -61.8277 0.00754841
+MUSETT_T0_DSSD_X20_E -61.9456 0.00756393
+MUSETT_T0_DSSD_X21_E -63.5377 0.00775798
+MUSETT_T0_DSSD_X22_E -62.0787 0.00758034
+MUSETT_T0_DSSD_X23_E -61.9391 0.00756191
+MUSETT_T0_DSSD_X24_E -62.145 0.00758935
+MUSETT_T0_DSSD_X25_E -62.3753 0.00761693
+MUSETT_T0_DSSD_X26_E -62.5654 0.00763812
+MUSETT_T0_DSSD_X27_E -62.6261 0.00764629
+MUSETT_T0_DSSD_X28_E -62.036 0.00757722
+MUSETT_T0_DSSD_X29_E -62.7202 0.00765514
+MUSETT_T0_DSSD_X30_E -62.1674 0.00759131
+MUSETT_T0_DSSD_X31_E -63.0507 0.00769798
+MUSETT_T0_DSSD_X32_E -62.2015 0.00759476
+MUSETT_T0_DSSD_X33_E -56.0625 0.00684513
+MUSETT_T0_DSSD_X34_E -56.3393 0.00687979
+MUSETT_T0_DSSD_X35_E -55.0695 0.00672469
+MUSETT_T0_DSSD_X36_E -55.825 0.00681772
+MUSETT_T0_DSSD_X37_E -55.5784 0.00678682
+MUSETT_T0_DSSD_X38_E -54.9215 0.00670936
+MUSETT_T0_DSSD_X39_E -55.4209 0.00676909
+MUSETT_T0_DSSD_X40_E -55.19 0.00674055
+MUSETT_T0_DSSD_X41_E -55.8977 0.00682444
+MUSETT_T0_DSSD_X42_E -55.5041 0.00677725
+MUSETT_T0_DSSD_X43_E -55.7618 0.00680926
+MUSETT_T0_DSSD_X44_E -55.8855 0.00682401
+MUSETT_T0_DSSD_X45_E -55.9116 0.00682759
+MUSETT_T0_DSSD_X46_E -56.0731 0.00684536
+MUSETT_T0_DSSD_X47_E -55.4323 0.00677014
+MUSETT_T0_DSSD_X48_E -55.6243 0.00679015
+MUSETT_T0_DSSD_X49_E -57.4481 0.00701463
+MUSETT_T0_DSSD_X50_E -57.3166 0.00699996
+MUSETT_T0_DSSD_X51_E -57.4682 0.00701473
+MUSETT_T0_DSSD_X52_E -56.9036 0.00694772
+MUSETT_T0_DSSD_X53_E -57.9253 0.00707135
+MUSETT_T0_DSSD_X54_E -56.8322 0.00693982
+MUSETT_T0_DSSD_X55_E -57.3403 0.00700263
+MUSETT_T0_DSSD_X56_E -57.11 0.00697302
+MUSETT_T0_DSSD_X57_E -58.0662 0.00709005
+MUSETT_T0_DSSD_X58_E -57.1909 0.00698498
+MUSETT_T0_DSSD_X59_E -57.1516 0.00697543
+MUSETT_T0_DSSD_X60_E -57.3091 0.00699896
+MUSETT_T0_DSSD_X61_E -56.8788 0.00694276
+MUSETT_T0_DSSD_X62_E -57.5062 0.00702177
+MUSETT_T0_DSSD_X63_E -57.4608 0.00701642
+MUSETT_T0_DSSD_X64_E -57.6054 0.00703493
+MUSETT_T0_DSSD_X65_E -62.6637 0.00765519
+MUSETT_T0_DSSD_X66_E -62.8084 0.00767265
+MUSETT_T0_DSSD_X67_E -62.6318 0.00765143
+MUSETT_T0_DSSD_X68_E -63.6899 0.00777649
+MUSETT_T0_DSSD_X69_E -62.46 0.00763065
+MUSETT_T0_DSSD_X70_E -62.9383 0.00769239
+MUSETT_T0_DSSD_X71_E -63.1232 0.00771022
+MUSETT_T0_DSSD_X72_E -62.3967 0.00762575
+MUSETT_T0_DSSD_X73_E -63.1794 0.007721
+MUSETT_T0_DSSD_X74_E -62.2726 0.00761037
+MUSETT_T0_DSSD_X75_E -62.7728 0.00767497
+MUSETT_T0_DSSD_X76_E -62.9363 0.00769246
+MUSETT_T0_DSSD_X77_E -62.5638 0.00764824
+MUSETT_T0_DSSD_X78_E -62.5178 0.00764408
+MUSETT_T0_DSSD_X79_E -62.6461 0.00766375
+MUSETT_T0_DSSD_X80_E -63.525 0.00776621
+MUSETT_T0_DSSD_X81_E -59.9128 0.00732741
+MUSETT_T0_DSSD_X82_E -59.3636 0.00726247
+MUSETT_T0_DSSD_X83_E -59.8482 0.00731971
+MUSETT_T0_DSSD_X84_E -60.4754 0.00739241
+MUSETT_T0_DSSD_X85_E -60.3435 0.00737654
+MUSETT_T0_DSSD_X86_E -60.9015 0.00744372
+MUSETT_T0_DSSD_X87_E -60.4558 0.00738888
+MUSETT_T0_DSSD_X88_E -61.235 0.00748304
+MUSETT_T0_DSSD_X89_E -61.2602 0.00748247
+MUSETT_T0_DSSD_X90_E -60.8604 0.00743528
+MUSETT_T0_DSSD_X91_E -61.0173 0.00745408
+MUSETT_T0_DSSD_X92_E -62.0709 0.00758305
+MUSETT_T0_DSSD_X93_E -61.1413 0.00746888
+MUSETT_T0_DSSD_X94_E -60.3266 0.00736933
+MUSETT_T0_DSSD_X95_E -60.7026 0.00741607
+MUSETT_T0_DSSD_X96_E -61.6511 0.00752938
+MUSETT_T0_DSSD_X97_E -56.8975 0.00694585
+MUSETT_T0_DSSD_X98_E -56.7045 0.00692979
+MUSETT_T0_DSSD_X99_E -57.4852 0.00701765
+MUSETT_T0_DSSD_X100_E -56.5094 0.00690243
+MUSETT_T0_DSSD_X101_E -58.135 0.0070925
+MUSETT_T0_DSSD_X102_E -57.0159 0.00696594
+MUSETT_T0_DSSD_X103_E -56.915 0.00695517
+MUSETT_T0_DSSD_X104_E -56.5216 0.00690647
+MUSETT_T0_DSSD_X105_E -56.8348 0.00694123
+MUSETT_T0_DSSD_X106_E -57.3582 0.00700658
+MUSETT_T0_DSSD_X107_E -56.9332 0.00695083
+MUSETT_T0_DSSD_X108_E -56.998 0.00696262
+MUSETT_T0_DSSD_X109_E -58.1328 0.00709928
+MUSETT_T0_DSSD_X110_E -57.4545 0.00701814
+MUSETT_T0_DSSD_X111_E -56.8124 0.0069431
+MUSETT_T0_DSSD_X112_E -56.9338 0.00695883
+MUSETT_T0_DSSD_X113_E -58.4826 0.00714263
+MUSETT_T0_DSSD_X114_E -58.3264 0.00712789
+MUSETT_T0_DSSD_X115_E -57.9386 0.00707706
+MUSETT_T0_DSSD_X116_E -58.0162 0.00708749
+MUSETT_T0_DSSD_X117_E -57.4747 0.00702134
+MUSETT_T0_DSSD_X118_E -57.6784 0.00704615
+MUSETT_T0_DSSD_X119_E -57.8784 0.00706734
+MUSETT_T0_DSSD_X120_E -58.208 0.0071064
+MUSETT_T0_DSSD_X121_E -57.9961 0.00708332
+MUSETT_T0_DSSD_X122_E -58.2606 0.00711423
+MUSETT_T0_DSSD_X123_E -57.9878 0.00708282
+MUSETT_T0_DSSD_X124_E -59.0777 0.00721175
+MUSETT_T0_DSSD_X125_E -57.4447 0.0070148
+MUSETT_T0_DSSD_X126_E -58.0233 0.00708585
+MUSETT_T0_DSSD_X127_E -58.1629 0.00710048
+MUSETT_T0_DSSD_X128_E -58.9941 0.007205
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..27a78260e778badc1e65dd5e1c0642cdbe333ccd
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X1_E_Zero_Dispersion 3.31826
+MUSETT_T1_DSSD_X2_E_Zero_Dispersion -2.12122
+MUSETT_T1_DSSD_X3_E_Zero_Dispersion 1.8638
+MUSETT_T1_DSSD_X4_E_Zero_Dispersion 1.47715
+MUSETT_T1_DSSD_X5_E_Zero_Dispersion 2.05422
+MUSETT_T1_DSSD_X6_E_Zero_Dispersion 0.429893
+MUSETT_T1_DSSD_X7_E_Zero_Dispersion 1.29458
+MUSETT_T1_DSSD_X8_E_Zero_Dispersion 2.2296
+MUSETT_T1_DSSD_X9_E_Zero_Dispersion 0.455026
+MUSETT_T1_DSSD_X10_E_Zero_Dispersion -0.202696
+MUSETT_T1_DSSD_X11_E_Zero_Dispersion 1.03105
+MUSETT_T1_DSSD_X12_E_Zero_Dispersion 0.253439
+MUSETT_T1_DSSD_X13_E_Zero_Dispersion 1.82041
+MUSETT_T1_DSSD_X14_E_Zero_Dispersion -0.247248
+MUSETT_T1_DSSD_X15_E_Zero_Dispersion -0.372974
+MUSETT_T1_DSSD_X16_E_Zero_Dispersion -0.948618
+MUSETT_T1_DSSD_X17_E_Zero_Dispersion 2.0412
+MUSETT_T1_DSSD_X18_E_Zero_Dispersion 5.76735
+MUSETT_T1_DSSD_X19_E_Zero_Dispersion 1.16575
+MUSETT_T1_DSSD_X20_E_Zero_Dispersion 2.39481
+MUSETT_T1_DSSD_X21_E_Zero_Dispersion 2.02453
+MUSETT_T1_DSSD_X22_E_Zero_Dispersion 2.56637
+MUSETT_T1_DSSD_X23_E_Zero_Dispersion 1.06394
+MUSETT_T1_DSSD_X24_E_Zero_Dispersion 3.56234
+MUSETT_T1_DSSD_X25_E_Zero_Dispersion 2.95716
+MUSETT_T1_DSSD_X26_E_Zero_Dispersion 0.789701
+MUSETT_T1_DSSD_X27_E_Zero_Dispersion 1.60545
+MUSETT_T1_DSSD_X28_E_Zero_Dispersion 4.83078
+MUSETT_T1_DSSD_X29_E_Zero_Dispersion -1.20681
+MUSETT_T1_DSSD_X30_E_Zero_Dispersion 2.7154
+MUSETT_T1_DSSD_X31_E_Zero_Dispersion 1.45376
+MUSETT_T1_DSSD_X32_E_Zero_Dispersion 1.9387
+MUSETT_T1_DSSD_X33_E_Zero_Dispersion 1.87169
+MUSETT_T1_DSSD_X34_E_Zero_Dispersion 2.89343
+MUSETT_T1_DSSD_X35_E_Zero_Dispersion 2.8554
+MUSETT_T1_DSSD_X36_E_Zero_Dispersion 3.77693
+MUSETT_T1_DSSD_X37_E_Zero_Dispersion 2.83182
+MUSETT_T1_DSSD_X38_E_Zero_Dispersion 6.19925
+MUSETT_T1_DSSD_X39_E_Zero_Dispersion 4.64912
+MUSETT_T1_DSSD_X40_E_Zero_Dispersion 4.2395
+MUSETT_T1_DSSD_X41_E_Zero_Dispersion 1.18291
+MUSETT_T1_DSSD_X42_E_Zero_Dispersion 2.2358
+MUSETT_T1_DSSD_X43_E_Zero_Dispersion 2.89726
+MUSETT_T1_DSSD_X44_E_Zero_Dispersion 2.45726
+MUSETT_T1_DSSD_X45_E_Zero_Dispersion 2.9394
+MUSETT_T1_DSSD_X46_E_Zero_Dispersion 0.597119
+MUSETT_T1_DSSD_X47_E_Zero_Dispersion 4.23
+MUSETT_T1_DSSD_X48_E_Zero_Dispersion 0.091128
+MUSETT_T1_DSSD_X49_E_Zero_Dispersion 2.24858
+MUSETT_T1_DSSD_X50_E_Zero_Dispersion 3.85479
+MUSETT_T1_DSSD_X51_E_Zero_Dispersion -0.509961
+MUSETT_T1_DSSD_X52_E_Zero_Dispersion 1.73771
+MUSETT_T1_DSSD_X53_E_Zero_Dispersion 0.444579
+MUSETT_T1_DSSD_X54_E_Zero_Dispersion 2.70882
+MUSETT_T1_DSSD_X55_E_Zero_Dispersion 3.60445
+MUSETT_T1_DSSD_X56_E_Zero_Dispersion 1.8604
+MUSETT_T1_DSSD_X57_E_Zero_Dispersion 2.17985
+MUSETT_T1_DSSD_X58_E_Zero_Dispersion 4.30362
+MUSETT_T1_DSSD_X59_E_Zero_Dispersion -1.27124
+MUSETT_T1_DSSD_X60_E_Zero_Dispersion 3.76398
+MUSETT_T1_DSSD_X61_E_Zero_Dispersion -0.528796
+MUSETT_T1_DSSD_X62_E_Zero_Dispersion 2.30742
+MUSETT_T1_DSSD_X63_E_Zero_Dispersion 2.52882
+MUSETT_T1_DSSD_X64_E_Zero_Dispersion 3.52446
+MUSETT_T1_DSSD_X65_E_Zero_Dispersion 6.21631
+MUSETT_T1_DSSD_X66_E_Zero_Dispersion 5.9921
+MUSETT_T1_DSSD_X67_E_Zero_Dispersion 6.36861
+MUSETT_T1_DSSD_X68_E_Zero_Dispersion 1.94082
+MUSETT_T1_DSSD_X69_E_Zero_Dispersion 6.59321
+MUSETT_T1_DSSD_X70_E_Zero_Dispersion 10.1099
+MUSETT_T1_DSSD_X71_E_Zero_Dispersion 5.05423
+MUSETT_T1_DSSD_X72_E_Zero_Dispersion 9.62236
+MUSETT_T1_DSSD_X73_E_Zero_Dispersion 9.19309
+MUSETT_T1_DSSD_X74_E_Zero_Dispersion 9.40983
+MUSETT_T1_DSSD_X75_E_Zero_Dispersion 13.1014
+MUSETT_T1_DSSD_X76_E_Zero_Dispersion 10.4419
+MUSETT_T1_DSSD_X77_E_Zero_Dispersion 11.8371
+MUSETT_T1_DSSD_X78_E_Zero_Dispersion 13.4091
+MUSETT_T1_DSSD_X79_E_Zero_Dispersion 17.6642
+MUSETT_T1_DSSD_X80_E_Zero_Dispersion 12.3404
+MUSETT_T1_DSSD_X81_E_Zero_Dispersion 15.4726
+MUSETT_T1_DSSD_X82_E_Zero_Dispersion 17.9738
+MUSETT_T1_DSSD_X83_E_Zero_Dispersion 15.6833
+MUSETT_T1_DSSD_X84_E_Zero_Dispersion 11.262
+MUSETT_T1_DSSD_X85_E_Zero_Dispersion 11.5359
+MUSETT_T1_DSSD_X86_E_Zero_Dispersion 10.4098
+MUSETT_T1_DSSD_X87_E_Zero_Dispersion 9.99555
+MUSETT_T1_DSSD_X88_E_Zero_Dispersion 8.8319
+MUSETT_T1_DSSD_X89_E_Zero_Dispersion 4.84346
+MUSETT_T1_DSSD_X90_E_Zero_Dispersion 6.63797
+MUSETT_T1_DSSD_X91_E_Zero_Dispersion 6.23688
+MUSETT_T1_DSSD_X92_E_Zero_Dispersion 6.52259
+MUSETT_T1_DSSD_X93_E_Zero_Dispersion 5.8684
+MUSETT_T1_DSSD_X94_E_Zero_Dispersion 5.82198
+MUSETT_T1_DSSD_X95_E_Zero_Dispersion 6.72663
+MUSETT_T1_DSSD_X96_E_Zero_Dispersion 3.9278
+MUSETT_T1_DSSD_X97_E_Zero_Dispersion 0.411282
+MUSETT_T1_DSSD_X98_E_Zero_Dispersion 9.27819
+MUSETT_T1_DSSD_X99_E_Zero_Dispersion 0.488031
+MUSETT_T1_DSSD_X100_E_Zero_Dispersion 5.11102
+MUSETT_T1_DSSD_X101_E_Zero_Dispersion -4.68532
+MUSETT_T1_DSSD_X102_E_Zero_Dispersion 7.03328
+MUSETT_T1_DSSD_X103_E_Zero_Dispersion 8.87449
+MUSETT_T1_DSSD_X104_E_Zero_Dispersion 8.14285
+MUSETT_T1_DSSD_X105_E_Zero_Dispersion 4.00011
+MUSETT_T1_DSSD_X106_E_Zero_Dispersion 5.67661
+MUSETT_T1_DSSD_X107_E_Zero_Dispersion 1.15362
+MUSETT_T1_DSSD_X108_E_Zero_Dispersion 5.71981
+MUSETT_T1_DSSD_X109_E_Zero_Dispersion 3.44129
+MUSETT_T1_DSSD_X110_E_Zero_Dispersion 5.42935
+MUSETT_T1_DSSD_X111_E_Zero_Dispersion 9.43061
+MUSETT_T1_DSSD_X112_E_Zero_Dispersion 10.476
+MUSETT_T1_DSSD_X113_E_Zero_Dispersion 4.17
+MUSETT_T1_DSSD_X114_E_Zero_Dispersion 9.15367
+MUSETT_T1_DSSD_X115_E_Zero_Dispersion 5.19154
+MUSETT_T1_DSSD_X116_E_Zero_Dispersion 6.2837
+MUSETT_T1_DSSD_X117_E_Zero_Dispersion 6.28696
+MUSETT_T1_DSSD_X118_E_Zero_Dispersion 6.20439
+MUSETT_T1_DSSD_X119_E_Zero_Dispersion 2.44417
+MUSETT_T1_DSSD_X120_E_Zero_Dispersion 1.07086
+MUSETT_T1_DSSD_X121_E_Zero_Dispersion 4.31051
+MUSETT_T1_DSSD_X122_E_Zero_Dispersion 2.69751
+MUSETT_T1_DSSD_X123_E_Zero_Dispersion 4.89076
+MUSETT_T1_DSSD_X124_E_Zero_Dispersion 0.134467
+MUSETT_T1_DSSD_X125_E_Zero_Dispersion 2.93377
+MUSETT_T1_DSSD_X126_E_Zero_Dispersion 3.3914
+MUSETT_T1_DSSD_X127_E_Zero_Dispersion 0.596674
+MUSETT_T1_DSSD_X128_E_Zero_Dispersion 4.06162
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/latex/double_alpha_run_244_X_MM1_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/latex/double_alpha_run_244_X_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b1b0f08722ed1473489d981711d8984c0286ed97
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/latex/double_alpha_run_244_X_MM1_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 1.91975
+
+Sigma fit sigma: 0.254217
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1514879b173bb1c0abac27e92f48188a0ca62b20
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X1_E -62.3624 0.00761012
+MUSETT_T1_DSSD_X2_E -62.371 0.00760877
+MUSETT_T1_DSSD_X3_E -62.1936 0.00759021
+MUSETT_T1_DSSD_X4_E -62.0099 0.0075663
+MUSETT_T1_DSSD_X5_E -61.4333 0.00749709
+MUSETT_T1_DSSD_X6_E -61.6076 0.00751681
+MUSETT_T1_DSSD_X7_E -62.4597 0.00761988
+MUSETT_T1_DSSD_X8_E -61.3276 0.00748486
+MUSETT_T1_DSSD_X9_E -61.1994 0.00746931
+MUSETT_T1_DSSD_X10_E -61.5135 0.00750523
+MUSETT_T1_DSSD_X11_E -61.843 0.00754449
+MUSETT_T1_DSSD_X12_E -61.7608 0.00753579
+MUSETT_T1_DSSD_X13_E -61.9736 0.00756143
+MUSETT_T1_DSSD_X14_E -61.4587 0.00749868
+MUSETT_T1_DSSD_X15_E -61.3372 0.00748218
+MUSETT_T1_DSSD_X16_E -62.049 0.00757062
+MUSETT_T1_DSSD_X17_E -62.8031 0.00766039
+MUSETT_T1_DSSD_X18_E -62.1984 0.00758379
+MUSETT_T1_DSSD_X19_E -62.0833 0.00757771
+MUSETT_T1_DSSD_X20_E -62.3149 0.00759894
+MUSETT_T1_DSSD_X21_E -62.793 0.00766413
+MUSETT_T1_DSSD_X22_E -62.3253 0.00760286
+MUSETT_T1_DSSD_X23_E -62.9052 0.00767299
+MUSETT_T1_DSSD_X24_E -62.6229 0.00763869
+MUSETT_T1_DSSD_X25_E -62.7474 0.00765064
+MUSETT_T1_DSSD_X26_E -62.3524 0.00760372
+MUSETT_T1_DSSD_X27_E -62.1417 0.00758143
+MUSETT_T1_DSSD_X28_E -61.9796 0.00755889
+MUSETT_T1_DSSD_X29_E -61.5268 0.00750914
+MUSETT_T1_DSSD_X30_E -63.0556 0.00769029
+MUSETT_T1_DSSD_X31_E -62.285 0.00759403
+MUSETT_T1_DSSD_X32_E -63.1497 0.00770174
+MUSETT_T1_DSSD_X33_E -58.2595 0.00710945
+MUSETT_T1_DSSD_X34_E -58.1495 0.0070983
+MUSETT_T1_DSSD_X35_E -58.425 0.00712764
+MUSETT_T1_DSSD_X36_E -57.5043 0.00702656
+MUSETT_T1_DSSD_X37_E -58.3774 0.00711928
+MUSETT_T1_DSSD_X38_E -58.4588 0.00712951
+MUSETT_T1_DSSD_X39_E -58.6065 0.00714334
+MUSETT_T1_DSSD_X40_E -58.9822 0.00719271
+MUSETT_T1_DSSD_X41_E -58.7956 0.00716704
+MUSETT_T1_DSSD_X42_E -58.8535 0.00718162
+MUSETT_T1_DSSD_X43_E -58.2322 0.00710428
+MUSETT_T1_DSSD_X44_E -57.8207 0.00706366
+MUSETT_T1_DSSD_X45_E -58.6346 0.0071536
+MUSETT_T1_DSSD_X46_E -59.7894 0.00728966
+MUSETT_T1_DSSD_X47_E -59.2746 0.00722547
+MUSETT_T1_DSSD_X48_E -58.529 0.00714105
+MUSETT_T1_DSSD_X49_E -58.0371 0.0070803
+MUSETT_T1_DSSD_X50_E -58.6199 0.00715229
+MUSETT_T1_DSSD_X51_E -58.337 0.00711425
+MUSETT_T1_DSSD_X52_E -58.0837 0.00708355
+MUSETT_T1_DSSD_X53_E -58.1637 0.00709458
+MUSETT_T1_DSSD_X54_E -57.9776 0.00707403
+MUSETT_T1_DSSD_X55_E -58.3312 0.00711354
+MUSETT_T1_DSSD_X56_E -58.1594 0.00709216
+MUSETT_T1_DSSD_X57_E -58.0287 0.00708161
+MUSETT_T1_DSSD_X58_E -57.9741 0.00707198
+MUSETT_T1_DSSD_X59_E -58.5591 0.00714465
+MUSETT_T1_DSSD_X60_E -57.7298 0.00704314
+MUSETT_T1_DSSD_X61_E -57.911 0.00706416
+MUSETT_T1_DSSD_X62_E -58.32 0.00711548
+MUSETT_T1_DSSD_X63_E -57.9209 0.00706902
+MUSETT_T1_DSSD_X64_E -57.6581 0.00704331
+MUSETT_T1_DSSD_X65_E -61.1032 0.00745382
+MUSETT_T1_DSSD_X66_E -61.5619 0.00751166
+MUSETT_T1_DSSD_X67_E -61.3687 0.00748805
+MUSETT_T1_DSSD_X68_E -61.9709 0.0075568
+MUSETT_T1_DSSD_X69_E -61.6644 0.00752686
+MUSETT_T1_DSSD_X70_E -61.3912 0.00749046
+MUSETT_T1_DSSD_X71_E -61.9218 0.007552
+MUSETT_T1_DSSD_X72_E -62.0173 0.00756577
+MUSETT_T1_DSSD_X73_E -61.2703 0.00747548
+MUSETT_T1_DSSD_X74_E -62.3646 0.00760904
+MUSETT_T1_DSSD_X75_E -61.6779 0.0075284
+MUSETT_T1_DSSD_X76_E -61.8796 0.00755244
+MUSETT_T1_DSSD_X77_E -61.8422 0.00754114
+MUSETT_T1_DSSD_X78_E -61.8398 0.00754322
+MUSETT_T1_DSSD_X79_E -61.5458 0.00750591
+MUSETT_T1_DSSD_X80_E -61.74 0.00753496
+MUSETT_T1_DSSD_X81_E -63.3825 0.00773354
+MUSETT_T1_DSSD_X82_E -63.5514 0.00775624
+MUSETT_T1_DSSD_X83_E -64.0743 0.00781917
+MUSETT_T1_DSSD_X84_E -63.8267 0.00778846
+MUSETT_T1_DSSD_X85_E -63.882 0.00779768
+MUSETT_T1_DSSD_X86_E -64.0168 0.00780882
+MUSETT_T1_DSSD_X87_E -64.3022 0.00784247
+MUSETT_T1_DSSD_X88_E -64.6835 0.00788668
+MUSETT_T1_DSSD_X89_E -63.7597 0.00778432
+MUSETT_T1_DSSD_X90_E -64.2214 0.00783607
+MUSETT_T1_DSSD_X91_E -63.1681 0.00770996
+MUSETT_T1_DSSD_X92_E -63.1287 0.00770542
+MUSETT_T1_DSSD_X93_E -64.6547 0.00788697
+MUSETT_T1_DSSD_X94_E -64.0697 0.00781609
+MUSETT_T1_DSSD_X95_E -63.3459 0.0077344
+MUSETT_T1_DSSD_X96_E -63.3339 0.00772929
+MUSETT_T1_DSSD_X97_E -56.6206 0.00690407
+MUSETT_T1_DSSD_X98_E -56.6271 0.00690945
+MUSETT_T1_DSSD_X99_E -56.8075 0.00692682
+MUSETT_T1_DSSD_X100_E -56.3784 0.00687942
+MUSETT_T1_DSSD_X101_E -56.5092 0.00689507
+MUSETT_T1_DSSD_X102_E -57.0925 0.00696497
+MUSETT_T1_DSSD_X103_E -57.4137 0.00700377
+MUSETT_T1_DSSD_X104_E -56.4692 0.00689105
+MUSETT_T1_DSSD_X105_E -56.8896 0.00693984
+MUSETT_T1_DSSD_X106_E -56.927 0.00694687
+MUSETT_T1_DSSD_X107_E -57.9729 0.0070716
+MUSETT_T1_DSSD_X108_E -57.6679 0.00703655
+MUSETT_T1_DSSD_X109_E -57.6556 0.00703509
+MUSETT_T1_DSSD_X110_E -57.3883 0.00700337
+MUSETT_T1_DSSD_X111_E -57.7513 0.00704555
+MUSETT_T1_DSSD_X112_E -57.877 0.00706349
+MUSETT_T1_DSSD_X113_E -57.2915 0.00698936
+MUSETT_T1_DSSD_X114_E -57.3171 0.00699306
+MUSETT_T1_DSSD_X115_E -56.6719 0.0069159
+MUSETT_T1_DSSD_X116_E -57.7554 0.00704559
+MUSETT_T1_DSSD_X117_E -57.1005 0.0069688
+MUSETT_T1_DSSD_X118_E -57.1996 0.00697882
+MUSETT_T1_DSSD_X119_E -56.7493 0.00691919
+MUSETT_T1_DSSD_X120_E -58.3182 0.00711505
+MUSETT_T1_DSSD_X121_E -57.4007 0.00700393
+MUSETT_T1_DSSD_X122_E -57.9735 0.00707107
+MUSETT_T1_DSSD_X123_E -57.7802 0.00704869
+MUSETT_T1_DSSD_X124_E -57.4132 0.00700545
+MUSETT_T1_DSSD_X125_E -57.6474 0.00703247
+MUSETT_T1_DSSD_X126_E -57.6019 0.00702875
+MUSETT_T1_DSSD_X127_E -57.0542 0.00696086
+MUSETT_T1_DSSD_X128_E -57.9072 0.00706381
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..a1d0d195e75ebc7fcffae98d035de65ce55b4e0f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X1_E_Zero_Dispersion -2.66336
+MUSETT_T2_DSSD_X2_E_Zero_Dispersion -5.25288
+MUSETT_T2_DSSD_X3_E_Zero_Dispersion -1.92259
+MUSETT_T2_DSSD_X4_E_Zero_Dispersion -3.54109
+MUSETT_T2_DSSD_X5_E_Zero_Dispersion -2.28776
+MUSETT_T2_DSSD_X6_E_Zero_Dispersion -3.97271
+MUSETT_T2_DSSD_X7_E_Zero_Dispersion -4.93891
+MUSETT_T2_DSSD_X8_E_Zero_Dispersion -1.54904
+MUSETT_T2_DSSD_X9_E_Zero_Dispersion -1.45065
+MUSETT_T2_DSSD_X10_E_Zero_Dispersion -4.07884
+MUSETT_T2_DSSD_X11_E_Zero_Dispersion -5.10266
+MUSETT_T2_DSSD_X12_E_Zero_Dispersion -3.66286
+MUSETT_T2_DSSD_X13_E_Zero_Dispersion -4.01344
+MUSETT_T2_DSSD_X14_E_Zero_Dispersion -3.93852
+MUSETT_T2_DSSD_X15_E_Zero_Dispersion -5.7754
+MUSETT_T2_DSSD_X16_E_Zero_Dispersion -4.02067
+MUSETT_T2_DSSD_X17_E_Zero_Dispersion -6.42262
+MUSETT_T2_DSSD_X18_E_Zero_Dispersion -9.48953
+MUSETT_T2_DSSD_X19_E_Zero_Dispersion -0.891036
+MUSETT_T2_DSSD_X20_E_Zero_Dispersion -8.46321
+MUSETT_T2_DSSD_X21_E_Zero_Dispersion -1.10458
+MUSETT_T2_DSSD_X22_E_Zero_Dispersion -5.61099
+MUSETT_T2_DSSD_X23_E_Zero_Dispersion -6.26129
+MUSETT_T2_DSSD_X24_E_Zero_Dispersion -6.12355
+MUSETT_T2_DSSD_X25_E_Zero_Dispersion -9.58648
+MUSETT_T2_DSSD_X26_E_Zero_Dispersion -8.24656
+MUSETT_T2_DSSD_X27_E_Zero_Dispersion -4.5608
+MUSETT_T2_DSSD_X28_E_Zero_Dispersion -7.56859
+MUSETT_T2_DSSD_X29_E_Zero_Dispersion -1.5913
+MUSETT_T2_DSSD_X30_E_Zero_Dispersion -7.37654
+MUSETT_T2_DSSD_X31_E_Zero_Dispersion -9.83087
+MUSETT_T2_DSSD_X32_E_Zero_Dispersion -7.39623
+MUSETT_T2_DSSD_X33_E_Zero_Dispersion -2.66342
+MUSETT_T2_DSSD_X34_E_Zero_Dispersion -0.0289014
+MUSETT_T2_DSSD_X35_E_Zero_Dispersion -4.95942
+MUSETT_T2_DSSD_X36_E_Zero_Dispersion 8.1537
+MUSETT_T2_DSSD_X37_E_Zero_Dispersion -7.91062
+MUSETT_T2_DSSD_X38_E_Zero_Dispersion -7.56346
+MUSETT_T2_DSSD_X39_E_Zero_Dispersion -12.3574
+MUSETT_T2_DSSD_X40_E_Zero_Dispersion -8.28567
+MUSETT_T2_DSSD_X41_E_Zero_Dispersion -11.6126
+MUSETT_T2_DSSD_X42_E_Zero_Dispersion -3.01155
+MUSETT_T2_DSSD_X43_E_Zero_Dispersion -4.76688
+MUSETT_T2_DSSD_X44_E_Zero_Dispersion 6.34002
+MUSETT_T2_DSSD_X45_E_Zero_Dispersion -4.51005
+MUSETT_T2_DSSD_X46_E_Zero_Dispersion -9.94451
+MUSETT_T2_DSSD_X47_E_Zero_Dispersion -11.5601
+MUSETT_T2_DSSD_X48_E_Zero_Dispersion -4.13332
+MUSETT_T2_DSSD_X49_E_Zero_Dispersion -4.98186
+MUSETT_T2_DSSD_X50_E_Zero_Dispersion -3.95739
+MUSETT_T2_DSSD_X51_E_Zero_Dispersion -8.01934
+MUSETT_T2_DSSD_X52_E_Zero_Dispersion -7.80714
+MUSETT_T2_DSSD_X53_E_Zero_Dispersion -6.32075
+MUSETT_T2_DSSD_X54_E_Zero_Dispersion -3.84099
+MUSETT_T2_DSSD_X55_E_Zero_Dispersion -8.02657
+MUSETT_T2_DSSD_X56_E_Zero_Dispersion -8.51638
+MUSETT_T2_DSSD_X57_E_Zero_Dispersion -2.272
+MUSETT_T2_DSSD_X58_E_Zero_Dispersion -5.71716
+MUSETT_T2_DSSD_X59_E_Zero_Dispersion -4.2153
+MUSETT_T2_DSSD_X60_E_Zero_Dispersion -4.60056
+MUSETT_T2_DSSD_X61_E_Zero_Dispersion -5.86954
+MUSETT_T2_DSSD_X62_E_Zero_Dispersion -4.20939
+MUSETT_T2_DSSD_X63_E_Zero_Dispersion -1.61668
+MUSETT_T2_DSSD_X64_E_Zero_Dispersion 5.78277
+MUSETT_T2_DSSD_X65_E_Zero_Dispersion -5.57542
+MUSETT_T2_DSSD_X66_E_Zero_Dispersion -3.51091
+MUSETT_T2_DSSD_X67_E_Zero_Dispersion -3.55616
+MUSETT_T2_DSSD_X68_E_Zero_Dispersion -8.67517
+MUSETT_T2_DSSD_X69_E_Zero_Dispersion -0.576371
+MUSETT_T2_DSSD_X70_E_Zero_Dispersion -3.91829
+MUSETT_T2_DSSD_X71_E_Zero_Dispersion -7.39344
+MUSETT_T2_DSSD_X72_E_Zero_Dispersion -5.08126
+MUSETT_T2_DSSD_X73_E_Zero_Dispersion -4.17441
+MUSETT_T2_DSSD_X74_E_Zero_Dispersion -4.12028
+MUSETT_T2_DSSD_X75_E_Zero_Dispersion -0.68974
+MUSETT_T2_DSSD_X76_E_Zero_Dispersion -1.3283
+MUSETT_T2_DSSD_X77_E_Zero_Dispersion -8.64839
+MUSETT_T2_DSSD_X78_E_Zero_Dispersion -6.05987
+MUSETT_T2_DSSD_X79_E_Zero_Dispersion -7.65052
+MUSETT_T2_DSSD_X80_E_Zero_Dispersion -1.81011
+MUSETT_T2_DSSD_X81_E_Zero_Dispersion -3.79935
+MUSETT_T2_DSSD_X82_E_Zero_Dispersion -1.58273
+MUSETT_T2_DSSD_X83_E_Zero_Dispersion -2.51097
+MUSETT_T2_DSSD_X84_E_Zero_Dispersion -3.03033
+MUSETT_T2_DSSD_X85_E_Zero_Dispersion -0.442009
+MUSETT_T2_DSSD_X86_E_Zero_Dispersion -6.02322
+MUSETT_T2_DSSD_X87_E_Zero_Dispersion -7.2206
+MUSETT_T2_DSSD_X88_E_Zero_Dispersion -9.61511
+MUSETT_T2_DSSD_X89_E_Zero_Dispersion 1.2093
+MUSETT_T2_DSSD_X90_E_Zero_Dispersion -3.6126
+MUSETT_T2_DSSD_X91_E_Zero_Dispersion -1.05543
+MUSETT_T2_DSSD_X92_E_Zero_Dispersion -0.763344
+MUSETT_T2_DSSD_X93_E_Zero_Dispersion -5.66186
+MUSETT_T2_DSSD_X94_E_Zero_Dispersion -5.15498
+MUSETT_T2_DSSD_X95_E_Zero_Dispersion 1.84768
+MUSETT_T2_DSSD_X96_E_Zero_Dispersion -2.00809
+MUSETT_T2_DSSD_X97_E_Zero_Dispersion -9.04459
+MUSETT_T2_DSSD_X98_E_Zero_Dispersion -3.6058
+MUSETT_T2_DSSD_X99_E_Zero_Dispersion -9.10151
+MUSETT_T2_DSSD_X100_E_Zero_Dispersion -3.22846
+MUSETT_T2_DSSD_X101_E_Zero_Dispersion -3.5899
+MUSETT_T2_DSSD_X102_E_Zero_Dispersion -5.1005
+MUSETT_T2_DSSD_X103_E_Zero_Dispersion -5.54284
+MUSETT_T2_DSSD_X104_E_Zero_Dispersion -2.57029
+MUSETT_T2_DSSD_X105_E_Zero_Dispersion -5.53144
+MUSETT_T2_DSSD_X106_E_Zero_Dispersion -2.6213
+MUSETT_T2_DSSD_X107_E_Zero_Dispersion -5.99254
+MUSETT_T2_DSSD_X108_E_Zero_Dispersion -3.48025
+MUSETT_T2_DSSD_X109_E_Zero_Dispersion -3.43173
+MUSETT_T2_DSSD_X110_E_Zero_Dispersion -2.38627
+MUSETT_T2_DSSD_X111_E_Zero_Dispersion -4.85672
+MUSETT_T2_DSSD_X112_E_Zero_Dispersion -1.81737
+MUSETT_T2_DSSD_X113_E_Zero_Dispersion -4.94892
+MUSETT_T2_DSSD_X114_E_Zero_Dispersion -4.27881
+MUSETT_T2_DSSD_X115_E_Zero_Dispersion -2.43837
+MUSETT_T2_DSSD_X116_E_Zero_Dispersion -5.38135
+MUSETT_T2_DSSD_X117_E_Zero_Dispersion -1.73183
+MUSETT_T2_DSSD_X118_E_Zero_Dispersion -4.18097
+MUSETT_T2_DSSD_X119_E_Zero_Dispersion -9.72105
+MUSETT_T2_DSSD_X120_E_Zero_Dispersion -4.44539
+MUSETT_T2_DSSD_X121_E_Zero_Dispersion -3.4985
+MUSETT_T2_DSSD_X122_E_Zero_Dispersion -6.68664
+MUSETT_T2_DSSD_X123_E_Zero_Dispersion -5.29485
+MUSETT_T2_DSSD_X124_E_Zero_Dispersion -3.51126
+MUSETT_T2_DSSD_X125_E_Zero_Dispersion -5.32215
+MUSETT_T2_DSSD_X126_E_Zero_Dispersion -3.18144
+MUSETT_T2_DSSD_X127_E_Zero_Dispersion -4.42428
+MUSETT_T2_DSSD_X128_E_Zero_Dispersion -5.73232
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/latex/double_alpha_run_244_X_MM2_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/latex/double_alpha_run_244_X_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..3365edba553e22cb61ca91d540c539acf3053f1f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/latex/double_alpha_run_244_X_MM2_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.20003
+
+Sigma fit sigma: 0.500241
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1ea46de722d52007ccdc52ae1a44116b84ad5488
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X1_E -62.3745 0.00761382
+MUSETT_T2_DSSD_X2_E -62.4133 0.00761549
+MUSETT_T2_DSSD_X3_E -62.9088 0.00767481
+MUSETT_T2_DSSD_X4_E -62.0005 0.00756534
+MUSETT_T2_DSSD_X5_E -62.0959 0.00757598
+MUSETT_T2_DSSD_X6_E -62.5355 0.00763149
+MUSETT_T2_DSSD_X7_E -62.3555 0.00760844
+MUSETT_T2_DSSD_X8_E -62.789 0.00766052
+MUSETT_T2_DSSD_X9_E -62.8245 0.00766499
+MUSETT_T2_DSSD_X10_E -61.8797 0.00755263
+MUSETT_T2_DSSD_X11_E -62.3935 0.00761255
+MUSETT_T2_DSSD_X12_E -62.4152 0.00761577
+MUSETT_T2_DSSD_X13_E -62.4159 0.00761702
+MUSETT_T2_DSSD_X14_E -62.3704 0.00761108
+MUSETT_T2_DSSD_X15_E -62.317 0.00760687
+MUSETT_T2_DSSD_X16_E -63.2168 0.00771561
+MUSETT_T2_DSSD_X17_E -61.9631 0.00756257
+MUSETT_T2_DSSD_X18_E -61.6056 0.00751788
+MUSETT_T2_DSSD_X19_E -61.6813 0.00752472
+MUSETT_T2_DSSD_X20_E -61.5714 0.00750962
+MUSETT_T2_DSSD_X21_E -61.6266 0.00751682
+MUSETT_T2_DSSD_X22_E -62.1879 0.00758809
+MUSETT_T2_DSSD_X23_E -62.1134 0.00757826
+MUSETT_T2_DSSD_X24_E -61.7582 0.0075354
+MUSETT_T2_DSSD_X25_E -61.39 0.00749151
+MUSETT_T2_DSSD_X26_E -61.6812 0.00752659
+MUSETT_T2_DSSD_X27_E -61.7485 0.00753617
+MUSETT_T2_DSSD_X28_E -61.651 0.00752289
+MUSETT_T2_DSSD_X29_E -61.6342 0.00751953
+MUSETT_T2_DSSD_X30_E -61.2964 0.00747738
+MUSETT_T2_DSSD_X31_E -62.1731 0.00758767
+MUSETT_T2_DSSD_X32_E -61.208 0.00747172
+MUSETT_T2_DSSD_X33_E -58.877 0.00718399
+MUSETT_T2_DSSD_X34_E -58.0501 0.00708321
+MUSETT_T2_DSSD_X35_E -58.7726 0.00716724
+MUSETT_T2_DSSD_X36_E -58.3747 0.00712148
+MUSETT_T2_DSSD_X37_E -58.0135 0.00707986
+MUSETT_T2_DSSD_X38_E -58.0463 0.00708209
+MUSETT_T2_DSSD_X39_E -58.2094 0.00710299
+MUSETT_T2_DSSD_X40_E -57.8569 0.00705858
+MUSETT_T2_DSSD_X41_E -57.4387 0.00700905
+MUSETT_T2_DSSD_X42_E -58.3993 0.00712671
+MUSETT_T2_DSSD_X43_E -58.7613 0.00716844
+MUSETT_T2_DSSD_X44_E -57.9448 0.00707376
+MUSETT_T2_DSSD_X45_E -58.3502 0.00712097
+MUSETT_T2_DSSD_X46_E -58.2534 0.00711005
+MUSETT_T2_DSSD_X47_E -58.0822 0.00708956
+MUSETT_T2_DSSD_X48_E -58.3382 0.00711898
+MUSETT_T2_DSSD_X49_E -57.8843 0.00706058
+MUSETT_T2_DSSD_X50_E -57.0287 0.00695961
+MUSETT_T2_DSSD_X51_E -58.0686 0.00708481
+MUSETT_T2_DSSD_X52_E -57.6552 0.00703664
+MUSETT_T2_DSSD_X53_E -57.4091 0.00700501
+MUSETT_T2_DSSD_X54_E -57.022 0.00695781
+MUSETT_T2_DSSD_X55_E -57.7248 0.00704344
+MUSETT_T2_DSSD_X56_E -57.6815 0.00703611
+MUSETT_T2_DSSD_X57_E -57.7522 0.00704777
+MUSETT_T2_DSSD_X58_E -57.4394 0.00700864
+MUSETT_T2_DSSD_X59_E -57.7521 0.00704837
+MUSETT_T2_DSSD_X60_E -57.0404 0.0069587
+MUSETT_T2_DSSD_X61_E -57.3805 0.00700244
+MUSETT_T2_DSSD_X62_E -56.5934 0.00690545
+MUSETT_T2_DSSD_X63_E -57.3124 0.00699347
+MUSETT_T2_DSSD_X64_E -57.6371 0.00703515
+MUSETT_T2_DSSD_X65_E -63.5966 0.0077563
+MUSETT_T2_DSSD_X66_E -64.8681 0.00791583
+MUSETT_T2_DSSD_X67_E -64.0001 0.00780914
+MUSETT_T2_DSSD_X68_E -63.7075 0.00777425
+MUSETT_T2_DSSD_X69_E 7.39123 0.851608
+MUSETT_T2_DSSD_X70_E -64.4456 0.00786221
+MUSETT_T2_DSSD_X71_E -63.6997 0.00777172
+MUSETT_T2_DSSD_X72_E -63.5222 0.00775005
+MUSETT_T2_DSSD_X73_E -63.3566 0.00773054
+MUSETT_T2_DSSD_X74_E -63.234 0.00771375
+MUSETT_T2_DSSD_X75_E -63.9226 0.00779819
+MUSETT_T2_DSSD_X76_E -63.8297 0.00778634
+MUSETT_T2_DSSD_X77_E -63.8052 0.00778563
+MUSETT_T2_DSSD_X78_E -63.7932 0.00778386
+MUSETT_T2_DSSD_X79_E -63.5252 0.00775286
+MUSETT_T2_DSSD_X80_E -63.5056 0.00775044
+MUSETT_T2_DSSD_X81_E -63.4693 0.00774158
+MUSETT_T2_DSSD_X82_E -63.6629 0.00776338
+MUSETT_T2_DSSD_X83_E -63.419 0.00773462
+MUSETT_T2_DSSD_X84_E -63.5625 0.00775087
+MUSETT_T2_DSSD_X85_E -64.3707 0.00785022
+MUSETT_T2_DSSD_X86_E -64.1999 0.00782862
+MUSETT_T2_DSSD_X87_E -64.0598 0.0078123
+MUSETT_T2_DSSD_X88_E -64.3996 0.00785195
+MUSETT_T2_DSSD_X89_E -63.2586 0.00771552
+MUSETT_T2_DSSD_X90_E -63.7169 0.0077721
+MUSETT_T2_DSSD_X91_E -63.3022 0.00772491
+MUSETT_T2_DSSD_X92_E -63.6661 0.00776698
+MUSETT_T2_DSSD_X93_E -63.3863 0.00773314
+MUSETT_T2_DSSD_X94_E -64.5447 0.00787516
+MUSETT_T2_DSSD_X95_E -64.0332 0.00780874
+MUSETT_T2_DSSD_X96_E -63.775 0.00777911
+MUSETT_T2_DSSD_X97_E -59.019 0.0072016
+MUSETT_T2_DSSD_X98_E -58.4069 0.00712773
+MUSETT_T2_DSSD_X99_E -58.2978 0.00711337
+MUSETT_T2_DSSD_X100_E -58.5285 0.00714353
+MUSETT_T2_DSSD_X101_E -59.2948 0.00723645
+MUSETT_T2_DSSD_X102_E -59.6459 0.00727401
+MUSETT_T2_DSSD_X103_E -58.6857 0.00716225
+MUSETT_T2_DSSD_X104_E -59.0033 0.00719967
+MUSETT_T2_DSSD_X105_E -58.9264 0.00719161
+MUSETT_T2_DSSD_X106_E -59.4858 0.00725265
+MUSETT_T2_DSSD_X107_E -58.7519 0.00716832
+MUSETT_T2_DSSD_X108_E -59.0331 0.00720173
+MUSETT_T2_DSSD_X109_E -59.0155 0.00719649
+MUSETT_T2_DSSD_X110_E -60.2759 0.00735525
+MUSETT_T2_DSSD_X111_E -59.0083 0.00719905
+MUSETT_T2_DSSD_X112_E -58.4919 0.00713902
+MUSETT_T2_DSSD_X113_E -59.3071 0.00723613
+MUSETT_T2_DSSD_X114_E -59.243 0.00722981
+MUSETT_T2_DSSD_X115_E -59.8876 0.00730493
+MUSETT_T2_DSSD_X116_E -59.0986 0.00721094
+MUSETT_T2_DSSD_X117_E -59.6857 0.00728175
+MUSETT_T2_DSSD_X118_E -60.0494 0.0073265
+MUSETT_T2_DSSD_X119_E -59.5067 0.00725986
+MUSETT_T2_DSSD_X120_E -59.3945 0.0072465
+MUSETT_T2_DSSD_X121_E -59.9528 0.00731699
+MUSETT_T2_DSSD_X122_E -58.6326 0.00715602
+MUSETT_T2_DSSD_X123_E -58.967 0.00719608
+MUSETT_T2_DSSD_X124_E -59.1874 0.00722373
+MUSETT_T2_DSSD_X125_E -58.8666 0.00718277
+MUSETT_T2_DSSD_X126_E -58.9483 0.00719295
+MUSETT_T2_DSSD_X127_E -59.211 0.00722381
+MUSETT_T2_DSSD_X128_E -59.1485 0.007219442
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..20618fb89cf2e49eae95d99759c4cbad1d78ed4f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X1_E_Zero_Dispersion -0.272194
+MUSETT_T3_DSSD_X2_E_Zero_Dispersion -3.57484
+MUSETT_T3_DSSD_X3_E_Zero_Dispersion -4.78478
+MUSETT_T3_DSSD_X4_E_Zero_Dispersion -3.34246
+MUSETT_T3_DSSD_X5_E_Zero_Dispersion -4.42034
+MUSETT_T3_DSSD_X6_E_Zero_Dispersion -2.40323
+MUSETT_T3_DSSD_X7_E_Zero_Dispersion -3.56719
+MUSETT_T3_DSSD_X8_E_Zero_Dispersion -4.44476
+MUSETT_T3_DSSD_X9_E_Zero_Dispersion -4.29056
+MUSETT_T3_DSSD_X10_E_Zero_Dispersion -1.13362
+MUSETT_T3_DSSD_X11_E_Zero_Dispersion -4.13547
+MUSETT_T3_DSSD_X12_E_Zero_Dispersion -3.52441
+MUSETT_T3_DSSD_X13_E_Zero_Dispersion -2.27095
+MUSETT_T3_DSSD_X14_E_Zero_Dispersion -2.68251
+MUSETT_T3_DSSD_X15_E_Zero_Dispersion -0.195728
+MUSETT_T3_DSSD_X16_E_Zero_Dispersion -1.36364
+MUSETT_T3_DSSD_X17_E_Zero_Dispersion -1.39536
+MUSETT_T3_DSSD_X18_E_Zero_Dispersion -2.53981
+MUSETT_T3_DSSD_X19_E_Zero_Dispersion -5.15211
+MUSETT_T3_DSSD_X20_E_Zero_Dispersion -7.00928
+MUSETT_T3_DSSD_X21_E_Zero_Dispersion -6.49325
+MUSETT_T3_DSSD_X22_E_Zero_Dispersion -3.46926
+MUSETT_T3_DSSD_X23_E_Zero_Dispersion -4.25129
+MUSETT_T3_DSSD_X24_E_Zero_Dispersion -3.7358
+MUSETT_T3_DSSD_X25_E_Zero_Dispersion -2.60782
+MUSETT_T3_DSSD_X26_E_Zero_Dispersion -3.1108
+MUSETT_T3_DSSD_X27_E_Zero_Dispersion -1.61095
+MUSETT_T3_DSSD_X28_E_Zero_Dispersion -3.11692
+MUSETT_T3_DSSD_X29_E_Zero_Dispersion -4.54675
+MUSETT_T3_DSSD_X30_E_Zero_Dispersion -5.57507
+MUSETT_T3_DSSD_X31_E_Zero_Dispersion -1.97103
+MUSETT_T3_DSSD_X32_E_Zero_Dispersion 0.0507405
+MUSETT_T3_DSSD_X33_E_Zero_Dispersion -3.59308
+MUSETT_T3_DSSD_X34_E_Zero_Dispersion -3.44769
+MUSETT_T3_DSSD_X35_E_Zero_Dispersion -8.16984
+MUSETT_T3_DSSD_X36_E_Zero_Dispersion -4.99199
+MUSETT_T3_DSSD_X37_E_Zero_Dispersion -2.15116
+MUSETT_T3_DSSD_X38_E_Zero_Dispersion -4.20735
+MUSETT_T3_DSSD_X39_E_Zero_Dispersion -3.05659
+MUSETT_T3_DSSD_X40_E_Zero_Dispersion -4.67988
+MUSETT_T3_DSSD_X41_E_Zero_Dispersion -2.92491
+MUSETT_T3_DSSD_X42_E_Zero_Dispersion -2.42226
+MUSETT_T3_DSSD_X43_E_Zero_Dispersion -5.21746
+MUSETT_T3_DSSD_X44_E_Zero_Dispersion 0.477144
+MUSETT_T3_DSSD_X45_E_Zero_Dispersion -2.1261
+MUSETT_T3_DSSD_X46_E_Zero_Dispersion -1.11767
+MUSETT_T3_DSSD_X47_E_Zero_Dispersion -0.64482
+MUSETT_T3_DSSD_X48_E_Zero_Dispersion -2.74742
+MUSETT_T3_DSSD_X49_E_Zero_Dispersion -6.22693
+MUSETT_T3_DSSD_X50_E_Zero_Dispersion -2.24231
+MUSETT_T3_DSSD_X51_E_Zero_Dispersion -4.20288
+MUSETT_T3_DSSD_X52_E_Zero_Dispersion -1.5656
+MUSETT_T3_DSSD_X53_E_Zero_Dispersion -3.42217
+MUSETT_T3_DSSD_X54_E_Zero_Dispersion -3.38373
+MUSETT_T3_DSSD_X55_E_Zero_Dispersion -3.54143
+MUSETT_T3_DSSD_X56_E_Zero_Dispersion -5.92556
+MUSETT_T3_DSSD_X57_E_Zero_Dispersion -2.38321
+MUSETT_T3_DSSD_X58_E_Zero_Dispersion -3.50863
+MUSETT_T3_DSSD_X59_E_Zero_Dispersion -1.68054
+MUSETT_T3_DSSD_X60_E_Zero_Dispersion -4.98707
+MUSETT_T3_DSSD_X61_E_Zero_Dispersion -2.35383
+MUSETT_T3_DSSD_X62_E_Zero_Dispersion -3.46699
+MUSETT_T3_DSSD_X63_E_Zero_Dispersion -3.13198
+MUSETT_T3_DSSD_X64_E_Zero_Dispersion -0.735981
+MUSETT_T3_DSSD_X65_E_Zero_Dispersion -7.34884
+MUSETT_T3_DSSD_X66_E_Zero_Dispersion -2.733
+MUSETT_T3_DSSD_X67_E_Zero_Dispersion -3.52966
+MUSETT_T3_DSSD_X68_E_Zero_Dispersion -2.67818
+MUSETT_T3_DSSD_X69_E_Zero_Dispersion 8200.68
+MUSETT_T3_DSSD_X70_E_Zero_Dispersion -4.88533
+MUSETT_T3_DSSD_X71_E_Zero_Dispersion -4.34478
+MUSETT_T3_DSSD_X72_E_Zero_Dispersion -4.36081
+MUSETT_T3_DSSD_X73_E_Zero_Dispersion -3.62389
+MUSETT_T3_DSSD_X74_E_Zero_Dispersion -5.57414
+MUSETT_T3_DSSD_X75_E_Zero_Dispersion -5.10048
+MUSETT_T3_DSSD_X76_E_Zero_Dispersion -5.65346
+MUSETT_T3_DSSD_X77_E_Zero_Dispersion -3.25937
+MUSETT_T3_DSSD_X78_E_Zero_Dispersion -3.57589
+MUSETT_T3_DSSD_X79_E_Zero_Dispersion -1.77804
+MUSETT_T3_DSSD_X80_E_Zero_Dispersion -1.80417
+MUSETT_T3_DSSD_X81_E_Zero_Dispersion -6.49837
+MUSETT_T3_DSSD_X82_E_Zero_Dispersion -8.41806
+MUSETT_T3_DSSD_X83_E_Zero_Dispersion -7.36628
+MUSETT_T3_DSSD_X84_E_Zero_Dispersion -8.6958
+MUSETT_T3_DSSD_X85_E_Zero_Dispersion -7.8555
+MUSETT_T3_DSSD_X86_E_Zero_Dispersion -8.67096
+MUSETT_T3_DSSD_X87_E_Zero_Dispersion -7.86593
+MUSETT_T3_DSSD_X88_E_Zero_Dispersion -9.73612
+MUSETT_T3_DSSD_X89_E_Zero_Dispersion -6.86882
+MUSETT_T3_DSSD_X90_E_Zero_Dispersion -6.15759
+MUSETT_T3_DSSD_X91_E_Zero_Dispersion -2.54625
+MUSETT_T3_DSSD_X92_E_Zero_Dispersion -5.02406
+MUSETT_T3_DSSD_X93_E_Zero_Dispersion -4.70687
+MUSETT_T3_DSSD_X94_E_Zero_Dispersion -3.9826
+MUSETT_T3_DSSD_X95_E_Zero_Dispersion -8.18982
+MUSETT_T3_DSSD_X96_E_Zero_Dispersion -6.23549
+MUSETT_T3_DSSD_X97_E_Zero_Dispersion -3.26386
+MUSETT_T3_DSSD_X98_E_Zero_Dispersion -2.31023
+MUSETT_T3_DSSD_X99_E_Zero_Dispersion -3.52817
+MUSETT_T3_DSSD_X100_E_Zero_Dispersion -1.22212
+MUSETT_T3_DSSD_X101_E_Zero_Dispersion -1.91003
+MUSETT_T3_DSSD_X102_E_Zero_Dispersion -7.86838
+MUSETT_T3_DSSD_X103_E_Zero_Dispersion -1.75857
+MUSETT_T3_DSSD_X104_E_Zero_Dispersion -3.27153
+MUSETT_T3_DSSD_X105_E_Zero_Dispersion -1.77059
+MUSETT_T3_DSSD_X106_E_Zero_Dispersion -9.94726
+MUSETT_T3_DSSD_X107_E_Zero_Dispersion -4.05166
+MUSETT_T3_DSSD_X108_E_Zero_Dispersion -5.07817
+MUSETT_T3_DSSD_X109_E_Zero_Dispersion -8.59766
+MUSETT_T3_DSSD_X110_E_Zero_Dispersion -2.95256
+MUSETT_T3_DSSD_X111_E_Zero_Dispersion -4.68738
+MUSETT_T3_DSSD_X112_E_Zero_Dispersion -1.26695
+MUSETT_T3_DSSD_X113_E_Zero_Dispersion -3.96787
+MUSETT_T3_DSSD_X114_E_Zero_Dispersion -2.26424
+MUSETT_T3_DSSD_X115_E_Zero_Dispersion -6.23865
+MUSETT_T3_DSSD_X116_E_Zero_Dispersion -3.69418
+MUSETT_T3_DSSD_X117_E_Zero_Dispersion -4.60262
+MUSETT_T3_DSSD_X118_E_Zero_Dispersion -4.18733
+MUSETT_T3_DSSD_X119_E_Zero_Dispersion -4.68356
+MUSETT_T3_DSSD_X120_E_Zero_Dispersion -4.30828
+MUSETT_T3_DSSD_X121_E_Zero_Dispersion -1.65165
+MUSETT_T3_DSSD_X122_E_Zero_Dispersion -1.45627
+MUSETT_T3_DSSD_X123_E_Zero_Dispersion -2.32492
+MUSETT_T3_DSSD_X124_E_Zero_Dispersion -1.46822
+MUSETT_T3_DSSD_X125_E_Zero_Dispersion -3.52944
+MUSETT_T3_DSSD_X126_E_Zero_Dispersion -3.28717
+MUSETT_T3_DSSD_X127_E_Zero_Dispersion -4.64587
+MUSETT_T3_DSSD_X128_E_Zero_Dispersion -0.944562
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/latex/double_alpha_run_244_X_MM3_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/latex/double_alpha_run_244_X_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b268ca7a448fdfbc64e01b287dd8f1095639ef42
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/latex/double_alpha_run_244_X_MM3_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+69 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.25851
+
+Sigma fit sigma: 0.518519
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b8e9902c2040d7f915f407dcbf10e57ab64702b7
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X1_E -61.4344 0.00750796
+MUSETT_T3_DSSD_X2_E -60.9311 0.00744726
+MUSETT_T3_DSSD_X3_E -61.3152 0.00749341
+MUSETT_T3_DSSD_X4_E -61.4404 0.00750847
+MUSETT_T3_DSSD_X5_E -61.3511 0.00749425
+MUSETT_T3_DSSD_X6_E -61.1564 0.00747159
+MUSETT_T3_DSSD_X7_E -61.2654 0.00748535
+MUSETT_T3_DSSD_X8_E -60.9618 0.00744638
+MUSETT_T3_DSSD_X9_E -60.9521 0.00744771
+MUSETT_T3_DSSD_X10_E -61.3243 0.00748969
+MUSETT_T3_DSSD_X11_E -61.1676 0.00747118
+MUSETT_T3_DSSD_X12_E -62.3027 0.00760888
+MUSETT_T3_DSSD_X13_E -61.0781 0.00745987
+MUSETT_T3_DSSD_X14_E -61.2459 0.00748024
+MUSETT_T3_DSSD_X15_E -61.0256 0.00745258
+MUSETT_T3_DSSD_X16_E -62.0394 0.00757675
+MUSETT_T3_DSSD_X17_E -63.0618 0.00770125
+MUSETT_T3_DSSD_X18_E -62.549 0.0076384
+MUSETT_T3_DSSD_X19_E -62.3853 0.00761829
+MUSETT_T3_DSSD_X20_E -62.2692 0.00760521
+MUSETT_T3_DSSD_X21_E -62.1327 0.00758719
+MUSETT_T3_DSSD_X22_E -62.3744 0.00762015
+MUSETT_T3_DSSD_X23_E -63.0067 0.00769716
+MUSETT_T3_DSSD_X24_E -63.2836 0.00772789
+MUSETT_T3_DSSD_X25_E -61.9669 0.00757139
+MUSETT_T3_DSSD_X26_E -62.8285 0.00767525
+MUSETT_T3_DSSD_X27_E -62.7963 0.00767196
+MUSETT_T3_DSSD_X28_E -62.5152 0.00763828
+MUSETT_T3_DSSD_X29_E -62.678 0.00765939
+MUSETT_T3_DSSD_X30_E -62.7253 0.00766476
+MUSETT_T3_DSSD_X31_E -63.7153 0.00778588
+MUSETT_T3_DSSD_X32_E -62.5499 0.00764735
+MUSETT_T3_DSSD_X33_E -56.8213 0.00696677
+MUSETT_T3_DSSD_X34_E -56.7982 0.00696255
+MUSETT_T3_DSSD_X35_E -55.526 0.00681059
+MUSETT_T3_DSSD_X36_E -56.4154 0.00691009
+MUSETT_T3_DSSD_X37_E -56.4757 0.00692283
+MUSETT_T3_DSSD_X38_E -57.2453 0.00700874
+MUSETT_T3_DSSD_X39_E -57.0613 0.00699212
+MUSETT_T3_DSSD_X40_E -57.0886 0.00698759
+MUSETT_T3_DSSD_X41_E -57.7589 0.00706822
+MUSETT_T3_DSSD_X42_E -57.3428 0.0070182
+MUSETT_T3_DSSD_X43_E -57.7241 0.00706065
+MUSETT_T3_DSSD_X44_E 7.39123 0.851608
+MUSETT_T3_DSSD_X45_E -57.7224 0.00706052
+MUSETT_T3_DSSD_X46_E -58.2105 0.00711805
+MUSETT_T3_DSSD_X47_E -57.7339 0.00705913
+MUSETT_T3_DSSD_X48_E -58.3554 0.00713166
+MUSETT_T3_DSSD_X49_E -56.5837 0.00691576
+MUSETT_T3_DSSD_X50_E -56.257 0.00687717
+MUSETT_T3_DSSD_X51_E -55.8364 0.00682767
+MUSETT_T3_DSSD_X52_E -55.9874 0.00684895
+MUSETT_T3_DSSD_X53_E -55.4265 0.00678359
+MUSETT_T3_DSSD_X54_E -55.9351 0.00684516
+MUSETT_T3_DSSD_X55_E -55.2927 0.00676592
+MUSETT_T3_DSSD_X56_E -55.7086 0.00682041
+MUSETT_T3_DSSD_X57_E -56.235 0.00688176
+MUSETT_T3_DSSD_X58_E -54.8461 0.00671602
+MUSETT_T3_DSSD_X59_E -55.4902 0.00679944
+MUSETT_T3_DSSD_X60_E -55.0588 0.00674752
+MUSETT_T3_DSSD_X61_E -54.1771 0.00664112
+MUSETT_T3_DSSD_X62_E -54.5191 0.00668556
+MUSETT_T3_DSSD_X63_E -54.0062 0.00663013
+MUSETT_T3_DSSD_X64_E -53.5202 0.00657298
+MUSETT_T3_DSSD_X65_E -63.7555 0.00778507
+MUSETT_T3_DSSD_X66_E -63.3991 0.00774165
+MUSETT_T3_DSSD_X67_E -63.062 0.00770084
+MUSETT_T3_DSSD_X68_E -63.3627 0.00773595
+MUSETT_T3_DSSD_X69_E -63.2931 0.00772761
+MUSETT_T3_DSSD_X70_E -62.9059 0.00768021
+MUSETT_T3_DSSD_X71_E -63.8362 0.00779493
+MUSETT_T3_DSSD_X72_E -62.0544 0.00757796
+MUSETT_T3_DSSD_X73_E -62.2713 0.00760224
+MUSETT_T3_DSSD_X74_E -62.6003 0.00764373
+MUSETT_T3_DSSD_X75_E -62.7878 0.00766484
+MUSETT_T3_DSSD_X76_E -62.953 0.00768723
+MUSETT_T3_DSSD_X77_E -63.6786 0.00777506
+MUSETT_T3_DSSD_X78_E -61.9665 0.00756692
+MUSETT_T3_DSSD_X79_E -62.1503 0.00758847
+MUSETT_T3_DSSD_X80_E -62.6432 0.0076476
+MUSETT_T3_DSSD_X81_E -62.0631 0.00757748
+MUSETT_T3_DSSD_X82_E -62.3142 0.00760837
+MUSETT_T3_DSSD_X83_E -62.2456 0.0076
+MUSETT_T3_DSSD_X84_E -62.2345 0.00759733
+MUSETT_T3_DSSD_X85_E -61.7445 0.00753758
+MUSETT_T3_DSSD_X86_E -61.9859 0.00756955
+MUSETT_T3_DSSD_X87_E -61.9838 0.00756817
+MUSETT_T3_DSSD_X88_E -61.6506 0.00752898
+MUSETT_T3_DSSD_X89_E -61.8489 0.00755271
+MUSETT_T3_DSSD_X90_E -62.2366 0.00760022
+MUSETT_T3_DSSD_X91_E -61.9781 0.00756676
+MUSETT_T3_DSSD_X92_E -61.5129 0.00751273
+MUSETT_T3_DSSD_X93_E -62.2053 0.00759784
+MUSETT_T3_DSSD_X94_E -62.0013 0.00757199
+MUSETT_T3_DSSD_X95_E -61.8074 0.00754657
+MUSETT_T3_DSSD_X96_E -61.8809 0.0075563
+MUSETT_T3_DSSD_X97_E -55.7296 0.00680537
+MUSETT_T3_DSSD_X98_E -55.4005 0.00676761
+MUSETT_T3_DSSD_X99_E -54.8557 0.00669758
+MUSETT_T3_DSSD_X100_E -55.2366 0.00674709
+MUSETT_T3_DSSD_X101_E -55.5893 0.00678792
+MUSETT_T3_DSSD_X102_E -55.4701 0.00677435
+MUSETT_T3_DSSD_X103_E -55.4915 0.00677789
+MUSETT_T3_DSSD_X104_E -54.892 0.00670236
+MUSETT_T3_DSSD_X105_E -55.1963 0.00673947
+MUSETT_T3_DSSD_X106_E -55.5479 0.00678426
+MUSETT_T3_DSSD_X107_E -55.5634 0.00678306
+MUSETT_T3_DSSD_X108_E -55.4827 0.00677291
+MUSETT_T3_DSSD_X109_E -56.4925 0.00689605
+MUSETT_T3_DSSD_X110_E -55.8164 0.00681684
+MUSETT_T3_DSSD_X111_E -55.579 0.00678476
+MUSETT_T3_DSSD_X112_E -55.4701 0.00677075
+MUSETT_T3_DSSD_X113_E -57.0981 0.00697327
+MUSETT_T3_DSSD_X114_E -56.4556 0.00689535
+MUSETT_T3_DSSD_X115_E -57.1944 0.00698281
+MUSETT_T3_DSSD_X116_E -56.5164 0.00690203
+MUSETT_T3_DSSD_X117_E -68.2358 0.0083431
+MUSETT_T3_DSSD_X118_E -56.5714 0.00691135
+MUSETT_T3_DSSD_X119_E -56.8792 0.00694766
+MUSETT_T3_DSSD_X120_E -55.7309 0.00680731
+MUSETT_T3_DSSD_X121_E -56.3993 0.00688613
+MUSETT_T3_DSSD_X122_E -57.2433 0.00699377
+MUSETT_T3_DSSD_X123_E -57.1708 0.00698018
+MUSETT_T3_DSSD_X124_E -56.4433 0.00689599
+MUSETT_T3_DSSD_X125_E -57.2047 0.00698725
+MUSETT_T3_DSSD_X126_E -56.3667 0.00688249
+MUSETT_T3_DSSD_X127_E -57.3995 0.00700974
+MUSETT_T3_DSSD_X128_E -56.2814 0.00687093
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..9467a373b042d1abf6d1eab370731ae60f5b9e2b
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T4_DSSD_X1_E_Zero_Dispersion 9.43714
+MUSETT_T4_DSSD_X2_E_Zero_Dispersion 10.3151
+MUSETT_T4_DSSD_X3_E_Zero_Dispersion 9.45406
+MUSETT_T4_DSSD_X4_E_Zero_Dispersion 9.18506
+MUSETT_T4_DSSD_X5_E_Zero_Dispersion 5.57887
+MUSETT_T4_DSSD_X6_E_Zero_Dispersion 6.80755
+MUSETT_T4_DSSD_X7_E_Zero_Dispersion 7.29718
+MUSETT_T4_DSSD_X8_E_Zero_Dispersion 5.23075
+MUSETT_T4_DSSD_X9_E_Zero_Dispersion 7.9912
+MUSETT_T4_DSSD_X10_E_Zero_Dispersion 4.16206
+MUSETT_T4_DSSD_X11_E_Zero_Dispersion 4.86749
+MUSETT_T4_DSSD_X12_E_Zero_Dispersion 3.85003
+MUSETT_T4_DSSD_X13_E_Zero_Dispersion 4.43557
+MUSETT_T4_DSSD_X14_E_Zero_Dispersion 4.30789
+MUSETT_T4_DSSD_X15_E_Zero_Dispersion 3.47843
+MUSETT_T4_DSSD_X16_E_Zero_Dispersion 3.87588
+MUSETT_T4_DSSD_X17_E_Zero_Dispersion 3.48618
+MUSETT_T4_DSSD_X18_E_Zero_Dispersion 3.23736
+MUSETT_T4_DSSD_X19_E_Zero_Dispersion 3.11517
+MUSETT_T4_DSSD_X20_E_Zero_Dispersion 4.29254
+MUSETT_T4_DSSD_X21_E_Zero_Dispersion 2.83918
+MUSETT_T4_DSSD_X22_E_Zero_Dispersion 6.54141
+MUSETT_T4_DSSD_X23_E_Zero_Dispersion 6.2891
+MUSETT_T4_DSSD_X24_E_Zero_Dispersion 3.01035
+MUSETT_T4_DSSD_X25_E_Zero_Dispersion 7.64501
+MUSETT_T4_DSSD_X26_E_Zero_Dispersion 6.14988
+MUSETT_T4_DSSD_X27_E_Zero_Dispersion 6.82549
+MUSETT_T4_DSSD_X28_E_Zero_Dispersion 7.5375
+MUSETT_T4_DSSD_X29_E_Zero_Dispersion 8.83919
+MUSETT_T4_DSSD_X30_E_Zero_Dispersion 8.40668
+MUSETT_T4_DSSD_X31_E_Zero_Dispersion 8.56127
+MUSETT_T4_DSSD_X32_E_Zero_Dispersion 12.7163
+MUSETT_T4_DSSD_X33_E_Zero_Dispersion 35.9519
+MUSETT_T4_DSSD_X34_E_Zero_Dispersion 34.3338
+MUSETT_T4_DSSD_X35_E_Zero_Dispersion 39.1134
+MUSETT_T4_DSSD_X36_E_Zero_Dispersion 27.8005
+MUSETT_T4_DSSD_X37_E_Zero_Dispersion 34.1042
+MUSETT_T4_DSSD_X38_E_Zero_Dispersion 24.3036
+MUSETT_T4_DSSD_X39_E_Zero_Dispersion 31.1979
+MUSETT_T4_DSSD_X40_E_Zero_Dispersion 21.9896
+MUSETT_T4_DSSD_X41_E_Zero_Dispersion 20.3563
+MUSETT_T4_DSSD_X42_E_Zero_Dispersion 21.4134
+MUSETT_T4_DSSD_X43_E_Zero_Dispersion 16.5249
+MUSETT_T4_DSSD_X44_E_Zero_Dispersion 8200.68
+MUSETT_T4_DSSD_X45_E_Zero_Dispersion 16.6242
+MUSETT_T4_DSSD_X46_E_Zero_Dispersion 14.1255
+MUSETT_T4_DSSD_X47_E_Zero_Dispersion 13.3807
+MUSETT_T4_DSSD_X48_E_Zero_Dispersion 9.42373
+MUSETT_T4_DSSD_X49_E_Zero_Dispersion 10.1485
+MUSETT_T4_DSSD_X50_E_Zero_Dispersion 11.7371
+MUSETT_T4_DSSD_X51_E_Zero_Dispersion 14.0411
+MUSETT_T4_DSSD_X52_E_Zero_Dispersion 17.4005
+MUSETT_T4_DSSD_X53_E_Zero_Dispersion 21.3321
+MUSETT_T4_DSSD_X54_E_Zero_Dispersion 20.5253
+MUSETT_T4_DSSD_X55_E_Zero_Dispersion 19.7653
+MUSETT_T4_DSSD_X56_E_Zero_Dispersion 24.0834
+MUSETT_T4_DSSD_X57_E_Zero_Dispersion 20.4027
+MUSETT_T4_DSSD_X58_E_Zero_Dispersion 25.5444
+MUSETT_T4_DSSD_X59_E_Zero_Dispersion 30.9983
+MUSETT_T4_DSSD_X60_E_Zero_Dispersion 32.1426
+MUSETT_T4_DSSD_X61_E_Zero_Dispersion 34.1756
+MUSETT_T4_DSSD_X62_E_Zero_Dispersion 37.2374
+MUSETT_T4_DSSD_X63_E_Zero_Dispersion 46.4195
+MUSETT_T4_DSSD_X64_E_Zero_Dispersion 49.5439
+MUSETT_T4_DSSD_X65_E_Zero_Dispersion 2.54403
+MUSETT_T4_DSSD_X66_E_Zero_Dispersion 2.64722
+MUSETT_T4_DSSD_X67_E_Zero_Dispersion 3.02016
+MUSETT_T4_DSSD_X68_E_Zero_Dispersion 1.31956
+MUSETT_T4_DSSD_X69_E_Zero_Dispersion 1.48183
+MUSETT_T4_DSSD_X70_E_Zero_Dispersion 1.36036
+MUSETT_T4_DSSD_X71_E_Zero_Dispersion 2.54787
+MUSETT_T4_DSSD_X72_E_Zero_Dispersion 3.19439
+MUSETT_T4_DSSD_X73_E_Zero_Dispersion 0.815804
+MUSETT_T4_DSSD_X74_E_Zero_Dispersion 2.2367
+MUSETT_T4_DSSD_X75_E_Zero_Dispersion 0.333278
+MUSETT_T4_DSSD_X76_E_Zero_Dispersion 2.70478
+MUSETT_T4_DSSD_X77_E_Zero_Dispersion 1.88898
+MUSETT_T4_DSSD_X78_E_Zero_Dispersion 2.86848
+MUSETT_T4_DSSD_X79_E_Zero_Dispersion 1.90286
+MUSETT_T4_DSSD_X80_E_Zero_Dispersion 0.769777
+MUSETT_T4_DSSD_X81_E_Zero_Dispersion 1.53316
+MUSETT_T4_DSSD_X82_E_Zero_Dispersion 1.78934
+MUSETT_T4_DSSD_X83_E_Zero_Dispersion 1.7956
+MUSETT_T4_DSSD_X84_E_Zero_Dispersion 0.374982
+MUSETT_T4_DSSD_X85_E_Zero_Dispersion 0.447399
+MUSETT_T4_DSSD_X86_E_Zero_Dispersion 3.15039
+MUSETT_T4_DSSD_X87_E_Zero_Dispersion 1.93764
+MUSETT_T4_DSSD_X88_E_Zero_Dispersion 3.5625
+MUSETT_T4_DSSD_X89_E_Zero_Dispersion 3.03336
+MUSETT_T4_DSSD_X90_E_Zero_Dispersion 3.2148
+MUSETT_T4_DSSD_X91_E_Zero_Dispersion 1.15977
+MUSETT_T4_DSSD_X92_E_Zero_Dispersion 4.17241
+MUSETT_T4_DSSD_X93_E_Zero_Dispersion 4.77125
+MUSETT_T4_DSSD_X94_E_Zero_Dispersion 3.75748
+MUSETT_T4_DSSD_X95_E_Zero_Dispersion 1.86818
+MUSETT_T4_DSSD_X96_E_Zero_Dispersion 2.69147
+MUSETT_T4_DSSD_X97_E_Zero_Dispersion 2.94685
+MUSETT_T4_DSSD_X98_E_Zero_Dispersion 5.88338
+MUSETT_T4_DSSD_X99_E_Zero_Dispersion 1.62951
+MUSETT_T4_DSSD_X100_E_Zero_Dispersion 5.26274
+MUSETT_T4_DSSD_X101_E_Zero_Dispersion 2.55273
+MUSETT_T4_DSSD_X102_E_Zero_Dispersion 3.74598
+MUSETT_T4_DSSD_X103_E_Zero_Dispersion 4.8642
+MUSETT_T4_DSSD_X104_E_Zero_Dispersion 2.04672
+MUSETT_T4_DSSD_X105_E_Zero_Dispersion 2.00002
+MUSETT_T4_DSSD_X106_E_Zero_Dispersion 4.24525
+MUSETT_T4_DSSD_X107_E_Zero_Dispersion 0.510241
+MUSETT_T4_DSSD_X108_E_Zero_Dispersion 0.13569
+MUSETT_T4_DSSD_X109_E_Zero_Dispersion -0.00527578
+MUSETT_T4_DSSD_X110_E_Zero_Dispersion 3.98584
+MUSETT_T4_DSSD_X111_E_Zero_Dispersion 0.259296
+MUSETT_T4_DSSD_X112_E_Zero_Dispersion -0.602258
+MUSETT_T4_DSSD_X113_E_Zero_Dispersion 3.85513
+MUSETT_T4_DSSD_X114_E_Zero_Dispersion 4.51471
+MUSETT_T4_DSSD_X115_E_Zero_Dispersion 1.25465
+MUSETT_T4_DSSD_X116_E_Zero_Dispersion 3.63238
+MUSETT_T4_DSSD_X117_E_Zero_Dispersion 13.2951
+MUSETT_T4_DSSD_X118_E_Zero_Dispersion 6.71239
+MUSETT_T4_DSSD_X119_E_Zero_Dispersion 5.18727
+MUSETT_T4_DSSD_X120_E_Zero_Dispersion 5.07562
+MUSETT_T4_DSSD_X121_E_Zero_Dispersion 1.72684
+MUSETT_T4_DSSD_X122_E_Zero_Dispersion 7.10552
+MUSETT_T4_DSSD_X123_E_Zero_Dispersion 1.55087
+MUSETT_T4_DSSD_X124_E_Zero_Dispersion 7.0511
+MUSETT_T4_DSSD_X125_E_Zero_Dispersion 4.98496
+MUSETT_T4_DSSD_X126_E_Zero_Dispersion 2.12141
+MUSETT_T4_DSSD_X127_E_Zero_Dispersion 3.46279
+MUSETT_T4_DSSD_X128_E_Zero_Dispersion 0.731019
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/latex/double_alpha_run_244_X_MM4_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/latex/double_alpha_run_244_X_MM4_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2b328da3b288cd013ccc67870c591b23eee440cb
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/latex/double_alpha_run_244_X_MM4_E.tex
@@ -0,0 +1,72 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  4
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 4 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+33 &  zero extrapolation too high:35.9519channels;  \\ \hline 
+34 &  zero extrapolation too high:34.3338channels;  \\ \hline 
+35 &  zero extrapolation too high:39.1134channels;  \\ \hline 
+37 &  zero extrapolation too high:34.1042channels;  \\ \hline 
+39 &  zero extrapolation too high:31.1979channels;  \\ \hline 
+44 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+59 &  zero extrapolation too high:30.9983channels;  \\ \hline 
+60 &  zero extrapolation too high:32.1426channels;  \\ \hline 
+61 &  zero extrapolation too high:34.1756channels;  \\ \hline 
+62 &  zero extrapolation too high:37.2374channels;  \\ \hline 
+63 &  zero extrapolation too high:46.4195channels;  \\ \hline 
+64 &  zero extrapolation too high:49.5439channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM4_E/latex/pictures/Telescope4Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 1.94304
+
+Sigma fit sigma: 0.256664
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/peaks/Cal_Str_X_E_MM4.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/peaks/Cal_Str_X_E_MM4.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b6eb9970c8c803219b329c0168ce457398ffda3b
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,129 @@
+MUSETT_T0_DSSD_Y1_E 6.82575 -0.844837
+MUSETT_T0_DSSD_Y2_E 60.0305 -0.00732332
+MUSETT_T0_DSSD_Y3_E 60.4656 -0.00737752
+MUSETT_T0_DSSD_Y4_E 60.542 -0.00738408
+MUSETT_T0_DSSD_Y5_E 59.6447 -0.0072775
+MUSETT_T0_DSSD_Y6_E 59.7974 -0.00729656
+MUSETT_T0_DSSD_Y7_E 60.3772 -0.00736639
+MUSETT_T0_DSSD_Y8_E 60.1212 -0.00733684
+MUSETT_T0_DSSD_Y9_E 59.8625 -0.00730581
+MUSETT_T0_DSSD_Y10_E 59.496 -0.00725634
+MUSETT_T0_DSSD_Y11_E 59.9281 -0.00730956
+MUSETT_T0_DSSD_Y12_E 59.6043 -0.00727125
+MUSETT_T0_DSSD_Y13_E 60.4812 -0.00737889
+MUSETT_T0_DSSD_Y14_E 60.4433 -0.00737206
+MUSETT_T0_DSSD_Y15_E 60.6333 -0.00739619
+MUSETT_T0_DSSD_Y16_E 60.2417 -0.00734748
+MUSETT_T0_DSSD_Y17_E 59.7989 -0.00729235
+MUSETT_T0_DSSD_Y18_E 60.1387 -0.00733664
+MUSETT_T0_DSSD_Y19_E 59.8362 -0.00729822
+MUSETT_T0_DSSD_Y20_E 59.7958 -0.00729573
+MUSETT_T0_DSSD_Y21_E 59.8881 -0.00730571
+MUSETT_T0_DSSD_Y22_E 59.8897 -0.00730593
+MUSETT_T0_DSSD_Y23_E 59.8529 -0.0073019
+MUSETT_T0_DSSD_Y24_E 59.0455 -0.00719993
+MUSETT_T0_DSSD_Y25_E 59.7814 -0.00729341
+MUSETT_T0_DSSD_Y26_E 59.1099 -0.00720773
+MUSETT_T0_DSSD_Y27_E 59.6976 -0.00728338
+MUSETT_T0_DSSD_Y28_E 60.2085 -0.00734867
+MUSETT_T0_DSSD_Y29_E 59.5753 -0.00726912
+MUSETT_T0_DSSD_Y30_E 59.3138 -0.00723859
+MUSETT_T0_DSSD_Y31_E 59.3163 -0.00723493
+MUSETT_T0_DSSD_Y32_E 60.5241 -0.00738219
+MUSETT_T0_DSSD_Y33_E 56.2258 -0.00686009
+MUSETT_T0_DSSD_Y34_E 56.6532 -0.00691064
+MUSETT_T0_DSSD_Y35_E 56.2561 -0.00686504
+MUSETT_T0_DSSD_Y36_E 56.722 -0.0069207
+MUSETT_T0_DSSD_Y37_E 56.847 -0.00693147
+MUSETT_T0_DSSD_Y38_E 56.9544 -0.00694991
+MUSETT_T0_DSSD_Y39_E 56.134 -0.00684856
+MUSETT_T0_DSSD_Y40_E 56.0097 -0.00683111
+MUSETT_T0_DSSD_Y41_E 56.6694 -0.00691524
+MUSETT_T0_DSSD_Y42_E 56.2779 -0.00686313
+MUSETT_T0_DSSD_Y43_E 56.2253 -0.00685882
+MUSETT_T0_DSSD_Y44_E 56.1145 -0.00684532
+MUSETT_T0_DSSD_Y45_E 56.4761 -0.00688999
+MUSETT_T0_DSSD_Y46_E 56.4819 -0.00688879
+MUSETT_T0_DSSD_Y47_E 57.2404 -0.00698108
+MUSETT_T0_DSSD_Y48_E 56.2289 -0.00686101
+MUSETT_T0_DSSD_Y49_E 57.398 -0.00700506
+MUSETT_T0_DSSD_Y50_E 56.6208 -0.00690614
+MUSETT_T0_DSSD_Y51_E 56.4304 -0.00688429
+MUSETT_T0_DSSD_Y52_E 56.0271 -0.00683326
+MUSETT_T0_DSSD_Y53_E 56.7227 -0.00691907
+MUSETT_T0_DSSD_Y54_E 56.4653 -0.00688772
+MUSETT_T0_DSSD_Y55_E 56.1677 -0.00685025
+MUSETT_T0_DSSD_Y56_E 57.0927 -0.00696322
+MUSETT_T0_DSSD_Y57_E 56.9876 -0.00695253
+MUSETT_T0_DSSD_Y58_E 56.4869 -0.00689167
+MUSETT_T0_DSSD_Y59_E 56.5437 -0.00689688
+MUSETT_T0_DSSD_Y60_E 56.8763 -0.00693813
+MUSETT_T0_DSSD_Y61_E 56.7642 -0.00692306
+MUSETT_T0_DSSD_Y62_E 56.5536 -0.00689607
+MUSETT_T0_DSSD_Y63_E 57.0689 -0.00696044
+MUSETT_T0_DSSD_Y64_E 57.4824 -0.007011
+MUSETT_T0_DSSD_Y65_E 60.4372 -0.00737119
+MUSETT_T0_DSSD_Y66_E 60.7663 -0.0074137
+MUSETT_T0_DSSD_Y67_E 60.5292 -0.00738309
+MUSETT_T0_DSSD_Y68_E 60.9793 -0.00744018
+MUSETT_T0_DSSD_Y69_E 60.0308 -0.00732315
+MUSETT_T0_DSSD_Y70_E 60.9999 -0.00743892
+MUSETT_T0_DSSD_Y71_E 60.3109 -0.00735447
+MUSETT_T0_DSSD_Y72_E 59.935 -0.00731087
+MUSETT_T0_DSSD_Y73_E 61.1324 -0.0074552
+MUSETT_T0_DSSD_Y74_E 60.5495 -0.00738399
+MUSETT_T0_DSSD_Y75_E 60.5954 -0.0073903
+MUSETT_T0_DSSD_Y76_E 60.7486 -0.00740942
+MUSETT_T0_DSSD_Y77_E 60.1728 -0.00734104
+MUSETT_T0_DSSD_Y78_E 60.9903 -0.00744098
+MUSETT_T0_DSSD_Y79_E 61.279 -0.00747631
+MUSETT_T0_DSSD_Y80_E 60.4295 -0.00736811
+MUSETT_T0_DSSD_Y81_E 61.6075 -0.0075119
+MUSETT_T0_DSSD_Y82_E 60.614 -0.00739305
+MUSETT_T0_DSSD_Y83_E 60.9806 -0.00743603
+MUSETT_T0_DSSD_Y84_E 61.5583 -0.00750846
+MUSETT_T0_DSSD_Y85_E 60.4678 -0.00737414
+MUSETT_T0_DSSD_Y86_E 60.2097 -0.00734092
+MUSETT_T0_DSSD_Y87_E 61.2218 -0.00746599
+MUSETT_T0_DSSD_Y88_E 60.8157 -0.00741559
+MUSETT_T0_DSSD_Y89_E 60.5574 -0.00738398
+MUSETT_T0_DSSD_Y90_E 60.8627 -0.00742455
+MUSETT_T0_DSSD_Y91_E 60.5988 -0.00739044
+MUSETT_T0_DSSD_Y92_E 60.8428 -0.00741833
+MUSETT_T0_DSSD_Y93_E 61.1607 -0.00745558
+MUSETT_T0_DSSD_Y94_E 61.0983 -0.00745144
+MUSETT_T0_DSSD_Y95_E 61.8302 -0.0075415
+MUSETT_T0_DSSD_Y96_E 60.0553 -0.00731929
+MUSETT_T0_DSSD_Y97_E 55.7742 -0.00679946
+MUSETT_T0_DSSD_Y98_E 56.1832 -0.00685158
+MUSETT_T0_DSSD_Y99_E 56.152 -0.00684972
+MUSETT_T0_DSSD_Y100_E 55.912 -0.00681729
+MUSETT_T0_DSSD_Y101_E 55.6362 -0.00678371
+MUSETT_T0_DSSD_Y102_E 55.8572 -0.00681179
+MUSETT_T0_DSSD_Y103_E 55.486 -0.00676551
+MUSETT_T0_DSSD_Y104_E 55.885 -0.00681303
+MUSETT_T0_DSSD_Y105_E 56.4646 -0.00688688
+MUSETT_T0_DSSD_Y106_E 55.5213 -0.00677028
+MUSETT_T0_DSSD_Y107_E 56.5196 -0.00689244
+MUSETT_T0_DSSD_Y108_E 56.9227 -0.00694262
+MUSETT_T0_DSSD_Y109_E 56.1534 -0.00684992
+MUSETT_T0_DSSD_Y110_E 56.1398 -0.00684749
+MUSETT_T0_DSSD_Y111_E 56.3085 -0.00686958
+MUSETT_T0_DSSD_Y112_E 55.8333 -0.00680889
+MUSETT_T0_DSSD_Y113_E 56.4396 -0.00688391
+MUSETT_T0_DSSD_Y114_E 56.5463 -0.00689512
+MUSETT_T0_DSSD_Y115_E 56.5453 -0.00689864
+MUSETT_T0_DSSD_Y116_E 56.3018 -0.00686687
+MUSETT_T0_DSSD_Y117_E 56.705 -0.00691355
+MUSETT_T0_DSSD_Y118_E 56.201 -0.00685677
+MUSETT_T0_DSSD_Y119_E 55.7838 -0.00680077
+MUSETT_T0_DSSD_Y120_E 56.2447 -0.0068617
+MUSETT_T0_DSSD_Y121_E 56.8408 -0.00693173
+MUSETT_T0_DSSD_Y122_E 56.5297 -0.00689177
+MUSETT_T0_DSSD_Y123_E 56.1895 -0.00685299
+MUSETT_T0_DSSD_Y124_E 55.5455 -0.00677484
+MUSETT_T0_DSSD_Y125_E 55.8037 -0.00680289
+MUSETT_T0_DSSD_Y126_E 55.2461 -0.00673471
+MUSETT_T0_DSSD_Y127_E 56.4438 -0.00688289
+MUSETT_T0_DSSD_Y128_E 56.0716 -0.00683804
+0
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..318ba9987b5d4da82bdbcfd61fd4a701019ef34a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X1_E_Zero_Dispersion 8183.92
+MUSETT_T1_DSSD_X2_E_Zero_Dispersion -5.17044
+MUSETT_T1_DSSD_X3_E_Zero_Dispersion -3.92847
+MUSETT_T1_DSSD_X4_E_Zero_Dispersion -6.99527
+MUSETT_T1_DSSD_X5_E_Zero_Dispersion -3.77063
+MUSETT_T1_DSSD_X6_E_Zero_Dispersion -3.28123
+MUSETT_T1_DSSD_X7_E_Zero_Dispersion -4.30523
+MUSETT_T1_DSSD_X8_E_Zero_Dispersion -2.42544
+MUSETT_T1_DSSD_X9_E_Zero_Dispersion -1.81463
+MUSETT_T1_DSSD_X10_E_Zero_Dispersion -7.16592
+MUSETT_T1_DSSD_X11_E_Zero_Dispersion -6.59667
+MUSETT_T1_DSSD_X12_E_Zero_Dispersion -5.2663
+MUSETT_T1_DSSD_X13_E_Zero_Dispersion -4.51215
+MUSETT_T1_DSSD_X14_E_Zero_Dispersion -6.97301
+MUSETT_T1_DSSD_X15_E_Zero_Dispersion -5.9137
+MUSETT_T1_DSSD_X16_E_Zero_Dispersion -6.95885
+MUSETT_T1_DSSD_X17_E_Zero_Dispersion -8.21584
+MUSETT_T1_DSSD_X18_E_Zero_Dispersion -5.03832
+MUSETT_T1_DSSD_X19_E_Zero_Dispersion -6.74204
+MUSETT_T1_DSSD_X20_E_Zero_Dispersion -4.0087
+MUSETT_T1_DSSD_X21_E_Zero_Dispersion -5.43692
+MUSETT_T1_DSSD_X22_E_Zero_Dispersion -5.40324
+MUSETT_T1_DSSD_X23_E_Zero_Dispersion -4.89198
+MUSETT_T1_DSSD_X24_E_Zero_Dispersion -8.84137
+MUSETT_T1_DSSD_X25_E_Zero_Dispersion -4.63797
+MUSETT_T1_DSSD_X26_E_Zero_Dispersion -8.90324
+MUSETT_T1_DSSD_X27_E_Zero_Dispersion -4.40912
+MUSETT_T1_DSSD_X28_E_Zero_Dispersion -1.11383
+MUSETT_T1_DSSD_X29_E_Zero_Dispersion -3.66571
+MUSETT_T1_DSSD_X30_E_Zero_Dispersion -2.10558
+MUSETT_T1_DSSD_X31_E_Zero_Dispersion -6.59864
+MUSETT_T1_DSSD_X32_E_Zero_Dispersion -6.67447
+MUSETT_T1_DSSD_X33_E_Zero_Dispersion -4.07185
+MUSETT_T1_DSSD_X34_E_Zero_Dispersion -5.96725
+MUSETT_T1_DSSD_X35_E_Zero_Dispersion -2.57858
+MUSETT_T1_DSSD_X36_E_Zero_Dispersion -3.98445
+MUSETT_T1_DSSD_X37_E_Zero_Dispersion -9.29023
+MUSETT_T1_DSSD_X38_E_Zero_Dispersion -2.99038
+MUSETT_T1_DSSD_X39_E_Zero_Dispersion -4.47744
+MUSETT_T1_DSSD_X40_E_Zero_Dispersion -7.21395
+MUSETT_T1_DSSD_X41_E_Zero_Dispersion -2.85691
+MUSETT_T1_DSSD_X42_E_Zero_Dispersion -8.03008
+MUSETT_T1_DSSD_X43_E_Zero_Dispersion -5.52405
+MUSETT_T1_DSSD_X44_E_Zero_Dispersion -5.50196
+MUSETT_T1_DSSD_X45_E_Zero_Dispersion -4.82071
+MUSETT_T1_DSSD_X46_E_Zero_Dispersion -7.09976
+MUSETT_T1_DSSD_X47_E_Zero_Dispersion -7.35468
+MUSETT_T1_DSSD_X48_E_Zero_Dispersion -3.43199
+MUSETT_T1_DSSD_X49_E_Zero_Dispersion -1.79955
+MUSETT_T1_DSSD_X50_E_Zero_Dispersion -6.61684
+MUSETT_T1_DSSD_X51_E_Zero_Dispersion -4.97747
+MUSETT_T1_DSSD_X52_E_Zero_Dispersion -7.18129
+MUSETT_T1_DSSD_X53_E_Zero_Dispersion -6.01197
+MUSETT_T1_DSSD_X54_E_Zero_Dispersion -5.97719
+MUSETT_T1_DSSD_X55_E_Zero_Dispersion -7.36041
+MUSETT_T1_DSSD_X56_E_Zero_Dispersion -7.17978
+MUSETT_T1_DSSD_X57_E_Zero_Dispersion -4.67205
+MUSETT_T1_DSSD_X58_E_Zero_Dispersion -4.40417
+MUSETT_T1_DSSD_X59_E_Zero_Dispersion -6.45299
+MUSETT_T1_DSSD_X60_E_Zero_Dispersion -5.64194
+MUSETT_T1_DSSD_X61_E_Zero_Dispersion -7.28262
+MUSETT_T1_DSSD_X62_E_Zero_Dispersion -8.83294
+MUSETT_T1_DSSD_X63_E_Zero_Dispersion -7.03943
+MUSETT_T1_DSSD_X64_E_Zero_Dispersion -6.87995
+MUSETT_T1_DSSD_X65_E_Zero_Dispersion -7.12
+MUSETT_T1_DSSD_X66_E_Zero_Dispersion -4.49207
+MUSETT_T1_DSSD_X67_E_Zero_Dispersion -6.36095
+MUSETT_T1_DSSD_X68_E_Zero_Dispersion -3.95364
+MUSETT_T1_DSSD_X69_E_Zero_Dispersion -5.40585
+MUSETT_T1_DSSD_X70_E_Zero_Dispersion -8.10005
+MUSETT_T1_DSSD_X71_E_Zero_Dispersion -8.57551
+MUSETT_T1_DSSD_X72_E_Zero_Dispersion -6.06378
+MUSETT_T1_DSSD_X73_E_Zero_Dispersion -7.96105
+MUSETT_T1_DSSD_X74_E_Zero_Dispersion -8.10179
+MUSETT_T1_DSSD_X75_E_Zero_Dispersion -7.31795
+MUSETT_T1_DSSD_X76_E_Zero_Dispersion -6.83977
+MUSETT_T1_DSSD_X77_E_Zero_Dispersion -4.77703
+MUSETT_T1_DSSD_X78_E_Zero_Dispersion -4.54183
+MUSETT_T1_DSSD_X79_E_Zero_Dispersion -4.41532
+MUSETT_T1_DSSD_X80_E_Zero_Dispersion -9.49729
+MUSETT_T1_DSSD_X81_E_Zero_Dispersion -9.32143
+MUSETT_T1_DSSD_X82_E_Zero_Dispersion -6.78535
+MUSETT_T1_DSSD_X83_E_Zero_Dispersion -8.69509
+MUSETT_T1_DSSD_X84_E_Zero_Dispersion -6.52163
+MUSETT_T1_DSSD_X85_E_Zero_Dispersion -7.98711
+MUSETT_T1_DSSD_X86_E_Zero_Dispersion -9.92926
+MUSETT_T1_DSSD_X87_E_Zero_Dispersion -8.09908
+MUSETT_T1_DSSD_X88_E_Zero_Dispersion -9.06084
+MUSETT_T1_DSSD_X89_E_Zero_Dispersion -9.19743
+MUSETT_T1_DSSD_X90_E_Zero_Dispersion -5.4875
+MUSETT_T1_DSSD_X91_E_Zero_Dispersion -7.61256
+MUSETT_T1_DSSD_X92_E_Zero_Dispersion -9.68182
+MUSETT_T1_DSSD_X93_E_Zero_Dispersion -11.3434
+MUSETT_T1_DSSD_X94_E_Zero_Dispersion -7.52494
+MUSETT_T1_DSSD_X95_E_Zero_Dispersion -6.66366
+MUSETT_T1_DSSD_X96_E_Zero_Dispersion -13.0664
+MUSETT_T1_DSSD_X97_E_Zero_Dispersion -10.7421
+MUSETT_T1_DSSD_X98_E_Zero_Dispersion -8.03092
+MUSETT_T1_DSSD_X99_E_Zero_Dispersion -5.70467
+MUSETT_T1_DSSD_X100_E_Zero_Dispersion -9.49564
+MUSETT_T1_DSSD_X101_E_Zero_Dispersion -9.43986
+MUSETT_T1_DSSD_X102_E_Zero_Dispersion -8.07489
+MUSETT_T1_DSSD_X103_E_Zero_Dispersion -9.29445
+MUSETT_T1_DSSD_X104_E_Zero_Dispersion -10.6584
+MUSETT_T1_DSSD_X105_E_Zero_Dispersion -6.86707
+MUSETT_T1_DSSD_X106_E_Zero_Dispersion -8.73563
+MUSETT_T1_DSSD_X107_E_Zero_Dispersion -8.23037
+MUSETT_T1_DSSD_X108_E_Zero_Dispersion -7.02417
+MUSETT_T1_DSSD_X109_E_Zero_Dispersion -5.66842
+MUSETT_T1_DSSD_X110_E_Zero_Dispersion -6.59401
+MUSETT_T1_DSSD_X111_E_Zero_Dispersion -4.7843
+MUSETT_T1_DSSD_X112_E_Zero_Dispersion -8.05371
+MUSETT_T1_DSSD_X113_E_Zero_Dispersion -6.76558
+MUSETT_T1_DSSD_X114_E_Zero_Dispersion -8.92279
+MUSETT_T1_DSSD_X115_E_Zero_Dispersion -4.59212
+MUSETT_T1_DSSD_X116_E_Zero_Dispersion -7.04071
+MUSETT_T1_DSSD_X117_E_Zero_Dispersion -10.0125
+MUSETT_T1_DSSD_X118_E_Zero_Dispersion -4.43158
+MUSETT_T1_DSSD_X119_E_Zero_Dispersion -10.5822
+MUSETT_T1_DSSD_X120_E_Zero_Dispersion -4.90309
+MUSETT_T1_DSSD_X121_E_Zero_Dispersion -8.08149
+MUSETT_T1_DSSD_X122_E_Zero_Dispersion -10.5025
+MUSETT_T1_DSSD_X123_E_Zero_Dispersion -7.25654
+MUSETT_T1_DSSD_X124_E_Zero_Dispersion -6.79145
+MUSETT_T1_DSSD_X125_E_Zero_Dispersion -10.95
+MUSETT_T1_DSSD_X126_E_Zero_Dispersion -11.1871
+MUSETT_T1_DSSD_X127_E_Zero_Dispersion -8.59784
+MUSETT_T1_DSSD_X128_E_Zero_Dispersion -7.95412
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/latex/double_alpha_run_244_Y_MM1_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/latex/double_alpha_run_244_Y_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..eec190f7d97791444a4ab3d075ec214dee739b61
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/latex/double_alpha_run_244_Y_MM1_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+1 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.017
+
+Sigma fit sigma: 0.189688
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..02b23fc2e880a8cad066a6062960ca364af00c13
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,129 @@
+MUSETT_T1_DSSD_Y1_E 59.5705 -0.00727398
+MUSETT_T1_DSSD_Y2_E 60.2151 -0.00734888
+MUSETT_T1_DSSD_Y3_E 59.57 -0.00727192
+MUSETT_T1_DSSD_Y4_E 59.201 -0.00722713
+MUSETT_T1_DSSD_Y5_E 60.1046 -0.00733734
+MUSETT_T1_DSSD_Y6_E 59.9026 -0.00731246
+MUSETT_T1_DSSD_Y7_E 59.388 -0.0072511
+MUSETT_T1_DSSD_Y8_E 59.1918 -0.0072224
+MUSETT_T1_DSSD_Y9_E 59.376 -0.0072489
+MUSETT_T1_DSSD_Y10_E 59.7253 -0.00729359
+MUSETT_T1_DSSD_Y11_E 16.0752 -0.00119596
+MUSETT_T1_DSSD_Y12_E 59.4842 -0.00726278
+MUSETT_T1_DSSD_Y13_E 60.0605 -0.00733142
+MUSETT_T1_DSSD_Y14_E 59.206 -0.00722921
+MUSETT_T1_DSSD_Y15_E 59.2192 -0.00722769
+MUSETT_T1_DSSD_Y16_E 59.6695 -0.00728356
+MUSETT_T1_DSSD_Y17_E 62.1482 -0.00758802
+MUSETT_T1_DSSD_Y18_E 62.2753 -0.0076006
+MUSETT_T1_DSSD_Y19_E 62.195 -0.00758977
+MUSETT_T1_DSSD_Y20_E 61.9362 -0.00756177
+MUSETT_T1_DSSD_Y21_E 61.7663 -0.00753461
+MUSETT_T1_DSSD_Y22_E 61.9215 -0.0075538
+MUSETT_T1_DSSD_Y23_E 6.82575 -0.844837
+MUSETT_T1_DSSD_Y24_E 61.8655 -0.00755191
+MUSETT_T1_DSSD_Y25_E 61.3176 -0.00748082
+MUSETT_T1_DSSD_Y26_E 61.2588 -0.00747669
+MUSETT_T1_DSSD_Y27_E 62.0872 -0.00758225
+MUSETT_T1_DSSD_Y28_E 61.8438 -0.00754851
+MUSETT_T1_DSSD_Y29_E 62.3111 -0.00760852
+MUSETT_T1_DSSD_Y30_E 61.8994 -0.00755587
+MUSETT_T1_DSSD_Y31_E 61.7287 -0.00753818
+MUSETT_T1_DSSD_Y32_E 61.5036 -0.007505
+MUSETT_T1_DSSD_Y33_E 55.8776 -0.00681857
+MUSETT_T1_DSSD_Y34_E 56.3128 -0.00687709
+MUSETT_T1_DSSD_Y35_E 55.5307 -0.00677956
+MUSETT_T1_DSSD_Y36_E 55.4016 -0.00676073
+MUSETT_T1_DSSD_Y37_E 53.1921 -0.00645194
+MUSETT_T1_DSSD_Y38_E 56.1812 -0.00685751
+MUSETT_T1_DSSD_Y39_E 55.196 -0.00673652
+MUSETT_T1_DSSD_Y40_E 55.6469 -0.00679102
+MUSETT_T1_DSSD_Y41_E 56.181 -0.00686375
+MUSETT_T1_DSSD_Y42_E 55.9769 -0.00683292
+MUSETT_T1_DSSD_Y43_E 55.3257 -0.00675247
+MUSETT_T1_DSSD_Y44_E 56.3504 -0.00687658
+MUSETT_T1_DSSD_Y45_E 55.5227 -0.00677836
+MUSETT_T1_DSSD_Y46_E 55.5291 -0.00677773
+MUSETT_T1_DSSD_Y47_E 55.5286 -0.00677689
+MUSETT_T1_DSSD_Y48_E 55.5031 -0.00677406
+MUSETT_T1_DSSD_Y49_E 57.0121 -0.00695828
+MUSETT_T1_DSSD_Y50_E 56.396 -0.0068824
+MUSETT_T1_DSSD_Y51_E 56.0249 -0.00683191
+MUSETT_T1_DSSD_Y52_E 55.6123 -0.00678369
+MUSETT_T1_DSSD_Y53_E 56.6957 -0.00692135
+MUSETT_T1_DSSD_Y54_E 55.743 -0.00679812
+MUSETT_T1_DSSD_Y55_E 56.5408 -0.00690599
+MUSETT_T1_DSSD_Y56_E 55.9616 -0.00682548
+MUSETT_T1_DSSD_Y57_E 56.9111 -0.00694268
+MUSETT_T1_DSSD_Y58_E 56.8826 -0.00694298
+MUSETT_T1_DSSD_Y59_E 56.2912 -0.00686755
+MUSETT_T1_DSSD_Y60_E 56.9681 -0.0069508
+MUSETT_T1_DSSD_Y61_E 57.2803 -0.00699287
+MUSETT_T1_DSSD_Y62_E 56.6306 -0.00690811
+MUSETT_T1_DSSD_Y63_E 56.0755 -0.00684657
+MUSETT_T1_DSSD_Y64_E 57.1404 -0.00697566
+MUSETT_T1_DSSD_Y65_E 60.8642 -0.00742914
+MUSETT_T1_DSSD_Y66_E 61.5287 -0.00751148
+MUSETT_T1_DSSD_Y67_E 61.1786 -0.00746816
+MUSETT_T1_DSSD_Y68_E 61.452 -0.00750172
+MUSETT_T1_DSSD_Y69_E 61.0464 -0.00745119
+MUSETT_T1_DSSD_Y70_E 59.8503 -0.00730518
+MUSETT_T1_DSSD_Y71_E 60.1717 -0.00734174
+MUSETT_T1_DSSD_Y72_E 60.9194 -0.0074351
+MUSETT_T1_DSSD_Y73_E 60.1838 -0.00734734
+MUSETT_T1_DSSD_Y74_E 60.9926 -0.00744338
+MUSETT_T1_DSSD_Y75_E 60.6965 -0.00740912
+MUSETT_T1_DSSD_Y76_E 60.1709 -0.00734455
+MUSETT_T1_DSSD_Y77_E 60.3451 -0.00736622
+MUSETT_T1_DSSD_Y78_E 60.8982 -0.00743519
+MUSETT_T1_DSSD_Y79_E 60.4023 -0.00737177
+MUSETT_T1_DSSD_Y80_E 61.1521 -0.00746358
+MUSETT_T1_DSSD_Y81_E 60.839 -0.00742397
+MUSETT_T1_DSSD_Y82_E 60.8305 -0.00742279
+MUSETT_T1_DSSD_Y83_E 60.8257 -0.00742368
+MUSETT_T1_DSSD_Y84_E 60.2943 -0.00735897
+MUSETT_T1_DSSD_Y85_E 60.1703 -0.0073422
+MUSETT_T1_DSSD_Y86_E 61.2194 -0.00747585
+MUSETT_T1_DSSD_Y87_E 60.6736 -0.00740962
+MUSETT_T1_DSSD_Y88_E 60.444 -0.00737797
+MUSETT_T1_DSSD_Y89_E 60.9583 -0.00744118
+MUSETT_T1_DSSD_Y90_E 61.1705 -0.00746654
+MUSETT_T1_DSSD_Y91_E 60.3498 -0.00736287
+MUSETT_T1_DSSD_Y92_E 60.6395 -0.00740081
+MUSETT_T1_DSSD_Y93_E 60.1318 -0.00733569
+MUSETT_T1_DSSD_Y94_E 61.2877 -0.00748294
+MUSETT_T1_DSSD_Y95_E 61.2431 -0.00747224
+MUSETT_T1_DSSD_Y96_E 60.4303 -0.00737412
+MUSETT_T1_DSSD_Y97_E 55.8061 -0.00681283
+MUSETT_T1_DSSD_Y98_E 55.4171 -0.00676627
+MUSETT_T1_DSSD_Y99_E 55.7214 -0.00680459
+MUSETT_T1_DSSD_Y100_E 55.2639 -0.00674314
+MUSETT_T1_DSSD_Y101_E 55.6849 -0.00679758
+MUSETT_T1_DSSD_Y102_E 55.3177 -0.00675153
+MUSETT_T1_DSSD_Y103_E 55.378 -0.00676143
+MUSETT_T1_DSSD_Y104_E 56.0478 -0.00684278
+MUSETT_T1_DSSD_Y105_E 55.1499 -0.00673191
+MUSETT_T1_DSSD_Y106_E 55.1058 -0.00672629
+MUSETT_T1_DSSD_Y107_E 55.8368 -0.00681743
+MUSETT_T1_DSSD_Y108_E 55.2548 -0.00674814
+MUSETT_T1_DSSD_Y109_E 55.6596 -0.00679294
+MUSETT_T1_DSSD_Y110_E 55.9243 -0.00682591
+MUSETT_T1_DSSD_Y111_E 56.0708 -0.00684616
+MUSETT_T1_DSSD_Y112_E 56.3903 -0.00688352
+MUSETT_T1_DSSD_Y113_E 54.7069 -0.00667838
+MUSETT_T1_DSSD_Y114_E 55.2602 -0.00674283
+MUSETT_T1_DSSD_Y115_E 55.0071 -0.00671389
+MUSETT_T1_DSSD_Y116_E 55.0806 -0.00672618
+MUSETT_T1_DSSD_Y117_E 55.1102 -0.00672804
+MUSETT_T1_DSSD_Y118_E 55.3182 -0.00675322
+MUSETT_T1_DSSD_Y119_E 55.1394 -0.00673094
+MUSETT_T1_DSSD_Y120_E 55.5783 -0.00678642
+MUSETT_T1_DSSD_Y121_E 55.6557 -0.00679265
+MUSETT_T1_DSSD_Y122_E 55.3764 -0.00676029
+MUSETT_T1_DSSD_Y123_E 54.6315 -0.00666751
+MUSETT_T1_DSSD_Y124_E 55.0287 -0.00671759
+MUSETT_T1_DSSD_Y125_E 55.0921 -0.00672524
+MUSETT_T1_DSSD_Y126_E 55.0536 -0.00671929
+MUSETT_T1_DSSD_Y127_E 55.165 -0.00673334
+MUSETT_T1_DSSD_Y128_E 56.1067 -0.00684803
+1
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..e618b3e89fa3f4466cb835dcf8f40712192b1207
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X1_E_Zero_Dispersion 2.46658
+MUSETT_T2_DSSD_X2_E_Zero_Dispersion -1.78382
+MUSETT_T2_DSSD_X3_E_Zero_Dispersion 0.215451
+MUSETT_T2_DSSD_X4_E_Zero_Dispersion 0.495236
+MUSETT_T2_DSSD_X5_E_Zero_Dispersion 0.3988
+MUSETT_T2_DSSD_X6_E_Zero_Dispersion 0.157444
+MUSETT_T2_DSSD_X7_E_Zero_Dispersion 1.7836
+MUSETT_T2_DSSD_X8_E_Zero_Dispersion -3.58366
+MUSETT_T2_DSSD_X9_E_Zero_Dispersion 0.966967
+MUSETT_T2_DSSD_X10_E_Zero_Dispersion 3.25767
+MUSETT_T2_DSSD_X11_E_Zero_Dispersion -5249.29
+MUSETT_T2_DSSD_X12_E_Zero_Dispersion 1.72085
+MUSETT_T2_DSSD_X13_E_Zero_Dispersion -0.211809
+MUSETT_T2_DSSD_X14_E_Zero_Dispersion 2.17294
+MUSETT_T2_DSSD_X15_E_Zero_Dispersion -1.38534
+MUSETT_T2_DSSD_X16_E_Zero_Dispersion -0.356436
+MUSETT_T2_DSSD_X17_E_Zero_Dispersion 1.69495
+MUSETT_T2_DSSD_X18_E_Zero_Dispersion -1.47987
+MUSETT_T2_DSSD_X19_E_Zero_Dispersion -2.58605
+MUSETT_T2_DSSD_X20_E_Zero_Dispersion 1.30178
+MUSETT_T2_DSSD_X21_E_Zero_Dispersion -5.66889
+MUSETT_T2_DSSD_X22_E_Zero_Dispersion -5.4075
+MUSETT_T2_DSSD_X23_E_Zero_Dispersion 8183.92
+MUSETT_T2_DSSD_X24_E_Zero_Dispersion -0.038001
+MUSETT_T2_DSSD_X25_E_Zero_Dispersion -4.63427
+MUSETT_T2_DSSD_X26_E_Zero_Dispersion -1.29601
+MUSETT_T2_DSSD_X27_E_Zero_Dispersion 3.51474
+MUSETT_T2_DSSD_X28_E_Zero_Dispersion -0.85752
+MUSETT_T2_DSSD_X29_E_Zero_Dispersion 2.35036
+MUSETT_T2_DSSD_X30_E_Zero_Dispersion -0.227067
+MUSETT_T2_DSSD_X31_E_Zero_Dispersion 3.20144
+MUSETT_T2_DSSD_X32_E_Zero_Dispersion -3.01983
+MUSETT_T2_DSSD_X33_E_Zero_Dispersion -2.90432
+MUSETT_T2_DSSD_X34_E_Zero_Dispersion 3.53618
+MUSETT_T2_DSSD_X35_E_Zero_Dispersion 1.10118
+MUSETT_T2_DSSD_X36_E_Zero_Dispersion -2.62621
+MUSETT_T2_DSSD_X37_E_Zero_Dispersion -52.3637
+MUSETT_T2_DSSD_X38_E_Zero_Dispersion -0.653989
+MUSETT_T2_DSSD_X39_E_Zero_Dispersion -1.53764
+MUSETT_T2_DSSD_X40_E_Zero_Dispersion -2.18515
+MUSETT_T2_DSSD_X41_E_Zero_Dispersion 6.82292
+MUSETT_T2_DSSD_X42_E_Zero_Dispersion -0.243571
+MUSETT_T2_DSSD_X43_E_Zero_Dispersion -1.39854
+MUSETT_T2_DSSD_X44_E_Zero_Dispersion -2.54148
+MUSETT_T2_DSSD_X45_E_Zero_Dispersion 0.824955
+MUSETT_T2_DSSD_X46_E_Zero_Dispersion -0.881018
+MUSETT_T2_DSSD_X47_E_Zero_Dispersion -1.82214
+MUSETT_T2_DSSD_X48_E_Zero_Dispersion -1.46902
+MUSETT_T2_DSSD_X49_E_Zero_Dispersion -1.42389
+MUSETT_T2_DSSD_X50_E_Zero_Dispersion -2.23688
+MUSETT_T2_DSSD_X51_E_Zero_Dispersion -8.47943
+MUSETT_T2_DSSD_X52_E_Zero_Dispersion -5.93955
+MUSETT_T2_DSSD_X53_E_Zero_Dispersion 0.583184
+MUSETT_T2_DSSD_X54_E_Zero_Dispersion -7.77127
+MUSETT_T2_DSSD_X55_E_Zero_Dispersion 4.7839
+MUSETT_T2_DSSD_X56_E_Zero_Dispersion -6.91851
+MUSETT_T2_DSSD_X57_E_Zero_Dispersion -5.27507
+MUSETT_T2_DSSD_X58_E_Zero_Dispersion -0.825614
+MUSETT_T2_DSSD_X59_E_Zero_Dispersion -4.69548
+MUSETT_T2_DSSD_X60_E_Zero_Dispersion -3.90577
+MUSETT_T2_DSSD_X61_E_Zero_Dispersion 0.756766
+MUSETT_T2_DSSD_X62_E_Zero_Dispersion -5.70142
+MUSETT_T2_DSSD_X63_E_Zero_Dispersion 1.69226
+MUSETT_T2_DSSD_X64_E_Zero_Dispersion 0.602726
+MUSETT_T2_DSSD_X65_E_Zero_Dispersion -0.629055
+MUSETT_T2_DSSD_X66_E_Zero_Dispersion 0.701984
+MUSETT_T2_DSSD_X67_E_Zero_Dispersion 0.0711705
+MUSETT_T2_DSSD_X68_E_Zero_Dispersion 0.286164
+MUSETT_T2_DSSD_X69_E_Zero_Dispersion -0.834185
+MUSETT_T2_DSSD_X70_E_Zero_Dispersion -0.854994
+MUSETT_T2_DSSD_X71_E_Zero_Dispersion -3.83721
+MUSETT_T2_DSSD_X72_E_Zero_Dispersion -1.48499
+MUSETT_T2_DSSD_X73_E_Zero_Dispersion 0.764159
+MUSETT_T2_DSSD_X74_E_Zero_Dispersion -2.20543
+MUSETT_T2_DSSD_X75_E_Zero_Dispersion -0.135162
+MUSETT_T2_DSSD_X76_E_Zero_Dispersion -0.598422
+MUSETT_T2_DSSD_X77_E_Zero_Dispersion -0.136367
+MUSETT_T2_DSSD_X78_E_Zero_Dispersion 1.45911
+MUSETT_T2_DSSD_X79_E_Zero_Dispersion -1.73055
+MUSETT_T2_DSSD_X80_E_Zero_Dispersion -1.39263
+MUSETT_T2_DSSD_X81_E_Zero_Dispersion -2.94408
+MUSETT_T2_DSSD_X82_E_Zero_Dispersion -3.10204
+MUSETT_T2_DSSD_X83_E_Zero_Dispersion -1.47031
+MUSETT_T2_DSSD_X84_E_Zero_Dispersion -1.30554
+MUSETT_T2_DSSD_X85_E_Zero_Dispersion -3.13034
+MUSETT_T2_DSSD_X86_E_Zero_Dispersion 3.0528
+MUSETT_T2_DSSD_X87_E_Zero_Dispersion 3.5033
+MUSETT_T2_DSSD_X88_E_Zero_Dispersion -0.496354
+MUSETT_T2_DSSD_X89_E_Zero_Dispersion -0.0103355
+MUSETT_T2_DSSD_X90_E_Zero_Dispersion -0.60827
+MUSETT_T2_DSSD_X91_E_Zero_Dispersion -4.50448
+MUSETT_T2_DSSD_X92_E_Zero_Dispersion -1.62803
+MUSETT_T2_DSSD_X93_E_Zero_Dispersion -5.15821
+MUSETT_T2_DSSD_X94_E_Zero_Dispersion 1.6757
+MUSETT_T2_DSSD_X95_E_Zero_Dispersion -4.09057
+MUSETT_T2_DSSD_X96_E_Zero_Dispersion -2.91394
+MUSETT_T2_DSSD_X97_E_Zero_Dispersion 0.674579
+MUSETT_T2_DSSD_X98_E_Zero_Dispersion 1.79696
+MUSETT_T2_DSSD_X99_E_Zero_Dispersion 3.20238
+MUSETT_T2_DSSD_X100_E_Zero_Dispersion -3.57047
+MUSETT_T2_DSSD_X101_E_Zero_Dispersion 0.12868
+MUSETT_T2_DSSD_X102_E_Zero_Dispersion -1.36355
+MUSETT_T2_DSSD_X103_E_Zero_Dispersion 1.71917
+MUSETT_T2_DSSD_X104_E_Zero_Dispersion 1.21368
+MUSETT_T2_DSSD_X105_E_Zero_Dispersion -0.316078
+MUSETT_T2_DSSD_X106_E_Zero_Dispersion -0.596855
+MUSETT_T2_DSSD_X107_E_Zero_Dispersion 1.69928
+MUSETT_T2_DSSD_X108_E_Zero_Dispersion 3.844
+MUSETT_T2_DSSD_X109_E_Zero_Dispersion -1.7394
+MUSETT_T2_DSSD_X110_E_Zero_Dispersion -0.947143
+MUSETT_T2_DSSD_X111_E_Zero_Dispersion 1.89807
+MUSETT_T2_DSSD_X112_E_Zero_Dispersion -0.0740967
+MUSETT_T2_DSSD_X113_E_Zero_Dispersion 0.361099
+MUSETT_T2_DSSD_X114_E_Zero_Dispersion -3.39836
+MUSETT_T2_DSSD_X115_E_Zero_Dispersion -1.03134
+MUSETT_T2_DSSD_X116_E_Zero_Dispersion 3.01242
+MUSETT_T2_DSSD_X117_E_Zero_Dispersion 0.878279
+MUSETT_T2_DSSD_X118_E_Zero_Dispersion 0.617765
+MUSETT_T2_DSSD_X119_E_Zero_Dispersion 0.0589642
+MUSETT_T2_DSSD_X120_E_Zero_Dispersion 2.36366
+MUSETT_T2_DSSD_X121_E_Zero_Dispersion -1.52548
+MUSETT_T2_DSSD_X122_E_Zero_Dispersion 0.580297
+MUSETT_T2_DSSD_X123_E_Zero_Dispersion -1.6797
+MUSETT_T2_DSSD_X124_E_Zero_Dispersion 0.263346
+MUSETT_T2_DSSD_X125_E_Zero_Dispersion 0.151479
+MUSETT_T2_DSSD_X126_E_Zero_Dispersion -1.36217
+MUSETT_T2_DSSD_X127_E_Zero_Dispersion -0.8161
+MUSETT_T2_DSSD_X128_E_Zero_Dispersion -1.12133
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/latex/double_alpha_run_244_Y_MM2_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/latex/double_alpha_run_244_Y_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..cd8829c73ed39fd04665446fa68b71f36146ae8b
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/latex/double_alpha_run_244_Y_MM2_E.tex
@@ -0,0 +1,63 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+11 &  zero extrapolation too high:-5249.29channels;  \\ \hline 
+23 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+37 &  zero extrapolation too high:-52.3637channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.32869
+
+Sigma fit sigma: 0.445892
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..89ff961585b7392e84ac6a282c62ea9e8f8540bc
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y1_E 62.9696 -0.00768446
+MUSETT_T2_DSSD_Y2_E 63.6646 -0.00776718
+MUSETT_T2_DSSD_Y3_E 62.408 -0.00761735
+MUSETT_T2_DSSD_Y4_E 63.2424 -0.00771872
+MUSETT_T2_DSSD_Y5_E 62.6675 -0.00764504
+MUSETT_T2_DSSD_Y6_E 62.6087 -0.00764254
+MUSETT_T2_DSSD_Y7_E 62.8947 -0.00767579
+MUSETT_T2_DSSD_Y8_E 62.5261 -0.00763211
+MUSETT_T2_DSSD_Y9_E 62.528 -0.00762973
+MUSETT_T2_DSSD_Y10_E 63.2307 -0.00771667
+MUSETT_T2_DSSD_Y11_E 62.6418 -0.00764334
+MUSETT_T2_DSSD_Y12_E 62.3872 -0.00761368
+MUSETT_T2_DSSD_Y13_E 61.8591 -0.00754885
+MUSETT_T2_DSSD_Y14_E 62.4679 -0.00762255
+MUSETT_T2_DSSD_Y15_E 62.7008 -0.00765026
+MUSETT_T2_DSSD_Y16_E 63.3551 -0.00773223
+MUSETT_T2_DSSD_Y17_E 61.3352 -0.00748234
+MUSETT_T2_DSSD_Y18_E 60.5521 -0.00738515
+MUSETT_T2_DSSD_Y19_E 60.5685 -0.00739241
+MUSETT_T2_DSSD_Y20_E 61.7065 -0.00752796
+MUSETT_T2_DSSD_Y21_E 60.6735 -0.00740095
+MUSETT_T2_DSSD_Y22_E 60.6699 -0.00740261
+MUSETT_T2_DSSD_Y23_E 62.071 -0.00757764
+MUSETT_T2_DSSD_Y24_E 60.7475 -0.00741138
+MUSETT_T2_DSSD_Y25_E 60.7386 -0.00741045
+MUSETT_T2_DSSD_Y26_E 61.2797 -0.00747636
+MUSETT_T2_DSSD_Y27_E 61.0832 -0.00745632
+MUSETT_T2_DSSD_Y28_E 61.3148 -0.00748463
+MUSETT_T2_DSSD_Y29_E 61.6303 -0.00752515
+MUSETT_T2_DSSD_Y30_E 61.125 -0.00745808
+MUSETT_T2_DSSD_Y31_E 60.9348 -0.00743314
+MUSETT_T2_DSSD_Y32_E 61.3989 -0.00748983
+MUSETT_T2_DSSD_Y33_E 56.1952 -0.00685817
+MUSETT_T2_DSSD_Y34_E 56.3063 -0.0068715
+MUSETT_T2_DSSD_Y35_E 56.6538 -0.00691505
+MUSETT_T2_DSSD_Y36_E 56.4972 -0.00689435
+MUSETT_T2_DSSD_Y37_E 56.8817 -0.00694325
+MUSETT_T2_DSSD_Y38_E 56.6748 -0.00691555
+MUSETT_T2_DSSD_Y39_E 56.4253 -0.00688901
+MUSETT_T2_DSSD_Y40_E 56.5601 -0.00690807
+MUSETT_T2_DSSD_Y41_E 56.1552 -0.00685461
+MUSETT_T2_DSSD_Y42_E 57.9279 -0.00707067
+MUSETT_T2_DSSD_Y43_E 56.7445 -0.00692782
+MUSETT_T2_DSSD_Y44_E 56.119 -0.00684937
+MUSETT_T2_DSSD_Y45_E 56.9957 -0.00695498
+MUSETT_T2_DSSD_Y46_E 57.2405 -0.00698921
+MUSETT_T2_DSSD_Y47_E 56.88 -0.00694151
+MUSETT_T2_DSSD_Y48_E 56.613 -0.00691086
+MUSETT_T2_DSSD_Y49_E 57.4333 -0.00700977
+MUSETT_T2_DSSD_Y50_E 57.2345 -0.00699068
+MUSETT_T2_DSSD_Y51_E 57.6386 -0.00703191
+MUSETT_T2_DSSD_Y52_E 57.3765 -0.00700354
+MUSETT_T2_DSSD_Y53_E 57.0322 -0.00695819
+MUSETT_T2_DSSD_Y54_E 58.6382 -0.00715991
+MUSETT_T2_DSSD_Y55_E 57.5071 -0.00701732
+MUSETT_T2_DSSD_Y56_E 57.4561 -0.00700876
+MUSETT_T2_DSSD_Y57_E 57.9355 -0.00707626
+MUSETT_T2_DSSD_Y58_E 57.2996 -0.00699196
+MUSETT_T2_DSSD_Y59_E 57.4134 -0.00701027
+MUSETT_T2_DSSD_Y60_E 57.9795 -0.00707456
+MUSETT_T2_DSSD_Y61_E 57.9301 -0.00707376
+MUSETT_T2_DSSD_Y62_E 57.3702 -0.00700489
+MUSETT_T2_DSSD_Y63_E 57.6224 -0.00703204
+MUSETT_T2_DSSD_Y64_E 57.9617 -0.00707244
+MUSETT_T2_DSSD_Y65_E 59.2845 -0.00723849
+MUSETT_T2_DSSD_Y66_E 59.3552 -0.00724338
+MUSETT_T2_DSSD_Y67_E 59.4277 -0.00725571
+MUSETT_T2_DSSD_Y68_E 60.3423 -0.00736738
+MUSETT_T2_DSSD_Y69_E 59.3284 -0.00724153
+MUSETT_T2_DSSD_Y70_E 59.6515 -0.00728136
+MUSETT_T2_DSSD_Y71_E 59.3639 -0.00724599
+MUSETT_T2_DSSD_Y72_E 59.8305 -0.00730471
+MUSETT_T2_DSSD_Y73_E 59.4632 -0.00725583
+MUSETT_T2_DSSD_Y74_E 59.4182 -0.00725297
+MUSETT_T2_DSSD_Y75_E 59.8054 -0.00730017
+MUSETT_T2_DSSD_Y76_E 60.0136 -0.00732756
+MUSETT_T2_DSSD_Y77_E 59.2215 -0.00722933
+MUSETT_T2_DSSD_Y78_E 59.7288 -0.00728927
+MUSETT_T2_DSSD_Y79_E 59.2356 -0.00723031
+MUSETT_T2_DSSD_Y80_E 59.8523 -0.0073024
+MUSETT_T2_DSSD_Y81_E 60.3502 -0.00736651
+MUSETT_T2_DSSD_Y82_E 61.1949 -0.00747228
+MUSETT_T2_DSSD_Y83_E 60.2825 -0.00735721
+MUSETT_T2_DSSD_Y84_E 61.0497 -0.00745147
+MUSETT_T2_DSSD_Y85_E 61.0062 -0.00744668
+MUSETT_T2_DSSD_Y86_E 60.8096 -0.00742536
+MUSETT_T2_DSSD_Y87_E 60.7138 -0.00741077
+MUSETT_T2_DSSD_Y88_E 61.1868 -0.00747042
+MUSETT_T2_DSSD_Y89_E 60.9587 -0.00744537
+MUSETT_T2_DSSD_Y90_E 60.5173 -0.00738459
+MUSETT_T2_DSSD_Y91_E 61.3266 -0.00748644
+MUSETT_T2_DSSD_Y92_E 60.3678 -0.00736723
+MUSETT_T2_DSSD_Y93_E 60.8698 -0.0074295
+MUSETT_T2_DSSD_Y94_E 60.5372 -0.00739126
+MUSETT_T2_DSSD_Y95_E 61.1493 -0.00746795
+MUSETT_T2_DSSD_Y96_E 61.24 -0.00747413
+MUSETT_T2_DSSD_Y97_E 56.7785 -0.00693163
+MUSETT_T2_DSSD_Y98_E 55.8642 -0.00682005
+MUSETT_T2_DSSD_Y99_E 55.9639 -0.00682944
+MUSETT_T2_DSSD_Y100_E 56.307 -0.00687006
+MUSETT_T2_DSSD_Y101_E 56.3035 -0.00687388
+MUSETT_T2_DSSD_Y102_E 56.6481 -0.00691634
+MUSETT_T2_DSSD_Y103_E 55.7931 -0.00681196
+MUSETT_T2_DSSD_Y104_E 56.8928 -0.00694196
+MUSETT_T2_DSSD_Y105_E 55.941 -0.00682942
+MUSETT_T2_DSSD_Y106_E 56.4688 -0.00689177
+MUSETT_T2_DSSD_Y107_E 56.5486 -0.00690473
+MUSETT_T2_DSSD_Y108_E 57.3136 -0.00699581
+MUSETT_T2_DSSD_Y109_E 56.9154 -0.00694746
+MUSETT_T2_DSSD_Y110_E 56.4094 -0.00688365
+MUSETT_T2_DSSD_Y111_E 56.9197 -0.00694954
+MUSETT_T2_DSSD_Y112_E 55.9961 -0.00683611
+MUSETT_T2_DSSD_Y113_E 56.4905 -0.00689823
+MUSETT_T2_DSSD_Y114_E 57.3805 -0.00700796
+MUSETT_T2_DSSD_Y115_E 56.3932 -0.00688319
+MUSETT_T2_DSSD_Y116_E 56.6059 -0.00690785
+MUSETT_T2_DSSD_Y117_E 56.2703 -0.00686753
+MUSETT_T2_DSSD_Y118_E 56.275 -0.0068674
+MUSETT_T2_DSSD_Y119_E 56.7938 -0.00693488
+MUSETT_T2_DSSD_Y120_E 56.6145 -0.00691195
+MUSETT_T2_DSSD_Y121_E 56.2102 -0.00686234
+MUSETT_T2_DSSD_Y122_E 56.9331 -0.00695032
+MUSETT_T2_DSSD_Y123_E 57.2777 -0.00699227
+MUSETT_T2_DSSD_Y124_E 6.82575 -0.844837
+MUSETT_T2_DSSD_Y125_E 55.9049 -0.00682177
+MUSETT_T2_DSSD_Y126_E 56.8814 -0.00694534
+MUSETT_T2_DSSD_Y127_E 56.2481 -0.00686735
+MUSETT_T2_DSSD_Y128_E 56.034 -0.006839782
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..83ec1ed8246674ff4aa7d02a1df0521fe33e5e49
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X1_E_Zero_Dispersion -2.41452
+MUSETT_T3_DSSD_X2_E_Zero_Dispersion -4.62314
+MUSETT_T3_DSSD_X3_E_Zero_Dispersion -0.868891
+MUSETT_T3_DSSD_X4_E_Zero_Dispersion -1.38342
+MUSETT_T3_DSSD_X5_E_Zero_Dispersion -5.15237
+MUSETT_T3_DSSD_X6_E_Zero_Dispersion -0.130584
+MUSETT_T3_DSSD_X7_E_Zero_Dispersion -1.90652
+MUSETT_T3_DSSD_X8_E_Zero_Dispersion -0.495975
+MUSETT_T3_DSSD_X9_E_Zero_Dispersion -3.30325
+MUSETT_T3_DSSD_X10_E_Zero_Dispersion -2.03449
+MUSETT_T3_DSSD_X11_E_Zero_Dispersion -3.60991
+MUSETT_T3_DSSD_X12_E_Zero_Dispersion -2.09425
+MUSETT_T3_DSSD_X13_E_Zero_Dispersion -2.50083
+MUSETT_T3_DSSD_X14_E_Zero_Dispersion -3.15323
+MUSETT_T3_DSSD_X15_E_Zero_Dispersion -3.90725
+MUSETT_T3_DSSD_X16_E_Zero_Dispersion -1.63926
+MUSETT_T3_DSSD_X17_E_Zero_Dispersion -5.33288
+MUSETT_T3_DSSD_X18_E_Zero_Dispersion -7.18027
+MUSETT_T3_DSSD_X19_E_Zero_Dispersion -1.32954
+MUSETT_T3_DSSD_X20_E_Zero_Dispersion -4.97396
+MUSETT_T3_DSSD_X21_E_Zero_Dispersion -6.07616
+MUSETT_T3_DSSD_X22_E_Zero_Dispersion -3.74321
+MUSETT_T3_DSSD_X23_E_Zero_Dispersion 0.663908
+MUSETT_T3_DSSD_X24_E_Zero_Dispersion -4.52288
+MUSETT_T3_DSSD_X25_E_Zero_Dispersion -4.33959
+MUSETT_T3_DSSD_X26_E_Zero_Dispersion -4.46834
+MUSETT_T3_DSSD_X27_E_Zero_Dispersion -0.136323
+MUSETT_T3_DSSD_X28_E_Zero_Dispersion -0.105464
+MUSETT_T3_DSSD_X29_E_Zero_Dispersion 2.08573
+MUSETT_T3_DSSD_X30_E_Zero_Dispersion -3.80806
+MUSETT_T3_DSSD_X31_E_Zero_Dispersion -5.72914
+MUSETT_T3_DSSD_X32_E_Zero_Dispersion -5.63244
+MUSETT_T3_DSSD_X33_E_Zero_Dispersion -1.91772
+MUSETT_T3_DSSD_X34_E_Zero_Dispersion -2.17757
+MUSETT_T3_DSSD_X35_E_Zero_Dispersion -0.820265
+MUSETT_T3_DSSD_X36_E_Zero_Dispersion -2.70672
+MUSETT_T3_DSSD_X37_E_Zero_Dispersion -0.371581
+MUSETT_T3_DSSD_X38_E_Zero_Dispersion -3.26869
+MUSETT_T3_DSSD_X39_E_Zero_Dispersion 1.37186
+MUSETT_T3_DSSD_X40_E_Zero_Dispersion 4.45981
+MUSETT_T3_DSSD_X41_E_Zero_Dispersion -0.328392
+MUSETT_T3_DSSD_X42_E_Zero_Dispersion -0.694481
+MUSETT_T3_DSSD_X43_E_Zero_Dispersion 1.18661
+MUSETT_T3_DSSD_X44_E_Zero_Dispersion -1.30229
+MUSETT_T3_DSSD_X45_E_Zero_Dispersion -2.94757
+MUSETT_T3_DSSD_X46_E_Zero_Dispersion 2.16577
+MUSETT_T3_DSSD_X47_E_Zero_Dispersion -2.18928
+MUSETT_T3_DSSD_X48_E_Zero_Dispersion 0.104608
+MUSETT_T3_DSSD_X49_E_Zero_Dispersion -1.32368
+MUSETT_T3_DSSD_X50_E_Zero_Dispersion 4.74399
+MUSETT_T3_DSSD_X51_E_Zero_Dispersion -4.71591
+MUSETT_T3_DSSD_X52_E_Zero_Dispersion -0.509006
+MUSETT_T3_DSSD_X53_E_Zero_Dispersion -4.41517
+MUSETT_T3_DSSD_X54_E_Zero_Dispersion 2.21521
+MUSETT_T3_DSSD_X55_E_Zero_Dispersion -3.01389
+MUSETT_T3_DSSD_X56_E_Zero_Dispersion -5.75791
+MUSETT_T3_DSSD_X57_E_Zero_Dispersion 4.69962
+MUSETT_T3_DSSD_X58_E_Zero_Dispersion -3.076
+MUSETT_T3_DSSD_X59_E_Zero_Dispersion 2.09821
+MUSETT_T3_DSSD_X60_E_Zero_Dispersion -3.48995
+MUSETT_T3_DSSD_X61_E_Zero_Dispersion 2.56403
+MUSETT_T3_DSSD_X62_E_Zero_Dispersion 1.98175
+MUSETT_T3_DSSD_X63_E_Zero_Dispersion -2.27108
+MUSETT_T3_DSSD_X64_E_Zero_Dispersion -3.42757
+MUSETT_T3_DSSD_X65_E_Zero_Dispersion 1.82693
+MUSETT_T3_DSSD_X66_E_Zero_Dispersion -2.40702
+MUSETT_T3_DSSD_X67_E_Zero_Dispersion 1.53094
+MUSETT_T3_DSSD_X68_E_Zero_Dispersion 1.53277
+MUSETT_T3_DSSD_X69_E_Zero_Dispersion -0.791383
+MUSETT_T3_DSSD_X70_E_Zero_Dispersion -0.362237
+MUSETT_T3_DSSD_X71_E_Zero_Dispersion -0.659603
+MUSETT_T3_DSSD_X72_E_Zero_Dispersion 1.32626
+MUSETT_T3_DSSD_X73_E_Zero_Dispersion -3.22076
+MUSETT_T3_DSSD_X74_E_Zero_Dispersion -0.251833
+MUSETT_T3_DSSD_X75_E_Zero_Dispersion -0.331908
+MUSETT_T3_DSSD_X76_E_Zero_Dispersion 1.87832
+MUSETT_T3_DSSD_X77_E_Zero_Dispersion 0.151597
+MUSETT_T3_DSSD_X78_E_Zero_Dispersion -2.06675
+MUSETT_T3_DSSD_X79_E_Zero_Dispersion -0.672223
+MUSETT_T3_DSSD_X80_E_Zero_Dispersion -4.24799
+MUSETT_T3_DSSD_X81_E_Zero_Dispersion -0.506594
+MUSETT_T3_DSSD_X82_E_Zero_Dispersion 2.41919
+MUSETT_T3_DSSD_X83_E_Zero_Dispersion -1.66554
+MUSETT_T3_DSSD_X84_E_Zero_Dispersion -0.972652
+MUSETT_T3_DSSD_X85_E_Zero_Dispersion -0.403224
+MUSETT_T3_DSSD_X86_E_Zero_Dispersion 2.55276
+MUSETT_T3_DSSD_X87_E_Zero_Dispersion -0.634855
+MUSETT_T3_DSSD_X88_E_Zero_Dispersion 1.44682
+MUSETT_T3_DSSD_X89_E_Zero_Dispersion 4.54114
+MUSETT_T3_DSSD_X90_E_Zero_Dispersion -3.08185
+MUSETT_T3_DSSD_X91_E_Zero_Dispersion 0.317454
+MUSETT_T3_DSSD_X92_E_Zero_Dispersion -2.08604
+MUSETT_T3_DSSD_X93_E_Zero_Dispersion -0.985475
+MUSETT_T3_DSSD_X94_E_Zero_Dispersion 1.62963
+MUSETT_T3_DSSD_X95_E_Zero_Dispersion 3.76716
+MUSETT_T3_DSSD_X96_E_Zero_Dispersion -1.59486
+MUSETT_T3_DSSD_X97_E_Zero_Dispersion 0.77823
+MUSETT_T3_DSSD_X98_E_Zero_Dispersion 0.822189
+MUSETT_T3_DSSD_X99_E_Zero_Dispersion -2.50977
+MUSETT_T3_DSSD_X100_E_Zero_Dispersion -4.00084
+MUSETT_T3_DSSD_X101_E_Zero_Dispersion 1.05943
+MUSETT_T3_DSSD_X102_E_Zero_Dispersion 1.51908
+MUSETT_T3_DSSD_X103_E_Zero_Dispersion 1.53918
+MUSETT_T3_DSSD_X104_E_Zero_Dispersion -3.48824
+MUSETT_T3_DSSD_X105_E_Zero_Dispersion 0.816455
+MUSETT_T3_DSSD_X106_E_Zero_Dispersion -1.65375
+MUSETT_T3_DSSD_X107_E_Zero_Dispersion 2.15443
+MUSETT_T3_DSSD_X108_E_Zero_Dispersion -0.56696
+MUSETT_T3_DSSD_X109_E_Zero_Dispersion -0.26407
+MUSETT_T3_DSSD_X110_E_Zero_Dispersion -2.68868
+MUSETT_T3_DSSD_X111_E_Zero_Dispersion 1.5642
+MUSETT_T3_DSSD_X112_E_Zero_Dispersion 0.774111
+MUSETT_T3_DSSD_X113_E_Zero_Dispersion 2.8693
+MUSETT_T3_DSSD_X114_E_Zero_Dispersion 4.10331
+MUSETT_T3_DSSD_X115_E_Zero_Dispersion -0.889989
+MUSETT_T3_DSSD_X116_E_Zero_Dispersion -2.43413
+MUSETT_T3_DSSD_X117_E_Zero_Dispersion -1.67811
+MUSETT_T3_DSSD_X118_E_Zero_Dispersion -2.51115
+MUSETT_T3_DSSD_X119_E_Zero_Dispersion 2.41323
+MUSETT_T3_DSSD_X120_E_Zero_Dispersion 1.18431
+MUSETT_T3_DSSD_X121_E_Zero_Dispersion 0.881997
+MUSETT_T3_DSSD_X122_E_Zero_Dispersion 0.569719
+MUSETT_T3_DSSD_X123_E_Zero_Dispersion 0.434787
+MUSETT_T3_DSSD_X124_E_Zero_Dispersion 8183.92
+MUSETT_T3_DSSD_X125_E_Zero_Dispersion -3.08136
+MUSETT_T3_DSSD_X126_E_Zero_Dispersion 2.12758
+MUSETT_T3_DSSD_X127_E_Zero_Dispersion 1.35063
+MUSETT_T3_DSSD_X128_E_Zero_Dispersion -0.367075
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/latex/double_alpha_run_244_Y_MM3_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/latex/double_alpha_run_244_Y_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d4e55b9f104591a15b76020d1d9e05788486e41e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/latex/double_alpha_run_244_Y_MM3_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+124 &  1 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.28892
+
+Sigma fit sigma: 0.565314
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.cal
new file mode 100644
index 0000000000000000000000000000000000000000..8a89504b3dc807daabb33e82ab3f2391497ddbf1
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y1_E 59.5234 -0.00725765
+MUSETT_T3_DSSD_Y2_E 58.5127 -0.00713688
+MUSETT_T3_DSSD_Y3_E 59.574 -0.00726549
+MUSETT_T3_DSSD_Y4_E 59.51 -0.00725796
+MUSETT_T3_DSSD_Y5_E 59.2116 -0.00722064
+MUSETT_T3_DSSD_Y6_E 59.4237 -0.00724658
+MUSETT_T3_DSSD_Y7_E 59.0257 -0.00719413
+MUSETT_T3_DSSD_Y8_E 59.537 -0.00725846
+MUSETT_T3_DSSD_Y9_E 59.9426 -0.00730929
+MUSETT_T3_DSSD_Y10_E 59.6876 -0.00727441
+MUSETT_T3_DSSD_Y11_E 59.5449 -0.00725957
+MUSETT_T3_DSSD_Y12_E 59.3479 -0.00723827
+MUSETT_T3_DSSD_Y13_E 59.032 -0.0071972
+MUSETT_T3_DSSD_Y14_E 59.265 -0.00722989
+MUSETT_T3_DSSD_Y15_E 60.0166 -0.00731897
+MUSETT_T3_DSSD_Y16_E 59.3186 -0.00723564
+MUSETT_T3_DSSD_Y17_E 62.3545 -0.00760396
+MUSETT_T3_DSSD_Y18_E 62.624 -0.00763656
+MUSETT_T3_DSSD_Y19_E 61.4411 -0.00748826
+MUSETT_T3_DSSD_Y20_E 62.2082 -0.00758654
+MUSETT_T3_DSSD_Y21_E 62.6184 -0.00763608
+MUSETT_T3_DSSD_Y22_E 62.8879 -0.00766657
+MUSETT_T3_DSSD_Y23_E 62.305 -0.0075962
+MUSETT_T3_DSSD_Y24_E 62.4905 -0.00762219
+MUSETT_T3_DSSD_Y25_E 62.9493 -0.00767672
+MUSETT_T3_DSSD_Y26_E 62.9678 -0.0076806
+MUSETT_T3_DSSD_Y27_E 61.9803 -0.00755709
+MUSETT_T3_DSSD_Y28_E 62.9625 -0.00767967
+MUSETT_T3_DSSD_Y29_E 62.2051 -0.00758948
+MUSETT_T3_DSSD_Y30_E 62.4204 -0.00761303
+MUSETT_T3_DSSD_Y31_E 62.5487 -0.00762832
+MUSETT_T3_DSSD_Y32_E 62.481 -0.00762089
+MUSETT_T3_DSSD_Y33_E 55.6954 -0.00679321
+MUSETT_T3_DSSD_Y34_E 55.862 -0.00681429
+MUSETT_T3_DSSD_Y35_E 55.2595 -0.00673682
+MUSETT_T3_DSSD_Y36_E 55.2613 -0.0067392
+MUSETT_T3_DSSD_Y37_E 55.3232 -0.00674678
+MUSETT_T3_DSSD_Y38_E 55.7697 -0.00680183
+MUSETT_T3_DSSD_Y39_E 55.4597 -0.00676292
+MUSETT_T3_DSSD_Y40_E 55.1054 -0.00672069
+MUSETT_T3_DSSD_Y41_E 54.9776 -0.0067034
+MUSETT_T3_DSSD_Y42_E 55.6329 -0.00678247
+MUSETT_T3_DSSD_Y43_E 55.5045 -0.00676804
+MUSETT_T3_DSSD_Y44_E 54.833 -0.00668532
+MUSETT_T3_DSSD_Y45_E 55.268 -0.00673901
+MUSETT_T3_DSSD_Y46_E 55.1892 -0.00673083
+MUSETT_T3_DSSD_Y47_E 55.4934 -0.00676746
+MUSETT_T3_DSSD_Y48_E 55.4247 -0.00675997
+MUSETT_T3_DSSD_Y49_E 56.2861 -0.00686516
+MUSETT_T3_DSSD_Y50_E 56.3992 -0.00687703
+MUSETT_T3_DSSD_Y51_E 56.6985 -0.00691472
+MUSETT_T3_DSSD_Y52_E 56.5241 -0.00689401
+MUSETT_T3_DSSD_Y53_E 56.1254 -0.00684574
+MUSETT_T3_DSSD_Y54_E 56.6081 -0.00690538
+MUSETT_T3_DSSD_Y55_E 56.3216 -0.00687193
+MUSETT_T3_DSSD_Y56_E 56.5475 -0.006896
+MUSETT_T3_DSSD_Y57_E 56.7187 -0.00691876
+MUSETT_T3_DSSD_Y58_E 56.1262 -0.00684421
+MUSETT_T3_DSSD_Y59_E 57.0384 -0.00695577
+MUSETT_T3_DSSD_Y60_E 56.6041 -0.0069031
+MUSETT_T3_DSSD_Y61_E 57.1317 -0.00696705
+MUSETT_T3_DSSD_Y62_E 56.6654 -0.006912
+MUSETT_T3_DSSD_Y63_E 56.4458 -0.00688605
+MUSETT_T3_DSSD_Y64_E 57.0189 -0.00695467
+MUSETT_T3_DSSD_Y65_E 58.866 -0.00717739
+MUSETT_T3_DSSD_Y66_E 59.3718 -0.00723936
+MUSETT_T3_DSSD_Y67_E 58.8606 -0.00717536
+MUSETT_T3_DSSD_Y68_E 59.0432 -0.00720334
+MUSETT_T3_DSSD_Y69_E 58.8518 -0.00717572
+MUSETT_T3_DSSD_Y70_E 58.1666 -0.00709048
+MUSETT_T3_DSSD_Y71_E 58.6539 -0.00715115
+MUSETT_T3_DSSD_Y72_E 59.4352 -0.00724736
+MUSETT_T3_DSSD_Y73_E 59.6808 -0.00727892
+MUSETT_T3_DSSD_Y74_E 58.9154 -0.0071833
+MUSETT_T3_DSSD_Y75_E 58.9534 -0.00718787
+MUSETT_T3_DSSD_Y76_E 59.1119 -0.00720917
+MUSETT_T3_DSSD_Y77_E 59.0564 -0.00720162
+MUSETT_T3_DSSD_Y78_E 58.8468 -0.00717579
+MUSETT_T3_DSSD_Y79_E 58.5676 -0.00714313
+MUSETT_T3_DSSD_Y80_E 59.5249 -0.00725969
+MUSETT_T3_DSSD_Y81_E 62.5316 -0.00763049
+MUSETT_T3_DSSD_Y82_E 62.3098 -0.00760082
+MUSETT_T3_DSSD_Y83_E 62.1091 -0.00757633
+MUSETT_T3_DSSD_Y84_E 61.7125 -0.00752821
+MUSETT_T3_DSSD_Y85_E 61.7896 -0.00754096
+MUSETT_T3_DSSD_Y86_E 62.3687 -0.0076099
+MUSETT_T3_DSSD_Y87_E 62.0224 -0.00756846
+MUSETT_T3_DSSD_Y88_E 62.3511 -0.00760351
+MUSETT_T3_DSSD_Y89_E 62.3244 -0.00760376
+MUSETT_T3_DSSD_Y90_E 62.1206 -0.00757798
+MUSETT_T3_DSSD_Y91_E 61.3832 -0.0074877
+MUSETT_T3_DSSD_Y92_E 61.5775 -0.00751155
+MUSETT_T3_DSSD_Y93_E 61.483 -0.007499
+MUSETT_T3_DSSD_Y94_E 61.7077 -0.00752956
+MUSETT_T3_DSSD_Y95_E 61.4383 -0.00749316
+MUSETT_T3_DSSD_Y96_E 61.4678 -0.00749923
+MUSETT_T3_DSSD_Y97_E 55.9891 -0.0068234
+MUSETT_T3_DSSD_Y98_E 56.238 -0.00685463
+MUSETT_T3_DSSD_Y99_E 55.7145 -0.00679225
+MUSETT_T3_DSSD_Y100_E 55.3441 -0.00674679
+MUSETT_T3_DSSD_Y101_E 55.7335 -0.00679658
+MUSETT_T3_DSSD_Y102_E 55.7497 -0.00679727
+MUSETT_T3_DSSD_Y103_E 55.3707 -0.0067502
+MUSETT_T3_DSSD_Y104_E 55.4781 -0.00676373
+MUSETT_T3_DSSD_Y105_E 55.2205 -0.00673093
+MUSETT_T3_DSSD_Y106_E 55.7488 -0.00679679
+MUSETT_T3_DSSD_Y107_E 55.9598 -0.00682393
+MUSETT_T3_DSSD_Y108_E 55.7521 -0.00679752
+MUSETT_T3_DSSD_Y109_E 55.2111 -0.00673195
+MUSETT_T3_DSSD_Y110_E 55.3052 -0.00674172
+MUSETT_T3_DSSD_Y111_E 56.0662 -0.00683506
+MUSETT_T3_DSSD_Y112_E 56.0236 -0.00682937
+MUSETT_T3_DSSD_Y113_E 56.7839 -0.00692618
+MUSETT_T3_DSSD_Y114_E 56.5644 -0.00689877
+MUSETT_T3_DSSD_Y115_E 56.3829 -0.00687154
+MUSETT_T3_DSSD_Y116_E 56.4761 -0.00688733
+MUSETT_T3_DSSD_Y117_E 57.0804 -0.00695954
+MUSETT_T3_DSSD_Y118_E 56.6645 -0.00690751
+MUSETT_T3_DSSD_Y119_E 56.1478 -0.0068441
+MUSETT_T3_DSSD_Y120_E 57.1191 -0.00696464
+MUSETT_T3_DSSD_Y121_E 57.1449 -0.00697197
+MUSETT_T3_DSSD_Y122_E 56.1944 -0.00684715
+MUSETT_T3_DSSD_Y123_E 56.9821 -0.00694955
+MUSETT_T3_DSSD_Y124_E 56.3139 -0.00686238
+MUSETT_T3_DSSD_Y125_E 57.1661 -0.00697354
+MUSETT_T3_DSSD_Y126_E 56.4641 -0.00688782
+MUSETT_T3_DSSD_Y127_E 57.0575 -0.00696247
+MUSETT_T3_DSSD_Y128_E 56.782 -0.006919733
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..6c14fada3338d7ab4a13340bb9b25fa05e2e259f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T4_DSSD_X1_E_Zero_Dispersion -9.46769
+MUSETT_T4_DSSD_X2_E_Zero_Dispersion -6.63941
+MUSETT_T4_DSSD_X3_E_Zero_Dispersion -7.59066
+MUSETT_T4_DSSD_X4_E_Zero_Dispersion -7.27873
+MUSETT_T4_DSSD_X5_E_Zero_Dispersion -8.33041
+MUSETT_T4_DSSD_X6_E_Zero_Dispersion -8.25031
+MUSETT_T4_DSSD_X7_E_Zero_Dispersion -12.7051
+MUSETT_T4_DSSD_X8_E_Zero_Dispersion -10.4257
+MUSETT_T4_DSSD_X9_E_Zero_Dispersion -8.87304
+MUSETT_T4_DSSD_X10_E_Zero_Dispersion -13.1471
+MUSETT_T4_DSSD_X11_E_Zero_Dispersion -10.2696
+MUSETT_T4_DSSD_X12_E_Zero_Dispersion -7.18175
+MUSETT_T4_DSSD_X13_E_Zero_Dispersion -10.08
+MUSETT_T4_DSSD_X14_E_Zero_Dispersion -5.22013
+MUSETT_T4_DSSD_X15_E_Zero_Dispersion -8.14216
+MUSETT_T4_DSSD_X16_E_Zero_Dispersion -6.10666
+MUSETT_T4_DSSD_X17_E_Zero_Dispersion -8.26993
+MUSETT_T4_DSSD_X18_E_Zero_Dispersion -8.55315
+MUSETT_T4_DSSD_X19_E_Zero_Dispersion -12.9968
+MUSETT_T4_DSSD_X20_E_Zero_Dispersion -7.81329
+MUSETT_T4_DSSD_X21_E_Zero_Dispersion -8.33246
+MUSETT_T4_DSSD_X22_E_Zero_Dispersion -10.8731
+MUSETT_T4_DSSD_X23_E_Zero_Dispersion -10.1298
+MUSETT_T4_DSSD_X24_E_Zero_Dispersion -6.49554
+MUSETT_T4_DSSD_X25_E_Zero_Dispersion -8.03084
+MUSETT_T4_DSSD_X26_E_Zero_Dispersion -6.28445
+MUSETT_T4_DSSD_X27_E_Zero_Dispersion -9.61192
+MUSETT_T4_DSSD_X28_E_Zero_Dispersion -6.60574
+MUSETT_T4_DSSD_X29_E_Zero_Dispersion -4.2257
+MUSETT_T4_DSSD_X30_E_Zero_Dispersion -7.14973
+MUSETT_T4_DSSD_X31_E_Zero_Dispersion -7.53233
+MUSETT_T4_DSSD_X32_E_Zero_Dispersion -6.64291
+MUSETT_T4_DSSD_X33_E_Zero_Dispersion -6.68809
+MUSETT_T4_DSSD_X34_E_Zero_Dispersion -5.77713
+MUSETT_T4_DSSD_X35_E_Zero_Dispersion -10.6039
+MUSETT_T4_DSSD_X36_E_Zero_Dispersion -7.96819
+MUSETT_T4_DSSD_X37_E_Zero_Dispersion -7.94165
+MUSETT_T4_DSSD_X38_E_Zero_Dispersion -7.21244
+MUSETT_T4_DSSD_X39_E_Zero_Dispersion -8.55547
+MUSETT_T4_DSSD_X40_E_Zero_Dispersion -7.36818
+MUSETT_T4_DSSD_X41_E_Zero_Dispersion -9.44709
+MUSETT_T4_DSSD_X42_E_Zero_Dispersion -10.4522
+MUSETT_T4_DSSD_X43_E_Zero_Dispersion -8.97489
+MUSETT_T4_DSSD_X44_E_Zero_Dispersion -10
+MUSETT_T4_DSSD_X45_E_Zero_Dispersion -9.2142
+MUSETT_T4_DSSD_X46_E_Zero_Dispersion -7.46812
+MUSETT_T4_DSSD_X47_E_Zero_Dispersion -8.04091
+MUSETT_T4_DSSD_X48_E_Zero_Dispersion -6.95261
+MUSETT_T4_DSSD_X49_E_Zero_Dispersion -6.80019
+MUSETT_T4_DSSD_X50_E_Zero_Dispersion -9.09434
+MUSETT_T4_DSSD_X51_E_Zero_Dispersion -7.67807
+MUSETT_T4_DSSD_X52_E_Zero_Dispersion -7.01785
+MUSETT_T4_DSSD_X53_E_Zero_Dispersion -6.58275
+MUSETT_T4_DSSD_X54_E_Zero_Dispersion -5.67122
+MUSETT_T4_DSSD_X55_E_Zero_Dispersion -3.88878
+MUSETT_T4_DSSD_X56_E_Zero_Dispersion -8.03944
+MUSETT_T4_DSSD_X57_E_Zero_Dispersion -5.81276
+MUSETT_T4_DSSD_X58_E_Zero_Dispersion -8.54494
+MUSETT_T4_DSSD_X59_E_Zero_Dispersion -8.16751
+MUSETT_T4_DSSD_X60_E_Zero_Dispersion -7.80874
+MUSETT_T4_DSSD_X61_E_Zero_Dispersion -8.26822
+MUSETT_T4_DSSD_X62_E_Zero_Dispersion -6.11378
+MUSETT_T4_DSSD_X63_E_Zero_Dispersion -5.12248
+MUSETT_T4_DSSD_X64_E_Zero_Dispersion -6.64078
+MUSETT_T4_DSSD_X65_E_Zero_Dispersion -9.58986
+MUSETT_T4_DSSD_X66_E_Zero_Dispersion -9.24837
+MUSETT_T4_DSSD_X67_E_Zero_Dispersion -11.1603
+MUSETT_T4_DSSD_X68_E_Zero_Dispersion -4.63863
+MUSETT_T4_DSSD_X69_E_Zero_Dispersion -9.52264
+MUSETT_T4_DSSD_X70_E_Zero_Dispersion -11.479
+MUSETT_T4_DSSD_X71_E_Zero_Dispersion -10.0137
+MUSETT_T4_DSSD_X72_E_Zero_Dispersion -8.94496
+MUSETT_T4_DSSD_X73_E_Zero_Dispersion -7.12698
+MUSETT_T4_DSSD_X74_E_Zero_Dispersion -9.7154
+MUSETT_T4_DSSD_X75_E_Zero_Dispersion -9.78426
+MUSETT_T4_DSSD_X76_E_Zero_Dispersion -7.53312
+MUSETT_T4_DSSD_X77_E_Zero_Dispersion -8.43401
+MUSETT_T4_DSSD_X78_E_Zero_Dispersion -8.73408
+MUSETT_T4_DSSD_X79_E_Zero_Dispersion -7.14449
+MUSETT_T4_DSSD_X80_E_Zero_Dispersion -7.37592
+MUSETT_T4_DSSD_X81_E_Zero_Dispersion -2.96715
+MUSETT_T4_DSSD_X82_E_Zero_Dispersion -5.76667
+MUSETT_T4_DSSD_X83_E_Zero_Dispersion -5.78229
+MUSETT_T4_DSSD_X84_E_Zero_Dispersion -5.50772
+MUSETT_T4_DSSD_X85_E_Zero_Dispersion -1.86551
+MUSETT_T4_DSSD_X86_E_Zero_Dispersion -3.73733
+MUSETT_T4_DSSD_X87_E_Zero_Dispersion -2.84542
+MUSETT_T4_DSSD_X88_E_Zero_Dispersion -8.3055
+MUSETT_T4_DSSD_X89_E_Zero_Dispersion -4.52337
+MUSETT_T4_DSSD_X90_E_Zero_Dispersion -5.51395
+MUSETT_T4_DSSD_X91_E_Zero_Dispersion -5.87937
+MUSETT_T4_DSSD_X92_E_Zero_Dispersion -5.71029
+MUSETT_T4_DSSD_X93_E_Zero_Dispersion -6.8214
+MUSETT_T4_DSSD_X94_E_Zero_Dispersion -3.3959
+MUSETT_T4_DSSD_X95_E_Zero_Dispersion -7.24608
+MUSETT_T4_DSSD_X96_E_Zero_Dispersion -4.55237
+MUSETT_T4_DSSD_X97_E_Zero_Dispersion -13.4435
+MUSETT_T4_DSSD_X98_E_Zero_Dispersion -12.3841
+MUSETT_T4_DSSD_X99_E_Zero_Dispersion -10.6606
+MUSETT_T4_DSSD_X100_E_Zero_Dispersion -11.0243
+MUSETT_T4_DSSD_X101_E_Zero_Dispersion -8.23096
+MUSETT_T4_DSSD_X102_E_Zero_Dispersion -9.78454
+MUSETT_T4_DSSD_X103_E_Zero_Dispersion -10.8303
+MUSETT_T4_DSSD_X104_E_Zero_Dispersion -10.3008
+MUSETT_T4_DSSD_X105_E_Zero_Dispersion -11.9899
+MUSETT_T4_DSSD_X106_E_Zero_Dispersion -10.234
+MUSETT_T4_DSSD_X107_E_Zero_Dispersion -8.52824
+MUSETT_T4_DSSD_X108_E_Zero_Dispersion -9.83499
+MUSETT_T4_DSSD_X109_E_Zero_Dispersion -9.35842
+MUSETT_T4_DSSD_X110_E_Zero_Dispersion -11.4331
+MUSETT_T4_DSSD_X111_E_Zero_Dispersion -10.7369
+MUSETT_T4_DSSD_X112_E_Zero_Dispersion -11.3431
+MUSETT_T4_DSSD_X113_E_Zero_Dispersion -6.44424
+MUSETT_T4_DSSD_X114_E_Zero_Dispersion -7.19987
+MUSETT_T4_DSSD_X115_E_Zero_Dispersion -13.2774
+MUSETT_T4_DSSD_X116_E_Zero_Dispersion -8.00115
+MUSETT_T4_DSSD_X117_E_Zero_Dispersion -9.74113
+MUSETT_T4_DSSD_X118_E_Zero_Dispersion -11.3227
+MUSETT_T4_DSSD_X119_E_Zero_Dispersion -11.8247
+MUSETT_T4_DSSD_X120_E_Zero_Dispersion -9.29674
+MUSETT_T4_DSSD_X121_E_Zero_Dispersion -4.37841
+MUSETT_T4_DSSD_X122_E_Zero_Dispersion -14.9703
+MUSETT_T4_DSSD_X123_E_Zero_Dispersion -7.38905
+MUSETT_T4_DSSD_X124_E_Zero_Dispersion -14.1675
+MUSETT_T4_DSSD_X125_E_Zero_Dispersion -5.57399
+MUSETT_T4_DSSD_X126_E_Zero_Dispersion -5.67467
+MUSETT_T4_DSSD_X127_E_Zero_Dispersion -3.0189
+MUSETT_T4_DSSD_X128_E_Zero_Dispersion -13.8068
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/latex/double_alpha_run_244_Y_MM4_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/latex/double_alpha_run_244_Y_MM4_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..19b7e5c7fe7ef0dafc92bdd24671bbd7b3b403ce
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/latex/double_alpha_run_244_Y_MM4_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  4
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 4 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM4_E/latex/pictures/Telescope4Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.05778
+
+Sigma fit sigma: 0.173405
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/peaks/Cal_Str_Y_E_MM4.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/peaks/Cal_Str_Y_E_MM4.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator.C b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator.C
new file mode 100644
index 0000000000000000000000000000000000000000..3e38e7214e317a1d5e9e353e14fc066143fb0df8
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator.C
@@ -0,0 +1,928 @@
+// Contain global variable declaration, comment and option
+#include "EnergyCalibrator.h"
+
+void AutoCalibration(int Telescope_Start, int Telescope_End)
+{
+  for(int i = Telescope_Start ; i<=Telescope_End ;i++)
+  {
+    AlThickness = 0.3*micrometer ;
+    SiThickness = 0.0*micrometer ;
+    CThickness = 127*nanometer ;
+    double Al_step = 0.01*micrometer;
+    int step_limit = 100;
+    int k = 0 ;
+
+    TString inFileName = frun;
+
+    Telescope_Number = i ;
+    // Create a folder to Hold all the file from calibration
+    ostringstream FolderName;
+
+    FolderName << Experiment << "_" << inFileName << "_" << xy << "_MM" << Telescope_Number << "_E";
+    
+    main_name = FolderName.str() ;
+    TString make_folder = "mkdir ./Calibration/" + main_name ;   
+    folder = "./Calibration/" + FolderName.str() ;
+    system(make_folder);
+    system(make_folder+"/peaks");
+    system(make_folder+"/dispersion");
+    system(make_folder+"/latex");
+    system(make_folder+"/latex/pictures");
+
+    // open the ROOT file to process
+    TString path  = "./Histograms/";
+    inFile = new TFile(path + inFileName +"_RawMUSETTHistos.root");
+    // inFile = new TFile(path + inFileName +"_RawMust2Histos.root");
+    //inFile = new TFile(path + inFileName +"_RawMust2Histos_Threshold.root");
+    //  cout<<path + inFileName +"_RawMust2Histos.root"<<endl;
+    //cout<<inFile<<endl;
+
+    EnergyCalibrator();
+/*
+    bool check1=false,check2=false;
+    while( !(mean_extrapolation <0.1 && mean_extrapolation >-0.1 ) && k < step_limit )
+    {
+      if(mean_extrapolation < 0)
+      {
+        if(xy=="X")
+          AlThickness -= Al_step;
+        else if(xy=="Y")
+          AlThickness += Al_step;
+
+        check1=true;
+      }
+
+      else if (mean_extrapolation > 0)
+      {
+        if(xy=="X")
+          AlThickness += Al_step;
+        else if(xy=="Y")
+          AlThickness -= Al_step;
+
+        check2=true;
+      }
+
+      if(check1&&check2)
+      {
+        Al_step=Al_step/10.;
+        check1=false;check2=false;
+      }
+      latex_file.close();
+      EnergyCalibrator(fDet);
+
+      cout << " Iteration Results: Al Thickness: " << AlThickness/micrometer << "um | Mean Extrapolation  "  << mean_extrapolation << "Chan. "<< endl ;
+
+      k++;
+    }
+*/
+    LatexSummaryEnder();
+
+    delete Buffer;
+    delete Source_branching_ratio;
+    delete Source_E;
+    delete Source_Sig;
+    delete energyX;
+    delete errorsX;
+    delete energyY;
+    delete errorsY;
+
+  }
+
+  return;
+}
+
+
+/////////////////////////////
+void DefineSource(TString sourceName)
+{
+  if(sourceName=="3 alphas")
+  {
+    NumberOfIsotope = 3 ;
+    energyX = new Double_t[NumberOfIsotope]; errorsX = new Double_t[NumberOfIsotope];
+    energyY = new Double_t[NumberOfIsotope]; errorsY = new Double_t[NumberOfIsotope];
+
+    /// Information used in the summary
+    Source_Number_Peak = 8;
+    Source_isotope = new TString[Source_Number_Peak] ;Source_E = new Double_t[Source_Number_Peak] ; Source_Sig = new Double_t[Source_Number_Peak] ; Source_branching_ratio = new Double_t[Source_Number_Peak] ;
+
+    // 244Pu
+    Source_isotope[0]="$^{239}$Pu"; Source_E[0]   = 5.15659 ; Source_Sig[0] = 0.00014 ; Source_branching_ratio[0] = 70.77 ;
+    Source_isotope[1]="$^{239}$Pu"; Source_E[1]   = 5.14438 ; Source_Sig[1] = 0.00014 ; Source_branching_ratio[1] = 17.11 ;
+    Source_isotope[2]="$^{239}$Pu"; Source_E[2]   = 5.1055  ; Source_Sig[2] = 0.00014 ; Source_branching_ratio[2] = 11.94 ;
+
+    // 241Am
+    Source_isotope[3]="$^{241}$Am"; Source_E[3]   = 5.48556 ; Source_Sig[3] = 0.00012 ; Source_branching_ratio[3] = 84.8 ;
+    Source_isotope[4]="$^{241}$Am"; Source_E[4]   = 5.44280 ; Source_Sig[4] = 0.00012 ; Source_branching_ratio[4] = 13.1 ;
+    Source_isotope[5]="$^{241}$Am"; Source_E[5]   = 5.388   ; Source_Sig[5] = 0.00012 ; Source_branching_ratio[5] = 1.66 ;
+
+    // 244Cm
+    Source_isotope[6]="$^{244}$Cm"; Source_E[6]   = 5.80477 ; Source_Sig[6] = 0.00005 ; Source_branching_ratio[6] = 76.40 ;
+    Source_isotope[7]="$^{244}$Cm"; Source_E[7]   = 5.76264 ; Source_Sig[7] = 0.00005 ; Source_branching_ratio[7] = 23.60 ;
+
+    // Corrected value of main peak used in the fit
+    Double_t sig_value = 0.1;
+    Double_t alpha1_Sig = sig_value ; Double_t alpha2_Sig = sig_value ; Double_t alpha3_Sig = sig_value ; 
+
+    Double_t alpha1_E , alpha2_E , alpha3_E;
+
+    alpha1_E = EL_Al.Slow(	Source_E[0]*MeV , // Energy of the detected particle
+        AlThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha1_E = EL_Si.Slow(	alpha1_E*MeV    , // Energy of the detected particle
+        SiThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha2_E = EL_Al.Slow(	Source_E[3]*MeV , // Energy of the detected particle
+        AlThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha2_E = EL_Si.Slow(	alpha2_E*MeV    , // Energy of the detected particle
+        SiThickness	    , // Target Thickness at 0 degree
+        0     		      ) ;		
+
+    alpha3_E = EL_Al.Slow(	Source_E[6]*MeV , // Energy of the detected particle
+        AlThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha3_E = EL_Si.Slow(	alpha3_E*MeV    , // Energy of the detected particle
+        SiThickness   	, // Target Thickness at 0 degree
+        0     		      ) ;		                          
+
+    // X and Y are in a reversed order        
+    energyX[0] = alpha1_E   ; energyX[1] = alpha2_E   ; energyX[2] = alpha3_E   ;
+    errorsX[0] = alpha1_Sig ; errorsX[1] = alpha2_Sig ; errorsX[2] = alpha3_Sig ;
+
+    energyY[0] = alpha3_E   ; energyY[1] = alpha2_E   ; energyY[2] = alpha1_E   ;
+    errorsY[0] = alpha3_Sig ; errorsY[1] = alpha2_Sig ; errorsY[2] = alpha1_Sig ;
+  }
+  if(sourceName=="222Ra 218Rn 214Po"){
+    std::cout << "///////////////////////////////////////////////// TEST /////////////////////" <<std::endl;
+    NumberOfIsotope = 3 ;
+    energyX = new Double_t[NumberOfIsotope]; errorsX = new Double_t[NumberOfIsotope];
+    energyY = new Double_t[NumberOfIsotope]; errorsY = new Double_t[NumberOfIsotope];
+
+    /// Information used in the summary
+    Source_Number_Peak = 4;
+    Source_isotope = new TString[Source_Number_Peak] ;Source_E = new Double_t[Source_Number_Peak] ; Source_Sig = new Double_t[Source_Number_Peak] ; Source_branching_ratio = new Double_t[Source_Number_Peak] ;
+
+    // 222Ra
+    Source_isotope[0]="$^{222}$Ra"; Source_E[0]   = 6.558 ; Source_Sig[0] = 0.00014 ; Source_branching_ratio[0] = 96.95 ;
+    Source_isotope[1]="$^{222}$Ra"; Source_E[1]   = 6.239 ; Source_Sig[1] = 0.00014 ; Source_branching_ratio[1] = 3.05 ;
+
+    // 218Rn
+    Source_isotope[2]="$^{218}$Rn"; Source_E[2]   = 7.1291 ; Source_Sig[2] = 0.00005 ; Source_branching_ratio[2] = 100 ;
+
+    // 214Po
+    Source_isotope[3]="$^{214}$Po"; Source_E[3]   = 7.68682 ; Source_Sig[3] = 0.00005 ; Source_branching_ratio[3] = 100 ;
+
+    // Corrected value of main peak used in the fit
+    Double_t sig_value = 0.1;
+    Double_t alpha1_Sig = sig_value ; Double_t alpha2_Sig = sig_value ; Double_t alpha3_Sig = sig_value ; 
+
+    Double_t alpha1_E , alpha2_E , alpha3_E;
+
+
+    alpha1_E = EL_C.Slow(	Source_E[0]*MeV    , // Energy of the detected particle
+        CThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha2_E = EL_C.Slow(	Source_E[2]*MeV    , // Energy of the detected particle
+        CThickness	    , // Target Thickness at 0 degree
+        0     		      ) ;		
+
+    alpha3_E = EL_C.Slow(	Source_E[3]*MeV    , // Energy of the detected particle
+        CThickness   	, // Target Thickness at 0 degree
+        0     		      ) ;		                          
+
+    // X and Y are in a reversed order        
+    energyX[0] = alpha1_E   ; energyX[1] = alpha2_E   ; energyX[2] = alpha3_E   ;
+    errorsX[0] = alpha1_Sig ; errorsX[1] = alpha2_Sig ; errorsX[2] = alpha3_Sig ;
+
+    energyY[0] = alpha3_E   ; energyY[1] = alpha2_E   ; energyY[2] = alpha1_E   ;
+    errorsY[0] = alpha3_Sig ; errorsY[1] = alpha2_Sig ; errorsY[2] = alpha1_Sig ;
+
+  }
+
+  return;  
+}
+
+
+/////////////////////////////
+void EnergyCalibrator()
+{
+  std::cout << "test 1" << std::endl;
+  // Set-up the root Style
+  gStyle->SetOptTitle();
+  gStyle->SetOptTitle();
+  gStyle->SetOptStat(111111111);
+  //gPad->SetSetShowStyle(true);
+
+  DefineSource("222Ra 218Rn 214Po");
+
+  TString str;
+  TString str1;
+  TString str2;
+  TString strbuff;
+  TString strbuff2;
+  TString fname;
+  TString fname2;
+  TString fname3;
+  TString hname;
+  LatexSummaryHeader(xy);
+
+  // Clear everything
+  BadStrip.clear() ;
+  sigma_fit = new TH1F("Sigma", "Sigma from fit (channel)", 80, 0,10);
+  Dispersion= new TH1F("Dispersion", "Dispersion from Zero Extrapolation (channel)", 40, -20,20);
+  ZeroDispersion = new TGraph(128);
+  coeff_a = new TGraph(128);
+  coeff_b = new TGraph(128);
+
+  ostringstream number ;
+  number << Telescope_Number  ;
+  CurrentTelescope = Telescope_Number ;
+  if (xy == "X"){ 
+    //////// Input Files ///////////
+    str = "hMM"+number.str()+"_STRX_E";
+    str1 = "Cal_Str_X_E_MM"+number.str();
+  }	 
+  else if (xy == "Y"){ 	
+    //////// Input Files ///////////
+    str = "hMM"+number.str()+"_STRY_E";
+    str1 = "Cal_Str_Y_E_MM"+number.str();
+  }	 
+  else {cout<< "ERROR FOR X or Y PARAMETER"<< endl;}
+
+  fname =  folder + "/peaks/" + str1 + ".peak";
+  peaks_file.open( ( (string)fname ).c_str() );
+
+  fname2 = folder + "/" + str1 + ".cal";
+  calib_file.open( ( (string)fname2 ).c_str() );
+
+  fname3 = folder + "/" + str1 + ".dispersion";
+  dispersion_file.open( ( (string)fname3 ).c_str() );
+
+  Tsummary = new TCanvas((TString)("Telescope"+number.str()+"Summary"), (TString)("Telescope "+number.str()+" Summary"), 700, 700);
+  Tsummary->Divide(2,3);
+  Buffer  = new TCanvas((TString)("Buffer"), (TString)("Buffer"), 10, 10);
+  Buffer->cd(1);
+  std::cout << "test 2" << std::endl;
+
+  TH1F *histAlphaToPrint;
+  Int_t StripToPrint=127;
+
+  for (Int_t j = Strip_Start; j <= Strip_End; j++)
+  {
+  std::cout << "test 3 " << j << std::endl;
+    ///// Get the histogram of det i and strip j /////
+    CurrentStrip=j;
+    number.seekp(0);
+    number << j;
+    hname = str+(number.str().c_str());
+    TH1F *hist = (TH1F*) inFile->Get(((string)hname).c_str());
+
+    // Prevent rebinning in Pedestal
+    TH1F *histAlpha = (TH1F*)hist->Clone();
+    histAlpha->Rebin(2);
+
+    Alpha(histAlpha,
+        xy,
+        Pedestals(hist));
+
+    //Tsummary->WaitPrimitive();
+    /*if(xy == "X") 	   histAlpha->GetXaxis()->SetRangeUser(8500,9200);
+    else if(xy == "Y") histAlpha->GetXaxis()->SetRangeUser(7000,8000);*/
+    if(xy == "X") 	   histAlpha->GetXaxis()->SetRangeUser(Xmin,Xmax);
+    else if(xy == "Y") histAlpha->GetXaxis()->SetRangeUser(Ymin,Ymax);
+
+
+    if(j == StripToPrint-1) 
+    { //TH1F histAlpha67 = TH1F(*histAlpha);
+      histAlphaToPrint = (TH1F*)histAlpha->Clone();
+    }
+
+    //Buffer->WaitPrimitive();
+  }
+
+  Tsummary->cd(1); 
+  mean_extrapolation = ZeroDispersion->GetMean(2);
+  ZeroDispersion->SetMaximum(mean_extrapolation+30);ZeroDispersion->SetMinimum(mean_extrapolation-30);
+  ZeroDispersion->SetTitle("Scattered plot of zero extrapolation dispersion : Ped.+b/a");
+  ZeroDispersion->SetMarkerStyle(2);
+  ZeroDispersion->Draw("ap");
+  //Draw the mean line
+  TLine mean_line = TLine(0, ZeroDispersion->GetMean(2), 140, ZeroDispersion->GetMean(2) );
+  mean_line.Draw("");
+
+
+  std::cout << "test 4" << std::endl;
+  Tsummary->cd(2);
+  histAlphaToPrint->SetStats(true);
+  histAlphaToPrint->SetTitle("Raw Spectrum of a strip with gaussian fit");
+  histAlphaToPrint->Draw();
+
+  Tsummary->cd(3); 
+  Dispersion->Draw();
+
+  Tsummary->cd(4); 
+  sigma_fit->Draw();
+  TF1 *sigma_fit_fit = new TF1("sigma_fit_fit", "gaus", 0, 5);
+  sigma_fit->Fit("sigma_fit_fit", "Q");
+  sigma_fit_centroid = sigma_fit_fit->GetParameter(1);
+  sigma_fit_sigma = sigma_fit_fit->GetParameter(2);
+
+  Tsummary->cd(5) ;
+  coeff_a->SetMarkerStyle(2);
+  coeff_a->SetMaximum(coeff_a->GetMean(2)+0.002);coeff_a->SetMinimum(coeff_a->GetMean(2)-0.002);
+  coeff_a->SetTitle("Gain a (MeV/channel)");
+  coeff_a->Draw("ap");
+
+  Tsummary->cd(6);
+  coeff_b->SetMaximum(coeff_b->GetMean(2)+10);coeff_b->SetMinimum(coeff_b->GetMean(2)-10);
+  coeff_b->SetMarkerStyle(2);
+  coeff_b->SetTitle("Offset b (MeV)");
+  coeff_b->Draw("ap");
+
+  TString filename = Tsummary->GetName();
+  Tsummary->SaveAs(filename+".pdf");
+  Tsummary->Close();
+  system("mv "+filename+".pdf ./" + folder + "/latex/pictures");
+
+  peaks_file.close();
+  calib_file.close();
+  dispersion_file.close();
+
+  LatexSummaryTelescope();
+  delete Tsummary   ;
+  delete sigma_fit  ;
+  delete Dispersion ;
+
+  Buffer->Close();   
+}
+
+/////////////////////////////////
+Double_t Pedestals(TH1F *hist)
+{
+
+  if(Pedestals_Aligned)
+    return 8192 ;
+
+  else
+  {
+    TF1 *gauss=new TF1("gauss","gaus",0,1024);
+
+    hist->SetAxisRange(7800,8500);
+
+    ///// Peak search /////
+    TSpectrum *s = new TSpectrum(2,1);
+    Int_t nfound =0;
+    nfound = s->Search(hist,2," ");
+
+    /* Float_t *xpeaks = s->GetPositionX(); */
+    Double_t *xpeaks = s->GetPositionX();
+
+    Float_t linf =0, lsup =0; 
+    Double_t sum=0, mean=0, sigma=0;
+
+    if(nfound != 1 ) 
+      cout << "########   PROBLEM Nfound != NAsked !  ########   " << hist->GetName() <<"  Nfound:"<<nfound<<endl;
+
+    else {
+      linf = xpeaks[0]-10;
+      lsup = xpeaks[0]+10; 
+      gauss=new TF1("gauss","gaus",linf,lsup); 
+      gauss->SetRange(linf,lsup);
+      hist->Fit(gauss,"RQ");
+
+      sum = gauss->GetParameter(0);
+      mean = gauss->GetParameter(1);
+      sigma = gauss->GetParameter(2);
+
+      if(sigma > 3)
+        BadStrip[CurrentStrip] += " Alpha peak too large;" ;
+
+    }
+
+    delete s; delete gauss;
+    return (mean) ;
+  }
+
+
+}
+
+/////////////////////////////////
+void Alpha(TH1F *hist, TString xy, Double_t Pedestal)
+{
+
+  if(xy == "X") 		hist->GetXaxis()->SetRangeUser(Xmin,Xmax);
+//  if(xy == "X") 		hist->GetXaxis()->SetRangeUser(8300,10000);
+  else if(xy == "Y") 	hist->GetXaxis()->SetRangeUser(Ymin,Ymax);
+
+  if(!Finder(hist, xy, mean, sigma )) cout << "On "<< hist->GetName() << endl ;
+
+  // Fit 
+  TGraphErrors* gr_MM= new TGraphErrors(4);
+
+  if(method == "ZeroForce")
+  {
+    a = Calib_ZeroForceMethod((string)xy,gr_MM,Pedestal, mean,sigma);
+    b = -Pedestal*a ;
+  }
+
+  else if(method == "ZeroExtrapolation")
+  {
+    Calib_ZeroExtrapolationMethod(hist,(string)xy,gr_MM,Pedestal, mean, sigma,a,b);
+  }
+
+}
+
+/////////////////////////////////
+bool Finder(TH1F *h, TString xy, Double_t *mean, Double_t *sigma)
+{
+
+  /////////////////////////////////////////////////
+  //						                                 //
+  //	           ALPHA  FINDER		               //
+  //						                                 //
+  /////////////////////////////////////////////////
+
+  for(int k=0; k<3; k++)
+  {
+    mean[k]=0;
+    sigma[k]=0;
+  }
+
+  Double_t resolsig = 5;
+  Float_t resolsigTSpec = 1;
+  Double_t seuil = 0.05;
+  Int_t npeaks = 3;   // maximum number of peaks that can be found
+
+  //////// Peak finder
+
+  TSpectrum *s = new TSpectrum(npeaks,resolsigTSpec);
+
+  Int_t nfound = s->Search(h, resolsig, "new", seuil);
+  Double_t *xpeaks = s->GetPositionX();
+ 
+  //for(int i=0; i< nfound; i++)
+    //cout << xpeaks[i] << endl;
+
+  //Sort in growing order the array
+  if(nfound>1)
+  {
+    for(Int_t p=0;p<nfound;p++)
+    {
+      for(Int_t i=0;i<nfound-1;i++)
+      {
+        if(xpeaks[i]>xpeaks[i+1])
+        {
+          Float_t varia=xpeaks[i];
+          xpeaks[i]=xpeaks[i+1];
+          xpeaks[i+1]=varia;
+        }	  
+      }
+    }
+  }
+
+  Float_t linf=0, lsup=0; 
+
+  // If 3 peaks found
+  if(nfound == 3)
+  {
+    for (Int_t p=0;p<nfound;p++)
+    {   
+      if(xy == "X")
+      {			
+        linf = xpeaks[p]-2;
+        lsup = xpeaks[p]+8;
+      }
+
+      else if (xy == "Y")
+      {			
+        linf = xpeaks[p]-8;
+        lsup = xpeaks[p]+2;
+      }
+
+      TF1 *gauss = new TF1("gauss","gaus",linf,lsup);
+      h->Fit(gauss,"RQ");
+      mean[p] = gauss->GetParameter(1);
+      sigma[p]= gauss->GetParameter(2);
+      //cout << mean[p] << endl;
+
+      sigma_fit->Fill(gauss->GetParameter(2));
+    }
+  }
+
+  if(nfound!=3)
+  {
+    ostringstream numP;
+    numP << nfound ;
+    cout << nfound << "peaks found!" << endl;
+    BadStrip[CurrentStrip] += " " + numP.str() + " peak(s) found;" ;
+
+    for (Int_t p=0;p<3;p++)
+    {
+      cout << "attention, nombre de pics different de 3!!!" ;
+      mean[p]=-1;
+      sigma[p]=-1;
+      return false ;
+    }
+  }
+
+  return true ;
+}
+
+
+/////////////////////////////////
+Double_t Calib_ZeroForceMethod(string xy,TGraphErrors *gr,float Pedestal, Double_t *mean, Double_t *sigma)
+{  
+  Double_t energy[3];
+  Double_t errors[3];
+
+  if(xy=="X")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyX[i];
+      errors[i] = errorsX[i];
+    }
+
+  if(xy=="Y")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyY[i];
+      errors[i] = errorsY[i];
+    }
+
+  gr->SetPoint(0,Pedestal,energy[0]);
+
+  for (Int_t p = 0; p < 3; p++) {
+    gr->SetPoint(p, mean[p], energy[p]);
+    gr->SetPointError(p, sigma[p], errors[p]);    
+  }
+
+  TF1 *f1 = new TF1("f1",Form("[0]*(x-%f)",Pedestal));
+  gr->Fit("f1", "Q" );
+
+  a = f1 -> GetParameter(0);
+
+  if (xy == "X"){
+    calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+
+  else if (xy == "Y"){
+    calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+  delete f1;
+  return a ;
+}
+
+/////////////////////////////////
+Double_t Calib_ZeroExtrapolationMethod(TH1F* hist , string xy,TGraphErrors *gr, float Pedestal, Double_t* mean, Double_t* sigma, Double_t &a , Double_t &b)
+{  
+  Double_t energy[3];
+  Double_t errors[3];
+
+  if(xy=="X")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyX[i];
+      errors[i] = errorsX[i];
+    }
+
+  if(xy=="Y")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyY[i];
+      errors[i] = errorsY[i];
+    }
+
+  for (Int_t p = 0; p < 3; p++) {
+    gr->SetPoint(p, mean[p], energy[p]);
+    gr->SetPointError(p, sigma[p], errors[p]);    
+  }
+
+  TF1 *f1 = new TF1("f1","[1]+[0]*x");
+  gr->Fit("f1", "Q" );
+
+  a = f1 -> GetParameter(0);
+  b = f1 -> GetParameter(1);
+
+  if(RefitWithSatellite)
+  {
+    Find_Satellites(hist);
+
+    for (Int_t p = 0; p < 3; p++) 
+    {
+      gr->SetPoint(p, mean[p], energy[p]);
+      gr->SetPointError(p, sigma[p], a*sigma[p]);    
+    }
+
+    gr->Fit("f1", "Q" );
+
+    a = f1 -> GetParameter(0);
+    b = f1 -> GetParameter(1);
+  }
+  std::cout << "/////////////// " << energy[0] << "  " << mean[0] << std::endl;
+
+
+  if( (a < 0.009 &&  a > 0.006) || (a > -0.009 &&  a < -0.006) )  
+    coeff_a->SetPoint(CurrentStrip,CurrentStrip,a);
+
+  if( (b < -54 && b > -72) || (b > 54 && b < 72) )
+    coeff_b->SetPoint(CurrentStrip,CurrentStrip,b);
+
+  // look at the dispersion around Pedestals
+  Double_t dispersion = Pedestal + b/a ;
+  dispersion_file  << "MUSETT_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_E_Zero_Dispersion " << dispersion << endl ;
+
+  // Condition avoid Mean problem due to a few large value
+  if(dispersion<40 && dispersion>-40 )
+    ZeroDispersion->SetPoint(CurrentStrip,CurrentStrip,dispersion);
+
+  Dispersion->Fill(dispersion);
+
+  if(dispersion > 30 || dispersion < -30)
+  {
+    ostringstream disp;
+    disp << dispersion ;
+    BadStrip[CurrentStrip] += " zero extrapolation too high:" + disp.str() +"channels; ";
+  }
+
+
+  if (xy == "X"){
+    calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+
+  else if (xy == "Y"){
+    calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+  delete f1;
+  return a ;
+
+}
+
+/////////////////////////////////////////
+void LatexSummaryHeader(TString xy)
+{
+
+  latex_file.open(folder+"/latex/"+main_name+".tex");
+
+  ///// Write File Header
+
+  latex_file << "\\documentclass[a4paper,6pt]{article}" << endl ;
+  latex_file << "\\usepackage[french]{babel}" << endl ;
+  latex_file << "\\usepackage[T1]{fontenc}" << endl ;
+  latex_file << "\\usepackage{graphicx}" << endl ;
+  latex_file << "\\usepackage{fullpage}" << endl ;
+  latex_file << "\\topmargin = 0pt" << endl ;
+  latex_file << "\\headsep = 0pt" << endl ;
+
+  // Start Document
+  latex_file << "\\begin{document}" << endl ;
+  latex_file << "\\title{MUSETT DSSD Energy Calibration Report}" << endl ;
+
+  latex_file << "\\date{}" << endl ;
+  latex_file << "\\maketitle" << endl ;
+
+  // Write Report header
+  latex_file << "\\section{Calibration Summary}" << endl ;
+  latex_file << "\\begin{itemize}" << endl ;
+  latex_file << "\t \\item[{\\bf Experiment:}] "<< Experiment << endl ;
+  latex_file << "\t \\item[{\\bf Operator:}] "<< Operator << endl ;
+  latex_file << "\t \\item[{\\bf App. Date:}] "<< Run_Period << endl ;
+  latex_file << "\t \\item[{\\bf Source:}] "<< Source << endl ;
+  latex_file << "\t \\item[{\\bf Dead Layer:}] "<< "Al "<< AlThickness/micrometer << "$\\mu$m + Si " << SiThickness/micrometer << "$\\mu$m" << endl ;
+  latex_file << "\t \\item[{\\bf Comment:}] "<< Comment << endl ;
+  latex_file << "\t \\item[] "<< endl ;
+  latex_file << "\t \\item[{\\bf Calibration Method:}] "<< " " << method << " "<< endl ;
+  latex_file << "\t \\item[{\\bf Telescope Treated:}] "<<  " " << Telescope_Number << endl ;
+  latex_file << "\t \\item[{\\bf Strip Treated:}] "<<  " " << Strip_Start << " to "<< Strip_End << " " << endl ;
+  latex_file << "\t \\item[{\\bf DSSD Side:}] "<< " " <<  xy << endl ;
+
+  latex_file << "\\end{itemize}" << endl ;
+
+  latex_file << "\\begin{itemize}" << endl ;
+  latex_file << "\t \\item[] "<< endl ;
+  latex_file << "\t \\item[] "<< endl ;
+  latex_file << "\\end{itemize}" << endl ;
+
+  latex_file << "{\\bf Source Description:} " << endl ;
+  latex_file << "\\begin{center}"<<endl ;
+  latex_file << "\\begin{tabular}{ | c | c | c | } "<<endl ;
+  latex_file << "\\hline "<<endl ;
+  latex_file << "Isotope & Original Energy (MeV) & Branching Ratio \\\\ \\hline " << endl ;
+
+  for(int hh = 0 ; hh < Source_Number_Peak ; hh++)
+  {
+    latex_file << Source_isotope[hh] << " & " << Source_E[hh] << " & " << Source_branching_ratio[hh] << " \\\\ \\hline" << endl;
+  }
+
+  latex_file << "\\end{tabular} "<<endl ;
+  latex_file << "\\end{center}"<<endl ;
+
+  latex_file <<"\\pagebreak"<<endl ;
+}
+
+///
+void LatexSummaryEnder()
+{
+  latex_file << endl <<  "\\end{document}" << endl ;
+  latex_file.close();
+  // generate the pdf file and clean-up
+  system("pdflatex "+folder+"/latex/"+main_name+".tex");
+  system("rm -f *.log");
+  system("rm -f *.aux");
+  system("mv " + main_name+".pdf "+folder  );
+}
+
+///
+void LatexSummaryTelescope()
+{
+  /// Write main summary
+  latex_file << "\\section{Telescope "<< CurrentTelescope << " }"<<endl ;
+  /// List symptomatic strips and reason
+
+  if(BadStrip.size()>0)
+  {
+    latex_file << " Bad Strip:" << endl ;
+    latex_file << "\\begin{center}"<<endl ;
+    latex_file << "\\begin{tabular}{ | c | c | } "<<endl ;
+    latex_file << "\\hline "<<endl ;
+    latex_file << " Strip Number & Problem \\\\ \\hline "<<endl ;
+    map<int,string>::iterator it ;
+    for(it = BadStrip.begin() ; it!=BadStrip.end() ; it++)
+    {
+      latex_file << it->first << " & " << it->second <<  " \\\\ \\hline "<<endl ;
+    }
+
+    latex_file << "\\end{tabular} "<<endl ;
+    latex_file << "\\end{center}"<<endl ;
+  }
+
+  else
+    latex_file << "Bad Strip : All Strip are ok."<<endl ;
+
+  // Add the Graph
+  TString filename = Tsummary->GetName();
+  TString path = folder+"/latex/pictures/"+filename+".pdf";
+
+  latex_file <<"\\begin{figure}[htcb!]"<<endl ;
+  latex_file <<"\\begin{center}"<<endl ;
+  latex_file <<"\\includegraphics[width=0.7\\textwidth]{"+path +"}"<<endl ;
+  latex_file <<"\\end{center}"<<endl ;
+  latex_file <<"\\end{figure}"<<endl ;
+
+  latex_file <<"\\pagebreak"<<endl ;
+
+  latex_file << "Sigma fit centroid: " << sigma_fit_centroid << endl << endl;
+  latex_file << "Sigma fit sigma: " << sigma_fit_sigma << endl;
+
+  /// add summary graph and image
+
+}
+
+
+//////// Satellite finder and description of the Peak+Sattelite look-a-like function
+void Find_Satellites(TH1F *h)
+{
+
+  if(mean[0]==0 && mean[1]==0 && mean[2]==0) { cout << "pas de pics ---> pas de satellites!" << endl;}
+
+  else {
+
+    Float_t linf1 =0 , lsup1 =0, linf2 =0 , lsup2 =0 , linf3 =0 , lsup3=0;
+
+    if(a>0) { // ie Y case
+      linf1 = mean[0]-15; lsup1 = mean[0]+10;
+      linf2 = mean[1]-15; lsup2 = mean[1]+10;
+      linf3 = mean[2]-15; lsup3 = mean[2]+10;
+    }
+
+    else { // ie X case 
+      lsup1 = mean[0]+15; linf1 = mean[0]-10;
+      lsup2 = mean[1]+15; linf2 = mean[1]-10;
+      lsup3 = mean[2]+15; linf3 = mean[2]-10;
+    }
+
+    Double_t keVtoMeV = 1./1000. ;
+
+    TF1 *Pu = new TF1("fit_sat_Pu", source_Pu, linf1, lsup1, 6);
+    Pu->SetParameters(150,mean[0],mean[0]-12.4*keVtoMeV/a,mean[0]-51.6*keVtoMeV/a,sigma[0]);
+    Pu->SetParLimits(2,mean[0]-12.4*keVtoMeV/a-10,mean[0]-12.6*keVtoMeV/a+10);
+    Pu->SetParLimits(3,mean[0]-51.6*keVtoMeV/a-10,mean[0]-51.6*keVtoMeV/a+10);
+    Pu->SetParNames("Constant","Mean_value1","Mean_value2","Mean_value3","SigmaPu");
+    h->Fit("fit_sat_Pu", "RQ");
+
+    TF1 *Am = new TF1("fit_sat_Am", source_Am, linf2, lsup2, 6);
+    Am->SetParameters(150,mean[1],mean[1]-43.2*keVtoMeV/a,mean[1]-98.4*keVtoMeV/a,sigma[1]);
+    Am->SetParLimits(2,mean[1]-43.2*keVtoMeV/a-10,mean[1]-43.2*keVtoMeV/a+10);
+    Am->SetParLimits(3,mean[1]-98.4*keVtoMeV/a-10,mean[1]-98.4*keVtoMeV/a+10);
+    Am->SetParNames("Constant","Mean_value1","Mean_value2","Mean_value3","SigmaAm");
+    h->Fit("fit_sat_Am", "RQ+");
+
+
+    TF1 *Cm = new TF1("fit_sat_Cm", source_Cm, linf3, lsup3, 6);
+    Cm->SetParameters(150,mean[2],mean[2]-43.1*keVtoMeV/a,sigma[2]);
+    Cm->SetParLimits(2,mean[2]-43.1*keVtoMeV/a-10,mean[0]-43.1*keVtoMeV/a-10);
+    Cm->SetParNames("Constant","Mean_value1","Mean_value2","SigmaCm");
+    h->Fit("fit_sat_Cm", "RQ+");
+
+    mean[0]=Pu->GetParameter(1);  // Position of the 1st principal peak
+    sigma[0]=Pu->GetParameter(4); // Sigma of the 1st principal peak
+    sigma_fit->Fill(sigma[0]) ;
+    error_par[0]= Pu->GetParError(1);
+    mean[1]=Am->GetParameter(1);
+    sigma[1]=Am->GetParameter(4);
+    sigma_fit->Fill(sigma[1]) ;
+    error_par[1]= Am->GetParError(1);
+    mean[2]=Cm->GetParameter(1);
+    sigma[2]=Cm->GetParameter(3);
+    sigma_fit->Fill(sigma[2]) ;
+    error_par[2]= Cm->GetParError(1);
+  }
+
+}
+
+///////////////////////////////////////////////
+Double_t source_Pu(Double_t *x, Double_t *par)
+{
+  // [0] : constant
+  // [1] : position peak1
+  // [2] : position peak2
+  // [3] : position peak3
+  // [4] : sigma
+
+  Double_t arg1 = 0;
+  Double_t arg2 = 0;
+  Double_t arg3 = 0;
+
+  if(par[4]!=0) { 
+    arg1 = (x[0]-par[1])/par[4];
+    arg2 = (x[0]-par[2])/par[4];
+    arg3 = (x[0]-par[3])/par[4];
+  }
+
+  else cout << " Attention, sigma est nul !" << endl;
+
+  Double_t gaus1 =           par[0]*exp(-0.5*arg1*arg1);
+  Double_t gaus2 = 15.1/73.8*par[0]*exp(-0.5*arg2*arg2);
+  Double_t gaus3 = 11.5/73.8*par[0]*exp(-0.5*arg3*arg3);
+  Double_t fitval = gaus1+gaus2+gaus3;
+
+  return fitval;
+}
+
+///////////////////////////////////////////////
+Double_t source_Am(Double_t *x, Double_t *par)
+{
+  // [0] : constant
+  // [1] : position peak1
+  // [2] : position peak2
+  // [3] : position peak3
+  // [4] : sigma
+
+  Double_t arg1 = 0;
+  Double_t arg2 = 0;
+  Double_t arg3 = 0;
+
+  if(par[4]!=0) { 
+    arg1 = (x[0]-par[1])/par[4];
+    arg2 = (x[0]-par[2])/par[4];
+    arg3 = (x[0]-par[3])/par[4];
+  }
+
+  else cout << " Attention, sigma est nul !" << endl;
+
+  Double_t gaus1 =           par[0]*exp(-0.5*arg1*arg1);
+  Double_t gaus2 = 13.0/84.5*par[0]*exp(-0.5*arg2*arg2);
+  Double_t gaus3 = 1.6/84.5 *par[0]*exp(-0.5*arg3*arg3);
+  Double_t fitval= gaus1+gaus2+gaus3;
+
+  return fitval;
+}
+
+///////////////////////////////////////////////
+Double_t source_Cm(Double_t *x, Double_t *par)
+{
+  // [0] : constante
+  // [1] : position peak1
+  // [2] : position peak2
+  // [3] : sigma
+
+  Double_t arg1 = 0;
+  Double_t arg2 = 0;
+
+  if(par[3]!=0) { 
+    arg1 = (x[0]-par[1])/par[3];
+    arg2 = (x[0]-par[2])/par[3];
+  }
+
+  else cout << " Attention, sigma est nul !" << endl;
+
+  Double_t gaus1 =           par[0]*exp(-0.5*arg1*arg1);
+  Double_t gaus2 = 23.6/76.4*par[0]*exp(-0.5*arg2*arg2);
+  Double_t fitval= gaus1+gaus2; 
+
+  return fitval;
+}  
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator.h b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator.h
new file mode 100644
index 0000000000000000000000000000000000000000..9a14ef624c44f1e4b32b7b2a25b3a1ca7fb12147
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator.h
@@ -0,0 +1,134 @@
+// STL
+#include<stdlib.h>
+#include<stdio.h>
+#include <time.h>
+#include <iostream>
+#include <fstream>
+#include <sstream>
+#include <map>
+
+// Root
+#include "TString.h"
+#include "TSpectrum.h"
+#include "TGraphErrors.h"
+#include "TGraph.h"
+#include "TCanvas.h"
+#include "TFile.h"
+#include "TTree.h"
+#include "TH1F.h"
+#include "TF1.h"
+#include "TStyle.h"
+#include "TLine.h"
+
+//NPTool
+#include "NPEnergyLoss.h"
+#include "NPSystemOfUnits.h"
+
+
+using namespace NPUNITS;
+using namespace NPL;
+
+/// DEFINING GLOBAL VARIABLE
+
+double mean_extrapolation=100;
+
+/// Parameter used in the macro
+// Micrometer
+Double_t AlThickness;
+Double_t SiThickness;
+Double_t CThickness;
+EnergyLoss EL_Al("./EnergyLossTable/alpha_Al.G4table" , "G4Table", 100) ;
+EnergyLoss EL_Si("./EnergyLossTable/alpha_Si.G4table" , "G4Table", 100) ;
+EnergyLoss EL_C("./EnergyLossTable/alpha_C.G4table" , "G4Table", 100) ;
+// Information about the calibration condition (use Latex marks-up)
+
+const TString xy                  = "Y";
+const TString Experiment          = "double_alpha";
+const TString Run_Period          = "21/06/2023"; 
+const TString Operator            = "Hugo";
+const TString Source              = "3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po";
+const TString Comment             = "MUSETT";
+const char* frun = "run_0274";
+
+
+
+
+int Telescope_Number=0;
+const int Strip_Start=0;
+const int Strip_End=127;
+
+const int Xmin = 8700;
+const int Xmax = 9500;
+
+const int Ymin = 6800;
+const int Ymax = 8000;
+
+// choosing a method for the fit
+const TString method = "ZeroExtrapolation" ;
+//const TString method = "ZeroForce";
+const bool RefitWithSatellite = false;
+const bool Pedestals_Aligned = true;   
+Int_t CurrentTelescope = 0;
+Int_t CurrentStrip     = 0;
+TString folder;
+TString main_name;
+TCanvas* Tsummary;
+TCanvas* Buffer;
+double sigma_fit_centroid = 0.;
+double sigma_fit_sigma = 0.;
+
+map<int,string> BadStrip;
+
+// Defining the array used after (order needs to be diffent for X and Y )
+Int_t NumberOfIsotope;
+
+// Source original value
+Int_t Source_Number_Peak;
+TString*  Source_isotope;
+Double_t* Source_branching_ratio;
+Double_t* Source_E;
+Double_t* Source_Sig;
+
+// Source corrected value
+Double_t* energyX;
+Double_t* errorsX;
+Double_t* energyY;
+Double_t* errorsY;
+
+// Calibration Coefficient
+Double_t a ;
+Double_t b ;
+
+Double_t* mean      = new Double_t[3]; 
+Double_t* sigma     = new Double_t[3];
+Double_t* error_par = new Double_t[3];
+
+TGraph* ZeroDispersion ;
+ofstream peaks_file, calib_file, dispersion_file , calib_online_file, latex_file;; 
+
+TH1F* sigma_fit  ;
+TH1F* Dispersion ;
+TGraph* coeff_a ;
+TGraph* coeff_b ;
+
+TFile *inFile;
+
+/// Function Header
+void AutoCalibration(int first_telescope ,int last_telescope, std::string fDet);
+void EnergyCalibrator();
+Double_t Pedestals(TH1F *);
+void Alpha(TH1F*, TString, Double_t);
+bool Finder(TH1F*, TString , Double_t*, Double_t*);
+Double_t Calib_ZeroForceMethod(string ,TGraphErrors*,float, Double_t*, Double_t*);
+Double_t Calib_ZeroExtrapolationMethod(TH1F* hist ,string ,TGraphErrors*,float, Double_t*, Double_t*, Double_t &a , Double_t &b);
+void LatexSummaryHeader(TString xy);
+void LatexSummaryEnder();
+void LatexSummaryTelescope();
+void DefineSource(TString sourceName="3 alphas");
+
+
+void Find_Satellites(TH1F *h);
+Double_t source_Pu(Double_t *x, Double_t *par);
+Double_t source_Am(Double_t *x, Double_t *par);
+Double_t source_Cm(Double_t *x, Double_t *par);
+
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator_C.d b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..998cb85a8698d6155c17e737757ae896dd57f834
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator_C.d
@@ -0,0 +1,110 @@
+
+# DO NOT DELETE
+
+./EnergyCalibrator_C.so: EnergyCalibrator.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSpectrum.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraphErrors.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraph.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCanvas.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TPad.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualPad.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttPad.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/GuiTypes.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Buttons.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttBBox2D.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttCanvas.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFormula.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/Types.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMethodCall.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1AbsComposition.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMath.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TError.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/ParamFunctor.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStyle.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttText.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TColor.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TLine.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPEnergyLoss.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSpline.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPGlobalSystemOfUnits.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPPhysicalConstants.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPSystemOfUnits.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+EnergyCalibrator_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_Al.G4table b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_Al.G4table
new file mode 100644
index 0000000000000000000000000000000000000000..e709021f7318e8035a1b958d1a4a4746ddd0822d
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_Al.G4table
@@ -0,0 +1,10002 @@
+Table from Geant4 generate using NPSimulation 	Particle: alpha	Material: Aluminium
+0	0
+0.12	0.263296
+0.24	0.321639
+0.36	0.343225
+0.48	0.35083
+0.6	0.351191
+0.72	0.347455
+0.84	0.341367
+0.96	0.334008
+1.08	0.32598
+1.2	0.317694
+1.32	0.30938
+1.44	0.301191
+1.56	0.293217
+1.68	0.285509
+1.8	0.278096
+1.92	0.270987
+2.04	0.264181
+2.16	0.257675
+2.28	0.251464
+2.4	0.245534
+2.52	0.239869
+2.64	0.234458
+2.76	0.229288
+2.88	0.224347
+3	0.219621
+3.12	0.215096
+3.24	0.210762
+3.36	0.206608
+3.48	0.202622
+3.6	0.198797
+3.72	0.195121
+3.84	0.191588
+3.96	0.18819
+4.08	0.184918
+4.2	0.181769
+4.32	0.178734
+4.44	0.175806
+4.56	0.172981
+4.68	0.170252
+4.8	0.167615
+4.92	0.165066
+5.04	0.1626
+5.16	0.160215
+5.28	0.157903
+5.4	0.155662
+5.52	0.15349
+5.64	0.151385
+5.76	0.149342
+5.88	0.147358
+6	0.145432
+6.12	0.14356
+6.24	0.14174
+6.36	0.13997
+6.48	0.138249
+6.6	0.136573
+6.72	0.134941
+6.84	0.133351
+6.96	0.131802
+7.08	0.130293
+7.2	0.12882
+7.32	0.127384
+7.44	0.125983
+7.56	0.124615
+7.68	0.12328
+7.8	0.121976
+7.92	0.120701
+8.04	0.119219
+8.16	0.117982
+8.28	0.116771
+8.4	0.115586
+8.52	0.114426
+8.64	0.11329
+8.76	0.112177
+8.88	0.111086
+9	0.110018
+9.12	0.108971
+9.24	0.107944
+9.36	0.106938
+9.48	0.106318
+9.6	0.105349
+9.72	0.104294
+9.84	0.103368
+9.96	0.10246
+10.08	0.101568
+10.2	0.100698
+10.32	0.0998523
+10.44	0.0990212
+10.56	0.0982045
+10.68	0.0974016
+10.8	0.0966124
+10.92	0.0958364
+11.04	0.0953229
+11.16	0.0945601
+11.28	0.0937563
+11.4	0.0930218
+11.52	0.0922994
+11.64	0.0915887
+11.76	0.0910948
+11.88	0.0904129
+12	0.0897418
+12.12	0.0890813
+12.24	0.0884311
+12.36	0.087791
+12.48	0.0871608
+12.6	0.0865384
+12.72	0.0859271
+12.84	0.0853251
+12.96	0.0846983
+13.08	0.0841171
+13.2	0.0835445
+13.32	0.0831803
+13.44	0.082624
+13.56	0.0820757
+13.68	0.0815354
+13.8	0.0810029
+13.92	0.0804779
+14.04	0.0799603
+14.16	0.0794499
+14.28	0.0789467
+14.4	0.0784503
+14.52	0.0779608
+14.64	0.077478
+14.76	0.0770016
+14.88	0.0765317
+15	0.076068
+15.12	0.0756105
+15.24	0.075159
+15.36	0.0747134
+15.48	0.0742736
+15.6	0.0738394
+15.72	0.0736242
+15.84	0.0732002
+15.96	0.0727806
+16.08	0.072365
+16.2	0.071949
+16.32	0.0715452
+16.44	0.0711466
+16.56	0.0707529
+16.68	0.0703642
+16.8	0.0699802
+16.92	0.0696009
+17.04	0.0692261
+17.16	0.0688559
+17.28	0.0684902
+17.4	0.0681287
+17.52	0.0677716
+17.64	0.0674186
+17.76	0.0670698
+17.88	0.066725
+18	0.0663841
+18.12	0.0660472
+18.24	0.0657141
+18.36	0.0653848
+18.48	0.0650591
+18.6	0.0647371
+18.72	0.0644187
+18.84	0.0641038
+18.96	0.0637924
+19.08	0.0634843
+19.2	0.0631796
+19.32	0.0628782
+19.44	0.0625931
+19.56	0.0622985
+19.68	0.0620071
+19.8	0.0617188
+19.92	0.0614334
+20.04	0.0611511
+20.16	0.0608716
+20.28	0.0605951
+20.4	0.0603214
+20.52	0.0600504
+20.64	0.0597822
+20.76	0.0595167
+20.88	0.0592539
+21	0.0589936
+21.12	0.058736
+21.24	0.0584809
+21.36	0.0582283
+21.48	0.0579781
+21.6	0.0577304
+21.72	0.0574851
+21.84	0.0572421
+21.96	0.0570015
+22.08	0.0567632
+22.2	0.0565271
+22.32	0.0562933
+22.44	0.0560617
+22.56	0.0558322
+22.68	0.055618
+22.8	0.0553926
+22.92	0.0551694
+23.04	0.0549482
+23.16	0.0547289
+23.28	0.0545117
+23.4	0.0542964
+23.52	0.054083
+23.64	0.0540172
+23.76	0.0538059
+23.88	0.0535964
+24	0.0533888
+24.12	0.053183
+24.24	0.052979
+24.36	0.0527942
+24.48	0.0525939
+24.6	0.0523953
+24.72	0.0521983
+24.84	0.0520031
+24.96	0.0518095
+25.08	0.0516175
+25.2	0.0514271
+25.32	0.0512383
+25.44	0.0510511
+25.56	0.0508654
+25.68	0.0506812
+25.8	0.0504985
+25.92	0.0503174
+26.04	0.0501377
+26.16	0.0499594
+26.28	0.0497826
+26.4	0.0496071
+26.52	0.0494331
+26.64	0.0492605
+26.76	0.0490892
+26.88	0.0489193
+27	0.0487507
+27.12	0.0485834
+27.24	0.0484174
+27.36	0.0482527
+27.48	0.0480893
+27.6	0.047949
+27.72	0.0477881
+27.84	0.0476283
+27.96	0.0474698
+28.08	0.0473124
+28.2	0.0471562
+28.32	0.0470012
+28.44	0.0468475
+28.56	0.0466953
+28.68	0.0465443
+28.8	0.0463944
+28.92	0.0462455
+29.04	0.0460978
+29.16	0.045951
+29.28	0.0458054
+29.4	0.0456607
+29.52	0.0455171
+29.64	0.0453746
+29.76	0.045233
+29.88	0.0450924
+30	0.0449528
+30.12	0.0448141
+30.24	0.0446765
+30.36	0.0445397
+30.48	0.0444039
+30.6	0.0442691
+30.72	0.0441352
+30.84	0.0440021
+30.96	0.04387
+31.08	0.0437388
+31.2	0.0436085
+31.32	0.043479
+31.44	0.0433504
+31.56	0.0432226
+31.68	0.0430957
+31.8	0.0429697
+31.92	0.0428444
+32.04	0.04272
+32.16	0.0425964
+32.28	0.0424736
+32.4	0.0423516
+32.52	0.0422824
+32.64	0.0421619
+32.76	0.0420422
+32.88	0.0419232
+33	0.041805
+33.12	0.0416875
+33.24	0.0415708
+33.36	0.0414548
+33.48	0.0413396
+33.6	0.041225
+33.72	0.0411112
+33.84	0.0409981
+33.96	0.0408857
+34.08	0.040774
+34.2	0.040663
+34.32	0.0405526
+34.44	0.0404429
+34.56	0.0403339
+34.68	0.0402256
+34.8	0.0401179
+34.92	0.0400109
+35.04	0.0399045
+35.16	0.0397987
+35.28	0.0396936
+35.4	0.0395891
+35.52	0.0394852
+35.64	0.039382
+35.76	0.0392793
+35.88	0.0391773
+36	0.0390758
+36.12	0.038975
+36.24	0.0388747
+36.36	0.038775
+36.48	0.0386759
+36.6	0.0385773
+36.72	0.0384794
+36.84	0.038382
+36.96	0.0382851
+37.08	0.0381888
+37.2	0.038093
+37.32	0.0379978
+37.44	0.0379031
+37.56	0.037809
+37.68	0.0377153
+37.8	0.0376222
+37.92	0.0375297
+38.04	0.0374376
+38.16	0.037346
+38.28	0.037255
+38.4	0.0371644
+38.52	0.0370744
+38.64	0.0369848
+38.76	0.0368957
+38.88	0.0368071
+39	0.036719
+39.12	0.0366314
+39.24	0.0365442
+39.36	0.0364575
+39.48	0.0363713
+39.6	0.0362137
+39.72	0.0361264
+39.84	0.0360395
+39.96	0.0359532
+40.08	0.0358672
+40.2	0.0357818
+40.32	0.0356968
+40.44	0.0356122
+40.56	0.0355281
+40.68	0.0354444
+40.8	0.0353611
+40.92	0.0352783
+41.04	0.0351959
+41.16	0.035114
+41.28	0.0350325
+41.4	0.0349514
+41.52	0.0348707
+41.64	0.0347905
+41.76	0.0347106
+41.88	0.0346311
+42	0.0345521
+42.12	0.0344734
+42.24	0.0343952
+42.36	0.0343173
+42.48	0.0342398
+42.6	0.0341627
+42.72	0.034086
+42.84	0.0340097
+42.96	0.0339337
+43.08	0.0338582
+43.2	0.033783
+43.32	0.0337081
+43.44	0.0336337
+43.56	0.0335595
+43.68	0.0334858
+43.8	0.0334124
+43.92	0.0333394
+44.04	0.0332667
+44.16	0.0331944
+44.28	0.0331224
+44.4	0.0330507
+44.52	0.0329794
+44.64	0.0329085
+44.76	0.0328378
+44.88	0.0327676
+45	0.0326976
+45.12	0.032628
+45.24	0.0325587
+45.36	0.0324897
+45.48	0.032421
+45.6	0.0323527
+45.72	0.0322847
+45.84	0.032217
+45.96	0.0321496
+46.08	0.0320825
+46.2	0.0320158
+46.32	0.0319493
+46.44	0.0318831
+46.56	0.0318173
+46.68	0.0317517
+46.8	0.0316865
+46.92	0.0316215
+47.04	0.0315568
+47.16	0.0314925
+47.28	0.0314284
+47.4	0.0313646
+47.52	0.0313011
+47.64	0.0312378
+47.76	0.0311749
+47.88	0.0311122
+48	0.0310498
+48.12	0.0309877
+48.24	0.0309259
+48.36	0.0308643
+48.48	0.030803
+48.6	0.030742
+48.72	0.0306812
+48.84	0.0306207
+48.96	0.0305605
+49.08	0.0305519
+49.2	0.0304919
+49.32	0.0304322
+49.44	0.0303728
+49.56	0.0303136
+49.68	0.0302547
+49.8	0.030196
+49.92	0.0301375
+50.04	0.0300794
+50.16	0.0300214
+50.28	0.0299637
+50.4	0.0299063
+50.52	0.0298491
+50.64	0.0297921
+50.76	0.0297354
+50.88	0.0296789
+51	0.0296227
+51.12	0.0295666
+51.24	0.0295108
+51.36	0.0294553
+51.48	0.0294
+51.6	0.0293449
+51.72	0.02929
+51.84	0.0292354
+51.96	0.029181
+52.08	0.0291268
+52.2	0.0290728
+52.32	0.029019
+52.44	0.0289655
+52.56	0.0289122
+52.68	0.0288591
+52.8	0.0288062
+52.92	0.0287535
+53.04	0.028701
+53.16	0.0286488
+53.28	0.0285968
+53.4	0.0285449
+53.52	0.0284933
+53.64	0.0284419
+53.76	0.0283906
+53.88	0.0283396
+54	0.0282888
+54.12	0.0282382
+54.24	0.0281878
+54.36	0.0281376
+54.48	0.0280875
+54.6	0.0280377
+54.72	0.0279881
+54.84	0.0279387
+54.96	0.0278894
+55.08	0.0278404
+55.2	0.0277915
+55.32	0.0277429
+55.44	0.0276944
+55.56	0.0276461
+55.68	0.0275068
+55.8	0.0274626
+55.92	0.0274185
+56.04	0.0273745
+56.16	0.0273308
+56.28	0.0272871
+56.4	0.0272437
+56.52	0.0272003
+56.64	0.0271572
+56.76	0.0271141
+56.88	0.0270712
+57	0.0270285
+57.12	0.0269859
+57.24	0.0269435
+57.36	0.0269012
+57.48	0.026859
+57.6	0.026817
+57.72	0.0267751
+57.84	0.0267334
+57.96	0.0266918
+58.08	0.0266504
+58.2	0.0266091
+58.32	0.0265679
+58.44	0.0265269
+58.56	0.026486
+58.68	0.0264453
+58.8	0.0264046
+58.92	0.0263642
+59.04	0.0263238
+59.16	0.0262836
+59.28	0.0262435
+59.4	0.0262036
+59.52	0.0261638
+59.64	0.0261241
+59.76	0.0260846
+59.88	0.0260451
+60	0.0260059
+60.12	0.0259667
+60.24	0.0259277
+60.36	0.0258888
+60.48	0.02585
+60.6	0.0258114
+60.72	0.0257728
+60.84	0.0257344
+60.96	0.0256962
+61.08	0.025658
+61.2	0.02562
+61.32	0.0255821
+61.44	0.0255443
+61.56	0.0255067
+61.68	0.0254691
+61.8	0.0254317
+61.92	0.0253944
+62.04	0.0253573
+62.16	0.0253202
+62.28	0.0252833
+62.4	0.0252465
+62.52	0.0252098
+62.64	0.0251732
+62.76	0.0251367
+62.88	0.0251004
+63	0.0250641
+63.12	0.025028
+63.24	0.024992
+63.36	0.0249561
+63.48	0.0249203
+63.6	0.0248847
+63.72	0.0248491
+63.84	0.0248137
+63.96	0.0247783
+64.08	0.0247431
+64.2	0.024708
+64.32	0.024673
+64.44	0.0246381
+64.56	0.0246033
+64.68	0.0245686
+64.8	0.0245341
+64.92	0.0244996
+65.04	0.0244653
+65.16	0.024431
+65.28	0.0243969
+65.4	0.0243628
+65.52	0.0243289
+65.64	0.0242951
+65.76	0.0242614
+65.88	0.0242278
+66	0.0241942
+66.12	0.0241608
+66.24	0.0241275
+66.36	0.0240943
+66.48	0.0240612
+66.6	0.0240282
+66.72	0.0239953
+66.84	0.0239625
+66.96	0.0239298
+67.08	0.0238972
+67.2	0.0238646
+67.32	0.0238322
+67.44	0.0237999
+67.56	0.0237677
+67.68	0.0237355
+67.8	0.0237035
+67.92	0.0236716
+68.04	0.0236397
+68.16	0.023608
+68.28	0.0235763
+68.4	0.0235448
+68.52	0.0235133
+68.64	0.0234819
+68.76	0.0234506
+68.88	0.0234195
+69	0.0233884
+69.12	0.0233574
+69.24	0.0233264
+69.36	0.0232956
+69.48	0.0232649
+69.6	0.0232342
+69.72	0.0232037
+69.84	0.0231732
+69.96	0.0231428
+70.08	0.0231125
+70.2	0.0230823
+70.32	0.0230522
+70.44	0.0230222
+70.56	0.0229922
+70.68	0.0229624
+70.8	0.0229326
+70.92	0.0229029
+71.04	0.0228733
+71.16	0.0228438
+71.28	0.0228143
+71.4	0.022785
+71.52	0.0227557
+71.64	0.0227265
+71.76	0.0226974
+71.88	0.0226684
+72	0.0226395
+72.12	0.0226106
+72.24	0.0225818
+72.36	0.0225532
+72.48	0.0225245
+72.6	0.022496
+72.72	0.0224676
+72.84	0.0224392
+72.96	0.0224109
+73.08	0.0223827
+73.2	0.0223545
+73.32	0.0223265
+73.44	0.0222985
+73.56	0.0222706
+73.68	0.0222428
+73.8	0.022215
+73.92	0.0221874
+74.04	0.0221598
+74.16	0.0221323
+74.28	0.0221048
+74.4	0.0220774
+74.52	0.0220502
+74.64	0.0220229
+74.76	0.0219958
+74.88	0.0219687
+75	0.0219417
+75.12	0.0219148
+75.24	0.021888
+75.36	0.0218612
+75.48	0.0218345
+75.6	0.0218079
+75.72	0.0217813
+75.84	0.0217548
+75.96	0.0217284
+76.08	0.0217021
+76.2	0.0216758
+76.32	0.0216496
+76.44	0.0216235
+76.56	0.0215974
+76.68	0.0215714
+76.8	0.0215455
+76.92	0.0215196
+77.04	0.0214939
+77.16	0.0214681
+77.28	0.0214425
+77.4	0.0214169
+77.52	0.0213914
+77.64	0.021366
+77.76	0.0213406
+77.88	0.0213153
+78	0.02129
+78.12	0.0212649
+78.24	0.0212398
+78.36	0.0212147
+78.48	0.0211897
+78.6	0.0211648
+78.72	0.02114
+78.84	0.0211152
+78.96	0.0210905
+79.08	0.0210658
+79.2	0.0210412
+79.32	0.0210167
+79.44	0.0209923
+79.56	0.0209679
+79.68	0.0209435
+79.8	0.0209193
+79.92	0.020895
+80.04	0.0208709
+80.16	0.0208468
+80.28	0.0208228
+80.4	0.0207988
+80.52	0.0207749
+80.64	0.0207511
+80.76	0.0207273
+80.88	0.0207036
+81	0.0206799
+81.12	0.0206563
+81.24	0.0206328
+81.36	0.0206093
+81.48	0.0205859
+81.6	0.0205626
+81.72	0.0205393
+81.84	0.020516
+81.96	0.0204928
+82.08	0.0204697
+82.2	0.0204467
+82.32	0.0204237
+82.44	0.0204007
+82.56	0.0203779
+82.68	0.020355
+82.8	0.0203551
+82.92	0.0203323
+83.04	0.0203096
+83.16	0.0202869
+83.28	0.0202643
+83.4	0.0202417
+83.52	0.0202192
+83.64	0.0201967
+83.76	0.0201743
+83.88	0.020152
+84	0.0201297
+84.12	0.0201075
+84.24	0.0200853
+84.36	0.0200632
+84.48	0.0200411
+84.6	0.0200191
+84.72	0.0199971
+84.84	0.0199752
+84.96	0.0199534
+85.08	0.0199316
+85.2	0.0199098
+85.32	0.0198881
+85.44	0.0198665
+85.56	0.0198449
+85.68	0.0198234
+85.8	0.0198019
+85.92	0.0197804
+86.04	0.0197591
+86.16	0.0197377
+86.28	0.0197164
+86.4	0.0196952
+86.52	0.019674
+86.64	0.0196529
+86.76	0.0196318
+86.88	0.0196108
+87	0.0195899
+87.12	0.0195689
+87.24	0.0195481
+87.36	0.0195272
+87.48	0.0195065
+87.6	0.0194857
+87.72	0.0194651
+87.84	0.0194444
+87.96	0.0194239
+88.08	0.0194033
+88.2	0.0193828
+88.32	0.0193624
+88.44	0.019342
+88.56	0.0193217
+88.68	0.0193014
+88.8	0.0192812
+88.92	0.019261
+89.04	0.0192408
+89.16	0.0192207
+89.28	0.0192007
+89.4	0.0191807
+89.52	0.0191607
+89.64	0.0191408
+89.76	0.019121
+89.88	0.0191011
+90	0.0190814
+90.12	0.0190616
+90.24	0.019042
+90.36	0.0190223
+90.48	0.0190027
+90.6	0.0189832
+90.72	0.0189637
+90.84	0.0189442
+90.96	0.0189248
+91.08	0.0189055
+91.2	0.0188861
+91.32	0.0188669
+91.44	0.0188476
+91.56	0.0188284
+91.68	0.0188093
+91.8	0.0187902
+91.92	0.0187711
+92.04	0.0187521
+92.16	0.0187332
+92.28	0.0187142
+92.4	0.0186953
+92.52	0.0186765
+92.64	0.0186577
+92.76	0.0186389
+92.88	0.0186202
+93	0.0186016
+93.12	0.0185829
+93.24	0.0185643
+93.36	0.0185458
+93.48	0.0185273
+93.6	0.0185088
+93.72	0.0184904
+93.84	0.018472
+93.96	0.0184537
+94.08	0.0184354
+94.2	0.0184171
+94.32	0.0183989
+94.44	0.0183807
+94.56	0.0183626
+94.68	0.0183445
+94.8	0.0183264
+94.92	0.0183084
+95.04	0.0182904
+95.16	0.0182725
+95.28	0.0182546
+95.4	0.0182367
+95.52	0.0182189
+95.64	0.0182011
+95.76	0.0181834
+95.88	0.0181657
+96	0.018148
+96.12	0.0181304
+96.24	0.0181128
+96.36	0.0180953
+96.48	0.0180778
+96.6	0.0180603
+96.72	0.0180429
+96.84	0.0180255
+96.96	0.0180081
+97.08	0.0179908
+97.2	0.0179735
+97.32	0.0179563
+97.44	0.017939
+97.56	0.0179219
+97.68	0.0179047
+97.8	0.0178876
+97.92	0.0178706
+98.04	0.0178536
+98.16	0.0178366
+98.28	0.0178196
+98.4	0.0178027
+98.52	0.0177858
+98.64	0.017769
+98.76	0.0177522
+98.88	0.0177354
+99	0.0177187
+99.12	0.017702
+99.24	0.0176853
+99.36	0.0176687
+99.48	0.0176521
+99.6	0.0176355
+99.72	0.017619
+99.84	0.0176025
+99.96	0.0175861
+100.08	0.0175696
+100.2	0.0175532
+100.32	0.0175369
+100.44	0.0175206
+100.56	0.0175043
+100.68	0.017488
+100.8	0.0174718
+100.92	0.0174557
+101.04	0.0174395
+101.16	0.0174234
+101.28	0.0174073
+101.4	0.0173913
+101.52	0.0173753
+101.64	0.0173593
+101.76	0.0173433
+101.88	0.0173274
+102	0.0173115
+102.12	0.0172957
+102.24	0.0172799
+102.36	0.0172641
+102.48	0.0172483
+102.6	0.0172326
+102.72	0.0172169
+102.84	0.0172013
+102.96	0.0171857
+103.08	0.0171701
+103.2	0.0171545
+103.32	0.017139
+103.44	0.0171235
+103.56	0.0171081
+103.68	0.0170926
+103.8	0.0170772
+103.92	0.0170619
+104.04	0.0170465
+104.16	0.0170312
+104.28	0.0170159
+104.4	0.0170007
+104.52	0.0169855
+104.64	0.0169703
+104.76	0.0169552
+104.88	0.01694
+105	0.0169249
+105.12	0.0169099
+105.24	0.0168949
+105.36	0.0168799
+105.48	0.0168649
+105.6	0.01685
+105.72	0.016835
+105.84	0.0168202
+105.96	0.0168053
+106.08	0.0167905
+106.2	0.0167757
+106.32	0.0167609
+106.44	0.0167462
+106.56	0.0167315
+106.68	0.0167168
+106.8	0.0167022
+106.92	0.0166876
+107.04	0.016673
+107.16	0.0166584
+107.28	0.0166439
+107.4	0.0166294
+107.52	0.0166149
+107.64	0.0166005
+107.76	0.0165861
+107.88	0.0165717
+108	0.0165573
+108.12	0.016543
+108.24	0.0165287
+108.36	0.0165144
+108.48	0.0165002
+108.6	0.016486
+108.72	0.0164718
+108.84	0.0164576
+108.96	0.0164435
+109.08	0.0164294
+109.2	0.0164153
+109.32	0.0164013
+109.44	0.0163872
+109.56	0.0163732
+109.68	0.0163593
+109.8	0.0163453
+109.92	0.0163314
+110.04	0.0163175
+110.16	0.0163037
+110.28	0.0162898
+110.4	0.016276
+110.52	0.0162623
+110.64	0.0162485
+110.76	0.0162348
+110.88	0.0162211
+111	0.0162074
+111.12	0.0161937
+111.24	0.0161801
+111.36	0.0161665
+111.48	0.016153
+111.6	0.0161394
+111.72	0.0161259
+111.84	0.0161124
+111.96	0.0160989
+112.08	0.0160855
+112.2	0.0160721
+112.32	0.0160587
+112.44	0.0160453
+112.56	0.016032
+112.68	0.0160187
+112.8	0.0160054
+112.92	0.0159921
+113.04	0.0159789
+113.16	0.0159657
+113.28	0.0159525
+113.4	0.0159393
+113.52	0.0159262
+113.64	0.015913
+113.76	0.0158999
+113.88	0.0158869
+114	0.0158738
+114.12	0.0158608
+114.24	0.0158478
+114.36	0.0158349
+114.48	0.0158219
+114.6	0.015809
+114.72	0.0157961
+114.84	0.0157832
+114.96	0.0157704
+115.08	0.0157575
+115.2	0.0157447
+115.32	0.0157319
+115.44	0.0157192
+115.56	0.0157065
+115.68	0.0156938
+115.8	0.0156811
+115.92	0.0156684
+116.04	0.0156558
+116.16	0.0156431
+116.28	0.0156306
+116.4	0.015618
+116.52	0.0156054
+116.64	0.0155929
+116.76	0.0155804
+116.88	0.0155679
+117	0.0155555
+117.12	0.015543
+117.24	0.0155306
+117.36	0.0155182
+117.48	0.015517
+117.6	0.0155047
+117.72	0.0154923
+117.84	0.01548
+117.96	0.0154677
+118.08	0.0154554
+118.2	0.0154431
+118.32	0.0154309
+118.44	0.0154187
+118.56	0.0154065
+118.68	0.0153943
+118.8	0.0153822
+118.92	0.01537
+119.04	0.0153579
+119.16	0.0153459
+119.28	0.0153338
+119.4	0.0153217
+119.52	0.0153097
+119.64	0.0152977
+119.76	0.0152857
+119.88	0.0152738
+120	0.0152619
+120.12	0.0152499
+120.24	0.015238
+120.36	0.0152262
+120.48	0.0152143
+120.6	0.0152025
+120.72	0.0151907
+120.84	0.0151789
+120.96	0.0151671
+121.08	0.0151554
+121.2	0.0151437
+121.32	0.015132
+121.44	0.0151203
+121.56	0.0151086
+121.68	0.015097
+121.8	0.0150853
+121.92	0.0150737
+122.04	0.0150622
+122.16	0.0150506
+122.28	0.015039
+122.4	0.0150275
+122.52	0.015016
+122.64	0.0150045
+122.76	0.0149931
+122.88	0.0149816
+123	0.0149702
+123.12	0.0149588
+123.24	0.0149474
+123.36	0.0149361
+123.48	0.0149247
+123.6	0.0149134
+123.72	0.0149021
+123.84	0.0148908
+123.96	0.0148795
+124.08	0.0148683
+124.2	0.0148571
+124.32	0.0148459
+124.44	0.0148347
+124.56	0.0148235
+124.68	0.0148124
+124.8	0.0148012
+124.92	0.0147901
+125.04	0.014779
+125.16	0.014768
+125.28	0.0147569
+125.4	0.0147459
+125.52	0.0147349
+125.64	0.0147239
+125.76	0.0147129
+125.88	0.0147019
+126	0.014691
+126.12	0.0146801
+126.24	0.0146691
+126.36	0.0146583
+126.48	0.0146474
+126.6	0.0146365
+126.72	0.0146257
+126.84	0.0146149
+126.96	0.0146041
+127.08	0.0145933
+127.2	0.0145826
+127.32	0.0145718
+127.44	0.0145611
+127.56	0.0145504
+127.68	0.0145397
+127.8	0.0145291
+127.92	0.0145184
+128.04	0.0145078
+128.16	0.0144972
+128.28	0.0144866
+128.4	0.014476
+128.52	0.0144654
+128.64	0.0144549
+128.76	0.0144443
+128.88	0.0144338
+129	0.0144233
+129.12	0.0144129
+129.24	0.0144024
+129.36	0.014392
+129.48	0.0143816
+129.6	0.0143711
+129.72	0.0143608
+129.84	0.0143504
+129.96	0.01434
+130.08	0.0143297
+130.2	0.0143194
+130.32	0.0143091
+130.44	0.0142988
+130.56	0.0142885
+130.68	0.0142783
+130.8	0.014268
+130.92	0.0142578
+131.04	0.0142476
+131.16	0.0142374
+131.28	0.0142273
+131.4	0.0142171
+131.52	0.014207
+131.64	0.0141969
+131.76	0.0141868
+131.88	0.0141767
+132	0.0141666
+132.12	0.0141566
+132.24	0.0141465
+132.36	0.0141365
+132.48	0.0141265
+132.6	0.0141165
+132.72	0.0141065
+132.84	0.0140966
+132.96	0.0140866
+133.08	0.0140767
+133.2	0.0140668
+133.32	0.0140569
+133.44	0.014047
+133.56	0.0140372
+133.68	0.0140273
+133.8	0.0140175
+133.92	0.0140077
+134.04	0.0139979
+134.16	0.0139881
+134.28	0.0139784
+134.4	0.0139686
+134.52	0.0139589
+134.64	0.0139491
+134.76	0.0139394
+134.88	0.0139298
+135	0.0139201
+135.12	0.0139104
+135.24	0.0139008
+135.36	0.0138912
+135.48	0.0138815
+135.6	0.013872
+135.72	0.0138624
+135.84	0.0138528
+135.96	0.0138433
+136.08	0.0138337
+136.2	0.0138242
+136.32	0.0138147
+136.44	0.0138052
+136.56	0.0137957
+136.68	0.0137863
+136.8	0.0137768
+136.92	0.0137674
+137.04	0.013758
+137.16	0.0137486
+137.28	0.0137392
+137.4	0.0137298
+137.52	0.0137205
+137.64	0.0137111
+137.76	0.0137018
+137.88	0.0136925
+138	0.0136832
+138.12	0.0136739
+138.24	0.0136647
+138.36	0.0136554
+138.48	0.0136462
+138.6	0.0136369
+138.72	0.0136277
+138.84	0.0136185
+138.96	0.0136093
+139.08	0.0136002
+139.2	0.013591
+139.32	0.0135819
+139.44	0.0135728
+139.56	0.0135637
+139.68	0.0135546
+139.8	0.0135455
+139.92	0.0135364
+140.04	0.0135273
+140.16	0.0135183
+140.28	0.0135093
+140.4	0.0135003
+140.52	0.0134913
+140.64	0.0134823
+140.76	0.0134733
+140.88	0.0134643
+141	0.0134554
+141.12	0.0134465
+141.24	0.0134376
+141.36	0.0134286
+141.48	0.0134198
+141.6	0.0134109
+141.72	0.013402
+141.84	0.0133932
+141.96	0.0133843
+142.08	0.0133755
+142.2	0.0133667
+142.32	0.0133579
+142.44	0.0133491
+142.56	0.0133403
+142.68	0.0133316
+142.8	0.0133228
+142.92	0.0133141
+143.04	0.0133054
+143.16	0.0132967
+143.28	0.013288
+143.4	0.0132793
+143.52	0.0132707
+143.64	0.013262
+143.76	0.0132534
+143.88	0.0132447
+144	0.0132361
+144.12	0.0132275
+144.24	0.0132189
+144.36	0.0132104
+144.48	0.0132018
+144.6	0.0131933
+144.72	0.0131847
+144.84	0.0131762
+144.96	0.0131677
+145.08	0.0131592
+145.2	0.0131507
+145.32	0.0131422
+145.44	0.0131338
+145.56	0.0131253
+145.68	0.0131169
+145.8	0.0131085
+145.92	0.0131001
+146.04	0.0130917
+146.16	0.0130833
+146.28	0.0130749
+146.4	0.0130665
+146.52	0.0130582
+146.64	0.0130499
+146.76	0.0130415
+146.88	0.0130332
+147	0.0130249
+147.12	0.0130166
+147.24	0.0130084
+147.36	0.0130001
+147.48	0.0129918
+147.6	0.0129836
+147.72	0.0129754
+147.84	0.0129672
+147.96	0.012959
+148.08	0.0129508
+148.2	0.0129426
+148.32	0.0129344
+148.44	0.0129263
+148.56	0.0129181
+148.68	0.01291
+148.8	0.0129019
+148.92	0.0128938
+149.04	0.0128857
+149.16	0.0128776
+149.28	0.0128695
+149.4	0.0128614
+149.52	0.0128534
+149.64	0.0128454
+149.76	0.0128373
+149.88	0.0128293
+150	0.0128213
+150.12	0.0128133
+150.24	0.0128053
+150.36	0.0127974
+150.48	0.0127894
+150.6	0.0127815
+150.72	0.0127735
+150.84	0.0127656
+150.96	0.0127577
+151.08	0.0127498
+151.2	0.0127419
+151.32	0.012734
+151.44	0.0127262
+151.56	0.0127183
+151.68	0.0127105
+151.8	0.0127026
+151.92	0.0126948
+152.04	0.012687
+152.16	0.0126792
+152.28	0.0126714
+152.4	0.0126636
+152.52	0.0126559
+152.64	0.0126481
+152.76	0.0126404
+152.88	0.0126326
+153	0.0126249
+153.12	0.0126172
+153.24	0.0126095
+153.36	0.0126018
+153.48	0.0125941
+153.6	0.0125864
+153.72	0.0125788
+153.84	0.0125711
+153.96	0.0125635
+154.08	0.0125559
+154.2	0.0125483
+154.32	0.0125407
+154.44	0.0125331
+154.56	0.0125255
+154.68	0.0125179
+154.8	0.0125103
+154.92	0.0125028
+155.04	0.0124952
+155.16	0.0124877
+155.28	0.0124802
+155.4	0.0124727
+155.52	0.0124652
+155.64	0.0124577
+155.76	0.0124502
+155.88	0.0124428
+156	0.0124353
+156.12	0.0124278
+156.24	0.0124204
+156.36	0.012413
+156.48	0.0124056
+156.6	0.0123982
+156.72	0.0123908
+156.84	0.0123834
+156.96	0.012376
+157.08	0.0123686
+157.2	0.0123613
+157.32	0.0123539
+157.44	0.0123466
+157.56	0.0123393
+157.68	0.012332
+157.8	0.0123247
+157.92	0.0123174
+158.04	0.0123101
+158.16	0.0123028
+158.28	0.0122955
+158.4	0.0122883
+158.52	0.012281
+158.64	0.0122738
+158.76	0.0122666
+158.88	0.0122594
+159	0.0122521
+159.12	0.0122449
+159.24	0.0122378
+159.36	0.0122306
+159.48	0.0122234
+159.6	0.0122163
+159.72	0.0122091
+159.84	0.012202
+159.96	0.0121948
+160.08	0.0121877
+160.2	0.0121806
+160.32	0.0121735
+160.44	0.0121664
+160.56	0.0121593
+160.68	0.0121523
+160.8	0.0121452
+160.92	0.0121382
+161.04	0.0121311
+161.16	0.0121241
+161.28	0.0121171
+161.4	0.0121101
+161.52	0.012103
+161.64	0.0120961
+161.76	0.0120891
+161.88	0.0120821
+162	0.0120751
+162.12	0.0120682
+162.24	0.0120612
+162.36	0.0120543
+162.48	0.0120474
+162.6	0.0120404
+162.72	0.0120335
+162.84	0.0120266
+162.96	0.0120197
+163.08	0.0120128
+163.2	0.012006
+163.32	0.0119991
+163.44	0.0119922
+163.56	0.0119854
+163.68	0.0119786
+163.8	0.0119717
+163.92	0.0119649
+164.04	0.0119581
+164.16	0.0119513
+164.28	0.0119445
+164.4	0.0119377
+164.52	0.011931
+164.64	0.0119242
+164.76	0.0119174
+164.88	0.0119107
+165	0.0119039
+165.12	0.0118972
+165.24	0.0118905
+165.36	0.0118838
+165.48	0.0118771
+165.6	0.0118704
+165.72	0.0118637
+165.84	0.011857
+165.96	0.0118504
+166.08	0.0118437
+166.2	0.0118371
+166.32	0.0118304
+166.44	0.0118238
+166.56	0.0118172
+166.68	0.0118105
+166.8	0.0118039
+166.92	0.0117973
+167.04	0.0117907
+167.16	0.0117842
+167.28	0.0117776
+167.4	0.011771
+167.52	0.0117645
+167.64	0.0117579
+167.76	0.0117514
+167.88	0.0117449
+168	0.0117383
+168.12	0.0117318
+168.24	0.0117253
+168.36	0.0117188
+168.48	0.0117123
+168.6	0.0117058
+168.72	0.0116994
+168.84	0.0116929
+168.96	0.0116865
+169.08	0.01168
+169.2	0.0116736
+169.32	0.0116671
+169.44	0.0116607
+169.56	0.0116543
+169.68	0.0116479
+169.8	0.0116415
+169.92	0.0116351
+170.04	0.0116287
+170.16	0.0116224
+170.28	0.011616
+170.4	0.0116096
+170.52	0.0116033
+170.64	0.0115969
+170.76	0.0115906
+170.88	0.0115843
+171	0.011578
+171.12	0.0115717
+171.24	0.0115679
+171.36	0.0115616
+171.48	0.0115554
+171.6	0.0115491
+171.72	0.0115428
+171.84	0.0115366
+171.96	0.0115303
+172.08	0.0115241
+172.2	0.0115178
+172.32	0.0115116
+172.44	0.0115054
+172.56	0.0114992
+172.68	0.011493
+172.8	0.0114868
+172.92	0.0114806
+173.04	0.0114744
+173.16	0.0114682
+173.28	0.0114621
+173.4	0.0114559
+173.52	0.0114498
+173.64	0.0114436
+173.76	0.0114375
+173.88	0.0114314
+174	0.0114253
+174.12	0.0114192
+174.24	0.011413
+174.36	0.011407
+174.48	0.0114009
+174.6	0.0113948
+174.72	0.0113887
+174.84	0.0113826
+174.96	0.0113766
+175.08	0.0113705
+175.2	0.0113645
+175.32	0.0113585
+175.44	0.0113524
+175.56	0.0113464
+175.68	0.0113404
+175.8	0.0113344
+175.92	0.0113284
+176.04	0.0113224
+176.16	0.0113164
+176.28	0.0113105
+176.4	0.0113045
+176.52	0.0112985
+176.64	0.0112926
+176.76	0.0112866
+176.88	0.0112807
+177	0.0112748
+177.12	0.0112688
+177.24	0.0112629
+177.36	0.011257
+177.48	0.0112511
+177.6	0.0112452
+177.72	0.0112393
+177.84	0.0112334
+177.96	0.0112276
+178.08	0.0112217
+178.2	0.0112158
+178.32	0.01121
+178.44	0.0112041
+178.56	0.0111983
+178.68	0.0111925
+178.8	0.0111866
+178.92	0.0111808
+179.04	0.011175
+179.16	0.0111692
+179.28	0.0111634
+179.4	0.0111576
+179.52	0.0111519
+179.64	0.0111461
+179.76	0.0111403
+179.88	0.0111345
+180	0.0111288
+180.12	0.011123
+180.24	0.0111173
+180.36	0.0111116
+180.48	0.0111058
+180.6	0.0111001
+180.72	0.0110944
+180.84	0.0110887
+180.96	0.011083
+181.08	0.0110773
+181.2	0.0110716
+181.32	0.011066
+181.44	0.0110603
+181.56	0.0110546
+181.68	0.011049
+181.8	0.0110433
+181.92	0.0110377
+182.04	0.011032
+182.16	0.0110264
+182.28	0.0110208
+182.4	0.0110152
+182.52	0.0110095
+182.64	0.0110039
+182.76	0.0109983
+182.88	0.0109927
+183	0.0109872
+183.12	0.0109816
+183.24	0.010976
+183.36	0.0109705
+183.48	0.0109649
+183.6	0.0109593
+183.72	0.0109538
+183.84	0.0109483
+183.96	0.0109427
+184.08	0.0109372
+184.2	0.0109317
+184.32	0.0109262
+184.44	0.0109207
+184.56	0.0109152
+184.68	0.0109097
+184.8	0.0109042
+184.92	0.0108987
+185.04	0.0108932
+185.16	0.0108878
+185.28	0.0108823
+185.4	0.0108769
+185.52	0.0108714
+185.64	0.010866
+185.76	0.0108605
+185.88	0.0108551
+186	0.0108497
+186.12	0.0108443
+186.24	0.0108389
+186.36	0.0108334
+186.48	0.0108281
+186.6	0.0108227
+186.72	0.0108173
+186.84	0.0108119
+186.96	0.0108065
+187.08	0.0108012
+187.2	0.0107958
+187.32	0.0107904
+187.44	0.0107851
+187.56	0.0107798
+187.68	0.0107744
+187.8	0.0107691
+187.92	0.0107638
+188.04	0.0107585
+188.16	0.0107531
+188.28	0.0107478
+188.4	0.0107425
+188.52	0.0107373
+188.64	0.010732
+188.76	0.0107267
+188.88	0.0107214
+189	0.0107161
+189.12	0.0107109
+189.24	0.0107056
+189.36	0.0107004
+189.48	0.0106951
+189.6	0.0106899
+189.72	0.0106847
+189.84	0.0106794
+189.96	0.0106742
+190.08	0.010669
+190.2	0.0106638
+190.32	0.0106586
+190.44	0.0106534
+190.56	0.0106482
+190.68	0.010643
+190.8	0.0106379
+190.92	0.0106327
+191.04	0.0106275
+191.16	0.0106224
+191.28	0.0106172
+191.4	0.0106121
+191.52	0.0106069
+191.64	0.0106018
+191.76	0.0105966
+191.88	0.0105915
+192	0.0105864
+192.12	0.0105813
+192.24	0.0105762
+192.36	0.0105711
+192.48	0.010566
+192.6	0.0105609
+192.72	0.0105558
+192.84	0.0105507
+192.96	0.0105457
+193.08	0.0105406
+193.2	0.0105355
+193.32	0.0105305
+193.44	0.0105254
+193.56	0.0105204
+193.68	0.0105153
+193.8	0.0105103
+193.92	0.0105053
+194.04	0.0105003
+194.16	0.0104952
+194.28	0.0104902
+194.4	0.0104852
+194.52	0.0104802
+194.64	0.0104752
+194.76	0.0104702
+194.88	0.0104653
+195	0.0104603
+195.12	0.0104553
+195.24	0.0104503
+195.36	0.0104454
+195.48	0.0104404
+195.6	0.0104355
+195.72	0.0104305
+195.84	0.0104256
+195.96	0.0104207
+196.08	0.0104157
+196.2	0.0104108
+196.32	0.0104059
+196.44	0.010401
+196.56	0.0103961
+196.68	0.0103912
+196.8	0.0103863
+196.92	0.0103814
+197.04	0.0103765
+197.16	0.0103716
+197.28	0.0103668
+197.4	0.0103619
+197.52	0.010357
+197.64	0.0103522
+197.76	0.0103473
+197.88	0.0103425
+198	0.0103376
+198.12	0.0103328
+198.24	0.010328
+198.36	0.0103231
+198.48	0.0103183
+198.6	0.0103135
+198.72	0.0103087
+198.84	0.0103039
+198.96	0.0102991
+199.08	0.0102943
+199.2	0.0102895
+199.32	0.0102847
+199.44	0.01028
+199.56	0.0102752
+199.68	0.0102704
+199.8	0.0102656
+199.92	0.0102609
+200.04	0.0102561
+200.16	0.0102514
+200.28	0.0102467
+200.4	0.0102419
+200.52	0.0102372
+200.64	0.0102325
+200.76	0.0102277
+200.88	0.010223
+201	0.0102183
+201.12	0.0102136
+201.24	0.0102089
+201.36	0.0102042
+201.48	0.0101995
+201.6	0.0101948
+201.72	0.0101902
+201.84	0.0101855
+201.96	0.0101808
+202.08	0.0101761
+202.2	0.0101715
+202.32	0.0101668
+202.44	0.0101622
+202.56	0.0101575
+202.68	0.0101529
+202.8	0.0101483
+202.92	0.0101436
+203.04	0.010139
+203.16	0.0101344
+203.28	0.0101298
+203.4	0.0101252
+203.52	0.0101206
+203.64	0.010116
+203.76	0.0101114
+203.88	0.0101068
+204	0.0101022
+204.12	0.0100976
+204.24	0.010093
+204.36	0.0100885
+204.48	0.0100839
+204.6	0.0100793
+204.72	0.0100748
+204.84	0.0100702
+204.96	0.0100657
+205.08	0.0100611
+205.2	0.0100566
+205.32	0.0100521
+205.44	0.0100475
+205.56	0.010043
+205.68	0.0100385
+205.8	0.010034
+205.92	0.0100295
+206.04	0.010025
+206.16	0.0100205
+206.28	0.010016
+206.4	0.0100115
+206.52	0.010007
+206.64	0.0100025
+206.76	0.00999805
+206.88	0.00999358
+207	0.00998911
+207.12	0.00998465
+207.24	0.0099802
+207.36	0.00997574
+207.48	0.0099713
+207.6	0.00996686
+207.72	0.00996242
+207.84	0.00995799
+207.96	0.00995356
+208.08	0.00994913
+208.2	0.00994471
+208.32	0.0099403
+208.44	0.00993589
+208.56	0.00993149
+208.68	0.00992709
+208.8	0.00992269
+208.92	0.0099183
+209.04	0.00991391
+209.16	0.00990953
+209.28	0.00990515
+209.4	0.00990078
+209.52	0.00989641
+209.64	0.00989205
+209.76	0.00988769
+209.88	0.00988333
+210	0.00987898
+210.12	0.00987464
+210.24	0.0098703
+210.36	0.00986596
+210.48	0.00986163
+210.6	0.0098573
+210.72	0.00985298
+210.84	0.00984866
+210.96	0.00984435
+211.08	0.00984004
+211.2	0.00983573
+211.32	0.00983143
+211.44	0.00982713
+211.56	0.00982284
+211.68	0.00981855
+211.8	0.00981427
+211.92	0.00980999
+212.04	0.00980572
+212.16	0.00980145
+212.28	0.00979718
+212.4	0.00979292
+212.52	0.00978866
+212.64	0.00978441
+212.76	0.00978016
+212.88	0.00977592
+213	0.00977168
+213.12	0.00976745
+213.24	0.00976322
+213.36	0.00975899
+213.48	0.00975477
+213.6	0.00975055
+213.72	0.00974634
+213.84	0.00974213
+213.96	0.00973792
+214.08	0.00973372
+214.2	0.00972953
+214.32	0.00972533
+214.44	0.00972115
+214.56	0.00971696
+214.68	0.00971278
+214.8	0.00970861
+214.92	0.00970444
+215.04	0.00970027
+215.16	0.00969611
+215.28	0.00969195
+215.4	0.0096878
+215.52	0.00968365
+215.64	0.0096795
+215.76	0.00967536
+215.88	0.00967123
+216	0.00966709
+216.12	0.00966296
+216.24	0.00965884
+216.36	0.00965472
+216.48	0.0096506
+216.6	0.00964649
+216.72	0.00964238
+216.84	0.00963828
+216.96	0.00963418
+217.08	0.00963009
+217.2	0.00962599
+217.32	0.00962191
+217.44	0.00961782
+217.56	0.00961375
+217.68	0.00960967
+217.8	0.0096056
+217.92	0.00960153
+218.04	0.00959747
+218.16	0.00959341
+218.28	0.00958936
+218.4	0.00958531
+218.52	0.00958126
+218.64	0.00957722
+218.76	0.00957318
+218.88	0.00956915
+219	0.00956512
+219.12	0.0095611
+219.24	0.00955708
+219.36	0.00955306
+219.48	0.00954904
+219.6	0.00954504
+219.72	0.00954103
+219.84	0.00953703
+219.96	0.00953303
+220.08	0.00952904
+220.2	0.00952505
+220.32	0.00952107
+220.44	0.00951708
+220.56	0.00951311
+220.68	0.00950913
+220.8	0.00950516
+220.92	0.0095012
+221.04	0.00949724
+221.16	0.00949328
+221.28	0.00948933
+221.4	0.00948538
+221.52	0.00948143
+221.64	0.00947749
+221.76	0.00947355
+221.88	0.00946962
+222	0.00946569
+222.12	0.00946176
+222.24	0.00945784
+222.36	0.00945392
+222.48	0.00945
+222.6	0.00944609
+222.72	0.00944218
+222.84	0.00943828
+222.96	0.00943438
+223.08	0.00943049
+223.2	0.00942659
+223.32	0.00942271
+223.44	0.00941882
+223.56	0.00941494
+223.68	0.00941106
+223.8	0.00940719
+223.92	0.00940332
+224.04	0.00939946
+224.16	0.00939559
+224.28	0.00939174
+224.4	0.00938788
+224.52	0.00938403
+224.64	0.00938019
+224.76	0.00937634
+224.88	0.0093725
+225	0.00936867
+225.12	0.00936484
+225.24	0.00936101
+225.36	0.00935719
+225.48	0.00935336
+225.6	0.00934955
+225.72	0.00934573
+225.84	0.00934193
+225.96	0.00933812
+226.08	0.00933432
+226.2	0.00933052
+226.32	0.00932673
+226.44	0.00932293
+226.56	0.00931915
+226.68	0.00931536
+226.8	0.00931158
+226.92	0.00930781
+227.04	0.00930403
+227.16	0.00930027
+227.28	0.0092965
+227.4	0.00929274
+227.52	0.00928898
+227.64	0.00928523
+227.76	0.00928147
+227.88	0.00927773
+228	0.00927398
+228.12	0.00927024
+228.24	0.00926651
+228.36	0.00926277
+228.48	0.00925904
+228.6	0.00925532
+228.72	0.0092516
+228.84	0.00924788
+228.96	0.00924416
+229.08	0.00924045
+229.2	0.00923674
+229.32	0.00923304
+229.44	0.00922934
+229.56	0.00922564
+229.68	0.00922195
+229.8	0.00921826
+229.92	0.00921457
+230.04	0.00921089
+230.16	0.00920721
+230.28	0.00920353
+230.4	0.00919986
+230.52	0.00919619
+230.64	0.00919252
+230.76	0.00918886
+230.88	0.0091852
+231	0.00918154
+231.12	0.00917789
+231.24	0.00917424
+231.36	0.0091706
+231.48	0.00916696
+231.6	0.00916332
+231.72	0.00915968
+231.84	0.00915605
+231.96	0.00915243
+232.08	0.0091488
+232.2	0.00914518
+232.32	0.00914156
+232.44	0.00913795
+232.56	0.00913434
+232.68	0.00913073
+232.8	0.00912713
+232.92	0.00912352
+233.04	0.00911993
+233.16	0.00911633
+233.28	0.00911274
+233.4	0.00910916
+233.52	0.00910557
+233.64	0.00910199
+233.76	0.00909842
+233.88	0.00909484
+234	0.00909127
+234.12	0.0090877
+234.24	0.00908414
+234.36	0.00908058
+234.48	0.00907702
+234.6	0.00907347
+234.72	0.00906992
+234.84	0.00906637
+234.96	0.00906283
+235.08	0.00905929
+235.2	0.00905575
+235.32	0.00905222
+235.44	0.00904869
+235.56	0.00904516
+235.68	0.00904164
+235.8	0.00903812
+235.92	0.0090346
+236.04	0.00903108
+236.16	0.00902757
+236.28	0.00902407
+236.4	0.00902056
+236.52	0.00901706
+236.64	0.00901356
+236.76	0.00901007
+236.88	0.00900658
+237	0.00900309
+237.12	0.0089996
+237.24	0.00899612
+237.36	0.00899264
+237.48	0.00898917
+237.6	0.00898569
+237.72	0.00898223
+237.84	0.00897876
+237.96	0.0089753
+238.08	0.00897184
+238.2	0.00896838
+238.32	0.00896493
+238.44	0.00896148
+238.56	0.00895803
+238.68	0.00895459
+238.8	0.00895115
+238.92	0.00894771
+239.04	0.00894428
+239.16	0.00894085
+239.28	0.00893742
+239.4	0.008934
+239.52	0.00893057
+239.64	0.00892716
+239.76	0.00892374
+239.88	0.00892033
+240	0.00891692
+240.12	0.00891351
+240.24	0.00891011
+240.36	0.00890671
+240.48	0.00890332
+240.6	0.00889992
+240.72	0.00889653
+240.84	0.00889314
+240.96	0.00888976
+241.08	0.00888638
+241.2	0.008883
+241.32	0.00887963
+241.44	0.00887626
+241.56	0.00887289
+241.68	0.00886952
+241.8	0.00886616
+241.92	0.0088628
+242.04	0.00885944
+242.16	0.00885609
+242.28	0.00885274
+242.4	0.00884939
+242.52	0.00884605
+242.64	0.00884271
+242.76	0.00883937
+242.88	0.00883603
+243	0.0088327
+243.12	0.00882937
+243.24	0.00882604
+243.36	0.00882272
+243.48	0.0088194
+243.6	0.00881608
+243.72	0.00881277
+243.84	0.00880946
+243.96	0.00880615
+244.08	0.00880284
+244.2	0.00879954
+244.32	0.00879624
+244.44	0.00879295
+244.56	0.00878965
+244.68	0.00878636
+244.8	0.00878307
+244.92	0.00877979
+245.04	0.00877651
+245.16	0.00877323
+245.28	0.00876995
+245.4	0.00876668
+245.52	0.00876341
+245.64	0.00876014
+245.76	0.00875688
+245.88	0.00875362
+246	0.00875036
+246.12	0.0087471
+246.24	0.00874385
+246.36	0.0087406
+246.48	0.00873735
+246.6	0.00873411
+246.72	0.00873087
+246.84	0.00872763
+246.96	0.0087244
+247.08	0.00872116
+247.2	0.00871793
+247.32	0.00871471
+247.44	0.00871148
+247.56	0.00870826
+247.68	0.00870505
+247.8	0.00870183
+247.92	0.00869862
+248.04	0.00869541
+248.16	0.0086922
+248.28	0.008689
+248.4	0.0086858
+248.52	0.0086826
+248.64	0.0086794
+248.76	0.00867621
+248.88	0.00867302
+249	0.00866984
+249.12	0.00866665
+249.24	0.00866347
+249.36	0.00866029
+249.48	0.00865712
+249.6	0.00865394
+249.72	0.00865077
+249.84	0.00864761
+249.96	0.00864444
+250.08	0.00864128
+250.2	0.00863812
+250.32	0.00863497
+250.44	0.00863181
+250.56	0.00862866
+250.68	0.00862551
+250.8	0.00862237
+250.92	0.00861923
+251.04	0.00861609
+251.16	0.00861295
+251.28	0.00860982
+251.4	0.00860668
+251.52	0.00860356
+251.64	0.00860043
+251.76	0.00859731
+251.88	0.00859419
+252	0.00859107
+252.12	0.00858795
+252.24	0.00858484
+252.36	0.00858173
+252.48	0.00857862
+252.6	0.00857552
+252.72	0.00857242
+252.84	0.00856932
+252.96	0.00856622
+253.08	0.00856313
+253.2	0.00856004
+253.32	0.00855695
+253.44	0.00855387
+253.56	0.00855078
+253.68	0.0085477
+253.8	0.00854463
+253.92	0.00854155
+254.04	0.00853848
+254.16	0.00853541
+254.28	0.00853234
+254.4	0.00852928
+254.52	0.00852622
+254.64	0.00852316
+254.76	0.0085201
+254.88	0.00851705
+255	0.008514
+255.12	0.00851095
+255.24	0.00850791
+255.36	0.00850486
+255.48	0.00850182
+255.6	0.00849879
+255.72	0.00849575
+255.84	0.00849272
+255.96	0.00848969
+256.08	0.00848666
+256.2	0.00848364
+256.32	0.00848061
+256.44	0.00847759
+256.56	0.00847458
+256.68	0.00847156
+256.8	0.00846855
+256.92	0.00846554
+257.04	0.00846254
+257.16	0.00845953
+257.28	0.00845653
+257.4	0.00845353
+257.52	0.00845053
+257.64	0.00844754
+257.76	0.00844455
+257.88	0.00844156
+258	0.00843857
+258.12	0.00843559
+258.24	0.00843261
+258.36	0.00842963
+258.48	0.00842666
+258.6	0.00842368
+258.72	0.00842071
+258.84	0.00841774
+258.96	0.00841478
+259.08	0.00841181
+259.2	0.00840885
+259.32	0.00840589
+259.44	0.00840294
+259.56	0.00839999
+259.68	0.00839703
+259.8	0.00839409
+259.92	0.00839114
+260.04	0.0083882
+260.16	0.00838526
+260.28	0.00838232
+260.4	0.00837938
+260.52	0.00837645
+260.64	0.00837352
+260.76	0.00837059
+260.88	0.00836766
+261	0.00836474
+261.12	0.00836182
+261.24	0.0083589
+261.36	0.00835598
+261.48	0.00835307
+261.6	0.00835016
+261.72	0.00834725
+261.84	0.00834434
+261.96	0.00834144
+262.08	0.00833854
+262.2	0.00833564
+262.32	0.00833274
+262.44	0.00832985
+262.56	0.00832696
+262.68	0.00832407
+262.8	0.00832118
+262.92	0.0083183
+263.04	0.00831541
+263.16	0.00831254
+263.28	0.00830966
+263.4	0.00830678
+263.52	0.00830391
+263.64	0.00830104
+263.76	0.00829817
+263.88	0.00829531
+264	0.00829244
+264.12	0.00828958
+264.24	0.00828673
+264.36	0.00828387
+264.48	0.00828102
+264.6	0.00827817
+264.72	0.00827532
+264.84	0.00827247
+264.96	0.00826963
+265.08	0.00826679
+265.2	0.00826395
+265.32	0.00826111
+265.44	0.00825828
+265.56	0.00825544
+265.68	0.00825261
+265.8	0.00824979
+265.92	0.00824696
+266.04	0.00824414
+266.16	0.00824132
+266.28	0.0082385
+266.4	0.00823568
+266.52	0.00823287
+266.64	0.00823006
+266.76	0.00822725
+266.88	0.00822445
+267	0.00822164
+267.12	0.00821884
+267.24	0.00821604
+267.36	0.00821324
+267.48	0.00821045
+267.6	0.00820766
+267.72	0.00820486
+267.84	0.00820208
+267.96	0.00819929
+268.08	0.00819651
+268.2	0.00819373
+268.32	0.00819095
+268.44	0.00818817
+268.56	0.0081854
+268.68	0.00818262
+268.8	0.00817986
+268.92	0.00817709
+269.04	0.00817432
+269.16	0.00817156
+269.28	0.0081688
+269.4	0.00816604
+269.52	0.00816328
+269.64	0.00816053
+269.76	0.00815778
+269.88	0.00815503
+270	0.00815228
+270.12	0.00814954
+270.24	0.00814679
+270.36	0.00814405
+270.48	0.00814132
+270.6	0.00813858
+270.72	0.00813585
+270.84	0.00813311
+270.96	0.00813038
+271.08	0.00812766
+271.2	0.00812493
+271.32	0.00812221
+271.44	0.00811949
+271.56	0.00811677
+271.68	0.00811406
+271.8	0.00811134
+271.92	0.00810863
+272.04	0.00810592
+272.16	0.00810321
+272.28	0.00810051
+272.4	0.00809781
+272.52	0.0080951
+272.64	0.00809241
+272.76	0.00808971
+272.88	0.00808702
+273	0.00808432
+273.12	0.00808163
+273.24	0.00807895
+273.36	0.00807626
+273.48	0.00807358
+273.6	0.0080709
+273.72	0.00806822
+273.84	0.00806554
+273.96	0.00806287
+274.08	0.0080602
+274.2	0.00805753
+274.32	0.00805486
+274.44	0.0080522
+274.56	0.00804953
+274.68	0.00804687
+274.8	0.00804421
+274.92	0.00804156
+275.04	0.0080389
+275.16	0.00803625
+275.28	0.0080336
+275.4	0.00803095
+275.52	0.0080283
+275.64	0.00802566
+275.76	0.00802302
+275.88	0.00802038
+276	0.00801774
+276.12	0.0080151
+276.24	0.00801247
+276.36	0.00800984
+276.48	0.00800721
+276.6	0.00800458
+276.72	0.00800196
+276.84	0.00799933
+276.96	0.00799671
+277.08	0.00799409
+277.2	0.00799148
+277.32	0.00798886
+277.44	0.00798625
+277.56	0.00798364
+277.68	0.00798103
+277.8	0.00797843
+277.92	0.00797582
+278.04	0.00797322
+278.16	0.00797062
+278.28	0.00796802
+278.4	0.00796542
+278.52	0.00796283
+278.64	0.00796024
+278.76	0.00795765
+278.88	0.00795506
+279	0.00795247
+279.12	0.00794989
+279.24	0.00794731
+279.36	0.00794473
+279.48	0.00794215
+279.6	0.00793958
+279.72	0.007937
+279.84	0.00793443
+279.96	0.00793186
+280.08	0.00792929
+280.2	0.00792673
+280.32	0.00792416
+280.44	0.0079216
+280.56	0.00791904
+280.68	0.00791649
+280.8	0.00791393
+280.92	0.00791138
+281.04	0.00790883
+281.16	0.00790628
+281.28	0.00790373
+281.4	0.00790118
+281.52	0.00789864
+281.64	0.0078961
+281.76	0.00789356
+281.88	0.00789102
+282	0.00788849
+282.12	0.00788595
+282.24	0.00788342
+282.36	0.00788089
+282.48	0.00787837
+282.6	0.00787584
+282.72	0.00787332
+282.84	0.0078708
+282.96	0.00786828
+283.08	0.00786576
+283.2	0.00786324
+283.32	0.00786073
+283.44	0.00785822
+283.56	0.00785571
+283.68	0.0078532
+283.8	0.0078507
+283.92	0.00784819
+284.04	0.00784569
+284.16	0.00784319
+284.28	0.00784069
+284.4	0.0078382
+284.52	0.0078357
+284.64	0.00783321
+284.76	0.00783072
+284.88	0.00782823
+285	0.00782574
+285.12	0.00782326
+285.24	0.00782078
+285.36	0.0078183
+285.48	0.00781582
+285.6	0.00781334
+285.72	0.00781087
+285.84	0.00780839
+285.96	0.00780592
+286.08	0.00780345
+286.2	0.00780099
+286.32	0.00779852
+286.44	0.00779606
+286.56	0.0077936
+286.68	0.00779114
+286.8	0.00778868
+286.92	0.00778622
+287.04	0.00778377
+287.16	0.00778132
+287.28	0.00777887
+287.4	0.00777642
+287.52	0.00777397
+287.64	0.00777153
+287.76	0.00776909
+287.88	0.00776665
+288	0.00776421
+288.12	0.00776177
+288.24	0.00775933
+288.36	0.0077569
+288.48	0.00775447
+288.6	0.00775204
+288.72	0.00774961
+288.84	0.00774719
+288.96	0.00774476
+289.08	0.00774234
+289.2	0.00773992
+289.32	0.0077375
+289.44	0.00773508
+289.56	0.00773267
+289.68	0.00773026
+289.8	0.00772785
+289.92	0.00772544
+290.04	0.00772303
+290.16	0.00772062
+290.28	0.00771822
+290.4	0.00771582
+290.52	0.00771342
+290.64	0.00771102
+290.76	0.00770862
+290.88	0.00770623
+291	0.00770384
+291.12	0.00770144
+291.24	0.00769906
+291.36	0.00769667
+291.48	0.00769428
+291.6	0.0076919
+291.72	0.00768952
+291.84	0.00768714
+291.96	0.00768476
+292.08	0.00768238
+292.2	0.00768001
+292.32	0.00767763
+292.44	0.00767526
+292.56	0.00767289
+292.68	0.00767053
+292.8	0.00766816
+292.92	0.0076658
+293.04	0.00766343
+293.16	0.00766107
+293.28	0.00765871
+293.4	0.00765636
+293.52	0.007654
+293.64	0.00765165
+293.76	0.0076493
+293.88	0.00764695
+294	0.0076446
+294.12	0.00764225
+294.24	0.00763991
+294.36	0.00763757
+294.48	0.00763523
+294.6	0.00763289
+294.72	0.00763055
+294.84	0.00762821
+294.96	0.00762588
+295.08	0.00762355
+295.2	0.00762122
+295.32	0.00761889
+295.44	0.00761656
+295.56	0.00761424
+295.68	0.00761191
+295.8	0.00760959
+295.92	0.00760727
+296.04	0.00760495
+296.16	0.00760263
+296.28	0.00760032
+296.4	0.00759801
+296.52	0.0075957
+296.64	0.00759339
+296.76	0.00759108
+296.88	0.00758877
+297	0.00758647
+297.12	0.00758416
+297.24	0.00758186
+297.36	0.00757956
+297.48	0.00757727
+297.6	0.00757497
+297.72	0.00757268
+297.84	0.00757038
+297.96	0.00756809
+298.08	0.0075658
+298.2	0.00756352
+298.32	0.00756123
+298.44	0.00755895
+298.56	0.00755666
+298.68	0.00755438
+298.8	0.0075521
+298.92	0.00754983
+299.04	0.00754755
+299.16	0.00754528
+299.28	0.007543
+299.4	0.00754073
+299.52	0.00753846
+299.64	0.0075362
+299.76	0.00753393
+299.88	0.00753167
+300	0.00752941
+300.12	0.00752714
+300.24	0.00752489
+300.36	0.00752263
+300.48	0.00752037
+300.6	0.00751812
+300.72	0.00751587
+300.84	0.00751362
+300.96	0.00751137
+301.08	0.00750912
+301.2	0.00750687
+301.32	0.00750463
+301.44	0.00750239
+301.56	0.00750015
+301.68	0.00749791
+301.8	0.00749567
+301.92	0.00749343
+302.04	0.0074912
+302.16	0.00748897
+302.28	0.00748674
+302.4	0.00748451
+302.52	0.00748228
+302.64	0.00748005
+302.76	0.00747783
+302.88	0.00747561
+303	0.00747339
+303.12	0.00747117
+303.24	0.00746895
+303.36	0.00746673
+303.48	0.00746452
+303.6	0.0074623
+303.72	0.00746009
+303.84	0.00745788
+303.96	0.00745567
+304.08	0.00745347
+304.2	0.00745126
+304.32	0.00744906
+304.44	0.00744686
+304.56	0.00744466
+304.68	0.00744246
+304.8	0.00744026
+304.92	0.00743807
+305.04	0.00743587
+305.16	0.00743368
+305.28	0.00743149
+305.4	0.0074293
+305.52	0.00742711
+305.64	0.00742493
+305.76	0.00742274
+305.88	0.00742056
+306	0.00741838
+306.12	0.0074162
+306.24	0.00741402
+306.36	0.00741184
+306.48	0.00740967
+306.6	0.0074075
+306.72	0.00740532
+306.84	0.00740315
+306.96	0.00740099
+307.08	0.00739882
+307.2	0.00739665
+307.32	0.00739449
+307.44	0.00739233
+307.56	0.00739017
+307.68	0.00738801
+307.8	0.00738585
+307.92	0.00738369
+308.04	0.00738154
+308.16	0.00737938
+308.28	0.00737723
+308.4	0.00737508
+308.52	0.00737293
+308.64	0.00737079
+308.76	0.00736864
+308.88	0.0073665
+309	0.00736436
+309.12	0.00736222
+309.24	0.00736008
+309.36	0.00735794
+309.48	0.0073558
+309.6	0.00735367
+309.72	0.00735154
+309.84	0.0073494
+309.96	0.00734727
+310.08	0.00734514
+310.2	0.00734302
+310.32	0.00734089
+310.44	0.00733877
+310.56	0.00733665
+310.68	0.00733452
+310.8	0.00733241
+310.92	0.00733029
+311.04	0.00732817
+311.16	0.00732606
+311.28	0.00732394
+311.4	0.00732183
+311.52	0.00731972
+311.64	0.00731761
+311.76	0.0073155
+311.88	0.0073134
+312	0.00731129
+312.12	0.00730919
+312.24	0.00730709
+312.36	0.00730499
+312.48	0.00730289
+312.6	0.00730079
+312.72	0.0072987
+312.84	0.0072966
+312.96	0.00729451
+313.08	0.00729242
+313.2	0.00729033
+313.32	0.00728824
+313.44	0.00728616
+313.56	0.00728407
+313.68	0.00728199
+313.8	0.00727991
+313.92	0.00727782
+314.04	0.00727575
+314.16	0.00727367
+314.28	0.00727159
+314.4	0.00726952
+314.52	0.00726744
+314.64	0.00726537
+314.76	0.0072633
+314.88	0.00726123
+315	0.00725916
+315.12	0.0072571
+315.24	0.00725503
+315.36	0.00725297
+315.48	0.00725091
+315.6	0.00724885
+315.72	0.00724679
+315.84	0.00724473
+315.96	0.00724268
+316.08	0.00724062
+316.2	0.00723857
+316.32	0.00723652
+316.44	0.00723447
+316.56	0.00723242
+316.68	0.00723037
+316.8	0.00722832
+316.92	0.00722628
+317.04	0.00722424
+317.16	0.00722219
+317.28	0.00722015
+317.4	0.00721812
+317.52	0.00721608
+317.64	0.00721404
+317.76	0.00721201
+317.88	0.00720997
+318	0.00720794
+318.12	0.00720591
+318.24	0.00720388
+318.36	0.00720186
+318.48	0.00719983
+318.6	0.00719781
+318.72	0.00719578
+318.84	0.00719376
+318.96	0.00719174
+319.08	0.00718972
+319.2	0.0071877
+319.32	0.00718569
+319.44	0.00718367
+319.56	0.00718166
+319.68	0.00717965
+319.8	0.00717764
+319.92	0.00717563
+320.04	0.00717362
+320.16	0.00717161
+320.28	0.00716961
+320.4	0.0071676
+320.52	0.0071656
+320.64	0.0071636
+320.76	0.0071616
+320.88	0.0071596
+321	0.00715761
+321.12	0.00715561
+321.24	0.00715362
+321.36	0.00715162
+321.48	0.00714963
+321.6	0.00714764
+321.72	0.00714565
+321.84	0.00714367
+321.96	0.00714168
+322.08	0.0071397
+322.2	0.00713771
+322.32	0.00713573
+322.44	0.00713375
+322.56	0.00713177
+322.68	0.00712979
+322.8	0.00712782
+322.92	0.00712584
+323.04	0.00712387
+323.16	0.0071219
+323.28	0.00711993
+323.4	0.00711796
+323.52	0.00711599
+323.64	0.00711402
+323.76	0.00711206
+323.88	0.00711009
+324	0.00710813
+324.12	0.00710617
+324.24	0.00710421
+324.36	0.00710225
+324.48	0.00710029
+324.6	0.00709834
+324.72	0.00709638
+324.84	0.00709443
+324.96	0.00709248
+325.08	0.00709053
+325.2	0.00708858
+325.32	0.00708663
+325.44	0.00708468
+325.56	0.00708274
+325.68	0.00708079
+325.8	0.00707885
+325.92	0.00707691
+326.04	0.00707497
+326.16	0.00707303
+326.28	0.00707109
+326.4	0.00706915
+326.52	0.00706722
+326.64	0.00706529
+326.76	0.00706335
+326.88	0.00706142
+327	0.00705949
+327.12	0.00705757
+327.24	0.00705564
+327.36	0.00705371
+327.48	0.00705179
+327.6	0.00704987
+327.72	0.00704794
+327.84	0.00704602
+327.96	0.0070441
+328.08	0.00704219
+328.2	0.00704027
+328.32	0.00703835
+328.44	0.00703644
+328.56	0.00703453
+328.68	0.00703262
+328.8	0.00703071
+328.92	0.0070288
+329.04	0.00702689
+329.16	0.00702498
+329.28	0.00702308
+329.4	0.00702117
+329.52	0.00701927
+329.64	0.00701737
+329.76	0.00701547
+329.88	0.00701357
+330	0.00701167
+330.12	0.00700978
+330.24	0.00700788
+330.36	0.00700599
+330.48	0.0070041
+330.6	0.00700221
+330.72	0.00700032
+330.84	0.00699843
+330.96	0.00699654
+331.08	0.00699466
+331.2	0.00699277
+331.32	0.00699089
+331.44	0.00698901
+331.56	0.00698713
+331.68	0.00698525
+331.8	0.00698337
+331.92	0.00698149
+332.04	0.00697961
+332.16	0.00697774
+332.28	0.00697587
+332.4	0.00697399
+332.52	0.00697212
+332.64	0.00697025
+332.76	0.00696839
+332.88	0.00696652
+333	0.00696465
+333.12	0.00696279
+333.24	0.00696093
+333.36	0.00695906
+333.48	0.0069572
+333.6	0.00695534
+333.72	0.00695348
+333.84	0.00695163
+333.96	0.00694977
+334.08	0.00694792
+334.2	0.00694606
+334.32	0.00694421
+334.44	0.00694236
+334.56	0.00694051
+334.68	0.00693866
+334.8	0.00693681
+334.92	0.00693497
+335.04	0.00693312
+335.16	0.00693128
+335.28	0.00692944
+335.4	0.0069276
+335.52	0.00692576
+335.64	0.00692392
+335.76	0.00692208
+335.88	0.00692024
+336	0.00691841
+336.12	0.00691657
+336.24	0.00691474
+336.36	0.00691291
+336.48	0.00691108
+336.6	0.00690925
+336.72	0.00690742
+336.84	0.0069056
+336.96	0.00690377
+337.08	0.00690195
+337.2	0.00690012
+337.32	0.0068983
+337.44	0.00689648
+337.56	0.00689466
+337.68	0.00689284
+337.8	0.00689103
+337.92	0.00688921
+338.04	0.0068874
+338.16	0.00688558
+338.28	0.00688377
+338.4	0.00688196
+338.52	0.00688015
+338.64	0.00687834
+338.76	0.00687653
+338.88	0.00687473
+339	0.00687292
+339.12	0.00687112
+339.24	0.00686931
+339.36	0.00686751
+339.48	0.00686571
+339.6	0.00686391
+339.72	0.00686211
+339.84	0.00686032
+339.96	0.00685852
+340.08	0.00685673
+340.2	0.00685493
+340.32	0.00685314
+340.44	0.00685135
+340.56	0.00684956
+340.68	0.00684777
+340.8	0.00684598
+340.92	0.0068442
+341.04	0.00684241
+341.16	0.00684063
+341.28	0.00683885
+341.4	0.00683706
+341.52	0.00683528
+341.64	0.0068335
+341.76	0.00683173
+341.88	0.00682995
+342	0.00682817
+342.12	0.0068264
+342.24	0.00682462
+342.36	0.00682285
+342.48	0.00682108
+342.6	0.00681931
+342.72	0.00681754
+342.84	0.00681577
+342.96	0.00681401
+343.08	0.00681224
+343.2	0.00681048
+343.32	0.00680871
+343.44	0.00680695
+343.56	0.00680519
+343.68	0.00680343
+343.8	0.00680167
+343.92	0.00679991
+344.04	0.00679816
+344.16	0.0067964
+344.28	0.00679465
+344.4	0.00679289
+344.52	0.00679114
+344.64	0.00678939
+344.76	0.00678764
+344.88	0.00678589
+345	0.00678415
+345.12	0.0067824
+345.24	0.00678065
+345.36	0.00677891
+345.48	0.00677717
+345.6	0.00677542
+345.72	0.00677368
+345.84	0.00677194
+345.96	0.00677021
+346.08	0.00676847
+346.2	0.00676673
+346.32	0.006765
+346.44	0.00676326
+346.56	0.00676153
+346.68	0.0067598
+346.8	0.00675807
+346.92	0.00675634
+347.04	0.00675461
+347.16	0.00675288
+347.28	0.00675116
+347.4	0.00674943
+347.52	0.00674771
+347.64	0.00674598
+347.76	0.00674426
+347.88	0.00674254
+348	0.00674082
+348.12	0.0067391
+348.24	0.00673738
+348.36	0.00673567
+348.48	0.00673395
+348.6	0.00673224
+348.72	0.00673053
+348.84	0.00672881
+348.96	0.0067271
+349.08	0.00672539
+349.2	0.00672368
+349.32	0.00672198
+349.44	0.00672027
+349.56	0.00671856
+349.68	0.00671686
+349.8	0.00671516
+349.92	0.00671345
+350.04	0.00671175
+350.16	0.00671005
+350.28	0.00670835
+350.4	0.00670666
+350.52	0.00670496
+350.64	0.00670326
+350.76	0.00670157
+350.88	0.00669988
+351	0.00669818
+351.12	0.00669649
+351.24	0.0066948
+351.36	0.00669311
+351.48	0.00669142
+351.6	0.00668974
+351.72	0.00668805
+351.84	0.00668636
+351.96	0.00668468
+352.08	0.006683
+352.2	0.00668132
+352.32	0.00667964
+352.44	0.00667796
+352.56	0.00667628
+352.68	0.0066746
+352.8	0.00667292
+352.92	0.00667125
+353.04	0.00666957
+353.16	0.0066679
+353.28	0.00666623
+353.4	0.00666456
+353.52	0.00666289
+353.64	0.00666122
+353.76	0.00665955
+353.88	0.00665788
+354	0.00665621
+354.12	0.00665455
+354.24	0.00665289
+354.36	0.00665122
+354.48	0.00664956
+354.6	0.0066479
+354.72	0.00664624
+354.84	0.00664458
+354.96	0.00664292
+355.08	0.00664127
+355.2	0.00663961
+355.32	0.00663796
+355.44	0.0066363
+355.56	0.00663465
+355.68	0.006633
+355.8	0.00663135
+355.92	0.0066297
+356.04	0.00662805
+356.16	0.0066264
+356.28	0.00662476
+356.4	0.00662311
+356.52	0.00662147
+356.64	0.00661982
+356.76	0.00661818
+356.88	0.00661654
+357	0.0066149
+357.12	0.00661326
+357.24	0.00661162
+357.36	0.00660999
+357.48	0.00660835
+357.6	0.00660671
+357.72	0.00660508
+357.84	0.00660345
+357.96	0.00660182
+358.08	0.00660018
+358.2	0.00659855
+358.32	0.00659692
+358.44	0.0065953
+358.56	0.00659367
+358.68	0.00659204
+358.8	0.00659042
+358.92	0.00658879
+359.04	0.00658717
+359.16	0.00658555
+359.28	0.00658393
+359.4	0.00658231
+359.52	0.00658069
+359.64	0.00657907
+359.76	0.00657745
+359.88	0.00657584
+360	0.00657422
+360.12	0.00657261
+360.24	0.006571
+360.36	0.00656938
+360.48	0.00656777
+360.6	0.00656616
+360.72	0.00656455
+360.84	0.00656295
+360.96	0.00656134
+361.08	0.00655973
+361.2	0.00655813
+361.32	0.00655652
+361.44	0.00655492
+361.56	0.00655332
+361.68	0.00655172
+361.8	0.00655012
+361.92	0.00654852
+362.04	0.00654692
+362.16	0.00654532
+362.28	0.00654373
+362.4	0.00654213
+362.52	0.00654054
+362.64	0.00653894
+362.76	0.00653735
+362.88	0.00653576
+363	0.00653417
+363.12	0.00653258
+363.24	0.00653099
+363.36	0.0065294
+363.48	0.00652782
+363.6	0.00652623
+363.72	0.00652465
+363.84	0.00652306
+363.96	0.00652148
+364.08	0.0065199
+364.2	0.00651832
+364.32	0.00651674
+364.44	0.00651516
+364.56	0.00651358
+364.68	0.00651201
+364.8	0.00651043
+364.92	0.00650886
+365.04	0.00650728
+365.16	0.00650571
+365.28	0.00650414
+365.4	0.00650257
+365.52	0.006501
+365.64	0.00649943
+365.76	0.00649786
+365.88	0.00649629
+366	0.00649473
+366.12	0.00649316
+366.24	0.0064916
+366.36	0.00649003
+366.48	0.00648847
+366.6	0.00648691
+366.72	0.00648535
+366.84	0.00648379
+366.96	0.00648223
+367.08	0.00648067
+367.2	0.00647912
+367.32	0.00647756
+367.44	0.00647601
+367.56	0.00647445
+367.68	0.0064729
+367.8	0.00647135
+367.92	0.0064698
+368.04	0.00646825
+368.16	0.0064667
+368.28	0.00646515
+368.4	0.0064636
+368.52	0.00646205
+368.64	0.00646051
+368.76	0.00645896
+368.88	0.00645742
+369	0.00645588
+369.12	0.00645434
+369.24	0.0064528
+369.36	0.00645126
+369.48	0.00644972
+369.6	0.00644818
+369.72	0.00644664
+369.84	0.0064451
+369.96	0.00644357
+370.08	0.00644204
+370.2	0.0064405
+370.32	0.00643897
+370.44	0.00643744
+370.56	0.00643591
+370.68	0.00643438
+370.8	0.00643285
+370.92	0.00643132
+371.04	0.00642979
+371.16	0.00642827
+371.28	0.00642674
+371.4	0.00642522
+371.52	0.0064237
+371.64	0.00642217
+371.76	0.00642065
+371.88	0.00641913
+372	0.00641761
+372.12	0.00641609
+372.24	0.00641457
+372.36	0.00641306
+372.48	0.00641154
+372.6	0.00641003
+372.72	0.00640851
+372.84	0.006407
+372.96	0.00640549
+373.08	0.00640398
+373.2	0.00640246
+373.32	0.00640095
+373.44	0.00639945
+373.56	0.00639794
+373.68	0.00639643
+373.8	0.00639492
+373.92	0.00639342
+374.04	0.00639192
+374.16	0.00639041
+374.28	0.00638891
+374.4	0.00638741
+374.52	0.00638591
+374.64	0.00638441
+374.76	0.00638291
+374.88	0.00638141
+375	0.00637991
+375.12	0.00637842
+375.24	0.00637692
+375.36	0.00637543
+375.48	0.00637393
+375.6	0.00637244
+375.72	0.00637095
+375.84	0.00636946
+375.96	0.00636797
+376.08	0.00636648
+376.2	0.00636499
+376.32	0.0063635
+376.44	0.00636202
+376.56	0.00636053
+376.68	0.00635905
+376.8	0.00635756
+376.92	0.00635608
+377.04	0.0063546
+377.16	0.00635312
+377.28	0.00635164
+377.4	0.00635016
+377.52	0.00634868
+377.64	0.0063472
+377.76	0.00634572
+377.88	0.00634425
+378	0.00634277
+378.12	0.0063413
+378.24	0.00633982
+378.36	0.00633835
+378.48	0.00633688
+378.6	0.00633541
+378.72	0.00633394
+378.84	0.00633247
+378.96	0.006331
+379.08	0.00632953
+379.2	0.00632807
+379.32	0.0063266
+379.44	0.00632514
+379.56	0.00632367
+379.68	0.00632221
+379.8	0.00632075
+379.92	0.00631929
+380.04	0.00631783
+380.16	0.00631637
+380.28	0.00631491
+380.4	0.00631345
+380.52	0.00631199
+380.64	0.00631054
+380.76	0.00630908
+380.88	0.00630763
+381	0.00630617
+381.12	0.00630472
+381.24	0.00630327
+381.36	0.00630182
+381.48	0.00630037
+381.6	0.00629892
+381.72	0.00629747
+381.84	0.00629602
+381.96	0.00629457
+382.08	0.00629313
+382.2	0.00629168
+382.32	0.00629024
+382.44	0.0062888
+382.56	0.00628735
+382.68	0.00628591
+382.8	0.00628447
+382.92	0.00628303
+383.04	0.00628159
+383.16	0.00628015
+383.28	0.00627871
+383.4	0.00627728
+383.52	0.00627584
+383.64	0.00627441
+383.76	0.00627297
+383.88	0.00627154
+384	0.00627011
+384.12	0.00626868
+384.24	0.00626724
+384.36	0.00626581
+384.48	0.00626438
+384.6	0.00626296
+384.72	0.00626153
+384.84	0.0062601
+384.96	0.00625868
+385.08	0.00625725
+385.2	0.00625583
+385.32	0.0062544
+385.44	0.00625298
+385.56	0.00625156
+385.68	0.00625014
+385.8	0.00624872
+385.92	0.0062473
+386.04	0.00624588
+386.16	0.00624446
+386.28	0.00624304
+386.4	0.00624163
+386.52	0.00624021
+386.64	0.0062388
+386.76	0.00623739
+386.88	0.00623597
+387	0.00623456
+387.12	0.00623315
+387.24	0.00623174
+387.36	0.00623033
+387.48	0.00622892
+387.6	0.00622751
+387.72	0.00622611
+387.84	0.0062247
+387.96	0.00622329
+388.08	0.00622189
+388.2	0.00622048
+388.32	0.00621908
+388.44	0.00621768
+388.56	0.00621628
+388.68	0.00621488
+388.8	0.00621348
+388.92	0.00621208
+389.04	0.00621068
+389.16	0.00620928
+389.28	0.00620789
+389.4	0.00620649
+389.52	0.0062051
+389.64	0.0062037
+389.76	0.00620231
+389.88	0.00620091
+390	0.00619952
+390.12	0.00619813
+390.24	0.00619674
+390.36	0.00619535
+390.48	0.00619396
+390.6	0.00619258
+390.72	0.00619119
+390.84	0.0061898
+390.96	0.00618842
+391.08	0.00618703
+391.2	0.00618565
+391.32	0.00618426
+391.44	0.00618288
+391.56	0.0061815
+391.68	0.00618012
+391.8	0.00617874
+391.92	0.00617736
+392.04	0.00617598
+392.16	0.0061746
+392.28	0.00617323
+392.4	0.00617185
+392.52	0.00617048
+392.64	0.0061691
+392.76	0.00616773
+392.88	0.00616635
+393	0.00616498
+393.12	0.00616361
+393.24	0.00616224
+393.36	0.00616087
+393.48	0.0061595
+393.6	0.00615813
+393.72	0.00615677
+393.84	0.0061554
+393.96	0.00615403
+394.08	0.00615267
+394.2	0.0061513
+394.32	0.00614994
+394.44	0.00614858
+394.56	0.00614722
+394.68	0.00614585
+394.8	0.00614449
+394.92	0.00614313
+395.04	0.00614177
+395.16	0.00614042
+395.28	0.00613906
+395.4	0.0061377
+395.52	0.00613635
+395.64	0.00613499
+395.76	0.00613364
+395.88	0.00613228
+396	0.00613093
+396.12	0.00612958
+396.24	0.00612823
+396.36	0.00612688
+396.48	0.00612553
+396.6	0.00612418
+396.72	0.00612283
+396.84	0.00612148
+396.96	0.00612013
+397.08	0.00611879
+397.2	0.00611744
+397.32	0.0061161
+397.44	0.00611475
+397.56	0.00611341
+397.68	0.00611207
+397.8	0.00611073
+397.92	0.00610939
+398.04	0.00610805
+398.16	0.00610671
+398.28	0.00610537
+398.4	0.00610403
+398.52	0.00610269
+398.64	0.00610136
+398.76	0.00610002
+398.88	0.00609869
+399	0.00609735
+399.12	0.00609602
+399.24	0.00609469
+399.36	0.00609336
+399.48	0.00609203
+399.6	0.00609069
+399.72	0.00608937
+399.84	0.00608804
+399.96	0.00608671
+400.08	0.00608538
+400.2	0.00608405
+400.32	0.00608273
+400.44	0.0060814
+400.56	0.00608008
+400.68	0.00607876
+400.8	0.00607743
+400.92	0.00607611
+401.04	0.00607479
+401.16	0.00607347
+401.28	0.00607215
+401.4	0.00607083
+401.52	0.00606951
+401.64	0.00606819
+401.76	0.00606688
+401.88	0.00606556
+402	0.00606424
+402.12	0.00606293
+402.24	0.00606162
+402.36	0.0060603
+402.48	0.00605899
+402.6	0.00605768
+402.72	0.00605637
+402.84	0.00605506
+402.96	0.00605375
+403.08	0.00605244
+403.2	0.00605113
+403.32	0.00604982
+403.44	0.00604851
+403.56	0.00604721
+403.68	0.0060459
+403.8	0.0060446
+403.92	0.00604329
+404.04	0.00604199
+404.16	0.00604069
+404.28	0.00603939
+404.4	0.00603809
+404.52	0.00603679
+404.64	0.00603549
+404.76	0.00603419
+404.88	0.00603289
+405	0.00603159
+405.12	0.0060303
+405.24	0.006029
+405.36	0.0060277
+405.48	0.00602641
+405.6	0.00602512
+405.72	0.00602382
+405.84	0.00602253
+405.96	0.00602124
+406.08	0.00601995
+406.2	0.00601866
+406.32	0.00601737
+406.44	0.00601608
+406.56	0.00601479
+406.68	0.0060135
+406.8	0.00601222
+406.92	0.00601093
+407.04	0.00600964
+407.16	0.00600836
+407.28	0.00600708
+407.4	0.00600579
+407.52	0.00600451
+407.64	0.00600323
+407.76	0.00600195
+407.88	0.00600067
+408	0.00599939
+408.12	0.00599811
+408.24	0.00599683
+408.36	0.00599555
+408.48	0.00599428
+408.6	0.005993
+408.72	0.00599172
+408.84	0.00599045
+408.96	0.00598917
+409.08	0.0059879
+409.2	0.00598663
+409.32	0.00598536
+409.44	0.00598408
+409.56	0.00598281
+409.68	0.00598154
+409.8	0.00598028
+409.92	0.00597901
+410.04	0.00597774
+410.16	0.00597647
+410.28	0.00597521
+410.4	0.00597394
+410.52	0.00597268
+410.64	0.00597141
+410.76	0.00597015
+410.88	0.00596889
+411	0.00596762
+411.12	0.00596636
+411.24	0.0059651
+411.36	0.00596384
+411.48	0.00596258
+411.6	0.00596133
+411.72	0.00596007
+411.84	0.00595881
+411.96	0.00595755
+412.08	0.0059563
+412.2	0.00595504
+412.32	0.00595379
+412.44	0.00595254
+412.56	0.00595128
+412.68	0.00595003
+412.8	0.00594878
+412.92	0.00594753
+413.04	0.00594628
+413.16	0.00594503
+413.28	0.00594378
+413.4	0.00594253
+413.52	0.00594128
+413.64	0.00594004
+413.76	0.00593879
+413.88	0.00593754
+414	0.0059363
+414.12	0.00593505
+414.24	0.00593381
+414.36	0.00593257
+414.48	0.00593133
+414.6	0.00593008
+414.72	0.00592884
+414.84	0.0059276
+414.96	0.00592636
+415.08	0.00592512
+415.2	0.00592389
+415.32	0.00592265
+415.44	0.00592141
+415.56	0.00592018
+415.68	0.00591894
+415.8	0.0059177
+415.92	0.00591647
+416.04	0.00591524
+416.16	0.005914
+416.28	0.00591277
+416.4	0.00591154
+416.52	0.00591031
+416.64	0.00590908
+416.76	0.00590785
+416.88	0.00590662
+417	0.00590539
+417.12	0.00590416
+417.24	0.00590294
+417.36	0.00590171
+417.48	0.00590049
+417.6	0.00589926
+417.72	0.00589804
+417.84	0.00589681
+417.96	0.00589559
+418.08	0.00589437
+418.2	0.00589315
+418.32	0.00589192
+418.44	0.0058907
+418.56	0.00588948
+418.68	0.00588827
+418.8	0.00588705
+418.92	0.00588583
+419.04	0.00588461
+419.16	0.0058834
+419.28	0.00588218
+419.4	0.00588096
+419.52	0.00587975
+419.64	0.00587854
+419.76	0.00587732
+419.88	0.00587611
+420	0.0058749
+420.12	0.00587369
+420.24	0.00587248
+420.36	0.00587127
+420.48	0.00587006
+420.6	0.00586885
+420.72	0.00586764
+420.84	0.00586643
+420.96	0.00586523
+421.08	0.00586402
+421.2	0.00586281
+421.32	0.00586161
+421.44	0.0058604
+421.56	0.0058592
+421.68	0.005858
+421.8	0.0058568
+421.92	0.00585559
+422.04	0.00585439
+422.16	0.00585319
+422.28	0.00585199
+422.4	0.00585079
+422.52	0.0058496
+422.64	0.0058484
+422.76	0.0058472
+422.88	0.005846
+423	0.00584481
+423.12	0.00584361
+423.24	0.00584242
+423.36	0.00584122
+423.48	0.00584003
+423.6	0.00583884
+423.72	0.00583765
+423.84	0.00583645
+423.96	0.00583526
+424.08	0.00583407
+424.2	0.00583288
+424.32	0.00583169
+424.44	0.00583051
+424.56	0.00582932
+424.68	0.00582813
+424.8	0.00582694
+424.92	0.00582576
+425.04	0.00582457
+425.16	0.00582339
+425.28	0.0058222
+425.4	0.00582102
+425.52	0.00581984
+425.64	0.00581866
+425.76	0.00581747
+425.88	0.00581629
+426	0.00581511
+426.12	0.00581393
+426.24	0.00581275
+426.36	0.00581158
+426.48	0.0058104
+426.6	0.00580922
+426.72	0.00580804
+426.84	0.00580687
+426.96	0.00580569
+427.08	0.00580452
+427.2	0.00580334
+427.32	0.00580217
+427.44	0.005801
+427.56	0.00579983
+427.68	0.00579865
+427.8	0.00579748
+427.92	0.00579631
+428.04	0.00579514
+428.16	0.00579397
+428.28	0.0057928
+428.4	0.00579164
+428.52	0.00579047
+428.64	0.0057893
+428.76	0.00578814
+428.88	0.00578697
+429	0.00578581
+429.12	0.00578464
+429.24	0.00578348
+429.36	0.00578232
+429.48	0.00578115
+429.6	0.00577999
+429.72	0.00577883
+429.84	0.00577767
+429.96	0.00577651
+430.08	0.00577535
+430.2	0.00577419
+430.32	0.00577303
+430.44	0.00577187
+430.56	0.00577072
+430.68	0.00576956
+430.8	0.00576841
+430.92	0.00576725
+431.04	0.0057661
+431.16	0.00576494
+431.28	0.00576379
+431.4	0.00576263
+431.52	0.00576148
+431.64	0.00576033
+431.76	0.00575918
+431.88	0.00575803
+432	0.00575688
+432.12	0.00575573
+432.24	0.00575458
+432.36	0.00575343
+432.48	0.00575229
+432.6	0.00575114
+432.72	0.00574999
+432.84	0.00574885
+432.96	0.0057477
+433.08	0.00574656
+433.2	0.00574541
+433.32	0.00574427
+433.44	0.00574313
+433.56	0.00574199
+433.68	0.00574084
+433.8	0.0057397
+433.92	0.00573856
+434.04	0.00573742
+434.16	0.00573628
+434.28	0.00573515
+434.4	0.00573401
+434.52	0.00573287
+434.64	0.00573173
+434.76	0.0057306
+434.88	0.00572946
+435	0.00572833
+435.12	0.00572719
+435.24	0.00572606
+435.36	0.00572492
+435.48	0.00572379
+435.6	0.00572266
+435.72	0.00572153
+435.84	0.0057204
+435.96	0.00571927
+436.08	0.00571814
+436.2	0.00571701
+436.32	0.00571588
+436.44	0.00571475
+436.56	0.00571362
+436.68	0.0057125
+436.8	0.00571137
+436.92	0.00571024
+437.04	0.00570912
+437.16	0.00570799
+437.28	0.00570687
+437.4	0.00570575
+437.52	0.00570462
+437.64	0.0057035
+437.76	0.00570238
+437.88	0.00570126
+438	0.00570014
+438.12	0.00569902
+438.24	0.0056979
+438.36	0.00569678
+438.48	0.00569566
+438.6	0.00569454
+438.72	0.00569343
+438.84	0.00569231
+438.96	0.00569119
+439.08	0.00569008
+439.2	0.00568896
+439.32	0.00568785
+439.44	0.00568673
+439.56	0.00568562
+439.68	0.00568451
+439.8	0.0056834
+439.92	0.00568229
+440.04	0.00568117
+440.16	0.00568006
+440.28	0.00567895
+440.4	0.00567785
+440.52	0.00567674
+440.64	0.00567563
+440.76	0.00567452
+440.88	0.00567341
+441	0.00567231
+441.12	0.0056712
+441.24	0.0056701
+441.36	0.00566899
+441.48	0.00566789
+441.6	0.00566678
+441.72	0.00566568
+441.84	0.00566458
+441.96	0.00566348
+442.08	0.00566238
+442.2	0.00566127
+442.32	0.00566017
+442.44	0.00565907
+442.56	0.00565798
+442.68	0.00565688
+442.8	0.00565578
+442.92	0.00565468
+443.04	0.00565358
+443.16	0.00565249
+443.28	0.00565139
+443.4	0.0056503
+443.52	0.0056492
+443.64	0.00564811
+443.76	0.00564702
+443.88	0.00564592
+444	0.00564483
+444.12	0.00564374
+444.24	0.00564265
+444.36	0.00564156
+444.48	0.00564047
+444.6	0.00563938
+444.72	0.00563829
+444.84	0.0056372
+444.96	0.00563611
+445.08	0.00563502
+445.2	0.00563394
+445.32	0.00563285
+445.44	0.00563176
+445.56	0.00563068
+445.68	0.00562959
+445.8	0.00562851
+445.92	0.00562743
+446.04	0.00562634
+446.16	0.00562526
+446.28	0.00562418
+446.4	0.0056231
+446.52	0.00562201
+446.64	0.00562093
+446.76	0.00561985
+446.88	0.00561878
+447	0.0056177
+447.12	0.00561662
+447.24	0.00561554
+447.36	0.00561446
+447.48	0.00561339
+447.6	0.00561231
+447.72	0.00561124
+447.84	0.00561016
+447.96	0.00560909
+448.08	0.00560801
+448.2	0.00560694
+448.32	0.00560587
+448.44	0.00560479
+448.56	0.00560372
+448.68	0.00560265
+448.8	0.00560158
+448.92	0.00560051
+449.04	0.00559944
+449.16	0.00559837
+449.28	0.0055973
+449.4	0.00559623
+449.52	0.00559517
+449.64	0.0055941
+449.76	0.00559303
+449.88	0.00559197
+450	0.0055909
+450.12	0.00558984
+450.24	0.00558877
+450.36	0.00558771
+450.48	0.00558665
+450.6	0.00558558
+450.72	0.00558452
+450.84	0.00558346
+450.96	0.0055824
+451.08	0.00558134
+451.2	0.00558028
+451.32	0.00557922
+451.44	0.00557816
+451.56	0.0055771
+451.68	0.00557604
+451.8	0.00557498
+451.92	0.00557393
+452.04	0.00557287
+452.16	0.00557182
+452.28	0.00557076
+452.4	0.00556971
+452.52	0.00556865
+452.64	0.0055676
+452.76	0.00556654
+452.88	0.00556549
+453	0.00556444
+453.12	0.00556339
+453.24	0.00556234
+453.36	0.00556129
+453.48	0.00556024
+453.6	0.00555919
+453.72	0.00555814
+453.84	0.00555709
+453.96	0.00555604
+454.08	0.00555499
+454.2	0.00555395
+454.32	0.0055529
+454.44	0.00555185
+454.56	0.00555081
+454.68	0.00554976
+454.8	0.00554872
+454.92	0.00554767
+455.04	0.00554663
+455.16	0.00554559
+455.28	0.00554455
+455.4	0.0055435
+455.52	0.00554246
+455.64	0.00554142
+455.76	0.00554038
+455.88	0.00553934
+456	0.0055383
+456.12	0.00553726
+456.24	0.00553623
+456.36	0.00553519
+456.48	0.00553415
+456.6	0.00553311
+456.72	0.00553208
+456.84	0.00553104
+456.96	0.00553001
+457.08	0.00552897
+457.2	0.00552794
+457.32	0.0055269
+457.44	0.00552587
+457.56	0.00552484
+457.68	0.00552381
+457.8	0.00552277
+457.92	0.00552174
+458.04	0.00552071
+458.16	0.00551968
+458.28	0.00551865
+458.4	0.00551762
+458.52	0.0055166
+458.64	0.00551557
+458.76	0.00551454
+458.88	0.00551351
+459	0.00551249
+459.12	0.00551146
+459.24	0.00551043
+459.36	0.00550941
+459.48	0.00550838
+459.6	0.00550736
+459.72	0.00550634
+459.84	0.00550531
+459.96	0.00550429
+460.08	0.00550327
+460.2	0.00550225
+460.32	0.00550123
+460.44	0.00550021
+460.56	0.00549919
+460.68	0.00549817
+460.8	0.00549715
+460.92	0.00549613
+461.04	0.00549511
+461.16	0.00549409
+461.28	0.00549308
+461.4	0.00549206
+461.52	0.00549104
+461.64	0.00549003
+461.76	0.00548901
+461.88	0.005488
+462	0.00548698
+462.12	0.00548597
+462.24	0.00548496
+462.36	0.00548394
+462.48	0.00548293
+462.6	0.00548192
+462.72	0.00548091
+462.84	0.0054799
+462.96	0.00547889
+463.08	0.00547788
+463.2	0.00547687
+463.32	0.00547586
+463.44	0.00547485
+463.56	0.00547384
+463.68	0.00547284
+463.8	0.00547183
+463.92	0.00547082
+464.04	0.00546982
+464.16	0.00546881
+464.28	0.00546781
+464.4	0.0054668
+464.52	0.0054658
+464.64	0.0054648
+464.76	0.00546379
+464.88	0.00546279
+465	0.00546179
+465.12	0.00546079
+465.24	0.00545979
+465.36	0.00545879
+465.48	0.00545779
+465.6	0.00545679
+465.72	0.00545579
+465.84	0.00545479
+465.96	0.00545379
+466.08	0.00545279
+466.2	0.0054518
+466.32	0.0054508
+466.44	0.0054498
+466.56	0.00544881
+466.68	0.00544781
+466.8	0.00544682
+466.92	0.00544582
+467.04	0.00544483
+467.16	0.00544384
+467.28	0.00544284
+467.4	0.00544185
+467.52	0.00544086
+467.64	0.00543987
+467.76	0.00543888
+467.88	0.00543789
+468	0.0054369
+468.12	0.00543591
+468.24	0.00543492
+468.36	0.00543393
+468.48	0.00543294
+468.6	0.00543195
+468.72	0.00543097
+468.84	0.00542998
+468.96	0.00542899
+469.08	0.00542801
+469.2	0.00542702
+469.32	0.00542604
+469.44	0.00542506
+469.56	0.00542407
+469.68	0.00542309
+469.8	0.00542211
+469.92	0.00542112
+470.04	0.00542014
+470.16	0.00541916
+470.28	0.00541818
+470.4	0.0054172
+470.52	0.00541622
+470.64	0.00541524
+470.76	0.00541426
+470.88	0.00541328
+471	0.0054123
+471.12	0.00541132
+471.24	0.00541035
+471.36	0.00540937
+471.48	0.00540839
+471.6	0.00540742
+471.72	0.00540644
+471.84	0.00540547
+471.96	0.00540449
+472.08	0.00540352
+472.2	0.00540255
+472.32	0.00540157
+472.44	0.0054006
+472.56	0.00539963
+472.68	0.00539866
+472.8	0.00539769
+472.92	0.00539672
+473.04	0.00539575
+473.16	0.00539478
+473.28	0.00539381
+473.4	0.00539284
+473.52	0.00539187
+473.64	0.0053909
+473.76	0.00538993
+473.88	0.00538897
+474	0.005388
+474.12	0.00538703
+474.24	0.00538607
+474.36	0.0053851
+474.48	0.00538414
+474.6	0.00538317
+474.72	0.00538221
+474.84	0.00538125
+474.96	0.00538028
+475.08	0.00537932
+475.2	0.00537836
+475.32	0.0053774
+475.44	0.00537644
+475.56	0.00537548
+475.68	0.00537452
+475.8	0.00537356
+475.92	0.0053726
+476.04	0.00537164
+476.16	0.00537068
+476.28	0.00536972
+476.4	0.00536876
+476.52	0.00536781
+476.64	0.00536685
+476.76	0.00536589
+476.88	0.00536494
+477	0.00536398
+477.12	0.00536303
+477.24	0.00536207
+477.36	0.00536112
+477.48	0.00536017
+477.6	0.00535921
+477.72	0.00535826
+477.84	0.00535731
+477.96	0.00535636
+478.08	0.00535541
+478.2	0.00535446
+478.32	0.00535351
+478.44	0.00535256
+478.56	0.00535161
+478.68	0.00535066
+478.8	0.00534971
+478.92	0.00534876
+479.04	0.00534781
+479.16	0.00534687
+479.28	0.00534592
+479.4	0.00534497
+479.52	0.00534403
+479.64	0.00534308
+479.76	0.00534214
+479.88	0.00534119
+480	0.00534025
+480.12	0.00533931
+480.24	0.00533836
+480.36	0.00533742
+480.48	0.00533648
+480.6	0.00533554
+480.72	0.00533459
+480.84	0.00533365
+480.96	0.00533271
+481.08	0.00533177
+481.2	0.00533083
+481.32	0.00532989
+481.44	0.00532896
+481.56	0.00532802
+481.68	0.00532708
+481.8	0.00532614
+481.92	0.0053252
+482.04	0.00532427
+482.16	0.00532333
+482.28	0.0053224
+482.4	0.00532146
+482.52	0.00532053
+482.64	0.00531959
+482.76	0.00531866
+482.88	0.00531772
+483	0.00531679
+483.12	0.00531586
+483.24	0.00531493
+483.36	0.00531399
+483.48	0.00531306
+483.6	0.00531213
+483.72	0.0053112
+483.84	0.00531027
+483.96	0.00530934
+484.08	0.00530841
+484.2	0.00530748
+484.32	0.00530656
+484.44	0.00530563
+484.56	0.0053047
+484.68	0.00530377
+484.8	0.00530285
+484.92	0.00530192
+485.04	0.005301
+485.16	0.00530007
+485.28	0.00529915
+485.4	0.00529822
+485.52	0.0052973
+485.64	0.00529637
+485.76	0.00529545
+485.88	0.00529453
+486	0.00529361
+486.12	0.00529268
+486.24	0.00529176
+486.36	0.00529084
+486.48	0.00528992
+486.6	0.005289
+486.72	0.00528808
+486.84	0.00528716
+486.96	0.00528624
+487.08	0.00528532
+487.2	0.00528441
+487.32	0.00528349
+487.44	0.00528257
+487.56	0.00528165
+487.68	0.00528074
+487.8	0.00527982
+487.92	0.00527891
+488.04	0.00527799
+488.16	0.00527708
+488.28	0.00527616
+488.4	0.00527525
+488.52	0.00527434
+488.64	0.00527342
+488.76	0.00527251
+488.88	0.0052716
+489	0.00527069
+489.12	0.00526978
+489.24	0.00526886
+489.36	0.00526795
+489.48	0.00526704
+489.6	0.00526613
+489.72	0.00526523
+489.84	0.00526432
+489.96	0.00526341
+490.08	0.0052625
+490.2	0.00526159
+490.32	0.00526069
+490.44	0.00525978
+490.56	0.00525887
+490.68	0.00525797
+490.8	0.00525706
+490.92	0.00525616
+491.04	0.00525525
+491.16	0.00525435
+491.28	0.00525344
+491.4	0.00525254
+491.52	0.00525164
+491.64	0.00525073
+491.76	0.00524983
+491.88	0.00524893
+492	0.00524803
+492.12	0.00524713
+492.24	0.00524623
+492.36	0.00524533
+492.48	0.00524443
+492.6	0.00524353
+492.72	0.00524263
+492.84	0.00524173
+492.96	0.00524083
+493.08	0.00523994
+493.2	0.00523904
+493.32	0.00523814
+493.44	0.00523725
+493.56	0.00523635
+493.68	0.00523545
+493.8	0.00523456
+493.92	0.00523367
+494.04	0.00523277
+494.16	0.00523188
+494.28	0.00523098
+494.4	0.00523009
+494.52	0.0052292
+494.64	0.00522831
+494.76	0.00522741
+494.88	0.00522652
+495	0.00522563
+495.12	0.00522474
+495.24	0.00522385
+495.36	0.00522296
+495.48	0.00522207
+495.6	0.00522118
+495.72	0.00522029
+495.84	0.0052194
+495.96	0.00521852
+496.08	0.00521763
+496.2	0.00521674
+496.32	0.00521586
+496.44	0.00521497
+496.56	0.00521408
+496.68	0.0052132
+496.8	0.00521231
+496.92	0.00521143
+497.04	0.00521054
+497.16	0.00520966
+497.28	0.00520878
+497.4	0.00520789
+497.52	0.00520701
+497.64	0.00520613
+497.76	0.00520525
+497.88	0.00520437
+498	0.00520349
+498.12	0.00520261
+498.24	0.00520173
+498.36	0.00520085
+498.48	0.00519997
+498.6	0.00519909
+498.72	0.00519821
+498.84	0.00519733
+498.96	0.00519645
+499.08	0.00519557
+499.2	0.0051947
+499.32	0.00519382
+499.44	0.00519294
+499.56	0.00519207
+499.68	0.00519119
+499.8	0.00519032
+499.92	0.00518944
+500.04	0.00518857
+500.16	0.0051877
+500.28	0.00518682
+500.4	0.00518595
+500.52	0.00518508
+500.64	0.0051842
+500.76	0.00518333
+500.88	0.00518246
+501	0.00518159
+501.12	0.00518072
+501.24	0.00517985
+501.36	0.00517898
+501.48	0.00517811
+501.6	0.00517724
+501.72	0.00517637
+501.84	0.0051755
+501.96	0.00517463
+502.08	0.00517377
+502.2	0.0051729
+502.32	0.00517203
+502.44	0.00517117
+502.56	0.0051703
+502.68	0.00516944
+502.8	0.00516857
+502.92	0.00516771
+503.04	0.00516684
+503.16	0.00516598
+503.28	0.00516511
+503.4	0.00516425
+503.52	0.00516339
+503.64	0.00516252
+503.76	0.00516166
+503.88	0.0051608
+504	0.00515994
+504.12	0.00515908
+504.24	0.00515822
+504.36	0.00515736
+504.48	0.0051565
+504.6	0.00515564
+504.72	0.00515478
+504.84	0.00515392
+504.96	0.00515306
+505.08	0.0051522
+505.2	0.00515135
+505.32	0.00515049
+505.44	0.00514963
+505.56	0.00514878
+505.68	0.00514792
+505.8	0.00514706
+505.92	0.00514621
+506.04	0.00514535
+506.16	0.0051445
+506.28	0.00514365
+506.4	0.00514279
+506.52	0.00514194
+506.64	0.00514109
+506.76	0.00514023
+506.88	0.00513938
+507	0.00513853
+507.12	0.00513768
+507.24	0.00513683
+507.36	0.00513598
+507.48	0.00513513
+507.6	0.00513428
+507.72	0.00513343
+507.84	0.00513258
+507.96	0.00513173
+508.08	0.00513088
+508.2	0.00513003
+508.32	0.00512918
+508.44	0.00512834
+508.56	0.00512749
+508.68	0.00512664
+508.8	0.0051258
+508.92	0.00512495
+509.04	0.00512411
+509.16	0.00512326
+509.28	0.00512242
+509.4	0.00512157
+509.52	0.00512073
+509.64	0.00511988
+509.76	0.00511904
+509.88	0.0051182
+510	0.00511736
+510.12	0.00511651
+510.24	0.00511567
+510.36	0.00511483
+510.48	0.00511399
+510.6	0.00511315
+510.72	0.00511231
+510.84	0.00511147
+510.96	0.00511063
+511.08	0.00510979
+511.2	0.00510895
+511.32	0.00510811
+511.44	0.00510727
+511.56	0.00510644
+511.68	0.0051056
+511.8	0.00510476
+511.92	0.00510393
+512.04	0.00510309
+512.16	0.00510225
+512.28	0.00510142
+512.4	0.00510058
+512.52	0.00509975
+512.64	0.00509892
+512.76	0.00509808
+512.88	0.00509725
+513	0.00509641
+513.12	0.00509558
+513.24	0.00509475
+513.36	0.00509392
+513.48	0.00509309
+513.6	0.00509225
+513.72	0.00509142
+513.84	0.00509059
+513.96	0.00508976
+514.08	0.00508893
+514.2	0.0050881
+514.32	0.00508727
+514.44	0.00508645
+514.56	0.00508562
+514.68	0.00508479
+514.8	0.00508396
+514.92	0.00508313
+515.04	0.00508231
+515.16	0.00508148
+515.28	0.00508065
+515.4	0.00507983
+515.52	0.005079
+515.64	0.00507818
+515.76	0.00507735
+515.88	0.00507653
+516	0.0050757
+516.12	0.00507488
+516.24	0.00507406
+516.36	0.00507323
+516.48	0.00507241
+516.6	0.00507159
+516.72	0.00507077
+516.84	0.00506994
+516.96	0.00506912
+517.08	0.0050683
+517.2	0.00506748
+517.32	0.00506666
+517.44	0.00506584
+517.56	0.00506502
+517.68	0.0050642
+517.8	0.00506339
+517.92	0.00506257
+518.04	0.00506175
+518.16	0.00506093
+518.28	0.00506011
+518.4	0.0050593
+518.52	0.00505848
+518.64	0.00505766
+518.76	0.00505685
+518.88	0.00505603
+519	0.00505522
+519.12	0.0050544
+519.24	0.00505359
+519.36	0.00505277
+519.48	0.00505196
+519.6	0.00505115
+519.72	0.00505033
+519.84	0.00504952
+519.96	0.00504871
+520.08	0.0050479
+520.2	0.00504709
+520.32	0.00504627
+520.44	0.00504546
+520.56	0.00504465
+520.68	0.00504384
+520.8	0.00504303
+520.92	0.00504222
+521.04	0.00504141
+521.16	0.0050406
+521.28	0.0050398
+521.4	0.00503899
+521.52	0.00503818
+521.64	0.00503737
+521.76	0.00503657
+521.88	0.00503576
+522	0.00503495
+522.12	0.00503415
+522.24	0.00503334
+522.36	0.00503254
+522.48	0.00503173
+522.6	0.00503093
+522.72	0.00503012
+522.84	0.00502932
+522.96	0.00502851
+523.08	0.00502771
+523.2	0.00502691
+523.32	0.00502611
+523.44	0.0050253
+523.56	0.0050245
+523.68	0.0050237
+523.8	0.0050229
+523.92	0.0050221
+524.04	0.0050213
+524.16	0.0050205
+524.28	0.0050197
+524.4	0.0050189
+524.52	0.0050181
+524.64	0.0050173
+524.76	0.0050165
+524.88	0.0050157
+525	0.00501491
+525.12	0.00501411
+525.24	0.00501331
+525.36	0.00501252
+525.48	0.00501172
+525.6	0.00501092
+525.72	0.00501013
+525.84	0.00500933
+525.96	0.00500854
+526.08	0.00500774
+526.2	0.00500695
+526.32	0.00500615
+526.44	0.00500536
+526.56	0.00500457
+526.68	0.00500377
+526.8	0.00500298
+526.92	0.00500219
+527.04	0.0050014
+527.16	0.00500061
+527.28	0.00499981
+527.4	0.00499902
+527.52	0.00499823
+527.64	0.00499744
+527.76	0.00499665
+527.88	0.00499586
+528	0.00499507
+528.12	0.00499429
+528.24	0.0049935
+528.36	0.00499271
+528.48	0.00499192
+528.6	0.00499113
+528.72	0.00499035
+528.84	0.00498956
+528.96	0.00498877
+529.08	0.00498799
+529.2	0.0049872
+529.32	0.00498642
+529.44	0.00498563
+529.56	0.00498485
+529.68	0.00498406
+529.8	0.00498328
+529.92	0.00498249
+530.04	0.00498171
+530.16	0.00498093
+530.28	0.00498014
+530.4	0.00497936
+530.52	0.00497858
+530.64	0.0049778
+530.76	0.00497702
+530.88	0.00497623
+531	0.00497545
+531.12	0.00497467
+531.24	0.00497389
+531.36	0.00497311
+531.48	0.00497233
+531.6	0.00497155
+531.72	0.00497078
+531.84	0.00497
+531.96	0.00496922
+532.08	0.00496844
+532.2	0.00496766
+532.32	0.00496689
+532.44	0.00496611
+532.56	0.00496533
+532.68	0.00496456
+532.8	0.00496378
+532.92	0.00496301
+533.04	0.00496223
+533.16	0.00496146
+533.28	0.00496068
+533.4	0.00495991
+533.52	0.00495913
+533.64	0.00495836
+533.76	0.00495759
+533.88	0.00495681
+534	0.00495604
+534.12	0.00495527
+534.24	0.0049545
+534.36	0.00495373
+534.48	0.00495295
+534.6	0.00495218
+534.72	0.00495141
+534.84	0.00495064
+534.96	0.00494987
+535.08	0.0049491
+535.2	0.00494833
+535.32	0.00494756
+535.44	0.0049468
+535.56	0.00494603
+535.68	0.00494526
+535.8	0.00494449
+535.92	0.00494372
+536.04	0.00494296
+536.16	0.00494219
+536.28	0.00494142
+536.4	0.00494066
+536.52	0.00493989
+536.64	0.00493913
+536.76	0.00493836
+536.88	0.0049376
+537	0.00493683
+537.12	0.00493607
+537.24	0.0049353
+537.36	0.00493454
+537.48	0.00493378
+537.6	0.00493301
+537.72	0.00493225
+537.84	0.00493149
+537.96	0.00493073
+538.08	0.00492997
+538.2	0.00492921
+538.32	0.00492844
+538.44	0.00492768
+538.56	0.00492692
+538.68	0.00492616
+538.8	0.0049254
+538.92	0.00492464
+539.04	0.00492389
+539.16	0.00492313
+539.28	0.00492237
+539.4	0.00492161
+539.52	0.00492085
+539.64	0.00492009
+539.76	0.00491934
+539.88	0.00491858
+540	0.00491782
+540.12	0.00491707
+540.24	0.00491631
+540.36	0.00491556
+540.48	0.0049148
+540.6	0.00491405
+540.72	0.00491329
+540.84	0.00491254
+540.96	0.00491178
+541.08	0.00491103
+541.2	0.00491028
+541.32	0.00490952
+541.44	0.00490877
+541.56	0.00490802
+541.68	0.00490727
+541.8	0.00490652
+541.92	0.00490576
+542.04	0.00490501
+542.16	0.00490426
+542.28	0.00490351
+542.4	0.00490276
+542.52	0.00490201
+542.64	0.00490126
+542.76	0.00490051
+542.88	0.00489976
+543	0.00489902
+543.12	0.00489827
+543.24	0.00489752
+543.36	0.00489677
+543.48	0.00489602
+543.6	0.00489528
+543.72	0.00489453
+543.84	0.00489378
+543.96	0.00489304
+544.08	0.00489229
+544.2	0.00489155
+544.32	0.0048908
+544.44	0.00489006
+544.56	0.00488931
+544.68	0.00488857
+544.8	0.00488782
+544.92	0.00488708
+545.04	0.00488634
+545.16	0.00488559
+545.28	0.00488485
+545.4	0.00488411
+545.52	0.00488337
+545.64	0.00488262
+545.76	0.00488188
+545.88	0.00488114
+546	0.0048804
+546.12	0.00487966
+546.24	0.00487892
+546.36	0.00487818
+546.48	0.00487744
+546.6	0.0048767
+546.72	0.00487596
+546.84	0.00487522
+546.96	0.00487449
+547.08	0.00487375
+547.2	0.00487301
+547.32	0.00487227
+547.44	0.00487154
+547.56	0.0048708
+547.68	0.00487006
+547.8	0.00486933
+547.92	0.00486859
+548.04	0.00486786
+548.16	0.00486712
+548.28	0.00486639
+548.4	0.00486565
+548.52	0.00486492
+548.64	0.00486418
+548.76	0.00486345
+548.88	0.00486272
+549	0.00486198
+549.12	0.00486125
+549.24	0.00486052
+549.36	0.00485979
+549.48	0.00485905
+549.6	0.00485832
+549.72	0.00485759
+549.84	0.00485686
+549.96	0.00485613
+550.08	0.0048554
+550.2	0.00485467
+550.32	0.00485394
+550.44	0.00485321
+550.56	0.00485248
+550.68	0.00485175
+550.8	0.00485102
+550.92	0.0048503
+551.04	0.00484957
+551.16	0.00484884
+551.28	0.00484811
+551.4	0.00484739
+551.52	0.00484666
+551.64	0.00484593
+551.76	0.00484521
+551.88	0.00484448
+552	0.00484375
+552.12	0.00484303
+552.24	0.0048423
+552.36	0.00484158
+552.48	0.00484086
+552.6	0.00484013
+552.72	0.00483941
+552.84	0.00483868
+552.96	0.00483796
+553.08	0.00483724
+553.2	0.00483652
+553.32	0.00483579
+553.44	0.00483507
+553.56	0.00483435
+553.68	0.00483363
+553.8	0.00483291
+553.92	0.00483219
+554.04	0.00483147
+554.16	0.00483075
+554.28	0.00483003
+554.4	0.00482931
+554.52	0.00482859
+554.64	0.00482787
+554.76	0.00482715
+554.88	0.00482643
+555	0.00482571
+555.12	0.00482499
+555.24	0.00482428
+555.36	0.00482356
+555.48	0.00482284
+555.6	0.00482213
+555.72	0.00482141
+555.84	0.00482069
+555.96	0.00481998
+556.08	0.00481926
+556.2	0.00481855
+556.32	0.00481783
+556.44	0.00481712
+556.56	0.0048164
+556.68	0.00481569
+556.8	0.00481498
+556.92	0.00481426
+557.04	0.00481355
+557.16	0.00481284
+557.28	0.00481212
+557.4	0.00481141
+557.52	0.0048107
+557.64	0.00480999
+557.76	0.00480928
+557.88	0.00480856
+558	0.00480785
+558.12	0.00480714
+558.24	0.00480643
+558.36	0.00480572
+558.48	0.00480501
+558.6	0.0048043
+558.72	0.00480359
+558.84	0.00480289
+558.96	0.00480218
+559.08	0.00480147
+559.2	0.00480076
+559.32	0.00480005
+559.44	0.00479935
+559.56	0.00479864
+559.68	0.00479793
+559.8	0.00479723
+559.92	0.00479652
+560.04	0.00479581
+560.16	0.00479511
+560.28	0.0047944
+560.4	0.0047937
+560.52	0.00479299
+560.64	0.00479229
+560.76	0.00479158
+560.88	0.00479088
+561	0.00479018
+561.12	0.00478947
+561.24	0.00478877
+561.36	0.00478807
+561.48	0.00478736
+561.6	0.00478666
+561.72	0.00478596
+561.84	0.00478526
+561.96	0.00478456
+562.08	0.00478385
+562.2	0.00478315
+562.32	0.00478245
+562.44	0.00478175
+562.56	0.00478105
+562.68	0.00478035
+562.8	0.00477965
+562.92	0.00477895
+563.04	0.00477826
+563.16	0.00477756
+563.28	0.00477686
+563.4	0.00477616
+563.52	0.00477546
+563.64	0.00477477
+563.76	0.00477407
+563.88	0.00477337
+564	0.00477267
+564.12	0.00477198
+564.24	0.00477128
+564.36	0.00477059
+564.48	0.00476989
+564.6	0.0047692
+564.72	0.0047685
+564.84	0.00476781
+564.96	0.00476711
+565.08	0.00476642
+565.2	0.00476572
+565.32	0.00476503
+565.44	0.00476434
+565.56	0.00476364
+565.68	0.00476295
+565.8	0.00476226
+565.92	0.00476157
+566.04	0.00476087
+566.16	0.00476018
+566.28	0.00475949
+566.4	0.0047588
+566.52	0.00475811
+566.64	0.00475742
+566.76	0.00475673
+566.88	0.00475604
+567	0.00475535
+567.12	0.00475466
+567.24	0.00475397
+567.36	0.00475328
+567.48	0.00475259
+567.6	0.0047519
+567.72	0.00475122
+567.84	0.00475053
+567.96	0.00474984
+568.08	0.00474915
+568.2	0.00474847
+568.32	0.00474778
+568.44	0.00474709
+568.56	0.00474641
+568.68	0.00474572
+568.8	0.00474504
+568.92	0.00474435
+569.04	0.00474367
+569.16	0.00474298
+569.28	0.0047423
+569.4	0.00474161
+569.52	0.00474093
+569.64	0.00474024
+569.76	0.00473956
+569.88	0.00473888
+570	0.0047382
+570.12	0.00473751
+570.24	0.00473683
+570.36	0.00473615
+570.48	0.00473547
+570.6	0.00473478
+570.72	0.0047341
+570.84	0.00473342
+570.96	0.00473274
+571.08	0.00473206
+571.2	0.00473138
+571.32	0.0047307
+571.44	0.00473002
+571.56	0.00472934
+571.68	0.00472866
+571.8	0.00472798
+571.92	0.00472731
+572.04	0.00472663
+572.16	0.00472595
+572.28	0.00472527
+572.4	0.00472459
+572.52	0.00472392
+572.64	0.00472324
+572.76	0.00472256
+572.88	0.00472189
+573	0.00472121
+573.12	0.00472054
+573.24	0.00471986
+573.36	0.00471918
+573.48	0.00471851
+573.6	0.00471783
+573.72	0.00471716
+573.84	0.00471649
+573.96	0.00471581
+574.08	0.00471514
+574.2	0.00471447
+574.32	0.00471379
+574.44	0.00471312
+574.56	0.00471245
+574.68	0.00471177
+574.8	0.0047111
+574.92	0.00471043
+575.04	0.00470976
+575.16	0.00470909
+575.28	0.00470842
+575.4	0.00470775
+575.52	0.00470707
+575.64	0.0047064
+575.76	0.00470573
+575.88	0.00470506
+576	0.0047044
+576.12	0.00470373
+576.24	0.00470306
+576.36	0.00470239
+576.48	0.00470172
+576.6	0.00470105
+576.72	0.00470038
+576.84	0.00469972
+576.96	0.00469905
+577.08	0.00469838
+577.2	0.00469771
+577.32	0.00469705
+577.44	0.00469638
+577.56	0.00469572
+577.68	0.00469505
+577.8	0.00469438
+577.92	0.00469372
+578.04	0.00469305
+578.16	0.00469239
+578.28	0.00469173
+578.4	0.00469106
+578.52	0.0046904
+578.64	0.00468973
+578.76	0.00468907
+578.88	0.00468841
+579	0.00468774
+579.12	0.00468708
+579.24	0.00468642
+579.36	0.00468576
+579.48	0.00468509
+579.6	0.00468443
+579.72	0.00468377
+579.84	0.00468311
+579.96	0.00468245
+580.08	0.00468179
+580.2	0.00468113
+580.32	0.00468047
+580.44	0.00467981
+580.56	0.00467915
+580.68	0.00467849
+580.8	0.00467783
+580.92	0.00467717
+581.04	0.00467651
+581.16	0.00467586
+581.28	0.0046752
+581.4	0.00467454
+581.52	0.00467388
+581.64	0.00467322
+581.76	0.00467257
+581.88	0.00467191
+582	0.00467125
+582.12	0.0046706
+582.24	0.00466994
+582.36	0.00466929
+582.48	0.00466863
+582.6	0.00466798
+582.72	0.00466732
+582.84	0.00466667
+582.96	0.00466601
+583.08	0.00466536
+583.2	0.0046647
+583.32	0.00466405
+583.44	0.0046634
+583.56	0.00466274
+583.68	0.00466209
+583.8	0.00466144
+583.92	0.00466079
+584.04	0.00466013
+584.16	0.00465948
+584.28	0.00465883
+584.4	0.00465818
+584.52	0.00465753
+584.64	0.00465688
+584.76	0.00465623
+584.88	0.00465558
+585	0.00465493
+585.12	0.00465428
+585.24	0.00465363
+585.36	0.00465298
+585.48	0.00465233
+585.6	0.00465168
+585.72	0.00465103
+585.84	0.00465038
+585.96	0.00464973
+586.08	0.00464909
+586.2	0.00464844
+586.32	0.00464779
+586.44	0.00464714
+586.56	0.0046465
+586.68	0.00464585
+586.8	0.0046452
+586.92	0.00464456
+587.04	0.00464391
+587.16	0.00464327
+587.28	0.00464262
+587.4	0.00464198
+587.52	0.00464133
+587.64	0.00464069
+587.76	0.00464004
+587.88	0.0046394
+588	0.00463875
+588.12	0.00463811
+588.24	0.00463747
+588.36	0.00463682
+588.48	0.00463618
+588.6	0.00463554
+588.72	0.0046349
+588.84	0.00463425
+588.96	0.00463361
+589.08	0.00463297
+589.2	0.00463233
+589.32	0.00463169
+589.44	0.00463105
+589.56	0.00463041
+589.68	0.00462977
+589.8	0.00462913
+589.92	0.00462849
+590.04	0.00462785
+590.16	0.00462721
+590.28	0.00462657
+590.4	0.00462593
+590.52	0.00462529
+590.64	0.00462465
+590.76	0.00462401
+590.88	0.00462338
+591	0.00462274
+591.12	0.0046221
+591.24	0.00462146
+591.36	0.00462083
+591.48	0.00462019
+591.6	0.00461955
+591.72	0.00461892
+591.84	0.00461828
+591.96	0.00461765
+592.08	0.00461701
+592.2	0.00461637
+592.32	0.00461574
+592.44	0.0046151
+592.56	0.00461447
+592.68	0.00461384
+592.8	0.0046132
+592.92	0.00461257
+593.04	0.00461193
+593.16	0.0046113
+593.28	0.00461067
+593.4	0.00461004
+593.52	0.0046094
+593.64	0.00460877
+593.76	0.00460814
+593.88	0.00460751
+594	0.00460688
+594.12	0.00460624
+594.24	0.00460561
+594.36	0.00460498
+594.48	0.00460435
+594.6	0.00460372
+594.72	0.00460309
+594.84	0.00460246
+594.96	0.00460183
+595.08	0.0046012
+595.2	0.00460057
+595.32	0.00459994
+595.44	0.00459931
+595.56	0.00459869
+595.68	0.00459806
+595.8	0.00459743
+595.92	0.0045968
+596.04	0.00459617
+596.16	0.00459555
+596.28	0.00459492
+596.4	0.00459429
+596.52	0.00459367
+596.64	0.00459304
+596.76	0.00459241
+596.88	0.00459179
+597	0.00459116
+597.12	0.00459054
+597.24	0.00458991
+597.36	0.00458929
+597.48	0.00458866
+597.6	0.00458804
+597.72	0.00458741
+597.84	0.00458679
+597.96	0.00458617
+598.08	0.00458554
+598.2	0.00458492
+598.32	0.0045843
+598.44	0.00458367
+598.56	0.00458305
+598.68	0.00458243
+598.8	0.00458181
+598.92	0.00458119
+599.04	0.00458056
+599.16	0.00457994
+599.28	0.00457932
+599.4	0.0045787
+599.52	0.00457808
+599.64	0.00457746
+599.76	0.00457684
+599.88	0.00457622
+600	0.0045756
+600.12	0.00457498
+600.24	0.00457436
+600.36	0.00457374
+600.48	0.00457312
+600.6	0.00457251
+600.72	0.00457189
+600.84	0.00457127
+600.96	0.00457065
+601.08	0.00457003
+601.2	0.00456942
+601.32	0.0045688
+601.44	0.00456818
+601.56	0.00456757
+601.68	0.00456695
+601.8	0.00456633
+601.92	0.00456572
+602.04	0.0045651
+602.16	0.00456449
+602.28	0.00456387
+602.4	0.00456326
+602.52	0.00456264
+602.64	0.00456203
+602.76	0.00456141
+602.88	0.0045608
+603	0.00456018
+603.12	0.00455957
+603.24	0.00455896
+603.36	0.00455834
+603.48	0.00455773
+603.6	0.00455712
+603.72	0.00455651
+603.84	0.00455589
+603.96	0.00455528
+604.08	0.00455467
+604.2	0.00455406
+604.32	0.00455345
+604.44	0.00455284
+604.56	0.00455223
+604.68	0.00455161
+604.8	0.004551
+604.92	0.00455039
+605.04	0.00454978
+605.16	0.00454917
+605.28	0.00454856
+605.4	0.00454796
+605.52	0.00454735
+605.64	0.00454674
+605.76	0.00454613
+605.88	0.00454552
+606	0.00454491
+606.12	0.0045443
+606.24	0.0045437
+606.36	0.00454309
+606.48	0.00454248
+606.6	0.00454188
+606.72	0.00454127
+606.84	0.00454066
+606.96	0.00454006
+607.08	0.00453945
+607.2	0.00453884
+607.32	0.00453824
+607.44	0.00453763
+607.56	0.00453703
+607.68	0.00453642
+607.8	0.00453582
+607.92	0.00453521
+608.04	0.00453461
+608.16	0.00453401
+608.28	0.0045334
+608.4	0.0045328
+608.52	0.0045322
+608.64	0.00453159
+608.76	0.00453099
+608.88	0.00453039
+609	0.00452978
+609.12	0.00452918
+609.24	0.00452858
+609.36	0.00452798
+609.48	0.00452738
+609.6	0.00452678
+609.72	0.00452617
+609.84	0.00452557
+609.96	0.00452497
+610.08	0.00452437
+610.2	0.00452377
+610.32	0.00452317
+610.44	0.00452257
+610.56	0.00452197
+610.68	0.00452137
+610.8	0.00452077
+610.92	0.00452018
+611.04	0.00451958
+611.16	0.00451898
+611.28	0.00451838
+611.4	0.00451778
+611.52	0.00451718
+611.64	0.00451659
+611.76	0.00451599
+611.88	0.00451539
+612	0.0045148
+612.12	0.0045142
+612.24	0.0045136
+612.36	0.00451301
+612.48	0.00451241
+612.6	0.00451181
+612.72	0.00451122
+612.84	0.00451062
+612.96	0.00451003
+613.08	0.00450943
+613.2	0.00450884
+613.32	0.00450824
+613.44	0.00450765
+613.56	0.00450706
+613.68	0.00450646
+613.8	0.00450587
+613.92	0.00450528
+614.04	0.00450468
+614.16	0.00450409
+614.28	0.0045035
+614.4	0.00450291
+614.52	0.00450231
+614.64	0.00450172
+614.76	0.00450113
+614.88	0.00450054
+615	0.00449995
+615.12	0.00449936
+615.24	0.00449876
+615.36	0.00449817
+615.48	0.00449758
+615.6	0.00449699
+615.72	0.0044964
+615.84	0.00449581
+615.96	0.00449522
+616.08	0.00449463
+616.2	0.00449404
+616.32	0.00449346
+616.44	0.00449287
+616.56	0.00449228
+616.68	0.00449169
+616.8	0.0044911
+616.92	0.00449051
+617.04	0.00448993
+617.16	0.00448934
+617.28	0.00448875
+617.4	0.00448817
+617.52	0.00448758
+617.64	0.00448699
+617.76	0.00448641
+617.88	0.00448582
+618	0.00448523
+618.12	0.00448465
+618.24	0.00448406
+618.36	0.00448348
+618.48	0.00448289
+618.6	0.00448231
+618.72	0.00448172
+618.84	0.00448114
+618.96	0.00448055
+619.08	0.00447997
+619.2	0.00447939
+619.32	0.0044788
+619.44	0.00447822
+619.56	0.00447764
+619.68	0.00447705
+619.8	0.00447647
+619.92	0.00447589
+620.04	0.00447531
+620.16	0.00447472
+620.28	0.00447414
+620.4	0.00447356
+620.52	0.00447298
+620.64	0.0044724
+620.76	0.00447182
+620.88	0.00447124
+621	0.00447066
+621.12	0.00447008
+621.24	0.0044695
+621.36	0.00446892
+621.48	0.00446834
+621.6	0.00446776
+621.72	0.00446718
+621.84	0.0044666
+621.96	0.00446602
+622.08	0.00446544
+622.2	0.00446486
+622.32	0.00446428
+622.44	0.00446371
+622.56	0.00446313
+622.68	0.00446255
+622.8	0.00446197
+622.92	0.0044614
+623.04	0.00446082
+623.16	0.00446024
+623.28	0.00445967
+623.4	0.00445909
+623.52	0.00445851
+623.64	0.00445794
+623.76	0.00445736
+623.88	0.00445679
+624	0.00445621
+624.12	0.00445564
+624.24	0.00445506
+624.36	0.00445449
+624.48	0.00445391
+624.6	0.00445334
+624.72	0.00445276
+624.84	0.00445219
+624.96	0.00445162
+625.08	0.00445104
+625.2	0.00445047
+625.32	0.0044499
+625.44	0.00444932
+625.56	0.00444875
+625.68	0.00444818
+625.8	0.00444761
+625.92	0.00444704
+626.04	0.00444646
+626.16	0.00444589
+626.28	0.00444532
+626.4	0.00444475
+626.52	0.00444418
+626.64	0.00444361
+626.76	0.00444304
+626.88	0.00444247
+627	0.0044419
+627.12	0.00444133
+627.24	0.00444076
+627.36	0.00444019
+627.48	0.00443962
+627.6	0.00443905
+627.72	0.00443848
+627.84	0.00443791
+627.96	0.00443734
+628.08	0.00443678
+628.2	0.00443621
+628.32	0.00443564
+628.44	0.00443507
+628.56	0.00443451
+628.68	0.00443394
+628.8	0.00443337
+628.92	0.0044328
+629.04	0.00443224
+629.16	0.00443167
+629.28	0.00443111
+629.4	0.00443054
+629.52	0.00442997
+629.64	0.00442941
+629.76	0.00442884
+629.88	0.00442828
+630	0.00442771
+630.12	0.00442715
+630.24	0.00442658
+630.36	0.00442602
+630.48	0.00442546
+630.6	0.00442489
+630.72	0.00442433
+630.84	0.00442376
+630.96	0.0044232
+631.08	0.00442264
+631.2	0.00442208
+631.32	0.00442151
+631.44	0.00442095
+631.56	0.00442039
+631.68	0.00441983
+631.8	0.00441926
+631.92	0.0044187
+632.04	0.00441814
+632.16	0.00441758
+632.28	0.00441702
+632.4	0.00441646
+632.52	0.0044159
+632.64	0.00441534
+632.76	0.00441478
+632.88	0.00441422
+633	0.00441366
+633.12	0.0044131
+633.24	0.00441254
+633.36	0.00441198
+633.48	0.00441142
+633.6	0.00441086
+633.72	0.0044103
+633.84	0.00440974
+633.96	0.00440919
+634.08	0.00440863
+634.2	0.00440807
+634.32	0.00440751
+634.44	0.00440695
+634.56	0.0044064
+634.68	0.00440584
+634.8	0.00440528
+634.92	0.00440473
+635.04	0.00440417
+635.16	0.00440361
+635.28	0.00440306
+635.4	0.0044025
+635.52	0.00440195
+635.64	0.00440139
+635.76	0.00440084
+635.88	0.00440028
+636	0.00439973
+636.12	0.00439917
+636.24	0.00439862
+636.36	0.00439806
+636.48	0.00439751
+636.6	0.00439696
+636.72	0.0043964
+636.84	0.00439585
+636.96	0.00439529
+637.08	0.00439474
+637.2	0.00439419
+637.32	0.00439364
+637.44	0.00439308
+637.56	0.00439253
+637.68	0.00439198
+637.8	0.00439143
+637.92	0.00439088
+638.04	0.00439032
+638.16	0.00438977
+638.28	0.00438922
+638.4	0.00438867
+638.52	0.00438812
+638.64	0.00438757
+638.76	0.00438702
+638.88	0.00438647
+639	0.00438592
+639.12	0.00438537
+639.24	0.00438482
+639.36	0.00438427
+639.48	0.00438372
+639.6	0.00438317
+639.72	0.00438262
+639.84	0.00438208
+639.96	0.00438153
+640.08	0.00438098
+640.2	0.00438043
+640.32	0.00437988
+640.44	0.00437934
+640.56	0.00437879
+640.68	0.00437824
+640.8	0.0043777
+640.92	0.00437715
+641.04	0.0043766
+641.16	0.00437606
+641.28	0.00437551
+641.4	0.00437496
+641.52	0.00437442
+641.64	0.00437387
+641.76	0.00437333
+641.88	0.00437278
+642	0.00437224
+642.12	0.00437169
+642.24	0.00437115
+642.36	0.0043706
+642.48	0.00437006
+642.6	0.00436951
+642.72	0.00436897
+642.84	0.00436843
+642.96	0.00436788
+643.08	0.00436734
+643.2	0.0043668
+643.32	0.00436625
+643.44	0.00436571
+643.56	0.00436517
+643.68	0.00436463
+643.8	0.00436408
+643.92	0.00436354
+644.04	0.004363
+644.16	0.00436246
+644.28	0.00436192
+644.4	0.00436138
+644.52	0.00436084
+644.64	0.0043603
+644.76	0.00435975
+644.88	0.00435921
+645	0.00435867
+645.12	0.00435813
+645.24	0.00435759
+645.36	0.00435705
+645.48	0.00435652
+645.6	0.00435598
+645.72	0.00435544
+645.84	0.0043549
+645.96	0.00435436
+646.08	0.00435382
+646.2	0.00435328
+646.32	0.00435274
+646.44	0.00435221
+646.56	0.00435167
+646.68	0.00435113
+646.8	0.00435059
+646.92	0.00435006
+647.04	0.00434952
+647.16	0.00434898
+647.28	0.00434845
+647.4	0.00434791
+647.52	0.00434737
+647.64	0.00434684
+647.76	0.0043463
+647.88	0.00434577
+648	0.00434523
+648.12	0.0043447
+648.24	0.00434416
+648.36	0.00434363
+648.48	0.00434309
+648.6	0.00434256
+648.72	0.00434202
+648.84	0.00434149
+648.96	0.00434095
+649.08	0.00434042
+649.2	0.00433989
+649.32	0.00433935
+649.44	0.00433882
+649.56	0.00433829
+649.68	0.00433775
+649.8	0.00433722
+649.92	0.00433669
+650.04	0.00433616
+650.16	0.00433563
+650.28	0.00433509
+650.4	0.00433456
+650.52	0.00433403
+650.64	0.0043335
+650.76	0.00433297
+650.88	0.00433244
+651	0.00433191
+651.12	0.00433138
+651.24	0.00433084
+651.36	0.00433031
+651.48	0.00432978
+651.6	0.00432925
+651.72	0.00432873
+651.84	0.0043282
+651.96	0.00432767
+652.08	0.00432714
+652.2	0.00432661
+652.32	0.00432608
+652.44	0.00432555
+652.56	0.00432502
+652.68	0.00432449
+652.8	0.00432397
+652.92	0.00432344
+653.04	0.00432291
+653.16	0.00432238
+653.28	0.00432186
+653.4	0.00432133
+653.52	0.0043208
+653.64	0.00432028
+653.76	0.00431975
+653.88	0.00431922
+654	0.0043187
+654.12	0.00431817
+654.24	0.00431765
+654.36	0.00431712
+654.48	0.00431659
+654.6	0.00431607
+654.72	0.00431554
+654.84	0.00431502
+654.96	0.00431449
+655.08	0.00431397
+655.2	0.00431345
+655.32	0.00431292
+655.44	0.0043124
+655.56	0.00431187
+655.68	0.00431135
+655.8	0.00431083
+655.92	0.0043103
+656.04	0.00430978
+656.16	0.00430926
+656.28	0.00430874
+656.4	0.00430821
+656.52	0.00430769
+656.64	0.00430717
+656.76	0.00430665
+656.88	0.00430612
+657	0.0043056
+657.12	0.00430508
+657.24	0.00430456
+657.36	0.00430404
+657.48	0.00430352
+657.6	0.004303
+657.72	0.00430248
+657.84	0.00430196
+657.96	0.00430144
+658.08	0.00430092
+658.2	0.0043004
+658.32	0.00429988
+658.44	0.00429936
+658.56	0.00429884
+658.68	0.00429832
+658.8	0.0042978
+658.92	0.00429728
+659.04	0.00429676
+659.16	0.00429625
+659.28	0.00429573
+659.4	0.00429521
+659.52	0.00429469
+659.64	0.00429417
+659.76	0.00429366
+659.88	0.00429314
+660	0.00429262
+660.12	0.00429211
+660.24	0.00429159
+660.36	0.00429107
+660.48	0.00429056
+660.6	0.00429004
+660.72	0.00428952
+660.84	0.00428901
+660.96	0.00428849
+661.08	0.00428798
+661.2	0.00428746
+661.32	0.00428695
+661.44	0.00428643
+661.56	0.00428592
+661.68	0.0042854
+661.8	0.00428489
+661.92	0.00428437
+662.04	0.00428386
+662.16	0.00428335
+662.28	0.00428283
+662.4	0.00428232
+662.52	0.00428181
+662.64	0.00428129
+662.76	0.00428078
+662.88	0.00428027
+663	0.00427975
+663.12	0.00427924
+663.24	0.00427873
+663.36	0.00427822
+663.48	0.00427771
+663.6	0.00427719
+663.72	0.00427668
+663.84	0.00427617
+663.96	0.00427566
+664.08	0.00427515
+664.2	0.00427464
+664.32	0.00427413
+664.44	0.00427362
+664.56	0.00427311
+664.68	0.0042726
+664.8	0.00427209
+664.92	0.00427158
+665.04	0.00427107
+665.16	0.00427056
+665.28	0.00427005
+665.4	0.00426954
+665.52	0.00426903
+665.64	0.00426852
+665.76	0.00426801
+665.88	0.0042675
+666	0.004267
+666.12	0.00426649
+666.24	0.00426598
+666.36	0.00426547
+666.48	0.00426496
+666.6	0.00426446
+666.72	0.00426395
+666.84	0.00426344
+666.96	0.00426294
+667.08	0.00426243
+667.2	0.00426192
+667.32	0.00426142
+667.44	0.00426091
+667.56	0.0042604
+667.68	0.0042599
+667.8	0.00425939
+667.92	0.00425889
+668.04	0.00425838
+668.16	0.00425788
+668.28	0.00425737
+668.4	0.00425687
+668.52	0.00425636
+668.64	0.00425586
+668.76	0.00425535
+668.88	0.00425485
+669	0.00425435
+669.12	0.00425384
+669.24	0.00425334
+669.36	0.00425284
+669.48	0.00425233
+669.6	0.00425183
+669.72	0.00425133
+669.84	0.00425082
+669.96	0.00425032
+670.08	0.00424982
+670.2	0.00424932
+670.32	0.00424881
+670.44	0.00424831
+670.56	0.00424781
+670.68	0.00424731
+670.8	0.00424681
+670.92	0.00424631
+671.04	0.00424581
+671.16	0.00424531
+671.28	0.0042448
+671.4	0.0042443
+671.52	0.0042438
+671.64	0.0042433
+671.76	0.0042428
+671.88	0.0042423
+672	0.0042418
+672.12	0.00424131
+672.24	0.00424081
+672.36	0.00424031
+672.48	0.00423981
+672.6	0.00423931
+672.72	0.00423881
+672.84	0.00423831
+672.96	0.00423781
+673.08	0.00423732
+673.2	0.00423682
+673.32	0.00423632
+673.44	0.00423582
+673.56	0.00423533
+673.68	0.00423483
+673.8	0.00423433
+673.92	0.00423383
+674.04	0.00423334
+674.16	0.00423284
+674.28	0.00423234
+674.4	0.00423185
+674.52	0.00423135
+674.64	0.00423086
+674.76	0.00423036
+674.88	0.00422986
+675	0.00422937
+675.12	0.00422887
+675.24	0.00422838
+675.36	0.00422788
+675.48	0.00422739
+675.6	0.00422689
+675.72	0.0042264
+675.84	0.00422591
+675.96	0.00422541
+676.08	0.00422492
+676.2	0.00422442
+676.32	0.00422393
+676.44	0.00422344
+676.56	0.00422294
+676.68	0.00422245
+676.8	0.00422196
+676.92	0.00422147
+677.04	0.00422097
+677.16	0.00422048
+677.28	0.00421999
+677.4	0.0042195
+677.52	0.004219
+677.64	0.00421851
+677.76	0.00421802
+677.88	0.00421753
+678	0.00421704
+678.12	0.00421655
+678.24	0.00421606
+678.36	0.00421557
+678.48	0.00421508
+678.6	0.00421458
+678.72	0.00421409
+678.84	0.0042136
+678.96	0.00421311
+679.08	0.00421263
+679.2	0.00421214
+679.32	0.00421165
+679.44	0.00421116
+679.56	0.00421067
+679.68	0.00421018
+679.8	0.00420969
+679.92	0.0042092
+680.04	0.00420871
+680.16	0.00420822
+680.28	0.00420774
+680.4	0.00420725
+680.52	0.00420676
+680.64	0.00420627
+680.76	0.00420579
+680.88	0.0042053
+681	0.00420481
+681.12	0.00420432
+681.24	0.00420384
+681.36	0.00420335
+681.48	0.00420286
+681.6	0.00420238
+681.72	0.00420189
+681.84	0.00420141
+681.96	0.00420092
+682.08	0.00420044
+682.2	0.00419995
+682.32	0.00419946
+682.44	0.00419898
+682.56	0.00419849
+682.68	0.00419801
+682.8	0.00419752
+682.92	0.00419704
+683.04	0.00419656
+683.16	0.00419607
+683.28	0.00419559
+683.4	0.0041951
+683.52	0.00419462
+683.64	0.00419414
+683.76	0.00419365
+683.88	0.00419317
+684	0.00419269
+684.12	0.0041922
+684.24	0.00419172
+684.36	0.00419124
+684.48	0.00419076
+684.6	0.00419027
+684.72	0.00418979
+684.84	0.00418931
+684.96	0.00418883
+685.08	0.00418835
+685.2	0.00418787
+685.32	0.00418738
+685.44	0.0041869
+685.56	0.00418642
+685.68	0.00418594
+685.8	0.00418546
+685.92	0.00418498
+686.04	0.0041845
+686.16	0.00418402
+686.28	0.00418354
+686.4	0.00418306
+686.52	0.00418258
+686.64	0.0041821
+686.76	0.00418162
+686.88	0.00418114
+687	0.00418066
+687.12	0.00418018
+687.24	0.00417971
+687.36	0.00417923
+687.48	0.00417875
+687.6	0.00417827
+687.72	0.00417779
+687.84	0.00417731
+687.96	0.00417684
+688.08	0.00417636
+688.2	0.00417588
+688.32	0.0041754
+688.44	0.00417493
+688.56	0.00417445
+688.68	0.00417397
+688.8	0.0041735
+688.92	0.00417302
+689.04	0.00417254
+689.16	0.00417207
+689.28	0.00417159
+689.4	0.00417112
+689.52	0.00417064
+689.64	0.00417016
+689.76	0.00416969
+689.88	0.00416921
+690	0.00416874
+690.12	0.00416826
+690.24	0.00416779
+690.36	0.00416732
+690.48	0.00416684
+690.6	0.00416637
+690.72	0.00416589
+690.84	0.00416542
+690.96	0.00416494
+691.08	0.00416447
+691.2	0.004164
+691.32	0.00416352
+691.44	0.00416305
+691.56	0.00416258
+691.68	0.00416211
+691.8	0.00416163
+691.92	0.00416116
+692.04	0.00416069
+692.16	0.00416022
+692.28	0.00415974
+692.4	0.00415927
+692.52	0.0041588
+692.64	0.00415833
+692.76	0.00415786
+692.88	0.00415739
+693	0.00415691
+693.12	0.00415644
+693.24	0.00415597
+693.36	0.0041555
+693.48	0.00415503
+693.6	0.00415456
+693.72	0.00415409
+693.84	0.00415362
+693.96	0.00415315
+694.08	0.00415268
+694.2	0.00415221
+694.32	0.00415174
+694.44	0.00415127
+694.56	0.0041508
+694.68	0.00415033
+694.8	0.00414987
+694.92	0.0041494
+695.04	0.00414893
+695.16	0.00414846
+695.28	0.00414799
+695.4	0.00414752
+695.52	0.00414706
+695.64	0.00414659
+695.76	0.00414612
+695.88	0.00414565
+696	0.00414519
+696.12	0.00414472
+696.24	0.00414425
+696.36	0.00414378
+696.48	0.00414332
+696.6	0.00414285
+696.72	0.00414239
+696.84	0.00414192
+696.96	0.00414145
+697.08	0.00414099
+697.2	0.00414052
+697.32	0.00414006
+697.44	0.00413959
+697.56	0.00413913
+697.68	0.00413866
+697.8	0.0041382
+697.92	0.00413773
+698.04	0.00413727
+698.16	0.0041368
+698.28	0.00413634
+698.4	0.00413587
+698.52	0.00413541
+698.64	0.00413494
+698.76	0.00413448
+698.88	0.00413402
+699	0.00413355
+699.12	0.00413309
+699.24	0.00413263
+699.36	0.00413216
+699.48	0.0041317
+699.6	0.00413124
+699.72	0.00413078
+699.84	0.00413031
+699.96	0.00412985
+700.08	0.00412939
+700.2	0.00412893
+700.32	0.00412847
+700.44	0.004128
+700.56	0.00412754
+700.68	0.00412708
+700.8	0.00412662
+700.92	0.00412616
+701.04	0.0041257
+701.16	0.00412524
+701.28	0.00412478
+701.4	0.00412432
+701.52	0.00412386
+701.64	0.0041234
+701.76	0.00412294
+701.88	0.00412248
+702	0.00412202
+702.12	0.00412156
+702.24	0.0041211
+702.36	0.00412064
+702.48	0.00412018
+702.6	0.00411972
+702.72	0.00411926
+702.84	0.0041188
+702.96	0.00411834
+703.08	0.00411789
+703.2	0.00411743
+703.32	0.00411697
+703.44	0.00411651
+703.56	0.00411605
+703.68	0.0041156
+703.8	0.00411514
+703.92	0.00411468
+704.04	0.00411423
+704.16	0.00411377
+704.28	0.00411331
+704.4	0.00411285
+704.52	0.0041124
+704.64	0.00411194
+704.76	0.00411149
+704.88	0.00411103
+705	0.00411057
+705.12	0.00411012
+705.24	0.00410966
+705.36	0.00410921
+705.48	0.00410875
+705.6	0.0041083
+705.72	0.00410784
+705.84	0.00410739
+705.96	0.00410693
+706.08	0.00410648
+706.2	0.00410602
+706.32	0.00410557
+706.44	0.00410511
+706.56	0.00410466
+706.68	0.00410421
+706.8	0.00410375
+706.92	0.0041033
+707.04	0.00410284
+707.16	0.00410239
+707.28	0.00410194
+707.4	0.00410149
+707.52	0.00410103
+707.64	0.00410058
+707.76	0.00410013
+707.88	0.00409967
+708	0.00409922
+708.12	0.00409877
+708.24	0.00409832
+708.36	0.00409787
+708.48	0.00409742
+708.6	0.00409696
+708.72	0.00409651
+708.84	0.00409606
+708.96	0.00409561
+709.08	0.00409516
+709.2	0.00409471
+709.32	0.00409426
+709.44	0.00409381
+709.56	0.00409336
+709.68	0.00409291
+709.8	0.00409246
+709.92	0.00409201
+710.04	0.00409156
+710.16	0.00409111
+710.28	0.00409066
+710.4	0.00409021
+710.52	0.00408976
+710.64	0.00408931
+710.76	0.00408886
+710.88	0.00408841
+711	0.00408796
+711.12	0.00408752
+711.24	0.00408707
+711.36	0.00408662
+711.48	0.00408617
+711.6	0.00408572
+711.72	0.00408527
+711.84	0.00408483
+711.96	0.00408438
+712.08	0.00408393
+712.2	0.00408349
+712.32	0.00408304
+712.44	0.00408259
+712.56	0.00408214
+712.68	0.0040817
+712.8	0.00408125
+712.92	0.00408081
+713.04	0.00408036
+713.16	0.00407991
+713.28	0.00407947
+713.4	0.00407902
+713.52	0.00407858
+713.64	0.00407813
+713.76	0.00407769
+713.88	0.00407724
+714	0.00407679
+714.12	0.00407635
+714.24	0.00407591
+714.36	0.00407546
+714.48	0.00407502
+714.6	0.00407457
+714.72	0.00407413
+714.84	0.00407368
+714.96	0.00407324
+715.08	0.0040728
+715.2	0.00407235
+715.32	0.00407191
+715.44	0.00407147
+715.56	0.00407102
+715.68	0.00407058
+715.8	0.00407014
+715.92	0.00406969
+716.04	0.00406925
+716.16	0.00406881
+716.28	0.00406837
+716.4	0.00406792
+716.52	0.00406748
+716.64	0.00406704
+716.76	0.0040666
+716.88	0.00406616
+717	0.00406572
+717.12	0.00406527
+717.24	0.00406483
+717.36	0.00406439
+717.48	0.00406395
+717.6	0.00406351
+717.72	0.00406307
+717.84	0.00406263
+717.96	0.00406219
+718.08	0.00406175
+718.2	0.00406131
+718.32	0.00406087
+718.44	0.00406043
+718.56	0.00405999
+718.68	0.00405955
+718.8	0.00405911
+718.92	0.00405867
+719.04	0.00405823
+719.16	0.00405779
+719.28	0.00405735
+719.4	0.00405692
+719.52	0.00405648
+719.64	0.00405604
+719.76	0.0040556
+719.88	0.00405516
+720	0.00405472
+720.12	0.00405429
+720.24	0.00405385
+720.36	0.00405341
+720.48	0.00405297
+720.6	0.00405254
+720.72	0.0040521
+720.84	0.00405166
+720.96	0.00405123
+721.08	0.00405079
+721.2	0.00405035
+721.32	0.00404992
+721.44	0.00404948
+721.56	0.00404904
+721.68	0.00404861
+721.8	0.00404817
+721.92	0.00404774
+722.04	0.0040473
+722.16	0.00404686
+722.28	0.00404643
+722.4	0.00404599
+722.52	0.00404556
+722.64	0.00404512
+722.76	0.00404469
+722.88	0.00404426
+723	0.00404382
+723.12	0.00404339
+723.24	0.00404295
+723.36	0.00404252
+723.48	0.00404208
+723.6	0.00404165
+723.72	0.00404122
+723.84	0.00404078
+723.96	0.00404035
+724.08	0.00403992
+724.2	0.00403948
+724.32	0.00403905
+724.44	0.00403862
+724.56	0.00403818
+724.68	0.00403775
+724.8	0.00403732
+724.92	0.00403689
+725.04	0.00403646
+725.16	0.00403602
+725.28	0.00403559
+725.4	0.00403516
+725.52	0.00403473
+725.64	0.0040343
+725.76	0.00403387
+725.88	0.00403343
+726	0.004033
+726.12	0.00403257
+726.24	0.00403214
+726.36	0.00403171
+726.48	0.00403128
+726.6	0.00403085
+726.72	0.00403042
+726.84	0.00402999
+726.96	0.00402956
+727.08	0.00402913
+727.2	0.0040287
+727.32	0.00402827
+727.44	0.00402784
+727.56	0.00402741
+727.68	0.00402698
+727.8	0.00402655
+727.92	0.00402612
+728.04	0.0040257
+728.16	0.00402527
+728.28	0.00402484
+728.4	0.00402441
+728.52	0.00402398
+728.64	0.00402355
+728.76	0.00402313
+728.88	0.0040227
+729	0.00402227
+729.12	0.00402184
+729.24	0.00402142
+729.36	0.00402099
+729.48	0.00402056
+729.6	0.00402013
+729.72	0.00401971
+729.84	0.00401928
+729.96	0.00401885
+730.08	0.00401843
+730.2	0.004018
+730.32	0.00401758
+730.44	0.00401715
+730.56	0.00401672
+730.68	0.0040163
+730.8	0.00401587
+730.92	0.00401545
+731.04	0.00401502
+731.16	0.0040146
+731.28	0.00401417
+731.4	0.00401375
+731.52	0.00401332
+731.64	0.0040129
+731.76	0.00401247
+731.88	0.00401205
+732	0.00401162
+732.12	0.0040112
+732.24	0.00401077
+732.36	0.00401035
+732.48	0.00400993
+732.6	0.0040095
+732.72	0.00400908
+732.84	0.00400866
+732.96	0.00400823
+733.08	0.00400781
+733.2	0.00400739
+733.32	0.00400696
+733.44	0.00400654
+733.56	0.00400612
+733.68	0.0040057
+733.8	0.00400527
+733.92	0.00400485
+734.04	0.00400443
+734.16	0.00400401
+734.28	0.00400359
+734.4	0.00400316
+734.52	0.00400274
+734.64	0.00400232
+734.76	0.0040019
+734.88	0.00400148
+735	0.00400106
+735.12	0.00400064
+735.24	0.00400022
+735.36	0.0039998
+735.48	0.00399937
+735.6	0.00399895
+735.72	0.00399853
+735.84	0.00399811
+735.96	0.00399769
+736.08	0.00399727
+736.2	0.00399685
+736.32	0.00399643
+736.44	0.00399602
+736.56	0.0039956
+736.68	0.00399518
+736.8	0.00399476
+736.92	0.00399434
+737.04	0.00399392
+737.16	0.0039935
+737.28	0.00399308
+737.4	0.00399266
+737.52	0.00399225
+737.64	0.00399183
+737.76	0.00399141
+737.88	0.00399099
+738	0.00399057
+738.12	0.00399016
+738.24	0.00398974
+738.36	0.00398932
+738.48	0.00398891
+738.6	0.00398849
+738.72	0.00398807
+738.84	0.00398765
+738.96	0.00398724
+739.08	0.00398682
+739.2	0.0039864
+739.32	0.00398599
+739.44	0.00398557
+739.56	0.00398516
+739.68	0.00398474
+739.8	0.00398432
+739.92	0.00398391
+740.04	0.00398349
+740.16	0.00398308
+740.28	0.00398266
+740.4	0.00398225
+740.52	0.00398183
+740.64	0.00398142
+740.76	0.003981
+740.88	0.00398059
+741	0.00398017
+741.12	0.00397976
+741.24	0.00397934
+741.36	0.00397893
+741.48	0.00397852
+741.6	0.0039781
+741.72	0.00397769
+741.84	0.00397728
+741.96	0.00397686
+742.08	0.00397645
+742.2	0.00397604
+742.32	0.00397562
+742.44	0.00397521
+742.56	0.0039748
+742.68	0.00397438
+742.8	0.00397397
+742.92	0.00397356
+743.04	0.00397315
+743.16	0.00397273
+743.28	0.00397232
+743.4	0.00397191
+743.52	0.0039715
+743.64	0.00397109
+743.76	0.00397067
+743.88	0.00397026
+744	0.00396985
+744.12	0.00396944
+744.24	0.00396903
+744.36	0.00396862
+744.48	0.00396821
+744.6	0.0039678
+744.72	0.00396739
+744.84	0.00396698
+744.96	0.00396657
+745.08	0.00396616
+745.2	0.00396575
+745.32	0.00396534
+745.44	0.00396493
+745.56	0.00396452
+745.68	0.00396411
+745.8	0.0039637
+745.92	0.00396329
+746.04	0.00396288
+746.16	0.00396247
+746.28	0.00396206
+746.4	0.00396165
+746.52	0.00396124
+746.64	0.00396084
+746.76	0.00396043
+746.88	0.00396002
+747	0.00395961
+747.12	0.0039592
+747.24	0.00395879
+747.36	0.00395839
+747.48	0.00395798
+747.6	0.00395757
+747.72	0.00395716
+747.84	0.00395676
+747.96	0.00395635
+748.08	0.00395594
+748.2	0.00395554
+748.32	0.00395513
+748.44	0.00395472
+748.56	0.00395432
+748.68	0.00395391
+748.8	0.0039535
+748.92	0.0039531
+749.04	0.00395269
+749.16	0.00395229
+749.28	0.00395188
+749.4	0.00395147
+749.52	0.00395107
+749.64	0.00395066
+749.76	0.00395026
+749.88	0.00394985
+750	0.00394945
+750.12	0.00394904
+750.24	0.00394864
+750.36	0.00394823
+750.48	0.00394783
+750.6	0.00394742
+750.72	0.00394702
+750.84	0.00394662
+750.96	0.00394621
+751.08	0.00394581
+751.2	0.0039454
+751.32	0.003945
+751.44	0.0039446
+751.56	0.00394419
+751.68	0.00394379
+751.8	0.00394339
+751.92	0.00394298
+752.04	0.00394258
+752.16	0.00394218
+752.28	0.00394178
+752.4	0.00394137
+752.52	0.00394097
+752.64	0.00394057
+752.76	0.00394017
+752.88	0.00393976
+753	0.00393936
+753.12	0.00393896
+753.24	0.00393856
+753.36	0.00393816
+753.48	0.00393776
+753.6	0.00393735
+753.72	0.00393695
+753.84	0.00393655
+753.96	0.00393615
+754.08	0.00393575
+754.2	0.00393535
+754.32	0.00393495
+754.44	0.00393455
+754.56	0.00393415
+754.68	0.00393375
+754.8	0.00393335
+754.92	0.00393295
+755.04	0.00393255
+755.16	0.00393215
+755.28	0.00393175
+755.4	0.00393135
+755.52	0.00393095
+755.64	0.00393055
+755.76	0.00393015
+755.88	0.00392975
+756	0.00392935
+756.12	0.00392895
+756.24	0.00392856
+756.36	0.00392816
+756.48	0.00392776
+756.6	0.00392736
+756.72	0.00392696
+756.84	0.00392656
+756.96	0.00392617
+757.08	0.00392577
+757.2	0.00392537
+757.32	0.00392497
+757.44	0.00392458
+757.56	0.00392418
+757.68	0.00392378
+757.8	0.00392338
+757.92	0.00392299
+758.04	0.00392259
+758.16	0.00392219
+758.28	0.0039218
+758.4	0.0039214
+758.52	0.003921
+758.64	0.00392061
+758.76	0.00392021
+758.88	0.00391982
+759	0.00391942
+759.12	0.00391902
+759.24	0.00391863
+759.36	0.00391823
+759.48	0.00391784
+759.6	0.00391744
+759.72	0.00391705
+759.84	0.00391665
+759.96	0.00391626
+760.08	0.00391586
+760.2	0.00391547
+760.32	0.00391507
+760.44	0.00391468
+760.56	0.00391428
+760.68	0.00391389
+760.8	0.0039135
+760.92	0.0039131
+761.04	0.00391271
+761.16	0.00391232
+761.28	0.00391192
+761.4	0.00391153
+761.52	0.00391113
+761.64	0.00391074
+761.76	0.00391035
+761.88	0.00390996
+762	0.00390956
+762.12	0.00390917
+762.24	0.00390878
+762.36	0.00390838
+762.48	0.00390799
+762.6	0.0039076
+762.72	0.00390721
+762.84	0.00390682
+762.96	0.00390642
+763.08	0.00390603
+763.2	0.00390564
+763.32	0.00390525
+763.44	0.00390486
+763.56	0.00390447
+763.68	0.00390407
+763.8	0.00390368
+763.92	0.00390329
+764.04	0.0039029
+764.16	0.00390251
+764.28	0.00390212
+764.4	0.00390173
+764.52	0.00390134
+764.64	0.00390095
+764.76	0.00390056
+764.88	0.00390017
+765	0.00389978
+765.12	0.00389939
+765.24	0.003899
+765.36	0.00389861
+765.48	0.00389822
+765.6	0.00389783
+765.72	0.00389744
+765.84	0.00389705
+765.96	0.00389666
+766.08	0.00389627
+766.2	0.00389589
+766.32	0.0038955
+766.44	0.00389511
+766.56	0.00389472
+766.68	0.00389433
+766.8	0.00389394
+766.92	0.00389356
+767.04	0.00389317
+767.16	0.00389278
+767.28	0.00389239
+767.4	0.003892
+767.52	0.00389162
+767.64	0.00389123
+767.76	0.00389084
+767.88	0.00389046
+768	0.00389007
+768.12	0.00388968
+768.24	0.00388929
+768.36	0.00388891
+768.48	0.00388852
+768.6	0.00388814
+768.72	0.00388775
+768.84	0.00388736
+768.96	0.00388698
+769.08	0.00388659
+769.2	0.0038862
+769.32	0.00388582
+769.44	0.00388543
+769.56	0.00388505
+769.68	0.00388466
+769.8	0.00388428
+769.92	0.00388389
+770.04	0.00388351
+770.16	0.00388312
+770.28	0.00388274
+770.4	0.00388235
+770.52	0.00388197
+770.64	0.00388158
+770.76	0.0038812
+770.88	0.00388082
+771	0.00388043
+771.12	0.00388005
+771.24	0.00387966
+771.36	0.00387928
+771.48	0.0038789
+771.6	0.00387851
+771.72	0.00387813
+771.84	0.00387775
+771.96	0.00387736
+772.08	0.00387698
+772.2	0.0038766
+772.32	0.00387621
+772.44	0.00387583
+772.56	0.00387545
+772.68	0.00387507
+772.8	0.00387468
+772.92	0.0038743
+773.04	0.00387392
+773.16	0.00387354
+773.28	0.00387315
+773.4	0.00387277
+773.52	0.00387239
+773.64	0.00387201
+773.76	0.00387163
+773.88	0.00387125
+774	0.00387086
+774.12	0.00387048
+774.24	0.0038701
+774.36	0.00386972
+774.48	0.00386934
+774.6	0.00386896
+774.72	0.00386858
+774.84	0.0038682
+774.96	0.00386782
+775.08	0.00386744
+775.2	0.00386706
+775.32	0.00386668
+775.44	0.0038663
+775.56	0.00386592
+775.68	0.00386554
+775.8	0.00386516
+775.92	0.00386478
+776.04	0.0038644
+776.16	0.00386402
+776.28	0.00386364
+776.4	0.00386326
+776.52	0.00386288
+776.64	0.00386251
+776.76	0.00386213
+776.88	0.00386175
+777	0.00386137
+777.12	0.00386099
+777.24	0.00386061
+777.36	0.00386024
+777.48	0.00385986
+777.6	0.00385948
+777.72	0.0038591
+777.84	0.00385872
+777.96	0.00385835
+778.08	0.00385797
+778.2	0.00385759
+778.32	0.00385721
+778.44	0.00385684
+778.56	0.00385646
+778.68	0.00385608
+778.8	0.00385571
+778.92	0.00385533
+779.04	0.00385495
+779.16	0.00385458
+779.28	0.0038542
+779.4	0.00385382
+779.52	0.00385345
+779.64	0.00385307
+779.76	0.0038527
+779.88	0.00385232
+780	0.00385195
+780.12	0.00385157
+780.24	0.00385119
+780.36	0.00385082
+780.48	0.00385044
+780.6	0.00385007
+780.72	0.00384969
+780.84	0.00384932
+780.96	0.00384894
+781.08	0.00384857
+781.2	0.00384819
+781.32	0.00384782
+781.44	0.00384745
+781.56	0.00384707
+781.68	0.0038467
+781.8	0.00384632
+781.92	0.00384595
+782.04	0.00384558
+782.16	0.0038452
+782.28	0.00384483
+782.4	0.00384446
+782.52	0.00384408
+782.64	0.00384371
+782.76	0.00384334
+782.88	0.00384296
+783	0.00384259
+783.12	0.00384222
+783.24	0.00384184
+783.36	0.00384147
+783.48	0.0038411
+783.6	0.00384073
+783.72	0.00384035
+783.84	0.00383998
+783.96	0.00383961
+784.08	0.00383924
+784.2	0.00383887
+784.32	0.00383849
+784.44	0.00383812
+784.56	0.00383775
+784.68	0.00383738
+784.8	0.00383701
+784.92	0.00383664
+785.04	0.00383627
+785.16	0.0038359
+785.28	0.00383553
+785.4	0.00383515
+785.52	0.00383478
+785.64	0.00383441
+785.76	0.00383404
+785.88	0.00383367
+786	0.0038333
+786.12	0.00383293
+786.24	0.00383256
+786.36	0.00383219
+786.48	0.00383182
+786.6	0.00383145
+786.72	0.00383108
+786.84	0.00383071
+786.96	0.00383035
+787.08	0.00382998
+787.2	0.00382961
+787.32	0.00382924
+787.44	0.00382887
+787.56	0.0038285
+787.68	0.00382813
+787.8	0.00382776
+787.92	0.00382739
+788.04	0.00382703
+788.16	0.00382666
+788.28	0.00382629
+788.4	0.00382592
+788.52	0.00382555
+788.64	0.00382519
+788.76	0.00382482
+788.88	0.00382445
+789	0.00382408
+789.12	0.00382372
+789.24	0.00382335
+789.36	0.00382298
+789.48	0.00382262
+789.6	0.00382225
+789.72	0.00382188
+789.84	0.00382151
+789.96	0.00382115
+790.08	0.00382078
+790.2	0.00382042
+790.32	0.00382005
+790.44	0.00381968
+790.56	0.00381932
+790.68	0.00381895
+790.8	0.00381858
+790.92	0.00381822
+791.04	0.00381785
+791.16	0.00381749
+791.28	0.00381712
+791.4	0.00381676
+791.52	0.00381639
+791.64	0.00381603
+791.76	0.00381566
+791.88	0.0038153
+792	0.00381493
+792.12	0.00381457
+792.24	0.0038142
+792.36	0.00381384
+792.48	0.00381347
+792.6	0.00381311
+792.72	0.00381275
+792.84	0.00381238
+792.96	0.00381202
+793.08	0.00381165
+793.2	0.00381129
+793.32	0.00381093
+793.44	0.00381056
+793.56	0.0038102
+793.68	0.00380984
+793.8	0.00380947
+793.92	0.00380911
+794.04	0.00380875
+794.16	0.00380838
+794.28	0.00380802
+794.4	0.00380766
+794.52	0.0038073
+794.64	0.00380693
+794.76	0.00380657
+794.88	0.00380621
+795	0.00380585
+795.12	0.00380548
+795.24	0.00380512
+795.36	0.00380476
+795.48	0.0038044
+795.6	0.00380404
+795.72	0.00380368
+795.84	0.00380331
+795.96	0.00380295
+796.08	0.00380259
+796.2	0.00380223
+796.32	0.00380187
+796.44	0.00380151
+796.56	0.00380115
+796.68	0.00380079
+796.8	0.00380043
+796.92	0.00380007
+797.04	0.00379971
+797.16	0.00379935
+797.28	0.00379899
+797.4	0.00379863
+797.52	0.00379827
+797.64	0.00379791
+797.76	0.00379755
+797.88	0.00379719
+798	0.00379683
+798.12	0.00379647
+798.24	0.00379611
+798.36	0.00379575
+798.48	0.00379539
+798.6	0.00379503
+798.72	0.00379467
+798.84	0.00379431
+798.96	0.00379395
+799.08	0.0037936
+799.2	0.00379324
+799.32	0.00379288
+799.44	0.00379252
+799.56	0.00379216
+799.68	0.0037918
+799.8	0.00379145
+799.92	0.00379109
+800.04	0.00379073
+800.16	0.00379037
+800.28	0.00379002
+800.4	0.00378966
+800.52	0.0037893
+800.64	0.00378894
+800.76	0.00378859
+800.88	0.00378823
+801	0.00378787
+801.12	0.00378752
+801.24	0.00378716
+801.36	0.0037868
+801.48	0.00378645
+801.6	0.00378609
+801.72	0.00378573
+801.84	0.00378538
+801.96	0.00378502
+802.08	0.00378466
+802.2	0.00378431
+802.32	0.00378395
+802.44	0.0037836
+802.56	0.00378324
+802.68	0.00378289
+802.8	0.00378253
+802.92	0.00378218
+803.04	0.00378182
+803.16	0.00378147
+803.28	0.00378111
+803.4	0.00378076
+803.52	0.0037804
+803.64	0.00378005
+803.76	0.00377969
+803.88	0.00377934
+804	0.00377898
+804.12	0.00377863
+804.24	0.00377827
+804.36	0.00377792
+804.48	0.00377757
+804.6	0.00377721
+804.72	0.00377686
+804.84	0.0037765
+804.96	0.00377615
+805.08	0.0037758
+805.2	0.00377544
+805.32	0.00377509
+805.44	0.00377474
+805.56	0.00377438
+805.68	0.00377403
+805.8	0.00377368
+805.92	0.00377333
+806.04	0.00377297
+806.16	0.00377262
+806.28	0.00377227
+806.4	0.00377192
+806.52	0.00377156
+806.64	0.00377121
+806.76	0.00377086
+806.88	0.00377051
+807	0.00377016
+807.12	0.0037698
+807.24	0.00376945
+807.36	0.0037691
+807.48	0.00376875
+807.6	0.0037684
+807.72	0.00376805
+807.84	0.0037677
+807.96	0.00376734
+808.08	0.00376699
+808.2	0.00376664
+808.32	0.00376629
+808.44	0.00376594
+808.56	0.00376559
+808.68	0.00376524
+808.8	0.00376489
+808.92	0.00376454
+809.04	0.00376419
+809.16	0.00376384
+809.28	0.00376349
+809.4	0.00376314
+809.52	0.00376279
+809.64	0.00376244
+809.76	0.00376209
+809.88	0.00376174
+810	0.00376139
+810.12	0.00376104
+810.24	0.00376069
+810.36	0.00376034
+810.48	0.00376
+810.6	0.00375965
+810.72	0.0037593
+810.84	0.00375895
+810.96	0.0037586
+811.08	0.00375825
+811.2	0.0037579
+811.32	0.00375756
+811.44	0.00375721
+811.56	0.00375686
+811.68	0.00375651
+811.8	0.00375616
+811.92	0.00375582
+812.04	0.00375547
+812.16	0.00375512
+812.28	0.00375477
+812.4	0.00375443
+812.52	0.00375408
+812.64	0.00375373
+812.76	0.00375338
+812.88	0.00375304
+813	0.00375269
+813.12	0.00375234
+813.24	0.003752
+813.36	0.00375165
+813.48	0.0037513
+813.6	0.00375096
+813.72	0.00375061
+813.84	0.00375027
+813.96	0.00374992
+814.08	0.00374957
+814.2	0.00374923
+814.32	0.00374888
+814.44	0.00374854
+814.56	0.00374819
+814.68	0.00374784
+814.8	0.0037475
+814.92	0.00374715
+815.04	0.00374681
+815.16	0.00374646
+815.28	0.00374612
+815.4	0.00374577
+815.52	0.00374543
+815.64	0.00374508
+815.76	0.00374474
+815.88	0.0037444
+816	0.00374405
+816.12	0.00374371
+816.24	0.00374336
+816.36	0.00374302
+816.48	0.00374267
+816.6	0.00374233
+816.72	0.00374199
+816.84	0.00374164
+816.96	0.0037413
+817.08	0.00374096
+817.2	0.00374061
+817.32	0.00374027
+817.44	0.00373993
+817.56	0.00373958
+817.68	0.00373924
+817.8	0.0037389
+817.92	0.00373855
+818.04	0.00373821
+818.16	0.00373787
+818.28	0.00373753
+818.4	0.00373718
+818.52	0.00373684
+818.64	0.0037365
+818.76	0.00373616
+818.88	0.00373581
+819	0.00373547
+819.12	0.00373513
+819.24	0.00373479
+819.36	0.00373445
+819.48	0.0037341
+819.6	0.00373376
+819.72	0.00373342
+819.84	0.00373308
+819.96	0.00373274
+820.08	0.0037324
+820.2	0.00373206
+820.32	0.00373172
+820.44	0.00373138
+820.56	0.00373104
+820.68	0.0037307
+820.8	0.00373035
+820.92	0.00373001
+821.04	0.00372967
+821.16	0.00372933
+821.28	0.00372899
+821.4	0.00372865
+821.52	0.00372831
+821.64	0.00372797
+821.76	0.00372763
+821.88	0.0037273
+822	0.00372696
+822.12	0.00372662
+822.24	0.00372628
+822.36	0.00372594
+822.48	0.0037256
+822.6	0.00372526
+822.72	0.00372492
+822.84	0.00372458
+822.96	0.00372424
+823.08	0.0037239
+823.2	0.00372357
+823.32	0.00372323
+823.44	0.00372289
+823.56	0.00372255
+823.68	0.00372221
+823.8	0.00372188
+823.92	0.00372154
+824.04	0.0037212
+824.16	0.00372086
+824.28	0.00372052
+824.4	0.00372019
+824.52	0.00371985
+824.64	0.00371951
+824.76	0.00371917
+824.88	0.00371884
+825	0.0037185
+825.12	0.00371816
+825.24	0.00371783
+825.36	0.00371749
+825.48	0.00371715
+825.6	0.00371682
+825.72	0.00371648
+825.84	0.00371614
+825.96	0.00371581
+826.08	0.00371547
+826.2	0.00371513
+826.32	0.0037148
+826.44	0.00371446
+826.56	0.00371413
+826.68	0.00371379
+826.8	0.00371345
+826.92	0.00371312
+827.04	0.00371278
+827.16	0.00371245
+827.28	0.00371211
+827.4	0.00371178
+827.52	0.00371144
+827.64	0.00371111
+827.76	0.00371077
+827.88	0.00371044
+828	0.0037101
+828.12	0.00370977
+828.24	0.00370943
+828.36	0.0037091
+828.48	0.00370877
+828.6	0.00370843
+828.72	0.0037081
+828.84	0.00370776
+828.96	0.00370743
+829.08	0.00370709
+829.2	0.00370676
+829.32	0.00370643
+829.44	0.00370609
+829.56	0.00370576
+829.68	0.00370543
+829.8	0.00370509
+829.92	0.00370476
+830.04	0.00370443
+830.16	0.00370409
+830.28	0.00370376
+830.4	0.00370343
+830.52	0.0037031
+830.64	0.00370276
+830.76	0.00370243
+830.88	0.0037021
+831	0.00370177
+831.12	0.00370143
+831.24	0.0037011
+831.36	0.00370077
+831.48	0.00370044
+831.6	0.0037001
+831.72	0.00369977
+831.84	0.00369944
+831.96	0.00369911
+832.08	0.00369878
+832.2	0.00369845
+832.32	0.00369811
+832.44	0.00369778
+832.56	0.00369745
+832.68	0.00369712
+832.8	0.00369679
+832.92	0.00369646
+833.04	0.00369613
+833.16	0.0036958
+833.28	0.00369547
+833.4	0.00369514
+833.52	0.00369481
+833.64	0.00369448
+833.76	0.00369415
+833.88	0.00369381
+834	0.00369348
+834.12	0.00369315
+834.24	0.00369282
+834.36	0.00369249
+834.48	0.00369217
+834.6	0.00369184
+834.72	0.00369151
+834.84	0.00369118
+834.96	0.00369085
+835.08	0.00369052
+835.2	0.00369019
+835.32	0.00368986
+835.44	0.00368953
+835.56	0.0036892
+835.68	0.00368887
+835.8	0.00368854
+835.92	0.00368822
+836.04	0.00368789
+836.16	0.00368756
+836.28	0.00368723
+836.4	0.0036869
+836.52	0.00368657
+836.64	0.00368625
+836.76	0.00368592
+836.88	0.00368559
+837	0.00368526
+837.12	0.00368493
+837.24	0.00368461
+837.36	0.00368428
+837.48	0.00368395
+837.6	0.00368362
+837.72	0.0036833
+837.84	0.00368297
+837.96	0.00368264
+838.08	0.00368232
+838.2	0.00368199
+838.32	0.00368166
+838.44	0.00368133
+838.56	0.00368101
+838.68	0.00368068
+838.8	0.00368036
+838.92	0.00368003
+839.04	0.0036797
+839.16	0.00367938
+839.28	0.00367905
+839.4	0.00367872
+839.52	0.0036784
+839.64	0.00367807
+839.76	0.00367775
+839.88	0.00367742
+840	0.0036771
+840.12	0.00367677
+840.24	0.00367644
+840.36	0.00367612
+840.48	0.00367579
+840.6	0.00367547
+840.72	0.00367514
+840.84	0.00367482
+840.96	0.00367449
+841.08	0.00367417
+841.2	0.00367384
+841.32	0.00367352
+841.44	0.0036732
+841.56	0.00367287
+841.68	0.00367255
+841.8	0.00367222
+841.92	0.0036719
+842.04	0.00367157
+842.16	0.00367125
+842.28	0.00367093
+842.4	0.0036706
+842.52	0.00367028
+842.64	0.00366996
+842.76	0.00366963
+842.88	0.00366931
+843	0.00366899
+843.12	0.00366866
+843.24	0.00366834
+843.36	0.00366802
+843.48	0.00366769
+843.6	0.00366737
+843.72	0.00366705
+843.84	0.00366672
+843.96	0.0036664
+844.08	0.00366608
+844.2	0.00366576
+844.32	0.00366543
+844.44	0.00366511
+844.56	0.00366479
+844.68	0.00366447
+844.8	0.00366415
+844.92	0.00366382
+845.04	0.0036635
+845.16	0.00366318
+845.28	0.00366286
+845.4	0.00366254
+845.52	0.00366222
+845.64	0.00366189
+845.76	0.00366157
+845.88	0.00366125
+846	0.00366093
+846.12	0.00366061
+846.24	0.00366029
+846.36	0.00365997
+846.48	0.00365965
+846.6	0.00365933
+846.72	0.00365901
+846.84	0.00365869
+846.96	0.00365836
+847.08	0.00365804
+847.2	0.00365772
+847.32	0.0036574
+847.44	0.00365708
+847.56	0.00365676
+847.68	0.00365644
+847.8	0.00365612
+847.92	0.0036558
+848.04	0.00365548
+848.16	0.00365517
+848.28	0.00365485
+848.4	0.00365453
+848.52	0.00365421
+848.64	0.00365389
+848.76	0.00365357
+848.88	0.00365325
+849	0.00365293
+849.12	0.00365261
+849.24	0.00365229
+849.36	0.00365197
+849.48	0.00365166
+849.6	0.00365134
+849.72	0.00365102
+849.84	0.0036507
+849.96	0.00365038
+850.08	0.00365006
+850.2	0.00364975
+850.32	0.00364943
+850.44	0.00364911
+850.56	0.00364879
+850.68	0.00364847
+850.8	0.00364816
+850.92	0.00364784
+851.04	0.00364752
+851.16	0.0036472
+851.28	0.00364689
+851.4	0.00364657
+851.52	0.00364625
+851.64	0.00364594
+851.76	0.00364562
+851.88	0.0036453
+852	0.00364499
+852.12	0.00364467
+852.24	0.00364435
+852.36	0.00364404
+852.48	0.00364372
+852.6	0.0036434
+852.72	0.00364309
+852.84	0.00364277
+852.96	0.00364245
+853.08	0.00364214
+853.2	0.00364182
+853.32	0.00364151
+853.44	0.00364119
+853.56	0.00364088
+853.68	0.00364056
+853.8	0.00364024
+853.92	0.00363993
+854.04	0.00363961
+854.16	0.0036393
+854.28	0.00363898
+854.4	0.00363867
+854.52	0.00363835
+854.64	0.00363804
+854.76	0.00363772
+854.88	0.00363741
+855	0.00363709
+855.12	0.00363678
+855.24	0.00363647
+855.36	0.00363615
+855.48	0.00363584
+855.6	0.00363552
+855.72	0.00363521
+855.84	0.00363489
+855.96	0.00363458
+856.08	0.00363427
+856.2	0.00363395
+856.32	0.00363364
+856.44	0.00363333
+856.56	0.00363301
+856.68	0.0036327
+856.8	0.00363239
+856.92	0.00363207
+857.04	0.00363176
+857.16	0.00363145
+857.28	0.00363113
+857.4	0.00363082
+857.52	0.00363051
+857.64	0.00363019
+857.76	0.00362988
+857.88	0.00362957
+858	0.00362926
+858.12	0.00362894
+858.24	0.00362863
+858.36	0.00362832
+858.48	0.00362801
+858.6	0.0036277
+858.72	0.00362738
+858.84	0.00362707
+858.96	0.00362676
+859.08	0.00362645
+859.2	0.00362614
+859.32	0.00362582
+859.44	0.00362551
+859.56	0.0036252
+859.68	0.00362489
+859.8	0.00362458
+859.92	0.00362427
+860.04	0.00362396
+860.16	0.00362365
+860.28	0.00362334
+860.4	0.00362302
+860.52	0.00362271
+860.64	0.0036224
+860.76	0.00362209
+860.88	0.00362178
+861	0.00362147
+861.12	0.00362116
+861.24	0.00362085
+861.36	0.00362054
+861.48	0.00362023
+861.6	0.00361992
+861.72	0.00361961
+861.84	0.0036193
+861.96	0.00361899
+862.08	0.00361868
+862.2	0.00361837
+862.32	0.00361806
+862.44	0.00361775
+862.56	0.00361744
+862.68	0.00361713
+862.8	0.00361683
+862.92	0.00361652
+863.04	0.00361621
+863.16	0.0036159
+863.28	0.00361559
+863.4	0.00361528
+863.52	0.00361497
+863.64	0.00361466
+863.76	0.00361436
+863.88	0.00361405
+864	0.00361374
+864.12	0.00361343
+864.24	0.00361312
+864.36	0.00361281
+864.48	0.00361251
+864.6	0.0036122
+864.72	0.00361189
+864.84	0.00361158
+864.96	0.00361128
+865.08	0.00361097
+865.2	0.00361066
+865.32	0.00361035
+865.44	0.00361005
+865.56	0.00360974
+865.68	0.00360943
+865.8	0.00360912
+865.92	0.00360882
+866.04	0.00360851
+866.16	0.0036082
+866.28	0.0036079
+866.4	0.00360759
+866.52	0.00360728
+866.64	0.00360698
+866.76	0.00360667
+866.88	0.00360636
+867	0.00360606
+867.12	0.00360575
+867.24	0.00360545
+867.36	0.00360514
+867.48	0.00360483
+867.6	0.00360453
+867.72	0.00360422
+867.84	0.00360392
+867.96	0.00360361
+868.08	0.0036033
+868.2	0.003603
+868.32	0.00360269
+868.44	0.00360239
+868.56	0.00360208
+868.68	0.00360178
+868.8	0.00360147
+868.92	0.00360117
+869.04	0.00360086
+869.16	0.00360056
+869.28	0.00360025
+869.4	0.00359995
+869.52	0.00359965
+869.64	0.00359934
+869.76	0.00359904
+869.88	0.00359873
+870	0.00359843
+870.12	0.00359812
+870.24	0.00359782
+870.36	0.00359752
+870.48	0.00359721
+870.6	0.00359691
+870.72	0.0035966
+870.84	0.0035963
+870.96	0.003596
+871.08	0.00359569
+871.2	0.00359539
+871.32	0.00359509
+871.44	0.00359478
+871.56	0.00359448
+871.68	0.00359418
+871.8	0.00359387
+871.92	0.00359357
+872.04	0.00359327
+872.16	0.00359297
+872.28	0.00359266
+872.4	0.00359236
+872.52	0.00359206
+872.64	0.00359176
+872.76	0.00359145
+872.88	0.00359115
+873	0.00359085
+873.12	0.00359055
+873.24	0.00359024
+873.36	0.00358994
+873.48	0.00358964
+873.6	0.00358934
+873.72	0.00358904
+873.84	0.00358874
+873.96	0.00358843
+874.08	0.00358813
+874.2	0.00358783
+874.32	0.00358753
+874.44	0.00358723
+874.56	0.00358693
+874.68	0.00358663
+874.8	0.00358633
+874.92	0.00358602
+875.04	0.00358572
+875.16	0.00358542
+875.28	0.00358512
+875.4	0.00358482
+875.52	0.00358452
+875.64	0.00358422
+875.76	0.00358392
+875.88	0.00358362
+876	0.00358332
+876.12	0.00358302
+876.24	0.00358272
+876.36	0.00358242
+876.48	0.00358212
+876.6	0.00358182
+876.72	0.00358152
+876.84	0.00358122
+876.96	0.00358092
+877.08	0.00358062
+877.2	0.00358032
+877.32	0.00358002
+877.44	0.00357972
+877.56	0.00357942
+877.68	0.00357913
+877.8	0.00357883
+877.92	0.00357853
+878.04	0.00357823
+878.16	0.00357793
+878.28	0.00357763
+878.4	0.00357733
+878.52	0.00357703
+878.64	0.00357674
+878.76	0.00357644
+878.88	0.00357614
+879	0.00357584
+879.12	0.00357554
+879.24	0.00357524
+879.36	0.00357495
+879.48	0.00357465
+879.6	0.00357435
+879.72	0.00357405
+879.84	0.00357376
+879.96	0.00357346
+880.08	0.00357316
+880.2	0.00357286
+880.32	0.00357257
+880.44	0.00357227
+880.56	0.00357197
+880.68	0.00357167
+880.8	0.00357138
+880.92	0.00357108
+881.04	0.00357078
+881.16	0.00357049
+881.28	0.00357019
+881.4	0.00356989
+881.52	0.0035696
+881.64	0.0035693
+881.76	0.003569
+881.88	0.00356871
+882	0.00356841
+882.12	0.00356812
+882.24	0.00356782
+882.36	0.00356752
+882.48	0.00356723
+882.6	0.00356693
+882.72	0.00356664
+882.84	0.00356634
+882.96	0.00356604
+883.08	0.00356575
+883.2	0.00356545
+883.32	0.00356516
+883.44	0.00356486
+883.56	0.00356457
+883.68	0.00356427
+883.8	0.00356398
+883.92	0.00356368
+884.04	0.00356339
+884.16	0.00356309
+884.28	0.0035628
+884.4	0.0035625
+884.52	0.00356221
+884.64	0.00356191
+884.76	0.00356162
+884.88	0.00356132
+885	0.00356103
+885.12	0.00356074
+885.24	0.00356044
+885.36	0.00356015
+885.48	0.00355985
+885.6	0.00355956
+885.72	0.00355927
+885.84	0.00355897
+885.96	0.00355868
+886.08	0.00355838
+886.2	0.00355809
+886.32	0.0035578
+886.44	0.0035575
+886.56	0.00355721
+886.68	0.00355692
+886.8	0.00355662
+886.92	0.00355633
+887.04	0.00355604
+887.16	0.00355575
+887.28	0.00355545
+887.4	0.00355516
+887.52	0.00355487
+887.64	0.00355458
+887.76	0.00355428
+887.88	0.00355399
+888	0.0035537
+888.12	0.00355341
+888.24	0.00355311
+888.36	0.00355282
+888.48	0.00355253
+888.6	0.00355224
+888.72	0.00355194
+888.84	0.00355165
+888.96	0.00355136
+889.08	0.00355107
+889.2	0.00355078
+889.32	0.00355049
+889.44	0.0035502
+889.56	0.0035499
+889.68	0.00354961
+889.8	0.00354932
+889.92	0.00354903
+890.04	0.00354874
+890.16	0.00354845
+890.28	0.00354816
+890.4	0.00354787
+890.52	0.00354758
+890.64	0.00354728
+890.76	0.00354699
+890.88	0.0035467
+891	0.00354641
+891.12	0.00354612
+891.24	0.00354583
+891.36	0.00354554
+891.48	0.00354525
+891.6	0.00354496
+891.72	0.00354467
+891.84	0.00354438
+891.96	0.00354409
+892.08	0.0035438
+892.2	0.00354351
+892.32	0.00354322
+892.44	0.00354293
+892.56	0.00354264
+892.68	0.00354235
+892.8	0.00354206
+892.92	0.00354178
+893.04	0.00354149
+893.16	0.0035412
+893.28	0.00354091
+893.4	0.00354062
+893.52	0.00354033
+893.64	0.00354004
+893.76	0.00353975
+893.88	0.00353946
+894	0.00353918
+894.12	0.00353889
+894.24	0.0035386
+894.36	0.00353831
+894.48	0.00353802
+894.6	0.00353773
+894.72	0.00353745
+894.84	0.00353716
+894.96	0.00353687
+895.08	0.00353658
+895.2	0.00353629
+895.32	0.00353601
+895.44	0.00353572
+895.56	0.00353543
+895.68	0.00353514
+895.8	0.00353486
+895.92	0.00353457
+896.04	0.00353428
+896.16	0.00353399
+896.28	0.00353371
+896.4	0.00353342
+896.52	0.00353313
+896.64	0.00353285
+896.76	0.00353256
+896.88	0.00353227
+897	0.00353199
+897.12	0.0035317
+897.24	0.00353141
+897.36	0.00353113
+897.48	0.00353084
+897.6	0.00353055
+897.72	0.00353027
+897.84	0.00352998
+897.96	0.00352969
+898.08	0.00352941
+898.2	0.00352912
+898.32	0.00352884
+898.44	0.00352855
+898.56	0.00352826
+898.68	0.00352798
+898.8	0.00352769
+898.92	0.00352741
+899.04	0.00352712
+899.16	0.00352684
+899.28	0.00352655
+899.4	0.00352627
+899.52	0.00352598
+899.64	0.0035257
+899.76	0.00352541
+899.88	0.00352513
+900	0.00352484
+900.12	0.00352456
+900.24	0.00352427
+900.36	0.00352399
+900.48	0.0035237
+900.6	0.00352342
+900.72	0.00352313
+900.84	0.00352285
+900.96	0.00352257
+901.08	0.00352228
+901.2	0.003522
+901.32	0.00352171
+901.44	0.00352143
+901.56	0.00352114
+901.68	0.00352086
+901.8	0.00352058
+901.92	0.00352029
+902.04	0.00352001
+902.16	0.00351973
+902.28	0.00351944
+902.4	0.00351916
+902.52	0.00351888
+902.64	0.00351859
+902.76	0.00351831
+902.88	0.00351803
+903	0.00351774
+903.12	0.00351746
+903.24	0.00351718
+903.36	0.00351689
+903.48	0.00351661
+903.6	0.00351633
+903.72	0.00351605
+903.84	0.00351576
+903.96	0.00351548
+904.08	0.0035152
+904.2	0.00351492
+904.32	0.00351463
+904.44	0.00351435
+904.56	0.00351407
+904.68	0.00351379
+904.8	0.00351351
+904.92	0.00351322
+905.04	0.00351294
+905.16	0.00351266
+905.28	0.00351238
+905.4	0.0035121
+905.52	0.00351182
+905.64	0.00351154
+905.76	0.00351125
+905.88	0.00351097
+906	0.00351069
+906.12	0.00351041
+906.24	0.00351013
+906.36	0.00350985
+906.48	0.00350957
+906.6	0.00350929
+906.72	0.00350901
+906.84	0.00350872
+906.96	0.00350844
+907.08	0.00350816
+907.2	0.00350788
+907.32	0.0035076
+907.44	0.00350732
+907.56	0.00350704
+907.68	0.00350676
+907.8	0.00350648
+907.92	0.0035062
+908.04	0.00350592
+908.16	0.00350564
+908.28	0.00350536
+908.4	0.00350508
+908.52	0.0035048
+908.64	0.00350452
+908.76	0.00350424
+908.88	0.00350396
+909	0.00350368
+909.12	0.0035034
+909.24	0.00350313
+909.36	0.00350285
+909.48	0.00350257
+909.6	0.00350229
+909.72	0.00350201
+909.84	0.00350173
+909.96	0.00350145
+910.08	0.00350117
+910.2	0.00350089
+910.32	0.00350062
+910.44	0.00350034
+910.56	0.00350006
+910.68	0.00349978
+910.8	0.0034995
+910.92	0.00349922
+911.04	0.00349895
+911.16	0.00349867
+911.28	0.00349839
+911.4	0.00349811
+911.52	0.00349783
+911.64	0.00349756
+911.76	0.00349728
+911.88	0.003497
+912	0.00349672
+912.12	0.00349644
+912.24	0.00349617
+912.36	0.00349589
+912.48	0.00349561
+912.6	0.00349533
+912.72	0.00349506
+912.84	0.00349478
+912.96	0.0034945
+913.08	0.00349423
+913.2	0.00349395
+913.32	0.00349367
+913.44	0.0034934
+913.56	0.00349312
+913.68	0.00349284
+913.8	0.00349257
+913.92	0.00349229
+914.04	0.00349201
+914.16	0.00349174
+914.28	0.00349146
+914.4	0.00349118
+914.52	0.00349091
+914.64	0.00349063
+914.76	0.00349036
+914.88	0.00349008
+915	0.0034898
+915.12	0.00348953
+915.24	0.00348925
+915.36	0.00348898
+915.48	0.0034887
+915.6	0.00348843
+915.72	0.00348815
+915.84	0.00348787
+915.96	0.0034876
+916.08	0.00348732
+916.2	0.00348705
+916.32	0.00348677
+916.44	0.0034865
+916.56	0.00348622
+916.68	0.00348595
+916.8	0.00348567
+916.92	0.0034854
+917.04	0.00348513
+917.16	0.00348485
+917.28	0.00348458
+917.4	0.0034843
+917.52	0.00348403
+917.64	0.00348375
+917.76	0.00348348
+917.88	0.0034832
+918	0.00348293
+918.12	0.00348266
+918.24	0.00348238
+918.36	0.00348211
+918.48	0.00348183
+918.6	0.00348156
+918.72	0.00348129
+918.84	0.00348101
+918.96	0.00348074
+919.08	0.00348047
+919.2	0.00348019
+919.32	0.00347992
+919.44	0.00347965
+919.56	0.00347937
+919.68	0.0034791
+919.8	0.00347883
+919.92	0.00347855
+920.04	0.00347828
+920.16	0.00347801
+920.28	0.00347773
+920.4	0.00347746
+920.52	0.00347719
+920.64	0.00347692
+920.76	0.00347664
+920.88	0.00347637
+921	0.0034761
+921.12	0.00347583
+921.24	0.00347556
+921.36	0.00347528
+921.48	0.00347501
+921.6	0.00347474
+921.72	0.00347447
+921.84	0.00347419
+921.96	0.00347392
+922.08	0.00347365
+922.2	0.00347338
+922.32	0.00347311
+922.44	0.00347284
+922.56	0.00347256
+922.68	0.00347229
+922.8	0.00347202
+922.92	0.00347175
+923.04	0.00347148
+923.16	0.00347121
+923.28	0.00347094
+923.4	0.00347067
+923.52	0.0034704
+923.64	0.00347012
+923.76	0.00346985
+923.88	0.00346958
+924	0.00346931
+924.12	0.00346904
+924.24	0.00346877
+924.36	0.0034685
+924.48	0.00346823
+924.6	0.00346796
+924.72	0.00346769
+924.84	0.00346742
+924.96	0.00346715
+925.08	0.00346688
+925.2	0.00346661
+925.32	0.00346634
+925.44	0.00346607
+925.56	0.0034658
+925.68	0.00346553
+925.8	0.00346526
+925.92	0.00346499
+926.04	0.00346472
+926.16	0.00346445
+926.28	0.00346418
+926.4	0.00346391
+926.52	0.00346364
+926.64	0.00346337
+926.76	0.00346311
+926.88	0.00346284
+927	0.00346257
+927.12	0.0034623
+927.24	0.00346203
+927.36	0.00346176
+927.48	0.00346149
+927.6	0.00346122
+927.72	0.00346096
+927.84	0.00346069
+927.96	0.00346042
+928.08	0.00346015
+928.2	0.00345988
+928.32	0.00345961
+928.44	0.00345935
+928.56	0.00345908
+928.68	0.00345881
+928.8	0.00345854
+928.92	0.00345827
+929.04	0.00345801
+929.16	0.00345774
+929.28	0.00345747
+929.4	0.0034572
+929.52	0.00345693
+929.64	0.00345667
+929.76	0.0034564
+929.88	0.00345613
+930	0.00345587
+930.12	0.0034556
+930.24	0.00345533
+930.36	0.00345506
+930.48	0.0034548
+930.6	0.00345453
+930.72	0.00345426
+930.84	0.003454
+930.96	0.00345373
+931.08	0.00345346
+931.2	0.0034532
+931.32	0.00345293
+931.44	0.00345266
+931.56	0.0034524
+931.68	0.00345213
+931.8	0.00345186
+931.92	0.0034516
+932.04	0.00345133
+932.16	0.00345107
+932.28	0.0034508
+932.4	0.00345053
+932.52	0.00345027
+932.64	0.00345
+932.76	0.00344974
+932.88	0.00344947
+933	0.0034492
+933.12	0.00344894
+933.24	0.00344867
+933.36	0.00344841
+933.48	0.00344814
+933.6	0.00344788
+933.72	0.00344761
+933.84	0.00344735
+933.96	0.00344708
+934.08	0.00344682
+934.2	0.00344655
+934.32	0.00344629
+934.44	0.00344602
+934.56	0.00344576
+934.68	0.00344549
+934.8	0.00344523
+934.92	0.00344496
+935.04	0.0034447
+935.16	0.00344443
+935.28	0.00344417
+935.4	0.00344391
+935.52	0.00344364
+935.64	0.00344338
+935.76	0.00344311
+935.88	0.00344285
+936	0.00344259
+936.12	0.00344232
+936.24	0.00344206
+936.36	0.00344179
+936.48	0.00344153
+936.6	0.00344127
+936.72	0.003441
+936.84	0.00344074
+936.96	0.00344048
+937.08	0.00344021
+937.2	0.00343995
+937.32	0.00343969
+937.44	0.00343942
+937.56	0.00343916
+937.68	0.0034389
+937.8	0.00343863
+937.92	0.00343837
+938.04	0.00343811
+938.16	0.00343785
+938.28	0.00343758
+938.4	0.00343732
+938.52	0.00343706
+938.64	0.0034368
+938.76	0.00343653
+938.88	0.00343627
+939	0.00343601
+939.12	0.00343575
+939.24	0.00343548
+939.36	0.00343522
+939.48	0.00343496
+939.6	0.0034347
+939.72	0.00343444
+939.84	0.00343417
+939.96	0.00343391
+940.08	0.00343365
+940.2	0.00343339
+940.32	0.00343313
+940.44	0.00343287
+940.56	0.0034326
+940.68	0.00343234
+940.8	0.00343208
+940.92	0.00343182
+941.04	0.00343156
+941.16	0.0034313
+941.28	0.00343104
+941.4	0.00343078
+941.52	0.00343051
+941.64	0.00343025
+941.76	0.00342999
+941.88	0.00342973
+942	0.00342947
+942.12	0.00342921
+942.24	0.00342895
+942.36	0.00342869
+942.48	0.00342843
+942.6	0.00342817
+942.72	0.00342791
+942.84	0.00342765
+942.96	0.00342739
+943.08	0.00342713
+943.2	0.00342687
+943.32	0.00342661
+943.44	0.00342635
+943.56	0.00342609
+943.68	0.00342583
+943.8	0.00342557
+943.92	0.00342531
+944.04	0.00342505
+944.16	0.00342479
+944.28	0.00342453
+944.4	0.00342427
+944.52	0.00342401
+944.64	0.00342375
+944.76	0.00342349
+944.88	0.00342323
+945	0.00342297
+945.12	0.00342272
+945.24	0.00342246
+945.36	0.0034222
+945.48	0.00342194
+945.6	0.00342168
+945.72	0.00342142
+945.84	0.00342116
+945.96	0.0034209
+946.08	0.00342065
+946.2	0.00342039
+946.32	0.00342013
+946.44	0.00341987
+946.56	0.00341961
+946.68	0.00341935
+946.8	0.0034191
+946.92	0.00341884
+947.04	0.00341858
+947.16	0.00341832
+947.28	0.00341806
+947.4	0.00341781
+947.52	0.00341755
+947.64	0.00341729
+947.76	0.00341703
+947.88	0.00341678
+948	0.00341652
+948.12	0.00341626
+948.24	0.003416
+948.36	0.00341575
+948.48	0.00341549
+948.6	0.00341523
+948.72	0.00341497
+948.84	0.00341472
+948.96	0.00341446
+949.08	0.0034142
+949.2	0.00341395
+949.32	0.00341369
+949.44	0.00341343
+949.56	0.00341318
+949.68	0.00341292
+949.8	0.00341266
+949.92	0.00341241
+950.04	0.00341215
+950.16	0.00341189
+950.28	0.00341164
+950.4	0.00341138
+950.52	0.00341112
+950.64	0.00341087
+950.76	0.00341061
+950.88	0.00341036
+951	0.0034101
+951.12	0.00340985
+951.24	0.00340959
+951.36	0.00340933
+951.48	0.00340908
+951.6	0.00340882
+951.72	0.00340857
+951.84	0.00340831
+951.96	0.00340806
+952.08	0.0034078
+952.2	0.00340755
+952.32	0.00340729
+952.44	0.00340703
+952.56	0.00340678
+952.68	0.00340652
+952.8	0.00340627
+952.92	0.00340601
+953.04	0.00340576
+953.16	0.00340551
+953.28	0.00340525
+953.4	0.003405
+953.52	0.00340474
+953.64	0.00340449
+953.76	0.00340423
+953.88	0.00340398
+954	0.00340372
+954.12	0.00340347
+954.24	0.00340321
+954.36	0.00340296
+954.48	0.00340271
+954.6	0.00340245
+954.72	0.0034022
+954.84	0.00340194
+954.96	0.00340169
+955.08	0.00340144
+955.2	0.00340118
+955.32	0.00340093
+955.44	0.00340068
+955.56	0.00340042
+955.68	0.00340017
+955.8	0.00339992
+955.92	0.00339966
+956.04	0.00339941
+956.16	0.00339916
+956.28	0.0033989
+956.4	0.00339865
+956.52	0.0033984
+956.64	0.00339814
+956.76	0.00339789
+956.88	0.00339764
+957	0.00339738
+957.12	0.00339713
+957.24	0.00339688
+957.36	0.00339663
+957.48	0.00339637
+957.6	0.00339612
+957.72	0.00339587
+957.84	0.00339562
+957.96	0.00339536
+958.08	0.00339511
+958.2	0.00339486
+958.32	0.00339461
+958.44	0.00339436
+958.56	0.0033941
+958.68	0.00339385
+958.8	0.0033936
+958.92	0.00339335
+959.04	0.0033931
+959.16	0.00339284
+959.28	0.00339259
+959.4	0.00339234
+959.52	0.00339209
+959.64	0.00339184
+959.76	0.00339159
+959.88	0.00339134
+960	0.00339108
+960.12	0.00339083
+960.24	0.00339058
+960.36	0.00339033
+960.48	0.00339008
+960.6	0.00338983
+960.72	0.00338958
+960.84	0.00338933
+960.96	0.00338908
+961.08	0.00338883
+961.2	0.00338858
+961.32	0.00338832
+961.44	0.00338807
+961.56	0.00338782
+961.68	0.00338757
+961.8	0.00338732
+961.92	0.00338707
+962.04	0.00338682
+962.16	0.00338657
+962.28	0.00338632
+962.4	0.00338607
+962.52	0.00338582
+962.64	0.00338557
+962.76	0.00338532
+962.88	0.00338507
+963	0.00338482
+963.12	0.00338457
+963.24	0.00338432
+963.36	0.00338407
+963.48	0.00338382
+963.6	0.00338358
+963.72	0.00338333
+963.84	0.00338308
+963.96	0.00338283
+964.08	0.00338258
+964.2	0.00338233
+964.32	0.00338208
+964.44	0.00338183
+964.56	0.00338158
+964.68	0.00338133
+964.8	0.00338108
+964.92	0.00338084
+965.04	0.00338059
+965.16	0.00338034
+965.28	0.00338009
+965.4	0.00337984
+965.52	0.00337959
+965.64	0.00337934
+965.76	0.0033791
+965.88	0.00337885
+966	0.0033786
+966.12	0.00337835
+966.24	0.0033781
+966.36	0.00337785
+966.48	0.00337761
+966.6	0.00337736
+966.72	0.00337711
+966.84	0.00337686
+966.96	0.00337662
+967.08	0.00337637
+967.2	0.00337612
+967.32	0.00337587
+967.44	0.00337563
+967.56	0.00337538
+967.68	0.00337513
+967.8	0.00337488
+967.92	0.00337464
+968.04	0.00337439
+968.16	0.00337414
+968.28	0.00337389
+968.4	0.00337365
+968.52	0.0033734
+968.64	0.00337315
+968.76	0.00337291
+968.88	0.00337266
+969	0.00337241
+969.12	0.00337217
+969.24	0.00337192
+969.36	0.00337167
+969.48	0.00337143
+969.6	0.00337118
+969.72	0.00337093
+969.84	0.00337069
+969.96	0.00337044
+970.08	0.0033702
+970.2	0.00336995
+970.32	0.0033697
+970.44	0.00336946
+970.56	0.00336921
+970.68	0.00336896
+970.8	0.00336872
+970.92	0.00336847
+971.04	0.00336823
+971.16	0.00336798
+971.28	0.00336774
+971.4	0.00336749
+971.52	0.00336725
+971.64	0.003367
+971.76	0.00336675
+971.88	0.00336651
+972	0.00336626
+972.12	0.00336602
+972.24	0.00336577
+972.36	0.00336553
+972.48	0.00336528
+972.6	0.00336504
+972.72	0.00336479
+972.84	0.00336455
+972.96	0.0033643
+973.08	0.00336406
+973.2	0.00336381
+973.32	0.00336357
+973.44	0.00336333
+973.56	0.00336308
+973.68	0.00336284
+973.8	0.00336259
+973.92	0.00336235
+974.04	0.0033621
+974.16	0.00336186
+974.28	0.00336162
+974.4	0.00336137
+974.52	0.00336113
+974.64	0.00336088
+974.76	0.00336064
+974.88	0.0033604
+975	0.00336015
+975.12	0.00335991
+975.24	0.00335966
+975.36	0.00335942
+975.48	0.00335918
+975.6	0.00335893
+975.72	0.00335869
+975.84	0.00335845
+975.96	0.0033582
+976.08	0.00335796
+976.2	0.00335772
+976.32	0.00335747
+976.44	0.00335723
+976.56	0.00335699
+976.68	0.00335675
+976.8	0.0033565
+976.92	0.00335626
+977.04	0.00335602
+977.16	0.00335577
+977.28	0.00335553
+977.4	0.00335529
+977.52	0.00335505
+977.64	0.0033548
+977.76	0.00335456
+977.88	0.00335432
+978	0.00335408
+978.12	0.00335383
+978.24	0.00335359
+978.36	0.00335335
+978.48	0.00335311
+978.6	0.00335287
+978.72	0.00335262
+978.84	0.00335238
+978.96	0.00335214
+979.08	0.0033519
+979.2	0.00335166
+979.32	0.00335141
+979.44	0.00335117
+979.56	0.00335093
+979.68	0.00335069
+979.8	0.00335045
+979.92	0.00335021
+980.04	0.00334997
+980.16	0.00334972
+980.28	0.00334948
+980.4	0.00334924
+980.52	0.003349
+980.64	0.00334876
+980.76	0.00334852
+980.88	0.00334828
+981	0.00334804
+981.12	0.0033478
+981.24	0.00334756
+981.36	0.00334731
+981.48	0.00334707
+981.6	0.00334683
+981.72	0.00334659
+981.84	0.00334635
+981.96	0.00334611
+982.08	0.00334587
+982.2	0.00334563
+982.32	0.00334539
+982.44	0.00334515
+982.56	0.00334491
+982.68	0.00334467
+982.8	0.00334443
+982.92	0.00334419
+983.04	0.00334395
+983.16	0.00334371
+983.28	0.00334347
+983.4	0.00334323
+983.52	0.00334299
+983.64	0.00334275
+983.76	0.00334251
+983.88	0.00334227
+984	0.00334203
+984.12	0.00334179
+984.24	0.00334156
+984.36	0.00334132
+984.48	0.00334108
+984.6	0.00334084
+984.72	0.0033406
+984.84	0.00334036
+984.96	0.00334012
+985.08	0.00333988
+985.2	0.00333964
+985.32	0.0033394
+985.44	0.00333917
+985.56	0.00333893
+985.68	0.00333869
+985.8	0.00333845
+985.92	0.00333821
+986.04	0.00333797
+986.16	0.00333773
+986.28	0.0033375
+986.4	0.00333726
+986.52	0.00333702
+986.64	0.00333678
+986.76	0.00333654
+986.88	0.0033363
+987	0.00333607
+987.12	0.00333583
+987.24	0.00333559
+987.36	0.00333535
+987.48	0.00333511
+987.6	0.00333488
+987.72	0.00333464
+987.84	0.0033344
+987.96	0.00333416
+988.08	0.00333393
+988.2	0.00333369
+988.32	0.00333345
+988.44	0.00333321
+988.56	0.00333298
+988.68	0.00333274
+988.8	0.0033325
+988.92	0.00333227
+989.04	0.00333203
+989.16	0.00333179
+989.28	0.00333155
+989.4	0.00333132
+989.52	0.00333108
+989.64	0.00333084
+989.76	0.00333061
+989.88	0.00333037
+990	0.00333013
+990.12	0.0033299
+990.24	0.00332966
+990.36	0.00332942
+990.48	0.00332919
+990.6	0.00332895
+990.72	0.00332872
+990.84	0.00332848
+990.96	0.00332824
+991.08	0.00332801
+991.2	0.00332777
+991.32	0.00332754
+991.44	0.0033273
+991.56	0.00332706
+991.68	0.00332683
+991.8	0.00332659
+991.92	0.00332636
+992.04	0.00332612
+992.16	0.00332588
+992.28	0.00332565
+992.4	0.00332541
+992.52	0.00332518
+992.64	0.00332494
+992.76	0.00332471
+992.88	0.00332447
+993	0.00332424
+993.12	0.003324
+993.24	0.00332377
+993.36	0.00332353
+993.48	0.0033233
+993.6	0.00332306
+993.72	0.00332283
+993.84	0.00332259
+993.96	0.00332236
+994.08	0.00332212
+994.2	0.00332189
+994.32	0.00332165
+994.44	0.00332142
+994.56	0.00332118
+994.68	0.00332095
+994.8	0.00332072
+994.92	0.00332048
+995.04	0.00332025
+995.16	0.00332001
+995.28	0.00331978
+995.4	0.00331954
+995.52	0.00331931
+995.64	0.00331908
+995.76	0.00331884
+995.88	0.00331861
+996	0.00331837
+996.12	0.00331814
+996.24	0.00331791
+996.36	0.00331767
+996.48	0.00331744
+996.6	0.00331721
+996.72	0.00331697
+996.84	0.00331674
+996.96	0.00331651
+997.08	0.00331627
+997.2	0.00331604
+997.32	0.00331581
+997.44	0.00331557
+997.56	0.00331534
+997.68	0.00331511
+997.8	0.00331487
+997.92	0.00331464
+998.04	0.00331441
+998.16	0.00331417
+998.28	0.00331394
+998.4	0.00331371
+998.52	0.00331348
+998.64	0.00331324
+998.76	0.00331301
+998.88	0.00331278
+999	0.00331255
+999.12	0.00331231
+999.24	0.00331208
+999.36	0.00331185
+999.48	0.00331162
+999.6	0.00331138
+999.72	0.00331115
+999.84	0.00331092
+999.96	0.00331069
+1000.08	0.00331046
+1000.2	0.00331022
+1000.32	0.00330999
+1000.44	0.00330976
+1000.56	0.00330953
+1000.68	0.0033093
+1000.8	0.00330907
+1000.92	0.00330883
+1001.04	0.0033086
+1001.16	0.00330837
+1001.28	0.00330814
+1001.4	0.00330791
+1001.52	0.00330768
+1001.64	0.00330745
+1001.76	0.00330721
+1001.88	0.00330698
+1002	0.00330675
+1002.12	0.00330652
+1002.24	0.00330629
+1002.36	0.00330606
+1002.48	0.00330583
+1002.6	0.0033056
+1002.72	0.00330537
+1002.84	0.00330514
+1002.96	0.00330491
+1003.08	0.00330467
+1003.2	0.00330444
+1003.32	0.00330421
+1003.44	0.00330398
+1003.56	0.00330375
+1003.68	0.00330352
+1003.8	0.00330329
+1003.92	0.00330306
+1004.04	0.00330283
+1004.16	0.0033026
+1004.28	0.00330237
+1004.4	0.00330214
+1004.52	0.00330191
+1004.64	0.00330168
+1004.76	0.00330145
+1004.88	0.00330122
+1005	0.00330099
+1005.12	0.00330076
+1005.24	0.00330053
+1005.36	0.0033003
+1005.48	0.00330007
+1005.6	0.00329984
+1005.72	0.00329961
+1005.84	0.00329939
+1005.96	0.00329916
+1006.08	0.00329893
+1006.2	0.0032987
+1006.32	0.00329847
+1006.44	0.00329824
+1006.56	0.00329801
+1006.68	0.00329778
+1006.8	0.00329755
+1006.92	0.00329732
+1007.04	0.00329709
+1007.16	0.00329687
+1007.28	0.00329664
+1007.4	0.00329641
+1007.52	0.00329618
+1007.64	0.00329595
+1007.76	0.00329572
+1007.88	0.00329549
+1008	0.00329527
+1008.12	0.00329504
+1008.24	0.00329481
+1008.36	0.00329458
+1008.48	0.00329435
+1008.6	0.00329412
+1008.72	0.0032939
+1008.84	0.00329367
+1008.96	0.00329344
+1009.08	0.00329321
+1009.2	0.00329298
+1009.32	0.00329276
+1009.44	0.00329253
+1009.56	0.0032923
+1009.68	0.00329207
+1009.8	0.00329185
+1009.92	0.00329162
+1010.04	0.00329139
+1010.16	0.00329116
+1010.28	0.00329094
+1010.4	0.00329071
+1010.52	0.00329048
+1010.64	0.00329025
+1010.76	0.00329003
+1010.88	0.0032898
+1011	0.00328957
+1011.12	0.00328934
+1011.24	0.00328912
+1011.36	0.00328889
+1011.48	0.00328866
+1011.6	0.00328844
+1011.72	0.00328821
+1011.84	0.00328798
+1011.96	0.00328776
+1012.08	0.00328753
+1012.2	0.0032873
+1012.32	0.00328708
+1012.44	0.00328685
+1012.56	0.00328662
+1012.68	0.0032864
+1012.8	0.00328617
+1012.92	0.00328595
+1013.04	0.00328572
+1013.16	0.00328549
+1013.28	0.00328527
+1013.4	0.00328504
+1013.52	0.00328482
+1013.64	0.00328459
+1013.76	0.00328436
+1013.88	0.00328414
+1014	0.00328391
+1014.12	0.00328369
+1014.24	0.00328346
+1014.36	0.00328323
+1014.48	0.00328301
+1014.6	0.00328278
+1014.72	0.00328256
+1014.84	0.00328233
+1014.96	0.00328211
+1015.08	0.00328188
+1015.2	0.00328166
+1015.32	0.00328143
+1015.44	0.00328121
+1015.56	0.00328098
+1015.68	0.00328076
+1015.8	0.00328053
+1015.92	0.00328031
+1016.04	0.00328008
+1016.16	0.00327986
+1016.28	0.00327963
+1016.4	0.00327941
+1016.52	0.00327918
+1016.64	0.00327896
+1016.76	0.00327873
+1016.88	0.00327851
+1017	0.00327828
+1017.12	0.00327806
+1017.24	0.00327784
+1017.36	0.00327761
+1017.48	0.00327739
+1017.6	0.00327716
+1017.72	0.00327694
+1017.84	0.00327671
+1017.96	0.00327649
+1018.08	0.00327627
+1018.2	0.00327604
+1018.32	0.00327582
+1018.44	0.00327559
+1018.56	0.00327537
+1018.68	0.00327515
+1018.8	0.00327492
+1018.92	0.0032747
+1019.04	0.00327448
+1019.16	0.00327425
+1019.28	0.00327403
+1019.4	0.00327381
+1019.52	0.00327358
+1019.64	0.00327336
+1019.76	0.00327314
+1019.88	0.00327291
+1020	0.00327269
+1020.12	0.00327247
+1020.24	0.00327224
+1020.36	0.00327202
+1020.48	0.0032718
+1020.6	0.00327157
+1020.72	0.00327135
+1020.84	0.00327113
+1020.96	0.0032709
+1021.08	0.00327068
+1021.2	0.00327046
+1021.32	0.00327024
+1021.44	0.00327001
+1021.56	0.00326979
+1021.68	0.00326957
+1021.8	0.00326935
+1021.92	0.00326912
+1022.04	0.0032689
+1022.16	0.00326868
+1022.28	0.00326846
+1022.4	0.00326824
+1022.52	0.00326801
+1022.64	0.00326779
+1022.76	0.00326757
+1022.88	0.00326735
+1023	0.00326713
+1023.12	0.0032669
+1023.24	0.00326668
+1023.36	0.00326646
+1023.48	0.00326624
+1023.6	0.00326602
+1023.72	0.0032658
+1023.84	0.00326557
+1023.96	0.00326535
+1024.08	0.00326513
+1024.2	0.00326491
+1024.32	0.00326469
+1024.44	0.00326447
+1024.56	0.00326425
+1024.68	0.00326402
+1024.8	0.0032638
+1024.92	0.00326358
+1025.04	0.00326336
+1025.16	0.00326314
+1025.28	0.00326292
+1025.4	0.0032627
+1025.52	0.00326248
+1025.64	0.00326226
+1025.76	0.00326204
+1025.88	0.00326181
+1026	0.00326159
+1026.12	0.00326137
+1026.24	0.00326115
+1026.36	0.00326093
+1026.48	0.00326071
+1026.6	0.00326049
+1026.72	0.00326027
+1026.84	0.00326005
+1026.96	0.00325983
+1027.08	0.00325961
+1027.2	0.00325939
+1027.32	0.00325917
+1027.44	0.00325895
+1027.56	0.00325873
+1027.68	0.00325851
+1027.8	0.00325829
+1027.92	0.00325807
+1028.04	0.00325785
+1028.16	0.00325763
+1028.28	0.00325741
+1028.4	0.00325719
+1028.52	0.00325697
+1028.64	0.00325675
+1028.76	0.00325653
+1028.88	0.00325631
+1029	0.00325609
+1029.12	0.00325588
+1029.24	0.00325566
+1029.36	0.00325544
+1029.48	0.00325522
+1029.6	0.003255
+1029.72	0.00325478
+1029.84	0.00325456
+1029.96	0.00325434
+1030.08	0.00325412
+1030.2	0.0032539
+1030.32	0.00325368
+1030.44	0.00325347
+1030.56	0.00325325
+1030.68	0.00325303
+1030.8	0.00325281
+1030.92	0.00325259
+1031.04	0.00325237
+1031.16	0.00325215
+1031.28	0.00325194
+1031.4	0.00325172
+1031.52	0.0032515
+1031.64	0.00325128
+1031.76	0.00325106
+1031.88	0.00325084
+1032	0.00325063
+1032.12	0.00325041
+1032.24	0.00325019
+1032.36	0.00324997
+1032.48	0.00324975
+1032.6	0.00324954
+1032.72	0.00324932
+1032.84	0.0032491
+1032.96	0.00324888
+1033.08	0.00324867
+1033.2	0.00324845
+1033.32	0.00324823
+1033.44	0.00324801
+1033.56	0.00324779
+1033.68	0.00324758
+1033.8	0.00324736
+1033.92	0.00324714
+1034.04	0.00324693
+1034.16	0.00324671
+1034.28	0.00324649
+1034.4	0.00324627
+1034.52	0.00324606
+1034.64	0.00324584
+1034.76	0.00324562
+1034.88	0.00324541
+1035	0.00324519
+1035.12	0.00324497
+1035.24	0.00324476
+1035.36	0.00324454
+1035.48	0.00324432
+1035.6	0.00324411
+1035.72	0.00324389
+1035.84	0.00324367
+1035.96	0.00324346
+1036.08	0.00324324
+1036.2	0.00324302
+1036.32	0.00324281
+1036.44	0.00324259
+1036.56	0.00324237
+1036.68	0.00324216
+1036.8	0.00324194
+1036.92	0.00324173
+1037.04	0.00324151
+1037.16	0.00324129
+1037.28	0.00324108
+1037.4	0.00324086
+1037.52	0.00324065
+1037.64	0.00324043
+1037.76	0.00324021
+1037.88	0.00324
+1038	0.00323978
+1038.12	0.00323957
+1038.24	0.00323935
+1038.36	0.00323914
+1038.48	0.00323892
+1038.6	0.0032387
+1038.72	0.00323849
+1038.84	0.00323827
+1038.96	0.00323806
+1039.08	0.00323784
+1039.2	0.00323763
+1039.32	0.00323741
+1039.44	0.0032372
+1039.56	0.00323698
+1039.68	0.00323677
+1039.8	0.00323655
+1039.92	0.00323634
+1040.04	0.00323612
+1040.16	0.00323591
+1040.28	0.00323569
+1040.4	0.00323548
+1040.52	0.00323526
+1040.64	0.00323505
+1040.76	0.00323484
+1040.88	0.00323462
+1041	0.00323441
+1041.12	0.00323419
+1041.24	0.00323398
+1041.36	0.00323376
+1041.48	0.00323355
+1041.6	0.00323334
+1041.72	0.00323312
+1041.84	0.00323291
+1041.96	0.00323269
+1042.08	0.00323248
+1042.2	0.00323226
+1042.32	0.00323205
+1042.44	0.00323184
+1042.56	0.00323162
+1042.68	0.00323141
+1042.8	0.0032312
+1042.92	0.00323098
+1043.04	0.00323077
+1043.16	0.00323055
+1043.28	0.00323034
+1043.4	0.00323013
+1043.52	0.00322991
+1043.64	0.0032297
+1043.76	0.00322949
+1043.88	0.00322927
+1044	0.00322906
+1044.12	0.00322885
+1044.24	0.00322863
+1044.36	0.00322842
+1044.48	0.00322821
+1044.6	0.003228
+1044.72	0.00322778
+1044.84	0.00322757
+1044.96	0.00322736
+1045.08	0.00322714
+1045.2	0.00322693
+1045.32	0.00322672
+1045.44	0.00322651
+1045.56	0.00322629
+1045.68	0.00322608
+1045.8	0.00322587
+1045.92	0.00322566
+1046.04	0.00322544
+1046.16	0.00322523
+1046.28	0.00322502
+1046.4	0.00322481
+1046.52	0.00322459
+1046.64	0.00322438
+1046.76	0.00322417
+1046.88	0.00322396
+1047	0.00322375
+1047.12	0.00322353
+1047.24	0.00322332
+1047.36	0.00322311
+1047.48	0.0032229
+1047.6	0.00322269
+1047.72	0.00322247
+1047.84	0.00322226
+1047.96	0.00322205
+1048.08	0.00322184
+1048.2	0.00322163
+1048.32	0.00322142
+1048.44	0.0032212
+1048.56	0.00322099
+1048.68	0.00322078
+1048.8	0.00322057
+1048.92	0.00322036
+1049.04	0.00322015
+1049.16	0.00321994
+1049.28	0.00321973
+1049.4	0.00321951
+1049.52	0.0032193
+1049.64	0.00321909
+1049.76	0.00321888
+1049.88	0.00321867
+1050	0.00321846
+1050.12	0.00321825
+1050.24	0.00321804
+1050.36	0.00321783
+1050.48	0.00321762
+1050.6	0.00321741
+1050.72	0.0032172
+1050.84	0.00321699
+1050.96	0.00321677
+1051.08	0.00321656
+1051.2	0.00321635
+1051.32	0.00321614
+1051.44	0.00321593
+1051.56	0.00321572
+1051.68	0.00321551
+1051.8	0.0032153
+1051.92	0.00321509
+1052.04	0.00321488
+1052.16	0.00321467
+1052.28	0.00321446
+1052.4	0.00321425
+1052.52	0.00321404
+1052.64	0.00321383
+1052.76	0.00321362
+1052.88	0.00321341
+1053	0.0032132
+1053.12	0.00321299
+1053.24	0.00321278
+1053.36	0.00321258
+1053.48	0.00321237
+1053.6	0.00321216
+1053.72	0.00321195
+1053.84	0.00321174
+1053.96	0.00321153
+1054.08	0.00321132
+1054.2	0.00321111
+1054.32	0.0032109
+1054.44	0.00321069
+1054.56	0.00321048
+1054.68	0.00321027
+1054.8	0.00321006
+1054.92	0.00320986
+1055.04	0.00320965
+1055.16	0.00320944
+1055.28	0.00320923
+1055.4	0.00320902
+1055.52	0.00320881
+1055.64	0.0032086
+1055.76	0.00320839
+1055.88	0.00320819
+1056	0.00320798
+1056.12	0.00320777
+1056.24	0.00320756
+1056.36	0.00320735
+1056.48	0.00320714
+1056.6	0.00320694
+1056.72	0.00320673
+1056.84	0.00320652
+1056.96	0.00320631
+1057.08	0.0032061
+1057.2	0.00320589
+1057.32	0.00320569
+1057.44	0.00320548
+1057.56	0.00320527
+1057.68	0.00320506
+1057.8	0.00320485
+1057.92	0.00320465
+1058.04	0.00320444
+1058.16	0.00320423
+1058.28	0.00320402
+1058.4	0.00320382
+1058.52	0.00320361
+1058.64	0.0032034
+1058.76	0.00320319
+1058.88	0.00320299
+1059	0.00320278
+1059.12	0.00320257
+1059.24	0.00320236
+1059.36	0.00320216
+1059.48	0.00320195
+1059.6	0.00320174
+1059.72	0.00320154
+1059.84	0.00320133
+1059.96	0.00320112
+1060.08	0.00320092
+1060.2	0.00320071
+1060.32	0.0032005
+1060.44	0.00320029
+1060.56	0.00320009
+1060.68	0.00319988
+1060.8	0.00319967
+1060.92	0.00319947
+1061.04	0.00319926
+1061.16	0.00319905
+1061.28	0.00319885
+1061.4	0.00319864
+1061.52	0.00319844
+1061.64	0.00319823
+1061.76	0.00319802
+1061.88	0.00319782
+1062	0.00319761
+1062.12	0.0031974
+1062.24	0.0031972
+1062.36	0.00319699
+1062.48	0.00319679
+1062.6	0.00319658
+1062.72	0.00319637
+1062.84	0.00319617
+1062.96	0.00319596
+1063.08	0.00319576
+1063.2	0.00319555
+1063.32	0.00319535
+1063.44	0.00319514
+1063.56	0.00319493
+1063.68	0.00319473
+1063.8	0.00319452
+1063.92	0.00319432
+1064.04	0.00319411
+1064.16	0.00319391
+1064.28	0.0031937
+1064.4	0.0031935
+1064.52	0.00319329
+1064.64	0.00319309
+1064.76	0.00319288
+1064.88	0.00319268
+1065	0.00319247
+1065.12	0.00319227
+1065.24	0.00319206
+1065.36	0.00319186
+1065.48	0.00319165
+1065.6	0.00319145
+1065.72	0.00319124
+1065.84	0.00319104
+1065.96	0.00319083
+1066.08	0.00319063
+1066.2	0.00319042
+1066.32	0.00319022
+1066.44	0.00319001
+1066.56	0.00318981
+1066.68	0.0031896
+1066.8	0.0031894
+1066.92	0.0031892
+1067.04	0.00318899
+1067.16	0.00318879
+1067.28	0.00318858
+1067.4	0.00318838
+1067.52	0.00318817
+1067.64	0.00318797
+1067.76	0.00318777
+1067.88	0.00318756
+1068	0.00318736
+1068.12	0.00318715
+1068.24	0.00318695
+1068.36	0.00318675
+1068.48	0.00318654
+1068.6	0.00318634
+1068.72	0.00318614
+1068.84	0.00318593
+1068.96	0.00318573
+1069.08	0.00318553
+1069.2	0.00318532
+1069.32	0.00318512
+1069.44	0.00318491
+1069.56	0.00318471
+1069.68	0.00318451
+1069.8	0.0031843
+1069.92	0.0031841
+1070.04	0.0031839
+1070.16	0.0031837
+1070.28	0.00318349
+1070.4	0.00318329
+1070.52	0.00318309
+1070.64	0.00318288
+1070.76	0.00318268
+1070.88	0.00318248
+1071	0.00318227
+1071.12	0.00318207
+1071.24	0.00318187
+1071.36	0.00318167
+1071.48	0.00318146
+1071.6	0.00318126
+1071.72	0.00318106
+1071.84	0.00318086
+1071.96	0.00318065
+1072.08	0.00318045
+1072.2	0.00318025
+1072.32	0.00318005
+1072.44	0.00317984
+1072.56	0.00317964
+1072.68	0.00317944
+1072.8	0.00317924
+1072.92	0.00317904
+1073.04	0.00317883
+1073.16	0.00317863
+1073.28	0.00317843
+1073.4	0.00317823
+1073.52	0.00317803
+1073.64	0.00317782
+1073.76	0.00317762
+1073.88	0.00317742
+1074	0.00317722
+1074.12	0.00317702
+1074.24	0.00317682
+1074.36	0.00317661
+1074.48	0.00317641
+1074.6	0.00317621
+1074.72	0.00317601
+1074.84	0.00317581
+1074.96	0.00317561
+1075.08	0.00317541
+1075.2	0.0031752
+1075.32	0.003175
+1075.44	0.0031748
+1075.56	0.0031746
+1075.68	0.0031744
+1075.8	0.0031742
+1075.92	0.003174
+1076.04	0.0031738
+1076.16	0.0031736
+1076.28	0.0031734
+1076.4	0.00317319
+1076.52	0.00317299
+1076.64	0.00317279
+1076.76	0.00317259
+1076.88	0.00317239
+1077	0.00317219
+1077.12	0.00317199
+1077.24	0.00317179
+1077.36	0.00317159
+1077.48	0.00317139
+1077.6	0.00317119
+1077.72	0.00317099
+1077.84	0.00317079
+1077.96	0.00317059
+1078.08	0.00317039
+1078.2	0.00317019
+1078.32	0.00316999
+1078.44	0.00316979
+1078.56	0.00316959
+1078.68	0.00316939
+1078.8	0.00316919
+1078.92	0.00316899
+1079.04	0.00316879
+1079.16	0.00316859
+1079.28	0.00316839
+1079.4	0.00316819
+1079.52	0.00316799
+1079.64	0.00316779
+1079.76	0.00316759
+1079.88	0.00316739
+1080	0.00316719
+1080.12	0.00316699
+1080.24	0.00316679
+1080.36	0.00316659
+1080.48	0.00316639
+1080.6	0.00316619
+1080.72	0.00316599
+1080.84	0.0031658
+1080.96	0.0031656
+1081.08	0.0031654
+1081.2	0.0031652
+1081.32	0.003165
+1081.44	0.0031648
+1081.56	0.0031646
+1081.68	0.0031644
+1081.8	0.0031642
+1081.92	0.003164
+1082.04	0.00316381
+1082.16	0.00316361
+1082.28	0.00316341
+1082.4	0.00316321
+1082.52	0.00316301
+1082.64	0.00316281
+1082.76	0.00316261
+1082.88	0.00316242
+1083	0.00316222
+1083.12	0.00316202
+1083.24	0.00316182
+1083.36	0.00316162
+1083.48	0.00316142
+1083.6	0.00316123
+1083.72	0.00316103
+1083.84	0.00316083
+1083.96	0.00316063
+1084.08	0.00316043
+1084.2	0.00316024
+1084.32	0.00316004
+1084.44	0.00315984
+1084.56	0.00315964
+1084.68	0.00315944
+1084.8	0.00315925
+1084.92	0.00315905
+1085.04	0.00315885
+1085.16	0.00315865
+1085.28	0.00315846
+1085.4	0.00315826
+1085.52	0.00315806
+1085.64	0.00315786
+1085.76	0.00315767
+1085.88	0.00315747
+1086	0.00315727
+1086.12	0.00315707
+1086.24	0.00315688
+1086.36	0.00315668
+1086.48	0.00315648
+1086.6	0.00315628
+1086.72	0.00315609
+1086.84	0.00315589
+1086.96	0.00315569
+1087.08	0.0031555
+1087.2	0.0031553
+1087.32	0.0031551
+1087.44	0.00315491
+1087.56	0.00315471
+1087.68	0.00315451
+1087.8	0.00315432
+1087.92	0.00315412
+1088.04	0.00315392
+1088.16	0.00315373
+1088.28	0.00315353
+1088.4	0.00315333
+1088.52	0.00315314
+1088.64	0.00315294
+1088.76	0.00315274
+1088.88	0.00315255
+1089	0.00315235
+1089.12	0.00315216
+1089.24	0.00315196
+1089.36	0.00315176
+1089.48	0.00315157
+1089.6	0.00315137
+1089.72	0.00315117
+1089.84	0.00315098
+1089.96	0.00315078
+1090.08	0.00315059
+1090.2	0.00315039
+1090.32	0.0031502
+1090.44	0.00315
+1090.56	0.0031498
+1090.68	0.00314961
+1090.8	0.00314941
+1090.92	0.00314922
+1091.04	0.00314902
+1091.16	0.00314883
+1091.28	0.00314863
+1091.4	0.00314844
+1091.52	0.00314824
+1091.64	0.00314804
+1091.76	0.00314785
+1091.88	0.00314765
+1092	0.00314746
+1092.12	0.00314726
+1092.24	0.00314707
+1092.36	0.00314687
+1092.48	0.00314668
+1092.6	0.00314648
+1092.72	0.00314629
+1092.84	0.00314609
+1092.96	0.0031459
+1093.08	0.0031457
+1093.2	0.00314551
+1093.32	0.00314531
+1093.44	0.00314512
+1093.56	0.00314493
+1093.68	0.00314473
+1093.8	0.00314454
+1093.92	0.00314434
+1094.04	0.00314415
+1094.16	0.00314395
+1094.28	0.00314376
+1094.4	0.00314356
+1094.52	0.00314337
+1094.64	0.00314318
+1094.76	0.00314298
+1094.88	0.00314279
+1095	0.00314259
+1095.12	0.0031424
+1095.24	0.00314221
+1095.36	0.00314201
+1095.48	0.00314182
+1095.6	0.00314162
+1095.72	0.00314143
+1095.84	0.00314124
+1095.96	0.00314104
+1096.08	0.00314085
+1096.2	0.00314065
+1096.32	0.00314046
+1096.44	0.00314027
+1096.56	0.00314007
+1096.68	0.00313988
+1096.8	0.00313969
+1096.92	0.00313949
+1097.04	0.0031393
+1097.16	0.00313911
+1097.28	0.00313891
+1097.4	0.00313872
+1097.52	0.00313853
+1097.64	0.00313833
+1097.76	0.00313814
+1097.88	0.00313795
+1098	0.00313775
+1098.12	0.00313756
+1098.24	0.00313737
+1098.36	0.00313718
+1098.48	0.00313698
+1098.6	0.00313679
+1098.72	0.0031366
+1098.84	0.0031364
+1098.96	0.00313621
+1099.08	0.00313602
+1099.2	0.00313583
+1099.32	0.00313563
+1099.44	0.00313544
+1099.56	0.00313525
+1099.68	0.00313506
+1099.8	0.00313486
+1099.92	0.00313467
+1100.04	0.00313448
+1100.16	0.00313429
+1100.28	0.00313409
+1100.4	0.0031339
+1100.52	0.00313371
+1100.64	0.00313352
+1100.76	0.00313333
+1100.88	0.00313313
+1101	0.00313294
+1101.12	0.00313275
+1101.24	0.00313256
+1101.36	0.00313237
+1101.48	0.00313217
+1101.6	0.00313198
+1101.72	0.00313179
+1101.84	0.0031316
+1101.96	0.00313141
+1102.08	0.00313122
+1102.2	0.00313102
+1102.32	0.00313083
+1102.44	0.00313064
+1102.56	0.00313045
+1102.68	0.00313026
+1102.8	0.00313007
+1102.92	0.00312987
+1103.04	0.00312968
+1103.16	0.00312949
+1103.28	0.0031293
+1103.4	0.00312911
+1103.52	0.00312892
+1103.64	0.00312873
+1103.76	0.00312854
+1103.88	0.00312835
+1104	0.00312815
+1104.12	0.00312796
+1104.24	0.00312777
+1104.36	0.00312758
+1104.48	0.00312739
+1104.6	0.0031272
+1104.72	0.00312701
+1104.84	0.00312682
+1104.96	0.00312663
+1105.08	0.00312644
+1105.2	0.00312625
+1105.32	0.00312606
+1105.44	0.00312587
+1105.56	0.00312568
+1105.68	0.00312548
+1105.8	0.00312529
+1105.92	0.0031251
+1106.04	0.00312491
+1106.16	0.00312472
+1106.28	0.00312453
+1106.4	0.00312434
+1106.52	0.00312415
+1106.64	0.00312396
+1106.76	0.00312377
+1106.88	0.00312358
+1107	0.00312339
+1107.12	0.0031232
+1107.24	0.00312301
+1107.36	0.00312282
+1107.48	0.00312263
+1107.6	0.00312244
+1107.72	0.00312225
+1107.84	0.00312206
+1107.96	0.00312187
+1108.08	0.00312168
+1108.2	0.0031215
+1108.32	0.00312131
+1108.44	0.00312112
+1108.56	0.00312093
+1108.68	0.00312074
+1108.8	0.00312055
+1108.92	0.00312036
+1109.04	0.00312017
+1109.16	0.00311998
+1109.28	0.00311979
+1109.4	0.0031196
+1109.52	0.00311941
+1109.64	0.00311922
+1109.76	0.00311903
+1109.88	0.00311885
+1110	0.00311866
+1110.12	0.00311847
+1110.24	0.00311828
+1110.36	0.00311809
+1110.48	0.0031179
+1110.6	0.00311771
+1110.72	0.00311752
+1110.84	0.00311733
+1110.96	0.00311715
+1111.08	0.00311696
+1111.2	0.00311677
+1111.32	0.00311658
+1111.44	0.00311639
+1111.56	0.0031162
+1111.68	0.00311602
+1111.8	0.00311583
+1111.92	0.00311564
+1112.04	0.00311545
+1112.16	0.00311526
+1112.28	0.00311507
+1112.4	0.00311489
+1112.52	0.0031147
+1112.64	0.00311451
+1112.76	0.00311432
+1112.88	0.00311413
+1113	0.00311395
+1113.12	0.00311376
+1113.24	0.00311357
+1113.36	0.00311338
+1113.48	0.00311319
+1113.6	0.00311301
+1113.72	0.00311282
+1113.84	0.00311263
+1113.96	0.00311244
+1114.08	0.00311226
+1114.2	0.00311207
+1114.32	0.00311188
+1114.44	0.00311169
+1114.56	0.00311151
+1114.68	0.00311132
+1114.8	0.00311113
+1114.92	0.00311094
+1115.04	0.00311076
+1115.16	0.00311057
+1115.28	0.00311038
+1115.4	0.00311019
+1115.52	0.00311001
+1115.64	0.00310982
+1115.76	0.00310963
+1115.88	0.00310945
+1116	0.00310926
+1116.12	0.00310907
+1116.24	0.00310889
+1116.36	0.0031087
+1116.48	0.00310851
+1116.6	0.00310833
+1116.72	0.00310814
+1116.84	0.00310795
+1116.96	0.00310777
+1117.08	0.00310758
+1117.2	0.00310739
+1117.32	0.00310721
+1117.44	0.00310702
+1117.56	0.00310683
+1117.68	0.00310665
+1117.8	0.00310646
+1117.92	0.00310627
+1118.04	0.00310609
+1118.16	0.0031059
+1118.28	0.00310571
+1118.4	0.00310553
+1118.52	0.00310534
+1118.64	0.00310516
+1118.76	0.00310497
+1118.88	0.00310478
+1119	0.0031046
+1119.12	0.00310441
+1119.24	0.00310423
+1119.36	0.00310404
+1119.48	0.00310385
+1119.6	0.00310367
+1119.72	0.00310348
+1119.84	0.0031033
+1119.96	0.00310311
+1120.08	0.00310293
+1120.2	0.00310274
+1120.32	0.00310256
+1120.44	0.00310237
+1120.56	0.00310218
+1120.68	0.003102
+1120.8	0.00310181
+1120.92	0.00310163
+1121.04	0.00310144
+1121.16	0.00310126
+1121.28	0.00310107
+1121.4	0.00310089
+1121.52	0.0031007
+1121.64	0.00310052
+1121.76	0.00310033
+1121.88	0.00310015
+1122	0.00309996
+1122.12	0.00309978
+1122.24	0.00309959
+1122.36	0.00309941
+1122.48	0.00309922
+1122.6	0.00309904
+1122.72	0.00309885
+1122.84	0.00309867
+1122.96	0.00309848
+1123.08	0.0030983
+1123.2	0.00309811
+1123.32	0.00309793
+1123.44	0.00309774
+1123.56	0.00309756
+1123.68	0.00309738
+1123.8	0.00309719
+1123.92	0.00309701
+1124.04	0.00309682
+1124.16	0.00309664
+1124.28	0.00309645
+1124.4	0.00309627
+1124.52	0.00309609
+1124.64	0.0030959
+1124.76	0.00309572
+1124.88	0.00309553
+1125	0.00309535
+1125.12	0.00309517
+1125.24	0.00309498
+1125.36	0.0030948
+1125.48	0.00309461
+1125.6	0.00309443
+1125.72	0.00309425
+1125.84	0.00309406
+1125.96	0.00309388
+1126.08	0.0030937
+1126.2	0.00309351
+1126.32	0.00309333
+1126.44	0.00309314
+1126.56	0.00309296
+1126.68	0.00309278
+1126.8	0.00309259
+1126.92	0.00309241
+1127.04	0.00309223
+1127.16	0.00309204
+1127.28	0.00309186
+1127.4	0.00309168
+1127.52	0.00309149
+1127.64	0.00309131
+1127.76	0.00309113
+1127.88	0.00309094
+1128	0.00309076
+1128.12	0.00309058
+1128.24	0.0030904
+1128.36	0.00309021
+1128.48	0.00309003
+1128.6	0.00308985
+1128.72	0.00308966
+1128.84	0.00308948
+1128.96	0.0030893
+1129.08	0.00308912
+1129.2	0.00308893
+1129.32	0.00308875
+1129.44	0.00308857
+1129.56	0.00308839
+1129.68	0.0030882
+1129.8	0.00308802
+1129.92	0.00308784
+1130.04	0.00308766
+1130.16	0.00308747
+1130.28	0.00308729
+1130.4	0.00308711
+1130.52	0.00308693
+1130.64	0.00308674
+1130.76	0.00308656
+1130.88	0.00308638
+1131	0.0030862
+1131.12	0.00308602
+1131.24	0.00308583
+1131.36	0.00308565
+1131.48	0.00308547
+1131.6	0.00308529
+1131.72	0.00308511
+1131.84	0.00308492
+1131.96	0.00308474
+1132.08	0.00308456
+1132.2	0.00308438
+1132.32	0.0030842
+1132.44	0.00308402
+1132.56	0.00308383
+1132.68	0.00308365
+1132.8	0.00308347
+1132.92	0.00308329
+1133.04	0.00308311
+1133.16	0.00308293
+1133.28	0.00308275
+1133.4	0.00308256
+1133.52	0.00308238
+1133.64	0.0030822
+1133.76	0.00308202
+1133.88	0.00308184
+1134	0.00308166
+1134.12	0.00308148
+1134.24	0.0030813
+1134.36	0.00308111
+1134.48	0.00308093
+1134.6	0.00308075
+1134.72	0.00308057
+1134.84	0.00308039
+1134.96	0.00308021
+1135.08	0.00308003
+1135.2	0.00307985
+1135.32	0.00307967
+1135.44	0.00307949
+1135.56	0.00307931
+1135.68	0.00307913
+1135.8	0.00307895
+1135.92	0.00307876
+1136.04	0.00307858
+1136.16	0.0030784
+1136.28	0.00307822
+1136.4	0.00307804
+1136.52	0.00307786
+1136.64	0.00307768
+1136.76	0.0030775
+1136.88	0.00307732
+1137	0.00307714
+1137.12	0.00307696
+1137.24	0.00307678
+1137.36	0.0030766
+1137.48	0.00307642
+1137.6	0.00307624
+1137.72	0.00307606
+1137.84	0.00307588
+1137.96	0.0030757
+1138.08	0.00307552
+1138.2	0.00307534
+1138.32	0.00307516
+1138.44	0.00307498
+1138.56	0.0030748
+1138.68	0.00307462
+1138.8	0.00307444
+1138.92	0.00307426
+1139.04	0.00307408
+1139.16	0.0030739
+1139.28	0.00307372
+1139.4	0.00307355
+1139.52	0.00307337
+1139.64	0.00307319
+1139.76	0.00307301
+1139.88	0.00307283
+1140	0.00307265
+1140.12	0.00307247
+1140.24	0.00307229
+1140.36	0.00307211
+1140.48	0.00307193
+1140.6	0.00307175
+1140.72	0.00307157
+1140.84	0.00307139
+1140.96	0.00307122
+1141.08	0.00307104
+1141.2	0.00307086
+1141.32	0.00307068
+1141.44	0.0030705
+1141.56	0.00307032
+1141.68	0.00307014
+1141.8	0.00306996
+1141.92	0.00306979
+1142.04	0.00306961
+1142.16	0.00306943
+1142.28	0.00306925
+1142.4	0.00306907
+1142.52	0.00306889
+1142.64	0.00306871
+1142.76	0.00306854
+1142.88	0.00306836
+1143	0.00306818
+1143.12	0.003068
+1143.24	0.00306782
+1143.36	0.00306764
+1143.48	0.00306747
+1143.6	0.00306729
+1143.72	0.00306711
+1143.84	0.00306693
+1143.96	0.00306675
+1144.08	0.00306658
+1144.2	0.0030664
+1144.32	0.00306622
+1144.44	0.00306604
+1144.56	0.00306586
+1144.68	0.00306569
+1144.8	0.00306551
+1144.92	0.00306533
+1145.04	0.00306515
+1145.16	0.00306498
+1145.28	0.0030648
+1145.4	0.00306462
+1145.52	0.00306444
+1145.64	0.00306427
+1145.76	0.00306409
+1145.88	0.00306391
+1146	0.00306373
+1146.12	0.00306356
+1146.24	0.00306338
+1146.36	0.0030632
+1146.48	0.00306302
+1146.6	0.00306285
+1146.72	0.00306267
+1146.84	0.00306249
+1146.96	0.00306231
+1147.08	0.00306214
+1147.2	0.00306196
+1147.32	0.00306178
+1147.44	0.00306161
+1147.56	0.00306143
+1147.68	0.00306125
+1147.8	0.00306108
+1147.92	0.0030609
+1148.04	0.00306072
+1148.16	0.00306055
+1148.28	0.00306037
+1148.4	0.00306019
+1148.52	0.00306002
+1148.64	0.00305984
+1148.76	0.00305966
+1148.88	0.00305949
+1149	0.00305931
+1149.12	0.00305913
+1149.24	0.00305896
+1149.36	0.00305878
+1149.48	0.0030586
+1149.6	0.00305843
+1149.72	0.00305825
+1149.84	0.00305808
+1149.96	0.0030579
+1150.08	0.00305772
+1150.2	0.00305755
+1150.32	0.00305737
+1150.44	0.00305719
+1150.56	0.00305702
+1150.68	0.00305684
+1150.8	0.00305667
+1150.92	0.00305649
+1151.04	0.00305631
+1151.16	0.00305614
+1151.28	0.00305596
+1151.4	0.00305579
+1151.52	0.00305561
+1151.64	0.00305544
+1151.76	0.00305526
+1151.88	0.00305508
+1152	0.00305491
+1152.12	0.00305473
+1152.24	0.00305456
+1152.36	0.00305438
+1152.48	0.00305421
+1152.6	0.00305403
+1152.72	0.00305386
+1152.84	0.00305368
+1152.96	0.00305351
+1153.08	0.00305333
+1153.2	0.00305316
+1153.32	0.00305298
+1153.44	0.0030528
+1153.56	0.00305263
+1153.68	0.00305245
+1153.8	0.00305228
+1153.92	0.0030521
+1154.04	0.00305193
+1154.16	0.00305175
+1154.28	0.00305158
+1154.4	0.0030514
+1154.52	0.00305123
+1154.64	0.00305106
+1154.76	0.00305088
+1154.88	0.00305071
+1155	0.00305053
+1155.12	0.00305036
+1155.24	0.00305018
+1155.36	0.00305001
+1155.48	0.00304983
+1155.6	0.00304966
+1155.72	0.00304948
+1155.84	0.00304931
+1155.96	0.00304914
+1156.08	0.00304896
+1156.2	0.00304879
+1156.32	0.00304861
+1156.44	0.00304844
+1156.56	0.00304826
+1156.68	0.00304809
+1156.8	0.00304792
+1156.92	0.00304774
+1157.04	0.00304757
+1157.16	0.00304739
+1157.28	0.00304722
+1157.4	0.00304705
+1157.52	0.00304687
+1157.64	0.0030467
+1157.76	0.00304652
+1157.88	0.00304635
+1158	0.00304618
+1158.12	0.003046
+1158.24	0.00304583
+1158.36	0.00304565
+1158.48	0.00304548
+1158.6	0.00304531
+1158.72	0.00304513
+1158.84	0.00304496
+1158.96	0.00304479
+1159.08	0.00304461
+1159.2	0.00304444
+1159.32	0.00304427
+1159.44	0.00304409
+1159.56	0.00304392
+1159.68	0.00304375
+1159.8	0.00304357
+1159.92	0.0030434
+1160.04	0.00304323
+1160.16	0.00304305
+1160.28	0.00304288
+1160.4	0.00304271
+1160.52	0.00304253
+1160.64	0.00304236
+1160.76	0.00304219
+1160.88	0.00304202
+1161	0.00304184
+1161.12	0.00304167
+1161.24	0.0030415
+1161.36	0.00304132
+1161.48	0.00304115
+1161.6	0.00304098
+1161.72	0.00304081
+1161.84	0.00304063
+1161.96	0.00304046
+1162.08	0.00304029
+1162.2	0.00304012
+1162.32	0.00303994
+1162.44	0.00303977
+1162.56	0.0030396
+1162.68	0.00303943
+1162.8	0.00303925
+1162.92	0.00303908
+1163.04	0.00303891
+1163.16	0.00303874
+1163.28	0.00303856
+1163.4	0.00303839
+1163.52	0.00303822
+1163.64	0.00303805
+1163.76	0.00303788
+1163.88	0.0030377
+1164	0.00303753
+1164.12	0.00303736
+1164.24	0.00303719
+1164.36	0.00303702
+1164.48	0.00303684
+1164.6	0.00303667
+1164.72	0.0030365
+1164.84	0.00303633
+1164.96	0.00303616
+1165.08	0.00303599
+1165.2	0.00303581
+1165.32	0.00303564
+1165.44	0.00303547
+1165.56	0.0030353
+1165.68	0.00303513
+1165.8	0.00303496
+1165.92	0.00303478
+1166.04	0.00303461
+1166.16	0.00303444
+1166.28	0.00303427
+1166.4	0.0030341
+1166.52	0.00303393
+1166.64	0.00303376
+1166.76	0.00303358
+1166.88	0.00303341
+1167	0.00303324
+1167.12	0.00303307
+1167.24	0.0030329
+1167.36	0.00303273
+1167.48	0.00303256
+1167.6	0.00303239
+1167.72	0.00303222
+1167.84	0.00303205
+1167.96	0.00303187
+1168.08	0.0030317
+1168.2	0.00303153
+1168.32	0.00303136
+1168.44	0.00303119
+1168.56	0.00303102
+1168.68	0.00303085
+1168.8	0.00303068
+1168.92	0.00303051
+1169.04	0.00303034
+1169.16	0.00303017
+1169.28	0.00303
+1169.4	0.00302983
+1169.52	0.00302966
+1169.64	0.00302949
+1169.76	0.00302932
+1169.88	0.00302915
+1170	0.00302898
+1170.12	0.00302881
+1170.24	0.00302864
+1170.36	0.00302846
+1170.48	0.00302829
+1170.6	0.00302812
+1170.72	0.00302795
+1170.84	0.00302778
+1170.96	0.00302761
+1171.08	0.00302744
+1171.2	0.00302727
+1171.32	0.0030271
+1171.44	0.00302693
+1171.56	0.00302677
+1171.68	0.0030266
+1171.8	0.00302643
+1171.92	0.00302626
+1172.04	0.00302609
+1172.16	0.00302592
+1172.28	0.00302575
+1172.4	0.00302558
+1172.52	0.00302541
+1172.64	0.00302524
+1172.76	0.00302507
+1172.88	0.0030249
+1173	0.00302473
+1173.12	0.00302456
+1173.24	0.00302439
+1173.36	0.00302422
+1173.48	0.00302405
+1173.6	0.00302388
+1173.72	0.00302371
+1173.84	0.00302354
+1173.96	0.00302338
+1174.08	0.00302321
+1174.2	0.00302304
+1174.32	0.00302287
+1174.44	0.0030227
+1174.56	0.00302253
+1174.68	0.00302236
+1174.8	0.00302219
+1174.92	0.00302202
+1175.04	0.00302186
+1175.16	0.00302169
+1175.28	0.00302152
+1175.4	0.00302135
+1175.52	0.00302118
+1175.64	0.00302101
+1175.76	0.00302084
+1175.88	0.00302067
+1176	0.00302051
+1176.12	0.00302034
+1176.24	0.00302017
+1176.36	0.00302
+1176.48	0.00301983
+1176.6	0.00301966
+1176.72	0.0030195
+1176.84	0.00301933
+1176.96	0.00301916
+1177.08	0.00301899
+1177.2	0.00301882
+1177.32	0.00301865
+1177.44	0.00301849
+1177.56	0.00301832
+1177.68	0.00301815
+1177.8	0.00301798
+1177.92	0.00301781
+1178.04	0.00301765
+1178.16	0.00301748
+1178.28	0.00301731
+1178.4	0.00301714
+1178.52	0.00301697
+1178.64	0.00301681
+1178.76	0.00301664
+1178.88	0.00301647
+1179	0.0030163
+1179.12	0.00301614
+1179.24	0.00301597
+1179.36	0.0030158
+1179.48	0.00301563
+1179.6	0.00301547
+1179.72	0.0030153
+1179.84	0.00301513
+1179.96	0.00301496
+1180.08	0.0030148
+1180.2	0.00301463
+1180.32	0.00301446
+1180.44	0.00301429
+1180.56	0.00301413
+1180.68	0.00301396
+1180.8	0.00301379
+1180.92	0.00301362
+1181.04	0.00301346
+1181.16	0.00301329
+1181.28	0.00301312
+1181.4	0.00301296
+1181.52	0.00301279
+1181.64	0.00301262
+1181.76	0.00301246
+1181.88	0.00301229
+1182	0.00301212
+1182.12	0.00301195
+1182.24	0.00301179
+1182.36	0.00301162
+1182.48	0.00301145
+1182.6	0.00301129
+1182.72	0.00301112
+1182.84	0.00301095
+1182.96	0.00301079
+1183.08	0.00301062
+1183.2	0.00301045
+1183.32	0.00301029
+1183.44	0.00301012
+1183.56	0.00300996
+1183.68	0.00300979
+1183.8	0.00300962
+1183.92	0.00300946
+1184.04	0.00300929
+1184.16	0.00300912
+1184.28	0.00300896
+1184.4	0.00300879
+1184.52	0.00300863
+1184.64	0.00300846
+1184.76	0.00300829
+1184.88	0.00300813
+1185	0.00300796
+1185.12	0.00300779
+1185.24	0.00300763
+1185.36	0.00300746
+1185.48	0.0030073
+1185.6	0.00300713
+1185.72	0.00300697
+1185.84	0.0030068
+1185.96	0.00300663
+1186.08	0.00300647
+1186.2	0.0030063
+1186.32	0.00300614
+1186.44	0.00300597
+1186.56	0.00300581
+1186.68	0.00300564
+1186.8	0.00300547
+1186.92	0.00300531
+1187.04	0.00300514
+1187.16	0.00300498
+1187.28	0.00300481
+1187.4	0.00300465
+1187.52	0.00300448
+1187.64	0.00300432
+1187.76	0.00300415
+1187.88	0.00300399
+1188	0.00300382
+1188.12	0.00300366
+1188.24	0.00300349
+1188.36	0.00300333
+1188.48	0.00300316
+1188.6	0.003003
+1188.72	0.00300283
+1188.84	0.00300267
+1188.96	0.0030025
+1189.08	0.00300234
+1189.2	0.00300217
+1189.32	0.00300201
+1189.44	0.00300184
+1189.56	0.00300168
+1189.68	0.00300151
+1189.8	0.00300135
+1189.92	0.00300118
+1190.04	0.00300102
+1190.16	0.00300085
+1190.28	0.00300069
+1190.4	0.00300052
+1190.52	0.00300036
+1190.64	0.0030002
+1190.76	0.00300003
+1190.88	0.00299987
+1191	0.0029997
+1191.12	0.00299954
+1191.24	0.00299937
+1191.36	0.00299921
+1191.48	0.00299905
+1191.6	0.00299888
+1191.72	0.00299872
+1191.84	0.00299855
+1191.96	0.00299839
+1192.08	0.00299822
+1192.2	0.00299806
+1192.32	0.0029979
+1192.44	0.00299773
+1192.56	0.00299757
+1192.68	0.0029974
+1192.8	0.00299724
+1192.92	0.00299708
+1193.04	0.00299691
+1193.16	0.00299675
+1193.28	0.00299659
+1193.4	0.00299642
+1193.52	0.00299626
+1193.64	0.00299609
+1193.76	0.00299593
+1193.88	0.00299577
+1194	0.0029956
+1194.12	0.00299544
+1194.24	0.00299528
+1194.36	0.00299511
+1194.48	0.00299495
+1194.6	0.00299479
+1194.72	0.00299462
+1194.84	0.00299446
+1194.96	0.0029943
+1195.08	0.00299413
+1195.2	0.00299397
+1195.32	0.00299381
+1195.44	0.00299364
+1195.56	0.00299348
+1195.68	0.00299332
+1195.8	0.00299315
+1195.92	0.00299299
+1196.04	0.00299283
+1196.16	0.00299267
+1196.28	0.0029925
+1196.4	0.00299234
+1196.52	0.00299218
+1196.64	0.00299201
+1196.76	0.00299185
+1196.88	0.00299169
+1197	0.00299153
+1197.12	0.00299136
+1197.24	0.0029912
+1197.36	0.00299104
+1197.48	0.00299088
+1197.6	0.00299071
+1197.72	0.00299055
+1197.84	0.00299039
+1197.96	0.00299023
+1198.08	0.00299006
+1198.2	0.0029899
+1198.32	0.00298974
+1198.44	0.00298958
+1198.56	0.00298941
+1198.68	0.00298925
+1198.8	0.00298909
+1198.92	0.00298893
+1199.04	0.00298876
+1199.16	0.0029886
+1199.28	0.00298844
+1199.4	0.00298828
+1199.52	0.00298812
+1199.64	0.00298795
+1199.76	0.00298779
+1199.88	0.00298763
+1200	0.00298747
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_C.G4table b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_C.G4table
new file mode 100644
index 0000000000000000000000000000000000000000..91d510b0e8ed01b1f226819b76166c1f4e9ceb8a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_C.G4table
@@ -0,0 +1,469 @@
+Table from Geant4 generate using NPSimulation 	Particle: alpha	Material: NPS_C
+0	0
+0.001	0.0800342
+0.002	0.089502
+0.003	0.0968824
+0.004	0.103038
+0.005	0.108819
+0.006	0.114128
+0.007	0.119081
+0.008	0.123761
+0.009	0.128328
+0.01	0.132552
+0.011	0.136608
+0.012	0.140564
+0.013	0.144303
+0.014	0.148047
+0.015	0.151666
+0.016	0.155131
+0.017	0.158456
+0.018	0.161655
+0.019	0.164737
+0.02	0.167765
+0.021	0.170886
+0.022	0.173916
+0.023	0.176861
+0.024	0.179726
+0.025	0.182516
+0.026	0.185237
+0.027	0.187892
+0.028	0.190484
+0.029	0.193017
+0.03	0.195495
+0.031	0.19792
+0.032	0.200294
+0.033	0.202621
+0.034	0.204901
+0.035	0.207138
+0.036	0.209332
+0.037	0.211487
+0.038	0.213603
+0.039	0.215681
+0.041	0.219878
+0.043	0.224
+0.045	0.227999
+0.047	0.231883
+0.049	0.235659
+0.051	0.239333
+0.053	0.242918
+0.055	0.246466
+0.057	0.249928
+0.059	0.253309
+0.061	0.256612
+0.063	0.259842
+0.065	0.263
+0.067	0.266109
+0.069	0.269169
+0.071	0.272168
+0.073	0.275106
+0.075	0.277988
+0.077	0.280814
+0.079	0.283587
+0.083	0.289035
+0.087	0.294293
+0.091	0.299371
+0.095	0.30428
+0.099	0.30903
+0.103	0.313629
+0.107	0.3181
+0.111	0.32246
+0.115	0.326691
+0.119	0.330798
+0.123	0.334787
+0.127	0.338663
+0.131	0.342431
+0.135	0.346118
+0.139	0.349712
+0.143	0.353209
+0.147	0.356613
+0.155	0.363155
+0.163	0.369359
+0.171	0.375248
+0.179	0.38084
+0.187	0.386152
+0.195	0.391198
+0.203	0.396017
+0.211	0.400612
+0.219	0.404979
+0.227	0.409129
+0.235	0.413072
+0.251	0.420375
+0.267	0.426962
+0.283	0.432917
+0.299	0.438259
+0.315	0.443034
+0.331	0.447285
+0.363	0.454365
+0.395	0.459772
+0.427	0.46378
+0.491	0.468233
+0.619	0.467001
+0.875	0.444095
+1.131	0.412876
+1.387	0.382064
+1.643	0.354088
+1.899	0.329315
+2.155	0.307531
+2.411	0.288349
+2.667	0.271385
+2.923	0.256314
+3.179	0.242844
+3.435	0.230743
+3.691	0.219815
+3.947	0.209901
+4.203	0.200873
+4.459	0.192614
+4.715	0.18503
+4.971	0.178041
+5.227	0.171581
+5.483	0.165592
+5.739	0.160024
+5.995	0.154834
+6.251	0.149984
+6.507	0.145441
+6.763	0.141177
+7.019	0.137168
+7.275	0.133391
+7.531	0.129825
+7.787	0.126454
+8.043	0.123441
+8.299	0.120855
+8.555	0.118379
+8.811	0.116008
+9.067	0.113736
+9.323	0.111558
+9.579	0.109468
+9.835	0.107448
+10.091	0.105493
+10.347	0.103614
+10.603	0.101806
+10.859	0.100067
+11.115	0.0983906
+11.371	0.096775
+11.627	0.0952167
+11.883	0.0937127
+12.139	0.0922597
+12.395	0.0908512
+12.651	0.0894897
+12.907	0.0881729
+13.163	0.0868987
+13.419	0.0856654
+13.675	0.0844707
+13.931	0.0833126
+14.187	0.0821896
+14.443	0.0811
+14.699	0.0800423
+14.955	0.0790151
+15.211	0.0780171
+15.467	0.0770469
+15.723	0.0761036
+15.979	0.0751419
+16.235	0.074249
+16.491	0.0733688
+16.747	0.0725115
+17.003	0.0716763
+17.259	0.0708623
+17.515	0.0700687
+17.771	0.0692946
+18.027	0.0685394
+18.283	0.0678023
+18.539	0.0670828
+18.795	0.06638
+19.051	0.0656936
+19.307	0.0650228
+19.563	0.0643672
+19.819	0.0637261
+20.331	0.0624859
+20.843	0.0612985
+21.355	0.0601605
+21.867	0.0590699
+22.379	0.0580238
+22.891	0.0570164
+23.403	0.056041
+23.915	0.0551019
+24.427	0.054197
+24.939	0.0533246
+25.451	0.0524827
+25.963	0.0516698
+26.475	0.0508844
+26.987	0.0501251
+27.499	0.0493905
+28.011	0.0486794
+28.523	0.0479908
+29.035	0.0473235
+29.547	0.0466765
+30.059	0.0460489
+30.571	0.0454397
+31.083	0.0448483
+31.595	0.0442737
+32.107	0.0437154
+32.619	0.0431724
+33.131	0.0426421
+33.643	0.0421258
+34.155	0.041623
+34.667	0.0411333
+35.179	0.0406561
+35.691	0.040191
+36.203	0.0397375
+36.715	0.0392951
+37.227	0.0388634
+37.739	0.0384421
+38.251	0.0380307
+38.763	0.037629
+39.275	0.0372364
+39.787	0.0368528
+40.299	0.0364778
+40.811	0.0361112
+41.323	0.0357525
+42.347	0.0350583
+43.371	0.0343932
+44.395	0.0337554
+45.419	0.033143
+46.443	0.0325547
+47.467	0.031989
+48.491	0.0314446
+49.515	0.0309203
+50.539	0.0304149
+51.563	0.0299275
+52.587	0.0294571
+53.611	0.0290026
+54.635	0.0285634
+55.659	0.0281387
+56.683	0.0277277
+57.707	0.0273298
+58.731	0.0269442
+59.755	0.0265706
+60.779	0.0262082
+61.803	0.0258566
+62.827	0.0255153
+63.851	0.0251838
+64.875	0.0248617
+65.899	0.0245487
+66.923	0.0242442
+67.947	0.023948
+68.971	0.0236597
+69.995	0.0233791
+71.019	0.0231057
+72.043	0.0228393
+73.067	0.0225797
+74.091	0.0223265
+75.115	0.0220796
+76.139	0.0218386
+77.163	0.0216035
+78.187	0.0213739
+79.211	0.0211497
+80.235	0.0209306
+81.259	0.0207166
+82.283	0.0205074
+83.307	0.0203028
+85.355	0.019907
+87.403	0.019528
+89.451	0.0191648
+91.499	0.0188164
+93.547	0.0184818
+95.595	0.0181602
+97.643	0.017851
+99.691	0.0175533
+101.739	0.0172665
+103.787	0.01699
+105.835	0.0167233
+107.883	0.0164658
+109.931	0.0162171
+111.979	0.0159767
+114.027	0.0157441
+116.075	0.0155191
+118.123	0.0153012
+120.171	0.0150901
+122.219	0.0148854
+124.267	0.014687
+126.315	0.0144944
+128.363	0.0143074
+130.411	0.0141259
+132.459	0.0139495
+134.507	0.013778
+136.555	0.0136112
+138.603	0.0134489
+140.651	0.013291
+142.699	0.0131373
+144.747	0.0129875
+146.795	0.0128416
+148.843	0.0126993
+150.891	0.0125607
+152.939	0.0124254
+154.987	0.0122934
+157.035	0.0121646
+159.083	0.0120388
+161.131	0.011916
+163.179	0.0117961
+165.227	0.0116788
+169.323	0.0114522
+173.419	0.0112354
+177.515	0.0110279
+181.611	0.0108291
+185.707	0.0106383
+189.803	0.0104551
+193.899	0.0102792
+197.995	0.0101099
+202.091	0.009947
+206.187	0.00979009
+210.283	0.00963885
+214.379	0.00949298
+218.475	0.00935218
+222.571	0.00921618
+226.667	0.00908475
+230.763	0.00895765
+234.859	0.00883466
+238.955	0.0087156
+243.051	0.00860026
+247.147	0.00848848
+251.243	0.00838009
+255.339	0.00827494
+259.435	0.00817287
+263.531	0.00807376
+267.627	0.00797748
+271.723	0.0078839
+275.819	0.00779291
+279.915	0.00770441
+284.011	0.00761829
+288.107	0.00753445
+292.203	0.00745281
+296.299	0.00737327
+300.395	0.00729576
+304.491	0.0072202
+308.587	0.00714652
+312.683	0.00707464
+316.779	0.0070045
+324.971	0.00686919
+333.163	0.00674011
+341.355	0.00661684
+349.547	0.006499
+357.739	0.00638622
+365.931	0.00627818
+374.123	0.00617459
+382.315	0.00607517
+390.507	0.00597968
+398.699	0.00588789
+406.891	0.00579957
+415.083	0.00571455
+423.275	0.00563262
+431.467	0.00555363
+439.659	0.00547743
+447.851	0.00540385
+456.043	0.00533277
+464.235	0.00526407
+472.427	0.00519762
+480.619	0.00513331
+488.811	0.00507105
+497.003	0.00501073
+505.195	0.00495227
+513.387	0.00489557
+521.579	0.00484057
+529.771	0.00478718
+537.963	0.00473534
+546.155	0.00468498
+554.347	0.00463603
+562.539	0.00458844
+570.731	0.00454215
+578.923	0.0044971
+595.307	0.00441057
+611.691	0.00432846
+628.075	0.00425044
+644.459	0.00417622
+660.843	0.00410552
+677.227	0.0040381
+693.611	0.00397374
+709.995	0.00391223
+726.379	0.00385339
+742.763	0.00379705
+759.147	0.00374305
+775.531	0.00369126
+791.915	0.00364153
+808.299	0.00359375
+824.683	0.00354781
+841.067	0.0035036
+857.451	0.00346102
+873.835	0.00342
+890.219	0.00338045
+906.603	0.00334228
+922.987	0.00330544
+939.371	0.00326984
+955.755	0.00323544
+972.139	0.00320217
+988.523	0.00316997
+1004.91	0.00313881
+1037.68	0.00307937
+1070.44	0.00302351
+1103.21	0.00297091
+1135.98	0.0029213
+1168.75	0.00287444
+1201.52	0.00283011
+1234.28	0.00278786
+1267.05	0.00274775
+1299.82	0.00270964
+1332.59	0.00267341
+1365.36	0.00263891
+1398.12	0.00260603
+1430.89	0.00257466
+1463.66	0.00254471
+1496.43	0.00251607
+1529.2	0.00248868
+1561.96	0.00246245
+1594.73	0.00243731
+1627.5	0.00241321
+1693.04	0.00236785
+1758.57	0.00232595
+1824.11	0.00228716
+1889.64	0.00225114
+1955.18	0.00221764
+2020.72	0.0021864
+2086.25	0.00215722
+2151.79	0.00212991
+2217.32	0.00210432
+2282.86	0.00208029
+2348.4	0.00205769
+2413.93	0.00203642
+2479.47	0.00201636
+2610.54	0.00197952
+2741.61	0.00194655
+2872.68	0.00191691
+3003.76	0.00189016
+3134.83	0.00186594
+3265.9	0.00184395
+3396.97	0.00182392
+3528.04	0.00180563
+3659.12	0.0017889
+3921.26	0.00175945
+4183.4	0.00173449
+4445.55	0.00171322
+4707.69	0.00169498
+4969.84	0.00167928
+5494.12	0.00165396
+6018.41	0.00163486
+6542.7	0.00162036
+7591.28	0.00160102
+8639.85	0.00159018
+10737	0.0015826
+14931.3	0.00159117
+23319.9	0.00162878
+31708.5	0.00166528
+40097.1	0.00169651
+48485.7	0.00172312
+56874.3	0.00174605
+65263	0.00176609
+73651.6	0.00178383
+82040.2	0.00179971
+98817.4	0.00182714
+115595	0.00185021
+132372	0.00187008
+149149	0.00188749
+182703	0.00191691
+216258	0.00194114
+249812	0.0019617
+283367	0.00197955
+350476	0.00200939
+417584	0.00203375
+484693	0.00205431
+551802	0.0020721
+686020	0.00210174
+820238	0.00212588
+954455	0.00214623
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_Si.G4table b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_Si.G4table
new file mode 100644
index 0000000000000000000000000000000000000000..50a1580b2306c631e507fcfccdfd89fd7f91c3d1
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_Si.G4table
@@ -0,0 +1,10002 @@
+Table from Geant4 generate using NPSimulation 	Particle: alpha	Material: Si
+0	0
+0.12	0.227842
+0.24	0.318853
+0.36	0.356212
+0.48	0.363529
+0.6	0.35703
+0.72	0.345305
+0.84	0.332168
+0.96	0.319206
+1.08	0.306973
+1.2	0.295608
+1.32	0.285112
+1.44	0.27541
+1.56	0.266429
+1.68	0.25809
+1.8	0.250323
+1.92	0.243073
+2.04	0.236281
+2.16	0.229904
+2.28	0.223901
+2.4	0.21824
+2.52	0.212893
+2.64	0.207831
+2.76	0.203029
+2.88	0.198468
+3	0.19413
+3.12	0.19
+3.24	0.18606
+3.36	0.182298
+3.48	0.1787
+3.6	0.175257
+3.72	0.171957
+3.84	0.168792
+3.96	0.165754
+4.08	0.162834
+4.2	0.160027
+4.32	0.157324
+4.44	0.15472
+4.56	0.152212
+4.68	0.149793
+4.8	0.147457
+4.92	0.145201
+5.04	0.14302
+5.16	0.140912
+5.28	0.13887
+5.4	0.136892
+5.52	0.134975
+5.64	0.133117
+5.76	0.131315
+5.88	0.129567
+6	0.12787
+6.12	0.126221
+6.24	0.12462
+6.36	0.123062
+6.48	0.121547
+6.6	0.120073
+6.72	0.118638
+6.84	0.117241
+6.96	0.115879
+7.08	0.114552
+7.2	0.113259
+7.32	0.111997
+7.44	0.110766
+7.56	0.109565
+7.68	0.108392
+7.8	0.107247
+7.92	0.106128
+8.04	0.105037
+8.16	0.10397
+8.28	0.102924
+8.4	0.1019
+8.52	0.100896
+8.64	0.0999119
+8.76	0.0989477
+8.88	0.0980026
+9	0.0970766
+9.12	0.0961686
+9.24	0.0952783
+9.36	0.0942125
+9.48	0.0933637
+9.6	0.092531
+9.72	0.0920727
+9.84	0.0912566
+9.96	0.0904557
+10.08	0.0896695
+10.2	0.0888977
+10.32	0.0881399
+10.44	0.0873957
+10.56	0.0866649
+10.68	0.0859469
+10.8	0.0852416
+10.92	0.0845486
+11.04	0.0838761
+11.16	0.0832164
+11.28	0.0824697
+11.4	0.0818352
+11.52	0.0812108
+11.64	0.0808357
+11.76	0.0802298
+11.88	0.0796336
+12	0.0790469
+12.12	0.0784692
+12.24	0.0779006
+12.36	0.0773406
+12.48	0.0767892
+12.6	0.0762446
+12.72	0.0757095
+12.84	0.0751825
+12.96	0.0746633
+13.08	0.0741517
+13.2	0.0735978
+13.32	0.0731032
+13.44	0.0726157
+13.56	0.0722883
+13.68	0.0718082
+13.8	0.0713349
+13.92	0.0708683
+14.04	0.0704082
+14.16	0.0699546
+14.28	0.0695072
+14.4	0.069066
+14.52	0.0686308
+14.64	0.0683369
+14.76	0.0679157
+14.88	0.0675003
+15	0.0670638
+15.12	0.0666612
+15.24	0.0662639
+15.36	0.0658717
+15.48	0.0654846
+15.6	0.0651025
+15.72	0.0647253
+15.84	0.0643528
+15.96	0.0639851
+16.08	0.063622
+16.2	0.0632634
+16.32	0.0629092
+16.44	0.0625594
+16.56	0.0623445
+16.68	0.0620026
+16.8	0.0616649
+16.92	0.0613312
+17.04	0.0610015
+17.16	0.0606754
+17.28	0.0603517
+17.4	0.0600319
+17.52	0.0597159
+17.64	0.0594036
+17.76	0.059095
+17.88	0.05879
+18	0.0584885
+18.12	0.0581905
+18.24	0.0578959
+18.36	0.0576047
+18.48	0.0573167
+18.6	0.0570319
+18.72	0.0567503
+18.84	0.0564554
+18.96	0.0561809
+19.08	0.0559094
+19.2	0.0556408
+19.32	0.0553751
+19.44	0.0552671
+19.56	0.0550061
+19.68	0.0547479
+19.8	0.0544924
+19.92	0.0542396
+20.04	0.0539894
+20.16	0.0537418
+20.28	0.0534968
+20.4	0.0532542
+20.52	0.0530142
+20.64	0.0527766
+20.76	0.0525414
+20.88	0.0523085
+21	0.052078
+21.12	0.0518498
+21.24	0.0516238
+21.36	0.0514
+21.48	0.0511784
+21.6	0.050959
+21.72	0.0507417
+21.84	0.0505264
+21.96	0.0503133
+22.08	0.0501021
+22.2	0.049893
+22.32	0.0496858
+22.44	0.0494806
+22.56	0.0492812
+22.68	0.0490801
+22.8	0.0488809
+22.92	0.0486834
+23.04	0.0484878
+23.16	0.048294
+23.28	0.0481019
+23.4	0.0479115
+23.52	0.0477228
+23.64	0.0475358
+23.76	0.0473505
+23.88	0.0471669
+24	0.0469849
+24.12	0.0468044
+24.24	0.0466256
+24.36	0.0464483
+24.48	0.0462725
+24.6	0.0460982
+24.72	0.0459254
+24.84	0.045754
+24.96	0.0455841
+25.08	0.0454157
+25.2	0.0452486
+25.32	0.045083
+25.44	0.0449187
+25.56	0.0447558
+25.68	0.0445942
+25.8	0.0444339
+25.92	0.0442749
+26.04	0.0441173
+26.16	0.0439609
+26.28	0.0438057
+26.4	0.0436621
+26.52	0.0435094
+26.64	0.0433579
+26.76	0.0432076
+26.88	0.0430585
+27	0.0429105
+27.12	0.0427637
+27.24	0.0426181
+27.36	0.0424735
+27.48	0.0423301
+27.6	0.0421878
+27.72	0.0420466
+27.84	0.0419064
+27.96	0.0417673
+28.08	0.0416292
+28.2	0.0414922
+28.32	0.0413649
+28.44	0.04123
+28.56	0.0410961
+28.68	0.0409632
+28.8	0.0408313
+28.92	0.0407004
+29.04	0.0405704
+29.16	0.0404413
+29.28	0.0404063
+29.4	0.040278
+29.52	0.0401507
+29.64	0.0400243
+29.76	0.0398988
+29.88	0.0397743
+30	0.0396506
+30.12	0.0395277
+30.24	0.0394058
+30.36	0.0392846
+30.48	0.0391644
+30.6	0.0390449
+30.72	0.0389266
+30.84	0.0388092
+30.96	0.0386926
+31.08	0.0385768
+31.2	0.0384618
+31.32	0.0383476
+31.44	0.0382341
+31.56	0.0381213
+31.68	0.0380094
+31.8	0.0378981
+31.92	0.0377876
+32.04	0.0376778
+32.16	0.0375819
+32.28	0.0374735
+32.4	0.0373658
+32.52	0.0372588
+32.64	0.0371525
+32.76	0.0370469
+32.88	0.036942
+33	0.0368377
+33.12	0.0367341
+33.24	0.0366311
+33.36	0.0365288
+33.48	0.0364271
+33.6	0.0363261
+33.72	0.0362257
+33.84	0.0361259
+33.96	0.0360268
+34.08	0.0359282
+34.2	0.0358303
+34.32	0.035733
+34.44	0.0356362
+34.56	0.0355401
+34.68	0.0354445
+34.8	0.0353495
+34.92	0.0352551
+35.04	0.0351613
+35.16	0.035068
+35.28	0.0349753
+35.4	0.0348831
+35.52	0.0347915
+35.64	0.0347004
+35.76	0.0346098
+35.88	0.0345198
+36	0.0344303
+36.12	0.0343414
+36.24	0.0342529
+36.36	0.034165
+36.48	0.0340775
+36.6	0.0339906
+36.72	0.0339042
+36.84	0.0338183
+36.96	0.0337328
+37.08	0.0336479
+37.2	0.0335634
+37.32	0.0334794
+37.44	0.0333959
+37.56	0.0333129
+37.68	0.0332303
+37.8	0.0331482
+37.92	0.0330851
+38.04	0.0330039
+38.16	0.0329232
+38.28	0.0328429
+38.4	0.032763
+38.52	0.0326836
+38.64	0.0326046
+38.76	0.032526
+38.88	0.0324479
+39	0.0323701
+39.12	0.0322928
+39.24	0.032216
+39.36	0.0321395
+39.48	0.0320634
+39.6	0.0319878
+39.72	0.0319125
+39.84	0.0318377
+39.96	0.0317632
+40.08	0.0316892
+40.2	0.0316155
+40.32	0.0315422
+40.44	0.0314693
+40.56	0.0313968
+40.68	0.0313246
+40.8	0.0312529
+40.92	0.0311815
+41.04	0.0311104
+41.16	0.0310398
+41.28	0.0309694
+41.4	0.0308995
+41.52	0.0308299
+41.64	0.0307607
+41.76	0.0306918
+41.88	0.0306233
+42	0.0305551
+42.12	0.0304872
+42.24	0.0304197
+42.36	0.0303525
+42.48	0.0302857
+42.6	0.0302192
+42.72	0.030153
+42.84	0.0300872
+42.96	0.0300216
+43.08	0.0299564
+43.2	0.0298916
+43.32	0.029827
+43.44	0.0297627
+43.56	0.0296988
+43.68	0.0296352
+43.8	0.0295718
+43.92	0.0295088
+44.04	0.0294461
+44.16	0.0293837
+44.28	0.0293216
+44.4	0.0292598
+44.52	0.0291983
+44.64	0.0291371
+44.76	0.0290762
+44.88	0.0290155
+45	0.0289552
+45.12	0.0288952
+45.24	0.0288354
+45.36	0.0287759
+45.48	0.0287167
+45.6	0.0286577
+45.72	0.028599
+45.84	0.0285407
+45.96	0.0284825
+46.08	0.0284247
+46.2	0.0283671
+46.32	0.0283097
+46.44	0.0282527
+46.56	0.0281959
+46.68	0.0281393
+46.8	0.028083
+46.92	0.028027
+47.04	0.0279712
+47.16	0.0279156
+47.28	0.0278603
+47.4	0.0278053
+47.52	0.0277505
+47.64	0.027696
+47.76	0.0276417
+47.88	0.0275876
+48	0.0275338
+48.12	0.0274802
+48.24	0.0274268
+48.36	0.0273737
+48.48	0.0273208
+48.6	0.0272681
+48.72	0.0272157
+48.84	0.0271635
+48.96	0.0271115
+49.08	0.0270598
+49.2	0.0269207
+49.32	0.0268684
+49.44	0.0268163
+49.56	0.0267645
+49.68	0.0267129
+49.8	0.0266615
+49.92	0.0266103
+50.04	0.0265593
+50.16	0.0265086
+50.28	0.026458
+50.4	0.0264077
+50.52	0.0263576
+50.64	0.0263077
+50.76	0.026258
+50.88	0.0262085
+51	0.0261592
+51.12	0.0261102
+51.24	0.0260613
+51.36	0.0260126
+51.48	0.0259642
+51.6	0.0259159
+51.72	0.0258679
+51.84	0.02582
+51.96	0.0257723
+52.08	0.0257248
+52.2	0.0256776
+52.32	0.0256305
+52.44	0.0255836
+52.56	0.0255369
+52.68	0.0254904
+52.8	0.025444
+52.92	0.0253979
+53.04	0.0253519
+53.16	0.0253062
+53.28	0.0252606
+53.4	0.0252152
+53.52	0.0251699
+53.64	0.0251249
+53.76	0.02508
+53.88	0.0250353
+54	0.0249908
+54.12	0.0249465
+54.24	0.0249023
+54.36	0.0248583
+54.48	0.0248145
+54.6	0.0247708
+54.72	0.0247273
+54.84	0.024684
+54.96	0.0246409
+55.08	0.0245979
+55.2	0.0245551
+55.32	0.0245125
+55.44	0.02447
+55.56	0.0244277
+55.68	0.0243855
+55.8	0.0243435
+55.92	0.0243017
+56.04	0.02426
+56.16	0.0242185
+56.28	0.0241771
+56.4	0.0241359
+56.52	0.0240949
+56.64	0.024054
+56.76	0.0240133
+56.88	0.0239727
+57	0.0239322
+57.12	0.0238919
+57.24	0.0238853
+57.36	0.0238452
+57.48	0.0238052
+57.6	0.0237654
+57.72	0.0237257
+57.84	0.0236862
+57.96	0.0236468
+58.08	0.0236075
+58.2	0.0235684
+58.32	0.0235295
+58.44	0.0234906
+58.56	0.023452
+58.68	0.0234134
+58.8	0.023375
+58.92	0.0233368
+59.04	0.0232987
+59.16	0.0232607
+59.28	0.0232229
+59.4	0.0231852
+59.52	0.0231476
+59.64	0.0231102
+59.76	0.0230729
+59.88	0.0230358
+60	0.0229987
+60.12	0.0229618
+60.24	0.0229251
+60.36	0.0228885
+60.48	0.022852
+60.6	0.0228156
+60.72	0.0227793
+60.84	0.0227432
+60.96	0.0227072
+61.08	0.0226714
+61.2	0.0226356
+61.32	0.0226
+61.44	0.0225645
+61.56	0.0225292
+61.68	0.0224939
+61.8	0.0224588
+61.92	0.0224238
+62.04	0.0223889
+62.16	0.0223542
+62.28	0.0223195
+62.4	0.022285
+62.52	0.0222506
+62.64	0.0222163
+62.76	0.0221821
+62.88	0.0221481
+63	0.0221141
+63.12	0.0220803
+63.24	0.0220466
+63.36	0.022013
+63.48	0.0219795
+63.6	0.0219462
+63.72	0.0219129
+63.84	0.0218798
+63.96	0.0218467
+64.08	0.0218138
+64.2	0.021781
+64.32	0.0217483
+64.44	0.0217157
+64.56	0.0216832
+64.68	0.0216508
+64.8	0.0216186
+64.92	0.0215864
+65.04	0.0215543
+65.16	0.0215224
+65.28	0.0214905
+65.4	0.0214588
+65.52	0.0214271
+65.64	0.0213956
+65.76	0.0213641
+65.88	0.0213328
+66	0.0213016
+66.12	0.0212704
+66.24	0.0212394
+66.36	0.0212085
+66.48	0.0211776
+66.6	0.0211469
+66.72	0.0211163
+66.84	0.0210857
+66.96	0.0210553
+67.08	0.021025
+67.2	0.0209947
+67.32	0.0209646
+67.44	0.0209345
+67.56	0.0209046
+67.68	0.0208747
+67.8	0.0208449
+67.92	0.0208153
+68.04	0.0207857
+68.16	0.0207562
+68.28	0.0207268
+68.4	0.0206975
+68.52	0.0206683
+68.64	0.0206391
+68.76	0.0206101
+68.88	0.0205812
+69	0.0205523
+69.12	0.0205236
+69.24	0.0204949
+69.36	0.0204292
+69.48	0.0204026
+69.6	0.0203761
+69.72	0.0203496
+69.84	0.0203233
+69.96	0.020297
+70.08	0.0202708
+70.2	0.0202447
+70.32	0.0202187
+70.44	0.0201927
+70.56	0.0201668
+70.68	0.020141
+70.8	0.0201152
+70.92	0.0200895
+71.04	0.0200639
+71.16	0.0200384
+71.28	0.0200129
+71.4	0.0199875
+71.52	0.0199622
+71.64	0.0199369
+71.76	0.0199117
+71.88	0.0198866
+72	0.0198616
+72.12	0.0198366
+72.24	0.0198117
+72.36	0.0197868
+72.48	0.019762
+72.6	0.0197373
+72.72	0.0197127
+72.84	0.0196881
+72.96	0.0196636
+73.08	0.0196392
+73.2	0.0196148
+73.32	0.0195905
+73.44	0.0195663
+73.56	0.0195421
+73.68	0.019518
+73.8	0.019494
+73.92	0.01947
+74.04	0.0194461
+74.16	0.0194222
+74.28	0.0193984
+74.4	0.0193747
+74.52	0.0193511
+74.64	0.0193275
+74.76	0.0193039
+74.88	0.0192805
+75	0.0192571
+75.12	0.0192337
+75.24	0.0192104
+75.36	0.0191872
+75.48	0.0191641
+75.6	0.019141
+75.72	0.0191179
+75.84	0.019095
+75.96	0.0190721
+76.08	0.0190492
+76.2	0.0190264
+76.32	0.0190037
+76.44	0.018981
+76.56	0.0189584
+76.68	0.0189359
+76.8	0.0189134
+76.92	0.0188909
+77.04	0.0188686
+77.16	0.0188462
+77.28	0.018824
+77.4	0.0188018
+77.52	0.0187796
+77.64	0.0187576
+77.76	0.0187355
+77.88	0.0187136
+78	0.0186917
+78.12	0.0186698
+78.24	0.018648
+78.36	0.0186262
+78.48	0.0186046
+78.6	0.0185829
+78.72	0.0185613
+78.84	0.0185398
+78.96	0.0185184
+79.08	0.0184969
+79.2	0.0184756
+79.32	0.0184543
+79.44	0.018433
+79.56	0.0184118
+79.68	0.0183907
+79.8	0.0183696
+79.92	0.0183486
+80.04	0.0183276
+80.16	0.0183067
+80.28	0.0182858
+80.4	0.018265
+80.52	0.0182442
+80.64	0.0182235
+80.76	0.0182028
+80.88	0.0181822
+81	0.0181616
+81.12	0.0181411
+81.24	0.0181207
+81.36	0.0181003
+81.48	0.0180799
+81.6	0.0180596
+81.72	0.0180394
+81.84	0.0180191
+81.96	0.017999
+82.08	0.0179789
+82.2	0.0179588
+82.32	0.0179388
+82.44	0.0179189
+82.56	0.017899
+82.68	0.0178791
+82.8	0.0178593
+82.92	0.0178395
+83.04	0.0178198
+83.16	0.0178002
+83.28	0.0177805
+83.4	0.017761
+83.52	0.0177414
+83.64	0.017722
+83.76	0.0177025
+83.88	0.0176832
+84	0.0176638
+84.12	0.0176446
+84.24	0.0176253
+84.36	0.0176061
+84.48	0.017587
+84.6	0.0175679
+84.72	0.0175488
+84.84	0.0175298
+84.96	0.0175109
+85.08	0.0174919
+85.2	0.0174731
+85.32	0.0174542
+85.44	0.0174355
+85.56	0.0174167
+85.68	0.017398
+85.8	0.0173794
+85.92	0.0173608
+86.04	0.0173422
+86.16	0.0173237
+86.28	0.0173053
+86.4	0.0172868
+86.52	0.0172685
+86.64	0.0172501
+86.76	0.0172318
+86.88	0.0172136
+87	0.0171954
+87.12	0.0171772
+87.24	0.0171591
+87.36	0.017141
+87.48	0.017123
+87.6	0.017105
+87.72	0.017087
+87.84	0.0170691
+87.96	0.0170512
+88.08	0.0170334
+88.2	0.0170156
+88.32	0.0169979
+88.44	0.0169802
+88.56	0.0169625
+88.68	0.0169449
+88.8	0.0169273
+88.92	0.0169098
+89.04	0.0168923
+89.16	0.0168748
+89.28	0.0168574
+89.4	0.01684
+89.52	0.0168227
+89.64	0.0168054
+89.76	0.0167882
+89.88	0.0167709
+90	0.0167538
+90.12	0.0167366
+90.24	0.0167195
+90.36	0.0167025
+90.48	0.0166855
+90.6	0.0166685
+90.72	0.0166515
+90.84	0.0166346
+90.96	0.0166178
+91.08	0.016601
+91.2	0.0165842
+91.32	0.0165674
+91.44	0.0165507
+91.56	0.016534
+91.68	0.0165174
+91.8	0.0165008
+91.92	0.0164842
+92.04	0.0164677
+92.16	0.0164512
+92.28	0.0164348
+92.4	0.0164184
+92.52	0.016402
+92.64	0.0163856
+92.76	0.0163693
+92.88	0.0163531
+93	0.0163368
+93.12	0.0163206
+93.24	0.0163045
+93.36	0.0162884
+93.48	0.0162723
+93.6	0.0162562
+93.72	0.0162402
+93.84	0.0162242
+93.96	0.0162083
+94.08	0.0161924
+94.2	0.0161765
+94.32	0.0161606
+94.44	0.0161448
+94.56	0.0161291
+94.68	0.0161133
+94.8	0.0160976
+94.92	0.016082
+95.04	0.0160663
+95.16	0.0160507
+95.28	0.0160352
+95.4	0.0160196
+95.52	0.0160041
+95.64	0.0159887
+95.76	0.0159732
+95.88	0.0159578
+96	0.0159425
+96.12	0.0159271
+96.24	0.0159118
+96.36	0.0158966
+96.48	0.0158813
+96.6	0.0158661
+96.72	0.015851
+96.84	0.0158578
+96.96	0.0158427
+97.08	0.0158275
+97.2	0.0158125
+97.32	0.0157974
+97.44	0.0157824
+97.56	0.0157674
+97.68	0.0157524
+97.8	0.0157375
+97.92	0.0157225
+98.04	0.0157077
+98.16	0.0156928
+98.28	0.015678
+98.4	0.0156632
+98.52	0.0156485
+98.64	0.0156338
+98.76	0.0156191
+98.88	0.0156044
+99	0.0155898
+99.12	0.0155752
+99.24	0.0155607
+99.36	0.0155461
+99.48	0.0155316
+99.6	0.0155172
+99.72	0.0155027
+99.84	0.0154883
+99.96	0.0154739
+100.08	0.0154596
+100.2	0.0154453
+100.32	0.015431
+100.44	0.0154167
+100.56	0.0154025
+100.68	0.0153883
+100.8	0.0153741
+100.92	0.01536
+101.04	0.0153459
+101.16	0.0153318
+101.28	0.0153177
+101.4	0.0153037
+101.52	0.0152897
+101.64	0.0152757
+101.76	0.0152618
+101.88	0.0152479
+102	0.015234
+102.12	0.0152201
+102.24	0.0152063
+102.36	0.0151925
+102.48	0.0151787
+102.6	0.015165
+102.72	0.0151513
+102.84	0.0151376
+102.96	0.0151239
+103.08	0.0151103
+103.2	0.0150967
+103.32	0.0150831
+103.44	0.0150696
+103.56	0.0150561
+103.68	0.0150426
+103.8	0.0150291
+103.92	0.0150157
+104.04	0.0150023
+104.16	0.0149889
+104.28	0.0149755
+104.4	0.0149622
+104.52	0.0149489
+104.64	0.0149356
+104.76	0.0149224
+104.88	0.0149091
+105	0.0148959
+105.12	0.0148828
+105.24	0.0148696
+105.36	0.0148565
+105.48	0.0148434
+105.6	0.0148303
+105.72	0.0148173
+105.84	0.0148043
+105.96	0.0147913
+106.08	0.0147783
+106.2	0.0147654
+106.32	0.0147525
+106.44	0.0147396
+106.56	0.0147267
+106.68	0.0147139
+106.8	0.0147011
+106.92	0.0146883
+107.04	0.0146755
+107.16	0.0146628
+107.28	0.0146501
+107.4	0.0146374
+107.52	0.0146247
+107.64	0.0146121
+107.76	0.0145995
+107.88	0.0145869
+108	0.0145743
+108.12	0.0145618
+108.24	0.0145493
+108.36	0.0145368
+108.48	0.0145243
+108.6	0.0145119
+108.72	0.0144994
+108.84	0.014487
+108.96	0.0144747
+109.08	0.0144623
+109.2	0.01445
+109.32	0.0144377
+109.44	0.0144254
+109.56	0.0144132
+109.68	0.0144009
+109.8	0.0143887
+109.92	0.0143766
+110.04	0.0143644
+110.16	0.0143523
+110.28	0.0143401
+110.4	0.0143281
+110.52	0.014316
+110.64	0.0143039
+110.76	0.0142919
+110.88	0.0142799
+111	0.014268
+111.12	0.014256
+111.24	0.0142441
+111.36	0.0142322
+111.48	0.0142203
+111.6	0.0142084
+111.72	0.0141966
+111.84	0.0141848
+111.96	0.014173
+112.08	0.0141612
+112.2	0.0141494
+112.32	0.0141377
+112.44	0.014126
+112.56	0.0141143
+112.68	0.0141027
+112.8	0.014091
+112.92	0.0140794
+113.04	0.0140678
+113.16	0.0140562
+113.28	0.0140447
+113.4	0.0140331
+113.52	0.0140216
+113.64	0.0140101
+113.76	0.0139987
+113.88	0.0139872
+114	0.0139758
+114.12	0.0139644
+114.24	0.013953
+114.36	0.0139416
+114.48	0.0139303
+114.6	0.013919
+114.72	0.0139077
+114.84	0.0138964
+114.96	0.0138851
+115.08	0.0138739
+115.2	0.0138627
+115.32	0.0138515
+115.44	0.0138403
+115.56	0.0138291
+115.68	0.013818
+115.8	0.0138069
+115.92	0.0137958
+116.04	0.0137847
+116.16	0.0137737
+116.28	0.0137626
+116.4	0.0137516
+116.52	0.0137406
+116.64	0.0137296
+116.76	0.0137187
+116.88	0.0137077
+117	0.0136968
+117.12	0.0136859
+117.24	0.0136751
+117.36	0.0136642
+117.48	0.0136534
+117.6	0.0136425
+117.72	0.0136317
+117.84	0.013621
+117.96	0.0136102
+118.08	0.0135995
+118.2	0.0135887
+118.32	0.013578
+118.44	0.0135674
+118.56	0.0135567
+118.68	0.0135461
+118.8	0.0135354
+118.92	0.0135248
+119.04	0.0135143
+119.16	0.0135037
+119.28	0.0134931
+119.4	0.0134826
+119.52	0.0134721
+119.64	0.0134616
+119.76	0.0134511
+119.88	0.0134407
+120	0.0134302
+120.12	0.0134198
+120.24	0.0134094
+120.36	0.013399
+120.48	0.0133887
+120.6	0.0133783
+120.72	0.013368
+120.84	0.0133577
+120.96	0.0133474
+121.08	0.0133371
+121.2	0.0133269
+121.32	0.0133166
+121.44	0.0133064
+121.56	0.0132962
+121.68	0.013286
+121.8	0.0132759
+121.92	0.0132657
+122.04	0.0132556
+122.16	0.0132455
+122.28	0.0132354
+122.4	0.0132253
+122.52	0.0132153
+122.64	0.0132052
+122.76	0.0131952
+122.88	0.0131852
+123	0.0131752
+123.12	0.0131652
+123.24	0.0131553
+123.36	0.0131453
+123.48	0.0131354
+123.6	0.0131255
+123.72	0.0131156
+123.84	0.0131057
+123.96	0.0130959
+124.08	0.013086
+124.2	0.0130762
+124.32	0.0130664
+124.44	0.0130566
+124.56	0.0130469
+124.68	0.0130371
+124.8	0.0130274
+124.92	0.0130177
+125.04	0.013008
+125.16	0.0129983
+125.28	0.0129886
+125.4	0.0129789
+125.52	0.0129693
+125.64	0.0129597
+125.76	0.0129501
+125.88	0.0129405
+126	0.0129309
+126.12	0.0129214
+126.24	0.0129118
+126.36	0.0129023
+126.48	0.0128928
+126.6	0.0128833
+126.72	0.0128738
+126.84	0.0128643
+126.96	0.0128549
+127.08	0.0128455
+127.2	0.0128361
+127.32	0.0128267
+127.44	0.0128173
+127.56	0.0128079
+127.68	0.0127986
+127.8	0.0127892
+127.92	0.0127799
+128.04	0.0127706
+128.16	0.0127613
+128.28	0.012752
+128.4	0.0127428
+128.52	0.0127335
+128.64	0.0127243
+128.76	0.0127151
+128.88	0.0127059
+129	0.0126967
+129.12	0.0126876
+129.24	0.0126784
+129.36	0.0126693
+129.48	0.0126601
+129.6	0.012651
+129.72	0.0126419
+129.84	0.0126329
+129.96	0.0126238
+130.08	0.0126148
+130.2	0.0126057
+130.32	0.0125967
+130.44	0.0125877
+130.56	0.0125787
+130.68	0.0125697
+130.8	0.0125608
+130.92	0.0125518
+131.04	0.0125429
+131.16	0.012534
+131.28	0.0125251
+131.4	0.0125162
+131.52	0.0125073
+131.64	0.0124985
+131.76	0.0124896
+131.88	0.0124808
+132	0.012472
+132.12	0.0124632
+132.24	0.0124544
+132.36	0.0124456
+132.48	0.0124369
+132.6	0.0124281
+132.72	0.0124194
+132.84	0.0124107
+132.96	0.012402
+133.08	0.0123933
+133.2	0.0123846
+133.32	0.012376
+133.44	0.0123673
+133.56	0.0123587
+133.68	0.0123501
+133.8	0.0123415
+133.92	0.0123329
+134.04	0.0123243
+134.16	0.0123157
+134.28	0.0123072
+134.4	0.0122986
+134.52	0.0122901
+134.64	0.0122816
+134.76	0.0122731
+134.88	0.0122646
+135	0.0122562
+135.12	0.0122477
+135.24	0.0122393
+135.36	0.0122308
+135.48	0.0122224
+135.6	0.012214
+135.72	0.0122056
+135.84	0.0121973
+135.96	0.0121889
+136.08	0.0121805
+136.2	0.0121722
+136.32	0.0121639
+136.44	0.0121556
+136.56	0.0121473
+136.68	0.012139
+136.8	0.0121307
+136.92	0.0121225
+137.04	0.0121142
+137.16	0.012106
+137.28	0.0120978
+137.4	0.0120895
+137.52	0.0120814
+137.64	0.0120732
+137.76	0.0120737
+137.88	0.0120656
+138	0.0120574
+138.12	0.0120492
+138.24	0.0120411
+138.36	0.012033
+138.48	0.0120249
+138.6	0.0120168
+138.72	0.0120087
+138.84	0.0120006
+138.96	0.0119925
+139.08	0.0119845
+139.2	0.0119765
+139.32	0.0119684
+139.44	0.0119604
+139.56	0.0119524
+139.68	0.0119444
+139.8	0.0119365
+139.92	0.0119285
+140.04	0.0119205
+140.16	0.0119126
+140.28	0.0119047
+140.4	0.0118968
+140.52	0.0118889
+140.64	0.011881
+140.76	0.0118731
+140.88	0.0118652
+141	0.0118574
+141.12	0.0118495
+141.24	0.0118417
+141.36	0.0118339
+141.48	0.0118261
+141.6	0.0118183
+141.72	0.0118105
+141.84	0.0118027
+141.96	0.011795
+142.08	0.0117872
+142.2	0.0117795
+142.32	0.0117717
+142.44	0.011764
+142.56	0.0117563
+142.68	0.0117486
+142.8	0.011741
+142.92	0.0117333
+143.04	0.0117256
+143.16	0.011718
+143.28	0.0117104
+143.4	0.0117027
+143.52	0.0116951
+143.64	0.0116875
+143.76	0.0116799
+143.88	0.0116724
+144	0.0116648
+144.12	0.0116572
+144.24	0.0116497
+144.36	0.0116422
+144.48	0.0116347
+144.6	0.0116271
+144.72	0.0116196
+144.84	0.0116122
+144.96	0.0116047
+145.08	0.0115972
+145.2	0.0115898
+145.32	0.0115823
+145.44	0.0115749
+145.56	0.0115675
+145.68	0.0115601
+145.8	0.0115527
+145.92	0.0115453
+146.04	0.0115379
+146.16	0.0115305
+146.28	0.0115232
+146.4	0.0115158
+146.52	0.0115085
+146.64	0.0115012
+146.76	0.0114939
+146.88	0.0114866
+147	0.0114793
+147.12	0.011472
+147.24	0.0114647
+147.36	0.0114575
+147.48	0.0114502
+147.6	0.011443
+147.72	0.0114357
+147.84	0.0114285
+147.96	0.0114213
+148.08	0.0114141
+148.2	0.0114069
+148.32	0.0113998
+148.44	0.0113926
+148.56	0.0113855
+148.68	0.0113783
+148.8	0.0113712
+148.92	0.0113641
+149.04	0.0113569
+149.16	0.0113498
+149.28	0.0113428
+149.4	0.0113357
+149.52	0.0113286
+149.64	0.0113215
+149.76	0.0113145
+149.88	0.0113074
+150	0.0113004
+150.12	0.0112934
+150.24	0.0112864
+150.36	0.0112794
+150.48	0.0112724
+150.6	0.0112654
+150.72	0.0112584
+150.84	0.0112515
+150.96	0.0112445
+151.08	0.0112376
+151.2	0.0112307
+151.32	0.0112237
+151.44	0.0112168
+151.56	0.0112099
+151.68	0.011203
+151.8	0.0111962
+151.92	0.0111893
+152.04	0.0111824
+152.16	0.0111756
+152.28	0.0111687
+152.4	0.0111619
+152.52	0.0111551
+152.64	0.0111483
+152.76	0.0111414
+152.88	0.0111347
+153	0.0111279
+153.12	0.0111211
+153.24	0.0111143
+153.36	0.0111076
+153.48	0.0111008
+153.6	0.0110941
+153.72	0.0110874
+153.84	0.0110806
+153.96	0.0110739
+154.08	0.0110672
+154.2	0.0110605
+154.32	0.0110539
+154.44	0.0110472
+154.56	0.0110405
+154.68	0.0110339
+154.8	0.0110272
+154.92	0.0110206
+155.04	0.011014
+155.16	0.0110073
+155.28	0.0110007
+155.4	0.0109941
+155.52	0.0109875
+155.64	0.010981
+155.76	0.0109744
+155.88	0.0109678
+156	0.0109613
+156.12	0.0109547
+156.24	0.0109482
+156.36	0.0109417
+156.48	0.0109352
+156.6	0.0109286
+156.72	0.0109221
+156.84	0.0109157
+156.96	0.0109092
+157.08	0.0109027
+157.2	0.0108962
+157.32	0.0108898
+157.44	0.0108833
+157.56	0.0108769
+157.68	0.0108705
+157.8	0.0108641
+157.92	0.0108576
+158.04	0.0108512
+158.16	0.0108449
+158.28	0.0108385
+158.4	0.0108321
+158.52	0.0108257
+158.64	0.0108194
+158.76	0.010813
+158.88	0.0108067
+159	0.0108003
+159.12	0.010794
+159.24	0.0107877
+159.36	0.0107814
+159.48	0.0107751
+159.6	0.0107688
+159.72	0.0107625
+159.84	0.0107562
+159.96	0.01075
+160.08	0.0107437
+160.2	0.0107375
+160.32	0.0107312
+160.44	0.010725
+160.56	0.0107188
+160.68	0.0107126
+160.8	0.0107064
+160.92	0.0107002
+161.04	0.010694
+161.16	0.0106878
+161.28	0.0106816
+161.4	0.0106754
+161.52	0.0106693
+161.64	0.0106631
+161.76	0.010657
+161.88	0.0106509
+162	0.0106448
+162.12	0.0106386
+162.24	0.0106325
+162.36	0.0106264
+162.48	0.0106203
+162.6	0.0106143
+162.72	0.0106082
+162.84	0.0106021
+162.96	0.0105961
+163.08	0.01059
+163.2	0.010584
+163.32	0.0105779
+163.44	0.0105719
+163.56	0.0105659
+163.68	0.0105599
+163.8	0.0105539
+163.92	0.0105479
+164.04	0.0105419
+164.16	0.0105359
+164.28	0.0105299
+164.4	0.010524
+164.52	0.010518
+164.64	0.0105121
+164.76	0.0105061
+164.88	0.0105002
+165	0.0104943
+165.12	0.0104884
+165.24	0.0104825
+165.36	0.0104765
+165.48	0.0104707
+165.6	0.0104648
+165.72	0.0104589
+165.84	0.010453
+165.96	0.0104472
+166.08	0.0104413
+166.2	0.0104355
+166.32	0.0104296
+166.44	0.0104238
+166.56	0.010418
+166.68	0.0104121
+166.8	0.0104063
+166.92	0.0104005
+167.04	0.0103947
+167.16	0.0103889
+167.28	0.0103832
+167.4	0.0103774
+167.52	0.0103716
+167.64	0.0103659
+167.76	0.0103601
+167.88	0.0103544
+168	0.0103486
+168.12	0.0103429
+168.24	0.0103372
+168.36	0.0103315
+168.48	0.0103258
+168.6	0.0103201
+168.72	0.0103144
+168.84	0.0103087
+168.96	0.010303
+169.08	0.0102974
+169.2	0.0102917
+169.32	0.010286
+169.44	0.0102804
+169.56	0.0102748
+169.68	0.0102691
+169.8	0.0102635
+169.92	0.0102579
+170.04	0.0102523
+170.16	0.0102467
+170.28	0.0102411
+170.4	0.0102355
+170.52	0.0102299
+170.64	0.0102243
+170.76	0.0102187
+170.88	0.0102132
+171	0.0102076
+171.12	0.0102021
+171.24	0.0101965
+171.36	0.010191
+171.48	0.0101855
+171.6	0.01018
+171.72	0.0101744
+171.84	0.0101689
+171.96	0.0101634
+172.08	0.0101579
+172.2	0.0101525
+172.32	0.010147
+172.44	0.0101415
+172.56	0.010136
+172.68	0.0101306
+172.8	0.0101251
+172.92	0.0101197
+173.04	0.0101143
+173.16	0.0101088
+173.28	0.0101034
+173.4	0.010098
+173.52	0.0100926
+173.64	0.0100872
+173.76	0.0100818
+173.88	0.0100764
+174	0.010071
+174.12	0.0100656
+174.24	0.0100602
+174.36	0.0100549
+174.48	0.0100495
+174.6	0.0100442
+174.72	0.0100388
+174.84	0.0100335
+174.96	0.0100282
+175.08	0.0100228
+175.2	0.0100175
+175.32	0.0100122
+175.44	0.0100069
+175.56	0.0100016
+175.68	0.00999632
+175.8	0.00999104
+175.92	0.00998576
+176.04	0.00998049
+176.16	0.00997522
+176.28	0.00996996
+176.4	0.00996471
+176.52	0.00995947
+176.64	0.00995423
+176.76	0.00994899
+176.88	0.00994377
+177	0.00993855
+177.12	0.00993333
+177.24	0.00992813
+177.36	0.00992293
+177.48	0.00991773
+177.6	0.00991255
+177.72	0.00990736
+177.84	0.00990219
+177.96	0.00989702
+178.08	0.00989186
+178.2	0.0098867
+178.32	0.00988156
+178.44	0.00987641
+178.56	0.00987128
+178.68	0.00986615
+178.8	0.00986102
+178.92	0.0098559
+179.04	0.00985079
+179.16	0.00984569
+179.28	0.00984059
+179.4	0.00983549
+179.52	0.00983041
+179.64	0.00982533
+179.76	0.00982025
+179.88	0.00981518
+180	0.00981012
+180.12	0.00980506
+180.24	0.00980001
+180.36	0.00979497
+180.48	0.00978993
+180.6	0.0097849
+180.72	0.00977987
+180.84	0.00977485
+180.96	0.00976984
+181.08	0.00976483
+181.2	0.00975983
+181.32	0.00975483
+181.44	0.00974984
+181.56	0.00974486
+181.68	0.00973988
+181.8	0.00973491
+181.92	0.00972994
+182.04	0.00972498
+182.16	0.00972002
+182.28	0.00971507
+182.4	0.00971013
+182.52	0.0097052
+182.64	0.00970026
+182.76	0.00969534
+182.88	0.00969042
+183	0.00968551
+183.12	0.0096806
+183.24	0.0096757
+183.36	0.0096708
+183.48	0.00966591
+183.6	0.00966103
+183.72	0.00965615
+183.84	0.00965127
+183.96	0.00964641
+184.08	0.00964154
+184.2	0.00963669
+184.32	0.00963184
+184.44	0.00962699
+184.56	0.00962216
+184.68	0.00961732
+184.8	0.0096125
+184.92	0.00960767
+185.04	0.00960286
+185.16	0.00959805
+185.28	0.00959324
+185.4	0.00958844
+185.52	0.00958365
+185.64	0.00957886
+185.76	0.00957408
+185.88	0.0095693
+186	0.00956453
+186.12	0.00955977
+186.24	0.00955501
+186.36	0.00955025
+186.48	0.0095455
+186.6	0.00954076
+186.72	0.00953602
+186.84	0.00953129
+186.96	0.00952656
+187.08	0.00952184
+187.2	0.00951713
+187.32	0.00951242
+187.44	0.00950771
+187.56	0.00950301
+187.68	0.00949832
+187.8	0.00949363
+187.92	0.00948895
+188.04	0.00948427
+188.16	0.0094796
+188.28	0.00947493
+188.4	0.00947027
+188.52	0.00946561
+188.64	0.00946096
+188.76	0.00945632
+188.88	0.00945168
+189	0.00944704
+189.12	0.00944241
+189.24	0.00943779
+189.36	0.00943317
+189.48	0.00942856
+189.6	0.00942395
+189.72	0.00941934
+189.84	0.00941475
+189.96	0.00941015
+190.08	0.00940557
+190.2	0.00940098
+190.32	0.00939641
+190.44	0.00939184
+190.56	0.00938727
+190.68	0.00938271
+190.8	0.00937815
+190.92	0.0093736
+191.04	0.00936906
+191.16	0.00936452
+191.28	0.00935998
+191.4	0.00935545
+191.52	0.00935093
+191.64	0.00934641
+191.76	0.00934189
+191.88	0.00933738
+192	0.00933288
+192.12	0.00932838
+192.24	0.00932389
+192.36	0.0093194
+192.48	0.00931491
+192.6	0.00931043
+192.72	0.00930596
+192.84	0.00930149
+192.96	0.00929703
+193.08	0.00929257
+193.2	0.00928811
+193.32	0.00928367
+193.44	0.00927922
+193.56	0.00927478
+193.68	0.00927035
+193.8	0.00926592
+193.92	0.0092615
+194.04	0.00925708
+194.16	0.00925266
+194.28	0.00924825
+194.4	0.00924385
+194.52	0.00923945
+194.64	0.00923506
+194.76	0.00923067
+194.88	0.00922628
+195	0.0092219
+195.12	0.00921753
+195.24	0.00921316
+195.36	0.00920879
+195.48	0.00920443
+195.6	0.00920008
+195.72	0.00919573
+195.84	0.00919138
+195.96	0.00918704
+196.08	0.00918271
+196.2	0.00917838
+196.32	0.00917405
+196.44	0.00916973
+196.56	0.00916541
+196.68	0.0091611
+196.8	0.00915679
+196.92	0.00915249
+197.04	0.00914819
+197.16	0.0091439
+197.28	0.00913961
+197.4	0.00913533
+197.52	0.00913105
+197.64	0.00912678
+197.76	0.00912251
+197.88	0.00911824
+198	0.00911398
+198.12	0.00910973
+198.24	0.00910548
+198.36	0.00910123
+198.48	0.00909699
+198.6	0.00909275
+198.72	0.00908852
+198.84	0.00908429
+198.96	0.00908007
+199.08	0.00907585
+199.2	0.00907164
+199.32	0.00906743
+199.44	0.00906323
+199.56	0.00905903
+199.68	0.00905483
+199.8	0.00905064
+199.92	0.00904646
+200.04	0.00904228
+200.16	0.0090381
+200.28	0.00903393
+200.4	0.00902976
+200.52	0.0090256
+200.64	0.00902144
+200.76	0.00901728
+200.88	0.00901313
+201	0.00900899
+201.12	0.00900485
+201.24	0.00900071
+201.36	0.00899658
+201.48	0.00899245
+201.6	0.00899289
+201.72	0.00898878
+201.84	0.00898466
+201.96	0.00898055
+202.08	0.00897645
+202.2	0.00897235
+202.32	0.00896825
+202.44	0.00896416
+202.56	0.00896008
+202.68	0.00895599
+202.8	0.00895191
+202.92	0.00894784
+203.04	0.00894377
+203.16	0.00893971
+203.28	0.00893565
+203.4	0.00893159
+203.52	0.00892754
+203.64	0.00892349
+203.76	0.00891945
+203.88	0.00891541
+204	0.00891137
+204.12	0.00890734
+204.24	0.00890332
+204.36	0.0088993
+204.48	0.00889528
+204.6	0.00889126
+204.72	0.00888726
+204.84	0.00888325
+204.96	0.00887925
+205.08	0.00887525
+205.2	0.00887126
+205.32	0.00886727
+205.44	0.00886329
+205.56	0.00885931
+205.68	0.00885534
+205.8	0.00885137
+205.92	0.0088474
+206.04	0.00884344
+206.16	0.00883948
+206.28	0.00883552
+206.4	0.00883157
+206.52	0.00882763
+206.64	0.00882369
+206.76	0.00881975
+206.88	0.00881582
+207	0.00881189
+207.12	0.00880796
+207.24	0.00880404
+207.36	0.00880012
+207.48	0.00879621
+207.6	0.0087923
+207.72	0.0087884
+207.84	0.0087845
+207.96	0.0087806
+208.08	0.00877671
+208.2	0.00877282
+208.32	0.00876894
+208.44	0.00876506
+208.56	0.00876118
+208.68	0.00875731
+208.8	0.00875344
+208.92	0.00874958
+209.04	0.00874572
+209.16	0.00874186
+209.28	0.00873801
+209.4	0.00873416
+209.52	0.00873032
+209.64	0.00872648
+209.76	0.00872264
+209.88	0.00871881
+210	0.00871498
+210.12	0.00871116
+210.24	0.00870734
+210.36	0.00870352
+210.48	0.00869971
+210.6	0.0086959
+210.72	0.0086921
+210.84	0.0086883
+210.96	0.0086845
+211.08	0.00868071
+211.2	0.00867692
+211.32	0.00867313
+211.44	0.00866935
+211.56	0.00866558
+211.68	0.0086618
+211.8	0.00865804
+211.92	0.00865427
+212.04	0.00865051
+212.16	0.00864675
+212.28	0.008643
+212.4	0.00863925
+212.52	0.0086355
+212.64	0.00863176
+212.76	0.00862802
+212.88	0.00862429
+213	0.00862056
+213.12	0.00861683
+213.24	0.00861311
+213.36	0.00860939
+213.48	0.00860567
+213.6	0.00860196
+213.72	0.00859825
+213.84	0.00859455
+213.96	0.00859085
+214.08	0.00858715
+214.2	0.00858346
+214.32	0.00857977
+214.44	0.00857609
+214.56	0.0085724
+214.68	0.00856873
+214.8	0.00856505
+214.92	0.00856138
+215.04	0.00855772
+215.16	0.00855405
+215.28	0.00855039
+215.4	0.00854674
+215.52	0.00854309
+215.64	0.00853944
+215.76	0.00853579
+215.88	0.00853215
+216	0.00852852
+216.12	0.00852488
+216.24	0.00852125
+216.36	0.00851763
+216.48	0.00851401
+216.6	0.00851039
+216.72	0.00850677
+216.84	0.00850316
+216.96	0.00849955
+217.08	0.00849595
+217.2	0.00849235
+217.32	0.00848875
+217.44	0.00848516
+217.56	0.00848157
+217.68	0.00847798
+217.8	0.0084744
+217.92	0.00847082
+218.04	0.00846724
+218.16	0.00846367
+218.28	0.00846011
+218.4	0.00845654
+218.52	0.00845298
+218.64	0.00844942
+218.76	0.00844587
+218.88	0.00844232
+219	0.00843877
+219.12	0.00843523
+219.24	0.00843169
+219.36	0.00842815
+219.48	0.00842462
+219.6	0.00842109
+219.72	0.00841756
+219.84	0.00841404
+219.96	0.00841052
+220.08	0.00840701
+220.2	0.00840349
+220.32	0.00839999
+220.44	0.00839648
+220.56	0.00839298
+220.68	0.00838948
+220.8	0.00838599
+220.92	0.0083825
+221.04	0.00837901
+221.16	0.00837552
+221.28	0.00837204
+221.4	0.00836857
+221.52	0.00836509
+221.64	0.00836162
+221.76	0.00835816
+221.88	0.00835469
+222	0.00835123
+222.12	0.00834778
+222.24	0.00834432
+222.36	0.00834087
+222.48	0.00833742
+222.6	0.00833398
+222.72	0.00833054
+222.84	0.00832711
+222.96	0.00832367
+223.08	0.00832024
+223.2	0.00831682
+223.32	0.00831339
+223.44	0.00830997
+223.56	0.00830656
+223.68	0.00830314
+223.8	0.00829973
+223.92	0.00829633
+224.04	0.00829292
+224.16	0.00828952
+224.28	0.00828613
+224.4	0.00828274
+224.52	0.00827935
+224.64	0.00827596
+224.76	0.00827258
+224.88	0.0082692
+225	0.00826582
+225.12	0.00826245
+225.24	0.00825908
+225.36	0.00825571
+225.48	0.00825234
+225.6	0.00824898
+225.72	0.00824563
+225.84	0.00824227
+225.96	0.00823892
+226.08	0.00823558
+226.2	0.00823223
+226.32	0.00822889
+226.44	0.00822555
+226.56	0.00822222
+226.68	0.00821889
+226.8	0.00821556
+226.92	0.00821223
+227.04	0.00820891
+227.16	0.00820559
+227.28	0.00820228
+227.4	0.00819897
+227.52	0.00819566
+227.64	0.00819235
+227.76	0.00818905
+227.88	0.00818575
+228	0.00818245
+228.12	0.00817916
+228.24	0.00817587
+228.36	0.00817258
+228.48	0.0081693
+228.6	0.00816602
+228.72	0.00816274
+228.84	0.00815947
+228.96	0.0081562
+229.08	0.00815293
+229.2	0.00814966
+229.32	0.0081464
+229.44	0.00814314
+229.56	0.00813989
+229.68	0.00813664
+229.8	0.00813339
+229.92	0.00813014
+230.04	0.0081269
+230.16	0.00812366
+230.28	0.00812042
+230.4	0.00811719
+230.52	0.00811395
+230.64	0.00811073
+230.76	0.0081075
+230.88	0.00810428
+231	0.00810106
+231.12	0.00809785
+231.24	0.00809463
+231.36	0.00809142
+231.48	0.00808822
+231.6	0.00808501
+231.72	0.00808181
+231.84	0.00807862
+231.96	0.00807542
+232.08	0.00807223
+232.2	0.00806904
+232.32	0.00806586
+232.44	0.00806267
+232.56	0.00805949
+232.68	0.00805632
+232.8	0.00805314
+232.92	0.00804997
+233.04	0.00804681
+233.16	0.00804364
+233.28	0.00804048
+233.4	0.00803732
+233.52	0.00803417
+233.64	0.00803101
+233.76	0.00802786
+233.88	0.00802472
+234	0.00802157
+234.12	0.00801843
+234.24	0.00801529
+234.36	0.00801216
+234.48	0.00800903
+234.6	0.0080059
+234.72	0.00800277
+234.84	0.00799965
+234.96	0.00799653
+235.08	0.00799341
+235.2	0.00799029
+235.32	0.00798718
+235.44	0.00798407
+235.56	0.00798097
+235.68	0.00797786
+235.8	0.00797476
+235.92	0.00797167
+236.04	0.00796857
+236.16	0.00796548
+236.28	0.00796239
+236.4	0.00795931
+236.52	0.00795622
+236.64	0.00795314
+236.76	0.00795007
+236.88	0.00794699
+237	0.00794392
+237.12	0.00794085
+237.24	0.00793779
+237.36	0.00793473
+237.48	0.00793167
+237.6	0.00792861
+237.72	0.00792556
+237.84	0.00792251
+237.96	0.00791946
+238.08	0.00791641
+238.2	0.00791337
+238.32	0.00791033
+238.44	0.00790729
+238.56	0.00790426
+238.68	0.00790123
+238.8	0.0078982
+238.92	0.00789517
+239.04	0.00789215
+239.16	0.00788913
+239.28	0.00788611
+239.4	0.0078831
+239.52	0.00788008
+239.64	0.00787707
+239.76	0.00787407
+239.88	0.00787106
+240	0.00786806
+240.12	0.00786506
+240.24	0.00786207
+240.36	0.00785908
+240.48	0.00785608
+240.6	0.0078531
+240.72	0.00785011
+240.84	0.00784713
+240.96	0.00784415
+241.08	0.00784117
+241.2	0.0078382
+241.32	0.00783523
+241.44	0.00783226
+241.56	0.00782929
+241.68	0.00782633
+241.8	0.00782337
+241.92	0.00782041
+242.04	0.00781746
+242.16	0.00781451
+242.28	0.00781156
+242.4	0.00780861
+242.52	0.00780566
+242.64	0.00780272
+242.76	0.00779978
+242.88	0.00779685
+243	0.00779391
+243.12	0.00779098
+243.24	0.00778805
+243.36	0.00778513
+243.48	0.0077822
+243.6	0.00777928
+243.72	0.00777636
+243.84	0.00777345
+243.96	0.00777054
+244.08	0.00776763
+244.2	0.00776472
+244.32	0.00776181
+244.44	0.00775891
+244.56	0.00775601
+244.68	0.00775311
+244.8	0.00775022
+244.92	0.00774733
+245.04	0.00774444
+245.16	0.00774155
+245.28	0.00773867
+245.4	0.00773579
+245.52	0.00773291
+245.64	0.00773003
+245.76	0.00772716
+245.88	0.00772428
+246	0.00772142
+246.12	0.00771855
+246.24	0.00771569
+246.36	0.00771282
+246.48	0.00770997
+246.6	0.00770711
+246.72	0.00770426
+246.84	0.0077014
+246.96	0.00769856
+247.08	0.00769571
+247.2	0.00769287
+247.32	0.00769003
+247.44	0.00768719
+247.56	0.00768435
+247.68	0.00768152
+247.8	0.00767869
+247.92	0.00767586
+248.04	0.00767303
+248.16	0.00767021
+248.28	0.00766739
+248.4	0.00766457
+248.52	0.00766175
+248.64	0.00765894
+248.76	0.00765613
+248.88	0.00765332
+249	0.00765052
+249.12	0.00764771
+249.24	0.00764491
+249.36	0.00764211
+249.48	0.00763932
+249.6	0.00763652
+249.72	0.00763373
+249.84	0.00763094
+249.96	0.00762816
+250.08	0.00762537
+250.2	0.00762259
+250.32	0.00761981
+250.44	0.00761703
+250.56	0.00761426
+250.68	0.00761149
+250.8	0.00760872
+250.92	0.00760595
+251.04	0.00760319
+251.16	0.00760043
+251.28	0.00759767
+251.4	0.00759491
+251.52	0.00759215
+251.64	0.0075894
+251.76	0.00758665
+251.88	0.0075839
+252	0.00758116
+252.12	0.00757842
+252.24	0.00757568
+252.36	0.00757294
+252.48	0.0075702
+252.6	0.00756747
+252.72	0.00756474
+252.84	0.00756201
+252.96	0.00755928
+253.08	0.00755656
+253.2	0.00755384
+253.32	0.00755112
+253.44	0.0075484
+253.56	0.00754569
+253.68	0.00754297
+253.8	0.00754027
+253.92	0.00753756
+254.04	0.00753485
+254.16	0.00753215
+254.28	0.00752945
+254.4	0.00752675
+254.52	0.00752406
+254.64	0.00752136
+254.76	0.00751867
+254.88	0.00751598
+255	0.0075133
+255.12	0.00751061
+255.24	0.00750793
+255.36	0.00750525
+255.48	0.00750257
+255.6	0.0074999
+255.72	0.00749723
+255.84	0.00749456
+255.96	0.00749189
+256.08	0.00748922
+256.2	0.00748656
+256.32	0.0074839
+256.44	0.00748124
+256.56	0.00747858
+256.68	0.00747593
+256.8	0.00747327
+256.92	0.00747062
+257.04	0.00746798
+257.16	0.00746533
+257.28	0.00746269
+257.4	0.00746005
+257.52	0.00745741
+257.64	0.00745477
+257.76	0.00745214
+257.88	0.00744951
+258	0.00744688
+258.12	0.00744425
+258.24	0.00744162
+258.36	0.007439
+258.48	0.00743638
+258.6	0.00743376
+258.72	0.00743115
+258.84	0.00742853
+258.96	0.00742592
+259.08	0.00742331
+259.2	0.0074207
+259.32	0.0074181
+259.44	0.0074155
+259.56	0.00741289
+259.68	0.0074103
+259.8	0.0074077
+259.92	0.00740511
+260.04	0.00740251
+260.16	0.00739992
+260.28	0.00739734
+260.4	0.00739475
+260.52	0.00739217
+260.64	0.00738959
+260.76	0.00738701
+260.88	0.00738443
+261	0.00738186
+261.12	0.00737928
+261.24	0.00737671
+261.36	0.00737415
+261.48	0.00737158
+261.6	0.00736902
+261.72	0.00736645
+261.84	0.0073639
+261.96	0.00736134
+262.08	0.00735878
+262.2	0.00735623
+262.32	0.00735368
+262.44	0.00735113
+262.56	0.00734858
+262.68	0.00734604
+262.8	0.0073435
+262.92	0.00734096
+263.04	0.00733842
+263.16	0.00733588
+263.28	0.00733335
+263.4	0.00733082
+263.52	0.00732829
+263.64	0.00732576
+263.76	0.00732323
+263.88	0.00732071
+264	0.00731819
+264.12	0.00731567
+264.24	0.00731315
+264.36	0.00731064
+264.48	0.00730813
+264.6	0.00730562
+264.72	0.00730311
+264.84	0.0073006
+264.96	0.0072981
+265.08	0.00729559
+265.2	0.00729309
+265.32	0.00729059
+265.44	0.0072881
+265.56	0.0072856
+265.68	0.00728311
+265.8	0.00728062
+265.92	0.00727813
+266.04	0.00727565
+266.16	0.00727316
+266.28	0.00727068
+266.4	0.0072682
+266.52	0.00726572
+266.64	0.00726325
+266.76	0.00726078
+266.88	0.0072583
+267	0.00725583
+267.12	0.00725337
+267.24	0.0072509
+267.36	0.00724844
+267.48	0.00724598
+267.6	0.00724352
+267.72	0.00724106
+267.84	0.0072386
+267.96	0.00723615
+268.08	0.0072337
+268.2	0.00723125
+268.32	0.0072288
+268.44	0.00722636
+268.56	0.00722391
+268.68	0.00722147
+268.8	0.00721903
+268.92	0.0072166
+269.04	0.00721416
+269.16	0.00721173
+269.28	0.0072093
+269.4	0.00720687
+269.52	0.00720444
+269.64	0.00720201
+269.76	0.00719959
+269.88	0.00719717
+270	0.00719475
+270.12	0.00719233
+270.24	0.00718992
+270.36	0.0071875
+270.48	0.00718509
+270.6	0.00718268
+270.72	0.00718027
+270.84	0.00717787
+270.96	0.00717546
+271.08	0.00717306
+271.2	0.00717066
+271.32	0.00716826
+271.44	0.00716587
+271.56	0.00716347
+271.68	0.00716108
+271.8	0.00715869
+271.92	0.0071563
+272.04	0.00715392
+272.16	0.00715153
+272.28	0.00714915
+272.4	0.00714677
+272.52	0.00714439
+272.64	0.00714201
+272.76	0.00713964
+272.88	0.00713727
+273	0.0071349
+273.12	0.00713253
+273.24	0.00713016
+273.36	0.00712779
+273.48	0.00712543
+273.6	0.00712307
+273.72	0.00712071
+273.84	0.00711835
+273.96	0.007116
+274.08	0.00711364
+274.2	0.00711129
+274.32	0.00710894
+274.44	0.00710659
+274.56	0.00710425
+274.68	0.0071019
+274.8	0.00709956
+274.92	0.00709722
+275.04	0.00709488
+275.16	0.00709254
+275.28	0.00709021
+275.4	0.00708787
+275.52	0.00708554
+275.64	0.00708321
+275.76	0.00708089
+275.88	0.00707856
+276	0.00707624
+276.12	0.00707391
+276.24	0.00707159
+276.36	0.00706927
+276.48	0.00706696
+276.6	0.00706464
+276.72	0.00706233
+276.84	0.00706002
+276.96	0.00705771
+277.08	0.0070554
+277.2	0.0070531
+277.32	0.00705079
+277.44	0.00704849
+277.56	0.00704619
+277.68	0.00704389
+277.8	0.0070416
+277.92	0.0070393
+278.04	0.00703701
+278.16	0.00703472
+278.28	0.00703243
+278.4	0.00703014
+278.52	0.00702786
+278.64	0.00702557
+278.76	0.00702329
+278.88	0.00702101
+279	0.00701873
+279.12	0.00701646
+279.24	0.00701418
+279.36	0.00701191
+279.48	0.00700964
+279.6	0.00700737
+279.72	0.0070051
+279.84	0.00700284
+279.96	0.00700057
+280.08	0.00699831
+280.2	0.00699605
+280.32	0.00699379
+280.44	0.00699153
+280.56	0.00698928
+280.68	0.00698703
+280.8	0.00698477
+280.92	0.00698252
+281.04	0.00698028
+281.16	0.00697803
+281.28	0.00697578
+281.4	0.00697354
+281.52	0.0069713
+281.64	0.00696906
+281.76	0.00696682
+281.88	0.00696459
+282	0.00696235
+282.12	0.00696012
+282.24	0.00695789
+282.36	0.00695566
+282.48	0.00695344
+282.6	0.00695121
+282.72	0.00694899
+282.84	0.00694677
+282.96	0.00694455
+283.08	0.00694233
+283.2	0.00694011
+283.32	0.0069379
+283.44	0.00693568
+283.56	0.00693347
+283.68	0.00693126
+283.8	0.00692905
+283.92	0.00692685
+284.04	0.00692464
+284.16	0.00692244
+284.28	0.00692024
+284.4	0.00691804
+284.52	0.00691584
+284.64	0.00691364
+284.76	0.00691145
+284.88	0.00690926
+285	0.00690707
+285.12	0.00690488
+285.24	0.00690269
+285.36	0.0069005
+285.48	0.00689832
+285.6	0.00689614
+285.72	0.00689396
+285.84	0.00689178
+285.96	0.0068896
+286.08	0.00688742
+286.2	0.00688525
+286.32	0.00688308
+286.44	0.00688091
+286.56	0.00687874
+286.68	0.00687657
+286.8	0.0068744
+286.92	0.00687224
+287.04	0.00687008
+287.16	0.00686792
+287.28	0.00686576
+287.4	0.0068636
+287.52	0.00686144
+287.64	0.00685929
+287.76	0.00685714
+287.88	0.00685499
+288	0.00685284
+288.12	0.00685069
+288.24	0.00684854
+288.36	0.0068464
+288.48	0.00684426
+288.6	0.00684211
+288.72	0.00683998
+288.84	0.00683784
+288.96	0.0068357
+289.08	0.00683357
+289.2	0.00683143
+289.32	0.0068293
+289.44	0.00682717
+289.56	0.00682504
+289.68	0.00682292
+289.8	0.00682079
+289.92	0.00681867
+290.04	0.00681655
+290.16	0.00681443
+290.28	0.00681231
+290.4	0.00681019
+290.52	0.00680808
+290.64	0.00680597
+290.76	0.00680385
+290.88	0.00680174
+291	0.00679963
+291.12	0.00679753
+291.24	0.00679542
+291.36	0.00679332
+291.48	0.00679122
+291.6	0.00678911
+291.72	0.00678702
+291.84	0.00678492
+291.96	0.00678282
+292.08	0.00678073
+292.2	0.00677863
+292.32	0.00677654
+292.44	0.00677445
+292.56	0.00677237
+292.68	0.00677028
+292.8	0.00676819
+292.92	0.00676611
+293.04	0.00676403
+293.16	0.00676195
+293.28	0.00675987
+293.4	0.00675779
+293.52	0.00675572
+293.64	0.00675364
+293.76	0.00675157
+293.88	0.0067495
+294	0.00674743
+294.12	0.00674536
+294.24	0.0067433
+294.36	0.00674123
+294.48	0.00673917
+294.6	0.00673711
+294.72	0.00673505
+294.84	0.00673299
+294.96	0.00673093
+295.08	0.00672888
+295.2	0.00672682
+295.32	0.00672477
+295.44	0.00672272
+295.56	0.00672067
+295.68	0.00671862
+295.8	0.00671658
+295.92	0.00671453
+296.04	0.00671249
+296.16	0.00671045
+296.28	0.00670841
+296.4	0.00670637
+296.52	0.00670433
+296.64	0.0067023
+296.76	0.00670027
+296.88	0.00669823
+297	0.0066962
+297.12	0.00669417
+297.24	0.00669215
+297.36	0.00669012
+297.48	0.0066881
+297.6	0.00668607
+297.72	0.00668405
+297.84	0.00668203
+297.96	0.00668001
+298.08	0.006678
+298.2	0.00667598
+298.32	0.00667397
+298.44	0.00667196
+298.56	0.00666994
+298.68	0.00666793
+298.8	0.00666593
+298.92	0.00666392
+299.04	0.00666192
+299.16	0.00665991
+299.28	0.00665791
+299.4	0.00665591
+299.52	0.00665391
+299.64	0.00665191
+299.76	0.00664992
+299.88	0.00664792
+300	0.00664593
+300.12	0.00664394
+300.24	0.00664195
+300.36	0.00663996
+300.48	0.00663797
+300.6	0.00663598
+300.72	0.006634
+300.84	0.00663202
+300.96	0.00663003
+301.08	0.00662805
+301.2	0.00662608
+301.32	0.0066241
+301.44	0.00662212
+301.56	0.00662015
+301.68	0.00661818
+301.8	0.0066162
+301.92	0.00661423
+302.04	0.00661227
+302.16	0.0066103
+302.28	0.00660833
+302.4	0.00660637
+302.52	0.00660441
+302.64	0.00660244
+302.76	0.00660048
+302.88	0.00659853
+303	0.00659657
+303.12	0.00659461
+303.24	0.00659266
+303.36	0.00659071
+303.48	0.00658875
+303.6	0.0065868
+303.72	0.00658486
+303.84	0.00658291
+303.96	0.00658096
+304.08	0.00657902
+304.2	0.00657708
+304.32	0.00657513
+304.44	0.00657319
+304.56	0.00657126
+304.68	0.00656932
+304.8	0.00656738
+304.92	0.00656545
+305.04	0.00656352
+305.16	0.00656158
+305.28	0.00655965
+305.4	0.00655772
+305.52	0.0065558
+305.64	0.00655387
+305.76	0.00655195
+305.88	0.00655002
+306	0.0065481
+306.12	0.00654618
+306.24	0.00654426
+306.36	0.00654234
+306.48	0.00654043
+306.6	0.00653851
+306.72	0.0065366
+306.84	0.00653469
+306.96	0.00653278
+307.08	0.00653087
+307.2	0.00652896
+307.32	0.00652705
+307.44	0.00652515
+307.56	0.00652324
+307.68	0.00652134
+307.8	0.00651944
+307.92	0.00651754
+308.04	0.00651564
+308.16	0.00651375
+308.28	0.00651185
+308.4	0.00650996
+308.52	0.00650806
+308.64	0.00650617
+308.76	0.00650428
+308.88	0.00650239
+309	0.00650051
+309.12	0.00649862
+309.24	0.00649673
+309.36	0.00649485
+309.48	0.00649297
+309.6	0.00649109
+309.72	0.00648921
+309.84	0.00648733
+309.96	0.00648545
+310.08	0.00648358
+310.2	0.00648171
+310.32	0.00647983
+310.44	0.00647796
+310.56	0.00647609
+310.68	0.00647422
+310.8	0.00647236
+310.92	0.00647049
+311.04	0.00646862
+311.16	0.00646676
+311.28	0.0064649
+311.4	0.00646304
+311.52	0.00646118
+311.64	0.00645932
+311.76	0.00645746
+311.88	0.00645561
+312	0.00645375
+312.12	0.0064519
+312.24	0.00645005
+312.36	0.0064482
+312.48	0.00644635
+312.6	0.0064445
+312.72	0.00644266
+312.84	0.00644081
+312.96	0.00643897
+313.08	0.00643713
+313.2	0.00643528
+313.32	0.00643345
+313.44	0.00643161
+313.56	0.00642977
+313.68	0.00642793
+313.8	0.0064261
+313.92	0.00642427
+314.04	0.00642243
+314.16	0.0064206
+314.28	0.00641877
+314.4	0.00641695
+314.52	0.00641512
+314.64	0.00641329
+314.76	0.00641147
+314.88	0.00640965
+315	0.00640782
+315.12	0.006406
+315.24	0.00640418
+315.36	0.00640237
+315.48	0.00640055
+315.6	0.00639873
+315.72	0.00639692
+315.84	0.00639511
+315.96	0.0063933
+316.08	0.00639149
+316.2	0.00638968
+316.32	0.00638787
+316.44	0.00638606
+316.56	0.00638426
+316.68	0.00638245
+316.8	0.00638065
+316.92	0.00637885
+317.04	0.00637705
+317.16	0.00637525
+317.28	0.00637345
+317.4	0.00637166
+317.52	0.00636986
+317.64	0.00636807
+317.76	0.00636627
+317.88	0.00636448
+318	0.00636269
+318.12	0.0063609
+318.24	0.00635912
+318.36	0.00635733
+318.48	0.00635554
+318.6	0.00635376
+318.72	0.00635198
+318.84	0.0063502
+318.96	0.00634842
+319.08	0.00634664
+319.2	0.00634486
+319.32	0.00634308
+319.44	0.00634131
+319.56	0.00633953
+319.68	0.00633776
+319.8	0.00633599
+319.92	0.00633422
+320.04	0.00633245
+320.16	0.00633068
+320.28	0.00632891
+320.4	0.00632715
+320.52	0.00632538
+320.64	0.00632362
+320.76	0.00632186
+320.88	0.0063201
+321	0.00631834
+321.12	0.00631658
+321.24	0.00631482
+321.36	0.00631307
+321.48	0.00631131
+321.6	0.00630956
+321.72	0.00630781
+321.84	0.00630606
+321.96	0.00630431
+322.08	0.00630256
+322.2	0.00630081
+322.32	0.00629907
+322.44	0.00629732
+322.56	0.00629558
+322.68	0.00629383
+322.8	0.00629209
+322.92	0.00629035
+323.04	0.00628861
+323.16	0.00628688
+323.28	0.00628514
+323.4	0.0062834
+323.52	0.00628167
+323.64	0.00627994
+323.76	0.0062782
+323.88	0.00627647
+324	0.00627474
+324.12	0.00627302
+324.24	0.00627129
+324.36	0.00626956
+324.48	0.00626784
+324.6	0.00626611
+324.72	0.00626439
+324.84	0.00626267
+324.96	0.00626095
+325.08	0.00625923
+325.2	0.00625751
+325.32	0.0062558
+325.44	0.00625408
+325.56	0.00625237
+325.68	0.00625066
+325.8	0.00624894
+325.92	0.00624723
+326.04	0.00624552
+326.16	0.00624381
+326.28	0.00624211
+326.4	0.0062404
+326.52	0.0062387
+326.64	0.00623699
+326.76	0.00623529
+326.88	0.00623359
+327	0.00623189
+327.12	0.00623019
+327.24	0.00622849
+327.36	0.00622679
+327.48	0.0062251
+327.6	0.0062234
+327.72	0.00622171
+327.84	0.00622002
+327.96	0.00621833
+328.08	0.00621664
+328.2	0.00621495
+328.32	0.00621326
+328.44	0.00621157
+328.56	0.00620989
+328.68	0.0062082
+328.8	0.00620652
+328.92	0.00620484
+329.04	0.00620316
+329.16	0.00620148
+329.28	0.0061998
+329.4	0.00619812
+329.52	0.00619645
+329.64	0.00619477
+329.76	0.0061931
+329.88	0.00619142
+330	0.00618975
+330.12	0.00618808
+330.24	0.00618641
+330.36	0.00618474
+330.48	0.00618307
+330.6	0.00618141
+330.72	0.00617974
+330.84	0.00617808
+330.96	0.00617642
+331.08	0.00617475
+331.2	0.00617309
+331.32	0.00617143
+331.44	0.00616978
+331.56	0.00616812
+331.68	0.00616646
+331.8	0.00616481
+331.92	0.00616315
+332.04	0.0061615
+332.16	0.00615985
+332.28	0.0061582
+332.4	0.00615655
+332.52	0.0061549
+332.64	0.00615325
+332.76	0.00615161
+332.88	0.00614996
+333	0.00614832
+333.12	0.00614667
+333.24	0.00614503
+333.36	0.00614339
+333.48	0.00614175
+333.6	0.00614011
+333.72	0.00613847
+333.84	0.00613684
+333.96	0.0061352
+334.08	0.00613357
+334.2	0.00613193
+334.32	0.0061303
+334.44	0.00612867
+334.56	0.00612704
+334.68	0.00612541
+334.8	0.00612378
+334.92	0.00612216
+335.04	0.00612053
+335.16	0.00611891
+335.28	0.00611728
+335.4	0.00611566
+335.52	0.00611404
+335.64	0.00611242
+335.76	0.0061108
+335.88	0.00610918
+336	0.00610756
+336.12	0.00610595
+336.24	0.00610433
+336.36	0.00610272
+336.48	0.00610111
+336.6	0.00609949
+336.72	0.00609788
+336.84	0.00609627
+336.96	0.00609466
+337.08	0.00609306
+337.2	0.00609145
+337.32	0.00608985
+337.44	0.00608824
+337.56	0.00608664
+337.68	0.00608504
+337.8	0.00608343
+337.92	0.00608183
+338.04	0.00608023
+338.16	0.00607864
+338.28	0.00607704
+338.4	0.00607544
+338.52	0.00607385
+338.64	0.00607225
+338.76	0.00607066
+338.88	0.00606907
+339	0.00606748
+339.12	0.00606589
+339.24	0.0060643
+339.36	0.00606271
+339.48	0.00606113
+339.6	0.00605954
+339.72	0.00605796
+339.84	0.00605637
+339.96	0.00605479
+340.08	0.00605321
+340.2	0.00605163
+340.32	0.00605005
+340.44	0.00604847
+340.56	0.00604689
+340.68	0.00604532
+340.8	0.00604374
+340.92	0.00604217
+341.04	0.00604059
+341.16	0.00603902
+341.28	0.00603745
+341.4	0.00603588
+341.52	0.00603431
+341.64	0.00603274
+341.76	0.00603118
+341.88	0.00602961
+342	0.00602804
+342.12	0.00602648
+342.24	0.00602492
+342.36	0.00602335
+342.48	0.00602179
+342.6	0.00602023
+342.72	0.00601867
+342.84	0.00601712
+342.96	0.00601556
+343.08	0.006014
+343.2	0.00601245
+343.32	0.00601089
+343.44	0.00600934
+343.56	0.00600779
+343.68	0.00600624
+343.8	0.00600469
+343.92	0.00600314
+344.04	0.00600159
+344.16	0.00600004
+344.28	0.0059985
+344.4	0.00599695
+344.52	0.00599541
+344.64	0.00599387
+344.76	0.00599232
+344.88	0.00599078
+345	0.00598924
+345.12	0.0059877
+345.24	0.00598617
+345.36	0.00598463
+345.48	0.00598309
+345.6	0.00598156
+345.72	0.00598002
+345.84	0.00597849
+345.96	0.00597696
+346.08	0.00597543
+346.2	0.0059739
+346.32	0.00597237
+346.44	0.00597084
+346.56	0.00596931
+346.68	0.00596779
+346.8	0.00596626
+346.92	0.00596474
+347.04	0.00596321
+347.16	0.00596169
+347.28	0.00596017
+347.4	0.00595865
+347.52	0.00595713
+347.64	0.00595561
+347.76	0.00595409
+347.88	0.00595258
+348	0.00595106
+348.12	0.00594955
+348.24	0.00594803
+348.36	0.00594652
+348.48	0.00594501
+348.6	0.0059435
+348.72	0.00594199
+348.84	0.00594048
+348.96	0.00593897
+349.08	0.00593747
+349.2	0.00593596
+349.32	0.00593445
+349.44	0.00593295
+349.56	0.00593145
+349.68	0.00592995
+349.8	0.00592844
+349.92	0.00592694
+350.04	0.00592545
+350.16	0.00592395
+350.28	0.00592245
+350.4	0.00592095
+350.52	0.00591946
+350.64	0.00591796
+350.76	0.00591647
+350.88	0.00591498
+351	0.00591349
+351.12	0.00591199
+351.24	0.0059105
+351.36	0.00590902
+351.48	0.00590753
+351.6	0.00590604
+351.72	0.00590455
+351.84	0.00590307
+351.96	0.00590159
+352.08	0.0059001
+352.2	0.00589862
+352.32	0.00589714
+352.44	0.00589566
+352.56	0.00589418
+352.68	0.0058927
+352.8	0.00589122
+352.92	0.00588975
+353.04	0.00588827
+353.16	0.0058868
+353.28	0.00588532
+353.4	0.00588385
+353.52	0.00588238
+353.64	0.00588091
+353.76	0.00587944
+353.88	0.00587797
+354	0.0058765
+354.12	0.00587503
+354.24	0.00587356
+354.36	0.0058721
+354.48	0.00587063
+354.6	0.00586917
+354.72	0.00586771
+354.84	0.00586624
+354.96	0.00586478
+355.08	0.00586332
+355.2	0.00586186
+355.32	0.00586041
+355.44	0.00585895
+355.56	0.00585749
+355.68	0.00585604
+355.8	0.00585458
+355.92	0.00585313
+356.04	0.00585168
+356.16	0.00585022
+356.28	0.00584877
+356.4	0.00584732
+356.52	0.00584587
+356.64	0.00584443
+356.76	0.00584298
+356.88	0.00584153
+357	0.00584009
+357.12	0.00583864
+357.24	0.0058372
+357.36	0.00583575
+357.48	0.00583431
+357.6	0.00583287
+357.72	0.00583143
+357.84	0.00582999
+357.96	0.00582855
+358.08	0.00582712
+358.2	0.00582568
+358.32	0.00582424
+358.44	0.00582281
+358.56	0.00582137
+358.68	0.00581994
+358.8	0.00581851
+358.92	0.00581708
+359.04	0.00581565
+359.16	0.00581422
+359.28	0.00581279
+359.4	0.00581136
+359.52	0.00580994
+359.64	0.00580851
+359.76	0.00580708
+359.88	0.00580566
+360	0.00580424
+360.12	0.00580281
+360.24	0.00580139
+360.36	0.00579997
+360.48	0.00579855
+360.6	0.00579713
+360.72	0.00579571
+360.84	0.0057943
+360.96	0.00579288
+361.08	0.00579147
+361.2	0.00579005
+361.32	0.00578864
+361.44	0.00578722
+361.56	0.00578581
+361.68	0.0057844
+361.8	0.00578299
+361.92	0.00578158
+362.04	0.00578017
+362.16	0.00577877
+362.28	0.00577736
+362.4	0.00577595
+362.52	0.00577455
+362.64	0.00577314
+362.76	0.00577174
+362.88	0.00577034
+363	0.00576894
+363.12	0.00576754
+363.24	0.00576614
+363.36	0.00576474
+363.48	0.00576334
+363.6	0.00576194
+363.72	0.00576054
+363.84	0.00575915
+363.96	0.00575775
+364.08	0.00575636
+364.2	0.00575497
+364.32	0.00575357
+364.44	0.00575218
+364.56	0.00575079
+364.68	0.0057494
+364.8	0.00574801
+364.92	0.00574663
+365.04	0.00574524
+365.16	0.00574385
+365.28	0.00574247
+365.4	0.00574108
+365.52	0.0057397
+365.64	0.00573832
+365.76	0.00573693
+365.88	0.00573555
+366	0.00573417
+366.12	0.00573279
+366.24	0.00573141
+366.36	0.00573004
+366.48	0.00572866
+366.6	0.00572728
+366.72	0.00572591
+366.84	0.00572453
+366.96	0.00572316
+367.08	0.00572179
+367.2	0.00572041
+367.32	0.00571904
+367.44	0.00571767
+367.56	0.0057163
+367.68	0.00571493
+367.8	0.00571357
+367.92	0.0057122
+368.04	0.00571083
+368.16	0.00570947
+368.28	0.0057081
+368.4	0.00570674
+368.52	0.00570538
+368.64	0.00570401
+368.76	0.00570265
+368.88	0.00570129
+369	0.00569993
+369.12	0.00569857
+369.24	0.00569722
+369.36	0.00569586
+369.48	0.0056945
+369.6	0.00569315
+369.72	0.00569179
+369.84	0.00569044
+369.96	0.00568908
+370.08	0.00568773
+370.2	0.00568638
+370.32	0.00568503
+370.44	0.00568368
+370.56	0.00568233
+370.68	0.00568098
+370.8	0.00567963
+370.92	0.00567829
+371.04	0.00567694
+371.16	0.0056756
+371.28	0.00567425
+371.4	0.00567291
+371.52	0.00567157
+371.64	0.00567023
+371.76	0.00566888
+371.88	0.00566754
+372	0.0056662
+372.12	0.00566487
+372.24	0.00566353
+372.36	0.00566219
+372.48	0.00566086
+372.6	0.00565952
+372.72	0.00565819
+372.84	0.00565685
+372.96	0.00565552
+373.08	0.00565419
+373.2	0.00565285
+373.32	0.00565152
+373.44	0.00565019
+373.56	0.00564887
+373.68	0.00564754
+373.8	0.00564621
+373.92	0.00564488
+374.04	0.00564356
+374.16	0.00564223
+374.28	0.00564091
+374.4	0.00563958
+374.52	0.00563826
+374.64	0.00563694
+374.76	0.00563562
+374.88	0.0056343
+375	0.00563298
+375.12	0.00563166
+375.24	0.00563034
+375.36	0.00562902
+375.48	0.00562771
+375.6	0.00562639
+375.72	0.00562508
+375.84	0.00562376
+375.96	0.00562245
+376.08	0.00562114
+376.2	0.00561982
+376.32	0.00561851
+376.44	0.0056172
+376.56	0.00561589
+376.68	0.00561459
+376.8	0.00561328
+376.92	0.00561197
+377.04	0.00561066
+377.16	0.00560936
+377.28	0.00560805
+377.4	0.00560675
+377.52	0.00560545
+377.64	0.00560414
+377.76	0.00560284
+377.88	0.00560154
+378	0.00560024
+378.12	0.00559894
+378.24	0.00559764
+378.36	0.00559634
+378.48	0.00559505
+378.6	0.00559375
+378.72	0.00559246
+378.84	0.00559116
+378.96	0.00558987
+379.08	0.00558857
+379.2	0.00558728
+379.32	0.00558599
+379.44	0.0055847
+379.56	0.00558341
+379.68	0.00558212
+379.8	0.00558083
+379.92	0.00557954
+380.04	0.00557825
+380.16	0.00557697
+380.28	0.00557568
+380.4	0.0055744
+380.52	0.00557311
+380.64	0.00557183
+380.76	0.00557055
+380.88	0.00556926
+381	0.00556798
+381.12	0.0055667
+381.24	0.00556542
+381.36	0.00556414
+381.48	0.00556286
+381.6	0.00556159
+381.72	0.00556031
+381.84	0.00555903
+381.96	0.00555776
+382.08	0.00555648
+382.2	0.00555521
+382.32	0.00555394
+382.44	0.00555266
+382.56	0.00555139
+382.68	0.00555012
+382.8	0.00554885
+382.92	0.00554758
+383.04	0.00554631
+383.16	0.00554505
+383.28	0.00554378
+383.4	0.00554251
+383.52	0.00554125
+383.64	0.00553998
+383.76	0.00553872
+383.88	0.00553745
+384	0.00553619
+384.12	0.00553493
+384.24	0.00553367
+384.36	0.00553241
+384.48	0.00553115
+384.6	0.00552989
+384.72	0.00552863
+384.84	0.00552737
+384.96	0.00552612
+385.08	0.00552486
+385.2	0.0055236
+385.32	0.00552235
+385.44	0.0055211
+385.56	0.00551984
+385.68	0.00551859
+385.8	0.00551734
+385.92	0.00551609
+386.04	0.00551484
+386.16	0.00551359
+386.28	0.00551234
+386.4	0.00551109
+386.52	0.00550984
+386.64	0.00550859
+386.76	0.00550735
+386.88	0.0055061
+387	0.00550486
+387.12	0.00550361
+387.24	0.00550237
+387.36	0.00550113
+387.48	0.00549989
+387.6	0.00549865
+387.72	0.00549741
+387.84	0.00549617
+387.96	0.00549493
+388.08	0.00549369
+388.2	0.00549245
+388.32	0.00549121
+388.44	0.00548998
+388.56	0.00548874
+388.68	0.00548751
+388.8	0.00548627
+388.92	0.00548504
+389.04	0.00548381
+389.16	0.00548258
+389.28	0.00548135
+389.4	0.00548012
+389.52	0.00547889
+389.64	0.00547766
+389.76	0.00547643
+389.88	0.0054752
+390	0.00547397
+390.12	0.00547275
+390.24	0.00547152
+390.36	0.0054703
+390.48	0.00546907
+390.6	0.00546785
+390.72	0.00546663
+390.84	0.0054654
+390.96	0.00546418
+391.08	0.00546296
+391.2	0.00546174
+391.32	0.00546052
+391.44	0.00545931
+391.56	0.00545809
+391.68	0.00545687
+391.8	0.00545565
+391.92	0.00545444
+392.04	0.00545322
+392.16	0.00545201
+392.28	0.00545079
+392.4	0.00544958
+392.52	0.00544837
+392.64	0.00544716
+392.76	0.00544595
+392.88	0.00544474
+393	0.00544353
+393.12	0.00544232
+393.24	0.00544111
+393.36	0.0054399
+393.48	0.00543869
+393.6	0.00543749
+393.72	0.00543628
+393.84	0.00543508
+393.96	0.00543387
+394.08	0.00543267
+394.2	0.00543147
+394.32	0.00543027
+394.44	0.00542906
+394.56	0.00542786
+394.68	0.00542666
+394.8	0.00542546
+394.92	0.00542427
+395.04	0.00542307
+395.16	0.00542187
+395.28	0.00542067
+395.4	0.00541948
+395.52	0.00541828
+395.64	0.00541709
+395.76	0.00541589
+395.88	0.0054147
+396	0.00541351
+396.12	0.00541232
+396.24	0.00541112
+396.36	0.00540993
+396.48	0.00540874
+396.6	0.00540755
+396.72	0.00540637
+396.84	0.00540518
+396.96	0.00540399
+397.08	0.0054028
+397.2	0.00540162
+397.32	0.00540043
+397.44	0.00539925
+397.56	0.00539806
+397.68	0.00539688
+397.8	0.0053957
+397.92	0.00539452
+398.04	0.00539334
+398.16	0.00539215
+398.28	0.00539097
+398.4	0.0053898
+398.52	0.00538862
+398.64	0.00538744
+398.76	0.00538626
+398.88	0.00538508
+399	0.00538391
+399.12	0.00538273
+399.24	0.00538156
+399.36	0.00538038
+399.48	0.00537921
+399.6	0.00537804
+399.72	0.00537687
+399.84	0.0053757
+399.96	0.00537452
+400.08	0.00537335
+400.2	0.00537218
+400.32	0.00537102
+400.44	0.00536985
+400.56	0.00536868
+400.68	0.00536751
+400.8	0.00536635
+400.92	0.00536518
+401.04	0.00536402
+401.16	0.00536285
+401.28	0.00536169
+401.4	0.00536053
+401.52	0.00535936
+401.64	0.0053582
+401.76	0.00535704
+401.88	0.00535588
+402	0.00535472
+402.12	0.00535356
+402.24	0.0053524
+402.36	0.00535125
+402.48	0.00535009
+402.6	0.00534893
+402.72	0.00534778
+402.84	0.00534662
+402.96	0.00534547
+403.08	0.00534431
+403.2	0.00534316
+403.32	0.00534201
+403.44	0.00534085
+403.56	0.0053397
+403.68	0.00533855
+403.8	0.0053374
+403.92	0.00533625
+404.04	0.0053351
+404.16	0.00533396
+404.28	0.00533281
+404.4	0.00533166
+404.52	0.00533051
+404.64	0.00532937
+404.76	0.00532822
+404.88	0.00532708
+405	0.00532594
+405.12	0.00532479
+405.24	0.00532365
+405.36	0.00532251
+405.48	0.00532137
+405.6	0.00532023
+405.72	0.00531909
+405.84	0.00531795
+405.96	0.00531681
+406.08	0.00531567
+406.2	0.00531453
+406.32	0.0053134
+406.44	0.00531226
+406.56	0.00531112
+406.68	0.00530999
+406.8	0.00530885
+406.92	0.00530772
+407.04	0.00530659
+407.16	0.00530545
+407.28	0.00530432
+407.4	0.00530319
+407.52	0.00530206
+407.64	0.00530093
+407.76	0.0052998
+407.88	0.00529867
+408	0.00529754
+408.12	0.00529642
+408.24	0.00529529
+408.36	0.00529416
+408.48	0.00529304
+408.6	0.00529191
+408.72	0.00529079
+408.84	0.00528966
+408.96	0.00528854
+409.08	0.00528742
+409.2	0.0052863
+409.32	0.00528517
+409.44	0.00528405
+409.56	0.00528293
+409.68	0.00528181
+409.8	0.0052807
+409.92	0.00527958
+410.04	0.00527846
+410.16	0.00527734
+410.28	0.00527623
+410.4	0.00527511
+410.52	0.00527399
+410.64	0.00527288
+410.76	0.00527177
+410.88	0.00527065
+411	0.00526954
+411.12	0.00526843
+411.24	0.00526731
+411.36	0.0052662
+411.48	0.00526509
+411.6	0.00526398
+411.72	0.00526287
+411.84	0.00526177
+411.96	0.00526066
+412.08	0.00525955
+412.2	0.00525844
+412.32	0.00525734
+412.44	0.00525623
+412.56	0.00525513
+412.68	0.00525402
+412.8	0.00525292
+412.92	0.00525181
+413.04	0.00525071
+413.16	0.00524961
+413.28	0.00524851
+413.4	0.00524741
+413.52	0.00524631
+413.64	0.00524521
+413.76	0.00524411
+413.88	0.00524301
+414	0.00524191
+414.12	0.00524081
+414.24	0.00523972
+414.36	0.00523862
+414.48	0.00523753
+414.6	0.00523643
+414.72	0.00523534
+414.84	0.00523424
+414.96	0.00523315
+415.08	0.00523206
+415.2	0.00523096
+415.32	0.00522987
+415.44	0.00522878
+415.56	0.00522769
+415.68	0.0052266
+415.8	0.00522551
+415.92	0.00522442
+416.04	0.00522334
+416.16	0.00522225
+416.28	0.00522116
+416.4	0.00522008
+416.52	0.00521899
+416.64	0.00521791
+416.76	0.00521682
+416.88	0.00521574
+417	0.00521465
+417.12	0.00521357
+417.24	0.00521249
+417.36	0.00521141
+417.48	0.00521033
+417.6	0.00520925
+417.72	0.00520817
+417.84	0.00520709
+417.96	0.00520601
+418.08	0.00520493
+418.2	0.00520385
+418.32	0.00520278
+418.44	0.0052017
+418.56	0.00520062
+418.68	0.00519955
+418.8	0.00519847
+418.92	0.0051974
+419.04	0.00519633
+419.16	0.00519525
+419.28	0.00519418
+419.4	0.00519311
+419.52	0.00519204
+419.64	0.00519097
+419.76	0.0051899
+419.88	0.00518883
+420	0.00518776
+420.12	0.00518669
+420.24	0.00518562
+420.36	0.00518456
+420.48	0.00518349
+420.6	0.00518242
+420.72	0.00518136
+420.84	0.00518029
+420.96	0.00517923
+421.08	0.00517817
+421.2	0.0051771
+421.32	0.00517604
+421.44	0.00517498
+421.56	0.00517392
+421.68	0.00517286
+421.8	0.00517179
+421.92	0.00517073
+422.04	0.00516968
+422.16	0.00516862
+422.28	0.00516756
+422.4	0.0051665
+422.52	0.00516544
+422.64	0.00516439
+422.76	0.00516333
+422.88	0.00516228
+423	0.00516122
+423.12	0.00516017
+423.24	0.00515911
+423.36	0.00515806
+423.48	0.00515701
+423.6	0.00515596
+423.72	0.0051549
+423.84	0.00515385
+423.96	0.0051528
+424.08	0.00515175
+424.2	0.0051507
+424.32	0.00514966
+424.44	0.00514861
+424.56	0.00514756
+424.68	0.00514651
+424.8	0.00514547
+424.92	0.00514442
+425.04	0.00514337
+425.16	0.00514233
+425.28	0.00514129
+425.4	0.00514024
+425.52	0.0051392
+425.64	0.00513816
+425.76	0.00513711
+425.88	0.00513607
+426	0.00513503
+426.12	0.00513399
+426.24	0.00513295
+426.36	0.00513191
+426.48	0.00513087
+426.6	0.00512983
+426.72	0.0051288
+426.84	0.00512776
+426.96	0.00512672
+427.08	0.00512569
+427.2	0.00512465
+427.32	0.00512362
+427.44	0.00512258
+427.56	0.00512155
+427.68	0.00512051
+427.8	0.00511948
+427.92	0.00511845
+428.04	0.00511742
+428.16	0.00511639
+428.28	0.00511536
+428.4	0.00511433
+428.52	0.0051133
+428.64	0.00511227
+428.76	0.00511124
+428.88	0.00511021
+429	0.00510918
+429.12	0.00510816
+429.24	0.00510713
+429.36	0.0051061
+429.48	0.00510508
+429.6	0.00510405
+429.72	0.00510303
+429.84	0.00510201
+429.96	0.00510098
+430.08	0.00509996
+430.2	0.00509894
+430.32	0.00509792
+430.44	0.0050969
+430.56	0.00509587
+430.68	0.00509485
+430.8	0.00509384
+430.92	0.00509282
+431.04	0.0050918
+431.16	0.00509078
+431.28	0.00508976
+431.4	0.00508875
+431.52	0.00508773
+431.64	0.00508671
+431.76	0.0050857
+431.88	0.00508468
+432	0.00508367
+432.12	0.00508266
+432.24	0.00508164
+432.36	0.00508063
+432.48	0.00507962
+432.6	0.00507861
+432.72	0.0050776
+432.84	0.00507658
+432.96	0.00507557
+433.08	0.00507457
+433.2	0.00507356
+433.32	0.00507255
+433.44	0.00507154
+433.56	0.00507053
+433.68	0.00506953
+433.8	0.00506852
+433.92	0.00506751
+434.04	0.00506651
+434.16	0.0050655
+434.28	0.0050645
+434.4	0.0050635
+434.52	0.00506249
+434.64	0.00506149
+434.76	0.00506049
+434.88	0.00505949
+435	0.00505848
+435.12	0.00505748
+435.24	0.00505648
+435.36	0.00505548
+435.48	0.00505449
+435.6	0.00505349
+435.72	0.00505249
+435.84	0.00505149
+435.96	0.00505049
+436.08	0.0050495
+436.2	0.0050485
+436.32	0.00504751
+436.44	0.00504651
+436.56	0.00504552
+436.68	0.00504452
+436.8	0.00504353
+436.92	0.00504254
+437.04	0.00504154
+437.16	0.00504055
+437.28	0.00503956
+437.4	0.00503857
+437.52	0.00503758
+437.64	0.00503659
+437.76	0.0050356
+437.88	0.00503461
+438	0.00503362
+438.12	0.00503263
+438.24	0.00503165
+438.36	0.00503066
+438.48	0.00502967
+438.6	0.00502869
+438.72	0.0050277
+438.84	0.00502672
+438.96	0.00502573
+439.08	0.00502475
+439.2	0.00502377
+439.32	0.00502278
+439.44	0.0050218
+439.56	0.00502082
+439.68	0.00501984
+439.8	0.00501886
+439.92	0.00501788
+440.04	0.0050169
+440.16	0.00501592
+440.28	0.00501494
+440.4	0.00501396
+440.52	0.00501298
+440.64	0.005012
+440.76	0.00501103
+440.88	0.00501005
+441	0.00500907
+441.12	0.0050081
+441.24	0.00500712
+441.36	0.00500615
+441.48	0.00500518
+441.6	0.0050042
+441.72	0.00500323
+441.84	0.00500226
+441.96	0.00500128
+442.08	0.00500031
+442.2	0.00499934
+442.32	0.00499837
+442.44	0.0049974
+442.56	0.00499643
+442.68	0.00499546
+442.8	0.0049945
+442.92	0.00499353
+443.04	0.00499256
+443.16	0.00499159
+443.28	0.00499063
+443.4	0.00498966
+443.52	0.00498869
+443.64	0.00498773
+443.76	0.00498677
+443.88	0.0049858
+444	0.00498484
+444.12	0.00498388
+444.24	0.00498291
+444.36	0.00498195
+444.48	0.00498099
+444.6	0.00498003
+444.72	0.00497907
+444.84	0.00497811
+444.96	0.00497715
+445.08	0.00497619
+445.2	0.00497523
+445.32	0.00497427
+445.44	0.00497332
+445.56	0.00497236
+445.68	0.0049714
+445.8	0.00497045
+445.92	0.00496949
+446.04	0.00496854
+446.16	0.00496758
+446.28	0.00496663
+446.4	0.00496567
+446.52	0.00496472
+446.64	0.00496377
+446.76	0.00496282
+446.88	0.00496186
+447	0.00496091
+447.12	0.00495996
+447.24	0.00495901
+447.36	0.00495806
+447.48	0.00495711
+447.6	0.00495616
+447.72	0.00495522
+447.84	0.00495427
+447.96	0.00495332
+448.08	0.00495237
+448.2	0.00495143
+448.32	0.00495048
+448.44	0.00494954
+448.56	0.00494859
+448.68	0.00494765
+448.8	0.0049467
+448.92	0.00494576
+449.04	0.00494482
+449.16	0.00494387
+449.28	0.00494293
+449.4	0.00494199
+449.52	0.00494105
+449.64	0.00494011
+449.76	0.00493917
+449.88	0.00493823
+450	0.00493729
+450.12	0.00493635
+450.24	0.00493541
+450.36	0.00493447
+450.48	0.00493353
+450.6	0.0049326
+450.72	0.00493166
+450.84	0.00493072
+450.96	0.00492979
+451.08	0.00492885
+451.2	0.00492792
+451.32	0.00492698
+451.44	0.00492605
+451.56	0.00492512
+451.68	0.00492418
+451.8	0.00492325
+451.92	0.00492232
+452.04	0.00492139
+452.16	0.00492046
+452.28	0.00491953
+452.4	0.0049186
+452.52	0.00491767
+452.64	0.00491674
+452.76	0.00491581
+452.88	0.00491488
+453	0.00491395
+453.12	0.00491303
+453.24	0.0049121
+453.36	0.00491117
+453.48	0.00491025
+453.6	0.00490932
+453.72	0.0049084
+453.84	0.00490747
+453.96	0.00490655
+454.08	0.00490562
+454.2	0.0049047
+454.32	0.00490378
+454.44	0.00490285
+454.56	0.00490193
+454.68	0.00490101
+454.8	0.00490009
+454.92	0.00489917
+455.04	0.00489825
+455.16	0.00489733
+455.28	0.00489641
+455.4	0.00489549
+455.52	0.00489457
+455.64	0.00489366
+455.76	0.00489274
+455.88	0.00489182
+456	0.00489091
+456.12	0.00488999
+456.24	0.00488907
+456.36	0.00488816
+456.48	0.00488724
+456.6	0.00488633
+456.72	0.00488542
+456.84	0.0048845
+456.96	0.00488359
+457.08	0.00488268
+457.2	0.00488177
+457.32	0.00488085
+457.44	0.00487994
+457.56	0.00487903
+457.68	0.00487812
+457.8	0.00487721
+457.92	0.0048763
+458.04	0.0048754
+458.16	0.00487449
+458.28	0.00487358
+458.4	0.00487267
+458.52	0.00487176
+458.64	0.00487086
+458.76	0.00486995
+458.88	0.00486905
+459	0.00486814
+459.12	0.00486724
+459.24	0.00486633
+459.36	0.00486543
+459.48	0.00486452
+459.6	0.00486362
+459.72	0.00486272
+459.84	0.00486182
+459.96	0.00486091
+460.08	0.00486001
+460.2	0.00485911
+460.32	0.00485821
+460.44	0.00485731
+460.56	0.00485641
+460.68	0.00485551
+460.8	0.00485462
+460.92	0.00485372
+461.04	0.00485282
+461.16	0.00485192
+461.28	0.00485102
+461.4	0.00485013
+461.52	0.00484923
+461.64	0.00484834
+461.76	0.00484744
+461.88	0.00484655
+462	0.00484565
+462.12	0.00484476
+462.24	0.00484387
+462.36	0.00484297
+462.48	0.00484208
+462.6	0.00484119
+462.72	0.0048403
+462.84	0.0048394
+462.96	0.00483851
+463.08	0.00483762
+463.2	0.00483673
+463.32	0.00483584
+463.44	0.00483495
+463.56	0.00483407
+463.68	0.00483318
+463.8	0.00483229
+463.92	0.0048314
+464.04	0.00483052
+464.16	0.00482963
+464.28	0.00482874
+464.4	0.00482786
+464.52	0.00482697
+464.64	0.00482609
+464.76	0.0048252
+464.88	0.00482432
+465	0.00482344
+465.12	0.00482255
+465.24	0.00482167
+465.36	0.00482079
+465.48	0.00481991
+465.6	0.00481902
+465.72	0.00481814
+465.84	0.00481726
+465.96	0.00481638
+466.08	0.0048155
+466.2	0.00481462
+466.32	0.00481375
+466.44	0.00481287
+466.56	0.00481199
+466.68	0.00481111
+466.8	0.00481023
+466.92	0.00480936
+467.04	0.00480848
+467.16	0.00480761
+467.28	0.00480673
+467.4	0.00480585
+467.52	0.00480498
+467.64	0.00480411
+467.76	0.00480323
+467.88	0.00480236
+468	0.00480149
+468.12	0.00480061
+468.24	0.00479974
+468.36	0.00479887
+468.48	0.004798
+468.6	0.00479713
+468.72	0.00479626
+468.84	0.00479539
+468.96	0.00479452
+469.08	0.00479365
+469.2	0.00479278
+469.32	0.00479191
+469.44	0.00479104
+469.56	0.00479018
+469.68	0.00478931
+469.8	0.00478844
+469.92	0.00478758
+470.04	0.00478671
+470.16	0.00478584
+470.28	0.00478498
+470.4	0.00478411
+470.52	0.00478325
+470.64	0.00478239
+470.76	0.00478152
+470.88	0.00478066
+471	0.0047798
+471.12	0.00477894
+471.24	0.00477807
+471.36	0.00477721
+471.48	0.00477635
+471.6	0.00477549
+471.72	0.00477463
+471.84	0.00477377
+471.96	0.00477291
+472.08	0.00477205
+472.2	0.00477119
+472.32	0.00477034
+472.44	0.00476948
+472.56	0.00476862
+472.68	0.00476776
+472.8	0.00476691
+472.92	0.00476605
+473.04	0.0047652
+473.16	0.00476434
+473.28	0.00476349
+473.4	0.00476263
+473.52	0.00476178
+473.64	0.00476092
+473.76	0.00476007
+473.88	0.00475922
+474	0.00475837
+474.12	0.00475751
+474.24	0.00475666
+474.36	0.00475581
+474.48	0.00475496
+474.6	0.00475411
+474.72	0.00475326
+474.84	0.00475241
+474.96	0.00475156
+475.08	0.00475071
+475.2	0.00474986
+475.32	0.00474902
+475.44	0.00474817
+475.56	0.00474732
+475.68	0.00474648
+475.8	0.00474563
+475.92	0.00474478
+476.04	0.00474394
+476.16	0.00474309
+476.28	0.00474225
+476.4	0.0047414
+476.52	0.00474056
+476.64	0.00473972
+476.76	0.00473887
+476.88	0.00473803
+477	0.00473719
+477.12	0.00473635
+477.24	0.0047355
+477.36	0.00473466
+477.48	0.00473382
+477.6	0.00473298
+477.72	0.00473214
+477.84	0.0047313
+477.96	0.00473046
+478.08	0.00472962
+478.2	0.00472879
+478.32	0.00472795
+478.44	0.00472711
+478.56	0.00472627
+478.68	0.00472544
+478.8	0.0047246
+478.92	0.00472376
+479.04	0.00472293
+479.16	0.00472209
+479.28	0.00472126
+479.4	0.00472042
+479.52	0.00471959
+479.64	0.00471876
+479.76	0.00471792
+479.88	0.00471709
+480	0.00471626
+480.12	0.00471543
+480.24	0.00471459
+480.36	0.00471376
+480.48	0.00471293
+480.6	0.0047121
+480.72	0.00471127
+480.84	0.00471044
+480.96	0.00470961
+481.08	0.00470878
+481.2	0.00470795
+481.32	0.00470713
+481.44	0.0047063
+481.56	0.00470547
+481.68	0.00470464
+481.8	0.00470382
+481.92	0.00470299
+482.04	0.00470216
+482.16	0.00470134
+482.28	0.00470051
+482.4	0.00469969
+482.52	0.00469886
+482.64	0.00469804
+482.76	0.00469722
+482.88	0.00469639
+483	0.00469557
+483.12	0.00469475
+483.24	0.00469393
+483.36	0.0046931
+483.48	0.00469228
+483.6	0.00469146
+483.72	0.00469064
+483.84	0.00468982
+483.96	0.004689
+484.08	0.00468818
+484.2	0.00468736
+484.32	0.00468654
+484.44	0.00468573
+484.56	0.00468491
+484.68	0.00468409
+484.8	0.00468327
+484.92	0.00468246
+485.04	0.00468164
+485.16	0.00468083
+485.28	0.00468001
+485.4	0.00467919
+485.52	0.00467838
+485.64	0.00467756
+485.76	0.00467675
+485.88	0.00467594
+486	0.00467512
+486.12	0.00467431
+486.24	0.0046735
+486.36	0.00467269
+486.48	0.00467187
+486.6	0.00467106
+486.72	0.00467025
+486.84	0.00466944
+486.96	0.00466863
+487.08	0.00466782
+487.2	0.00466701
+487.32	0.0046662
+487.44	0.00466539
+487.56	0.00466458
+487.68	0.00466378
+487.8	0.00466297
+487.92	0.00466216
+488.04	0.00466135
+488.16	0.00466055
+488.28	0.00465974
+488.4	0.00465894
+488.52	0.00465813
+488.64	0.00465733
+488.76	0.00465652
+488.88	0.00465572
+489	0.00465491
+489.12	0.00465411
+489.24	0.00465331
+489.36	0.0046525
+489.48	0.0046517
+489.6	0.0046509
+489.72	0.0046501
+489.84	0.00464929
+489.96	0.00464849
+490.08	0.00464769
+490.2	0.00464689
+490.32	0.00464609
+490.44	0.00464529
+490.56	0.00464449
+490.68	0.00464369
+490.8	0.0046429
+490.92	0.0046421
+491.04	0.0046413
+491.16	0.0046405
+491.28	0.00463971
+491.4	0.00463891
+491.52	0.00463811
+491.64	0.00463732
+491.76	0.00463652
+491.88	0.00463573
+492	0.00463493
+492.12	0.00463414
+492.24	0.00463334
+492.36	0.00463255
+492.48	0.00463176
+492.6	0.00463096
+492.72	0.00463017
+492.84	0.00462938
+492.96	0.00462859
+493.08	0.00462779
+493.2	0.004627
+493.32	0.00462621
+493.44	0.00462542
+493.56	0.00462463
+493.68	0.00462384
+493.8	0.00462305
+493.92	0.00462226
+494.04	0.00462147
+494.16	0.00462069
+494.28	0.0046199
+494.4	0.00461911
+494.52	0.00461832
+494.64	0.00461754
+494.76	0.00461675
+494.88	0.00461596
+495	0.00461518
+495.12	0.00461439
+495.24	0.00461361
+495.36	0.00461282
+495.48	0.00461204
+495.6	0.00461125
+495.72	0.00461047
+495.84	0.00460969
+495.96	0.0046089
+496.08	0.00460812
+496.2	0.00460734
+496.32	0.00460656
+496.44	0.00460578
+496.56	0.00460499
+496.68	0.00460421
+496.8	0.00460343
+496.92	0.00460265
+497.04	0.00460187
+497.16	0.00460109
+497.28	0.00460032
+497.4	0.00459954
+497.52	0.00459876
+497.64	0.00459798
+497.76	0.0045972
+497.88	0.00459643
+498	0.00459565
+498.12	0.00459487
+498.24	0.0045941
+498.36	0.00459332
+498.48	0.00459254
+498.6	0.00459177
+498.72	0.00459099
+498.84	0.00459022
+498.96	0.00458945
+499.08	0.00458867
+499.2	0.0045879
+499.32	0.00458712
+499.44	0.00458635
+499.56	0.00458558
+499.68	0.00458481
+499.8	0.00458404
+499.92	0.00458326
+500.04	0.00458249
+500.16	0.00458172
+500.28	0.00458095
+500.4	0.00458018
+500.52	0.00457941
+500.64	0.00457864
+500.76	0.00457787
+500.88	0.00457711
+501	0.00457634
+501.12	0.00457557
+501.24	0.0045748
+501.36	0.00457404
+501.48	0.00457327
+501.6	0.0045725
+501.72	0.00457174
+501.84	0.00457097
+501.96	0.0045702
+502.08	0.00456944
+502.2	0.00456867
+502.32	0.00456791
+502.44	0.00456715
+502.56	0.00456638
+502.68	0.00456562
+502.8	0.00456486
+502.92	0.00456409
+503.04	0.00456333
+503.16	0.00456257
+503.28	0.00456181
+503.4	0.00456105
+503.52	0.00456028
+503.64	0.00455952
+503.76	0.00455876
+503.88	0.004558
+504	0.00455724
+504.12	0.00455648
+504.24	0.00455572
+504.36	0.00455497
+504.48	0.00455421
+504.6	0.00455345
+504.72	0.00455269
+504.84	0.00455194
+504.96	0.00455118
+505.08	0.00455042
+505.2	0.00454967
+505.32	0.00454891
+505.44	0.00454815
+505.56	0.0045474
+505.68	0.00454664
+505.8	0.00454589
+505.92	0.00454513
+506.04	0.00454438
+506.16	0.00454363
+506.28	0.00454287
+506.4	0.00454212
+506.52	0.00454137
+506.64	0.00454062
+506.76	0.00453986
+506.88	0.00453911
+507	0.00453836
+507.12	0.00453761
+507.24	0.00453686
+507.36	0.00453611
+507.48	0.00453536
+507.6	0.00453461
+507.72	0.00453386
+507.84	0.00453311
+507.96	0.00453236
+508.08	0.00453161
+508.2	0.00453087
+508.32	0.00453012
+508.44	0.00452937
+508.56	0.00452863
+508.68	0.00452788
+508.8	0.00452713
+508.92	0.00452639
+509.04	0.00452564
+509.16	0.0045249
+509.28	0.00452415
+509.4	0.00452341
+509.52	0.00452266
+509.64	0.00452192
+509.76	0.00452117
+509.88	0.00452043
+510	0.00451969
+510.12	0.00451895
+510.24	0.0045182
+510.36	0.00451746
+510.48	0.00451672
+510.6	0.00451598
+510.72	0.00451524
+510.84	0.0045145
+510.96	0.00451376
+511.08	0.00451302
+511.2	0.00451228
+511.32	0.00451154
+511.44	0.0045108
+511.56	0.00451006
+511.68	0.00450932
+511.8	0.00450858
+511.92	0.00450784
+512.04	0.00450711
+512.16	0.00450637
+512.28	0.00450563
+512.4	0.0045049
+512.52	0.00450416
+512.64	0.00450342
+512.76	0.00450269
+512.88	0.00450195
+513	0.00450122
+513.12	0.00450049
+513.24	0.00449975
+513.36	0.00449902
+513.48	0.00449828
+513.6	0.00449755
+513.72	0.00449682
+513.84	0.00449608
+513.96	0.00449535
+514.08	0.00449462
+514.2	0.00449389
+514.32	0.00449316
+514.44	0.00449243
+514.56	0.0044917
+514.68	0.00449097
+514.8	0.00449024
+514.92	0.00448951
+515.04	0.00448878
+515.16	0.00448805
+515.28	0.00448732
+515.4	0.00448659
+515.52	0.00448586
+515.64	0.00448513
+515.76	0.00448441
+515.88	0.00448368
+516	0.00448295
+516.12	0.00448223
+516.24	0.0044815
+516.36	0.00448077
+516.48	0.00448005
+516.6	0.00447932
+516.72	0.0044786
+516.84	0.00447787
+516.96	0.00447715
+517.08	0.00447643
+517.2	0.0044757
+517.32	0.00447498
+517.44	0.00447426
+517.56	0.00447353
+517.68	0.00447281
+517.8	0.00447209
+517.92	0.00447137
+518.04	0.00447065
+518.16	0.00446992
+518.28	0.0044692
+518.4	0.00446848
+518.52	0.00446776
+518.64	0.00446704
+518.76	0.00446632
+518.88	0.0044656
+519	0.00446489
+519.12	0.00446417
+519.24	0.00446345
+519.36	0.00446273
+519.48	0.00446201
+519.6	0.0044613
+519.72	0.00446058
+519.84	0.00445986
+519.96	0.00445915
+520.08	0.00445843
+520.2	0.00445771
+520.32	0.004457
+520.44	0.00445628
+520.56	0.00445557
+520.68	0.00445485
+520.8	0.00445414
+520.92	0.00445342
+521.04	0.00445271
+521.16	0.004452
+521.28	0.00445128
+521.4	0.00445057
+521.52	0.00444986
+521.64	0.00444915
+521.76	0.00444844
+521.88	0.00444772
+522	0.00444701
+522.12	0.0044463
+522.24	0.00444559
+522.36	0.00444488
+522.48	0.00444417
+522.6	0.00444346
+522.72	0.00444275
+522.84	0.00444204
+522.96	0.00444133
+523.08	0.00444063
+523.2	0.00443992
+523.32	0.00443921
+523.44	0.0044385
+523.56	0.0044378
+523.68	0.00443709
+523.8	0.00443638
+523.92	0.00443568
+524.04	0.00443497
+524.16	0.00443426
+524.28	0.00443356
+524.4	0.00443285
+524.52	0.00443215
+524.64	0.00443144
+524.76	0.00443074
+524.88	0.00443004
+525	0.00442933
+525.12	0.00442863
+525.24	0.00442793
+525.36	0.00442722
+525.48	0.00442652
+525.6	0.00442582
+525.72	0.00442512
+525.84	0.00442442
+525.96	0.00442372
+526.08	0.00442301
+526.2	0.00442231
+526.32	0.00442161
+526.44	0.00442091
+526.56	0.00442021
+526.68	0.00441951
+526.8	0.00441882
+526.92	0.00441812
+527.04	0.00441742
+527.16	0.00441672
+527.28	0.00441602
+527.4	0.00441532
+527.52	0.00441463
+527.64	0.00441393
+527.76	0.00441323
+527.88	0.00441254
+528	0.00441184
+528.12	0.00441115
+528.24	0.00441045
+528.36	0.00440976
+528.48	0.00440906
+528.6	0.00440837
+528.72	0.00440767
+528.84	0.00440698
+528.96	0.00440628
+529.08	0.00440559
+529.2	0.0044049
+529.32	0.0044042
+529.44	0.00440351
+529.56	0.00440282
+529.68	0.00440213
+529.8	0.00440144
+529.92	0.00440075
+530.04	0.00440005
+530.16	0.00439936
+530.28	0.00439867
+530.4	0.00439798
+530.52	0.00439729
+530.64	0.0043966
+530.76	0.00439591
+530.88	0.00439523
+531	0.00439454
+531.12	0.00439385
+531.24	0.00439316
+531.36	0.00439247
+531.48	0.00439178
+531.6	0.0043911
+531.72	0.00439041
+531.84	0.00438972
+531.96	0.00438904
+532.08	0.00438835
+532.2	0.00438767
+532.32	0.00438698
+532.44	0.0043863
+532.56	0.00438561
+532.68	0.00438493
+532.8	0.00438424
+532.92	0.00438356
+533.04	0.00438287
+533.16	0.00438219
+533.28	0.00438151
+533.4	0.00438082
+533.52	0.00438014
+533.64	0.00437946
+533.76	0.00437878
+533.88	0.0043781
+534	0.00437741
+534.12	0.00437673
+534.24	0.00437605
+534.36	0.00437537
+534.48	0.00437469
+534.6	0.00437401
+534.72	0.00437333
+534.84	0.00437265
+534.96	0.00437197
+535.08	0.00437129
+535.2	0.00437062
+535.32	0.00436994
+535.44	0.00436926
+535.56	0.00436858
+535.68	0.0043679
+535.8	0.00436723
+535.92	0.00436655
+536.04	0.00436587
+536.16	0.0043652
+536.28	0.00436452
+536.4	0.00436385
+536.52	0.00436317
+536.64	0.0043625
+536.76	0.00436182
+536.88	0.00436115
+537	0.00436047
+537.12	0.0043598
+537.24	0.00435912
+537.36	0.00435845
+537.48	0.00435778
+537.6	0.00435711
+537.72	0.00435643
+537.84	0.00435576
+537.96	0.00435509
+538.08	0.00435442
+538.2	0.00435375
+538.32	0.00435307
+538.44	0.0043524
+538.56	0.00435173
+538.68	0.00435106
+538.8	0.00435039
+538.92	0.00434972
+539.04	0.00434905
+539.16	0.00434838
+539.28	0.00434772
+539.4	0.00434705
+539.52	0.00434638
+539.64	0.00434571
+539.76	0.00434504
+539.88	0.00434437
+540	0.00434371
+540.12	0.00434304
+540.24	0.00434237
+540.36	0.00434171
+540.48	0.00434104
+540.6	0.00434038
+540.72	0.00433971
+540.84	0.00433905
+540.96	0.00433838
+541.08	0.00433772
+541.2	0.00433705
+541.32	0.00433639
+541.44	0.00433572
+541.56	0.00433506
+541.68	0.0043344
+541.8	0.00433373
+541.92	0.00433307
+542.04	0.00433241
+542.16	0.00433175
+542.28	0.00433108
+542.4	0.00433042
+542.52	0.00432976
+542.64	0.0043291
+542.76	0.00432844
+542.88	0.00432778
+543	0.00432712
+543.12	0.00432646
+543.24	0.0043258
+543.36	0.00432514
+543.48	0.00432448
+543.6	0.00432382
+543.72	0.00432316
+543.84	0.0043225
+543.96	0.00432185
+544.08	0.00432119
+544.2	0.00432053
+544.32	0.00431987
+544.44	0.00431922
+544.56	0.00431856
+544.68	0.0043179
+544.8	0.00431725
+544.92	0.00431659
+545.04	0.00431593
+545.16	0.00431528
+545.28	0.00431462
+545.4	0.00431397
+545.52	0.00431331
+545.64	0.00431266
+545.76	0.00431201
+545.88	0.00431135
+546	0.0043107
+546.12	0.00431005
+546.24	0.00430939
+546.36	0.00430874
+546.48	0.00430809
+546.6	0.00430744
+546.72	0.00430678
+546.84	0.00430613
+546.96	0.00430548
+547.08	0.00430483
+547.2	0.00430418
+547.32	0.00430353
+547.44	0.00430288
+547.56	0.00430223
+547.68	0.00430158
+547.8	0.00430093
+547.92	0.00430028
+548.04	0.00429963
+548.16	0.00429898
+548.28	0.00429833
+548.4	0.00429769
+548.52	0.00429704
+548.64	0.00429639
+548.76	0.00429574
+548.88	0.0042951
+549	0.00429445
+549.12	0.0042938
+549.24	0.00429316
+549.36	0.00429251
+549.48	0.00429187
+549.6	0.00429122
+549.72	0.00429058
+549.84	0.00428993
+549.96	0.00428929
+550.08	0.00428864
+550.2	0.004288
+550.32	0.00428735
+550.44	0.00428671
+550.56	0.00428607
+550.68	0.00428542
+550.8	0.00428478
+550.92	0.00428414
+551.04	0.0042835
+551.16	0.00428285
+551.28	0.00428221
+551.4	0.00428157
+551.52	0.00428093
+551.64	0.00428029
+551.76	0.00427965
+551.88	0.00427901
+552	0.00427837
+552.12	0.00427773
+552.24	0.00427709
+552.36	0.00427645
+552.48	0.00427581
+552.6	0.00427517
+552.72	0.00427453
+552.84	0.00427389
+552.96	0.00427326
+553.08	0.00427262
+553.2	0.00427198
+553.32	0.00427134
+553.44	0.00427071
+553.56	0.00427007
+553.68	0.00426943
+553.8	0.0042688
+553.92	0.00426816
+554.04	0.00426753
+554.16	0.00426689
+554.28	0.00426625
+554.4	0.00426562
+554.52	0.00426498
+554.64	0.00426435
+554.76	0.00426372
+554.88	0.00426308
+555	0.00426245
+555.12	0.00426182
+555.24	0.00426118
+555.36	0.00426055
+555.48	0.00425992
+555.6	0.00425928
+555.72	0.00425865
+555.84	0.00425802
+555.96	0.00425739
+556.08	0.00425676
+556.2	0.00425613
+556.32	0.0042555
+556.44	0.00425487
+556.56	0.00425424
+556.68	0.00425361
+556.8	0.00425298
+556.92	0.00425235
+557.04	0.00425172
+557.16	0.00425109
+557.28	0.00425046
+557.4	0.00424983
+557.52	0.0042492
+557.64	0.00424857
+557.76	0.00424795
+557.88	0.00424732
+558	0.00424669
+558.12	0.00424606
+558.24	0.00424544
+558.36	0.00424481
+558.48	0.00424419
+558.6	0.00424356
+558.72	0.00424293
+558.84	0.00424231
+558.96	0.00424168
+559.08	0.00424106
+559.2	0.00424043
+559.32	0.00423981
+559.44	0.00423918
+559.56	0.00423856
+559.68	0.00423794
+559.8	0.00423731
+559.92	0.00423669
+560.04	0.00423607
+560.16	0.00423545
+560.28	0.00423482
+560.4	0.0042342
+560.52	0.00423358
+560.64	0.00423296
+560.76	0.00423234
+560.88	0.00423171
+561	0.00423109
+561.12	0.00423047
+561.24	0.00422985
+561.36	0.00422923
+561.48	0.00422861
+561.6	0.00422799
+561.72	0.00422737
+561.84	0.00422675
+561.96	0.00422614
+562.08	0.00422552
+562.2	0.0042249
+562.32	0.00422428
+562.44	0.00422366
+562.56	0.00422304
+562.68	0.00422243
+562.8	0.00422181
+562.92	0.00422119
+563.04	0.00422058
+563.16	0.00421996
+563.28	0.00421934
+563.4	0.00421873
+563.52	0.00421811
+563.64	0.0042175
+563.76	0.00421688
+563.88	0.00421627
+564	0.00421565
+564.12	0.00421504
+564.24	0.00421442
+564.36	0.00421381
+564.48	0.0042132
+564.6	0.00421258
+564.72	0.00421197
+564.84	0.00421136
+564.96	0.00421074
+565.08	0.00421013
+565.2	0.00420952
+565.32	0.00420891
+565.44	0.00420829
+565.56	0.00420768
+565.68	0.00420707
+565.8	0.00420646
+565.92	0.00420585
+566.04	0.00420524
+566.16	0.00420463
+566.28	0.00420402
+566.4	0.00420341
+566.52	0.0042028
+566.64	0.00420219
+566.76	0.00420158
+566.88	0.00420097
+567	0.00420036
+567.12	0.00419976
+567.24	0.00419915
+567.36	0.00419854
+567.48	0.00419793
+567.6	0.00419733
+567.72	0.00419672
+567.84	0.00419611
+567.96	0.0041955
+568.08	0.0041949
+568.2	0.00419429
+568.32	0.00419369
+568.44	0.00419308
+568.56	0.00419248
+568.68	0.00419187
+568.8	0.00419127
+568.92	0.00419066
+569.04	0.00419006
+569.16	0.00418945
+569.28	0.00418885
+569.4	0.00418824
+569.52	0.00418764
+569.64	0.00418704
+569.76	0.00418643
+569.88	0.00418583
+570	0.00418523
+570.12	0.00418463
+570.24	0.00418402
+570.36	0.00418342
+570.48	0.00418282
+570.6	0.00418222
+570.72	0.00418162
+570.84	0.00418102
+570.96	0.00418042
+571.08	0.00417982
+571.2	0.00417922
+571.32	0.00417862
+571.44	0.00417802
+571.56	0.00417742
+571.68	0.00417682
+571.8	0.00417622
+571.92	0.00417562
+572.04	0.00417502
+572.16	0.00417442
+572.28	0.00417383
+572.4	0.00417323
+572.52	0.00417263
+572.64	0.00417203
+572.76	0.00417144
+572.88	0.00417084
+573	0.00417024
+573.12	0.00416965
+573.24	0.00416905
+573.36	0.00416846
+573.48	0.00416786
+573.6	0.00416726
+573.72	0.00416667
+573.84	0.00416607
+573.96	0.00416548
+574.08	0.00416488
+574.2	0.00416429
+574.32	0.0041637
+574.44	0.0041631
+574.56	0.00416251
+574.68	0.00416192
+574.8	0.00416132
+574.92	0.00416073
+575.04	0.00416014
+575.16	0.00415955
+575.28	0.00415895
+575.4	0.00415836
+575.52	0.00415777
+575.64	0.00415718
+575.76	0.00415659
+575.88	0.004156
+576	0.00415541
+576.12	0.00415481
+576.24	0.00415422
+576.36	0.00415363
+576.48	0.00415304
+576.6	0.00415246
+576.72	0.00415187
+576.84	0.00415128
+576.96	0.00415069
+577.08	0.0041501
+577.2	0.00414951
+577.32	0.00414892
+577.44	0.00414833
+577.56	0.00414775
+577.68	0.00414716
+577.8	0.00414657
+577.92	0.00414599
+578.04	0.0041454
+578.16	0.00414481
+578.28	0.00414423
+578.4	0.00414364
+578.52	0.00414305
+578.64	0.00414247
+578.76	0.00414188
+578.88	0.0041413
+579	0.00414071
+579.12	0.00414013
+579.24	0.00413954
+579.36	0.00413896
+579.48	0.00413837
+579.6	0.00413779
+579.72	0.00413721
+579.84	0.00413662
+579.96	0.00413604
+580.08	0.00413546
+580.2	0.00413488
+580.32	0.00413429
+580.44	0.00413371
+580.56	0.00413313
+580.68	0.00413255
+580.8	0.00413197
+580.92	0.00413138
+581.04	0.0041308
+581.16	0.00413022
+581.28	0.00412964
+581.4	0.00412906
+581.52	0.00412848
+581.64	0.0041279
+581.76	0.00412732
+581.88	0.00412674
+582	0.00412616
+582.12	0.00412558
+582.24	0.004125
+582.36	0.00412443
+582.48	0.00412385
+582.6	0.00412327
+582.72	0.00412269
+582.84	0.00412211
+582.96	0.00412154
+583.08	0.00412096
+583.2	0.00412038
+583.32	0.00411981
+583.44	0.00411923
+583.56	0.00411865
+583.68	0.00411808
+583.8	0.0041175
+583.92	0.00411692
+584.04	0.00411635
+584.16	0.00411577
+584.28	0.0041152
+584.4	0.00411462
+584.52	0.00411405
+584.64	0.00411348
+584.76	0.0041129
+584.88	0.00411233
+585	0.00411175
+585.12	0.00411118
+585.24	0.00411061
+585.36	0.00411003
+585.48	0.00410946
+585.6	0.00410889
+585.72	0.00410832
+585.84	0.00410774
+585.96	0.00410717
+586.08	0.0041066
+586.2	0.00410603
+586.32	0.00410546
+586.44	0.00410489
+586.56	0.00410432
+586.68	0.00410375
+586.8	0.00410318
+586.92	0.00410261
+587.04	0.00410204
+587.16	0.00410147
+587.28	0.0041009
+587.4	0.00410033
+587.52	0.00409976
+587.64	0.00409919
+587.76	0.00409862
+587.88	0.00409805
+588	0.00409748
+588.12	0.00409692
+588.24	0.00409635
+588.36	0.00409578
+588.48	0.00409521
+588.6	0.00409465
+588.72	0.00409408
+588.84	0.00409351
+588.96	0.00409295
+589.08	0.00409238
+589.2	0.00409181
+589.32	0.00409125
+589.44	0.00409068
+589.56	0.00409012
+589.68	0.00408955
+589.8	0.00408899
+589.92	0.00408842
+590.04	0.00408786
+590.16	0.00408729
+590.28	0.00408673
+590.4	0.00408617
+590.52	0.0040856
+590.64	0.00408504
+590.76	0.00408448
+590.88	0.00408391
+591	0.00408335
+591.12	0.00408279
+591.24	0.00408223
+591.36	0.00408166
+591.48	0.0040811
+591.6	0.00408054
+591.72	0.00407998
+591.84	0.00407942
+591.96	0.00407886
+592.08	0.0040783
+592.2	0.00407774
+592.32	0.00407718
+592.44	0.00407662
+592.56	0.00407606
+592.68	0.0040755
+592.8	0.00407494
+592.92	0.00407438
+593.04	0.00407382
+593.16	0.00407326
+593.28	0.0040727
+593.4	0.00407215
+593.52	0.00407159
+593.64	0.00407103
+593.76	0.00407047
+593.88	0.00406991
+594	0.00406936
+594.12	0.0040688
+594.24	0.00406824
+594.36	0.00406769
+594.48	0.00406713
+594.6	0.00406658
+594.72	0.00406602
+594.84	0.00406546
+594.96	0.00406491
+595.08	0.00406435
+595.2	0.0040638
+595.32	0.00406324
+595.44	0.00406269
+595.56	0.00406213
+595.68	0.00406158
+595.8	0.00406103
+595.92	0.00406047
+596.04	0.00405992
+596.16	0.00405937
+596.28	0.00405881
+596.4	0.00405826
+596.52	0.00405771
+596.64	0.00405715
+596.76	0.0040566
+596.88	0.00405605
+597	0.0040555
+597.12	0.00405495
+597.24	0.00405439
+597.36	0.00405384
+597.48	0.00405329
+597.6	0.00405274
+597.72	0.00405219
+597.84	0.00405164
+597.96	0.00405109
+598.08	0.00405054
+598.2	0.00404999
+598.32	0.00404944
+598.44	0.00404889
+598.56	0.00404834
+598.68	0.00404779
+598.8	0.00404724
+598.92	0.0040467
+599.04	0.00404615
+599.16	0.0040456
+599.28	0.00404505
+599.4	0.0040445
+599.52	0.00404396
+599.64	0.00404341
+599.76	0.00404286
+599.88	0.00404232
+600	0.00404177
+600.12	0.00404122
+600.24	0.00404068
+600.36	0.00404013
+600.48	0.00403958
+600.6	0.00403904
+600.72	0.00403849
+600.84	0.00403795
+600.96	0.0040374
+601.08	0.00403686
+601.2	0.00403631
+601.32	0.00403577
+601.44	0.00403523
+601.56	0.00403468
+601.68	0.00403414
+601.8	0.00403359
+601.92	0.00403305
+602.04	0.00403251
+602.16	0.00403196
+602.28	0.00403142
+602.4	0.00403088
+602.52	0.00403034
+602.64	0.00402979
+602.76	0.00402925
+602.88	0.00402871
+603	0.00402817
+603.12	0.00402763
+603.24	0.00402709
+603.36	0.00402655
+603.48	0.00402601
+603.6	0.00402547
+603.72	0.00402492
+603.84	0.00402438
+603.96	0.00402384
+604.08	0.00402331
+604.2	0.00402277
+604.32	0.00402223
+604.44	0.00402169
+604.56	0.00402115
+604.68	0.00402061
+604.8	0.00402007
+604.92	0.00401953
+605.04	0.00401899
+605.16	0.00401846
+605.28	0.00401792
+605.4	0.00401738
+605.52	0.00401684
+605.64	0.00401631
+605.76	0.00401577
+605.88	0.00401523
+606	0.0040147
+606.12	0.00401416
+606.24	0.00401363
+606.36	0.00401309
+606.48	0.00401255
+606.6	0.00401202
+606.72	0.00401148
+606.84	0.00401095
+606.96	0.00401041
+607.08	0.00400988
+607.2	0.00400934
+607.32	0.00400881
+607.44	0.00400828
+607.56	0.00400774
+607.68	0.00400721
+607.8	0.00400668
+607.92	0.00400614
+608.04	0.00400561
+608.16	0.00400508
+608.28	0.00400454
+608.4	0.00400401
+608.52	0.00400348
+608.64	0.00400295
+608.76	0.00400241
+608.88	0.00400188
+609	0.00400135
+609.12	0.00400082
+609.24	0.00400029
+609.36	0.00399976
+609.48	0.00399923
+609.6	0.0039987
+609.72	0.00399817
+609.84	0.00399764
+609.96	0.00399711
+610.08	0.00399658
+610.2	0.00399605
+610.32	0.00399552
+610.44	0.00399499
+610.56	0.00399446
+610.68	0.00399393
+610.8	0.0039934
+610.92	0.00399288
+611.04	0.00399235
+611.16	0.00399182
+611.28	0.00399129
+611.4	0.00399076
+611.52	0.00399024
+611.64	0.00398971
+611.76	0.00398918
+611.88	0.00398866
+612	0.00398813
+612.12	0.0039876
+612.24	0.00398708
+612.36	0.00398655
+612.48	0.00398603
+612.6	0.0039855
+612.72	0.00398497
+612.84	0.00398445
+612.96	0.00398392
+613.08	0.0039834
+613.2	0.00398287
+613.32	0.00398235
+613.44	0.00398183
+613.56	0.0039813
+613.68	0.00398078
+613.8	0.00398026
+613.92	0.00397973
+614.04	0.00397921
+614.16	0.00397869
+614.28	0.00397816
+614.4	0.00397764
+614.52	0.00397712
+614.64	0.0039766
+614.76	0.00397607
+614.88	0.00397555
+615	0.00397503
+615.12	0.00397451
+615.24	0.00397399
+615.36	0.00397347
+615.48	0.00397294
+615.6	0.00397242
+615.72	0.0039719
+615.84	0.00397138
+615.96	0.00397086
+616.08	0.00397034
+616.2	0.00396982
+616.32	0.0039693
+616.44	0.00396878
+616.56	0.00396827
+616.68	0.00396775
+616.8	0.00396723
+616.92	0.00396671
+617.04	0.00396619
+617.16	0.00396567
+617.28	0.00396515
+617.4	0.00396464
+617.52	0.00396412
+617.64	0.0039636
+617.76	0.00396308
+617.88	0.00396257
+618	0.00396205
+618.12	0.00396153
+618.24	0.00396102
+618.36	0.0039605
+618.48	0.00395998
+618.6	0.00395947
+618.72	0.00395895
+618.84	0.00395844
+618.96	0.00395792
+619.08	0.00395741
+619.2	0.00395689
+619.32	0.00395638
+619.44	0.00395586
+619.56	0.00395535
+619.68	0.00395483
+619.8	0.00395432
+619.92	0.00395381
+620.04	0.00395329
+620.16	0.00395278
+620.28	0.00395227
+620.4	0.00395175
+620.52	0.00395124
+620.64	0.00395073
+620.76	0.00395021
+620.88	0.0039497
+621	0.00394919
+621.12	0.00394868
+621.24	0.00394817
+621.36	0.00394765
+621.48	0.00394714
+621.6	0.00394663
+621.72	0.00394612
+621.84	0.00394561
+621.96	0.0039451
+622.08	0.00394459
+622.2	0.00394408
+622.32	0.00394357
+622.44	0.00394306
+622.56	0.00394255
+622.68	0.00394204
+622.8	0.00394153
+622.92	0.00394102
+623.04	0.00394051
+623.16	0.00394
+623.28	0.00393949
+623.4	0.00393899
+623.52	0.00393848
+623.64	0.00393797
+623.76	0.00393746
+623.88	0.00393695
+624	0.00393645
+624.12	0.00393594
+624.24	0.00393543
+624.36	0.00393493
+624.48	0.00393442
+624.6	0.00393391
+624.72	0.00393341
+624.84	0.0039329
+624.96	0.00393239
+625.08	0.00393189
+625.2	0.00393138
+625.32	0.00393088
+625.44	0.00393037
+625.56	0.00392987
+625.68	0.00392936
+625.8	0.00392886
+625.92	0.00392835
+626.04	0.00392785
+626.16	0.00392734
+626.28	0.00392684
+626.4	0.00392634
+626.52	0.00392583
+626.64	0.00392533
+626.76	0.00392483
+626.88	0.00392432
+627	0.00392382
+627.12	0.00392332
+627.24	0.00392281
+627.36	0.00392231
+627.48	0.00392181
+627.6	0.00392131
+627.72	0.00392081
+627.84	0.0039203
+627.96	0.0039198
+628.08	0.0039193
+628.2	0.0039188
+628.32	0.0039183
+628.44	0.0039178
+628.56	0.0039173
+628.68	0.0039168
+628.8	0.0039163
+628.92	0.0039158
+629.04	0.0039153
+629.16	0.0039148
+629.28	0.0039143
+629.4	0.0039138
+629.52	0.0039133
+629.64	0.0039128
+629.76	0.0039123
+629.88	0.00391181
+630	0.00391131
+630.12	0.00391081
+630.24	0.00391031
+630.36	0.00390981
+630.48	0.00390932
+630.6	0.00390882
+630.72	0.00390832
+630.84	0.00390782
+630.96	0.00390733
+631.08	0.00390683
+631.2	0.00390633
+631.32	0.00390584
+631.44	0.00390534
+631.56	0.00390484
+631.68	0.00390435
+631.8	0.00390385
+631.92	0.00390336
+632.04	0.00390286
+632.16	0.00390237
+632.28	0.00390187
+632.4	0.00390138
+632.52	0.00390088
+632.64	0.00390039
+632.76	0.00389989
+632.88	0.0038994
+633	0.00389891
+633.12	0.00389841
+633.24	0.00389792
+633.36	0.00389743
+633.48	0.00389693
+633.6	0.00389644
+633.72	0.00389595
+633.84	0.00389545
+633.96	0.00389496
+634.08	0.00389447
+634.2	0.00389398
+634.32	0.00389349
+634.44	0.00389299
+634.56	0.0038925
+634.68	0.00389201
+634.8	0.00389152
+634.92	0.00389103
+635.04	0.00389054
+635.16	0.00389005
+635.28	0.00388956
+635.4	0.00388907
+635.52	0.00388858
+635.64	0.00388809
+635.76	0.0038876
+635.88	0.00388711
+636	0.00388662
+636.12	0.00388613
+636.24	0.00388564
+636.36	0.00388515
+636.48	0.00388466
+636.6	0.00388417
+636.72	0.00388368
+636.84	0.0038832
+636.96	0.00388271
+637.08	0.00388222
+637.2	0.00388173
+637.32	0.00388124
+637.44	0.00388076
+637.56	0.00388027
+637.68	0.00387978
+637.8	0.0038793
+637.92	0.00387881
+638.04	0.00387832
+638.16	0.00387784
+638.28	0.00387735
+638.4	0.00387686
+638.52	0.00387638
+638.64	0.00387589
+638.76	0.00387541
+638.88	0.00387492
+639	0.00387444
+639.12	0.00387395
+639.24	0.00387347
+639.36	0.00387298
+639.48	0.0038725
+639.6	0.00387201
+639.72	0.00387153
+639.84	0.00387105
+639.96	0.00387056
+640.08	0.00387008
+640.2	0.0038696
+640.32	0.00386911
+640.44	0.00386863
+640.56	0.00386815
+640.68	0.00386766
+640.8	0.00386718
+640.92	0.0038667
+641.04	0.00386622
+641.16	0.00386573
+641.28	0.00386525
+641.4	0.00386477
+641.52	0.00386429
+641.64	0.00386381
+641.76	0.00386333
+641.88	0.00386285
+642	0.00386237
+642.12	0.00386188
+642.24	0.0038614
+642.36	0.00386092
+642.48	0.00386044
+642.6	0.00385996
+642.72	0.00385948
+642.84	0.003859
+642.96	0.00385852
+643.08	0.00385805
+643.2	0.00385757
+643.32	0.00385709
+643.44	0.00385661
+643.56	0.00385613
+643.68	0.00385565
+643.8	0.00385517
+643.92	0.0038547
+644.04	0.00385422
+644.16	0.00385374
+644.28	0.00385326
+644.4	0.00385278
+644.52	0.00385231
+644.64	0.00385183
+644.76	0.00385135
+644.88	0.00385088
+645	0.0038504
+645.12	0.00384992
+645.24	0.00384945
+645.36	0.00384897
+645.48	0.0038485
+645.6	0.00384802
+645.72	0.00384754
+645.84	0.00384707
+645.96	0.00384659
+646.08	0.00384612
+646.2	0.00384564
+646.32	0.00384517
+646.44	0.00384469
+646.56	0.00384422
+646.68	0.00384375
+646.8	0.00384327
+646.92	0.0038428
+647.04	0.00384232
+647.16	0.00384185
+647.28	0.00384138
+647.4	0.0038409
+647.52	0.00384043
+647.64	0.00383996
+647.76	0.00383949
+647.88	0.00383901
+648	0.00383854
+648.12	0.00383807
+648.24	0.0038376
+648.36	0.00383712
+648.48	0.00383665
+648.6	0.00383618
+648.72	0.00383571
+648.84	0.00383524
+648.96	0.00383477
+649.08	0.0038343
+649.2	0.00383383
+649.32	0.00383335
+649.44	0.00383288
+649.56	0.00383241
+649.68	0.00383194
+649.8	0.00383147
+649.92	0.003831
+650.04	0.00383054
+650.16	0.00383007
+650.28	0.0038296
+650.4	0.00382913
+650.52	0.00382866
+650.64	0.00382819
+650.76	0.00382772
+650.88	0.00382725
+651	0.00382678
+651.12	0.00382632
+651.24	0.00382585
+651.36	0.00382538
+651.48	0.00382491
+651.6	0.00382445
+651.72	0.00382398
+651.84	0.00382351
+651.96	0.00382304
+652.08	0.00382258
+652.2	0.00382211
+652.32	0.00382164
+652.44	0.00382118
+652.56	0.00382071
+652.68	0.00382025
+652.8	0.00381978
+652.92	0.00381931
+653.04	0.00381885
+653.16	0.00381838
+653.28	0.00381792
+653.4	0.00381745
+653.52	0.00381699
+653.64	0.00381652
+653.76	0.00381606
+653.88	0.0038156
+654	0.00381513
+654.12	0.00381467
+654.24	0.0038142
+654.36	0.00381374
+654.48	0.00381328
+654.6	0.00381281
+654.72	0.00381235
+654.84	0.00381189
+654.96	0.00381142
+655.08	0.00381096
+655.2	0.0038105
+655.32	0.00381004
+655.44	0.00380957
+655.56	0.00380911
+655.68	0.00380865
+655.8	0.00380819
+655.92	0.00380773
+656.04	0.00380726
+656.16	0.0038068
+656.28	0.00380634
+656.4	0.00380588
+656.52	0.00380542
+656.64	0.00380496
+656.76	0.0038045
+656.88	0.00380404
+657	0.00380358
+657.12	0.00380312
+657.24	0.00380266
+657.36	0.0038022
+657.48	0.00380174
+657.6	0.00380128
+657.72	0.00380082
+657.84	0.00380036
+657.96	0.0037999
+658.08	0.00379944
+658.2	0.00379899
+658.32	0.00379853
+658.44	0.00379807
+658.56	0.00379761
+658.68	0.00379715
+658.8	0.0037967
+658.92	0.00379624
+659.04	0.00379578
+659.16	0.00379532
+659.28	0.00379487
+659.4	0.00379441
+659.52	0.00379395
+659.64	0.0037935
+659.76	0.00379304
+659.88	0.00379258
+660	0.00379213
+660.12	0.00379167
+660.24	0.00379122
+660.36	0.00379076
+660.48	0.0037903
+660.6	0.00378985
+660.72	0.00378939
+660.84	0.00378894
+660.96	0.00378848
+661.08	0.00378803
+661.2	0.00378757
+661.32	0.00378712
+661.44	0.00378667
+661.56	0.00378621
+661.68	0.00378576
+661.8	0.0037853
+661.92	0.00378485
+662.04	0.0037844
+662.16	0.00378394
+662.28	0.00378349
+662.4	0.00378304
+662.52	0.00378258
+662.64	0.00378213
+662.76	0.00378168
+662.88	0.00378123
+663	0.00378077
+663.12	0.00378032
+663.24	0.00377987
+663.36	0.00377942
+663.48	0.00377897
+663.6	0.00377851
+663.72	0.00377806
+663.84	0.00377761
+663.96	0.00377716
+664.08	0.00377671
+664.2	0.00377626
+664.32	0.00377581
+664.44	0.00377536
+664.56	0.00377491
+664.68	0.00377446
+664.8	0.00377401
+664.92	0.00377356
+665.04	0.00377311
+665.16	0.00377266
+665.28	0.00377221
+665.4	0.00377176
+665.52	0.00377131
+665.64	0.00377086
+665.76	0.00377041
+665.88	0.00376997
+666	0.00376952
+666.12	0.00376907
+666.24	0.00376862
+666.36	0.00376817
+666.48	0.00376773
+666.6	0.00376728
+666.72	0.00376683
+666.84	0.00376638
+666.96	0.00376594
+667.08	0.00376549
+667.2	0.00376504
+667.32	0.0037646
+667.44	0.00376415
+667.56	0.0037637
+667.68	0.00376326
+667.8	0.00376281
+667.92	0.00376236
+668.04	0.00376192
+668.16	0.00376147
+668.28	0.00376103
+668.4	0.00376058
+668.52	0.00376014
+668.64	0.00375969
+668.76	0.00375925
+668.88	0.0037588
+669	0.00375836
+669.12	0.00375791
+669.24	0.00375747
+669.36	0.00375702
+669.48	0.00375658
+669.6	0.00375614
+669.72	0.00375569
+669.84	0.00375525
+669.96	0.00375481
+670.08	0.00375436
+670.2	0.00375392
+670.32	0.00375348
+670.44	0.00375303
+670.56	0.00375259
+670.68	0.00375215
+670.8	0.00375171
+670.92	0.00375126
+671.04	0.00375082
+671.16	0.00375038
+671.28	0.00374994
+671.4	0.0037495
+671.52	0.00374906
+671.64	0.00374861
+671.76	0.00374817
+671.88	0.00374773
+672	0.00374729
+672.12	0.00374685
+672.24	0.00374641
+672.36	0.00374597
+672.48	0.00374553
+672.6	0.00374509
+672.72	0.00374465
+672.84	0.00374421
+672.96	0.00374377
+673.08	0.00374333
+673.2	0.00374289
+673.32	0.00374245
+673.44	0.00374201
+673.56	0.00374158
+673.68	0.00374114
+673.8	0.0037407
+673.92	0.00374026
+674.04	0.00373982
+674.16	0.00373938
+674.28	0.00373895
+674.4	0.00373851
+674.52	0.00373807
+674.64	0.00373763
+674.76	0.00373719
+674.88	0.00373676
+675	0.00373632
+675.12	0.00373588
+675.24	0.00373545
+675.36	0.00373501
+675.48	0.00373457
+675.6	0.00373414
+675.72	0.0037337
+675.84	0.00373327
+675.96	0.00373283
+676.08	0.00373239
+676.2	0.00373196
+676.32	0.00373152
+676.44	0.00373109
+676.56	0.00373065
+676.68	0.00373022
+676.8	0.00372978
+676.92	0.00372935
+677.04	0.00372891
+677.16	0.00372848
+677.28	0.00372804
+677.4	0.00372761
+677.52	0.00372718
+677.64	0.00372674
+677.76	0.00372631
+677.88	0.00372587
+678	0.00372544
+678.12	0.00372501
+678.24	0.00372458
+678.36	0.00372414
+678.48	0.00372371
+678.6	0.00372328
+678.72	0.00372284
+678.84	0.00372241
+678.96	0.00372198
+679.08	0.00372155
+679.2	0.00372112
+679.32	0.00372068
+679.44	0.00372025
+679.56	0.00371982
+679.68	0.00371939
+679.8	0.00371896
+679.92	0.00371853
+680.04	0.0037181
+680.16	0.00371767
+680.28	0.00371723
+680.4	0.0037168
+680.52	0.00371637
+680.64	0.00371594
+680.76	0.00371551
+680.88	0.00371508
+681	0.00371465
+681.12	0.00371422
+681.24	0.00371379
+681.36	0.00371337
+681.48	0.00371294
+681.6	0.00371251
+681.72	0.00371208
+681.84	0.00371165
+681.96	0.00371122
+682.08	0.00371079
+682.2	0.00371036
+682.32	0.00370994
+682.44	0.00370951
+682.56	0.00370908
+682.68	0.00370865
+682.8	0.00370822
+682.92	0.0037078
+683.04	0.00370737
+683.16	0.00370694
+683.28	0.00370652
+683.4	0.00370609
+683.52	0.00370566
+683.64	0.00370524
+683.76	0.00370481
+683.88	0.00370438
+684	0.00370396
+684.12	0.00370353
+684.24	0.0037031
+684.36	0.00370268
+684.48	0.00370225
+684.6	0.00370183
+684.72	0.0037014
+684.84	0.00370098
+684.96	0.00370055
+685.08	0.00370013
+685.2	0.0036997
+685.32	0.00369928
+685.44	0.00369885
+685.56	0.00369843
+685.68	0.003698
+685.8	0.00369758
+685.92	0.00369716
+686.04	0.00369673
+686.16	0.00369631
+686.28	0.00369589
+686.4	0.00369546
+686.52	0.00369504
+686.64	0.00369462
+686.76	0.00369419
+686.88	0.00369377
+687	0.00369335
+687.12	0.00369293
+687.24	0.0036925
+687.36	0.00369208
+687.48	0.00369166
+687.6	0.00369124
+687.72	0.00369082
+687.84	0.00369039
+687.96	0.00368997
+688.08	0.00368955
+688.2	0.00368913
+688.32	0.00368871
+688.44	0.00368829
+688.56	0.00368787
+688.68	0.00368745
+688.8	0.00368703
+688.92	0.0036866
+689.04	0.00368618
+689.16	0.00368576
+689.28	0.00368534
+689.4	0.00368492
+689.52	0.0036845
+689.64	0.00368409
+689.76	0.00368367
+689.88	0.00368325
+690	0.00368283
+690.12	0.00368241
+690.24	0.00368199
+690.36	0.00368157
+690.48	0.00368115
+690.6	0.00368073
+690.72	0.00368032
+690.84	0.0036799
+690.96	0.00367948
+691.08	0.00367906
+691.2	0.00367864
+691.32	0.00367823
+691.44	0.00367781
+691.56	0.00367739
+691.68	0.00367697
+691.8	0.00367656
+691.92	0.00367614
+692.04	0.00367572
+692.16	0.00367531
+692.28	0.00367489
+692.4	0.00367447
+692.52	0.00367406
+692.64	0.00367364
+692.76	0.00367323
+692.88	0.00367281
+693	0.00367239
+693.12	0.00367198
+693.24	0.00367156
+693.36	0.00367115
+693.48	0.00367073
+693.6	0.00367032
+693.72	0.0036699
+693.84	0.00366949
+693.96	0.00366907
+694.08	0.00366866
+694.2	0.00366824
+694.32	0.00366783
+694.44	0.00366742
+694.56	0.003667
+694.68	0.00366659
+694.8	0.00366618
+694.92	0.00366576
+695.04	0.00366535
+695.16	0.00366493
+695.28	0.00366452
+695.4	0.00366411
+695.52	0.0036637
+695.64	0.00366328
+695.76	0.00366287
+695.88	0.00366246
+696	0.00366205
+696.12	0.00366163
+696.24	0.00366122
+696.36	0.00366081
+696.48	0.0036604
+696.6	0.00365999
+696.72	0.00365958
+696.84	0.00365916
+696.96	0.00365875
+697.08	0.00365834
+697.2	0.00365793
+697.32	0.00365752
+697.44	0.00365711
+697.56	0.0036567
+697.68	0.00365629
+697.8	0.00365588
+697.92	0.00365547
+698.04	0.00365506
+698.16	0.00365465
+698.28	0.00365424
+698.4	0.00365383
+698.52	0.00365342
+698.64	0.00365301
+698.76	0.0036526
+698.88	0.00365219
+699	0.00365178
+699.12	0.00365137
+699.24	0.00365097
+699.36	0.00365056
+699.48	0.00365015
+699.6	0.00364974
+699.72	0.00364933
+699.84	0.00364892
+699.96	0.00364852
+700.08	0.00364811
+700.2	0.0036477
+700.32	0.00364729
+700.44	0.00364689
+700.56	0.00364648
+700.68	0.00364607
+700.8	0.00364567
+700.92	0.00364526
+701.04	0.00364485
+701.16	0.00364445
+701.28	0.00364404
+701.4	0.00364363
+701.52	0.00364323
+701.64	0.00364282
+701.76	0.00364242
+701.88	0.00364201
+702	0.0036416
+702.12	0.0036412
+702.24	0.00364079
+702.36	0.00364039
+702.48	0.00363998
+702.6	0.00363958
+702.72	0.00363917
+702.84	0.00363877
+702.96	0.00363836
+703.08	0.00363796
+703.2	0.00363756
+703.32	0.00363715
+703.44	0.00363675
+703.56	0.00363634
+703.68	0.00363594
+703.8	0.00363554
+703.92	0.00363513
+704.04	0.00363473
+704.16	0.00363433
+704.28	0.00363392
+704.4	0.00363352
+704.52	0.00363312
+704.64	0.00363271
+704.76	0.00363231
+704.88	0.00363191
+705	0.00363151
+705.12	0.00363111
+705.24	0.0036307
+705.36	0.0036303
+705.48	0.0036299
+705.6	0.0036295
+705.72	0.0036291
+705.84	0.0036287
+705.96	0.00362829
+706.08	0.00362789
+706.2	0.00362749
+706.32	0.00362709
+706.44	0.00362669
+706.56	0.00362629
+706.68	0.00362589
+706.8	0.00362549
+706.92	0.00362509
+707.04	0.00362469
+707.16	0.00362429
+707.28	0.00362389
+707.4	0.00362349
+707.52	0.00362309
+707.64	0.00362269
+707.76	0.00362229
+707.88	0.00362189
+708	0.00362149
+708.12	0.00362109
+708.24	0.00362069
+708.36	0.0036203
+708.48	0.0036199
+708.6	0.0036195
+708.72	0.0036191
+708.84	0.0036187
+708.96	0.0036183
+709.08	0.00361791
+709.2	0.00361751
+709.32	0.00361711
+709.44	0.00361671
+709.56	0.00361632
+709.68	0.00361592
+709.8	0.00361552
+709.92	0.00361513
+710.04	0.00361473
+710.16	0.00361433
+710.28	0.00361394
+710.4	0.00361354
+710.52	0.00361314
+710.64	0.00361275
+710.76	0.00361235
+710.88	0.00361195
+711	0.00361156
+711.12	0.00361116
+711.24	0.00361077
+711.36	0.00361037
+711.48	0.00360998
+711.6	0.00360958
+711.72	0.00360919
+711.84	0.00360879
+711.96	0.0036084
+712.08	0.003608
+712.2	0.00360761
+712.32	0.00360721
+712.44	0.00360682
+712.56	0.00360642
+712.68	0.00360603
+712.8	0.00360564
+712.92	0.00360524
+713.04	0.00360485
+713.16	0.00360446
+713.28	0.00360406
+713.4	0.00360367
+713.52	0.00360328
+713.64	0.00360288
+713.76	0.00360249
+713.88	0.0036021
+714	0.0036017
+714.12	0.00360131
+714.24	0.00360092
+714.36	0.00360053
+714.48	0.00360013
+714.6	0.00359974
+714.72	0.00359935
+714.84	0.00359896
+714.96	0.00359857
+715.08	0.00359818
+715.2	0.00359778
+715.32	0.00359739
+715.44	0.003597
+715.56	0.00359661
+715.68	0.00359622
+715.8	0.00359583
+715.92	0.00359544
+716.04	0.00359505
+716.16	0.00359466
+716.28	0.00359427
+716.4	0.00359388
+716.52	0.00359349
+716.64	0.0035931
+716.76	0.00359271
+716.88	0.00359232
+717	0.00359193
+717.12	0.00359154
+717.24	0.00359115
+717.36	0.00359076
+717.48	0.00359037
+717.6	0.00358998
+717.72	0.00358959
+717.84	0.00358921
+717.96	0.00358882
+718.08	0.00358843
+718.2	0.00358804
+718.32	0.00358765
+718.44	0.00358726
+718.56	0.00358688
+718.68	0.00358649
+718.8	0.0035861
+718.92	0.00358571
+719.04	0.00358533
+719.16	0.00358494
+719.28	0.00358455
+719.4	0.00358416
+719.52	0.00358378
+719.64	0.00358339
+719.76	0.003583
+719.88	0.00358262
+720	0.00358223
+720.12	0.00358184
+720.24	0.00358146
+720.36	0.00358107
+720.48	0.00358069
+720.6	0.0035803
+720.72	0.00357991
+720.84	0.00357953
+720.96	0.00357914
+721.08	0.00357876
+721.2	0.00357837
+721.32	0.00357799
+721.44	0.0035776
+721.56	0.00357722
+721.68	0.00357683
+721.8	0.00357645
+721.92	0.00357606
+722.04	0.00357568
+722.16	0.0035753
+722.28	0.00357491
+722.4	0.00357453
+722.52	0.00357414
+722.64	0.00357376
+722.76	0.00357338
+722.88	0.00357299
+723	0.00357261
+723.12	0.00357223
+723.24	0.00357184
+723.36	0.00357146
+723.48	0.00357108
+723.6	0.0035707
+723.72	0.00357031
+723.84	0.00356993
+723.96	0.00356955
+724.08	0.00356917
+724.2	0.00356878
+724.32	0.0035684
+724.44	0.00356802
+724.56	0.00356764
+724.68	0.00356726
+724.8	0.00356687
+724.92	0.00356649
+725.04	0.00356611
+725.16	0.00356573
+725.28	0.00356535
+725.4	0.00356497
+725.52	0.00356459
+725.64	0.00356421
+725.76	0.00356383
+725.88	0.00356345
+726	0.00356307
+726.12	0.00356269
+726.24	0.00356231
+726.36	0.00356193
+726.48	0.00356155
+726.6	0.00356117
+726.72	0.00356079
+726.84	0.00356041
+726.96	0.00356003
+727.08	0.00355965
+727.2	0.00355927
+727.32	0.00355889
+727.44	0.00355851
+727.56	0.00355813
+727.68	0.00355775
+727.8	0.00355738
+727.92	0.003557
+728.04	0.00355662
+728.16	0.00355624
+728.28	0.00355586
+728.4	0.00355548
+728.52	0.00355511
+728.64	0.00355473
+728.76	0.00355435
+728.88	0.00355397
+729	0.0035536
+729.12	0.00355322
+729.24	0.00355284
+729.36	0.00355246
+729.48	0.00355209
+729.6	0.00355171
+729.72	0.00355133
+729.84	0.00355096
+729.96	0.00355058
+730.08	0.00355021
+730.2	0.00354983
+730.32	0.00354945
+730.44	0.00354908
+730.56	0.0035487
+730.68	0.00354833
+730.8	0.00354795
+730.92	0.00354757
+731.04	0.0035472
+731.16	0.00354682
+731.28	0.00354645
+731.4	0.00354607
+731.52	0.0035457
+731.64	0.00354532
+731.76	0.00354495
+731.88	0.00354458
+732	0.0035442
+732.12	0.00354383
+732.24	0.00354345
+732.36	0.00354308
+732.48	0.0035427
+732.6	0.00354233
+732.72	0.00354196
+732.84	0.00354158
+732.96	0.00354121
+733.08	0.00354084
+733.2	0.00354046
+733.32	0.00354009
+733.44	0.00353972
+733.56	0.00353934
+733.68	0.00353897
+733.8	0.0035386
+733.92	0.00353823
+734.04	0.00353785
+734.16	0.00353748
+734.28	0.00353711
+734.4	0.00353674
+734.52	0.00353637
+734.64	0.00353599
+734.76	0.00353562
+734.88	0.00353525
+735	0.00353488
+735.12	0.00353451
+735.24	0.00353414
+735.36	0.00353377
+735.48	0.00353339
+735.6	0.00353302
+735.72	0.00353265
+735.84	0.00353228
+735.96	0.00353191
+736.08	0.00353154
+736.2	0.00353117
+736.32	0.0035308
+736.44	0.00353043
+736.56	0.00353006
+736.68	0.00352969
+736.8	0.00352932
+736.92	0.00352895
+737.04	0.00352858
+737.16	0.00352821
+737.28	0.00352784
+737.4	0.00352747
+737.52	0.00352711
+737.64	0.00352674
+737.76	0.00352637
+737.88	0.003526
+738	0.00352563
+738.12	0.00352526
+738.24	0.00352489
+738.36	0.00352453
+738.48	0.00352416
+738.6	0.00352379
+738.72	0.00352342
+738.84	0.00352305
+738.96	0.00352269
+739.08	0.00352232
+739.2	0.00352195
+739.32	0.00352158
+739.44	0.00352122
+739.56	0.00352085
+739.68	0.00352048
+739.8	0.00352012
+739.92	0.00351975
+740.04	0.00351938
+740.16	0.00351902
+740.28	0.00351865
+740.4	0.00351828
+740.52	0.00351792
+740.64	0.00351755
+740.76	0.00351718
+740.88	0.00351682
+741	0.00351645
+741.12	0.00351609
+741.24	0.00351572
+741.36	0.00351536
+741.48	0.00351499
+741.6	0.00351463
+741.72	0.00351426
+741.84	0.0035139
+741.96	0.00351353
+742.08	0.00351317
+742.2	0.0035128
+742.32	0.00351244
+742.44	0.00351207
+742.56	0.00351171
+742.68	0.00351134
+742.8	0.00351098
+742.92	0.00351062
+743.04	0.00351025
+743.16	0.00350989
+743.28	0.00350953
+743.4	0.00350916
+743.52	0.0035088
+743.64	0.00350844
+743.76	0.00350807
+743.88	0.00350771
+744	0.00350735
+744.12	0.00350698
+744.24	0.00350662
+744.36	0.00350626
+744.48	0.0035059
+744.6	0.00350553
+744.72	0.00350517
+744.84	0.00350481
+744.96	0.00350445
+745.08	0.00350408
+745.2	0.00350372
+745.32	0.00350336
+745.44	0.003503
+745.56	0.00350264
+745.68	0.00350228
+745.8	0.00350192
+745.92	0.00350155
+746.04	0.00350119
+746.16	0.00350083
+746.28	0.00350047
+746.4	0.00350011
+746.52	0.00349975
+746.64	0.00349939
+746.76	0.00349903
+746.88	0.00349867
+747	0.00349831
+747.12	0.00349795
+747.24	0.00349759
+747.36	0.00349723
+747.48	0.00349687
+747.6	0.00349651
+747.72	0.00349615
+747.84	0.00349579
+747.96	0.00349543
+748.08	0.00349507
+748.2	0.00349471
+748.32	0.00349436
+748.44	0.003494
+748.56	0.00349364
+748.68	0.00349328
+748.8	0.00349292
+748.92	0.00349256
+749.04	0.0034922
+749.16	0.00349185
+749.28	0.00349149
+749.4	0.00349113
+749.52	0.00349077
+749.64	0.00349041
+749.76	0.00349006
+749.88	0.0034897
+750	0.00348934
+750.12	0.00348899
+750.24	0.00348863
+750.36	0.00348827
+750.48	0.00348791
+750.6	0.00348756
+750.72	0.0034872
+750.84	0.00348684
+750.96	0.00348649
+751.08	0.00348613
+751.2	0.00348577
+751.32	0.00348542
+751.44	0.00348506
+751.56	0.00348471
+751.68	0.00348435
+751.8	0.00348399
+751.92	0.00348364
+752.04	0.00348328
+752.16	0.00348293
+752.28	0.00348257
+752.4	0.00348222
+752.52	0.00348186
+752.64	0.00348151
+752.76	0.00348115
+752.88	0.0034808
+753	0.00348044
+753.12	0.00348009
+753.24	0.00347973
+753.36	0.00347938
+753.48	0.00347903
+753.6	0.00347867
+753.72	0.00347832
+753.84	0.00347796
+753.96	0.00347761
+754.08	0.00347726
+754.2	0.0034769
+754.32	0.00347655
+754.44	0.0034762
+754.56	0.00347584
+754.68	0.00347549
+754.8	0.00347514
+754.92	0.00347478
+755.04	0.00347443
+755.16	0.00347408
+755.28	0.00347373
+755.4	0.00347337
+755.52	0.00347302
+755.64	0.00347267
+755.76	0.00347232
+755.88	0.00347196
+756	0.00347161
+756.12	0.00347126
+756.24	0.00347091
+756.36	0.00347056
+756.48	0.00347021
+756.6	0.00346985
+756.72	0.0034695
+756.84	0.00346915
+756.96	0.0034688
+757.08	0.00346845
+757.2	0.0034681
+757.32	0.00346775
+757.44	0.0034674
+757.56	0.00346705
+757.68	0.0034667
+757.8	0.00346635
+757.92	0.003466
+758.04	0.00346565
+758.16	0.0034653
+758.28	0.00346495
+758.4	0.0034646
+758.52	0.00346425
+758.64	0.0034639
+758.76	0.00346355
+758.88	0.0034632
+759	0.00346285
+759.12	0.0034625
+759.24	0.00346215
+759.36	0.0034618
+759.48	0.00346145
+759.6	0.0034611
+759.72	0.00346075
+759.84	0.00346041
+759.96	0.00346006
+760.08	0.00345971
+760.2	0.00345936
+760.32	0.00345901
+760.44	0.00345866
+760.56	0.00345832
+760.68	0.00345797
+760.8	0.00345762
+760.92	0.00345727
+761.04	0.00345693
+761.16	0.00345658
+761.28	0.00345623
+761.4	0.00345588
+761.52	0.00345554
+761.64	0.00345519
+761.76	0.00345484
+761.88	0.0034545
+762	0.00345415
+762.12	0.0034538
+762.24	0.00345346
+762.36	0.00345311
+762.48	0.00345276
+762.6	0.00345242
+762.72	0.00345207
+762.84	0.00345173
+762.96	0.00345138
+763.08	0.00345103
+763.2	0.00345069
+763.32	0.00345034
+763.44	0.00345
+763.56	0.00344965
+763.68	0.00344931
+763.8	0.00344896
+763.92	0.00344862
+764.04	0.00344827
+764.16	0.00344793
+764.28	0.00344758
+764.4	0.00344724
+764.52	0.00344689
+764.64	0.00344655
+764.76	0.00344621
+764.88	0.00344586
+765	0.00344552
+765.12	0.00344517
+765.24	0.00344483
+765.36	0.00344449
+765.48	0.00344414
+765.6	0.0034438
+765.72	0.00344346
+765.84	0.00344311
+765.96	0.00344277
+766.08	0.00344243
+766.2	0.00344208
+766.32	0.00344174
+766.44	0.0034414
+766.56	0.00344105
+766.68	0.00344071
+766.8	0.00344037
+766.92	0.00344003
+767.04	0.00343968
+767.16	0.00343934
+767.28	0.003439
+767.4	0.00343866
+767.52	0.00343832
+767.64	0.00343797
+767.76	0.00343763
+767.88	0.00343729
+768	0.00343695
+768.12	0.00343661
+768.24	0.00343627
+768.36	0.00343593
+768.48	0.00343558
+768.6	0.00343524
+768.72	0.0034349
+768.84	0.00343456
+768.96	0.00343422
+769.08	0.00343388
+769.2	0.00343354
+769.32	0.0034332
+769.44	0.00343286
+769.56	0.00343252
+769.68	0.00343218
+769.8	0.00343184
+769.92	0.0034315
+770.04	0.00343116
+770.16	0.00343082
+770.28	0.00343048
+770.4	0.00343014
+770.52	0.0034298
+770.64	0.00342946
+770.76	0.00342912
+770.88	0.00342878
+771	0.00342845
+771.12	0.00342811
+771.24	0.00342777
+771.36	0.00342743
+771.48	0.00342709
+771.6	0.00342675
+771.72	0.00342641
+771.84	0.00342608
+771.96	0.00342574
+772.08	0.0034254
+772.2	0.00342506
+772.32	0.00342472
+772.44	0.00342439
+772.56	0.00342405
+772.68	0.00342371
+772.8	0.00342337
+772.92	0.00342304
+773.04	0.0034227
+773.16	0.00342236
+773.28	0.00342203
+773.4	0.00342169
+773.52	0.00342135
+773.64	0.00342101
+773.76	0.00342068
+773.88	0.00342034
+774	0.00342001
+774.12	0.00341967
+774.24	0.00341933
+774.36	0.003419
+774.48	0.00341866
+774.6	0.00341832
+774.72	0.00341799
+774.84	0.00341765
+774.96	0.00341732
+775.08	0.00341698
+775.2	0.00341665
+775.32	0.00341631
+775.44	0.00341598
+775.56	0.00341564
+775.68	0.00341531
+775.8	0.00341497
+775.92	0.00341464
+776.04	0.0034143
+776.16	0.00341397
+776.28	0.00341363
+776.4	0.0034133
+776.52	0.00341296
+776.64	0.00341263
+776.76	0.00341229
+776.88	0.00341196
+777	0.00341163
+777.12	0.00341129
+777.24	0.00341096
+777.36	0.00341063
+777.48	0.00341029
+777.6	0.00340996
+777.72	0.00340963
+777.84	0.00340929
+777.96	0.00340896
+778.08	0.00340863
+778.2	0.00340829
+778.32	0.00340796
+778.44	0.00340763
+778.56	0.00340729
+778.68	0.00340696
+778.8	0.00340663
+778.92	0.0034063
+779.04	0.00340597
+779.16	0.00340563
+779.28	0.0034053
+779.4	0.00340497
+779.52	0.00340464
+779.64	0.00340431
+779.76	0.00340397
+779.88	0.00340364
+780	0.00340331
+780.12	0.00340298
+780.24	0.00340265
+780.36	0.00340232
+780.48	0.00340199
+780.6	0.00340165
+780.72	0.00340132
+780.84	0.00340099
+780.96	0.00340066
+781.08	0.00340033
+781.2	0.0034
+781.32	0.00339967
+781.44	0.00339934
+781.56	0.00339901
+781.68	0.00339868
+781.8	0.00339835
+781.92	0.00339802
+782.04	0.00339769
+782.16	0.00339736
+782.28	0.00339703
+782.4	0.0033967
+782.52	0.00339637
+782.64	0.00339604
+782.76	0.00339571
+782.88	0.00339538
+783	0.00339506
+783.12	0.00339473
+783.24	0.0033944
+783.36	0.00339407
+783.48	0.00339374
+783.6	0.00339341
+783.72	0.00339308
+783.84	0.00339276
+783.96	0.00339243
+784.08	0.0033921
+784.2	0.00339177
+784.32	0.00339144
+784.44	0.00339112
+784.56	0.00339079
+784.68	0.00339046
+784.8	0.00339013
+784.92	0.0033898
+785.04	0.00338948
+785.16	0.00338915
+785.28	0.00338882
+785.4	0.0033885
+785.52	0.00338817
+785.64	0.00338784
+785.76	0.00338751
+785.88	0.00338719
+786	0.00338686
+786.12	0.00338653
+786.24	0.00338621
+786.36	0.00338588
+786.48	0.00338556
+786.6	0.00338523
+786.72	0.0033849
+786.84	0.00338458
+786.96	0.00338425
+787.08	0.00338393
+787.2	0.0033836
+787.32	0.00338327
+787.44	0.00338295
+787.56	0.00338262
+787.68	0.0033823
+787.8	0.00338197
+787.92	0.00338165
+788.04	0.00338132
+788.16	0.003381
+788.28	0.00338067
+788.4	0.00338035
+788.52	0.00338002
+788.64	0.0033797
+788.76	0.00337938
+788.88	0.00337905
+789	0.00337873
+789.12	0.0033784
+789.24	0.00337808
+789.36	0.00337775
+789.48	0.00337743
+789.6	0.00337711
+789.72	0.00337678
+789.84	0.00337646
+789.96	0.00337614
+790.08	0.00337581
+790.2	0.00337549
+790.32	0.00337517
+790.44	0.00337484
+790.56	0.00337452
+790.68	0.0033742
+790.8	0.00337387
+790.92	0.00337355
+791.04	0.00337323
+791.16	0.00337291
+791.28	0.00337258
+791.4	0.00337226
+791.52	0.00337194
+791.64	0.00337162
+791.76	0.0033713
+791.88	0.00337097
+792	0.00337065
+792.12	0.00337033
+792.24	0.00337001
+792.36	0.00336969
+792.48	0.00336937
+792.6	0.00336904
+792.72	0.00336872
+792.84	0.0033684
+792.96	0.00336808
+793.08	0.00336776
+793.2	0.00336744
+793.32	0.00336712
+793.44	0.0033668
+793.56	0.00336648
+793.68	0.00336616
+793.8	0.00336583
+793.92	0.00336551
+794.04	0.00336519
+794.16	0.00336487
+794.28	0.00336455
+794.4	0.00336423
+794.52	0.00336391
+794.64	0.00336359
+794.76	0.00336327
+794.88	0.00336295
+795	0.00336263
+795.12	0.00336232
+795.24	0.003362
+795.36	0.00336168
+795.48	0.00336136
+795.6	0.00336104
+795.72	0.00336072
+795.84	0.0033604
+795.96	0.00336008
+796.08	0.00335976
+796.2	0.00335944
+796.32	0.00335913
+796.44	0.00335881
+796.56	0.00335849
+796.68	0.00335817
+796.8	0.00335785
+796.92	0.00335753
+797.04	0.00335722
+797.16	0.0033569
+797.28	0.00335658
+797.4	0.00335626
+797.52	0.00335595
+797.64	0.00335563
+797.76	0.00335531
+797.88	0.00335499
+798	0.00335468
+798.12	0.00335436
+798.24	0.00335404
+798.36	0.00335372
+798.48	0.00335341
+798.6	0.00335309
+798.72	0.00335277
+798.84	0.00335246
+798.96	0.00335214
+799.08	0.00335183
+799.2	0.00335151
+799.32	0.00335119
+799.44	0.00335088
+799.56	0.00335056
+799.68	0.00335024
+799.8	0.00334993
+799.92	0.00334961
+800.04	0.0033493
+800.16	0.00334898
+800.28	0.00334867
+800.4	0.00334835
+800.52	0.00334804
+800.64	0.00334772
+800.76	0.0033474
+800.88	0.00334709
+801	0.00334677
+801.12	0.00334646
+801.24	0.00334615
+801.36	0.00334583
+801.48	0.00334552
+801.6	0.0033452
+801.72	0.00334489
+801.84	0.00334457
+801.96	0.00334426
+802.08	0.00334394
+802.2	0.00334363
+802.32	0.00334332
+802.44	0.003343
+802.56	0.00334269
+802.68	0.00334237
+802.8	0.00334206
+802.92	0.00334175
+803.04	0.00334143
+803.16	0.00334112
+803.28	0.00334081
+803.4	0.00334049
+803.52	0.00334018
+803.64	0.00333987
+803.76	0.00333956
+803.88	0.00333924
+804	0.00333893
+804.12	0.00333862
+804.24	0.0033383
+804.36	0.00333799
+804.48	0.00333768
+804.6	0.00333737
+804.72	0.00333706
+804.84	0.00333674
+804.96	0.00333643
+805.08	0.00333612
+805.2	0.00333581
+805.32	0.0033355
+805.44	0.00333518
+805.56	0.00333487
+805.68	0.00333456
+805.8	0.00333425
+805.92	0.00333394
+806.04	0.00333363
+806.16	0.00333332
+806.28	0.00333301
+806.4	0.00333269
+806.52	0.00333238
+806.64	0.00333207
+806.76	0.00333176
+806.88	0.00333145
+807	0.00333114
+807.12	0.00333083
+807.24	0.00333052
+807.36	0.00333021
+807.48	0.0033299
+807.6	0.00332959
+807.72	0.00332928
+807.84	0.00332897
+807.96	0.00332866
+808.08	0.00332835
+808.2	0.00332804
+808.32	0.00332773
+808.44	0.00332742
+808.56	0.00332711
+808.68	0.0033268
+808.8	0.0033265
+808.92	0.00332619
+809.04	0.00332588
+809.16	0.00332557
+809.28	0.00332526
+809.4	0.00332495
+809.52	0.00332464
+809.64	0.00332433
+809.76	0.00332403
+809.88	0.00332372
+810	0.00332341
+810.12	0.0033231
+810.24	0.00332279
+810.36	0.00332248
+810.48	0.00332218
+810.6	0.00332187
+810.72	0.00332156
+810.84	0.00332125
+810.96	0.00332095
+811.08	0.00332064
+811.2	0.00332033
+811.32	0.00332002
+811.44	0.00331972
+811.56	0.00331941
+811.68	0.0033191
+811.8	0.0033188
+811.92	0.00331849
+812.04	0.00331818
+812.16	0.00331787
+812.28	0.00331757
+812.4	0.00331726
+812.52	0.00331696
+812.64	0.00331665
+812.76	0.00331634
+812.88	0.00331604
+813	0.00331573
+813.12	0.00331542
+813.24	0.00331512
+813.36	0.00331481
+813.48	0.00331451
+813.6	0.0033142
+813.72	0.0033139
+813.84	0.00331359
+813.96	0.00331328
+814.08	0.00331298
+814.2	0.00331267
+814.32	0.00331237
+814.44	0.00331206
+814.56	0.00331176
+814.68	0.00331145
+814.8	0.00331115
+814.92	0.00331085
+815.04	0.00331054
+815.16	0.00331024
+815.28	0.00330993
+815.4	0.00330963
+815.52	0.00330932
+815.64	0.00330902
+815.76	0.00330871
+815.88	0.00330841
+816	0.00330811
+816.12	0.0033078
+816.24	0.0033075
+816.36	0.0033072
+816.48	0.00330689
+816.6	0.00330659
+816.72	0.00330629
+816.84	0.00330598
+816.96	0.00330568
+817.08	0.00330538
+817.2	0.00330507
+817.32	0.00330477
+817.44	0.00330447
+817.56	0.00330416
+817.68	0.00330386
+817.8	0.00330356
+817.92	0.00330326
+818.04	0.00330295
+818.16	0.00330265
+818.28	0.00330235
+818.4	0.00330205
+818.52	0.00330174
+818.64	0.00330144
+818.76	0.00330114
+818.88	0.00330084
+819	0.00330054
+819.12	0.00330024
+819.24	0.00329993
+819.36	0.00329963
+819.48	0.00329933
+819.6	0.00329903
+819.72	0.00329873
+819.84	0.00329843
+819.96	0.00329813
+820.08	0.00329782
+820.2	0.00329752
+820.32	0.00329722
+820.44	0.00329692
+820.56	0.00329662
+820.68	0.00329632
+820.8	0.00329602
+820.92	0.00329572
+821.04	0.00329542
+821.16	0.00329512
+821.28	0.00329482
+821.4	0.00329452
+821.52	0.00329422
+821.64	0.00329392
+821.76	0.00329362
+821.88	0.00329332
+822	0.00329302
+822.12	0.00329272
+822.24	0.00329242
+822.36	0.00329212
+822.48	0.00329182
+822.6	0.00329152
+822.72	0.00329122
+822.84	0.00329092
+822.96	0.00329063
+823.08	0.00329033
+823.2	0.00329003
+823.32	0.00328973
+823.44	0.00328943
+823.56	0.00328913
+823.68	0.00328883
+823.8	0.00328854
+823.92	0.00328824
+824.04	0.00328794
+824.16	0.00328764
+824.28	0.00328734
+824.4	0.00328704
+824.52	0.00328675
+824.64	0.00328645
+824.76	0.00328615
+824.88	0.00328585
+825	0.00328556
+825.12	0.00328526
+825.24	0.00328496
+825.36	0.00328466
+825.48	0.00328437
+825.6	0.00328407
+825.72	0.00328377
+825.84	0.00328348
+825.96	0.00328318
+826.08	0.00328288
+826.2	0.00328259
+826.32	0.00328229
+826.44	0.00328199
+826.56	0.0032817
+826.68	0.0032814
+826.8	0.0032811
+826.92	0.00328081
+827.04	0.00328051
+827.16	0.00328021
+827.28	0.00327992
+827.4	0.00327962
+827.52	0.00327933
+827.64	0.00327903
+827.76	0.00327874
+827.88	0.00327844
+828	0.00327814
+828.12	0.00327785
+828.24	0.00327755
+828.36	0.00327726
+828.48	0.00327696
+828.6	0.00327667
+828.72	0.00327637
+828.84	0.00327608
+828.96	0.00327578
+829.08	0.00327549
+829.2	0.00327519
+829.32	0.0032749
+829.44	0.0032746
+829.56	0.00327431
+829.68	0.00327402
+829.8	0.00327372
+829.92	0.00327343
+830.04	0.00327313
+830.16	0.00327284
+830.28	0.00327255
+830.4	0.00327225
+830.52	0.00327196
+830.64	0.00327166
+830.76	0.00327137
+830.88	0.00327108
+831	0.00327078
+831.12	0.00327049
+831.24	0.0032702
+831.36	0.0032699
+831.48	0.00326961
+831.6	0.00326932
+831.72	0.00326903
+831.84	0.00326873
+831.96	0.00326844
+832.08	0.00326815
+832.2	0.00326785
+832.32	0.00326756
+832.44	0.00326727
+832.56	0.00326698
+832.68	0.00326668
+832.8	0.00326639
+832.92	0.0032661
+833.04	0.00326581
+833.16	0.00326552
+833.28	0.00326522
+833.4	0.00326493
+833.52	0.00326464
+833.64	0.00326435
+833.76	0.00326406
+833.88	0.00326377
+834	0.00326347
+834.12	0.00326318
+834.24	0.00326289
+834.36	0.0032626
+834.48	0.00326231
+834.6	0.00326202
+834.72	0.00326173
+834.84	0.00326144
+834.96	0.00326115
+835.08	0.00326086
+835.2	0.00326057
+835.32	0.00326027
+835.44	0.00325998
+835.56	0.00325969
+835.68	0.0032594
+835.8	0.00325911
+835.92	0.00325882
+836.04	0.00325853
+836.16	0.00325824
+836.28	0.00325795
+836.4	0.00325766
+836.52	0.00325737
+836.64	0.00325708
+836.76	0.00325679
+836.88	0.00325651
+837	0.00325622
+837.12	0.00325593
+837.24	0.00325564
+837.36	0.00325535
+837.48	0.00325506
+837.6	0.00325477
+837.72	0.00325448
+837.84	0.00325419
+837.96	0.0032539
+838.08	0.00325362
+838.2	0.00325333
+838.32	0.00325304
+838.44	0.00325275
+838.56	0.00325246
+838.68	0.00325217
+838.8	0.00325188
+838.92	0.0032516
+839.04	0.00325131
+839.16	0.00325102
+839.28	0.00325073
+839.4	0.00325045
+839.52	0.00325016
+839.64	0.00324987
+839.76	0.00324958
+839.88	0.00324929
+840	0.00324901
+840.12	0.00324872
+840.24	0.00324843
+840.36	0.00324815
+840.48	0.00324786
+840.6	0.00324757
+840.72	0.00324728
+840.84	0.003247
+840.96	0.00324671
+841.08	0.00324642
+841.2	0.00324614
+841.32	0.00324585
+841.44	0.00324556
+841.56	0.00324528
+841.68	0.00324499
+841.8	0.00324471
+841.92	0.00324442
+842.04	0.00324413
+842.16	0.00324385
+842.28	0.00324356
+842.4	0.00324328
+842.52	0.00324299
+842.64	0.0032427
+842.76	0.00324242
+842.88	0.00324213
+843	0.00324185
+843.12	0.00324156
+843.24	0.00324128
+843.36	0.00324099
+843.48	0.00324071
+843.6	0.00324042
+843.72	0.00324014
+843.84	0.00323985
+843.96	0.00323957
+844.08	0.00323928
+844.2	0.003239
+844.32	0.00323871
+844.44	0.00323843
+844.56	0.00323815
+844.68	0.00323786
+844.8	0.00323758
+844.92	0.00323729
+845.04	0.00323701
+845.16	0.00323672
+845.28	0.00323644
+845.4	0.00323616
+845.52	0.00323587
+845.64	0.00323559
+845.76	0.00323531
+845.88	0.00323502
+846	0.00323474
+846.12	0.00323445
+846.24	0.00323417
+846.36	0.00323389
+846.48	0.00323361
+846.6	0.00323332
+846.72	0.00323304
+846.84	0.00323276
+846.96	0.00323247
+847.08	0.00323219
+847.2	0.00323191
+847.32	0.00323163
+847.44	0.00323134
+847.56	0.00323106
+847.68	0.00323078
+847.8	0.0032305
+847.92	0.00323021
+848.04	0.00322993
+848.16	0.00322965
+848.28	0.00322937
+848.4	0.00322909
+848.52	0.0032288
+848.64	0.00322852
+848.76	0.00322824
+848.88	0.00322796
+849	0.00322768
+849.12	0.0032274
+849.24	0.00322711
+849.36	0.00322683
+849.48	0.00322655
+849.6	0.00322627
+849.72	0.00322599
+849.84	0.00322571
+849.96	0.00322543
+850.08	0.00322515
+850.2	0.00322487
+850.32	0.00322458
+850.44	0.0032243
+850.56	0.00322402
+850.68	0.00322374
+850.8	0.00322346
+850.92	0.00322318
+851.04	0.0032229
+851.16	0.00322262
+851.28	0.00322234
+851.4	0.00322206
+851.52	0.00322178
+851.64	0.0032215
+851.76	0.00322122
+851.88	0.00322094
+852	0.00322066
+852.12	0.00322038
+852.24	0.0032201
+852.36	0.00321982
+852.48	0.00321955
+852.6	0.00321927
+852.72	0.00321899
+852.84	0.00321871
+852.96	0.00321843
+853.08	0.00321815
+853.2	0.00321787
+853.32	0.00321759
+853.44	0.00321731
+853.56	0.00321703
+853.68	0.00321676
+853.8	0.00321648
+853.92	0.0032162
+854.04	0.00321592
+854.16	0.00321564
+854.28	0.00321536
+854.4	0.00321509
+854.52	0.00321481
+854.64	0.00321453
+854.76	0.00321425
+854.88	0.00321397
+855	0.0032137
+855.12	0.00321342
+855.24	0.00321314
+855.36	0.00321286
+855.48	0.00321259
+855.6	0.00321231
+855.72	0.00321203
+855.84	0.00321175
+855.96	0.00321148
+856.08	0.0032112
+856.2	0.00321092
+856.32	0.00321065
+856.44	0.00321037
+856.56	0.00321009
+856.68	0.00320982
+856.8	0.00320954
+856.92	0.00320926
+857.04	0.00320899
+857.16	0.00320871
+857.28	0.00320843
+857.4	0.00320816
+857.52	0.00320788
+857.64	0.00320761
+857.76	0.00320733
+857.88	0.00320705
+858	0.00320678
+858.12	0.0032065
+858.24	0.00320623
+858.36	0.00320595
+858.48	0.00320568
+858.6	0.0032054
+858.72	0.00320512
+858.84	0.00320485
+858.96	0.00320457
+859.08	0.0032043
+859.2	0.00320402
+859.32	0.00320375
+859.44	0.00320347
+859.56	0.0032032
+859.68	0.00320292
+859.8	0.00320265
+859.92	0.00320237
+860.04	0.0032021
+860.16	0.00320183
+860.28	0.00320155
+860.4	0.00320128
+860.52	0.003201
+860.64	0.00320073
+860.76	0.00320045
+860.88	0.00320018
+861	0.00319991
+861.12	0.00319963
+861.24	0.00319936
+861.36	0.00319908
+861.48	0.00319881
+861.6	0.00319854
+861.72	0.00319826
+861.84	0.00319799
+861.96	0.00319772
+862.08	0.00319744
+862.2	0.00319717
+862.32	0.0031969
+862.44	0.00319662
+862.56	0.00319635
+862.68	0.00319608
+862.8	0.0031958
+862.92	0.00319553
+863.04	0.00319526
+863.16	0.00319499
+863.28	0.00319471
+863.4	0.00319444
+863.52	0.00319417
+863.64	0.0031939
+863.76	0.00319362
+863.88	0.00319335
+864	0.00319308
+864.12	0.00319281
+864.24	0.00319254
+864.36	0.00319226
+864.48	0.00319199
+864.6	0.00319172
+864.72	0.00319145
+864.84	0.00319118
+864.96	0.0031909
+865.08	0.00319063
+865.2	0.00319036
+865.32	0.00319009
+865.44	0.00318982
+865.56	0.00318955
+865.68	0.00318928
+865.8	0.00318901
+865.92	0.00318873
+866.04	0.00318846
+866.16	0.00318819
+866.28	0.00318792
+866.4	0.00318765
+866.52	0.00318738
+866.64	0.00318711
+866.76	0.00318684
+866.88	0.00318657
+867	0.0031863
+867.12	0.00318603
+867.24	0.00318576
+867.36	0.00318549
+867.48	0.00318522
+867.6	0.00318495
+867.72	0.00318468
+867.84	0.00318441
+867.96	0.00318414
+868.08	0.00318387
+868.2	0.0031836
+868.32	0.00318333
+868.44	0.00318306
+868.56	0.00318279
+868.68	0.00318252
+868.8	0.00318225
+868.92	0.00318198
+869.04	0.00318171
+869.16	0.00318144
+869.28	0.00318118
+869.4	0.00318091
+869.52	0.00318064
+869.64	0.00318037
+869.76	0.0031801
+869.88	0.00317983
+870	0.00317956
+870.12	0.00317929
+870.24	0.00317903
+870.36	0.00317876
+870.48	0.00317849
+870.6	0.00317822
+870.72	0.00317795
+870.84	0.00317769
+870.96	0.00317742
+871.08	0.00317715
+871.2	0.00317688
+871.32	0.00317661
+871.44	0.00317635
+871.56	0.00317608
+871.68	0.00317581
+871.8	0.00317554
+871.92	0.00317528
+872.04	0.00317501
+872.16	0.00317474
+872.28	0.00317447
+872.4	0.00317421
+872.52	0.00317394
+872.64	0.00317367
+872.76	0.00317341
+872.88	0.00317314
+873	0.00317287
+873.12	0.00317261
+873.24	0.00317234
+873.36	0.00317207
+873.48	0.00317181
+873.6	0.00317154
+873.72	0.00317127
+873.84	0.00317101
+873.96	0.00317074
+874.08	0.00317048
+874.2	0.00317021
+874.32	0.00316994
+874.44	0.00316968
+874.56	0.00316941
+874.68	0.00316915
+874.8	0.00316888
+874.92	0.00316861
+875.04	0.00316835
+875.16	0.00316808
+875.28	0.00316782
+875.4	0.00316755
+875.52	0.00316729
+875.64	0.00316702
+875.76	0.00316676
+875.88	0.00316649
+876	0.00316623
+876.12	0.00316596
+876.24	0.0031657
+876.36	0.00316543
+876.48	0.00316517
+876.6	0.0031649
+876.72	0.00316464
+876.84	0.00316437
+876.96	0.00316411
+877.08	0.00316384
+877.2	0.00316358
+877.32	0.00316332
+877.44	0.00316305
+877.56	0.00316279
+877.68	0.00316252
+877.8	0.00316226
+877.92	0.003162
+878.04	0.00316173
+878.16	0.00316147
+878.28	0.0031612
+878.4	0.00316094
+878.52	0.00316068
+878.64	0.00316041
+878.76	0.00316015
+878.88	0.00315989
+879	0.00315962
+879.12	0.00315936
+879.24	0.0031591
+879.36	0.00315883
+879.48	0.00315857
+879.6	0.00315831
+879.72	0.00315805
+879.84	0.00315778
+879.96	0.00315752
+880.08	0.00315726
+880.2	0.003157
+880.32	0.00315673
+880.44	0.00315647
+880.56	0.00315621
+880.68	0.00315595
+880.8	0.00315568
+880.92	0.00315542
+881.04	0.00315516
+881.16	0.0031549
+881.28	0.00315464
+881.4	0.00315437
+881.52	0.00315411
+881.64	0.00315385
+881.76	0.00315359
+881.88	0.00315333
+882	0.00315307
+882.12	0.0031528
+882.24	0.00315254
+882.36	0.00315228
+882.48	0.00315202
+882.6	0.00315176
+882.72	0.0031515
+882.84	0.00315124
+882.96	0.00315098
+883.08	0.00315071
+883.2	0.00315045
+883.32	0.00315019
+883.44	0.00314993
+883.56	0.00314967
+883.68	0.00314941
+883.8	0.00314915
+883.92	0.00314889
+884.04	0.00314863
+884.16	0.00314837
+884.28	0.00314811
+884.4	0.00314785
+884.52	0.00314759
+884.64	0.00314733
+884.76	0.00314707
+884.88	0.00314681
+885	0.00314655
+885.12	0.00314629
+885.24	0.00314603
+885.36	0.00314577
+885.48	0.00314551
+885.6	0.00314525
+885.72	0.00314499
+885.84	0.00314473
+885.96	0.00314447
+886.08	0.00314421
+886.2	0.00314396
+886.32	0.0031437
+886.44	0.00314344
+886.56	0.00314318
+886.68	0.00314292
+886.8	0.00314266
+886.92	0.0031424
+887.04	0.00314214
+887.16	0.00314188
+887.28	0.00314163
+887.4	0.00314137
+887.52	0.00314111
+887.64	0.00314085
+887.76	0.00314059
+887.88	0.00314034
+888	0.00314008
+888.12	0.00313982
+888.24	0.00313956
+888.36	0.0031393
+888.48	0.00313905
+888.6	0.00313879
+888.72	0.00313853
+888.84	0.00313827
+888.96	0.00313802
+889.08	0.00313776
+889.2	0.0031375
+889.32	0.00313724
+889.44	0.00313699
+889.56	0.00313673
+889.68	0.00313647
+889.8	0.00313621
+889.92	0.00313596
+890.04	0.0031357
+890.16	0.00313544
+890.28	0.00313519
+890.4	0.00313493
+890.52	0.00313467
+890.64	0.00313442
+890.76	0.00313416
+890.88	0.0031339
+891	0.00313365
+891.12	0.00313339
+891.24	0.00313314
+891.36	0.00313288
+891.48	0.00313262
+891.6	0.00313237
+891.72	0.00313211
+891.84	0.00313186
+891.96	0.0031316
+892.08	0.00313134
+892.2	0.00313109
+892.32	0.00313083
+892.44	0.00313058
+892.56	0.00313032
+892.68	0.00313007
+892.8	0.00312981
+892.92	0.00312956
+893.04	0.0031293
+893.16	0.00312905
+893.28	0.00312879
+893.4	0.00312854
+893.52	0.00312828
+893.64	0.00312803
+893.76	0.00312777
+893.88	0.00312752
+894	0.00312726
+894.12	0.00312701
+894.24	0.00312675
+894.36	0.0031265
+894.48	0.00312624
+894.6	0.00312599
+894.72	0.00312573
+894.84	0.00312548
+894.96	0.00312523
+895.08	0.00312497
+895.2	0.00312472
+895.32	0.00312446
+895.44	0.00312421
+895.56	0.00312396
+895.68	0.0031237
+895.8	0.00312345
+895.92	0.0031232
+896.04	0.00312294
+896.16	0.00312269
+896.28	0.00312244
+896.4	0.00312218
+896.52	0.00312193
+896.64	0.00312168
+896.76	0.00312142
+896.88	0.00312117
+897	0.00312092
+897.12	0.00312066
+897.24	0.00312041
+897.36	0.00312016
+897.48	0.0031199
+897.6	0.00311965
+897.72	0.0031194
+897.84	0.00311915
+897.96	0.00311889
+898.08	0.00311864
+898.2	0.00311839
+898.32	0.00311814
+898.44	0.00311788
+898.56	0.00311763
+898.68	0.00311738
+898.8	0.00311713
+898.92	0.00311688
+899.04	0.00311662
+899.16	0.00311637
+899.28	0.00311612
+899.4	0.00311587
+899.52	0.00311562
+899.64	0.00311537
+899.76	0.00311511
+899.88	0.00311486
+900	0.00311461
+900.12	0.00311436
+900.24	0.00311411
+900.36	0.00311386
+900.48	0.00311361
+900.6	0.00311336
+900.72	0.0031131
+900.84	0.00311285
+900.96	0.0031126
+901.08	0.00311235
+901.2	0.0031121
+901.32	0.00311185
+901.44	0.0031116
+901.56	0.00311135
+901.68	0.0031111
+901.8	0.00311085
+901.92	0.0031106
+902.04	0.00311035
+902.16	0.0031101
+902.28	0.00310985
+902.4	0.0031096
+902.52	0.00310935
+902.64	0.0031091
+902.76	0.00310885
+902.88	0.0031086
+903	0.00310835
+903.12	0.0031081
+903.24	0.00310785
+903.36	0.0031076
+903.48	0.00310735
+903.6	0.0031071
+903.72	0.00310685
+903.84	0.0031066
+903.96	0.00310635
+904.08	0.0031061
+904.2	0.00310585
+904.32	0.0031056
+904.44	0.00310536
+904.56	0.00310511
+904.68	0.00310486
+904.8	0.00310461
+904.92	0.00310436
+905.04	0.00310411
+905.16	0.00310386
+905.28	0.00310361
+905.4	0.00310337
+905.52	0.00310312
+905.64	0.00310287
+905.76	0.00310262
+905.88	0.00310237
+906	0.00310212
+906.12	0.00310188
+906.24	0.00310163
+906.36	0.00310138
+906.48	0.00310113
+906.6	0.00310088
+906.72	0.00310064
+906.84	0.00310039
+906.96	0.00310014
+907.08	0.00309989
+907.2	0.00309965
+907.32	0.0030994
+907.44	0.00309915
+907.56	0.0030989
+907.68	0.00309866
+907.8	0.00309841
+907.92	0.00309816
+908.04	0.00309792
+908.16	0.00309767
+908.28	0.00309742
+908.4	0.00309717
+908.52	0.00309693
+908.64	0.00309668
+908.76	0.00309643
+908.88	0.00309619
+909	0.00309594
+909.12	0.00309569
+909.24	0.00309545
+909.36	0.0030952
+909.48	0.00309495
+909.6	0.00309471
+909.72	0.00309446
+909.84	0.00309422
+909.96	0.00309397
+910.08	0.00309372
+910.2	0.00309348
+910.32	0.00309323
+910.44	0.00309299
+910.56	0.00309274
+910.68	0.0030925
+910.8	0.00309225
+910.92	0.003092
+911.04	0.00309176
+911.16	0.00309151
+911.28	0.00309127
+911.4	0.00309102
+911.52	0.00309078
+911.64	0.00309053
+911.76	0.00309029
+911.88	0.00309004
+912	0.0030898
+912.12	0.00308955
+912.24	0.00308931
+912.36	0.00308906
+912.48	0.00308882
+912.6	0.00308857
+912.72	0.00308833
+912.84	0.00308808
+912.96	0.00308784
+913.08	0.00308759
+913.2	0.00308735
+913.32	0.00308711
+913.44	0.00308686
+913.56	0.00308662
+913.68	0.00308637
+913.8	0.00308613
+913.92	0.00308588
+914.04	0.00308564
+914.16	0.0030854
+914.28	0.00308515
+914.4	0.00308491
+914.52	0.00308467
+914.64	0.00308442
+914.76	0.00308418
+914.88	0.00308393
+915	0.00308369
+915.12	0.00308345
+915.24	0.0030832
+915.36	0.00308296
+915.48	0.00308272
+915.6	0.00308248
+915.72	0.00308223
+915.84	0.00308199
+915.96	0.00308175
+916.08	0.0030815
+916.2	0.00308126
+916.32	0.00308102
+916.44	0.00308077
+916.56	0.00308053
+916.68	0.00308029
+916.8	0.00308005
+916.92	0.0030798
+917.04	0.00307956
+917.16	0.00307932
+917.28	0.00307908
+917.4	0.00307884
+917.52	0.00307859
+917.64	0.00307835
+917.76	0.00307811
+917.88	0.00307787
+918	0.00307763
+918.12	0.00307738
+918.24	0.00307714
+918.36	0.0030769
+918.48	0.00307666
+918.6	0.00307642
+918.72	0.00307617
+918.84	0.00307593
+918.96	0.00307569
+919.08	0.00307545
+919.2	0.00307521
+919.32	0.00307497
+919.44	0.00307473
+919.56	0.00307449
+919.68	0.00307424
+919.8	0.003074
+919.92	0.00307376
+920.04	0.00307352
+920.16	0.00307328
+920.28	0.00307304
+920.4	0.0030728
+920.52	0.00307256
+920.64	0.00307232
+920.76	0.00307208
+920.88	0.00307184
+921	0.0030716
+921.12	0.00307136
+921.24	0.00307112
+921.36	0.00307088
+921.48	0.00307064
+921.6	0.0030704
+921.72	0.00307016
+921.84	0.00306992
+921.96	0.00306968
+922.08	0.00306944
+922.2	0.0030692
+922.32	0.00306896
+922.44	0.00306872
+922.56	0.00306848
+922.68	0.00306824
+922.8	0.003068
+922.92	0.00306776
+923.04	0.00306752
+923.16	0.00306728
+923.28	0.00306704
+923.4	0.0030668
+923.52	0.00306656
+923.64	0.00306632
+923.76	0.00306609
+923.88	0.00306585
+924	0.00306561
+924.12	0.00306537
+924.24	0.00306513
+924.36	0.00306489
+924.48	0.00306465
+924.6	0.00306441
+924.72	0.00306418
+924.84	0.00306394
+924.96	0.0030637
+925.08	0.00306346
+925.2	0.00306322
+925.32	0.00306298
+925.44	0.00306275
+925.56	0.00306251
+925.68	0.00306227
+925.8	0.00306203
+925.92	0.00306179
+926.04	0.00306156
+926.16	0.00306132
+926.28	0.00306108
+926.4	0.00306084
+926.52	0.0030606
+926.64	0.00306037
+926.76	0.00306013
+926.88	0.00305989
+927	0.00305966
+927.12	0.00305942
+927.24	0.00305918
+927.36	0.00305894
+927.48	0.00305871
+927.6	0.00305847
+927.72	0.00305823
+927.84	0.003058
+927.96	0.00305776
+928.08	0.00305752
+928.2	0.00305728
+928.32	0.00305705
+928.44	0.00305681
+928.56	0.00305657
+928.68	0.00305634
+928.8	0.0030561
+928.92	0.00305587
+929.04	0.00305563
+929.16	0.00305539
+929.28	0.00305516
+929.4	0.00305492
+929.52	0.00305468
+929.64	0.00305445
+929.76	0.00305421
+929.88	0.00305398
+930	0.00305374
+930.12	0.0030535
+930.24	0.00305327
+930.36	0.00305303
+930.48	0.0030528
+930.6	0.00305256
+930.72	0.00305233
+930.84	0.00305209
+930.96	0.00305186
+931.08	0.00305162
+931.2	0.00305138
+931.32	0.00305115
+931.44	0.00305091
+931.56	0.00305068
+931.68	0.00305044
+931.8	0.00305021
+931.92	0.00304997
+932.04	0.00304974
+932.16	0.0030495
+932.28	0.00304927
+932.4	0.00304903
+932.52	0.0030488
+932.64	0.00304857
+932.76	0.00304833
+932.88	0.0030481
+933	0.00304786
+933.12	0.00304763
+933.24	0.00304739
+933.36	0.00304716
+933.48	0.00304693
+933.6	0.00304669
+933.72	0.00304646
+933.84	0.00304622
+933.96	0.00304599
+934.08	0.00304576
+934.2	0.00304552
+934.32	0.00304529
+934.44	0.00304505
+934.56	0.00304482
+934.68	0.00304459
+934.8	0.00304435
+934.92	0.00304412
+935.04	0.00304389
+935.16	0.00304365
+935.28	0.00304342
+935.4	0.00304319
+935.52	0.00304295
+935.64	0.00304272
+935.76	0.00304249
+935.88	0.00304225
+936	0.00304202
+936.12	0.00304179
+936.24	0.00304156
+936.36	0.00304132
+936.48	0.00304109
+936.6	0.00304086
+936.72	0.00304062
+936.84	0.00304039
+936.96	0.00304016
+937.08	0.00303993
+937.2	0.00303969
+937.32	0.00303946
+937.44	0.00303923
+937.56	0.003039
+937.68	0.00303877
+937.8	0.00303853
+937.92	0.0030383
+938.04	0.00303807
+938.16	0.00303784
+938.28	0.00303761
+938.4	0.00303737
+938.52	0.00303714
+938.64	0.00303691
+938.76	0.00303668
+938.88	0.00303645
+939	0.00303622
+939.12	0.00303598
+939.24	0.00303575
+939.36	0.00303552
+939.48	0.00303529
+939.6	0.00303506
+939.72	0.00303483
+939.84	0.0030346
+939.96	0.00303437
+940.08	0.00303413
+940.2	0.0030339
+940.32	0.00303367
+940.44	0.00303344
+940.56	0.00303321
+940.68	0.00303298
+940.8	0.00303275
+940.92	0.00303252
+941.04	0.00303229
+941.16	0.00303206
+941.28	0.00303183
+941.4	0.0030316
+941.52	0.00303137
+941.64	0.00303114
+941.76	0.00303091
+941.88	0.00303068
+942	0.00303045
+942.12	0.00303022
+942.24	0.00302999
+942.36	0.00302976
+942.48	0.00302953
+942.6	0.0030293
+942.72	0.00302907
+942.84	0.00302884
+942.96	0.00302861
+943.08	0.00302838
+943.2	0.00302815
+943.32	0.00302792
+943.44	0.00302769
+943.56	0.00302746
+943.68	0.00302723
+943.8	0.003027
+943.92	0.00302677
+944.04	0.00302654
+944.16	0.00302632
+944.28	0.00302609
+944.4	0.00302586
+944.52	0.00302563
+944.64	0.0030254
+944.76	0.00302517
+944.88	0.00302494
+945	0.00302471
+945.12	0.00302448
+945.24	0.00302426
+945.36	0.00302403
+945.48	0.0030238
+945.6	0.00302357
+945.72	0.00302334
+945.84	0.00302311
+945.96	0.00302289
+946.08	0.00302266
+946.2	0.00302243
+946.32	0.0030222
+946.44	0.00302197
+946.56	0.00302175
+946.68	0.00302152
+946.8	0.00302129
+946.92	0.00302106
+947.04	0.00302083
+947.16	0.00302061
+947.28	0.00302038
+947.4	0.00302015
+947.52	0.00301992
+947.64	0.0030197
+947.76	0.00301947
+947.88	0.00301924
+948	0.00301902
+948.12	0.00301879
+948.24	0.00301856
+948.36	0.00301833
+948.48	0.00301811
+948.6	0.00301788
+948.72	0.00301765
+948.84	0.00301743
+948.96	0.0030172
+949.08	0.00301697
+949.2	0.00301675
+949.32	0.00301652
+949.44	0.00301629
+949.56	0.00301607
+949.68	0.00301584
+949.8	0.00301561
+949.92	0.00301539
+950.04	0.00301516
+950.16	0.00301493
+950.28	0.00301471
+950.4	0.00301448
+950.52	0.00301426
+950.64	0.00301403
+950.76	0.0030138
+950.88	0.00301358
+951	0.00301335
+951.12	0.00301313
+951.24	0.0030129
+951.36	0.00301268
+951.48	0.00301245
+951.6	0.00301222
+951.72	0.003012
+951.84	0.00301177
+951.96	0.00301155
+952.08	0.00301132
+952.2	0.0030111
+952.32	0.00301087
+952.44	0.00301065
+952.56	0.00301042
+952.68	0.0030102
+952.8	0.00300997
+952.92	0.00300975
+953.04	0.00300952
+953.16	0.0030093
+953.28	0.00300907
+953.4	0.00300885
+953.52	0.00300862
+953.64	0.0030084
+953.76	0.00300817
+953.88	0.00300795
+954	0.00300772
+954.12	0.0030075
+954.24	0.00300728
+954.36	0.00300705
+954.48	0.00300683
+954.6	0.0030066
+954.72	0.00300638
+954.84	0.00300615
+954.96	0.00300593
+955.08	0.00300571
+955.2	0.00300548
+955.32	0.00300526
+955.44	0.00300503
+955.56	0.00300481
+955.68	0.00300459
+955.8	0.00300436
+955.92	0.00300414
+956.04	0.00300392
+956.16	0.00300369
+956.28	0.00300347
+956.4	0.00300325
+956.52	0.00300302
+956.64	0.0030028
+956.76	0.00300258
+956.88	0.00300235
+957	0.00300213
+957.12	0.00300191
+957.24	0.00300168
+957.36	0.00300146
+957.48	0.00300124
+957.6	0.00300102
+957.72	0.00300079
+957.84	0.00300057
+957.96	0.00300035
+958.08	0.00300012
+958.2	0.0029999
+958.32	0.00299968
+958.44	0.00299946
+958.56	0.00299923
+958.68	0.00299901
+958.8	0.00299879
+958.92	0.00299857
+959.04	0.00299835
+959.16	0.00299812
+959.28	0.0029979
+959.4	0.00299768
+959.52	0.00299746
+959.64	0.00299724
+959.76	0.00299701
+959.88	0.00299679
+960	0.00299657
+960.12	0.00299635
+960.24	0.00299613
+960.36	0.00299591
+960.48	0.00299568
+960.6	0.00299546
+960.72	0.00299524
+960.84	0.00299502
+960.96	0.0029948
+961.08	0.00299458
+961.2	0.00299436
+961.32	0.00299413
+961.44	0.00299391
+961.56	0.00299369
+961.68	0.00299347
+961.8	0.00299325
+961.92	0.00299303
+962.04	0.00299281
+962.16	0.00299259
+962.28	0.00299237
+962.4	0.00299215
+962.52	0.00299193
+962.64	0.00299171
+962.76	0.00299148
+962.88	0.00299126
+963	0.00299104
+963.12	0.00299082
+963.24	0.0029906
+963.36	0.00299038
+963.48	0.00299016
+963.6	0.00298994
+963.72	0.00298972
+963.84	0.0029895
+963.96	0.00298928
+964.08	0.00298906
+964.2	0.00298884
+964.32	0.00298862
+964.44	0.0029884
+964.56	0.00298818
+964.68	0.00298796
+964.8	0.00298774
+964.92	0.00298752
+965.04	0.00298731
+965.16	0.00298709
+965.28	0.00298687
+965.4	0.00298665
+965.52	0.00298643
+965.64	0.00298621
+965.76	0.00298599
+965.88	0.00298577
+966	0.00298555
+966.12	0.00298533
+966.24	0.00298511
+966.36	0.00298489
+966.48	0.00298468
+966.6	0.00298446
+966.72	0.00298424
+966.84	0.00298402
+966.96	0.0029838
+967.08	0.00298358
+967.2	0.00298336
+967.32	0.00298314
+967.44	0.00298293
+967.56	0.00298271
+967.68	0.00298249
+967.8	0.00298227
+967.92	0.00298205
+968.04	0.00298184
+968.16	0.00298162
+968.28	0.0029814
+968.4	0.00298118
+968.52	0.00298096
+968.64	0.00298075
+968.76	0.00298053
+968.88	0.00298031
+969	0.00298009
+969.12	0.00297987
+969.24	0.00297966
+969.36	0.00297944
+969.48	0.00297922
+969.6	0.002979
+969.72	0.00297879
+969.84	0.00297857
+969.96	0.00297835
+970.08	0.00297813
+970.2	0.00297792
+970.32	0.0029777
+970.44	0.00297748
+970.56	0.00297727
+970.68	0.00297705
+970.8	0.00297683
+970.92	0.00297661
+971.04	0.0029764
+971.16	0.00297618
+971.28	0.00297596
+971.4	0.00297575
+971.52	0.00297553
+971.64	0.00297531
+971.76	0.0029751
+971.88	0.00297488
+972	0.00297467
+972.12	0.00297445
+972.24	0.00297423
+972.36	0.00297402
+972.48	0.0029738
+972.6	0.00297358
+972.72	0.00297337
+972.84	0.00297315
+972.96	0.00297294
+973.08	0.00297272
+973.2	0.0029725
+973.32	0.00297229
+973.44	0.00297207
+973.56	0.00297186
+973.68	0.00297164
+973.8	0.00297142
+973.92	0.00297121
+974.04	0.00297099
+974.16	0.00297078
+974.28	0.00297056
+974.4	0.00297035
+974.52	0.00297013
+974.64	0.00296992
+974.76	0.0029697
+974.88	0.00296949
+975	0.00296927
+975.12	0.00296906
+975.24	0.00296884
+975.36	0.00296863
+975.48	0.00296841
+975.6	0.0029682
+975.72	0.00296798
+975.84	0.00296777
+975.96	0.00296755
+976.08	0.00296734
+976.2	0.00296712
+976.32	0.00296691
+976.44	0.00296669
+976.56	0.00296648
+976.68	0.00296626
+976.8	0.00296605
+976.92	0.00296584
+977.04	0.00296562
+977.16	0.00296541
+977.28	0.00296519
+977.4	0.00296498
+977.52	0.00296476
+977.64	0.00296455
+977.76	0.00296434
+977.88	0.00296412
+978	0.00296391
+978.12	0.0029637
+978.24	0.00296348
+978.36	0.00296327
+978.48	0.00296305
+978.6	0.00296284
+978.72	0.00296263
+978.84	0.00296241
+978.96	0.0029622
+979.08	0.00296199
+979.2	0.00296177
+979.32	0.00296156
+979.44	0.00296135
+979.56	0.00296113
+979.68	0.00296092
+979.8	0.00296071
+979.92	0.00296049
+980.04	0.00296028
+980.16	0.00296007
+980.28	0.00295986
+980.4	0.00295964
+980.52	0.00295943
+980.64	0.00295922
+980.76	0.002959
+980.88	0.00295879
+981	0.00295858
+981.12	0.00295837
+981.24	0.00295815
+981.36	0.00295794
+981.48	0.00295773
+981.6	0.00295752
+981.72	0.0029573
+981.84	0.00295709
+981.96	0.00295688
+982.08	0.00295667
+982.2	0.00295646
+982.32	0.00295624
+982.44	0.00295603
+982.56	0.00295582
+982.68	0.00295561
+982.8	0.0029554
+982.92	0.00295518
+983.04	0.00295497
+983.16	0.00295476
+983.28	0.00295455
+983.4	0.00295434
+983.52	0.00295413
+983.64	0.00295392
+983.76	0.0029537
+983.88	0.00295349
+984	0.00295328
+984.12	0.00295307
+984.24	0.00295286
+984.36	0.00295265
+984.48	0.00295244
+984.6	0.00295223
+984.72	0.00295201
+984.84	0.0029518
+984.96	0.00295159
+985.08	0.00295138
+985.2	0.00295117
+985.32	0.00295096
+985.44	0.00295075
+985.56	0.00295054
+985.68	0.00295033
+985.8	0.00295012
+985.92	0.00294991
+986.04	0.0029497
+986.16	0.00294949
+986.28	0.00294928
+986.4	0.00294907
+986.52	0.00294886
+986.64	0.00294864
+986.76	0.00294843
+986.88	0.00294822
+987	0.00294801
+987.12	0.0029478
+987.24	0.00294759
+987.36	0.00294738
+987.48	0.00294717
+987.6	0.00294696
+987.72	0.00294676
+987.84	0.00294655
+987.96	0.00294634
+988.08	0.00294613
+988.2	0.00294592
+988.32	0.00294571
+988.44	0.0029455
+988.56	0.00294529
+988.68	0.00294508
+988.8	0.00294487
+988.92	0.00294466
+989.04	0.00294445
+989.16	0.00294424
+989.28	0.00294403
+989.4	0.00294382
+989.52	0.00294361
+989.64	0.00294341
+989.76	0.0029432
+989.88	0.00294299
+990	0.00294278
+990.12	0.00294257
+990.24	0.00294236
+990.36	0.00294215
+990.48	0.00294194
+990.6	0.00294174
+990.72	0.00294153
+990.84	0.00294132
+990.96	0.00294111
+991.08	0.0029409
+991.2	0.00294069
+991.32	0.00294049
+991.44	0.00294028
+991.56	0.00294007
+991.68	0.00293986
+991.8	0.00293965
+991.92	0.00293944
+992.04	0.00293924
+992.16	0.00293903
+992.28	0.00293882
+992.4	0.00293861
+992.52	0.00293841
+992.64	0.0029382
+992.76	0.00293799
+992.88	0.00293778
+993	0.00293757
+993.12	0.00293737
+993.24	0.00293716
+993.36	0.00293695
+993.48	0.00293674
+993.6	0.00293654
+993.72	0.00293633
+993.84	0.00293612
+993.96	0.00293592
+994.08	0.00293571
+994.2	0.0029355
+994.32	0.00293529
+994.44	0.00293509
+994.56	0.00293488
+994.68	0.00293467
+994.8	0.00293447
+994.92	0.00293426
+995.04	0.00293405
+995.16	0.00293385
+995.28	0.00293364
+995.4	0.00293343
+995.52	0.00293323
+995.64	0.00293302
+995.76	0.00293281
+995.88	0.00293261
+996	0.0029324
+996.12	0.00293219
+996.24	0.00293199
+996.36	0.00293178
+996.48	0.00293158
+996.6	0.00293137
+996.72	0.00293116
+996.84	0.00293096
+996.96	0.00293075
+997.08	0.00293055
+997.2	0.00293034
+997.32	0.00293013
+997.44	0.00292993
+997.56	0.00292972
+997.68	0.00292952
+997.8	0.00292931
+997.92	0.00292911
+998.04	0.0029289
+998.16	0.00292869
+998.28	0.00292849
+998.4	0.00292828
+998.52	0.00292808
+998.64	0.00292787
+998.76	0.00292767
+998.88	0.00292746
+999	0.00292726
+999.12	0.00292705
+999.24	0.00292685
+999.36	0.00292664
+999.48	0.00292644
+999.6	0.00292623
+999.72	0.00292603
+999.84	0.00292582
+999.96	0.00292562
+1000.08	0.00292541
+1000.2	0.00292521
+1000.32	0.002925
+1000.44	0.0029248
+1000.56	0.00292459
+1000.68	0.00292439
+1000.8	0.00292419
+1000.92	0.00292398
+1001.04	0.00292378
+1001.16	0.00292357
+1001.28	0.00292337
+1001.4	0.00292316
+1001.52	0.00292296
+1001.64	0.00292276
+1001.76	0.00292255
+1001.88	0.00292235
+1002	0.00292214
+1002.12	0.00292194
+1002.24	0.00292174
+1002.36	0.00292153
+1002.48	0.00292133
+1002.6	0.00292112
+1002.72	0.00292092
+1002.84	0.00292072
+1002.96	0.00292051
+1003.08	0.00292031
+1003.2	0.00292011
+1003.32	0.0029199
+1003.44	0.0029197
+1003.56	0.0029195
+1003.68	0.00291929
+1003.8	0.00291909
+1003.92	0.00291889
+1004.04	0.00291868
+1004.16	0.00291848
+1004.28	0.00291828
+1004.4	0.00291807
+1004.52	0.00291787
+1004.64	0.00291767
+1004.76	0.00291747
+1004.88	0.00291726
+1005	0.00291706
+1005.12	0.00291686
+1005.24	0.00291665
+1005.36	0.00291645
+1005.48	0.00291625
+1005.6	0.00291605
+1005.72	0.00291584
+1005.84	0.00291564
+1005.96	0.00291544
+1006.08	0.00291524
+1006.2	0.00291503
+1006.32	0.00291483
+1006.44	0.00291463
+1006.56	0.00291443
+1006.68	0.00291423
+1006.8	0.00291402
+1006.92	0.00291382
+1007.04	0.00291362
+1007.16	0.00291342
+1007.28	0.00291322
+1007.4	0.00291301
+1007.52	0.00291281
+1007.64	0.00291261
+1007.76	0.00291241
+1007.88	0.00291221
+1008	0.00291201
+1008.12	0.0029118
+1008.24	0.0029116
+1008.36	0.0029114
+1008.48	0.0029112
+1008.6	0.002911
+1008.72	0.0029108
+1008.84	0.0029106
+1008.96	0.00291039
+1009.08	0.00291019
+1009.2	0.00290999
+1009.32	0.00290979
+1009.44	0.00290959
+1009.56	0.00290939
+1009.68	0.00290919
+1009.8	0.00290899
+1009.92	0.00290879
+1010.04	0.00290859
+1010.16	0.00290839
+1010.28	0.00290818
+1010.4	0.00290798
+1010.52	0.00290778
+1010.64	0.00290758
+1010.76	0.00290738
+1010.88	0.00290718
+1011	0.00290698
+1011.12	0.00290678
+1011.24	0.00290658
+1011.36	0.00290638
+1011.48	0.00290618
+1011.6	0.00290598
+1011.72	0.00290578
+1011.84	0.00290558
+1011.96	0.00290538
+1012.08	0.00290518
+1012.2	0.00290498
+1012.32	0.00290478
+1012.44	0.00290458
+1012.56	0.00290438
+1012.68	0.00290418
+1012.8	0.00290398
+1012.92	0.00290378
+1013.04	0.00290358
+1013.16	0.00290338
+1013.28	0.00290318
+1013.4	0.00290298
+1013.52	0.00290278
+1013.64	0.00290258
+1013.76	0.00290238
+1013.88	0.00290219
+1014	0.00290199
+1014.12	0.00290179
+1014.24	0.00290159
+1014.36	0.00290139
+1014.48	0.00290119
+1014.6	0.00290099
+1014.72	0.00290079
+1014.84	0.00290059
+1014.96	0.00290039
+1015.08	0.00290019
+1015.2	0.0029
+1015.32	0.0028998
+1015.44	0.0028996
+1015.56	0.0028994
+1015.68	0.0028992
+1015.8	0.002899
+1015.92	0.0028988
+1016.04	0.00289861
+1016.16	0.00289841
+1016.28	0.00289821
+1016.4	0.00289801
+1016.52	0.00289781
+1016.64	0.00289761
+1016.76	0.00289742
+1016.88	0.00289722
+1017	0.00289702
+1017.12	0.00289682
+1017.24	0.00289662
+1017.36	0.00289642
+1017.48	0.00289623
+1017.6	0.00289603
+1017.72	0.00289583
+1017.84	0.00289563
+1017.96	0.00289544
+1018.08	0.00289524
+1018.2	0.00289504
+1018.32	0.00289484
+1018.44	0.00289465
+1018.56	0.00289445
+1018.68	0.00289425
+1018.8	0.00289405
+1018.92	0.00289386
+1019.04	0.00289366
+1019.16	0.00289346
+1019.28	0.00289326
+1019.4	0.00289307
+1019.52	0.00289287
+1019.64	0.00289267
+1019.76	0.00289247
+1019.88	0.00289228
+1020	0.00289208
+1020.12	0.00289188
+1020.24	0.00289169
+1020.36	0.00289149
+1020.48	0.00289129
+1020.6	0.0028911
+1020.72	0.0028909
+1020.84	0.0028907
+1020.96	0.00289051
+1021.08	0.00289031
+1021.2	0.00289011
+1021.32	0.00288992
+1021.44	0.00288972
+1021.56	0.00288952
+1021.68	0.00288933
+1021.8	0.00288913
+1021.92	0.00288894
+1022.04	0.00288874
+1022.16	0.00288854
+1022.28	0.00288835
+1022.4	0.00288815
+1022.52	0.00288795
+1022.64	0.00288776
+1022.76	0.00288756
+1022.88	0.00288737
+1023	0.00288717
+1023.12	0.00288698
+1023.24	0.00288678
+1023.36	0.00288658
+1023.48	0.00288639
+1023.6	0.00288619
+1023.72	0.002886
+1023.84	0.0028858
+1023.96	0.00288561
+1024.08	0.00288541
+1024.2	0.00288522
+1024.32	0.00288502
+1024.44	0.00288482
+1024.56	0.00288463
+1024.68	0.00288443
+1024.8	0.00288424
+1024.92	0.00288404
+1025.04	0.00288385
+1025.16	0.00288365
+1025.28	0.00288346
+1025.4	0.00288326
+1025.52	0.00288307
+1025.64	0.00288287
+1025.76	0.00288268
+1025.88	0.00288248
+1026	0.00288229
+1026.12	0.00288209
+1026.24	0.0028819
+1026.36	0.00288171
+1026.48	0.00288151
+1026.6	0.00288132
+1026.72	0.00288112
+1026.84	0.00288093
+1026.96	0.00288073
+1027.08	0.00288054
+1027.2	0.00288034
+1027.32	0.00288015
+1027.44	0.00287996
+1027.56	0.00287976
+1027.68	0.00287957
+1027.8	0.00287937
+1027.92	0.00287918
+1028.04	0.00287899
+1028.16	0.00287879
+1028.28	0.0028786
+1028.4	0.0028784
+1028.52	0.00287821
+1028.64	0.00287802
+1028.76	0.00287782
+1028.88	0.00287763
+1029	0.00287744
+1029.12	0.00287724
+1029.24	0.00287705
+1029.36	0.00287686
+1029.48	0.00287666
+1029.6	0.00287647
+1029.72	0.00287628
+1029.84	0.00287608
+1029.96	0.00287589
+1030.08	0.0028757
+1030.2	0.0028755
+1030.32	0.00287531
+1030.44	0.00287512
+1030.56	0.00287492
+1030.68	0.00287473
+1030.8	0.00287454
+1030.92	0.00287434
+1031.04	0.00287415
+1031.16	0.00287396
+1031.28	0.00287377
+1031.4	0.00287357
+1031.52	0.00287338
+1031.64	0.00287319
+1031.76	0.00287299
+1031.88	0.0028728
+1032	0.00287261
+1032.12	0.00287242
+1032.24	0.00287222
+1032.36	0.00287203
+1032.48	0.00287184
+1032.6	0.00287165
+1032.72	0.00287146
+1032.84	0.00287126
+1032.96	0.00287107
+1033.08	0.00287088
+1033.2	0.00287069
+1033.32	0.00287049
+1033.44	0.0028703
+1033.56	0.00287011
+1033.68	0.00286992
+1033.8	0.00286973
+1033.92	0.00286954
+1034.04	0.00286934
+1034.16	0.00286915
+1034.28	0.00286896
+1034.4	0.00286877
+1034.52	0.00286858
+1034.64	0.00286839
+1034.76	0.00286819
+1034.88	0.002868
+1035	0.00286781
+1035.12	0.00286762
+1035.24	0.00286743
+1035.36	0.00286724
+1035.48	0.00286705
+1035.6	0.00286685
+1035.72	0.00286666
+1035.84	0.00286647
+1035.96	0.00286628
+1036.08	0.00286609
+1036.2	0.0028659
+1036.32	0.00286571
+1036.44	0.00286552
+1036.56	0.00286533
+1036.68	0.00286514
+1036.8	0.00286494
+1036.92	0.00286475
+1037.04	0.00286456
+1037.16	0.00286437
+1037.28	0.00286418
+1037.4	0.00286399
+1037.52	0.0028638
+1037.64	0.00286361
+1037.76	0.00286342
+1037.88	0.00286323
+1038	0.00286304
+1038.12	0.00286285
+1038.24	0.00286266
+1038.36	0.00286247
+1038.48	0.00286228
+1038.6	0.00286209
+1038.72	0.0028619
+1038.84	0.00286171
+1038.96	0.00286152
+1039.08	0.00286133
+1039.2	0.00286114
+1039.32	0.00286095
+1039.44	0.00286076
+1039.56	0.00286057
+1039.68	0.00286038
+1039.8	0.00286019
+1039.92	0.00286
+1040.04	0.00285981
+1040.16	0.00285962
+1040.28	0.00285943
+1040.4	0.00285924
+1040.52	0.00285905
+1040.64	0.00285886
+1040.76	0.00285867
+1040.88	0.00285848
+1041	0.0028583
+1041.12	0.00285811
+1041.24	0.00285792
+1041.36	0.00285773
+1041.48	0.00285754
+1041.6	0.00285735
+1041.72	0.00285716
+1041.84	0.00285697
+1041.96	0.00285678
+1042.08	0.00285659
+1042.2	0.0028564
+1042.32	0.00285622
+1042.44	0.00285603
+1042.56	0.00285584
+1042.68	0.00285565
+1042.8	0.00285546
+1042.92	0.00285527
+1043.04	0.00285508
+1043.16	0.0028549
+1043.28	0.00285471
+1043.4	0.00285452
+1043.52	0.00285433
+1043.64	0.00285414
+1043.76	0.00285395
+1043.88	0.00285377
+1044	0.00285358
+1044.12	0.00285339
+1044.24	0.0028532
+1044.36	0.00285301
+1044.48	0.00285282
+1044.6	0.00285264
+1044.72	0.00285245
+1044.84	0.00285226
+1044.96	0.00285207
+1045.08	0.00285189
+1045.2	0.0028517
+1045.32	0.00285151
+1045.44	0.00285132
+1045.56	0.00285113
+1045.68	0.00285095
+1045.8	0.00285076
+1045.92	0.00285057
+1046.04	0.00285038
+1046.16	0.0028502
+1046.28	0.00285001
+1046.4	0.00284982
+1046.52	0.00284963
+1046.64	0.00284945
+1046.76	0.00284926
+1046.88	0.00284907
+1047	0.00284889
+1047.12	0.0028487
+1047.24	0.00284851
+1047.36	0.00284832
+1047.48	0.00284814
+1047.6	0.00284795
+1047.72	0.00284776
+1047.84	0.00284758
+1047.96	0.00284739
+1048.08	0.0028472
+1048.2	0.00284702
+1048.32	0.00284683
+1048.44	0.00284664
+1048.56	0.00284646
+1048.68	0.00284627
+1048.8	0.00284608
+1048.92	0.0028459
+1049.04	0.00284571
+1049.16	0.00284552
+1049.28	0.00284534
+1049.4	0.00284515
+1049.52	0.00284497
+1049.64	0.00284478
+1049.76	0.00284459
+1049.88	0.00284441
+1050	0.00284422
+1050.12	0.00284404
+1050.24	0.00284385
+1050.36	0.00284366
+1050.48	0.00284348
+1050.6	0.00284329
+1050.72	0.00284311
+1050.84	0.00284292
+1050.96	0.00284273
+1051.08	0.00284255
+1051.2	0.00284236
+1051.32	0.00284218
+1051.44	0.00284199
+1051.56	0.00284181
+1051.68	0.00284162
+1051.8	0.00284143
+1051.92	0.00284125
+1052.04	0.00284106
+1052.16	0.00284088
+1052.28	0.00284069
+1052.4	0.00284051
+1052.52	0.00284032
+1052.64	0.00284014
+1052.76	0.00283995
+1052.88	0.00283977
+1053	0.00283958
+1053.12	0.0028394
+1053.24	0.00283921
+1053.36	0.00283903
+1053.48	0.00283884
+1053.6	0.00283866
+1053.72	0.00283847
+1053.84	0.00283829
+1053.96	0.0028381
+1054.08	0.00283792
+1054.2	0.00283773
+1054.32	0.00283755
+1054.44	0.00283736
+1054.56	0.00283718
+1054.68	0.002837
+1054.8	0.00283681
+1054.92	0.00283663
+1055.04	0.00283644
+1055.16	0.00283626
+1055.28	0.00283607
+1055.4	0.00283589
+1055.52	0.00283571
+1055.64	0.00283552
+1055.76	0.00283534
+1055.88	0.00283515
+1056	0.00283497
+1056.12	0.00283479
+1056.24	0.0028346
+1056.36	0.00283442
+1056.48	0.00283423
+1056.6	0.00283405
+1056.72	0.00283387
+1056.84	0.00283368
+1056.96	0.0028335
+1057.08	0.00283332
+1057.2	0.00283313
+1057.32	0.00283295
+1057.44	0.00283276
+1057.56	0.00283258
+1057.68	0.0028324
+1057.8	0.00283221
+1057.92	0.00283203
+1058.04	0.00283185
+1058.16	0.00283166
+1058.28	0.00283148
+1058.4	0.0028313
+1058.52	0.00283111
+1058.64	0.00283093
+1058.76	0.00283075
+1058.88	0.00283057
+1059	0.00283038
+1059.12	0.0028302
+1059.24	0.00283002
+1059.36	0.00282983
+1059.48	0.00282965
+1059.6	0.00282947
+1059.72	0.00282928
+1059.84	0.0028291
+1059.96	0.00282892
+1060.08	0.00282874
+1060.2	0.00282855
+1060.32	0.00282837
+1060.44	0.00282819
+1060.56	0.00282801
+1060.68	0.00282782
+1060.8	0.00282764
+1060.92	0.00282746
+1061.04	0.00282728
+1061.16	0.0028271
+1061.28	0.00282691
+1061.4	0.00282673
+1061.52	0.00282655
+1061.64	0.00282637
+1061.76	0.00282618
+1061.88	0.002826
+1062	0.00282582
+1062.12	0.00282564
+1062.24	0.00282546
+1062.36	0.00282527
+1062.48	0.00282509
+1062.6	0.00282491
+1062.72	0.00282473
+1062.84	0.00282455
+1062.96	0.00282437
+1063.08	0.00282418
+1063.2	0.002824
+1063.32	0.00282382
+1063.44	0.00282364
+1063.56	0.00282346
+1063.68	0.00282328
+1063.8	0.0028231
+1063.92	0.00282291
+1064.04	0.00282273
+1064.16	0.00282255
+1064.28	0.00282237
+1064.4	0.00282219
+1064.52	0.00282201
+1064.64	0.00282183
+1064.76	0.00282165
+1064.88	0.00282146
+1065	0.00282128
+1065.12	0.0028211
+1065.24	0.00282092
+1065.36	0.00282074
+1065.48	0.00282056
+1065.6	0.00282038
+1065.72	0.0028202
+1065.84	0.00282002
+1065.96	0.00281984
+1066.08	0.00281966
+1066.2	0.00281948
+1066.32	0.0028193
+1066.44	0.00281912
+1066.56	0.00281893
+1066.68	0.00281875
+1066.8	0.00281857
+1066.92	0.00281839
+1067.04	0.00281821
+1067.16	0.00281803
+1067.28	0.00281785
+1067.4	0.00281767
+1067.52	0.00281749
+1067.64	0.00281731
+1067.76	0.00281713
+1067.88	0.00281695
+1068	0.00281677
+1068.12	0.00281659
+1068.24	0.00281641
+1068.36	0.00281623
+1068.48	0.00281605
+1068.6	0.00281587
+1068.72	0.00281569
+1068.84	0.00281551
+1068.96	0.00281533
+1069.08	0.00281515
+1069.2	0.00281497
+1069.32	0.00281479
+1069.44	0.00281462
+1069.56	0.00281444
+1069.68	0.00281426
+1069.8	0.00281408
+1069.92	0.0028139
+1070.04	0.00281372
+1070.16	0.00281354
+1070.28	0.00281336
+1070.4	0.00281318
+1070.52	0.002813
+1070.64	0.00281282
+1070.76	0.00281264
+1070.88	0.00281246
+1071	0.00281229
+1071.12	0.00281211
+1071.24	0.00281193
+1071.36	0.00281175
+1071.48	0.00281157
+1071.6	0.00281139
+1071.72	0.00281121
+1071.84	0.00281103
+1071.96	0.00281085
+1072.08	0.00281068
+1072.2	0.0028105
+1072.32	0.00281032
+1072.44	0.00281014
+1072.56	0.00280996
+1072.68	0.00280978
+1072.8	0.00280961
+1072.92	0.00280943
+1073.04	0.00280925
+1073.16	0.00280907
+1073.28	0.00280889
+1073.4	0.00280871
+1073.52	0.00280854
+1073.64	0.00280836
+1073.76	0.00280818
+1073.88	0.002808
+1074	0.00280782
+1074.12	0.00280765
+1074.24	0.00280747
+1074.36	0.00280729
+1074.48	0.00280711
+1074.6	0.00280693
+1074.72	0.00280676
+1074.84	0.00280658
+1074.96	0.0028064
+1075.08	0.00280622
+1075.2	0.00280605
+1075.32	0.00280587
+1075.44	0.00280569
+1075.56	0.00280551
+1075.68	0.00280534
+1075.8	0.00280516
+1075.92	0.00280498
+1076.04	0.0028048
+1076.16	0.00280463
+1076.28	0.00280445
+1076.4	0.00280427
+1076.52	0.00280409
+1076.64	0.00280392
+1076.76	0.00280374
+1076.88	0.00280356
+1077	0.00280339
+1077.12	0.00280321
+1077.24	0.00280303
+1077.36	0.00280285
+1077.48	0.00280268
+1077.6	0.0028025
+1077.72	0.00280232
+1077.84	0.00280215
+1077.96	0.00280197
+1078.08	0.00280179
+1078.2	0.00280162
+1078.32	0.00280144
+1078.44	0.00280126
+1078.56	0.00280109
+1078.68	0.00280091
+1078.8	0.00280073
+1078.92	0.00280056
+1079.04	0.00280038
+1079.16	0.00280021
+1079.28	0.00280003
+1079.4	0.00279985
+1079.52	0.00279968
+1079.64	0.0027995
+1079.76	0.00279932
+1079.88	0.00279915
+1080	0.00279897
+1080.12	0.0027988
+1080.24	0.00279862
+1080.36	0.00279844
+1080.48	0.00279827
+1080.6	0.00279809
+1080.72	0.00279792
+1080.84	0.00279774
+1080.96	0.00279757
+1081.08	0.00279739
+1081.2	0.00279721
+1081.32	0.00279704
+1081.44	0.00279686
+1081.56	0.00279669
+1081.68	0.00279651
+1081.8	0.00279634
+1081.92	0.00279616
+1082.04	0.00279599
+1082.16	0.00279581
+1082.28	0.00279563
+1082.4	0.00279546
+1082.52	0.00279528
+1082.64	0.00279511
+1082.76	0.00279493
+1082.88	0.00279476
+1083	0.00279458
+1083.12	0.00279441
+1083.24	0.00279423
+1083.36	0.00279406
+1083.48	0.00279388
+1083.6	0.00279371
+1083.72	0.00279353
+1083.84	0.00279336
+1083.96	0.00279318
+1084.08	0.00279301
+1084.2	0.00279283
+1084.32	0.00279266
+1084.44	0.00279248
+1084.56	0.00279231
+1084.68	0.00279214
+1084.8	0.00279196
+1084.92	0.00279179
+1085.04	0.00279161
+1085.16	0.00279144
+1085.28	0.00279126
+1085.4	0.00279109
+1085.52	0.00279091
+1085.64	0.00279074
+1085.76	0.00279057
+1085.88	0.00279039
+1086	0.00279022
+1086.12	0.00279004
+1086.24	0.00278987
+1086.36	0.0027897
+1086.48	0.00278952
+1086.6	0.00278935
+1086.72	0.00278917
+1086.84	0.002789
+1086.96	0.00278883
+1087.08	0.00278865
+1087.2	0.00278848
+1087.32	0.0027883
+1087.44	0.00278813
+1087.56	0.00278796
+1087.68	0.00278778
+1087.8	0.00278761
+1087.92	0.00278744
+1088.04	0.00278726
+1088.16	0.00278709
+1088.28	0.00278692
+1088.4	0.00278674
+1088.52	0.00278657
+1088.64	0.0027864
+1088.76	0.00278622
+1088.88	0.00278605
+1089	0.00278588
+1089.12	0.0027857
+1089.24	0.00278553
+1089.36	0.00278536
+1089.48	0.00278518
+1089.6	0.00278501
+1089.72	0.00278484
+1089.84	0.00278466
+1089.96	0.00278449
+1090.08	0.00278432
+1090.2	0.00278415
+1090.32	0.00278397
+1090.44	0.0027838
+1090.56	0.00278363
+1090.68	0.00278346
+1090.8	0.00278328
+1090.92	0.00278311
+1091.04	0.00278294
+1091.16	0.00278276
+1091.28	0.00278259
+1091.4	0.00278242
+1091.52	0.00278225
+1091.64	0.00278207
+1091.76	0.0027819
+1091.88	0.00278173
+1092	0.00278156
+1092.12	0.00278139
+1092.24	0.00278121
+1092.36	0.00278104
+1092.48	0.00278087
+1092.6	0.0027807
+1092.72	0.00278052
+1092.84	0.00278035
+1092.96	0.00278018
+1093.08	0.00278001
+1093.2	0.00277984
+1093.32	0.00277967
+1093.44	0.00277949
+1093.56	0.00277932
+1093.68	0.00277915
+1093.8	0.00277898
+1093.92	0.00277881
+1094.04	0.00277863
+1094.16	0.00277846
+1094.28	0.00277829
+1094.4	0.00277812
+1094.52	0.00277795
+1094.64	0.00277778
+1094.76	0.00277761
+1094.88	0.00277743
+1095	0.00277726
+1095.12	0.00277709
+1095.24	0.00277692
+1095.36	0.00277675
+1095.48	0.00277658
+1095.6	0.00277641
+1095.72	0.00277624
+1095.84	0.00277606
+1095.96	0.00277589
+1096.08	0.00277572
+1096.2	0.00277555
+1096.32	0.00277538
+1096.44	0.00277521
+1096.56	0.00277504
+1096.68	0.00277487
+1096.8	0.0027747
+1096.92	0.00277453
+1097.04	0.00277436
+1097.16	0.00277418
+1097.28	0.00277401
+1097.4	0.00277384
+1097.52	0.00277367
+1097.64	0.0027735
+1097.76	0.00277333
+1097.88	0.00277316
+1098	0.00277299
+1098.12	0.00277282
+1098.24	0.00277265
+1098.36	0.00277248
+1098.48	0.00277231
+1098.6	0.00277214
+1098.72	0.00277197
+1098.84	0.0027718
+1098.96	0.00277163
+1099.08	0.00277146
+1099.2	0.00277129
+1099.32	0.00277112
+1099.44	0.00277095
+1099.56	0.00277078
+1099.68	0.00277061
+1099.8	0.00277044
+1099.92	0.00277027
+1100.04	0.0027701
+1100.16	0.00276993
+1100.28	0.00276976
+1100.4	0.00276959
+1100.52	0.00276942
+1100.64	0.00276925
+1100.76	0.00276908
+1100.88	0.00276891
+1101	0.00276874
+1101.12	0.00276857
+1101.24	0.0027684
+1101.36	0.00276823
+1101.48	0.00276806
+1101.6	0.0027679
+1101.72	0.00276773
+1101.84	0.00276756
+1101.96	0.00276739
+1102.08	0.00276722
+1102.2	0.00276705
+1102.32	0.00276688
+1102.44	0.00276671
+1102.56	0.00276654
+1102.68	0.00276637
+1102.8	0.0027662
+1102.92	0.00276603
+1103.04	0.00276587
+1103.16	0.0027657
+1103.28	0.00276553
+1103.4	0.00276536
+1103.52	0.00276519
+1103.64	0.00276502
+1103.76	0.00276485
+1103.88	0.00276468
+1104	0.00276452
+1104.12	0.00276435
+1104.24	0.00276418
+1104.36	0.00276401
+1104.48	0.00276384
+1104.6	0.00276367
+1104.72	0.00276351
+1104.84	0.00276334
+1104.96	0.00276317
+1105.08	0.002763
+1105.2	0.00276283
+1105.32	0.00276266
+1105.44	0.0027625
+1105.56	0.00276233
+1105.68	0.00276216
+1105.8	0.00276199
+1105.92	0.00276182
+1106.04	0.00276166
+1106.16	0.00276149
+1106.28	0.00276132
+1106.4	0.00276115
+1106.52	0.00276098
+1106.64	0.00276082
+1106.76	0.00276065
+1106.88	0.00276048
+1107	0.00276031
+1107.12	0.00276014
+1107.24	0.00275998
+1107.36	0.00275981
+1107.48	0.00275964
+1107.6	0.00275947
+1107.72	0.00275931
+1107.84	0.00275914
+1107.96	0.00275897
+1108.08	0.0027588
+1108.2	0.00275864
+1108.32	0.00275847
+1108.44	0.0027583
+1108.56	0.00275814
+1108.68	0.00275797
+1108.8	0.0027578
+1108.92	0.00275763
+1109.04	0.00275747
+1109.16	0.0027573
+1109.28	0.00275713
+1109.4	0.00275697
+1109.52	0.0027568
+1109.64	0.00275663
+1109.76	0.00275647
+1109.88	0.0027563
+1110	0.00275613
+1110.12	0.00275596
+1110.24	0.0027558
+1110.36	0.00275563
+1110.48	0.00275546
+1110.6	0.0027553
+1110.72	0.00275513
+1110.84	0.00275496
+1110.96	0.0027548
+1111.08	0.00275463
+1111.2	0.00275447
+1111.32	0.0027543
+1111.44	0.00275413
+1111.56	0.00275397
+1111.68	0.0027538
+1111.8	0.00275363
+1111.92	0.00275347
+1112.04	0.0027533
+1112.16	0.00275313
+1112.28	0.00275297
+1112.4	0.0027528
+1112.52	0.00275264
+1112.64	0.00275247
+1112.76	0.0027523
+1112.88	0.00275214
+1113	0.00275197
+1113.12	0.00275181
+1113.24	0.00275164
+1113.36	0.00275147
+1113.48	0.00275131
+1113.6	0.00275114
+1113.72	0.00275098
+1113.84	0.00275081
+1113.96	0.00275065
+1114.08	0.00275048
+1114.2	0.00275032
+1114.32	0.00275015
+1114.44	0.00274998
+1114.56	0.00274982
+1114.68	0.00274965
+1114.8	0.00274949
+1114.92	0.00274932
+1115.04	0.00274916
+1115.16	0.00274899
+1115.28	0.00274883
+1115.4	0.00274866
+1115.52	0.0027485
+1115.64	0.00274833
+1115.76	0.00274817
+1115.88	0.002748
+1116	0.00274784
+1116.12	0.00274767
+1116.24	0.00274751
+1116.36	0.00274734
+1116.48	0.00274718
+1116.6	0.00274701
+1116.72	0.00274685
+1116.84	0.00274668
+1116.96	0.00274652
+1117.08	0.00274635
+1117.2	0.00274619
+1117.32	0.00274602
+1117.44	0.00274586
+1117.56	0.00274569
+1117.68	0.00274553
+1117.8	0.00274536
+1117.92	0.0027452
+1118.04	0.00274504
+1118.16	0.00274487
+1118.28	0.00274471
+1118.4	0.00274454
+1118.52	0.00274438
+1118.64	0.00274421
+1118.76	0.00274405
+1118.88	0.00274388
+1119	0.00274372
+1119.12	0.00274356
+1119.24	0.00274339
+1119.36	0.00274323
+1119.48	0.00274306
+1119.6	0.0027429
+1119.72	0.00274274
+1119.84	0.00274257
+1119.96	0.00274241
+1120.08	0.00274224
+1120.2	0.00274208
+1120.32	0.00274192
+1120.44	0.00274175
+1120.56	0.00274159
+1120.68	0.00274143
+1120.8	0.00274126
+1120.92	0.0027411
+1121.04	0.00274093
+1121.16	0.00274077
+1121.28	0.00274061
+1121.4	0.00274044
+1121.52	0.00274028
+1121.64	0.00274012
+1121.76	0.00273995
+1121.88	0.00273979
+1122	0.00273963
+1122.12	0.00273946
+1122.24	0.0027393
+1122.36	0.00273914
+1122.48	0.00273897
+1122.6	0.00273881
+1122.72	0.00273865
+1122.84	0.00273849
+1122.96	0.00273832
+1123.08	0.00273816
+1123.2	0.002738
+1123.32	0.00273783
+1123.44	0.00273767
+1123.56	0.00273751
+1123.68	0.00273734
+1123.8	0.00273718
+1123.92	0.00273702
+1124.04	0.00273686
+1124.16	0.00273669
+1124.28	0.00273653
+1124.4	0.00273637
+1124.52	0.00273621
+1124.64	0.00273604
+1124.76	0.00273588
+1124.88	0.00273572
+1125	0.00273556
+1125.12	0.00273539
+1125.24	0.00273523
+1125.36	0.00273507
+1125.48	0.00273491
+1125.6	0.00273474
+1125.72	0.00273458
+1125.84	0.00273442
+1125.96	0.00273426
+1126.08	0.0027341
+1126.2	0.00273393
+1126.32	0.00273377
+1126.44	0.00273361
+1126.56	0.00273345
+1126.68	0.00273328
+1126.8	0.00273312
+1126.92	0.00273296
+1127.04	0.0027328
+1127.16	0.00273264
+1127.28	0.00273248
+1127.4	0.00273231
+1127.52	0.00273215
+1127.64	0.00273199
+1127.76	0.00273183
+1127.88	0.00273167
+1128	0.00273151
+1128.12	0.00273134
+1128.24	0.00273118
+1128.36	0.00273102
+1128.48	0.00273086
+1128.6	0.0027307
+1128.72	0.00273054
+1128.84	0.00273038
+1128.96	0.00273021
+1129.08	0.00273005
+1129.2	0.00272989
+1129.32	0.00272973
+1129.44	0.00272957
+1129.56	0.00272941
+1129.68	0.00272925
+1129.8	0.00272909
+1129.92	0.00272892
+1130.04	0.00272876
+1130.16	0.0027286
+1130.28	0.00272844
+1130.4	0.00272828
+1130.52	0.00272812
+1130.64	0.00272796
+1130.76	0.0027278
+1130.88	0.00272764
+1131	0.00272748
+1131.12	0.00272732
+1131.24	0.00272715
+1131.36	0.00272699
+1131.48	0.00272683
+1131.6	0.00272667
+1131.72	0.00272651
+1131.84	0.00272635
+1131.96	0.00272619
+1132.08	0.00272603
+1132.2	0.00272587
+1132.32	0.00272571
+1132.44	0.00272555
+1132.56	0.00272539
+1132.68	0.00272523
+1132.8	0.00272507
+1132.92	0.00272491
+1133.04	0.00272475
+1133.16	0.00272459
+1133.28	0.00272443
+1133.4	0.00272427
+1133.52	0.00272411
+1133.64	0.00272395
+1133.76	0.00272379
+1133.88	0.00272363
+1134	0.00272347
+1134.12	0.00272331
+1134.24	0.00272315
+1134.36	0.00272299
+1134.48	0.00272283
+1134.6	0.00272267
+1134.72	0.00272251
+1134.84	0.00272235
+1134.96	0.00272219
+1135.08	0.00272203
+1135.2	0.00272187
+1135.32	0.00272171
+1135.44	0.00272155
+1135.56	0.00272139
+1135.68	0.00272123
+1135.8	0.00272107
+1135.92	0.00272091
+1136.04	0.00272075
+1136.16	0.0027206
+1136.28	0.00272044
+1136.4	0.00272028
+1136.52	0.00272012
+1136.64	0.00271996
+1136.76	0.0027198
+1136.88	0.00271964
+1137	0.00271948
+1137.12	0.00271932
+1137.24	0.00271916
+1137.36	0.002719
+1137.48	0.00271885
+1137.6	0.00271869
+1137.72	0.00271853
+1137.84	0.00271837
+1137.96	0.00271821
+1138.08	0.00271805
+1138.2	0.00271789
+1138.32	0.00271773
+1138.44	0.00271757
+1138.56	0.00271742
+1138.68	0.00271726
+1138.8	0.0027171
+1138.92	0.00271694
+1139.04	0.00271678
+1139.16	0.00271662
+1139.28	0.00271646
+1139.4	0.00271631
+1139.52	0.00271615
+1139.64	0.00271599
+1139.76	0.00271583
+1139.88	0.00271567
+1140	0.00271551
+1140.12	0.00271536
+1140.24	0.0027152
+1140.36	0.00271504
+1140.48	0.00271488
+1140.6	0.00271472
+1140.72	0.00271457
+1140.84	0.00271441
+1140.96	0.00271425
+1141.08	0.00271409
+1141.2	0.00271393
+1141.32	0.00271378
+1141.44	0.00271362
+1141.56	0.00271346
+1141.68	0.0027133
+1141.8	0.00271314
+1141.92	0.00271299
+1142.04	0.00271283
+1142.16	0.00271267
+1142.28	0.00271251
+1142.4	0.00271236
+1142.52	0.0027122
+1142.64	0.00271204
+1142.76	0.00271188
+1142.88	0.00271173
+1143	0.00271157
+1143.12	0.00271141
+1143.24	0.00271125
+1143.36	0.0027111
+1143.48	0.00271094
+1143.6	0.00271078
+1143.72	0.00271063
+1143.84	0.00271047
+1143.96	0.00271031
+1144.08	0.00271015
+1144.2	0.00271
+1144.32	0.00270984
+1144.44	0.00270968
+1144.56	0.00270953
+1144.68	0.00270937
+1144.8	0.00270921
+1144.92	0.00270905
+1145.04	0.0027089
+1145.16	0.00270874
+1145.28	0.00270858
+1145.4	0.00270843
+1145.52	0.00270827
+1145.64	0.00270811
+1145.76	0.00270796
+1145.88	0.0027078
+1146	0.00270764
+1146.12	0.00270749
+1146.24	0.00270733
+1146.36	0.00270717
+1146.48	0.00270702
+1146.6	0.00270686
+1146.72	0.0027067
+1146.84	0.00270655
+1146.96	0.00270639
+1147.08	0.00270624
+1147.2	0.00270608
+1147.32	0.00270592
+1147.44	0.00270577
+1147.56	0.00270561
+1147.68	0.00270545
+1147.8	0.0027053
+1147.92	0.00270514
+1148.04	0.00270499
+1148.16	0.00270483
+1148.28	0.00270467
+1148.4	0.00270452
+1148.52	0.00270436
+1148.64	0.00270421
+1148.76	0.00270405
+1148.88	0.00270389
+1149	0.00270374
+1149.12	0.00270358
+1149.24	0.00270343
+1149.36	0.00270327
+1149.48	0.00270312
+1149.6	0.00270296
+1149.72	0.0027028
+1149.84	0.00270265
+1149.96	0.00270249
+1150.08	0.00270234
+1150.2	0.00270218
+1150.32	0.00270203
+1150.44	0.00270187
+1150.56	0.00270172
+1150.68	0.00270156
+1150.8	0.00270141
+1150.92	0.00270125
+1151.04	0.00270109
+1151.16	0.00270094
+1151.28	0.00270078
+1151.4	0.00270063
+1151.52	0.00270047
+1151.64	0.00270032
+1151.76	0.00270016
+1151.88	0.00270001
+1152	0.00269985
+1152.12	0.0026997
+1152.24	0.00269954
+1152.36	0.00269939
+1152.48	0.00269923
+1152.6	0.00269908
+1152.72	0.00269892
+1152.84	0.00269877
+1152.96	0.00269861
+1153.08	0.00269846
+1153.2	0.00269831
+1153.32	0.00269815
+1153.44	0.002698
+1153.56	0.00269784
+1153.68	0.00269769
+1153.8	0.00269753
+1153.92	0.00269738
+1154.04	0.00269722
+1154.16	0.00269707
+1154.28	0.00269691
+1154.4	0.00269676
+1154.52	0.00269661
+1154.64	0.00269645
+1154.76	0.0026963
+1154.88	0.00269614
+1155	0.00269599
+1155.12	0.00269583
+1155.24	0.00269568
+1155.36	0.00269553
+1155.48	0.00269537
+1155.6	0.00269522
+1155.72	0.00269506
+1155.84	0.00269491
+1155.96	0.00269476
+1156.08	0.0026946
+1156.2	0.00269445
+1156.32	0.00269429
+1156.44	0.00269414
+1156.56	0.00269399
+1156.68	0.00269383
+1156.8	0.00269368
+1156.92	0.00269353
+1157.04	0.00269337
+1157.16	0.00269322
+1157.28	0.00269306
+1157.4	0.00269291
+1157.52	0.00269276
+1157.64	0.0026926
+1157.76	0.00269245
+1157.88	0.0026923
+1158	0.00269214
+1158.12	0.00269199
+1158.24	0.00269184
+1158.36	0.00269168
+1158.48	0.00269153
+1158.6	0.00269138
+1158.72	0.00269122
+1158.84	0.00269107
+1158.96	0.00269092
+1159.08	0.00269076
+1159.2	0.00269061
+1159.32	0.00269046
+1159.44	0.0026903
+1159.56	0.00269015
+1159.68	0.00269
+1159.8	0.00268985
+1159.92	0.00268969
+1160.04	0.00268954
+1160.16	0.00268939
+1160.28	0.00268923
+1160.4	0.00268908
+1160.52	0.00268893
+1160.64	0.00268878
+1160.76	0.00268862
+1160.88	0.00268847
+1161	0.00268832
+1161.12	0.00268817
+1161.24	0.00268801
+1161.36	0.00268786
+1161.48	0.00268771
+1161.6	0.00268756
+1161.72	0.0026874
+1161.84	0.00268725
+1161.96	0.0026871
+1162.08	0.00268695
+1162.2	0.00268679
+1162.32	0.00268664
+1162.44	0.00268649
+1162.56	0.00268634
+1162.68	0.00268618
+1162.8	0.00268603
+1162.92	0.00268588
+1163.04	0.00268573
+1163.16	0.00268558
+1163.28	0.00268542
+1163.4	0.00268527
+1163.52	0.00268512
+1163.64	0.00268497
+1163.76	0.00268482
+1163.88	0.00268466
+1164	0.00268451
+1164.12	0.00268436
+1164.24	0.00268421
+1164.36	0.00268406
+1164.48	0.00268391
+1164.6	0.00268375
+1164.72	0.0026836
+1164.84	0.00268345
+1164.96	0.0026833
+1165.08	0.00268315
+1165.2	0.002683
+1165.32	0.00268284
+1165.44	0.00268269
+1165.56	0.00268254
+1165.68	0.00268239
+1165.8	0.00268224
+1165.92	0.00268209
+1166.04	0.00268194
+1166.16	0.00268178
+1166.28	0.00268163
+1166.4	0.00268148
+1166.52	0.00268133
+1166.64	0.00268118
+1166.76	0.00268103
+1166.88	0.00268088
+1167	0.00268073
+1167.12	0.00268057
+1167.24	0.00268042
+1167.36	0.00268027
+1167.48	0.00268012
+1167.6	0.00267997
+1167.72	0.00267982
+1167.84	0.00267967
+1167.96	0.00267952
+1168.08	0.00267937
+1168.2	0.00267922
+1168.32	0.00267907
+1168.44	0.00267891
+1168.56	0.00267876
+1168.68	0.00267861
+1168.8	0.00267846
+1168.92	0.00267831
+1169.04	0.00267816
+1169.16	0.00267801
+1169.28	0.00267786
+1169.4	0.00267771
+1169.52	0.00267756
+1169.64	0.00267741
+1169.76	0.00267726
+1169.88	0.00267711
+1170	0.00267696
+1170.12	0.00267681
+1170.24	0.00267666
+1170.36	0.00267651
+1170.48	0.00267636
+1170.6	0.00267621
+1170.72	0.00267606
+1170.84	0.00267591
+1170.96	0.00267576
+1171.08	0.00267561
+1171.2	0.00267546
+1171.32	0.00267531
+1171.44	0.00267516
+1171.56	0.00267501
+1171.68	0.00267486
+1171.8	0.00267471
+1171.92	0.00267456
+1172.04	0.00267441
+1172.16	0.00267426
+1172.28	0.00267411
+1172.4	0.00267396
+1172.52	0.00267381
+1172.64	0.00267366
+1172.76	0.00267351
+1172.88	0.00267336
+1173	0.00267321
+1173.12	0.00267306
+1173.24	0.00267291
+1173.36	0.00267276
+1173.48	0.00267261
+1173.6	0.00267246
+1173.72	0.00267231
+1173.84	0.00267216
+1173.96	0.00267201
+1174.08	0.00267187
+1174.2	0.00267172
+1174.32	0.00267157
+1174.44	0.00267142
+1174.56	0.00267127
+1174.68	0.00267112
+1174.8	0.00267097
+1174.92	0.00267082
+1175.04	0.00267067
+1175.16	0.00267052
+1175.28	0.00267037
+1175.4	0.00267023
+1175.52	0.00267008
+1175.64	0.00266993
+1175.76	0.00266978
+1175.88	0.00266963
+1176	0.00266948
+1176.12	0.00266933
+1176.24	0.00266918
+1176.36	0.00266903
+1176.48	0.00266889
+1176.6	0.00266874
+1176.72	0.00266859
+1176.84	0.00266844
+1176.96	0.00266829
+1177.08	0.00266814
+1177.2	0.00266799
+1177.32	0.00266785
+1177.44	0.0026677
+1177.56	0.00266755
+1177.68	0.0026674
+1177.8	0.00266725
+1177.92	0.0026671
+1178.04	0.00266696
+1178.16	0.00266681
+1178.28	0.00266666
+1178.4	0.00266651
+1178.52	0.00266636
+1178.64	0.00266621
+1178.76	0.00266607
+1178.88	0.00266592
+1179	0.00266577
+1179.12	0.00266562
+1179.24	0.00266547
+1179.36	0.00266533
+1179.48	0.00266518
+1179.6	0.00266503
+1179.72	0.00266488
+1179.84	0.00266473
+1179.96	0.00266459
+1180.08	0.00266444
+1180.2	0.00266429
+1180.32	0.00266414
+1180.44	0.002664
+1180.56	0.00266385
+1180.68	0.0026637
+1180.8	0.00266355
+1180.92	0.00266341
+1181.04	0.00266326
+1181.16	0.00266311
+1181.28	0.00266296
+1181.4	0.00266282
+1181.52	0.00266267
+1181.64	0.00266252
+1181.76	0.00266237
+1181.88	0.00266223
+1182	0.00266208
+1182.12	0.00266193
+1182.24	0.00266178
+1182.36	0.00266164
+1182.48	0.00266149
+1182.6	0.00266134
+1182.72	0.0026612
+1182.84	0.00266105
+1182.96	0.0026609
+1183.08	0.00266075
+1183.2	0.00266061
+1183.32	0.00266046
+1183.44	0.00266031
+1183.56	0.00266017
+1183.68	0.00266002
+1183.8	0.00265987
+1183.92	0.00265973
+1184.04	0.00265958
+1184.16	0.00265943
+1184.28	0.00265929
+1184.4	0.00265914
+1184.52	0.00265899
+1184.64	0.00265885
+1184.76	0.0026587
+1184.88	0.00265855
+1185	0.00265841
+1185.12	0.00265826
+1185.24	0.00265811
+1185.36	0.00265797
+1185.48	0.00265782
+1185.6	0.00265767
+1185.72	0.00265753
+1185.84	0.00265738
+1185.96	0.00265724
+1186.08	0.00265709
+1186.2	0.00265694
+1186.32	0.0026568
+1186.44	0.00265665
+1186.56	0.0026565
+1186.68	0.00265636
+1186.8	0.00265621
+1186.92	0.00265607
+1187.04	0.00265592
+1187.16	0.00265577
+1187.28	0.00265563
+1187.4	0.00265548
+1187.52	0.00265534
+1187.64	0.00265519
+1187.76	0.00265504
+1187.88	0.0026549
+1188	0.00265475
+1188.12	0.00265461
+1188.24	0.00265446
+1188.36	0.00265432
+1188.48	0.00265417
+1188.6	0.00265402
+1188.72	0.00265388
+1188.84	0.00265373
+1188.96	0.00265359
+1189.08	0.00265344
+1189.2	0.0026533
+1189.32	0.00265315
+1189.44	0.00265301
+1189.56	0.00265286
+1189.68	0.00265271
+1189.8	0.00265257
+1189.92	0.00265242
+1190.04	0.00265228
+1190.16	0.00265213
+1190.28	0.00265199
+1190.4	0.00265184
+1190.52	0.0026517
+1190.64	0.00265155
+1190.76	0.00265141
+1190.88	0.00265126
+1191	0.00265112
+1191.12	0.00265097
+1191.24	0.00265083
+1191.36	0.00265068
+1191.48	0.00265054
+1191.6	0.00265039
+1191.72	0.00265025
+1191.84	0.0026501
+1191.96	0.00264996
+1192.08	0.00264981
+1192.2	0.00264967
+1192.32	0.00264952
+1192.44	0.00264938
+1192.56	0.00264923
+1192.68	0.00264909
+1192.8	0.00264894
+1192.92	0.0026488
+1193.04	0.00264866
+1193.16	0.00264851
+1193.28	0.00264837
+1193.4	0.00264822
+1193.52	0.00264808
+1193.64	0.00264793
+1193.76	0.00264779
+1193.88	0.00264764
+1194	0.0026475
+1194.12	0.00264736
+1194.24	0.00264721
+1194.36	0.00264707
+1194.48	0.00264692
+1194.6	0.00264678
+1194.72	0.00264663
+1194.84	0.00264649
+1194.96	0.00264635
+1195.08	0.0026462
+1195.2	0.00264606
+1195.32	0.00264591
+1195.44	0.00264577
+1195.56	0.00264563
+1195.68	0.00264548
+1195.8	0.00264534
+1195.92	0.00264519
+1196.04	0.00264505
+1196.16	0.00264491
+1196.28	0.00264476
+1196.4	0.00264462
+1196.52	0.00264447
+1196.64	0.00264433
+1196.76	0.00264419
+1196.88	0.00264404
+1197	0.0026439
+1197.12	0.00264376
+1197.24	0.00264361
+1197.36	0.00264347
+1197.48	0.00264333
+1197.6	0.00264318
+1197.72	0.00264304
+1197.84	0.0026429
+1197.96	0.00264275
+1198.08	0.00264261
+1198.2	0.00264247
+1198.32	0.00264232
+1198.44	0.00264218
+1198.56	0.00264204
+1198.68	0.00264189
+1198.8	0.00264175
+1198.92	0.00264161
+1199.04	0.00264146
+1199.16	0.00264132
+1199.28	0.00264118
+1199.4	0.00264103
+1199.52	0.00264089
+1199.64	0.00264075
+1199.76	0.0026406
+1199.88	0.00264046
+1200	0.00264032
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E.C b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E.C
new file mode 100644
index 0000000000000000000000000000000000000000..bc1d6295c31f7e694191e51a6f1f77a3f470e0ae
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E.C
@@ -0,0 +1,135 @@
+////////////////////////////////////////////////////////////////////////////
+// This macro takes a converted ROOT file from the GANIL e569 exp. and    //
+// create an histogram for each strip (X and Y) of the MUST2 array filled //
+// with the energy. The histograms are dumped in an output ROOT file.     //
+//                                                                        //
+// This is especially usefull for calibration purposes when there is no   //
+// need to work directly on the TChain                                     //
+////////////////////////////////////////////////////////////////////////////
+#include <iostream>
+
+#include "TROOT.h"
+#include "TSystem.h"
+#include "TFile.h"
+#include "TString.h"
+#include "TChain.h"
+#include "TBranch.h"
+#include "TH1F.h"
+#include "TMust2Data.h"
+#include "TMugastData.h"
+#include "TMUSETTData.h"
+#include "RootInput.h"
+
+
+#define NBTELESCOPE 4	
+#define	NBSTRIPS	128
+#define NBSILI     0
+
+
+void ExtractRawHistos(const char* fname = "")
+{
+  RootInput* Input = RootInput::getInstance("RunToTreat.txt");
+  TChain* Chain = Input->GetChain();
+
+  // connect the TfDet.c_str()Data branch  
+  Chain->SetBranchStatus("MUSETT",true);
+  Chain->SetBranchStatus("fMM*",true);
+
+  TMUSETTData* rawMUSETT = new TMUSETTData();
+  Chain->SetBranchAddress("MUSETT",&rawMUSETT);
+
+  // open the output ROOT file
+  TString outFileName = "./Histograms/";
+  outFileName += fname;
+  outFileName += "_RawMUSETTHistos.root";
+  std::cout<< outFileName<< std::endl;
+  TFile *outFile = new TFile(outFileName, "recreate");
+
+  // prepare output histograms for Must2
+  TH1F* hStripXEnergy[NBTELESCOPE][NBSTRIPS];
+  TH1F* hStripYEnergy[NBTELESCOPE][NBSTRIPS];
+  //from i=4 because I wanted only the T5,T8
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSTRIPS; j++) {
+      // strips XE
+      TString hnameXE     = Form("hMM%d_STRX_E%d", i, j);
+      TString htitleXE    = Form("MM%d_STRX_E%d", i, j);
+      hStripXEnergy[i][j] = new TH1F(hnameXE, htitleXE, 16384, 0, 16384);
+      // strips YE
+      TString hnameYE     = Form("hMM%d_STRY_E%d", i, j);
+      TString htitleYE    = Form("MM%d_STRY_E%d", i, j);
+      hStripYEnergy[i][j] = new TH1F(hnameYE, htitleYE, 16384, 0, 16384);
+    }
+  }
+  TH1F* hSiLiEnergy[NBTELESCOPE][NBSILI];
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSILI; j++) {
+      TString hnameSiLiE     = Form("hMM%d_SILI_E%d", i, j);
+      TString htitleSiLiE    = Form("MM%d_SILI_E%d", i, j);
+      hSiLiEnergy[i][j] = new TH1F(hnameSiLiE, htitleSiLiE, 16384, 0, 16384);
+    }
+  }
+
+  // read the data
+  Int_t nentries = Chain->GetEntries();
+  std::cout << "TChain contains " << nentries << " events" << std::endl;
+  for (Int_t i = 0; i < nentries; i++) {
+    if (i%1000 == 0) std::cout << "\rEntry " << i << "\t" << i/(double)nentries * 100 << " %" << flush;
+    ///////////////////////
+    // read Must2 branch //
+    ///////////////////////
+    //brMust2->GetEntry(i);
+    Chain->GetEntry(i);
+    // get StripXE multiplicity
+    Int_t multXE = 0; 
+    multXE = rawMUSETT->GetDSSDXEMult();
+    //std::cout<< "multXE" << multXE<< std::endl;
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    //
+    Int_t det = 0;   
+    Int_t stripX = 0;
+    Int_t energy = 0;
+
+    for (Int_t j = 0; j < multXE; j++) {
+      det    = rawMUSETT->GetDSSDXEDetectorNbr(j);
+      stripX = rawMUSETT->GetDSSDXEStripNbr(j);
+      energy = rawMUSETT->GetDSSDXEEnergy(j);
+      if ((det < NBTELESCOPE) && (stripX < NBSTRIPS)) {
+        hStripXEnergy[det][stripX]->Fill(energy);
+      } 
+      else {
+        std::cout << "Error filling histograms: X_E" << std::endl;
+        rawMUSETT->Dump();
+      }
+    }
+    // get StripYE multiplicity
+    Int_t multYE=0;
+    multYE = rawMUSETT->GetDSSDYEMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+
+    det = 0;   
+    Int_t stripY = 0;
+    energy = 0;
+    for (Int_t j = 0; j < multYE; j++) {
+      det    = rawMUSETT->GetDSSDYEDetectorNbr(j);
+      stripY = rawMUSETT->GetDSSDYEStripNbr(j);
+      energy = rawMUSETT->GetDSSDYEEnergy(j);
+
+      if ((det < NBTELESCOPE) && (stripY < NBSTRIPS)) {
+        hStripYEnergy[det][stripY]->Fill(energy);
+      }
+      else {
+        std::cout << "Error filling histograms: Y_E" << std::endl;
+          rawMUSETT->Dump();
+      }
+    }
+
+  }
+  std::cout << '\n';
+
+  // write on disk output file and close it
+  outFile->Write();
+  outFile->Close();
+}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_C.d b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..f73ae0701dbdcd661dae56769450b132008af571
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_C.d
@@ -0,0 +1,118 @@
+
+# DO NOT DELETE
+
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSystem.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInetAddress.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTimer.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSysEvtHandler.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTime.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TChain.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TMust2Data.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TMugastData.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TMUSETTData.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/RootInput.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReader.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReaderUtils.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchProxyDirector.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TLeaf.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClonesArray.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TError.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualCollectionProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClassRef.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNotifyLink.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReaderValue.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReaderArray.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPInputParser.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVector3.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVector2.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrix.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixF.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixT.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixTBase.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFBasefwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixDBasefwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixTUtils.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFUtils.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFUtilsfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMath.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+ExtractRawHisto_E_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_Pedestals.C b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_Pedestals.C
new file mode 100644
index 0000000000000000000000000000000000000000..07e08e0c7185b3cab9dbea5f474415b7d893ae8f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_Pedestals.C
@@ -0,0 +1,326 @@
+////////////////////////////////////////////////////////////////////////////
+// This macro takes a converted ROOT file from the GANIL e569 exp. and    //
+// create an histogram for each strip (X and Y) of the MUST2 array filled //
+// with the energy. The histograms are dumped in an output ROOT file.     //
+//                                                                        //
+// This is especially usefull for calibration purposes when there is no   //
+// need to work directly on the TChain                                     //
+////////////////////////////////////////////////////////////////////////////
+#include <iostream>
+#include <fstream>
+#include <map>
+#include <string>
+#include <vector>
+
+#include "TROOT.h"
+#include "TSystem.h"
+#include "TFile.h"
+#include "TString.h"
+#include "TChain.h"
+#include "TBranch.h"
+#include "TH1F.h"
+
+#include "/home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/MUST2/TMust2Data.h"
+#include "/home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/Mugast/TMugastData.h"
+#include "/home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/include/RootInput.h"
+
+#define NBTELESCOPE 4	
+#define	NBSTRIPS	128
+#define NBSILI     0
+
+class pedestal{
+  public:
+    pedestal(){};
+    ~pedestal(){};
+  public: 
+    map<int, vector<int> > pedestalX;
+    map<int, vector<int> > pedestalY;
+  
+    int get_pedestalX(int det,int strip){
+      return pedestalX[det][strip-1];
+      }
+    int get_pedestalY(int det,int strip){
+      return pedestalY[det][strip-1];
+      }
+
+  public:
+    int SubstractX(int det, int strip,pedestal other){
+        return (get_pedestalX(det,strip)-other.get_pedestalX(det,strip));
+      }
+    
+    int SubstractY(int det, int strip,pedestal other){
+        return (get_pedestalY(det,strip)-other.get_pedestalY(det,strip));
+      }
+
+
+    void print(){
+      cout << "X" << endl;
+      for(auto& it: pedestalX){
+        cout << " Telescope: " << it.first << endl;
+        unsigned int size = it.second.size();
+        for(unsigned int i = 0 ; i < size ; i++){
+          std::cout << " strip: " << i+1 << " pedestal: " << it.second[i] << "\n"; 
+        } 
+      }
+
+      cout << "Y" << endl;
+      for(auto& it: pedestalY){
+        cout << " Telescope: " << it.first << endl;
+        unsigned int size = it.second.size();
+        for(unsigned int i = 0 ; i < size ; i++){
+          std::cout << " strip: " << i+1 << " pedestal: " << it.second[i] << "\n"; 
+        } 
+      }
+    }
+
+    void LoadPedestals(const std::string& path, int num){
+      ifstream file(path.c_str());
+      std::string buffer;
+      // ignore the first line of comments
+      getline(file,buffer);
+      int pedestalE,pedestalT;
+      int mate=0;
+      int count=0;
+
+      while (file >> pedestalE >> pedestalT){
+        if(count++%16==0){
+          mate++; 
+        }
+        if(mate<9){ // X
+          pedestalX[num].push_back(pedestalE);
+        } 
+        else if(mate>8&&mate<17){ // Y
+          pedestalY[num].push_back(pedestalE);
+        }
+        else{ // SiLi/CsI
+          break; 
+        }
+      }
+    }
+};
+////////////////////////////////////////////////////////////////////////////////
+void Test(){
+  pedestal q;
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector1",1);
+
+  pedestal p;
+  p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI3_Sector1",1);
+ 
+  for(unsigned int i = 0 ; i < 128 ; i++){
+    cout << p.SubstractX(1,i+1,q) << " " << p.SubstractY(1,i+1,q)  << endl;
+  }
+}
+///////////////////////////////////////////////////////////////////////////////
+void ExtractRawHistos(const char* fname = "run_XXXX_X", std::string fDet="MUST2")
+{
+
+  pedestal p,q;
+  if(fDet=="MUST2"){
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector1.pedestal",1);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector2.pedestal",2);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector3.pedestal",3);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector4.pedestal",4); 
+
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector1.pedestal",1);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector2.pedestal",2);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector3.pedestal",3);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector4.pedestal",4); 
+
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector1",1);
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector2",2);
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector3",3);
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector4",4); 
+
+    }
+
+ else if(fDet=="Mugast"){
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector1",1);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector2",3);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector3",4);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector4",5); 
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector1",7);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector2",9);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector3",10);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector4",11); 
+
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector1",1);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector2",3);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector3",4);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector4",5); 
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector1",7);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector2",9);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector3",10);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector4",11); 
+ 
+    }
+
+  else{
+    cout << "Error in detector name " << fDet << endl;
+    exit(1);
+    }
+
+
+  RootInput* Input = RootInput::getInstance("RunToTreat.txt");
+  TChain* Chain = Input->GetChain();
+  // connect the TfDet.c_str()Data branch  
+  Chain->SetBranchStatus(fDet.c_str(),true);
+  Chain->SetBranchStatus("fMM*",true);
+
+  TMust2Data *rawMust2;
+  TMugastData *rawMugast;
+  if (fDet=="MUST2"){
+    rawMust2 = new TMust2Data();
+    Chain->SetBranchAddress(fDet.c_str(),&rawMust2);
+  }
+  else if (fDet=="Mugast"){
+    rawMugast = new TMugastData();
+    Chain->SetBranchAddress(fDet.c_str(),&rawMugast);
+  }
+
+  // open the output ROOT file
+  TString outFileName = "./Histograms/";
+  outFileName += fname;
+  outFileName += "_Raw" + fDet + "Histos_CorrectionPedestals.root";
+  cout<< outFileName<< endl;
+  TFile *outFile = new TFile(outFileName, "recreate");
+
+  // prepare output histograms for Must2
+  TH1F* hStripXEnergy[NBTELESCOPE][NBSTRIPS];
+  TH1F* hStripYEnergy[NBTELESCOPE][NBSTRIPS];
+  //from i=4 because I wanted only the T5,T8
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSTRIPS; j++) {
+      // strips XE
+      TString hnameXE     = Form("hMM%d_STRX_E%d", i+1, j+1);
+      TString htitleXE    = Form("MM%d_STRX_E%d", i+1, j+1);
+      hStripXEnergy[i][j] = new TH1F(hnameXE, htitleXE, 16384, 0, 16384);
+      // strips YE
+      TString hnameYE     = Form("hMM%d_STRY_E%d", i+1, j+1);
+      TString htitleYE    = Form("MM%d_STRY_E%d", i+1, j+1);
+      hStripYEnergy[i][j] = new TH1F(hnameYE, htitleYE, 16384, 0, 16384);
+    }
+  }
+  TH1F* hSiLiEnergy[NBTELESCOPE][NBSILI];
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSILI; j++) {
+      TString hnameSiLiE     = Form("hMM%d_SILI_E%d", i+1, j+1);
+      TString htitleSiLiE    = Form("MM%d_SILI_E%d", i+1, j+1);
+      hSiLiEnergy[i][j] = new TH1F(hnameSiLiE, htitleSiLiE, 16384, 0, 16384);
+    }
+  }
+
+  // read the data
+  Int_t nentries = Chain->GetEntries();
+  cout << "TChain contains " << nentries << " events" << endl;
+  for (Int_t i = 0; i < nentries; i++) {
+    if (i%1000 == 0) cout << "\rEntry " << i << "\t" << i/(double)nentries * 100 << " %" << flush;
+    ///////////////////////
+    // read Must2 branch //
+    ///////////////////////
+    //brMust2->GetEntry(i);
+    Chain->GetEntry(i);
+    // get StripXE multiplicity
+    Int_t multXE = 0; 
+    if (fDet=="MUST2"){
+      multXE = rawMust2->GetMMStripXEMult();
+    }else if (fDet=="Mugast"){
+      multXE = rawMugast->GetDSSDXEMult();
+    }
+    //cout<< "multXE" << multXE<< endl;
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    //
+    Int_t det = 0;   
+    Int_t stripX = 0;
+    Int_t energy = 0;
+
+    for (Int_t j = 0; j < multXE; j++) {
+      if (fDet=="MUST2"){
+        det    = rawMust2->GetMMStripXEDetectorNbr(j);
+        stripX = rawMust2->GetMMStripXEStripNbr(j);
+        energy = rawMust2->GetMMStripXEEnergy(j);
+      } else if (fDet=="Mugast"){
+        det    = rawMugast->GetDSSDXEDetectorNbr(j);
+        stripX = rawMugast->GetDSSDXEStripNbr(j);
+        energy = rawMugast->GetDSSDXEEnergy(j);
+      }
+      if ((det < NBTELESCOPE+1) && (stripX < NBSTRIPS+1)) {
+        std::cout << ">>>>>>>>>> DEBUG : " << 0 << std::endl;
+        std::cout << det << " " << stripX << " " << q  << std::endl;
+        hStripXEnergy[det-1][stripX-1]->Fill(energy + p.SubstractX(det, stripX, q));
+        std::cout << ">>>>>>>>>> DEBUG : " << 1 << std::endl;
+      } else {
+        cout << "Error filling histograms: X_E" << endl;
+        if (fDet=="MUST2"){
+          rawMust2->Dump();
+        } else if (fDet=="Mugast"){
+          rawMugast->Dump();
+        }
+      }
+    }
+    std::cout << ">>>>>>>>>> DEBUG : " << 2 << std::endl;
+    // get StripYE multiplicity
+    Int_t multYE=0;
+    if (fDet=="MUST2"){
+      multYE = rawMust2->GetMMStripYEMult();
+    } else if (fDet=="Mugast"){
+      multYE = rawMugast->GetDSSDYEMult();
+    }
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+
+    det = 0;   
+    Int_t stripY = 0;
+    energy = 0;
+    for (Int_t j = 0; j < multYE; j++) {
+      if (fDet=="MUST2"){
+        det    = rawMust2->GetMMStripYEDetectorNbr(j);
+        stripY = rawMust2->GetMMStripYEStripNbr(j);
+        energy = rawMust2->GetMMStripYEEnergy(j);
+      }else if (fDet=="Mugast"){
+        det    = rawMugast->GetDSSDYEDetectorNbr(j);
+        stripY = rawMugast->GetDSSDYEStripNbr(j);
+        energy = rawMugast->GetDSSDYEEnergy(j);
+      }
+
+      if ((det < NBTELESCOPE+1) && (stripY < NBSTRIPS+1)) {
+        hStripYEnergy[det-1][stripY-1]->Fill(energy + p.SubstractY(det, stripY, q));
+      }
+      else {
+        cout << "Error filling histograms: Y_E" << endl;
+        if (fDet=="MUST2"){
+          rawMust2->Dump();
+        }else if (fDet=="Mugast"){
+          rawMugast->Dump();
+        }
+      }
+    }
+    // get SiLiE multiplicity
+
+    //Int_t multSiLiE = rawMust2->GetMMSiLiEMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    /* for (Int_t j = 0; j < multSiLiE; j++) {
+       Int_t det    = rawMust2->GetMMSiLiEDetectorNbr(j);
+       Int_t pad = rawMust2->GetMMSiLiEPadNbr(j);
+       Int_t energy = rawMust2->GetMMSiLiEEnergy(j);
+       if ((det < NBTELESCOPE+1) && (pad < NBSTRIPS+1)) {
+       hSiLiEnergy[det-1][pad-1]->Fill(energy);
+       }
+       else {
+       cout << "Error filling histograms: Must2_SiLi_E" << endl;
+       rawMust2->Dump();
+       }
+       }*/
+
+  }
+  cout << '\n';
+
+  // write on disk output file and close it
+  outFile->Write();
+  outFile->Close();
+}
+
+
+
+
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_Pedestals_C.d b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_Pedestals_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..d138211b1436102725e3c59c452c1132ac2f6696
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_Pedestals_C.d
@@ -0,0 +1,105 @@
+
+# DO NOT DELETE
+
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TROOT.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDirectory.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TNamed.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TObject.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Rtypes.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RtypesCore.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RConfig.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RVersion.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RConfigure.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/DllImport.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/strtok.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/strlcpy.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/snprintf.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TGenericClassInfo.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSchemaHelper.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TIsAProxy.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualIsAProxy.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TStorage.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVersionCheck.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RVersion.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TString.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMathBase.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RStringView.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RWrap_libcpp_string_view.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/libcpp_string_view.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TypeTraits.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TClass.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDictionary.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ESTLType.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TObjArray.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSeqCollection.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TCollection.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TIterator.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualRWMutex.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualMutex.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TUUID.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TList.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBuffer.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDataType.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Bytes.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSystem.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TInetAddress.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TTimer.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSysEvtHandler.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TQObject.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualQConnection.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TInterpreter.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TInterpreterValue.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TTime.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TFile.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Compression.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDirectoryFile.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDatime.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TUrl.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RConcurrentHashColl.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TRWSpinLock.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TSpinMutex.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TChain.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TTree.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TIOFeatures.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayD.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArray.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayI.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttFill.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttLine.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttMarker.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualTreePlayer.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBranch.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBranchCacheInfo.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBits.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TH1F.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TH1.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAxis.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttAxis.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayC.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayS.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayF.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Foption.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/EExecutionPolicy.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVectorFfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVectorDfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TFitResultPtr.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/MUST2/TMust2Data.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/Mugast/TMugastData.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/include/RootInput.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/include/NPInputParser.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVector3.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TError.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVector2.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrix.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixF.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixT.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixTBase.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFBasefwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixDBasefwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixTUtils.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFUtils.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFUtilsfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMath.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RVersion.h /home/global/root/root_v6.24.06_C7_build/include/RConfig.h /home/global/root/root_v6.24.06_C7_build/include/TClass.h /home/global/root/root_v6.24.06_C7_build/include/TDictAttributeMap.h /home/global/root/root_v6.24.06_C7_build/include/TInterpreter.h /home/global/root/root_v6.24.06_C7_build/include/TROOT.h /home/global/root/root_v6.24.06_C7_build/include/TBuffer.h /home/global/root/root_v6.24.06_C7_build/include/TMemberInspector.h /home/global/root/root_v6.24.06_C7_build/include/TError.h /home/global/root/root_v6.24.06_C7_build/include/RtypesImp.h /home/global/root/root_v6.24.06_C7_build/include/TIsAProxy.h /home/global/root/root_v6.24.06_C7_build/include/TFileMergeInfo.h /home/global/root/root_v6.24.06_C7_build/include/TCollectionProxyInfo.h /home/global/root/root_v6.24.06_C7_build/bin/rootcling
+ExtractRawHisto_E_Pedestals_C__ROOTBUILDVERSION= 6.24/06
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Histograms/.root_hist b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Histograms/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..6b4b500a7726e9e6c5e7c63a866a6a205d31e8a3
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/Histograms/.root_hist
@@ -0,0 +1,6 @@
+TFile *_file0 = TFile::Open("run_9_RawMUST2Histos.root")
+new TBrowser
+.q
+TFile *_file0 = TFile::Open("run_19_RawMUST2Histos.root")
+new TBrowser
+.q
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/RunToTreat.txt b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/RunToTreat.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d0a124b1b2968d6a7b0be5aea4352f4afd832cb1
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Energy/RunToTreat.txt
@@ -0,0 +1,4 @@
+TTreeName 
+	RD
+RootFileName 
+  ~/npTreeReader/np-tree-reader/Projects/MUSETT/RootR/run_0274.root
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M0_E/Cal_Str_X_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b56df0bbb27f890ca4f6493ba76adaea922fcb94
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E -61.6623 0.00752711
+MUSETT_T0_DSSD_X1_E -61.862300000000005 0.0075515
+MUSETT_T0_DSSD_X2_E -61.786 0.00754225
+MUSETT_T0_DSSD_X3_E -61.4886 0.0075058699999999996
+MUSETT_T0_DSSD_X4_E -61.896800000000006 0.00755579
+MUSETT_T0_DSSD_X5_E -61.6415 0.007524530000000001
+MUSETT_T0_DSSD_X6_E -61.3994 0.00749501
+MUSETT_T0_DSSD_X7_E -61.2364 0.00747509
+MUSETT_T0_DSSD_X8_E -60.9865 0.0074446
+MUSETT_T0_DSSD_X9_E -62.6813 0.0076514800000000004
+MUSETT_T0_DSSD_X10_E -62.3935 0.00761631
+MUSETT_T0_DSSD_X11_E -61.9253 0.00755919
+MUSETT_T0_DSSD_X12_E -62.029900000000005 0.00757195
+MUSETT_T0_DSSD_X13_E -61.7577 0.00753873
+MUSETT_T0_DSSD_X14_E -62.4176 0.00761932
+MUSETT_T0_DSSD_X15_E -61.2753 0.00747982
+MUSETT_T0_DSSD_X16_E -63.0583 0.00769749
+MUSETT_T0_DSSD_X17_E -62.722199999999994 0.00765646
+MUSETT_T0_DSSD_X18_E -62.1349 0.007584769999999999
+MUSETT_T0_DSSD_X19_E -62.4581 0.00762423
+MUSETT_T0_DSSD_X20_E -63.902699999999996 0.00780057
+MUSETT_T0_DSSD_X21_E -62.5199 0.00763181
+MUSETT_T0_DSSD_X22_E -62.2975 0.00760463
+MUSETT_T0_DSSD_X23_E -62.6596 0.00764878
+MUSETT_T0_DSSD_X24_E -62.8523 0.00767238
+MUSETT_T0_DSSD_X25_E -62.9854 0.00768854
+MUSETT_T0_DSSD_X26_E -63.073699999999995 0.00769941
+MUSETT_T0_DSSD_X27_E -62.632 0.00764548
+MUSETT_T0_DSSD_X28_E -63.013400000000004 0.00769203
+MUSETT_T0_DSSD_X29_E -62.579 0.00763901
+MUSETT_T0_DSSD_X30_E -63.4015 0.0077394
+MUSETT_T0_DSSD_X31_E -62.63 0.007645229999999999
+MUSETT_T0_DSSD_X32_E -56.399 0.00688462
+MUSETT_T0_DSSD_X33_E -56.789199999999994 0.00693221
+MUSETT_T0_DSSD_X34_E -55.5642 0.00678269
+MUSETT_T0_DSSD_X35_E -56.333400000000005 0.00687654
+MUSETT_T0_DSSD_X36_E -56.0406 0.00684084
+MUSETT_T0_DSSD_X37_E -10.0 0.0
+MUSETT_T0_DSSD_X38_E -55.909699999999994 0.006824869999999999
+MUSETT_T0_DSSD_X39_E -55.6584 0.006794209999999999
+MUSETT_T0_DSSD_X40_E -56.211800000000004 0.00686172
+MUSETT_T0_DSSD_X41_E -55.874 0.00682053
+MUSETT_T0_DSSD_X42_E -56.1648 0.00685597
+MUSETT_T0_DSSD_X43_E -56.3075 0.00687343
+MUSETT_T0_DSSD_X44_E -56.382 0.00688247
+MUSETT_T0_DSSD_X45_E -10.0 0.0
+MUSETT_T0_DSSD_X46_E -10.0 0.0
+MUSETT_T0_DSSD_X47_E -55.9115 0.00682508
+MUSETT_T0_DSSD_X48_E -57.9275 0.00707116
+MUSETT_T0_DSSD_X49_E -57.924800000000005 0.007070809999999999
+MUSETT_T0_DSSD_X50_E -57.746 0.007049000000000001
+MUSETT_T0_DSSD_X51_E -57.3431 0.00699988
+MUSETT_T0_DSSD_X52_E -58.1722 0.00710106
+MUSETT_T0_DSSD_X53_E -57.2377 0.00698697
+MUSETT_T0_DSSD_X54_E -57.8763 0.00706488
+MUSETT_T0_DSSD_X55_E -57.5235 0.00702188
+MUSETT_T0_DSSD_X56_E -58.500699999999995 0.00714114
+MUSETT_T0_DSSD_X57_E -57.7865 0.00705393
+MUSETT_T0_DSSD_X58_E -57.3004 0.00699465
+MUSETT_T0_DSSD_X59_E -57.7909 0.00705448
+MUSETT_T0_DSSD_X60_E -57.2034 0.0069828
+MUSETT_T0_DSSD_X61_E -57.985 0.0070782
+MUSETT_T0_DSSD_X62_E -57.8887 0.00706644
+MUSETT_T0_DSSD_X63_E -58.1271 0.00709555
+MUSETT_T0_DSSD_X64_E -63.452400000000004 0.00774561
+MUSETT_T0_DSSD_X65_E -63.6121 0.0077651099999999995
+MUSETT_T0_DSSD_X66_E -63.338699999999996 0.00773174
+MUSETT_T0_DSSD_X67_E -64.0218 0.00781515
+MUSETT_T0_DSSD_X68_E -63.1974 0.00771456
+MUSETT_T0_DSSD_X69_E -63.9684 0.0078086399999999995
+MUSETT_T0_DSSD_X70_E -63.8538 0.00779469
+MUSETT_T0_DSSD_X71_E -63.3564 0.007733970000000001
+MUSETT_T0_DSSD_X72_E -64.1177 0.00782683
+MUSETT_T0_DSSD_X73_E -63.242599999999996 0.00772007
+MUSETT_T0_DSSD_X74_E -63.9725 0.00780918
+MUSETT_T0_DSSD_X75_E -63.9414 0.0078053
+MUSETT_T0_DSSD_X76_E -63.6518 0.0077700899999999995
+MUSETT_T0_DSSD_X77_E -63.7543 0.00778255
+MUSETT_T0_DSSD_X78_E -64.2928 0.00784837
+MUSETT_T0_DSSD_X79_E -64.6906 0.00789693
+MUSETT_T0_DSSD_X80_E -61.2158 0.0074727100000000005
+MUSETT_T0_DSSD_X81_E -60.8651 0.007429949999999999
+MUSETT_T0_DSSD_X82_E -61.1473 0.00746434
+MUSETT_T0_DSSD_X83_E -61.4696 0.0075036899999999995
+MUSETT_T0_DSSD_X84_E -61.3791 0.00749269
+MUSETT_T0_DSSD_X85_E -61.8887 0.00755484
+MUSETT_T0_DSSD_X86_E -61.4032 0.00749554
+MUSETT_T0_DSSD_X87_E -62.1665 0.00758877
+MUSETT_T0_DSSD_X88_E -61.8964 0.007555780000000001
+MUSETT_T0_DSSD_X89_E -61.5721 0.00751618
+MUSETT_T0_DSSD_X90_E -61.7205 0.007534239999999999
+MUSETT_T0_DSSD_X91_E -62.7965 0.00766557
+MUSETT_T0_DSSD_X92_E -61.8681 0.00755224
+MUSETT_T0_DSSD_X93_E -60.9991 0.00744621
+MUSETT_T0_DSSD_X94_E -61.368199999999995 0.00749129
+MUSETT_T0_DSSD_X95_E -62.1668 0.00758877
+MUSETT_T0_DSSD_X96_E -57.1697 0.00697872
+MUSETT_T0_DSSD_X97_E -57.564 0.0070268100000000005
+MUSETT_T0_DSSD_X98_E -57.724199999999996 0.00704642
+MUSETT_T0_DSSD_X99_E -57.113099999999996 0.00697176
+MUSETT_T0_DSSD_X100_E -58.1265 0.0070955
+MUSETT_T0_DSSD_X101_E -57.7465 0.00704909
+MUSETT_T0_DSSD_X102_E -57.6654 0.00703921
+MUSETT_T0_DSSD_X103_E -57.244699999999995 0.00698784
+MUSETT_T0_DSSD_X104_E -57.357800000000005 0.00700171
+MUSETT_T0_DSSD_X105_E -57.943599999999996 0.0070732
+MUSETT_T0_DSSD_X106_E -57.2791 0.00699197
+MUSETT_T0_DSSD_X107_E -57.6282 0.00703471
+MUSETT_T0_DSSD_X108_E -58.567699999999995 0.0071494
+MUSETT_T0_DSSD_X109_E -58.0135 0.00708178
+MUSETT_T0_DSSD_X110_E -57.6815 0.00704111
+MUSETT_T0_DSSD_X111_E -57.7954 0.00705508
+MUSETT_T0_DSSD_X112_E -59.002300000000005 0.00720244
+MUSETT_T0_DSSD_X113_E -59.1922 0.00722562
+MUSETT_T0_DSSD_X114_E -58.512800000000006 0.00714267
+MUSETT_T0_DSSD_X115_E -58.6713 0.0071620699999999995
+MUSETT_T0_DSSD_X116_E -58.1716 0.00710101
+MUSETT_T0_DSSD_X117_E -58.3505 0.00712281
+MUSETT_T0_DSSD_X118_E -58.281400000000005 0.00711445
+MUSETT_T0_DSSD_X119_E -58.508199999999995 0.0071421
+MUSETT_T0_DSSD_X120_E -58.5117 0.00714253
+MUSETT_T0_DSSD_X121_E -58.6539 0.0071598899999999995
+MUSETT_T0_DSSD_X122_E -58.5504 0.00714724
+MUSETT_T0_DSSD_X123_E -59.318400000000004 0.00724097
+MUSETT_T0_DSSD_X124_E -57.853 0.007062140000000001
+MUSETT_T0_DSSD_X125_E -58.498400000000004 0.00714087
+MUSETT_T0_DSSD_X126_E -58.4264 0.00713213
+MUSETT_T0_DSSD_X127_E -59.5126 0.00726467
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M0_E/Cal_Str_Y_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..7c5d41b25a59ce5a29553a76ed64aac9acbd191e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_Y0_E -10.0 0.0
+MUSETT_T0_DSSD_Y1_E 60.4435 -0.007378389999999999
+MUSETT_T0_DSSD_Y2_E 60.9085 -0.00743514
+MUSETT_T0_DSSD_Y3_E 61.060199999999995 -0.00745367
+MUSETT_T0_DSSD_Y4_E 59.9844 -0.00732237
+MUSETT_T0_DSSD_Y5_E 60.1295 -0.0073401
+MUSETT_T0_DSSD_Y6_E 60.7831 -0.007419889999999999
+MUSETT_T0_DSSD_Y7_E 60.431 -0.0073769099999999995
+MUSETT_T0_DSSD_Y8_E 60.140699999999995 -0.00734142
+MUSETT_T0_DSSD_Y9_E 59.998400000000004 -0.00732403
+MUSETT_T0_DSSD_Y10_E 60.3957 -0.0073725399999999995
+MUSETT_T0_DSSD_Y11_E 60.0283 -0.00732774
+MUSETT_T0_DSSD_Y12_E 60.887800000000006 -0.00743267
+MUSETT_T0_DSSD_Y13_E 61.0665 -0.00745441
+MUSETT_T0_DSSD_Y14_E 61.164 -0.007466319999999999
+MUSETT_T0_DSSD_Y15_E 60.7398 -0.00741458
+MUSETT_T0_DSSD_Y16_E 60.4435 -0.00737838
+MUSETT_T0_DSSD_Y17_E 60.5444 -0.00739071
+MUSETT_T0_DSSD_Y18_E 60.303 -0.0073612
+MUSETT_T0_DSSD_Y19_E 60.1433 -0.007341739999999999
+MUSETT_T0_DSSD_Y20_E 60.3286 -0.0073644
+MUSETT_T0_DSSD_Y21_E 60.395900000000005 -0.00737256
+MUSETT_T0_DSSD_Y22_E 60.276 -0.00735798
+MUSETT_T0_DSSD_Y23_E 59.6842 -0.007285720000000001
+MUSETT_T0_DSSD_Y24_E 60.1879 -0.00734719
+MUSETT_T0_DSSD_Y25_E 59.7764 -0.00729698
+MUSETT_T0_DSSD_Y26_E 60.1286 -0.00733997
+MUSETT_T0_DSSD_Y27_E 60.4505 -0.00737922
+MUSETT_T0_DSSD_Y28_E 59.8905 -0.00731089
+MUSETT_T0_DSSD_Y29_E 59.6473 -0.0072812
+MUSETT_T0_DSSD_Y30_E 59.834900000000005 -0.00730412
+MUSETT_T0_DSSD_Y31_E 60.9991 -0.007446240000000001
+MUSETT_T0_DSSD_Y32_E 56.5525 -0.0069034100000000004
+MUSETT_T0_DSSD_Y33_E 57.0745 -0.00696718
+MUSETT_T0_DSSD_Y34_E 56.5365 -0.0069015000000000005
+MUSETT_T0_DSSD_Y35_E 57.036300000000004 -0.00696248
+MUSETT_T0_DSSD_Y36_E 57.4051 -0.007007500000000001
+MUSETT_T0_DSSD_Y37_E 57.2592 -0.0069897200000000005
+MUSETT_T0_DSSD_Y38_E 56.419599999999996 -0.00688718
+MUSETT_T0_DSSD_Y39_E 56.4611 -0.00689226
+MUSETT_T0_DSSD_Y40_E 56.9516 -0.00695213
+MUSETT_T0_DSSD_Y41_E 56.8 -0.00693367
+MUSETT_T0_DSSD_Y42_E 56.6005 -0.00690927
+MUSETT_T0_DSSD_Y43_E 56.5115 -0.0068984
+MUSETT_T0_DSSD_Y44_E 56.8705 -0.00694221
+MUSETT_T0_DSSD_Y45_E 56.9936 -0.006957270000000001
+MUSETT_T0_DSSD_Y46_E 57.6797 -0.00704103
+MUSETT_T0_DSSD_Y47_E 56.5606 -0.00690438
+MUSETT_T0_DSSD_Y48_E 57.5466 -0.0070247700000000005
+MUSETT_T0_DSSD_Y49_E 57.0358 -0.006962449999999999
+MUSETT_T0_DSSD_Y50_E 56.800599999999996 -0.00693377
+MUSETT_T0_DSSD_Y51_E 56.5058 -0.00689773
+MUSETT_T0_DSSD_Y52_E 57.1614 -0.006977789999999999
+MUSETT_T0_DSSD_Y53_E 56.855 -0.0069403600000000005
+MUSETT_T0_DSSD_Y54_E 56.619699999999995 -0.00691168
+MUSETT_T0_DSSD_Y55_E 57.6218 -0.00703399
+MUSETT_T0_DSSD_Y56_E 57.3597 -0.00700197
+MUSETT_T0_DSSD_Y57_E 56.825900000000004 -0.006936759999999999
+MUSETT_T0_DSSD_Y58_E 57.0315 -0.00696191
+MUSETT_T0_DSSD_Y59_E 57.2393 -0.00698735
+MUSETT_T0_DSSD_Y60_E 57.2548 -0.00698918
+MUSETT_T0_DSSD_Y61_E 57.074400000000004 -0.00696716
+MUSETT_T0_DSSD_Y62_E 57.5745 -0.00702822
+MUSETT_T0_DSSD_Y63_E 57.9124 -0.00706943
+MUSETT_T0_DSSD_Y64_E 61.0028 -0.00744668
+MUSETT_T0_DSSD_Y65_E 61.155300000000004 -0.0074653
+MUSETT_T0_DSSD_Y66_E 61.0533 -0.00745282
+MUSETT_T0_DSSD_Y67_E 61.373400000000004 -0.0074919
+MUSETT_T0_DSSD_Y68_E 60.4897 -0.00738403
+MUSETT_T0_DSSD_Y69_E 61.5803 -0.007517159999999999
+MUSETT_T0_DSSD_Y70_E 60.8956 -0.0074336
+MUSETT_T0_DSSD_Y71_E 60.4003 -0.0073731
+MUSETT_T0_DSSD_Y72_E 61.676199999999994 -0.00752889
+MUSETT_T0_DSSD_Y73_E 61.1073 -0.0074594399999999995
+MUSETT_T0_DSSD_Y74_E 61.1132 -0.00746014
+MUSETT_T0_DSSD_Y75_E 61.2304 -0.00747441
+MUSETT_T0_DSSD_Y76_E 60.5934 -0.00739669
+MUSETT_T0_DSSD_Y77_E 61.4122 -0.0074966600000000005
+MUSETT_T0_DSSD_Y78_E 61.6767 -0.0075289400000000005
+MUSETT_T0_DSSD_Y79_E 61.1145 -0.00746029
+MUSETT_T0_DSSD_Y80_E 62.3355 -0.00760932
+MUSETT_T0_DSSD_Y81_E 61.110800000000005 -0.00745984
+MUSETT_T0_DSSD_Y82_E 61.5895 -0.00751825
+MUSETT_T0_DSSD_Y83_E 62.0645 -0.007576240000000001
+MUSETT_T0_DSSD_Y84_E 61.0049 -0.00744692
+MUSETT_T0_DSSD_Y85_E 60.9003 -0.00743416
+MUSETT_T0_DSSD_Y86_E 61.8108 -0.00754524
+MUSETT_T0_DSSD_Y87_E 61.4395 -0.00749992
+MUSETT_T0_DSSD_Y88_E 61.153 -0.00746501
+MUSETT_T0_DSSD_Y89_E 61.3099 -0.00748418
+MUSETT_T0_DSSD_Y90_E 61.1603 -0.00746589
+MUSETT_T0_DSSD_Y91_E 61.4705 -0.00750377
+MUSETT_T0_DSSD_Y92_E 61.8625 -0.00755157
+MUSETT_T0_DSSD_Y93_E 61.676 -0.00752886
+MUSETT_T0_DSSD_Y94_E 62.3873 -0.00761565
+MUSETT_T0_DSSD_Y95_E 60.9044 -0.00743464
+MUSETT_T0_DSSD_Y96_E 56.3812 -0.00688248
+MUSETT_T0_DSSD_Y97_E 56.6477 -0.00691501
+MUSETT_T0_DSSD_Y98_E 56.593900000000005 -0.00690848
+MUSETT_T0_DSSD_Y99_E 56.4666 -0.0068929
+MUSETT_T0_DSSD_Y100_E 56.2051 -0.00686097
+MUSETT_T0_DSSD_Y101_E 56.3392 -0.00687735
+MUSETT_T0_DSSD_Y102_E 56.0711 -0.006844630000000001
+MUSETT_T0_DSSD_Y103_E 56.5869 -0.00690762
+MUSETT_T0_DSSD_Y104_E 56.9228 -0.006948579999999999
+MUSETT_T0_DSSD_Y105_E 56.073699999999995 -0.00684493
+MUSETT_T0_DSSD_Y106_E 57.0807 -0.00696791
+MUSETT_T0_DSSD_Y107_E 57.414300000000004 -0.00700859
+MUSETT_T0_DSSD_Y108_E 56.5825 -0.0069071
+MUSETT_T0_DSSD_Y109_E 56.5836 -0.00690725
+MUSETT_T0_DSSD_Y110_E 56.679199999999994 -0.00691888
+MUSETT_T0_DSSD_Y111_E 56.4215 -0.0068874
+MUSETT_T0_DSSD_Y112_E 56.9044 -0.00694638
+MUSETT_T0_DSSD_Y113_E 57.1278 -0.00697364
+MUSETT_T0_DSSD_Y114_E 56.9656 -0.0069538
+MUSETT_T0_DSSD_Y115_E 56.8221 -0.00693632
+MUSETT_T0_DSSD_Y116_E 57.302 -0.00699491
+MUSETT_T0_DSSD_Y117_E 56.554199999999994 -0.00690362
+MUSETT_T0_DSSD_Y118_E 56.421800000000005 -0.006887450000000001
+MUSETT_T0_DSSD_Y119_E 56.6454 -0.00691475
+MUSETT_T0_DSSD_Y120_E 57.3988 -0.00700675
+MUSETT_T0_DSSD_Y121_E 57.237300000000005 -0.0069869599999999995
+MUSETT_T0_DSSD_Y122_E 56.689 -0.0069200699999999995
+MUSETT_T0_DSSD_Y123_E 56.0116 -0.0068374199999999994
+MUSETT_T0_DSSD_Y124_E 56.467699999999994 -0.0068930300000000005
+MUSETT_T0_DSSD_Y125_E 55.9223 -0.0068265
+MUSETT_T0_DSSD_Y126_E 56.9572 -0.00695281
+MUSETT_T0_DSSD_Y127_E 56.5865 -0.00690758
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..5b24d47a3e65b665bfa9316692c46e8b7ebed112
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_T 946.164 -0.114176
+MUSETT_T0_DSSD_X1_T 956.811 -0.115529
+MUSETT_T0_DSSD_X2_T 957.988 -0.115657
+MUSETT_T0_DSSD_X3_T 972.139 -0.117409
+MUSETT_T0_DSSD_X4_T 971.761 -0.117367
+MUSETT_T0_DSSD_X5_T 971.702 -0.117353
+MUSETT_T0_DSSD_X6_T 976.911 -0.117969
+MUSETT_T0_DSSD_X7_T 979.143 -0.118246
+MUSETT_T0_DSSD_X8_T 977.915 -0.118065
+MUSETT_T0_DSSD_X9_T 981.976 -0.118546
+MUSETT_T0_DSSD_X10_T 986.577 -0.119138
+MUSETT_T0_DSSD_X11_T 986.184 -0.119075
+MUSETT_T0_DSSD_X12_T 993.563 -0.119996
+MUSETT_T0_DSSD_X13_T 978.874 -0.118174
+MUSETT_T0_DSSD_X14_T 989.894 -0.119531
+MUSETT_T0_DSSD_X15_T 1318.57 -0.118448
+MUSETT_T0_DSSD_X16_T 955.564 -0.115275
+MUSETT_T0_DSSD_X17_T 965.774 -0.116527
+MUSETT_T0_DSSD_X18_T 978.184 -0.118044
+MUSETT_T0_DSSD_X19_T 978.854 -0.118125
+MUSETT_T0_DSSD_X20_T 987.988 -0.119233
+MUSETT_T0_DSSD_X21_T 982.353 -0.118555
+MUSETT_T0_DSSD_X22_T 992.928 -0.119845
+MUSETT_T0_DSSD_X23_T 994.329 -0.120005
+MUSETT_T0_DSSD_X24_T 989.504 -0.119427
+MUSETT_T0_DSSD_X25_T 1000.62 -0.120777
+MUSETT_T0_DSSD_X26_T 1002.92 -0.121057
+MUSETT_T0_DSSD_X27_T 1006.98 -0.121545
+MUSETT_T0_DSSD_X28_T 1002.57 -0.121021
+MUSETT_T0_DSSD_X29_T 1001.43 -0.120851
+MUSETT_T0_DSSD_X30_T 997.945 -0.12045
+MUSETT_T0_DSSD_X31_T 993.524 -0.119947
+MUSETT_T0_DSSD_X32_T 872.545 -0.105192
+MUSETT_T0_DSSD_X33_T 870.474 -0.104955
+MUSETT_T0_DSSD_X34_T 890.439 -0.107397
+MUSETT_T0_DSSD_X35_T 879.216 -0.106033
+MUSETT_T0_DSSD_X36_T 881.009 -0.106227
+MUSETT_T0_DSSD_X37_T 895.366 -0.108005
+MUSETT_T0_DSSD_X38_T 897.01 -0.108195
+MUSETT_T0_DSSD_X39_T 895.47 -0.107979
+MUSETT_T0_DSSD_X40_T 898.037 -0.108302
+MUSETT_T0_DSSD_X41_T 898.361 -0.108334
+MUSETT_T0_DSSD_X42_T 897.507 -0.108243
+MUSETT_T0_DSSD_X43_T 904.455 -0.109095
+MUSETT_T0_DSSD_X44_T 899.781 -0.108505
+MUSETT_T0_DSSD_X45_T 894.363 -0.107877
+MUSETT_T0_DSSD_X46_T 896.817 -0.108187
+MUSETT_T0_DSSD_X47_T 930.792 -0.10826
+MUSETT_T0_DSSD_X48_T 884.648 -0.106556
+MUSETT_T0_DSSD_X49_T 887.836 -0.106942
+MUSETT_T0_DSSD_X50_T 893.25 -0.107622
+MUSETT_T0_DSSD_X51_T 901.75 -0.109464
+MUSETT_T0_DSSD_X52_T 907.099 -0.109295
+MUSETT_T0_DSSD_X53_T 909.979 -0.109652
+MUSETT_T0_DSSD_X54_T 912.526 -0.109955
+MUSETT_T0_DSSD_X55_T 916.597 -0.110458
+MUSETT_T0_DSSD_X56_T 925.24 -0.111499
+MUSETT_T0_DSSD_X57_T 916.715 -0.110456
+MUSETT_T0_DSSD_X58_T 924.251 -0.111378
+MUSETT_T0_DSSD_X59_T 928.786 -0.111943
+MUSETT_T0_DSSD_X60_T 935.878 -0.112807
+MUSETT_T0_DSSD_X61_T 938.667 -0.11314
+MUSETT_T0_DSSD_X62_T 940.288 -0.113338
+MUSETT_T0_DSSD_X63_T 929.111 -0.111982
+MUSETT_T0_DSSD_X64_T 957.51 -0.115846
+MUSETT_T0_DSSD_X65_T 962.646 -0.11646
+MUSETT_T0_DSSD_X66_T 972.344 -0.117644
+MUSETT_T0_DSSD_X67_T 973.464 -0.117791
+MUSETT_T0_DSSD_X68_T 976.904 -0.118174
+MUSETT_T0_DSSD_X69_T 989.493 -0.119717
+MUSETT_T0_DSSD_X70_T 993.895 -0.120284
+MUSETT_T0_DSSD_X71_T 995.117 -0.120426
+MUSETT_T0_DSSD_X72_T 1006.3 -0.121763
+MUSETT_T0_DSSD_X73_T 987.403 -0.119445
+MUSETT_T0_DSSD_X74_T 1004.54 -0.121535
+MUSETT_T0_DSSD_X75_T 995.118 -0.120381
+MUSETT_T0_DSSD_X76_T 1002.39 -0.121262
+MUSETT_T0_DSSD_X77_T 1006.49 -0.121766
+MUSETT_T0_DSSD_X78_T 997.059 -0.120615
+MUSETT_T0_DSSD_X79_T 1377.74 -0.120952
+MUSETT_T0_DSSD_X80_T 923.114 -0.111515
+MUSETT_T0_DSSD_X81_T 932.866 -0.112746
+MUSETT_T0_DSSD_X82_T 924.928 -0.111774
+MUSETT_T0_DSSD_X83_T 937.265 -0.113281
+MUSETT_T0_DSSD_X84_T 930.752 -0.112468
+MUSETT_T0_DSSD_X85_T 941.628 -0.113819
+MUSETT_T0_DSSD_X86_T 949.998 -0.114818
+MUSETT_T0_DSSD_X87_T 943.027 -0.113978
+MUSETT_T0_DSSD_X88_T 949.721 -0.114813
+MUSETT_T0_DSSD_X89_T 957.242 -0.115728
+MUSETT_T0_DSSD_X90_T 964.815 -0.11664
+MUSETT_T0_DSSD_X91_T 961.466 -0.11625
+MUSETT_T0_DSSD_X92_T 961.749 -0.116299
+MUSETT_T0_DSSD_X93_T 960.655 -0.116152
+MUSETT_T0_DSSD_X94_T 974.674 -0.117868
+MUSETT_T0_DSSD_X95_T 992.705 -0.116744
+MUSETT_T0_DSSD_X96_T 868.269 -0.105013
+MUSETT_T0_DSSD_X97_T 877.648 -0.106169
+MUSETT_T0_DSSD_X98_T 878.241 -0.106212
+MUSETT_T0_DSSD_X99_T 883.994 -0.106905
+MUSETT_T0_DSSD_X100_T 893.321 -0.108043
+MUSETT_T0_DSSD_X101_T 900.56 -0.108935
+MUSETT_T0_DSSD_X102_T 896.766 -0.108442
+MUSETT_T0_DSSD_X103_T 894.903 -0.108194
+MUSETT_T0_DSSD_X104_T 904.239 -0.109336
+MUSETT_T0_DSSD_X105_T 902.018 -0.109053
+MUSETT_T0_DSSD_X106_T 907.673 -0.109771
+MUSETT_T0_DSSD_X107_T 904.96 -0.109449
+MUSETT_T0_DSSD_X108_T 902.795 -0.109128
+MUSETT_T0_DSSD_X109_T 906.335 -0.109641
+MUSETT_T0_DSSD_X110_T 903.029 -0.109177
+MUSETT_T0_DSSD_X111_T 912.908 -0.109478
+MUSETT_T0_DSSD_X112_T 888.694 -0.107364
+MUSETT_T0_DSSD_X113_T 891.736 -0.107748
+MUSETT_T0_DSSD_X114_T 891.957 -0.107782
+MUSETT_T0_DSSD_X115_T 901.87 -0.109007
+MUSETT_T0_DSSD_X116_T 905.48 -0.109423
+MUSETT_T0_DSSD_X117_T 899.196 -0.108648
+MUSETT_T0_DSSD_X118_T 913.782 -0.110413
+MUSETT_T0_DSSD_X119_T 914.779 -0.110579
+MUSETT_T0_DSSD_X120_T 909.004 -0.109898
+MUSETT_T0_DSSD_X121_T 914.282 -0.1105
+MUSETT_T0_DSSD_X122_T 922.657 -0.111529
+MUSETT_T0_DSSD_X123_T 914.822 -0.110604
+MUSETT_T0_DSSD_X124_T 917.977 -0.110972
+MUSETT_T0_DSSD_X125_T 919.687 -0.11118
+MUSETT_T0_DSSD_X126_T 914.922 -0.110613
+MUSETT_T0_DSSD_X127_T 925.329 -0.111151
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..44caa7bd7c0575c1eae4de035fb0398b5e399796
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 942.169 -0.114033
+MUSETT_T0_DSSD_Y2_T 941.094 -0.113921
+MUSETT_T0_DSSD_Y3_T 959.045 -0.116104
+MUSETT_T0_DSSD_Y4_T 954.629 -0.115563
+MUSETT_T0_DSSD_Y5_T 970.443 -0.117481
+MUSETT_T0_DSSD_Y6_T 969.234 -0.117339
+MUSETT_T0_DSSD_Y7_T 966.53 -0.117018
+MUSETT_T0_DSSD_Y8_T 973.409 -0.117842
+MUSETT_T0_DSSD_Y9_T 968.923 -0.117316
+MUSETT_T0_DSSD_Y10_T 971.661 -0.117632
+MUSETT_T0_DSSD_Y11_T 977.841 -0.118398
+MUSETT_T0_DSSD_Y12_T 975.821 -0.11814
+MUSETT_T0_DSSD_Y13_T 971.638 -0.117633
+MUSETT_T0_DSSD_Y14_T 974.225 -0.117944
+MUSETT_T0_DSSD_Y15_T 980.805 -0.118761
+MUSETT_T0_DSSD_Y16_T 935.973 -0.113175
+MUSETT_T0_DSSD_Y17_T 944.972 -0.114309
+MUSETT_T0_DSSD_Y18_T 953.592 -0.115351
+MUSETT_T0_DSSD_Y19_T 945.492 -0.11436
+MUSETT_T0_DSSD_Y20_T 948.066 -0.114686
+MUSETT_T0_DSSD_Y21_T 951.558 -0.115103
+MUSETT_T0_DSSD_Y22_T 957.545 -0.115832
+MUSETT_T0_DSSD_Y23_T 957.576 -0.115841
+MUSETT_T0_DSSD_Y24_T 962.251 -0.116398
+MUSETT_T0_DSSD_Y25_T 960.479 -0.116195
+MUSETT_T0_DSSD_Y26_T 957.007 -0.115516
+MUSETT_T0_DSSD_Y27_T 971.646 -0.117562
+MUSETT_T0_DSSD_Y28_T 974.064 -0.117834
+MUSETT_T0_DSSD_Y29_T 968.974 -0.11722
+MUSETT_T0_DSSD_Y30_T 971.944 -0.11759
+MUSETT_T0_DSSD_Y31_T 966.713 -0.116928
+MUSETT_T0_DSSD_Y32_T 869.43 -0.105131
+MUSETT_T0_DSSD_Y33_T 868.989 -0.105113
+MUSETT_T0_DSSD_Y34_T 886.133 -0.107174
+MUSETT_T0_DSSD_Y35_T 876.002 -0.105955
+MUSETT_T0_DSSD_Y36_T 887.653 -0.107363
+MUSETT_T0_DSSD_Y37_T 886.897 -0.107278
+MUSETT_T0_DSSD_Y38_T 887.559 -0.107347
+MUSETT_T0_DSSD_Y39_T 905.525 -0.109567
+MUSETT_T0_DSSD_Y40_T 903.288 -0.109268
+MUSETT_T0_DSSD_Y41_T 901.488 -0.109045
+MUSETT_T0_DSSD_Y42_T 900.453 -0.108924
+MUSETT_T0_DSSD_Y43_T 911.154 -0.110196
+MUSETT_T0_DSSD_Y44_T 908.4 -0.109895
+MUSETT_T0_DSSD_Y45_T 903.164 -0.10924
+MUSETT_T0_DSSD_Y46_T 913.419 -0.110513
+MUSETT_T0_DSSD_Y47_T 901.371 -0.109056
+MUSETT_T0_DSSD_Y48_T 855.809 -0.103507
+MUSETT_T0_DSSD_Y49_T 866.963 -0.104888
+MUSETT_T0_DSSD_Y50_T 862.301 -0.104347
+MUSETT_T0_DSSD_Y51_T 879.214 -0.106391
+MUSETT_T0_DSSD_Y52_T 881.851 -0.106718
+MUSETT_T0_DSSD_Y53_T 883.115 -0.106878
+MUSETT_T0_DSSD_Y54_T 879.659 -0.106441
+MUSETT_T0_DSSD_Y55_T 887.765 -0.107426
+MUSETT_T0_DSSD_Y56_T 889.179 -0.107608
+MUSETT_T0_DSSD_Y57_T 893.434 -0.108136
+MUSETT_T0_DSSD_Y58_T 900.612 -0.109012
+MUSETT_T0_DSSD_Y59_T 899.41 -0.108611
+MUSETT_T0_DSSD_Y60_T 898.225 -0.108719
+MUSETT_T0_DSSD_Y61_T 905.378 -0.109581
+MUSETT_T0_DSSD_Y62_T 899.576 -0.108895
+MUSETT_T0_DSSD_Y63_T 904.856 -0.109543
+MUSETT_T0_DSSD_Y64_T 964.166 -0.116469
+MUSETT_T0_DSSD_Y65_T 970.821 -0.117302
+MUSETT_T0_DSSD_Y66_T 976.54 -0.118012
+MUSETT_T0_DSSD_Y67_T 976.814 -0.118028
+MUSETT_T0_DSSD_Y68_T 979.621 -0.118378
+MUSETT_T0_DSSD_Y69_T 983.271 -0.118825
+MUSETT_T0_DSSD_Y70_T 982.977 -0.118781
+MUSETT_T0_DSSD_Y71_T 986.021 -0.119156
+MUSETT_T0_DSSD_Y72_T 989.88 -0.119628
+MUSETT_T0_DSSD_Y73_T 981.368 -0.118591
+MUSETT_T0_DSSD_Y74_T 990.1 -0.119656
+MUSETT_T0_DSSD_Y75_T 1000.52 -0.120924
+MUSETT_T0_DSSD_Y76_T 995.667 -0.120327
+MUSETT_T0_DSSD_Y77_T 997.754 -0.120579
+MUSETT_T0_DSSD_Y78_T 994.951 -0.120247
+MUSETT_T0_DSSD_Y79_T 1001.99 -0.121097
+MUSETT_T0_DSSD_Y80_T 970.583 -0.117145
+MUSETT_T0_DSSD_Y81_T 986.462 -0.119118
+MUSETT_T0_DSSD_Y82_T 981.625 -0.118534
+MUSETT_T0_DSSD_Y83_T 996.206 -0.12031
+MUSETT_T0_DSSD_Y84_T 1000.06 -0.120777
+MUSETT_T0_DSSD_Y85_T 1002.53 -0.121085
+MUSETT_T0_DSSD_Y86_T 998.357 -0.120569
+MUSETT_T0_DSSD_Y87_T 1008.76 -0.121839
+MUSETT_T0_DSSD_Y88_T 1004.65 -0.121339
+MUSETT_T0_DSSD_Y89_T 1015.0 -0.122592
+MUSETT_T0_DSSD_Y90_T 1025.62 -0.123897
+MUSETT_T0_DSSD_Y91_T 1025.41 -0.123866
+MUSETT_T0_DSSD_Y92_T 1020.27 -0.123256
+MUSETT_T0_DSSD_Y93_T 1024.71 -0.123786
+MUSETT_T0_DSSD_Y94_T 1021.51 -0.123408
+MUSETT_T0_DSSD_Y95_T 1016.94 -0.122879
+MUSETT_T0_DSSD_Y96_T 882.97 -0.106544
+MUSETT_T0_DSSD_Y97_T 879.326 -0.106139
+MUSETT_T0_DSSD_Y98_T 878.449 -0.106028
+MUSETT_T0_DSSD_Y99_T 894.979 -0.108041
+MUSETT_T0_DSSD_Y100_T 892.203 -0.107707
+MUSETT_T0_DSSD_Y101_T 891.015 -0.10757
+MUSETT_T0_DSSD_Y102_T 895.424 -0.108105
+MUSETT_T0_DSSD_Y103_T 907.578 -0.10959
+MUSETT_T0_DSSD_Y104_T 902.147 -0.108916
+MUSETT_T0_DSSD_Y105_T 915.536 -0.110544
+MUSETT_T0_DSSD_Y106_T 910.897 -0.109981
+MUSETT_T0_DSSD_Y107_T 915.092 -0.11051
+MUSETT_T0_DSSD_Y108_T 914.664 -0.110421
+MUSETT_T0_DSSD_Y109_T 910.113 -0.109894
+MUSETT_T0_DSSD_Y110_T 915.675 -0.110572
+MUSETT_T0_DSSD_Y111_T 917.59 -0.110803
+MUSETT_T0_DSSD_Y112_T 892.441 -0.107535
+MUSETT_T0_DSSD_Y113_T 899.913 -0.108466
+MUSETT_T0_DSSD_Y114_T 899.438 -0.108438
+MUSETT_T0_DSSD_Y115_T 905.439 -0.109158
+MUSETT_T0_DSSD_Y116_T 917.108 -0.110566
+MUSETT_T0_DSSD_Y117_T 910.331 -0.109757
+MUSETT_T0_DSSD_Y118_T 930.135 -0.112167
+MUSETT_T0_DSSD_Y119_T 921.847 -0.111146
+MUSETT_T0_DSSD_Y120_T 932.043 -0.112407
+MUSETT_T0_DSSD_Y121_T 931.497 -0.112337
+MUSETT_T0_DSSD_Y122_T 933.275 -0.112539
+MUSETT_T0_DSSD_Y123_T 936.749 -0.112978
+MUSETT_T0_DSSD_Y124_T 931.392 -0.112316
+MUSETT_T0_DSSD_Y125_T 930.352 -0.112192
+MUSETT_T0_DSSD_Y126_T 927.302 -0.111821
+MUSETT_T0_DSSD_Y127_T 930.24 -0.112162
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..25335e8eb5d450a665765bd0a4d5645c6ba6855e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E -62.3845 0.00761517
+MUSETT_T1_DSSD_X1_E -62.2104 0.00759389
+MUSETT_T1_DSSD_X2_E -62.2735 0.00760161
+MUSETT_T1_DSSD_X3_E -62.0191 0.007570599999999999
+MUSETT_T1_DSSD_X4_E -61.4765 0.00750432
+MUSETT_T1_DSSD_X5_E -61.597 0.00751908
+MUSETT_T1_DSSD_X6_E -62.319300000000005 0.00760717
+MUSETT_T1_DSSD_X7_E -61.4163 0.00749697
+MUSETT_T1_DSSD_X8_E -61.3271 0.00748611
+MUSETT_T1_DSSD_X9_E -61.4865 0.00750558
+MUSETT_T1_DSSD_X10_E -61.6734 0.00752832
+MUSETT_T1_DSSD_X11_E -61.7326 0.00753556
+MUSETT_T1_DSSD_X12_E -61.9632 0.00756376
+MUSETT_T1_DSSD_X13_E -61.4182 0.00749719
+MUSETT_T1_DSSD_X14_E -61.209 0.007471650000000001
+MUSETT_T1_DSSD_X15_E -61.9876 0.00756667
+MUSETT_T1_DSSD_X16_E -62.5544 0.007635919999999999
+MUSETT_T1_DSSD_X17_E -61.756 0.00753848
+MUSETT_T1_DSSD_X18_E -62.2641 0.00760048
+MUSETT_T1_DSSD_X19_E -61.9537 0.007562579999999999
+MUSETT_T1_DSSD_X20_E -62.913199999999996 0.0076796699999999996
+MUSETT_T1_DSSD_X21_E -62.1209 0.007583
+MUSETT_T1_DSSD_X22_E -62.709 0.00765477
+MUSETT_T1_DSSD_X23_E -62.39 0.00761587
+MUSETT_T1_DSSD_X24_E -62.229699999999994 0.0075962899999999995
+MUSETT_T1_DSSD_X25_E -61.997699999999995 0.00756794
+MUSETT_T1_DSSD_X26_E -62.0365 0.0075726199999999995
+MUSETT_T1_DSSD_X27_E -61.752 0.0075379800000000005
+MUSETT_T1_DSSD_X28_E -61.6556 0.00752623
+MUSETT_T1_DSSD_X29_E -62.7675 0.007661940000000001
+MUSETT_T1_DSSD_X30_E -61.803 0.00754422
+MUSETT_T1_DSSD_X31_E -62.7618 0.00766122
+MUSETT_T1_DSSD_X32_E -58.3035 0.00711703
+MUSETT_T1_DSSD_X33_E -58.3725 0.00712549
+MUSETT_T1_DSSD_X34_E -58.3599 0.00712397
+MUSETT_T1_DSSD_X35_E -58.2622 0.00711204
+MUSETT_T1_DSSD_X36_E -58.041 0.0070850900000000005
+MUSETT_T1_DSSD_X37_E -58.261 0.0071116700000000005
+MUSETT_T1_DSSD_X38_E -58.055699999999995 0.0070867000000000005
+MUSETT_T1_DSSD_X39_E -58.647400000000005 0.00715904
+MUSETT_T1_DSSD_X40_E -58.203900000000004 0.00710488
+MUSETT_T1_DSSD_X41_E -58.8939 0.00718895
+MUSETT_T1_DSSD_X42_E -58.0515 0.00708632
+MUSETT_T1_DSSD_X43_E -58.5394 0.0071458599999999995
+MUSETT_T1_DSSD_X44_E -58.5544 0.00714758
+MUSETT_T1_DSSD_X45_E -59.3359 0.00724309
+MUSETT_T1_DSSD_X46_E -58.7258 0.00716875
+MUSETT_T1_DSSD_X47_E -58.4657 0.007136770000000001
+MUSETT_T1_DSSD_X48_E -57.8688 0.0070639399999999995
+MUSETT_T1_DSSD_X49_E -58.5298 0.00714462
+MUSETT_T1_DSSD_X50_E -57.9728 0.00707665
+MUSETT_T1_DSSD_X51_E -57.7251 0.00704637
+MUSETT_T1_DSSD_X52_E -57.9466 0.00707339
+MUSETT_T1_DSSD_X53_E -57.9195 0.00707013
+MUSETT_T1_DSSD_X54_E -57.971 0.00707643
+MUSETT_T1_DSSD_X55_E -57.8129 0.00705708
+MUSETT_T1_DSSD_X56_E -58.0595 0.00708722
+MUSETT_T1_DSSD_X57_E -57.8609 0.00706295
+MUSETT_T1_DSSD_X58_E -58.481199999999994 0.0071386900000000005
+MUSETT_T1_DSSD_X59_E -57.6735 0.00704005
+MUSETT_T1_DSSD_X60_E -57.7339 0.007047469999999999
+MUSETT_T1_DSSD_X61_E -58.243 0.00710961
+MUSETT_T1_DSSD_X62_E -58.1142 0.00709391
+MUSETT_T1_DSSD_X63_E -58.2467 0.0071100700000000005
+MUSETT_T1_DSSD_X64_E -61.0093 0.00744733
+MUSETT_T1_DSSD_X65_E -61.6307 0.00752317
+MUSETT_T1_DSSD_X66_E -61.4718 0.00750372
+MUSETT_T1_DSSD_X67_E -61.7169 0.0075336100000000005
+MUSETT_T1_DSSD_X68_E -61.8935 0.00755524
+MUSETT_T1_DSSD_X69_E -61.3286 0.007486329999999999
+MUSETT_T1_DSSD_X70_E -61.623400000000004 0.0075222100000000005
+MUSETT_T1_DSSD_X71_E -61.9118 0.00755752
+MUSETT_T1_DSSD_X72_E -61.2791 0.007480260000000001
+MUSETT_T1_DSSD_X73_E -62.4381 0.007621749999999999
+MUSETT_T1_DSSD_X74_E -61.9378 0.0075606200000000005
+MUSETT_T1_DSSD_X75_E -62.0787 0.0075778600000000005
+MUSETT_T1_DSSD_X76_E -61.4964 0.00750682
+MUSETT_T1_DSSD_X77_E -61.721199999999996 0.00753417
+MUSETT_T1_DSSD_X78_E -61.3211 0.00748534
+MUSETT_T1_DSSD_X79_E -61.9309 0.00755971
+MUSETT_T1_DSSD_X80_E -63.4259 0.007742300000000001
+MUSETT_T1_DSSD_X81_E -63.726 0.00777898
+MUSETT_T1_DSSD_X82_E -64.2118 0.00783822
+MUSETT_T1_DSSD_X83_E -63.931 0.00780396
+MUSETT_T1_DSSD_X84_E -64.1147 0.007826399999999999
+MUSETT_T1_DSSD_X85_E -63.8814 0.0077979
+MUSETT_T1_DSSD_X86_E -64.0891 0.00782321
+MUSETT_T1_DSSD_X87_E -64.226 0.00783998
+MUSETT_T1_DSSD_X88_E -64.1628 0.00783225
+MUSETT_T1_DSSD_X89_E -64.2273 0.00784014
+MUSETT_T1_DSSD_X90_E -63.3243 0.0077299199999999995
+MUSETT_T1_DSSD_X91_E -63.377900000000004 0.00773646
+MUSETT_T1_DSSD_X92_E -64.5924 0.007884750000000001
+MUSETT_T1_DSSD_X93_E -64.0512 0.00781864
+MUSETT_T1_DSSD_X94_E -63.7853 0.00778625
+MUSETT_T1_DSSD_X95_E -63.4251 0.00774221
+MUSETT_T1_DSSD_X96_E -56.2771 0.00686963
+MUSETT_T1_DSSD_X97_E -56.696400000000004 0.00692087
+MUSETT_T1_DSSD_X98_E -56.5242 0.00689973
+MUSETT_T1_DSSD_X99_E -56.4219 0.00688734
+MUSETT_T1_DSSD_X100_E -56.5169 0.00689896
+MUSETT_T1_DSSD_X101_E -56.9871 0.00695627
+MUSETT_T1_DSSD_X102_E -57.3419 0.00699957
+MUSETT_T1_DSSD_X103_E -56.5904 0.00690785
+MUSETT_T1_DSSD_X104_E -56.8425 0.00693859
+MUSETT_T1_DSSD_X105_E -57.029900000000005 0.00696151
+MUSETT_T1_DSSD_X106_E -57.8401 0.00706034
+MUSETT_T1_DSSD_X107_E -57.7541 0.007049870000000001
+MUSETT_T1_DSSD_X108_E -57.7184 0.00704556
+MUSETT_T1_DSSD_X109_E -57.495 0.00701832
+MUSETT_T1_DSSD_X110_E -57.6737 0.0070401
+MUSETT_T1_DSSD_X111_E -58.035199999999996 0.00708421
+MUSETT_T1_DSSD_X112_E -57.2543 0.00698888
+MUSETT_T1_DSSD_X113_E -57.309599999999996 0.00699565
+MUSETT_T1_DSSD_X114_E -56.8137 0.00693513
+MUSETT_T1_DSSD_X115_E -57.6843 0.00704141
+MUSETT_T1_DSSD_X116_E -57.2736 0.00699128
+MUSETT_T1_DSSD_X117_E -57.2633 0.0069900200000000004
+MUSETT_T1_DSSD_X118_E -56.331199999999995 0.00687626
+MUSETT_T1_DSSD_X119_E -58.331 0.00712035
+MUSETT_T1_DSSD_X120_E -57.4483 0.0070126
+MUSETT_T1_DSSD_X121_E -57.7637 0.00705109
+MUSETT_T1_DSSD_X122_E -57.724199999999996 0.00704628
+MUSETT_T1_DSSD_X123_E -57.4583 0.007013849999999999
+MUSETT_T1_DSSD_X124_E -57.5865 0.0070294699999999995
+MUSETT_T1_DSSD_X125_E -57.6715 0.00703982
+MUSETT_T1_DSSD_X126_E -57.0766 0.0069672
+MUSETT_T1_DSSD_X127_E -57.8189 0.007057839999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..4f2ff00b21e3e2cd35eb213bcf9ddf7431b4902a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_E 59.6282 -0.0072789099999999995
+MUSETT_T1_DSSD_Y1_E 60.484199999999994 -0.0073834
+MUSETT_T1_DSSD_Y2_E 59.719300000000004 -0.00729006
+MUSETT_T1_DSSD_Y3_E 59.358 -0.00724601
+MUSETT_T1_DSSD_Y4_E 60.2094 -0.00734991
+MUSETT_T1_DSSD_Y5_E 60.023900000000005 -0.00732724
+MUSETT_T1_DSSD_Y6_E 59.4274 -0.007254419999999999
+MUSETT_T1_DSSD_Y7_E 59.479800000000004 -0.00726081
+MUSETT_T1_DSSD_Y8_E 59.4726 -0.00725995
+MUSETT_T1_DSSD_Y9_E 59.6615 -0.00728303
+MUSETT_T1_DSSD_Y10_E 59.523 -0.0072661
+MUSETT_T1_DSSD_Y11_E 59.5207 -0.00726582
+MUSETT_T1_DSSD_Y12_E 60.207699999999996 -0.007349700000000001
+MUSETT_T1_DSSD_Y13_E 59.2816 -0.00723662
+MUSETT_T1_DSSD_Y14_E 59.4995 -0.0072632899999999995
+MUSETT_T1_DSSD_Y15_E 59.822199999999995 -0.00730262
+MUSETT_T1_DSSD_Y16_E 62.231 -0.00759672
+MUSETT_T1_DSSD_Y17_E 62.5176 -0.00763166
+MUSETT_T1_DSSD_Y18_E 62.4625 -0.00762493
+MUSETT_T1_DSSD_Y19_E 62.047 -0.00757417
+MUSETT_T1_DSSD_Y20_E 62.207300000000004 -0.00759375
+MUSETT_T1_DSSD_Y21_E 62.3629 -0.0076127700000000005
+MUSETT_T1_DSSD_Y22_E -10.0 0.0
+MUSETT_T1_DSSD_Y23_E 62.0175 -0.00757064
+MUSETT_T1_DSSD_Y24_E 61.7139 -0.00753355
+MUSETT_T1_DSSD_Y25_E 61.4491 -0.007501229999999999
+MUSETT_T1_DSSD_Y26_E 62.0861 -0.00757898
+MUSETT_T1_DSSD_Y27_E 62.0777 -0.00757796
+MUSETT_T1_DSSD_Y28_E 62.2876 -0.00760362
+MUSETT_T1_DSSD_Y29_E 62.0279 -0.0075719
+MUSETT_T1_DSSD_Y30_E 61.6686 -0.00752799
+MUSETT_T1_DSSD_Y31_E 61.8048 -0.00754468
+MUSETT_T1_DSSD_Y32_E 56.1157 -0.006850220000000001
+MUSETT_T1_DSSD_Y33_E 56.2557 -0.00686728
+MUSETT_T1_DSSD_Y34_E 55.6349 -0.00679153
+MUSETT_T1_DSSD_Y35_E 55.6409 -0.00679227
+MUSETT_T1_DSSD_Y36_E 55.3843 -0.006760919999999999
+MUSETT_T1_DSSD_Y37_E 56.4204 -0.006887450000000001
+MUSETT_T1_DSSD_Y38_E 55.380900000000004 -0.00676051
+MUSETT_T1_DSSD_Y39_E 55.9348 -0.00682817
+MUSETT_T1_DSSD_Y40_E 56.0365 -0.00684053
+MUSETT_T1_DSSD_Y41_E 56.1492 -0.0068543399999999996
+MUSETT_T1_DSSD_Y42_E 55.5099 -0.00677625
+MUSETT_T1_DSSD_Y43_E 56.6373 -0.0069139
+MUSETT_T1_DSSD_Y44_E 55.6379 -0.00679188
+MUSETT_T1_DSSD_Y45_E 55.7303 -0.00680315
+MUSETT_T1_DSSD_Y46_E 55.751599999999996 -0.00680582
+MUSETT_T1_DSSD_Y47_E 55.7609 -0.00680693
+MUSETT_T1_DSSD_Y48_E 57.1947 -0.0069819
+MUSETT_T1_DSSD_Y49_E 56.616699999999994 -0.00691132
+MUSETT_T1_DSSD_Y50_E 56.5651 -0.0069050399999999994
+MUSETT_T1_DSSD_Y51_E 56.0075 -0.0068369400000000006
+MUSETT_T1_DSSD_Y52_E 56.8389 -0.0069384600000000005
+MUSETT_T1_DSSD_Y53_E 56.277 -0.00686982
+MUSETT_T1_DSSD_Y54_E 56.4758 -0.00689415
+MUSETT_T1_DSSD_Y55_E 56.3949 -0.00688425
+MUSETT_T1_DSSD_Y56_E 57.2861 -0.0069930700000000005
+MUSETT_T1_DSSD_Y57_E 57.107699999999994 -0.00697128
+MUSETT_T1_DSSD_Y58_E 56.704699999999995 -0.00692209
+MUSETT_T1_DSSD_Y59_E 57.3292 -0.00699832
+MUSETT_T1_DSSD_Y60_E 57.3988 -0.007006770000000001
+MUSETT_T1_DSSD_Y61_E 57.025800000000004 -0.0069612499999999996
+MUSETT_T1_DSSD_Y62_E 56.1794 -0.00685794
+MUSETT_T1_DSSD_Y63_E 57.2945 -0.00699407
+MUSETT_T1_DSSD_Y64_E 61.036 -0.00745079
+MUSETT_T1_DSSD_Y65_E 61.615199999999994 -0.00752147
+MUSETT_T1_DSSD_Y66_E 61.3277 -0.00748646
+MUSETT_T1_DSSD_Y67_E 61.6169 -0.00752169
+MUSETT_T1_DSSD_Y68_E 61.2895 -0.00748175
+MUSETT_T1_DSSD_Y69_E 60.072300000000006 -0.007333129999999999
+MUSETT_T1_DSSD_Y70_E 60.461800000000004 -0.00738072
+MUSETT_T1_DSSD_Y71_E 61.1475 -0.00746439
+MUSETT_T1_DSSD_Y72_E 60.3246 -0.00736394
+MUSETT_T1_DSSD_Y73_E 61.243300000000005 -0.00747609
+MUSETT_T1_DSSD_Y74_E 60.892199999999995 -0.00743321
+MUSETT_T1_DSSD_Y75_E 60.3626 -0.00736861
+MUSETT_T1_DSSD_Y76_E 60.5634 -0.0073931199999999996
+MUSETT_T1_DSSD_Y77_E 60.9695 -0.00744272
+MUSETT_T1_DSSD_Y78_E 60.632 -0.00740146
+MUSETT_T1_DSSD_Y79_E 61.3545 -0.0074896599999999995
+MUSETT_T1_DSSD_Y80_E 61.129 -0.00746218
+MUSETT_T1_DSSD_Y81_E 61.1424 -0.00746376
+MUSETT_T1_DSSD_Y82_E 61.0982 -0.00745836
+MUSETT_T1_DSSD_Y83_E 60.505 -0.00738602
+MUSETT_T1_DSSD_Y84_E 60.4756 -0.00738236
+MUSETT_T1_DSSD_Y85_E 61.1983 -0.00747058
+MUSETT_T1_DSSD_Y86_E 60.653800000000004 -0.00740421
+MUSETT_T1_DSSD_Y87_E 60.6103 -0.007398869999999999
+MUSETT_T1_DSSD_Y88_E 61.0846 -0.00745673
+MUSETT_T1_DSSD_Y89_E 61.2816 -0.00748082
+MUSETT_T1_DSSD_Y90_E 60.7595 -0.00741709
+MUSETT_T1_DSSD_Y91_E 60.908699999999996 -0.00743532
+MUSETT_T1_DSSD_Y92_E 60.5201 -0.00738782
+MUSETT_T1_DSSD_Y93_E 61.3305 -0.00748678
+MUSETT_T1_DSSD_Y94_E 61.6099 -0.00752084
+MUSETT_T1_DSSD_Y95_E 60.752199999999995 -0.00741622
+MUSETT_T1_DSSD_Y96_E 55.8662 -0.0068197200000000005
+MUSETT_T1_DSSD_Y97_E 55.5101 -0.006776290000000001
+MUSETT_T1_DSSD_Y98_E 55.7391 -0.00680422
+MUSETT_T1_DSSD_Y99_E 55.6027 -0.00678757
+MUSETT_T1_DSSD_Y100_E 55.7795 -0.006809160000000001
+MUSETT_T1_DSSD_Y101_E 55.4526 -0.00676931
+MUSETT_T1_DSSD_Y102_E 55.433800000000005 -0.00676695
+MUSETT_T1_DSSD_Y103_E 56.1758 -0.00685753
+MUSETT_T1_DSSD_Y104_E 55.295 -0.00675003
+MUSETT_T1_DSSD_Y105_E 55.2676 -0.00674664
+MUSETT_T1_DSSD_Y106_E 55.9134 -0.00682548
+MUSETT_T1_DSSD_Y107_E 55.219 -0.00674076
+MUSETT_T1_DSSD_Y108_E 55.914699999999996 -0.00682563
+MUSETT_T1_DSSD_Y109_E 56.088300000000004 -0.00684683
+MUSETT_T1_DSSD_Y110_E 56.128699999999995 -0.00685177
+MUSETT_T1_DSSD_Y111_E 56.579699999999995 -0.006906799999999999
+MUSETT_T1_DSSD_Y112_E 54.7919 -0.006688609999999999
+MUSETT_T1_DSSD_Y113_E 55.5735 -0.00678397
+MUSETT_T1_DSSD_Y114_E 55.1773 -0.00673564
+MUSETT_T1_DSSD_Y115_E 55.0659 -0.0067220000000000005
+MUSETT_T1_DSSD_Y116_E 55.2711 -0.00674706
+MUSETT_T1_DSSD_Y117_E 55.4264 -0.00676607
+MUSETT_T1_DSSD_Y118_E 55.3089 -0.006751699999999999
+MUSETT_T1_DSSD_Y119_E 55.5605 -0.00678242
+MUSETT_T1_DSSD_Y120_E 55.8284 -0.0068151
+MUSETT_T1_DSSD_Y121_E 55.4619 -0.00677042
+MUSETT_T1_DSSD_Y122_E 54.836400000000005 -0.00669404
+MUSETT_T1_DSSD_Y123_E 55.154199999999996 -0.006732770000000001
+MUSETT_T1_DSSD_Y124_E 55.2185 -0.00674067
+MUSETT_T1_DSSD_Y125_E 55.1989 -0.00673821
+MUSETT_T1_DSSD_Y126_E 55.347199999999994 -0.00675638
+MUSETT_T1_DSSD_Y127_E 56.2705 -0.00686904
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2dbc58f87a8a21d156c060f3c44a33c496cfccc2
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_T 926.786 -0.11232
+MUSETT_T1_DSSD_X1_T 940.575 -0.114015
+MUSETT_T1_DSSD_X2_T 943.089 -0.114341
+MUSETT_T1_DSSD_X3_T 954.304 -0.115712
+MUSETT_T1_DSSD_X4_T 954.653 -0.115744
+MUSETT_T1_DSSD_X5_T 956.573 -0.115962
+MUSETT_T1_DSSD_X6_T 970.061 -0.117589
+MUSETT_T1_DSSD_X7_T 965.116 -0.116998
+MUSETT_T1_DSSD_X8_T 969.325 -0.117498
+MUSETT_T1_DSSD_X9_T 978.231 -0.118577
+MUSETT_T1_DSSD_X10_T 974.593 -0.118143
+MUSETT_T1_DSSD_X11_T 974.146 -0.118071
+MUSETT_T1_DSSD_X12_T 986.191 -0.11954
+MUSETT_T1_DSSD_X13_T 986.678 -0.119597
+MUSETT_T1_DSSD_X14_T 983.727 -0.119236
+MUSETT_T1_DSSD_X15_T 1371.19 -0.119179
+MUSETT_T1_DSSD_X16_T 922.557 -0.111777
+MUSETT_T1_DSSD_X17_T 945.525 -0.114612
+MUSETT_T1_DSSD_X18_T 946.378 -0.114738
+MUSETT_T1_DSSD_X19_T 943.86 -0.114439
+MUSETT_T1_DSSD_X20_T 952.199 -0.115464
+MUSETT_T1_DSSD_X21_T 965.45 -0.117052
+MUSETT_T1_DSSD_X22_T 954.947 -0.115762
+MUSETT_T1_DSSD_X23_T 971.26 -0.117739
+MUSETT_T1_DSSD_X24_T 969.364 -0.117531
+MUSETT_T1_DSSD_X25_T 972.531 -0.117923
+MUSETT_T1_DSSD_X26_T 971.171 -0.117737
+MUSETT_T1_DSSD_X27_T 974.954 -0.11821
+MUSETT_T1_DSSD_X28_T 978.834 -0.118677
+MUSETT_T1_DSSD_X29_T 975.807 -0.118324
+MUSETT_T1_DSSD_X30_T 974.804 -0.118198
+MUSETT_T1_DSSD_X31_T 984.936 -0.119148
+MUSETT_T1_DSSD_X32_T 875.904 -0.106165
+MUSETT_T1_DSSD_X33_T 875.79 -0.10618
+MUSETT_T1_DSSD_X34_T 891.706 -0.108064
+MUSETT_T1_DSSD_X35_T 873.845 -0.105941
+MUSETT_T1_DSSD_X36_T 891.762 -0.108105
+MUSETT_T1_DSSD_X37_T 897.589 -0.108823
+MUSETT_T1_DSSD_X38_T 889.745 -0.107861
+MUSETT_T1_DSSD_X39_T 894.521 -0.10842
+MUSETT_T1_DSSD_X40_T 897.332 -0.108779
+MUSETT_T1_DSSD_X41_T 897.319 -0.108754
+MUSETT_T1_DSSD_X42_T 905.732 -0.109783
+MUSETT_T1_DSSD_X43_T 897.833 -0.108855
+MUSETT_T1_DSSD_X44_T 907.458 -0.110019
+MUSETT_T1_DSSD_X45_T 905.696 -0.109854
+MUSETT_T1_DSSD_X46_T 903.207 -0.109528
+MUSETT_T1_DSSD_X47_T 918.195 -0.110055
+MUSETT_T1_DSSD_X48_T 865.632 -0.104838
+MUSETT_T1_DSSD_X49_T 871.03 -0.105455
+MUSETT_T1_DSSD_X50_T 883.706 -0.107015
+MUSETT_T1_DSSD_X51_T 886.118 -0.107338
+MUSETT_T1_DSSD_X52_T 888.977 -0.107685
+MUSETT_T1_DSSD_X53_T 889.176 -0.107699
+MUSETT_T1_DSSD_X54_T 893.053 -0.10819
+MUSETT_T1_DSSD_X55_T 898.958 -0.108878
+MUSETT_T1_DSSD_X56_T 905.343 -0.1097
+MUSETT_T1_DSSD_X57_T 901.014 -0.10916
+MUSETT_T1_DSSD_X58_T 909.801 -0.110244
+MUSETT_T1_DSSD_X59_T 902.356 -0.109308
+MUSETT_T1_DSSD_X60_T 915.181 -0.110894
+MUSETT_T1_DSSD_X61_T 906.646 -0.109867
+MUSETT_T1_DSSD_X62_T 906.177 -0.109791
+MUSETT_T1_DSSD_X63_T 917.322 -0.110777
+MUSETT_T1_DSSD_X64_T 947.375 -0.114723
+MUSETT_T1_DSSD_X65_T 949.155 -0.114949
+MUSETT_T1_DSSD_X66_T 962.658 -0.116629
+MUSETT_T1_DSSD_X67_T 962.29 -0.116557
+MUSETT_T1_DSSD_X68_T 964.501 -0.116827
+MUSETT_T1_DSSD_X69_T 972.559 -0.117811
+MUSETT_T1_DSSD_X70_T 972.248 -0.117758
+MUSETT_T1_DSSD_X71_T 977.48 -0.118392
+MUSETT_T1_DSSD_X72_T 974.838 -0.118063
+MUSETT_T1_DSSD_X73_T 989.581 -0.119853
+MUSETT_T1_DSSD_X74_T 985.59 -0.119377
+MUSETT_T1_DSSD_X75_T 983.734 -0.119141
+MUSETT_T1_DSSD_X76_T 990.699 -0.119982
+MUSETT_T1_DSSD_X77_T 992.465 -0.120199
+MUSETT_T1_DSSD_X78_T 992.485 -0.1202
+MUSETT_T1_DSSD_X79_T 1375.52 -0.120722
+MUSETT_T1_DSSD_X80_T 972.687 -0.117775
+MUSETT_T1_DSSD_X81_T 974.84 -0.118024
+MUSETT_T1_DSSD_X82_T 979.911 -0.118652
+MUSETT_T1_DSSD_X83_T 993.406 -0.120307
+MUSETT_T1_DSSD_X84_T 992.814 -0.120215
+MUSETT_T1_DSSD_X85_T 1002.31 -0.121389
+MUSETT_T1_DSSD_X86_T 1003.74 -0.121554
+MUSETT_T1_DSSD_X87_T 995.588 -0.12057
+MUSETT_T1_DSSD_X88_T 1010.12 -0.122345
+MUSETT_T1_DSSD_X89_T 1012.32 -0.12261
+MUSETT_T1_DSSD_X90_T 1007.94 -0.122082
+MUSETT_T1_DSSD_X91_T 1014.03 -0.12282
+MUSETT_T1_DSSD_X92_T 1013.77 -0.12279
+MUSETT_T1_DSSD_X93_T 1016.53 -0.123127
+MUSETT_T1_DSSD_X94_T 1016.3 -0.123096
+MUSETT_T1_DSSD_X95_T 1004.26 -0.12163
+MUSETT_T1_DSSD_X96_T 888.673 -0.107613
+MUSETT_T1_DSSD_X97_T 886.825 -0.107373
+MUSETT_T1_DSSD_X98_T 890.552 -0.107838
+MUSETT_T1_DSSD_X99_T 901.931 -0.109224
+MUSETT_T1_DSSD_X100_T 901.707 -0.1092
+MUSETT_T1_DSSD_X101_T 906.676 -0.109791
+MUSETT_T1_DSSD_X102_T 902.249 -0.109268
+MUSETT_T1_DSSD_X103_T 917.913 -0.111151
+MUSETT_T1_DSSD_X104_T 919.118 -0.11128
+MUSETT_T1_DSSD_X105_T 920.502 -0.111467
+MUSETT_T1_DSSD_X106_T 925.286 -0.112035
+MUSETT_T1_DSSD_X107_T 920.839 -0.111519
+MUSETT_T1_DSSD_X108_T 921.752 -0.111616
+MUSETT_T1_DSSD_X109_T 913.537 -0.110627
+MUSETT_T1_DSSD_X110_T 916.058 -0.110941
+MUSETT_T1_DSSD_X111_T 924.322 -0.11176
+MUSETT_T1_DSSD_X112_T 897.027 -0.108476
+MUSETT_T1_DSSD_X113_T 897.77 -0.108567
+MUSETT_T1_DSSD_X114_T 905.06 -0.10946
+MUSETT_T1_DSSD_X115_T 910.605 -0.110136
+MUSETT_T1_DSSD_X116_T 925.57 -0.111977
+MUSETT_T1_DSSD_X117_T 920.161 -0.111304
+MUSETT_T1_DSSD_X118_T 932.296 -0.112781
+MUSETT_T1_DSSD_X119_T 914.819 -0.110659
+MUSETT_T1_DSSD_X120_T 920.284 -0.111325
+MUSETT_T1_DSSD_X121_T 927.772 -0.112226
+MUSETT_T1_DSSD_X122_T 928.866 -0.11236
+MUSETT_T1_DSSD_X123_T 924.041 -0.111775
+MUSETT_T1_DSSD_X124_T 921.484 -0.111483
+MUSETT_T1_DSSD_X125_T 927.438 -0.112193
+MUSETT_T1_DSSD_X126_T 930.757 -0.112614
+MUSETT_T1_DSSD_X127_T 924.698 -0.111864
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..bb831435222ce6f19365931d7da80577eee7d8ce
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_T 930.899 -0.11282
+MUSETT_T1_DSSD_Y1_T 932.297 -0.113022
+MUSETT_T1_DSSD_Y2_T 943.292 -0.114361
+MUSETT_T1_DSSD_Y3_T 947.201 -0.114834
+MUSETT_T1_DSSD_Y4_T 949.524 -0.115122
+MUSETT_T1_DSSD_Y5_T 952.95 -0.115533
+MUSETT_T1_DSSD_Y6_T 956.311 -0.115938
+MUSETT_T1_DSSD_Y7_T 946.369 -0.114726
+MUSETT_T1_DSSD_Y8_T 953.576 -0.11562
+MUSETT_T1_DSSD_Y9_T 964.215 -0.116854
+MUSETT_T1_DSSD_Y10_T 959.98 -0.116368
+MUSETT_T1_DSSD_Y11_T 967.734 -0.117327
+MUSETT_T1_DSSD_Y12_T 967.914 -0.117358
+MUSETT_T1_DSSD_Y13_T 963.677 -0.116827
+MUSETT_T1_DSSD_Y14_T 965.026 -0.116981
+MUSETT_T1_DSSD_Y15_T 962.695 -0.116717
+MUSETT_T1_DSSD_Y16_T 964.683 -0.116883
+MUSETT_T1_DSSD_Y17_T 966.649 -0.117128
+MUSETT_T1_DSSD_Y18_T 971.034 -0.117665
+MUSETT_T1_DSSD_Y19_T 971.558 -0.117743
+MUSETT_T1_DSSD_Y20_T 983.103 -0.119146
+MUSETT_T1_DSSD_Y21_T 979.702 -0.118747
+MUSETT_T1_DSSD_Y22_T 900.000 -0.108038
+MUSETT_T1_DSSD_Y23_T 989.487 -0.119964
+MUSETT_T1_DSSD_Y24_T 991.153 -0.120158
+MUSETT_T1_DSSD_Y25_T 991.247 -0.120176
+MUSETT_T1_DSSD_Y26_T 995.752 -0.120728
+MUSETT_T1_DSSD_Y27_T 990.621 -0.120113
+MUSETT_T1_DSSD_Y28_T 992.588 -0.120339
+MUSETT_T1_DSSD_Y29_T 983.94 -0.119308
+MUSETT_T1_DSSD_Y30_T 990.472 -0.120108
+MUSETT_T1_DSSD_Y31_T 985.366 -0.119515
+MUSETT_T1_DSSD_Y32_T 879.895 -0.106691
+MUSETT_T1_DSSD_Y33_T 885.732 -0.10745
+MUSETT_T1_DSSD_Y34_T 880.947 -0.106848
+MUSETT_T1_DSSD_Y35_T 890.881 -0.108037
+MUSETT_T1_DSSD_Y36_T 900.000 -0.108038
+MUSETT_T1_DSSD_Y37_T 901.269 -0.109433
+MUSETT_T1_DSSD_Y38_T 900.483 -0.110242
+MUSETT_T1_DSSD_Y39_T 902.133 -0.10944
+MUSETT_T1_DSSD_Y40_T 890.343 -0.107957
+MUSETT_T1_DSSD_Y41_T 902.898 -0.109521
+MUSETT_T1_DSSD_Y42_T 895.657 -0.108623
+MUSETT_T1_DSSD_Y43_T 904.61 -0.10969
+MUSETT_T1_DSSD_Y44_T 907.072 -0.109989
+MUSETT_T1_DSSD_Y45_T 901.222 -0.109312
+MUSETT_T1_DSSD_Y46_T 905.951 -0.109844
+MUSETT_T1_DSSD_Y47_T 901.159 -0.109257
+MUSETT_T1_DSSD_Y48_T 883.344 -0.10696
+MUSETT_T1_DSSD_Y49_T 882.465 -0.106852
+MUSETT_T1_DSSD_Y50_T 878.872 -0.106436
+MUSETT_T1_DSSD_Y51_T 892.099 -0.108049
+MUSETT_T1_DSSD_Y52_T 897.834 -0.108781
+MUSETT_T1_DSSD_Y53_T 899.02 -0.108923
+MUSETT_T1_DSSD_Y54_T 898.979 -0.108922
+MUSETT_T1_DSSD_Y55_T 899.225 -0.108949
+MUSETT_T1_DSSD_Y56_T 911.018 -0.110395
+MUSETT_T1_DSSD_Y57_T 910.225 -0.110294
+MUSETT_T1_DSSD_Y58_T 905.692 -0.109746
+MUSETT_T1_DSSD_Y59_T 908.504 -0.109802
+MUSETT_T1_DSSD_Y60_T 905.665 -0.109742
+MUSETT_T1_DSSD_Y61_T 913.658 -0.11072
+MUSETT_T1_DSSD_Y62_T 915.004 -0.110879
+MUSETT_T1_DSSD_Y63_T 915.999 -0.111037
+MUSETT_T1_DSSD_Y64_T 945.876 -0.115194
+MUSETT_T1_DSSD_Y65_T 952.653 -0.116053
+MUSETT_T1_DSSD_Y66_T 958.599 -0.116788
+MUSETT_T1_DSSD_Y67_T 962.073 -0.117211
+MUSETT_T1_DSSD_Y68_T 965.512 -0.117617
+MUSETT_T1_DSSD_Y69_T 973.646 -0.118609
+MUSETT_T1_DSSD_Y70_T 969.091 -0.118053
+MUSETT_T1_DSSD_Y71_T 977.205 -0.119038
+MUSETT_T1_DSSD_Y72_T 978.244 -0.119163
+MUSETT_T1_DSSD_Y73_T 981.509 -0.119552
+MUSETT_T1_DSSD_Y74_T 983.33 -0.119777
+MUSETT_T1_DSSD_Y75_T 980.28 -0.119391
+MUSETT_T1_DSSD_Y76_T 987.378 -0.11981
+MUSETT_T1_DSSD_Y77_T 981.221 -0.119505
+MUSETT_T1_DSSD_Y78_T 982.019 -0.119601
+MUSETT_T1_DSSD_Y79_T 986.869 -0.120194
+MUSETT_T1_DSSD_Y80_T 942.041 -0.114646
+MUSETT_T1_DSSD_Y81_T 950.256 -0.115676
+MUSETT_T1_DSSD_Y82_T 949.146 -0.115551
+MUSETT_T1_DSSD_Y83_T 956.132 -0.116392
+MUSETT_T1_DSSD_Y84_T 955.603 -0.116344
+MUSETT_T1_DSSD_Y85_T 965.862 -0.117589
+MUSETT_T1_DSSD_Y86_T 966.696 -0.117699
+MUSETT_T1_DSSD_Y87_T 973.856 -0.118567
+MUSETT_T1_DSSD_Y88_T 974.942 -0.118705
+MUSETT_T1_DSSD_Y89_T 967.58 -0.117807
+MUSETT_T1_DSSD_Y90_T 972.217 -0.118376
+MUSETT_T1_DSSD_Y91_T 980.142 -0.119333
+MUSETT_T1_DSSD_Y92_T 980.758 -0.119429
+MUSETT_T1_DSSD_Y93_T 973.754 -0.118576
+MUSETT_T1_DSSD_Y94_T 977.548 -0.119031
+MUSETT_T1_DSSD_Y95_T 988.795 -0.120471
+MUSETT_T1_DSSD_Y96_T 871.404 -0.106136
+MUSETT_T1_DSSD_Y97_T 870.084 -0.106
+MUSETT_T1_DSSD_Y98_T 874.611 -0.106555
+MUSETT_T1_DSSD_Y99_T 888.655 -0.108263
+MUSETT_T1_DSSD_Y100_T 886.461 -0.10801
+MUSETT_T1_DSSD_Y101_T 878.586 -0.107044
+MUSETT_T1_DSSD_Y102_T 886.442 -0.108005
+MUSETT_T1_DSSD_Y103_T 889.81 -0.108406
+MUSETT_T1_DSSD_Y104_T 900.116 -0.109653
+MUSETT_T1_DSSD_Y105_T 896.798 -0.10926
+MUSETT_T1_DSSD_Y106_T 900.214 -0.10967
+MUSETT_T1_DSSD_Y107_T 890.896 -0.108536
+MUSETT_T1_DSSD_Y108_T 898.103 -0.109417
+MUSETT_T1_DSSD_Y109_T 905.123 -0.110268
+MUSETT_T1_DSSD_Y110_T 895.488 -0.109108
+MUSETT_T1_DSSD_Y111_T 901.504 -0.109824
+MUSETT_T1_DSSD_Y112_T 857.767 -0.104291
+MUSETT_T1_DSSD_Y113_T 851.391 -0.103549
+MUSETT_T1_DSSD_Y114_T 861.589 -0.104798
+MUSETT_T1_DSSD_Y115_T 856.553 -0.10419
+MUSETT_T1_DSSD_Y116_T 865.0 -0.105221
+MUSETT_T1_DSSD_Y117_T 874.383 -0.106354
+MUSETT_T1_DSSD_Y118_T 878.744 -0.1069
+MUSETT_T1_DSSD_Y119_T 873.451 -0.106252
+MUSETT_T1_DSSD_Y120_T 890.883 -0.108379
+MUSETT_T1_DSSD_Y121_T 891.802 -0.108492
+MUSETT_T1_DSSD_Y122_T 889.789 -0.108225
+MUSETT_T1_DSSD_Y123_T 888.888 -0.108132
+MUSETT_T1_DSSD_Y124_T 891.161 -0.108412
+MUSETT_T1_DSSD_Y125_T 886.515 -0.10784
+MUSETT_T1_DSSD_Y126_T 883.99 -0.107526
+MUSETT_T1_DSSD_Y127_T 947.91 -0.121191
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..3377583e8617d3622c02ba0a58094591e9dfebac
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E -62.771800000000006 0.00766248
+MUSETT_T2_DSSD_X1_E -62.536199999999994 0.00763367
+MUSETT_T2_DSSD_X2_E -62.923199999999994 0.007680920000000001
+MUSETT_T2_DSSD_X3_E -62.099199999999996 0.0075803
+MUSETT_T2_DSSD_X4_E -62.0716 0.0075769999999999995
+MUSETT_T2_DSSD_X5_E -62.7625 0.00766131
+MUSETT_T2_DSSD_X6_E -62.5366 0.00763372
+MUSETT_T2_DSSD_X7_E -62.8634 0.0076736
+MUSETT_T2_DSSD_X8_E -62.977599999999995 0.00768755
+MUSETT_T2_DSSD_X9_E -62.1692 0.00758889
+MUSETT_T2_DSSD_X10_E -62.4862 0.00762758
+MUSETT_T2_DSSD_X11_E -62.494 0.00762855
+MUSETT_T2_DSSD_X12_E -62.5914 0.0076403999999999994
+MUSETT_T2_DSSD_X13_E -62.5965 0.00764104
+MUSETT_T2_DSSD_X14_E -62.6933 0.00765283
+MUSETT_T2_DSSD_X15_E -63.4319 0.00774304
+MUSETT_T2_DSSD_X16_E -62.2755 0.00760186
+MUSETT_T2_DSSD_X17_E -61.847 0.007549559999999999
+MUSETT_T2_DSSD_X18_E -61.648900000000005 0.0075254200000000005
+MUSETT_T2_DSSD_X19_E -61.472199999999994 0.0075038
+MUSETT_T2_DSSD_X20_E -61.4877 0.0075057299999999995
+MUSETT_T2_DSSD_X21_E -62.3236 0.007607719999999999
+MUSETT_T2_DSSD_X22_E -62.160599999999995 0.00758783
+MUSETT_T2_DSSD_X23_E -61.8015 0.00754404
+MUSETT_T2_DSSD_X24_E -61.589400000000005 0.0075181300000000005
+MUSETT_T2_DSSD_X25_E -61.837900000000005 0.00754843
+MUSETT_T2_DSSD_X26_E -61.9972 0.00756788
+MUSETT_T2_DSSD_X27_E -61.886900000000004 0.00755441
+MUSETT_T2_DSSD_X28_E -61.669599999999996 0.00752787
+MUSETT_T2_DSSD_X29_E -61.3176 0.00748493
+MUSETT_T2_DSSD_X30_E -62.385400000000004 0.0076153
+MUSETT_T2_DSSD_X31_E -61.5448 0.007512710000000001
+MUSETT_T2_DSSD_X32_E -59.0051 0.00720263
+MUSETT_T2_DSSD_X33_E -58.1254 0.0070952
+MUSETT_T2_DSSD_X34_E -58.621 0.0071557700000000005
+MUSETT_T2_DSSD_X35_E -58.4208 0.00713128
+MUSETT_T2_DSSD_X36_E -58.1821 0.00710215
+MUSETT_T2_DSSD_X37_E -58.1795 0.00710183
+MUSETT_T2_DSSD_X38_E -58.3827 0.00712665
+MUSETT_T2_DSSD_X39_E -57.9516 0.0070739999999999996
+MUSETT_T2_DSSD_X40_E -57.6194 0.00703346
+MUSETT_T2_DSSD_X41_E -58.6028 0.007153489999999999
+MUSETT_T2_DSSD_X42_E -58.7636 0.0071731699999999995
+MUSETT_T2_DSSD_X43_E -58.295300000000005 0.00711601
+MUSETT_T2_DSSD_X44_E -58.6115 0.00715458
+MUSETT_T2_DSSD_X45_E -58.5695 0.00714945
+MUSETT_T2_DSSD_X46_E -58.3686 0.00712489
+MUSETT_T2_DSSD_X47_E -58.524699999999996 0.007144
+MUSETT_T2_DSSD_X48_E -57.829699999999995 0.00705919
+MUSETT_T2_DSSD_X49_E -57.177699999999994 0.00697958
+MUSETT_T2_DSSD_X50_E -58.151 0.0070983999999999995
+MUSETT_T2_DSSD_X51_E -57.925 0.00707083
+MUSETT_T2_DSSD_X52_E -57.600199999999994 0.00703119
+MUSETT_T2_DSSD_X53_E -57.219800000000006 0.0069847
+MUSETT_T2_DSSD_X54_E -57.8554 0.007062280000000001
+MUSETT_T2_DSSD_X55_E -57.682199999999995 0.007041159999999999
+MUSETT_T2_DSSD_X56_E -57.9126 0.00706929
+MUSETT_T2_DSSD_X57_E -57.5989 0.00703102
+MUSETT_T2_DSSD_X58_E -57.919599999999996 0.00707016
+MUSETT_T2_DSSD_X59_E -56.9985 0.0069577
+MUSETT_T2_DSSD_X60_E -57.4982 0.007018709999999999
+MUSETT_T2_DSSD_X61_E -56.729099999999995 0.00692483
+MUSETT_T2_DSSD_X62_E -57.5006 0.00701901
+MUSETT_T2_DSSD_X63_E -57.910599999999995 0.00706904
+MUSETT_T2_DSSD_X64_E -63.311 0.007728240000000001
+MUSETT_T2_DSSD_X65_E -64.9918 0.00793347
+MUSETT_T2_DSSD_X66_E -63.9945 0.0078117
+MUSETT_T2_DSSD_X67_E -63.7503 0.00778186
+MUSETT_T2_DSSD_X68_E -10.0 0.0
+MUSETT_T2_DSSD_X69_E -64.4085 0.007862280000000001
+MUSETT_T2_DSSD_X70_E -63.629 0.0077670199999999995
+MUSETT_T2_DSSD_X71_E -63.4388 0.00774388
+MUSETT_T2_DSSD_X72_E -63.3583 0.0077339900000000005
+MUSETT_T2_DSSD_X73_E -63.1446 0.00770793
+MUSETT_T2_DSSD_X74_E -63.8121 0.007789399999999999
+MUSETT_T2_DSSD_X75_E -63.6624 0.00777117
+MUSETT_T2_DSSD_X76_E -63.8769 0.00779733
+MUSETT_T2_DSSD_X77_E -63.7711 0.00778444
+MUSETT_T2_DSSD_X78_E -63.6521 0.0077699
+MUSETT_T2_DSSD_X79_E -63.600300000000004 0.00776358
+MUSETT_T2_DSSD_X80_E -63.2564 0.0077215800000000005
+MUSETT_T2_DSSD_X81_E -63.3337 0.00773107
+MUSETT_T2_DSSD_X82_E -63.15 0.00770859
+MUSETT_T2_DSSD_X83_E -63.2045 0.00771524
+MUSETT_T2_DSSD_X84_E -63.982099999999996 0.00781015
+MUSETT_T2_DSSD_X85_E -63.771300000000004 0.00778446
+MUSETT_T2_DSSD_X86_E -63.6827 0.0077737
+MUSETT_T2_DSSD_X87_E -63.921099999999996 0.00780269
+MUSETT_T2_DSSD_X88_E -63.090300000000006 0.0077012999999999995
+MUSETT_T2_DSSD_X89_E -63.5487 0.00775733
+MUSETT_T2_DSSD_X90_E -63.345699999999994 0.00773257
+MUSETT_T2_DSSD_X91_E -63.537699999999994 0.00775593
+MUSETT_T2_DSSD_X92_E -63.2671 0.00772292
+MUSETT_T2_DSSD_X93_E -64.6143 0.00788733
+MUSETT_T2_DSSD_X94_E -63.737 0.00778019
+MUSETT_T2_DSSD_X95_E -63.6275 0.00776682
+MUSETT_T2_DSSD_X96_E -59.0116 0.00720345
+MUSETT_T2_DSSD_X97_E -58.536300000000004 0.00714543
+MUSETT_T2_DSSD_X98_E -58.2945 0.00711592
+MUSETT_T2_DSSD_X99_E -58.7645 0.00717328
+MUSETT_T2_DSSD_X100_E -59.3882 0.007249380000000001
+MUSETT_T2_DSSD_X101_E -59.3539 0.00724523
+MUSETT_T2_DSSD_X102_E -58.868900000000004 0.00718606
+MUSETT_T2_DSSD_X103_E -59.0204 0.00720454
+MUSETT_T2_DSSD_X104_E -59.051199999999994 0.00720827
+MUSETT_T2_DSSD_X105_E -59.067699999999995 0.00721031
+MUSETT_T2_DSSD_X106_E -58.7806 0.00717527
+MUSETT_T2_DSSD_X107_E -59.0118 0.00720348
+MUSETT_T2_DSSD_X108_E -58.6856 0.0071636899999999995
+MUSETT_T2_DSSD_X109_E -60.3136 0.00736243
+MUSETT_T2_DSSD_X110_E -58.9477 0.0071956
+MUSETT_T2_DSSD_X111_E -58.6406 0.00715819
+MUSETT_T2_DSSD_X112_E -59.2564 0.00723333
+MUSETT_T2_DSSD_X113_E -59.391400000000004 0.00724979
+MUSETT_T2_DSSD_X114_E -59.7415 0.00729254
+MUSETT_T2_DSSD_X115_E -59.153 0.0072207
+MUSETT_T2_DSSD_X116_E -59.6593 0.00728255
+MUSETT_T2_DSSD_X117_E -60.0435 0.007329410000000001
+MUSETT_T2_DSSD_X118_E -59.4929 0.00726218
+MUSETT_T2_DSSD_X119_E -59.3559 0.0072455
+MUSETT_T2_DSSD_X120_E -60.079 0.0073337
+MUSETT_T2_DSSD_X121_E -58.759699999999995 0.00717268
+MUSETT_T2_DSSD_X122_E -59.106300000000005 0.00721501
+MUSETT_T2_DSSD_X123_E -59.3564 0.00724556
+MUSETT_T2_DSSD_X124_E -58.9054 0.00719045
+MUSETT_T2_DSSD_X125_E -58.909 0.00719091
+MUSETT_T2_DSSD_X126_E -59.1398 0.00721905
+MUSETT_T2_DSSD_X127_E -59.2444 0.00723184
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..42f4d2174be61e224ee762c0a61859e525dfc76f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_E 63.1803 -0.0077125399999999995
+MUSETT_T2_DSSD_Y1_E 63.9585 -0.00780757
+MUSETT_T2_DSSD_Y2_E 62.563900000000004 -0.00763734
+MUSETT_T2_DSSD_Y3_E 63.393800000000006 -0.00773864
+MUSETT_T2_DSSD_Y4_E 62.965300000000006 -0.0076863
+MUSETT_T2_DSSD_Y5_E 62.6952 -0.00765332
+MUSETT_T2_DSSD_Y6_E 63.071 -0.007699200000000001
+MUSETT_T2_DSSD_Y7_E 62.6847 -0.00765205
+MUSETT_T2_DSSD_Y8_E 62.8052 -0.00766674
+MUSETT_T2_DSSD_Y9_E 63.4059 -0.00774008
+MUSETT_T2_DSSD_Y10_E 63.006 -0.007691290000000001
+MUSETT_T2_DSSD_Y11_E 62.613800000000005 -0.00764344
+MUSETT_T2_DSSD_Y12_E 62.1358 -0.00758506
+MUSETT_T2_DSSD_Y13_E 62.7978 -0.00766584
+MUSETT_T2_DSSD_Y14_E 63.0039 -0.00769104
+MUSETT_T2_DSSD_Y15_E 63.4515 -0.00774566
+MUSETT_T2_DSSD_Y16_E 61.6804 -0.00752939
+MUSETT_T2_DSSD_Y17_E 60.963699999999996 -0.007442020000000001
+MUSETT_T2_DSSD_Y18_E 60.731300000000005 -0.007413599999999999
+MUSETT_T2_DSSD_Y19_E 62.0444 -0.00757386
+MUSETT_T2_DSSD_Y20_E 61.1209 -0.00746121
+MUSETT_T2_DSSD_Y21_E 60.932 -0.0074381000000000004
+MUSETT_T2_DSSD_Y22_E 62.091800000000006 -0.00757965
+MUSETT_T2_DSSD_Y23_E 61.0425 -0.00745157
+MUSETT_T2_DSSD_Y24_E 61.0802 -0.00745622
+MUSETT_T2_DSSD_Y25_E 61.569 -0.00751583
+MUSETT_T2_DSSD_Y26_E 61.0889 -0.0074572399999999995
+MUSETT_T2_DSSD_Y27_E 61.4018 -0.00749545
+MUSETT_T2_DSSD_Y28_E 61.5908 -0.00751854
+MUSETT_T2_DSSD_Y29_E 61.4567 -0.00750214
+MUSETT_T2_DSSD_Y30_E 61.3482 -0.00748891
+MUSETT_T2_DSSD_Y31_E 61.8146 -0.007545860000000001
+MUSETT_T2_DSSD_Y32_E 56.3104 -0.00687387
+MUSETT_T2_DSSD_Y33_E 56.4756 -0.00689413
+MUSETT_T2_DSSD_Y34_E 56.8437 -0.00693897
+MUSETT_T2_DSSD_Y35_E 56.709900000000005 -0.0069226999999999995
+MUSETT_T2_DSSD_Y36_E 57.0065 -0.00695894
+MUSETT_T2_DSSD_Y37_E 56.9227 -0.00694871
+MUSETT_T2_DSSD_Y38_E 56.395900000000005 -0.00688437
+MUSETT_T2_DSSD_Y39_E 56.4375 -0.00688946
+MUSETT_T2_DSSD_Y40_E 56.168099999999995 -0.006856569999999999
+MUSETT_T2_DSSD_Y41_E 58.1374 -0.0070969100000000005
+MUSETT_T2_DSSD_Y42_E 56.7521 -0.00692786
+MUSETT_T2_DSSD_Y43_E 56.2683 -0.00686879
+MUSETT_T2_DSSD_Y44_E 57.2483 -0.00698843
+MUSETT_T2_DSSD_Y45_E 57.2377 -0.00698715
+MUSETT_T2_DSSD_Y46_E 57.0625 -0.006965740000000001
+MUSETT_T2_DSSD_Y47_E 56.700199999999995 -0.0069215200000000004
+MUSETT_T2_DSSD_Y48_E 57.6094 -0.00703252
+MUSETT_T2_DSSD_Y49_E 57.0451 -0.00696368
+MUSETT_T2_DSSD_Y50_E 57.8934 -0.00706716
+MUSETT_T2_DSSD_Y51_E 57.4321 -0.00701085
+MUSETT_T2_DSSD_Y52_E 57.3273 -0.0069981
+MUSETT_T2_DSSD_Y53_E 58.593599999999995 -0.00715267
+MUSETT_T2_DSSD_Y54_E 57.7132 -0.00704516
+MUSETT_T2_DSSD_Y55_E 57.801 -0.0070558899999999996
+MUSETT_T2_DSSD_Y56_E 57.750099999999996 -0.0070497
+MUSETT_T2_DSSD_Y57_E 57.5646 -0.00702705
+MUSETT_T2_DSSD_Y58_E 57.5132 -0.00702079
+MUSETT_T2_DSSD_Y59_E 58.2986 -0.00711669
+MUSETT_T2_DSSD_Y60_E 57.8836 -0.007066
+MUSETT_T2_DSSD_Y61_E 57.3339 -0.006998890000000001
+MUSETT_T2_DSSD_Y62_E 57.8777 -0.00706529
+MUSETT_T2_DSSD_Y63_E 58.222300000000004 -0.0071073199999999994
+MUSETT_T2_DSSD_Y64_E 59.3524 -0.007245339999999999
+MUSETT_T2_DSSD_Y65_E 59.653 -0.00728202
+MUSETT_T2_DSSD_Y66_E 59.466699999999996 -0.00725926
+MUSETT_T2_DSSD_Y67_E 60.421 -0.00737573
+MUSETT_T2_DSSD_Y68_E 59.563300000000005 -0.00727104
+MUSETT_T2_DSSD_Y69_E 59.865199999999994 -0.00730789
+MUSETT_T2_DSSD_Y70_E 59.5681 -0.0072716099999999995
+MUSETT_T2_DSSD_Y71_E 59.9031 -0.00731254
+MUSETT_T2_DSSD_Y72_E 59.874199999999995 -0.007308950000000001
+MUSETT_T2_DSSD_Y73_E 59.5659 -0.00727135
+MUSETT_T2_DSSD_Y74_E 59.9514 -0.00731844
+MUSETT_T2_DSSD_Y75_E 60.102599999999995 -0.00733689
+MUSETT_T2_DSSD_Y76_E 59.329 -0.00724242
+MUSETT_T2_DSSD_Y77_E 59.9733 -0.00732106
+MUSETT_T2_DSSD_Y78_E 59.3692 -0.0072473400000000006
+MUSETT_T2_DSSD_Y79_E 60.2055 -0.00734945
+MUSETT_T2_DSSD_Y80_E 60.5591 -0.00739262
+MUSETT_T2_DSSD_Y81_E 61.2239 -0.00747379
+MUSETT_T2_DSSD_Y82_E 60.5555 -0.00739217
+MUSETT_T2_DSSD_Y83_E 61.2678 -0.00747916
+MUSETT_T2_DSSD_Y84_E 61.1832 -0.00746879
+MUSETT_T2_DSSD_Y85_E 60.8774 -0.00743143
+MUSETT_T2_DSSD_Y86_E 60.9647 -0.00744213
+MUSETT_T2_DSSD_Y87_E 61.3167 -0.00748517
+MUSETT_T2_DSSD_Y88_E 60.8896 -0.00743289
+MUSETT_T2_DSSD_Y89_E 60.834900000000005 -0.007426230000000001
+MUSETT_T2_DSSD_Y90_E 61.4754 -0.007504520000000001
+MUSETT_T2_DSSD_Y91_E 60.713800000000006 -0.00741149
+MUSETT_T2_DSSD_Y92_E 61.139900000000004 -0.007463490000000001
+MUSETT_T2_DSSD_Y93_E 60.5862 -0.007395850000000001
+MUSETT_T2_DSSD_Y94_E 61.0912 -0.00745753
+MUSETT_T2_DSSD_Y95_E 61.463 -0.00750289
+MUSETT_T2_DSSD_Y96_E 56.8837 -0.00694393
+MUSETT_T2_DSSD_Y97_E 55.9583 -0.0068309600000000005
+MUSETT_T2_DSSD_Y98_E 56.259699999999995 -0.00686775
+MUSETT_T2_DSSD_Y99_E 56.6209 -0.00691184
+MUSETT_T2_DSSD_Y100_E 56.3901 -0.00688368
+MUSETT_T2_DSSD_Y101_E 56.7419 -0.0069266300000000005
+MUSETT_T2_DSSD_Y102_E 55.881699999999995 -0.00682158
+MUSETT_T2_DSSD_Y103_E 57.2425 -0.00698773
+MUSETT_T2_DSSD_Y104_E 56.047599999999996 -0.00684185
+MUSETT_T2_DSSD_Y105_E 56.7064 -0.00692227
+MUSETT_T2_DSSD_Y106_E 56.618300000000005 -0.00691153
+MUSETT_T2_DSSD_Y107_E 57.5163 -0.00702116
+MUSETT_T2_DSSD_Y108_E 57.052699999999994 -0.00696458
+MUSETT_T2_DSSD_Y109_E 56.7013 -0.0069216699999999996
+MUSETT_T2_DSSD_Y110_E 57.023199999999996 -0.0069609500000000005
+MUSETT_T2_DSSD_Y111_E 56.155300000000004 -0.00685506
+MUSETT_T2_DSSD_Y112_E 56.4801 -0.00689468
+MUSETT_T2_DSSD_Y113_E 57.291 -0.00699365
+MUSETT_T2_DSSD_Y114_E 56.601099999999995 -0.00690948
+MUSETT_T2_DSSD_Y115_E 56.8647 -0.0069416700000000005
+MUSETT_T2_DSSD_Y116_E 56.5048 -0.0068977199999999995
+MUSETT_T2_DSSD_Y117_E 56.531 -0.00690085
+MUSETT_T2_DSSD_Y118_E 56.8031 -0.0069340700000000005
+MUSETT_T2_DSSD_Y119_E 56.7446 -0.00692696
+MUSETT_T2_DSSD_Y120_E 56.3396 -0.00687753
+MUSETT_T2_DSSD_Y121_E 57.094699999999996 -0.00696973
+MUSETT_T2_DSSD_Y122_E 57.4718 -0.00701574
+MUSETT_T2_DSSD_Y123_E -10.0 0.0
+MUSETT_T2_DSSD_Y124_E 56.2437 -0.00686585
+MUSETT_T2_DSSD_Y125_E 56.920199999999994 -0.00694841
+MUSETT_T2_DSSD_Y126_E 56.3579 -0.00687972
+MUSETT_T2_DSSD_Y127_E 56.1714 -0.00685698
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1983b41dd0fcbe6248c501b5faac1ca1a7e2d690
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_T 936.808 -0.113282
+MUSETT_T2_DSSD_X1_T 933.588 -0.112935
+MUSETT_T2_DSSD_X2_T 941.562 -0.113903
+MUSETT_T2_DSSD_X3_T 953.784 -0.11541
+MUSETT_T2_DSSD_X4_T 949.078 -0.114834
+MUSETT_T2_DSSD_X5_T 966.718 -0.116968
+MUSETT_T2_DSSD_X6_T 960.214 -0.116144
+MUSETT_T2_DSSD_X7_T 964.987 -0.116738
+MUSETT_T2_DSSD_X8_T 956.88 -0.115736
+MUSETT_T2_DSSD_X9_T 968.81 -0.117191
+MUSETT_T2_DSSD_X10_T 971.337 -0.117505
+MUSETT_T2_DSSD_X11_T 966.1 -0.116868
+MUSETT_T2_DSSD_X12_T 972.053 -0.117596
+MUSETT_T2_DSSD_X13_T 966.078 -0.116864
+MUSETT_T2_DSSD_X14_T 966.541 -0.116934
+MUSETT_T2_DSSD_X15_T 1367.28 -0.118078
+MUSETT_T2_DSSD_X16_T 918.709 -0.111042
+MUSETT_T2_DSSD_X17_T 933.754 -0.1129
+MUSETT_T2_DSSD_X18_T 936.423 -0.113239
+MUSETT_T2_DSSD_X19_T 935.388 -0.11311
+MUSETT_T2_DSSD_X20_T 946.289 -0.114433
+MUSETT_T2_DSSD_X21_T 941.937 -0.113893
+MUSETT_T2_DSSD_X22_T 939.701 -0.113604
+MUSETT_T2_DSSD_X23_T 947.866 -0.114596
+MUSETT_T2_DSSD_X24_T 939.11 -0.113523
+MUSETT_T2_DSSD_X25_T 947.312 -0.114529
+MUSETT_T2_DSSD_X26_T 947.872 -0.114587
+MUSETT_T2_DSSD_X27_T 944.089 -0.114127
+MUSETT_T2_DSSD_X28_T 951.541 -0.115049
+MUSETT_T2_DSSD_X29_T 947.806 -0.114577
+MUSETT_T2_DSSD_X30_T 949.646 -0.114801
+MUSETT_T2_DSSD_X31_T 1101.24 -0.114725
+MUSETT_T2_DSSD_X32_T 883.868 -0.106884
+MUSETT_T2_DSSD_X33_T 881.306 -0.106588
+MUSETT_T2_DSSD_X34_T 890.406 -0.10771
+MUSETT_T2_DSSD_X35_T 887.688 -0.10739
+MUSETT_T2_DSSD_X36_T 901.335 -0.109058
+MUSETT_T2_DSSD_X37_T 898.532 -0.108685
+MUSETT_T2_DSSD_X38_T 906.127 -0.109605
+MUSETT_T2_DSSD_X39_T 903.029 -0.109211
+MUSETT_T2_DSSD_X40_T 902.567 -0.109168
+MUSETT_T2_DSSD_X41_T 906.324 -0.109617
+MUSETT_T2_DSSD_X42_T 912.663 -0.1104
+MUSETT_T2_DSSD_X43_T 911.609 -0.110254
+MUSETT_T2_DSSD_X44_T 919.504 -0.111219
+MUSETT_T2_DSSD_X45_T 918.075 -0.111043
+MUSETT_T2_DSSD_X46_T 920.693 -0.111378
+MUSETT_T2_DSSD_X47_T 1304.08 -0.11089
+MUSETT_T2_DSSD_X48_T 852.901 -0.102956
+MUSETT_T2_DSSD_X49_T 862.836 -0.104191
+MUSETT_T2_DSSD_X50_T 872.425 -0.105362
+MUSETT_T2_DSSD_X51_T 866.551 -0.10464
+MUSETT_T2_DSSD_X52_T 875.507 -0.105723
+MUSETT_T2_DSSD_X53_T 875.722 -0.105755
+MUSETT_T2_DSSD_X54_T 877.794 -0.105984
+MUSETT_T2_DSSD_X55_T 885.59 -0.106931
+MUSETT_T2_DSSD_X56_T 894.535 -0.108024
+MUSETT_T2_DSSD_X57_T 896.983 -0.108307
+MUSETT_T2_DSSD_X58_T 888.442 -0.107279
+MUSETT_T2_DSSD_X59_T 898.855 -0.108543
+MUSETT_T2_DSSD_X60_T 900.217 -0.108721
+MUSETT_T2_DSSD_X61_T 899.805 -0.108665
+MUSETT_T2_DSSD_X62_T 896.358 -0.10824
+MUSETT_T2_DSSD_X63_T 1286.56 -0.107885
+MUSETT_T2_DSSD_X64_T 969.588 -0.117533
+MUSETT_T2_DSSD_X65_T 969.639 -0.117545
+MUSETT_T2_DSSD_X66_T 981.26 -0.118957
+MUSETT_T2_DSSD_X67_T 986.207 -0.119584
+MUSETT_T2_DSSD_X68_T 450.0 -0.119902
+MUSETT_T2_DSSD_X69_T 989.899 -0.12002
+MUSETT_T2_DSSD_X70_T 991.208 -0.120171
+MUSETT_T2_DSSD_X71_T 996.377 -0.120802
+MUSETT_T2_DSSD_X72_T 989.619 -0.119977
+MUSETT_T2_DSSD_X73_T 998.452 -0.12102
+MUSETT_T2_DSSD_X74_T 994.24 -0.12055
+MUSETT_T2_DSSD_X75_T 993.976 -0.12048
+MUSETT_T2_DSSD_X76_T 1003.64 -0.121688
+MUSETT_T2_DSSD_X77_T 1007.3 -0.122136
+MUSETT_T2_DSSD_X78_T 1010.11 -0.122472
+MUSETT_T2_DSSD_X79_T 1318.69 -0.121488
+MUSETT_T2_DSSD_X80_T 950.946 -0.115148
+MUSETT_T2_DSSD_X81_T 961.899 -0.116512
+MUSETT_T2_DSSD_X82_T 963.68 -0.116735
+MUSETT_T2_DSSD_X83_T 967.2 -0.117158
+MUSETT_T2_DSSD_X84_T 967.305 -0.117159
+MUSETT_T2_DSSD_X85_T 968.515 -0.117336
+MUSETT_T2_DSSD_X86_T 982.177 -0.118997
+MUSETT_T2_DSSD_X87_T 981.387 -0.118879
+MUSETT_T2_DSSD_X88_T 991.904 -0.120152
+MUSETT_T2_DSSD_X89_T 991.623 -0.120143
+MUSETT_T2_DSSD_X90_T 990.622 -0.120011
+MUSETT_T2_DSSD_X91_T 980.868 -0.118788
+MUSETT_T2_DSSD_X92_T 995.536 -0.120614
+MUSETT_T2_DSSD_X93_T 999.576 -0.12112
+MUSETT_T2_DSSD_X94_T 1000.5 -0.12123
+MUSETT_T2_DSSD_X95_T 985.324 -0.119394
+MUSETT_T2_DSSD_X96_T 898.921 -0.10895
+MUSETT_T2_DSSD_X97_T 915.715 -0.11099
+MUSETT_T2_DSSD_X98_T 911.411 -0.110483
+MUSETT_T2_DSSD_X99_T 911.648 -0.110494
+MUSETT_T2_DSSD_X100_T 920.871 -0.11163
+MUSETT_T2_DSSD_X101_T 920.388 -0.111573
+MUSETT_T2_DSSD_X102_T 918.664 -0.111368
+MUSETT_T2_DSSD_X103_T 923.174 -0.111888
+MUSETT_T2_DSSD_X104_T 933.198 -0.113122
+MUSETT_T2_DSSD_X105_T 930.187 -0.112764
+MUSETT_T2_DSSD_X106_T 935.147 -0.113373
+MUSETT_T2_DSSD_X107_T 930.349 -0.112797
+MUSETT_T2_DSSD_X108_T 933.561 -0.113176
+MUSETT_T2_DSSD_X109_T 940.135 -0.113973
+MUSETT_T2_DSSD_X110_T 940.914 -0.114066
+MUSETT_T2_DSSD_X111_T 940.163 -0.113973
+MUSETT_T2_DSSD_X112_T 900.272 -0.108961
+MUSETT_T2_DSSD_X113_T 905.007 -0.109531
+MUSETT_T2_DSSD_X114_T 912.464 -0.110461
+MUSETT_T2_DSSD_X115_T 912.22 -0.110414
+MUSETT_T2_DSSD_X116_T 927.733 -0.112323
+MUSETT_T2_DSSD_X117_T 930.691 -0.11267
+MUSETT_T2_DSSD_X118_T 936.077 -0.113333
+MUSETT_T2_DSSD_X119_T 939.108 -0.113698
+MUSETT_T2_DSSD_X120_T 938.924 -0.113666
+MUSETT_T2_DSSD_X121_T 947.571 -0.114745
+MUSETT_T2_DSSD_X122_T 938.938 -0.113673
+MUSETT_T2_DSSD_X123_T 945.07 -0.11443
+MUSETT_T2_DSSD_X124_T 934.733 -0.113174
+MUSETT_T2_DSSD_X125_T 934.595 -0.113143
+MUSETT_T2_DSSD_X126_T 943.044 -0.114176
+MUSETT_T2_DSSD_X127_T 943.184 -0.114186
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..7ff18502dac89c993590306b5479a1f20452d0ee
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_T 987.442 -0.119525
+MUSETT_T2_DSSD_Y1_T 990.37 -0.119903
+MUSETT_T2_DSSD_Y2_T 989.136 -0.119776
+MUSETT_T2_DSSD_Y3_T 995.437 -0.120524
+MUSETT_T2_DSSD_Y4_T 1000.77 -0.121165
+MUSETT_T2_DSSD_Y5_T 998.951 -0.120947
+MUSETT_T2_DSSD_Y6_T 1003.75 -0.121526
+MUSETT_T2_DSSD_Y7_T 1010.87 -0.122366
+MUSETT_T2_DSSD_Y8_T 1012.21 -0.122539
+MUSETT_T2_DSSD_Y9_T 1003.9 -0.121307
+MUSETT_T2_DSSD_Y10_T 1010.24 -0.122275
+MUSETT_T2_DSSD_Y11_T 1015.27 -0.122898
+MUSETT_T2_DSSD_Y12_T 1017.2 -0.12312
+MUSETT_T2_DSSD_Y13_T 1022.23 -0.123746
+MUSETT_T2_DSSD_Y14_T 1021.37 -0.123621
+MUSETT_T2_DSSD_Y15_T 1022.68 -0.123744
+MUSETT_T2_DSSD_Y16_T 939.963 -0.113632
+MUSETT_T2_DSSD_Y17_T 939.308 -0.11359
+MUSETT_T2_DSSD_Y18_T 938.897 -0.113546
+MUSETT_T2_DSSD_Y19_T 938.628 -0.113526
+MUSETT_T2_DSSD_Y20_T 953.606 -0.115367
+MUSETT_T2_DSSD_Y21_T 969.437 -0.117305
+MUSETT_T2_DSSD_Y22_T 965.454 -0.11682
+MUSETT_T2_DSSD_Y23_T 960.44 -0.116216
+MUSETT_T2_DSSD_Y24_T 975.99 -0.118134
+MUSETT_T2_DSSD_Y25_T 978.687 -0.118446
+MUSETT_T2_DSSD_Y26_T 976.083 -0.117858
+MUSETT_T2_DSSD_Y27_T 982.568 -0.11895
+MUSETT_T2_DSSD_Y28_T 976.864 -0.118238
+MUSETT_T2_DSSD_Y29_T 978.515 -0.118468
+MUSETT_T2_DSSD_Y30_T 977.409 -0.118337
+MUSETT_T2_DSSD_Y31_T 965.447 -0.116905
+MUSETT_T2_DSSD_Y32_T 870.181 -0.105393
+MUSETT_T2_DSSD_Y33_T 876.858 -0.106206
+MUSETT_T2_DSSD_Y34_T 889.244 -0.107711
+MUSETT_T2_DSSD_Y35_T 890.519 -0.10786
+MUSETT_T2_DSSD_Y36_T 893.817 -0.108297
+MUSETT_T2_DSSD_Y37_T 888.588 -0.107628
+MUSETT_T2_DSSD_Y38_T 904.701 -0.109574
+MUSETT_T2_DSSD_Y39_T 903.479 -0.109401
+MUSETT_T2_DSSD_Y40_T 906.236 -0.109756
+MUSETT_T2_DSSD_Y41_T 914.382 -0.110304
+MUSETT_T2_DSSD_Y42_T 906.598 -0.10979
+MUSETT_T2_DSSD_Y43_T 910.53 -0.110231
+MUSETT_T2_DSSD_Y44_T 912.933 -0.110532
+MUSETT_T2_DSSD_Y45_T 916.041 -0.110907
+MUSETT_T2_DSSD_Y46_T 919.774 -0.111371
+MUSETT_T2_DSSD_Y47_T 915.148 -0.110791
+MUSETT_T2_DSSD_Y48_T 893.19 -0.108016
+MUSETT_T2_DSSD_Y49_T 902.467 -0.109155
+MUSETT_T2_DSSD_Y50_T 899.946 -0.108834
+MUSETT_T2_DSSD_Y51_T 913.407 -0.110471
+MUSETT_T2_DSSD_Y52_T 905.911 -0.109622
+MUSETT_T2_DSSD_Y53_T 914.887 -0.110708
+MUSETT_T2_DSSD_Y54_T 922.021 -0.111116
+MUSETT_T2_DSSD_Y55_T 914.007 -0.11061
+MUSETT_T2_DSSD_Y56_T 926.973 -0.11216
+MUSETT_T2_DSSD_Y57_T 918.182 -0.111079
+MUSETT_T2_DSSD_Y58_T 920.356 -0.111393
+MUSETT_T2_DSSD_Y59_T 924.322 -0.11168
+MUSETT_T2_DSSD_Y60_T 940.509 -0.11386
+MUSETT_T2_DSSD_Y61_T 925.883 -0.112068
+MUSETT_T2_DSSD_Y62_T 921.861 -0.111623
+MUSETT_T2_DSSD_Y63_T 929.763 -0.112593
+MUSETT_T2_DSSD_Y64_T 924.331 -0.111864
+MUSETT_T2_DSSD_Y65_T 943.62 -0.114242
+MUSETT_T2_DSSD_Y66_T 947.992 -0.114763
+MUSETT_T2_DSSD_Y67_T 945.728 -0.114477
+MUSETT_T2_DSSD_Y68_T 972.019 -0.117701
+MUSETT_T2_DSSD_Y69_T 960.071 -0.116242
+MUSETT_T2_DSSD_Y70_T 967.505 -0.117144
+MUSETT_T2_DSSD_Y71_T 964.472 -0.116783
+MUSETT_T2_DSSD_Y72_T 955.96 -0.115747
+MUSETT_T2_DSSD_Y73_T 958.084 -0.115989
+MUSETT_T2_DSSD_Y74_T 964.33 -0.116762
+MUSETT_T2_DSSD_Y75_T 977.202 -0.118324
+MUSETT_T2_DSSD_Y76_T 973.571 -0.117892
+MUSETT_T2_DSSD_Y77_T 976.2 -0.118194
+MUSETT_T2_DSSD_Y78_T 967.051 -0.117092
+MUSETT_T2_DSSD_Y79_T 968.99 -0.117343
+MUSETT_T2_DSSD_Y80_T 944.542 -0.114246
+MUSETT_T2_DSSD_Y81_T 939.064 -0.113582
+MUSETT_T2_DSSD_Y82_T 951.122 -0.115097
+MUSETT_T2_DSSD_Y83_T 946.764 -0.114574
+MUSETT_T2_DSSD_Y84_T 955.625 -0.115653
+MUSETT_T2_DSSD_Y85_T 966.0 -0.11692
+MUSETT_T2_DSSD_Y86_T 964.199 -0.116695
+MUSETT_T2_DSSD_Y87_T 969.926 -0.117388
+MUSETT_T2_DSSD_Y88_T 972.649 -0.117739
+MUSETT_T2_DSSD_Y89_T 974.635 -0.11797
+MUSETT_T2_DSSD_Y90_T 979.1 -0.118525
+MUSETT_T2_DSSD_Y91_T 969.715 -0.117371
+MUSETT_T2_DSSD_Y92_T 977.475 -0.118331
+MUSETT_T2_DSSD_Y93_T 977.142 -0.118283
+MUSETT_T2_DSSD_Y94_T 984.646 -0.119174
+MUSETT_T2_DSSD_Y95_T 989.259 -0.119806
+MUSETT_T2_DSSD_Y96_T 897.538 -0.108639
+MUSETT_T2_DSSD_Y97_T 893.51 -0.108189
+MUSETT_T2_DSSD_Y98_T 904.052 -0.109474
+MUSETT_T2_DSSD_Y99_T 902.752 -0.109308
+MUSETT_T2_DSSD_Y100_T 916.527 -0.110997
+MUSETT_T2_DSSD_Y101_T 924.175 -0.111938
+MUSETT_T2_DSSD_Y102_T 914.572 -0.110746
+MUSETT_T2_DSSD_Y103_T 930.562 -0.112691
+MUSETT_T2_DSSD_Y104_T 925.104 -0.112025
+MUSETT_T2_DSSD_Y105_T 920.853 -0.111507
+MUSETT_T2_DSSD_Y106_T 922.078 -0.111663
+MUSETT_T2_DSSD_Y107_T 921.772 -0.111623
+MUSETT_T2_DSSD_Y108_T 925.31 -0.112066
+MUSETT_T2_DSSD_Y109_T 926.033 -0.11214
+MUSETT_T2_DSSD_Y110_T 922.391 -0.111703
+MUSETT_T2_DSSD_Y111_T 912.83 -0.110525
+MUSETT_T2_DSSD_Y112_T 852.798 -0.102981
+MUSETT_T2_DSSD_Y113_T 868.843 -0.104976
+MUSETT_T2_DSSD_Y114_T 876.793 -0.105936
+MUSETT_T2_DSSD_Y115_T 875.311 -0.10575
+MUSETT_T2_DSSD_Y116_T 883.331 -0.106741
+MUSETT_T2_DSSD_Y117_T 879.699 -0.10628
+MUSETT_T2_DSSD_Y118_T 891.993 -0.107805
+MUSETT_T2_DSSD_Y119_T 893.52 -0.107966
+MUSETT_T2_DSSD_Y120_T 883.484 -0.106759
+MUSETT_T2_DSSD_Y121_T 896.835 -0.108381
+MUSETT_T2_DSSD_Y122_T 895.32 -0.108195
+MUSETT_T2_DSSD_Y123_T 1336.18 -0.108195
+MUSETT_T2_DSSD_Y124_T 897.921 -0.108519
+MUSETT_T2_DSSD_Y125_T 898.896 -0.10863
+MUSETT_T2_DSSD_Y126_T 900.009 -0.108768
+MUSETT_T2_DSSD_Y127_T 896.14 -0.108297
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..6d44786682807bcd47daac47f87da625c69eae8c
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E -62.432 0.00762115
+MUSETT_T3_DSSD_X1_E -61.8981 0.00755599
+MUSETT_T3_DSSD_X2_E -62.2618 0.00760035
+MUSETT_T3_DSSD_X3_E -62.3777 0.00761452
+MUSETT_T3_DSSD_X4_E -61.9871 0.0075667799999999995
+MUSETT_T3_DSSD_X5_E -61.9253 0.00755922
+MUSETT_T3_DSSD_X6_E -62.100699999999996 0.00758066
+MUSETT_T3_DSSD_X7_E -61.6218 0.0075222
+MUSETT_T3_DSSD_X8_E -61.764300000000006 0.00753956
+MUSETT_T3_DSSD_X9_E -61.9183 0.00755834
+MUSETT_T3_DSSD_X10_E -61.8815 0.007553880000000001
+MUSETT_T3_DSSD_X11_E -62.903 0.00767858
+MUSETT_T3_DSSD_X12_E -61.674099999999996 0.00752859
+MUSETT_T3_DSSD_X13_E -61.812400000000004 0.007545410000000001
+MUSETT_T3_DSSD_X14_E -61.5556 0.00751408
+MUSETT_T3_DSSD_X15_E -62.6274 0.00764492
+MUSETT_T3_DSSD_X16_E -63.6565 0.007770470000000001
+MUSETT_T3_DSSD_X17_E -63.108 0.00770354
+MUSETT_T3_DSSD_X18_E -62.943400000000004 0.0076834600000000005
+MUSETT_T3_DSSD_X19_E -62.8377 0.00767058
+MUSETT_T3_DSSD_X20_E -62.6764 0.0076508900000000005
+MUSETT_T3_DSSD_X21_E -63.119800000000005 0.00770503
+MUSETT_T3_DSSD_X22_E -63.798 0.00778783
+MUSETT_T3_DSSD_X23_E -63.791 0.00778695
+MUSETT_T3_DSSD_X24_E -62.795 0.0076654
+MUSETT_T3_DSSD_X25_E -63.5026 0.00775172
+MUSETT_T3_DSSD_X26_E -63.5321 0.00775542
+MUSETT_T3_DSSD_X27_E -63.3099 0.0077282900000000005
+MUSETT_T3_DSSD_X28_E -63.637800000000006 0.00776831
+MUSETT_T3_DSSD_X29_E -63.587199999999996 0.00776214
+MUSETT_T3_DSSD_X30_E -64.5317 0.00787739
+MUSETT_T3_DSSD_X31_E -63.7428 0.00778111
+MUSETT_T3_DSSD_X32_E -59.4303 0.0072549400000000005
+MUSETT_T3_DSSD_X33_E -59.2202 0.00722924
+MUSETT_T3_DSSD_X34_E -58.1746 0.00710163
+MUSETT_T3_DSSD_X35_E -58.373599999999996 0.007125810000000001
+MUSETT_T3_DSSD_X36_E -58.848099999999995 0.00718369
+MUSETT_T3_DSSD_X37_E -59.0129 0.00720387
+MUSETT_T3_DSSD_X38_E -59.307199999999995 0.00723977
+MUSETT_T3_DSSD_X39_E -58.6779 0.00716294
+MUSETT_T3_DSSD_X40_E -59.2831 0.00723677
+MUSETT_T3_DSSD_X41_E -58.9564 0.0071969
+MUSETT_T3_DSSD_X42_E -59.0435 0.00720751
+MUSETT_T3_DSSD_X43_E -10.0 0.0
+MUSETT_T3_DSSD_X44_E -59.0479 0.00720805
+MUSETT_T3_DSSD_X45_E -59.4141 0.00725268
+MUSETT_T3_DSSD_X46_E -58.832800000000006 0.00718171
+MUSETT_T3_DSSD_X47_E -59.184599999999996 0.00722469
+MUSETT_T3_DSSD_X48_E -57.4104 0.00700817
+MUSETT_T3_DSSD_X49_E -57.223699999999994 0.006985369999999999
+MUSETT_T3_DSSD_X50_E -56.9417 0.00695094
+MUSETT_T3_DSSD_X51_E -57.3063 0.00699545
+MUSETT_T3_DSSD_X52_E -56.9392 0.00695063
+MUSETT_T3_DSSD_X53_E -57.3905 0.00700573
+MUSETT_T3_DSSD_X54_E -56.6383 0.0069139299999999996
+MUSETT_T3_DSSD_X55_E -57.3585 0.00700183
+MUSETT_T3_DSSD_X56_E -57.684400000000004 0.00704165
+MUSETT_T3_DSSD_X57_E -56.591300000000004 0.0069082
+MUSETT_T3_DSSD_X58_E -57.508 0.00702016
+MUSETT_T3_DSSD_X59_E -57.1361 0.00697475
+MUSETT_T3_DSSD_X60_E -56.3804 0.00688251
+MUSETT_T3_DSSD_X61_E -56.9174 0.0069481000000000005
+MUSETT_T3_DSSD_X62_E -56.8245 0.00693679
+MUSETT_T3_DSSD_X63_E -56.577 0.00690664
+MUSETT_T3_DSSD_X64_E -64.14 0.00782956
+MUSETT_T3_DSSD_X65_E -63.8393 0.00779281
+MUSETT_T3_DSSD_X66_E -63.5644 0.0077592699999999995
+MUSETT_T3_DSSD_X67_E -63.7704 0.00778438
+MUSETT_T3_DSSD_X68_E -63.6716 0.00777235
+MUSETT_T3_DSSD_X69_E -63.2723 0.00772359
+MUSETT_T3_DSSD_X70_E -64.307 0.00784993
+MUSETT_T3_DSSD_X71_E -62.530800000000006 0.00763314
+MUSETT_T3_DSSD_X72_E -62.6729 0.00765044
+MUSETT_T3_DSSD_X73_E -63.019 0.007692719999999999
+MUSETT_T3_DSSD_X74_E -63.152800000000006 0.00770897
+MUSETT_T3_DSSD_X75_E -63.441 0.00774419
+MUSETT_T3_DSSD_X76_E -64.1093 0.00782574
+MUSETT_T3_DSSD_X77_E -62.4535 0.007623649999999999
+MUSETT_T3_DSSD_X78_E -62.6222 0.00764425
+MUSETT_T3_DSSD_X79_E -63.017199999999995 0.0076925100000000005
+MUSETT_T3_DSSD_X80_E -62.4534 0.00762363
+MUSETT_T3_DSSD_X81_E -62.780300000000004 0.00766354
+MUSETT_T3_DSSD_X82_E -62.6701 0.00765009
+MUSETT_T3_DSSD_X83_E -62.5547 0.00763598
+MUSETT_T3_DSSD_X84_E -62.062400000000004 0.00757587
+MUSETT_T3_DSSD_X85_E -62.422599999999996 0.0076199399999999995
+MUSETT_T3_DSSD_X86_E -62.402699999999996 0.00761746
+MUSETT_T3_DSSD_X87_E -62.1388 0.00758526
+MUSETT_T3_DSSD_X88_E -62.3516 0.00761123
+MUSETT_T3_DSSD_X89_E -62.791 0.00766488
+MUSETT_T3_DSSD_X90_E -62.302699999999994 0.00760527
+MUSETT_T3_DSSD_X91_E -62.0781 0.00757785
+MUSETT_T3_DSSD_X92_E -62.8293 0.00766952
+MUSETT_T3_DSSD_X93_E -62.5605 0.007636700000000001
+MUSETT_T3_DSSD_X94_E -62.144 0.0075859
+MUSETT_T3_DSSD_X95_E -62.3539 0.007611519999999999
+MUSETT_T3_DSSD_X96_E -56.131099999999996 0.00685191
+MUSETT_T3_DSSD_X97_E -55.920199999999994 0.0068261599999999995
+MUSETT_T3_DSSD_X98_E -55.1787 0.00673562
+MUSETT_T3_DSSD_X99_E -55.7836 0.0068095
+MUSETT_T3_DSSD_X100_E -55.958 0.00683076
+MUSETT_T3_DSSD_X101_E -55.9402 0.00682857
+MUSETT_T3_DSSD_X102_E -55.976 0.00683293
+MUSETT_T3_DSSD_X103_E -55.2555 0.00674498
+MUSETT_T3_DSSD_X104_E -55.479699999999994 0.00677237
+MUSETT_T3_DSSD_X105_E -56.0403 0.00684079
+MUSETT_T3_DSSD_X106_E -55.791199999999996 0.00681044
+MUSETT_T3_DSSD_X107_E -55.7016 0.00679948
+MUSETT_T3_DSSD_X108_E -56.7383 0.00692598
+MUSETT_T3_DSSD_X109_E -56.2939 0.0068717100000000005
+MUSETT_T3_DSSD_X110_E -55.8191 0.00681378
+MUSETT_T3_DSSD_X111_E -55.694199999999995 0.00679856
+MUSETT_T3_DSSD_X112_E -57.5541 0.007025559999999999
+MUSETT_T3_DSSD_X113_E -56.976800000000004 0.00695514
+MUSETT_T3_DSSD_X114_E -57.5184 0.00702123
+MUSETT_T3_DSSD_X115_E -56.9807 0.00695562
+MUSETT_T3_DSSD_X116_E -58.026199999999996 0.00708323
+MUSETT_T3_DSSD_X117_E -57.1911 0.00698127
+MUSETT_T3_DSSD_X118_E -57.432 0.007010710000000001
+MUSETT_T3_DSSD_X119_E -56.2909 0.00687137
+MUSETT_T3_DSSD_X120_E -56.7482 0.00692722
+MUSETT_T3_DSSD_X121_E -57.9017 0.00706808
+MUSETT_T3_DSSD_X122_E -57.5129 0.0070205599999999995
+MUSETT_T3_DSSD_X123_E -57.1124 0.0069717
+MUSETT_T3_DSSD_X124_E -57.6533 0.007037689999999999
+MUSETT_T3_DSSD_X125_E -56.762699999999995 0.00692904
+MUSETT_T3_DSSD_X126_E -57.8419 0.00706073
+MUSETT_T3_DSSD_X127_E -56.524800000000006 0.006899949999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..30bae93039805da11900a9c5c7f47539ad5ceaf8
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_E 60.1947 -0.00734802
+MUSETT_T3_DSSD_Y1_E 58.9879 -0.0072007500000000006
+MUSETT_T3_DSSD_Y2_E 60.1322 -0.00734041
+MUSETT_T3_DSSD_Y3_E 59.9775 -0.00732152
+MUSETT_T3_DSSD_Y4_E 59.7874 -0.007298300000000001
+MUSETT_T3_DSSD_Y5_E 59.8934 -0.007311219999999999
+MUSETT_T3_DSSD_Y6_E 59.7986 -0.00729963
+MUSETT_T3_DSSD_Y7_E 60.2513 -0.0073549
+MUSETT_T3_DSSD_Y8_E 60.5895 -0.007396219999999999
+MUSETT_T3_DSSD_Y9_E 60.4366 -0.00737756
+MUSETT_T3_DSSD_Y10_E 60.189699999999995 -0.0073474000000000005
+MUSETT_T3_DSSD_Y11_E 59.8264 -0.0073031
+MUSETT_T3_DSSD_Y12_E 59.6872 -0.00728606
+MUSETT_T3_DSSD_Y13_E 59.622099999999996 -0.0072781799999999995
+MUSETT_T3_DSSD_Y14_E 60.5748 -0.00739447
+MUSETT_T3_DSSD_Y15_E 59.719199999999994 -0.00729002
+MUSETT_T3_DSSD_Y16_E 62.9631 -0.007686009999999999
+MUSETT_T3_DSSD_Y17_E 63.1869 -0.00771331
+MUSETT_T3_DSSD_Y18_E 62.2623 -0.00760044
+MUSETT_T3_DSSD_Y19_E 62.806 -0.0076668000000000005
+MUSETT_T3_DSSD_Y20_E 63.2468 -0.00772062
+MUSETT_T3_DSSD_Y21_E 63.5503 -0.007757590000000001
+MUSETT_T3_DSSD_Y22_E 63.0168 -0.00769256
+MUSETT_T3_DSSD_Y23_E 62.986599999999996 -0.00768882
+MUSETT_T3_DSSD_Y24_E 63.5222 -0.00775424
+MUSETT_T3_DSSD_Y25_E 63.478699999999996 -0.0077488999999999995
+MUSETT_T3_DSSD_Y26_E 62.6431 -0.00764692
+MUSETT_T3_DSSD_Y27_E 63.4299 -0.0077429199999999995
+MUSETT_T3_DSSD_Y28_E 62.4837 -0.00762745
+MUSETT_T3_DSSD_Y29_E 62.960699999999996 -0.00768572
+MUSETT_T3_DSSD_Y30_E 63.085300000000004 -0.0077009
+MUSETT_T3_DSSD_Y31_E 62.9694 -0.00768675
+MUSETT_T3_DSSD_Y32_E 56.0911 -0.00684715
+MUSETT_T3_DSSD_Y33_E 56.2286 -0.00686391
+MUSETT_T3_DSSD_Y34_E 55.8346 -0.00681583
+MUSETT_T3_DSSD_Y35_E 55.713 -0.00680096
+MUSETT_T3_DSSD_Y36_E 55.757 -0.00680633
+MUSETT_T3_DSSD_Y37_E 56.228 -0.0068638399999999995
+MUSETT_T3_DSSD_Y38_E 55.9259 -0.00682695
+MUSETT_T3_DSSD_Y39_E 55.539699999999996 -0.00677979
+MUSETT_T3_DSSD_Y40_E 55.412099999999995 -0.00676422
+MUSETT_T3_DSSD_Y41_E 56.185 -0.00685859
+MUSETT_T3_DSSD_Y42_E 55.9818 -0.00683375
+MUSETT_T3_DSSD_Y43_E 55.3708 -0.00675918
+MUSETT_T3_DSSD_Y44_E 55.7489 -0.00680537
+MUSETT_T3_DSSD_Y45_E 55.612300000000005 -0.00678871
+MUSETT_T3_DSSD_Y46_E 55.926300000000005 -0.006826990000000001
+MUSETT_T3_DSSD_Y47_E 55.801199999999994 -0.00681172
+MUSETT_T3_DSSD_Y48_E 56.6708 -0.0069179
+MUSETT_T3_DSSD_Y49_E 56.9495 -0.0069519000000000004
+MUSETT_T3_DSSD_Y50_E 57.1471 -0.006975970000000001
+MUSETT_T3_DSSD_Y51_E 56.9604 -0.00695318
+MUSETT_T3_DSSD_Y52_E 56.493900000000004 -0.006896289999999999
+MUSETT_T3_DSSD_Y53_E 56.9632 -0.00695364
+MUSETT_T3_DSSD_Y54_E 56.5816 -0.00690701
+MUSETT_T3_DSSD_Y55_E 57.0507 -0.006964209999999999
+MUSETT_T3_DSSD_Y56_E 57.0769 -0.00696747
+MUSETT_T3_DSSD_Y57_E 56.6238 -0.00691216
+MUSETT_T3_DSSD_Y58_E 57.493199999999995 -0.00701827
+MUSETT_T3_DSSD_Y59_E 57.089400000000005 -0.00696896
+MUSETT_T3_DSSD_Y60_E 57.5863 -0.00702963
+MUSETT_T3_DSSD_Y61_E 57.0447 -0.00696349
+MUSETT_T3_DSSD_Y62_E 56.777699999999996 -0.0069308899999999994
+MUSETT_T3_DSSD_Y63_E 57.4216 -0.00700961
+MUSETT_T3_DSSD_Y64_E 59.437599999999996 -0.007255620000000001
+MUSETT_T3_DSSD_Y65_E 59.994 -0.00732351
+MUSETT_T3_DSSD_Y66_E 59.523900000000005 -0.0072662000000000004
+MUSETT_T3_DSSD_Y67_E 59.3371 -0.00724336
+MUSETT_T3_DSSD_Y68_E 59.498599999999996 -0.007263029999999999
+MUSETT_T3_DSSD_Y69_E 58.818599999999996 -0.00718002
+MUSETT_T3_DSSD_Y70_E 59.3322 -0.00724276
+MUSETT_T3_DSSD_Y71_E 60.018699999999995 -0.00732659
+MUSETT_T3_DSSD_Y72_E 60.1805 -0.0073463
+MUSETT_T3_DSSD_Y73_E 59.4807 -0.00726089
+MUSETT_T3_DSSD_Y74_E 59.527699999999996 -0.0072666399999999996
+MUSETT_T3_DSSD_Y75_E 59.6351 -0.00727972
+MUSETT_T3_DSSD_Y76_E 59.581199999999995 -0.00727315
+MUSETT_T3_DSSD_Y77_E 59.4447 -0.00725647
+MUSETT_T3_DSSD_Y78_E 59.0484 -0.007208109999999999
+MUSETT_T3_DSSD_Y79_E 59.9895 -0.007322980000000001
+MUSETT_T3_DSSD_Y80_E 62.8554 -0.00767285
+MUSETT_T3_DSSD_Y81_E 62.7504 -0.00766003
+MUSETT_T3_DSSD_Y82_E 62.5327 -0.007633460000000001
+MUSETT_T3_DSSD_Y83_E 62.151300000000006 -0.00758691
+MUSETT_T3_DSSD_Y84_E 62.0186 -0.00757075
+MUSETT_T3_DSSD_Y85_E 62.7102 -0.007655090000000001
+MUSETT_T3_DSSD_Y86_E 62.2716 -0.0076015499999999995
+MUSETT_T3_DSSD_Y87_E 62.96 -0.00768565
+MUSETT_T3_DSSD_Y88_E 62.677800000000005 -0.0076512099999999994
+MUSETT_T3_DSSD_Y89_E 62.6261 -0.0076448900000000005
+MUSETT_T3_DSSD_Y90_E 61.8783 -0.00755359
+MUSETT_T3_DSSD_Y91_E 61.999199999999995 -0.00756832
+MUSETT_T3_DSSD_Y92_E 61.924699999999994 -0.00755927
+MUSETT_T3_DSSD_Y93_E 61.995599999999996 -0.00756788
+MUSETT_T3_DSSD_Y94_E 61.9605 -0.00756357
+MUSETT_T3_DSSD_Y95_E 61.8336 -0.00754812
+MUSETT_T3_DSSD_Y96_E 56.7314 -0.00692523
+MUSETT_T3_DSSD_Y97_E 56.9099 -0.00694702
+MUSETT_T3_DSSD_Y98_E 56.3183 -0.00687484
+MUSETT_T3_DSSD_Y99_E 55.9465 -0.006829399999999999
+MUSETT_T3_DSSD_Y100_E 56.299800000000005 -0.00687252
+MUSETT_T3_DSSD_Y101_E 56.3287 -0.00687609
+MUSETT_T3_DSSD_Y102_E 55.9865 -0.0068343
+MUSETT_T3_DSSD_Y103_E 55.996300000000005 -0.006835460000000001
+MUSETT_T3_DSSD_Y104_E 55.8581 -0.006818609999999999
+MUSETT_T3_DSSD_Y105_E 56.336400000000005 -0.006876999999999999
+MUSETT_T3_DSSD_Y106_E 56.504400000000004 -0.00689753
+MUSETT_T3_DSSD_Y107_E 56.2804 -0.00687019
+MUSETT_T3_DSSD_Y108_E 55.8017 -0.006811759999999999
+MUSETT_T3_DSSD_Y109_E 55.903800000000004 -0.00682419
+MUSETT_T3_DSSD_Y110_E 56.6722 -0.00691805
+MUSETT_T3_DSSD_Y111_E 56.6689 -0.00691765
+MUSETT_T3_DSSD_Y112_E 57.102199999999996 -0.0069704699999999994
+MUSETT_T3_DSSD_Y113_E 57.033699999999996 -0.00696222
+MUSETT_T3_DSSD_Y114_E 57.102 -0.00697059
+MUSETT_T3_DSSD_Y115_E 57.0152 -0.0069599399999999995
+MUSETT_T3_DSSD_Y116_E 57.666599999999995 -0.00703944
+MUSETT_T3_DSSD_Y117_E 57.3273 -0.0069980599999999995
+MUSETT_T3_DSSD_Y118_E 56.838800000000006 -0.0069384
+MUSETT_T3_DSSD_Y119_E 57.642300000000006 -0.007036400000000001
+MUSETT_T3_DSSD_Y120_E 57.4724 -0.007015749999999999
+MUSETT_T3_DSSD_Y121_E 57.0092 -0.006959170000000001
+MUSETT_T3_DSSD_Y122_E 57.4276 -0.00701028
+MUSETT_T3_DSSD_Y123_E 57.1051 -0.00697094
+MUSETT_T3_DSSD_Y124_E 57.606 -0.00703198
+MUSETT_T3_DSSD_Y125_E 56.8527 -0.00694013
+MUSETT_T3_DSSD_Y126_E 57.287800000000004 -0.006993109999999999
+MUSETT_T3_DSSD_Y127_E 57.5267 -0.00702236
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0c66d17d1ef2704ec870f95f8fa20b5c6d1f2e47
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_T 936.261 -0.113591
+MUSETT_T3_DSSD_X1_T 949.597 -0.115254
+MUSETT_T3_DSSD_X2_T 954.137 -0.115822
+MUSETT_T3_DSSD_X3_T 956.021 -0.116042
+MUSETT_T3_DSSD_X4_T 948.148 -0.115096
+MUSETT_T3_DSSD_X5_T 962.715 -0.11686
+MUSETT_T3_DSSD_X6_T 967.087 -0.117385
+MUSETT_T3_DSSD_X7_T 972.268 -0.118019
+MUSETT_T3_DSSD_X8_T 970.481 -0.117779
+MUSETT_T3_DSSD_X9_T 968.226 -0.117496
+MUSETT_T3_DSSD_X10_T 970.608 -0.117795
+MUSETT_T3_DSSD_X11_T 982.826 -0.119273
+MUSETT_T3_DSSD_X12_T 972.655 -0.118031
+MUSETT_T3_DSSD_X13_T 978.966 -0.118805
+MUSETT_T3_DSSD_X14_T 976.646 -0.118524
+MUSETT_T3_DSSD_X15_T 1358.4 -0.119127
+MUSETT_T3_DSSD_X16_T 965.022 -0.117029
+MUSETT_T3_DSSD_X17_T 961.069 -0.116582
+MUSETT_T3_DSSD_X18_T 979.729 -0.11886
+MUSETT_T3_DSSD_X19_T 975.886 -0.118386
+MUSETT_T3_DSSD_X20_T 982.811 -0.119229
+MUSETT_T3_DSSD_X21_T 989.956 -0.120114
+MUSETT_T3_DSSD_X22_T 982.322 -0.119177
+MUSETT_T3_DSSD_X23_T 986.837 -0.119693
+MUSETT_T3_DSSD_X24_T 984.553 -0.119405
+MUSETT_T3_DSSD_X25_T 985.367 -0.119523
+MUSETT_T3_DSSD_X26_T 998.436 -0.12115
+MUSETT_T3_DSSD_X27_T 994.592 -0.120628
+MUSETT_T3_DSSD_X28_T 1004.55 -0.121885
+MUSETT_T3_DSSD_X29_T 997.75 -0.121035
+MUSETT_T3_DSSD_X30_T 999.387 -0.121233
+MUSETT_T3_DSSD_X31_T 994.205 -0.120654
+MUSETT_T3_DSSD_X32_T 895.626 -0.108693
+MUSETT_T3_DSSD_X33_T 901.788 -0.109485
+MUSETT_T3_DSSD_X34_T 909.669 -0.110421
+MUSETT_T3_DSSD_X35_T 902.809 -0.109588
+MUSETT_T3_DSSD_X36_T 908.707 -0.110301
+MUSETT_T3_DSSD_X37_T 917.184 -0.111327
+MUSETT_T3_DSSD_X38_T 918.636 -0.111495
+MUSETT_T3_DSSD_X39_T 927.002 -0.112521
+MUSETT_T3_DSSD_X40_T 934.79 -0.11347
+MUSETT_T3_DSSD_X41_T 928.489 -0.112717
+MUSETT_T3_DSSD_X42_T 925.669 -0.112335
+MUSETT_T3_DSSD_X43_T 450.0 -0.112964
+MUSETT_T3_DSSD_X44_T 932.907 -0.113245
+MUSETT_T3_DSSD_X45_T 927.364 -0.11258
+MUSETT_T3_DSSD_X46_T 934.8 -0.113476
+MUSETT_T3_DSSD_X47_T 933.166 -0.113256
+MUSETT_T3_DSSD_X48_T 863.882 -0.104661
+MUSETT_T3_DSSD_X49_T 863.742 -0.104634
+MUSETT_T3_DSSD_X50_T 876.032 -0.106155
+MUSETT_T3_DSSD_X51_T 885.987 -0.107364
+MUSETT_T3_DSSD_X52_T 886.077 -0.107368
+MUSETT_T3_DSSD_X53_T 882.141 -0.106861
+MUSETT_T3_DSSD_X54_T 894.386 -0.108382
+MUSETT_T3_DSSD_X55_T 897.465 -0.108733
+MUSETT_T3_DSSD_X56_T 894.9 -0.10844
+MUSETT_T3_DSSD_X57_T 900.295 -0.10908
+MUSETT_T3_DSSD_X58_T 895.793 -0.108538
+MUSETT_T3_DSSD_X59_T 895.372 -0.10849
+MUSETT_T3_DSSD_X60_T 902.176 -0.109312
+MUSETT_T3_DSSD_X61_T 903.192 -0.109445
+MUSETT_T3_DSSD_X62_T 889.712 -0.107803
+MUSETT_T3_DSSD_X63_T 921.265 -0.108862
+MUSETT_T3_DSSD_X64_T 981.944 -0.119126
+MUSETT_T3_DSSD_X65_T 987.148 -0.119789
+MUSETT_T3_DSSD_X66_T 987.456 -0.119851
+MUSETT_T3_DSSD_X67_T 1003.28 -0.121753
+MUSETT_T3_DSSD_X68_T 1003.82 -0.121824
+MUSETT_T3_DSSD_X69_T 1000.66 -0.121446
+MUSETT_T3_DSSD_X70_T 1004.35 -0.121893
+MUSETT_T3_DSSD_X71_T 1008.06 -0.122347
+MUSETT_T3_DSSD_X72_T 1004.22 -0.121883
+MUSETT_T3_DSSD_X73_T 1011.08 -0.122684
+MUSETT_T3_DSSD_X74_T 1019.46 -0.123722
+MUSETT_T3_DSSD_X75_T 1029.58 -0.124938
+MUSETT_T3_DSSD_X76_T 1011.08 -0.122709
+MUSETT_T3_DSSD_X77_T 1010.81 -0.12265
+MUSETT_T3_DSSD_X78_T 1022.22 -0.124061
+MUSETT_T3_DSSD_X79_T 1391.94 -0.123313
+MUSETT_T3_DSSD_X80_T 939.257 -0.11381
+MUSETT_T3_DSSD_X81_T 945.066 -0.114558
+MUSETT_T3_DSSD_X82_T 948.6 -0.114986
+MUSETT_T3_DSSD_X83_T 947.122 -0.114804
+MUSETT_T3_DSSD_X84_T 961.987 -0.116619
+MUSETT_T3_DSSD_X85_T 964.59 -0.11693
+MUSETT_T3_DSSD_X86_T 959.397 -0.116299
+MUSETT_T3_DSSD_X87_T 964.355 -0.116863
+MUSETT_T3_DSSD_X88_T 975.002 -0.118161
+MUSETT_T3_DSSD_X89_T 971.077 -0.117687
+MUSETT_T3_DSSD_X90_T 976.04 -0.118304
+MUSETT_T3_DSSD_X91_T 983.975 -0.119256
+MUSETT_T3_DSSD_X92_T 983.617 -0.119241
+MUSETT_T3_DSSD_X93_T 983.301 -0.119186
+MUSETT_T3_DSSD_X94_T 980.734 -0.118879
+MUSETT_T3_DSSD_X95_T 975.837 -0.118278
+MUSETT_T3_DSSD_X96_T 858.761 -0.104124
+MUSETT_T3_DSSD_X97_T 863.527 -0.104728
+MUSETT_T3_DSSD_X98_T 863.719 -0.104753
+MUSETT_T3_DSSD_X99_T 869.797 -0.105492
+MUSETT_T3_DSSD_X100_T 879.582 -0.106693
+MUSETT_T3_DSSD_X101_T 874.971 -0.10614
+MUSETT_T3_DSSD_X102_T 879.706 -0.106708
+MUSETT_T3_DSSD_X103_T 878.738 -0.106567
+MUSETT_T3_DSSD_X104_T 887.854 -0.107671
+MUSETT_T3_DSSD_X105_T 892.385 -0.108216
+MUSETT_T3_DSSD_X106_T 884.225 -0.107225
+MUSETT_T3_DSSD_X107_T 894.981 -0.108561
+MUSETT_T3_DSSD_X108_T 895.51 -0.108609
+MUSETT_T3_DSSD_X109_T 891.851 -0.108191
+MUSETT_T3_DSSD_X110_T 901.356 -0.109337
+MUSETT_T3_DSSD_X111_T 900.727 -0.108709
+MUSETT_T3_DSSD_X112_T 855.952 -0.103629
+MUSETT_T3_DSSD_X113_T 865.7 -0.10481
+MUSETT_T3_DSSD_X114_T 866.161 -0.1049
+MUSETT_T3_DSSD_X115_T 872.362 -0.105647
+MUSETT_T3_DSSD_X116_T 1490.13 -0.126949
+MUSETT_T3_DSSD_X117_T 876.561 -0.106145
+MUSETT_T3_DSSD_X118_T 884.075 -0.107055
+MUSETT_T3_DSSD_X119_T 881.54 -0.10675
+MUSETT_T3_DSSD_X120_T 884.679 -0.107137
+MUSETT_T3_DSSD_X121_T 888.637 -0.107599
+MUSETT_T3_DSSD_X122_T 884.493 -0.107093
+MUSETT_T3_DSSD_X123_T 893.964 -0.108252
+MUSETT_T3_DSSD_X124_T 888.064 -0.107522
+MUSETT_T3_DSSD_X125_T 894.536 -0.108336
+MUSETT_T3_DSSD_X126_T 882.088 -0.106793
+MUSETT_T3_DSSD_X127_T 890.98 -0.107896
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..164e1edc8a5c9527382a6866a680275ec137b39a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_T 916.716 -0.11121
+MUSETT_T3_DSSD_Y1_T 924.259 -0.112154
+MUSETT_T3_DSSD_Y2_T 933.256 -0.113241
+MUSETT_T3_DSSD_Y3_T 942.953 -0.114409
+MUSETT_T3_DSSD_Y4_T 939.901 -0.114032
+MUSETT_T3_DSSD_Y5_T 947.878 -0.114994
+MUSETT_T3_DSSD_Y6_T 952.484 -0.115552
+MUSETT_T3_DSSD_Y7_T 952.713 -0.115546
+MUSETT_T3_DSSD_Y8_T 960.463 -0.116506
+MUSETT_T3_DSSD_Y9_T 964.543 -0.117006
+MUSETT_T3_DSSD_Y10_T 966.84 -0.117251
+MUSETT_T3_DSSD_Y11_T 965.68 -0.117093
+MUSETT_T3_DSSD_Y12_T 975.182 -0.118272
+MUSETT_T3_DSSD_Y13_T 981.614 -0.119048
+MUSETT_T3_DSSD_Y14_T 973.869 -0.118075
+MUSETT_T3_DSSD_Y15_T 981.076 -0.118941
+MUSETT_T3_DSSD_Y16_T 967.206 -0.117174
+MUSETT_T3_DSSD_Y17_T 980.188 -0.118815
+MUSETT_T3_DSSD_Y18_T 981.134 -0.118931
+MUSETT_T3_DSSD_Y19_T 986.719 -0.119638
+MUSETT_T3_DSSD_Y20_T 992.386 -0.12034
+MUSETT_T3_DSSD_Y21_T 1002.21 -0.121551
+MUSETT_T3_DSSD_Y22_T 997.474 -0.120998
+MUSETT_T3_DSSD_Y23_T 992.008 -0.120321
+MUSETT_T3_DSSD_Y24_T 998.021 -0.121073
+MUSETT_T3_DSSD_Y25_T 1004.15 -0.121839
+MUSETT_T3_DSSD_Y26_T 1004.31 -0.121856
+MUSETT_T3_DSSD_Y27_T 1010.69 -0.122649
+MUSETT_T3_DSSD_Y28_T 1013.79 -0.12302
+MUSETT_T3_DSSD_Y29_T 1002.56 -0.121668
+MUSETT_T3_DSSD_Y30_T 1011.72 -0.122794
+MUSETT_T3_DSSD_Y31_T 1012.54 -0.122927
+MUSETT_T3_DSSD_Y32_T 868.546 -0.105446
+MUSETT_T3_DSSD_Y33_T 865.415 -0.105092
+MUSETT_T3_DSSD_Y34_T 870.615 -0.10573
+MUSETT_T3_DSSD_Y35_T 867.501 -0.105345
+MUSETT_T3_DSSD_Y36_T 879.085 -0.106744
+MUSETT_T3_DSSD_Y37_T 878.372 -0.106654
+MUSETT_T3_DSSD_Y38_T 883.834 -0.107294
+MUSETT_T3_DSSD_Y39_T 892.468 -0.108361
+MUSETT_T3_DSSD_Y40_T 889.652 -0.10799
+MUSETT_T3_DSSD_Y41_T 893.582 -0.10846
+MUSETT_T3_DSSD_Y42_T 902.982 -0.109593
+MUSETT_T3_DSSD_Y43_T 899.542 -0.109195
+MUSETT_T3_DSSD_Y44_T 894.786 -0.108568
+MUSETT_T3_DSSD_Y45_T 904.997 -0.109804
+MUSETT_T3_DSSD_Y46_T 908.733 -0.110263
+MUSETT_T3_DSSD_Y47_T 901.41 -0.109382
+MUSETT_T3_DSSD_Y48_T 874.853 -0.105997
+MUSETT_T3_DSSD_Y49_T 880.713 -0.106772
+MUSETT_T3_DSSD_Y50_T 892.705 -0.108217
+MUSETT_T3_DSSD_Y51_T 895.218 -0.108527
+MUSETT_T3_DSSD_Y52_T 889.343 -0.107825
+MUSETT_T3_DSSD_Y53_T 897.932 -0.108862
+MUSETT_T3_DSSD_Y54_T 902.448 -0.109456
+MUSETT_T3_DSSD_Y55_T 908.367 -0.110152
+MUSETT_T3_DSSD_Y56_T 912.74 -0.110718
+MUSETT_T3_DSSD_Y57_T 911.519 -0.11056
+MUSETT_T3_DSSD_Y58_T 920.413 -0.111636
+MUSETT_T3_DSSD_Y59_T 906.185 -0.109934
+MUSETT_T3_DSSD_Y60_T 919.759 -0.111581
+MUSETT_T3_DSSD_Y61_T 920.555 -0.111694
+MUSETT_T3_DSSD_Y62_T 915.715 -0.1111
+MUSETT_T3_DSSD_Y63_T 918.454 -0.11144
+MUSETT_T3_DSSD_Y64_T 901.244 -0.109216
+MUSETT_T3_DSSD_Y65_T 907.742 -0.110026
+MUSETT_T3_DSSD_Y66_T 908.334 -0.110106
+MUSETT_T3_DSSD_Y67_T 916.785 -0.11114
+MUSETT_T3_DSSD_Y68_T 928.178 -0.11252
+MUSETT_T3_DSSD_Y69_T 936.612 -0.113544
+MUSETT_T3_DSSD_Y70_T 929.327 -0.112672
+MUSETT_T3_DSSD_Y71_T 927.889 -0.112491
+MUSETT_T3_DSSD_Y72_T 944.015 -0.114462
+MUSETT_T3_DSSD_Y73_T 936.5 -0.11354
+MUSETT_T3_DSSD_Y74_T 952.669 -0.115517
+MUSETT_T3_DSSD_Y75_T 949.121 -0.115086
+MUSETT_T3_DSSD_Y76_T 961.66 -0.116618
+MUSETT_T3_DSSD_Y77_T 950.324 -0.115232
+MUSETT_T3_DSSD_Y78_T 943.005 -0.114343
+MUSETT_T3_DSSD_Y79_T 948.05 -0.114947
+MUSETT_T3_DSSD_Y80_T 967.814 -0.117288
+MUSETT_T3_DSSD_Y81_T 979.35 -0.118727
+MUSETT_T3_DSSD_Y82_T 985.387 -0.119474
+MUSETT_T3_DSSD_Y83_T 988.884 -0.119909
+MUSETT_T3_DSSD_Y84_T 990.688 -0.120116
+MUSETT_T3_DSSD_Y85_T 997.728 -0.120975
+MUSETT_T3_DSSD_Y86_T 994.598 -0.120606
+MUSETT_T3_DSSD_Y87_T 996.045 -0.12076
+MUSETT_T3_DSSD_Y88_T 1000.77 -0.121336
+MUSETT_T3_DSSD_Y89_T 1011.99 -0.122713
+MUSETT_T3_DSSD_Y90_T 1015.05 -0.1231
+MUSETT_T3_DSSD_Y91_T 1003.4 -0.121678
+MUSETT_T3_DSSD_Y92_T 1011.74 -0.122697
+MUSETT_T3_DSSD_Y93_T 1014.96 -0.123087
+MUSETT_T3_DSSD_Y94_T 1007.34 -0.122144
+MUSETT_T3_DSSD_Y95_T 1008.36 -0.122274
+MUSETT_T3_DSSD_Y96_T 871.329 -0.105573
+MUSETT_T3_DSSD_Y97_T 868.142 -0.105224
+MUSETT_T3_DSSD_Y98_T 872.865 -0.105791
+MUSETT_T3_DSSD_Y99_T 882.085 -0.106904
+MUSETT_T3_DSSD_Y100_T 889.159 -0.107789
+MUSETT_T3_DSSD_Y101_T 888.956 -0.107742
+MUSETT_T3_DSSD_Y102_T 899.906 -0.109085
+MUSETT_T3_DSSD_Y103_T 892.033 -0.108126
+MUSETT_T3_DSSD_Y104_T 899.207 -0.108999
+MUSETT_T3_DSSD_Y105_T 891.613 -0.108068
+MUSETT_T3_DSSD_Y106_T 891.136 -0.108006
+MUSETT_T3_DSSD_Y107_T 900.207 -0.109125
+MUSETT_T3_DSSD_Y108_T 902.911 -0.109439
+MUSETT_T3_DSSD_Y109_T 900.692 -0.109168
+MUSETT_T3_DSSD_Y110_T 896.133 -0.108625
+MUSETT_T3_DSSD_Y111_T 902.665 -0.109416
+MUSETT_T3_DSSD_Y112_T 888.587 -0.107554
+MUSETT_T3_DSSD_Y113_T 895.918 -0.108473
+MUSETT_T3_DSSD_Y114_T 898.97 -0.108848
+MUSETT_T3_DSSD_Y115_T 894.394 -0.108292
+MUSETT_T3_DSSD_Y116_T 902.574 -0.109288
+MUSETT_T3_DSSD_Y117_T 907.964 -0.109943
+MUSETT_T3_DSSD_Y118_T 906.564 -0.109765
+MUSETT_T3_DSSD_Y119_T 905.798 -0.109672
+MUSETT_T3_DSSD_Y120_T 912.702 -0.110512
+MUSETT_T3_DSSD_Y121_T 921.335 -0.111588
+MUSETT_T3_DSSD_Y122_T 924.085 -0.111915
+MUSETT_T3_DSSD_Y123_T 906.564 -0.109772
+MUSETT_T3_DSSD_Y124_T 910.838 -0.11029
+MUSETT_T3_DSSD_Y125_T 916.176 -0.110947
+MUSETT_T3_DSSD_Y126_T 917.763 -0.111116
+MUSETT_T3_DSSD_Y127_T 925.891 -0.112131
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..18187193b9adbafae392d0563b75c3ad7c8e4415
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/.root_hist b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..26bba7ed330471cd0bf9199205dbefbd3ba696f7
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/.root_hist
@@ -0,0 +1,35 @@
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0012","MUST2")
+.ls
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0012","MUST2")
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0012","MUST2")
+.q
+.L TimeCalibrator.C+
+TimeCalibrator("r0012","X")
+.q
+.L TimeCalibrator.C+
+TimeCalibrator("r0013","Y")
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0013","MUST2")
+TimeCalibrator("r0013","Y")
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0015","MUST2")
+.L TimeCalibrator.C+
+TimeCalibrator("r0015","X",32,"MUST2",3,3)
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0016","MUST2")
+.L TimeCalibrator.C+
+TimeCalibrator("r0016","Y",32,"MUST2",3,3)
+ExtractMust2Histos("r0017","MUST2")
+TimeCalibrator("r0017","Y",32,"MUST2",3,3)
+TimeCalibrator("r0017","X",32,"MUST2",4,4)
+ExtractMust2Histos("r0018","MUST2")
+TimeCalibrator("r0018","Y",32,"MUST2",4,4)
+.q
+.q
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2083ac78f5072a59429f6de42a6c88ceec4bc589
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X1_T 926.099 -0.111982
+MUSETT_T0_DSSD_X2_T 869.874 -0.105192
+MUSETT_T0_DSSD_X3_T 867.818 -0.104955
+MUSETT_T0_DSSD_X4_T 937.107 -0.113338
+MUSETT_T0_DSSD_X5_T 887.963 -0.107397
+MUSETT_T0_DSSD_X6_T 935.505 -0.11314
+MUSETT_T0_DSSD_X7_T 876.58 -0.106033
+MUSETT_T0_DSSD_X8_T 932.855 -0.112807
+MUSETT_T0_DSSD_X9_T 878.364 -0.106227
+MUSETT_T0_DSSD_X10_T 925.852 -0.111943
+MUSETT_T0_DSSD_X11_T 892.804 -0.108005
+MUSETT_T0_DSSD_X12_T 921.22 -0.111378
+MUSETT_T0_DSSD_X13_T 894.475 -0.108195
+MUSETT_T0_DSSD_X14_T 913.548 -0.110456
+MUSETT_T0_DSSD_X15_T 892.476 -0.107979
+MUSETT_T0_DSSD_X16_T 922.196 -0.111499
+MUSETT_T0_DSSD_X17_T 895.157 -0.108302
+MUSETT_T0_DSSD_X18_T 913.814 -0.110458
+MUSETT_T0_DSSD_X19_T 895.419 -0.108334
+MUSETT_T0_DSSD_X20_T 909.716 -0.109955
+MUSETT_T0_DSSD_X21_T 894.752 -0.108243
+MUSETT_T0_DSSD_X22_T 907.059 -0.109652
+MUSETT_T0_DSSD_X23_T 901.721 -0.109095
+MUSETT_T0_DSSD_X24_T 903.944 -0.109295
+MUSETT_T0_DSSD_X25_T 896.865 -0.108505
+MUSETT_T0_DSSD_X26_T 903.08 -0.109464
+MUSETT_T0_DSSD_X27_T 891.69 -0.107877
+MUSETT_T0_DSSD_X28_T 890.381 -0.107622
+MUSETT_T0_DSSD_X29_T 894.258 -0.108187
+MUSETT_T0_DSSD_X30_T 884.86 -0.106942
+MUSETT_T0_DSSD_X31_T 881.631 -0.106556
+MUSETT_T0_DSSD_X32_T 894.901 -0.10826
+MUSETT_T0_DSSD_X33_T 991.094 -0.119947
+MUSETT_T0_DSSD_X34_T 943.498 -0.114176
+MUSETT_T0_DSSD_X35_T 954.542 -0.115529
+MUSETT_T0_DSSD_X36_T 995.135 -0.12045
+MUSETT_T0_DSSD_X37_T 955.481 -0.115657
+MUSETT_T0_DSSD_X38_T 998.458 -0.120851
+MUSETT_T0_DSSD_X39_T 969.726 -0.117409
+MUSETT_T0_DSSD_X40_T 1000.07 -0.121021
+MUSETT_T0_DSSD_X41_T 969.528 -0.117367
+MUSETT_T0_DSSD_X42_T 1004.27 -0.121545
+MUSETT_T0_DSSD_X43_T 969.351 -0.117353
+MUSETT_T0_DSSD_X44_T 1000.4 -0.121057
+MUSETT_T0_DSSD_X45_T 974.621 -0.117969
+MUSETT_T0_DSSD_X46_T 998.041 -0.120777
+MUSETT_T0_DSSD_X47_T 976.758 -0.118246
+MUSETT_T0_DSSD_X48_T 987.033 -0.119427
+MUSETT_T0_DSSD_X49_T 975.237 -0.118065
+MUSETT_T0_DSSD_X50_T 991.826 -0.120005
+MUSETT_T0_DSSD_X51_T 979.286 -0.118546
+MUSETT_T0_DSSD_X52_T 990.352 -0.119845
+MUSETT_T0_DSSD_X53_T 984.065 -0.119138
+MUSETT_T0_DSSD_X54_T 979.666 -0.118555
+MUSETT_T0_DSSD_X55_T 983.533 -0.119075
+MUSETT_T0_DSSD_X56_T 985.306 -0.119233
+MUSETT_T0_DSSD_X57_T 991.106 -0.119996
+MUSETT_T0_DSSD_X58_T 976.043 -0.118125
+MUSETT_T0_DSSD_X59_T 976.115 -0.118174
+MUSETT_T0_DSSD_X60_T 975.677 -0.118044
+MUSETT_T0_DSSD_X61_T 987.246 -0.119531
+MUSETT_T0_DSSD_X62_T 963.333 -0.116527
+MUSETT_T0_DSSD_X63_T 952.87 -0.115275
+MUSETT_T0_DSSD_X64_T 978.41 -0.118448
+MUSETT_T0_DSSD_X65_T 919.481 -0.111151
+MUSETT_T0_DSSD_X66_T 868.319 -0.105013
+MUSETT_T0_DSSD_X67_T 877.769 -0.106169
+MUSETT_T0_DSSD_X68_T 914.799 -0.110613
+MUSETT_T0_DSSD_X69_T 878.126 -0.106212
+MUSETT_T0_DSSD_X70_T 919.575 -0.11118
+MUSETT_T0_DSSD_X71_T 883.907 -0.106905
+MUSETT_T0_DSSD_X72_T 917.725 -0.110972
+MUSETT_T0_DSSD_X73_T 893.227 -0.108043
+MUSETT_T0_DSSD_X74_T 914.821 -0.110604
+MUSETT_T0_DSSD_X75_T 900.551 -0.108935
+MUSETT_T0_DSSD_X76_T 922.429 -0.111529
+MUSETT_T0_DSSD_X77_T 896.432 -0.108442
+MUSETT_T0_DSSD_X78_T 914.168 -0.1105
+MUSETT_T0_DSSD_X79_T 894.569 -0.108194
+MUSETT_T0_DSSD_X80_T 908.954 -0.109898
+MUSETT_T0_DSSD_X81_T 903.782 -0.109336
+MUSETT_T0_DSSD_X82_T 914.714 -0.110579
+MUSETT_T0_DSSD_X83_T 901.487 -0.109053
+MUSETT_T0_DSSD_X84_T 913.375 -0.110413
+MUSETT_T0_DSSD_X85_T 907.332 -0.109771
+MUSETT_T0_DSSD_X86_T 898.889 -0.108648
+MUSETT_T0_DSSD_X87_T 904.852 -0.109449
+MUSETT_T0_DSSD_X88_T 905.323 -0.109423
+MUSETT_T0_DSSD_X89_T 902.075 -0.109128
+MUSETT_T0_DSSD_X90_T 901.831 -0.109007
+MUSETT_T0_DSSD_X91_T 906.169 -0.109641
+MUSETT_T0_DSSD_X92_T 891.715 -0.107782
+MUSETT_T0_DSSD_X93_T 902.566 -0.109177
+MUSETT_T0_DSSD_X94_T 891.484 -0.107748
+MUSETT_T0_DSSD_X95_T 888.355 -0.107364
+MUSETT_T0_DSSD_X96_T 904.912 -0.109478
+MUSETT_T0_DSSD_X97_T 965.16 -0.116744
+MUSETT_T0_DSSD_X98_T 957.155 -0.115846
+MUSETT_T0_DSSD_X99_T 962.206 -0.11646
+MUSETT_T0_DSSD_X100_T 974.188 -0.117868
+MUSETT_T0_DSSD_X101_T 971.895 -0.117644
+MUSETT_T0_DSSD_X102_T 960.173 -0.116152
+MUSETT_T0_DSSD_X103_T 973.151 -0.117791
+MUSETT_T0_DSSD_X104_T 961.407 -0.116299
+MUSETT_T0_DSSD_X105_T 976.443 -0.118174
+MUSETT_T0_DSSD_X106_T 961.03 -0.11625
+MUSETT_T0_DSSD_X107_T 989.114 -0.119717
+MUSETT_T0_DSSD_X108_T 964.341 -0.11664
+MUSETT_T0_DSSD_X109_T 993.741 -0.120284
+MUSETT_T0_DSSD_X110_T 956.784 -0.115728
+MUSETT_T0_DSSD_X111_T 994.917 -0.120426
+MUSETT_T0_DSSD_X112_T 949.288 -0.114813
+MUSETT_T0_DSSD_X113_T 1005.69 -0.121763
+MUSETT_T0_DSSD_X114_T 942.586 -0.113978
+MUSETT_T0_DSSD_X115_T 986.82 -0.119445
+MUSETT_T0_DSSD_X116_T 949.396 -0.114818
+MUSETT_T0_DSSD_X117_T 1003.89 -0.121535
+MUSETT_T0_DSSD_X118_T 941.329 -0.113819
+MUSETT_T0_DSSD_X119_T 994.316 -0.120381
+MUSETT_T0_DSSD_X120_T 930.333 -0.112468
+MUSETT_T0_DSSD_X121_T 1001.66 -0.121262
+MUSETT_T0_DSSD_X122_T 936.88 -0.113281
+MUSETT_T0_DSSD_X123_T 1005.75 -0.121766
+MUSETT_T0_DSSD_X124_T 924.498 -0.111774
+MUSETT_T0_DSSD_X125_T 996.228 -0.120615
+MUSETT_T0_DSSD_X126_T 932.405 -0.112746
+MUSETT_T0_DSSD_X127_T 922.493 -0.111515
+MUSETT_T0_DSSD_X128_T 999.032 -0.120952
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..8cffd6b21f7ef333cdd61679eac198de93f58561
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 983.277 -0.118761
+MUSETT_T0_DSSD_Y2_T 938.109 -0.113175
+MUSETT_T0_DSSD_Y3_T 947.448 -0.114309
+MUSETT_T0_DSSD_Y4_T 976.65 -0.117944
+MUSETT_T0_DSSD_Y5_T 956.035 -0.115351
+MUSETT_T0_DSSD_Y6_T 974.115 -0.117633
+MUSETT_T0_DSSD_Y7_T 947.978 -0.11436
+MUSETT_T0_DSSD_Y8_T 978.32 -0.11814
+MUSETT_T0_DSSD_Y9_T 950.631 -0.114686
+MUSETT_T0_DSSD_Y10_T 980.648 -0.118398
+MUSETT_T0_DSSD_Y11_T 953.963 -0.115103
+MUSETT_T0_DSSD_Y12_T 974.23 -0.117632
+MUSETT_T0_DSSD_Y13_T 959.973 -0.115832
+MUSETT_T0_DSSD_Y14_T 971.457 -0.117316
+MUSETT_T0_DSSD_Y15_T 959.848 -0.115841
+MUSETT_T0_DSSD_Y16_T 975.83 -0.117842
+MUSETT_T0_DSSD_Y17_T 964.52 -0.116398
+MUSETT_T0_DSSD_Y18_T 969.183 -0.117018
+MUSETT_T0_DSSD_Y19_T 962.989 -0.116195
+MUSETT_T0_DSSD_Y20_T 971.85 -0.117339
+MUSETT_T0_DSSD_Y21_T 959.157 -0.115516
+MUSETT_T0_DSSD_Y22_T 973.261 -0.117481
+MUSETT_T0_DSSD_Y23_T 973.941 -0.117562
+MUSETT_T0_DSSD_Y24_T 957.491 -0.115563
+MUSETT_T0_DSSD_Y25_T 976.25 -0.117834
+MUSETT_T0_DSSD_Y26_T 962.012 -0.116104
+MUSETT_T0_DSSD_Y27_T 971.294 -0.11722
+MUSETT_T0_DSSD_Y28_T 944.005 -0.113921
+MUSETT_T0_DSSD_Y29_T 974.292 -0.11759
+MUSETT_T0_DSSD_Y30_T 944.925 -0.114033
+MUSETT_T0_DSSD_Y32_T 968.991 -0.116928
+MUSETT_T0_DSSD_Y33_T 903.665 -0.109056
+MUSETT_T0_DSSD_Y34_T 859.176 -0.103507
+MUSETT_T0_DSSD_Y35_T 870.909 -0.104888
+MUSETT_T0_DSSD_Y36_T 915.646 -0.110513
+MUSETT_T0_DSSD_Y37_T 866.307 -0.104347
+MUSETT_T0_DSSD_Y38_T 905.186 -0.10924
+MUSETT_T0_DSSD_Y39_T 883.056 -0.106391
+MUSETT_T0_DSSD_Y40_T 910.71 -0.109895
+MUSETT_T0_DSSD_Y41_T 885.647 -0.106718
+MUSETT_T0_DSSD_Y42_T 913.208 -0.110196
+MUSETT_T0_DSSD_Y43_T 886.974 -0.106878
+MUSETT_T0_DSSD_Y44_T 902.655 -0.108924
+MUSETT_T0_DSSD_Y45_T 883.169 -0.106441
+MUSETT_T0_DSSD_Y46_T 903.864 -0.109045
+MUSETT_T0_DSSD_Y47_T 891.212 -0.107426
+MUSETT_T0_DSSD_Y48_T 905.49 -0.109285
+MUSETT_T0_DSSD_Y49_T 892.785 -0.107608
+MUSETT_T0_DSSD_Y50_T 908.071 -0.109567
+MUSETT_T0_DSSD_Y51_T 897.104 -0.108136
+MUSETT_T0_DSSD_Y52_T 889.86 -0.107347
+MUSETT_T0_DSSD_Y53_T 904.326 -0.109012
+MUSETT_T0_DSSD_Y54_T 889.448 -0.107278
+MUSETT_T0_DSSD_Y55_T 903.135 -0.108611
+MUSETT_T0_DSSD_Y56_T 889.979 -0.107363
+MUSETT_T0_DSSD_Y57_T 901.746 -0.108719
+MUSETT_T0_DSSD_Y58_T 878.496 -0.105955
+MUSETT_T0_DSSD_Y59_T 908.712 -0.109581
+MUSETT_T0_DSSD_Y60_T 888.383 -0.107174
+MUSETT_T0_DSSD_Y61_T 903.269 -0.108895
+MUSETT_T0_DSSD_Y62_T 871.608 -0.105113
+MUSETT_T0_DSSD_Y63_T 871.769 -0.105131
+MUSETT_T0_DSSD_Y64_T 908.687 -0.109543
+MUSETT_T0_DSSD_Y65_T 1001.6 -0.121097
+MUSETT_T0_DSSD_Y66_T 970.056 -0.117145
+MUSETT_T0_DSSD_Y67_T 986.117 -0.119118
+MUSETT_T0_DSSD_Y68_T 994.499 -0.120247
+MUSETT_T0_DSSD_Y69_T 981.373 -0.118534
+MUSETT_T0_DSSD_Y70_T 997.331 -0.120579
+MUSETT_T0_DSSD_Y71_T 995.859 -0.12031
+MUSETT_T0_DSSD_Y72_T 995.389 -0.120327
+MUSETT_T0_DSSD_Y73_T 999.672 -0.120777
+MUSETT_T0_DSSD_Y74_T 1000.31 -0.120924
+MUSETT_T0_DSSD_Y75_T 1002.22 -0.121085
+MUSETT_T0_DSSD_Y76_T 989.884 -0.119656
+MUSETT_T0_DSSD_Y77_T 998.019 -0.120569
+MUSETT_T0_DSSD_Y78_T 981.143 -0.118591
+MUSETT_T0_DSSD_Y79_T 1008.32 -0.121839
+MUSETT_T0_DSSD_Y80_T 989.544 -0.119628
+MUSETT_T0_DSSD_Y81_T 1004.28 -0.121339
+MUSETT_T0_DSSD_Y82_T 985.816 -0.119156
+MUSETT_T0_DSSD_Y83_T 1014.52 -0.122592
+MUSETT_T0_DSSD_Y84_T 982.64 -0.118781
+MUSETT_T0_DSSD_Y85_T 1025.22 -0.123897
+MUSETT_T0_DSSD_Y86_T 983.206 -0.118825
+MUSETT_T0_DSSD_Y87_T 1024.79 -0.123866
+MUSETT_T0_DSSD_Y88_T 979.506 -0.118378
+MUSETT_T0_DSSD_Y89_T 1019.8 -0.123256
+MUSETT_T0_DSSD_Y90_T 976.674 -0.118028
+MUSETT_T0_DSSD_Y91_T 1024.3 -0.123786
+MUSETT_T0_DSSD_Y92_T 976.574 -0.118012
+MUSETT_T0_DSSD_Y93_T 1021.08 -0.123408
+MUSETT_T0_DSSD_Y94_T 970.82 -0.117302
+MUSETT_T0_DSSD_Y95_T 963.864 -0.116469
+MUSETT_T0_DSSD_Y96_T 1016.6 -0.122879
+MUSETT_T0_DSSD_Y97_T 917.078 -0.110803
+MUSETT_T0_DSSD_Y98_T 891.216 -0.107535
+MUSETT_T0_DSSD_Y99_T 899.129 -0.108466
+MUSETT_T0_DSSD_Y100_T 915.137 -0.110572
+MUSETT_T0_DSSD_Y101_T 898.718 -0.108438
+MUSETT_T0_DSSD_Y102_T 909.547 -0.109894
+MUSETT_T0_DSSD_Y103_T 904.591 -0.109158
+MUSETT_T0_DSSD_Y104_T 913.859 -0.110421
+MUSETT_T0_DSSD_Y105_T 916.06 -0.110566
+MUSETT_T0_DSSD_Y106_T 914.704 -0.11051
+MUSETT_T0_DSSD_Y107_T 909.441 -0.109757
+MUSETT_T0_DSSD_Y108_T 910.27 -0.109981
+MUSETT_T0_DSSD_Y109_T 929.211 -0.112167
+MUSETT_T0_DSSD_Y110_T 914.99 -0.110544
+MUSETT_T0_DSSD_Y111_T 920.724 -0.111146
+MUSETT_T0_DSSD_Y112_T 901.739 -0.108916
+MUSETT_T0_DSSD_Y113_T 931.107 -0.112407
+MUSETT_T0_DSSD_Y114_T 907.124 -0.10959
+MUSETT_T0_DSSD_Y115_T 930.357 -0.112337
+MUSETT_T0_DSSD_Y116_T 895.168 -0.108105
+MUSETT_T0_DSSD_Y117_T 932.102 -0.112539
+MUSETT_T0_DSSD_Y118_T 890.686 -0.10757
+MUSETT_T0_DSSD_Y119_T 935.662 -0.112978
+MUSETT_T0_DSSD_Y120_T 891.724 -0.107707
+MUSETT_T0_DSSD_Y121_T 930.191 -0.112316
+MUSETT_T0_DSSD_Y122_T 894.625 -0.108041
+MUSETT_T0_DSSD_Y123_T 929.054 -0.112192
+MUSETT_T0_DSSD_Y124_T 878.021 -0.106028
+MUSETT_T0_DSSD_Y125_T 926.166 -0.111821
+MUSETT_T0_DSSD_Y126_T 878.942 -0.106139
+MUSETT_T0_DSSD_Y127_T 882.25 -0.106544
+MUSETT_T0_DSSD_Y128_T 929.013 -0.112162
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..28ea02313a04318e3f08f995fa2cbcfdb811b04c
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X1_T 916.574 -0.110777
+MUSETT_T1_DSSD_X2_T 878.025 -0.106165
+MUSETT_T1_DSSD_X3_T 877.927 -0.10618
+MUSETT_T1_DSSD_X4_T 908.514 -0.109791
+MUSETT_T1_DSSD_X5_T 893.294 -0.108064
+MUSETT_T1_DSSD_X6_T 909.067 -0.109867
+MUSETT_T1_DSSD_X7_T 876.051 -0.105941
+MUSETT_T1_DSSD_X8_T 917.556 -0.110894
+MUSETT_T1_DSSD_X9_T 893.827 -0.108105
+MUSETT_T1_DSSD_X10_T 904.646 -0.109308
+MUSETT_T1_DSSD_X11_T 899.59 -0.108823
+MUSETT_T1_DSSD_X12_T 912.271 -0.110244
+MUSETT_T1_DSSD_X13_T 891.87 -0.107861
+MUSETT_T1_DSSD_X14_T 903.537 -0.10916
+MUSETT_T1_DSSD_X15_T 896.377 -0.10842
+MUSETT_T1_DSSD_X16_T 907.775 -0.1097
+MUSETT_T1_DSSD_X17_T 899.273 -0.108779
+MUSETT_T1_DSSD_X18_T 901.392 -0.108878
+MUSETT_T1_DSSD_X19_T 898.912 -0.108754
+MUSETT_T1_DSSD_X20_T 895.39 -0.10819
+MUSETT_T1_DSSD_X21_T 907.617 -0.109783
+MUSETT_T1_DSSD_X22_T 891.534 -0.107699
+MUSETT_T1_DSSD_X23_T 899.789 -0.108855
+MUSETT_T1_DSSD_X24_T 891.233 -0.107685
+MUSETT_T1_DSSD_X25_T 909.299 -0.110019
+MUSETT_T1_DSSD_X26_T 888.452 -0.107338
+MUSETT_T1_DSSD_X27_T 907.769 -0.109854
+MUSETT_T1_DSSD_X28_T 885.913 -0.107015
+MUSETT_T1_DSSD_X29_T 905.232 -0.109528
+MUSETT_T1_DSSD_X30_T 873.224 -0.105455
+MUSETT_T1_DSSD_X31_T 868.163 -0.104838
+MUSETT_T1_DSSD_X32_T 909.577 -0.110055
+MUSETT_T1_DSSD_X33_T 984.794 -0.119148
+MUSETT_T1_DSSD_X34_T 928.571 -0.11232
+MUSETT_T1_DSSD_X35_T 942.493 -0.114015
+MUSETT_T1_DSSD_X36_T 977.151 -0.118198
+MUSETT_T1_DSSD_X37_T 944.985 -0.114341
+MUSETT_T1_DSSD_X38_T 978.26 -0.118324
+MUSETT_T1_DSSD_X39_T 956.226 -0.115712
+MUSETT_T1_DSSD_X40_T 981.073 -0.118677
+MUSETT_T1_DSSD_X41_T 956.679 -0.115744
+MUSETT_T1_DSSD_X42_T 977.242 -0.11821
+MUSETT_T1_DSSD_X43_T 958.458 -0.115962
+MUSETT_T1_DSSD_X44_T 973.502 -0.117737
+MUSETT_T1_DSSD_X45_T 971.702 -0.117589
+MUSETT_T1_DSSD_X46_T 974.918 -0.117923
+MUSETT_T1_DSSD_X47_T 966.768 -0.116998
+MUSETT_T1_DSSD_X48_T 971.664 -0.117531
+MUSETT_T1_DSSD_X49_T 970.872 -0.117498
+MUSETT_T1_DSSD_X50_T 973.476 -0.117739
+MUSETT_T1_DSSD_X51_T 979.817 -0.118577
+MUSETT_T1_DSSD_X52_T 957.223 -0.115762
+MUSETT_T1_DSSD_X53_T 976.301 -0.118143
+MUSETT_T1_DSSD_X54_T 967.911 -0.117052
+MUSETT_T1_DSSD_X55_T 975.435 -0.118071
+MUSETT_T1_DSSD_X56_T 954.686 -0.115464
+MUSETT_T1_DSSD_X57_T 987.534 -0.11954
+MUSETT_T1_DSSD_X58_T 946.29 -0.114439
+MUSETT_T1_DSSD_X59_T 988.145 -0.119597
+MUSETT_T1_DSSD_X60_T 948.76 -0.114738
+MUSETT_T1_DSSD_X61_T 985.177 -0.119236
+MUSETT_T1_DSSD_X62_T 947.862 -0.114612
+MUSETT_T1_DSSD_X63_T 924.661 -0.111777
+MUSETT_T1_DSSD_X64_T 984.559 -0.119179
+MUSETT_T1_DSSD_X65_T 928.424 -0.111864
+MUSETT_T1_DSSD_X66_T 892.824 -0.107613
+MUSETT_T1_DSSD_X67_T 890.901 -0.107373
+MUSETT_T1_DSSD_X68_T 934.329 -0.112614
+MUSETT_T1_DSSD_X69_T 894.556 -0.107838
+MUSETT_T1_DSSD_X70_T 931.059 -0.112193
+MUSETT_T1_DSSD_X71_T 905.994 -0.109224
+MUSETT_T1_DSSD_X72_T 925.186 -0.111483
+MUSETT_T1_DSSD_X73_T 905.741 -0.1092
+MUSETT_T1_DSSD_X74_T 927.829 -0.111775
+MUSETT_T1_DSSD_X75_T 910.629 -0.109791
+MUSETT_T1_DSSD_X76_T 932.559 -0.11236
+MUSETT_T1_DSSD_X77_T 906.206 -0.109268
+MUSETT_T1_DSSD_X78_T 931.448 -0.112226
+MUSETT_T1_DSSD_X79_T 921.692 -0.111151
+MUSETT_T1_DSSD_X80_T 923.868 -0.111325
+MUSETT_T1_DSSD_X81_T 922.784 -0.11128
+MUSETT_T1_DSSD_X82_T 918.363 -0.110659
+MUSETT_T1_DSSD_X83_T 924.5 -0.111467
+MUSETT_T1_DSSD_X84_T 935.93 -0.112781
+MUSETT_T1_DSSD_X85_T 928.983 -0.112035
+MUSETT_T1_DSSD_X86_T 923.812 -0.111304
+MUSETT_T1_DSSD_X87_T 924.661 -0.111519
+MUSETT_T1_DSSD_X88_T 929.323 -0.111977
+MUSETT_T1_DSSD_X89_T 925.485 -0.111616
+MUSETT_T1_DSSD_X90_T 914.468 -0.110136
+MUSETT_T1_DSSD_X91_T 917.32 -0.110627
+MUSETT_T1_DSSD_X92_T 908.74 -0.10946
+MUSETT_T1_DSSD_X93_T 920.078 -0.110941
+MUSETT_T1_DSSD_X94_T 901.745 -0.108567
+MUSETT_T1_DSSD_X95_T 900.671 -0.108476
+MUSETT_T1_DSSD_X96_T 926.646 -0.11176
+MUSETT_T1_DSSD_X97_T 1008.1 -0.12163
+MUSETT_T1_DSSD_X98_T 951.079 -0.114723
+MUSETT_T1_DSSD_X99_T 952.897 -0.114949
+MUSETT_T1_DSSD_X100_T 1019.96 -0.123096
+MUSETT_T1_DSSD_X101_T 966.461 -0.116629
+MUSETT_T1_DSSD_X102_T 1020.31 -0.123127
+MUSETT_T1_DSSD_X103_T 965.985 -0.116557
+MUSETT_T1_DSSD_X104_T 1017.49 -0.12279
+MUSETT_T1_DSSD_X105_T 968.322 -0.116827
+MUSETT_T1_DSSD_X106_T 1018.04 -0.12282
+MUSETT_T1_DSSD_X107_T 976.11 -0.117811
+MUSETT_T1_DSSD_X108_T 1011.77 -0.122082
+MUSETT_T1_DSSD_X109_T 975.867 -0.117758
+MUSETT_T1_DSSD_X110_T 1016.22 -0.12261
+MUSETT_T1_DSSD_X111_T 981.064 -0.118392
+MUSETT_T1_DSSD_X112_T 1013.91 -0.122345
+MUSETT_T1_DSSD_X113_T 978.32 -0.118063
+MUSETT_T1_DSSD_X114_T 999.416 -0.12057
+MUSETT_T1_DSSD_X115_T 992.972 -0.119853
+MUSETT_T1_DSSD_X116_T 1007.52 -0.121554
+MUSETT_T1_DSSD_X117_T 989.034 -0.119377
+MUSETT_T1_DSSD_X118_T 1006.21 -0.121389
+MUSETT_T1_DSSD_X119_T 987.234 -0.119141
+MUSETT_T1_DSSD_X120_T 996.925 -0.120215
+MUSETT_T1_DSSD_X121_T 994.058 -0.119982
+MUSETT_T1_DSSD_X122_T 997.371 -0.120307
+MUSETT_T1_DSSD_X123_T 995.957 -0.120199
+MUSETT_T1_DSSD_X124_T 983.919 -0.118652
+MUSETT_T1_DSSD_X125_T 995.79 -0.1202
+MUSETT_T1_DSSD_X126_T 978.841 -0.118024
+MUSETT_T1_DSSD_X127_T 976.704 -0.117775
+MUSETT_T1_DSSD_X128_T 1000.15 -0.120722
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..479452366cadab56b76c2feaf880cbb51e2a6755
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y1_T 966.891 -0.116717
+MUSETT_T1_DSSD_Y2_T 968.928 -0.116883
+MUSETT_T1_DSSD_Y3_T 971.207 -0.117128
+MUSETT_T1_DSSD_Y4_T 969.17 -0.116981
+MUSETT_T1_DSSD_Y5_T 975.423 -0.117665
+MUSETT_T1_DSSD_Y6_T 967.943 -0.116827
+MUSETT_T1_DSSD_Y7_T 976.249 -0.117743
+MUSETT_T1_DSSD_Y8_T 972.184 -0.117358
+MUSETT_T1_DSSD_Y9_T 987.572 -0.119146
+MUSETT_T1_DSSD_Y10_T 972.004 -0.117327
+MUSETT_T1_DSSD_Y11_T 984.536 -0.118747
+MUSETT_T1_DSSD_Y12_T 964.104 -0.116368
+MUSETT_T1_DSSD_Y13_T 987.751 -0.119189
+MUSETT_T1_DSSD_Y14_T 968.288 -0.116854
+MUSETT_T1_DSSD_Y15_T 994.23 -0.119964
+MUSETT_T1_DSSD_Y16_T 958.21 -0.11562
+MUSETT_T1_DSSD_Y17_T 995.905 -0.120158
+MUSETT_T1_DSSD_Y18_T 950.839 -0.114726
+MUSETT_T1_DSSD_Y19_T 995.946 -0.120176
+MUSETT_T1_DSSD_Y20_T 960.868 -0.115938
+MUSETT_T1_DSSD_Y21_T 1000.5 -0.120728
+MUSETT_T1_DSSD_Y22_T 957.621 -0.115533
+MUSETT_T1_DSSD_Y23_T 995.25 -0.120113
+MUSETT_T1_DSSD_Y24_T 954.252 -0.115122
+MUSETT_T1_DSSD_Y25_T 997.145 -0.120339
+MUSETT_T1_DSSD_Y26_T 952.035 -0.114834
+MUSETT_T1_DSSD_Y27_T 988.864 -0.119308
+MUSETT_T1_DSSD_Y28_T 948.029 -0.114361
+MUSETT_T1_DSSD_Y29_T 995.199 -0.120108
+MUSETT_T1_DSSD_Y30_T 937.191 -0.113022
+MUSETT_T1_DSSD_Y31_T 935.35 -0.11282
+MUSETT_T1_DSSD_Y32_T 990.383 -0.119515
+MUSETT_T1_DSSD_Y33_T 905.741 -0.109257
+MUSETT_T1_DSSD_Y34_T 887.986 -0.10696
+MUSETT_T1_DSSD_Y35_T 887.216 -0.106852
+MUSETT_T1_DSSD_Y36_T 910.732 -0.109844
+MUSETT_T1_DSSD_Y37_T 883.77 -0.106436
+MUSETT_T1_DSSD_Y38_T 906.33 -0.109312
+MUSETT_T1_DSSD_Y39_T 896.97 -0.108049
+MUSETT_T1_DSSD_Y40_T 911.966 -0.109989
+MUSETT_T1_DSSD_Y41_T 903.022 -0.108781
+MUSETT_T1_DSSD_Y42_T 909.45 -0.10969
+MUSETT_T1_DSSD_Y43_T 904.319 -0.108923
+MUSETT_T1_DSSD_Y44_T 900.767 -0.108623
+MUSETT_T1_DSSD_Y45_T 904.183 -0.108922
+MUSETT_T1_DSSD_Y46_T 908.035 -0.109521
+MUSETT_T1_DSSD_Y47_T 904.336 -0.108949
+MUSETT_T1_DSSD_Y48_T 895.245 -0.107957
+MUSETT_T1_DSSD_Y49_T 916.034 -0.110395
+MUSETT_T1_DSSD_Y50_T 907.451 -0.10944
+MUSETT_T1_DSSD_Y51_T 915.216 -0.110294
+MUSETT_T1_DSSD_Y52_T 897.171 -0.108164
+MUSETT_T1_DSSD_Y53_T 910.734 -0.109746
+MUSETT_T1_DSSD_Y54_T 907.311 -0.109433
+MUSETT_T1_DSSD_Y55_T 913.293 -0.109802
+MUSETT_T1_DSSD_Y56_T 848677000000.0 -103827000.0
+MUSETT_T1_DSSD_Y57_T 910.448 -0.109742
+MUSETT_T1_DSSD_Y58_T 896.019 -0.108037
+MUSETT_T1_DSSD_Y59_T 918.647 -0.11072
+MUSETT_T1_DSSD_Y60_T 886.581 -0.106848
+MUSETT_T1_DSSD_Y61_T 920.049 -0.110879
+MUSETT_T1_DSSD_Y62_T 884.995 -0.106691
+MUSETT_T1_DSSD_Y63_T 1002.87 -0.141377
+MUSETT_T1_DSSD_Y64_T 921.093 -0.111037
+MUSETT_T1_DSSD_Y65_T 991.793 -0.120194
+MUSETT_T1_DSSD_Y66_T 947.005 -0.114646
+MUSETT_T1_DSSD_Y67_T 955.512 -0.115676
+MUSETT_T1_DSSD_Y68_T 986.667 -0.119601
+MUSETT_T1_DSSD_Y69_T 954.266 -0.115551
+MUSETT_T1_DSSD_Y70_T 985.922 -0.119505
+MUSETT_T1_DSSD_Y71_T 961.213 -0.116392
+MUSETT_T1_DSSD_Y72_T 988.378 -0.11981
+MUSETT_T1_DSSD_Y73_T 960.803 -0.116344
+MUSETT_T1_DSSD_Y74_T 985.147 -0.119391
+MUSETT_T1_DSSD_Y75_T 971.068 -0.117589
+MUSETT_T1_DSSD_Y76_T 988.169 -0.119777
+MUSETT_T1_DSSD_Y77_T 971.908 -0.117699
+MUSETT_T1_DSSD_Y78_T 986.47 -0.119552
+MUSETT_T1_DSSD_Y79_T 978.963 -0.118567
+MUSETT_T1_DSSD_Y80_T 983.419 -0.119163
+MUSETT_T1_DSSD_Y81_T 980.181 -0.118705
+MUSETT_T1_DSSD_Y82_T 982.479 -0.119038
+MUSETT_T1_DSSD_Y83_T 972.849 -0.117807
+MUSETT_T1_DSSD_Y84_T 974.345 -0.118053
+MUSETT_T1_DSSD_Y85_T 977.401 -0.118376
+MUSETT_T1_DSSD_Y86_T 978.784 -0.118609
+MUSETT_T1_DSSD_Y87_T 985.257 -0.119333
+MUSETT_T1_DSSD_Y88_T 970.687 -0.117617
+MUSETT_T1_DSSD_Y89_T 986.001 -0.119429
+MUSETT_T1_DSSD_Y90_T 967.43 -0.117211
+MUSETT_T1_DSSD_Y91_T 978.94 -0.118576
+MUSETT_T1_DSSD_Y92_T 963.945 -0.116788
+MUSETT_T1_DSSD_Y93_T 982.604 -0.119031
+MUSETT_T1_DSSD_Y94_T 958.17 -0.116053
+MUSETT_T1_DSSD_Y95_T 950.903 -0.115194
+MUSETT_T1_DSSD_Y96_T 994.308 -0.120471
+MUSETT_T1_DSSD_Y97_T 906.635 -0.109824
+MUSETT_T1_DSSD_Y98_T 862.399 -0.104291
+MUSETT_T1_DSSD_Y99_T 856.141 -0.103549
+MUSETT_T1_DSSD_Y100_T 900.796 -0.109108
+MUSETT_T1_DSSD_Y101_T 866.517 -0.104798
+MUSETT_T1_DSSD_Y102_T 910.268 -0.110268
+MUSETT_T1_DSSD_Y103_T 861.488 -0.10419
+MUSETT_T1_DSSD_Y104_T 903.241 -0.109417
+MUSETT_T1_DSSD_Y105_T 869.88 -0.105221
+MUSETT_T1_DSSD_Y106_T 896.217 -0.108536
+MUSETT_T1_DSSD_Y107_T 879.073 -0.106354
+MUSETT_T1_DSSD_Y108_T 905.347 -0.10967
+MUSETT_T1_DSSD_Y109_T 883.458 -0.1069
+MUSETT_T1_DSSD_Y110_T 902.144 -0.10926
+MUSETT_T1_DSSD_Y111_T 878.318 -0.106252
+MUSETT_T1_DSSD_Y112_T 905.296 -0.109653
+MUSETT_T1_DSSD_Y113_T 895.691 -0.108379
+MUSETT_T1_DSSD_Y114_T 895.11 -0.108406
+MUSETT_T1_DSSD_Y115_T 896.571 -0.108492
+MUSETT_T1_DSSD_Y116_T 891.891 -0.108005
+MUSETT_T1_DSSD_Y117_T 894.464 -0.108225
+MUSETT_T1_DSSD_Y118_T 884.05 -0.107044
+MUSETT_T1_DSSD_Y119_T 893.509 -0.108132
+MUSETT_T1_DSSD_Y120_T 891.902 -0.10801
+MUSETT_T1_DSSD_Y121_T 895.809 -0.108412
+MUSETT_T1_DSSD_Y122_T 894.071 -0.108263
+MUSETT_T1_DSSD_Y123_T 891.015 -0.10784
+MUSETT_T1_DSSD_Y124_T 880.13 -0.106555
+MUSETT_T1_DSSD_Y125_T 888.724 -0.107526
+MUSETT_T1_DSSD_Y126_T 875.524 -0.106
+MUSETT_T1_DSSD_Y127_T 876.691 -0.106136
+MUSETT_T1_DSSD_Y128_T 899.797 -0.109448
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..eb9e80680ce0a88ba927b74dd75d653adf4c3093
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X1_T 893.403 -0.107885
+MUSETT_T2_DSSD_X2_T 884.424 -0.106884
+MUSETT_T2_DSSD_X3_T 881.912 -0.106588
+MUSETT_T2_DSSD_X4_T 896.224 -0.10824
+MUSETT_T2_DSSD_X5_T 891.212 -0.10771
+MUSETT_T2_DSSD_X6_T 899.711 -0.108665
+MUSETT_T2_DSSD_X7_T 888.472 -0.10739
+MUSETT_T2_DSSD_X8_T 900.163 -0.108721
+MUSETT_T2_DSSD_X9_T 902.325 -0.109058
+MUSETT_T2_DSSD_X10_T 898.738 -0.108543
+MUSETT_T2_DSSD_X11_T 899.193 -0.108685
+MUSETT_T2_DSSD_X12_T 888.44 -0.107279
+MUSETT_T2_DSSD_X13_T 906.762 -0.109605
+MUSETT_T2_DSSD_X14_T 896.907 -0.108307
+MUSETT_T2_DSSD_X15_T 903.506 -0.109211
+MUSETT_T2_DSSD_X16_T 894.49 -0.108024
+MUSETT_T2_DSSD_X17_T 903.2 -0.109168
+MUSETT_T2_DSSD_X18_T 885.543 -0.106931
+MUSETT_T2_DSSD_X19_T 907.04 -0.109617
+MUSETT_T2_DSSD_X20_T 877.811 -0.105984
+MUSETT_T2_DSSD_X21_T 913.192 -0.1104
+MUSETT_T2_DSSD_X22_T 875.93 -0.105755
+MUSETT_T2_DSSD_X23_T 912.001 -0.110254
+MUSETT_T2_DSSD_X24_T 875.67 -0.105723
+MUSETT_T2_DSSD_X25_T 920.039 -0.111219
+MUSETT_T2_DSSD_X26_T 866.918 -0.10464
+MUSETT_T2_DSSD_X27_T 918.464 -0.111043
+MUSETT_T2_DSSD_X28_T 872.886 -0.105362
+MUSETT_T2_DSSD_X29_T 921.268 -0.111378
+MUSETT_T2_DSSD_X30_T 863.294 -0.104191
+MUSETT_T2_DSSD_X31_T 853.022 -0.102956
+MUSETT_T2_DSSD_X32_T 917.17 -0.11089
+MUSETT_T2_DSSD_X33_T 949.489 -0.114725
+MUSETT_T2_DSSD_X34_T 937.316 -0.113282
+MUSETT_T2_DSSD_X35_T 934.385 -0.112935
+MUSETT_T2_DSSD_X36_T 950.078 -0.114801
+MUSETT_T2_DSSD_X37_T 942.34 -0.113903
+MUSETT_T2_DSSD_X38_T 948.307 -0.114577
+MUSETT_T2_DSSD_X39_T 954.458 -0.11541
+MUSETT_T2_DSSD_X40_T 952.149 -0.115049
+MUSETT_T2_DSSD_X41_T 950.139 -0.114834
+MUSETT_T2_DSSD_X42_T 944.632 -0.114127
+MUSETT_T2_DSSD_X43_T 967.561 -0.116968
+MUSETT_T2_DSSD_X44_T 948.456 -0.114587
+MUSETT_T2_DSSD_X45_T 960.77 -0.116144
+MUSETT_T2_DSSD_X46_T 947.97 -0.114529
+MUSETT_T2_DSSD_X47_T 965.567 -0.116738
+MUSETT_T2_DSSD_X48_T 939.674 -0.113523
+MUSETT_T2_DSSD_X49_T 957.421 -0.115736
+MUSETT_T2_DSSD_X50_T 948.676 -0.114596
+MUSETT_T2_DSSD_X51_T 969.399 -0.117191
+MUSETT_T2_DSSD_X52_T 940.462 -0.113604
+MUSETT_T2_DSSD_X53_T 971.909 -0.117505
+MUSETT_T2_DSSD_X54_T 942.935 -0.113893
+MUSETT_T2_DSSD_X55_T 966.623 -0.116868
+MUSETT_T2_DSSD_X56_T 947.225 -0.114433
+MUSETT_T2_DSSD_X57_T 972.522 -0.117596
+MUSETT_T2_DSSD_X58_T 936.381 -0.11311
+MUSETT_T2_DSSD_X59_T 966.551 -0.116864
+MUSETT_T2_DSSD_X60_T 937.478 -0.113239
+MUSETT_T2_DSSD_X61_T 967.053 -0.116934
+MUSETT_T2_DSSD_X62_T 934.725 -0.1129
+MUSETT_T2_DSSD_X63_T 919.521 -0.111042
+MUSETT_T2_DSSD_X64_T 976.535 -0.118078
+MUSETT_T2_DSSD_X65_T 944.971 -0.114186
+MUSETT_T2_DSSD_X66_T 901.312 -0.10895
+MUSETT_T2_DSSD_X67_T 917.986 -0.11099
+MUSETT_T2_DSSD_X68_T 944.748 -0.114176
+MUSETT_T2_DSSD_X69_T 913.934 -0.110483
+MUSETT_T2_DSSD_X70_T 936.181 -0.113143
+MUSETT_T2_DSSD_X71_T 913.949 -0.110494
+MUSETT_T2_DSSD_X72_T 936.518 -0.113174
+MUSETT_T2_DSSD_X73_T 923.435 -0.11163
+MUSETT_T2_DSSD_X74_T 946.851 -0.11443
+MUSETT_T2_DSSD_X75_T 922.621 -0.111573
+MUSETT_T2_DSSD_X76_T 940.75 -0.113673
+MUSETT_T2_DSSD_X77_T 921.076 -0.111368
+MUSETT_T2_DSSD_X78_T 949.44 -0.114745
+MUSETT_T2_DSSD_X79_T 925.346 -0.111888
+MUSETT_T2_DSSD_X80_T 940.564 -0.113666
+MUSETT_T2_DSSD_X81_T 935.581 -0.113122
+MUSETT_T2_DSSD_X82_T 940.971 -0.113698
+MUSETT_T2_DSSD_X83_T 932.485 -0.112764
+MUSETT_T2_DSSD_X84_T 938.012 -0.113333
+MUSETT_T2_DSSD_X85_T 937.5 -0.113373
+MUSETT_T2_DSSD_X86_T 932.582 -0.11267
+MUSETT_T2_DSSD_X87_T 932.715 -0.112797
+MUSETT_T2_DSSD_X88_T 929.709 -0.112323
+MUSETT_T2_DSSD_X89_T 935.979 -0.113176
+MUSETT_T2_DSSD_X90_T 914.139 -0.110414
+MUSETT_T2_DSSD_X91_T 942.445 -0.113973
+MUSETT_T2_DSSD_X92_T 914.61 -0.110461
+MUSETT_T2_DSSD_X93_T 943.181 -0.114066
+MUSETT_T2_DSSD_X94_T 906.889 -0.109531
+MUSETT_T2_DSSD_X95_T 902.2 -0.108961
+MUSETT_T2_DSSD_X96_T 942.414 -0.113973
+MUSETT_T2_DSSD_X97_T 987.604 -0.119394
+MUSETT_T2_DSSD_X98_T 971.844 -0.117533
+MUSETT_T2_DSSD_X99_T 971.845 -0.117545
+MUSETT_T2_DSSD_X100_T 1002.51 -0.12123
+MUSETT_T2_DSSD_X101_T 983.582 -0.118957
+MUSETT_T2_DSSD_X102_T 1001.7 -0.12112
+MUSETT_T2_DSSD_X103_T 988.69 -0.119584
+MUSETT_T2_DSSD_X104_T 997.508 -0.120614
+MUSETT_T2_DSSD_X105_T 990.616 -0.119902
+MUSETT_T2_DSSD_X106_T 982.481 -0.118788
+MUSETT_T2_DSSD_X107_T 992.058 -0.12002
+MUSETT_T2_DSSD_X108_T 992.615 -0.120011
+MUSETT_T2_DSSD_X109_T 993.193 -0.120171
+MUSETT_T2_DSSD_X110_T 993.652 -0.120143
+MUSETT_T2_DSSD_X111_T 998.567 -0.120802
+MUSETT_T2_DSSD_X112_T 993.933 -0.120152
+MUSETT_T2_DSSD_X113_T 991.75 -0.119977
+MUSETT_T2_DSSD_X114_T 983.229 -0.118879
+MUSETT_T2_DSSD_X115_T 1000.28 -0.12102
+MUSETT_T2_DSSD_X116_T 984.429 -0.118997
+MUSETT_T2_DSSD_X117_T 996.389 -0.12055
+MUSETT_T2_DSSD_X118_T 970.748 -0.117336
+MUSETT_T2_DSSD_X119_T 995.946 -0.12048
+MUSETT_T2_DSSD_X120_T 969.333 -0.117159
+MUSETT_T2_DSSD_X121_T 1005.69 -0.121688
+MUSETT_T2_DSSD_X122_T 969.343 -0.117158
+MUSETT_T2_DSSD_X123_T 1009.38 -0.122136
+MUSETT_T2_DSSD_X124_T 965.866 -0.116735
+MUSETT_T2_DSSD_X125_T 1012.08 -0.122472
+MUSETT_T2_DSSD_X126_T 964.034 -0.116512
+MUSETT_T2_DSSD_X127_T 952.869 -0.115148
+MUSETT_T2_DSSD_X128_T 1003.93 -0.121488
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..bff45b74f99cfd7cd75c19c8e9acbe2ea26654c0
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y1_T 1024.2 -0.123744
+MUSETT_T2_DSSD_Y2_T 942.022 -0.113632
+MUSETT_T2_DSSD_Y3_T 941.851 -0.11359
+MUSETT_T2_DSSD_Y4_T 1023.43 -0.123621
+MUSETT_T2_DSSD_Y5_T 941.301 -0.113546
+MUSETT_T2_DSSD_Y6_T 1024.68 -0.123746
+MUSETT_T2_DSSD_Y7_T 941.196 -0.113526
+MUSETT_T2_DSSD_Y8_T 1019.48 -0.12312
+MUSETT_T2_DSSD_Y9_T 956.339 -0.115367
+MUSETT_T2_DSSD_Y10_T 1017.56 -0.122898
+MUSETT_T2_DSSD_Y11_T 972.159 -0.117305
+MUSETT_T2_DSSD_Y12_T 1012.4 -0.122275
+MUSETT_T2_DSSD_Y13_T 968.071 -0.11682
+MUSETT_T2_DSSD_Y14_T 1006.22 -0.121307
+MUSETT_T2_DSSD_Y15_T 963.198 -0.116216
+MUSETT_T2_DSSD_Y16_T 1014.58 -0.122539
+MUSETT_T2_DSSD_Y17_T 978.802 -0.118134
+MUSETT_T2_DSSD_Y18_T 1013.44 -0.122366
+MUSETT_T2_DSSD_Y19_T 981.332 -0.118446
+MUSETT_T2_DSSD_Y20_T 1006.43 -0.121526
+MUSETT_T2_DSSD_Y21_T 978.515 -0.117858
+MUSETT_T2_DSSD_Y22_T 1001.78 -0.120947
+MUSETT_T2_DSSD_Y23_T 985.445 -0.11895
+MUSETT_T2_DSSD_Y24_T 1003.53 -0.121165
+MUSETT_T2_DSSD_Y25_T 979.656 -0.118238
+MUSETT_T2_DSSD_Y26_T 998.524 -0.120524
+MUSETT_T2_DSSD_Y27_T 981.57 -0.118468
+MUSETT_T2_DSSD_Y28_T 992.258 -0.119776
+MUSETT_T2_DSSD_Y29_T 980.383 -0.118337
+MUSETT_T2_DSSD_Y30_T 993.077 -0.119903
+MUSETT_T2_DSSD_Y31_T 989.947 -0.119525
+MUSETT_T2_DSSD_Y32_T 968.968 -0.116905
+MUSETT_T2_DSSD_Y33_T 918.091 -0.110791
+MUSETT_T2_DSSD_Y34_T 896.545 -0.108016
+MUSETT_T2_DSSD_Y35_T 905.921 -0.109155
+MUSETT_T2_DSSD_Y36_T 922.863 -0.111371
+MUSETT_T2_DSSD_Y37_T 903.191 -0.108834
+MUSETT_T2_DSSD_Y38_T 919.243 -0.110907
+MUSETT_T2_DSSD_Y39_T 916.514 -0.110471
+MUSETT_T2_DSSD_Y40_T 915.986 -0.110532
+MUSETT_T2_DSSD_Y41_T 909.698 -0.109622
+MUSETT_T2_DSSD_Y42_T 913.535 -0.110231
+MUSETT_T2_DSSD_Y43_T 918.472 -0.110708
+MUSETT_T2_DSSD_Y44_T 910.049 -0.10979
+MUSETT_T2_DSSD_Y45_T 921.934 -0.111116
+MUSETT_T2_DSSD_Y46_T 914.061 -0.110304
+MUSETT_T2_DSSD_Y47_T 917.791 -0.11061
+MUSETT_T2_DSSD_Y48_T 909.649 -0.109756
+MUSETT_T2_DSSD_Y49_T 930.463 -0.11216
+MUSETT_T2_DSSD_Y50_T 906.817 -0.109401
+MUSETT_T2_DSSD_Y51_T 921.545 -0.111079
+MUSETT_T2_DSSD_Y52_T 908.152 -0.109574
+MUSETT_T2_DSSD_Y53_T 924.357 -0.111393
+MUSETT_T2_DSSD_Y54_T 892.44 -0.107628
+MUSETT_T2_DSSD_Y55_T 928.134 -0.11168
+MUSETT_T2_DSSD_Y56_T 897.82 -0.108297
+MUSETT_T2_DSSD_Y57_T 944.074 -0.11386
+MUSETT_T2_DSSD_Y58_T 894.339 -0.10786
+MUSETT_T2_DSSD_Y59_T 929.497 -0.112068
+MUSETT_T2_DSSD_Y60_T 893.026 -0.107711
+MUSETT_T2_DSSD_Y61_T 925.938 -0.111623
+MUSETT_T2_DSSD_Y62_T 880.638 -0.106206
+MUSETT_T2_DSSD_Y63_T 874.116 -0.105393
+MUSETT_T2_DSSD_Y64_T 933.858 -0.112593
+MUSETT_T2_DSSD_Y65_T 971.01 -0.117343
+MUSETT_T2_DSSD_Y66_T 946.074 -0.114246
+MUSETT_T2_DSSD_Y67_T 940.751 -0.113582
+MUSETT_T2_DSSD_Y68_T 968.878 -0.117092
+MUSETT_T2_DSSD_Y69_T 952.983 -0.115097
+MUSETT_T2_DSSD_Y70_T 977.792 -0.118194
+MUSETT_T2_DSSD_Y71_T 948.889 -0.114574
+MUSETT_T2_DSSD_Y72_T 975.406 -0.117892
+MUSETT_T2_DSSD_Y73_T 957.63 -0.115653
+MUSETT_T2_DSSD_Y74_T 979.2 -0.118324
+MUSETT_T2_DSSD_Y75_T 968.091 -0.11692
+MUSETT_T2_DSSD_Y76_T 966.385 -0.116762
+MUSETT_T2_DSSD_Y77_T 966.176 -0.116695
+MUSETT_T2_DSSD_Y78_T 960.237 -0.115989
+MUSETT_T2_DSSD_Y79_T 971.862 -0.117388
+MUSETT_T2_DSSD_Y80_T 958.107 -0.115747
+MUSETT_T2_DSSD_Y81_T 974.809 -0.117739
+MUSETT_T2_DSSD_Y82_T 966.661 -0.116783
+MUSETT_T2_DSSD_Y83_T 976.466 -0.11797
+MUSETT_T2_DSSD_Y84_T 969.683 -0.117144
+MUSETT_T2_DSSD_Y85_T 981.048 -0.118525
+MUSETT_T2_DSSD_Y86_T 962.11 -0.116242
+MUSETT_T2_DSSD_Y87_T 971.816 -0.117371
+MUSETT_T2_DSSD_Y88_T 974.181 -0.117701
+MUSETT_T2_DSSD_Y89_T 979.537 -0.118331
+MUSETT_T2_DSSD_Y90_T 947.803 -0.114477
+MUSETT_T2_DSSD_Y91_T 979.044 -0.118283
+MUSETT_T2_DSSD_Y92_T 950.053 -0.114763
+MUSETT_T2_DSSD_Y93_T 986.328 -0.119174
+MUSETT_T2_DSSD_Y94_T 945.736 -0.114242
+MUSETT_T2_DSSD_Y95_T 926.3 -0.111864
+MUSETT_T2_DSSD_Y96_T 991.309 -0.119806
+MUSETT_T2_DSSD_Y97_T 914.871 -0.110525
+MUSETT_T2_DSSD_Y98_T 854.155 -0.102981
+MUSETT_T2_DSSD_Y99_T 870.733 -0.104976
+MUSETT_T2_DSSD_Y100_T 924.467 -0.111703
+MUSETT_T2_DSSD_Y101_T 878.476 -0.105936
+MUSETT_T2_DSSD_Y102_T 928.251 -0.11214
+MUSETT_T2_DSSD_Y103_T 876.793 -0.10575
+MUSETT_T2_DSSD_Y104_T 927.531 -0.112066
+MUSETT_T2_DSSD_Y105_T 884.881 -0.106741
+MUSETT_T2_DSSD_Y106_T 924.057 -0.111623
+MUSETT_T2_DSSD_Y107_T 881.171 -0.10628
+MUSETT_T2_DSSD_Y108_T 924.408 -0.111663
+MUSETT_T2_DSSD_Y109_T 893.636 -0.107805
+MUSETT_T2_DSSD_Y110_T 923.243 -0.111507
+MUSETT_T2_DSSD_Y111_T 894.919 -0.107966
+MUSETT_T2_DSSD_Y112_T 927.33 -0.112025
+MUSETT_T2_DSSD_Y113_T 885.067 -0.106759
+MUSETT_T2_DSSD_Y114_T 932.767 -0.112691
+MUSETT_T2_DSSD_Y115_T 898.226 -0.108381
+MUSETT_T2_DSSD_Y116_T 916.909 -0.110746
+MUSETT_T2_DSSD_Y117_T 896.617 -0.108195
+MUSETT_T2_DSSD_Y118_T 926.674 -0.111938
+MUSETT_T2_DSSD_Y119_T 896.617 -0.108195
+MUSETT_T2_DSSD_Y120_T 919.012 -0.110997
+MUSETT_T2_DSSD_Y121_T 899.421 -0.108519
+MUSETT_T2_DSSD_Y122_T 905.068 -0.109308
+MUSETT_T2_DSSD_Y123_T 900.193 -0.10863
+MUSETT_T2_DSSD_Y124_T 906.665 -0.109474
+MUSETT_T2_DSSD_Y125_T 901.229 -0.108768
+MUSETT_T2_DSSD_Y126_T 896.011 -0.108189
+MUSETT_T2_DSSD_Y127_T 899.526 -0.108639
+MUSETT_T2_DSSD_Y128_T 897.311 -0.108297
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..cd7ff8fe4199ae797993f810d8820b5cb2a6c435
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X1_T 900.293 -0.108862
+MUSETT_T3_DSSD_X2_T 898.105 -0.108693
+MUSETT_T3_DSSD_X3_T 904.446 -0.109485
+MUSETT_T3_DSSD_X4_T 891.538 -0.107803
+MUSETT_T3_DSSD_X5_T 912.143 -0.110421
+MUSETT_T3_DSSD_X6_T 905.108 -0.109445
+MUSETT_T3_DSSD_X7_T 905.421 -0.109588
+MUSETT_T3_DSSD_X8_T 903.963 -0.109312
+MUSETT_T3_DSSD_X9_T 911.321 -0.110301
+MUSETT_T3_DSSD_X10_T 897.274 -0.10849
+MUSETT_T3_DSSD_X11_T 919.499 -0.111327
+MUSETT_T3_DSSD_X12_T 897.684 -0.108538
+MUSETT_T3_DSSD_X13_T 921.109 -0.111495
+MUSETT_T3_DSSD_X14_T 902.052 -0.10908
+MUSETT_T3_DSSD_X15_T 929.489 -0.112521
+MUSETT_T3_DSSD_X16_T 896.795 -0.10844
+MUSETT_T3_DSSD_X17_T 937.068 -0.11347
+MUSETT_T3_DSSD_X18_T 899.348 -0.108733
+MUSETT_T3_DSSD_X19_T 930.942 -0.112717
+MUSETT_T3_DSSD_X20_T 896.431 -0.108382
+MUSETT_T3_DSSD_X21_T 927.894 -0.112335
+MUSETT_T3_DSSD_X22_T 884.13 -0.106861
+MUSETT_T3_DSSD_X23_T 932.632 -0.112964
+MUSETT_T3_DSSD_X24_T 888.209 -0.107368
+MUSETT_T3_DSSD_X25_T 935.332 -0.113245
+MUSETT_T3_DSSD_X26_T 888.186 -0.107364
+MUSETT_T3_DSSD_X27_T 929.857 -0.11258
+MUSETT_T3_DSSD_X28_T 878.223 -0.106155
+MUSETT_T3_DSSD_X29_T 937.136 -0.113476
+MUSETT_T3_DSSD_X30_T 865.76 -0.104634
+MUSETT_T3_DSSD_X31_T 866.015 -0.104661
+MUSETT_T3_DSSD_X32_T 935.398 -0.113256
+MUSETT_T3_DSSD_X33_T 996.617 -0.120654
+MUSETT_T3_DSSD_X34_T 938.354 -0.113591
+MUSETT_T3_DSSD_X35_T 952.054 -0.115254
+MUSETT_T3_DSSD_X36_T 1001.37 -0.121233
+MUSETT_T3_DSSD_X37_T 956.534 -0.115822
+MUSETT_T3_DSSD_X38_T 999.766 -0.121035
+MUSETT_T3_DSSD_X39_T 958.488 -0.116042
+MUSETT_T3_DSSD_X40_T 1006.69 -0.121885
+MUSETT_T3_DSSD_X41_T 950.724 -0.115096
+MUSETT_T3_DSSD_X42_T 996.509 -0.120628
+MUSETT_T3_DSSD_X43_T 965.196 -0.11686
+MUSETT_T3_DSSD_X44_T 1000.74 -0.12115
+MUSETT_T3_DSSD_X45_T 969.308 -0.117385
+MUSETT_T3_DSSD_X46_T 987.489 -0.119523
+MUSETT_T3_DSSD_X47_T 974.569 -0.118019
+MUSETT_T3_DSSD_X48_T 986.58 -0.119405
+MUSETT_T3_DSSD_X49_T 972.643 -0.117779
+MUSETT_T3_DSSD_X50_T 988.858 -0.119693
+MUSETT_T3_DSSD_X51_T 970.352 -0.117496
+MUSETT_T3_DSSD_X52_T 984.595 -0.119177
+MUSETT_T3_DSSD_X53_T 972.778 -0.117795
+MUSETT_T3_DSSD_X54_T 992.422 -0.120114
+MUSETT_T3_DSSD_X55_T 984.9 -0.119273
+MUSETT_T3_DSSD_X56_T 985.228 -0.119229
+MUSETT_T3_DSSD_X57_T 974.806 -0.118031
+MUSETT_T3_DSSD_X58_T 978.048 -0.118386
+MUSETT_T3_DSSD_X59_T 981.032 -0.118805
+MUSETT_T3_DSSD_X60_T 982.136 -0.11886
+MUSETT_T3_DSSD_X61_T 978.727 -0.118524
+MUSETT_T3_DSSD_X62_T 963.403 -0.116582
+MUSETT_T3_DSSD_X63_T 967.055 -0.117029
+MUSETT_T3_DSSD_X64_T 983.561 -0.119127
+MUSETT_T3_DSSD_X65_T 894.433 -0.107896
+MUSETT_T3_DSSD_X66_T 862.689 -0.104124
+MUSETT_T3_DSSD_X67_T 867.813 -0.104728
+MUSETT_T3_DSSD_X68_T 885.342 -0.106793
+MUSETT_T3_DSSD_X69_T 867.895 -0.104753
+MUSETT_T3_DSSD_X70_T 898.089 -0.108336
+MUSETT_T3_DSSD_X71_T 873.835 -0.105492
+MUSETT_T3_DSSD_X72_T 891.27 -0.107522
+MUSETT_T3_DSSD_X73_T 883.843 -0.106693
+MUSETT_T3_DSSD_X74_T 897.245 -0.108252
+MUSETT_T3_DSSD_X75_T 879.494 -0.10614
+MUSETT_T3_DSSD_X76_T 887.829 -0.107093
+MUSETT_T3_DSSD_X77_T 883.805 -0.106708
+MUSETT_T3_DSSD_X78_T 892.007 -0.107599
+MUSETT_T3_DSSD_X79_T 882.86 -0.106567
+MUSETT_T3_DSSD_X80_T 888.126 -0.107137
+MUSETT_T3_DSSD_X81_T 891.887 -0.107671
+MUSETT_T3_DSSD_X82_T 884.874 -0.10675
+MUSETT_T3_DSSD_X83_T 896.27 -0.108216
+MUSETT_T3_DSSD_X84_T 887.525 -0.107055
+MUSETT_T3_DSSD_X85_T 888.15 -0.107225
+MUSETT_T3_DSSD_X86_T 880.15 -0.106145
+MUSETT_T3_DSSD_X87_T 899.039 -0.108561
+MUSETT_T3_DSSD_X88_T 788.143 -0.126949
+MUSETT_T3_DSSD_X89_T 899.371 -0.108609
+MUSETT_T3_DSSD_X90_T 876.122 -0.105647
+MUSETT_T3_DSSD_X91_T 896.002 -0.108191
+MUSETT_T3_DSSD_X92_T 869.978 -0.1049
+MUSETT_T3_DSSD_X93_T 905.511 -0.109337
+MUSETT_T3_DSSD_X94_T 869.213 -0.10481
+MUSETT_T3_DSSD_X95_T 859.472 -0.103629
+MUSETT_T3_DSSD_X96_T 900.32 -0.108709
+MUSETT_T3_DSSD_X97_T 979.288 -0.118278
+MUSETT_T3_DSSD_X98_T 985.824 -0.119126
+MUSETT_T3_DSSD_X99_T 991.541 -0.119789
+MUSETT_T3_DSSD_X100_T 984.211 -0.118879
+MUSETT_T3_DSSD_X101_T 991.866 -0.119851
+MUSETT_T3_DSSD_X102_T 986.603 -0.119186
+MUSETT_T3_DSSD_X103_T 1007.5 -0.121753
+MUSETT_T3_DSSD_X104_T 987.195 -0.119241
+MUSETT_T3_DSSD_X105_T 1008.13 -0.121824
+MUSETT_T3_DSSD_X106_T 987.225 -0.119256
+MUSETT_T3_DSSD_X107_T 1004.87 -0.121446
+MUSETT_T3_DSSD_X108_T 979.507 -0.118304
+MUSETT_T3_DSSD_X109_T 1008.48 -0.121893
+MUSETT_T3_DSSD_X110_T 974.374 -0.117687
+MUSETT_T3_DSSD_X111_T 1012.14 -0.122347
+MUSETT_T3_DSSD_X112_T 978.317 -0.118161
+MUSETT_T3_DSSD_X113_T 1008.38 -0.121883
+MUSETT_T3_DSSD_X114_T 967.787 -0.116863
+MUSETT_T3_DSSD_X115_T 1014.86 -0.122684
+MUSETT_T3_DSSD_X116_T 962.99 -0.116299
+MUSETT_T3_DSSD_X117_T 1023.57 -0.123722
+MUSETT_T3_DSSD_X118_T 968.345 -0.11693
+MUSETT_T3_DSSD_X119_T 1033.42 -0.124938
+MUSETT_T3_DSSD_X120_T 965.822 -0.116619
+MUSETT_T3_DSSD_X121_T 1015.34 -0.122709
+MUSETT_T3_DSSD_X122_T 951.022 -0.114804
+MUSETT_T3_DSSD_X123_T 1014.72 -0.12265
+MUSETT_T3_DSSD_X124_T 952.48 -0.114986
+MUSETT_T3_DSSD_X125_T 1026.27 -0.124061
+MUSETT_T3_DSSD_X126_T 949.104 -0.114558
+MUSETT_T3_DSSD_X127_T 942.714 -0.11381
+MUSETT_T3_DSSD_X128_T 1019.9 -0.123313
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a5d1e2b960c0c2e0f6ff362782bcb378748bf1e7
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y1_T 983.985 -0.118941
+MUSETT_T3_DSSD_Y2_T 970.371 -0.117174
+MUSETT_T3_DSSD_Y3_T 984.045 -0.118815
+MUSETT_T3_DSSD_Y4_T 977.123 -0.118075
+MUSETT_T3_DSSD_Y5_T 985.023 -0.118931
+MUSETT_T3_DSSD_Y6_T 985.112 -0.119048
+MUSETT_T3_DSSD_Y7_T 990.894 -0.119638
+MUSETT_T3_DSSD_Y8_T 978.827 -0.118272
+MUSETT_T3_DSSD_Y9_T 996.439 -0.12034
+MUSETT_T3_DSSD_Y10_T 969.011 -0.117093
+MUSETT_T3_DSSD_Y11_T 1006.18 -0.121551
+MUSETT_T3_DSSD_Y12_T 970.24 -0.117251
+MUSETT_T3_DSSD_Y13_T 1001.89 -0.120998
+MUSETT_T3_DSSD_Y14_T 968.513 -0.117006
+MUSETT_T3_DSSD_Y15_T 996.258 -0.120321
+MUSETT_T3_DSSD_Y16_T 964.281 -0.116506
+MUSETT_T3_DSSD_Y17_T 1002.35 -0.121073
+MUSETT_T3_DSSD_Y18_T 956.368 -0.115546
+MUSETT_T3_DSSD_Y19_T 1008.58 -0.121839
+MUSETT_T3_DSSD_Y20_T 956.591 -0.115552
+MUSETT_T3_DSSD_Y21_T 1008.51 -0.121856
+MUSETT_T3_DSSD_Y22_T 951.968 -0.114994
+MUSETT_T3_DSSD_Y23_T 1015.07 -0.122649
+MUSETT_T3_DSSD_Y24_T 944.162 -0.114032
+MUSETT_T3_DSSD_Y25_T 1018.24 -0.12302
+MUSETT_T3_DSSD_Y26_T 947.224 -0.114409
+MUSETT_T3_DSSD_Y27_T 1007.23 -0.121668
+MUSETT_T3_DSSD_Y28_T 937.754 -0.113241
+MUSETT_T3_DSSD_Y29_T 1016.39 -0.122794
+MUSETT_T3_DSSD_Y30_T 928.777 -0.112154
+MUSETT_T3_DSSD_Y31_T 920.954 -0.11121
+MUSETT_T3_DSSD_Y32_T 1017.37 -0.122927
+MUSETT_T3_DSSD_Y33_T 905.69 -0.109382
+MUSETT_T3_DSSD_Y34_T 879.206 -0.105997
+MUSETT_T3_DSSD_Y35_T 885.638 -0.106772
+MUSETT_T3_DSSD_Y36_T 912.926 -0.110263
+MUSETT_T3_DSSD_Y37_T 897.352 -0.108217
+MUSETT_T3_DSSD_Y38_T 909.287 -0.109804
+MUSETT_T3_DSSD_Y39_T 900.017 -0.108527
+MUSETT_T3_DSSD_Y40_T 899.078 -0.108568
+MUSETT_T3_DSSD_Y41_T 894.065 -0.107825
+MUSETT_T3_DSSD_Y42_T 904.332 -0.109195
+MUSETT_T3_DSSD_Y43_T 902.563 -0.108862
+MUSETT_T3_DSSD_Y44_T 907.563 -0.109593
+MUSETT_T3_DSSD_Y45_T 907.447 -0.109456
+MUSETT_T3_DSSD_Y46_T 898.134 -0.10846
+MUSETT_T3_DSSD_Y47_T 913.155 -0.110152
+MUSETT_T3_DSSD_Y48_T 894.272 -0.10799
+MUSETT_T3_DSSD_Y49_T 917.884 -0.110718
+MUSETT_T3_DSSD_Y50_T 897.411 -0.108361
+MUSETT_T3_DSSD_Y51_T 916.39 -0.11056
+MUSETT_T3_DSSD_Y52_T 888.675 -0.107294
+MUSETT_T3_DSSD_Y53_T 925.29 -0.111636
+MUSETT_T3_DSSD_Y54_T 883.52 -0.106654
+MUSETT_T3_DSSD_Y55_T 911.348 -0.109934
+MUSETT_T3_DSSD_Y56_T 884.229 -0.106744
+MUSETT_T3_DSSD_Y57_T 924.685 -0.111581
+MUSETT_T3_DSSD_Y58_T 872.76 -0.105345
+MUSETT_T3_DSSD_Y59_T 925.584 -0.111694
+MUSETT_T3_DSSD_Y60_T 875.902 -0.10573
+MUSETT_T3_DSSD_Y61_T 920.738 -0.1111
+MUSETT_T3_DSSD_Y62_T 870.737 -0.105092
+MUSETT_T3_DSSD_Y63_T 873.601 -0.105446
+MUSETT_T3_DSSD_Y64_T 923.494 -0.11144
+MUSETT_T3_DSSD_Y65_T 951.047 -0.114947
+MUSETT_T3_DSSD_Y66_T 970.943 -0.117288
+MUSETT_T3_DSSD_Y67_T 982.69 -0.118727
+MUSETT_T3_DSSD_Y68_T 945.988 -0.114343
+MUSETT_T3_DSSD_Y69_T 988.906 -0.119474
+MUSETT_T3_DSSD_Y70_T 953.345 -0.115232
+MUSETT_T3_DSSD_Y71_T 992.522 -0.119909
+MUSETT_T3_DSSD_Y72_T 964.745 -0.116618
+MUSETT_T3_DSSD_Y73_T 994.13 -0.120116
+MUSETT_T3_DSSD_Y74_T 952.282 -0.115086
+MUSETT_T3_DSSD_Y75_T 1001.12 -0.120975
+MUSETT_T3_DSSD_Y76_T 955.625 -0.115517
+MUSETT_T3_DSSD_Y77_T 998.108 -0.120606
+MUSETT_T3_DSSD_Y78_T 939.764 -0.11354
+MUSETT_T3_DSSD_Y79_T 999.312 -0.12076
+MUSETT_T3_DSSD_Y80_T 947.183 -0.114462
+MUSETT_T3_DSSD_Y81_T 1004.15 -0.121336
+MUSETT_T3_DSSD_Y82_T 931.288 -0.112491
+MUSETT_T3_DSSD_Y83_T 1015.36 -0.122713
+MUSETT_T3_DSSD_Y84_T 932.714 -0.112672
+MUSETT_T3_DSSD_Y85_T 1018.49 -0.1231
+MUSETT_T3_DSSD_Y86_T 939.668 -0.113544
+MUSETT_T3_DSSD_Y87_T 1006.74 -0.121678
+MUSETT_T3_DSSD_Y88_T 931.355 -0.11252
+MUSETT_T3_DSSD_Y89_T 1015.03 -0.122697
+MUSETT_T3_DSSD_Y90_T 920.222 -0.11114
+MUSETT_T3_DSSD_Y91_T 1018.29 -0.123087
+MUSETT_T3_DSSD_Y92_T 911.599 -0.110106
+MUSETT_T3_DSSD_Y93_T 1010.39 -0.122144
+MUSETT_T3_DSSD_Y94_T 911.098 -0.110026
+MUSETT_T3_DSSD_Y95_T 904.406 -0.109216
+MUSETT_T3_DSSD_Y96_T 1011.64 -0.122274
+MUSETT_T3_DSSD_Y97_T 905.657 -0.109416
+MUSETT_T3_DSSD_Y98_T 891.482 -0.107554
+MUSETT_T3_DSSD_Y99_T 898.972 -0.108473
+MUSETT_T3_DSSD_Y100_T 899.215 -0.108625
+MUSETT_T3_DSSD_Y101_T 902.164 -0.108848
+MUSETT_T3_DSSD_Y102_T 903.69 -0.109168
+MUSETT_T3_DSSD_Y103_T 897.423 -0.108292
+MUSETT_T3_DSSD_Y104_T 905.571 -0.109439
+MUSETT_T3_DSSD_Y105_T 905.477 -0.109288
+MUSETT_T3_DSSD_Y106_T 903.343 -0.109125
+MUSETT_T3_DSSD_Y107_T 910.936 -0.109943
+MUSETT_T3_DSSD_Y108_T 894.177 -0.108006
+MUSETT_T3_DSSD_Y109_T 909.486 -0.109765
+MUSETT_T3_DSSD_Y110_T 894.856 -0.108068
+MUSETT_T3_DSSD_Y111_T 908.693 -0.109672
+MUSETT_T3_DSSD_Y112_T 902.34 -0.108999
+MUSETT_T3_DSSD_Y113_T 915.535 -0.110512
+MUSETT_T3_DSSD_Y114_T 895.161 -0.108126
+MUSETT_T3_DSSD_Y115_T 924.289 -0.111588
+MUSETT_T3_DSSD_Y116_T 903.16 -0.109085
+MUSETT_T3_DSSD_Y117_T 926.875 -0.111915
+MUSETT_T3_DSSD_Y118_T 892.165 -0.107742
+MUSETT_T3_DSSD_Y119_T 909.469 -0.109772
+MUSETT_T3_DSSD_Y120_T 892.528 -0.107789
+MUSETT_T3_DSSD_Y121_T 913.618 -0.11029
+MUSETT_T3_DSSD_Y122_T 885.298 -0.106904
+MUSETT_T3_DSSD_Y123_T 919.137 -0.110947
+MUSETT_T3_DSSD_Y124_T 876.164 -0.105791
+MUSETT_T3_DSSD_Y125_T 920.413 -0.111116
+MUSETT_T3_DSSD_Y126_T 871.593 -0.105224
+MUSETT_T3_DSSD_Y127_T 874.337 -0.105573
+MUSETT_T3_DSSD_Y128_T 928.523 -0.112131
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..123aa411a7c823ee9d78218b42045d68ce15cf07
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
@@ -0,0 +1,140 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 0
+Tcal = 1
+clean = 1
+if Ecal :
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]+1
+            else :
+                strip = MapY[int(ch)-1]+1
+
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]+1
+            else :
+                strip = MapY[int(ch)-1]+1
+
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/calibE0.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/calibE0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..5f77c3d04858dd864b1411813497cfbbcbbac345
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/calibE0.cal1
@@ -0,0 +1,1024 @@
+-61662.3 7.52711 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61862.3 7.5515 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61786 7.54225 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61488.6 7.50587 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61896.8 7.55579 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61641.5 7.52453 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61399.4 7.49501 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61236.4 7.47509 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-60986.5 7.4446 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62681.3 7.65148 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62393.5 7.61631 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61925.3 7.55919 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62029.9 7.57195 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62417.6 7.61932 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61275.3 7.47982 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63058.3 7.69749 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62722.2 7.65646 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62134.9 7.58477 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62458.1 7.62423 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63902.7 7.80057 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62519.9 7.63181 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62297.5 7.60463 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62659.6 7.64878 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62852.3 7.67238 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62985.4 7.68854 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63073.7 7.69941 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62632 7.64548 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-63013.4 7.69203 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62579 7.63901 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63401.5 7.7394 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62630 7.64523 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56399 6.88462 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56789.2 6.93221 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55564.2 6.78269 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56333.4 6.87654 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-56040.6 6.84084 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+-10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55909.7 6.82487 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55658.4 6.79421 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56211.8 6.86172 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55874 6.82053 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56164.8 6.85597 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56307.5 6.87343 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56382 6.88247 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+-10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+-10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55911.5 6.82508 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57927.5 7.07116 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57924.8 7.07081 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57746 7.049 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57343.1 6.99988 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58172.2 7.10106 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57237.7 6.98697 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57876.3 7.06488 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57523.5 7.02188 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58500.7 7.14114 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57786.5 7.05393 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57300.4 6.99465 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57790.9 7.05448 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57203.4 6.9828 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57985 7.0782 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57888.7 7.06644 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58127.1 7.09555 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63452.4 7.74561 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63612.1 7.76511 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63338.7 7.73174 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64021.8 7.81515 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63197.4 7.71456 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63968.4 7.80864 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63853.8 7.79469 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63356.4 7.73397 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64117.7 7.82683 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63242.6 7.72007 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63972.5 7.80918 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63941.4 7.8053 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63651.8 7.77009 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63754.3 7.78255 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64292.8 7.84837 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64690.6 7.89693 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61215.8 7.47271 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60865.1 7.42995 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61147.3 7.46434 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61469.6 7.50369 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61379.1 7.49269 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61888.7 7.55484 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61403.2 7.49554 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62166.5 7.58877 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61896.4 7.55578 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61572.1 7.51618 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61720.5 7.53424 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62796.5 7.66557 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61868.1 7.55224 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60999.1 7.44621 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61368.2 7.49129 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62166.8 7.58877 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57169.7 6.97872 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57564 7.02681 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57724.2 7.04642 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57113.1 6.97176 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58126.5 7.0955 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57746.5 7.04909 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57665.4 7.03921 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57244.7 6.98784 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57357.8 7.00171 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57943.6 7.0732 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57279.1 6.99197 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57628.2 7.03471 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58567.7 7.1494 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58013.5 7.08178 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57681.5 7.04111 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57795.4 7.05508 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59002.3 7.20244 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59192.2 7.22562 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58512.8 7.14267 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58671.3 7.16207 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58171.6 7.10101 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58350.5 7.12281 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.4 7.11445 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58508.2 7.1421 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58511.7 7.14253 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58653.9 7.15989 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58550.4 7.14724 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59318.4 7.24097 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57853 7.06214 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58498.4 7.14087 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58426.4 7.13213 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59512.6 7.26467 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60443.5 -7.37839 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60908.5 -7.43514 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61060.2 -7.45367 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59984.4 -7.32237 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60129.5 -7.3401 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60783.1 -7.41989 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60431 -7.37691 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60140.7 -7.34142 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59998.4 -7.32403 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60395.7 -7.37254 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60028.3 -7.32774 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60887.8 -7.43267 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61066.5 -7.45441 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61164 -7.46632 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60739.8 -7.41458 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60443.5 -7.37838 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60544.4 -7.39071 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60303 -7.3612 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60143.3 -7.34174 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60328.6 -7.3644 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60395.9 -7.37256 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60276 -7.35798 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59684.2 -7.28572 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60187.9 -7.34719 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.4 -7.29698 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60128.6 -7.33997 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60450.5 -7.37922 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59890.5 -7.31089 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59647.3 -7.2812 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59834.9 -7.30412 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60999.1 -7.44624 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56552.5 -6.90341 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57074.5 -6.96718 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56536.5 -6.9015 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57036.3 -6.96248 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57405.1 -7.0075 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57259.2 -6.98972 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56419.6 -6.88718 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56461.1 -6.89226 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56951.6 -6.95213 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56800 -6.93367 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56600.5 -6.90927 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56511.5 -6.8984 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56870.5 -6.94221 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56993.6 -6.95727 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57679.7 -7.04103 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56560.6 -6.90438 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57546.6 -7.02477 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57035.8 -6.96245 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56800.6 -6.93377 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56505.8 -6.89773 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57161.4 -6.97779 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56855 -6.94036 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56619.7 -6.91168 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57621.8 -7.03399 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57359.7 -7.00197 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56825.9 -6.93676 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57031.5 -6.96191 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57239.3 -6.98735 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57254.8 -6.98918 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57074.4 -6.96716 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57574.5 -7.02822 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57912.4 -7.06943 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+61002.8 -7.44668 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61155.3 -7.4653 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61053.3 -7.45282 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61373.4 -7.4919 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60489.7 -7.38403 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61580.3 -7.51716 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60895.6 -7.4336 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60400.3 -7.3731 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61676.2 -7.52889 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61107.3 -7.45944 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61113.2 -7.46014 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61230.4 -7.47441 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60593.4 -7.39669 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61412.2 -7.49666 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61676.7 -7.52894 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61114.5 -7.46029 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62335.5 -7.60932 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61110.8 -7.45984 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61589.5 -7.51825 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62064.5 -7.57624 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61004.9 -7.44692 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60900.3 -7.43416 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61810.8 -7.54524 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61439.5 -7.49992 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61153 -7.46501 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61309.9 -7.48418 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61160.3 -7.46589 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61470.5 -7.50377 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61862.5 -7.55157 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61676 -7.52886 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62387.3 -7.61565 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60904.4 -7.43464 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56381.2 -6.88248 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56647.7 -6.91501 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56593.9 -6.90848 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56466.6 -6.8929 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56205.1 -6.86097 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56339.2 -6.87735 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56071.1 -6.84463 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56586.9 -6.90762 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56922.8 -6.94858 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56073.7 -6.84493 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57080.7 -6.96791 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57414.3 -7.00859 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56582.5 -6.9071 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56583.6 -6.90725 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56679.2 -6.91888 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56421.5 -6.8874 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56904.4 -6.94638 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57127.8 -6.97364 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56965.6 -6.9538 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56822.1 -6.93632 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57302 -6.99491 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.2 -6.90362 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56421.8 -6.88745 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56645.4 -6.91475 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57398.8 -7.00675 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57237.3 -6.98696 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56689 -6.92007 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56011.6 -6.83742 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56467.7 -6.89303 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55922.3 -6.8265 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56957.2 -6.95281 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56586.5 -6.90758 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62384.5 7.61517 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62210.4 7.59389 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62273.5 7.60161 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62019.1 7.5706 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61476.5 7.50432 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61597 7.51908 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62319.3 7.60717 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61416.3 7.49697 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61327.1 7.48611 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61486.5 7.50558 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61673.4 7.52832 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61732.6 7.53556 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61963.2 7.56376 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61418.2 7.49719 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61209 7.47165 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61987.6 7.56667 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62554.4 7.63592 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61756 7.53848 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62264.1 7.60048 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61953.7 7.56258 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62913.2 7.67967 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62120.9 7.583 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62709 7.65477 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62390 7.61587 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62229.7 7.59629 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61997.7 7.56794 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-62036.5 7.57262 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61752 7.53798 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61655.6 7.52623 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62767.5 7.66194 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61803 7.54422 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62761.8 7.66122 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58303.5 7.11703 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58372.5 7.12549 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58359.9 7.12397 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58262.2 7.11204 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58041 7.08509 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58261 7.11167 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58055.7 7.0867 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58647.4 7.15904 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58203.9 7.10488 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58893.9 7.18895 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58051.5 7.08632 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58539.4 7.14586 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58554.4 7.14758 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59335.9 7.24309 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58725.8 7.16875 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58465.7 7.13677 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.8 7.06394 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58529.8 7.14462 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-57972.8 7.07665 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57725.1 7.04637 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57946.6 7.07339 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57919.5 7.07013 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57971 7.07643 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57812.9 7.05708 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58059.5 7.08722 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57860.9 7.06295 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58481.2 7.13869 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57673.5 7.04005 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57733.9 7.04747 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58243 7.10961 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.2 7.09391 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58246.7 7.11007 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61009.3 7.44733 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61630.7 7.52317 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61471.8 7.50372 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61716.9 7.53361 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61893.5 7.55524 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.6 7.48633 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61623.4 7.52221 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61911.8 7.55752 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61279.1 7.48026 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62438.1 7.62175 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61937.8 7.56062 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62078.7 7.57786 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61496.4 7.50682 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61721.2 7.53417 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61321.1 7.48534 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61930.9 7.55971 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63425.9 7.7423 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63726 7.77898 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.8 7.83822 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63931 7.80396 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64114.7 7.8264 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63881.4 7.7979 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64089.1 7.82321 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64226 7.83998 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64162.8 7.83225 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64227.3 7.84014 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63324.3 7.72992 0.00 !Mu1ChX91ERaw[C.o2At2Ch11]
+-63377.9 7.73646 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64592.4 7.88475 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64051.2 7.81864 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63785.3 7.78625 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63425.1 7.74221 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56277.1 6.86963 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56696.4 6.92087 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56524.2 6.89973 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56421.9 6.88734 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56516.9 6.89896 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-56987.1 6.95627 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57341.9 6.99957 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56590.4 6.90785 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56842.5 6.93859 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57029.9 6.96151 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57840.1 7.06034 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57754.1 7.04987 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57718.4 7.04556 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57495 7.01832 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57673.7 7.0401 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-58035.2 7.08421 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57254.3 6.98888 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57309.6 6.99565 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56813.7 6.93513 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57684.3 7.04141 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57273.6 6.99128 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57263.3 6.99002 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56331.2 6.87626 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58331 7.12035 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57448.3 7.0126 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57763.7 7.05109 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57724.2 7.04628 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57458.3 7.01385 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57586.5 7.02947 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57671.5 7.03982 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57076.6 6.9672 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57818.9 7.05784 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59628.2 -7.27891 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60484.2 -7.3834 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59719.3 -7.29006 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59358 -7.24601 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60209.4 -7.34991 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60023.9 -7.32724 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59427.4 -7.25442 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59479.8 -7.26081 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.6 -7.25995 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59661.5 -7.28303 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59523 -7.2661 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59520.7 -7.26582 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60207.7 -7.3497 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59281.6 -7.23662 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59499.5 -7.26329 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59822.2 -7.30262 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62231 -7.59672 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62517.6 -7.63166 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62462.5 -7.62493 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62047 -7.57417 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62207.3 -7.59375 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62362.9 -7.61277 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62017.5 -7.57064 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61713.9 -7.53355 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61449.1 -7.50123 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62086.1 -7.57898 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62077.7 -7.57796 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62287.6 -7.60362 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62027.9 -7.5719 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61668.6 -7.52799 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61804.8 -7.54468 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115.7 -6.85022 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56255.7 -6.86728 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55634.9 -6.79153 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55640.9 -6.79227 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55384.3 -6.76092 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56420.4 -6.88745 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55380.9 -6.76051 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55934.8 -6.82817 0.00 !Mu1ChY40ERaw[C.o3At3Ch8]
+56036.5 -6.84053 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56149.2 -6.85434 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55509.9 -6.77625 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56637.3 -6.9139 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55637.9 -6.79188 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55730.3 -6.80315 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55751.6 -6.80582 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55760.9 -6.80693 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.7 -6.9819 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56616.7 -6.91132 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56565.1 -6.90504 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56007.5 -6.83694 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56838.9 -6.93846 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56277 -6.86982 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56475.8 -6.89415 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56394.9 -6.88425 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57286.1 -6.99307 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57107.7 -6.97128 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56704.7 -6.92209 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57329.2 -6.99832 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57398.8 -7.00677 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57025.8 -6.96125 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56179.4 -6.85794 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57294.5 -6.99407 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61036 -7.45079 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61615.2 -7.52147 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61327.7 -7.48646 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61616.9 -7.52169 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61289.5 -7.48175 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60072.3 -7.33313 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60461.8 -7.38072 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61147.5 -7.46439 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60324.6 -7.36394 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61243.3 -7.47609 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60892.2 -7.43321 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60362.6 -7.36861 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60563.4 -7.39312 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60969.5 -7.44272 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60632 -7.40146 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61354.5 -7.48966 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61129 -7.46218 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61142.4 -7.46376 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61098.2 -7.45836 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60505 -7.38602 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60475.6 -7.38236 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61198.3 -7.47058 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60653.8 -7.40421 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60610.3 -7.39887 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61084.6 -7.45673 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61281.6 -7.48082 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60759.5 -7.41709 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60908.7 -7.43532 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60520.1 -7.38782 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61330.5 -7.48678 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61609.9 -7.52084 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60752.2 -7.41622 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55866.2 -6.81972 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55510.1 -6.77629 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55739.1 -6.80422 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55602.7 -6.78757 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55779.5 -6.80916 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55452.6 -6.76931 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55433.8 -6.76695 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56175.8 -6.85753 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55295 -6.75003 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55267.6 -6.74664 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55913.4 -6.82548 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55219 -6.74076 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55914.7 -6.82563 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56088.3 -6.84683 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56128.7 -6.85177 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.7 -6.9068 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54791.9 -6.68861 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55573.5 -6.78397 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55177.3 -6.73564 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.9 -6.722 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55271.1 -6.74706 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55426.4 -6.76607 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55308.9 -6.7517 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55560.5 -6.78242 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55828.4 -6.8151 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55461.9 -6.77042 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.4 -6.69404 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55154.2 -6.73277 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55218.5 -6.74067 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55198.9 -6.73821 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55347.2 -6.75638 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56270.5 -6.86904 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62771.8 7.66248 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62536.2 7.63367 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62923.2 7.68092 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62099.2 7.5803 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62071.6 7.577 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62762.5 7.66131 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62536.6 7.63372 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62863.4 7.6736 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62977.6 7.68755 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62169.2 7.58889 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62486.2 7.62758 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62494 7.62855 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62591.4 7.6404 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62596.5 7.64104 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62693.3 7.65283 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63431.9 7.74304 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62275.5 7.60186 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61847 7.54956 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61648.9 7.52542 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61472.2 7.5038 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61487.7 7.50573 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62323.6 7.60772 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62160.6 7.58783 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61801.5 7.54404 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61589.4 7.51813 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61837.9 7.54843 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61997.2 7.56788 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61886.9 7.55441 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61669.6 7.52787 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61317.6 7.48493 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62385.4 7.6153 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61544.8 7.51271 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59005.1 7.20263 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58125.4 7.0952 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58621 7.15577 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58420.8 7.13128 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58182.1 7.10215 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58179.5 7.10183 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58382.7 7.12665 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57951.6 7.074 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57619.4 7.03346 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58602.8 7.15349 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58763.6 7.17317 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58295.3 7.11601 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58611.5 7.15458 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58569.5 7.14945 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58368.6 7.12489 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58524.7 7.144 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57829.7 7.05919 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57177.7 6.97958 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58151 7.0984 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57925 7.07083 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57600.2 7.03119 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57219.8 6.9847 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57855.4 7.06228 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57682.2 7.04116 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57912.6 7.06929 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57598.9 7.03102 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57919.6 7.07016 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.5 6.9577 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57498.2 7.01871 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56729.1 6.92483 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57500.6 7.01901 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57910.6 7.06904 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63311 7.72824 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64991.8 7.93347 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-63994.5 7.8117 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63750.3 7.78186 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64408.5 7.86228 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63629 7.76702 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63438.8 7.74388 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63358.3 7.73399 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63144.6 7.70793 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63812.1 7.7894 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63662.4 7.77117 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63876.9 7.79733 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63771.1 7.78444 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63652.1 7.7699 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63600.3 7.76358 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63256.4 7.72158 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63333.7 7.73107 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63150 7.70859 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63204.5 7.71524 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63982.1 7.81015 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63771.3 7.78446 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63682.7 7.7737 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63921.1 7.80269 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63090.3 7.7013 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63548.7 7.75733 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63345.7 7.73257 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63537.7 7.75593 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63267.1 7.72292 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64614.3 7.88733 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63737 7.78019 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63627.5 7.76682 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59011.6 7.20345 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58536.3 7.14543 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58294.5 7.11592 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58764.5 7.17328 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59388.2 7.24938 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59353.9 7.24523 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58868.9 7.18606 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59020.4 7.20454 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59051.2 7.20827 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59067.7 7.21031 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58780.6 7.17527 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59011.8 7.20348 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58685.6 7.16369 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60313.6 7.36243 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58947.7 7.1956 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58640.6 7.15819 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59256.4 7.23333 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59391.4 7.24979 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59741.5 7.29254 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59153 7.2207 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59659.3 7.28255 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60043.5 7.32941 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59492.9 7.26218 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59355.9 7.2455 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60079 7.3337 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58759.7 7.17268 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59106.3 7.21501 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59356.4 7.24556 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58905.4 7.19045 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58909 7.19091 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59139.8 7.21905 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59244.4 7.23184 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63180.3 -7.71254 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63958.5 -7.80757 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62563.9 -7.63734 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63393.8 -7.73864 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62965.3 -7.6863 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62695.2 -7.65332 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63071 -7.6992 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62684.7 -7.65205 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62805.2 -7.66674 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63405.9 -7.74008 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+63006 -7.69129 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62613.8 -7.64344 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62135.8 -7.58506 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62797.8 -7.66584 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+63003.9 -7.69104 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63451.5 -7.74566 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61680.4 -7.52939 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60963.7 -7.44202 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60731.3 -7.4136 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62044.4 -7.57386 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.9 -7.46121 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60932 -7.4381 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62091.8 -7.57965 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61042.5 -7.45157 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61080.2 -7.45622 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61569 -7.51583 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61088.9 -7.45724 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61401.8 -7.49545 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61590.8 -7.51854 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61456.7 -7.50214 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61348.2 -7.48891 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61814.6 -7.54586 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56310.4 -6.87387 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56475.6 -6.89413 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56843.7 -6.93897 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56709.9 -6.9227 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+57006.5 -6.95894 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56922.7 -6.94871 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56395.9 -6.88437 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56437.5 -6.88946 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56168.1 -6.85657 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58137.4 -7.09691 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56752.1 -6.92786 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56268.3 -6.86879 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57248.3 -6.98843 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57237.7 -6.98715 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57062.5 -6.96574 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56700.2 -6.92152 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57609.4 -7.03252 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57045.1 -6.96368 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57893.4 -7.06716 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57432.1 -7.01085 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57327.3 -6.9981 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58593.6 -7.15267 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57713.2 -7.04516 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57801 -7.05589 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57750.1 -7.0497 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57564.6 -7.02705 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57513.2 -7.02079 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58298.6 -7.11669 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57883.6 -7.066 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57333.9 -6.99889 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57877.7 -7.06529 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58222.3 -7.10732 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59352.4 -7.24534 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59653 -7.28202 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59466.7 -7.25926 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60421 -7.37573 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59563.3 -7.27104 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59865.2 -7.30789 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59568.1 -7.27161 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59903.1 -7.31254 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59874.2 -7.30895 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59565.9 -7.27135 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59951.4 -7.31844 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60102.6 -7.33689 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59329 -7.24242 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59973.3 -7.32106 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59369.2 -7.24734 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60205.5 -7.34945 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60559.1 -7.39262 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61223.9 -7.47379 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60555.5 -7.39217 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61267.8 -7.47916 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61183.2 -7.46879 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60877.4 -7.43143 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60964.7 -7.44213 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61316.7 -7.48517 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60889.6 -7.43289 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60834.9 -7.42623 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61475.4 -7.50452 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60713.8 -7.41149 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61139.9 -7.46349 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60586.2 -7.39585 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61091.2 -7.45753 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61463 -7.50289 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56883.7 -6.94393 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55958.3 -6.83096 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56259.7 -6.86775 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56620.9 -6.91184 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56390.1 -6.88368 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56741.9 -6.92663 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55881.7 -6.82158 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57242.5 -6.98773 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56047.6 -6.84185 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56706.4 -6.92227 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56618.3 -6.91153 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57516.3 -7.02116 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57052.7 -6.96458 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56701.3 -6.92167 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57023.2 -6.96095 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56155.3 -6.85506 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56480.1 -6.89468 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57291 -6.99365 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56601.1 -6.90948 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56864.7 -6.94167 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56504.8 -6.89772 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56531 -6.90085 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56803.1 -6.93407 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56744.6 -6.92696 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56339.6 -6.87753 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57094.7 -6.96973 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57471.8 -7.01574 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56243.7 -6.86585 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56920.2 -6.94841 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56357.9 -6.87972 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56171.4 -6.85698 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62432 7.62115 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61898.1 7.55599 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62261.8 7.60035 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62377.7 7.61452 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61987.1 7.56678 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61925.3 7.55922 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62100.7 7.58066 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61621.8 7.5222 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61764.3 7.53956 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61918.3 7.55834 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61881.5 7.55388 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62903 7.67858 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61674.1 7.52859 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61812.4 7.54541 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61555.6 7.51408 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62627.4 7.64492 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63656.5 7.77047 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63108 7.70354 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62943.4 7.68346 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62837.7 7.67058 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62676.4 7.65089 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.8 7.70503 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63798 7.78783 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63791 7.78695 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62795 7.6654 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63502.6 7.75172 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63532.1 7.75542 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63309.9 7.72829 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63637.8 7.76831 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63587.2 7.76214 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64531.7 7.87739 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63742.8 7.78111 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59430.3 7.25494 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59220.2 7.22924 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58174.6 7.10163 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58373.6 7.12581 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58848.1 7.18369 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-59012.9 7.20387 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59307.2 7.23977 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58677.9 7.16294 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59283.1 7.23677 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58956.4 7.1969 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-59043.5 7.20751 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59047.9 7.20805 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59414.1 7.25268 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58832.8 7.18171 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59184.6 7.22469 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57410.4 7.00817 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57223.7 6.98537 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56941.7 6.95094 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57306.3 6.99545 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56939.2 6.95063 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57390.5 7.00573 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56638.3 6.91393 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57358.5 7.00183 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57684.4 7.04165 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56591.3 6.9082 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57508 7.02016 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57136.1 6.97475 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56380.4 6.88251 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56917.4 6.9481 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56824.5 6.93679 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56577 6.90664 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64140 7.82956 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63839.3 7.79281 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63564.4 7.75927 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63770.4 7.78438 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63671.6 7.77235 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63272.3 7.72359 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64307 7.84993 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62530.8 7.63314 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62672.9 7.65044 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63019 7.69272 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63152.8 7.70897 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63441 7.74419 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64109.3 7.82574 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62453.5 7.62365 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62622.2 7.64425 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63017.2 7.69251 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62453.4 7.62363 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62780.3 7.66354 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62670.1 7.65009 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62554.7 7.63598 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62062.4 7.57587 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62422.6 7.61994 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62402.7 7.61746 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.8 7.58526 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62351.6 7.61123 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62791 7.66488 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62302.7 7.60527 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62078.1 7.57785 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62829.3 7.66952 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.5 7.6367 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62144 7.5859 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62353.9 7.61152 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56131.1 6.85191 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55920.2 6.82616 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55178.7 6.73562 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55783.6 6.8095 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55958 6.83076 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55940.2 6.82857 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55976 6.83293 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55255.5 6.74498 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55479.7 6.77237 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-56040.3 6.84079 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55791.2 6.81044 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55701.6 6.79948 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56738.3 6.92598 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56293.9 6.87171 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55819.1 6.81378 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55694.2 6.79856 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57554.1 7.02556 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56976.8 6.95514 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57518.4 7.02123 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56980.7 6.95562 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58026.2 7.08323 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57191.1 6.98127 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57432 7.01071 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56290.9 6.87137 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56748.2 6.92722 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57901.7 7.06808 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57512.9 7.02056 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57112.4 6.9717 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57653.3 7.03769 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56762.7 6.92904 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57841.9 7.06073 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56524.8 6.89995 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60194.7 -7.34802 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987.9 -7.20075 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60132.2 -7.34041 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59977.5 -7.32152 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59787.4 -7.2983 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59893.4 -7.31122 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59798.6 -7.29963 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60251.3 -7.3549 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60589.5 -7.39622 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60436.6 -7.37756 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60189.7 -7.3474 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59826.4 -7.3031 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59687.2 -7.28606 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59622.1 -7.27818 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60574.8 -7.39447 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59719.2 -7.29002 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62963.1 -7.68601 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63186.9 -7.71331 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62262.3 -7.60044 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62806 -7.6668 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63246.8 -7.72062 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63550.3 -7.75759 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+63016.8 -7.69256 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62986.6 -7.68882 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63522.2 -7.75424 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63478.7 -7.7489 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62643.1 -7.64692 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63429.9 -7.74292 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62483.7 -7.62745 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62960.7 -7.68572 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63085.3 -7.7009 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62969.4 -7.68675 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84715 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56228.6 -6.86391 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55834.6 -6.81583 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55713 -6.80096 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55757 -6.80633 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56228 -6.86384 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55925.9 -6.82695 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55539.7 -6.77979 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55412.1 -6.76422 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185 -6.85859 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55981.8 -6.83375 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55370.8 -6.75918 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55748.9 -6.80537 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55612.3 -6.78871 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55926.3 -6.82699 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55801.2 -6.81172 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56670.8 -6.9179 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56949.5 -6.9519 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57147.1 -6.97597 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56960.4 -6.95318 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56493.9 -6.89629 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56963.2 -6.95364 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56581.6 -6.90701 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57050.7 -6.96421 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57076.9 -6.96747 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56623.8 -6.91216 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57493.2 -7.01827 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57089.4 -6.96896 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57586.3 -7.02963 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57044.7 -6.96349 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56777.7 -6.93089 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57421.6 -7.00961 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59437.6 -7.25562 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59994 -7.32351 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59523.9 -7.2662 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59337.1 -7.24336 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59498.6 -7.26303 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58818.6 -7.18002 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59332.2 -7.24276 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+60018.7 -7.32659 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60180.5 -7.3463 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59480.7 -7.26089 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59527.7 -7.26664 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59635.1 -7.27972 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59581.2 -7.27315 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59444.7 -7.25647 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59048.4 -7.20811 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59989.5 -7.32298 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62855.4 -7.67285 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62750.4 -7.66003 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62532.7 -7.63346 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62151.3 -7.58691 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.6 -7.57075 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62710.2 -7.65509 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62271.6 -7.60155 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62960 -7.68565 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62677.8 -7.65121 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62626.1 -7.64489 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61878.3 -7.55359 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61999.2 -7.56832 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61924.7 -7.55927 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+61995.6 -7.56788 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61960.5 -7.56357 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61833.6 -7.54812 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56731.4 -6.92523 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56909.9 -6.94702 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56318.3 -6.87484 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55946.5 -6.8294 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56299.8 -6.87252 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56328.7 -6.87609 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55986.5 -6.8343 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55996.3 -6.83546 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55858.1 -6.81861 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56336.4 -6.877 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56504.4 -6.89753 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56280.4 -6.87019 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55801.7 -6.81176 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55903.8 -6.82419 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56672.2 -6.91805 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56668.9 -6.91765 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57102.2 -6.97047 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57033.7 -6.96222 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57102 -6.97059 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+57015.2 -6.95994 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57666.6 -7.03944 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57327.3 -6.99806 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56838.8 -6.9384 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57642.3 -7.0364 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57472.4 -7.01575 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57009.2 -6.95917 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57427.6 -7.01028 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57105.1 -6.97094 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57606 -7.03198 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56852.7 -6.94013 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57287.8 -6.99311 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57526.7 -7.02236 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/calibT0.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/calibT0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..09f74dedd1b793c1b5dd151ef57e7311b3f4476e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/calibT0.cal1
@@ -0,0 +1,1023 @@
+943.498 -0.114176 0.00 !Mu0ChX1TRaw[Co1At1Ch1]
+954.542 -0.115529 0.00 !Mu0ChX2TRaw[Co1At1Ch2]
+955.481 -0.115657 0.00 !Mu0ChX3TRaw[Co1At1Ch3]
+969.726 -0.117409 0.00 !Mu0ChX4TRaw[Co1At1Ch4]
+969.528 -0.117367 0.00 !Mu0ChX5TRaw[Co1At1Ch5]
+969.351 -0.117353 0.00 !Mu0ChX6TRaw[Co1At1Ch6]
+974.621 -0.117969 0.00 !Mu0ChX7TRaw[Co1At1Ch7]
+976.758 -0.118246 0.00 !Mu0ChX8TRaw[Co1At1Ch8]
+975.237 -0.118065 0.00 !Mu0ChX9TRaw[Co1At1Ch9]
+979.286 -0.118546 0.00 !Mu0ChX10TRaw[Co1At1Ch10]
+984.065 -0.119138 0.00 !Mu0ChX11TRaw[Co1At1Ch11]
+983.533 -0.119075 0.00 !Mu0ChX12TRaw[Co1At1Ch12]
+991.106 -0.119996 0.00 !Mu0ChX13TRaw[Co1At1Ch13]
+976.115 -0.118174 0.00 !Mu0ChX14TRaw[Co1At1Ch14]
+987.246 -0.119531 0.00 !Mu0ChX15TRaw[Co1At1Ch15]
+978.41 -0.118448 0.00 !Mu0ChX16TRaw[Co1At1Ch16]
+952.87 -0.115275 0.00 !Mu0ChX17TRaw[Co1At2Ch1]
+963.333 -0.116527 0.00 !Mu0ChX18TRaw[Co1At2Ch2]
+975.677 -0.118044 0.00 !Mu0ChX19TRaw[Co1At2Ch3]
+976.043 -0.118125 0.00 !Mu0ChX20TRaw[Co1At2Ch4]
+985.306 -0.119233 0.00 !Mu0ChX21TRaw[Co1At2Ch5]
+979.666 -0.118555 0.00 !Mu0ChX22TRaw[Co1At2Ch6]
+990.352 -0.119845 0.00 !Mu0ChX23TRaw[Co1At2Ch7]
+991.826 -0.120005 0.00 !Mu0ChX24TRaw[Co1At2Ch8]
+987.033 -0.119427 0.00 !Mu0ChX25TRaw[Co1At2Ch9]
+998.041 -0.120777 0.00 !Mu0ChX26TRaw[Co1At2Ch10]
+1000.4 -0.121057 0.00 !Mu0ChX27TRaw[Co1At2Ch11]
+1004.27 -0.121545 0.00 !Mu0ChX28TRaw[Co1At2Ch12]
+1000.07 -0.121021 0.00 !Mu0ChX29TRaw[Co1At2Ch13]
+998.458 -0.120851 0.00 !Mu0ChX30TRaw[Co1At2Ch14]
+995.135 -0.12045 0.00 !Mu0ChX31TRaw[Co1At2Ch15]
+991.094 -0.119947 0.00 !Mu0ChX32TRaw[Co1At2Ch16]
+869.874 -0.105192 0.00 !Mu0ChX33TRaw[Co1At3Ch1]
+867.818 -0.104955 0.00 !Mu0ChX34TRaw[Co1At3Ch2]
+887.963 -0.107397 0.00 !Mu0ChX35TRaw[Co1At3Ch3]
+876.58 -0.106033 0.00 !Mu0ChX36TRaw[Co1At3Ch4]
+878.364 -0.106227 0.00 !Mu0ChX37TRaw[Co1At3Ch5]
+892.804 -0.108005 0.00 !Mu0ChX38TRaw[Co1At3Ch6]
+894.475 -0.108195 0.00 !Mu0ChX39TRaw[Co1At3Ch7]
+892.476 -0.107979 0.00 !Mu0ChX40TRaw[Co1At3Ch8]
+895.157 -0.108302 0.00 !Mu0ChX41TRaw[Co1At3Ch9]
+895.419 -0.108334 0.00 !Mu0ChX42TRaw[Co1At3Ch10]
+894.752 -0.108243 0.00 !Mu0ChX43TRaw[Co1At3Ch11]
+901.721 -0.109095 0.00 !Mu0ChX44TRaw[Co1At3Ch12]
+896.865 -0.108505 0.00 !Mu0ChX45TRaw[Co1At3Ch13]
+891.69 -0.107877 0.00 !Mu0ChX46TRaw[Co1At3Ch14]
+894.258 -0.108187 0.00 !Mu0ChX47TRaw[Co1At3Ch15]
+894.901 -0.10826 0.00 !Mu0ChX48TRaw[Co1At3Ch16]
+881.631 -0.106556 0.00 !Mu0ChX49TRaw[Co1At4Ch1]
+884.86 -0.106942 0.00 !Mu0ChX50TRaw[Co1At4Ch2]
+890.381 -0.107622 0.00 !Mu0ChX51TRaw[Co1At4Ch3]
+903.08 -0.109464 0.00 !Mu0ChX52TRaw[Co1At4Ch4]
+903.944 -0.109295 0.00 !Mu0ChX53TRaw[Co1At4Ch5]
+907.059 -0.109652 0.00 !Mu0ChX54TRaw[Co1At4Ch6]
+909.716 -0.109955 0.00 !Mu0ChX55TRaw[Co1At4Ch7]
+913.814 -0.110458 0.00 !Mu0ChX56TRaw[Co1At4Ch8]
+922.196 -0.111499 0.00 !Mu0ChX57TRaw[Co1At4Ch9]
+913.548 -0.110456 0.00 !Mu0ChX58TRaw[Co1At4Ch10]
+921.22 -0.111378 0.00 !Mu0ChX59TRaw[Co1At4Ch11]
+925.852 -0.111943 0.00 !Mu0ChX60TRaw[Co1At4Ch12]
+932.855 -0.112807 0.00 !Mu0ChX61TRaw[Co1At4Ch13]
+935.505 -0.11314 0.00 !Mu0ChX62TRaw[Co1At4Ch14]
+937.107 -0.113338 0.00 !Mu0ChX63TRaw[Co1At4Ch15]
+926.099 -0.111982 0.00 !Mu0ChX64TRaw[Co1At4Ch16]
+957.155 -0.115846 0.00 !Mu0ChX65TRaw[Co2At1Ch1]
+962.206 -0.11646 0.00 !Mu0ChX66TRaw[Co2At1Ch2]
+971.895 -0.117644 0.00 !Mu0ChX67TRaw[Co2At1Ch3]
+973.151 -0.117791 0.00 !Mu0ChX68TRaw[Co2At1Ch4]
+976.443 -0.118174 0.00 !Mu0ChX69TRaw[Co2At1Ch5]
+989.114 -0.119717 0.00 !Mu0ChX70TRaw[Co2At1Ch6]
+993.741 -0.120284 0.00 !Mu0ChX71TRaw[Co2At1Ch7]
+994.917 -0.120426 0.00 !Mu0ChX72TRaw[Co2At1Ch8]
+1005.69 -0.121763 0.00 !Mu0ChX73TRaw[Co2At1Ch9]
+986.82 -0.119445 0.00 !Mu0ChX74TRaw[Co2At1Ch10]
+1003.89 -0.121535 0.00 !Mu0ChX75TRaw[Co2At1Ch11]
+994.316 -0.120381 0.00 !Mu0ChX76TRaw[Co2At1Ch12]
+1001.66 -0.121262 0.00 !Mu0ChX77TRaw[Co2At1Ch13]
+1005.75 -0.121766 0.00 !Mu0ChX78TRaw[Co2At1Ch14]
+996.228 -0.120615 0.00 !Mu0ChX79TRaw[Co2At1Ch15]
+999.032 -0.120952 0.00 !Mu0ChX80TRaw[Co2At1Ch16]
+922.493 -0.111515 0.00 !Mu0ChX81TRaw[Co2At2Ch1]
+932.405 -0.112746 0.00 !Mu0ChX82TRaw[Co2At2Ch2]
+924.498 -0.111774 0.00 !Mu0ChX83TRaw[Co2At2Ch3]
+936.88 -0.113281 0.00 !Mu0ChX84TRaw[Co2At2Ch4]
+930.333 -0.112468 0.00 !Mu0ChX85TRaw[Co2At2Ch5]
+941.329 -0.113819 0.00 !Mu0ChX86TRaw[Co2At2Ch6]
+949.396 -0.114818 0.00 !Mu0ChX87TRaw[Co2At2Ch7]
+942.586 -0.113978 0.00 !Mu0ChX88TRaw[Co2At2Ch8]
+949.288 -0.114813 0.00 !Mu0ChX89TRaw[Co2At2Ch9]
+956.784 -0.115728 0.00 !Mu0ChX90TRaw[Co2At2Ch10]
+964.341 -0.11664 0.00 !Mu0ChX91TRaw[Co2At2Ch11]
+961.03 -0.11625 0.00 !Mu0ChX92TRaw[Co2At2Ch12]
+961.407 -0.116299 0.00 !Mu0ChX93TRaw[Co2At2Ch13]
+960.173 -0.116152 0.00 !Mu0ChX94TRaw[Co2At2Ch14]
+974.188 -0.117868 0.00 !Mu0ChX95TRaw[Co2At2Ch15]
+965.16 -0.116744 0.00 !Mu0ChX96TRaw[Co2At2Ch16]
+868.319 -0.105013 0.00 !Mu0ChX97TRaw[Co2At3Ch1]
+877.769 -0.106169 0.00 !Mu0ChX98TRaw[Co2At3Ch2]
+878.126 -0.106212 0.00 !Mu0ChX99TRaw[Co2At3Ch3]
+883.907 -0.106905 0.00 !Mu0ChX100TRaw[Co2At3Ch4]
+893.227 -0.108043 0.00 !Mu0ChX101TRaw[Co2At3Ch5]
+900.551 -0.108935 0.00 !Mu0ChX102TRaw[Co2At3Ch6]
+896.432 -0.108442 0.00 !Mu0ChX103TRaw[Co2At3Ch7]
+894.569 -0.108194 0.00 !Mu0ChX104TRaw[Co2At3Ch8]
+903.782 -0.109336 0.00 !Mu0ChX105TRaw[Co2At3Ch9]
+901.487 -0.109053 0.00 !Mu0ChX106TRaw[Co2At3Ch10]
+907.332 -0.109771 0.00 !Mu0ChX107TRaw[Co2At3Ch11]
+904.852 -0.109449 0.00 !Mu0ChX108TRaw[Co2At3Ch12]
+902.075 -0.109128 0.00 !Mu0ChX109TRaw[Co2At3Ch13]
+906.169 -0.109641 0.00 !Mu0ChX110TRaw[Co2At3Ch14]
+902.566 -0.109177 0.00 !Mu0ChX111TRaw[Co2At3Ch15]
+904.912 -0.109478 0.00 !Mu0ChX112TRaw[Co2At3Ch16]
+888.355 -0.107364 0.00 !Mu0ChX113TRaw[Co2At4Ch1]
+891.484 -0.107748 0.00 !Mu0ChX114TRaw[Co2At4Ch2]
+891.715 -0.107782 0.00 !Mu0ChX115TRaw[Co2At4Ch3]
+901.831 -0.109007 0.00 !Mu0ChX116TRaw[Co2At4Ch4]
+905.323 -0.109423 0.00 !Mu0ChX117TRaw[Co2At4Ch5]
+898.889 -0.108648 0.00 !Mu0ChX118TRaw[Co2At4Ch6]
+913.375 -0.110413 0.00 !Mu0ChX119TRaw[Co2At4Ch7]
+914.714 -0.110579 0.00 !Mu0ChX120TRaw[Co2At4Ch8]
+908.954 -0.109898 0.00 !Mu0ChX121TRaw[Co2At4Ch9]
+914.168 -0.1105 0.00 !Mu0ChX122TRaw[Co2At4Ch10]
+922.429 -0.111529 0.00 !Mu0ChX123TRaw[Co2At4Ch11]
+914.821 -0.110604 0.00 !Mu0ChX124TRaw[Co2At4Ch12]
+917.725 -0.110972 0.00 !Mu0ChX125TRaw[Co2At4Ch13]
+919.575 -0.11118 0.00 !Mu0ChX126TRaw[Co2At4Ch14]
+914.799 -0.110613 0.00 !Mu0ChX127TRaw[Co2At4Ch15]
+919.481 -0.111151 0.00 !Mu0ChX128TRaw[Co2At4Ch16]
+944.925 -0.114033 0.00 !Mu0ChY2TRaw[Co3At1Ch2]
+944.005 -0.113921 0.00 !Mu0ChY3TRaw[Co3At1Ch3]
+962.012 -0.116104 0.00 !Mu0ChY4TRaw[Co3At1Ch4]
+957.491 -0.115563 0.00 !Mu0ChY5TRaw[Co3At1Ch5]
+973.261 -0.117481 0.00 !Mu0ChY6TRaw[Co3At1Ch6]
+971.85 -0.117339 0.00 !Mu0ChY7TRaw[Co3At1Ch7]
+969.183 -0.117018 0.00 !Mu0ChY8TRaw[Co3At1Ch8]
+975.83 -0.117842 0.00 !Mu0ChY9TRaw[Co3At1Ch9]
+971.457 -0.117316 0.00 !Mu0ChY10TRaw[Co3At1Ch10]
+974.23 -0.117632 0.00 !Mu0ChY11TRaw[Co3At1Ch11]
+980.648 -0.118398 0.00 !Mu0ChY12TRaw[Co3At1Ch12]
+978.32 -0.11814 0.00 !Mu0ChY13TRaw[Co3At1Ch13]
+974.115 -0.117633 0.00 !Mu0ChY14TRaw[Co3At1Ch14]
+976.65 -0.117944 0.00 !Mu0ChY15TRaw[Co3At1Ch15]
+983.277 -0.118761 0.00 !Mu0ChY16TRaw[Co3At1Ch16]
+938.109 -0.113175 0.00 !Mu0ChY17TRaw[Co3At2Ch1]
+947.448 -0.114309 0.00 !Mu0ChY18TRaw[Co3At2Ch2]
+956.035 -0.115351 0.00 !Mu0ChY19TRaw[Co3At2Ch3]
+947.978 -0.11436 0.00 !Mu0ChY20TRaw[Co3At2Ch4]
+950.631 -0.114686 0.00 !Mu0ChY21TRaw[Co3At2Ch5]
+953.963 -0.115103 0.00 !Mu0ChY22TRaw[Co3At2Ch6]
+959.973 -0.115832 0.00 !Mu0ChY23TRaw[Co3At2Ch7]
+959.848 -0.115841 0.00 !Mu0ChY24TRaw[Co3At2Ch8]
+964.52 -0.116398 0.00 !Mu0ChY25TRaw[Co3At2Ch9]
+962.989 -0.116195 0.00 !Mu0ChY26TRaw[Co3At2Ch10]
+959.157 -0.115516 0.00 !Mu0ChY27TRaw[Co3At2Ch11]
+973.941 -0.117562 0.00 !Mu0ChY28TRaw[Co3At2Ch12]
+976.25 -0.117834 0.00 !Mu0ChY29TRaw[Co3At2Ch13]
+971.294 -0.11722 0.00 !Mu0ChY30TRaw[Co3At2Ch14]
+974.292 -0.11759 0.00 !Mu0ChY31TRaw[Co3At2Ch15]
+968.991 -0.116928 0.00 !Mu0ChY32TRaw[Co3At2Ch16]
+871.769 -0.105131 0.00 !Mu0ChY33TRaw[Co3At3Ch1]
+871.608 -0.105113 0.00 !Mu0ChY34TRaw[Co3At3Ch2]
+888.383 -0.107174 0.00 !Mu0ChY35TRaw[Co3At3Ch3]
+878.496 -0.105955 0.00 !Mu0ChY36TRaw[Co3At3Ch4]
+889.979 -0.107363 0.00 !Mu0ChY37TRaw[Co3At3Ch5]
+889.448 -0.107278 0.00 !Mu0ChY38TRaw[Co3At3Ch6]
+889.860 -0.107347 0.00 !Mu0ChY39TRaw[Co3At3Ch7]
+908.071 -0.109567 0.00 !Mu0ChY40TRaw[Co3At3Ch8]
+905.490 -0.109285 0.00 !Mu0ChY41TRaw[Co3At3Ch9]
+903.864 -0.109045 0.00 !Mu0ChY42TRaw[Co3At3Ch10]
+902.655 -0.108924 0.00 !Mu0ChY43TRaw[Co3At3Ch11]
+913.208 -0.110196 0.00 !Mu0ChY44TRaw[Co3At3Ch12]
+910.710 -0.109895 0.00 !Mu0ChY45TRaw[Co3At3Ch13]
+905.186 -0.109240 0.00 !Mu0ChY46TRaw[Co3At3Ch14]
+915.646 -0.110513 0.00 !Mu0ChY47TRaw[Co3At3Ch15]
+903.665 -0.109056 0.00 !Mu0ChY48TRaw[Co3At3Ch16]
+859.176 -0.103507 0.00 !Mu0ChY49TRaw[Co3At4Ch1]
+870.909 -0.104888 0.00 !Mu0ChY50TRaw[Co3At4Ch2]
+866.307 -0.104347 0.00 !Mu0ChY51TRaw[Co3At4Ch3]
+883.056 -0.106391 0.00 !Mu0ChY52TRaw[Co3At4Ch4]
+885.647 -0.106718 0.00 !Mu0ChY53TRaw[Co3At4Ch5]
+886.974 -0.106878 0.00 !Mu0ChY54TRaw[Co3At4Ch6]
+883.169 -0.106441 0.00 !Mu0ChY55TRaw[Co3At4Ch7]
+891.212 -0.107426 0.00 !Mu0ChY56TRaw[Co3At4Ch8]
+892.785 -0.107608 0.00 !Mu0ChY57TRaw[Co3At4Ch9]
+897.104 -0.108136 0.00 !Mu0ChY58TRaw[Co3At4Ch10]
+904.326 -0.109012 0.00 !Mu0ChY59TRaw[Co3At4Ch11]
+903.135 -0.108611 0.00 !Mu0ChY60TRaw[Co3At4Ch12]
+901.746 -0.108719 0.00 !Mu0ChY61TRaw[Co3At4Ch13]
+908.712 -0.109581 0.00 !Mu0ChY62TRaw[Co3At4Ch14]
+903.269 -0.108895 0.00 !Mu0ChY63TRaw[Co3At4Ch15]
+908.687 -0.109543 0.00 !Mu0ChY64TRaw[Co3At4Ch16]
+963.864 -0.116469 0.00 !Mu0ChY65TRaw[Co4At1Ch1]
+970.82 -0.117302 0.00 !Mu0ChY66TRaw[Co4At1Ch2]
+976.574 -0.118012 0.00 !Mu0ChY67TRaw[Co4At1Ch3]
+976.674 -0.118028 0.00 !Mu0ChY68TRaw[Co4At1Ch4]
+979.506 -0.118378 0.00 !Mu0ChY69TRaw[Co4At1Ch5]
+983.206 -0.118825 0.00 !Mu0ChY70TRaw[Co4At1Ch6]
+982.64 -0.118781 0.00 !Mu0ChY71TRaw[Co4At1Ch7]
+985.816 -0.119156 0.00 !Mu0ChY72TRaw[Co4At1Ch8]
+989.544 -0.119628 0.00 !Mu0ChY73TRaw[Co4At1Ch9]
+981.143 -0.118591 0.00 !Mu0ChY74TRaw[Co4At1Ch10]
+989.884 -0.119656 0.00 !Mu0ChY75TRaw[Co4At1Ch11]
+1000.31 -0.120924 0.00 !Mu0ChY76TRaw[Co4At1Ch12]
+995.389 -0.120327 0.00 !Mu0ChY77TRaw[Co4At1Ch13]
+997.331 -0.120579 0.00 !Mu0ChY78TRaw[Co4At1Ch14]
+994.499 -0.120247 0.00 !Mu0ChY79TRaw[Co4At1Ch15]
+1001.6 -0.121097 0.00 !Mu0ChY80TRaw[Co4At1Ch16]
+970.056 -0.117145 0.00 !Mu0ChY81TRaw[Co4At2Ch1]
+986.117 -0.119118 0.00 !Mu0ChY82TRaw[Co4At2Ch2]
+981.373 -0.118534 0.00 !Mu0ChY83TRaw[Co4At2Ch3]
+995.859 -0.12031 0.00 !Mu0ChY84TRaw[Co4At2Ch4]
+999.672 -0.120777 0.00 !Mu0ChY85TRaw[Co4At2Ch5]
+1002.22 -0.121085 0.00 !Mu0ChY86TRaw[Co4At2Ch6]
+998.019 -0.120569 0.00 !Mu0ChY87TRaw[Co4At2Ch7]
+1008.32 -0.121839 0.00 !Mu0ChY88TRaw[Co4At2Ch8]
+1004.28 -0.121339 0.00 !Mu0ChY89TRaw[Co4At2Ch9]
+1014.52 -0.122592 0.00 !Mu0ChY90TRaw[Co4At2Ch10]
+1025.22 -0.123897 0.00 !Mu0ChY91TRaw[Co4At2Ch11]
+1024.79 -0.123866 0.00 !Mu0ChY92TRaw[Co4At2Ch12]
+1019.8 -0.123256 0.00 !Mu0ChY93TRaw[Co4At2Ch13]
+1024.3 -0.123786 0.00 !Mu0ChY94TRaw[Co4At2Ch14]
+1021.08 -0.123408 0.00 !Mu0ChY95TRaw[Co4At2Ch15]
+1016.6 -0.122879 0.00 !Mu0ChY96TRaw[Co4At2Ch16]
+882.25 -0.106544 0.00 !Mu0ChY97TRaw[Co4At3Ch1]
+878.942 -0.106139 0.00 !Mu0ChY98TRaw[Co4At3Ch2]
+878.021 -0.106028 0.00 !Mu0ChY99TRaw[Co4At3Ch3]
+894.625 -0.108041 0.00 !Mu0ChY100TRaw[Co4At3Ch4]
+891.724 -0.107707 0.00 !Mu0ChY101TRaw[Co4At3Ch5]
+890.686 -0.10757 0.00 !Mu0ChY102TRaw[Co4At3Ch6]
+895.168 -0.108105 0.00 !Mu0ChY103TRaw[Co4At3Ch7]
+907.124 -0.10959 0.00 !Mu0ChY104TRaw[Co4At3Ch8]
+901.739 -0.108916 0.00 !Mu0ChY105TRaw[Co4At3Ch9]
+914.99 -0.110544 0.00 !Mu0ChY106TRaw[Co4At3Ch10]
+910.27 -0.109981 0.00 !Mu0ChY107TRaw[Co4At3Ch11]
+914.704 -0.11051 0.00 !Mu0ChY108TRaw[Co4At3Ch12]
+913.859 -0.110421 0.00 !Mu0ChY109TRaw[Co4At3Ch13]
+909.547 -0.109894 0.00 !Mu0ChY110TRaw[Co4At3Ch14]
+915.137 -0.110572 0.00 !Mu0ChY111TRaw[Co4At3Ch15]
+917.078 -0.110803 0.00 !Mu0ChY112TRaw[Co4At3Ch16]
+891.216 -0.107535 0.00 !Mu0ChY113TRaw[Co4At4Ch1]
+899.129 -0.108466 0.00 !Mu0ChY114TRaw[Co4At4Ch2]
+898.718 -0.108438 0.00 !Mu0ChY115TRaw[Co4At4Ch3]
+904.591 -0.109158 0.00 !Mu0ChY116TRaw[Co4At4Ch4]
+916.06 -0.110566 0.00 !Mu0ChY117TRaw[Co4At4Ch5]
+909.441 -0.109757 0.00 !Mu0ChY118TRaw[Co4At4Ch6]
+929.211 -0.112167 0.00 !Mu0ChY119TRaw[Co4At4Ch7]
+920.724 -0.111146 0.00 !Mu0ChY120TRaw[Co4At4Ch8]
+931.107 -0.112407 0.00 !Mu0ChY121TRaw[Co4At4Ch9]
+930.357 -0.112337 0.00 !Mu0ChY122TRaw[Co4At4Ch10]
+932.102 -0.112539 0.00 !Mu0ChY123TRaw[Co4At4Ch11]
+935.662 -0.112978 0.00 !Mu0ChY124TRaw[Co4At4Ch12]
+930.191 -0.112316 0.00 !Mu0ChY125TRaw[Co4At4Ch13]
+929.054 -0.112192 0.00 !Mu0ChY126TRaw[Co4At4Ch14]
+926.166 -0.111821 0.00 !Mu0ChY127TRaw[Co4At4Ch15]
+929.013 -0.112162 0.00 !Mu0ChY128TRaw[Co4At4Ch16]
+928.571 -0.11232 0.00 !Mu1ChX1TRaw[Co1At1Ch1]
+942.493 -0.114015 0.00 !Mu1ChX2TRaw[Co1At1Ch2]
+944.985 -0.114341 0.00 !Mu1ChX3TRaw[Co1At1Ch3]
+956.226 -0.115712 0.00 !Mu1ChX4TRaw[Co1At1Ch4]
+956.679 -0.115744 0.00 !Mu1ChX5TRaw[Co1At1Ch5]
+958.458 -0.115962 0.00 !Mu1ChX6TRaw[Co1At1Ch6]
+971.702 -0.117589 0.00 !Mu1ChX7TRaw[Co1At1Ch7]
+966.768 -0.116998 0.00 !Mu1ChX8TRaw[Co1At1Ch8]
+970.872 -0.117498 0.00 !Mu1ChX9TRaw[Co1At1Ch9]
+979.817 -0.118577 0.00 !Mu1ChX10TRaw[Co1At1Ch10]
+976.301 -0.118143 0.00 !Mu1ChX11TRaw[Co1At1Ch11]
+975.435 -0.118071 0.00 !Mu1ChX12TRaw[Co1At1Ch12]
+987.534 -0.11954 0.00 !Mu1ChX13TRaw[Co1At1Ch13]
+988.145 -0.119597 0.00 !Mu1ChX14TRaw[Co1At1Ch14]
+985.177 -0.119236 0.00 !Mu1ChX15TRaw[Co1At1Ch15]
+984.559 -0.119179 0.00 !Mu1ChX16TRaw[Co1At1Ch16]
+924.661 -0.111777 0.00 !Mu1ChX17TRaw[Co1At2Ch1]
+947.862 -0.114612 0.00 !Mu1ChX18TRaw[Co1At2Ch2]
+948.76 -0.114738 0.00 !Mu1ChX19TRaw[Co1At2Ch3]
+946.29 -0.114439 0.00 !Mu1ChX20TRaw[Co1At2Ch4]
+954.686 -0.115464 0.00 !Mu1ChX21TRaw[Co1At2Ch5]
+967.911 -0.117052 0.00 !Mu1ChX22TRaw[Co1At2Ch6]
+957.223 -0.115762 0.00 !Mu1ChX23TRaw[Co1At2Ch7]
+973.476 -0.117739 0.00 !Mu1ChX24TRaw[Co1At2Ch8]
+971.664 -0.117531 0.00 !Mu1ChX25TRaw[Co1At2Ch9]
+974.918 -0.117923 0.00 !Mu1ChX26TRaw[Co1At2Ch10]
+973.502 -0.117737 0.00 !Mu1ChX27TRaw[Co1At2Ch11]
+977.242 -0.11821 0.00 !Mu1ChX28TRaw[Co1At2Ch12]
+981.073 -0.118677 0.00 !Mu1ChX29TRaw[Co1At2Ch13]
+978.26 -0.118324 0.00 !Mu1ChX30TRaw[Co1At2Ch14]
+977.151 -0.118198 0.00 !Mu1ChX31TRaw[Co1At2Ch15]
+984.794 -0.119148 0.00 !Mu1ChX32TRaw[Co1At2Ch16]
+878.025 -0.106165 0.00 !Mu1ChX33TRaw[Co1At3Ch1]
+877.927 -0.10618 0.00 !Mu1ChX34TRaw[Co1At3Ch2]
+893.294 -0.108064 0.00 !Mu1ChX35TRaw[Co1At3Ch3]
+876.051 -0.105941 0.00 !Mu1ChX36TRaw[Co1At3Ch4]
+893.827 -0.108105 0.00 !Mu1ChX37TRaw[Co1At3Ch5]
+899.59 -0.108823 0.00 !Mu1ChX38TRaw[Co1At3Ch6]
+891.87 -0.107861 0.00 !Mu1ChX39TRaw[Co1At3Ch7]
+896.377 -0.10842 0.00 !Mu1ChX40TRaw[Co1At3Ch8]
+899.273 -0.108779 0.00 !Mu1ChX41TRaw[Co1At3Ch9]
+898.912 -0.108754 0.00 !Mu1ChX42TRaw[Co1At3Ch10]
+907.617 -0.109783 0.00 !Mu1ChX43TRaw[Co1At3Ch11]
+899.789 -0.108855 0.00 !Mu1ChX44TRaw[Co1At3Ch12]
+909.299 -0.110019 0.00 !Mu1ChX45TRaw[Co1At3Ch13]
+907.769 -0.109854 0.00 !Mu1ChX46TRaw[Co1At3Ch14]
+905.232 -0.109528 0.00 !Mu1ChX47TRaw[Co1At3Ch15]
+909.577 -0.110055 0.00 !Mu1ChX48TRaw[Co1At3Ch16]
+868.163 -0.104838 0.00 !Mu1ChX49TRaw[Co1At4Ch1]
+873.224 -0.105455 0.00 !Mu1ChX50TRaw[Co1At4Ch2]
+885.913 -0.107015 0.00 !Mu1ChX51TRaw[Co1At4Ch3]
+888.452 -0.107338 0.00 !Mu1ChX52TRaw[Co1At4Ch4]
+891.233 -0.107685 0.00 !Mu1ChX53TRaw[Co1At4Ch5]
+891.534 -0.107699 0.00 !Mu1ChX54TRaw[Co1At4Ch6]
+895.39 -0.10819 0.00 !Mu1ChX55TRaw[Co1At4Ch7]
+901.392 -0.108878 0.00 !Mu1ChX56TRaw[Co1At4Ch8]
+907.775 -0.1097 0.00 !Mu1ChX57TRaw[Co1At4Ch9]
+903.537 -0.10916 0.00 !Mu1ChX58TRaw[Co1At4Ch10]
+912.271 -0.110244 0.00 !Mu1ChX59TRaw[Co1At4Ch11]
+904.646 -0.109308 0.00 !Mu1ChX60TRaw[Co1At4Ch12]
+917.556 -0.110894 0.00 !Mu1ChX61TRaw[Co1At4Ch13]
+909.067 -0.109867 0.00 !Mu1ChX62TRaw[Co1At4Ch14]
+908.514 -0.109791 0.00 !Mu1ChX63TRaw[Co1At4Ch15]
+916.574 -0.110777 0.00 !Mu1ChX64TRaw[Co1At4Ch16]
+951.079 -0.114723 0.00 !Mu1ChX65TRaw[Co2At1Ch1]
+952.897 -0.114949 0.00 !Mu1ChX66TRaw[Co2At1Ch2]
+966.461 -0.116629 0.00 !Mu1ChX67TRaw[Co2At1Ch3]
+965.985 -0.116557 0.00 !Mu1ChX68TRaw[Co2At1Ch4]
+968.322 -0.116827 0.00 !Mu1ChX69TRaw[Co2At1Ch5]
+976.11 -0.117811 0.00 !Mu1ChX70TRaw[Co2At1Ch6]
+975.867 -0.117758 0.00 !Mu1ChX71TRaw[Co2At1Ch7]
+981.064 -0.118392 0.00 !Mu1ChX72TRaw[Co2At1Ch8]
+978.32 -0.118063 0.00 !Mu1ChX73TRaw[Co2At1Ch9]
+992.972 -0.119853 0.00 !Mu1ChX74TRaw[Co2At1Ch10]
+989.034 -0.119377 0.00 !Mu1ChX75TRaw[Co2At1Ch11]
+987.234 -0.119141 0.00 !Mu1ChX76TRaw[Co2At1Ch12]
+994.058 -0.119982 0.00 !Mu1ChX77TRaw[Co2At1Ch13]
+995.957 -0.120199 0.00 !Mu1ChX78TRaw[Co2At1Ch14]
+995.79 -0.1202 0.00 !Mu1ChX79TRaw[Co2At1Ch15]
+1000.15 -0.120722 0.00 !Mu1ChX80TRaw[Co2At1Ch16]
+976.704 -0.117775 0.00 !Mu1ChX81TRaw[Co2At2Ch1]
+978.841 -0.118024 0.00 !Mu1ChX82TRaw[Co2At2Ch2]
+983.919 -0.118652 0.00 !Mu1ChX83TRaw[Co2At2Ch3]
+997.371 -0.120307 0.00 !Mu1ChX84TRaw[Co2At2Ch4]
+996.925 -0.120215 0.00 !Mu1ChX85TRaw[Co2At2Ch5]
+1006.21 -0.121389 0.00 !Mu1ChX86TRaw[Co2At2Ch6]
+1007.52 -0.121554 0.00 !Mu1ChX87TRaw[Co2At2Ch7]
+999.416 -0.12057 0.00 !Mu1ChX88TRaw[Co2At2Ch8]
+1013.91 -0.122345 0.00 !Mu1ChX89TRaw[Co2At2Ch9]
+1016.22 -0.12261 0.00 !Mu1ChX90TRaw[Co2At2Ch10]
+1011.77 -0.122082 0.00 !Mu1ChX91TRaw[Co2At2Ch11]
+1018.04 -0.12282 0.00 !Mu1ChX92TRaw[Co2At2Ch12]
+1017.49 -0.12279 0.00 !Mu1ChX93TRaw[Co2At2Ch13]
+1020.31 -0.123127 0.00 !Mu1ChX94TRaw[Co2At2Ch14]
+1019.96 -0.123096 0.00 !Mu1ChX95TRaw[Co2At2Ch15]
+1008.1 -0.12163 0.00 !Mu1ChX96TRaw[Co2At2Ch16]
+892.824 -0.107613 0.00 !Mu1ChX97TRaw[Co2At3Ch1]
+890.901 -0.107373 0.00 !Mu1ChX98TRaw[Co2At3Ch2]
+894.556 -0.107838 0.00 !Mu1ChX99TRaw[Co2At3Ch3]
+905.994 -0.109224 0.00 !Mu1ChX100TRaw[Co2At3Ch4]
+905.741 -0.1092 0.00 !Mu1ChX101TRaw[Co2At3Ch5]
+910.629 -0.109791 0.00 !Mu1ChX102TRaw[Co2At3Ch6]
+906.206 -0.109268 0.00 !Mu1ChX103TRaw[Co2At3Ch7]
+921.692 -0.111151 0.00 !Mu1ChX104TRaw[Co2At3Ch8]
+922.784 -0.11128 0.00 !Mu1ChX105TRaw[Co2At3Ch9]
+924.5 -0.111467 0.00 !Mu1ChX106TRaw[Co2At3Ch10]
+928.983 -0.112035 0.00 !Mu1ChX107TRaw[Co2At3Ch11]
+924.661 -0.111519 0.00 !Mu1ChX108TRaw[Co2At3Ch12]
+925.485 -0.111616 0.00 !Mu1ChX109TRaw[Co2At3Ch13]
+917.32 -0.110627 0.00 !Mu1ChX110TRaw[Co2At3Ch14]
+920.078 -0.110941 0.00 !Mu1ChX111TRaw[Co2At3Ch15]
+926.646 -0.11176 0.00 !Mu1ChX112TRaw[Co2At3Ch16]
+900.671 -0.108476 0.00 !Mu1ChX113TRaw[Co2At4Ch1]
+901.745 -0.108567 0.00 !Mu1ChX114TRaw[Co2At4Ch2]
+908.74 -0.10946 0.00 !Mu1ChX115TRaw[Co2At4Ch3]
+914.468 -0.110136 0.00 !Mu1ChX116TRaw[Co2At4Ch4]
+929.323 -0.111977 0.00 !Mu1ChX117TRaw[Co2At4Ch5]
+923.812 -0.111304 0.00 !Mu1ChX118TRaw[Co2At4Ch6]
+935.93 -0.112781 0.00 !Mu1ChX119TRaw[Co2At4Ch7]
+918.363 -0.110659 0.00 !Mu1ChX120TRaw[Co2At4Ch8]
+923.868 -0.111325 0.00 !Mu1ChX121TRaw[Co2At4Ch9]
+931.448 -0.112226 0.00 !Mu1ChX122TRaw[Co2At4Ch10]
+932.559 -0.11236 0.00 !Mu1ChX123TRaw[Co2At4Ch11]
+927.829 -0.111775 0.00 !Mu1ChX124TRaw[Co2At4Ch12]
+925.186 -0.111483 0.00 !Mu1ChX125TRaw[Co2At4Ch13]
+931.059 -0.112193 0.00 !Mu1ChX126TRaw[Co2At4Ch14]
+934.329 -0.112614 0.00 !Mu1ChX127TRaw[Co2At4Ch15]
+928.424 -0.111864 0.00 !Mu1ChX128TRaw[Co2At4Ch16]
+935.35 -0.11282 0.00 !Mu1ChY1TRaw[Co3At1Ch1]
+937.191 -0.113022 0.00 !Mu1ChY2TRaw[Co3At1Ch2]
+948.029 -0.114361 0.00 !Mu1ChY3TRaw[Co3At1Ch3]
+952.035 -0.114834 0.00 !Mu1ChY4TRaw[Co3At1Ch4]
+954.252 -0.115122 0.00 !Mu1ChY5TRaw[Co3At1Ch5]
+957.621 -0.115533 0.00 !Mu1ChY6TRaw[Co3At1Ch6]
+960.868 -0.115938 0.00 !Mu1ChY7TRaw[Co3At1Ch7]
+950.839 -0.114726 0.00 !Mu1ChY8TRaw[Co3At1Ch8]
+958.21 -0.11562 0.00 !Mu1ChY9TRaw[Co3At1Ch9]
+968.288 -0.116854 0.00 !Mu1ChY10TRaw[Co3At1Ch10]
+964.104 -0.116368 0.00 !Mu1ChY11TRaw[Co3At1Ch11]
+972.004 -0.117327 0.00 !Mu1ChY12TRaw[Co3At1Ch12]
+972.184 -0.117358 0.00 !Mu1ChY13TRaw[Co3At1Ch13]
+967.943 -0.116827 0.00 !Mu1ChY14TRaw[Co3At1Ch14]
+969.17 -0.116981 0.00 !Mu1ChY15TRaw[Co3At1Ch15]
+966.891 -0.116717 0.00 !Mu1ChY16TRaw[Co3At1Ch16]
+968.928 -0.116883 0.00 !Mu1ChY17TRaw[Co3At2Ch1]
+971.207 -0.117128 0.00 !Mu1ChY18TRaw[Co3At2Ch2]
+975.423 -0.117665 0.00 !Mu1ChY19TRaw[Co3At2Ch3]
+976.249 -0.117743 0.00 !Mu1ChY20TRaw[Co3At2Ch4]
+987.572 -0.119146 0.00 !Mu1ChY21TRaw[Co3At2Ch5]
+984.536 -0.118747 0.00 !Mu1ChY22TRaw[Co3At2Ch6]
+987.751 -0.119189 0.00 !Mu1ChY23TRaw[Co3At2Ch7]
+994.23 -0.119964 0.00 !Mu1ChY24TRaw[Co3At2Ch8]
+995.905 -0.120158 0.00 !Mu1ChY25TRaw[Co3At2Ch9]
+995.946 -0.120176 0.00 !Mu1ChY26TRaw[Co3At2Ch10]
+1000.5 -0.120728 0.00 !Mu1ChY27TRaw[Co3At2Ch11]
+995.25 -0.120113 0.00 !Mu1ChY28TRaw[Co3At2Ch12]
+997.145 -0.120339 0.00 !Mu1ChY29TRaw[Co3At2Ch13]
+988.864 -0.119308 0.00 !Mu1ChY30TRaw[Co3At2Ch14]
+995.199 -0.120108 0.00 !Mu1ChY31TRaw[Co3At2Ch15]
+990.383 -0.119515 0.00 !Mu1ChY32TRaw[Co3At2Ch16]
+1002.87 -0.141377 0.00 !Mu1ChY33TRaw[Co3At3Ch1]
+884.995 -0.106691 0.00 !Mu1ChY34TRaw[Co3At3Ch2]
+886.581 -0.106848 0.00 !Mu1ChY35TRaw[Co3At3Ch3]
+896.019 -0.108037 0.00 !Mu1ChY36TRaw[Co3At3Ch4]
+8.48677e+11 -1.03827e+08 0.00 !Mu1ChY37TRaw[Co3At3Ch5]
+907.311 -0.109433 0.00 !Mu1ChY38TRaw[Co3At3Ch6]
+897.171 -0.108164 0.00 !Mu1ChY39TRaw[Co3At3Ch7]
+907.451 -0.10944 0.00 !Mu1ChY40TRaw[Co3At3Ch8]
+895.245 -0.107957 0.00 !Mu1ChY41TRaw[Co3At3Ch9]
+908.035 -0.109521 0.00 !Mu1ChY42TRaw[Co3At3Ch10]
+900.767 -0.108623 0.00 !Mu1ChY43TRaw[Co3At3Ch11]
+909.45 -0.10969 0.00 !Mu1ChY44TRaw[Co3At3Ch12]
+911.966 -0.109989 0.00 !Mu1ChY45TRaw[Co3At3Ch13]
+906.33 -0.109312 0.00 !Mu1ChY46TRaw[Co3At3Ch14]
+910.732 -0.109844 0.00 !Mu1ChY47TRaw[Co3At3Ch15]
+905.741 -0.109257 0.00 !Mu1ChY48TRaw[Co3At3Ch16]
+887.986 -0.10696 0.00 !Mu1ChY49TRaw[Co3At4Ch1]
+887.216 -0.106852 0.00 !Mu1ChY50TRaw[Co3At4Ch2]
+883.77 -0.106436 0.00 !Mu1ChY51TRaw[Co3At4Ch3]
+896.97 -0.108049 0.00 !Mu1ChY52TRaw[Co3At4Ch4]
+903.022 -0.108781 0.00 !Mu1ChY53TRaw[Co3At4Ch5]
+904.319 -0.108923 0.00 !Mu1ChY54TRaw[Co3At4Ch6]
+904.183 -0.108922 0.00 !Mu1ChY55TRaw[Co3At4Ch7]
+904.336 -0.108949 0.00 !Mu1ChY56TRaw[Co3At4Ch8]
+916.034 -0.110395 0.00 !Mu1ChY57TRaw[Co3At4Ch9]
+915.216 -0.110294 0.00 !Mu1ChY58TRaw[Co3At4Ch10]
+910.734 -0.109746 0.00 !Mu1ChY59TRaw[Co3At4Ch11]
+913.293 -0.109802 0.00 !Mu1ChY60TRaw[Co3At4Ch12]
+910.448 -0.109742 0.00 !Mu1ChY61TRaw[Co3At4Ch13]
+918.647 -0.11072 0.00 !Mu1ChY62TRaw[Co3At4Ch14]
+920.049 -0.110879 0.00 !Mu1ChY63TRaw[Co3At4Ch15]
+921.093 -0.111037 0.00 !Mu1ChY64TRaw[Co3At4Ch16]
+950.903 -0.115194 0.00 !Mu1ChY65TRaw[Co4At1Ch1]
+958.17 -0.116053 0.00 !Mu1ChY66TRaw[Co4At1Ch2]
+963.945 -0.116788 0.00 !Mu1ChY67TRaw[Co4At1Ch3]
+967.43 -0.117211 0.00 !Mu1ChY68TRaw[Co4At1Ch4]
+970.687 -0.117617 0.00 !Mu1ChY69TRaw[Co4At1Ch5]
+978.784 -0.118609 0.00 !Mu1ChY70TRaw[Co4At1Ch6]
+974.345 -0.118053 0.00 !Mu1ChY71TRaw[Co4At1Ch7]
+982.479 -0.119038 0.00 !Mu1ChY72TRaw[Co4At1Ch8]
+983.419 -0.119163 0.00 !Mu1ChY73TRaw[Co4At1Ch9]
+986.47 -0.119552 0.00 !Mu1ChY74TRaw[Co4At1Ch10]
+988.169 -0.119777 0.00 !Mu1ChY75TRaw[Co4At1Ch11]
+985.147 -0.119391 0.00 !Mu1ChY76TRaw[Co4At1Ch12]
+988.378 -0.11981 0.00 !Mu1ChY77TRaw[Co4At1Ch13]
+985.922 -0.119505 0.00 !Mu1ChY78TRaw[Co4At1Ch14]
+986.667 -0.119601 0.00 !Mu1ChY79TRaw[Co4At1Ch15]
+991.793 -0.120194 0.00 !Mu1ChY80TRaw[Co4At1Ch16]
+947.005 -0.114646 0.00 !Mu1ChY81TRaw[Co4At2Ch1]
+955.512 -0.115676 0.00 !Mu1ChY82TRaw[Co4At2Ch2]
+954.266 -0.115551 0.00 !Mu1ChY83TRaw[Co4At2Ch3]
+961.213 -0.116392 0.00 !Mu1ChY84TRaw[Co4At2Ch4]
+960.803 -0.116344 0.00 !Mu1ChY85TRaw[Co4At2Ch5]
+971.068 -0.117589 0.00 !Mu1ChY86TRaw[Co4At2Ch6]
+971.908 -0.117699 0.00 !Mu1ChY87TRaw[Co4At2Ch7]
+978.963 -0.118567 0.00 !Mu1ChY88TRaw[Co4At2Ch8]
+980.181 -0.118705 0.00 !Mu1ChY89TRaw[Co4At2Ch9]
+972.849 -0.117807 0.00 !Mu1ChY90TRaw[Co4At2Ch10]
+977.401 -0.118376 0.00 !Mu1ChY91TRaw[Co4At2Ch11]
+985.257 -0.119333 0.00 !Mu1ChY92TRaw[Co4At2Ch12]
+986.001 -0.119429 0.00 !Mu1ChY93TRaw[Co4At2Ch13]
+978.94 -0.118576 0.00 !Mu1ChY94TRaw[Co4At2Ch14]
+982.604 -0.119031 0.00 !Mu1ChY95TRaw[Co4At2Ch15]
+994.308 -0.120471 0.00 !Mu1ChY96TRaw[Co4At2Ch16]
+876.691 -0.106136 0.00 !Mu1ChY97TRaw[Co4At3Ch1]
+875.524 -0.106 0.00 !Mu1ChY98TRaw[Co4At3Ch2]
+880.13 -0.106555 0.00 !Mu1ChY99TRaw[Co4At3Ch3]
+894.071 -0.108263 0.00 !Mu1ChY100TRaw[Co4At3Ch4]
+891.902 -0.10801 0.00 !Mu1ChY101TRaw[Co4At3Ch5]
+884.05 -0.107044 0.00 !Mu1ChY102TRaw[Co4At3Ch6]
+891.891 -0.108005 0.00 !Mu1ChY103TRaw[Co4At3Ch7]
+895.11 -0.108406 0.00 !Mu1ChY104TRaw[Co4At3Ch8]
+905.296 -0.109653 0.00 !Mu1ChY105TRaw[Co4At3Ch9]
+902.144 -0.10926 0.00 !Mu1ChY106TRaw[Co4At3Ch10]
+905.347 -0.10967 0.00 !Mu1ChY107TRaw[Co4At3Ch11]
+896.217 -0.108536 0.00 !Mu1ChY108TRaw[Co4At3Ch12]
+903.241 -0.109417 0.00 !Mu1ChY109TRaw[Co4At3Ch13]
+910.268 -0.110268 0.00 !Mu1ChY110TRaw[Co4At3Ch14]
+900.796 -0.109108 0.00 !Mu1ChY111TRaw[Co4At3Ch15]
+906.635 -0.109824 0.00 !Mu1ChY112TRaw[Co4At3Ch16]
+862.399 -0.104291 0.00 !Mu1ChY113TRaw[Co4At4Ch1]
+856.141 -0.103549 0.00 !Mu1ChY114TRaw[Co4At4Ch2]
+866.517 -0.104798 0.00 !Mu1ChY115TRaw[Co4At4Ch3]
+861.488 -0.10419 0.00 !Mu1ChY116TRaw[Co4At4Ch4]
+869.88 -0.105221 0.00 !Mu1ChY117TRaw[Co4At4Ch5]
+879.073 -0.106354 0.00 !Mu1ChY118TRaw[Co4At4Ch6]
+883.458 -0.1069 0.00 !Mu1ChY119TRaw[Co4At4Ch7]
+878.318 -0.106252 0.00 !Mu1ChY120TRaw[Co4At4Ch8]
+895.691 -0.108379 0.00 !Mu1ChY121TRaw[Co4At4Ch9]
+896.571 -0.108492 0.00 !Mu1ChY122TRaw[Co4At4Ch10]
+894.464 -0.108225 0.00 !Mu1ChY123TRaw[Co4At4Ch11]
+893.509 -0.108132 0.00 !Mu1ChY124TRaw[Co4At4Ch12]
+895.809 -0.108412 0.00 !Mu1ChY125TRaw[Co4At4Ch13]
+891.015 -0.10784 0.00 !Mu1ChY126TRaw[Co4At4Ch14]
+888.724 -0.107526 0.00 !Mu1ChY127TRaw[Co4At4Ch15]
+899.797 -0.109448 0.00 !Mu1ChY128TRaw[Co4At4Ch16]
+937.316 -0.113282 0.00 !Mu2ChX1TRaw[Co1At1Ch1]
+934.385 -0.112935 0.00 !Mu2ChX2TRaw[Co1At1Ch2]
+942.34 -0.113903 0.00 !Mu2ChX3TRaw[Co1At1Ch3]
+954.458 -0.11541 0.00 !Mu2ChX4TRaw[Co1At1Ch4]
+950.139 -0.114834 0.00 !Mu2ChX5TRaw[Co1At1Ch5]
+967.561 -0.116968 0.00 !Mu2ChX6TRaw[Co1At1Ch6]
+960.77 -0.116144 0.00 !Mu2ChX7TRaw[Co1At1Ch7]
+965.567 -0.116738 0.00 !Mu2ChX8TRaw[Co1At1Ch8]
+957.421 -0.115736 0.00 !Mu2ChX9TRaw[Co1At1Ch9]
+969.399 -0.117191 0.00 !Mu2ChX10TRaw[Co1At1Ch10]
+971.909 -0.117505 0.00 !Mu2ChX11TRaw[Co1At1Ch11]
+966.623 -0.116868 0.00 !Mu2ChX12TRaw[Co1At1Ch12]
+972.522 -0.117596 0.00 !Mu2ChX13TRaw[Co1At1Ch13]
+966.551 -0.116864 0.00 !Mu2ChX14TRaw[Co1At1Ch14]
+967.053 -0.116934 0.00 !Mu2ChX15TRaw[Co1At1Ch15]
+976.535 -0.118078 0.00 !Mu2ChX16TRaw[Co1At1Ch16]
+919.521 -0.111042 0.00 !Mu2ChX17TRaw[Co1At2Ch1]
+934.725 -0.1129 0.00 !Mu2ChX18TRaw[Co1At2Ch2]
+937.478 -0.113239 0.00 !Mu2ChX19TRaw[Co1At2Ch3]
+936.381 -0.11311 0.00 !Mu2ChX20TRaw[Co1At2Ch4]
+947.225 -0.114433 0.00 !Mu2ChX21TRaw[Co1At2Ch5]
+942.935 -0.113893 0.00 !Mu2ChX22TRaw[Co1At2Ch6]
+940.462 -0.113604 0.00 !Mu2ChX23TRaw[Co1At2Ch7]
+948.676 -0.114596 0.00 !Mu2ChX24TRaw[Co1At2Ch8]
+939.674 -0.113523 0.00 !Mu2ChX25TRaw[Co1At2Ch9]
+947.97 -0.114529 0.00 !Mu2ChX26TRaw[Co1At2Ch10]
+948.456 -0.114587 0.00 !Mu2ChX27TRaw[Co1At2Ch11]
+944.632 -0.114127 0.00 !Mu2ChX28TRaw[Co1At2Ch12]
+952.149 -0.115049 0.00 !Mu2ChX29TRaw[Co1At2Ch13]
+948.307 -0.114577 0.00 !Mu2ChX30TRaw[Co1At2Ch14]
+950.078 -0.114801 0.00 !Mu2ChX31TRaw[Co1At2Ch15]
+949.489 -0.114725 0.00 !Mu2ChX32TRaw[Co1At2Ch16]
+884.424 -0.106884 0.00 !Mu2ChX33TRaw[Co1At3Ch1]
+881.912 -0.106588 0.00 !Mu2ChX34TRaw[Co1At3Ch2]
+891.212 -0.10771 0.00 !Mu2ChX35TRaw[Co1At3Ch3]
+888.472 -0.10739 0.00 !Mu2ChX36TRaw[Co1At3Ch4]
+902.325 -0.109058 0.00 !Mu2ChX37TRaw[Co1At3Ch5]
+899.193 -0.108685 0.00 !Mu2ChX38TRaw[Co1At3Ch6]
+906.762 -0.109605 0.00 !Mu2ChX39TRaw[Co1At3Ch7]
+903.506 -0.109211 0.00 !Mu2ChX40TRaw[Co1At3Ch8]
+903.2 -0.109168 0.00 !Mu2ChX41TRaw[Co1At3Ch9]
+907.04 -0.109617 0.00 !Mu2ChX42TRaw[Co1At3Ch10]
+913.192 -0.1104 0.00 !Mu2ChX43TRaw[Co1At3Ch11]
+912.001 -0.110254 0.00 !Mu2ChX44TRaw[Co1At3Ch12]
+920.039 -0.111219 0.00 !Mu2ChX45TRaw[Co1At3Ch13]
+918.464 -0.111043 0.00 !Mu2ChX46TRaw[Co1At3Ch14]
+921.268 -0.111378 0.00 !Mu2ChX47TRaw[Co1At3Ch15]
+917.17 -0.11089 0.00 !Mu2ChX48TRaw[Co1At3Ch16]
+853.022 -0.102956 0.00 !Mu2ChX49TRaw[Co1At4Ch1]
+863.294 -0.104191 0.00 !Mu2ChX50TRaw[Co1At4Ch2]
+872.886 -0.105362 0.00 !Mu2ChX51TRaw[Co1At4Ch3]
+866.918 -0.10464 0.00 !Mu2ChX52TRaw[Co1At4Ch4]
+875.67 -0.105723 0.00 !Mu2ChX53TRaw[Co1At4Ch5]
+875.93 -0.105755 0.00 !Mu2ChX54TRaw[Co1At4Ch6]
+877.811 -0.105984 0.00 !Mu2ChX55TRaw[Co1At4Ch7]
+885.543 -0.106931 0.00 !Mu2ChX56TRaw[Co1At4Ch8]
+894.49 -0.108024 0.00 !Mu2ChX57TRaw[Co1At4Ch9]
+896.907 -0.108307 0.00 !Mu2ChX58TRaw[Co1At4Ch10]
+888.44 -0.107279 0.00 !Mu2ChX59TRaw[Co1At4Ch11]
+898.738 -0.108543 0.00 !Mu2ChX60TRaw[Co1At4Ch12]
+900.163 -0.108721 0.00 !Mu2ChX61TRaw[Co1At4Ch13]
+899.711 -0.108665 0.00 !Mu2ChX62TRaw[Co1At4Ch14]
+896.224 -0.10824 0.00 !Mu2ChX63TRaw[Co1At4Ch15]
+893.403 -0.107885 0.00 !Mu2ChX64TRaw[Co1At4Ch16]
+971.844 -0.117533 0.00 !Mu2ChX65TRaw[Co2At1Ch1]
+971.845 -0.117545 0.00 !Mu2ChX66TRaw[Co2At1Ch2]
+983.582 -0.118957 0.00 !Mu2ChX67TRaw[Co2At1Ch3]
+988.69 -0.119584 0.00 !Mu2ChX68TRaw[Co2At1Ch4]
+990.616 -0.119902 0.00 !Mu2ChX69TRaw[Co2At1Ch5]
+992.058 -0.12002 0.00 !Mu2ChX70TRaw[Co2At1Ch6]
+993.193 -0.120171 0.00 !Mu2ChX71TRaw[Co2At1Ch7]
+998.567 -0.120802 0.00 !Mu2ChX72TRaw[Co2At1Ch8]
+991.75 -0.119977 0.00 !Mu2ChX73TRaw[Co2At1Ch9]
+1000.28 -0.12102 0.00 !Mu2ChX74TRaw[Co2At1Ch10]
+996.389 -0.12055 0.00 !Mu2ChX75TRaw[Co2At1Ch11]
+995.946 -0.12048 0.00 !Mu2ChX76TRaw[Co2At1Ch12]
+1005.69 -0.121688 0.00 !Mu2ChX77TRaw[Co2At1Ch13]
+1009.38 -0.122136 0.00 !Mu2ChX78TRaw[Co2At1Ch14]
+1012.08 -0.122472 0.00 !Mu2ChX79TRaw[Co2At1Ch15]
+1003.93 -0.121488 0.00 !Mu2ChX80TRaw[Co2At1Ch16]
+952.869 -0.115148 0.00 !Mu2ChX81TRaw[Co2At2Ch1]
+964.034 -0.116512 0.00 !Mu2ChX82TRaw[Co2At2Ch2]
+965.866 -0.116735 0.00 !Mu2ChX83TRaw[Co2At2Ch3]
+969.343 -0.117158 0.00 !Mu2ChX84TRaw[Co2At2Ch4]
+969.333 -0.117159 0.00 !Mu2ChX85TRaw[Co2At2Ch5]
+970.748 -0.117336 0.00 !Mu2ChX86TRaw[Co2At2Ch6]
+984.429 -0.118997 0.00 !Mu2ChX87TRaw[Co2At2Ch7]
+983.229 -0.118879 0.00 !Mu2ChX88TRaw[Co2At2Ch8]
+993.933 -0.120152 0.00 !Mu2ChX89TRaw[Co2At2Ch9]
+993.652 -0.120143 0.00 !Mu2ChX90TRaw[Co2At2Ch10]
+992.615 -0.120011 0.00 !Mu2ChX91TRaw[Co2At2Ch11]
+982.481 -0.118788 0.00 !Mu2ChX92TRaw[Co2At2Ch12]
+997.508 -0.120614 0.00 !Mu2ChX93TRaw[Co2At2Ch13]
+1001.7 -0.12112 0.00 !Mu2ChX94TRaw[Co2At2Ch14]
+1002.51 -0.12123 0.00 !Mu2ChX95TRaw[Co2At2Ch15]
+987.604 -0.119394 0.00 !Mu2ChX96TRaw[Co2At2Ch16]
+901.312 -0.10895 0.00 !Mu2ChX97TRaw[Co2At3Ch1]
+917.986 -0.11099 0.00 !Mu2ChX98TRaw[Co2At3Ch2]
+913.934 -0.110483 0.00 !Mu2ChX99TRaw[Co2At3Ch3]
+913.949 -0.110494 0.00 !Mu2ChX100TRaw[Co2At3Ch4]
+923.435 -0.11163 0.00 !Mu2ChX101TRaw[Co2At3Ch5]
+922.621 -0.111573 0.00 !Mu2ChX102TRaw[Co2At3Ch6]
+921.076 -0.111368 0.00 !Mu2ChX103TRaw[Co2At3Ch7]
+925.346 -0.111888 0.00 !Mu2ChX104TRaw[Co2At3Ch8]
+935.581 -0.113122 0.00 !Mu2ChX105TRaw[Co2At3Ch9]
+932.485 -0.112764 0.00 !Mu2ChX106TRaw[Co2At3Ch10]
+937.5 -0.113373 0.00 !Mu2ChX107TRaw[Co2At3Ch11]
+932.715 -0.112797 0.00 !Mu2ChX108TRaw[Co2At3Ch12]
+935.979 -0.113176 0.00 !Mu2ChX109TRaw[Co2At3Ch13]
+942.445 -0.113973 0.00 !Mu2ChX110TRaw[Co2At3Ch14]
+943.181 -0.114066 0.00 !Mu2ChX111TRaw[Co2At3Ch15]
+942.414 -0.113973 0.00 !Mu2ChX112TRaw[Co2At3Ch16]
+902.2 -0.108961 0.00 !Mu2ChX113TRaw[Co2At4Ch1]
+906.889 -0.109531 0.00 !Mu2ChX114TRaw[Co2At4Ch2]
+914.61 -0.110461 0.00 !Mu2ChX115TRaw[Co2At4Ch3]
+914.139 -0.110414 0.00 !Mu2ChX116TRaw[Co2At4Ch4]
+929.709 -0.112323 0.00 !Mu2ChX117TRaw[Co2At4Ch5]
+932.582 -0.11267 0.00 !Mu2ChX118TRaw[Co2At4Ch6]
+938.012 -0.113333 0.00 !Mu2ChX119TRaw[Co2At4Ch7]
+940.971 -0.113698 0.00 !Mu2ChX120TRaw[Co2At4Ch8]
+940.564 -0.113666 0.00 !Mu2ChX121TRaw[Co2At4Ch9]
+949.44 -0.114745 0.00 !Mu2ChX122TRaw[Co2At4Ch10]
+940.75 -0.113673 0.00 !Mu2ChX123TRaw[Co2At4Ch11]
+946.851 -0.11443 0.00 !Mu2ChX124TRaw[Co2At4Ch12]
+936.518 -0.113174 0.00 !Mu2ChX125TRaw[Co2At4Ch13]
+936.181 -0.113143 0.00 !Mu2ChX126TRaw[Co2At4Ch14]
+944.748 -0.114176 0.00 !Mu2ChX127TRaw[Co2At4Ch15]
+944.971 -0.114186 0.00 !Mu2ChX128TRaw[Co2At4Ch16]
+989.947 -0.119525 0.00 !Mu2ChY1TRaw[Co3At1Ch1]
+993.077 -0.119903 0.00 !Mu2ChY2TRaw[Co3At1Ch2]
+992.258 -0.119776 0.00 !Mu2ChY3TRaw[Co3At1Ch3]
+998.524 -0.120524 0.00 !Mu2ChY4TRaw[Co3At1Ch4]
+1003.53 -0.121165 0.00 !Mu2ChY5TRaw[Co3At1Ch5]
+1001.78 -0.120947 0.00 !Mu2ChY6TRaw[Co3At1Ch6]
+1006.43 -0.121526 0.00 !Mu2ChY7TRaw[Co3At1Ch7]
+1013.44 -0.122366 0.00 !Mu2ChY8TRaw[Co3At1Ch8]
+1014.58 -0.122539 0.00 !Mu2ChY9TRaw[Co3At1Ch9]
+1006.22 -0.121307 0.00 !Mu2ChY10TRaw[Co3At1Ch10]
+1012.4 -0.122275 0.00 !Mu2ChY11TRaw[Co3At1Ch11]
+1017.56 -0.122898 0.00 !Mu2ChY12TRaw[Co3At1Ch12]
+1019.48 -0.12312 0.00 !Mu2ChY13TRaw[Co3At1Ch13]
+1024.68 -0.123746 0.00 !Mu2ChY14TRaw[Co3At1Ch14]
+1023.43 -0.123621 0.00 !Mu2ChY15TRaw[Co3At1Ch15]
+1024.2 -0.123744 0.00 !Mu2ChY16TRaw[Co3At1Ch16]
+942.022 -0.113632 0.00 !Mu2ChY17TRaw[Co3At2Ch1]
+941.851 -0.11359 0.00 !Mu2ChY18TRaw[Co3At2Ch2]
+941.301 -0.113546 0.00 !Mu2ChY19TRaw[Co3At2Ch3]
+941.196 -0.113526 0.00 !Mu2ChY20TRaw[Co3At2Ch4]
+956.339 -0.115367 0.00 !Mu2ChY21TRaw[Co3At2Ch5]
+972.159 -0.117305 0.00 !Mu2ChY22TRaw[Co3At2Ch6]
+968.071 -0.11682 0.00 !Mu2ChY23TRaw[Co3At2Ch7]
+963.198 -0.116216 0.00 !Mu2ChY24TRaw[Co3At2Ch8]
+978.802 -0.118134 0.00 !Mu2ChY25TRaw[Co3At2Ch9]
+981.332 -0.118446 0.00 !Mu2ChY26TRaw[Co3At2Ch10]
+978.515 -0.117858 0.00 !Mu2ChY27TRaw[Co3At2Ch11]
+985.445 -0.11895 0.00 !Mu2ChY28TRaw[Co3At2Ch12]
+979.656 -0.118238 0.00 !Mu2ChY29TRaw[Co3At2Ch13]
+981.57 -0.118468 0.00 !Mu2ChY30TRaw[Co3At2Ch14]
+980.383 -0.118337 0.00 !Mu2ChY31TRaw[Co3At2Ch15]
+968.968 -0.116905 0.00 !Mu2ChY32TRaw[Co3At2Ch16]
+874.116 -0.105393 0.00 !Mu2ChY33TRaw[Co3At3Ch1]
+880.638 -0.106206 0.00 !Mu2ChY34TRaw[Co3At3Ch2]
+893.026 -0.107711 0.00 !Mu2ChY35TRaw[Co3At3Ch3]
+894.339 -0.10786 0.00 !Mu2ChY36TRaw[Co3At3Ch4]
+897.82 -0.108297 0.00 !Mu2ChY37TRaw[Co3At3Ch5]
+892.44 -0.107628 0.00 !Mu2ChY38TRaw[Co3At3Ch6]
+908.152 -0.109574 0.00 !Mu2ChY39TRaw[Co3At3Ch7]
+906.817 -0.109401 0.00 !Mu2ChY40TRaw[Co3At3Ch8]
+909.649 -0.109756 0.00 !Mu2ChY41TRaw[Co3At3Ch9]
+914.061 -0.110304 0.00 !Mu2ChY42TRaw[Co3At3Ch10]
+910.049 -0.10979 0.00 !Mu2ChY43TRaw[Co3At3Ch11]
+913.535 -0.110231 0.00 !Mu2ChY44TRaw[Co3At3Ch12]
+915.986 -0.110532 0.00 !Mu2ChY45TRaw[Co3At3Ch13]
+919.243 -0.110907 0.00 !Mu2ChY46TRaw[Co3At3Ch14]
+922.863 -0.111371 0.00 !Mu2ChY47TRaw[Co3At3Ch15]
+918.091 -0.110791 0.00 !Mu2ChY48TRaw[Co3At3Ch16]
+896.545 -0.108016 0.00 !Mu2ChY49TRaw[Co3At4Ch1]
+905.921 -0.109155 0.00 !Mu2ChY50TRaw[Co3At4Ch2]
+903.191 -0.108834 0.00 !Mu2ChY51TRaw[Co3At4Ch3]
+916.514 -0.110471 0.00 !Mu2ChY52TRaw[Co3At4Ch4]
+909.698 -0.109622 0.00 !Mu2ChY53TRaw[Co3At4Ch5]
+918.472 -0.110708 0.00 !Mu2ChY54TRaw[Co3At4Ch6]
+921.934 -0.111116 0.00 !Mu2ChY55TRaw[Co3At4Ch7]
+917.791 -0.11061 0.00 !Mu2ChY56TRaw[Co3At4Ch8]
+930.463 -0.11216 0.00 !Mu2ChY57TRaw[Co3At4Ch9]
+921.545 -0.111079 0.00 !Mu2ChY58TRaw[Co3At4Ch10]
+924.357 -0.111393 0.00 !Mu2ChY59TRaw[Co3At4Ch11]
+928.134 -0.11168 0.00 !Mu2ChY60TRaw[Co3At4Ch12]
+944.074 -0.11386 0.00 !Mu2ChY61TRaw[Co3At4Ch13]
+929.497 -0.112068 0.00 !Mu2ChY62TRaw[Co3At4Ch14]
+925.938 -0.111623 0.00 !Mu2ChY63TRaw[Co3At4Ch15]
+933.858 -0.112593 0.00 !Mu2ChY64TRaw[Co3At4Ch16]
+926.3 -0.111864 0.00 !Mu2ChY65TRaw[Co4At1Ch1]
+945.736 -0.114242 0.00 !Mu2ChY66TRaw[Co4At1Ch2]
+950.053 -0.114763 0.00 !Mu2ChY67TRaw[Co4At1Ch3]
+947.803 -0.114477 0.00 !Mu2ChY68TRaw[Co4At1Ch4]
+974.181 -0.117701 0.00 !Mu2ChY69TRaw[Co4At1Ch5]
+962.11 -0.116242 0.00 !Mu2ChY70TRaw[Co4At1Ch6]
+969.683 -0.117144 0.00 !Mu2ChY71TRaw[Co4At1Ch7]
+966.661 -0.116783 0.00 !Mu2ChY72TRaw[Co4At1Ch8]
+958.107 -0.115747 0.00 !Mu2ChY73TRaw[Co4At1Ch9]
+960.237 -0.115989 0.00 !Mu2ChY74TRaw[Co4At1Ch10]
+966.385 -0.116762 0.00 !Mu2ChY75TRaw[Co4At1Ch11]
+979.2 -0.118324 0.00 !Mu2ChY76TRaw[Co4At1Ch12]
+975.406 -0.117892 0.00 !Mu2ChY77TRaw[Co4At1Ch13]
+977.792 -0.118194 0.00 !Mu2ChY78TRaw[Co4At1Ch14]
+968.878 -0.117092 0.00 !Mu2ChY79TRaw[Co4At1Ch15]
+971.01 -0.117343 0.00 !Mu2ChY80TRaw[Co4At1Ch16]
+946.074 -0.114246 0.00 !Mu2ChY81TRaw[Co4At2Ch1]
+940.751 -0.113582 0.00 !Mu2ChY82TRaw[Co4At2Ch2]
+952.983 -0.115097 0.00 !Mu2ChY83TRaw[Co4At2Ch3]
+948.889 -0.114574 0.00 !Mu2ChY84TRaw[Co4At2Ch4]
+957.63 -0.115653 0.00 !Mu2ChY85TRaw[Co4At2Ch5]
+968.091 -0.11692 0.00 !Mu2ChY86TRaw[Co4At2Ch6]
+966.176 -0.116695 0.00 !Mu2ChY87TRaw[Co4At2Ch7]
+971.862 -0.117388 0.00 !Mu2ChY88TRaw[Co4At2Ch8]
+974.809 -0.117739 0.00 !Mu2ChY89TRaw[Co4At2Ch9]
+976.466 -0.11797 0.00 !Mu2ChY90TRaw[Co4At2Ch10]
+981.048 -0.118525 0.00 !Mu2ChY91TRaw[Co4At2Ch11]
+971.816 -0.117371 0.00 !Mu2ChY92TRaw[Co4At2Ch12]
+979.537 -0.118331 0.00 !Mu2ChY93TRaw[Co4At2Ch13]
+979.044 -0.118283 0.00 !Mu2ChY94TRaw[Co4At2Ch14]
+986.328 -0.119174 0.00 !Mu2ChY95TRaw[Co4At2Ch15]
+991.309 -0.119806 0.00 !Mu2ChY96TRaw[Co4At2Ch16]
+899.526 -0.108639 0.00 !Mu2ChY97TRaw[Co4At3Ch1]
+896.011 -0.108189 0.00 !Mu2ChY98TRaw[Co4At3Ch2]
+906.665 -0.109474 0.00 !Mu2ChY99TRaw[Co4At3Ch3]
+905.068 -0.109308 0.00 !Mu2ChY100TRaw[Co4At3Ch4]
+919.012 -0.110997 0.00 !Mu2ChY101TRaw[Co4At3Ch5]
+926.674 -0.111938 0.00 !Mu2ChY102TRaw[Co4At3Ch6]
+916.909 -0.110746 0.00 !Mu2ChY103TRaw[Co4At3Ch7]
+932.767 -0.112691 0.00 !Mu2ChY104TRaw[Co4At3Ch8]
+927.33 -0.112025 0.00 !Mu2ChY105TRaw[Co4At3Ch9]
+923.243 -0.111507 0.00 !Mu2ChY106TRaw[Co4At3Ch10]
+924.408 -0.111663 0.00 !Mu2ChY107TRaw[Co4At3Ch11]
+924.057 -0.111623 0.00 !Mu2ChY108TRaw[Co4At3Ch12]
+927.531 -0.112066 0.00 !Mu2ChY109TRaw[Co4At3Ch13]
+928.251 -0.11214 0.00 !Mu2ChY110TRaw[Co4At3Ch14]
+924.467 -0.111703 0.00 !Mu2ChY111TRaw[Co4At3Ch15]
+914.871 -0.110525 0.00 !Mu2ChY112TRaw[Co4At3Ch16]
+854.155 -0.102981 0.00 !Mu2ChY113TRaw[Co4At4Ch1]
+870.733 -0.104976 0.00 !Mu2ChY114TRaw[Co4At4Ch2]
+878.476 -0.105936 0.00 !Mu2ChY115TRaw[Co4At4Ch3]
+876.793 -0.10575 0.00 !Mu2ChY116TRaw[Co4At4Ch4]
+884.881 -0.106741 0.00 !Mu2ChY117TRaw[Co4At4Ch5]
+881.171 -0.10628 0.00 !Mu2ChY118TRaw[Co4At4Ch6]
+893.636 -0.107805 0.00 !Mu2ChY119TRaw[Co4At4Ch7]
+894.919 -0.107966 0.00 !Mu2ChY120TRaw[Co4At4Ch8]
+885.067 -0.106759 0.00 !Mu2ChY121TRaw[Co4At4Ch9]
+898.226 -0.108381 0.00 !Mu2ChY122TRaw[Co4At4Ch10]
+896.617 -0.108195 0.00 !Mu2ChY123TRaw[Co4At4Ch11]
+896.617 -0.108195 0.00 !Mu2ChY124TRaw[Co4At4Ch12]
+899.421 -0.108519 0.00 !Mu2ChY125TRaw[Co4At4Ch13]
+900.193 -0.10863 0.00 !Mu2ChY126TRaw[Co4At4Ch14]
+901.229 -0.108768 0.00 !Mu2ChY127TRaw[Co4At4Ch15]
+897.311 -0.108297 0.00 !Mu2ChY128TRaw[Co4At4Ch16]
+938.354 -0.113591 0.00 !Mu3ChX1TRaw[Co1At1Ch1]
+952.054 -0.115254 0.00 !Mu3ChX2TRaw[Co1At1Ch2]
+956.534 -0.115822 0.00 !Mu3ChX3TRaw[Co1At1Ch3]
+958.488 -0.116042 0.00 !Mu3ChX4TRaw[Co1At1Ch4]
+950.724 -0.115096 0.00 !Mu3ChX5TRaw[Co1At1Ch5]
+965.196 -0.11686 0.00 !Mu3ChX6TRaw[Co1At1Ch6]
+969.308 -0.117385 0.00 !Mu3ChX7TRaw[Co1At1Ch7]
+974.569 -0.118019 0.00 !Mu3ChX8TRaw[Co1At1Ch8]
+972.643 -0.117779 0.00 !Mu3ChX9TRaw[Co1At1Ch9]
+970.352 -0.117496 0.00 !Mu3ChX10TRaw[Co1At1Ch10]
+972.778 -0.117795 0.00 !Mu3ChX11TRaw[Co1At1Ch11]
+984.9 -0.119273 0.00 !Mu3ChX12TRaw[Co1At1Ch12]
+974.806 -0.118031 0.00 !Mu3ChX13TRaw[Co1At1Ch13]
+981.032 -0.118805 0.00 !Mu3ChX14TRaw[Co1At1Ch14]
+978.727 -0.118524 0.00 !Mu3ChX15TRaw[Co1At1Ch15]
+983.561 -0.119127 0.00 !Mu3ChX16TRaw[Co1At1Ch16]
+967.055 -0.117029 0.00 !Mu3ChX17TRaw[Co1At2Ch1]
+963.403 -0.116582 0.00 !Mu3ChX18TRaw[Co1At2Ch2]
+982.136 -0.11886 0.00 !Mu3ChX19TRaw[Co1At2Ch3]
+978.048 -0.118386 0.00 !Mu3ChX20TRaw[Co1At2Ch4]
+985.228 -0.119229 0.00 !Mu3ChX21TRaw[Co1At2Ch5]
+992.422 -0.120114 0.00 !Mu3ChX22TRaw[Co1At2Ch6]
+984.595 -0.119177 0.00 !Mu3ChX23TRaw[Co1At2Ch7]
+988.858 -0.119693 0.00 !Mu3ChX24TRaw[Co1At2Ch8]
+986.58 -0.119405 0.00 !Mu3ChX25TRaw[Co1At2Ch9]
+987.489 -0.119523 0.00 !Mu3ChX26TRaw[Co1At2Ch10]
+1000.74 -0.12115 0.00 !Mu3ChX27TRaw[Co1At2Ch11]
+996.509 -0.120628 0.00 !Mu3ChX28TRaw[Co1At2Ch12]
+1006.69 -0.121885 0.00 !Mu3ChX29TRaw[Co1At2Ch13]
+999.766 -0.121035 0.00 !Mu3ChX30TRaw[Co1At2Ch14]
+1001.37 -0.121233 0.00 !Mu3ChX31TRaw[Co1At2Ch15]
+996.617 -0.120654 0.00 !Mu3ChX32TRaw[Co1At2Ch16]
+898.105 -0.108693 0.00 !Mu3ChX33TRaw[Co1At3Ch1]
+904.446 -0.109485 0.00 !Mu3ChX34TRaw[Co1At3Ch2]
+912.143 -0.110421 0.00 !Mu3ChX35TRaw[Co1At3Ch3]
+905.421 -0.109588 0.00 !Mu3ChX36TRaw[Co1At3Ch4]
+911.321 -0.110301 0.00 !Mu3ChX37TRaw[Co1At3Ch5]
+919.499 -0.111327 0.00 !Mu3ChX38TRaw[Co1At3Ch6]
+921.109 -0.111495 0.00 !Mu3ChX39TRaw[Co1At3Ch7]
+929.489 -0.112521 0.00 !Mu3ChX40TRaw[Co1At3Ch8]
+937.068 -0.11347 0.00 !Mu3ChX41TRaw[Co1At3Ch9]
+930.942 -0.112717 0.00 !Mu3ChX42TRaw[Co1At3Ch10]
+927.894 -0.112335 0.00 !Mu3ChX43TRaw[Co1At3Ch11]
+932.632 -0.112964 0.00 !Mu3ChX44TRaw[Co1At3Ch12]
+935.332 -0.113245 0.00 !Mu3ChX45TRaw[Co1At3Ch13]
+929.857 -0.11258 0.00 !Mu3ChX46TRaw[Co1At3Ch14]
+937.136 -0.113476 0.00 !Mu3ChX47TRaw[Co1At3Ch15]
+935.398 -0.113256 0.00 !Mu3ChX48TRaw[Co1At3Ch16]
+866.015 -0.104661 0.00 !Mu3ChX49TRaw[Co1At4Ch1]
+865.76 -0.104634 0.00 !Mu3ChX50TRaw[Co1At4Ch2]
+878.223 -0.106155 0.00 !Mu3ChX51TRaw[Co1At4Ch3]
+888.186 -0.107364 0.00 !Mu3ChX52TRaw[Co1At4Ch4]
+888.209 -0.107368 0.00 !Mu3ChX53TRaw[Co1At4Ch5]
+884.13 -0.106861 0.00 !Mu3ChX54TRaw[Co1At4Ch6]
+896.431 -0.108382 0.00 !Mu3ChX55TRaw[Co1At4Ch7]
+899.348 -0.108733 0.00 !Mu3ChX56TRaw[Co1At4Ch8]
+896.795 -0.10844 0.00 !Mu3ChX57TRaw[Co1At4Ch9]
+902.052 -0.10908 0.00 !Mu3ChX58TRaw[Co1At4Ch10]
+897.684 -0.108538 0.00 !Mu3ChX59TRaw[Co1At4Ch11]
+897.274 -0.10849 0.00 !Mu3ChX60TRaw[Co1At4Ch12]
+903.963 -0.109312 0.00 !Mu3ChX61TRaw[Co1At4Ch13]
+905.108 -0.109445 0.00 !Mu3ChX62TRaw[Co1At4Ch14]
+891.538 -0.107803 0.00 !Mu3ChX63TRaw[Co1At4Ch15]
+900.293 -0.108862 0.00 !Mu3ChX64TRaw[Co1At4Ch16]
+985.824 -0.119126 0.00 !Mu3ChX65TRaw[Co2At1Ch1]
+991.541 -0.119789 0.00 !Mu3ChX66TRaw[Co2At1Ch2]
+991.866 -0.119851 0.00 !Mu3ChX67TRaw[Co2At1Ch3]
+1007.5 -0.121753 0.00 !Mu3ChX68TRaw[Co2At1Ch4]
+1008.13 -0.121824 0.00 !Mu3ChX69TRaw[Co2At1Ch5]
+1004.87 -0.121446 0.00 !Mu3ChX70TRaw[Co2At1Ch6]
+1008.48 -0.121893 0.00 !Mu3ChX71TRaw[Co2At1Ch7]
+1012.14 -0.122347 0.00 !Mu3ChX72TRaw[Co2At1Ch8]
+1008.38 -0.121883 0.00 !Mu3ChX73TRaw[Co2At1Ch9]
+1014.86 -0.122684 0.00 !Mu3ChX74TRaw[Co2At1Ch10]
+1023.57 -0.123722 0.00 !Mu3ChX75TRaw[Co2At1Ch11]
+1033.42 -0.124938 0.00 !Mu3ChX76TRaw[Co2At1Ch12]
+1015.34 -0.122709 0.00 !Mu3ChX77TRaw[Co2At1Ch13]
+1014.72 -0.12265 0.00 !Mu3ChX78TRaw[Co2At1Ch14]
+1026.27 -0.124061 0.00 !Mu3ChX79TRaw[Co2At1Ch15]
+1019.9 -0.123313 0.00 !Mu3ChX80TRaw[Co2At1Ch16]
+942.714 -0.11381 0.00 !Mu3ChX81TRaw[Co2At2Ch1]
+949.104 -0.114558 0.00 !Mu3ChX82TRaw[Co2At2Ch2]
+952.48 -0.114986 0.00 !Mu3ChX83TRaw[Co2At2Ch3]
+951.022 -0.114804 0.00 !Mu3ChX84TRaw[Co2At2Ch4]
+965.822 -0.116619 0.00 !Mu3ChX85TRaw[Co2At2Ch5]
+968.345 -0.11693 0.00 !Mu3ChX86TRaw[Co2At2Ch6]
+962.99 -0.116299 0.00 !Mu3ChX87TRaw[Co2At2Ch7]
+967.787 -0.116863 0.00 !Mu3ChX88TRaw[Co2At2Ch8]
+978.317 -0.118161 0.00 !Mu3ChX89TRaw[Co2At2Ch9]
+974.374 -0.117687 0.00 !Mu3ChX90TRaw[Co2At2Ch10]
+979.507 -0.118304 0.00 !Mu3ChX91TRaw[Co2At2Ch11]
+987.225 -0.119256 0.00 !Mu3ChX92TRaw[Co2At2Ch12]
+987.195 -0.119241 0.00 !Mu3ChX93TRaw[Co2At2Ch13]
+986.603 -0.119186 0.00 !Mu3ChX94TRaw[Co2At2Ch14]
+984.211 -0.118879 0.00 !Mu3ChX95TRaw[Co2At2Ch15]
+979.288 -0.118278 0.00 !Mu3ChX96TRaw[Co2At2Ch16]
+862.689 -0.104124 0.00 !Mu3ChX97TRaw[Co2At3Ch1]
+867.813 -0.104728 0.00 !Mu3ChX98TRaw[Co2At3Ch2]
+867.895 -0.104753 0.00 !Mu3ChX99TRaw[Co2At3Ch3]
+873.835 -0.105492 0.00 !Mu3ChX100TRaw[Co2At3Ch4]
+883.843 -0.106693 0.00 !Mu3ChX101TRaw[Co2At3Ch5]
+879.494 -0.10614 0.00 !Mu3ChX102TRaw[Co2At3Ch6]
+883.805 -0.106708 0.00 !Mu3ChX103TRaw[Co2At3Ch7]
+882.86 -0.106567 0.00 !Mu3ChX104TRaw[Co2At3Ch8]
+891.887 -0.107671 0.00 !Mu3ChX105TRaw[Co2At3Ch9]
+896.27 -0.108216 0.00 !Mu3ChX106TRaw[Co2At3Ch10]
+888.15 -0.107225 0.00 !Mu3ChX107TRaw[Co2At3Ch11]
+899.039 -0.108561 0.00 !Mu3ChX108TRaw[Co2At3Ch12]
+899.371 -0.108609 0.00 !Mu3ChX109TRaw[Co2At3Ch13]
+896.002 -0.108191 0.00 !Mu3ChX110TRaw[Co2At3Ch14]
+905.511 -0.109337 0.00 !Mu3ChX111TRaw[Co2At3Ch15]
+900.32 -0.108709 0.00 !Mu3ChX112TRaw[Co2At3Ch16]
+859.472 -0.103629 0.00 !Mu3ChX113TRaw[Co2At4Ch1]
+869.213 -0.10481 0.00 !Mu3ChX114TRaw[Co2At4Ch2]
+869.978 -0.1049 0.00 !Mu3ChX115TRaw[Co2At4Ch3]
+876.122 -0.105647 0.00 !Mu3ChX116TRaw[Co2At4Ch4]
+788.143 -0.126949 0.00 !Mu3ChX117TRaw[Co2At4Ch5]
+880.15 -0.106145 0.00 !Mu3ChX118TRaw[Co2At4Ch6]
+887.525 -0.107055 0.00 !Mu3ChX119TRaw[Co2At4Ch7]
+884.874 -0.10675 0.00 !Mu3ChX120TRaw[Co2At4Ch8]
+888.126 -0.107137 0.00 !Mu3ChX121TRaw[Co2At4Ch9]
+892.007 -0.107599 0.00 !Mu3ChX122TRaw[Co2At4Ch10]
+887.829 -0.107093 0.00 !Mu3ChX123TRaw[Co2At4Ch11]
+897.245 -0.108252 0.00 !Mu3ChX124TRaw[Co2At4Ch12]
+891.27 -0.107522 0.00 !Mu3ChX125TRaw[Co2At4Ch13]
+898.089 -0.108336 0.00 !Mu3ChX126TRaw[Co2At4Ch14]
+885.342 -0.106793 0.00 !Mu3ChX127TRaw[Co2At4Ch15]
+894.433 -0.107896 0.00 !Mu3ChX128TRaw[Co2At4Ch16]
+920.954 -0.11121 0.00 !Mu3ChY1TRaw[Co3At1Ch1]
+928.777 -0.112154 0.00 !Mu3ChY2TRaw[Co3At1Ch2]
+937.754 -0.113241 0.00 !Mu3ChY3TRaw[Co3At1Ch3]
+947.224 -0.114409 0.00 !Mu3ChY4TRaw[Co3At1Ch4]
+944.162 -0.114032 0.00 !Mu3ChY5TRaw[Co3At1Ch5]
+951.968 -0.114994 0.00 !Mu3ChY6TRaw[Co3At1Ch6]
+956.591 -0.115552 0.00 !Mu3ChY7TRaw[Co3At1Ch7]
+956.368 -0.115546 0.00 !Mu3ChY8TRaw[Co3At1Ch8]
+964.281 -0.116506 0.00 !Mu3ChY9TRaw[Co3At1Ch9]
+968.513 -0.117006 0.00 !Mu3ChY10TRaw[Co3At1Ch10]
+970.24 -0.117251 0.00 !Mu3ChY11TRaw[Co3At1Ch11]
+969.011 -0.117093 0.00 !Mu3ChY12TRaw[Co3At1Ch12]
+978.827 -0.118272 0.00 !Mu3ChY13TRaw[Co3At1Ch13]
+985.112 -0.119048 0.00 !Mu3ChY14TRaw[Co3At1Ch14]
+977.123 -0.118075 0.00 !Mu3ChY15TRaw[Co3At1Ch15]
+983.985 -0.118941 0.00 !Mu3ChY16TRaw[Co3At1Ch16]
+970.371 -0.117174 0.00 !Mu3ChY17TRaw[Co3At2Ch1]
+984.045 -0.118815 0.00 !Mu3ChY18TRaw[Co3At2Ch2]
+985.023 -0.118931 0.00 !Mu3ChY19TRaw[Co3At2Ch3]
+990.894 -0.119638 0.00 !Mu3ChY20TRaw[Co3At2Ch4]
+996.439 -0.12034 0.00 !Mu3ChY21TRaw[Co3At2Ch5]
+1006.18 -0.121551 0.00 !Mu3ChY22TRaw[Co3At2Ch6]
+1001.89 -0.120998 0.00 !Mu3ChY23TRaw[Co3At2Ch7]
+996.258 -0.120321 0.00 !Mu3ChY24TRaw[Co3At2Ch8]
+1002.35 -0.121073 0.00 !Mu3ChY25TRaw[Co3At2Ch9]
+1008.58 -0.121839 0.00 !Mu3ChY26TRaw[Co3At2Ch10]
+1008.51 -0.121856 0.00 !Mu3ChY27TRaw[Co3At2Ch11]
+1015.07 -0.122649 0.00 !Mu3ChY28TRaw[Co3At2Ch12]
+1018.24 -0.12302 0.00 !Mu3ChY29TRaw[Co3At2Ch13]
+1007.23 -0.121668 0.00 !Mu3ChY30TRaw[Co3At2Ch14]
+1016.39 -0.122794 0.00 !Mu3ChY31TRaw[Co3At2Ch15]
+1017.37 -0.122927 0.00 !Mu3ChY32TRaw[Co3At2Ch16]
+873.601 -0.105446 0.00 !Mu3ChY33TRaw[Co3At3Ch1]
+870.737 -0.105092 0.00 !Mu3ChY34TRaw[Co3At3Ch2]
+875.902 -0.10573 0.00 !Mu3ChY35TRaw[Co3At3Ch3]
+872.76 -0.105345 0.00 !Mu3ChY36TRaw[Co3At3Ch4]
+884.229 -0.106744 0.00 !Mu3ChY37TRaw[Co3At3Ch5]
+883.52 -0.106654 0.00 !Mu3ChY38TRaw[Co3At3Ch6]
+888.675 -0.107294 0.00 !Mu3ChY39TRaw[Co3At3Ch7]
+897.411 -0.108361 0.00 !Mu3ChY40TRaw[Co3At3Ch8]
+894.272 -0.10799 0.00 !Mu3ChY41TRaw[Co3At3Ch9]
+898.134 -0.10846 0.00 !Mu3ChY42TRaw[Co3At3Ch10]
+907.563 -0.109593 0.00 !Mu3ChY43TRaw[Co3At3Ch11]
+904.332 -0.109195 0.00 !Mu3ChY44TRaw[Co3At3Ch12]
+899.078 -0.108568 0.00 !Mu3ChY45TRaw[Co3At3Ch13]
+909.287 -0.109804 0.00 !Mu3ChY46TRaw[Co3At3Ch14]
+912.926 -0.110263 0.00 !Mu3ChY47TRaw[Co3At3Ch15]
+905.69 -0.109382 0.00 !Mu3ChY48TRaw[Co3At3Ch16]
+879.206 -0.105997 0.00 !Mu3ChY49TRaw[Co3At4Ch1]
+885.638 -0.106772 0.00 !Mu3ChY50TRaw[Co3At4Ch2]
+897.352 -0.108217 0.00 !Mu3ChY51TRaw[Co3At4Ch3]
+900.017 -0.108527 0.00 !Mu3ChY52TRaw[Co3At4Ch4]
+894.065 -0.107825 0.00 !Mu3ChY53TRaw[Co3At4Ch5]
+902.563 -0.108862 0.00 !Mu3ChY54TRaw[Co3At4Ch6]
+907.447 -0.109456 0.00 !Mu3ChY55TRaw[Co3At4Ch7]
+913.155 -0.110152 0.00 !Mu3ChY56TRaw[Co3At4Ch8]
+917.884 -0.110718 0.00 !Mu3ChY57TRaw[Co3At4Ch9]
+916.39 -0.11056 0.00 !Mu3ChY58TRaw[Co3At4Ch10]
+925.29 -0.111636 0.00 !Mu3ChY59TRaw[Co3At4Ch11]
+911.348 -0.109934 0.00 !Mu3ChY60TRaw[Co3At4Ch12]
+924.685 -0.111581 0.00 !Mu3ChY61TRaw[Co3At4Ch13]
+925.584 -0.111694 0.00 !Mu3ChY62TRaw[Co3At4Ch14]
+920.738 -0.1111 0.00 !Mu3ChY63TRaw[Co3At4Ch15]
+923.494 -0.11144 0.00 !Mu3ChY64TRaw[Co3At4Ch16]
+904.406 -0.109216 0.00 !Mu3ChY65TRaw[Co4At1Ch1]
+911.098 -0.110026 0.00 !Mu3ChY66TRaw[Co4At1Ch2]
+911.599 -0.110106 0.00 !Mu3ChY67TRaw[Co4At1Ch3]
+920.222 -0.11114 0.00 !Mu3ChY68TRaw[Co4At1Ch4]
+931.355 -0.11252 0.00 !Mu3ChY69TRaw[Co4At1Ch5]
+939.668 -0.113544 0.00 !Mu3ChY70TRaw[Co4At1Ch6]
+932.714 -0.112672 0.00 !Mu3ChY71TRaw[Co4At1Ch7]
+931.288 -0.112491 0.00 !Mu3ChY72TRaw[Co4At1Ch8]
+947.183 -0.114462 0.00 !Mu3ChY73TRaw[Co4At1Ch9]
+939.764 -0.11354 0.00 !Mu3ChY74TRaw[Co4At1Ch10]
+955.625 -0.115517 0.00 !Mu3ChY75TRaw[Co4At1Ch11]
+952.282 -0.115086 0.00 !Mu3ChY76TRaw[Co4At1Ch12]
+964.745 -0.116618 0.00 !Mu3ChY77TRaw[Co4At1Ch13]
+953.345 -0.115232 0.00 !Mu3ChY78TRaw[Co4At1Ch14]
+945.988 -0.114343 0.00 !Mu3ChY79TRaw[Co4At1Ch15]
+951.047 -0.114947 0.00 !Mu3ChY80TRaw[Co4At1Ch16]
+970.943 -0.117288 0.00 !Mu3ChY81TRaw[Co4At2Ch1]
+982.69 -0.118727 0.00 !Mu3ChY82TRaw[Co4At2Ch2]
+988.906 -0.119474 0.00 !Mu3ChY83TRaw[Co4At2Ch3]
+992.522 -0.119909 0.00 !Mu3ChY84TRaw[Co4At2Ch4]
+994.13 -0.120116 0.00 !Mu3ChY85TRaw[Co4At2Ch5]
+1001.12 -0.120975 0.00 !Mu3ChY86TRaw[Co4At2Ch6]
+998.108 -0.120606 0.00 !Mu3ChY87TRaw[Co4At2Ch7]
+999.312 -0.12076 0.00 !Mu3ChY88TRaw[Co4At2Ch8]
+1004.15 -0.121336 0.00 !Mu3ChY89TRaw[Co4At2Ch9]
+1015.36 -0.122713 0.00 !Mu3ChY90TRaw[Co4At2Ch10]
+1018.49 -0.1231 0.00 !Mu3ChY91TRaw[Co4At2Ch11]
+1006.74 -0.121678 0.00 !Mu3ChY92TRaw[Co4At2Ch12]
+1015.03 -0.122697 0.00 !Mu3ChY93TRaw[Co4At2Ch13]
+1018.29 -0.123087 0.00 !Mu3ChY94TRaw[Co4At2Ch14]
+1010.39 -0.122144 0.00 !Mu3ChY95TRaw[Co4At2Ch15]
+1011.64 -0.122274 0.00 !Mu3ChY96TRaw[Co4At2Ch16]
+874.337 -0.105573 0.00 !Mu3ChY97TRaw[Co4At3Ch1]
+871.593 -0.105224 0.00 !Mu3ChY98TRaw[Co4At3Ch2]
+876.164 -0.105791 0.00 !Mu3ChY99TRaw[Co4At3Ch3]
+885.298 -0.106904 0.00 !Mu3ChY100TRaw[Co4At3Ch4]
+892.528 -0.107789 0.00 !Mu3ChY101TRaw[Co4At3Ch5]
+892.165 -0.107742 0.00 !Mu3ChY102TRaw[Co4At3Ch6]
+903.16 -0.109085 0.00 !Mu3ChY103TRaw[Co4At3Ch7]
+895.161 -0.108126 0.00 !Mu3ChY104TRaw[Co4At3Ch8]
+902.34 -0.108999 0.00 !Mu3ChY105TRaw[Co4At3Ch9]
+894.856 -0.108068 0.00 !Mu3ChY106TRaw[Co4At3Ch10]
+894.177 -0.108006 0.00 !Mu3ChY107TRaw[Co4At3Ch11]
+903.343 -0.109125 0.00 !Mu3ChY108TRaw[Co4At3Ch12]
+905.571 -0.109439 0.00 !Mu3ChY109TRaw[Co4At3Ch13]
+903.69 -0.109168 0.00 !Mu3ChY110TRaw[Co4At3Ch14]
+899.215 -0.108625 0.00 !Mu3ChY111TRaw[Co4At3Ch15]
+905.657 -0.109416 0.00 !Mu3ChY112TRaw[Co4At3Ch16]
+891.482 -0.107554 0.00 !Mu3ChY113TRaw[Co4At4Ch1]
+898.972 -0.108473 0.00 !Mu3ChY114TRaw[Co4At4Ch2]
+902.164 -0.108848 0.00 !Mu3ChY115TRaw[Co4At4Ch3]
+897.423 -0.108292 0.00 !Mu3ChY116TRaw[Co4At4Ch4]
+905.477 -0.109288 0.00 !Mu3ChY117TRaw[Co4At4Ch5]
+910.936 -0.109943 0.00 !Mu3ChY118TRaw[Co4At4Ch6]
+909.486 -0.109765 0.00 !Mu3ChY119TRaw[Co4At4Ch7]
+908.693 -0.109672 0.00 !Mu3ChY120TRaw[Co4At4Ch8]
+915.535 -0.110512 0.00 !Mu3ChY121TRaw[Co4At4Ch9]
+924.289 -0.111588 0.00 !Mu3ChY122TRaw[Co4At4Ch10]
+926.875 -0.111915 0.00 !Mu3ChY123TRaw[Co4At4Ch11]
+909.469 -0.109772 0.00 !Mu3ChY124TRaw[Co4At4Ch12]
+913.618 -0.11029 0.00 !Mu3ChY125TRaw[Co4At4Ch13]
+919.137 -0.110947 0.00 !Mu3ChY126TRaw[Co4At4Ch14]
+920.413 -0.111116 0.00 !Mu3ChY127TRaw[Co4At4Ch15]
+928.523 -0.112131 0.00 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Coeff/Cal_Str_X_T_MM1_run_0200.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Coeff/Cal_Str_X_T_MM1_run_0200.cal
new file mode 100644
index 0000000000000000000000000000000000000000..75fd18aa4723e482e5d79901e3e272b5f58b002e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Coeff/Cal_Str_X_T_MM1_run_0200.cal
@@ -0,0 +1,64 @@
+MUSETT_T1_DSSD_X1_T 954.599 -0.121763	7.01384e-07
+MUSETT_T1_DSSD_X2_T 967.922 -0.123541	7.26055e-07
+MUSETT_T1_DSSD_X3_T 961.88 -0.122284	6.0757e-07
+MUSETT_T1_DSSD_X4_T 978.032 -0.125354	7.20967e-07
+MUSETT_T1_DSSD_X5_T 986.23 -0.125953	7.65489e-07
+MUSETT_T1_DSSD_X6_T 987.96 -0.126599	8.20619e-07
+MUSETT_T1_DSSD_X7_T 984.219 -0.126018	7.27668e-07
+MUSETT_T1_DSSD_X8_T 985.856 -0.124783	6.08173e-07
+MUSETT_T1_DSSD_X9_T 988.949 -0.126482	7.59745e-07
+MUSETT_T1_DSSD_X10_T 992.701 -0.126472	7.16079e-07
+MUSETT_T1_DSSD_X11_T 992.831 -0.126239	6.55316e-07
+MUSETT_T1_DSSD_X12_T 996.87 -0.126281	6.553e-07
+MUSETT_T1_DSSD_X13_T 1006.36 -0.127949	7.17096e-07
+MUSETT_T1_DSSD_X14_T 987.503 -0.124659	5.90654e-07
+MUSETT_T1_DSSD_X15_T 1000.36 -0.127793	7.46879e-07
+MUSETT_T1_DSSD_X16_T 986.25 -0.12444	5.59837e-07
+MUSETT_T1_DSSD_X17_T 964.954 -0.122665	6.71169e-07
+MUSETT_T1_DSSD_X18_T 963.006 -0.11643	9.6873e-11
+MUSETT_T1_DSSD_X19_T 987.209 -0.124488	5.84763e-07
+MUSETT_T1_DSSD_X20_T 971.846 -0.117514	-5.4511e-08
+MUSETT_T1_DSSD_X21_T 987.621 -0.120137	6.81102e-08
+MUSETT_T1_DSSD_X22_T 976.231 -0.118639	4.23294e-11
+MUSETT_T1_DSSD_X23_T 981.587 -0.118294	-1.32395e-07
+MUSETT_T1_DSSD_X24_T 1006.36 -0.127949	7.17101e-07
+MUSETT_T1_DSSD_X25_T 981.565 -0.118872	-4.11001e-08
+MUSETT_T1_DSSD_X26_T 1004.98 -0.12628	5.06616e-07
+MUSETT_T1_DSSD_X27_T 997.459 -0.120096	-8.3353e-08
+MUSETT_T1_DSSD_X28_T 1003.43 -0.121364	-9.94967e-09
+MUSETT_T1_DSSD_X29_T 995.999 -0.120457	-5.8383e-08
+MUSETT_T1_DSSD_X30_T 995.815 -0.120512	-3.87946e-08
+MUSETT_T1_DSSD_X31_T 1005.12 -0.128179	7.04129e-07
+MUSETT_T1_DSSD_X32_T 992.127 -0.120162	1.69201e-08
+MUSETT_T1_DSSD_X33_T 883.917 -0.114701	8.52186e-07
+MUSETT_T1_DSSD_X34_T 881.153 -0.113932	8.15362e-07
+MUSETT_T1_DSSD_X35_T 896.635 -0.115598	7.58613e-07
+MUSETT_T1_DSSD_X36_T 887.918 -0.11403	7.36313e-07
+MUSETT_T1_DSSD_X37_T 886.863 -0.113974	7.12182e-07
+MUSETT_T1_DSSD_X38_T 904.09 -0.116967	8.13585e-07
+MUSETT_T1_DSSD_X39_T 899.906 -0.115007	6.31382e-07
+MUSETT_T1_DSSD_X40_T 905.286 -0.1165	7.84653e-07
+MUSETT_T1_DSSD_X41_T 892.708 -0.108895	4.19165e-08
+MUSETT_T1_DSSD_X42_T 908.746 -0.116546	7.39379e-07
+MUSETT_T1_DSSD_X43_T 906.086 -0.116933	7.82491e-07
+MUSETT_T1_DSSD_X44_T 915.4 -0.117122	7.33411e-07
+MUSETT_T1_DSSD_X45_T 912.244 -0.117268	7.89631e-07
+MUSETT_T1_DSSD_X46_T 908.165 -0.116835	8.01145e-07
+MUSETT_T1_DSSD_X47_T 903.121 -0.116119	7.29519e-07
+MUSETT_T1_DSSD_X48_T 903.827 -0.116056	7.04315e-07
+MUSETT_T1_DSSD_X49_T 896.544 -0.114638	7.3623e-07
+MUSETT_T1_DSSD_X50_T 895.865 -0.114409	6.78143e-07
+MUSETT_T1_DSSD_X51_T 899.927 -0.1147	6.53573e-07
+MUSETT_T1_DSSD_X52_T 907.668 -0.116135	7.5805e-07
+MUSETT_T1_DSSD_X53_T 915.828 -0.116231	6.31303e-07
+MUSETT_T1_DSSD_X54_T 913.447 -0.115813	5.77349e-07
+MUSETT_T1_DSSD_X55_T 920.745 -0.116359	5.93778e-07
+MUSETT_T1_DSSD_X56_T 920.539 -0.116871	6.04792e-07
+MUSETT_T1_DSSD_X57_T 937.997 -0.119851	7.58037e-07
+MUSETT_T1_DSSD_X58_T 923.581 -0.118299	7.10738e-07
+MUSETT_T1_DSSD_X59_T 936.772 -0.119366	7.14976e-07
+MUSETT_T1_DSSD_X60_T 936.468 -0.119298	6.66735e-07
+MUSETT_T1_DSSD_X61_T 947.735 -0.120999	7.29801e-07
+MUSETT_T1_DSSD_X62_T 952.292 -0.123036	8.82113e-07
+MUSETT_T1_DSSD_X63_T 953.571 -0.121901	7.55376e-07
+MUSETT_T1_DSSD_X64_T 936.886 -0.119031	6.42594e-07
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Coeff/Cal_Str_X_T_MM1_run_0200.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Coeff/Cal_Str_X_T_MM1_run_0200.peak
new file mode 100644
index 0000000000000000000000000000000000000000..572b578455850cfbd5b2ac25ede01f35d6770a13
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Coeff/Cal_Str_X_T_MM1_run_0200.peak
@@ -0,0 +1,1640 @@
+MUSETT_T1_DSSD_X1_T 
+0	3816.18
+1	3992.18
+2	4152.18
+3	4328.18
+4	4504.18
+5	4680.18
+6	4856.18
+7	5032.16
+8	5208.16
+9	5384.18
+10	5560.18
+11	5736.17
+12	5912.18
+13	6088.18
+14	6264.19
+15	6440.18
+16	6616.18
+17	6792.18
+18	6968.18
+19	7144.18
+20	7304.18
+21	7496.18
+22	7656.18
+23	7832.18
+24	8120.16
+MUSETT_T1_DSSD_X2_T 
+0	3864.19
+1	4040.17
+2	4216.2
+3	4392.18
+4	4552.18
+5	4728.18
+6	4904.18
+7	5080.16
+8	5256.18
+9	5416.18
+10	5592.18
+11	5768.18
+12	5944.18
+13	6120.18
+14	6296.18
+15	6456.18
+16	6632.18
+17	6808.18
+18	6984.18
+19	7160.18
+20	7336.18
+21	7496.18
+22	7672.18
+23	7848.18
+24	8120.18
+MUSETT_T1_DSSD_X3_T 
+0	3848.19
+1	4008.18
+2	4184.18
+3	4360.18
+4	4536.18
+5	4712.18
+6	4888.18
+7	5048.16
+8	5224.18
+9	5400.18
+10	5576.18
+11	5752.18
+12	5912.18
+13	6088.18
+14	6264.19
+15	6440.18
+16	6616.18
+17	6776.18
+18	6952.18
+19	7128.18
+20	7304.18
+21	7480.18
+22	7640.18
+23	7816.18
+24	8088.18
+MUSETT_T1_DSSD_X4_T 
+0	3896.19
+1	4056.17
+2	4232.2
+3	4408.18
+4	4568.18
+5	4744.18
+6	4920.18
+7	5080.16
+8	5256.18
+9	5416.18
+10	5592.18
+11	5768.18
+12	5944.18
+13	6104.18
+14	6280.18
+15	6440.18
+16	6616.18
+17	6792.18
+18	6952.18
+19	7128.18
+20	7304.18
+21	7464.18
+22	7640.18
+23	7816.18
+24	8072.18
+MUSETT_T1_DSSD_X5_T 
+0	3944.18
+1	4120.18
+2	4280.2
+3	4456.18
+4	4632.17
+5	4792.18
+6	4968.16
+7	5144.16
+8	5304.18
+9	5480.18
+10	5656.17
+11	5816.18
+12	5992.18
+13	6152.18
+14	6328.18
+15	6504.18
+16	6664.18
+17	6840.18
+18	7016.18
+19	7176.18
+20	7352.18
+21	7528.18
+22	7688.18
+23	7864.18
+24	8136.18
+MUSETT_T1_DSSD_X6_T 
+0	3944.18
+1	4120.18
+2	4280.2
+3	4456.18
+4	4632.17
+5	4792.18
+6	4968.16
+7	5144.16
+8	5304.18
+9	5480.18
+10	5640.17
+11	5816.18
+12	5992.18
+13	6152.18
+14	6328.18
+15	6504.18
+16	6664.18
+17	6840.18
+18	7016.18
+19	7176.18
+20	7352.18
+21	7528.18
+22	7688.18
+23	7864.18
+24	8136.18
+MUSETT_T1_DSSD_X7_T 
+0	3928.18
+1	4088.17
+2	4264.2
+3	4424.18
+4	4600.18
+5	4776.18
+6	4936.18
+7	5112.16
+8	5272.18
+9	5448.18
+10	5624.17
+11	5784.18
+12	5960.18
+13	6120.18
+14	6296.18
+15	6472.18
+16	6632.18
+17	6808.18
+18	6968.18
+19	7144.18
+20	7320.18
+21	7480.18
+22	7656.18
+23	7816.18
+24	8088.18
+MUSETT_T1_DSSD_X8_T 
+0	3800.18
+1	3960.18
+2	4136.18
+3	4296.2
+4	4472.18
+5	4648.17
+6	4808.18
+7	4984.16
+8	5144.16
+9	5320.18
+10	5496.18
+11	5656.17
+12	5832.18
+13	5992.18
+14	6168.18
+15	6328.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7512.18
+23	7688.18
+24	7864.18
+25	8120.18
+MUSETT_T1_DSSD_X9_T 
+0	3944.18
+1	4120.18
+2	4296.2
+3	4456.18
+4	4632.17
+5	4792.18
+6	4968.16
+7	5144.16
+8	5304.18
+9	5480.18
+10	5640.17
+11	5816.18
+12	5976.18
+13	6152.18
+14	6328.18
+15	6488.18
+16	6664.18
+17	6824.18
+18	7000.18
+19	7176.18
+20	7336.18
+21	7512.18
+22	7672.18
+23	7848.18
+24	8120.18
+MUSETT_T1_DSSD_X10_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4488.18
+5	4648.17
+6	4824.18
+7	4984.16
+8	5160.16
+9	5320.18
+10	5496.18
+11	5672.17
+12	5832.18
+13	6008.18
+14	6168.18
+15	6344.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7528.18
+23	7688.18
+24	7864.18
+25	8120.18
+MUSETT_T1_DSSD_X11_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4488.18
+5	4648.17
+6	4824.18
+7	4984.16
+8	5160.16
+9	5320.18
+10	5496.18
+11	5656.17
+12	5832.18
+13	5992.18
+14	6168.18
+15	6328.18
+16	6504.18
+17	6664.18
+18	6840.18
+19	7000.18
+20	7176.18
+21	7336.18
+22	7512.18
+23	7672.18
+24	7848.18
+25	8104.18
+MUSETT_T1_DSSD_X12_T 
+0	3848.19
+1	4008.18
+2	4184.18
+3	4344.18
+4	4520.18
+5	4680.18
+6	4856.18
+7	5016.16
+8	5192.16
+9	5352.18
+10	5528.18
+11	5688.17
+12	5864.18
+13	6024.18
+14	6200.18
+15	6360.18
+16	6536.18
+17	6696.18
+18	6872.18
+19	7032.18
+20	7208.18
+21	7368.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+MUSETT_T1_DSSD_X13_T 
+0	3880.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4536.18
+5	4712.18
+6	4872.18
+7	5048.16
+8	5208.16
+9	5368.18
+10	5544.18
+11	5704.17
+12	5880.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6536.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7208.18
+21	7384.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+MUSETT_T1_DSSD_X14_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4488.18
+5	4664.18
+6	4824.18
+7	5000.16
+8	5160.16
+9	5336.18
+10	5496.18
+11	5672.17
+12	5848.18
+13	6008.18
+14	6184.18
+15	6344.18
+16	6520.18
+17	6696.18
+18	6856.18
+19	7032.18
+20	7192.18
+21	7368.18
+22	7528.18
+23	7704.18
+24	7864.18
+25	8136.18
+MUSETT_T1_DSSD_X15_T 
+0	3832.19
+1	4008.18
+2	4168.18
+3	4344.18
+4	4504.18
+5	4664.18
+6	4840.18
+7	5000.16
+8	5176.16
+9	5336.18
+10	5512.18
+11	5672.17
+12	5848.18
+13	6008.18
+14	6184.18
+15	6344.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7512.18
+23	7688.18
+24	7848.18
+25	8120.18
+MUSETT_T1_DSSD_X16_T 
+0	3800.18
+1	3976.18
+2	4136.18
+3	4312.18
+4	4488.18
+5	4648.17
+6	4824.18
+7	4984.16
+8	5160.16
+9	5320.18
+10	5496.18
+11	5672.17
+12	5832.18
+13	6008.18
+14	6168.18
+15	6344.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7528.18
+23	7688.18
+24	7864.18
+25	8120.18
+MUSETT_T1_DSSD_X17_T 
+0	3864.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4552.18
+5	4728.18
+6	4904.18
+7	5080.16
+8	5256.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5944.18
+13	6120.18
+14	6296.18
+15	6472.18
+16	6632.18
+17	6808.18
+18	6984.18
+19	7160.18
+20	7336.18
+21	7512.18
+22	7688.18
+23	7848.18
+24	8120.18
+MUSETT_T1_DSSD_X18_T 
+0	3800.18
+1	3976.18
+2	4152.18
+3	4328.18
+4	4488.18
+5	4664.18
+6	4840.18
+7	5000.16
+8	5176.16
+9	5352.18
+10	5528.18
+11	5688.17
+12	5864.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6552.18
+17	6728.18
+18	6904.18
+19	7064.18
+20	7240.18
+21	7416.18
+22	7576.18
+23	7752.18
+24	7928.18
+25	8104.18
+MUSETT_T1_DSSD_X19_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4328.18
+4	4488.18
+5	4664.18
+6	4824.18
+7	5000.16
+8	5176.16
+9	5336.18
+10	5512.18
+11	5672.17
+12	5848.18
+13	6008.18
+14	6184.18
+15	6360.18
+16	6520.18
+17	6696.18
+18	6856.18
+19	7032.18
+20	7208.18
+21	7368.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+MUSETT_T1_DSSD_X20_T 
+0	3832.19
+1	4008.18
+2	4184.18
+3	4344.18
+4	4520.18
+5	4680.18
+6	4856.18
+7	5032.16
+8	5192.16
+9	5368.18
+10	5528.18
+11	5704.17
+12	5864.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6552.18
+17	6712.18
+18	6888.18
+19	7048.18
+20	7224.18
+21	7400.18
+22	7560.18
+23	7736.18
+24	7896.18
+25	8072.18
+MUSETT_T1_DSSD_X21_T 
+0	3896.19
+1	4072.17
+2	4232.2
+3	4408.18
+4	4568.18
+5	4744.18
+6	4904.18
+7	5064.16
+8	5240.18
+9	5416.18
+10	5576.18
+11	5736.17
+12	5912.18
+13	6072.18
+14	6248.19
+15	6408.18
+16	6584.18
+17	6744.18
+18	6920.18
+19	7080.18
+20	7256.18
+21	7416.18
+22	7592.18
+23	7752.18
+24	7928.18
+25	8088.18
+MUSETT_T1_DSSD_X22_T 
+0	3848.19
+1	4008.18
+2	4184.18
+3	4344.18
+4	4520.18
+5	4696.18
+6	4856.18
+7	5032.16
+8	5192.16
+9	5368.18
+10	5528.18
+11	5704.17
+12	5864.18
+13	6040.18
+14	6200.18
+15	6376.18
+16	6536.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7224.18
+21	7384.18
+22	7560.18
+23	7720.18
+24	7896.18
+25	8056.18
+MUSETT_T1_DSSD_X23_T 
+0	3880.19
+1	4056.17
+2	4216.2
+3	4392.18
+4	4552.18
+5	4728.18
+6	4888.18
+7	5064.16
+8	5224.18
+9	5384.18
+10	5560.18
+11	5720.17
+12	5896.18
+13	6056.18
+14	6232.18
+15	6392.18
+16	6552.18
+17	6728.18
+18	6888.18
+19	7064.18
+20	7224.18
+21	7384.18
+22	7560.18
+23	7720.18
+24	7896.18
+25	8056.18
+MUSETT_T1_DSSD_X24_T 
+0	3880.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4536.18
+5	4712.18
+6	4872.18
+7	5048.16
+8	5208.16
+9	5368.18
+10	5544.18
+11	5704.17
+12	5880.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6536.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7208.18
+21	7384.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+MUSETT_T1_DSSD_X25_T 
+0	3880.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4552.18
+5	4712.18
+6	4888.18
+7	5048.16
+8	5224.18
+9	5384.18
+10	5560.18
+11	5720.17
+12	5896.18
+13	6056.18
+14	6232.18
+15	6392.18
+16	6552.18
+17	6728.18
+18	6888.18
+19	7064.18
+20	7224.18
+21	7400.18
+22	7560.18
+23	7736.18
+24	7896.18
+25	8072.18
+MUSETT_T1_DSSD_X26_T 
+0	3896.19
+1	4056.17
+2	4232.2
+3	4392.18
+4	4552.18
+5	4728.18
+6	4888.18
+7	5048.16
+8	5224.18
+9	5384.18
+10	5560.18
+11	5720.17
+12	5880.18
+13	6056.18
+14	6216.18
+15	6376.18
+16	6552.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7208.18
+21	7368.18
+22	7544.18
+23	7704.18
+24	7864.18
+25	8120.17
+MUSETT_T1_DSSD_X27_T 
+0	3800.18
+1	3960.18
+2	4136.18
+3	4296.2
+4	4456.18
+5	4632.17
+6	4792.18
+7	4952.16
+8	5128.16
+9	5288.18
+10	5448.18
+11	5624.17
+12	5784.18
+13	5944.18
+14	6120.18
+15	6280.18
+16	6440.18
+17	6616.18
+18	6776.18
+19	6936.18
+20	7096.18
+21	7272.18
+22	7432.18
+23	7608.18
+24	7768.18
+25	7928.18
+26	8088.18
+MUSETT_T1_DSSD_X28_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4472.18
+5	4648.17
+6	4808.18
+7	4968.16
+8	5128.16
+9	5304.18
+10	5464.18
+11	5624.17
+12	5800.18
+13	5960.18
+14	6120.18
+15	6280.18
+16	6456.18
+17	6616.18
+18	6776.18
+19	6952.18
+20	7112.18
+21	7272.18
+22	7432.18
+23	7608.18
+24	7768.18
+25	7928.18
+26	8104.18
+MUSETT_T1_DSSD_X29_T 
+0	3944.18
+1	4104.18
+2	4280.2
+3	4440.18
+4	4600.18
+5	4776.18
+6	4936.18
+7	5096.16
+8	5272.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5928.18
+13	6088.18
+14	6264.19
+15	6424.18
+16	6584.18
+17	6744.18
+18	6920.18
+19	7080.18
+20	7240.18
+21	7416.18
+22	7576.18
+23	7736.18
+24	7912.18
+25	8072.18
+MUSETT_T1_DSSD_X30_T 
+0	3944.18
+1	4104.18
+2	4280.2
+3	4440.18
+4	4600.18
+5	4776.18
+6	4936.18
+7	5096.16
+8	5272.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5928.18
+13	6088.18
+14	6264.19
+15	6424.18
+16	6584.18
+17	6760.18
+18	6920.18
+19	7080.18
+20	7256.18
+21	7416.18
+22	7576.18
+23	7752.18
+24	7912.18
+25	8072.18
+MUSETT_T1_DSSD_X31_T 
+0	3864.19
+1	4024.18
+2	4184.18
+3	4360.18
+4	4520.18
+5	4680.18
+6	4856.18
+7	5016.16
+8	5192.16
+9	5352.18
+10	5512.18
+11	5688.17
+12	5848.18
+13	6024.18
+14	6184.18
+15	6344.18
+16	6520.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7512.18
+23	7672.18
+24	7848.18
+25	8104.18
+MUSETT_T1_DSSD_X32_T 
+0	3928.18
+1	4104.18
+2	4264.2
+3	4424.18
+4	4600.18
+5	4760.18
+6	4936.18
+7	5096.16
+8	5272.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5928.18
+13	6104.18
+14	6264.19
+15	6424.18
+16	6600.18
+17	6760.18
+18	6936.18
+19	7096.18
+20	7272.18
+21	7432.18
+22	7592.18
+23	7768.18
+24	7928.18
+25	8104.18
+MUSETT_T1_DSSD_X33_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4360.18
+4	4552.18
+5	4744.18
+6	4920.18
+7	5112.16
+8	5304.18
+9	5496.18
+10	5688.17
+11	5880.18
+12	6072.18
+13	6264.19
+14	6440.18
+15	6632.18
+16	6824.18
+17	7016.18
+18	7208.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X34_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4360.18
+4	4552.18
+5	4728.18
+6	4920.18
+7	5112.16
+8	5320.18
+9	5496.18
+10	5688.17
+11	5880.18
+12	6072.18
+13	6264.19
+14	6456.18
+15	6648.18
+16	6840.18
+17	7032.18
+18	7224.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8088.18
+MUSETT_T1_DSSD_X35_T 
+0	3864.19
+1	4056.17
+2	4232.2
+3	4424.18
+4	4616.17
+5	4792.18
+6	4984.16
+7	5176.16
+8	5352.18
+9	5544.18
+10	5736.17
+11	5912.18
+12	6104.18
+13	6280.18
+14	6472.18
+15	6664.18
+16	6856.18
+17	7032.18
+18	7224.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X36_T 
+0	3832.19
+1	4024.18
+2	4216.2
+3	4408.18
+4	4600.18
+5	4776.18
+6	4968.16
+7	5160.16
+8	5352.18
+9	5544.18
+10	5720.17
+11	5912.18
+12	6104.18
+13	6296.18
+14	6472.18
+15	6664.18
+16	6856.18
+17	7048.18
+18	7240.18
+19	7416.18
+20	7608.18
+21	7800.18
+22	8104.18
+MUSETT_T1_DSSD_X37_T 
+0	3832.19
+1	4008.18
+2	4200.18
+3	4392.18
+4	4584.18
+5	4776.18
+6	4952.16
+7	5144.16
+8	5336.18
+9	5528.18
+10	5704.17
+11	5896.18
+12	6088.18
+13	6280.18
+14	6456.18
+15	6648.18
+16	6840.18
+17	7032.18
+18	7224.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X38_T 
+0	3896.19
+1	4072.17
+2	4264.2
+3	4440.18
+4	4632.17
+5	4824.18
+6	5000.16
+7	5192.16
+8	5368.18
+9	5560.18
+10	5736.17
+11	5928.18
+12	6120.18
+13	6296.18
+14	6488.18
+15	6664.18
+16	6856.18
+17	7032.18
+18	7224.18
+19	7416.18
+20	7592.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X39_T 
+0	3896.19
+1	4088.17
+2	4264.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5560.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7224.18
+19	7416.18
+20	7592.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X40_T 
+0	3912.18
+1	4104.18
+2	4280.2
+3	4472.18
+4	4664.18
+5	4840.18
+6	5032.16
+7	5208.16
+8	5400.18
+9	5592.18
+10	5768.18
+11	5960.18
+12	6136.18
+13	6328.18
+14	6504.18
+15	6696.18
+16	6888.18
+17	7064.18
+18	7256.18
+19	7432.18
+20	7624.18
+21	7816.18
+22	8104.18
+MUSETT_T1_DSSD_X41_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4344.18
+4	4536.18
+5	4712.18
+6	4904.18
+7	5080.16
+8	5272.18
+9	5448.18
+10	5640.17
+11	5816.18
+12	6008.18
+13	6200.18
+14	6376.18
+15	6568.18
+16	6744.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7672.18
+22	7848.18
+23	8040.18
+MUSETT_T1_DSSD_X42_T 
+0	3944.18
+1	4120.18
+2	4312.18
+3	4488.18
+4	4680.18
+5	4856.18
+6	5048.16
+7	5224.18
+8	5416.18
+9	5608.17
+10	5784.18
+11	5976.18
+12	6152.18
+13	6344.18
+14	6520.18
+15	6712.18
+16	6888.18
+17	7080.18
+18	7256.18
+19	7448.18
+20	7624.18
+21	7816.18
+22	8104.18
+MUSETT_T1_DSSD_X43_T 
+0	3912.18
+1	4088.17
+2	4280.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5576.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7224.18
+19	7416.18
+20	7608.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X44_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4344.18
+4	4536.18
+5	4712.18
+6	4904.18
+7	5080.16
+8	5256.18
+9	5448.18
+10	5624.17
+11	5816.18
+12	5992.18
+13	6184.18
+14	6360.18
+15	6552.18
+16	6728.18
+17	6920.18
+18	7096.18
+19	7288.18
+20	7464.18
+21	7640.18
+22	7832.18
+23	8120.18
+MUSETT_T1_DSSD_X45_T 
+0	3944.18
+1	4136.18
+2	4328.18
+3	4504.18
+4	4696.18
+5	4872.18
+6	5048.16
+7	5240.18
+8	5432.18
+9	5608.17
+10	5800.18
+11	5976.18
+12	6168.18
+13	6344.18
+14	6536.18
+15	6712.18
+16	6904.18
+17	7080.18
+18	7272.18
+19	7448.18
+20	7640.18
+21	7816.18
+22	8120.18
+MUSETT_T1_DSSD_X46_T 
+0	3928.18
+1	4120.18
+2	4296.2
+3	4488.18
+4	4680.18
+5	4856.18
+6	5048.16
+7	5224.18
+8	5416.18
+9	5592.18
+10	5784.18
+11	5976.18
+12	6152.18
+13	6344.18
+14	6520.18
+15	6712.18
+16	6888.18
+17	7080.18
+18	7272.18
+19	7448.18
+20	7640.18
+21	7816.18
+22	8120.18
+MUSETT_T1_DSSD_X47_T 
+0	3896.19
+1	4088.17
+2	4280.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5560.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7240.18
+19	7416.18
+20	7608.18
+21	7784.18
+22	8072.17
+MUSETT_T1_DSSD_X48_T 
+0	3912.18
+1	4088.17
+2	4280.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5208.16
+8	5384.18
+9	5576.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7240.18
+19	7416.18
+20	7592.18
+21	7784.18
+22	8072.17
+MUSETT_T1_DSSD_X49_T 
+0	3896.19
+1	4088.17
+2	4264.2
+3	4456.18
+4	4648.17
+5	4840.18
+6	5016.16
+7	5208.16
+8	5400.18
+9	5592.18
+10	5768.18
+11	5960.18
+12	6152.18
+13	6344.18
+14	6520.18
+15	6712.18
+16	6904.18
+17	7080.18
+18	7272.18
+19	7464.18
+20	7656.18
+21	7832.18
+22	8136.16
+MUSETT_T1_DSSD_X50_T 
+0	3896.19
+1	4072.17
+2	4264.2
+3	4456.18
+4	4632.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5576.18
+10	5768.18
+11	5944.18
+12	6136.18
+13	6328.18
+14	6504.18
+15	6696.18
+16	6888.18
+17	7064.18
+18	7256.18
+19	7448.18
+20	7624.18
+21	7816.18
+22	8104.18
+MUSETT_T1_DSSD_X51_T 
+0	3912.18
+1	4104.18
+2	4280.2
+3	4472.18
+4	4664.18
+5	4840.18
+6	5032.16
+7	5224.18
+8	5400.18
+9	5592.18
+10	5768.18
+11	5960.18
+12	6152.18
+13	6328.18
+14	6520.18
+15	6712.18
+16	6888.18
+17	7080.18
+18	7256.18
+19	7448.18
+20	7640.18
+21	7816.18
+22	8104.18
+MUSETT_T1_DSSD_X52_T 
+0	3944.18
+1	4136.18
+2	4312.18
+3	4504.18
+4	4696.18
+5	4872.18
+6	5064.16
+7	5240.18
+8	5432.18
+9	5624.17
+10	5800.18
+11	5992.18
+12	6168.18
+13	6360.18
+14	6552.18
+15	6728.18
+16	6920.18
+17	7096.18
+18	7288.18
+19	7480.18
+20	7656.18
+21	7848.18
+22	8136.17
+MUSETT_T1_DSSD_X53_T 
+0	3816.18
+1	4008.18
+2	4184.18
+3	4376.18
+4	4552.18
+5	4728.18
+6	4920.18
+7	5096.16
+8	5288.18
+9	5464.18
+10	5656.17
+11	5832.18
+12	6008.18
+13	6200.18
+14	6376.18
+15	6568.18
+16	6744.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7848.18
+23	8120.18
+MUSETT_T1_DSSD_X54_T 
+0	3800.18
+1	3992.18
+2	4168.18
+3	4360.18
+4	4536.18
+5	4728.18
+6	4904.18
+7	5080.16
+8	5272.18
+9	5448.18
+10	5640.17
+11	5816.18
+12	5992.18
+13	6184.18
+14	6360.18
+15	6552.18
+16	6728.18
+17	6904.18
+18	7096.18
+19	7272.18
+20	7464.18
+21	7640.18
+22	7816.18
+23	8104.18
+MUSETT_T1_DSSD_X55_T 
+0	3848.19
+1	4040.17
+2	4216.2
+3	4408.18
+4	4584.18
+5	4776.18
+6	4952.16
+7	5128.16
+8	5304.18
+9	5496.18
+10	5672.17
+11	5864.18
+12	6040.18
+13	6216.18
+14	6408.18
+15	6584.18
+16	6776.18
+17	6952.18
+18	7128.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7864.18
+23	8136.18
+MUSETT_T1_DSSD_X56_T 
+0	3832.19
+1	4024.18
+2	4200.18
+3	4376.18
+4	4568.18
+5	4744.18
+6	4920.18
+7	5112.16
+8	5288.18
+9	5480.18
+10	5656.17
+11	5832.18
+12	6008.18
+13	6200.18
+14	6376.18
+15	6552.18
+16	6744.18
+17	6920.18
+18	7096.18
+19	7288.18
+20	7464.18
+21	7640.18
+22	7832.18
+23	8104.18
+MUSETT_T1_DSSD_X57_T 
+0	3912.18
+1	4088.17
+2	4264.2
+3	4440.18
+4	4632.17
+5	4808.18
+6	4984.16
+7	5160.16
+8	5336.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6248.19
+14	6424.18
+15	6600.18
+16	6776.18
+17	6952.18
+18	7144.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7864.18
+23	8136.18
+MUSETT_T1_DSSD_X58_T 
+0	3832.19
+1	4008.18
+2	4184.18
+3	4376.18
+4	4552.18
+5	4728.18
+6	4920.18
+7	5096.16
+8	5272.18
+9	5448.18
+10	5640.17
+11	5816.18
+12	6008.18
+13	6184.18
+14	6360.18
+15	6536.18
+16	6728.18
+17	6904.18
+18	7080.18
+19	7272.18
+20	7448.18
+21	7624.18
+22	7816.18
+23	8088.18
+MUSETT_T1_DSSD_X59_T 
+0	3912.18
+1	4088.17
+2	4264.2
+3	4440.18
+4	4632.17
+5	4808.18
+6	4984.16
+7	5160.16
+8	5352.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6248.19
+14	6424.18
+15	6600.18
+16	6776.18
+17	6952.18
+18	7144.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7864.18
+23	8136.18
+MUSETT_T1_DSSD_X60_T 
+0	3896.19
+1	4088.17
+2	4264.2
+3	4440.18
+4	4616.17
+5	4792.18
+6	4968.16
+7	5160.16
+8	5336.18
+9	5512.18
+10	5688.17
+11	5864.18
+12	6040.18
+13	6232.18
+14	6408.18
+15	6584.18
+16	6760.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7832.18
+23	8104.18
+MUSETT_T1_DSSD_X61_T 
+0	3944.18
+1	4120.18
+2	4312.18
+3	4488.18
+4	4664.18
+5	4840.18
+6	5016.16
+7	5192.16
+8	5368.18
+9	5544.18
+10	5720.17
+11	5896.18
+12	6072.18
+13	6248.19
+14	6424.18
+15	6600.18
+16	6792.18
+17	6968.18
+18	7144.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7848.18
+23	8120.18
+MUSETT_T1_DSSD_X62_T 
+0	3928.18
+1	4120.18
+2	4296.2
+3	4472.18
+4	4648.17
+5	4824.18
+6	5000.16
+7	5176.16
+8	5352.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6232.18
+14	6408.18
+15	6584.18
+16	6760.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7832.18
+23	8104.18
+MUSETT_T1_DSSD_X63_T 
+0	3800.18
+1	3976.18
+2	4152.18
+3	4328.18
+4	4504.18
+5	4680.18
+6	4856.18
+7	5032.16
+8	5208.16
+9	5384.18
+10	5560.18
+11	5736.17
+12	5912.18
+13	6088.18
+14	6264.19
+15	6440.18
+16	6616.18
+17	6792.18
+18	6968.18
+19	7144.18
+20	7320.18
+21	7496.18
+22	7672.18
+23	7848.18
+24	8136.16
+MUSETT_T1_DSSD_X64_T 
+0	3912.18
+1	4088.17
+2	4264.2
+3	4456.18
+4	4632.17
+5	4808.18
+6	4984.16
+7	5160.16
+8	5336.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6232.18
+14	6408.18
+15	6600.18
+16	6776.18
+17	6952.18
+18	7128.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7848.18
+23	8120.18
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/ExtractRawHisto_T.C b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/ExtractRawHisto_T.C
new file mode 100644
index 0000000000000000000000000000000000000000..828209dd0ef9c45b64b433e0b0042e6ece30c1bf
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/ExtractRawHisto_T.C
@@ -0,0 +1,113 @@
+////////////////////////////////////////////////////////////////////////////
+// This macro takes a converted ROOT file from the GANIL e569 exp. and    //
+// create an histogram for each strip (X and Y) of the MUST2 array filled //
+// with the energy. The histograms are dumped in an output ROOT file.     //
+//                                                                        //
+// This is especially usefull for calibration purposes when there is no   //
+// need to work directly on the TTree                                     //
+////////////////////////////////////////////////////////////////////////////
+#include <iostream>
+
+#include "TROOT.h"
+#include "TSystem.h"
+#include "TFile.h"
+#include "TString.h"
+#include "TTree.h"
+#include "TBranch.h"
+#include "TH1F.h"
+#include "TMUSETTData.h"
+#include "TChain.h"
+
+
+
+void ExtractMust2Histos(const char* fname = "run_0040", int NBTELESCOPE = 4, int NBSTRIPS = 128, int FIRSTSTRIP = 0, int FIRSTELESCOPE = 0)
+{
+
+  TString path  = "~/npTreeReader/np-tree-reader/Projects/MUSETT/RootR/";
+  TChain* tree = new TChain("RD");
+  tree->Add(path + fname + ".root");
+  //tree->Add(path + fname + "_1.root");
+  //tree->Add(path + fname + "_2.root");
+
+  tree->SetBranchStatus("*",false);
+
+  // connect the TMust2Data branch  
+  tree->SetBranchStatus("MUSETT",true);
+  tree->SetBranchStatus("fMM*",true);
+  TMUSETTData *rawMUSETT; 
+
+  std::cout << tree->GetEntries() << std::endl;
+
+  rawMUSETT = new TMUSETTData();
+  tree->SetBranchAddress("MUSETT", &rawMUSETT);
+
+
+
+  // open the output ROOT file
+  TString outFileName = "~/npTreeReader/np-tree-reader/Projects/MUSETT/calibration/Time/Histograms/";
+  outFileName += fname;
+  outFileName += "_RawMUSETTHistos.root";
+  std::cout<< outFileName<< std::endl;
+  TFile *outFile = new TFile(outFileName, "recreate");
+
+  // prepare output histograms for Must2
+  TH1F* hStripXTime[NBTELESCOPE-FIRSTELESCOPE][NBSTRIPS-FIRSTSTRIP];
+  TH1F* hStripYTime[NBTELESCOPE-FIRSTELESCOPE][NBSTRIPS-FIRSTSTRIP];
+  for (Int_t i = FIRSTELESCOPE; i < NBTELESCOPE; i++) {
+    for (Int_t j = FIRSTSTRIP; j < NBSTRIPS; j++) {
+      // strips XE
+      TString hnameXT     = Form("hMM%d_STRX_T%d", i, j);
+      TString htitleXT    = Form("MM%d_STRX_T%d", i, j);
+      hStripXTime[i][j] = new TH1F(hnameXT, htitleXT, 16384, 0, 16384);
+      // strips YE
+      TString hnameYT     = Form("hMM%d_STRY_T%d", i, j);
+      TString htitleYT    = Form("MM%d_STRY_T%d", i, j);
+      hStripYTime[i][j] = new TH1F(hnameYT, htitleYT, 16384, 0, 16384);
+    }
+  }
+
+  // read the data
+  Int_t nentries = tree->GetEntries();
+  //   nentries = 21000;
+  std::cout << "TTree contains " << nentries << " events" << std::endl;
+  for (Int_t i = 0; i < nentries; i++) {
+    if (i%10000 == 0) std::cout << "Entry " << i << std::endl;
+    
+    tree->GetEntry(i);
+    Int_t multXT = 0;
+    multXT = rawMUSETT->GetDSSDXTMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    for (Int_t j = 0; j < multXT; j++) {
+      Int_t det    = rawMUSETT->GetDSSDXTDetectorNbr(j);
+      Int_t stripX = rawMUSETT->GetDSSDXTStripNbr(j);
+      Int_t Time_ = rawMUSETT->GetDSSDXTTime(j);
+      if ((det < NBTELESCOPE) && (stripX < NBSTRIPS)) {
+        std::cout << det << " " << stripX << " " << Time_<< std::endl;
+        hStripXTime[det][stripX]->Fill(Time_);
+      }
+      else {
+        //std::cout << "Error filling histograms: MUSETT_X_T" << std::endl;
+      }
+    }
+    // get StripYE multiplicity
+    Int_t multYT = rawMUSETT->GetDSSDYTMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    for (Int_t j = 0; j < multYT; j++) {
+      Int_t det    = rawMUSETT->GetDSSDYTDetectorNbr(j);
+      Int_t stripY = rawMUSETT->GetDSSDYTStripNbr(j);
+      Int_t Time_ = rawMUSETT->GetDSSDYTTime(j);
+      if ((det < NBTELESCOPE) && (stripY < NBSTRIPS)) {
+        hStripYTime[det][stripY]->Fill(Time_);
+      }
+      else {
+        //std::cout << "Error filling histograms: MUSETT_Y_T" << std::endl;
+      }
+    }
+  }
+
+  // write on disk output file and close it
+  outFile->Write();
+  outFile->Close();
+}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/ExtractRawHisto_T_C.d b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/ExtractRawHisto_T_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..8b366a233c98e6a83f3d1c61a31cf5d3e8878b57
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/ExtractRawHisto_T_C.d
@@ -0,0 +1,89 @@
+
+# DO NOT DELETE
+
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSystem.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInetAddress.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTimer.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSysEvtHandler.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTime.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./ExtractRawHisto_T_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TMUSETTData.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TChain.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+ExtractRawHisto_T_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Histograms/.root_hist b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Histograms/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..5d9de7637d13de4b12d1cf83318c5f3560ec847e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/Histograms/.root_hist
@@ -0,0 +1,3 @@
+TFile *_file0 = TFile::Open("r0012_RawMUST2Histos.root")
+new TBrowser
+.q
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/RunToTreat.txt b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/RunToTreat.txt
new file mode 100644
index 0000000000000000000000000000000000000000..9c24dd33c012ad104f203bbc89f0ada9cac3f8ed
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/RunToTreat.txt
@@ -0,0 +1,4 @@
+TTreeName 
+	AutoTree
+RootFileName 
+  /data/mugastX/mugast/acquisition/root/run_0627.root 
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/TimeCalibrator.C b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/TimeCalibrator.C
new file mode 100644
index 0000000000000000000000000000000000000000..485707f949397cc44cbb16e2f4b0a69ba928584a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/TimeCalibrator.C
@@ -0,0 +1,331 @@
+#include<stdlib.h>
+#include<stdio.h>
+#include <time.h>
+#include <iostream>
+#include <fstream>
+#include <sstream>
+#include "TString.h"
+#include "TSpectrum.h"
+#include "TGraphErrors.h"
+#include "TCanvas.h"
+#include "TFile.h"
+#include "TTree.h"
+#include "TH1F.h"
+#include "TF1.h"
+
+using namespace std;
+// #define TELESCOPE_START 1	
+// #define TELESCOPE_END 4
+#define STRIP_START	1
+#define STRIP_END 	64
+
+
+Int_t CurrentTelescope = 0 ;
+Int_t CurrentStrip     = 0 ;
+
+
+void TimeGene(TH1F*, TString, Int_t, int);
+Int_t Finder(TH1F*, Double_t*, Double_t*, Int_t);
+TF1* Calib(TGraphErrors*,Double_t*, Double_t*, Int_t);
+Double_t pol2 (Double_t *,Double_t *);
+		
+ofstream peaks_file, calib_file, dispersion_file,calib_online_file; 
+	
+void TimeCalibrator(const char* frun = "run_XXXX", TString xy = "X",Int_t npeak= 32, int TELESCOPE_START=1, int TELESCOPE_END=4)//49
+{
+	// open the ROOT file to process
+	TString path  = "./Histograms/";
+	TString inFileName = frun;
+  TFile *inFile;
+
+  inFile = new TFile(path + inFileName +"_RawMUSETTHistos.root");
+
+  TString str;
+  TString str1;
+  TString str2;
+  TString strbuff;
+  TString strbuff2;
+  TString fname;
+  TString fname2;
+
+	TString hname;
+	
+	TCanvas *c1 = new TCanvas("c1","c1",1200,900);
+  c1->cd();
+	//c1->Divide(16,8);
+
+	for (int det = TELESCOPE_START-1; det < TELESCOPE_END ; det++){
+			ostringstream number ;
+			number << det+1  ;
+			CurrentTelescope = det+1 ;
+		if (xy == "X"){ 
+			//////// Input Files ///////////
+			str = "hMM"+number.str()+"_STRX_T";
+			/////// Output Files ///////////
+        str1 = "Cal_Str_X_T_MM"+number.str()+"_"+frun;
+    
+    }	 
+		
+    else if (xy == "Y"){ 	
+			//////// Input Files ///////////
+			str = "hMM"+number.str()+"_STRY_T";
+			/////// Output Files ///////////
+        str1 = "Cal_Str_Y_T_MM"+number.str()+"_"+frun;
+	}	 
+		else {cout<< "ERROR FOR X or Y PARAMETER"<< endl;}
+
+		fname =  "./Coeff/" + str1 + ".peak";
+		peaks_file.open(( (string)fname ).c_str());
+
+		fname2 = "./Coeff/"+ str1 + ".cal";
+		calib_file.open( ( (string)fname2 ).c_str() );
+		
+		for (Int_t j = STRIP_START-1; j < STRIP_END; j++)
+		{
+			///// Get the histogram of det i and strip j /////
+			CurrentStrip=j+1;
+			number.seekp(0);
+			number << j+1;
+			hname = str+number.str().c_str();
+			TH1F *hist = (TH1F*) inFile->Get(((string)hname).c_str());
+		
+			TimeGene(	hist,
+								xy,
+								npeak, det);
+		}
+	peaks_file.close();
+	calib_file.close();
+	dispersion_file.close();
+	
+	}
+	
+}
+
+
+
+void TimeGene(TH1F *hist, TString xy, Int_t npeak, int DetNbr)
+	{
+	
+  // hist->GetXaxis()->SetRangeUser(0,16384);
+//  hist->GetXaxis()->SetRangeUser(0,8150);
+  TH1F* hist_clone = (TH1F*)hist->Clone();
+  //hist_clone->GetXaxis()->SetRangeUser(0,8150);
+
+ // int Nbins1 = hist_clone->GetNbinsX();
+ // cout<<"Nbins before "<<Nbins1<<endl;
+	
+//	std::cout << "est" << std::endl;
+  hist_clone->Rebin(16);
+  int Nbins = hist_clone->GetNbinsX();
+ // cout<<"Nbins after "<<Nbins<<endl;
+  for(int i =0; i<Nbins; i++){
+      if(hist_clone->GetBinCenter(i) > 8150 ) hist_clone->SetBinContent(i,0);
+     // if (DetNbr!=10){//range change for the anular telescope 11
+      if(hist_clone->GetBinCenter(i) < 3800 ) hist_clone->SetBinContent(i,0);
+     // }
+     // else {
+      //   if(hist_clone->GetBinCenter(i) < 100 ) hist_clone->SetBinContent(i,0);
+     // }  
+ } 
+//  hist_clone->Smooth(10);
+
+  
+  double Ecut = 0;
+  int maxbin = hist_clone->GetMaximumBin(); 
+  while(hist_clone->GetBinContent(maxbin) != 0){
+      maxbin++;
+  }
+  double maxE =  hist_clone->GetBinCenter(maxbin);
+  //cout << "maxbin : "<< maxbin << endl;
+  //cout << "maxE : "<< maxE << endl;
+/*
+  Nbins = hist->GetNbinsX();
+  for(int i =0; i<Nbins; i++){
+      if(hist->GetBinCenter(i) < maxE ) hist->SetBinContent(i,0);
+      if(hist->GetBinCenter(i) > 8180 ) hist->SetBinContent(i,0);
+  } 
+  */
+	Double_t *mean = new Double_t[npeak];
+  Double_t *sigma = new Double_t[npeak];
+
+	Int_t nfound = Finder(hist_clone, mean, sigma, npeak);
+
+	if (xy == "X"){
+	  peaks_file << "MUSETT_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_T " << endl;
+	  for(int i=0; i<nfound; i++) {
+	    peaks_file << i<< "\t" << mean[i] <<  endl;
+	  }
+	}
+	else if (xy == "Y"){
+	  peaks_file << "MUSETT_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_T " << endl;
+	  for(int i=0; i<nfound; i++) {
+	    peaks_file << i<< "\t" << mean[i] <<  endl;
+	  }
+  }
+
+	if(nfound<npeak) cout << "On "<< hist->GetName() << endl ;
+	
+	// Fit npeak
+	TGraphErrors* gr_MM= new TGraphErrors(nfound);
+	TF1* f = Calib(gr_MM, mean, sigma, nfound);
+	
+	Double_t a = f->GetParameter(0);
+	Double_t b = f->GetParameter(1);
+	Double_t c = f->GetParameter(2);
+  
+    if (xy == "X")
+      calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_T " << a << " " << b << "	" << c <<endl ;
+
+    else if (xy == "Y")
+      calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_T " << a << " " << b << " " << c << endl ;
+
+
+
+}
+
+Int_t Finder(TH1F *h, Double_t *mean, Double_t *sigma, Int_t npeak)
+{
+
+	/////////////////////////////////////////////////
+	//																						 //
+	//	           	PEAK  FINDER									 //
+	//																					 	 //
+	/////////////////////////////////////////////////
+
+
+	for(int k=0; k<npeak; k++)
+			{
+		    	mean[k]=0;
+		        sigma[k]=0;
+			}
+
+	//Double_t resolsig=5;
+	Double_t resolsig=2;
+	Float_t  resolsigTSpec=1;
+	Double_t seuil=0.00001;
+	Int_t nmax=npeak+1;   // nombre de pics maximum a prendre
+
+	//////// Peak finder
+
+	TSpectrum *s = new TSpectrum(nmax,resolsigTSpec);
+
+	Int_t nfound = s->Search(h,resolsig,"new",seuil);
+ 	
+  Double_t *xpeaks = s->GetPositionX();
+  cout << "NUMBER OF PEAKS" << " " << nfound << endl;
+	/// remise dans l ordre du tableau ordre croissant
+
+	if(nfound>1)
+	{
+		for(Int_t p=0;p<nfound;p++)
+		{
+			for(Int_t i=0;i<nfound-1;i++)
+			{
+				if(xpeaks[i]>xpeaks[i+1])
+				{
+					Double_t varia=xpeaks[i];
+					xpeaks[i]=xpeaks[i+1];
+					xpeaks[i+1]=varia;
+					cout <<"XPeak: " << xpeaks[i]<<endl;
+				}	  
+			}
+		}
+	}
+
+	
+	Float_t linf=0, lsup=0; 
+	
+	// if(nfound == npeak || nfound > npeak)
+	// {
+  	//struct FitResult{
+	//	double mean;
+	//	double sigma;
+	//};
+	//map<int, FitResult> results;
+
+		for (Int_t p=0;p<nfound;p++)
+		{   
+		linf = xpeaks[p]-5;
+		lsup = xpeaks[p]+5;
+
+		TF1 *gauss = new TF1("gauss","gaus",linf,lsup);
+		h->Fit(gauss,"RQ");
+		mean[p] = gauss->GetParameter(1);
+		sigma[p]= gauss->GetParameter(2);
+		//if (gauss->GetParameter(2)<10) {
+		//	results[p].mean = gauss->GetParameter(1); 
+		//	results[p].sigma = gauss->GetParameter(2);
+		//}
+    // std::cout <<  gauss->GetParameter(1) << std::endl;
+    // std::cout <<  gauss->GetParameter(2)<< std::endl;
+		 }
+	// }
+	//nfound=results.size();
+	//int cnt = 0;
+	//for (const auto & result: results){
+	//	mean[cnt]=result.second.mean;
+	//	sigma[cnt]=result.second.sigma;
+	//	cnt++;	
+	//	cout <<"Mean: " << mean[cnt]<<endl;
+	//}
+	
+	
+
+
+	if(nfound<npeak)
+	{
+	 cout << "attention, nombre de pics ("<<nfound<<") different de "<<npeak<<" !!!" ;
+		/*
+		for (Int_t p=0;p<npeak;p++)
+		{
+			mean[p]=-1;
+			sigma[p]=-1;
+			//return false ;
+		}
+		*/
+	 
+	}
+	
+	return nfound ;
+}
+
+TF1* Calib(TGraphErrors *gr, Double_t *mean, Double_t *sigma, Int_t npeak)
+{  
+	Double_t energy[npeak];
+  //Double_t errors[npeak];
+  
+	
+	for(int i = 0 ; i < npeak ; i ++)
+	{
+	energy[i] = (npeak-i)*20;
+	}
+			
+	
+	for (Int_t p = 0; p < npeak; p++) {
+		gr->SetPoint(p, mean[p], energy[p]);
+		gr->SetPointError(p, 0, 0);
+		//gr->SetPointError(p, sigma[p], errors[p]);    
+	}
+	
+	TF1 *f1 = new TF1("f1",pol2,mean[0],mean[npeak-1], npeak);
+	//TF1 *f1 = new TF1("f1",Form("[0]*(x-%f)",Pedestal));
+	gr->Fit("f1", "Q" );
+	// TCanvas*c2 = new TCanvas();
+	// c2->cd();
+	gr->Draw("AP");
+  // gPad->WaitPrimitive();
+
+	//Double_t a = f1 -> GetParameter(0);
+	
+	return f1 ;
+}
+
+Double_t pol2 (Double_t *x,Double_t *par){
+
+	Double_t result = 0;
+	result = par[0]+ x[0]*par[1]+ x[0]*x[0]*par[2];
+	return result;
+}
+
+
+	
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/TimeCalibrator_C.d b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/TimeCalibrator_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..4978c4faf18f3c915c363eca8b7c6979be99f1b1
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/Time/TimeCalibrator_C.d
@@ -0,0 +1,100 @@
+
+# DO NOT DELETE
+
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSpectrum.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraphErrors.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraph.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCanvas.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TPad.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualPad.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttPad.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/GuiTypes.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Buttons.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttBBox2D.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttCanvas.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFormula.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/Types.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMethodCall.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1AbsComposition.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMath.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TError.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/ParamFunctor.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+TimeCalibrator_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..59533f1c2519edd5aac99e291c7b1ce2b6b0e9a5
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/cal_to_NPTOOL.py
@@ -0,0 +1,147 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 1
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calibE0.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calibE0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..5f77c3d04858dd864b1411813497cfbbcbbac345
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calibE0.cal1
@@ -0,0 +1,1024 @@
+-61662.3 7.52711 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61862.3 7.5515 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61786 7.54225 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61488.6 7.50587 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61896.8 7.55579 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61641.5 7.52453 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61399.4 7.49501 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61236.4 7.47509 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-60986.5 7.4446 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62681.3 7.65148 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62393.5 7.61631 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61925.3 7.55919 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62029.9 7.57195 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62417.6 7.61932 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61275.3 7.47982 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63058.3 7.69749 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62722.2 7.65646 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62134.9 7.58477 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62458.1 7.62423 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63902.7 7.80057 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62519.9 7.63181 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62297.5 7.60463 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62659.6 7.64878 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62852.3 7.67238 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62985.4 7.68854 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63073.7 7.69941 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62632 7.64548 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-63013.4 7.69203 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62579 7.63901 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63401.5 7.7394 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62630 7.64523 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56399 6.88462 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56789.2 6.93221 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55564.2 6.78269 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56333.4 6.87654 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-56040.6 6.84084 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+-10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55909.7 6.82487 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55658.4 6.79421 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56211.8 6.86172 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55874 6.82053 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56164.8 6.85597 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56307.5 6.87343 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56382 6.88247 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+-10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+-10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55911.5 6.82508 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57927.5 7.07116 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57924.8 7.07081 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57746 7.049 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57343.1 6.99988 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58172.2 7.10106 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57237.7 6.98697 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57876.3 7.06488 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57523.5 7.02188 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58500.7 7.14114 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57786.5 7.05393 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57300.4 6.99465 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57790.9 7.05448 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57203.4 6.9828 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57985 7.0782 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57888.7 7.06644 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58127.1 7.09555 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63452.4 7.74561 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63612.1 7.76511 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63338.7 7.73174 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64021.8 7.81515 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63197.4 7.71456 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63968.4 7.80864 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63853.8 7.79469 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63356.4 7.73397 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64117.7 7.82683 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63242.6 7.72007 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63972.5 7.80918 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63941.4 7.8053 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63651.8 7.77009 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63754.3 7.78255 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64292.8 7.84837 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64690.6 7.89693 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61215.8 7.47271 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60865.1 7.42995 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61147.3 7.46434 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61469.6 7.50369 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61379.1 7.49269 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61888.7 7.55484 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61403.2 7.49554 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62166.5 7.58877 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61896.4 7.55578 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61572.1 7.51618 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61720.5 7.53424 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62796.5 7.66557 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61868.1 7.55224 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60999.1 7.44621 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61368.2 7.49129 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62166.8 7.58877 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57169.7 6.97872 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57564 7.02681 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57724.2 7.04642 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57113.1 6.97176 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58126.5 7.0955 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57746.5 7.04909 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57665.4 7.03921 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57244.7 6.98784 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57357.8 7.00171 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57943.6 7.0732 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57279.1 6.99197 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57628.2 7.03471 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58567.7 7.1494 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58013.5 7.08178 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57681.5 7.04111 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57795.4 7.05508 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59002.3 7.20244 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59192.2 7.22562 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58512.8 7.14267 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58671.3 7.16207 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58171.6 7.10101 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58350.5 7.12281 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.4 7.11445 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58508.2 7.1421 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58511.7 7.14253 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58653.9 7.15989 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58550.4 7.14724 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59318.4 7.24097 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57853 7.06214 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58498.4 7.14087 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58426.4 7.13213 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59512.6 7.26467 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60443.5 -7.37839 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60908.5 -7.43514 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61060.2 -7.45367 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59984.4 -7.32237 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60129.5 -7.3401 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60783.1 -7.41989 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60431 -7.37691 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60140.7 -7.34142 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59998.4 -7.32403 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60395.7 -7.37254 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60028.3 -7.32774 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60887.8 -7.43267 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61066.5 -7.45441 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61164 -7.46632 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60739.8 -7.41458 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60443.5 -7.37838 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60544.4 -7.39071 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60303 -7.3612 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60143.3 -7.34174 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60328.6 -7.3644 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60395.9 -7.37256 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60276 -7.35798 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59684.2 -7.28572 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60187.9 -7.34719 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.4 -7.29698 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60128.6 -7.33997 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60450.5 -7.37922 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59890.5 -7.31089 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59647.3 -7.2812 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59834.9 -7.30412 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60999.1 -7.44624 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56552.5 -6.90341 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57074.5 -6.96718 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56536.5 -6.9015 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57036.3 -6.96248 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57405.1 -7.0075 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57259.2 -6.98972 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56419.6 -6.88718 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56461.1 -6.89226 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56951.6 -6.95213 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56800 -6.93367 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56600.5 -6.90927 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56511.5 -6.8984 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56870.5 -6.94221 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56993.6 -6.95727 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57679.7 -7.04103 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56560.6 -6.90438 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57546.6 -7.02477 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57035.8 -6.96245 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56800.6 -6.93377 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56505.8 -6.89773 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57161.4 -6.97779 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56855 -6.94036 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56619.7 -6.91168 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57621.8 -7.03399 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57359.7 -7.00197 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56825.9 -6.93676 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57031.5 -6.96191 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57239.3 -6.98735 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57254.8 -6.98918 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57074.4 -6.96716 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57574.5 -7.02822 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57912.4 -7.06943 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+61002.8 -7.44668 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61155.3 -7.4653 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61053.3 -7.45282 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61373.4 -7.4919 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60489.7 -7.38403 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61580.3 -7.51716 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60895.6 -7.4336 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60400.3 -7.3731 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61676.2 -7.52889 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61107.3 -7.45944 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61113.2 -7.46014 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61230.4 -7.47441 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60593.4 -7.39669 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61412.2 -7.49666 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61676.7 -7.52894 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61114.5 -7.46029 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62335.5 -7.60932 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61110.8 -7.45984 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61589.5 -7.51825 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62064.5 -7.57624 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61004.9 -7.44692 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60900.3 -7.43416 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61810.8 -7.54524 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61439.5 -7.49992 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61153 -7.46501 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61309.9 -7.48418 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61160.3 -7.46589 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61470.5 -7.50377 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61862.5 -7.55157 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61676 -7.52886 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62387.3 -7.61565 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60904.4 -7.43464 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56381.2 -6.88248 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56647.7 -6.91501 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56593.9 -6.90848 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56466.6 -6.8929 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56205.1 -6.86097 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56339.2 -6.87735 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56071.1 -6.84463 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56586.9 -6.90762 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56922.8 -6.94858 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56073.7 -6.84493 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57080.7 -6.96791 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57414.3 -7.00859 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56582.5 -6.9071 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56583.6 -6.90725 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56679.2 -6.91888 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56421.5 -6.8874 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56904.4 -6.94638 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57127.8 -6.97364 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56965.6 -6.9538 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56822.1 -6.93632 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57302 -6.99491 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.2 -6.90362 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56421.8 -6.88745 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56645.4 -6.91475 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57398.8 -7.00675 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57237.3 -6.98696 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56689 -6.92007 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56011.6 -6.83742 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56467.7 -6.89303 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55922.3 -6.8265 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56957.2 -6.95281 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56586.5 -6.90758 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62384.5 7.61517 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62210.4 7.59389 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62273.5 7.60161 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62019.1 7.5706 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61476.5 7.50432 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61597 7.51908 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62319.3 7.60717 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61416.3 7.49697 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61327.1 7.48611 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61486.5 7.50558 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61673.4 7.52832 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61732.6 7.53556 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61963.2 7.56376 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61418.2 7.49719 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61209 7.47165 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61987.6 7.56667 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62554.4 7.63592 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61756 7.53848 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62264.1 7.60048 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61953.7 7.56258 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62913.2 7.67967 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62120.9 7.583 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62709 7.65477 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62390 7.61587 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62229.7 7.59629 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61997.7 7.56794 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-62036.5 7.57262 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61752 7.53798 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61655.6 7.52623 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62767.5 7.66194 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61803 7.54422 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62761.8 7.66122 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58303.5 7.11703 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58372.5 7.12549 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58359.9 7.12397 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58262.2 7.11204 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58041 7.08509 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58261 7.11167 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58055.7 7.0867 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58647.4 7.15904 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58203.9 7.10488 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58893.9 7.18895 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58051.5 7.08632 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58539.4 7.14586 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58554.4 7.14758 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59335.9 7.24309 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58725.8 7.16875 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58465.7 7.13677 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.8 7.06394 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58529.8 7.14462 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-57972.8 7.07665 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57725.1 7.04637 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57946.6 7.07339 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57919.5 7.07013 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57971 7.07643 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57812.9 7.05708 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58059.5 7.08722 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57860.9 7.06295 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58481.2 7.13869 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57673.5 7.04005 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57733.9 7.04747 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58243 7.10961 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.2 7.09391 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58246.7 7.11007 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61009.3 7.44733 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61630.7 7.52317 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61471.8 7.50372 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61716.9 7.53361 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61893.5 7.55524 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.6 7.48633 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61623.4 7.52221 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61911.8 7.55752 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61279.1 7.48026 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62438.1 7.62175 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61937.8 7.56062 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62078.7 7.57786 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61496.4 7.50682 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61721.2 7.53417 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61321.1 7.48534 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61930.9 7.55971 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63425.9 7.7423 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63726 7.77898 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.8 7.83822 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63931 7.80396 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64114.7 7.8264 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63881.4 7.7979 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64089.1 7.82321 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64226 7.83998 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64162.8 7.83225 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64227.3 7.84014 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63324.3 7.72992 0.00 !Mu1ChX91ERaw[C.o2At2Ch11]
+-63377.9 7.73646 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64592.4 7.88475 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64051.2 7.81864 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63785.3 7.78625 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63425.1 7.74221 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56277.1 6.86963 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56696.4 6.92087 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56524.2 6.89973 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56421.9 6.88734 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56516.9 6.89896 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-56987.1 6.95627 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57341.9 6.99957 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56590.4 6.90785 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56842.5 6.93859 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57029.9 6.96151 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57840.1 7.06034 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57754.1 7.04987 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57718.4 7.04556 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57495 7.01832 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57673.7 7.0401 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-58035.2 7.08421 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57254.3 6.98888 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57309.6 6.99565 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56813.7 6.93513 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57684.3 7.04141 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57273.6 6.99128 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57263.3 6.99002 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56331.2 6.87626 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58331 7.12035 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57448.3 7.0126 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57763.7 7.05109 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57724.2 7.04628 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57458.3 7.01385 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57586.5 7.02947 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57671.5 7.03982 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57076.6 6.9672 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57818.9 7.05784 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59628.2 -7.27891 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60484.2 -7.3834 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59719.3 -7.29006 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59358 -7.24601 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60209.4 -7.34991 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60023.9 -7.32724 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59427.4 -7.25442 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59479.8 -7.26081 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.6 -7.25995 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59661.5 -7.28303 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59523 -7.2661 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59520.7 -7.26582 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60207.7 -7.3497 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59281.6 -7.23662 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59499.5 -7.26329 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59822.2 -7.30262 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62231 -7.59672 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62517.6 -7.63166 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62462.5 -7.62493 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62047 -7.57417 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62207.3 -7.59375 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62362.9 -7.61277 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62017.5 -7.57064 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61713.9 -7.53355 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61449.1 -7.50123 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62086.1 -7.57898 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62077.7 -7.57796 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62287.6 -7.60362 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62027.9 -7.5719 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61668.6 -7.52799 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61804.8 -7.54468 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115.7 -6.85022 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56255.7 -6.86728 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55634.9 -6.79153 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55640.9 -6.79227 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55384.3 -6.76092 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56420.4 -6.88745 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55380.9 -6.76051 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55934.8 -6.82817 0.00 !Mu1ChY40ERaw[C.o3At3Ch8]
+56036.5 -6.84053 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56149.2 -6.85434 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55509.9 -6.77625 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56637.3 -6.9139 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55637.9 -6.79188 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55730.3 -6.80315 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55751.6 -6.80582 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55760.9 -6.80693 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.7 -6.9819 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56616.7 -6.91132 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56565.1 -6.90504 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56007.5 -6.83694 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56838.9 -6.93846 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56277 -6.86982 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56475.8 -6.89415 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56394.9 -6.88425 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57286.1 -6.99307 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57107.7 -6.97128 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56704.7 -6.92209 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57329.2 -6.99832 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57398.8 -7.00677 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57025.8 -6.96125 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56179.4 -6.85794 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57294.5 -6.99407 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61036 -7.45079 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61615.2 -7.52147 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61327.7 -7.48646 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61616.9 -7.52169 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61289.5 -7.48175 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60072.3 -7.33313 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60461.8 -7.38072 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61147.5 -7.46439 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60324.6 -7.36394 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61243.3 -7.47609 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60892.2 -7.43321 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60362.6 -7.36861 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60563.4 -7.39312 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60969.5 -7.44272 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60632 -7.40146 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61354.5 -7.48966 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61129 -7.46218 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61142.4 -7.46376 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61098.2 -7.45836 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60505 -7.38602 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60475.6 -7.38236 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61198.3 -7.47058 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60653.8 -7.40421 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60610.3 -7.39887 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61084.6 -7.45673 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61281.6 -7.48082 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60759.5 -7.41709 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60908.7 -7.43532 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60520.1 -7.38782 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61330.5 -7.48678 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61609.9 -7.52084 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60752.2 -7.41622 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55866.2 -6.81972 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55510.1 -6.77629 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55739.1 -6.80422 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55602.7 -6.78757 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55779.5 -6.80916 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55452.6 -6.76931 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55433.8 -6.76695 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56175.8 -6.85753 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55295 -6.75003 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55267.6 -6.74664 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55913.4 -6.82548 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55219 -6.74076 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55914.7 -6.82563 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56088.3 -6.84683 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56128.7 -6.85177 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.7 -6.9068 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54791.9 -6.68861 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55573.5 -6.78397 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55177.3 -6.73564 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.9 -6.722 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55271.1 -6.74706 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55426.4 -6.76607 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55308.9 -6.7517 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55560.5 -6.78242 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55828.4 -6.8151 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55461.9 -6.77042 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.4 -6.69404 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55154.2 -6.73277 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55218.5 -6.74067 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55198.9 -6.73821 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55347.2 -6.75638 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56270.5 -6.86904 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62771.8 7.66248 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62536.2 7.63367 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62923.2 7.68092 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62099.2 7.5803 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62071.6 7.577 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62762.5 7.66131 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62536.6 7.63372 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62863.4 7.6736 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62977.6 7.68755 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62169.2 7.58889 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62486.2 7.62758 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62494 7.62855 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62591.4 7.6404 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62596.5 7.64104 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62693.3 7.65283 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63431.9 7.74304 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62275.5 7.60186 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61847 7.54956 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61648.9 7.52542 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61472.2 7.5038 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61487.7 7.50573 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62323.6 7.60772 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62160.6 7.58783 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61801.5 7.54404 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61589.4 7.51813 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61837.9 7.54843 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61997.2 7.56788 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61886.9 7.55441 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61669.6 7.52787 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61317.6 7.48493 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62385.4 7.6153 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61544.8 7.51271 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59005.1 7.20263 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58125.4 7.0952 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58621 7.15577 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58420.8 7.13128 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58182.1 7.10215 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58179.5 7.10183 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58382.7 7.12665 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57951.6 7.074 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57619.4 7.03346 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58602.8 7.15349 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58763.6 7.17317 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58295.3 7.11601 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58611.5 7.15458 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58569.5 7.14945 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58368.6 7.12489 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58524.7 7.144 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57829.7 7.05919 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57177.7 6.97958 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58151 7.0984 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57925 7.07083 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57600.2 7.03119 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57219.8 6.9847 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57855.4 7.06228 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57682.2 7.04116 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57912.6 7.06929 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57598.9 7.03102 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57919.6 7.07016 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.5 6.9577 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57498.2 7.01871 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56729.1 6.92483 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57500.6 7.01901 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57910.6 7.06904 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63311 7.72824 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64991.8 7.93347 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-63994.5 7.8117 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63750.3 7.78186 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64408.5 7.86228 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63629 7.76702 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63438.8 7.74388 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63358.3 7.73399 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63144.6 7.70793 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63812.1 7.7894 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63662.4 7.77117 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63876.9 7.79733 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63771.1 7.78444 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63652.1 7.7699 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63600.3 7.76358 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63256.4 7.72158 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63333.7 7.73107 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63150 7.70859 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63204.5 7.71524 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63982.1 7.81015 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63771.3 7.78446 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63682.7 7.7737 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63921.1 7.80269 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63090.3 7.7013 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63548.7 7.75733 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63345.7 7.73257 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63537.7 7.75593 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63267.1 7.72292 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64614.3 7.88733 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63737 7.78019 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63627.5 7.76682 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59011.6 7.20345 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58536.3 7.14543 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58294.5 7.11592 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58764.5 7.17328 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59388.2 7.24938 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59353.9 7.24523 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58868.9 7.18606 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59020.4 7.20454 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59051.2 7.20827 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59067.7 7.21031 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58780.6 7.17527 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59011.8 7.20348 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58685.6 7.16369 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60313.6 7.36243 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58947.7 7.1956 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58640.6 7.15819 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59256.4 7.23333 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59391.4 7.24979 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59741.5 7.29254 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59153 7.2207 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59659.3 7.28255 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60043.5 7.32941 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59492.9 7.26218 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59355.9 7.2455 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60079 7.3337 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58759.7 7.17268 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59106.3 7.21501 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59356.4 7.24556 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58905.4 7.19045 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58909 7.19091 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59139.8 7.21905 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59244.4 7.23184 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63180.3 -7.71254 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63958.5 -7.80757 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62563.9 -7.63734 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63393.8 -7.73864 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62965.3 -7.6863 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62695.2 -7.65332 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63071 -7.6992 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62684.7 -7.65205 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62805.2 -7.66674 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63405.9 -7.74008 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+63006 -7.69129 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62613.8 -7.64344 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62135.8 -7.58506 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62797.8 -7.66584 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+63003.9 -7.69104 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63451.5 -7.74566 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61680.4 -7.52939 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60963.7 -7.44202 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60731.3 -7.4136 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62044.4 -7.57386 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.9 -7.46121 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60932 -7.4381 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62091.8 -7.57965 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61042.5 -7.45157 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61080.2 -7.45622 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61569 -7.51583 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61088.9 -7.45724 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61401.8 -7.49545 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61590.8 -7.51854 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61456.7 -7.50214 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61348.2 -7.48891 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61814.6 -7.54586 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56310.4 -6.87387 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56475.6 -6.89413 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56843.7 -6.93897 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56709.9 -6.9227 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+57006.5 -6.95894 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56922.7 -6.94871 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56395.9 -6.88437 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56437.5 -6.88946 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56168.1 -6.85657 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58137.4 -7.09691 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56752.1 -6.92786 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56268.3 -6.86879 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57248.3 -6.98843 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57237.7 -6.98715 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57062.5 -6.96574 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56700.2 -6.92152 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57609.4 -7.03252 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57045.1 -6.96368 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57893.4 -7.06716 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57432.1 -7.01085 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57327.3 -6.9981 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58593.6 -7.15267 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57713.2 -7.04516 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57801 -7.05589 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57750.1 -7.0497 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57564.6 -7.02705 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57513.2 -7.02079 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58298.6 -7.11669 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57883.6 -7.066 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57333.9 -6.99889 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57877.7 -7.06529 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58222.3 -7.10732 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59352.4 -7.24534 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59653 -7.28202 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59466.7 -7.25926 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60421 -7.37573 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59563.3 -7.27104 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59865.2 -7.30789 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59568.1 -7.27161 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59903.1 -7.31254 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59874.2 -7.30895 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59565.9 -7.27135 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59951.4 -7.31844 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60102.6 -7.33689 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59329 -7.24242 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59973.3 -7.32106 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59369.2 -7.24734 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60205.5 -7.34945 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60559.1 -7.39262 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61223.9 -7.47379 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60555.5 -7.39217 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61267.8 -7.47916 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61183.2 -7.46879 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60877.4 -7.43143 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60964.7 -7.44213 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61316.7 -7.48517 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60889.6 -7.43289 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60834.9 -7.42623 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61475.4 -7.50452 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60713.8 -7.41149 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61139.9 -7.46349 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60586.2 -7.39585 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61091.2 -7.45753 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61463 -7.50289 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56883.7 -6.94393 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55958.3 -6.83096 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56259.7 -6.86775 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56620.9 -6.91184 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56390.1 -6.88368 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56741.9 -6.92663 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55881.7 -6.82158 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57242.5 -6.98773 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56047.6 -6.84185 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56706.4 -6.92227 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56618.3 -6.91153 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57516.3 -7.02116 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57052.7 -6.96458 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56701.3 -6.92167 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57023.2 -6.96095 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56155.3 -6.85506 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56480.1 -6.89468 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57291 -6.99365 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56601.1 -6.90948 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56864.7 -6.94167 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56504.8 -6.89772 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56531 -6.90085 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56803.1 -6.93407 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56744.6 -6.92696 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56339.6 -6.87753 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57094.7 -6.96973 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57471.8 -7.01574 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56243.7 -6.86585 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56920.2 -6.94841 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56357.9 -6.87972 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56171.4 -6.85698 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62432 7.62115 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61898.1 7.55599 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62261.8 7.60035 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62377.7 7.61452 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61987.1 7.56678 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61925.3 7.55922 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62100.7 7.58066 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61621.8 7.5222 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61764.3 7.53956 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61918.3 7.55834 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61881.5 7.55388 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62903 7.67858 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61674.1 7.52859 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61812.4 7.54541 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61555.6 7.51408 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62627.4 7.64492 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63656.5 7.77047 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63108 7.70354 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62943.4 7.68346 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62837.7 7.67058 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62676.4 7.65089 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.8 7.70503 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63798 7.78783 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63791 7.78695 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62795 7.6654 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63502.6 7.75172 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63532.1 7.75542 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63309.9 7.72829 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63637.8 7.76831 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63587.2 7.76214 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64531.7 7.87739 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63742.8 7.78111 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59430.3 7.25494 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59220.2 7.22924 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58174.6 7.10163 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58373.6 7.12581 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58848.1 7.18369 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-59012.9 7.20387 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59307.2 7.23977 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58677.9 7.16294 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59283.1 7.23677 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58956.4 7.1969 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-59043.5 7.20751 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59047.9 7.20805 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59414.1 7.25268 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58832.8 7.18171 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59184.6 7.22469 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57410.4 7.00817 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57223.7 6.98537 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56941.7 6.95094 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57306.3 6.99545 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56939.2 6.95063 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57390.5 7.00573 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56638.3 6.91393 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57358.5 7.00183 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57684.4 7.04165 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56591.3 6.9082 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57508 7.02016 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57136.1 6.97475 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56380.4 6.88251 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56917.4 6.9481 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56824.5 6.93679 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56577 6.90664 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64140 7.82956 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63839.3 7.79281 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63564.4 7.75927 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63770.4 7.78438 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63671.6 7.77235 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63272.3 7.72359 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64307 7.84993 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62530.8 7.63314 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62672.9 7.65044 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63019 7.69272 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63152.8 7.70897 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63441 7.74419 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64109.3 7.82574 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62453.5 7.62365 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62622.2 7.64425 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63017.2 7.69251 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62453.4 7.62363 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62780.3 7.66354 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62670.1 7.65009 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62554.7 7.63598 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62062.4 7.57587 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62422.6 7.61994 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62402.7 7.61746 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.8 7.58526 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62351.6 7.61123 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62791 7.66488 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62302.7 7.60527 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62078.1 7.57785 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62829.3 7.66952 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.5 7.6367 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62144 7.5859 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62353.9 7.61152 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56131.1 6.85191 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55920.2 6.82616 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55178.7 6.73562 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55783.6 6.8095 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55958 6.83076 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55940.2 6.82857 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55976 6.83293 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55255.5 6.74498 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55479.7 6.77237 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-56040.3 6.84079 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55791.2 6.81044 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55701.6 6.79948 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56738.3 6.92598 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56293.9 6.87171 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55819.1 6.81378 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55694.2 6.79856 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57554.1 7.02556 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56976.8 6.95514 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57518.4 7.02123 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56980.7 6.95562 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58026.2 7.08323 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57191.1 6.98127 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57432 7.01071 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56290.9 6.87137 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56748.2 6.92722 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57901.7 7.06808 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57512.9 7.02056 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57112.4 6.9717 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57653.3 7.03769 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56762.7 6.92904 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57841.9 7.06073 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56524.8 6.89995 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60194.7 -7.34802 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987.9 -7.20075 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60132.2 -7.34041 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59977.5 -7.32152 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59787.4 -7.2983 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59893.4 -7.31122 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59798.6 -7.29963 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60251.3 -7.3549 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60589.5 -7.39622 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60436.6 -7.37756 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60189.7 -7.3474 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59826.4 -7.3031 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59687.2 -7.28606 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59622.1 -7.27818 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60574.8 -7.39447 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59719.2 -7.29002 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62963.1 -7.68601 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63186.9 -7.71331 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62262.3 -7.60044 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62806 -7.6668 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63246.8 -7.72062 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63550.3 -7.75759 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+63016.8 -7.69256 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62986.6 -7.68882 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63522.2 -7.75424 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63478.7 -7.7489 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62643.1 -7.64692 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63429.9 -7.74292 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62483.7 -7.62745 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62960.7 -7.68572 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63085.3 -7.7009 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62969.4 -7.68675 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84715 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56228.6 -6.86391 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55834.6 -6.81583 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55713 -6.80096 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55757 -6.80633 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56228 -6.86384 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55925.9 -6.82695 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55539.7 -6.77979 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55412.1 -6.76422 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185 -6.85859 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55981.8 -6.83375 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55370.8 -6.75918 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55748.9 -6.80537 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55612.3 -6.78871 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55926.3 -6.82699 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55801.2 -6.81172 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56670.8 -6.9179 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56949.5 -6.9519 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57147.1 -6.97597 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56960.4 -6.95318 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56493.9 -6.89629 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56963.2 -6.95364 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56581.6 -6.90701 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57050.7 -6.96421 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57076.9 -6.96747 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56623.8 -6.91216 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57493.2 -7.01827 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57089.4 -6.96896 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57586.3 -7.02963 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57044.7 -6.96349 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56777.7 -6.93089 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57421.6 -7.00961 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59437.6 -7.25562 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59994 -7.32351 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59523.9 -7.2662 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59337.1 -7.24336 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59498.6 -7.26303 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58818.6 -7.18002 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59332.2 -7.24276 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+60018.7 -7.32659 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60180.5 -7.3463 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59480.7 -7.26089 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59527.7 -7.26664 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59635.1 -7.27972 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59581.2 -7.27315 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59444.7 -7.25647 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59048.4 -7.20811 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59989.5 -7.32298 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62855.4 -7.67285 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62750.4 -7.66003 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62532.7 -7.63346 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62151.3 -7.58691 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.6 -7.57075 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62710.2 -7.65509 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62271.6 -7.60155 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62960 -7.68565 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62677.8 -7.65121 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62626.1 -7.64489 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61878.3 -7.55359 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61999.2 -7.56832 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61924.7 -7.55927 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+61995.6 -7.56788 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61960.5 -7.56357 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61833.6 -7.54812 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56731.4 -6.92523 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56909.9 -6.94702 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56318.3 -6.87484 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55946.5 -6.8294 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56299.8 -6.87252 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56328.7 -6.87609 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55986.5 -6.8343 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55996.3 -6.83546 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55858.1 -6.81861 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56336.4 -6.877 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56504.4 -6.89753 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56280.4 -6.87019 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55801.7 -6.81176 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55903.8 -6.82419 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56672.2 -6.91805 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56668.9 -6.91765 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57102.2 -6.97047 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57033.7 -6.96222 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57102 -6.97059 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+57015.2 -6.95994 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57666.6 -7.03944 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57327.3 -6.99806 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56838.8 -6.9384 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57642.3 -7.0364 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57472.4 -7.01575 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57009.2 -6.95917 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57427.6 -7.01028 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57105.1 -6.97094 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57606 -7.03198 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56852.7 -6.94013 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57287.8 -6.99311 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57526.7 -7.02236 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calibT0.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calibT0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..99605ef63058dd281004c7ed8c90ec17435b8b21
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calibT0.cal1
@@ -0,0 +1,1023 @@
+946.164 -0.114176 0.00 !Mu0ChX1TRaw[Co1At1Ch1]
+956.811 -0.115529 0.00 !Mu0ChX2TRaw[Co1At1Ch2]
+957.988 -0.115657 0.00 !Mu0ChX3TRaw[Co1At1Ch3]
+972.139 -0.117409 0.00 !Mu0ChX4TRaw[Co1At1Ch4]
+971.761 -0.117367 0.00 !Mu0ChX5TRaw[Co1At1Ch5]
+971.702 -0.117353 0.00 !Mu0ChX6TRaw[Co1At1Ch6]
+976.911 -0.117969 0.00 !Mu0ChX7TRaw[Co1At1Ch7]
+979.143 -0.118246 0.00 !Mu0ChX8TRaw[Co1At1Ch8]
+977.915 -0.118065 0.00 !Mu0ChX9TRaw[Co1At1Ch9]
+981.976 -0.118546 0.00 !Mu0ChX10TRaw[Co1At1Ch10]
+986.577 -0.119138 0.00 !Mu0ChX11TRaw[Co1At1Ch11]
+986.184 -0.119075 0.00 !Mu0ChX12TRaw[Co1At1Ch12]
+993.563 -0.119996 0.00 !Mu0ChX13TRaw[Co1At1Ch13]
+978.874 -0.118174 0.00 !Mu0ChX14TRaw[Co1At1Ch14]
+989.894 -0.119531 0.00 !Mu0ChX15TRaw[Co1At1Ch15]
+1318.57 -0.118448 0.00 !Mu0ChX16TRaw[Co1At1Ch16]
+955.564 -0.115275 0.00 !Mu0ChX17TRaw[Co1At2Ch1]
+965.774 -0.116527 0.00 !Mu0ChX18TRaw[Co1At2Ch2]
+978.184 -0.118044 0.00 !Mu0ChX19TRaw[Co1At2Ch3]
+978.854 -0.118125 0.00 !Mu0ChX20TRaw[Co1At2Ch4]
+987.988 -0.119233 0.00 !Mu0ChX21TRaw[Co1At2Ch5]
+982.353 -0.118555 0.00 !Mu0ChX22TRaw[Co1At2Ch6]
+992.928 -0.119845 0.00 !Mu0ChX23TRaw[Co1At2Ch7]
+994.329 -0.120005 0.00 !Mu0ChX24TRaw[Co1At2Ch8]
+989.504 -0.119427 0.00 !Mu0ChX25TRaw[Co1At2Ch9]
+1000.62 -0.120777 0.00 !Mu0ChX26TRaw[Co1At2Ch10]
+1002.92 -0.121057 0.00 !Mu0ChX27TRaw[Co1At2Ch11]
+1006.98 -0.121545 0.00 !Mu0ChX28TRaw[Co1At2Ch12]
+1002.57 -0.121021 0.00 !Mu0ChX29TRaw[Co1At2Ch13]
+1001.43 -0.120851 0.00 !Mu0ChX30TRaw[Co1At2Ch14]
+997.945 -0.12045 0.00 !Mu0ChX31TRaw[Co1At2Ch15]
+993.524 -0.119947 0.00 !Mu0ChX32TRaw[Co1At2Ch16]
+872.545 -0.105192 0.00 !Mu0ChX33TRaw[Co1At3Ch1]
+870.474 -0.104955 0.00 !Mu0ChX34TRaw[Co1At3Ch2]
+890.439 -0.107397 0.00 !Mu0ChX35TRaw[Co1At3Ch3]
+879.216 -0.106033 0.00 !Mu0ChX36TRaw[Co1At3Ch4]
+881.009 -0.106227 0.00 !Mu0ChX37TRaw[Co1At3Ch5]
+895.366 -0.108005 0.00 !Mu0ChX38TRaw[Co1At3Ch6]
+897.01 -0.108195 0.00 !Mu0ChX39TRaw[Co1At3Ch7]
+895.47 -0.107979 0.00 !Mu0ChX40TRaw[Co1At3Ch8]
+898.037 -0.108302 0.00 !Mu0ChX41TRaw[Co1At3Ch9]
+898.361 -0.108334 0.00 !Mu0ChX42TRaw[Co1At3Ch10]
+897.507 -0.108243 0.00 !Mu0ChX43TRaw[Co1At3Ch11]
+904.455 -0.109095 0.00 !Mu0ChX44TRaw[Co1At3Ch12]
+899.781 -0.108505 0.00 !Mu0ChX45TRaw[Co1At3Ch13]
+894.363 -0.107877 0.00 !Mu0ChX46TRaw[Co1At3Ch14]
+896.817 -0.108187 0.00 !Mu0ChX47TRaw[Co1At3Ch15]
+930.792 -0.10826 0.00 !Mu0ChX48TRaw[Co1At3Ch16]
+884.648 -0.106556 0.00 !Mu0ChX49TRaw[Co1At4Ch1]
+887.836 -0.106942 0.00 !Mu0ChX50TRaw[Co1At4Ch2]
+893.25 -0.107622 0.00 !Mu0ChX51TRaw[Co1At4Ch3]
+901.75 -0.109464 0.00 !Mu0ChX52TRaw[Co1At4Ch4]
+907.099 -0.109295 0.00 !Mu0ChX53TRaw[Co1At4Ch5]
+909.979 -0.109652 0.00 !Mu0ChX54TRaw[Co1At4Ch6]
+912.526 -0.109955 0.00 !Mu0ChX55TRaw[Co1At4Ch7]
+916.597 -0.110458 0.00 !Mu0ChX56TRaw[Co1At4Ch8]
+925.24 -0.111499 0.00 !Mu0ChX57TRaw[Co1At4Ch9]
+916.715 -0.110456 0.00 !Mu0ChX58TRaw[Co1At4Ch10]
+924.251 -0.111378 0.00 !Mu0ChX59TRaw[Co1At4Ch11]
+928.786 -0.111943 0.00 !Mu0ChX60TRaw[Co1At4Ch12]
+935.878 -0.112807 0.00 !Mu0ChX61TRaw[Co1At4Ch13]
+938.667 -0.11314 0.00 !Mu0ChX62TRaw[Co1At4Ch14]
+940.288 -0.113338 0.00 !Mu0ChX63TRaw[Co1At4Ch15]
+929.111 -0.111982 0.00 !Mu0ChX64TRaw[Co1At4Ch16]
+957.51 -0.115846 0.00 !Mu0ChX65TRaw[Co2At1Ch1]
+962.646 -0.11646 0.00 !Mu0ChX66TRaw[Co2At1Ch2]
+972.344 -0.117644 0.00 !Mu0ChX67TRaw[Co2At1Ch3]
+973.464 -0.117791 0.00 !Mu0ChX68TRaw[Co2At1Ch4]
+976.904 -0.118174 0.00 !Mu0ChX69TRaw[Co2At1Ch5]
+989.493 -0.119717 0.00 !Mu0ChX70TRaw[Co2At1Ch6]
+993.895 -0.120284 0.00 !Mu0ChX71TRaw[Co2At1Ch7]
+995.117 -0.120426 0.00 !Mu0ChX72TRaw[Co2At1Ch8]
+1006.3 -0.121763 0.00 !Mu0ChX73TRaw[Co2At1Ch9]
+987.403 -0.119445 0.00 !Mu0ChX74TRaw[Co2At1Ch10]
+1004.54 -0.121535 0.00 !Mu0ChX75TRaw[Co2At1Ch11]
+995.118 -0.120381 0.00 !Mu0ChX76TRaw[Co2At1Ch12]
+1002.39 -0.121262 0.00 !Mu0ChX77TRaw[Co2At1Ch13]
+1006.49 -0.121766 0.00 !Mu0ChX78TRaw[Co2At1Ch14]
+997.059 -0.120615 0.00 !Mu0ChX79TRaw[Co2At1Ch15]
+1377.74 -0.120952 0.00 !Mu0ChX80TRaw[Co2At1Ch16]
+923.114 -0.111515 0.00 !Mu0ChX81TRaw[Co2At2Ch1]
+932.866 -0.112746 0.00 !Mu0ChX82TRaw[Co2At2Ch2]
+924.928 -0.111774 0.00 !Mu0ChX83TRaw[Co2At2Ch3]
+937.265 -0.113281 0.00 !Mu0ChX84TRaw[Co2At2Ch4]
+930.752 -0.112468 0.00 !Mu0ChX85TRaw[Co2At2Ch5]
+941.628 -0.113819 0.00 !Mu0ChX86TRaw[Co2At2Ch6]
+949.998 -0.114818 0.00 !Mu0ChX87TRaw[Co2At2Ch7]
+943.027 -0.113978 0.00 !Mu0ChX88TRaw[Co2At2Ch8]
+949.721 -0.114813 0.00 !Mu0ChX89TRaw[Co2At2Ch9]
+957.242 -0.115728 0.00 !Mu0ChX90TRaw[Co2At2Ch10]
+964.815 -0.11664 0.00 !Mu0ChX91TRaw[Co2At2Ch11]
+961.466 -0.11625 0.00 !Mu0ChX92TRaw[Co2At2Ch12]
+961.749 -0.116299 0.00 !Mu0ChX93TRaw[Co2At2Ch13]
+960.655 -0.116152 0.00 !Mu0ChX94TRaw[Co2At2Ch14]
+974.674 -0.117868 0.00 !Mu0ChX95TRaw[Co2At2Ch15]
+992.705 -0.116744 0.00 !Mu0ChX96TRaw[Co2At2Ch16]
+868.269 -0.105013 0.00 !Mu0ChX97TRaw[Co2At3Ch1]
+877.648 -0.106169 0.00 !Mu0ChX98TRaw[Co2At3Ch2]
+878.241 -0.106212 0.00 !Mu0ChX99TRaw[Co2At3Ch3]
+883.994 -0.106905 0.00 !Mu0ChX100TRaw[Co2At3Ch4]
+893.321 -0.108043 0.00 !Mu0ChX101TRaw[Co2At3Ch5]
+900.56 -0.108935 0.00 !Mu0ChX102TRaw[Co2At3Ch6]
+896.766 -0.108442 0.00 !Mu0ChX103TRaw[Co2At3Ch7]
+894.903 -0.108194 0.00 !Mu0ChX104TRaw[Co2At3Ch8]
+904.239 -0.109336 0.00 !Mu0ChX105TRaw[Co2At3Ch9]
+902.018 -0.109053 0.00 !Mu0ChX106TRaw[Co2At3Ch10]
+907.673 -0.109771 0.00 !Mu0ChX107TRaw[Co2At3Ch11]
+904.96 -0.109449 0.00 !Mu0ChX108TRaw[Co2At3Ch12]
+902.795 -0.109128 0.00 !Mu0ChX109TRaw[Co2At3Ch13]
+906.335 -0.109641 0.00 !Mu0ChX110TRaw[Co2At3Ch14]
+903.029 -0.109177 0.00 !Mu0ChX111TRaw[Co2At3Ch15]
+912.908 -0.109478 0.00 !Mu0ChX112TRaw[Co2At3Ch16]
+888.694 -0.107364 0.00 !Mu0ChX113TRaw[Co2At4Ch1]
+891.736 -0.107748 0.00 !Mu0ChX114TRaw[Co2At4Ch2]
+891.957 -0.107782 0.00 !Mu0ChX115TRaw[Co2At4Ch3]
+901.87 -0.109007 0.00 !Mu0ChX116TRaw[Co2At4Ch4]
+905.48 -0.109423 0.00 !Mu0ChX117TRaw[Co2At4Ch5]
+899.196 -0.108648 0.00 !Mu0ChX118TRaw[Co2At4Ch6]
+913.782 -0.110413 0.00 !Mu0ChX119TRaw[Co2At4Ch7]
+914.779 -0.110579 0.00 !Mu0ChX120TRaw[Co2At4Ch8]
+909.004 -0.109898 0.00 !Mu0ChX121TRaw[Co2At4Ch9]
+914.282 -0.1105 0.00 !Mu0ChX122TRaw[Co2At4Ch10]
+922.657 -0.111529 0.00 !Mu0ChX123TRaw[Co2At4Ch11]
+914.822 -0.110604 0.00 !Mu0ChX124TRaw[Co2At4Ch12]
+917.977 -0.110972 0.00 !Mu0ChX125TRaw[Co2At4Ch13]
+919.687 -0.11118 0.00 !Mu0ChX126TRaw[Co2At4Ch14]
+914.922 -0.110613 0.00 !Mu0ChX127TRaw[Co2At4Ch15]
+925.329 -0.111151 0.00 !Mu0ChX128TRaw[Co2At4Ch16]
+942.169 -0.114033 0.00 !Mu0ChY2TRaw[Co3At1Ch2]
+941.094 -0.113921 0.00 !Mu0ChY3TRaw[Co3At1Ch3]
+959.045 -0.116104 0.00 !Mu0ChY4TRaw[Co3At1Ch4]
+954.629 -0.115563 0.00 !Mu0ChY5TRaw[Co3At1Ch5]
+970.443 -0.117481 0.00 !Mu0ChY6TRaw[Co3At1Ch6]
+969.234 -0.117339 0.00 !Mu0ChY7TRaw[Co3At1Ch7]
+966.53 -0.117018 0.00 !Mu0ChY8TRaw[Co3At1Ch8]
+973.409 -0.117842 0.00 !Mu0ChY9TRaw[Co3At1Ch9]
+968.923 -0.117316 0.00 !Mu0ChY10TRaw[Co3At1Ch10]
+971.661 -0.117632 0.00 !Mu0ChY11TRaw[Co3At1Ch11]
+977.841 -0.118398 0.00 !Mu0ChY12TRaw[Co3At1Ch12]
+975.821 -0.11814 0.00 !Mu0ChY13TRaw[Co3At1Ch13]
+971.638 -0.117633 0.00 !Mu0ChY14TRaw[Co3At1Ch14]
+974.225 -0.117944 0.00 !Mu0ChY15TRaw[Co3At1Ch15]
+980.805 -0.118761 0.00 !Mu0ChY16TRaw[Co3At1Ch16]
+935.973 -0.113175 0.00 !Mu0ChY17TRaw[Co3At2Ch1]
+944.972 -0.114309 0.00 !Mu0ChY18TRaw[Co3At2Ch2]
+953.592 -0.115351 0.00 !Mu0ChY19TRaw[Co3At2Ch3]
+945.492 -0.11436 0.00 !Mu0ChY20TRaw[Co3At2Ch4]
+948.066 -0.114686 0.00 !Mu0ChY21TRaw[Co3At2Ch5]
+951.558 -0.115103 0.00 !Mu0ChY22TRaw[Co3At2Ch6]
+957.545 -0.115832 0.00 !Mu0ChY23TRaw[Co3At2Ch7]
+957.576 -0.115841 0.00 !Mu0ChY24TRaw[Co3At2Ch8]
+962.251 -0.116398 0.00 !Mu0ChY25TRaw[Co3At2Ch9]
+960.479 -0.116195 0.00 !Mu0ChY26TRaw[Co3At2Ch10]
+957.007 -0.115516 0.00 !Mu0ChY27TRaw[Co3At2Ch11]
+971.646 -0.117562 0.00 !Mu0ChY28TRaw[Co3At2Ch12]
+974.064 -0.117834 0.00 !Mu0ChY29TRaw[Co3At2Ch13]
+968.974 -0.11722 0.00 !Mu0ChY30TRaw[Co3At2Ch14]
+971.944 -0.11759 0.00 !Mu0ChY31TRaw[Co3At2Ch15]
+966.713 -0.116928 0.00 !Mu0ChY32TRaw[Co3At2Ch16]
+869.43 -0.105131 0.00 !Mu0ChY33TRaw[Co3At3Ch1]
+868.989 -0.105113 0.00 !Mu0ChY34TRaw[Co3At3Ch2]
+886.133 -0.107174 0.00 !Mu0ChY35TRaw[Co3At3Ch3]
+876.002 -0.105955 0.00 !Mu0ChY36TRaw[Co3At3Ch4]
+887.653 -0.107363 0.00 !Mu0ChY37TRaw[Co3At3Ch5]
+886.897 -0.107278 0.00 !Mu0ChY38TRaw[Co3At3Ch6]
+887.559 -0.107347 0.00 !Mu0ChY39TRaw[Co3At3Ch7]
+905.525 -0.109567 0.00 !Mu0ChY40TRaw[Co3At3Ch8]
+903.288 -0.109268 0.00 !Mu0ChY41TRaw[Co3At3Ch9]
+901.488 -0.109045 0.00 !Mu0ChY42TRaw[Co3At3Ch10]
+900.453 -0.108924 0.00 !Mu0ChY43TRaw[Co3At3Ch11]
+911.154 -0.110196 0.00 !Mu0ChY44TRaw[Co3At3Ch12]
+908.4 -0.109895 0.00 !Mu0ChY45TRaw[Co3At3Ch13]
+903.164 -0.10924 0.00 !Mu0ChY46TRaw[Co3At3Ch14]
+913.419 -0.110513 0.00 !Mu0ChY47TRaw[Co3At3Ch15]
+901.371 -0.109056 0.00 !Mu0ChY48TRaw[Co3At3Ch16]
+855.809 -0.103507 0.00 !Mu0ChY49TRaw[Co3At4Ch1]
+866.963 -0.104888 0.00 !Mu0ChY50TRaw[Co3At4Ch2]
+862.301 -0.104347 0.00 !Mu0ChY51TRaw[Co3At4Ch3]
+879.214 -0.106391 0.00 !Mu0ChY52TRaw[Co3At4Ch4]
+881.851 -0.106718 0.00 !Mu0ChY53TRaw[Co3At4Ch5]
+883.115 -0.106878 0.00 !Mu0ChY54TRaw[Co3At4Ch6]
+879.659 -0.106441 0.00 !Mu0ChY55TRaw[Co3At4Ch7]
+887.765 -0.107426 0.00 !Mu0ChY56TRaw[Co3At4Ch8]
+889.179 -0.107608 0.00 !Mu0ChY57TRaw[Co3At4Ch9]
+893.434 -0.108136 0.00 !Mu0ChY58TRaw[Co3At4Ch10]
+900.612 -0.109012 0.00 !Mu0ChY59TRaw[Co3At4Ch11]
+899.41 -0.108611 0.00 !Mu0ChY60TRaw[Co3At4Ch12]
+898.225 -0.108719 0.00 !Mu0ChY61TRaw[Co3At4Ch13]
+905.378 -0.109581 0.00 !Mu0ChY62TRaw[Co3At4Ch14]
+899.576 -0.108895 0.00 !Mu0ChY63TRaw[Co3At4Ch15]
+904.856 -0.109543 0.00 !Mu0ChY64TRaw[Co3At4Ch16]
+964.166 -0.116469 0.00 !Mu0ChY65TRaw[Co4At1Ch1]
+970.821 -0.117302 0.00 !Mu0ChY66TRaw[Co4At1Ch2]
+976.54 -0.118012 0.00 !Mu0ChY67TRaw[Co4At1Ch3]
+976.814 -0.118028 0.00 !Mu0ChY68TRaw[Co4At1Ch4]
+979.621 -0.118378 0.00 !Mu0ChY69TRaw[Co4At1Ch5]
+983.271 -0.118825 0.00 !Mu0ChY70TRaw[Co4At1Ch6]
+982.977 -0.118781 0.00 !Mu0ChY71TRaw[Co4At1Ch7]
+986.021 -0.119156 0.00 !Mu0ChY72TRaw[Co4At1Ch8]
+989.88 -0.119628 0.00 !Mu0ChY73TRaw[Co4At1Ch9]
+981.368 -0.118591 0.00 !Mu0ChY74TRaw[Co4At1Ch10]
+990.1 -0.119656 0.00 !Mu0ChY75TRaw[Co4At1Ch11]
+1000.52 -0.120924 0.00 !Mu0ChY76TRaw[Co4At1Ch12]
+995.667 -0.120327 0.00 !Mu0ChY77TRaw[Co4At1Ch13]
+997.754 -0.120579 0.00 !Mu0ChY78TRaw[Co4At1Ch14]
+994.951 -0.120247 0.00 !Mu0ChY79TRaw[Co4At1Ch15]
+1001.99 -0.121097 0.00 !Mu0ChY80TRaw[Co4At1Ch16]
+970.583 -0.117145 0.00 !Mu0ChY81TRaw[Co4At2Ch1]
+986.462 -0.119118 0.00 !Mu0ChY82TRaw[Co4At2Ch2]
+981.625 -0.118534 0.00 !Mu0ChY83TRaw[Co4At2Ch3]
+996.206 -0.12031 0.00 !Mu0ChY84TRaw[Co4At2Ch4]
+1000.06 -0.120777 0.00 !Mu0ChY85TRaw[Co4At2Ch5]
+1002.53 -0.121085 0.00 !Mu0ChY86TRaw[Co4At2Ch6]
+998.357 -0.120569 0.00 !Mu0ChY87TRaw[Co4At2Ch7]
+1008.76 -0.121839 0.00 !Mu0ChY88TRaw[Co4At2Ch8]
+1004.65 -0.121339 0.00 !Mu0ChY89TRaw[Co4At2Ch9]
+1015 -0.122592 0.00 !Mu0ChY90TRaw[Co4At2Ch10]
+1025.62 -0.123897 0.00 !Mu0ChY91TRaw[Co4At2Ch11]
+1025.41 -0.123866 0.00 !Mu0ChY92TRaw[Co4At2Ch12]
+1020.27 -0.123256 0.00 !Mu0ChY93TRaw[Co4At2Ch13]
+1024.71 -0.123786 0.00 !Mu0ChY94TRaw[Co4At2Ch14]
+1021.51 -0.123408 0.00 !Mu0ChY95TRaw[Co4At2Ch15]
+1016.94 -0.122879 0.00 !Mu0ChY96TRaw[Co4At2Ch16]
+882.97 -0.106544 0.00 !Mu0ChY97TRaw[Co4At3Ch1]
+879.326 -0.106139 0.00 !Mu0ChY98TRaw[Co4At3Ch2]
+878.449 -0.106028 0.00 !Mu0ChY99TRaw[Co4At3Ch3]
+894.979 -0.108041 0.00 !Mu0ChY100TRaw[Co4At3Ch4]
+892.203 -0.107707 0.00 !Mu0ChY101TRaw[Co4At3Ch5]
+891.015 -0.10757 0.00 !Mu0ChY102TRaw[Co4At3Ch6]
+895.424 -0.108105 0.00 !Mu0ChY103TRaw[Co4At3Ch7]
+907.578 -0.10959 0.00 !Mu0ChY104TRaw[Co4At3Ch8]
+902.147 -0.108916 0.00 !Mu0ChY105TRaw[Co4At3Ch9]
+915.536 -0.110544 0.00 !Mu0ChY106TRaw[Co4At3Ch10]
+910.897 -0.109981 0.00 !Mu0ChY107TRaw[Co4At3Ch11]
+915.092 -0.11051 0.00 !Mu0ChY108TRaw[Co4At3Ch12]
+914.664 -0.110421 0.00 !Mu0ChY109TRaw[Co4At3Ch13]
+910.113 -0.109894 0.00 !Mu0ChY110TRaw[Co4At3Ch14]
+915.675 -0.110572 0.00 !Mu0ChY111TRaw[Co4At3Ch15]
+917.59 -0.110803 0.00 !Mu0ChY112TRaw[Co4At3Ch16]
+892.441 -0.107535 0.00 !Mu0ChY113TRaw[Co4At4Ch1]
+899.913 -0.108466 0.00 !Mu0ChY114TRaw[Co4At4Ch2]
+899.438 -0.108438 0.00 !Mu0ChY115TRaw[Co4At4Ch3]
+905.439 -0.109158 0.00 !Mu0ChY116TRaw[Co4At4Ch4]
+917.108 -0.110566 0.00 !Mu0ChY117TRaw[Co4At4Ch5]
+910.331 -0.109757 0.00 !Mu0ChY118TRaw[Co4At4Ch6]
+930.135 -0.112167 0.00 !Mu0ChY119TRaw[Co4At4Ch7]
+921.847 -0.111146 0.00 !Mu0ChY120TRaw[Co4At4Ch8]
+932.043 -0.112407 0.00 !Mu0ChY121TRaw[Co4At4Ch9]
+931.497 -0.112337 0.00 !Mu0ChY122TRaw[Co4At4Ch10]
+933.275 -0.112539 0.00 !Mu0ChY123TRaw[Co4At4Ch11]
+936.749 -0.112978 0.00 !Mu0ChY124TRaw[Co4At4Ch12]
+931.392 -0.112316 0.00 !Mu0ChY125TRaw[Co4At4Ch13]
+930.352 -0.112192 0.00 !Mu0ChY126TRaw[Co4At4Ch14]
+927.302 -0.111821 0.00 !Mu0ChY127TRaw[Co4At4Ch15]
+930.24 -0.112162 0.00 !Mu0ChY128TRaw[Co4At4Ch16]
+926.786 -0.11232 0.00 !Mu1ChX1TRaw[Co1At1Ch1]
+940.575 -0.114015 0.00 !Mu1ChX2TRaw[Co1At1Ch2]
+943.089 -0.114341 0.00 !Mu1ChX3TRaw[Co1At1Ch3]
+954.304 -0.115712 0.00 !Mu1ChX4TRaw[Co1At1Ch4]
+954.653 -0.115744 0.00 !Mu1ChX5TRaw[Co1At1Ch5]
+956.573 -0.115962 0.00 !Mu1ChX6TRaw[Co1At1Ch6]
+970.061 -0.117589 0.00 !Mu1ChX7TRaw[Co1At1Ch7]
+965.116 -0.116998 0.00 !Mu1ChX8TRaw[Co1At1Ch8]
+969.325 -0.117498 0.00 !Mu1ChX9TRaw[Co1At1Ch9]
+978.231 -0.118577 0.00 !Mu1ChX10TRaw[Co1At1Ch10]
+974.593 -0.118143 0.00 !Mu1ChX11TRaw[Co1At1Ch11]
+974.146 -0.118071 0.00 !Mu1ChX12TRaw[Co1At1Ch12]
+986.191 -0.11954 0.00 !Mu1ChX13TRaw[Co1At1Ch13]
+986.678 -0.119597 0.00 !Mu1ChX14TRaw[Co1At1Ch14]
+983.727 -0.119236 0.00 !Mu1ChX15TRaw[Co1At1Ch15]
+1371.19 -0.119179 0.00 !Mu1ChX16TRaw[Co1At1Ch16]
+922.557 -0.111777 0.00 !Mu1ChX17TRaw[Co1At2Ch1]
+945.525 -0.114612 0.00 !Mu1ChX18TRaw[Co1At2Ch2]
+946.378 -0.114738 0.00 !Mu1ChX19TRaw[Co1At2Ch3]
+943.86 -0.114439 0.00 !Mu1ChX20TRaw[Co1At2Ch4]
+952.199 -0.115464 0.00 !Mu1ChX21TRaw[Co1At2Ch5]
+965.45 -0.117052 0.00 !Mu1ChX22TRaw[Co1At2Ch6]
+954.947 -0.115762 0.00 !Mu1ChX23TRaw[Co1At2Ch7]
+971.26 -0.117739 0.00 !Mu1ChX24TRaw[Co1At2Ch8]
+969.364 -0.117531 0.00 !Mu1ChX25TRaw[Co1At2Ch9]
+972.531 -0.117923 0.00 !Mu1ChX26TRaw[Co1At2Ch10]
+971.171 -0.117737 0.00 !Mu1ChX27TRaw[Co1At2Ch11]
+974.954 -0.11821 0.00 !Mu1ChX28TRaw[Co1At2Ch12]
+978.834 -0.118677 0.00 !Mu1ChX29TRaw[Co1At2Ch13]
+975.807 -0.118324 0.00 !Mu1ChX30TRaw[Co1At2Ch14]
+974.804 -0.118198 0.00 !Mu1ChX31TRaw[Co1At2Ch15]
+984.936 -0.119148 0.00 !Mu1ChX32TRaw[Co1At2Ch16]
+875.904 -0.106165 0.00 !Mu1ChX33TRaw[Co1At3Ch1]
+875.79 -0.10618 0.00 !Mu1ChX34TRaw[Co1At3Ch2]
+891.706 -0.108064 0.00 !Mu1ChX35TRaw[Co1At3Ch3]
+873.845 -0.105941 0.00 !Mu1ChX36TRaw[Co1At3Ch4]
+891.762 -0.108105 0.00 !Mu1ChX37TRaw[Co1At3Ch5]
+897.589 -0.108823 0.00 !Mu1ChX38TRaw[Co1At3Ch6]
+889.745 -0.107861 0.00 !Mu1ChX39TRaw[Co1At3Ch7]
+894.521 -0.10842 0.00 !Mu1ChX40TRaw[Co1At3Ch8]
+897.332 -0.108779 0.00 !Mu1ChX41TRaw[Co1At3Ch9]
+897.319 -0.108754 0.00 !Mu1ChX42TRaw[Co1At3Ch10]
+905.732 -0.109783 0.00 !Mu1ChX43TRaw[Co1At3Ch11]
+897.833 -0.108855 0.00 !Mu1ChX44TRaw[Co1At3Ch12]
+907.458 -0.110019 0.00 !Mu1ChX45TRaw[Co1At3Ch13]
+905.696 -0.109854 0.00 !Mu1ChX46TRaw[Co1At3Ch14]
+903.207 -0.109528 0.00 !Mu1ChX47TRaw[Co1At3Ch15]
+918.195 -0.110055 0.00 !Mu1ChX48TRaw[Co1At3Ch16]
+865.632 -0.104838 0.00 !Mu1ChX49TRaw[Co1At4Ch1]
+871.03 -0.105455 0.00 !Mu1ChX50TRaw[Co1At4Ch2]
+883.706 -0.107015 0.00 !Mu1ChX51TRaw[Co1At4Ch3]
+886.118 -0.107338 0.00 !Mu1ChX52TRaw[Co1At4Ch4]
+888.977 -0.107685 0.00 !Mu1ChX53TRaw[Co1At4Ch5]
+889.176 -0.107699 0.00 !Mu1ChX54TRaw[Co1At4Ch6]
+893.053 -0.10819 0.00 !Mu1ChX55TRaw[Co1At4Ch7]
+898.958 -0.108878 0.00 !Mu1ChX56TRaw[Co1At4Ch8]
+905.343 -0.1097 0.00 !Mu1ChX57TRaw[Co1At4Ch9]
+901.014 -0.10916 0.00 !Mu1ChX58TRaw[Co1At4Ch10]
+909.801 -0.110244 0.00 !Mu1ChX59TRaw[Co1At4Ch11]
+902.356 -0.109308 0.00 !Mu1ChX60TRaw[Co1At4Ch12]
+915.181 -0.110894 0.00 !Mu1ChX61TRaw[Co1At4Ch13]
+906.646 -0.109867 0.00 !Mu1ChX62TRaw[Co1At4Ch14]
+906.177 -0.109791 0.00 !Mu1ChX63TRaw[Co1At4Ch15]
+917.322 -0.110777 0.00 !Mu1ChX64TRaw[Co1At4Ch16]
+947.375 -0.114723 0.00 !Mu1ChX65TRaw[Co2At1Ch1]
+949.155 -0.114949 0.00 !Mu1ChX66TRaw[Co2At1Ch2]
+962.658 -0.116629 0.00 !Mu1ChX67TRaw[Co2At1Ch3]
+962.29 -0.116557 0.00 !Mu1ChX68TRaw[Co2At1Ch4]
+964.501 -0.116827 0.00 !Mu1ChX69TRaw[Co2At1Ch5]
+972.559 -0.117811 0.00 !Mu1ChX70TRaw[Co2At1Ch6]
+972.248 -0.117758 0.00 !Mu1ChX71TRaw[Co2At1Ch7]
+977.48 -0.118392 0.00 !Mu1ChX72TRaw[Co2At1Ch8]
+974.838 -0.118063 0.00 !Mu1ChX73TRaw[Co2At1Ch9]
+989.581 -0.119853 0.00 !Mu1ChX74TRaw[Co2At1Ch10]
+985.59 -0.119377 0.00 !Mu1ChX75TRaw[Co2At1Ch11]
+983.734 -0.119141 0.00 !Mu1ChX76TRaw[Co2At1Ch12]
+990.699 -0.119982 0.00 !Mu1ChX77TRaw[Co2At1Ch13]
+992.465 -0.120199 0.00 !Mu1ChX78TRaw[Co2At1Ch14]
+992.485 -0.1202 0.00 !Mu1ChX79TRaw[Co2At1Ch15]
+1375.52 -0.120722 0.00 !Mu1ChX80TRaw[Co2At1Ch16]
+972.687 -0.117775 0.00 !Mu1ChX81TRaw[Co2At2Ch1]
+974.84 -0.118024 0.00 !Mu1ChX82TRaw[Co2At2Ch2]
+979.911 -0.118652 0.00 !Mu1ChX83TRaw[Co2At2Ch3]
+993.406 -0.120307 0.00 !Mu1ChX84TRaw[Co2At2Ch4]
+992.814 -0.120215 0.00 !Mu1ChX85TRaw[Co2At2Ch5]
+1002.31 -0.121389 0.00 !Mu1ChX86TRaw[Co2At2Ch6]
+1003.74 -0.121554 0.00 !Mu1ChX87TRaw[Co2At2Ch7]
+995.588 -0.12057 0.00 !Mu1ChX88TRaw[Co2At2Ch8]
+1010.12 -0.122345 0.00 !Mu1ChX89TRaw[Co2At2Ch9]
+1012.32 -0.12261 0.00 !Mu1ChX90TRaw[Co2At2Ch10]
+1007.94 -0.122082 0.00 !Mu1ChX91TRaw[Co2At2Ch11]
+1014.03 -0.12282 0.00 !Mu1ChX92TRaw[Co2At2Ch12]
+1013.77 -0.12279 0.00 !Mu1ChX93TRaw[Co2At2Ch13]
+1016.53 -0.123127 0.00 !Mu1ChX94TRaw[Co2At2Ch14]
+1016.3 -0.123096 0.00 !Mu1ChX95TRaw[Co2At2Ch15]
+1004.26 -0.12163 0.00 !Mu1ChX96TRaw[Co2At2Ch16]
+888.673 -0.107613 0.00 !Mu1ChX97TRaw[Co2At3Ch1]
+886.825 -0.107373 0.00 !Mu1ChX98TRaw[Co2At3Ch2]
+890.552 -0.107838 0.00 !Mu1ChX99TRaw[Co2At3Ch3]
+901.931 -0.109224 0.00 !Mu1ChX100TRaw[Co2At3Ch4]
+901.707 -0.1092 0.00 !Mu1ChX101TRaw[Co2At3Ch5]
+906.676 -0.109791 0.00 !Mu1ChX102TRaw[Co2At3Ch6]
+902.249 -0.109268 0.00 !Mu1ChX103TRaw[Co2At3Ch7]
+917.913 -0.111151 0.00 !Mu1ChX104TRaw[Co2At3Ch8]
+919.118 -0.11128 0.00 !Mu1ChX105TRaw[Co2At3Ch9]
+920.502 -0.111467 0.00 !Mu1ChX106TRaw[Co2At3Ch10]
+925.286 -0.112035 0.00 !Mu1ChX107TRaw[Co2At3Ch11]
+920.839 -0.111519 0.00 !Mu1ChX108TRaw[Co2At3Ch12]
+921.752 -0.111616 0.00 !Mu1ChX109TRaw[Co2At3Ch13]
+913.537 -0.110627 0.00 !Mu1ChX110TRaw[Co2At3Ch14]
+916.058 -0.110941 0.00 !Mu1ChX111TRaw[Co2At3Ch15]
+924.322 -0.11176 0.00 !Mu1ChX112TRaw[Co2At3Ch16]
+897.027 -0.108476 0.00 !Mu1ChX113TRaw[Co2At4Ch1]
+897.77 -0.108567 0.00 !Mu1ChX114TRaw[Co2At4Ch2]
+905.06 -0.10946 0.00 !Mu1ChX115TRaw[Co2At4Ch3]
+910.605 -0.110136 0.00 !Mu1ChX116TRaw[Co2At4Ch4]
+925.57 -0.111977 0.00 !Mu1ChX117TRaw[Co2At4Ch5]
+920.161 -0.111304 0.00 !Mu1ChX118TRaw[Co2At4Ch6]
+932.296 -0.112781 0.00 !Mu1ChX119TRaw[Co2At4Ch7]
+914.819 -0.110659 0.00 !Mu1ChX120TRaw[Co2At4Ch8]
+920.284 -0.111325 0.00 !Mu1ChX121TRaw[Co2At4Ch9]
+927.772 -0.112226 0.00 !Mu1ChX122TRaw[Co2At4Ch10]
+928.866 -0.11236 0.00 !Mu1ChX123TRaw[Co2At4Ch11]
+924.041 -0.111775 0.00 !Mu1ChX124TRaw[Co2At4Ch12]
+921.484 -0.111483 0.00 !Mu1ChX125TRaw[Co2At4Ch13]
+927.438 -0.112193 0.00 !Mu1ChX126TRaw[Co2At4Ch14]
+930.757 -0.112614 0.00 !Mu1ChX127TRaw[Co2At4Ch15]
+924.698 -0.111864 0.00 !Mu1ChX128TRaw[Co2At4Ch16]
+930.899 -0.11282 0.00 !Mu1ChY1TRaw[Co3At1Ch1]
+932.297 -0.113022 0.00 !Mu1ChY2TRaw[Co3At1Ch2]
+943.292 -0.114361 0.00 !Mu1ChY3TRaw[Co3At1Ch3]
+947.201 -0.114834 0.00 !Mu1ChY4TRaw[Co3At1Ch4]
+949.524 -0.115122 0.00 !Mu1ChY5TRaw[Co3At1Ch5]
+952.95 -0.115533 0.00 !Mu1ChY6TRaw[Co3At1Ch6]
+956.311 -0.115938 0.00 !Mu1ChY7TRaw[Co3At1Ch7]
+946.369 -0.114726 0.00 !Mu1ChY8TRaw[Co3At1Ch8]
+953.576 -0.11562 0.00 !Mu1ChY9TRaw[Co3At1Ch9]
+964.215 -0.116854 0.00 !Mu1ChY10TRaw[Co3At1Ch10]
+959.98 -0.116368 0.00 !Mu1ChY11TRaw[Co3At1Ch11]
+967.734 -0.117327 0.00 !Mu1ChY12TRaw[Co3At1Ch12]
+967.914 -0.117358 0.00 !Mu1ChY13TRaw[Co3At1Ch13]
+963.677 -0.116827 0.00 !Mu1ChY14TRaw[Co3At1Ch14]
+965.026 -0.116981 0.00 !Mu1ChY15TRaw[Co3At1Ch15]
+962.695 -0.116717 0.00 !Mu1ChY16TRaw[Co3At1Ch16]
+964.683 -0.116883 0.00 !Mu1ChY17TRaw[Co3At2Ch1]
+966.649 -0.117128 0.00 !Mu1ChY18TRaw[Co3At2Ch2]
+971.034 -0.117665 0.00 !Mu1ChY19TRaw[Co3At2Ch3]
+971.558 -0.117743 0.00 !Mu1ChY20TRaw[Co3At2Ch4]
+983.103 -0.119146 0.00 !Mu1ChY21TRaw[Co3At2Ch5]
+979.702 -0.118747 0.00 !Mu1ChY22TRaw[Co3At2Ch6]
+450 -0.119189 0.00 !Mu1ChY23TRaw[Co3At2Ch7]
+989.487 -0.119964 0.00 !Mu1ChY24TRaw[Co3At2Ch8]
+991.153 -0.120158 0.00 !Mu1ChY25TRaw[Co3At2Ch9]
+991.247 -0.120176 0.00 !Mu1ChY26TRaw[Co3At2Ch10]
+995.752 -0.120728 0.00 !Mu1ChY27TRaw[Co3At2Ch11]
+990.621 -0.120113 0.00 !Mu1ChY28TRaw[Co3At2Ch12]
+992.588 -0.120339 0.00 !Mu1ChY29TRaw[Co3At2Ch13]
+983.94 -0.119308 0.00 !Mu1ChY30TRaw[Co3At2Ch14]
+990.472 -0.120108 0.00 !Mu1ChY31TRaw[Co3At2Ch15]
+985.366 -0.119515 0.00 !Mu1ChY32TRaw[Co3At2Ch16]
+879.895 -0.106691 0.00 !Mu1ChY33TRaw[Co3At3Ch1]
+885.732 -0.10745 0.00 !Mu1ChY34TRaw[Co3At3Ch2]
+880.947 -0.106848 0.00 !Mu1ChY35TRaw[Co3At3Ch3]
+890.881 -0.108037 0.00 !Mu1ChY36TRaw[Co3At3Ch4]
+8.50641e+11 -1.03827e+08 0.00 !Mu1ChY37TRaw[Co3At3Ch5]
+901.269 -0.109433 0.00 !Mu1ChY38TRaw[Co3At3Ch6]
+900.483 -0.110242 0.00 !Mu1ChY39TRaw[Co3At3Ch7]
+902.133 -0.10944 0.00 !Mu1ChY40TRaw[Co3At3Ch8]
+890.343 -0.107957 0.00 !Mu1ChY41TRaw[Co3At3Ch9]
+902.898 -0.109521 0.00 !Mu1ChY42TRaw[Co3At3Ch10]
+895.657 -0.108623 0.00 !Mu1ChY43TRaw[Co3At3Ch11]
+904.61 -0.10969 0.00 !Mu1ChY44TRaw[Co3At3Ch12]
+907.072 -0.109989 0.00 !Mu1ChY45TRaw[Co3At3Ch13]
+901.222 -0.109312 0.00 !Mu1ChY46TRaw[Co3At3Ch14]
+905.951 -0.109844 0.00 !Mu1ChY47TRaw[Co3At3Ch15]
+901.159 -0.109257 0.00 !Mu1ChY48TRaw[Co3At3Ch16]
+883.344 -0.10696 0.00 !Mu1ChY49TRaw[Co3At4Ch1]
+882.465 -0.106852 0.00 !Mu1ChY50TRaw[Co3At4Ch2]
+878.872 -0.106436 0.00 !Mu1ChY51TRaw[Co3At4Ch3]
+892.099 -0.108049 0.00 !Mu1ChY52TRaw[Co3At4Ch4]
+897.834 -0.108781 0.00 !Mu1ChY53TRaw[Co3At4Ch5]
+899.02 -0.108923 0.00 !Mu1ChY54TRaw[Co3At4Ch6]
+898.979 -0.108922 0.00 !Mu1ChY55TRaw[Co3At4Ch7]
+899.225 -0.108949 0.00 !Mu1ChY56TRaw[Co3At4Ch8]
+911.018 -0.110395 0.00 !Mu1ChY57TRaw[Co3At4Ch9]
+910.225 -0.110294 0.00 !Mu1ChY58TRaw[Co3At4Ch10]
+905.692 -0.109746 0.00 !Mu1ChY59TRaw[Co3At4Ch11]
+908.504 -0.109802 0.00 !Mu1ChY60TRaw[Co3At4Ch12]
+905.665 -0.109742 0.00 !Mu1ChY61TRaw[Co3At4Ch13]
+913.658 -0.11072 0.00 !Mu1ChY62TRaw[Co3At4Ch14]
+915.004 -0.110879 0.00 !Mu1ChY63TRaw[Co3At4Ch15]
+915.999 -0.111037 0.00 !Mu1ChY64TRaw[Co3At4Ch16]
+945.876 -0.115194 0.00 !Mu1ChY65TRaw[Co4At1Ch1]
+952.653 -0.116053 0.00 !Mu1ChY66TRaw[Co4At1Ch2]
+958.599 -0.116788 0.00 !Mu1ChY67TRaw[Co4At1Ch3]
+962.073 -0.117211 0.00 !Mu1ChY68TRaw[Co4At1Ch4]
+965.512 -0.117617 0.00 !Mu1ChY69TRaw[Co4At1Ch5]
+973.646 -0.118609 0.00 !Mu1ChY70TRaw[Co4At1Ch6]
+969.091 -0.118053 0.00 !Mu1ChY71TRaw[Co4At1Ch7]
+977.205 -0.119038 0.00 !Mu1ChY72TRaw[Co4At1Ch8]
+978.244 -0.119163 0.00 !Mu1ChY73TRaw[Co4At1Ch9]
+981.509 -0.119552 0.00 !Mu1ChY74TRaw[Co4At1Ch10]
+983.33 -0.119777 0.00 !Mu1ChY75TRaw[Co4At1Ch11]
+980.28 -0.119391 0.00 !Mu1ChY76TRaw[Co4At1Ch12]
+987.378 -0.11981 0.00 !Mu1ChY77TRaw[Co4At1Ch13]
+981.221 -0.119505 0.00 !Mu1ChY78TRaw[Co4At1Ch14]
+982.019 -0.119601 0.00 !Mu1ChY79TRaw[Co4At1Ch15]
+986.869 -0.120194 0.00 !Mu1ChY80TRaw[Co4At1Ch16]
+942.041 -0.114646 0.00 !Mu1ChY81TRaw[Co4At2Ch1]
+950.256 -0.115676 0.00 !Mu1ChY82TRaw[Co4At2Ch2]
+949.146 -0.115551 0.00 !Mu1ChY83TRaw[Co4At2Ch3]
+956.132 -0.116392 0.00 !Mu1ChY84TRaw[Co4At2Ch4]
+955.603 -0.116344 0.00 !Mu1ChY85TRaw[Co4At2Ch5]
+965.862 -0.117589 0.00 !Mu1ChY86TRaw[Co4At2Ch6]
+966.696 -0.117699 0.00 !Mu1ChY87TRaw[Co4At2Ch7]
+973.856 -0.118567 0.00 !Mu1ChY88TRaw[Co4At2Ch8]
+974.942 -0.118705 0.00 !Mu1ChY89TRaw[Co4At2Ch9]
+967.58 -0.117807 0.00 !Mu1ChY90TRaw[Co4At2Ch10]
+972.217 -0.118376 0.00 !Mu1ChY91TRaw[Co4At2Ch11]
+980.142 -0.119333 0.00 !Mu1ChY92TRaw[Co4At2Ch12]
+980.758 -0.119429 0.00 !Mu1ChY93TRaw[Co4At2Ch13]
+973.754 -0.118576 0.00 !Mu1ChY94TRaw[Co4At2Ch14]
+977.548 -0.119031 0.00 !Mu1ChY95TRaw[Co4At2Ch15]
+988.795 -0.120471 0.00 !Mu1ChY96TRaw[Co4At2Ch16]
+871.404 -0.106136 0.00 !Mu1ChY97TRaw[Co4At3Ch1]
+870.084 -0.106 0.00 !Mu1ChY98TRaw[Co4At3Ch2]
+874.611 -0.106555 0.00 !Mu1ChY99TRaw[Co4At3Ch3]
+888.655 -0.108263 0.00 !Mu1ChY100TRaw[Co4At3Ch4]
+886.461 -0.10801 0.00 !Mu1ChY101TRaw[Co4At3Ch5]
+878.586 -0.107044 0.00 !Mu1ChY102TRaw[Co4At3Ch6]
+886.442 -0.108005 0.00 !Mu1ChY103TRaw[Co4At3Ch7]
+889.81 -0.108406 0.00 !Mu1ChY104TRaw[Co4At3Ch8]
+900.116 -0.109653 0.00 !Mu1ChY105TRaw[Co4At3Ch9]
+896.798 -0.10926 0.00 !Mu1ChY106TRaw[Co4At3Ch10]
+900.214 -0.10967 0.00 !Mu1ChY107TRaw[Co4At3Ch11]
+890.896 -0.108536 0.00 !Mu1ChY108TRaw[Co4At3Ch12]
+898.103 -0.109417 0.00 !Mu1ChY109TRaw[Co4At3Ch13]
+905.123 -0.110268 0.00 !Mu1ChY110TRaw[Co4At3Ch14]
+895.488 -0.109108 0.00 !Mu1ChY111TRaw[Co4At3Ch15]
+901.504 -0.109824 0.00 !Mu1ChY112TRaw[Co4At3Ch16]
+857.767 -0.104291 0.00 !Mu1ChY113TRaw[Co4At4Ch1]
+851.391 -0.103549 0.00 !Mu1ChY114TRaw[Co4At4Ch2]
+861.589 -0.104798 0.00 !Mu1ChY115TRaw[Co4At4Ch3]
+856.553 -0.10419 0.00 !Mu1ChY116TRaw[Co4At4Ch4]
+865 -0.105221 0.00 !Mu1ChY117TRaw[Co4At4Ch5]
+874.383 -0.106354 0.00 !Mu1ChY118TRaw[Co4At4Ch6]
+878.744 -0.1069 0.00 !Mu1ChY119TRaw[Co4At4Ch7]
+873.451 -0.106252 0.00 !Mu1ChY120TRaw[Co4At4Ch8]
+890.883 -0.108379 0.00 !Mu1ChY121TRaw[Co4At4Ch9]
+891.802 -0.108492 0.00 !Mu1ChY122TRaw[Co4At4Ch10]
+889.789 -0.108225 0.00 !Mu1ChY123TRaw[Co4At4Ch11]
+888.888 -0.108132 0.00 !Mu1ChY124TRaw[Co4At4Ch12]
+891.161 -0.108412 0.00 !Mu1ChY125TRaw[Co4At4Ch13]
+886.515 -0.10784 0.00 !Mu1ChY126TRaw[Co4At4Ch14]
+883.99 -0.107526 0.00 !Mu1ChY127TRaw[Co4At4Ch15]
+947.91 -0.121191 0.00 !Mu1ChY128TRaw[Co4At4Ch16]
+936.808 -0.113282 0.00 !Mu2ChX1TRaw[Co1At1Ch1]
+933.588 -0.112935 0.00 !Mu2ChX2TRaw[Co1At1Ch2]
+941.562 -0.113903 0.00 !Mu2ChX3TRaw[Co1At1Ch3]
+953.784 -0.11541 0.00 !Mu2ChX4TRaw[Co1At1Ch4]
+949.078 -0.114834 0.00 !Mu2ChX5TRaw[Co1At1Ch5]
+966.718 -0.116968 0.00 !Mu2ChX6TRaw[Co1At1Ch6]
+960.214 -0.116144 0.00 !Mu2ChX7TRaw[Co1At1Ch7]
+964.987 -0.116738 0.00 !Mu2ChX8TRaw[Co1At1Ch8]
+956.88 -0.115736 0.00 !Mu2ChX9TRaw[Co1At1Ch9]
+968.81 -0.117191 0.00 !Mu2ChX10TRaw[Co1At1Ch10]
+971.337 -0.117505 0.00 !Mu2ChX11TRaw[Co1At1Ch11]
+966.1 -0.116868 0.00 !Mu2ChX12TRaw[Co1At1Ch12]
+972.053 -0.117596 0.00 !Mu2ChX13TRaw[Co1At1Ch13]
+966.078 -0.116864 0.00 !Mu2ChX14TRaw[Co1At1Ch14]
+966.541 -0.116934 0.00 !Mu2ChX15TRaw[Co1At1Ch15]
+1367.28 -0.118078 0.00 !Mu2ChX16TRaw[Co1At1Ch16]
+918.709 -0.111042 0.00 !Mu2ChX17TRaw[Co1At2Ch1]
+933.754 -0.1129 0.00 !Mu2ChX18TRaw[Co1At2Ch2]
+936.423 -0.113239 0.00 !Mu2ChX19TRaw[Co1At2Ch3]
+935.388 -0.11311 0.00 !Mu2ChX20TRaw[Co1At2Ch4]
+946.289 -0.114433 0.00 !Mu2ChX21TRaw[Co1At2Ch5]
+941.937 -0.113893 0.00 !Mu2ChX22TRaw[Co1At2Ch6]
+939.701 -0.113604 0.00 !Mu2ChX23TRaw[Co1At2Ch7]
+947.866 -0.114596 0.00 !Mu2ChX24TRaw[Co1At2Ch8]
+939.11 -0.113523 0.00 !Mu2ChX25TRaw[Co1At2Ch9]
+947.312 -0.114529 0.00 !Mu2ChX26TRaw[Co1At2Ch10]
+947.872 -0.114587 0.00 !Mu2ChX27TRaw[Co1At2Ch11]
+944.089 -0.114127 0.00 !Mu2ChX28TRaw[Co1At2Ch12]
+951.541 -0.115049 0.00 !Mu2ChX29TRaw[Co1At2Ch13]
+947.806 -0.114577 0.00 !Mu2ChX30TRaw[Co1At2Ch14]
+949.646 -0.114801 0.00 !Mu2ChX31TRaw[Co1At2Ch15]
+1101.24 -0.114725 0.00 !Mu2ChX32TRaw[Co1At2Ch16]
+883.868 -0.106884 0.00 !Mu2ChX33TRaw[Co1At3Ch1]
+881.306 -0.106588 0.00 !Mu2ChX34TRaw[Co1At3Ch2]
+890.406 -0.10771 0.00 !Mu2ChX35TRaw[Co1At3Ch3]
+887.688 -0.10739 0.00 !Mu2ChX36TRaw[Co1At3Ch4]
+901.335 -0.109058 0.00 !Mu2ChX37TRaw[Co1At3Ch5]
+898.532 -0.108685 0.00 !Mu2ChX38TRaw[Co1At3Ch6]
+906.127 -0.109605 0.00 !Mu2ChX39TRaw[Co1At3Ch7]
+903.029 -0.109211 0.00 !Mu2ChX40TRaw[Co1At3Ch8]
+902.567 -0.109168 0.00 !Mu2ChX41TRaw[Co1At3Ch9]
+906.324 -0.109617 0.00 !Mu2ChX42TRaw[Co1At3Ch10]
+912.663 -0.1104 0.00 !Mu2ChX43TRaw[Co1At3Ch11]
+911.609 -0.110254 0.00 !Mu2ChX44TRaw[Co1At3Ch12]
+919.504 -0.111219 0.00 !Mu2ChX45TRaw[Co1At3Ch13]
+918.075 -0.111043 0.00 !Mu2ChX46TRaw[Co1At3Ch14]
+920.693 -0.111378 0.00 !Mu2ChX47TRaw[Co1At3Ch15]
+1304.08 -0.11089 0.00 !Mu2ChX48TRaw[Co1At3Ch16]
+852.901 -0.102956 0.00 !Mu2ChX49TRaw[Co1At4Ch1]
+862.836 -0.104191 0.00 !Mu2ChX50TRaw[Co1At4Ch2]
+872.425 -0.105362 0.00 !Mu2ChX51TRaw[Co1At4Ch3]
+866.551 -0.10464 0.00 !Mu2ChX52TRaw[Co1At4Ch4]
+875.507 -0.105723 0.00 !Mu2ChX53TRaw[Co1At4Ch5]
+875.722 -0.105755 0.00 !Mu2ChX54TRaw[Co1At4Ch6]
+877.794 -0.105984 0.00 !Mu2ChX55TRaw[Co1At4Ch7]
+885.59 -0.106931 0.00 !Mu2ChX56TRaw[Co1At4Ch8]
+894.535 -0.108024 0.00 !Mu2ChX57TRaw[Co1At4Ch9]
+896.983 -0.108307 0.00 !Mu2ChX58TRaw[Co1At4Ch10]
+888.442 -0.107279 0.00 !Mu2ChX59TRaw[Co1At4Ch11]
+898.855 -0.108543 0.00 !Mu2ChX60TRaw[Co1At4Ch12]
+900.217 -0.108721 0.00 !Mu2ChX61TRaw[Co1At4Ch13]
+899.805 -0.108665 0.00 !Mu2ChX62TRaw[Co1At4Ch14]
+896.358 -0.10824 0.00 !Mu2ChX63TRaw[Co1At4Ch15]
+1286.56 -0.107885 0.00 !Mu2ChX64TRaw[Co1At4Ch16]
+969.588 -0.117533 0.00 !Mu2ChX65TRaw[Co2At1Ch1]
+969.639 -0.117545 0.00 !Mu2ChX66TRaw[Co2At1Ch2]
+981.26 -0.118957 0.00 !Mu2ChX67TRaw[Co2At1Ch3]
+986.207 -0.119584 0.00 !Mu2ChX68TRaw[Co2At1Ch4]
+450 -0.119902 0.00 !Mu2ChX69TRaw[Co2At1Ch5]
+989.899 -0.12002 0.00 !Mu2ChX70TRaw[Co2At1Ch6]
+991.208 -0.120171 0.00 !Mu2ChX71TRaw[Co2At1Ch7]
+996.377 -0.120802 0.00 !Mu2ChX72TRaw[Co2At1Ch8]
+989.619 -0.119977 0.00 !Mu2ChX73TRaw[Co2At1Ch9]
+998.452 -0.12102 0.00 !Mu2ChX74TRaw[Co2At1Ch10]
+994.24 -0.12055 0.00 !Mu2ChX75TRaw[Co2At1Ch11]
+993.976 -0.12048 0.00 !Mu2ChX76TRaw[Co2At1Ch12]
+1003.64 -0.121688 0.00 !Mu2ChX77TRaw[Co2At1Ch13]
+1007.3 -0.122136 0.00 !Mu2ChX78TRaw[Co2At1Ch14]
+1010.11 -0.122472 0.00 !Mu2ChX79TRaw[Co2At1Ch15]
+1318.69 -0.121488 0.00 !Mu2ChX80TRaw[Co2At1Ch16]
+950.946 -0.115148 0.00 !Mu2ChX81TRaw[Co2At2Ch1]
+961.899 -0.116512 0.00 !Mu2ChX82TRaw[Co2At2Ch2]
+963.68 -0.116735 0.00 !Mu2ChX83TRaw[Co2At2Ch3]
+967.2 -0.117158 0.00 !Mu2ChX84TRaw[Co2At2Ch4]
+967.305 -0.117159 0.00 !Mu2ChX85TRaw[Co2At2Ch5]
+968.515 -0.117336 0.00 !Mu2ChX86TRaw[Co2At2Ch6]
+982.177 -0.118997 0.00 !Mu2ChX87TRaw[Co2At2Ch7]
+981.387 -0.118879 0.00 !Mu2ChX88TRaw[Co2At2Ch8]
+991.904 -0.120152 0.00 !Mu2ChX89TRaw[Co2At2Ch9]
+991.623 -0.120143 0.00 !Mu2ChX90TRaw[Co2At2Ch10]
+990.622 -0.120011 0.00 !Mu2ChX91TRaw[Co2At2Ch11]
+980.868 -0.118788 0.00 !Mu2ChX92TRaw[Co2At2Ch12]
+995.536 -0.120614 0.00 !Mu2ChX93TRaw[Co2At2Ch13]
+999.576 -0.12112 0.00 !Mu2ChX94TRaw[Co2At2Ch14]
+1000.5 -0.12123 0.00 !Mu2ChX95TRaw[Co2At2Ch15]
+985.324 -0.119394 0.00 !Mu2ChX96TRaw[Co2At2Ch16]
+898.921 -0.10895 0.00 !Mu2ChX97TRaw[Co2At3Ch1]
+915.715 -0.11099 0.00 !Mu2ChX98TRaw[Co2At3Ch2]
+911.411 -0.110483 0.00 !Mu2ChX99TRaw[Co2At3Ch3]
+911.648 -0.110494 0.00 !Mu2ChX100TRaw[Co2At3Ch4]
+920.871 -0.11163 0.00 !Mu2ChX101TRaw[Co2At3Ch5]
+920.388 -0.111573 0.00 !Mu2ChX102TRaw[Co2At3Ch6]
+918.664 -0.111368 0.00 !Mu2ChX103TRaw[Co2At3Ch7]
+923.174 -0.111888 0.00 !Mu2ChX104TRaw[Co2At3Ch8]
+933.198 -0.113122 0.00 !Mu2ChX105TRaw[Co2At3Ch9]
+930.187 -0.112764 0.00 !Mu2ChX106TRaw[Co2At3Ch10]
+935.147 -0.113373 0.00 !Mu2ChX107TRaw[Co2At3Ch11]
+930.349 -0.112797 0.00 !Mu2ChX108TRaw[Co2At3Ch12]
+933.561 -0.113176 0.00 !Mu2ChX109TRaw[Co2At3Ch13]
+940.135 -0.113973 0.00 !Mu2ChX110TRaw[Co2At3Ch14]
+940.914 -0.114066 0.00 !Mu2ChX111TRaw[Co2At3Ch15]
+940.163 -0.113973 0.00 !Mu2ChX112TRaw[Co2At3Ch16]
+900.272 -0.108961 0.00 !Mu2ChX113TRaw[Co2At4Ch1]
+905.007 -0.109531 0.00 !Mu2ChX114TRaw[Co2At4Ch2]
+912.464 -0.110461 0.00 !Mu2ChX115TRaw[Co2At4Ch3]
+912.22 -0.110414 0.00 !Mu2ChX116TRaw[Co2At4Ch4]
+927.733 -0.112323 0.00 !Mu2ChX117TRaw[Co2At4Ch5]
+930.691 -0.11267 0.00 !Mu2ChX118TRaw[Co2At4Ch6]
+936.077 -0.113333 0.00 !Mu2ChX119TRaw[Co2At4Ch7]
+939.108 -0.113698 0.00 !Mu2ChX120TRaw[Co2At4Ch8]
+938.924 -0.113666 0.00 !Mu2ChX121TRaw[Co2At4Ch9]
+947.571 -0.114745 0.00 !Mu2ChX122TRaw[Co2At4Ch10]
+938.938 -0.113673 0.00 !Mu2ChX123TRaw[Co2At4Ch11]
+945.07 -0.11443 0.00 !Mu2ChX124TRaw[Co2At4Ch12]
+934.733 -0.113174 0.00 !Mu2ChX125TRaw[Co2At4Ch13]
+934.595 -0.113143 0.00 !Mu2ChX126TRaw[Co2At4Ch14]
+943.044 -0.114176 0.00 !Mu2ChX127TRaw[Co2At4Ch15]
+943.184 -0.114186 0.00 !Mu2ChX128TRaw[Co2At4Ch16]
+987.442 -0.119525 0.00 !Mu2ChY1TRaw[Co3At1Ch1]
+990.37 -0.119903 0.00 !Mu2ChY2TRaw[Co3At1Ch2]
+989.136 -0.119776 0.00 !Mu2ChY3TRaw[Co3At1Ch3]
+995.437 -0.120524 0.00 !Mu2ChY4TRaw[Co3At1Ch4]
+1000.77 -0.121165 0.00 !Mu2ChY5TRaw[Co3At1Ch5]
+998.951 -0.120947 0.00 !Mu2ChY6TRaw[Co3At1Ch6]
+1003.75 -0.121526 0.00 !Mu2ChY7TRaw[Co3At1Ch7]
+1010.87 -0.122366 0.00 !Mu2ChY8TRaw[Co3At1Ch8]
+1012.21 -0.122539 0.00 !Mu2ChY9TRaw[Co3At1Ch9]
+1003.9 -0.121307 0.00 !Mu2ChY10TRaw[Co3At1Ch10]
+1010.24 -0.122275 0.00 !Mu2ChY11TRaw[Co3At1Ch11]
+1015.27 -0.122898 0.00 !Mu2ChY12TRaw[Co3At1Ch12]
+1017.2 -0.12312 0.00 !Mu2ChY13TRaw[Co3At1Ch13]
+1022.23 -0.123746 0.00 !Mu2ChY14TRaw[Co3At1Ch14]
+1021.37 -0.123621 0.00 !Mu2ChY15TRaw[Co3At1Ch15]
+1022.68 -0.123744 0.00 !Mu2ChY16TRaw[Co3At1Ch16]
+939.963 -0.113632 0.00 !Mu2ChY17TRaw[Co3At2Ch1]
+939.308 -0.11359 0.00 !Mu2ChY18TRaw[Co3At2Ch2]
+938.897 -0.113546 0.00 !Mu2ChY19TRaw[Co3At2Ch3]
+938.628 -0.113526 0.00 !Mu2ChY20TRaw[Co3At2Ch4]
+953.606 -0.115367 0.00 !Mu2ChY21TRaw[Co3At2Ch5]
+969.437 -0.117305 0.00 !Mu2ChY22TRaw[Co3At2Ch6]
+965.454 -0.11682 0.00 !Mu2ChY23TRaw[Co3At2Ch7]
+960.44 -0.116216 0.00 !Mu2ChY24TRaw[Co3At2Ch8]
+975.99 -0.118134 0.00 !Mu2ChY25TRaw[Co3At2Ch9]
+978.687 -0.118446 0.00 !Mu2ChY26TRaw[Co3At2Ch10]
+976.083 -0.117858 0.00 !Mu2ChY27TRaw[Co3At2Ch11]
+982.568 -0.11895 0.00 !Mu2ChY28TRaw[Co3At2Ch12]
+976.864 -0.118238 0.00 !Mu2ChY29TRaw[Co3At2Ch13]
+978.515 -0.118468 0.00 !Mu2ChY30TRaw[Co3At2Ch14]
+977.409 -0.118337 0.00 !Mu2ChY31TRaw[Co3At2Ch15]
+965.447 -0.116905 0.00 !Mu2ChY32TRaw[Co3At2Ch16]
+870.181 -0.105393 0.00 !Mu2ChY33TRaw[Co3At3Ch1]
+876.858 -0.106206 0.00 !Mu2ChY34TRaw[Co3At3Ch2]
+889.244 -0.107711 0.00 !Mu2ChY35TRaw[Co3At3Ch3]
+890.519 -0.10786 0.00 !Mu2ChY36TRaw[Co3At3Ch4]
+893.817 -0.108297 0.00 !Mu2ChY37TRaw[Co3At3Ch5]
+888.588 -0.107628 0.00 !Mu2ChY38TRaw[Co3At3Ch6]
+904.701 -0.109574 0.00 !Mu2ChY39TRaw[Co3At3Ch7]
+903.479 -0.109401 0.00 !Mu2ChY40TRaw[Co3At3Ch8]
+906.236 -0.109756 0.00 !Mu2ChY41TRaw[Co3At3Ch9]
+914.382 -0.110304 0.00 !Mu2ChY42TRaw[Co3At3Ch10]
+906.598 -0.10979 0.00 !Mu2ChY43TRaw[Co3At3Ch11]
+910.53 -0.110231 0.00 !Mu2ChY44TRaw[Co3At3Ch12]
+912.933 -0.110532 0.00 !Mu2ChY45TRaw[Co3At3Ch13]
+916.041 -0.110907 0.00 !Mu2ChY46TRaw[Co3At3Ch14]
+919.774 -0.111371 0.00 !Mu2ChY47TRaw[Co3At3Ch15]
+915.148 -0.110791 0.00 !Mu2ChY48TRaw[Co3At3Ch16]
+893.19 -0.108016 0.00 !Mu2ChY49TRaw[Co3At4Ch1]
+902.467 -0.109155 0.00 !Mu2ChY50TRaw[Co3At4Ch2]
+899.946 -0.108834 0.00 !Mu2ChY51TRaw[Co3At4Ch3]
+913.407 -0.110471 0.00 !Mu2ChY52TRaw[Co3At4Ch4]
+905.911 -0.109622 0.00 !Mu2ChY53TRaw[Co3At4Ch5]
+914.887 -0.110708 0.00 !Mu2ChY54TRaw[Co3At4Ch6]
+922.021 -0.111116 0.00 !Mu2ChY55TRaw[Co3At4Ch7]
+914.007 -0.11061 0.00 !Mu2ChY56TRaw[Co3At4Ch8]
+926.973 -0.11216 0.00 !Mu2ChY57TRaw[Co3At4Ch9]
+918.182 -0.111079 0.00 !Mu2ChY58TRaw[Co3At4Ch10]
+920.356 -0.111393 0.00 !Mu2ChY59TRaw[Co3At4Ch11]
+924.322 -0.11168 0.00 !Mu2ChY60TRaw[Co3At4Ch12]
+940.509 -0.11386 0.00 !Mu2ChY61TRaw[Co3At4Ch13]
+925.883 -0.112068 0.00 !Mu2ChY62TRaw[Co3At4Ch14]
+921.861 -0.111623 0.00 !Mu2ChY63TRaw[Co3At4Ch15]
+929.763 -0.112593 0.00 !Mu2ChY64TRaw[Co3At4Ch16]
+924.331 -0.111864 0.00 !Mu2ChY65TRaw[Co4At1Ch1]
+943.62 -0.114242 0.00 !Mu2ChY66TRaw[Co4At1Ch2]
+947.992 -0.114763 0.00 !Mu2ChY67TRaw[Co4At1Ch3]
+945.728 -0.114477 0.00 !Mu2ChY68TRaw[Co4At1Ch4]
+972.019 -0.117701 0.00 !Mu2ChY69TRaw[Co4At1Ch5]
+960.071 -0.116242 0.00 !Mu2ChY70TRaw[Co4At1Ch6]
+967.505 -0.117144 0.00 !Mu2ChY71TRaw[Co4At1Ch7]
+964.472 -0.116783 0.00 !Mu2ChY72TRaw[Co4At1Ch8]
+955.96 -0.115747 0.00 !Mu2ChY73TRaw[Co4At1Ch9]
+958.084 -0.115989 0.00 !Mu2ChY74TRaw[Co4At1Ch10]
+964.33 -0.116762 0.00 !Mu2ChY75TRaw[Co4At1Ch11]
+977.202 -0.118324 0.00 !Mu2ChY76TRaw[Co4At1Ch12]
+973.571 -0.117892 0.00 !Mu2ChY77TRaw[Co4At1Ch13]
+976.2 -0.118194 0.00 !Mu2ChY78TRaw[Co4At1Ch14]
+967.051 -0.117092 0.00 !Mu2ChY79TRaw[Co4At1Ch15]
+968.99 -0.117343 0.00 !Mu2ChY80TRaw[Co4At1Ch16]
+944.542 -0.114246 0.00 !Mu2ChY81TRaw[Co4At2Ch1]
+939.064 -0.113582 0.00 !Mu2ChY82TRaw[Co4At2Ch2]
+951.122 -0.115097 0.00 !Mu2ChY83TRaw[Co4At2Ch3]
+946.764 -0.114574 0.00 !Mu2ChY84TRaw[Co4At2Ch4]
+955.625 -0.115653 0.00 !Mu2ChY85TRaw[Co4At2Ch5]
+966 -0.11692 0.00 !Mu2ChY86TRaw[Co4At2Ch6]
+964.199 -0.116695 0.00 !Mu2ChY87TRaw[Co4At2Ch7]
+969.926 -0.117388 0.00 !Mu2ChY88TRaw[Co4At2Ch8]
+972.649 -0.117739 0.00 !Mu2ChY89TRaw[Co4At2Ch9]
+974.635 -0.11797 0.00 !Mu2ChY90TRaw[Co4At2Ch10]
+979.1 -0.118525 0.00 !Mu2ChY91TRaw[Co4At2Ch11]
+969.715 -0.117371 0.00 !Mu2ChY92TRaw[Co4At2Ch12]
+977.475 -0.118331 0.00 !Mu2ChY93TRaw[Co4At2Ch13]
+977.142 -0.118283 0.00 !Mu2ChY94TRaw[Co4At2Ch14]
+984.646 -0.119174 0.00 !Mu2ChY95TRaw[Co4At2Ch15]
+989.259 -0.119806 0.00 !Mu2ChY96TRaw[Co4At2Ch16]
+897.538 -0.108639 0.00 !Mu2ChY97TRaw[Co4At3Ch1]
+893.51 -0.108189 0.00 !Mu2ChY98TRaw[Co4At3Ch2]
+904.052 -0.109474 0.00 !Mu2ChY99TRaw[Co4At3Ch3]
+902.752 -0.109308 0.00 !Mu2ChY100TRaw[Co4At3Ch4]
+916.527 -0.110997 0.00 !Mu2ChY101TRaw[Co4At3Ch5]
+924.175 -0.111938 0.00 !Mu2ChY102TRaw[Co4At3Ch6]
+914.572 -0.110746 0.00 !Mu2ChY103TRaw[Co4At3Ch7]
+930.562 -0.112691 0.00 !Mu2ChY104TRaw[Co4At3Ch8]
+925.104 -0.112025 0.00 !Mu2ChY105TRaw[Co4At3Ch9]
+920.853 -0.111507 0.00 !Mu2ChY106TRaw[Co4At3Ch10]
+922.078 -0.111663 0.00 !Mu2ChY107TRaw[Co4At3Ch11]
+921.772 -0.111623 0.00 !Mu2ChY108TRaw[Co4At3Ch12]
+925.31 -0.112066 0.00 !Mu2ChY109TRaw[Co4At3Ch13]
+926.033 -0.11214 0.00 !Mu2ChY110TRaw[Co4At3Ch14]
+922.391 -0.111703 0.00 !Mu2ChY111TRaw[Co4At3Ch15]
+912.83 -0.110525 0.00 !Mu2ChY112TRaw[Co4At3Ch16]
+852.798 -0.102981 0.00 !Mu2ChY113TRaw[Co4At4Ch1]
+868.843 -0.104976 0.00 !Mu2ChY114TRaw[Co4At4Ch2]
+876.793 -0.105936 0.00 !Mu2ChY115TRaw[Co4At4Ch3]
+875.311 -0.10575 0.00 !Mu2ChY116TRaw[Co4At4Ch4]
+883.331 -0.106741 0.00 !Mu2ChY117TRaw[Co4At4Ch5]
+879.699 -0.10628 0.00 !Mu2ChY118TRaw[Co4At4Ch6]
+891.993 -0.107805 0.00 !Mu2ChY119TRaw[Co4At4Ch7]
+893.52 -0.107966 0.00 !Mu2ChY120TRaw[Co4At4Ch8]
+883.484 -0.106759 0.00 !Mu2ChY121TRaw[Co4At4Ch9]
+896.835 -0.108381 0.00 !Mu2ChY122TRaw[Co4At4Ch10]
+895.32 -0.108195 0.00 !Mu2ChY123TRaw[Co4At4Ch11]
+1336.18 -0.108195 0.00 !Mu2ChY124TRaw[Co4At4Ch12]
+897.921 -0.108519 0.00 !Mu2ChY125TRaw[Co4At4Ch13]
+898.896 -0.10863 0.00 !Mu2ChY126TRaw[Co4At4Ch14]
+900.009 -0.108768 0.00 !Mu2ChY127TRaw[Co4At4Ch15]
+896.14 -0.108297 0.00 !Mu2ChY128TRaw[Co4At4Ch16]
+936.261 -0.113591 0.00 !Mu3ChX1TRaw[Co1At1Ch1]
+949.597 -0.115254 0.00 !Mu3ChX2TRaw[Co1At1Ch2]
+954.137 -0.115822 0.00 !Mu3ChX3TRaw[Co1At1Ch3]
+956.021 -0.116042 0.00 !Mu3ChX4TRaw[Co1At1Ch4]
+948.148 -0.115096 0.00 !Mu3ChX5TRaw[Co1At1Ch5]
+962.715 -0.11686 0.00 !Mu3ChX6TRaw[Co1At1Ch6]
+967.087 -0.117385 0.00 !Mu3ChX7TRaw[Co1At1Ch7]
+972.268 -0.118019 0.00 !Mu3ChX8TRaw[Co1At1Ch8]
+970.481 -0.117779 0.00 !Mu3ChX9TRaw[Co1At1Ch9]
+968.226 -0.117496 0.00 !Mu3ChX10TRaw[Co1At1Ch10]
+970.608 -0.117795 0.00 !Mu3ChX11TRaw[Co1At1Ch11]
+982.826 -0.119273 0.00 !Mu3ChX12TRaw[Co1At1Ch12]
+972.655 -0.118031 0.00 !Mu3ChX13TRaw[Co1At1Ch13]
+978.966 -0.118805 0.00 !Mu3ChX14TRaw[Co1At1Ch14]
+976.646 -0.118524 0.00 !Mu3ChX15TRaw[Co1At1Ch15]
+1358.4 -0.119127 0.00 !Mu3ChX16TRaw[Co1At1Ch16]
+965.022 -0.117029 0.00 !Mu3ChX17TRaw[Co1At2Ch1]
+961.069 -0.116582 0.00 !Mu3ChX18TRaw[Co1At2Ch2]
+979.729 -0.11886 0.00 !Mu3ChX19TRaw[Co1At2Ch3]
+975.886 -0.118386 0.00 !Mu3ChX20TRaw[Co1At2Ch4]
+982.811 -0.119229 0.00 !Mu3ChX21TRaw[Co1At2Ch5]
+989.956 -0.120114 0.00 !Mu3ChX22TRaw[Co1At2Ch6]
+982.322 -0.119177 0.00 !Mu3ChX23TRaw[Co1At2Ch7]
+986.837 -0.119693 0.00 !Mu3ChX24TRaw[Co1At2Ch8]
+984.553 -0.119405 0.00 !Mu3ChX25TRaw[Co1At2Ch9]
+985.367 -0.119523 0.00 !Mu3ChX26TRaw[Co1At2Ch10]
+998.436 -0.12115 0.00 !Mu3ChX27TRaw[Co1At2Ch11]
+994.592 -0.120628 0.00 !Mu3ChX28TRaw[Co1At2Ch12]
+1004.55 -0.121885 0.00 !Mu3ChX29TRaw[Co1At2Ch13]
+997.75 -0.121035 0.00 !Mu3ChX30TRaw[Co1At2Ch14]
+999.387 -0.121233 0.00 !Mu3ChX31TRaw[Co1At2Ch15]
+994.205 -0.120654 0.00 !Mu3ChX32TRaw[Co1At2Ch16]
+895.626 -0.108693 0.00 !Mu3ChX33TRaw[Co1At3Ch1]
+901.788 -0.109485 0.00 !Mu3ChX34TRaw[Co1At3Ch2]
+909.669 -0.110421 0.00 !Mu3ChX35TRaw[Co1At3Ch3]
+902.809 -0.109588 0.00 !Mu3ChX36TRaw[Co1At3Ch4]
+908.707 -0.110301 0.00 !Mu3ChX37TRaw[Co1At3Ch5]
+917.184 -0.111327 0.00 !Mu3ChX38TRaw[Co1At3Ch6]
+918.636 -0.111495 0.00 !Mu3ChX39TRaw[Co1At3Ch7]
+927.002 -0.112521 0.00 !Mu3ChX40TRaw[Co1At3Ch8]
+934.79 -0.11347 0.00 !Mu3ChX41TRaw[Co1At3Ch9]
+928.489 -0.112717 0.00 !Mu3ChX42TRaw[Co1At3Ch10]
+925.669 -0.112335 0.00 !Mu3ChX43TRaw[Co1At3Ch11]
+450 -0.112964 0.00 !Mu3ChX44TRaw[Co1At3Ch12]
+932.907 -0.113245 0.00 !Mu3ChX45TRaw[Co1At3Ch13]
+927.364 -0.11258 0.00 !Mu3ChX46TRaw[Co1At3Ch14]
+934.8 -0.113476 0.00 !Mu3ChX47TRaw[Co1At3Ch15]
+933.166 -0.113256 0.00 !Mu3ChX48TRaw[Co1At3Ch16]
+863.882 -0.104661 0.00 !Mu3ChX49TRaw[Co1At4Ch1]
+863.742 -0.104634 0.00 !Mu3ChX50TRaw[Co1At4Ch2]
+876.032 -0.106155 0.00 !Mu3ChX51TRaw[Co1At4Ch3]
+885.987 -0.107364 0.00 !Mu3ChX52TRaw[Co1At4Ch4]
+886.077 -0.107368 0.00 !Mu3ChX53TRaw[Co1At4Ch5]
+882.141 -0.106861 0.00 !Mu3ChX54TRaw[Co1At4Ch6]
+894.386 -0.108382 0.00 !Mu3ChX55TRaw[Co1At4Ch7]
+897.465 -0.108733 0.00 !Mu3ChX56TRaw[Co1At4Ch8]
+894.9 -0.10844 0.00 !Mu3ChX57TRaw[Co1At4Ch9]
+900.295 -0.10908 0.00 !Mu3ChX58TRaw[Co1At4Ch10]
+895.793 -0.108538 0.00 !Mu3ChX59TRaw[Co1At4Ch11]
+895.372 -0.10849 0.00 !Mu3ChX60TRaw[Co1At4Ch12]
+902.176 -0.109312 0.00 !Mu3ChX61TRaw[Co1At4Ch13]
+903.192 -0.109445 0.00 !Mu3ChX62TRaw[Co1At4Ch14]
+889.712 -0.107803 0.00 !Mu3ChX63TRaw[Co1At4Ch15]
+921.265 -0.108862 0.00 !Mu3ChX64TRaw[Co1At4Ch16]
+981.944 -0.119126 0.00 !Mu3ChX65TRaw[Co2At1Ch1]
+987.148 -0.119789 0.00 !Mu3ChX66TRaw[Co2At1Ch2]
+987.456 -0.119851 0.00 !Mu3ChX67TRaw[Co2At1Ch3]
+1003.28 -0.121753 0.00 !Mu3ChX68TRaw[Co2At1Ch4]
+1003.82 -0.121824 0.00 !Mu3ChX69TRaw[Co2At1Ch5]
+1000.66 -0.121446 0.00 !Mu3ChX70TRaw[Co2At1Ch6]
+1004.35 -0.121893 0.00 !Mu3ChX71TRaw[Co2At1Ch7]
+1008.06 -0.122347 0.00 !Mu3ChX72TRaw[Co2At1Ch8]
+1004.22 -0.121883 0.00 !Mu3ChX73TRaw[Co2At1Ch9]
+1011.08 -0.122684 0.00 !Mu3ChX74TRaw[Co2At1Ch10]
+1019.46 -0.123722 0.00 !Mu3ChX75TRaw[Co2At1Ch11]
+1029.58 -0.124938 0.00 !Mu3ChX76TRaw[Co2At1Ch12]
+1011.08 -0.122709 0.00 !Mu3ChX77TRaw[Co2At1Ch13]
+1010.81 -0.12265 0.00 !Mu3ChX78TRaw[Co2At1Ch14]
+1022.22 -0.124061 0.00 !Mu3ChX79TRaw[Co2At1Ch15]
+1391.94 -0.123313 0.00 !Mu3ChX80TRaw[Co2At1Ch16]
+939.257 -0.11381 0.00 !Mu3ChX81TRaw[Co2At2Ch1]
+945.066 -0.114558 0.00 !Mu3ChX82TRaw[Co2At2Ch2]
+948.6 -0.114986 0.00 !Mu3ChX83TRaw[Co2At2Ch3]
+947.122 -0.114804 0.00 !Mu3ChX84TRaw[Co2At2Ch4]
+961.987 -0.116619 0.00 !Mu3ChX85TRaw[Co2At2Ch5]
+964.59 -0.11693 0.00 !Mu3ChX86TRaw[Co2At2Ch6]
+959.397 -0.116299 0.00 !Mu3ChX87TRaw[Co2At2Ch7]
+964.355 -0.116863 0.00 !Mu3ChX88TRaw[Co2At2Ch8]
+975.002 -0.118161 0.00 !Mu3ChX89TRaw[Co2At2Ch9]
+971.077 -0.117687 0.00 !Mu3ChX90TRaw[Co2At2Ch10]
+976.04 -0.118304 0.00 !Mu3ChX91TRaw[Co2At2Ch11]
+983.975 -0.119256 0.00 !Mu3ChX92TRaw[Co2At2Ch12]
+983.617 -0.119241 0.00 !Mu3ChX93TRaw[Co2At2Ch13]
+983.301 -0.119186 0.00 !Mu3ChX94TRaw[Co2At2Ch14]
+980.734 -0.118879 0.00 !Mu3ChX95TRaw[Co2At2Ch15]
+975.837 -0.118278 0.00 !Mu3ChX96TRaw[Co2At2Ch16]
+858.761 -0.104124 0.00 !Mu3ChX97TRaw[Co2At3Ch1]
+863.527 -0.104728 0.00 !Mu3ChX98TRaw[Co2At3Ch2]
+863.719 -0.104753 0.00 !Mu3ChX99TRaw[Co2At3Ch3]
+869.797 -0.105492 0.00 !Mu3ChX100TRaw[Co2At3Ch4]
+879.582 -0.106693 0.00 !Mu3ChX101TRaw[Co2At3Ch5]
+874.971 -0.10614 0.00 !Mu3ChX102TRaw[Co2At3Ch6]
+879.706 -0.106708 0.00 !Mu3ChX103TRaw[Co2At3Ch7]
+878.738 -0.106567 0.00 !Mu3ChX104TRaw[Co2At3Ch8]
+887.854 -0.107671 0.00 !Mu3ChX105TRaw[Co2At3Ch9]
+892.385 -0.108216 0.00 !Mu3ChX106TRaw[Co2At3Ch10]
+884.225 -0.107225 0.00 !Mu3ChX107TRaw[Co2At3Ch11]
+894.981 -0.108561 0.00 !Mu3ChX108TRaw[Co2At3Ch12]
+895.51 -0.108609 0.00 !Mu3ChX109TRaw[Co2At3Ch13]
+891.851 -0.108191 0.00 !Mu3ChX110TRaw[Co2At3Ch14]
+901.356 -0.109337 0.00 !Mu3ChX111TRaw[Co2At3Ch15]
+900.727 -0.108709 0.00 !Mu3ChX112TRaw[Co2At3Ch16]
+855.952 -0.103629 0.00 !Mu3ChX113TRaw[Co2At4Ch1]
+865.7 -0.10481 0.00 !Mu3ChX114TRaw[Co2At4Ch2]
+866.161 -0.1049 0.00 !Mu3ChX115TRaw[Co2At4Ch3]
+872.362 -0.105647 0.00 !Mu3ChX116TRaw[Co2At4Ch4]
+1490.13 -0.126949 0.00 !Mu3ChX117TRaw[Co2At4Ch5]
+876.561 -0.106145 0.00 !Mu3ChX118TRaw[Co2At4Ch6]
+884.075 -0.107055 0.00 !Mu3ChX119TRaw[Co2At4Ch7]
+881.54 -0.10675 0.00 !Mu3ChX120TRaw[Co2At4Ch8]
+884.679 -0.107137 0.00 !Mu3ChX121TRaw[Co2At4Ch9]
+888.637 -0.107599 0.00 !Mu3ChX122TRaw[Co2At4Ch10]
+884.493 -0.107093 0.00 !Mu3ChX123TRaw[Co2At4Ch11]
+893.964 -0.108252 0.00 !Mu3ChX124TRaw[Co2At4Ch12]
+888.064 -0.107522 0.00 !Mu3ChX125TRaw[Co2At4Ch13]
+894.536 -0.108336 0.00 !Mu3ChX126TRaw[Co2At4Ch14]
+882.088 -0.106793 0.00 !Mu3ChX127TRaw[Co2At4Ch15]
+890.98 -0.107896 0.00 !Mu3ChX128TRaw[Co2At4Ch16]
+916.716 -0.11121 0.00 !Mu3ChY1TRaw[Co3At1Ch1]
+924.259 -0.112154 0.00 !Mu3ChY2TRaw[Co3At1Ch2]
+933.256 -0.113241 0.00 !Mu3ChY3TRaw[Co3At1Ch3]
+942.953 -0.114409 0.00 !Mu3ChY4TRaw[Co3At1Ch4]
+939.901 -0.114032 0.00 !Mu3ChY5TRaw[Co3At1Ch5]
+947.878 -0.114994 0.00 !Mu3ChY6TRaw[Co3At1Ch6]
+952.484 -0.115552 0.00 !Mu3ChY7TRaw[Co3At1Ch7]
+952.713 -0.115546 0.00 !Mu3ChY8TRaw[Co3At1Ch8]
+960.463 -0.116506 0.00 !Mu3ChY9TRaw[Co3At1Ch9]
+964.543 -0.117006 0.00 !Mu3ChY10TRaw[Co3At1Ch10]
+966.84 -0.117251 0.00 !Mu3ChY11TRaw[Co3At1Ch11]
+965.68 -0.117093 0.00 !Mu3ChY12TRaw[Co3At1Ch12]
+975.182 -0.118272 0.00 !Mu3ChY13TRaw[Co3At1Ch13]
+981.614 -0.119048 0.00 !Mu3ChY14TRaw[Co3At1Ch14]
+973.869 -0.118075 0.00 !Mu3ChY15TRaw[Co3At1Ch15]
+981.076 -0.118941 0.00 !Mu3ChY16TRaw[Co3At1Ch16]
+967.206 -0.117174 0.00 !Mu3ChY17TRaw[Co3At2Ch1]
+980.188 -0.118815 0.00 !Mu3ChY18TRaw[Co3At2Ch2]
+981.134 -0.118931 0.00 !Mu3ChY19TRaw[Co3At2Ch3]
+986.719 -0.119638 0.00 !Mu3ChY20TRaw[Co3At2Ch4]
+992.386 -0.12034 0.00 !Mu3ChY21TRaw[Co3At2Ch5]
+1002.21 -0.121551 0.00 !Mu3ChY22TRaw[Co3At2Ch6]
+997.474 -0.120998 0.00 !Mu3ChY23TRaw[Co3At2Ch7]
+992.008 -0.120321 0.00 !Mu3ChY24TRaw[Co3At2Ch8]
+998.021 -0.121073 0.00 !Mu3ChY25TRaw[Co3At2Ch9]
+1004.15 -0.121839 0.00 !Mu3ChY26TRaw[Co3At2Ch10]
+1004.31 -0.121856 0.00 !Mu3ChY27TRaw[Co3At2Ch11]
+1010.69 -0.122649 0.00 !Mu3ChY28TRaw[Co3At2Ch12]
+1013.79 -0.12302 0.00 !Mu3ChY29TRaw[Co3At2Ch13]
+1002.56 -0.121668 0.00 !Mu3ChY30TRaw[Co3At2Ch14]
+1011.72 -0.122794 0.00 !Mu3ChY31TRaw[Co3At2Ch15]
+1012.54 -0.122927 0.00 !Mu3ChY32TRaw[Co3At2Ch16]
+868.546 -0.105446 0.00 !Mu3ChY33TRaw[Co3At3Ch1]
+865.415 -0.105092 0.00 !Mu3ChY34TRaw[Co3At3Ch2]
+870.615 -0.10573 0.00 !Mu3ChY35TRaw[Co3At3Ch3]
+867.501 -0.105345 0.00 !Mu3ChY36TRaw[Co3At3Ch4]
+879.085 -0.106744 0.00 !Mu3ChY37TRaw[Co3At3Ch5]
+878.372 -0.106654 0.00 !Mu3ChY38TRaw[Co3At3Ch6]
+883.834 -0.107294 0.00 !Mu3ChY39TRaw[Co3At3Ch7]
+892.468 -0.108361 0.00 !Mu3ChY40TRaw[Co3At3Ch8]
+889.652 -0.10799 0.00 !Mu3ChY41TRaw[Co3At3Ch9]
+893.582 -0.10846 0.00 !Mu3ChY42TRaw[Co3At3Ch10]
+902.982 -0.109593 0.00 !Mu3ChY43TRaw[Co3At3Ch11]
+899.542 -0.109195 0.00 !Mu3ChY44TRaw[Co3At3Ch12]
+894.786 -0.108568 0.00 !Mu3ChY45TRaw[Co3At3Ch13]
+904.997 -0.109804 0.00 !Mu3ChY46TRaw[Co3At3Ch14]
+908.733 -0.110263 0.00 !Mu3ChY47TRaw[Co3At3Ch15]
+901.41 -0.109382 0.00 !Mu3ChY48TRaw[Co3At3Ch16]
+874.853 -0.105997 0.00 !Mu3ChY49TRaw[Co3At4Ch1]
+880.713 -0.106772 0.00 !Mu3ChY50TRaw[Co3At4Ch2]
+892.705 -0.108217 0.00 !Mu3ChY51TRaw[Co3At4Ch3]
+895.218 -0.108527 0.00 !Mu3ChY52TRaw[Co3At4Ch4]
+889.343 -0.107825 0.00 !Mu3ChY53TRaw[Co3At4Ch5]
+897.932 -0.108862 0.00 !Mu3ChY54TRaw[Co3At4Ch6]
+902.448 -0.109456 0.00 !Mu3ChY55TRaw[Co3At4Ch7]
+908.367 -0.110152 0.00 !Mu3ChY56TRaw[Co3At4Ch8]
+912.74 -0.110718 0.00 !Mu3ChY57TRaw[Co3At4Ch9]
+911.519 -0.11056 0.00 !Mu3ChY58TRaw[Co3At4Ch10]
+920.413 -0.111636 0.00 !Mu3ChY59TRaw[Co3At4Ch11]
+906.185 -0.109934 0.00 !Mu3ChY60TRaw[Co3At4Ch12]
+919.759 -0.111581 0.00 !Mu3ChY61TRaw[Co3At4Ch13]
+920.555 -0.111694 0.00 !Mu3ChY62TRaw[Co3At4Ch14]
+915.715 -0.1111 0.00 !Mu3ChY63TRaw[Co3At4Ch15]
+918.454 -0.11144 0.00 !Mu3ChY64TRaw[Co3At4Ch16]
+901.244 -0.109216 0.00 !Mu3ChY65TRaw[Co4At1Ch1]
+907.742 -0.110026 0.00 !Mu3ChY66TRaw[Co4At1Ch2]
+908.334 -0.110106 0.00 !Mu3ChY67TRaw[Co4At1Ch3]
+916.785 -0.11114 0.00 !Mu3ChY68TRaw[Co4At1Ch4]
+928.178 -0.11252 0.00 !Mu3ChY69TRaw[Co4At1Ch5]
+936.612 -0.113544 0.00 !Mu3ChY70TRaw[Co4At1Ch6]
+929.327 -0.112672 0.00 !Mu3ChY71TRaw[Co4At1Ch7]
+927.889 -0.112491 0.00 !Mu3ChY72TRaw[Co4At1Ch8]
+944.015 -0.114462 0.00 !Mu3ChY73TRaw[Co4At1Ch9]
+936.5 -0.11354 0.00 !Mu3ChY74TRaw[Co4At1Ch10]
+952.669 -0.115517 0.00 !Mu3ChY75TRaw[Co4At1Ch11]
+949.121 -0.115086 0.00 !Mu3ChY76TRaw[Co4At1Ch12]
+961.66 -0.116618 0.00 !Mu3ChY77TRaw[Co4At1Ch13]
+950.324 -0.115232 0.00 !Mu3ChY78TRaw[Co4At1Ch14]
+943.005 -0.114343 0.00 !Mu3ChY79TRaw[Co4At1Ch15]
+948.05 -0.114947 0.00 !Mu3ChY80TRaw[Co4At1Ch16]
+967.814 -0.117288 0.00 !Mu3ChY81TRaw[Co4At2Ch1]
+979.35 -0.118727 0.00 !Mu3ChY82TRaw[Co4At2Ch2]
+985.387 -0.119474 0.00 !Mu3ChY83TRaw[Co4At2Ch3]
+988.884 -0.119909 0.00 !Mu3ChY84TRaw[Co4At2Ch4]
+990.688 -0.120116 0.00 !Mu3ChY85TRaw[Co4At2Ch5]
+997.728 -0.120975 0.00 !Mu3ChY86TRaw[Co4At2Ch6]
+994.598 -0.120606 0.00 !Mu3ChY87TRaw[Co4At2Ch7]
+996.045 -0.12076 0.00 !Mu3ChY88TRaw[Co4At2Ch8]
+1000.77 -0.121336 0.00 !Mu3ChY89TRaw[Co4At2Ch9]
+1011.99 -0.122713 0.00 !Mu3ChY90TRaw[Co4At2Ch10]
+1015.05 -0.1231 0.00 !Mu3ChY91TRaw[Co4At2Ch11]
+1003.4 -0.121678 0.00 !Mu3ChY92TRaw[Co4At2Ch12]
+1011.74 -0.122697 0.00 !Mu3ChY93TRaw[Co4At2Ch13]
+1014.96 -0.123087 0.00 !Mu3ChY94TRaw[Co4At2Ch14]
+1007.34 -0.122144 0.00 !Mu3ChY95TRaw[Co4At2Ch15]
+1008.36 -0.122274 0.00 !Mu3ChY96TRaw[Co4At2Ch16]
+871.329 -0.105573 0.00 !Mu3ChY97TRaw[Co4At3Ch1]
+868.142 -0.105224 0.00 !Mu3ChY98TRaw[Co4At3Ch2]
+872.865 -0.105791 0.00 !Mu3ChY99TRaw[Co4At3Ch3]
+882.085 -0.106904 0.00 !Mu3ChY100TRaw[Co4At3Ch4]
+889.159 -0.107789 0.00 !Mu3ChY101TRaw[Co4At3Ch5]
+888.956 -0.107742 0.00 !Mu3ChY102TRaw[Co4At3Ch6]
+899.906 -0.109085 0.00 !Mu3ChY103TRaw[Co4At3Ch7]
+892.033 -0.108126 0.00 !Mu3ChY104TRaw[Co4At3Ch8]
+899.207 -0.108999 0.00 !Mu3ChY105TRaw[Co4At3Ch9]
+891.613 -0.108068 0.00 !Mu3ChY106TRaw[Co4At3Ch10]
+891.136 -0.108006 0.00 !Mu3ChY107TRaw[Co4At3Ch11]
+900.207 -0.109125 0.00 !Mu3ChY108TRaw[Co4At3Ch12]
+902.911 -0.109439 0.00 !Mu3ChY109TRaw[Co4At3Ch13]
+900.692 -0.109168 0.00 !Mu3ChY110TRaw[Co4At3Ch14]
+896.133 -0.108625 0.00 !Mu3ChY111TRaw[Co4At3Ch15]
+902.665 -0.109416 0.00 !Mu3ChY112TRaw[Co4At3Ch16]
+888.587 -0.107554 0.00 !Mu3ChY113TRaw[Co4At4Ch1]
+895.918 -0.108473 0.00 !Mu3ChY114TRaw[Co4At4Ch2]
+898.97 -0.108848 0.00 !Mu3ChY115TRaw[Co4At4Ch3]
+894.394 -0.108292 0.00 !Mu3ChY116TRaw[Co4At4Ch4]
+902.574 -0.109288 0.00 !Mu3ChY117TRaw[Co4At4Ch5]
+907.964 -0.109943 0.00 !Mu3ChY118TRaw[Co4At4Ch6]
+906.564 -0.109765 0.00 !Mu3ChY119TRaw[Co4At4Ch7]
+905.798 -0.109672 0.00 !Mu3ChY120TRaw[Co4At4Ch8]
+912.702 -0.110512 0.00 !Mu3ChY121TRaw[Co4At4Ch9]
+921.335 -0.111588 0.00 !Mu3ChY122TRaw[Co4At4Ch10]
+924.085 -0.111915 0.00 !Mu3ChY123TRaw[Co4At4Ch11]
+906.564 -0.109772 0.00 !Mu3ChY124TRaw[Co4At4Ch12]
+910.838 -0.11029 0.00 !Mu3ChY125TRaw[Co4At4Ch13]
+916.176 -0.110947 0.00 !Mu3ChY126TRaw[Co4At4Ch14]
+917.763 -0.111116 0.00 !Mu3ChY127TRaw[Co4At4Ch15]
+925.891 -0.112131 0.00 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calibTV0_R326-327.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calibTV0_R326-327.cal
new file mode 100644
index 0000000000000000000000000000000000000000..bb7554e8b893ad967a1c59a580b86ec16ce88171
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calibTV0_R326-327.cal
@@ -0,0 +1,1023 @@
+947.402 -0.114176 0.0!Mu0ChX1TRaw[Co1At1Ch1] 
+958.132 -0.115529 0.0!Mu0ChX2TRaw[Co1At1Ch2] 
+959.289 -0.115657 0.0!Mu0ChX3TRaw[Co1At1Ch3] 
+973.445 -0.117409 0.0!Mu0ChX4TRaw[Co1At1Ch4] 
+973.097 -0.117367 0.0!Mu0ChX5TRaw[Co1At1Ch5] 
+973.027 -0.117353 0.0!Mu0ChX6TRaw[Co1At1Ch6] 
+978.311 -0.117969 0.0!Mu0ChX7TRaw[Co1At1Ch7] 
+980.44 -0.118246 0.0!Mu0ChX8TRaw[Co1At1Ch8] 
+979.197 -0.118065 0.0!Mu0ChX9TRaw[Co1At1Ch9] 
+983.093 -0.118546 0.0!Mu0ChX10TRaw[Co1At1Ch10] 
+987.843 -0.119138 0.0!Mu0ChX11TRaw[Co1At1Ch11] 
+987.466 -0.119075 0.0!Mu0ChX12TRaw[Co1At1Ch12] 
+994.957 -0.119996 0.0!Mu0ChX13TRaw[Co1At1Ch13] 
+980.198 -0.118174 0.0!Mu0ChX14TRaw[Co1At1Ch14] 
+991.208 -0.119531 0.0!Mu0ChX15TRaw[Co1At1Ch15] 
+1327.419 -0.118448 0.0!Mu0ChX16TRaw[Co1At1Ch16] 
+957.045 -0.115275 0.0!Mu0ChX17TRaw[Co1At2Ch1] 
+967.151 -0.116527 0.0!Mu0ChX18TRaw[Co1At2Ch2] 
+979.671 -0.118044 0.0!Mu0ChX19TRaw[Co1At2Ch3] 
+980.319 -0.118125 0.0!Mu0ChX20TRaw[Co1At2Ch4] 
+989.453 -0.119233 0.0!Mu0ChX21TRaw[Co1At2Ch5] 
+983.819 -0.118555 0.0!Mu0ChX22TRaw[Co1At2Ch6] 
+994.391 -0.119845 0.0!Mu0ChX23TRaw[Co1At2Ch7] 
+995.696 -0.120005 0.0!Mu0ChX24TRaw[Co1At2Ch8] 
+991.078 -0.119427 0.0!Mu0ChX25TRaw[Co1At2Ch9] 
+1002.131 -0.120777 0.0!Mu0ChX26TRaw[Co1At2Ch10] 
+1004.435 -0.121057 0.0!Mu0ChX27TRaw[Co1At2Ch11] 
+1008.403 -0.121545 0.0!Mu0ChX28TRaw[Co1At2Ch12] 
+1003.939 -0.121021 0.0!Mu0ChX29TRaw[Co1At2Ch13] 
+1002.74 -0.120851 0.0!Mu0ChX30TRaw[Co1At2Ch14] 
+999.377 -0.12045 0.0!Mu0ChX31TRaw[Co1At2Ch15] 
+995.027 -0.119947 0.0!Mu0ChX32TRaw[Co1At2Ch16] 
+874.004 -0.105192 0.0!Mu0ChX33TRaw[Co1At3Ch1] 
+871.776 -0.104955 0.0!Mu0ChX34TRaw[Co1At3Ch2] 
+891.807 -0.107397 0.0!Mu0ChX35TRaw[Co1At3Ch3] 
+880.562 -0.106033 0.0!Mu0ChX36TRaw[Co1At3Ch4] 
+882.297 -0.106227 0.0!Mu0ChX37TRaw[Co1At3Ch5] 
+896.75 -0.108005 0.0!Mu0ChX38TRaw[Co1At3Ch6] 
+898.223 -0.108195 0.0!Mu0ChX39TRaw[Co1At3Ch7] 
+896.786 -0.107979 0.0!Mu0ChX40TRaw[Co1At3Ch8] 
+899.624 -0.108302 0.0!Mu0ChX41TRaw[Co1At3Ch9] 
+899.765 -0.108334 0.0!Mu0ChX42TRaw[Co1At3Ch10] 
+899.028 -0.108243 0.0!Mu0ChX43TRaw[Co1At3Ch11] 
+905.872 -0.109095 0.0!Mu0ChX44TRaw[Co1At3Ch12] 
+901.13 -0.108505 0.0!Mu0ChX45TRaw[Co1At3Ch13] 
+899.439 -0.107877 0.0!Mu0ChX46TRaw[Co1At3Ch14] 
+898.066 -0.108187 0.0!Mu0ChX47TRaw[Co1At3Ch15] 
+920.142 -0.10826 0.0!Mu0ChX48TRaw[Co1At3Ch16] 
+885.877 -0.106556 0.0!Mu0ChX49TRaw[Co1At4Ch1] 
+889.054 -0.106942 0.0!Mu0ChX50TRaw[Co1At4Ch2] 
+894.673 -0.107622 0.0!Mu0ChX51TRaw[Co1At4Ch3] 
+903.218 -0.109464 0.0!Mu0ChX52TRaw[Co1At4Ch4] 
+908.402 -0.109295 0.0!Mu0ChX53TRaw[Co1At4Ch5] 
+911.389 -0.109652 0.0!Mu0ChX54TRaw[Co1At4Ch6] 
+913.908 -0.109955 0.0!Mu0ChX55TRaw[Co1At4Ch7] 
+917.897 -0.110458 0.0!Mu0ChX56TRaw[Co1At4Ch8] 
+926.464 -0.111499 0.0!Mu0ChX57TRaw[Co1At4Ch9] 
+918.072 -0.110456 0.0!Mu0ChX58TRaw[Co1At4Ch10] 
+925.456 -0.111378 0.0!Mu0ChX59TRaw[Co1At4Ch11] 
+930.204 -0.111943 0.0!Mu0ChX60TRaw[Co1At4Ch12] 
+937.287 -0.112807 0.0!Mu0ChX61TRaw[Co1At4Ch13] 
+940.01 -0.11314 0.0!Mu0ChX62TRaw[Co1At4Ch14] 
+941.711 -0.113338 0.0!Mu0ChX63TRaw[Co1At4Ch15] 
+930.49 -0.111982 0.0!Mu0ChX64TRaw[Co1At4Ch16] 
+958.733 -0.115846 0.0!Mu0ChX65TRaw[Co2At1Ch1] 
+963.634 -0.11646 0.0!Mu0ChX66TRaw[Co2At1Ch2] 
+973.382 -0.117644 0.0!Mu0ChX67TRaw[Co2At1Ch3] 
+974.652 -0.117791 0.0!Mu0ChX68TRaw[Co2At1Ch4] 
+977.949 -0.118174 0.0!Mu0ChX69TRaw[Co2At1Ch5] 
+990.649 -0.119717 0.0!Mu0ChX70TRaw[Co2At1Ch6] 
+995.246 -0.120284 0.0!Mu0ChX71TRaw[Co2At1Ch7] 
+996.388 -0.120426 0.0!Mu0ChX72TRaw[Co2At1Ch8] 
+1007.342 -0.121763 0.0!Mu0ChX73TRaw[Co2At1Ch9] 
+988.546 -0.119445 0.0!Mu0ChX74TRaw[Co2At1Ch10] 
+1005.453 -0.121535 0.0!Mu0ChX75TRaw[Co2At1Ch11] 
+996.341 -0.120381 0.0!Mu0ChX76TRaw[Co2At1Ch12] 
+1007.215 -0.121262 0.0!Mu0ChX77TRaw[Co2At1Ch13] 
+1011.503 -0.121766 0.0!Mu0ChX78TRaw[Co2At1Ch14] 
+998.245 -0.120615 0.0!Mu0ChX79TRaw[Co2At1Ch15] 
+1381.85 -0.120952 0.0!Mu0ChX80TRaw[Co2At1Ch16] 
+924.325 -0.111515 0.0!Mu0ChX81TRaw[Co2At2Ch1] 
+933.986 -0.112746 0.0!Mu0ChX82TRaw[Co2At2Ch2] 
+926.081 -0.111774 0.0!Mu0ChX83TRaw[Co2At2Ch3] 
+942.039 -0.113281 0.0!Mu0ChX84TRaw[Co2At2Ch4] 
+931.74 -0.112468 0.0!Mu0ChX85TRaw[Co2At2Ch5] 
+942.885 -0.113819 0.0!Mu0ChX86TRaw[Co2At2Ch6] 
+951.107 -0.114818 0.0!Mu0ChX87TRaw[Co2At2Ch7] 
+944.193 -0.113978 0.0!Mu0ChX88TRaw[Co2At2Ch8] 
+950.881 -0.114813 0.0!Mu0ChX89TRaw[Co2At2Ch9] 
+958.38 -0.115728 0.0!Mu0ChX90TRaw[Co2At2Ch10] 
+965.991 -0.11664 0.0!Mu0ChX91TRaw[Co2At2Ch11] 
+962.675 -0.11625 0.0!Mu0ChX92TRaw[Co2At2Ch12] 
+962.975 -0.116299 0.0!Mu0ChX93TRaw[Co2At2Ch13] 
+961.838 -0.116152 0.0!Mu0ChX94TRaw[Co2At2Ch14] 
+975.767 -0.117868 0.0!Mu0ChX95TRaw[Co2At2Ch15] 
+987.869 -0.116744 0.0!Mu0ChX96TRaw[Co2At2Ch16] 
+869.374 -0.105013 0.0!Mu0ChX97TRaw[Co2At3Ch1] 
+878.873 -0.106169 0.0!Mu0ChX98TRaw[Co2At3Ch2] 
+879.124 -0.106212 0.0!Mu0ChX99TRaw[Co2At3Ch3] 
+885.082 -0.106905 0.0!Mu0ChX100TRaw[Co2At3Ch4] 
+894.377 -0.108043 0.0!Mu0ChX101TRaw[Co2At3Ch5] 
+901.707 -0.108935 0.0!Mu0ChX102TRaw[Co2At3Ch6] 
+897.889 -0.108442 0.0!Mu0ChX103TRaw[Co2At3Ch7] 
+895.995 -0.108194 0.0!Mu0ChX104TRaw[Co2At3Ch8] 
+905.254 -0.109336 0.0!Mu0ChX105TRaw[Co2At3Ch9] 
+903.109 -0.109053 0.0!Mu0ChX106TRaw[Co2At3Ch10] 
+908.799 -0.109771 0.0!Mu0ChX107TRaw[Co2At3Ch11] 
+906.422 -0.109449 0.0!Mu0ChX108TRaw[Co2At3Ch12] 
+903.683 -0.109128 0.0!Mu0ChX109TRaw[Co2At3Ch13] 
+907.658 -0.109641 0.0!Mu0ChX110TRaw[Co2At3Ch14] 
+903.934 -0.109177 0.0!Mu0ChX111TRaw[Co2At3Ch15] 
+917.004 -0.109478 0.0!Mu0ChX112TRaw[Co2At3Ch16] 
+889.763 -0.107364 0.0!Mu0ChX113TRaw[Co2At4Ch1] 
+892.874 -0.107748 0.0!Mu0ChX114TRaw[Co2At4Ch2] 
+893.086 -0.107782 0.0!Mu0ChX115TRaw[Co2At4Ch3] 
+903.173 -0.109007 0.0!Mu0ChX116TRaw[Co2At4Ch4] 
+906.71 -0.109423 0.0!Mu0ChX117TRaw[Co2At4Ch5] 
+900.172 -0.108648 0.0!Mu0ChX118TRaw[Co2At4Ch6] 
+914.738 -0.110413 0.0!Mu0ChX119TRaw[Co2At4Ch7] 
+915.95 -0.110579 0.0!Mu0ChX120TRaw[Co2At4Ch8] 
+910.273 -0.109898 0.0!Mu0ChX121TRaw[Co2At4Ch9] 
+915.371 -0.1105 0.0!Mu0ChX122TRaw[Co2At4Ch10] 
+923.843 -0.111529 0.0!Mu0ChX123TRaw[Co2At4Ch11] 
+916.0 -0.110604 0.0!Mu0ChX124TRaw[Co2At4Ch12] 
+919.085 -0.110972 0.0!Mu0ChX125TRaw[Co2At4Ch13] 
+920.758 -0.11118 0.0!Mu0ChX126TRaw[Co2At4Ch14] 
+916.079 -0.110613 0.0!Mu0ChX127TRaw[Co2At4Ch15] 
+927.913 -0.111151 0.0!Mu0ChX128TRaw[Co2At4Ch16] 
+943.871 -0.114033 0.0!Mu0ChY2TRaw[Co3At1Ch2] 
+942.541 -0.113921 0.0!Mu0ChY3TRaw[Co3At1Ch3] 
+960.736 -0.116104 0.0!Mu0ChY4TRaw[Co3At1Ch4] 
+956.194 -0.115563 0.0!Mu0ChY5TRaw[Co3At1Ch5] 
+971.901 -0.117481 0.0!Mu0ChY6TRaw[Co3At1Ch6] 
+970.47 -0.117339 0.0!Mu0ChY7TRaw[Co3At1Ch7] 
+967.899 -0.117018 0.0!Mu0ChY8TRaw[Co3At1Ch8] 
+974.549 -0.117842 0.0!Mu0ChY9TRaw[Co3At1Ch9] 
+970.321 -0.117316 0.0!Mu0ChY10TRaw[Co3At1Ch10] 
+972.871 -0.117632 0.0!Mu0ChY11TRaw[Co3At1Ch11] 
+979.225 -0.118398 0.0!Mu0ChY12TRaw[Co3At1Ch12] 
+977.059 -0.11814 0.0!Mu0ChY13TRaw[Co3At1Ch13] 
+972.932 -0.117633 0.0!Mu0ChY14TRaw[Co3At1Ch14] 
+975.541 -0.117944 0.0!Mu0ChY15TRaw[Co3At1Ch15] 
+981.99 -0.118761 0.0!Mu0ChY16TRaw[Co3At1Ch16] 
+937.345 -0.113175 0.0!Mu0ChY17TRaw[Co3At2Ch1] 
+946.398 -0.114309 0.0!Mu0ChY18TRaw[Co3At2Ch2] 
+954.917 -0.115351 0.0!Mu0ChY19TRaw[Co3At2Ch3] 
+946.68 -0.11436 0.0!Mu0ChY20TRaw[Co3At2Ch4] 
+949.495 -0.114686 0.0!Mu0ChY21TRaw[Co3At2Ch5] 
+952.893 -0.115103 0.0!Mu0ChY22TRaw[Co3At2Ch6] 
+958.913 -0.115832 0.0!Mu0ChY23TRaw[Co3At2Ch7] 
+959.053 -0.115841 0.0!Mu0ChY24TRaw[Co3At2Ch8] 
+963.718 -0.116398 0.0!Mu0ChY25TRaw[Co3At2Ch9] 
+961.896 -0.116195 0.0!Mu0ChY26TRaw[Co3At2Ch10] 
+958.661 -0.115516 0.0!Mu0ChY27TRaw[Co3At2Ch11] 
+973.339 -0.117562 0.0!Mu0ChY28TRaw[Co3At2Ch12] 
+975.575 -0.117834 0.0!Mu0ChY29TRaw[Co3At2Ch13] 
+970.444 -0.11722 0.0!Mu0ChY30TRaw[Co3At2Ch14] 
+973.574 -0.11759 0.0!Mu0ChY31TRaw[Co3At2Ch15] 
+968.228 -0.116928 0.0!Mu0ChY32TRaw[Co3At2Ch16] 
+870.562 -0.105131 0.0!Mu0ChY33TRaw[Co3At3Ch1] 
+870.284 -0.105113 0.0!Mu0ChY34TRaw[Co3At3Ch2] 
+887.363 -0.107174 0.0!Mu0ChY35TRaw[Co3At3Ch3] 
+877.314 -0.105955 0.0!Mu0ChY36TRaw[Co3At3Ch4] 
+888.861 -0.107363 0.0!Mu0ChY37TRaw[Co3At3Ch5] 
+888.241 -0.107278 0.0!Mu0ChY38TRaw[Co3At3Ch6] 
+888.889 -0.107347 0.0!Mu0ChY39TRaw[Co3At3Ch7] 
+906.968 -0.109567 0.0!Mu0ChY40TRaw[Co3At3Ch8] 
+904.625 -0.109268 0.0!Mu0ChY41TRaw[Co3At3Ch9] 
+902.798 -0.109045 0.0!Mu0ChY42TRaw[Co3At3Ch10] 
+901.927 -0.108924 0.0!Mu0ChY43TRaw[Co3At3Ch11] 
+912.591 -0.110196 0.0!Mu0ChY44TRaw[Co3At3Ch12] 
+909.812 -0.109895 0.0!Mu0ChY45TRaw[Co3At3Ch13] 
+904.379 -0.10924 0.0!Mu0ChY46TRaw[Co3At3Ch14] 
+914.951 -0.110513 0.0!Mu0ChY47TRaw[Co3At3Ch15] 
+903.001 -0.109056 0.0!Mu0ChY48TRaw[Co3At3Ch16] 
+857.208 -0.103507 0.0!Mu0ChY49TRaw[Co3At4Ch1] 
+868.319 -0.104888 0.0!Mu0ChY50TRaw[Co3At4Ch2] 
+863.685 -0.104347 0.0!Mu0ChY51TRaw[Co3At4Ch3] 
+880.511 -0.106391 0.0!Mu0ChY52TRaw[Co3At4Ch4] 
+883.206 -0.106718 0.0!Mu0ChY53TRaw[Co3At4Ch5] 
+884.379 -0.106878 0.0!Mu0ChY54TRaw[Co3At4Ch6] 
+881.016 -0.106441 0.0!Mu0ChY55TRaw[Co3At4Ch7] 
+888.95 -0.107426 0.0!Mu0ChY56TRaw[Co3At4Ch8] 
+890.519 -0.107608 0.0!Mu0ChY57TRaw[Co3At4Ch9] 
+894.751 -0.108136 0.0!Mu0ChY58TRaw[Co3At4Ch10] 
+901.921 -0.109012 0.0!Mu0ChY59TRaw[Co3At4Ch11] 
+900.736 -0.108611 0.0!Mu0ChY60TRaw[Co3At4Ch12] 
+899.581 -0.108719 0.0!Mu0ChY61TRaw[Co3At4Ch13] 
+906.688 -0.109581 0.0!Mu0ChY62TRaw[Co3At4Ch14] 
+900.81 -0.108895 0.0!Mu0ChY63TRaw[Co3At4Ch15] 
+906.101 -0.109543 0.0!Mu0ChY64TRaw[Co3At4Ch16] 
+965.38 -0.116469 0.0!Mu0ChY65TRaw[Co4At1Ch1] 
+971.898 -0.117302 0.0!Mu0ChY66TRaw[Co4At1Ch2] 
+977.707 -0.118012 0.0!Mu0ChY67TRaw[Co4At1Ch3] 
+977.945 -0.118028 0.0!Mu0ChY68TRaw[Co4At1Ch4] 
+980.831 -0.118378 0.0!Mu0ChY69TRaw[Co4At1Ch5] 
+984.514 -0.118825 0.0!Mu0ChY70TRaw[Co4At1Ch6] 
+984.139 -0.118781 0.0!Mu0ChY71TRaw[Co4At1Ch7] 
+987.235 -0.119156 0.0!Mu0ChY72TRaw[Co4At1Ch8] 
+991.116 -0.119628 0.0!Mu0ChY73TRaw[Co4At1Ch9] 
+982.578 -0.118591 0.0!Mu0ChY74TRaw[Co4At1Ch10] 
+991.199 -0.119656 0.0!Mu0ChY75TRaw[Co4At1Ch11] 
+1001.66 -0.120924 0.0!Mu0ChY76TRaw[Co4At1Ch12] 
+996.91 -0.120327 0.0!Mu0ChY77TRaw[Co4At1Ch13] 
+998.977 -0.120579 0.0!Mu0ChY78TRaw[Co4At1Ch14] 
+996.138 -0.120247 0.0!Mu0ChY79TRaw[Co4At1Ch15] 
+1003.186 -0.121097 0.0!Mu0ChY80TRaw[Co4At1Ch16] 
+971.772 -0.117145 0.0!Mu0ChY81TRaw[Co4At2Ch1] 
+987.56 -0.119118 0.0!Mu0ChY82TRaw[Co4At2Ch2] 
+982.693 -0.118534 0.0!Mu0ChY83TRaw[Co4At2Ch3] 
+997.382 -0.12031 0.0!Mu0ChY84TRaw[Co4At2Ch4] 
+1001.12 -0.120777 0.0!Mu0ChY85TRaw[Co4At2Ch5] 
+1003.628 -0.121085 0.0!Mu0ChY86TRaw[Co4At2Ch6] 
+999.525 -0.120569 0.0!Mu0ChY87TRaw[Co4At2Ch7] 
+1009.866 -0.121839 0.0!Mu0ChY88TRaw[Co4At2Ch8] 
+1005.699 -0.121339 0.0!Mu0ChY89TRaw[Co4At2Ch9] 
+1016.19 -0.122592 0.0!Mu0ChY90TRaw[Co4At2Ch10] 
+1026.692 -0.123897 0.0!Mu0ChY91TRaw[Co4At2Ch11] 
+1026.458 -0.123866 0.0!Mu0ChY92TRaw[Co4At2Ch12] 
+1021.303 -0.123256 0.0!Mu0ChY93TRaw[Co4At2Ch13] 
+1025.779 -0.123786 0.0!Mu0ChY94TRaw[Co4At2Ch14] 
+1022.572 -0.123408 0.0!Mu0ChY95TRaw[Co4At2Ch15] 
+1018.35 -0.122879 0.0!Mu0ChY96TRaw[Co4At2Ch16] 
+884.199 -0.106544 0.0!Mu0ChY97TRaw[Co4At3Ch1] 
+880.563 -0.106139 0.0!Mu0ChY98TRaw[Co4At3Ch2] 
+879.514 -0.106028 0.0!Mu0ChY99TRaw[Co4At3Ch3] 
+896.148 -0.108041 0.0!Mu0ChY100TRaw[Co4At3Ch4] 
+893.439 -0.107707 0.0!Mu0ChY101TRaw[Co4At3Ch5] 
+892.231 -0.10757 0.0!Mu0ChY102TRaw[Co4At3Ch6] 
+896.756 -0.108105 0.0!Mu0ChY103TRaw[Co4At3Ch7] 
+908.766 -0.10959 0.0!Mu0ChY104TRaw[Co4At3Ch8] 
+903.356 -0.108916 0.0!Mu0ChY105TRaw[Co4At3Ch9] 
+916.719 -0.110544 0.0!Mu0ChY106TRaw[Co4At3Ch10] 
+912.113 -0.109981 0.0!Mu0ChY107TRaw[Co4At3Ch11] 
+916.451 -0.11051 0.0!Mu0ChY108TRaw[Co4At3Ch12] 
+915.868 -0.110421 0.0!Mu0ChY109TRaw[Co4At3Ch13] 
+911.388 -0.109894 0.0!Mu0ChY110TRaw[Co4At3Ch14] 
+916.911 -0.110572 0.0!Mu0ChY111TRaw[Co4At3Ch15] 
+918.844 -0.110803 0.0!Mu0ChY112TRaw[Co4At3Ch16] 
+893.651 -0.107535 0.0!Mu0ChY113TRaw[Co4At4Ch1] 
+901.081 -0.108466 0.0!Mu0ChY114TRaw[Co4At4Ch2] 
+900.586 -0.108438 0.0!Mu0ChY115TRaw[Co4At4Ch3] 
+906.547 -0.109158 0.0!Mu0ChY116TRaw[Co4At4Ch4] 
+918.22 -0.110566 0.0!Mu0ChY117TRaw[Co4At4Ch5] 
+911.401 -0.109757 0.0!Mu0ChY118TRaw[Co4At4Ch6] 
+931.26 -0.112167 0.0!Mu0ChY119TRaw[Co4At4Ch7] 
+923.034 -0.111146 0.0!Mu0ChY120TRaw[Co4At4Ch8] 
+933.197 -0.112407 0.0!Mu0ChY121TRaw[Co4At4Ch9] 
+932.718 -0.112337 0.0!Mu0ChY122TRaw[Co4At4Ch10] 
+934.415 -0.112539 0.0!Mu0ChY123TRaw[Co4At4Ch11] 
+937.954 -0.112978 0.0!Mu0ChY124TRaw[Co4At4Ch12] 
+932.468 -0.112316 0.0!Mu0ChY125TRaw[Co4At4Ch13] 
+931.414 -0.112192 0.0!Mu0ChY126TRaw[Co4At4Ch14] 
+928.457 -0.111821 0.0!Mu0ChY127TRaw[Co4At4Ch15] 
+931.38 -0.112162 0.0!Mu0ChY128TRaw[Co4At4Ch16] 
+931.243 -0.11232 0.0!Mu1ChX1TRaw[Co1At1Ch1] 
+945.084 -0.114015 0.0!Mu1ChX2TRaw[Co1At1Ch2] 
+947.562 -0.114341 0.0!Mu1ChX3TRaw[Co1At1Ch3] 
+958.911 -0.115712 0.0!Mu1ChX4TRaw[Co1At1Ch4] 
+959.274 -0.115744 0.0!Mu1ChX5TRaw[Co1At1Ch5] 
+961.121 -0.115962 0.0!Mu1ChX6TRaw[Co1At1Ch6] 
+974.613 -0.117589 0.0!Mu1ChX7TRaw[Co1At1Ch7] 
+969.703 -0.116998 0.0!Mu1ChX8TRaw[Co1At1Ch8] 
+973.909 -0.117498 0.0!Mu1ChX9TRaw[Co1At1Ch9] 
+982.972 -0.118577 0.0!Mu1ChX10TRaw[Co1At1Ch10] 
+979.25 -0.118143 0.0!Mu1ChX11TRaw[Co1At1Ch11] 
+978.727 -0.118071 0.0!Mu1ChX12TRaw[Co1At1Ch12] 
+990.788 -0.11954 0.0!Mu1ChX13TRaw[Co1At1Ch13] 
+991.407 -0.119597 0.0!Mu1ChX14TRaw[Co1At1Ch14] 
+988.337 -0.119236 0.0!Mu1ChX15TRaw[Co1At1Ch15] 
+1375.029 -0.119179 0.0!Mu1ChX16TRaw[Co1At1Ch16] 
+927.042 -0.111777 0.0!Mu1ChX17TRaw[Co1At2Ch1] 
+950.021 -0.114612 0.0!Mu1ChX18TRaw[Co1At2Ch2] 
+950.947 -0.114738 0.0!Mu1ChX19TRaw[Co1At2Ch3] 
+948.537 -0.114439 0.0!Mu1ChX20TRaw[Co1At2Ch4] 
+956.835 -0.115464 0.0!Mu1ChX21TRaw[Co1At2Ch5] 
+969.98 -0.117052 0.0!Mu1ChX22TRaw[Co1At2Ch6] 
+959.253 -0.115762 0.0!Mu1ChX23TRaw[Co1At2Ch7] 
+975.846 -0.117739 0.0!Mu1ChX24TRaw[Co1At2Ch8] 
+974.071 -0.117531 0.0!Mu1ChX25TRaw[Co1At2Ch9] 
+977.168 -0.117923 0.0!Mu1ChX26TRaw[Co1At2Ch10] 
+975.805 -0.117737 0.0!Mu1ChX27TRaw[Co1At2Ch11] 
+979.545 -0.11821 0.0!Mu1ChX28TRaw[Co1At2Ch12] 
+983.428 -0.118677 0.0!Mu1ChX29TRaw[Co1At2Ch13] 
+980.499 -0.118324 0.0!Mu1ChX30TRaw[Co1At2Ch14] 
+979.469 -0.118198 0.0!Mu1ChX31TRaw[Co1At2Ch15] 
+988.102 -0.119148 0.0!Mu1ChX32TRaw[Co1At2Ch16] 
+880.379 -0.106165 0.0!Mu1ChX33TRaw[Co1At3Ch1] 
+880.08 -0.10618 0.0!Mu1ChX34TRaw[Co1At3Ch2] 
+895.406 -0.108064 0.0!Mu1ChX35TRaw[Co1At3Ch3] 
+878.12 -0.105941 0.0!Mu1ChX36TRaw[Co1At3Ch4] 
+895.881 -0.108105 0.0!Mu1ChX37TRaw[Co1At3Ch5] 
+901.785 -0.108823 0.0!Mu1ChX38TRaw[Co1At3Ch6] 
+894.137 -0.107861 0.0!Mu1ChX39TRaw[Co1At3Ch7] 
+898.782 -0.10842 0.0!Mu1ChX40TRaw[Co1At3Ch8] 
+901.632 -0.108779 0.0!Mu1ChX41TRaw[Co1At3Ch9] 
+904.878 -0.108754 0.0!Mu1ChX42TRaw[Co1At3Ch10] 
+910.193 -0.109783 0.0!Mu1ChX43TRaw[Co1At3Ch11] 
+902.054 -0.108855 0.0!Mu1ChX44TRaw[Co1At3Ch12] 
+911.528 -0.110019 0.0!Mu1ChX45TRaw[Co1At3Ch13] 
+909.985 -0.109854 0.0!Mu1ChX46TRaw[Co1At3Ch14] 
+907.601 -0.109528 0.0!Mu1ChX47TRaw[Co1At3Ch15] 
+922.228 -0.110055 0.0!Mu1ChX48TRaw[Co1At3Ch16] 
+869.923 -0.104838 0.0!Mu1ChX49TRaw[Co1At4Ch1] 
+875.125 -0.105455 0.0!Mu1ChX50TRaw[Co1At4Ch2] 
+887.868 -0.107015 0.0!Mu1ChX51TRaw[Co1At4Ch3] 
+890.27 -0.107338 0.0!Mu1ChX52TRaw[Co1At4Ch4] 
+893.359 -0.107685 0.0!Mu1ChX53TRaw[Co1At4Ch5] 
+893.348 -0.107699 0.0!Mu1ChX54TRaw[Co1At4Ch6] 
+900.729 -0.10819 0.0!Mu1ChX55TRaw[Co1At4Ch7] 
+906.65 -0.108878 0.0!Mu1ChX56TRaw[Co1At4Ch8] 
+909.8 -0.1097 0.0!Mu1ChX57TRaw[Co1At4Ch9] 
+905.423 -0.10916 0.0!Mu1ChX58TRaw[Co1At4Ch10] 
+914.17 -0.110244 0.0!Mu1ChX59TRaw[Co1At4Ch11] 
+906.586 -0.109308 0.0!Mu1ChX60TRaw[Co1At4Ch12] 
+919.705 -0.110894 0.0!Mu1ChX61TRaw[Co1At4Ch13] 
+911.009 -0.109867 0.0!Mu1ChX62TRaw[Co1At4Ch14] 
+910.69 -0.109791 0.0!Mu1ChX63TRaw[Co1At4Ch15] 
+919.963 -0.110777 0.0!Mu1ChX64TRaw[Co1At4Ch16] 
+952.039 -0.114723 0.0!Mu1ChX65TRaw[Co2At1Ch1] 
+953.727 -0.114949 0.0!Mu1ChX66TRaw[Co2At1Ch2] 
+967.402 -0.116629 0.0!Mu1ChX67TRaw[Co2At1Ch3] 
+963.242 -0.116557 0.0!Mu1ChX68TRaw[Co2At1Ch4] 
+969.139 -0.116827 0.0!Mu1ChX69TRaw[Co2At1Ch5] 
+973.545 -0.117811 0.0!Mu1ChX70TRaw[Co2At1Ch6] 
+973.3 -0.117758 0.0!Mu1ChX71TRaw[Co2At1Ch7] 
+978.421 -0.118392 0.0!Mu1ChX72TRaw[Co2At1Ch8] 
+975.853 -0.118063 0.0!Mu1ChX73TRaw[Co2At1Ch9] 
+990.602 -0.119853 0.0!Mu1ChX74TRaw[Co2At1Ch10] 
+986.683 -0.119377 0.0!Mu1ChX75TRaw[Co2At1Ch11] 
+984.808 -0.119141 0.0!Mu1ChX76TRaw[Co2At1Ch12] 
+991.649 -0.119982 0.0!Mu1ChX77TRaw[Co2At1Ch13] 
+997.413 -0.120199 0.0!Mu1ChX78TRaw[Co2At1Ch14] 
+993.522 -0.1202 0.0!Mu1ChX79TRaw[Co2At1Ch15] 
+1382.854 -0.120722 0.0!Mu1ChX80TRaw[Co2At1Ch16] 
+973.769 -0.117775 0.0!Mu1ChX81TRaw[Co2At2Ch1] 
+975.739 -0.118024 0.0!Mu1ChX82TRaw[Co2At2Ch2] 
+984.702 -0.118652 0.0!Mu1ChX83TRaw[Co2At2Ch3] 
+998.209 -0.120307 0.0!Mu1ChX84TRaw[Co2At2Ch4] 
+993.886 -0.120215 0.0!Mu1ChX85TRaw[Co2At2Ch5] 
+1003.201 -0.121389 0.0!Mu1ChX86TRaw[Co2At2Ch6] 
+1004.641 -0.121554 0.0!Mu1ChX87TRaw[Co2At2Ch7] 
+996.555 -0.12057 0.0!Mu1ChX88TRaw[Co2At2Ch8] 
+1011.012 -0.122345 0.0!Mu1ChX89TRaw[Co2At2Ch9] 
+1013.335 -0.12261 0.0!Mu1ChX90TRaw[Co2At2Ch10] 
+1008.829 -0.122082 0.0!Mu1ChX91TRaw[Co2At2Ch11] 
+1015.054 -0.12282 0.0!Mu1ChX92TRaw[Co2At2Ch12] 
+1014.579 -0.12279 0.0!Mu1ChX93TRaw[Co2At2Ch13] 
+1017.346 -0.123127 0.0!Mu1ChX94TRaw[Co2At2Ch14] 
+1021.088 -0.123096 0.0!Mu1ChX95TRaw[Co2At2Ch15] 
+1005.091 -0.12163 0.0!Mu1ChX96TRaw[Co2At2Ch16] 
+889.567 -0.107613 0.0!Mu1ChX97TRaw[Co2At3Ch1] 
+887.661 -0.107373 0.0!Mu1ChX98TRaw[Co2At3Ch2] 
+891.391 -0.107838 0.0!Mu1ChX99TRaw[Co2At3Ch3] 
+902.766 -0.109224 0.0!Mu1ChX100TRaw[Co2At3Ch4] 
+902.54 -0.1092 0.0!Mu1ChX101TRaw[Co2At3Ch5] 
+907.648 -0.109791 0.0!Mu1ChX102TRaw[Co2At3Ch6] 
+903.145 -0.109268 0.0!Mu1ChX103TRaw[Co2At3Ch7] 
+918.818 -0.111151 0.0!Mu1ChX104TRaw[Co2At3Ch8] 
+920.016 -0.11128 0.0!Mu1ChX105TRaw[Co2At3Ch9] 
+921.413 -0.111467 0.0!Mu1ChX106TRaw[Co2At3Ch10] 
+926.201 -0.112035 0.0!Mu1ChX107TRaw[Co2At3Ch11] 
+921.77 -0.111519 0.0!Mu1ChX108TRaw[Co2At3Ch12] 
+922.63 -0.111616 0.0!Mu1ChX109TRaw[Co2At3Ch13] 
+914.413 -0.110627 0.0!Mu1ChX110TRaw[Co2At3Ch14] 
+916.972 -0.110941 0.0!Mu1ChX111TRaw[Co2At3Ch15] 
+923.713 -0.11176 0.0!Mu1ChX112TRaw[Co2At3Ch16] 
+897.837 -0.108476 0.0!Mu1ChX113TRaw[Co2At4Ch1] 
+898.652 -0.108567 0.0!Mu1ChX114TRaw[Co2At4Ch2] 
+905.902 -0.10946 0.0!Mu1ChX115TRaw[Co2At4Ch3] 
+911.452 -0.110136 0.0!Mu1ChX116TRaw[Co2At4Ch4] 
+926.396 -0.111977 0.0!Mu1ChX117TRaw[Co2At4Ch5] 
+920.897 -0.111304 0.0!Mu1ChX118TRaw[Co2At4Ch6] 
+933.101 -0.112781 0.0!Mu1ChX119TRaw[Co2At4Ch7] 
+915.617 -0.110659 0.0!Mu1ChX120TRaw[Co2At4Ch8] 
+921.125 -0.111325 0.0!Mu1ChX121TRaw[Co2At4Ch9] 
+928.617 -0.112226 0.0!Mu1ChX122TRaw[Co2At4Ch10] 
+929.597 -0.11236 0.0!Mu1ChX123TRaw[Co2At4Ch11] 
+924.845 -0.111775 0.0!Mu1ChX124TRaw[Co2At4Ch12] 
+922.311 -0.111483 0.0!Mu1ChX125TRaw[Co2At4Ch13] 
+928.291 -0.112193 0.0!Mu1ChX126TRaw[Co2At4Ch14] 
+931.58 -0.112614 0.0!Mu1ChX127TRaw[Co2At4Ch15] 
+925.581 -0.111864 0.0!Mu1ChX128TRaw[Co2At4Ch16] 
+932.035 -0.11282 0.0!Mu1ChY1TRaw[Co3At1Ch1] 
+933.495 -0.113022 0.0!Mu1ChY2TRaw[Co3At1Ch2] 
+944.411 -0.114361 0.0!Mu1ChY3TRaw[Co3At1Ch3] 
+948.375 -0.114834 0.0!Mu1ChY4TRaw[Co3At1Ch4] 
+950.778 -0.115122 0.0!Mu1ChY5TRaw[Co3At1Ch5] 
+954.172 -0.115533 0.0!Mu1ChY6TRaw[Co3At1Ch6] 
+957.549 -0.115938 0.0!Mu1ChY7TRaw[Co3At1Ch7] 
+947.562 -0.114726 0.0!Mu1ChY8TRaw[Co3At1Ch8] 
+954.965 -0.11562 0.0!Mu1ChY9TRaw[Co3At1Ch9] 
+965.207 -0.116854 0.0!Mu1ChY10TRaw[Co3At1Ch10] 
+961.189 -0.116368 0.0!Mu1ChY11TRaw[Co3At1Ch11] 
+968.97 -0.117327 0.0!Mu1ChY12TRaw[Co3At1Ch12] 
+969.302 -0.117358 0.0!Mu1ChY13TRaw[Co3At1Ch13] 
+964.945 -0.116827 0.0!Mu1ChY14TRaw[Co3At1Ch14] 
+966.214 -0.116981 0.0!Mu1ChY15TRaw[Co3At1Ch15] 
+963.966 -0.116717 0.0!Mu1ChY16TRaw[Co3At1Ch16] 
+965.888 -0.116883 0.0!Mu1ChY17TRaw[Co3At2Ch1] 
+967.684 -0.117128 0.0!Mu1ChY18TRaw[Co3At2Ch2] 
+972.15 -0.117665 0.0!Mu1ChY19TRaw[Co3At2Ch3] 
+972.745 -0.117743 0.0!Mu1ChY20TRaw[Co3At2Ch4] 
+984.112 -0.119146 0.0!Mu1ChY21TRaw[Co3At2Ch5] 
+980.877 -0.118747 0.0!Mu1ChY22TRaw[Co3At2Ch6] 
+450.0 -0.119189 0.0!Mu1ChY23TRaw[Co3At2Ch7] 
+990.666 -0.119964 0.0!Mu1ChY24TRaw[Co3At2Ch8] 
+992.259 -0.120158 0.0!Mu1ChY25TRaw[Co3At2Ch9] 
+992.41 -0.120176 0.0!Mu1ChY26TRaw[Co3At2Ch10] 
+996.766 -0.120728 0.0!Mu1ChY27TRaw[Co3At2Ch11] 
+991.746 -0.120113 0.0!Mu1ChY28TRaw[Co3At2Ch12] 
+993.587 -0.120339 0.0!Mu1ChY29TRaw[Co3At2Ch13] 
+985.064 -0.119308 0.0!Mu1ChY30TRaw[Co3At2Ch14] 
+991.596 -0.120108 0.0!Mu1ChY31TRaw[Co3At2Ch15] 
+986.445 -0.119515 0.0!Mu1ChY32TRaw[Co3At2Ch16] 
+881.012 -0.106691 0.0!Mu1ChY33TRaw[Co3At3Ch1] 
+886.766 -0.10745 0.0!Mu1ChY34TRaw[Co3At3Ch2] 
+882.204 -0.106848 0.0!Mu1ChY35TRaw[Co3At3Ch3] 
+891.854 -0.108037 0.0!Mu1ChY36TRaw[Co3At3Ch4] 
+850619310270.0 -103827000.0 0.0!Mu1ChY37TRaw[Co3At3Ch5] 
+902.417 -0.109433 0.0!Mu1ChY38TRaw[Co3At3Ch6] 
+901.585 -0.110242 0.0!Mu1ChY39TRaw[Co3At3Ch7] 
+903.595 -0.10944 0.0!Mu1ChY40TRaw[Co3At3Ch8] 
+891.657 -0.107957 0.0!Mu1ChY41TRaw[Co3At3Ch9] 
+903.952 -0.109521 0.0!Mu1ChY42TRaw[Co3At3Ch10] 
+896.803 -0.108623 0.0!Mu1ChY43TRaw[Co3At3Ch11] 
+905.625 -0.10969 0.0!Mu1ChY44TRaw[Co3At3Ch12] 
+908.281 -0.109989 0.0!Mu1ChY45TRaw[Co3At3Ch13] 
+902.33 -0.109312 0.0!Mu1ChY46TRaw[Co3At3Ch14] 
+907.41 -0.109844 0.0!Mu1ChY47TRaw[Co3At3Ch15] 
+902.089 -0.109257 0.0!Mu1ChY48TRaw[Co3At3Ch16] 
+884.479 -0.10696 0.0!Mu1ChY49TRaw[Co3At4Ch1] 
+883.474 -0.106852 0.0!Mu1ChY50TRaw[Co3At4Ch2] 
+879.998 -0.106436 0.0!Mu1ChY51TRaw[Co3At4Ch3] 
+893.146 -0.108049 0.0!Mu1ChY52TRaw[Co3At4Ch4] 
+898.884 -0.108781 0.0!Mu1ChY53TRaw[Co3At4Ch5] 
+900.108 -0.108923 0.0!Mu1ChY54TRaw[Co3At4Ch6] 
+900.099 -0.108922 0.0!Mu1ChY55TRaw[Co3At4Ch7] 
+900.287 -0.108949 0.0!Mu1ChY56TRaw[Co3At4Ch8] 
+912.19 -0.110395 0.0!Mu1ChY57TRaw[Co3At4Ch9] 
+911.3 -0.110294 0.0!Mu1ChY58TRaw[Co3At4Ch10] 
+906.773 -0.109746 0.0!Mu1ChY59TRaw[Co3At4Ch11] 
+909.678 -0.109802 0.0!Mu1ChY60TRaw[Co3At4Ch12] 
+906.734 -0.109742 0.0!Mu1ChY61TRaw[Co3At4Ch13] 
+914.732 -0.11072 0.0!Mu1ChY62TRaw[Co3At4Ch14] 
+916.102 -0.110879 0.0!Mu1ChY63TRaw[Co3At4Ch15] 
+917.148 -0.111037 0.0!Mu1ChY64TRaw[Co3At4Ch16] 
+946.855 -0.115194 0.0!Mu1ChY65TRaw[Co4At1Ch1] 
+953.644 -0.116053 0.0!Mu1ChY66TRaw[Co4At1Ch2] 
+959.75 -0.116788 0.0!Mu1ChY67TRaw[Co4At1Ch3] 
+963.24 -0.117211 0.0!Mu1ChY68TRaw[Co4At1Ch4] 
+966.608 -0.117617 0.0!Mu1ChY69TRaw[Co4At1Ch5] 
+974.806 -0.118609 0.0!Mu1ChY70TRaw[Co4At1Ch6] 
+970.229 -0.118053 0.0!Mu1ChY71TRaw[Co4At1Ch7] 
+978.318 -0.119038 0.0!Mu1ChY72TRaw[Co4At1Ch8] 
+979.408 -0.119163 0.0!Mu1ChY73TRaw[Co4At1Ch9] 
+982.639 -0.119552 0.0!Mu1ChY74TRaw[Co4At1Ch10] 
+984.456 -0.119777 0.0!Mu1ChY75TRaw[Co4At1Ch11] 
+981.379 -0.119391 0.0!Mu1ChY76TRaw[Co4At1Ch12] 
+984.651 -0.11981 0.0!Mu1ChY77TRaw[Co4At1Ch13] 
+982.31 -0.119505 0.0!Mu1ChY78TRaw[Co4At1Ch14] 
+983.007 -0.119601 0.0!Mu1ChY79TRaw[Co4At1Ch15] 
+988.01 -0.120194 0.0!Mu1ChY80TRaw[Co4At1Ch16] 
+943.199 -0.114646 0.0!Mu1ChY81TRaw[Co4At2Ch1] 
+951.261 -0.115676 0.0!Mu1ChY82TRaw[Co4At2Ch2] 
+950.217 -0.115551 0.0!Mu1ChY83TRaw[Co4At2Ch3] 
+957.193 -0.116392 0.0!Mu1ChY84TRaw[Co4At2Ch4] 
+956.711 -0.116344 0.0!Mu1ChY85TRaw[Co4At2Ch5] 
+966.907 -0.117589 0.0!Mu1ChY86TRaw[Co4At2Ch6] 
+967.784 -0.117699 0.0!Mu1ChY87TRaw[Co4At2Ch7] 
+974.973 -0.118567 0.0!Mu1ChY88TRaw[Co4At2Ch8] 
+975.931 -0.118705 0.0!Mu1ChY89TRaw[Co4At2Ch9] 
+968.629 -0.117807 0.0!Mu1ChY90TRaw[Co4At2Ch10] 
+973.17 -0.118376 0.0!Mu1ChY91TRaw[Co4At2Ch11] 
+981.206 -0.119333 0.0!Mu1ChY92TRaw[Co4At2Ch12] 
+981.863 -0.119429 0.0!Mu1ChY93TRaw[Co4At2Ch13] 
+974.832 -0.118576 0.0!Mu1ChY94TRaw[Co4At2Ch14] 
+978.651 -0.119031 0.0!Mu1ChY95TRaw[Co4At2Ch15] 
+989.899 -0.120471 0.0!Mu1ChY96TRaw[Co4At2Ch16] 
+872.47 -0.106136 0.0!Mu1ChY97TRaw[Co4At3Ch1] 
+871.244 -0.106 0.0!Mu1ChY98TRaw[Co4At3Ch2] 
+875.764 -0.106555 0.0!Mu1ChY99TRaw[Co4At3Ch3] 
+889.841 -0.108263 0.0!Mu1ChY100TRaw[Co4At3Ch4] 
+887.593 -0.10801 0.0!Mu1ChY101TRaw[Co4At3Ch5] 
+879.757 -0.107044 0.0!Mu1ChY102TRaw[Co4At3Ch6] 
+887.54 -0.108005 0.0!Mu1ChY103TRaw[Co4At3Ch7] 
+890.884 -0.108406 0.0!Mu1ChY104TRaw[Co4At3Ch8] 
+901.255 -0.109653 0.0!Mu1ChY105TRaw[Co4At3Ch9] 
+897.946 -0.10926 0.0!Mu1ChY106TRaw[Co4At3Ch10] 
+901.33 -0.10967 0.0!Mu1ChY107TRaw[Co4At3Ch11] 
+891.982 -0.108536 0.0!Mu1ChY108TRaw[Co4At3Ch12] 
+899.178 -0.109417 0.0!Mu1ChY109TRaw[Co4At3Ch13] 
+906.416 -0.110268 0.0!Mu1ChY110TRaw[Co4At3Ch14] 
+903.498 -0.109108 0.0!Mu1ChY111TRaw[Co4At3Ch15] 
+902.622 -0.109824 0.0!Mu1ChY112TRaw[Co4At3Ch16] 
+858.806 -0.104291 0.0!Mu1ChY113TRaw[Co4At4Ch1] 
+855.722 -0.103549 0.0!Mu1ChY114TRaw[Co4At4Ch2] 
+862.565 -0.104798 0.0!Mu1ChY115TRaw[Co4At4Ch3] 
+857.566 -0.10419 0.0!Mu1ChY116TRaw[Co4At4Ch4] 
+866.024 -0.105221 0.0!Mu1ChY117TRaw[Co4At4Ch5] 
+875.42 -0.106354 0.0!Mu1ChY118TRaw[Co4At4Ch6] 
+879.769 -0.1069 0.0!Mu1ChY119TRaw[Co4At4Ch7] 
+874.481 -0.106252 0.0!Mu1ChY120TRaw[Co4At4Ch8] 
+891.89 -0.108379 0.0!Mu1ChY121TRaw[Co4At4Ch9] 
+892.881 -0.108492 0.0!Mu1ChY122TRaw[Co4At4Ch10] 
+890.673 -0.108225 0.0!Mu1ChY123TRaw[Co4At4Ch11] 
+889.841 -0.108132 0.0!Mu1ChY124TRaw[Co4At4Ch12] 
+892.159 -0.108412 0.0!Mu1ChY125TRaw[Co4At4Ch13] 
+887.553 -0.10784 0.0!Mu1ChY126TRaw[Co4At4Ch14] 
+884.907 -0.107526 0.0!Mu1ChY127TRaw[Co4At4Ch15] 
+949.092 -0.121191 0.0!Mu1ChY128TRaw[Co4At4Ch16] 
+961.969 -0.113282 0.0!Mu2ChX1TRaw[Co1At1Ch1] 
+958.383 -0.112935 0.0!Mu2ChX2TRaw[Co1At1Ch2] 
+959.323 -0.113903 0.0!Mu2ChX3TRaw[Co1At1Ch3] 
+971.546 -0.11541 0.0!Mu2ChX4TRaw[Co1At1Ch4] 
+974.655 -0.114834 0.0!Mu2ChX5TRaw[Co1At1Ch5] 
+1003.683 -0.116968 0.0!Mu2ChX6TRaw[Co1At1Ch6] 
+989.279 -0.116144 0.0!Mu2ChX7TRaw[Co1At1Ch7] 
+1005.564 -0.116738 0.0!Mu2ChX8TRaw[Co1At1Ch8] 
+997.02 -0.115736 0.0!Mu2ChX9TRaw[Co1At1Ch9] 
+1009.567 -0.117191 0.0!Mu2ChX10TRaw[Co1At1Ch10] 
+1016.097 -0.117505 0.0!Mu2ChX11TRaw[Co1At1Ch11] 
+1010.396 -0.116868 0.0!Mu2ChX12TRaw[Co1At1Ch12] 
+1023.961 -0.117596 0.0!Mu2ChX13TRaw[Co1At1Ch13] 
+1021.425 -0.116864 0.0!Mu2ChX14TRaw[Co1At1Ch14] 
+1022.087 -0.116934 0.0!Mu2ChX15TRaw[Co1At1Ch15] 
+1404.789 -0.118078 0.0!Mu2ChX16TRaw[Co1At1Ch16] 
+967.642 -0.111042 0.0!Mu2ChX17TRaw[Co1At2Ch1] 
+983.495 -0.1129 0.0!Mu2ChX18TRaw[Co1At2Ch2] 
+979.424 -0.113239 0.0!Mu2ChX19TRaw[Co1At2Ch3] 
+977.956 -0.11311 0.0!Mu2ChX20TRaw[Co1At2Ch4] 
+985.742 -0.114433 0.0!Mu2ChX21TRaw[Co1At2Ch5] 
+984.648 -0.113893 0.0!Mu2ChX22TRaw[Co1At2Ch6] 
+982.48 -0.113604 0.0!Mu2ChX23TRaw[Co1At2Ch7] 
+987.397 -0.114596 0.0!Mu2ChX24TRaw[Co1At2Ch8] 
+970.925 -0.113523 0.0!Mu2ChX25TRaw[Co1At2Ch9] 
+975.832 -0.114529 0.0!Mu2ChX26TRaw[Co1At2Ch10] 
+976.316 -0.114587 0.0!Mu2ChX27TRaw[Co1At2Ch11] 
+968.817 -0.114127 0.0!Mu2ChX28TRaw[Co1At2Ch12] 
+972.791 -0.115049 0.0!Mu2ChX29TRaw[Co1At2Ch13] 
+976.306 -0.114577 0.0!Mu2ChX30TRaw[Co1At2Ch14] 
+967.35 -0.114801 0.0!Mu2ChX31TRaw[Co1At2Ch15] 
+1112.794 -0.114725 0.0!Mu2ChX32TRaw[Co1At2Ch16] 
+886.943 -0.106884 0.0!Mu2ChX33TRaw[Co1At3Ch1] 
+884.583 -0.106588 0.0!Mu2ChX34TRaw[Co1At3Ch2] 
+893.29 -0.10771 0.0!Mu2ChX35TRaw[Co1At3Ch3] 
+890.797 -0.10739 0.0!Mu2ChX36TRaw[Co1At3Ch4] 
+904.52 -0.109058 0.0!Mu2ChX37TRaw[Co1At3Ch5] 
+901.6 -0.108685 0.0!Mu2ChX38TRaw[Co1At3Ch6] 
+912.776 -0.109605 0.0!Mu2ChX39TRaw[Co1At3Ch7] 
+909.538 -0.109211 0.0!Mu2ChX40TRaw[Co1At3Ch8] 
+905.616 -0.109168 0.0!Mu2ChX41TRaw[Co1At3Ch9] 
+909.953 -0.109617 0.0!Mu2ChX42TRaw[Co1At3Ch10] 
+915.691 -0.1104 0.0!Mu2ChX43TRaw[Co1At3Ch11] 
+914.614 -0.110254 0.0!Mu2ChX44TRaw[Co1At3Ch12] 
+922.657 -0.111219 0.0!Mu2ChX45TRaw[Co1At3Ch13] 
+921.084 -0.111043 0.0!Mu2ChX46TRaw[Co1At3Ch14] 
+924.127 -0.111378 0.0!Mu2ChX47TRaw[Co1At3Ch15] 
+1314.501 -0.11089 0.0!Mu2ChX48TRaw[Co1At3Ch16] 
+855.885 -0.102956 0.0!Mu2ChX49TRaw[Co1At4Ch1] 
+865.811 -0.104191 0.0!Mu2ChX50TRaw[Co1At4Ch2] 
+875.413 -0.105362 0.0!Mu2ChX51TRaw[Co1At4Ch3] 
+869.6 -0.10464 0.0!Mu2ChX52TRaw[Co1At4Ch4] 
+878.692 -0.105723 0.0!Mu2ChX53TRaw[Co1At4Ch5] 
+878.801 -0.105755 0.0!Mu2ChX54TRaw[Co1At4Ch6] 
+880.829 -0.105984 0.0!Mu2ChX55TRaw[Co1At4Ch7] 
+888.51 -0.106931 0.0!Mu2ChX56TRaw[Co1At4Ch8] 
+897.44 -0.108024 0.0!Mu2ChX57TRaw[Co1At4Ch9] 
+903.488 -0.108307 0.0!Mu2ChX58TRaw[Co1At4Ch10] 
+891.54 -0.107279 0.0!Mu2ChX59TRaw[Co1At4Ch11] 
+901.749 -0.108543 0.0!Mu2ChX60TRaw[Co1At4Ch12] 
+903.111 -0.108721 0.0!Mu2ChX61TRaw[Co1At4Ch13] 
+902.871 -0.108665 0.0!Mu2ChX62TRaw[Co1At4Ch14] 
+899.187 -0.10824 0.0!Mu2ChX63TRaw[Co1At4Ch15] 
+1290.423 -0.107885 0.0!Mu2ChX64TRaw[Co1At4Ch16] 
+974.417 -0.117533 0.0!Mu2ChX65TRaw[Co2At1Ch1] 
+974.467 -0.117545 0.0!Mu2ChX66TRaw[Co2At1Ch2] 
+982.266 -0.118957 0.0!Mu2ChX67TRaw[Co2At1Ch3] 
+987.279 -0.119584 0.0!Mu2ChX68TRaw[Co2At1Ch4] 
+450.0 -0.119902 0.0!Mu2ChX69TRaw[Co2At1Ch5] 
+994.768 -0.12002 0.0!Mu2ChX70TRaw[Co2At1Ch6] 
+996.07 -0.120171 0.0!Mu2ChX71TRaw[Co2At1Ch7] 
+1001.148 -0.120802 0.0!Mu2ChX72TRaw[Co2At1Ch8] 
+990.627 -0.119977 0.0!Mu2ChX73TRaw[Co2At1Ch9] 
+1007.159 -0.12102 0.0!Mu2ChX74TRaw[Co2At1Ch10] 
+995.316 -0.12055 0.0!Mu2ChX75TRaw[Co2At1Ch11] 
+995.021 -0.12048 0.0!Mu2ChX76TRaw[Co2At1Ch12] 
+1004.692 -0.121688 0.0!Mu2ChX77TRaw[Co2At1Ch13] 
+1008.471 -0.122136 0.0!Mu2ChX78TRaw[Co2At1Ch14] 
+1011.105 -0.122472 0.0!Mu2ChX79TRaw[Co2At1Ch15] 
+1326.05 -0.121488 0.0!Mu2ChX80TRaw[Co2At1Ch16] 
+951.951 -0.115148 0.0!Mu2ChX81TRaw[Co2At2Ch1] 
+962.967 -0.116512 0.0!Mu2ChX82TRaw[Co2At2Ch2] 
+964.814 -0.116735 0.0!Mu2ChX83TRaw[Co2At2Ch3] 
+968.296 -0.117158 0.0!Mu2ChX84TRaw[Co2At2Ch4] 
+968.369 -0.117159 0.0!Mu2ChX85TRaw[Co2At2Ch5] 
+969.781 -0.117336 0.0!Mu2ChX86TRaw[Co2At2Ch6] 
+990.877 -0.118997 0.0!Mu2ChX87TRaw[Co2At2Ch7] 
+986.288 -0.118879 0.0!Mu2ChX88TRaw[Co2At2Ch8] 
+992.984 -0.120152 0.0!Mu2ChX89TRaw[Co2At2Ch9] 
+996.567 -0.120143 0.0!Mu2ChX90TRaw[Co2At2Ch10] 
+995.578 -0.120011 0.0!Mu2ChX91TRaw[Co2At2Ch11] 
+989.666 -0.118788 0.0!Mu2ChX92TRaw[Co2At2Ch12] 
+1002.901 -0.120614 0.0!Mu2ChX93TRaw[Co2At2Ch13] 
+1000.682 -0.12112 0.0!Mu2ChX94TRaw[Co2At2Ch14] 
+1005.506 -0.12123 0.0!Mu2ChX95TRaw[Co2At2Ch15] 
+994.062 -0.119394 0.0!Mu2ChX96TRaw[Co2At2Ch16] 
+903.468 -0.10895 0.0!Mu2ChX97TRaw[Co2At3Ch1] 
+920.18 -0.11099 0.0!Mu2ChX98TRaw[Co2At3Ch2] 
+919.46 -0.110483 0.0!Mu2ChX99TRaw[Co2At3Ch3] 
+916.305 -0.110494 0.0!Mu2ChX100TRaw[Co2At3Ch4] 
+925.516 -0.11163 0.0!Mu2ChX101TRaw[Co2At3Ch5] 
+924.994 -0.111573 0.0!Mu2ChX102TRaw[Co2At3Ch6] 
+926.844 -0.111368 0.0!Mu2ChX103TRaw[Co2At3Ch7] 
+927.713 -0.111888 0.0!Mu2ChX104TRaw[Co2At3Ch8] 
+934.246 -0.113122 0.0!Mu2ChX105TRaw[Co2At3Ch9] 
+942.1 -0.112764 0.0!Mu2ChX106TRaw[Co2At3Ch10] 
+939.807 -0.113373 0.0!Mu2ChX107TRaw[Co2At3Ch11] 
+938.544 -0.112797 0.0!Mu2ChX108TRaw[Co2At3Ch12] 
+938.298 -0.113176 0.0!Mu2ChX109TRaw[Co2At3Ch13] 
+941.18 -0.113973 0.0!Mu2ChX110TRaw[Co2At3Ch14] 
+941.929 -0.114066 0.0!Mu2ChX111TRaw[Co2At3Ch15] 
+948.461 -0.113973 0.0!Mu2ChX112TRaw[Co2At3Ch16] 
+911.72 -0.108961 0.0!Mu2ChX113TRaw[Co2At4Ch1] 
+916.448 -0.109531 0.0!Mu2ChX114TRaw[Co2At4Ch2] 
+913.525 -0.110461 0.0!Mu2ChX115TRaw[Co2At4Ch3] 
+916.767 -0.110414 0.0!Mu2ChX116TRaw[Co2At4Ch4] 
+932.449 -0.112323 0.0!Mu2ChX117TRaw[Co2At4Ch5] 
+935.405 -0.11267 0.0!Mu2ChX118TRaw[Co2At4Ch6] 
+951.71 -0.113333 0.0!Mu2ChX119TRaw[Co2At4Ch7] 
+947.484 -0.113698 0.0!Mu2ChX120TRaw[Co2At4Ch8] 
+940.04 -0.113666 0.0!Mu2ChX121TRaw[Co2At4Ch9] 
+955.99 -0.114745 0.0!Mu2ChX122TRaw[Co2At4Ch10] 
+950.863 -0.113673 0.0!Mu2ChX123TRaw[Co2At4Ch11] 
+957.151 -0.11443 0.0!Mu2ChX124TRaw[Co2At4Ch12] 
+939.375 -0.113174 0.0!Mu2ChX125TRaw[Co2At4Ch13] 
+935.68 -0.113143 0.0!Mu2ChX126TRaw[Co2At4Ch14] 
+947.829 -0.114176 0.0!Mu2ChX127TRaw[Co2At4Ch15] 
+954.772 -0.114186 0.0!Mu2ChX128TRaw[Co2At4Ch16] 
+986.809 -0.119525 0.0!Mu2ChY1TRaw[Co3At1Ch1] 
+989.707 -0.119903 0.0!Mu2ChY2TRaw[Co3At1Ch2] 
+988.424 -0.119776 0.0!Mu2ChY3TRaw[Co3At1Ch3] 
+994.772 -0.120524 0.0!Mu2ChY4TRaw[Co3At1Ch4] 
+1000.112 -0.121165 0.0!Mu2ChY5TRaw[Co3At1Ch5] 
+998.216 -0.120947 0.0!Mu2ChY6TRaw[Co3At1Ch6] 
+1003.137 -0.121526 0.0!Mu2ChY7TRaw[Co3At1Ch7] 
+1010.151 -0.122366 0.0!Mu2ChY8TRaw[Co3At1Ch8] 
+1011.59 -0.122539 0.0!Mu2ChY9TRaw[Co3At1Ch9] 
+1003.181 -0.121307 0.0!Mu2ChY10TRaw[Co3At1Ch10] 
+1009.494 -0.122275 0.0!Mu2ChY11TRaw[Co3At1Ch11] 
+1014.568 -0.122898 0.0!Mu2ChY12TRaw[Co3At1Ch12] 
+1016.416 -0.12312 0.0!Mu2ChY13TRaw[Co3At1Ch13] 
+1021.48 -0.123746 0.0!Mu2ChY14TRaw[Co3At1Ch14] 
+1020.595 -0.123621 0.0!Mu2ChY15TRaw[Co3At1Ch15] 
+1025.592 -0.123744 0.0!Mu2ChY16TRaw[Co3At1Ch16] 
+939.197 -0.113632 0.0!Mu2ChY17TRaw[Co3At2Ch1] 
+938.486 -0.11359 0.0!Mu2ChY18TRaw[Co3At2Ch2] 
+938.117 -0.113546 0.0!Mu2ChY19TRaw[Co3At2Ch3] 
+937.753 -0.113526 0.0!Mu2ChY20TRaw[Co3At2Ch4] 
+952.829 -0.115367 0.0!Mu2ChY21TRaw[Co3At2Ch5] 
+968.723 -0.117305 0.0!Mu2ChY22TRaw[Co3At2Ch6] 
+964.707 -0.11682 0.0!Mu2ChY23TRaw[Co3At2Ch7] 
+959.632 -0.116216 0.0!Mu2ChY24TRaw[Co3At2Ch8] 
+975.259 -0.118134 0.0!Mu2ChY25TRaw[Co3At2Ch9] 
+977.951 -0.118446 0.0!Mu2ChY26TRaw[Co3At2Ch10] 
+975.198 -0.117858 0.0!Mu2ChY27TRaw[Co3At2Ch11] 
+981.828 -0.11895 0.0!Mu2ChY28TRaw[Co3At2Ch12] 
+976.046 -0.118238 0.0!Mu2ChY29TRaw[Co3At2Ch13] 
+977.812 -0.118468 0.0!Mu2ChY30TRaw[Co3At2Ch14] 
+976.59 -0.118337 0.0!Mu2ChY31TRaw[Co3At2Ch15] 
+964.767 -0.116905 0.0!Mu2ChY32TRaw[Co3At2Ch16] 
+869.429 -0.105393 0.0!Mu2ChY33TRaw[Co3At3Ch1] 
+876.222 -0.106206 0.0!Mu2ChY34TRaw[Co3At3Ch2] 
+892.019 -0.107711 0.0!Mu2ChY35TRaw[Co3At3Ch3] 
+893.32 -0.10786 0.0!Mu2ChY36TRaw[Co3At3Ch4] 
+893.254 -0.108297 0.0!Mu2ChY37TRaw[Co3At3Ch5] 
+887.737 -0.107628 0.0!Mu2ChY38TRaw[Co3At3Ch6] 
+903.996 -0.109574 0.0!Mu2ChY39TRaw[Co3At3Ch7] 
+902.76 -0.109401 0.0!Mu2ChY40TRaw[Co3At3Ch8] 
+905.554 -0.109756 0.0!Mu2ChY41TRaw[Co3At3Ch9] 
+910.354 -0.110304 0.0!Mu2ChY42TRaw[Co3At3Ch10] 
+906.017 -0.10979 0.0!Mu2ChY43TRaw[Co3At3Ch11] 
+909.731 -0.110231 0.0!Mu2ChY44TRaw[Co3At3Ch12] 
+912.223 -0.110532 0.0!Mu2ChY45TRaw[Co3At3Ch13] 
+915.291 -0.110907 0.0!Mu2ChY46TRaw[Co3At3Ch14] 
+919.13 -0.111371 0.0!Mu2ChY47TRaw[Co3At3Ch15] 
+914.361 -0.110791 0.0!Mu2ChY48TRaw[Co3At3Ch16] 
+892.707 -0.108016 0.0!Mu2ChY49TRaw[Co3At4Ch1] 
+901.908 -0.109155 0.0!Mu2ChY50TRaw[Co3At4Ch2] 
+899.294 -0.108834 0.0!Mu2ChY51TRaw[Co3At4Ch3] 
+912.773 -0.110471 0.0!Mu2ChY52TRaw[Co3At4Ch4] 
+905.427 -0.109622 0.0!Mu2ChY53TRaw[Co3At4Ch5] 
+914.293 -0.110708 0.0!Mu2ChY54TRaw[Co3At4Ch6] 
+917.644 -0.111116 0.0!Mu2ChY55TRaw[Co3At4Ch7] 
+913.315 -0.11061 0.0!Mu2ChY56TRaw[Co3At4Ch8] 
+926.108 -0.11216 0.0!Mu2ChY57TRaw[Co3At4Ch9] 
+917.422 -0.111079 0.0!Mu2ChY58TRaw[Co3At4Ch10] 
+919.823 -0.111393 0.0!Mu2ChY59TRaw[Co3At4Ch11] 
+923.686 -0.11168 0.0!Mu2ChY60TRaw[Co3At4Ch12] 
+939.831 -0.11386 0.0!Mu2ChY61TRaw[Co3At4Ch13] 
+928.854 -0.112068 0.0!Mu2ChY62TRaw[Co3At4Ch14] 
+921.381 -0.111623 0.0!Mu2ChY63TRaw[Co3At4Ch15] 
+929.377 -0.112593 0.0!Mu2ChY64TRaw[Co3At4Ch16] 
+925.209 -0.111864 0.0!Mu2ChY65TRaw[Co4At1Ch1] 
+944.461 -0.114242 0.0!Mu2ChY66TRaw[Co4At1Ch2] 
+948.829 -0.114763 0.0!Mu2ChY67TRaw[Co4At1Ch3] 
+946.46 -0.114477 0.0!Mu2ChY68TRaw[Co4At1Ch4] 
+972.881 -0.117701 0.0!Mu2ChY69TRaw[Co4At1Ch5] 
+960.964 -0.116242 0.0!Mu2ChY70TRaw[Co4At1Ch6] 
+968.396 -0.117144 0.0!Mu2ChY71TRaw[Co4At1Ch7] 
+965.324 -0.116783 0.0!Mu2ChY72TRaw[Co4At1Ch8] 
+956.836 -0.115747 0.0!Mu2ChY73TRaw[Co4At1Ch9] 
+958.888 -0.115989 0.0!Mu2ChY74TRaw[Co4At1Ch10] 
+965.259 -0.116762 0.0!Mu2ChY75TRaw[Co4At1Ch11] 
+978.071 -0.118324 0.0!Mu2ChY76TRaw[Co4At1Ch12] 
+974.474 -0.117892 0.0!Mu2ChY77TRaw[Co4At1Ch13] 
+977.064 -0.118194 0.0!Mu2ChY78TRaw[Co4At1Ch14] 
+967.826 -0.117092 0.0!Mu2ChY79TRaw[Co4At1Ch15] 
+969.895 -0.117343 0.0!Mu2ChY80TRaw[Co4At1Ch16] 
+945.396 -0.114246 0.0!Mu2ChY81TRaw[Co4At2Ch1] 
+939.845 -0.113582 0.0!Mu2ChY82TRaw[Co4At2Ch2] 
+951.951 -0.115097 0.0!Mu2ChY83TRaw[Co4At2Ch3] 
+947.601 -0.114574 0.0!Mu2ChY84TRaw[Co4At2Ch4] 
+956.462 -0.115653 0.0!Mu2ChY85TRaw[Co4At2Ch5] 
+966.795 -0.11692 0.0!Mu2ChY86TRaw[Co4At2Ch6] 
+965.068 -0.116695 0.0!Mu2ChY87TRaw[Co4At2Ch7] 
+970.746 -0.117388 0.0!Mu2ChY88TRaw[Co4At2Ch8] 
+973.531 -0.117739 0.0!Mu2ChY89TRaw[Co4At2Ch9] 
+975.469 -0.11797 0.0!Mu2ChY90TRaw[Co4At2Ch10] 
+979.918 -0.118525 0.0!Mu2ChY91TRaw[Co4At2Ch11] 
+970.565 -0.117371 0.0!Mu2ChY92TRaw[Co4At2Ch12] 
+978.32 -0.118331 0.0!Mu2ChY93TRaw[Co4At2Ch13] 
+977.975 -0.118283 0.0!Mu2ChY94TRaw[Co4At2Ch14] 
+985.51 -0.119174 0.0!Mu2ChY95TRaw[Co4At2Ch15] 
+990.075 -0.119806 0.0!Mu2ChY96TRaw[Co4At2Ch16] 
+898.373 -0.108639 0.0!Mu2ChY97TRaw[Co4At3Ch1] 
+894.37 -0.108189 0.0!Mu2ChY98TRaw[Co4At3Ch2] 
+904.896 -0.109474 0.0!Mu2ChY99TRaw[Co4At3Ch3] 
+903.57 -0.109308 0.0!Mu2ChY100TRaw[Co4At3Ch4] 
+917.463 -0.110997 0.0!Mu2ChY101TRaw[Co4At3Ch5] 
+925.187 -0.111938 0.0!Mu2ChY102TRaw[Co4At3Ch6] 
+915.403 -0.110746 0.0!Mu2ChY103TRaw[Co4At3Ch7] 
+931.348 -0.112691 0.0!Mu2ChY104TRaw[Co4At3Ch8] 
+925.85 -0.112025 0.0!Mu2ChY105TRaw[Co4At3Ch9] 
+921.698 -0.111507 0.0!Mu2ChY106TRaw[Co4At3Ch10] 
+922.879 -0.111663 0.0!Mu2ChY107TRaw[Co4At3Ch11] 
+922.629 -0.111623 0.0!Mu2ChY108TRaw[Co4At3Ch12] 
+926.153 -0.112066 0.0!Mu2ChY109TRaw[Co4At3Ch13] 
+926.883 -0.11214 0.0!Mu2ChY110TRaw[Co4At3Ch14] 
+923.148 -0.111703 0.0!Mu2ChY111TRaw[Co4At3Ch15] 
+913.683 -0.110525 0.0!Mu2ChY112TRaw[Co4At3Ch16] 
+853.746 -0.102981 0.0!Mu2ChY113TRaw[Co4At4Ch1] 
+869.715 -0.104976 0.0!Mu2ChY114TRaw[Co4At4Ch2] 
+877.625 -0.105936 0.0!Mu2ChY115TRaw[Co4At4Ch3] 
+876.055 -0.10575 0.0!Mu2ChY116TRaw[Co4At4Ch4] 
+884.136 -0.106741 0.0!Mu2ChY117TRaw[Co4At4Ch5] 
+880.455 -0.10628 0.0!Mu2ChY118TRaw[Co4At4Ch6] 
+892.866 -0.107805 0.0!Mu2ChY119TRaw[Co4At4Ch7] 
+894.388 -0.107966 0.0!Mu2ChY120TRaw[Co4At4Ch8] 
+884.377 -0.106759 0.0!Mu2ChY121TRaw[Co4At4Ch9] 
+897.709 -0.108381 0.0!Mu2ChY122TRaw[Co4At4Ch10] 
+896.178 -0.108195 0.0!Mu2ChY123TRaw[Co4At4Ch11] 
+1336.153 -0.108195 0.0!Mu2ChY124TRaw[Co4At4Ch12] 
+898.806 -0.108519 0.0!Mu2ChY125TRaw[Co4At4Ch13] 
+899.754 -0.10863 0.0!Mu2ChY126TRaw[Co4At4Ch14] 
+900.898 -0.108768 0.0!Mu2ChY127TRaw[Co4At4Ch15] 
+897.019 -0.108297 0.0!Mu2ChY128TRaw[Co4At4Ch16] 
+937.706 -0.113591 0.0!Mu3ChX1TRaw[Co1At1Ch1] 
+951.022 -0.115254 0.0!Mu3ChX2TRaw[Co1At1Ch2] 
+955.557 -0.115822 0.0!Mu3ChX3TRaw[Co1At1Ch3] 
+957.459 -0.116042 0.0!Mu3ChX4TRaw[Co1At1Ch4] 
+949.588 -0.115096 0.0!Mu3ChX5TRaw[Co1At1Ch5] 
+964.137 -0.11686 0.0!Mu3ChX6TRaw[Co1At1Ch6] 
+968.553 -0.117385 0.0!Mu3ChX7TRaw[Co1At1Ch7] 
+973.749 -0.118019 0.0!Mu3ChX8TRaw[Co1At1Ch8] 
+971.88 -0.117779 0.0!Mu3ChX9TRaw[Co1At1Ch9] 
+969.707 -0.117496 0.0!Mu3ChX10TRaw[Co1At1Ch10] 
+972.087 -0.117795 0.0!Mu3ChX11TRaw[Co1At1Ch11] 
+984.307 -0.119273 0.0!Mu3ChX12TRaw[Co1At1Ch12] 
+974.064 -0.118031 0.0!Mu3ChX13TRaw[Co1At1Ch13] 
+984.118 -0.118805 0.0!Mu3ChX14TRaw[Co1At1Ch14] 
+981.761 -0.118524 0.0!Mu3ChX15TRaw[Co1At1Ch15] 
+1355.602 -0.119127 0.0!Mu3ChX16TRaw[Co1At1Ch16] 
+966.58 -0.117029 0.0!Mu3ChX17TRaw[Co1At2Ch1] 
+962.788 -0.116582 0.0!Mu3ChX18TRaw[Co1At2Ch2] 
+981.303 -0.11886 0.0!Mu3ChX19TRaw[Co1At2Ch3] 
+977.619 -0.118386 0.0!Mu3ChX20TRaw[Co1At2Ch4] 
+984.275 -0.119229 0.0!Mu3ChX21TRaw[Co1At2Ch5] 
+991.6 -0.120114 0.0!Mu3ChX22TRaw[Co1At2Ch6] 
+984.029 -0.119177 0.0!Mu3ChX23TRaw[Co1At2Ch7] 
+988.571 -0.119693 0.0!Mu3ChX24TRaw[Co1At2Ch8] 
+986.236 -0.119405 0.0!Mu3ChX25TRaw[Co1At2Ch9] 
+987.105 -0.119523 0.0!Mu3ChX26TRaw[Co1At2Ch10] 
+1000.177 -0.12115 0.0!Mu3ChX27TRaw[Co1At2Ch11] 
+996.481 -0.120628 0.0!Mu3ChX28TRaw[Co1At2Ch12] 
+1006.483 -0.121885 0.0!Mu3ChX29TRaw[Co1At2Ch13] 
+999.637 -0.121035 0.0!Mu3ChX30TRaw[Co1At2Ch14] 
+1001.415 -0.121233 0.0!Mu3ChX31TRaw[Co1At2Ch15] 
+996.052 -0.120654 0.0!Mu3ChX32TRaw[Co1At2Ch16] 
+897.362 -0.108693 0.0!Mu3ChX33TRaw[Co1At3Ch1] 
+903.544 -0.109485 0.0!Mu3ChX34TRaw[Co1At3Ch2] 
+911.3 -0.110421 0.0!Mu3ChX35TRaw[Co1At3Ch3] 
+904.196 -0.109588 0.0!Mu3ChX36TRaw[Co1At3Ch4] 
+910.234 -0.110301 0.0!Mu3ChX37TRaw[Co1At3Ch5] 
+918.604 -0.111327 0.0!Mu3ChX38TRaw[Co1At3Ch6] 
+920.229 -0.111495 0.0!Mu3ChX39TRaw[Co1At3Ch7] 
+928.519 -0.112521 0.0!Mu3ChX40TRaw[Co1At3Ch8] 
+939.957 -0.11347 0.0!Mu3ChX41TRaw[Co1At3Ch9] 
+930.046 -0.112717 0.0!Mu3ChX42TRaw[Co1At3Ch10] 
+927.244 -0.112335 0.0!Mu3ChX43TRaw[Co1At3Ch11] 
+450.0 -0.112964 0.0!Mu3ChX44TRaw[Co1At3Ch12] 
+934.478 -0.113245 0.0!Mu3ChX45TRaw[Co1At3Ch13] 
+928.905 -0.11258 0.0!Mu3ChX46TRaw[Co1At3Ch14] 
+936.312 -0.113476 0.0!Mu3ChX47TRaw[Co1At3Ch15] 
+939.273 -0.113256 0.0!Mu3ChX48TRaw[Co1At3Ch16] 
+865.36 -0.104661 0.0!Mu3ChX49TRaw[Co1At4Ch1] 
+865.371 -0.104634 0.0!Mu3ChX50TRaw[Co1At4Ch2] 
+877.555 -0.106155 0.0!Mu3ChX51TRaw[Co1At4Ch3] 
+887.444 -0.107364 0.0!Mu3ChX52TRaw[Co1At4Ch4] 
+887.74 -0.107368 0.0!Mu3ChX53TRaw[Co1At4Ch5] 
+883.821 -0.106861 0.0!Mu3ChX54TRaw[Co1At4Ch6] 
+896.087 -0.108382 0.0!Mu3ChX55TRaw[Co1At4Ch7] 
+902.558 -0.108733 0.0!Mu3ChX56TRaw[Co1At4Ch8] 
+896.518 -0.10844 0.0!Mu3ChX57TRaw[Co1At4Ch9] 
+902.089 -0.10908 0.0!Mu3ChX58TRaw[Co1At4Ch10] 
+897.546 -0.108538 0.0!Mu3ChX59TRaw[Co1At4Ch11] 
+897.158 -0.10849 0.0!Mu3ChX60TRaw[Co1At4Ch12] 
+903.89 -0.109312 0.0!Mu3ChX61TRaw[Co1At4Ch13] 
+904.833 -0.109445 0.0!Mu3ChX62TRaw[Co1At4Ch14] 
+891.475 -0.107803 0.0!Mu3ChX63TRaw[Co1At4Ch15] 
+913.702 -0.108862 0.0!Mu3ChX64TRaw[Co1At4Ch16] 
+983.39 -0.119126 0.0!Mu3ChX65TRaw[Co2At1Ch1] 
+988.575 -0.119789 0.0!Mu3ChX66TRaw[Co2At1Ch2] 
+988.908 -0.119851 0.0!Mu3ChX67TRaw[Co2At1Ch3] 
+1004.692 -0.121753 0.0!Mu3ChX68TRaw[Co2At1Ch4] 
+1005.147 -0.121824 0.0!Mu3ChX69TRaw[Co2At1Ch5] 
+1002.098 -0.121446 0.0!Mu3ChX70TRaw[Co2At1Ch6] 
+1005.767 -0.121893 0.0!Mu3ChX71TRaw[Co2At1Ch7] 
+1009.556 -0.122347 0.0!Mu3ChX72TRaw[Co2At1Ch8] 
+1005.62 -0.121883 0.0!Mu3ChX73TRaw[Co2At1Ch9] 
+1012.529 -0.122684 0.0!Mu3ChX74TRaw[Co2At1Ch10] 
+1020.904 -0.123722 0.0!Mu3ChX75TRaw[Co2At1Ch11] 
+1030.908 -0.124938 0.0!Mu3ChX76TRaw[Co2At1Ch12] 
+1012.471 -0.122709 0.0!Mu3ChX77TRaw[Co2At1Ch13] 
+1012.229 -0.12265 0.0!Mu3ChX78TRaw[Co2At1Ch14] 
+1023.673 -0.124061 0.0!Mu3ChX79TRaw[Co2At1Ch15] 
+1391.931 -0.123313 0.0!Mu3ChX80TRaw[Co2At1Ch16] 
+940.841 -0.11381 0.0!Mu3ChX81TRaw[Co2At2Ch1] 
+946.588 -0.114558 0.0!Mu3ChX82TRaw[Co2At2Ch2] 
+950.194 -0.114986 0.0!Mu3ChX83TRaw[Co2At2Ch3] 
+948.521 -0.114804 0.0!Mu3ChX84TRaw[Co2At2Ch4] 
+963.462 -0.116619 0.0!Mu3ChX85TRaw[Co2At2Ch5] 
+966.195 -0.11693 0.0!Mu3ChX86TRaw[Co2At2Ch6] 
+960.94 -0.116299 0.0!Mu3ChX87TRaw[Co2At2Ch7] 
+965.913 -0.116863 0.0!Mu3ChX88TRaw[Co2At2Ch8] 
+976.593 -0.118161 0.0!Mu3ChX89TRaw[Co2At2Ch9] 
+973.009 -0.117687 0.0!Mu3ChX90TRaw[Co2At2Ch10] 
+977.734 -0.118304 0.0!Mu3ChX91TRaw[Co2At2Ch11] 
+985.665 -0.119256 0.0!Mu3ChX92TRaw[Co2At2Ch12] 
+985.146 -0.119241 0.0!Mu3ChX93TRaw[Co2At2Ch13] 
+985.012 -0.119186 0.0!Mu3ChX94TRaw[Co2At2Ch14] 
+982.369 -0.118879 0.0!Mu3ChX95TRaw[Co2At2Ch15] 
+979.215 -0.118278 0.0!Mu3ChX96TRaw[Co2At2Ch16] 
+860.4 -0.104124 0.0!Mu3ChX97TRaw[Co2At3Ch1] 
+865.127 -0.104728 0.0!Mu3ChX98TRaw[Co2At3Ch2] 
+865.22 -0.104753 0.0!Mu3ChX99TRaw[Co2At3Ch3] 
+871.419 -0.105492 0.0!Mu3ChX100TRaw[Co2At3Ch4] 
+881.125 -0.106693 0.0!Mu3ChX101TRaw[Co2At3Ch5] 
+876.452 -0.10614 0.0!Mu3ChX102TRaw[Co2At3Ch6] 
+881.321 -0.106708 0.0!Mu3ChX103TRaw[Co2At3Ch7] 
+880.324 -0.106567 0.0!Mu3ChX104TRaw[Co2At3Ch8] 
+889.289 -0.107671 0.0!Mu3ChX105TRaw[Co2At3Ch9] 
+893.959 -0.108216 0.0!Mu3ChX106TRaw[Co2At3Ch10] 
+885.863 -0.107225 0.0!Mu3ChX107TRaw[Co2At3Ch11] 
+896.508 -0.108561 0.0!Mu3ChX108TRaw[Co2At3Ch12] 
+899.197 -0.108609 0.0!Mu3ChX109TRaw[Co2At3Ch13] 
+893.469 -0.108191 0.0!Mu3ChX110TRaw[Co2At3Ch14] 
+902.937 -0.109337 0.0!Mu3ChX111TRaw[Co2At3Ch15] 
+903.612 -0.108709 0.0!Mu3ChX112TRaw[Co2At3Ch16] 
+857.827 -0.103629 0.0!Mu3ChX113TRaw[Co2At4Ch1] 
+867.282 -0.10481 0.0!Mu3ChX114TRaw[Co2At4Ch2] 
+867.634 -0.1049 0.0!Mu3ChX115TRaw[Co2At4Ch3] 
+874.129 -0.105647 0.0!Mu3ChX116TRaw[Co2At4Ch4] 
+1490.122 -0.126949 0.0!Mu3ChX117TRaw[Co2At4Ch5] 
+878.327 -0.106145 0.0!Mu3ChX118TRaw[Co2At4Ch6] 
+885.367 -0.107055 0.0!Mu3ChX119TRaw[Co2At4Ch7] 
+883.353 -0.10675 0.0!Mu3ChX120TRaw[Co2At4Ch8] 
+886.421 -0.107137 0.0!Mu3ChX121TRaw[Co2At4Ch9] 
+890.231 -0.107599 0.0!Mu3ChX122TRaw[Co2At4Ch10] 
+886.118 -0.107093 0.0!Mu3ChX123TRaw[Co2At4Ch11] 
+895.704 -0.108252 0.0!Mu3ChX124TRaw[Co2At4Ch12] 
+889.898 -0.107522 0.0!Mu3ChX125TRaw[Co2At4Ch13] 
+896.281 -0.108336 0.0!Mu3ChX126TRaw[Co2At4Ch14] 
+883.682 -0.106793 0.0!Mu3ChX127TRaw[Co2At4Ch15] 
+895.669 -0.107896 0.0!Mu3ChX128TRaw[Co2At4Ch16] 
+918.076 -0.11121 0.0!Mu3ChY1TRaw[Co3At1Ch1] 
+925.701 -0.112154 0.0!Mu3ChY2TRaw[Co3At1Ch2] 
+934.638 -0.113241 0.0!Mu3ChY3TRaw[Co3At1Ch3] 
+944.313 -0.114409 0.0!Mu3ChY4TRaw[Co3At1Ch4] 
+941.286 -0.114032 0.0!Mu3ChY5TRaw[Co3At1Ch5] 
+949.429 -0.114994 0.0!Mu3ChY6TRaw[Co3At1Ch6] 
+953.873 -0.115552 0.0!Mu3ChY7TRaw[Co3At1Ch7] 
+954.095 -0.115546 0.0!Mu3ChY8TRaw[Co3At1Ch8] 
+961.819 -0.116506 0.0!Mu3ChY9TRaw[Co3At1Ch9] 
+966.084 -0.117006 0.0!Mu3ChY10TRaw[Co3At1Ch10] 
+968.231 -0.117251 0.0!Mu3ChY11TRaw[Co3At1Ch11] 
+967.098 -0.117093 0.0!Mu3ChY12TRaw[Co3At1Ch12] 
+976.51 -0.118272 0.0!Mu3ChY13TRaw[Co3At1Ch13] 
+982.999 -0.119048 0.0!Mu3ChY14TRaw[Co3At1Ch14] 
+975.2 -0.118075 0.0!Mu3ChY15TRaw[Co3At1Ch15] 
+982.438 -0.118941 0.0!Mu3ChY16TRaw[Co3At1Ch16] 
+968.582 -0.117174 0.0!Mu3ChY17TRaw[Co3At2Ch1] 
+981.596 -0.118815 0.0!Mu3ChY18TRaw[Co3At2Ch2] 
+982.535 -0.118931 0.0!Mu3ChY19TRaw[Co3At2Ch3] 
+988.071 -0.119638 0.0!Mu3ChY20TRaw[Co3At2Ch4] 
+993.73 -0.12034 0.0!Mu3ChY21TRaw[Co3At2Ch5] 
+1003.541 -0.121551 0.0!Mu3ChY22TRaw[Co3At2Ch6] 
+998.968 -0.120998 0.0!Mu3ChY23TRaw[Co3At2Ch7] 
+993.315 -0.120321 0.0!Mu3ChY24TRaw[Co3At2Ch8] 
+999.364 -0.121073 0.0!Mu3ChY25TRaw[Co3At2Ch9] 
+1005.572 -0.121839 0.0!Mu3ChY26TRaw[Co3At2Ch10] 
+1005.81 -0.121856 0.0!Mu3ChY27TRaw[Co3At2Ch11] 
+1012.089 -0.122649 0.0!Mu3ChY28TRaw[Co3At2Ch12] 
+1015.153 -0.12302 0.0!Mu3ChY29TRaw[Co3At2Ch13] 
+1003.98 -0.121668 0.0!Mu3ChY30TRaw[Co3At2Ch14] 
+1013.163 -0.122794 0.0!Mu3ChY31TRaw[Co3At2Ch15] 
+1013.882 -0.122927 0.0!Mu3ChY32TRaw[Co3At2Ch16] 
+869.852 -0.105446 0.0!Mu3ChY33TRaw[Co3At3Ch1] 
+866.645 -0.105092 0.0!Mu3ChY34TRaw[Co3At3Ch2] 
+871.811 -0.10573 0.0!Mu3ChY35TRaw[Co3At3Ch3] 
+868.809 -0.105345 0.0!Mu3ChY36TRaw[Co3At3Ch4] 
+880.462 -0.106744 0.0!Mu3ChY37TRaw[Co3At3Ch5] 
+879.67 -0.106654 0.0!Mu3ChY38TRaw[Co3At3Ch6] 
+885.22 -0.107294 0.0!Mu3ChY39TRaw[Co3At3Ch7] 
+893.863 -0.108361 0.0!Mu3ChY40TRaw[Co3At3Ch8] 
+891.003 -0.10799 0.0!Mu3ChY41TRaw[Co3At3Ch9] 
+895.002 -0.10846 0.0!Mu3ChY42TRaw[Co3At3Ch10] 
+904.382 -0.109593 0.0!Mu3ChY43TRaw[Co3At3Ch11] 
+900.904 -0.109195 0.0!Mu3ChY44TRaw[Co3At3Ch12] 
+896.146 -0.108568 0.0!Mu3ChY45TRaw[Co3At3Ch13] 
+906.325 -0.109804 0.0!Mu3ChY46TRaw[Co3At3Ch14] 
+910.104 -0.110263 0.0!Mu3ChY47TRaw[Co3At3Ch15] 
+902.797 -0.109382 0.0!Mu3ChY48TRaw[Co3At3Ch16] 
+876.215 -0.105997 0.0!Mu3ChY49TRaw[Co3At4Ch1] 
+882.251 -0.106772 0.0!Mu3ChY50TRaw[Co3At4Ch2] 
+893.929 -0.108217 0.0!Mu3ChY51TRaw[Co3At4Ch3] 
+896.657 -0.108527 0.0!Mu3ChY52TRaw[Co3At4Ch4] 
+890.731 -0.107825 0.0!Mu3ChY53TRaw[Co3At4Ch5] 
+899.266 -0.108862 0.0!Mu3ChY54TRaw[Co3At4Ch6] 
+903.981 -0.109456 0.0!Mu3ChY55TRaw[Co3At4Ch7] 
+909.889 -0.110152 0.0!Mu3ChY56TRaw[Co3At4Ch8] 
+914.156 -0.110718 0.0!Mu3ChY57TRaw[Co3At4Ch9] 
+912.878 -0.11056 0.0!Mu3ChY58TRaw[Co3At4Ch10] 
+921.772 -0.111636 0.0!Mu3ChY59TRaw[Co3At4Ch11] 
+907.641 -0.109934 0.0!Mu3ChY60TRaw[Co3At4Ch12] 
+921.134 -0.111581 0.0!Mu3ChY61TRaw[Co3At4Ch13] 
+921.864 -0.111694 0.0!Mu3ChY62TRaw[Co3At4Ch14] 
+917.054 -0.1111 0.0!Mu3ChY63TRaw[Co3At4Ch15] 
+919.795 -0.11144 0.0!Mu3ChY64TRaw[Co3At4Ch16] 
+909.45 -0.109216 0.0!Mu3ChY65TRaw[Co4At1Ch1] 
+919.5 -0.110026 0.0!Mu3ChY66TRaw[Co4At1Ch2] 
+909.57 -0.110106 0.0!Mu3ChY67TRaw[Co4At1Ch3] 
+921.73 -0.11114 0.0!Mu3ChY68TRaw[Co4At1Ch4] 
+933.144 -0.11252 0.0!Mu3ChY69TRaw[Co4At1Ch5] 
+937.937 -0.113544 0.0!Mu3ChY70TRaw[Co4At1Ch6] 
+941.407 -0.112672 0.0!Mu3ChY71TRaw[Co4At1Ch7] 
+929.175 -0.112491 0.0!Mu3ChY72TRaw[Co4At1Ch8] 
+949.055 -0.114462 0.0!Mu3ChY73TRaw[Co4At1Ch9] 
+941.527 -0.11354 0.0!Mu3ChY74TRaw[Co4At1Ch10] 
+954.075 -0.115517 0.0!Mu3ChY75TRaw[Co4At1Ch11] 
+957.81 -0.115086 0.0!Mu3ChY76TRaw[Co4At1Ch12] 
+963.019 -0.116618 0.0!Mu3ChY77TRaw[Co4At1Ch13] 
+955.382 -0.115232 0.0!Mu3ChY78TRaw[Co4At1Ch14] 
+944.365 -0.114343 0.0!Mu3ChY79TRaw[Co4At1Ch15] 
+952.964 -0.114947 0.0!Mu3ChY80TRaw[Co4At1Ch16] 
+969.317 -0.117288 0.0!Mu3ChY81TRaw[Co4At2Ch1] 
+980.742 -0.118727 0.0!Mu3ChY82TRaw[Co4At2Ch2] 
+990.702 -0.119474 0.0!Mu3ChY83TRaw[Co4At2Ch3] 
+994.094 -0.119909 0.0!Mu3ChY84TRaw[Co4At2Ch4] 
+1003.58 -0.120116 0.0!Mu3ChY85TRaw[Co4At2Ch5] 
+999.143 -0.120975 0.0!Mu3ChY86TRaw[Co4At2Ch6] 
+996.11 -0.120606 0.0!Mu3ChY87TRaw[Co4At2Ch7] 
+1005.134 -0.12076 0.0!Mu3ChY88TRaw[Co4At2Ch8] 
+1002.139 -0.121336 0.0!Mu3ChY89TRaw[Co4At2Ch9] 
+1025.133 -0.122713 0.0!Mu3ChY90TRaw[Co4At2Ch10] 
+1016.547 -0.1231 0.0!Mu3ChY91TRaw[Co4At2Ch11] 
+1008.733 -0.121678 0.0!Mu3ChY92TRaw[Co4At2Ch12] 
+1017.167 -0.122697 0.0!Mu3ChY93TRaw[Co4At2Ch13] 
+1016.429 -0.123087 0.0!Mu3ChY94TRaw[Co4At2Ch14] 
+1008.727 -0.122144 0.0!Mu3ChY95TRaw[Co4At2Ch15] 
+1013.668 -0.122274 0.0!Mu3ChY96TRaw[Co4At2Ch16] 
+872.659 -0.105573 0.0!Mu3ChY97TRaw[Co4At3Ch1] 
+869.574 -0.105224 0.0!Mu3ChY98TRaw[Co4At3Ch2] 
+874.267 -0.105791 0.0!Mu3ChY99TRaw[Co4At3Ch3] 
+883.417 -0.106904 0.0!Mu3ChY100TRaw[Co4At3Ch4] 
+893.981 -0.107789 0.0!Mu3ChY101TRaw[Co4At3Ch5] 
+890.232 -0.107742 0.0!Mu3ChY102TRaw[Co4At3Ch6] 
+901.26 -0.109085 0.0!Mu3ChY103TRaw[Co4At3Ch7] 
+900.219 -0.108126 0.0!Mu3ChY104TRaw[Co4At3Ch8] 
+900.643 -0.108999 0.0!Mu3ChY105TRaw[Co4At3Ch9] 
+892.987 -0.108068 0.0!Mu3ChY106TRaw[Co4At3Ch10] 
+892.534 -0.108006 0.0!Mu3ChY107TRaw[Co4At3Ch11] 
+901.564 -0.109125 0.0!Mu3ChY108TRaw[Co4At3Ch12] 
+911.227 -0.109439 0.0!Mu3ChY109TRaw[Co4At3Ch13] 
+905.426 -0.109168 0.0!Mu3ChY110TRaw[Co4At3Ch14] 
+904.499 -0.108625 0.0!Mu3ChY111TRaw[Co4At3Ch15] 
+907.559 -0.109416 0.0!Mu3ChY112TRaw[Co4At3Ch16] 
+896.812 -0.107554 0.0!Mu3ChY113TRaw[Co4At4Ch1] 
+897.309 -0.108473 0.0!Mu3ChY114TRaw[Co4At4Ch2] 
+907.137 -0.108848 0.0!Mu3ChY115TRaw[Co4At4Ch3] 
+902.563 -0.108292 0.0!Mu3ChY116TRaw[Co4At4Ch4] 
+907.303 -0.109288 0.0!Mu3ChY117TRaw[Co4At4Ch5] 
+909.347 -0.109943 0.0!Mu3ChY118TRaw[Co4At4Ch6] 
+907.931 -0.109765 0.0!Mu3ChY119TRaw[Co4At4Ch7] 
+907.16 -0.109672 0.0!Mu3ChY120TRaw[Co4At4Ch8] 
+917.59 -0.110512 0.0!Mu3ChY121TRaw[Co4At4Ch9] 
+922.724 -0.111588 0.0!Mu3ChY122TRaw[Co4At4Ch10] 
+925.473 -0.111915 0.0!Mu3ChY123TRaw[Co4At4Ch11] 
+911.405 -0.109772 0.0!Mu3ChY124TRaw[Co4At4Ch12] 
+912.177 -0.11029 0.0!Mu3ChY125TRaw[Co4At4Ch13] 
+917.613 -0.110947 0.0!Mu3ChY126TRaw[Co4At4Ch14] 
+919.037 -0.111116 0.0!Mu3ChY127TRaw[Co4At4Ch15] 
+927.237 -0.112131 0.0!Mu3ChY128TRaw[Co4At4Ch16] 
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_E/Cal_Str_X_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b56df0bbb27f890ca4f6493ba76adaea922fcb94
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E -61.6623 0.00752711
+MUSETT_T0_DSSD_X1_E -61.862300000000005 0.0075515
+MUSETT_T0_DSSD_X2_E -61.786 0.00754225
+MUSETT_T0_DSSD_X3_E -61.4886 0.0075058699999999996
+MUSETT_T0_DSSD_X4_E -61.896800000000006 0.00755579
+MUSETT_T0_DSSD_X5_E -61.6415 0.007524530000000001
+MUSETT_T0_DSSD_X6_E -61.3994 0.00749501
+MUSETT_T0_DSSD_X7_E -61.2364 0.00747509
+MUSETT_T0_DSSD_X8_E -60.9865 0.0074446
+MUSETT_T0_DSSD_X9_E -62.6813 0.0076514800000000004
+MUSETT_T0_DSSD_X10_E -62.3935 0.00761631
+MUSETT_T0_DSSD_X11_E -61.9253 0.00755919
+MUSETT_T0_DSSD_X12_E -62.029900000000005 0.00757195
+MUSETT_T0_DSSD_X13_E -61.7577 0.00753873
+MUSETT_T0_DSSD_X14_E -62.4176 0.00761932
+MUSETT_T0_DSSD_X15_E -61.2753 0.00747982
+MUSETT_T0_DSSD_X16_E -63.0583 0.00769749
+MUSETT_T0_DSSD_X17_E -62.722199999999994 0.00765646
+MUSETT_T0_DSSD_X18_E -62.1349 0.007584769999999999
+MUSETT_T0_DSSD_X19_E -62.4581 0.00762423
+MUSETT_T0_DSSD_X20_E -63.902699999999996 0.00780057
+MUSETT_T0_DSSD_X21_E -62.5199 0.00763181
+MUSETT_T0_DSSD_X22_E -62.2975 0.00760463
+MUSETT_T0_DSSD_X23_E -62.6596 0.00764878
+MUSETT_T0_DSSD_X24_E -62.8523 0.00767238
+MUSETT_T0_DSSD_X25_E -62.9854 0.00768854
+MUSETT_T0_DSSD_X26_E -63.073699999999995 0.00769941
+MUSETT_T0_DSSD_X27_E -62.632 0.00764548
+MUSETT_T0_DSSD_X28_E -63.013400000000004 0.00769203
+MUSETT_T0_DSSD_X29_E -62.579 0.00763901
+MUSETT_T0_DSSD_X30_E -63.4015 0.0077394
+MUSETT_T0_DSSD_X31_E -62.63 0.007645229999999999
+MUSETT_T0_DSSD_X32_E -56.399 0.00688462
+MUSETT_T0_DSSD_X33_E -56.789199999999994 0.00693221
+MUSETT_T0_DSSD_X34_E -55.5642 0.00678269
+MUSETT_T0_DSSD_X35_E -56.333400000000005 0.00687654
+MUSETT_T0_DSSD_X36_E -56.0406 0.00684084
+MUSETT_T0_DSSD_X37_E -10.0 0.0
+MUSETT_T0_DSSD_X38_E -55.909699999999994 0.006824869999999999
+MUSETT_T0_DSSD_X39_E -55.6584 0.006794209999999999
+MUSETT_T0_DSSD_X40_E -56.211800000000004 0.00686172
+MUSETT_T0_DSSD_X41_E -55.874 0.00682053
+MUSETT_T0_DSSD_X42_E -56.1648 0.00685597
+MUSETT_T0_DSSD_X43_E -56.3075 0.00687343
+MUSETT_T0_DSSD_X44_E -56.382 0.00688247
+MUSETT_T0_DSSD_X45_E -10.0 0.0
+MUSETT_T0_DSSD_X46_E -10.0 0.0
+MUSETT_T0_DSSD_X47_E -55.9115 0.00682508
+MUSETT_T0_DSSD_X48_E -57.9275 0.00707116
+MUSETT_T0_DSSD_X49_E -57.924800000000005 0.007070809999999999
+MUSETT_T0_DSSD_X50_E -57.746 0.007049000000000001
+MUSETT_T0_DSSD_X51_E -57.3431 0.00699988
+MUSETT_T0_DSSD_X52_E -58.1722 0.00710106
+MUSETT_T0_DSSD_X53_E -57.2377 0.00698697
+MUSETT_T0_DSSD_X54_E -57.8763 0.00706488
+MUSETT_T0_DSSD_X55_E -57.5235 0.00702188
+MUSETT_T0_DSSD_X56_E -58.500699999999995 0.00714114
+MUSETT_T0_DSSD_X57_E -57.7865 0.00705393
+MUSETT_T0_DSSD_X58_E -57.3004 0.00699465
+MUSETT_T0_DSSD_X59_E -57.7909 0.00705448
+MUSETT_T0_DSSD_X60_E -57.2034 0.0069828
+MUSETT_T0_DSSD_X61_E -57.985 0.0070782
+MUSETT_T0_DSSD_X62_E -57.8887 0.00706644
+MUSETT_T0_DSSD_X63_E -58.1271 0.00709555
+MUSETT_T0_DSSD_X64_E -63.452400000000004 0.00774561
+MUSETT_T0_DSSD_X65_E -63.6121 0.0077651099999999995
+MUSETT_T0_DSSD_X66_E -63.338699999999996 0.00773174
+MUSETT_T0_DSSD_X67_E -64.0218 0.00781515
+MUSETT_T0_DSSD_X68_E -63.1974 0.00771456
+MUSETT_T0_DSSD_X69_E -63.9684 0.0078086399999999995
+MUSETT_T0_DSSD_X70_E -63.8538 0.00779469
+MUSETT_T0_DSSD_X71_E -63.3564 0.007733970000000001
+MUSETT_T0_DSSD_X72_E -64.1177 0.00782683
+MUSETT_T0_DSSD_X73_E -63.242599999999996 0.00772007
+MUSETT_T0_DSSD_X74_E -63.9725 0.00780918
+MUSETT_T0_DSSD_X75_E -63.9414 0.0078053
+MUSETT_T0_DSSD_X76_E -63.6518 0.0077700899999999995
+MUSETT_T0_DSSD_X77_E -63.7543 0.00778255
+MUSETT_T0_DSSD_X78_E -64.2928 0.00784837
+MUSETT_T0_DSSD_X79_E -64.6906 0.00789693
+MUSETT_T0_DSSD_X80_E -61.2158 0.0074727100000000005
+MUSETT_T0_DSSD_X81_E -60.8651 0.007429949999999999
+MUSETT_T0_DSSD_X82_E -61.1473 0.00746434
+MUSETT_T0_DSSD_X83_E -61.4696 0.0075036899999999995
+MUSETT_T0_DSSD_X84_E -61.3791 0.00749269
+MUSETT_T0_DSSD_X85_E -61.8887 0.00755484
+MUSETT_T0_DSSD_X86_E -61.4032 0.00749554
+MUSETT_T0_DSSD_X87_E -62.1665 0.00758877
+MUSETT_T0_DSSD_X88_E -61.8964 0.007555780000000001
+MUSETT_T0_DSSD_X89_E -61.5721 0.00751618
+MUSETT_T0_DSSD_X90_E -61.7205 0.007534239999999999
+MUSETT_T0_DSSD_X91_E -62.7965 0.00766557
+MUSETT_T0_DSSD_X92_E -61.8681 0.00755224
+MUSETT_T0_DSSD_X93_E -60.9991 0.00744621
+MUSETT_T0_DSSD_X94_E -61.368199999999995 0.00749129
+MUSETT_T0_DSSD_X95_E -62.1668 0.00758877
+MUSETT_T0_DSSD_X96_E -57.1697 0.00697872
+MUSETT_T0_DSSD_X97_E -57.564 0.0070268100000000005
+MUSETT_T0_DSSD_X98_E -57.724199999999996 0.00704642
+MUSETT_T0_DSSD_X99_E -57.113099999999996 0.00697176
+MUSETT_T0_DSSD_X100_E -58.1265 0.0070955
+MUSETT_T0_DSSD_X101_E -57.7465 0.00704909
+MUSETT_T0_DSSD_X102_E -57.6654 0.00703921
+MUSETT_T0_DSSD_X103_E -57.244699999999995 0.00698784
+MUSETT_T0_DSSD_X104_E -57.357800000000005 0.00700171
+MUSETT_T0_DSSD_X105_E -57.943599999999996 0.0070732
+MUSETT_T0_DSSD_X106_E -57.2791 0.00699197
+MUSETT_T0_DSSD_X107_E -57.6282 0.00703471
+MUSETT_T0_DSSD_X108_E -58.567699999999995 0.0071494
+MUSETT_T0_DSSD_X109_E -58.0135 0.00708178
+MUSETT_T0_DSSD_X110_E -57.6815 0.00704111
+MUSETT_T0_DSSD_X111_E -57.7954 0.00705508
+MUSETT_T0_DSSD_X112_E -59.002300000000005 0.00720244
+MUSETT_T0_DSSD_X113_E -59.1922 0.00722562
+MUSETT_T0_DSSD_X114_E -58.512800000000006 0.00714267
+MUSETT_T0_DSSD_X115_E -58.6713 0.0071620699999999995
+MUSETT_T0_DSSD_X116_E -58.1716 0.00710101
+MUSETT_T0_DSSD_X117_E -58.3505 0.00712281
+MUSETT_T0_DSSD_X118_E -58.281400000000005 0.00711445
+MUSETT_T0_DSSD_X119_E -58.508199999999995 0.0071421
+MUSETT_T0_DSSD_X120_E -58.5117 0.00714253
+MUSETT_T0_DSSD_X121_E -58.6539 0.0071598899999999995
+MUSETT_T0_DSSD_X122_E -58.5504 0.00714724
+MUSETT_T0_DSSD_X123_E -59.318400000000004 0.00724097
+MUSETT_T0_DSSD_X124_E -57.853 0.007062140000000001
+MUSETT_T0_DSSD_X125_E -58.498400000000004 0.00714087
+MUSETT_T0_DSSD_X126_E -58.4264 0.00713213
+MUSETT_T0_DSSD_X127_E -59.5126 0.00726467
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_E/Cal_Str_Y_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..7c5d41b25a59ce5a29553a76ed64aac9acbd191e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_Y0_E -10.0 0.0
+MUSETT_T0_DSSD_Y1_E 60.4435 -0.007378389999999999
+MUSETT_T0_DSSD_Y2_E 60.9085 -0.00743514
+MUSETT_T0_DSSD_Y3_E 61.060199999999995 -0.00745367
+MUSETT_T0_DSSD_Y4_E 59.9844 -0.00732237
+MUSETT_T0_DSSD_Y5_E 60.1295 -0.0073401
+MUSETT_T0_DSSD_Y6_E 60.7831 -0.007419889999999999
+MUSETT_T0_DSSD_Y7_E 60.431 -0.0073769099999999995
+MUSETT_T0_DSSD_Y8_E 60.140699999999995 -0.00734142
+MUSETT_T0_DSSD_Y9_E 59.998400000000004 -0.00732403
+MUSETT_T0_DSSD_Y10_E 60.3957 -0.0073725399999999995
+MUSETT_T0_DSSD_Y11_E 60.0283 -0.00732774
+MUSETT_T0_DSSD_Y12_E 60.887800000000006 -0.00743267
+MUSETT_T0_DSSD_Y13_E 61.0665 -0.00745441
+MUSETT_T0_DSSD_Y14_E 61.164 -0.007466319999999999
+MUSETT_T0_DSSD_Y15_E 60.7398 -0.00741458
+MUSETT_T0_DSSD_Y16_E 60.4435 -0.00737838
+MUSETT_T0_DSSD_Y17_E 60.5444 -0.00739071
+MUSETT_T0_DSSD_Y18_E 60.303 -0.0073612
+MUSETT_T0_DSSD_Y19_E 60.1433 -0.007341739999999999
+MUSETT_T0_DSSD_Y20_E 60.3286 -0.0073644
+MUSETT_T0_DSSD_Y21_E 60.395900000000005 -0.00737256
+MUSETT_T0_DSSD_Y22_E 60.276 -0.00735798
+MUSETT_T0_DSSD_Y23_E 59.6842 -0.007285720000000001
+MUSETT_T0_DSSD_Y24_E 60.1879 -0.00734719
+MUSETT_T0_DSSD_Y25_E 59.7764 -0.00729698
+MUSETT_T0_DSSD_Y26_E 60.1286 -0.00733997
+MUSETT_T0_DSSD_Y27_E 60.4505 -0.00737922
+MUSETT_T0_DSSD_Y28_E 59.8905 -0.00731089
+MUSETT_T0_DSSD_Y29_E 59.6473 -0.0072812
+MUSETT_T0_DSSD_Y30_E 59.834900000000005 -0.00730412
+MUSETT_T0_DSSD_Y31_E 60.9991 -0.007446240000000001
+MUSETT_T0_DSSD_Y32_E 56.5525 -0.0069034100000000004
+MUSETT_T0_DSSD_Y33_E 57.0745 -0.00696718
+MUSETT_T0_DSSD_Y34_E 56.5365 -0.0069015000000000005
+MUSETT_T0_DSSD_Y35_E 57.036300000000004 -0.00696248
+MUSETT_T0_DSSD_Y36_E 57.4051 -0.007007500000000001
+MUSETT_T0_DSSD_Y37_E 57.2592 -0.0069897200000000005
+MUSETT_T0_DSSD_Y38_E 56.419599999999996 -0.00688718
+MUSETT_T0_DSSD_Y39_E 56.4611 -0.00689226
+MUSETT_T0_DSSD_Y40_E 56.9516 -0.00695213
+MUSETT_T0_DSSD_Y41_E 56.8 -0.00693367
+MUSETT_T0_DSSD_Y42_E 56.6005 -0.00690927
+MUSETT_T0_DSSD_Y43_E 56.5115 -0.0068984
+MUSETT_T0_DSSD_Y44_E 56.8705 -0.00694221
+MUSETT_T0_DSSD_Y45_E 56.9936 -0.006957270000000001
+MUSETT_T0_DSSD_Y46_E 57.6797 -0.00704103
+MUSETT_T0_DSSD_Y47_E 56.5606 -0.00690438
+MUSETT_T0_DSSD_Y48_E 57.5466 -0.0070247700000000005
+MUSETT_T0_DSSD_Y49_E 57.0358 -0.006962449999999999
+MUSETT_T0_DSSD_Y50_E 56.800599999999996 -0.00693377
+MUSETT_T0_DSSD_Y51_E 56.5058 -0.00689773
+MUSETT_T0_DSSD_Y52_E 57.1614 -0.006977789999999999
+MUSETT_T0_DSSD_Y53_E 56.855 -0.0069403600000000005
+MUSETT_T0_DSSD_Y54_E 56.619699999999995 -0.00691168
+MUSETT_T0_DSSD_Y55_E 57.6218 -0.00703399
+MUSETT_T0_DSSD_Y56_E 57.3597 -0.00700197
+MUSETT_T0_DSSD_Y57_E 56.825900000000004 -0.006936759999999999
+MUSETT_T0_DSSD_Y58_E 57.0315 -0.00696191
+MUSETT_T0_DSSD_Y59_E 57.2393 -0.00698735
+MUSETT_T0_DSSD_Y60_E 57.2548 -0.00698918
+MUSETT_T0_DSSD_Y61_E 57.074400000000004 -0.00696716
+MUSETT_T0_DSSD_Y62_E 57.5745 -0.00702822
+MUSETT_T0_DSSD_Y63_E 57.9124 -0.00706943
+MUSETT_T0_DSSD_Y64_E 61.0028 -0.00744668
+MUSETT_T0_DSSD_Y65_E 61.155300000000004 -0.0074653
+MUSETT_T0_DSSD_Y66_E 61.0533 -0.00745282
+MUSETT_T0_DSSD_Y67_E 61.373400000000004 -0.0074919
+MUSETT_T0_DSSD_Y68_E 60.4897 -0.00738403
+MUSETT_T0_DSSD_Y69_E 61.5803 -0.007517159999999999
+MUSETT_T0_DSSD_Y70_E 60.8956 -0.0074336
+MUSETT_T0_DSSD_Y71_E 60.4003 -0.0073731
+MUSETT_T0_DSSD_Y72_E 61.676199999999994 -0.00752889
+MUSETT_T0_DSSD_Y73_E 61.1073 -0.0074594399999999995
+MUSETT_T0_DSSD_Y74_E 61.1132 -0.00746014
+MUSETT_T0_DSSD_Y75_E 61.2304 -0.00747441
+MUSETT_T0_DSSD_Y76_E 60.5934 -0.00739669
+MUSETT_T0_DSSD_Y77_E 61.4122 -0.0074966600000000005
+MUSETT_T0_DSSD_Y78_E 61.6767 -0.0075289400000000005
+MUSETT_T0_DSSD_Y79_E 61.1145 -0.00746029
+MUSETT_T0_DSSD_Y80_E 62.3355 -0.00760932
+MUSETT_T0_DSSD_Y81_E 61.110800000000005 -0.00745984
+MUSETT_T0_DSSD_Y82_E 61.5895 -0.00751825
+MUSETT_T0_DSSD_Y83_E 62.0645 -0.007576240000000001
+MUSETT_T0_DSSD_Y84_E 61.0049 -0.00744692
+MUSETT_T0_DSSD_Y85_E 60.9003 -0.00743416
+MUSETT_T0_DSSD_Y86_E 61.8108 -0.00754524
+MUSETT_T0_DSSD_Y87_E 61.4395 -0.00749992
+MUSETT_T0_DSSD_Y88_E 61.153 -0.00746501
+MUSETT_T0_DSSD_Y89_E 61.3099 -0.00748418
+MUSETT_T0_DSSD_Y90_E 61.1603 -0.00746589
+MUSETT_T0_DSSD_Y91_E 61.4705 -0.00750377
+MUSETT_T0_DSSD_Y92_E 61.8625 -0.00755157
+MUSETT_T0_DSSD_Y93_E 61.676 -0.00752886
+MUSETT_T0_DSSD_Y94_E 62.3873 -0.00761565
+MUSETT_T0_DSSD_Y95_E 60.9044 -0.00743464
+MUSETT_T0_DSSD_Y96_E 56.3812 -0.00688248
+MUSETT_T0_DSSD_Y97_E 56.6477 -0.00691501
+MUSETT_T0_DSSD_Y98_E 56.593900000000005 -0.00690848
+MUSETT_T0_DSSD_Y99_E 56.4666 -0.0068929
+MUSETT_T0_DSSD_Y100_E 56.2051 -0.00686097
+MUSETT_T0_DSSD_Y101_E 56.3392 -0.00687735
+MUSETT_T0_DSSD_Y102_E 56.0711 -0.006844630000000001
+MUSETT_T0_DSSD_Y103_E 56.5869 -0.00690762
+MUSETT_T0_DSSD_Y104_E 56.9228 -0.006948579999999999
+MUSETT_T0_DSSD_Y105_E 56.073699999999995 -0.00684493
+MUSETT_T0_DSSD_Y106_E 57.0807 -0.00696791
+MUSETT_T0_DSSD_Y107_E 57.414300000000004 -0.00700859
+MUSETT_T0_DSSD_Y108_E 56.5825 -0.0069071
+MUSETT_T0_DSSD_Y109_E 56.5836 -0.00690725
+MUSETT_T0_DSSD_Y110_E 56.679199999999994 -0.00691888
+MUSETT_T0_DSSD_Y111_E 56.4215 -0.0068874
+MUSETT_T0_DSSD_Y112_E 56.9044 -0.00694638
+MUSETT_T0_DSSD_Y113_E 57.1278 -0.00697364
+MUSETT_T0_DSSD_Y114_E 56.9656 -0.0069538
+MUSETT_T0_DSSD_Y115_E 56.8221 -0.00693632
+MUSETT_T0_DSSD_Y116_E 57.302 -0.00699491
+MUSETT_T0_DSSD_Y117_E 56.554199999999994 -0.00690362
+MUSETT_T0_DSSD_Y118_E 56.421800000000005 -0.006887450000000001
+MUSETT_T0_DSSD_Y119_E 56.6454 -0.00691475
+MUSETT_T0_DSSD_Y120_E 57.3988 -0.00700675
+MUSETT_T0_DSSD_Y121_E 57.237300000000005 -0.0069869599999999995
+MUSETT_T0_DSSD_Y122_E 56.689 -0.0069200699999999995
+MUSETT_T0_DSSD_Y123_E 56.0116 -0.0068374199999999994
+MUSETT_T0_DSSD_Y124_E 56.467699999999994 -0.0068930300000000005
+MUSETT_T0_DSSD_Y125_E 55.9223 -0.0068265
+MUSETT_T0_DSSD_Y126_E 56.9572 -0.00695281
+MUSETT_T0_DSSD_Y127_E 56.5865 -0.00690758
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..5b24d47a3e65b665bfa9316692c46e8b7ebed112
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_T 946.164 -0.114176
+MUSETT_T0_DSSD_X1_T 956.811 -0.115529
+MUSETT_T0_DSSD_X2_T 957.988 -0.115657
+MUSETT_T0_DSSD_X3_T 972.139 -0.117409
+MUSETT_T0_DSSD_X4_T 971.761 -0.117367
+MUSETT_T0_DSSD_X5_T 971.702 -0.117353
+MUSETT_T0_DSSD_X6_T 976.911 -0.117969
+MUSETT_T0_DSSD_X7_T 979.143 -0.118246
+MUSETT_T0_DSSD_X8_T 977.915 -0.118065
+MUSETT_T0_DSSD_X9_T 981.976 -0.118546
+MUSETT_T0_DSSD_X10_T 986.577 -0.119138
+MUSETT_T0_DSSD_X11_T 986.184 -0.119075
+MUSETT_T0_DSSD_X12_T 993.563 -0.119996
+MUSETT_T0_DSSD_X13_T 978.874 -0.118174
+MUSETT_T0_DSSD_X14_T 989.894 -0.119531
+MUSETT_T0_DSSD_X15_T 1318.57 -0.118448
+MUSETT_T0_DSSD_X16_T 955.564 -0.115275
+MUSETT_T0_DSSD_X17_T 965.774 -0.116527
+MUSETT_T0_DSSD_X18_T 978.184 -0.118044
+MUSETT_T0_DSSD_X19_T 978.854 -0.118125
+MUSETT_T0_DSSD_X20_T 987.988 -0.119233
+MUSETT_T0_DSSD_X21_T 982.353 -0.118555
+MUSETT_T0_DSSD_X22_T 992.928 -0.119845
+MUSETT_T0_DSSD_X23_T 994.329 -0.120005
+MUSETT_T0_DSSD_X24_T 989.504 -0.119427
+MUSETT_T0_DSSD_X25_T 1000.62 -0.120777
+MUSETT_T0_DSSD_X26_T 1002.92 -0.121057
+MUSETT_T0_DSSD_X27_T 1006.98 -0.121545
+MUSETT_T0_DSSD_X28_T 1002.57 -0.121021
+MUSETT_T0_DSSD_X29_T 1001.43 -0.120851
+MUSETT_T0_DSSD_X30_T 997.945 -0.12045
+MUSETT_T0_DSSD_X31_T 993.524 -0.119947
+MUSETT_T0_DSSD_X32_T 872.545 -0.105192
+MUSETT_T0_DSSD_X33_T 870.474 -0.104955
+MUSETT_T0_DSSD_X34_T 890.439 -0.107397
+MUSETT_T0_DSSD_X35_T 879.216 -0.106033
+MUSETT_T0_DSSD_X36_T 881.009 -0.106227
+MUSETT_T0_DSSD_X37_T 895.366 -0.108005
+MUSETT_T0_DSSD_X38_T 897.01 -0.108195
+MUSETT_T0_DSSD_X39_T 895.47 -0.107979
+MUSETT_T0_DSSD_X40_T 898.037 -0.108302
+MUSETT_T0_DSSD_X41_T 898.361 -0.108334
+MUSETT_T0_DSSD_X42_T 897.507 -0.108243
+MUSETT_T0_DSSD_X43_T 904.455 -0.109095
+MUSETT_T0_DSSD_X44_T 899.781 -0.108505
+MUSETT_T0_DSSD_X45_T 894.363 -0.107877
+MUSETT_T0_DSSD_X46_T 896.817 -0.108187
+MUSETT_T0_DSSD_X47_T 930.792 -0.10826
+MUSETT_T0_DSSD_X48_T 884.648 -0.106556
+MUSETT_T0_DSSD_X49_T 887.836 -0.106942
+MUSETT_T0_DSSD_X50_T 893.25 -0.107622
+MUSETT_T0_DSSD_X51_T 901.75 -0.109464
+MUSETT_T0_DSSD_X52_T 907.099 -0.109295
+MUSETT_T0_DSSD_X53_T 909.979 -0.109652
+MUSETT_T0_DSSD_X54_T 912.526 -0.109955
+MUSETT_T0_DSSD_X55_T 916.597 -0.110458
+MUSETT_T0_DSSD_X56_T 925.24 -0.111499
+MUSETT_T0_DSSD_X57_T 916.715 -0.110456
+MUSETT_T0_DSSD_X58_T 924.251 -0.111378
+MUSETT_T0_DSSD_X59_T 928.786 -0.111943
+MUSETT_T0_DSSD_X60_T 935.878 -0.112807
+MUSETT_T0_DSSD_X61_T 938.667 -0.11314
+MUSETT_T0_DSSD_X62_T 940.288 -0.113338
+MUSETT_T0_DSSD_X63_T 929.111 -0.111982
+MUSETT_T0_DSSD_X64_T 957.51 -0.115846
+MUSETT_T0_DSSD_X65_T 962.646 -0.11646
+MUSETT_T0_DSSD_X66_T 972.344 -0.117644
+MUSETT_T0_DSSD_X67_T 973.464 -0.117791
+MUSETT_T0_DSSD_X68_T 976.904 -0.118174
+MUSETT_T0_DSSD_X69_T 989.493 -0.119717
+MUSETT_T0_DSSD_X70_T 993.895 -0.120284
+MUSETT_T0_DSSD_X71_T 995.117 -0.120426
+MUSETT_T0_DSSD_X72_T 1006.3 -0.121763
+MUSETT_T0_DSSD_X73_T 987.403 -0.119445
+MUSETT_T0_DSSD_X74_T 1004.54 -0.121535
+MUSETT_T0_DSSD_X75_T 995.118 -0.120381
+MUSETT_T0_DSSD_X76_T 1002.39 -0.121262
+MUSETT_T0_DSSD_X77_T 1006.49 -0.121766
+MUSETT_T0_DSSD_X78_T 997.059 -0.120615
+MUSETT_T0_DSSD_X79_T 1377.74 -0.120952
+MUSETT_T0_DSSD_X80_T 923.114 -0.111515
+MUSETT_T0_DSSD_X81_T 932.866 -0.112746
+MUSETT_T0_DSSD_X82_T 924.928 -0.111774
+MUSETT_T0_DSSD_X83_T 937.265 -0.113281
+MUSETT_T0_DSSD_X84_T 930.752 -0.112468
+MUSETT_T0_DSSD_X85_T 941.628 -0.113819
+MUSETT_T0_DSSD_X86_T 949.998 -0.114818
+MUSETT_T0_DSSD_X87_T 943.027 -0.113978
+MUSETT_T0_DSSD_X88_T 949.721 -0.114813
+MUSETT_T0_DSSD_X89_T 957.242 -0.115728
+MUSETT_T0_DSSD_X90_T 964.815 -0.11664
+MUSETT_T0_DSSD_X91_T 961.466 -0.11625
+MUSETT_T0_DSSD_X92_T 961.749 -0.116299
+MUSETT_T0_DSSD_X93_T 960.655 -0.116152
+MUSETT_T0_DSSD_X94_T 974.674 -0.117868
+MUSETT_T0_DSSD_X95_T 992.705 -0.116744
+MUSETT_T0_DSSD_X96_T 868.269 -0.105013
+MUSETT_T0_DSSD_X97_T 877.648 -0.106169
+MUSETT_T0_DSSD_X98_T 878.241 -0.106212
+MUSETT_T0_DSSD_X99_T 883.994 -0.106905
+MUSETT_T0_DSSD_X100_T 893.321 -0.108043
+MUSETT_T0_DSSD_X101_T 900.56 -0.108935
+MUSETT_T0_DSSD_X102_T 896.766 -0.108442
+MUSETT_T0_DSSD_X103_T 894.903 -0.108194
+MUSETT_T0_DSSD_X104_T 904.239 -0.109336
+MUSETT_T0_DSSD_X105_T 902.018 -0.109053
+MUSETT_T0_DSSD_X106_T 907.673 -0.109771
+MUSETT_T0_DSSD_X107_T 904.96 -0.109449
+MUSETT_T0_DSSD_X108_T 902.795 -0.109128
+MUSETT_T0_DSSD_X109_T 906.335 -0.109641
+MUSETT_T0_DSSD_X110_T 903.029 -0.109177
+MUSETT_T0_DSSD_X111_T 912.908 -0.109478
+MUSETT_T0_DSSD_X112_T 888.694 -0.107364
+MUSETT_T0_DSSD_X113_T 891.736 -0.107748
+MUSETT_T0_DSSD_X114_T 891.957 -0.107782
+MUSETT_T0_DSSD_X115_T 901.87 -0.109007
+MUSETT_T0_DSSD_X116_T 905.48 -0.109423
+MUSETT_T0_DSSD_X117_T 899.196 -0.108648
+MUSETT_T0_DSSD_X118_T 913.782 -0.110413
+MUSETT_T0_DSSD_X119_T 914.779 -0.110579
+MUSETT_T0_DSSD_X120_T 909.004 -0.109898
+MUSETT_T0_DSSD_X121_T 914.282 -0.1105
+MUSETT_T0_DSSD_X122_T 922.657 -0.111529
+MUSETT_T0_DSSD_X123_T 914.822 -0.110604
+MUSETT_T0_DSSD_X124_T 917.977 -0.110972
+MUSETT_T0_DSSD_X125_T 919.687 -0.11118
+MUSETT_T0_DSSD_X126_T 914.922 -0.110613
+MUSETT_T0_DSSD_X127_T 925.329 -0.111151
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..44caa7bd7c0575c1eae4de035fb0398b5e399796
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 942.169 -0.114033
+MUSETT_T0_DSSD_Y2_T 941.094 -0.113921
+MUSETT_T0_DSSD_Y3_T 959.045 -0.116104
+MUSETT_T0_DSSD_Y4_T 954.629 -0.115563
+MUSETT_T0_DSSD_Y5_T 970.443 -0.117481
+MUSETT_T0_DSSD_Y6_T 969.234 -0.117339
+MUSETT_T0_DSSD_Y7_T 966.53 -0.117018
+MUSETT_T0_DSSD_Y8_T 973.409 -0.117842
+MUSETT_T0_DSSD_Y9_T 968.923 -0.117316
+MUSETT_T0_DSSD_Y10_T 971.661 -0.117632
+MUSETT_T0_DSSD_Y11_T 977.841 -0.118398
+MUSETT_T0_DSSD_Y12_T 975.821 -0.11814
+MUSETT_T0_DSSD_Y13_T 971.638 -0.117633
+MUSETT_T0_DSSD_Y14_T 974.225 -0.117944
+MUSETT_T0_DSSD_Y15_T 980.805 -0.118761
+MUSETT_T0_DSSD_Y16_T 935.973 -0.113175
+MUSETT_T0_DSSD_Y17_T 944.972 -0.114309
+MUSETT_T0_DSSD_Y18_T 953.592 -0.115351
+MUSETT_T0_DSSD_Y19_T 945.492 -0.11436
+MUSETT_T0_DSSD_Y20_T 948.066 -0.114686
+MUSETT_T0_DSSD_Y21_T 951.558 -0.115103
+MUSETT_T0_DSSD_Y22_T 957.545 -0.115832
+MUSETT_T0_DSSD_Y23_T 957.576 -0.115841
+MUSETT_T0_DSSD_Y24_T 962.251 -0.116398
+MUSETT_T0_DSSD_Y25_T 960.479 -0.116195
+MUSETT_T0_DSSD_Y26_T 957.007 -0.115516
+MUSETT_T0_DSSD_Y27_T 971.646 -0.117562
+MUSETT_T0_DSSD_Y28_T 974.064 -0.117834
+MUSETT_T0_DSSD_Y29_T 968.974 -0.11722
+MUSETT_T0_DSSD_Y30_T 971.944 -0.11759
+MUSETT_T0_DSSD_Y31_T 966.713 -0.116928
+MUSETT_T0_DSSD_Y32_T 869.43 -0.105131
+MUSETT_T0_DSSD_Y33_T 868.989 -0.105113
+MUSETT_T0_DSSD_Y34_T 886.133 -0.107174
+MUSETT_T0_DSSD_Y35_T 876.002 -0.105955
+MUSETT_T0_DSSD_Y36_T 887.653 -0.107363
+MUSETT_T0_DSSD_Y37_T 886.897 -0.107278
+MUSETT_T0_DSSD_Y38_T 887.559 -0.107347
+MUSETT_T0_DSSD_Y39_T 905.525 -0.109567
+MUSETT_T0_DSSD_Y40_T 903.288 -0.109268
+MUSETT_T0_DSSD_Y41_T 901.488 -0.109045
+MUSETT_T0_DSSD_Y42_T 900.453 -0.108924
+MUSETT_T0_DSSD_Y43_T 911.154 -0.110196
+MUSETT_T0_DSSD_Y44_T 908.4 -0.109895
+MUSETT_T0_DSSD_Y45_T 903.164 -0.10924
+MUSETT_T0_DSSD_Y46_T 913.419 -0.110513
+MUSETT_T0_DSSD_Y47_T 901.371 -0.109056
+MUSETT_T0_DSSD_Y48_T 855.809 -0.103507
+MUSETT_T0_DSSD_Y49_T 866.963 -0.104888
+MUSETT_T0_DSSD_Y50_T 862.301 -0.104347
+MUSETT_T0_DSSD_Y51_T 879.214 -0.106391
+MUSETT_T0_DSSD_Y52_T 881.851 -0.106718
+MUSETT_T0_DSSD_Y53_T 883.115 -0.106878
+MUSETT_T0_DSSD_Y54_T 879.659 -0.106441
+MUSETT_T0_DSSD_Y55_T 887.765 -0.107426
+MUSETT_T0_DSSD_Y56_T 889.179 -0.107608
+MUSETT_T0_DSSD_Y57_T 893.434 -0.108136
+MUSETT_T0_DSSD_Y58_T 900.612 -0.109012
+MUSETT_T0_DSSD_Y59_T 899.41 -0.108611
+MUSETT_T0_DSSD_Y60_T 898.225 -0.108719
+MUSETT_T0_DSSD_Y61_T 905.378 -0.109581
+MUSETT_T0_DSSD_Y62_T 899.576 -0.108895
+MUSETT_T0_DSSD_Y63_T 904.856 -0.109543
+MUSETT_T0_DSSD_Y64_T 964.166 -0.116469
+MUSETT_T0_DSSD_Y65_T 970.821 -0.117302
+MUSETT_T0_DSSD_Y66_T 976.54 -0.118012
+MUSETT_T0_DSSD_Y67_T 976.814 -0.118028
+MUSETT_T0_DSSD_Y68_T 979.621 -0.118378
+MUSETT_T0_DSSD_Y69_T 983.271 -0.118825
+MUSETT_T0_DSSD_Y70_T 982.977 -0.118781
+MUSETT_T0_DSSD_Y71_T 986.021 -0.119156
+MUSETT_T0_DSSD_Y72_T 989.88 -0.119628
+MUSETT_T0_DSSD_Y73_T 981.368 -0.118591
+MUSETT_T0_DSSD_Y74_T 990.1 -0.119656
+MUSETT_T0_DSSD_Y75_T 1000.52 -0.120924
+MUSETT_T0_DSSD_Y76_T 995.667 -0.120327
+MUSETT_T0_DSSD_Y77_T 997.754 -0.120579
+MUSETT_T0_DSSD_Y78_T 994.951 -0.120247
+MUSETT_T0_DSSD_Y79_T 1001.99 -0.121097
+MUSETT_T0_DSSD_Y80_T 970.583 -0.117145
+MUSETT_T0_DSSD_Y81_T 986.462 -0.119118
+MUSETT_T0_DSSD_Y82_T 981.625 -0.118534
+MUSETT_T0_DSSD_Y83_T 996.206 -0.12031
+MUSETT_T0_DSSD_Y84_T 1000.06 -0.120777
+MUSETT_T0_DSSD_Y85_T 1002.53 -0.121085
+MUSETT_T0_DSSD_Y86_T 998.357 -0.120569
+MUSETT_T0_DSSD_Y87_T 1008.76 -0.121839
+MUSETT_T0_DSSD_Y88_T 1004.65 -0.121339
+MUSETT_T0_DSSD_Y89_T 1015.0 -0.122592
+MUSETT_T0_DSSD_Y90_T 1025.62 -0.123897
+MUSETT_T0_DSSD_Y91_T 1025.41 -0.123866
+MUSETT_T0_DSSD_Y92_T 1020.27 -0.123256
+MUSETT_T0_DSSD_Y93_T 1024.71 -0.123786
+MUSETT_T0_DSSD_Y94_T 1021.51 -0.123408
+MUSETT_T0_DSSD_Y95_T 1016.94 -0.122879
+MUSETT_T0_DSSD_Y96_T 882.97 -0.106544
+MUSETT_T0_DSSD_Y97_T 879.326 -0.106139
+MUSETT_T0_DSSD_Y98_T 878.449 -0.106028
+MUSETT_T0_DSSD_Y99_T 894.979 -0.108041
+MUSETT_T0_DSSD_Y100_T 892.203 -0.107707
+MUSETT_T0_DSSD_Y101_T 891.015 -0.10757
+MUSETT_T0_DSSD_Y102_T 895.424 -0.108105
+MUSETT_T0_DSSD_Y103_T 907.578 -0.10959
+MUSETT_T0_DSSD_Y104_T 902.147 -0.108916
+MUSETT_T0_DSSD_Y105_T 915.536 -0.110544
+MUSETT_T0_DSSD_Y106_T 910.897 -0.109981
+MUSETT_T0_DSSD_Y107_T 915.092 -0.11051
+MUSETT_T0_DSSD_Y108_T 914.664 -0.110421
+MUSETT_T0_DSSD_Y109_T 910.113 -0.109894
+MUSETT_T0_DSSD_Y110_T 915.675 -0.110572
+MUSETT_T0_DSSD_Y111_T 917.59 -0.110803
+MUSETT_T0_DSSD_Y112_T 892.441 -0.107535
+MUSETT_T0_DSSD_Y113_T 899.913 -0.108466
+MUSETT_T0_DSSD_Y114_T 899.438 -0.108438
+MUSETT_T0_DSSD_Y115_T 905.439 -0.109158
+MUSETT_T0_DSSD_Y116_T 917.108 -0.110566
+MUSETT_T0_DSSD_Y117_T 910.331 -0.109757
+MUSETT_T0_DSSD_Y118_T 930.135 -0.112167
+MUSETT_T0_DSSD_Y119_T 921.847 -0.111146
+MUSETT_T0_DSSD_Y120_T 932.043 -0.112407
+MUSETT_T0_DSSD_Y121_T 931.497 -0.112337
+MUSETT_T0_DSSD_Y122_T 933.275 -0.112539
+MUSETT_T0_DSSD_Y123_T 936.749 -0.112978
+MUSETT_T0_DSSD_Y124_T 931.392 -0.112316
+MUSETT_T0_DSSD_Y125_T 930.352 -0.112192
+MUSETT_T0_DSSD_Y126_T 927.302 -0.111821
+MUSETT_T0_DSSD_Y127_T 930.24 -0.112162
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..25335e8eb5d450a665765bd0a4d5645c6ba6855e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E -62.3845 0.00761517
+MUSETT_T1_DSSD_X1_E -62.2104 0.00759389
+MUSETT_T1_DSSD_X2_E -62.2735 0.00760161
+MUSETT_T1_DSSD_X3_E -62.0191 0.007570599999999999
+MUSETT_T1_DSSD_X4_E -61.4765 0.00750432
+MUSETT_T1_DSSD_X5_E -61.597 0.00751908
+MUSETT_T1_DSSD_X6_E -62.319300000000005 0.00760717
+MUSETT_T1_DSSD_X7_E -61.4163 0.00749697
+MUSETT_T1_DSSD_X8_E -61.3271 0.00748611
+MUSETT_T1_DSSD_X9_E -61.4865 0.00750558
+MUSETT_T1_DSSD_X10_E -61.6734 0.00752832
+MUSETT_T1_DSSD_X11_E -61.7326 0.00753556
+MUSETT_T1_DSSD_X12_E -61.9632 0.00756376
+MUSETT_T1_DSSD_X13_E -61.4182 0.00749719
+MUSETT_T1_DSSD_X14_E -61.209 0.007471650000000001
+MUSETT_T1_DSSD_X15_E -61.9876 0.00756667
+MUSETT_T1_DSSD_X16_E -62.5544 0.007635919999999999
+MUSETT_T1_DSSD_X17_E -61.756 0.00753848
+MUSETT_T1_DSSD_X18_E -62.2641 0.00760048
+MUSETT_T1_DSSD_X19_E -61.9537 0.007562579999999999
+MUSETT_T1_DSSD_X20_E -62.913199999999996 0.0076796699999999996
+MUSETT_T1_DSSD_X21_E -62.1209 0.007583
+MUSETT_T1_DSSD_X22_E -62.709 0.00765477
+MUSETT_T1_DSSD_X23_E -62.39 0.00761587
+MUSETT_T1_DSSD_X24_E -62.229699999999994 0.0075962899999999995
+MUSETT_T1_DSSD_X25_E -61.997699999999995 0.00756794
+MUSETT_T1_DSSD_X26_E -62.0365 0.0075726199999999995
+MUSETT_T1_DSSD_X27_E -61.752 0.0075379800000000005
+MUSETT_T1_DSSD_X28_E -61.6556 0.00752623
+MUSETT_T1_DSSD_X29_E -62.7675 0.007661940000000001
+MUSETT_T1_DSSD_X30_E -61.803 0.00754422
+MUSETT_T1_DSSD_X31_E -62.7618 0.00766122
+MUSETT_T1_DSSD_X32_E -58.3035 0.00711703
+MUSETT_T1_DSSD_X33_E -58.3725 0.00712549
+MUSETT_T1_DSSD_X34_E -58.3599 0.00712397
+MUSETT_T1_DSSD_X35_E -58.2622 0.00711204
+MUSETT_T1_DSSD_X36_E -58.041 0.0070850900000000005
+MUSETT_T1_DSSD_X37_E -58.261 0.0071116700000000005
+MUSETT_T1_DSSD_X38_E -58.055699999999995 0.0070867000000000005
+MUSETT_T1_DSSD_X39_E -58.647400000000005 0.00715904
+MUSETT_T1_DSSD_X40_E -58.203900000000004 0.00710488
+MUSETT_T1_DSSD_X41_E -58.8939 0.00718895
+MUSETT_T1_DSSD_X42_E -58.0515 0.00708632
+MUSETT_T1_DSSD_X43_E -58.5394 0.0071458599999999995
+MUSETT_T1_DSSD_X44_E -58.5544 0.00714758
+MUSETT_T1_DSSD_X45_E -59.3359 0.00724309
+MUSETT_T1_DSSD_X46_E -58.7258 0.00716875
+MUSETT_T1_DSSD_X47_E -58.4657 0.007136770000000001
+MUSETT_T1_DSSD_X48_E -57.8688 0.0070639399999999995
+MUSETT_T1_DSSD_X49_E -58.5298 0.00714462
+MUSETT_T1_DSSD_X50_E -57.9728 0.00707665
+MUSETT_T1_DSSD_X51_E -57.7251 0.00704637
+MUSETT_T1_DSSD_X52_E -57.9466 0.00707339
+MUSETT_T1_DSSD_X53_E -57.9195 0.00707013
+MUSETT_T1_DSSD_X54_E -57.971 0.00707643
+MUSETT_T1_DSSD_X55_E -57.8129 0.00705708
+MUSETT_T1_DSSD_X56_E -58.0595 0.00708722
+MUSETT_T1_DSSD_X57_E -57.8609 0.00706295
+MUSETT_T1_DSSD_X58_E -58.481199999999994 0.0071386900000000005
+MUSETT_T1_DSSD_X59_E -57.6735 0.00704005
+MUSETT_T1_DSSD_X60_E -57.7339 0.007047469999999999
+MUSETT_T1_DSSD_X61_E -58.243 0.00710961
+MUSETT_T1_DSSD_X62_E -58.1142 0.00709391
+MUSETT_T1_DSSD_X63_E -58.2467 0.0071100700000000005
+MUSETT_T1_DSSD_X64_E -61.0093 0.00744733
+MUSETT_T1_DSSD_X65_E -61.6307 0.00752317
+MUSETT_T1_DSSD_X66_E -61.4718 0.00750372
+MUSETT_T1_DSSD_X67_E -61.7169 0.0075336100000000005
+MUSETT_T1_DSSD_X68_E -61.8935 0.00755524
+MUSETT_T1_DSSD_X69_E -61.3286 0.007486329999999999
+MUSETT_T1_DSSD_X70_E -61.623400000000004 0.0075222100000000005
+MUSETT_T1_DSSD_X71_E -61.9118 0.00755752
+MUSETT_T1_DSSD_X72_E -61.2791 0.007480260000000001
+MUSETT_T1_DSSD_X73_E -62.4381 0.007621749999999999
+MUSETT_T1_DSSD_X74_E -61.9378 0.0075606200000000005
+MUSETT_T1_DSSD_X75_E -62.0787 0.0075778600000000005
+MUSETT_T1_DSSD_X76_E -61.4964 0.00750682
+MUSETT_T1_DSSD_X77_E -61.721199999999996 0.00753417
+MUSETT_T1_DSSD_X78_E -61.3211 0.00748534
+MUSETT_T1_DSSD_X79_E -61.9309 0.00755971
+MUSETT_T1_DSSD_X80_E -63.4259 0.007742300000000001
+MUSETT_T1_DSSD_X81_E -63.726 0.00777898
+MUSETT_T1_DSSD_X82_E -64.2118 0.00783822
+MUSETT_T1_DSSD_X83_E -63.931 0.00780396
+MUSETT_T1_DSSD_X84_E -64.1147 0.007826399999999999
+MUSETT_T1_DSSD_X85_E -63.8814 0.0077979
+MUSETT_T1_DSSD_X86_E -64.0891 0.00782321
+MUSETT_T1_DSSD_X87_E -64.226 0.00783998
+MUSETT_T1_DSSD_X88_E -64.1628 0.00783225
+MUSETT_T1_DSSD_X89_E -64.2273 0.00784014
+MUSETT_T1_DSSD_X90_E -63.3243 0.0077299199999999995
+MUSETT_T1_DSSD_X91_E -63.377900000000004 0.00773646
+MUSETT_T1_DSSD_X92_E -64.5924 0.007884750000000001
+MUSETT_T1_DSSD_X93_E -64.0512 0.00781864
+MUSETT_T1_DSSD_X94_E -63.7853 0.00778625
+MUSETT_T1_DSSD_X95_E -63.4251 0.00774221
+MUSETT_T1_DSSD_X96_E -56.2771 0.00686963
+MUSETT_T1_DSSD_X97_E -56.696400000000004 0.00692087
+MUSETT_T1_DSSD_X98_E -56.5242 0.00689973
+MUSETT_T1_DSSD_X99_E -56.4219 0.00688734
+MUSETT_T1_DSSD_X100_E -56.5169 0.00689896
+MUSETT_T1_DSSD_X101_E -56.9871 0.00695627
+MUSETT_T1_DSSD_X102_E -57.3419 0.00699957
+MUSETT_T1_DSSD_X103_E -56.5904 0.00690785
+MUSETT_T1_DSSD_X104_E -56.8425 0.00693859
+MUSETT_T1_DSSD_X105_E -57.029900000000005 0.00696151
+MUSETT_T1_DSSD_X106_E -57.8401 0.00706034
+MUSETT_T1_DSSD_X107_E -57.7541 0.007049870000000001
+MUSETT_T1_DSSD_X108_E -57.7184 0.00704556
+MUSETT_T1_DSSD_X109_E -57.495 0.00701832
+MUSETT_T1_DSSD_X110_E -57.6737 0.0070401
+MUSETT_T1_DSSD_X111_E -58.035199999999996 0.00708421
+MUSETT_T1_DSSD_X112_E -57.2543 0.00698888
+MUSETT_T1_DSSD_X113_E -57.309599999999996 0.00699565
+MUSETT_T1_DSSD_X114_E -56.8137 0.00693513
+MUSETT_T1_DSSD_X115_E -57.6843 0.00704141
+MUSETT_T1_DSSD_X116_E -57.2736 0.00699128
+MUSETT_T1_DSSD_X117_E -57.2633 0.0069900200000000004
+MUSETT_T1_DSSD_X118_E -56.331199999999995 0.00687626
+MUSETT_T1_DSSD_X119_E -58.331 0.00712035
+MUSETT_T1_DSSD_X120_E -57.4483 0.0070126
+MUSETT_T1_DSSD_X121_E -57.7637 0.00705109
+MUSETT_T1_DSSD_X122_E -57.724199999999996 0.00704628
+MUSETT_T1_DSSD_X123_E -57.4583 0.007013849999999999
+MUSETT_T1_DSSD_X124_E -57.5865 0.0070294699999999995
+MUSETT_T1_DSSD_X125_E -57.6715 0.00703982
+MUSETT_T1_DSSD_X126_E -57.0766 0.0069672
+MUSETT_T1_DSSD_X127_E -57.8189 0.007057839999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..4f2ff00b21e3e2cd35eb213bcf9ddf7431b4902a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_E 59.6282 -0.0072789099999999995
+MUSETT_T1_DSSD_Y1_E 60.484199999999994 -0.0073834
+MUSETT_T1_DSSD_Y2_E 59.719300000000004 -0.00729006
+MUSETT_T1_DSSD_Y3_E 59.358 -0.00724601
+MUSETT_T1_DSSD_Y4_E 60.2094 -0.00734991
+MUSETT_T1_DSSD_Y5_E 60.023900000000005 -0.00732724
+MUSETT_T1_DSSD_Y6_E 59.4274 -0.007254419999999999
+MUSETT_T1_DSSD_Y7_E 59.479800000000004 -0.00726081
+MUSETT_T1_DSSD_Y8_E 59.4726 -0.00725995
+MUSETT_T1_DSSD_Y9_E 59.6615 -0.00728303
+MUSETT_T1_DSSD_Y10_E 59.523 -0.0072661
+MUSETT_T1_DSSD_Y11_E 59.5207 -0.00726582
+MUSETT_T1_DSSD_Y12_E 60.207699999999996 -0.007349700000000001
+MUSETT_T1_DSSD_Y13_E 59.2816 -0.00723662
+MUSETT_T1_DSSD_Y14_E 59.4995 -0.0072632899999999995
+MUSETT_T1_DSSD_Y15_E 59.822199999999995 -0.00730262
+MUSETT_T1_DSSD_Y16_E 62.231 -0.00759672
+MUSETT_T1_DSSD_Y17_E 62.5176 -0.00763166
+MUSETT_T1_DSSD_Y18_E 62.4625 -0.00762493
+MUSETT_T1_DSSD_Y19_E 62.047 -0.00757417
+MUSETT_T1_DSSD_Y20_E 62.207300000000004 -0.00759375
+MUSETT_T1_DSSD_Y21_E 62.3629 -0.0076127700000000005
+MUSETT_T1_DSSD_Y22_E -10.0 0.0
+MUSETT_T1_DSSD_Y23_E 62.0175 -0.00757064
+MUSETT_T1_DSSD_Y24_E 61.7139 -0.00753355
+MUSETT_T1_DSSD_Y25_E 61.4491 -0.007501229999999999
+MUSETT_T1_DSSD_Y26_E 62.0861 -0.00757898
+MUSETT_T1_DSSD_Y27_E 62.0777 -0.00757796
+MUSETT_T1_DSSD_Y28_E 62.2876 -0.00760362
+MUSETT_T1_DSSD_Y29_E 62.0279 -0.0075719
+MUSETT_T1_DSSD_Y30_E 61.6686 -0.00752799
+MUSETT_T1_DSSD_Y31_E 61.8048 -0.00754468
+MUSETT_T1_DSSD_Y32_E 56.1157 -0.006850220000000001
+MUSETT_T1_DSSD_Y33_E 56.2557 -0.00686728
+MUSETT_T1_DSSD_Y34_E 55.6349 -0.00679153
+MUSETT_T1_DSSD_Y35_E 55.6409 -0.00679227
+MUSETT_T1_DSSD_Y36_E 55.3843 -0.006760919999999999
+MUSETT_T1_DSSD_Y37_E 56.4204 -0.006887450000000001
+MUSETT_T1_DSSD_Y38_E 55.380900000000004 -0.00676051
+MUSETT_T1_DSSD_Y39_E 55.9348 -0.00682817
+MUSETT_T1_DSSD_Y40_E 56.0365 -0.00684053
+MUSETT_T1_DSSD_Y41_E 56.1492 -0.0068543399999999996
+MUSETT_T1_DSSD_Y42_E 55.5099 -0.00677625
+MUSETT_T1_DSSD_Y43_E 56.6373 -0.0069139
+MUSETT_T1_DSSD_Y44_E 55.6379 -0.00679188
+MUSETT_T1_DSSD_Y45_E 55.7303 -0.00680315
+MUSETT_T1_DSSD_Y46_E 55.751599999999996 -0.00680582
+MUSETT_T1_DSSD_Y47_E 55.7609 -0.00680693
+MUSETT_T1_DSSD_Y48_E 57.1947 -0.0069819
+MUSETT_T1_DSSD_Y49_E 56.616699999999994 -0.00691132
+MUSETT_T1_DSSD_Y50_E 56.5651 -0.0069050399999999994
+MUSETT_T1_DSSD_Y51_E 56.0075 -0.0068369400000000006
+MUSETT_T1_DSSD_Y52_E 56.8389 -0.0069384600000000005
+MUSETT_T1_DSSD_Y53_E 56.277 -0.00686982
+MUSETT_T1_DSSD_Y54_E 56.4758 -0.00689415
+MUSETT_T1_DSSD_Y55_E 56.3949 -0.00688425
+MUSETT_T1_DSSD_Y56_E 57.2861 -0.0069930700000000005
+MUSETT_T1_DSSD_Y57_E 57.107699999999994 -0.00697128
+MUSETT_T1_DSSD_Y58_E 56.704699999999995 -0.00692209
+MUSETT_T1_DSSD_Y59_E 57.3292 -0.00699832
+MUSETT_T1_DSSD_Y60_E 57.3988 -0.007006770000000001
+MUSETT_T1_DSSD_Y61_E 57.025800000000004 -0.0069612499999999996
+MUSETT_T1_DSSD_Y62_E 56.1794 -0.00685794
+MUSETT_T1_DSSD_Y63_E 57.2945 -0.00699407
+MUSETT_T1_DSSD_Y64_E 61.036 -0.00745079
+MUSETT_T1_DSSD_Y65_E 61.615199999999994 -0.00752147
+MUSETT_T1_DSSD_Y66_E 61.3277 -0.00748646
+MUSETT_T1_DSSD_Y67_E 61.6169 -0.00752169
+MUSETT_T1_DSSD_Y68_E 61.2895 -0.00748175
+MUSETT_T1_DSSD_Y69_E 60.072300000000006 -0.007333129999999999
+MUSETT_T1_DSSD_Y70_E 60.461800000000004 -0.00738072
+MUSETT_T1_DSSD_Y71_E 61.1475 -0.00746439
+MUSETT_T1_DSSD_Y72_E 60.3246 -0.00736394
+MUSETT_T1_DSSD_Y73_E 61.243300000000005 -0.00747609
+MUSETT_T1_DSSD_Y74_E 60.892199999999995 -0.00743321
+MUSETT_T1_DSSD_Y75_E 60.3626 -0.00736861
+MUSETT_T1_DSSD_Y76_E 60.5634 -0.0073931199999999996
+MUSETT_T1_DSSD_Y77_E 60.9695 -0.00744272
+MUSETT_T1_DSSD_Y78_E 60.632 -0.00740146
+MUSETT_T1_DSSD_Y79_E 61.3545 -0.0074896599999999995
+MUSETT_T1_DSSD_Y80_E 61.129 -0.00746218
+MUSETT_T1_DSSD_Y81_E 61.1424 -0.00746376
+MUSETT_T1_DSSD_Y82_E 61.0982 -0.00745836
+MUSETT_T1_DSSD_Y83_E 60.505 -0.00738602
+MUSETT_T1_DSSD_Y84_E 60.4756 -0.00738236
+MUSETT_T1_DSSD_Y85_E 61.1983 -0.00747058
+MUSETT_T1_DSSD_Y86_E 60.653800000000004 -0.00740421
+MUSETT_T1_DSSD_Y87_E 60.6103 -0.007398869999999999
+MUSETT_T1_DSSD_Y88_E 61.0846 -0.00745673
+MUSETT_T1_DSSD_Y89_E 61.2816 -0.00748082
+MUSETT_T1_DSSD_Y90_E 60.7595 -0.00741709
+MUSETT_T1_DSSD_Y91_E 60.908699999999996 -0.00743532
+MUSETT_T1_DSSD_Y92_E 60.5201 -0.00738782
+MUSETT_T1_DSSD_Y93_E 61.3305 -0.00748678
+MUSETT_T1_DSSD_Y94_E 61.6099 -0.00752084
+MUSETT_T1_DSSD_Y95_E 60.752199999999995 -0.00741622
+MUSETT_T1_DSSD_Y96_E 55.8662 -0.0068197200000000005
+MUSETT_T1_DSSD_Y97_E 55.5101 -0.006776290000000001
+MUSETT_T1_DSSD_Y98_E 55.7391 -0.00680422
+MUSETT_T1_DSSD_Y99_E 55.6027 -0.00678757
+MUSETT_T1_DSSD_Y100_E 55.7795 -0.006809160000000001
+MUSETT_T1_DSSD_Y101_E 55.4526 -0.00676931
+MUSETT_T1_DSSD_Y102_E 55.433800000000005 -0.00676695
+MUSETT_T1_DSSD_Y103_E 56.1758 -0.00685753
+MUSETT_T1_DSSD_Y104_E 55.295 -0.00675003
+MUSETT_T1_DSSD_Y105_E 55.2676 -0.00674664
+MUSETT_T1_DSSD_Y106_E 55.9134 -0.00682548
+MUSETT_T1_DSSD_Y107_E 55.219 -0.00674076
+MUSETT_T1_DSSD_Y108_E 55.914699999999996 -0.00682563
+MUSETT_T1_DSSD_Y109_E 56.088300000000004 -0.00684683
+MUSETT_T1_DSSD_Y110_E 56.128699999999995 -0.00685177
+MUSETT_T1_DSSD_Y111_E 56.579699999999995 -0.006906799999999999
+MUSETT_T1_DSSD_Y112_E 54.7919 -0.006688609999999999
+MUSETT_T1_DSSD_Y113_E 55.5735 -0.00678397
+MUSETT_T1_DSSD_Y114_E 55.1773 -0.00673564
+MUSETT_T1_DSSD_Y115_E 55.0659 -0.0067220000000000005
+MUSETT_T1_DSSD_Y116_E 55.2711 -0.00674706
+MUSETT_T1_DSSD_Y117_E 55.4264 -0.00676607
+MUSETT_T1_DSSD_Y118_E 55.3089 -0.006751699999999999
+MUSETT_T1_DSSD_Y119_E 55.5605 -0.00678242
+MUSETT_T1_DSSD_Y120_E 55.8284 -0.0068151
+MUSETT_T1_DSSD_Y121_E 55.4619 -0.00677042
+MUSETT_T1_DSSD_Y122_E 54.836400000000005 -0.00669404
+MUSETT_T1_DSSD_Y123_E 55.154199999999996 -0.006732770000000001
+MUSETT_T1_DSSD_Y124_E 55.2185 -0.00674067
+MUSETT_T1_DSSD_Y125_E 55.1989 -0.00673821
+MUSETT_T1_DSSD_Y126_E 55.347199999999994 -0.00675638
+MUSETT_T1_DSSD_Y127_E 56.2705 -0.00686904
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2dbc58f87a8a21d156c060f3c44a33c496cfccc2
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_T 926.786 -0.11232
+MUSETT_T1_DSSD_X1_T 940.575 -0.114015
+MUSETT_T1_DSSD_X2_T 943.089 -0.114341
+MUSETT_T1_DSSD_X3_T 954.304 -0.115712
+MUSETT_T1_DSSD_X4_T 954.653 -0.115744
+MUSETT_T1_DSSD_X5_T 956.573 -0.115962
+MUSETT_T1_DSSD_X6_T 970.061 -0.117589
+MUSETT_T1_DSSD_X7_T 965.116 -0.116998
+MUSETT_T1_DSSD_X8_T 969.325 -0.117498
+MUSETT_T1_DSSD_X9_T 978.231 -0.118577
+MUSETT_T1_DSSD_X10_T 974.593 -0.118143
+MUSETT_T1_DSSD_X11_T 974.146 -0.118071
+MUSETT_T1_DSSD_X12_T 986.191 -0.11954
+MUSETT_T1_DSSD_X13_T 986.678 -0.119597
+MUSETT_T1_DSSD_X14_T 983.727 -0.119236
+MUSETT_T1_DSSD_X15_T 1371.19 -0.119179
+MUSETT_T1_DSSD_X16_T 922.557 -0.111777
+MUSETT_T1_DSSD_X17_T 945.525 -0.114612
+MUSETT_T1_DSSD_X18_T 946.378 -0.114738
+MUSETT_T1_DSSD_X19_T 943.86 -0.114439
+MUSETT_T1_DSSD_X20_T 952.199 -0.115464
+MUSETT_T1_DSSD_X21_T 965.45 -0.117052
+MUSETT_T1_DSSD_X22_T 954.947 -0.115762
+MUSETT_T1_DSSD_X23_T 971.26 -0.117739
+MUSETT_T1_DSSD_X24_T 969.364 -0.117531
+MUSETT_T1_DSSD_X25_T 972.531 -0.117923
+MUSETT_T1_DSSD_X26_T 971.171 -0.117737
+MUSETT_T1_DSSD_X27_T 974.954 -0.11821
+MUSETT_T1_DSSD_X28_T 978.834 -0.118677
+MUSETT_T1_DSSD_X29_T 975.807 -0.118324
+MUSETT_T1_DSSD_X30_T 974.804 -0.118198
+MUSETT_T1_DSSD_X31_T 984.936 -0.119148
+MUSETT_T1_DSSD_X32_T 875.904 -0.106165
+MUSETT_T1_DSSD_X33_T 875.79 -0.10618
+MUSETT_T1_DSSD_X34_T 891.706 -0.108064
+MUSETT_T1_DSSD_X35_T 873.845 -0.105941
+MUSETT_T1_DSSD_X36_T 891.762 -0.108105
+MUSETT_T1_DSSD_X37_T 897.589 -0.108823
+MUSETT_T1_DSSD_X38_T 889.745 -0.107861
+MUSETT_T1_DSSD_X39_T 894.521 -0.10842
+MUSETT_T1_DSSD_X40_T 897.332 -0.108779
+MUSETT_T1_DSSD_X41_T 897.319 -0.108754
+MUSETT_T1_DSSD_X42_T 905.732 -0.109783
+MUSETT_T1_DSSD_X43_T 897.833 -0.108855
+MUSETT_T1_DSSD_X44_T 907.458 -0.110019
+MUSETT_T1_DSSD_X45_T 905.696 -0.109854
+MUSETT_T1_DSSD_X46_T 903.207 -0.109528
+MUSETT_T1_DSSD_X47_T 918.195 -0.110055
+MUSETT_T1_DSSD_X48_T 865.632 -0.104838
+MUSETT_T1_DSSD_X49_T 871.03 -0.105455
+MUSETT_T1_DSSD_X50_T 883.706 -0.107015
+MUSETT_T1_DSSD_X51_T 886.118 -0.107338
+MUSETT_T1_DSSD_X52_T 888.977 -0.107685
+MUSETT_T1_DSSD_X53_T 889.176 -0.107699
+MUSETT_T1_DSSD_X54_T 893.053 -0.10819
+MUSETT_T1_DSSD_X55_T 898.958 -0.108878
+MUSETT_T1_DSSD_X56_T 905.343 -0.1097
+MUSETT_T1_DSSD_X57_T 901.014 -0.10916
+MUSETT_T1_DSSD_X58_T 909.801 -0.110244
+MUSETT_T1_DSSD_X59_T 902.356 -0.109308
+MUSETT_T1_DSSD_X60_T 915.181 -0.110894
+MUSETT_T1_DSSD_X61_T 906.646 -0.109867
+MUSETT_T1_DSSD_X62_T 906.177 -0.109791
+MUSETT_T1_DSSD_X63_T 917.322 -0.110777
+MUSETT_T1_DSSD_X64_T 947.375 -0.114723
+MUSETT_T1_DSSD_X65_T 949.155 -0.114949
+MUSETT_T1_DSSD_X66_T 962.658 -0.116629
+MUSETT_T1_DSSD_X67_T 962.29 -0.116557
+MUSETT_T1_DSSD_X68_T 964.501 -0.116827
+MUSETT_T1_DSSD_X69_T 972.559 -0.117811
+MUSETT_T1_DSSD_X70_T 972.248 -0.117758
+MUSETT_T1_DSSD_X71_T 977.48 -0.118392
+MUSETT_T1_DSSD_X72_T 974.838 -0.118063
+MUSETT_T1_DSSD_X73_T 989.581 -0.119853
+MUSETT_T1_DSSD_X74_T 985.59 -0.119377
+MUSETT_T1_DSSD_X75_T 983.734 -0.119141
+MUSETT_T1_DSSD_X76_T 990.699 -0.119982
+MUSETT_T1_DSSD_X77_T 992.465 -0.120199
+MUSETT_T1_DSSD_X78_T 992.485 -0.1202
+MUSETT_T1_DSSD_X79_T 1375.52 -0.120722
+MUSETT_T1_DSSD_X80_T 972.687 -0.117775
+MUSETT_T1_DSSD_X81_T 974.84 -0.118024
+MUSETT_T1_DSSD_X82_T 979.911 -0.118652
+MUSETT_T1_DSSD_X83_T 993.406 -0.120307
+MUSETT_T1_DSSD_X84_T 992.814 -0.120215
+MUSETT_T1_DSSD_X85_T 1002.31 -0.121389
+MUSETT_T1_DSSD_X86_T 1003.74 -0.121554
+MUSETT_T1_DSSD_X87_T 995.588 -0.12057
+MUSETT_T1_DSSD_X88_T 1010.12 -0.122345
+MUSETT_T1_DSSD_X89_T 1012.32 -0.12261
+MUSETT_T1_DSSD_X90_T 1007.94 -0.122082
+MUSETT_T1_DSSD_X91_T 1014.03 -0.12282
+MUSETT_T1_DSSD_X92_T 1013.77 -0.12279
+MUSETT_T1_DSSD_X93_T 1016.53 -0.123127
+MUSETT_T1_DSSD_X94_T 1016.3 -0.123096
+MUSETT_T1_DSSD_X95_T 1004.26 -0.12163
+MUSETT_T1_DSSD_X96_T 888.673 -0.107613
+MUSETT_T1_DSSD_X97_T 886.825 -0.107373
+MUSETT_T1_DSSD_X98_T 890.552 -0.107838
+MUSETT_T1_DSSD_X99_T 901.931 -0.109224
+MUSETT_T1_DSSD_X100_T 901.707 -0.1092
+MUSETT_T1_DSSD_X101_T 906.676 -0.109791
+MUSETT_T1_DSSD_X102_T 902.249 -0.109268
+MUSETT_T1_DSSD_X103_T 917.913 -0.111151
+MUSETT_T1_DSSD_X104_T 919.118 -0.11128
+MUSETT_T1_DSSD_X105_T 920.502 -0.111467
+MUSETT_T1_DSSD_X106_T 925.286 -0.112035
+MUSETT_T1_DSSD_X107_T 920.839 -0.111519
+MUSETT_T1_DSSD_X108_T 921.752 -0.111616
+MUSETT_T1_DSSD_X109_T 913.537 -0.110627
+MUSETT_T1_DSSD_X110_T 916.058 -0.110941
+MUSETT_T1_DSSD_X111_T 924.322 -0.11176
+MUSETT_T1_DSSD_X112_T 897.027 -0.108476
+MUSETT_T1_DSSD_X113_T 897.77 -0.108567
+MUSETT_T1_DSSD_X114_T 905.06 -0.10946
+MUSETT_T1_DSSD_X115_T 910.605 -0.110136
+MUSETT_T1_DSSD_X116_T 925.57 -0.111977
+MUSETT_T1_DSSD_X117_T 920.161 -0.111304
+MUSETT_T1_DSSD_X118_T 932.296 -0.112781
+MUSETT_T1_DSSD_X119_T 914.819 -0.110659
+MUSETT_T1_DSSD_X120_T 920.284 -0.111325
+MUSETT_T1_DSSD_X121_T 927.772 -0.112226
+MUSETT_T1_DSSD_X122_T 928.866 -0.11236
+MUSETT_T1_DSSD_X123_T 924.041 -0.111775
+MUSETT_T1_DSSD_X124_T 921.484 -0.111483
+MUSETT_T1_DSSD_X125_T 927.438 -0.112193
+MUSETT_T1_DSSD_X126_T 930.757 -0.112614
+MUSETT_T1_DSSD_X127_T 924.698 -0.111864
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c68402d0ef8eb89f484440e367ee91280c30e12e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_T 930.899 -0.11282
+MUSETT_T1_DSSD_Y1_T 932.297 -0.113022
+MUSETT_T1_DSSD_Y2_T 943.292 -0.114361
+MUSETT_T1_DSSD_Y3_T 947.201 -0.114834
+MUSETT_T1_DSSD_Y4_T 949.524 -0.115122
+MUSETT_T1_DSSD_Y5_T 952.95 -0.115533
+MUSETT_T1_DSSD_Y6_T 956.311 -0.115938
+MUSETT_T1_DSSD_Y7_T 946.369 -0.114726
+MUSETT_T1_DSSD_Y8_T 953.576 -0.11562
+MUSETT_T1_DSSD_Y9_T 964.215 -0.116854
+MUSETT_T1_DSSD_Y10_T 959.98 -0.116368
+MUSETT_T1_DSSD_Y11_T 967.734 -0.117327
+MUSETT_T1_DSSD_Y12_T 967.914 -0.117358
+MUSETT_T1_DSSD_Y13_T 963.677 -0.116827
+MUSETT_T1_DSSD_Y14_T 965.026 -0.116981
+MUSETT_T1_DSSD_Y15_T 962.695 -0.116717
+MUSETT_T1_DSSD_Y16_T 964.683 -0.116883
+MUSETT_T1_DSSD_Y17_T 966.649 -0.117128
+MUSETT_T1_DSSD_Y18_T 971.034 -0.117665
+MUSETT_T1_DSSD_Y19_T 971.558 -0.117743
+MUSETT_T1_DSSD_Y20_T 983.103 -0.119146
+MUSETT_T1_DSSD_Y21_T 979.702 -0.118747
+MUSETT_T1_DSSD_Y22_T 450.0 -0.119189
+MUSETT_T1_DSSD_Y23_T 989.487 -0.119964
+MUSETT_T1_DSSD_Y24_T 991.153 -0.120158
+MUSETT_T1_DSSD_Y25_T 991.247 -0.120176
+MUSETT_T1_DSSD_Y26_T 995.752 -0.120728
+MUSETT_T1_DSSD_Y27_T 990.621 -0.120113
+MUSETT_T1_DSSD_Y28_T 992.588 -0.120339
+MUSETT_T1_DSSD_Y29_T 983.94 -0.119308
+MUSETT_T1_DSSD_Y30_T 990.472 -0.120108
+MUSETT_T1_DSSD_Y31_T 985.366 -0.119515
+MUSETT_T1_DSSD_Y32_T 879.895 -0.106691
+MUSETT_T1_DSSD_Y33_T 885.732 -0.10745
+MUSETT_T1_DSSD_Y34_T 880.947 -0.106848
+MUSETT_T1_DSSD_Y35_T 890.881 -0.108037
+MUSETT_T1_DSSD_Y36_T 850641000000.0 -103827000.0
+MUSETT_T1_DSSD_Y37_T 901.269 -0.109433
+MUSETT_T1_DSSD_Y38_T 900.483 -0.110242
+MUSETT_T1_DSSD_Y39_T 902.133 -0.10944
+MUSETT_T1_DSSD_Y40_T 890.343 -0.107957
+MUSETT_T1_DSSD_Y41_T 902.898 -0.109521
+MUSETT_T1_DSSD_Y42_T 895.657 -0.108623
+MUSETT_T1_DSSD_Y43_T 904.61 -0.10969
+MUSETT_T1_DSSD_Y44_T 907.072 -0.109989
+MUSETT_T1_DSSD_Y45_T 901.222 -0.109312
+MUSETT_T1_DSSD_Y46_T 905.951 -0.109844
+MUSETT_T1_DSSD_Y47_T 901.159 -0.109257
+MUSETT_T1_DSSD_Y48_T 883.344 -0.10696
+MUSETT_T1_DSSD_Y49_T 882.465 -0.106852
+MUSETT_T1_DSSD_Y50_T 878.872 -0.106436
+MUSETT_T1_DSSD_Y51_T 892.099 -0.108049
+MUSETT_T1_DSSD_Y52_T 897.834 -0.108781
+MUSETT_T1_DSSD_Y53_T 899.02 -0.108923
+MUSETT_T1_DSSD_Y54_T 898.979 -0.108922
+MUSETT_T1_DSSD_Y55_T 899.225 -0.108949
+MUSETT_T1_DSSD_Y56_T 911.018 -0.110395
+MUSETT_T1_DSSD_Y57_T 910.225 -0.110294
+MUSETT_T1_DSSD_Y58_T 905.692 -0.109746
+MUSETT_T1_DSSD_Y59_T 908.504 -0.109802
+MUSETT_T1_DSSD_Y60_T 905.665 -0.109742
+MUSETT_T1_DSSD_Y61_T 913.658 -0.11072
+MUSETT_T1_DSSD_Y62_T 915.004 -0.110879
+MUSETT_T1_DSSD_Y63_T 915.999 -0.111037
+MUSETT_T1_DSSD_Y64_T 945.876 -0.115194
+MUSETT_T1_DSSD_Y65_T 952.653 -0.116053
+MUSETT_T1_DSSD_Y66_T 958.599 -0.116788
+MUSETT_T1_DSSD_Y67_T 962.073 -0.117211
+MUSETT_T1_DSSD_Y68_T 965.512 -0.117617
+MUSETT_T1_DSSD_Y69_T 973.646 -0.118609
+MUSETT_T1_DSSD_Y70_T 969.091 -0.118053
+MUSETT_T1_DSSD_Y71_T 977.205 -0.119038
+MUSETT_T1_DSSD_Y72_T 978.244 -0.119163
+MUSETT_T1_DSSD_Y73_T 981.509 -0.119552
+MUSETT_T1_DSSD_Y74_T 983.33 -0.119777
+MUSETT_T1_DSSD_Y75_T 980.28 -0.119391
+MUSETT_T1_DSSD_Y76_T 987.378 -0.11981
+MUSETT_T1_DSSD_Y77_T 981.221 -0.119505
+MUSETT_T1_DSSD_Y78_T 982.019 -0.119601
+MUSETT_T1_DSSD_Y79_T 986.869 -0.120194
+MUSETT_T1_DSSD_Y80_T 942.041 -0.114646
+MUSETT_T1_DSSD_Y81_T 950.256 -0.115676
+MUSETT_T1_DSSD_Y82_T 949.146 -0.115551
+MUSETT_T1_DSSD_Y83_T 956.132 -0.116392
+MUSETT_T1_DSSD_Y84_T 955.603 -0.116344
+MUSETT_T1_DSSD_Y85_T 965.862 -0.117589
+MUSETT_T1_DSSD_Y86_T 966.696 -0.117699
+MUSETT_T1_DSSD_Y87_T 973.856 -0.118567
+MUSETT_T1_DSSD_Y88_T 974.942 -0.118705
+MUSETT_T1_DSSD_Y89_T 967.58 -0.117807
+MUSETT_T1_DSSD_Y90_T 972.217 -0.118376
+MUSETT_T1_DSSD_Y91_T 980.142 -0.119333
+MUSETT_T1_DSSD_Y92_T 980.758 -0.119429
+MUSETT_T1_DSSD_Y93_T 973.754 -0.118576
+MUSETT_T1_DSSD_Y94_T 977.548 -0.119031
+MUSETT_T1_DSSD_Y95_T 988.795 -0.120471
+MUSETT_T1_DSSD_Y96_T 871.404 -0.106136
+MUSETT_T1_DSSD_Y97_T 870.084 -0.106
+MUSETT_T1_DSSD_Y98_T 874.611 -0.106555
+MUSETT_T1_DSSD_Y99_T 888.655 -0.108263
+MUSETT_T1_DSSD_Y100_T 886.461 -0.10801
+MUSETT_T1_DSSD_Y101_T 878.586 -0.107044
+MUSETT_T1_DSSD_Y102_T 886.442 -0.108005
+MUSETT_T1_DSSD_Y103_T 889.81 -0.108406
+MUSETT_T1_DSSD_Y104_T 900.116 -0.109653
+MUSETT_T1_DSSD_Y105_T 896.798 -0.10926
+MUSETT_T1_DSSD_Y106_T 900.214 -0.10967
+MUSETT_T1_DSSD_Y107_T 890.896 -0.108536
+MUSETT_T1_DSSD_Y108_T 898.103 -0.109417
+MUSETT_T1_DSSD_Y109_T 905.123 -0.110268
+MUSETT_T1_DSSD_Y110_T 895.488 -0.109108
+MUSETT_T1_DSSD_Y111_T 901.504 -0.109824
+MUSETT_T1_DSSD_Y112_T 857.767 -0.104291
+MUSETT_T1_DSSD_Y113_T 851.391 -0.103549
+MUSETT_T1_DSSD_Y114_T 861.589 -0.104798
+MUSETT_T1_DSSD_Y115_T 856.553 -0.10419
+MUSETT_T1_DSSD_Y116_T 865.0 -0.105221
+MUSETT_T1_DSSD_Y117_T 874.383 -0.106354
+MUSETT_T1_DSSD_Y118_T 878.744 -0.1069
+MUSETT_T1_DSSD_Y119_T 873.451 -0.106252
+MUSETT_T1_DSSD_Y120_T 890.883 -0.108379
+MUSETT_T1_DSSD_Y121_T 891.802 -0.108492
+MUSETT_T1_DSSD_Y122_T 889.789 -0.108225
+MUSETT_T1_DSSD_Y123_T 888.888 -0.108132
+MUSETT_T1_DSSD_Y124_T 891.161 -0.108412
+MUSETT_T1_DSSD_Y125_T 886.515 -0.10784
+MUSETT_T1_DSSD_Y126_T 883.99 -0.107526
+MUSETT_T1_DSSD_Y127_T 947.91 -0.121191
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..3377583e8617d3622c02ba0a58094591e9dfebac
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E -62.771800000000006 0.00766248
+MUSETT_T2_DSSD_X1_E -62.536199999999994 0.00763367
+MUSETT_T2_DSSD_X2_E -62.923199999999994 0.007680920000000001
+MUSETT_T2_DSSD_X3_E -62.099199999999996 0.0075803
+MUSETT_T2_DSSD_X4_E -62.0716 0.0075769999999999995
+MUSETT_T2_DSSD_X5_E -62.7625 0.00766131
+MUSETT_T2_DSSD_X6_E -62.5366 0.00763372
+MUSETT_T2_DSSD_X7_E -62.8634 0.0076736
+MUSETT_T2_DSSD_X8_E -62.977599999999995 0.00768755
+MUSETT_T2_DSSD_X9_E -62.1692 0.00758889
+MUSETT_T2_DSSD_X10_E -62.4862 0.00762758
+MUSETT_T2_DSSD_X11_E -62.494 0.00762855
+MUSETT_T2_DSSD_X12_E -62.5914 0.0076403999999999994
+MUSETT_T2_DSSD_X13_E -62.5965 0.00764104
+MUSETT_T2_DSSD_X14_E -62.6933 0.00765283
+MUSETT_T2_DSSD_X15_E -63.4319 0.00774304
+MUSETT_T2_DSSD_X16_E -62.2755 0.00760186
+MUSETT_T2_DSSD_X17_E -61.847 0.007549559999999999
+MUSETT_T2_DSSD_X18_E -61.648900000000005 0.0075254200000000005
+MUSETT_T2_DSSD_X19_E -61.472199999999994 0.0075038
+MUSETT_T2_DSSD_X20_E -61.4877 0.0075057299999999995
+MUSETT_T2_DSSD_X21_E -62.3236 0.007607719999999999
+MUSETT_T2_DSSD_X22_E -62.160599999999995 0.00758783
+MUSETT_T2_DSSD_X23_E -61.8015 0.00754404
+MUSETT_T2_DSSD_X24_E -61.589400000000005 0.0075181300000000005
+MUSETT_T2_DSSD_X25_E -61.837900000000005 0.00754843
+MUSETT_T2_DSSD_X26_E -61.9972 0.00756788
+MUSETT_T2_DSSD_X27_E -61.886900000000004 0.00755441
+MUSETT_T2_DSSD_X28_E -61.669599999999996 0.00752787
+MUSETT_T2_DSSD_X29_E -61.3176 0.00748493
+MUSETT_T2_DSSD_X30_E -62.385400000000004 0.0076153
+MUSETT_T2_DSSD_X31_E -61.5448 0.007512710000000001
+MUSETT_T2_DSSD_X32_E -59.0051 0.00720263
+MUSETT_T2_DSSD_X33_E -58.1254 0.0070952
+MUSETT_T2_DSSD_X34_E -58.621 0.0071557700000000005
+MUSETT_T2_DSSD_X35_E -58.4208 0.00713128
+MUSETT_T2_DSSD_X36_E -58.1821 0.00710215
+MUSETT_T2_DSSD_X37_E -58.1795 0.00710183
+MUSETT_T2_DSSD_X38_E -58.3827 0.00712665
+MUSETT_T2_DSSD_X39_E -57.9516 0.0070739999999999996
+MUSETT_T2_DSSD_X40_E -57.6194 0.00703346
+MUSETT_T2_DSSD_X41_E -58.6028 0.007153489999999999
+MUSETT_T2_DSSD_X42_E -58.7636 0.0071731699999999995
+MUSETT_T2_DSSD_X43_E -58.295300000000005 0.00711601
+MUSETT_T2_DSSD_X44_E -58.6115 0.00715458
+MUSETT_T2_DSSD_X45_E -58.5695 0.00714945
+MUSETT_T2_DSSD_X46_E -58.3686 0.00712489
+MUSETT_T2_DSSD_X47_E -58.524699999999996 0.007144
+MUSETT_T2_DSSD_X48_E -57.829699999999995 0.00705919
+MUSETT_T2_DSSD_X49_E -57.177699999999994 0.00697958
+MUSETT_T2_DSSD_X50_E -58.151 0.0070983999999999995
+MUSETT_T2_DSSD_X51_E -57.925 0.00707083
+MUSETT_T2_DSSD_X52_E -57.600199999999994 0.00703119
+MUSETT_T2_DSSD_X53_E -57.219800000000006 0.0069847
+MUSETT_T2_DSSD_X54_E -57.8554 0.007062280000000001
+MUSETT_T2_DSSD_X55_E -57.682199999999995 0.007041159999999999
+MUSETT_T2_DSSD_X56_E -57.9126 0.00706929
+MUSETT_T2_DSSD_X57_E -57.5989 0.00703102
+MUSETT_T2_DSSD_X58_E -57.919599999999996 0.00707016
+MUSETT_T2_DSSD_X59_E -56.9985 0.0069577
+MUSETT_T2_DSSD_X60_E -57.4982 0.007018709999999999
+MUSETT_T2_DSSD_X61_E -56.729099999999995 0.00692483
+MUSETT_T2_DSSD_X62_E -57.5006 0.00701901
+MUSETT_T2_DSSD_X63_E -57.910599999999995 0.00706904
+MUSETT_T2_DSSD_X64_E -63.311 0.007728240000000001
+MUSETT_T2_DSSD_X65_E -64.9918 0.00793347
+MUSETT_T2_DSSD_X66_E -63.9945 0.0078117
+MUSETT_T2_DSSD_X67_E -63.7503 0.00778186
+MUSETT_T2_DSSD_X68_E -10.0 0.0
+MUSETT_T2_DSSD_X69_E -64.4085 0.007862280000000001
+MUSETT_T2_DSSD_X70_E -63.629 0.0077670199999999995
+MUSETT_T2_DSSD_X71_E -63.4388 0.00774388
+MUSETT_T2_DSSD_X72_E -63.3583 0.0077339900000000005
+MUSETT_T2_DSSD_X73_E -63.1446 0.00770793
+MUSETT_T2_DSSD_X74_E -63.8121 0.007789399999999999
+MUSETT_T2_DSSD_X75_E -63.6624 0.00777117
+MUSETT_T2_DSSD_X76_E -63.8769 0.00779733
+MUSETT_T2_DSSD_X77_E -63.7711 0.00778444
+MUSETT_T2_DSSD_X78_E -63.6521 0.0077699
+MUSETT_T2_DSSD_X79_E -63.600300000000004 0.00776358
+MUSETT_T2_DSSD_X80_E -63.2564 0.0077215800000000005
+MUSETT_T2_DSSD_X81_E -63.3337 0.00773107
+MUSETT_T2_DSSD_X82_E -63.15 0.00770859
+MUSETT_T2_DSSD_X83_E -63.2045 0.00771524
+MUSETT_T2_DSSD_X84_E -63.982099999999996 0.00781015
+MUSETT_T2_DSSD_X85_E -63.771300000000004 0.00778446
+MUSETT_T2_DSSD_X86_E -63.6827 0.0077737
+MUSETT_T2_DSSD_X87_E -63.921099999999996 0.00780269
+MUSETT_T2_DSSD_X88_E -63.090300000000006 0.0077012999999999995
+MUSETT_T2_DSSD_X89_E -63.5487 0.00775733
+MUSETT_T2_DSSD_X90_E -63.345699999999994 0.00773257
+MUSETT_T2_DSSD_X91_E -63.537699999999994 0.00775593
+MUSETT_T2_DSSD_X92_E -63.2671 0.00772292
+MUSETT_T2_DSSD_X93_E -64.6143 0.00788733
+MUSETT_T2_DSSD_X94_E -63.737 0.00778019
+MUSETT_T2_DSSD_X95_E -63.6275 0.00776682
+MUSETT_T2_DSSD_X96_E -59.0116 0.00720345
+MUSETT_T2_DSSD_X97_E -58.536300000000004 0.00714543
+MUSETT_T2_DSSD_X98_E -58.2945 0.00711592
+MUSETT_T2_DSSD_X99_E -58.7645 0.00717328
+MUSETT_T2_DSSD_X100_E -59.3882 0.007249380000000001
+MUSETT_T2_DSSD_X101_E -59.3539 0.00724523
+MUSETT_T2_DSSD_X102_E -58.868900000000004 0.00718606
+MUSETT_T2_DSSD_X103_E -59.0204 0.00720454
+MUSETT_T2_DSSD_X104_E -59.051199999999994 0.00720827
+MUSETT_T2_DSSD_X105_E -59.067699999999995 0.00721031
+MUSETT_T2_DSSD_X106_E -58.7806 0.00717527
+MUSETT_T2_DSSD_X107_E -59.0118 0.00720348
+MUSETT_T2_DSSD_X108_E -58.6856 0.0071636899999999995
+MUSETT_T2_DSSD_X109_E -60.3136 0.00736243
+MUSETT_T2_DSSD_X110_E -58.9477 0.0071956
+MUSETT_T2_DSSD_X111_E -58.6406 0.00715819
+MUSETT_T2_DSSD_X112_E -59.2564 0.00723333
+MUSETT_T2_DSSD_X113_E -59.391400000000004 0.00724979
+MUSETT_T2_DSSD_X114_E -59.7415 0.00729254
+MUSETT_T2_DSSD_X115_E -59.153 0.0072207
+MUSETT_T2_DSSD_X116_E -59.6593 0.00728255
+MUSETT_T2_DSSD_X117_E -60.0435 0.007329410000000001
+MUSETT_T2_DSSD_X118_E -59.4929 0.00726218
+MUSETT_T2_DSSD_X119_E -59.3559 0.0072455
+MUSETT_T2_DSSD_X120_E -60.079 0.0073337
+MUSETT_T2_DSSD_X121_E -58.759699999999995 0.00717268
+MUSETT_T2_DSSD_X122_E -59.106300000000005 0.00721501
+MUSETT_T2_DSSD_X123_E -59.3564 0.00724556
+MUSETT_T2_DSSD_X124_E -58.9054 0.00719045
+MUSETT_T2_DSSD_X125_E -58.909 0.00719091
+MUSETT_T2_DSSD_X126_E -59.1398 0.00721905
+MUSETT_T2_DSSD_X127_E -59.2444 0.00723184
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..42f4d2174be61e224ee762c0a61859e525dfc76f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_E 63.1803 -0.0077125399999999995
+MUSETT_T2_DSSD_Y1_E 63.9585 -0.00780757
+MUSETT_T2_DSSD_Y2_E 62.563900000000004 -0.00763734
+MUSETT_T2_DSSD_Y3_E 63.393800000000006 -0.00773864
+MUSETT_T2_DSSD_Y4_E 62.965300000000006 -0.0076863
+MUSETT_T2_DSSD_Y5_E 62.6952 -0.00765332
+MUSETT_T2_DSSD_Y6_E 63.071 -0.007699200000000001
+MUSETT_T2_DSSD_Y7_E 62.6847 -0.00765205
+MUSETT_T2_DSSD_Y8_E 62.8052 -0.00766674
+MUSETT_T2_DSSD_Y9_E 63.4059 -0.00774008
+MUSETT_T2_DSSD_Y10_E 63.006 -0.007691290000000001
+MUSETT_T2_DSSD_Y11_E 62.613800000000005 -0.00764344
+MUSETT_T2_DSSD_Y12_E 62.1358 -0.00758506
+MUSETT_T2_DSSD_Y13_E 62.7978 -0.00766584
+MUSETT_T2_DSSD_Y14_E 63.0039 -0.00769104
+MUSETT_T2_DSSD_Y15_E 63.4515 -0.00774566
+MUSETT_T2_DSSD_Y16_E 61.6804 -0.00752939
+MUSETT_T2_DSSD_Y17_E 60.963699999999996 -0.007442020000000001
+MUSETT_T2_DSSD_Y18_E 60.731300000000005 -0.007413599999999999
+MUSETT_T2_DSSD_Y19_E 62.0444 -0.00757386
+MUSETT_T2_DSSD_Y20_E 61.1209 -0.00746121
+MUSETT_T2_DSSD_Y21_E 60.932 -0.0074381000000000004
+MUSETT_T2_DSSD_Y22_E 62.091800000000006 -0.00757965
+MUSETT_T2_DSSD_Y23_E 61.0425 -0.00745157
+MUSETT_T2_DSSD_Y24_E 61.0802 -0.00745622
+MUSETT_T2_DSSD_Y25_E 61.569 -0.00751583
+MUSETT_T2_DSSD_Y26_E 61.0889 -0.0074572399999999995
+MUSETT_T2_DSSD_Y27_E 61.4018 -0.00749545
+MUSETT_T2_DSSD_Y28_E 61.5908 -0.00751854
+MUSETT_T2_DSSD_Y29_E 61.4567 -0.00750214
+MUSETT_T2_DSSD_Y30_E 61.3482 -0.00748891
+MUSETT_T2_DSSD_Y31_E 61.8146 -0.007545860000000001
+MUSETT_T2_DSSD_Y32_E 56.3104 -0.00687387
+MUSETT_T2_DSSD_Y33_E 56.4756 -0.00689413
+MUSETT_T2_DSSD_Y34_E 56.8437 -0.00693897
+MUSETT_T2_DSSD_Y35_E 56.709900000000005 -0.0069226999999999995
+MUSETT_T2_DSSD_Y36_E 57.0065 -0.00695894
+MUSETT_T2_DSSD_Y37_E 56.9227 -0.00694871
+MUSETT_T2_DSSD_Y38_E 56.395900000000005 -0.00688437
+MUSETT_T2_DSSD_Y39_E 56.4375 -0.00688946
+MUSETT_T2_DSSD_Y40_E 56.168099999999995 -0.006856569999999999
+MUSETT_T2_DSSD_Y41_E 58.1374 -0.0070969100000000005
+MUSETT_T2_DSSD_Y42_E 56.7521 -0.00692786
+MUSETT_T2_DSSD_Y43_E 56.2683 -0.00686879
+MUSETT_T2_DSSD_Y44_E 57.2483 -0.00698843
+MUSETT_T2_DSSD_Y45_E 57.2377 -0.00698715
+MUSETT_T2_DSSD_Y46_E 57.0625 -0.006965740000000001
+MUSETT_T2_DSSD_Y47_E 56.700199999999995 -0.0069215200000000004
+MUSETT_T2_DSSD_Y48_E 57.6094 -0.00703252
+MUSETT_T2_DSSD_Y49_E 57.0451 -0.00696368
+MUSETT_T2_DSSD_Y50_E 57.8934 -0.00706716
+MUSETT_T2_DSSD_Y51_E 57.4321 -0.00701085
+MUSETT_T2_DSSD_Y52_E 57.3273 -0.0069981
+MUSETT_T2_DSSD_Y53_E 58.593599999999995 -0.00715267
+MUSETT_T2_DSSD_Y54_E 57.7132 -0.00704516
+MUSETT_T2_DSSD_Y55_E 57.801 -0.0070558899999999996
+MUSETT_T2_DSSD_Y56_E 57.750099999999996 -0.0070497
+MUSETT_T2_DSSD_Y57_E 57.5646 -0.00702705
+MUSETT_T2_DSSD_Y58_E 57.5132 -0.00702079
+MUSETT_T2_DSSD_Y59_E 58.2986 -0.00711669
+MUSETT_T2_DSSD_Y60_E 57.8836 -0.007066
+MUSETT_T2_DSSD_Y61_E 57.3339 -0.006998890000000001
+MUSETT_T2_DSSD_Y62_E 57.8777 -0.00706529
+MUSETT_T2_DSSD_Y63_E 58.222300000000004 -0.0071073199999999994
+MUSETT_T2_DSSD_Y64_E 59.3524 -0.007245339999999999
+MUSETT_T2_DSSD_Y65_E 59.653 -0.00728202
+MUSETT_T2_DSSD_Y66_E 59.466699999999996 -0.00725926
+MUSETT_T2_DSSD_Y67_E 60.421 -0.00737573
+MUSETT_T2_DSSD_Y68_E 59.563300000000005 -0.00727104
+MUSETT_T2_DSSD_Y69_E 59.865199999999994 -0.00730789
+MUSETT_T2_DSSD_Y70_E 59.5681 -0.0072716099999999995
+MUSETT_T2_DSSD_Y71_E 59.9031 -0.00731254
+MUSETT_T2_DSSD_Y72_E 59.874199999999995 -0.007308950000000001
+MUSETT_T2_DSSD_Y73_E 59.5659 -0.00727135
+MUSETT_T2_DSSD_Y74_E 59.9514 -0.00731844
+MUSETT_T2_DSSD_Y75_E 60.102599999999995 -0.00733689
+MUSETT_T2_DSSD_Y76_E 59.329 -0.00724242
+MUSETT_T2_DSSD_Y77_E 59.9733 -0.00732106
+MUSETT_T2_DSSD_Y78_E 59.3692 -0.0072473400000000006
+MUSETT_T2_DSSD_Y79_E 60.2055 -0.00734945
+MUSETT_T2_DSSD_Y80_E 60.5591 -0.00739262
+MUSETT_T2_DSSD_Y81_E 61.2239 -0.00747379
+MUSETT_T2_DSSD_Y82_E 60.5555 -0.00739217
+MUSETT_T2_DSSD_Y83_E 61.2678 -0.00747916
+MUSETT_T2_DSSD_Y84_E 61.1832 -0.00746879
+MUSETT_T2_DSSD_Y85_E 60.8774 -0.00743143
+MUSETT_T2_DSSD_Y86_E 60.9647 -0.00744213
+MUSETT_T2_DSSD_Y87_E 61.3167 -0.00748517
+MUSETT_T2_DSSD_Y88_E 60.8896 -0.00743289
+MUSETT_T2_DSSD_Y89_E 60.834900000000005 -0.007426230000000001
+MUSETT_T2_DSSD_Y90_E 61.4754 -0.007504520000000001
+MUSETT_T2_DSSD_Y91_E 60.713800000000006 -0.00741149
+MUSETT_T2_DSSD_Y92_E 61.139900000000004 -0.007463490000000001
+MUSETT_T2_DSSD_Y93_E 60.5862 -0.007395850000000001
+MUSETT_T2_DSSD_Y94_E 61.0912 -0.00745753
+MUSETT_T2_DSSD_Y95_E 61.463 -0.00750289
+MUSETT_T2_DSSD_Y96_E 56.8837 -0.00694393
+MUSETT_T2_DSSD_Y97_E 55.9583 -0.0068309600000000005
+MUSETT_T2_DSSD_Y98_E 56.259699999999995 -0.00686775
+MUSETT_T2_DSSD_Y99_E 56.6209 -0.00691184
+MUSETT_T2_DSSD_Y100_E 56.3901 -0.00688368
+MUSETT_T2_DSSD_Y101_E 56.7419 -0.0069266300000000005
+MUSETT_T2_DSSD_Y102_E 55.881699999999995 -0.00682158
+MUSETT_T2_DSSD_Y103_E 57.2425 -0.00698773
+MUSETT_T2_DSSD_Y104_E 56.047599999999996 -0.00684185
+MUSETT_T2_DSSD_Y105_E 56.7064 -0.00692227
+MUSETT_T2_DSSD_Y106_E 56.618300000000005 -0.00691153
+MUSETT_T2_DSSD_Y107_E 57.5163 -0.00702116
+MUSETT_T2_DSSD_Y108_E 57.052699999999994 -0.00696458
+MUSETT_T2_DSSD_Y109_E 56.7013 -0.0069216699999999996
+MUSETT_T2_DSSD_Y110_E 57.023199999999996 -0.0069609500000000005
+MUSETT_T2_DSSD_Y111_E 56.155300000000004 -0.00685506
+MUSETT_T2_DSSD_Y112_E 56.4801 -0.00689468
+MUSETT_T2_DSSD_Y113_E 57.291 -0.00699365
+MUSETT_T2_DSSD_Y114_E 56.601099999999995 -0.00690948
+MUSETT_T2_DSSD_Y115_E 56.8647 -0.0069416700000000005
+MUSETT_T2_DSSD_Y116_E 56.5048 -0.0068977199999999995
+MUSETT_T2_DSSD_Y117_E 56.531 -0.00690085
+MUSETT_T2_DSSD_Y118_E 56.8031 -0.0069340700000000005
+MUSETT_T2_DSSD_Y119_E 56.7446 -0.00692696
+MUSETT_T2_DSSD_Y120_E 56.3396 -0.00687753
+MUSETT_T2_DSSD_Y121_E 57.094699999999996 -0.00696973
+MUSETT_T2_DSSD_Y122_E 57.4718 -0.00701574
+MUSETT_T2_DSSD_Y123_E -10.0 0.0
+MUSETT_T2_DSSD_Y124_E 56.2437 -0.00686585
+MUSETT_T2_DSSD_Y125_E 56.920199999999994 -0.00694841
+MUSETT_T2_DSSD_Y126_E 56.3579 -0.00687972
+MUSETT_T2_DSSD_Y127_E 56.1714 -0.00685698
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1983b41dd0fcbe6248c501b5faac1ca1a7e2d690
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_T 936.808 -0.113282
+MUSETT_T2_DSSD_X1_T 933.588 -0.112935
+MUSETT_T2_DSSD_X2_T 941.562 -0.113903
+MUSETT_T2_DSSD_X3_T 953.784 -0.11541
+MUSETT_T2_DSSD_X4_T 949.078 -0.114834
+MUSETT_T2_DSSD_X5_T 966.718 -0.116968
+MUSETT_T2_DSSD_X6_T 960.214 -0.116144
+MUSETT_T2_DSSD_X7_T 964.987 -0.116738
+MUSETT_T2_DSSD_X8_T 956.88 -0.115736
+MUSETT_T2_DSSD_X9_T 968.81 -0.117191
+MUSETT_T2_DSSD_X10_T 971.337 -0.117505
+MUSETT_T2_DSSD_X11_T 966.1 -0.116868
+MUSETT_T2_DSSD_X12_T 972.053 -0.117596
+MUSETT_T2_DSSD_X13_T 966.078 -0.116864
+MUSETT_T2_DSSD_X14_T 966.541 -0.116934
+MUSETT_T2_DSSD_X15_T 1367.28 -0.118078
+MUSETT_T2_DSSD_X16_T 918.709 -0.111042
+MUSETT_T2_DSSD_X17_T 933.754 -0.1129
+MUSETT_T2_DSSD_X18_T 936.423 -0.113239
+MUSETT_T2_DSSD_X19_T 935.388 -0.11311
+MUSETT_T2_DSSD_X20_T 946.289 -0.114433
+MUSETT_T2_DSSD_X21_T 941.937 -0.113893
+MUSETT_T2_DSSD_X22_T 939.701 -0.113604
+MUSETT_T2_DSSD_X23_T 947.866 -0.114596
+MUSETT_T2_DSSD_X24_T 939.11 -0.113523
+MUSETT_T2_DSSD_X25_T 947.312 -0.114529
+MUSETT_T2_DSSD_X26_T 947.872 -0.114587
+MUSETT_T2_DSSD_X27_T 944.089 -0.114127
+MUSETT_T2_DSSD_X28_T 951.541 -0.115049
+MUSETT_T2_DSSD_X29_T 947.806 -0.114577
+MUSETT_T2_DSSD_X30_T 949.646 -0.114801
+MUSETT_T2_DSSD_X31_T 1101.24 -0.114725
+MUSETT_T2_DSSD_X32_T 883.868 -0.106884
+MUSETT_T2_DSSD_X33_T 881.306 -0.106588
+MUSETT_T2_DSSD_X34_T 890.406 -0.10771
+MUSETT_T2_DSSD_X35_T 887.688 -0.10739
+MUSETT_T2_DSSD_X36_T 901.335 -0.109058
+MUSETT_T2_DSSD_X37_T 898.532 -0.108685
+MUSETT_T2_DSSD_X38_T 906.127 -0.109605
+MUSETT_T2_DSSD_X39_T 903.029 -0.109211
+MUSETT_T2_DSSD_X40_T 902.567 -0.109168
+MUSETT_T2_DSSD_X41_T 906.324 -0.109617
+MUSETT_T2_DSSD_X42_T 912.663 -0.1104
+MUSETT_T2_DSSD_X43_T 911.609 -0.110254
+MUSETT_T2_DSSD_X44_T 919.504 -0.111219
+MUSETT_T2_DSSD_X45_T 918.075 -0.111043
+MUSETT_T2_DSSD_X46_T 920.693 -0.111378
+MUSETT_T2_DSSD_X47_T 1304.08 -0.11089
+MUSETT_T2_DSSD_X48_T 852.901 -0.102956
+MUSETT_T2_DSSD_X49_T 862.836 -0.104191
+MUSETT_T2_DSSD_X50_T 872.425 -0.105362
+MUSETT_T2_DSSD_X51_T 866.551 -0.10464
+MUSETT_T2_DSSD_X52_T 875.507 -0.105723
+MUSETT_T2_DSSD_X53_T 875.722 -0.105755
+MUSETT_T2_DSSD_X54_T 877.794 -0.105984
+MUSETT_T2_DSSD_X55_T 885.59 -0.106931
+MUSETT_T2_DSSD_X56_T 894.535 -0.108024
+MUSETT_T2_DSSD_X57_T 896.983 -0.108307
+MUSETT_T2_DSSD_X58_T 888.442 -0.107279
+MUSETT_T2_DSSD_X59_T 898.855 -0.108543
+MUSETT_T2_DSSD_X60_T 900.217 -0.108721
+MUSETT_T2_DSSD_X61_T 899.805 -0.108665
+MUSETT_T2_DSSD_X62_T 896.358 -0.10824
+MUSETT_T2_DSSD_X63_T 1286.56 -0.107885
+MUSETT_T2_DSSD_X64_T 969.588 -0.117533
+MUSETT_T2_DSSD_X65_T 969.639 -0.117545
+MUSETT_T2_DSSD_X66_T 981.26 -0.118957
+MUSETT_T2_DSSD_X67_T 986.207 -0.119584
+MUSETT_T2_DSSD_X68_T 450.0 -0.119902
+MUSETT_T2_DSSD_X69_T 989.899 -0.12002
+MUSETT_T2_DSSD_X70_T 991.208 -0.120171
+MUSETT_T2_DSSD_X71_T 996.377 -0.120802
+MUSETT_T2_DSSD_X72_T 989.619 -0.119977
+MUSETT_T2_DSSD_X73_T 998.452 -0.12102
+MUSETT_T2_DSSD_X74_T 994.24 -0.12055
+MUSETT_T2_DSSD_X75_T 993.976 -0.12048
+MUSETT_T2_DSSD_X76_T 1003.64 -0.121688
+MUSETT_T2_DSSD_X77_T 1007.3 -0.122136
+MUSETT_T2_DSSD_X78_T 1010.11 -0.122472
+MUSETT_T2_DSSD_X79_T 1318.69 -0.121488
+MUSETT_T2_DSSD_X80_T 950.946 -0.115148
+MUSETT_T2_DSSD_X81_T 961.899 -0.116512
+MUSETT_T2_DSSD_X82_T 963.68 -0.116735
+MUSETT_T2_DSSD_X83_T 967.2 -0.117158
+MUSETT_T2_DSSD_X84_T 967.305 -0.117159
+MUSETT_T2_DSSD_X85_T 968.515 -0.117336
+MUSETT_T2_DSSD_X86_T 982.177 -0.118997
+MUSETT_T2_DSSD_X87_T 981.387 -0.118879
+MUSETT_T2_DSSD_X88_T 991.904 -0.120152
+MUSETT_T2_DSSD_X89_T 991.623 -0.120143
+MUSETT_T2_DSSD_X90_T 990.622 -0.120011
+MUSETT_T2_DSSD_X91_T 980.868 -0.118788
+MUSETT_T2_DSSD_X92_T 995.536 -0.120614
+MUSETT_T2_DSSD_X93_T 999.576 -0.12112
+MUSETT_T2_DSSD_X94_T 1000.5 -0.12123
+MUSETT_T2_DSSD_X95_T 985.324 -0.119394
+MUSETT_T2_DSSD_X96_T 898.921 -0.10895
+MUSETT_T2_DSSD_X97_T 915.715 -0.11099
+MUSETT_T2_DSSD_X98_T 911.411 -0.110483
+MUSETT_T2_DSSD_X99_T 911.648 -0.110494
+MUSETT_T2_DSSD_X100_T 920.871 -0.11163
+MUSETT_T2_DSSD_X101_T 920.388 -0.111573
+MUSETT_T2_DSSD_X102_T 918.664 -0.111368
+MUSETT_T2_DSSD_X103_T 923.174 -0.111888
+MUSETT_T2_DSSD_X104_T 933.198 -0.113122
+MUSETT_T2_DSSD_X105_T 930.187 -0.112764
+MUSETT_T2_DSSD_X106_T 935.147 -0.113373
+MUSETT_T2_DSSD_X107_T 930.349 -0.112797
+MUSETT_T2_DSSD_X108_T 933.561 -0.113176
+MUSETT_T2_DSSD_X109_T 940.135 -0.113973
+MUSETT_T2_DSSD_X110_T 940.914 -0.114066
+MUSETT_T2_DSSD_X111_T 940.163 -0.113973
+MUSETT_T2_DSSD_X112_T 900.272 -0.108961
+MUSETT_T2_DSSD_X113_T 905.007 -0.109531
+MUSETT_T2_DSSD_X114_T 912.464 -0.110461
+MUSETT_T2_DSSD_X115_T 912.22 -0.110414
+MUSETT_T2_DSSD_X116_T 927.733 -0.112323
+MUSETT_T2_DSSD_X117_T 930.691 -0.11267
+MUSETT_T2_DSSD_X118_T 936.077 -0.113333
+MUSETT_T2_DSSD_X119_T 939.108 -0.113698
+MUSETT_T2_DSSD_X120_T 938.924 -0.113666
+MUSETT_T2_DSSD_X121_T 947.571 -0.114745
+MUSETT_T2_DSSD_X122_T 938.938 -0.113673
+MUSETT_T2_DSSD_X123_T 945.07 -0.11443
+MUSETT_T2_DSSD_X124_T 934.733 -0.113174
+MUSETT_T2_DSSD_X125_T 934.595 -0.113143
+MUSETT_T2_DSSD_X126_T 943.044 -0.114176
+MUSETT_T2_DSSD_X127_T 943.184 -0.114186
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..7ff18502dac89c993590306b5479a1f20452d0ee
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_T 987.442 -0.119525
+MUSETT_T2_DSSD_Y1_T 990.37 -0.119903
+MUSETT_T2_DSSD_Y2_T 989.136 -0.119776
+MUSETT_T2_DSSD_Y3_T 995.437 -0.120524
+MUSETT_T2_DSSD_Y4_T 1000.77 -0.121165
+MUSETT_T2_DSSD_Y5_T 998.951 -0.120947
+MUSETT_T2_DSSD_Y6_T 1003.75 -0.121526
+MUSETT_T2_DSSD_Y7_T 1010.87 -0.122366
+MUSETT_T2_DSSD_Y8_T 1012.21 -0.122539
+MUSETT_T2_DSSD_Y9_T 1003.9 -0.121307
+MUSETT_T2_DSSD_Y10_T 1010.24 -0.122275
+MUSETT_T2_DSSD_Y11_T 1015.27 -0.122898
+MUSETT_T2_DSSD_Y12_T 1017.2 -0.12312
+MUSETT_T2_DSSD_Y13_T 1022.23 -0.123746
+MUSETT_T2_DSSD_Y14_T 1021.37 -0.123621
+MUSETT_T2_DSSD_Y15_T 1022.68 -0.123744
+MUSETT_T2_DSSD_Y16_T 939.963 -0.113632
+MUSETT_T2_DSSD_Y17_T 939.308 -0.11359
+MUSETT_T2_DSSD_Y18_T 938.897 -0.113546
+MUSETT_T2_DSSD_Y19_T 938.628 -0.113526
+MUSETT_T2_DSSD_Y20_T 953.606 -0.115367
+MUSETT_T2_DSSD_Y21_T 969.437 -0.117305
+MUSETT_T2_DSSD_Y22_T 965.454 -0.11682
+MUSETT_T2_DSSD_Y23_T 960.44 -0.116216
+MUSETT_T2_DSSD_Y24_T 975.99 -0.118134
+MUSETT_T2_DSSD_Y25_T 978.687 -0.118446
+MUSETT_T2_DSSD_Y26_T 976.083 -0.117858
+MUSETT_T2_DSSD_Y27_T 982.568 -0.11895
+MUSETT_T2_DSSD_Y28_T 976.864 -0.118238
+MUSETT_T2_DSSD_Y29_T 978.515 -0.118468
+MUSETT_T2_DSSD_Y30_T 977.409 -0.118337
+MUSETT_T2_DSSD_Y31_T 965.447 -0.116905
+MUSETT_T2_DSSD_Y32_T 870.181 -0.105393
+MUSETT_T2_DSSD_Y33_T 876.858 -0.106206
+MUSETT_T2_DSSD_Y34_T 889.244 -0.107711
+MUSETT_T2_DSSD_Y35_T 890.519 -0.10786
+MUSETT_T2_DSSD_Y36_T 893.817 -0.108297
+MUSETT_T2_DSSD_Y37_T 888.588 -0.107628
+MUSETT_T2_DSSD_Y38_T 904.701 -0.109574
+MUSETT_T2_DSSD_Y39_T 903.479 -0.109401
+MUSETT_T2_DSSD_Y40_T 906.236 -0.109756
+MUSETT_T2_DSSD_Y41_T 914.382 -0.110304
+MUSETT_T2_DSSD_Y42_T 906.598 -0.10979
+MUSETT_T2_DSSD_Y43_T 910.53 -0.110231
+MUSETT_T2_DSSD_Y44_T 912.933 -0.110532
+MUSETT_T2_DSSD_Y45_T 916.041 -0.110907
+MUSETT_T2_DSSD_Y46_T 919.774 -0.111371
+MUSETT_T2_DSSD_Y47_T 915.148 -0.110791
+MUSETT_T2_DSSD_Y48_T 893.19 -0.108016
+MUSETT_T2_DSSD_Y49_T 902.467 -0.109155
+MUSETT_T2_DSSD_Y50_T 899.946 -0.108834
+MUSETT_T2_DSSD_Y51_T 913.407 -0.110471
+MUSETT_T2_DSSD_Y52_T 905.911 -0.109622
+MUSETT_T2_DSSD_Y53_T 914.887 -0.110708
+MUSETT_T2_DSSD_Y54_T 922.021 -0.111116
+MUSETT_T2_DSSD_Y55_T 914.007 -0.11061
+MUSETT_T2_DSSD_Y56_T 926.973 -0.11216
+MUSETT_T2_DSSD_Y57_T 918.182 -0.111079
+MUSETT_T2_DSSD_Y58_T 920.356 -0.111393
+MUSETT_T2_DSSD_Y59_T 924.322 -0.11168
+MUSETT_T2_DSSD_Y60_T 940.509 -0.11386
+MUSETT_T2_DSSD_Y61_T 925.883 -0.112068
+MUSETT_T2_DSSD_Y62_T 921.861 -0.111623
+MUSETT_T2_DSSD_Y63_T 929.763 -0.112593
+MUSETT_T2_DSSD_Y64_T 924.331 -0.111864
+MUSETT_T2_DSSD_Y65_T 943.62 -0.114242
+MUSETT_T2_DSSD_Y66_T 947.992 -0.114763
+MUSETT_T2_DSSD_Y67_T 945.728 -0.114477
+MUSETT_T2_DSSD_Y68_T 972.019 -0.117701
+MUSETT_T2_DSSD_Y69_T 960.071 -0.116242
+MUSETT_T2_DSSD_Y70_T 967.505 -0.117144
+MUSETT_T2_DSSD_Y71_T 964.472 -0.116783
+MUSETT_T2_DSSD_Y72_T 955.96 -0.115747
+MUSETT_T2_DSSD_Y73_T 958.084 -0.115989
+MUSETT_T2_DSSD_Y74_T 964.33 -0.116762
+MUSETT_T2_DSSD_Y75_T 977.202 -0.118324
+MUSETT_T2_DSSD_Y76_T 973.571 -0.117892
+MUSETT_T2_DSSD_Y77_T 976.2 -0.118194
+MUSETT_T2_DSSD_Y78_T 967.051 -0.117092
+MUSETT_T2_DSSD_Y79_T 968.99 -0.117343
+MUSETT_T2_DSSD_Y80_T 944.542 -0.114246
+MUSETT_T2_DSSD_Y81_T 939.064 -0.113582
+MUSETT_T2_DSSD_Y82_T 951.122 -0.115097
+MUSETT_T2_DSSD_Y83_T 946.764 -0.114574
+MUSETT_T2_DSSD_Y84_T 955.625 -0.115653
+MUSETT_T2_DSSD_Y85_T 966.0 -0.11692
+MUSETT_T2_DSSD_Y86_T 964.199 -0.116695
+MUSETT_T2_DSSD_Y87_T 969.926 -0.117388
+MUSETT_T2_DSSD_Y88_T 972.649 -0.117739
+MUSETT_T2_DSSD_Y89_T 974.635 -0.11797
+MUSETT_T2_DSSD_Y90_T 979.1 -0.118525
+MUSETT_T2_DSSD_Y91_T 969.715 -0.117371
+MUSETT_T2_DSSD_Y92_T 977.475 -0.118331
+MUSETT_T2_DSSD_Y93_T 977.142 -0.118283
+MUSETT_T2_DSSD_Y94_T 984.646 -0.119174
+MUSETT_T2_DSSD_Y95_T 989.259 -0.119806
+MUSETT_T2_DSSD_Y96_T 897.538 -0.108639
+MUSETT_T2_DSSD_Y97_T 893.51 -0.108189
+MUSETT_T2_DSSD_Y98_T 904.052 -0.109474
+MUSETT_T2_DSSD_Y99_T 902.752 -0.109308
+MUSETT_T2_DSSD_Y100_T 916.527 -0.110997
+MUSETT_T2_DSSD_Y101_T 924.175 -0.111938
+MUSETT_T2_DSSD_Y102_T 914.572 -0.110746
+MUSETT_T2_DSSD_Y103_T 930.562 -0.112691
+MUSETT_T2_DSSD_Y104_T 925.104 -0.112025
+MUSETT_T2_DSSD_Y105_T 920.853 -0.111507
+MUSETT_T2_DSSD_Y106_T 922.078 -0.111663
+MUSETT_T2_DSSD_Y107_T 921.772 -0.111623
+MUSETT_T2_DSSD_Y108_T 925.31 -0.112066
+MUSETT_T2_DSSD_Y109_T 926.033 -0.11214
+MUSETT_T2_DSSD_Y110_T 922.391 -0.111703
+MUSETT_T2_DSSD_Y111_T 912.83 -0.110525
+MUSETT_T2_DSSD_Y112_T 852.798 -0.102981
+MUSETT_T2_DSSD_Y113_T 868.843 -0.104976
+MUSETT_T2_DSSD_Y114_T 876.793 -0.105936
+MUSETT_T2_DSSD_Y115_T 875.311 -0.10575
+MUSETT_T2_DSSD_Y116_T 883.331 -0.106741
+MUSETT_T2_DSSD_Y117_T 879.699 -0.10628
+MUSETT_T2_DSSD_Y118_T 891.993 -0.107805
+MUSETT_T2_DSSD_Y119_T 893.52 -0.107966
+MUSETT_T2_DSSD_Y120_T 883.484 -0.106759
+MUSETT_T2_DSSD_Y121_T 896.835 -0.108381
+MUSETT_T2_DSSD_Y122_T 895.32 -0.108195
+MUSETT_T2_DSSD_Y123_T 1336.18 -0.108195
+MUSETT_T2_DSSD_Y124_T 897.921 -0.108519
+MUSETT_T2_DSSD_Y125_T 898.896 -0.10863
+MUSETT_T2_DSSD_Y126_T 900.009 -0.108768
+MUSETT_T2_DSSD_Y127_T 896.14 -0.108297
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..6d44786682807bcd47daac47f87da625c69eae8c
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E -62.432 0.00762115
+MUSETT_T3_DSSD_X1_E -61.8981 0.00755599
+MUSETT_T3_DSSD_X2_E -62.2618 0.00760035
+MUSETT_T3_DSSD_X3_E -62.3777 0.00761452
+MUSETT_T3_DSSD_X4_E -61.9871 0.0075667799999999995
+MUSETT_T3_DSSD_X5_E -61.9253 0.00755922
+MUSETT_T3_DSSD_X6_E -62.100699999999996 0.00758066
+MUSETT_T3_DSSD_X7_E -61.6218 0.0075222
+MUSETT_T3_DSSD_X8_E -61.764300000000006 0.00753956
+MUSETT_T3_DSSD_X9_E -61.9183 0.00755834
+MUSETT_T3_DSSD_X10_E -61.8815 0.007553880000000001
+MUSETT_T3_DSSD_X11_E -62.903 0.00767858
+MUSETT_T3_DSSD_X12_E -61.674099999999996 0.00752859
+MUSETT_T3_DSSD_X13_E -61.812400000000004 0.007545410000000001
+MUSETT_T3_DSSD_X14_E -61.5556 0.00751408
+MUSETT_T3_DSSD_X15_E -62.6274 0.00764492
+MUSETT_T3_DSSD_X16_E -63.6565 0.007770470000000001
+MUSETT_T3_DSSD_X17_E -63.108 0.00770354
+MUSETT_T3_DSSD_X18_E -62.943400000000004 0.0076834600000000005
+MUSETT_T3_DSSD_X19_E -62.8377 0.00767058
+MUSETT_T3_DSSD_X20_E -62.6764 0.0076508900000000005
+MUSETT_T3_DSSD_X21_E -63.119800000000005 0.00770503
+MUSETT_T3_DSSD_X22_E -63.798 0.00778783
+MUSETT_T3_DSSD_X23_E -63.791 0.00778695
+MUSETT_T3_DSSD_X24_E -62.795 0.0076654
+MUSETT_T3_DSSD_X25_E -63.5026 0.00775172
+MUSETT_T3_DSSD_X26_E -63.5321 0.00775542
+MUSETT_T3_DSSD_X27_E -63.3099 0.0077282900000000005
+MUSETT_T3_DSSD_X28_E -63.637800000000006 0.00776831
+MUSETT_T3_DSSD_X29_E -63.587199999999996 0.00776214
+MUSETT_T3_DSSD_X30_E -64.5317 0.00787739
+MUSETT_T3_DSSD_X31_E -63.7428 0.00778111
+MUSETT_T3_DSSD_X32_E -59.4303 0.0072549400000000005
+MUSETT_T3_DSSD_X33_E -59.2202 0.00722924
+MUSETT_T3_DSSD_X34_E -58.1746 0.00710163
+MUSETT_T3_DSSD_X35_E -58.373599999999996 0.007125810000000001
+MUSETT_T3_DSSD_X36_E -58.848099999999995 0.00718369
+MUSETT_T3_DSSD_X37_E -59.0129 0.00720387
+MUSETT_T3_DSSD_X38_E -59.307199999999995 0.00723977
+MUSETT_T3_DSSD_X39_E -58.6779 0.00716294
+MUSETT_T3_DSSD_X40_E -59.2831 0.00723677
+MUSETT_T3_DSSD_X41_E -58.9564 0.0071969
+MUSETT_T3_DSSD_X42_E -59.0435 0.00720751
+MUSETT_T3_DSSD_X43_E -10.0 0.0
+MUSETT_T3_DSSD_X44_E -59.0479 0.00720805
+MUSETT_T3_DSSD_X45_E -59.4141 0.00725268
+MUSETT_T3_DSSD_X46_E -58.832800000000006 0.00718171
+MUSETT_T3_DSSD_X47_E -59.184599999999996 0.00722469
+MUSETT_T3_DSSD_X48_E -57.4104 0.00700817
+MUSETT_T3_DSSD_X49_E -57.223699999999994 0.006985369999999999
+MUSETT_T3_DSSD_X50_E -56.9417 0.00695094
+MUSETT_T3_DSSD_X51_E -57.3063 0.00699545
+MUSETT_T3_DSSD_X52_E -56.9392 0.00695063
+MUSETT_T3_DSSD_X53_E -57.3905 0.00700573
+MUSETT_T3_DSSD_X54_E -56.6383 0.0069139299999999996
+MUSETT_T3_DSSD_X55_E -57.3585 0.00700183
+MUSETT_T3_DSSD_X56_E -57.684400000000004 0.00704165
+MUSETT_T3_DSSD_X57_E -56.591300000000004 0.0069082
+MUSETT_T3_DSSD_X58_E -57.508 0.00702016
+MUSETT_T3_DSSD_X59_E -57.1361 0.00697475
+MUSETT_T3_DSSD_X60_E -56.3804 0.00688251
+MUSETT_T3_DSSD_X61_E -56.9174 0.0069481000000000005
+MUSETT_T3_DSSD_X62_E -56.8245 0.00693679
+MUSETT_T3_DSSD_X63_E -56.577 0.00690664
+MUSETT_T3_DSSD_X64_E -64.14 0.00782956
+MUSETT_T3_DSSD_X65_E -63.8393 0.00779281
+MUSETT_T3_DSSD_X66_E -63.5644 0.0077592699999999995
+MUSETT_T3_DSSD_X67_E -63.7704 0.00778438
+MUSETT_T3_DSSD_X68_E -63.6716 0.00777235
+MUSETT_T3_DSSD_X69_E -63.2723 0.00772359
+MUSETT_T3_DSSD_X70_E -64.307 0.00784993
+MUSETT_T3_DSSD_X71_E -62.530800000000006 0.00763314
+MUSETT_T3_DSSD_X72_E -62.6729 0.00765044
+MUSETT_T3_DSSD_X73_E -63.019 0.007692719999999999
+MUSETT_T3_DSSD_X74_E -63.152800000000006 0.00770897
+MUSETT_T3_DSSD_X75_E -63.441 0.00774419
+MUSETT_T3_DSSD_X76_E -64.1093 0.00782574
+MUSETT_T3_DSSD_X77_E -62.4535 0.007623649999999999
+MUSETT_T3_DSSD_X78_E -62.6222 0.00764425
+MUSETT_T3_DSSD_X79_E -63.017199999999995 0.0076925100000000005
+MUSETT_T3_DSSD_X80_E -62.4534 0.00762363
+MUSETT_T3_DSSD_X81_E -62.780300000000004 0.00766354
+MUSETT_T3_DSSD_X82_E -62.6701 0.00765009
+MUSETT_T3_DSSD_X83_E -62.5547 0.00763598
+MUSETT_T3_DSSD_X84_E -62.062400000000004 0.00757587
+MUSETT_T3_DSSD_X85_E -62.422599999999996 0.0076199399999999995
+MUSETT_T3_DSSD_X86_E -62.402699999999996 0.00761746
+MUSETT_T3_DSSD_X87_E -62.1388 0.00758526
+MUSETT_T3_DSSD_X88_E -62.3516 0.00761123
+MUSETT_T3_DSSD_X89_E -62.791 0.00766488
+MUSETT_T3_DSSD_X90_E -62.302699999999994 0.00760527
+MUSETT_T3_DSSD_X91_E -62.0781 0.00757785
+MUSETT_T3_DSSD_X92_E -62.8293 0.00766952
+MUSETT_T3_DSSD_X93_E -62.5605 0.007636700000000001
+MUSETT_T3_DSSD_X94_E -62.144 0.0075859
+MUSETT_T3_DSSD_X95_E -62.3539 0.007611519999999999
+MUSETT_T3_DSSD_X96_E -56.131099999999996 0.00685191
+MUSETT_T3_DSSD_X97_E -55.920199999999994 0.0068261599999999995
+MUSETT_T3_DSSD_X98_E -55.1787 0.00673562
+MUSETT_T3_DSSD_X99_E -55.7836 0.0068095
+MUSETT_T3_DSSD_X100_E -55.958 0.00683076
+MUSETT_T3_DSSD_X101_E -55.9402 0.00682857
+MUSETT_T3_DSSD_X102_E -55.976 0.00683293
+MUSETT_T3_DSSD_X103_E -55.2555 0.00674498
+MUSETT_T3_DSSD_X104_E -55.479699999999994 0.00677237
+MUSETT_T3_DSSD_X105_E -56.0403 0.00684079
+MUSETT_T3_DSSD_X106_E -55.791199999999996 0.00681044
+MUSETT_T3_DSSD_X107_E -55.7016 0.00679948
+MUSETT_T3_DSSD_X108_E -56.7383 0.00692598
+MUSETT_T3_DSSD_X109_E -56.2939 0.0068717100000000005
+MUSETT_T3_DSSD_X110_E -55.8191 0.00681378
+MUSETT_T3_DSSD_X111_E -55.694199999999995 0.00679856
+MUSETT_T3_DSSD_X112_E -57.5541 0.007025559999999999
+MUSETT_T3_DSSD_X113_E -56.976800000000004 0.00695514
+MUSETT_T3_DSSD_X114_E -57.5184 0.00702123
+MUSETT_T3_DSSD_X115_E -56.9807 0.00695562
+MUSETT_T3_DSSD_X116_E -58.026199999999996 0.00708323
+MUSETT_T3_DSSD_X117_E -57.1911 0.00698127
+MUSETT_T3_DSSD_X118_E -57.432 0.007010710000000001
+MUSETT_T3_DSSD_X119_E -56.2909 0.00687137
+MUSETT_T3_DSSD_X120_E -56.7482 0.00692722
+MUSETT_T3_DSSD_X121_E -57.9017 0.00706808
+MUSETT_T3_DSSD_X122_E -57.5129 0.0070205599999999995
+MUSETT_T3_DSSD_X123_E -57.1124 0.0069717
+MUSETT_T3_DSSD_X124_E -57.6533 0.007037689999999999
+MUSETT_T3_DSSD_X125_E -56.762699999999995 0.00692904
+MUSETT_T3_DSSD_X126_E -57.8419 0.00706073
+MUSETT_T3_DSSD_X127_E -56.524800000000006 0.006899949999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..30bae93039805da11900a9c5c7f47539ad5ceaf8
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_E 60.1947 -0.00734802
+MUSETT_T3_DSSD_Y1_E 58.9879 -0.0072007500000000006
+MUSETT_T3_DSSD_Y2_E 60.1322 -0.00734041
+MUSETT_T3_DSSD_Y3_E 59.9775 -0.00732152
+MUSETT_T3_DSSD_Y4_E 59.7874 -0.007298300000000001
+MUSETT_T3_DSSD_Y5_E 59.8934 -0.007311219999999999
+MUSETT_T3_DSSD_Y6_E 59.7986 -0.00729963
+MUSETT_T3_DSSD_Y7_E 60.2513 -0.0073549
+MUSETT_T3_DSSD_Y8_E 60.5895 -0.007396219999999999
+MUSETT_T3_DSSD_Y9_E 60.4366 -0.00737756
+MUSETT_T3_DSSD_Y10_E 60.189699999999995 -0.0073474000000000005
+MUSETT_T3_DSSD_Y11_E 59.8264 -0.0073031
+MUSETT_T3_DSSD_Y12_E 59.6872 -0.00728606
+MUSETT_T3_DSSD_Y13_E 59.622099999999996 -0.0072781799999999995
+MUSETT_T3_DSSD_Y14_E 60.5748 -0.00739447
+MUSETT_T3_DSSD_Y15_E 59.719199999999994 -0.00729002
+MUSETT_T3_DSSD_Y16_E 62.9631 -0.007686009999999999
+MUSETT_T3_DSSD_Y17_E 63.1869 -0.00771331
+MUSETT_T3_DSSD_Y18_E 62.2623 -0.00760044
+MUSETT_T3_DSSD_Y19_E 62.806 -0.0076668000000000005
+MUSETT_T3_DSSD_Y20_E 63.2468 -0.00772062
+MUSETT_T3_DSSD_Y21_E 63.5503 -0.007757590000000001
+MUSETT_T3_DSSD_Y22_E 63.0168 -0.00769256
+MUSETT_T3_DSSD_Y23_E 62.986599999999996 -0.00768882
+MUSETT_T3_DSSD_Y24_E 63.5222 -0.00775424
+MUSETT_T3_DSSD_Y25_E 63.478699999999996 -0.0077488999999999995
+MUSETT_T3_DSSD_Y26_E 62.6431 -0.00764692
+MUSETT_T3_DSSD_Y27_E 63.4299 -0.0077429199999999995
+MUSETT_T3_DSSD_Y28_E 62.4837 -0.00762745
+MUSETT_T3_DSSD_Y29_E 62.960699999999996 -0.00768572
+MUSETT_T3_DSSD_Y30_E 63.085300000000004 -0.0077009
+MUSETT_T3_DSSD_Y31_E 62.9694 -0.00768675
+MUSETT_T3_DSSD_Y32_E 56.0911 -0.00684715
+MUSETT_T3_DSSD_Y33_E 56.2286 -0.00686391
+MUSETT_T3_DSSD_Y34_E 55.8346 -0.00681583
+MUSETT_T3_DSSD_Y35_E 55.713 -0.00680096
+MUSETT_T3_DSSD_Y36_E 55.757 -0.00680633
+MUSETT_T3_DSSD_Y37_E 56.228 -0.0068638399999999995
+MUSETT_T3_DSSD_Y38_E 55.9259 -0.00682695
+MUSETT_T3_DSSD_Y39_E 55.539699999999996 -0.00677979
+MUSETT_T3_DSSD_Y40_E 55.412099999999995 -0.00676422
+MUSETT_T3_DSSD_Y41_E 56.185 -0.00685859
+MUSETT_T3_DSSD_Y42_E 55.9818 -0.00683375
+MUSETT_T3_DSSD_Y43_E 55.3708 -0.00675918
+MUSETT_T3_DSSD_Y44_E 55.7489 -0.00680537
+MUSETT_T3_DSSD_Y45_E 55.612300000000005 -0.00678871
+MUSETT_T3_DSSD_Y46_E 55.926300000000005 -0.006826990000000001
+MUSETT_T3_DSSD_Y47_E 55.801199999999994 -0.00681172
+MUSETT_T3_DSSD_Y48_E 56.6708 -0.0069179
+MUSETT_T3_DSSD_Y49_E 56.9495 -0.0069519000000000004
+MUSETT_T3_DSSD_Y50_E 57.1471 -0.006975970000000001
+MUSETT_T3_DSSD_Y51_E 56.9604 -0.00695318
+MUSETT_T3_DSSD_Y52_E 56.493900000000004 -0.006896289999999999
+MUSETT_T3_DSSD_Y53_E 56.9632 -0.00695364
+MUSETT_T3_DSSD_Y54_E 56.5816 -0.00690701
+MUSETT_T3_DSSD_Y55_E 57.0507 -0.006964209999999999
+MUSETT_T3_DSSD_Y56_E 57.0769 -0.00696747
+MUSETT_T3_DSSD_Y57_E 56.6238 -0.00691216
+MUSETT_T3_DSSD_Y58_E 57.493199999999995 -0.00701827
+MUSETT_T3_DSSD_Y59_E 57.089400000000005 -0.00696896
+MUSETT_T3_DSSD_Y60_E 57.5863 -0.00702963
+MUSETT_T3_DSSD_Y61_E 57.0447 -0.00696349
+MUSETT_T3_DSSD_Y62_E 56.777699999999996 -0.0069308899999999994
+MUSETT_T3_DSSD_Y63_E 57.4216 -0.00700961
+MUSETT_T3_DSSD_Y64_E 59.437599999999996 -0.007255620000000001
+MUSETT_T3_DSSD_Y65_E 59.994 -0.00732351
+MUSETT_T3_DSSD_Y66_E 59.523900000000005 -0.0072662000000000004
+MUSETT_T3_DSSD_Y67_E 59.3371 -0.00724336
+MUSETT_T3_DSSD_Y68_E 59.498599999999996 -0.007263029999999999
+MUSETT_T3_DSSD_Y69_E 58.818599999999996 -0.00718002
+MUSETT_T3_DSSD_Y70_E 59.3322 -0.00724276
+MUSETT_T3_DSSD_Y71_E 60.018699999999995 -0.00732659
+MUSETT_T3_DSSD_Y72_E 60.1805 -0.0073463
+MUSETT_T3_DSSD_Y73_E 59.4807 -0.00726089
+MUSETT_T3_DSSD_Y74_E 59.527699999999996 -0.0072666399999999996
+MUSETT_T3_DSSD_Y75_E 59.6351 -0.00727972
+MUSETT_T3_DSSD_Y76_E 59.581199999999995 -0.00727315
+MUSETT_T3_DSSD_Y77_E 59.4447 -0.00725647
+MUSETT_T3_DSSD_Y78_E 59.0484 -0.007208109999999999
+MUSETT_T3_DSSD_Y79_E 59.9895 -0.007322980000000001
+MUSETT_T3_DSSD_Y80_E 62.8554 -0.00767285
+MUSETT_T3_DSSD_Y81_E 62.7504 -0.00766003
+MUSETT_T3_DSSD_Y82_E 62.5327 -0.007633460000000001
+MUSETT_T3_DSSD_Y83_E 62.151300000000006 -0.00758691
+MUSETT_T3_DSSD_Y84_E 62.0186 -0.00757075
+MUSETT_T3_DSSD_Y85_E 62.7102 -0.007655090000000001
+MUSETT_T3_DSSD_Y86_E 62.2716 -0.0076015499999999995
+MUSETT_T3_DSSD_Y87_E 62.96 -0.00768565
+MUSETT_T3_DSSD_Y88_E 62.677800000000005 -0.0076512099999999994
+MUSETT_T3_DSSD_Y89_E 62.6261 -0.0076448900000000005
+MUSETT_T3_DSSD_Y90_E 61.8783 -0.00755359
+MUSETT_T3_DSSD_Y91_E 61.999199999999995 -0.00756832
+MUSETT_T3_DSSD_Y92_E 61.924699999999994 -0.00755927
+MUSETT_T3_DSSD_Y93_E 61.995599999999996 -0.00756788
+MUSETT_T3_DSSD_Y94_E 61.9605 -0.00756357
+MUSETT_T3_DSSD_Y95_E 61.8336 -0.00754812
+MUSETT_T3_DSSD_Y96_E 56.7314 -0.00692523
+MUSETT_T3_DSSD_Y97_E 56.9099 -0.00694702
+MUSETT_T3_DSSD_Y98_E 56.3183 -0.00687484
+MUSETT_T3_DSSD_Y99_E 55.9465 -0.006829399999999999
+MUSETT_T3_DSSD_Y100_E 56.299800000000005 -0.00687252
+MUSETT_T3_DSSD_Y101_E 56.3287 -0.00687609
+MUSETT_T3_DSSD_Y102_E 55.9865 -0.0068343
+MUSETT_T3_DSSD_Y103_E 55.996300000000005 -0.006835460000000001
+MUSETT_T3_DSSD_Y104_E 55.8581 -0.006818609999999999
+MUSETT_T3_DSSD_Y105_E 56.336400000000005 -0.006876999999999999
+MUSETT_T3_DSSD_Y106_E 56.504400000000004 -0.00689753
+MUSETT_T3_DSSD_Y107_E 56.2804 -0.00687019
+MUSETT_T3_DSSD_Y108_E 55.8017 -0.006811759999999999
+MUSETT_T3_DSSD_Y109_E 55.903800000000004 -0.00682419
+MUSETT_T3_DSSD_Y110_E 56.6722 -0.00691805
+MUSETT_T3_DSSD_Y111_E 56.6689 -0.00691765
+MUSETT_T3_DSSD_Y112_E 57.102199999999996 -0.0069704699999999994
+MUSETT_T3_DSSD_Y113_E 57.033699999999996 -0.00696222
+MUSETT_T3_DSSD_Y114_E 57.102 -0.00697059
+MUSETT_T3_DSSD_Y115_E 57.0152 -0.0069599399999999995
+MUSETT_T3_DSSD_Y116_E 57.666599999999995 -0.00703944
+MUSETT_T3_DSSD_Y117_E 57.3273 -0.0069980599999999995
+MUSETT_T3_DSSD_Y118_E 56.838800000000006 -0.0069384
+MUSETT_T3_DSSD_Y119_E 57.642300000000006 -0.007036400000000001
+MUSETT_T3_DSSD_Y120_E 57.4724 -0.007015749999999999
+MUSETT_T3_DSSD_Y121_E 57.0092 -0.006959170000000001
+MUSETT_T3_DSSD_Y122_E 57.4276 -0.00701028
+MUSETT_T3_DSSD_Y123_E 57.1051 -0.00697094
+MUSETT_T3_DSSD_Y124_E 57.606 -0.00703198
+MUSETT_T3_DSSD_Y125_E 56.8527 -0.00694013
+MUSETT_T3_DSSD_Y126_E 57.287800000000004 -0.006993109999999999
+MUSETT_T3_DSSD_Y127_E 57.5267 -0.00702236
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0c66d17d1ef2704ec870f95f8fa20b5c6d1f2e47
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_T 936.261 -0.113591
+MUSETT_T3_DSSD_X1_T 949.597 -0.115254
+MUSETT_T3_DSSD_X2_T 954.137 -0.115822
+MUSETT_T3_DSSD_X3_T 956.021 -0.116042
+MUSETT_T3_DSSD_X4_T 948.148 -0.115096
+MUSETT_T3_DSSD_X5_T 962.715 -0.11686
+MUSETT_T3_DSSD_X6_T 967.087 -0.117385
+MUSETT_T3_DSSD_X7_T 972.268 -0.118019
+MUSETT_T3_DSSD_X8_T 970.481 -0.117779
+MUSETT_T3_DSSD_X9_T 968.226 -0.117496
+MUSETT_T3_DSSD_X10_T 970.608 -0.117795
+MUSETT_T3_DSSD_X11_T 982.826 -0.119273
+MUSETT_T3_DSSD_X12_T 972.655 -0.118031
+MUSETT_T3_DSSD_X13_T 978.966 -0.118805
+MUSETT_T3_DSSD_X14_T 976.646 -0.118524
+MUSETT_T3_DSSD_X15_T 1358.4 -0.119127
+MUSETT_T3_DSSD_X16_T 965.022 -0.117029
+MUSETT_T3_DSSD_X17_T 961.069 -0.116582
+MUSETT_T3_DSSD_X18_T 979.729 -0.11886
+MUSETT_T3_DSSD_X19_T 975.886 -0.118386
+MUSETT_T3_DSSD_X20_T 982.811 -0.119229
+MUSETT_T3_DSSD_X21_T 989.956 -0.120114
+MUSETT_T3_DSSD_X22_T 982.322 -0.119177
+MUSETT_T3_DSSD_X23_T 986.837 -0.119693
+MUSETT_T3_DSSD_X24_T 984.553 -0.119405
+MUSETT_T3_DSSD_X25_T 985.367 -0.119523
+MUSETT_T3_DSSD_X26_T 998.436 -0.12115
+MUSETT_T3_DSSD_X27_T 994.592 -0.120628
+MUSETT_T3_DSSD_X28_T 1004.55 -0.121885
+MUSETT_T3_DSSD_X29_T 997.75 -0.121035
+MUSETT_T3_DSSD_X30_T 999.387 -0.121233
+MUSETT_T3_DSSD_X31_T 994.205 -0.120654
+MUSETT_T3_DSSD_X32_T 895.626 -0.108693
+MUSETT_T3_DSSD_X33_T 901.788 -0.109485
+MUSETT_T3_DSSD_X34_T 909.669 -0.110421
+MUSETT_T3_DSSD_X35_T 902.809 -0.109588
+MUSETT_T3_DSSD_X36_T 908.707 -0.110301
+MUSETT_T3_DSSD_X37_T 917.184 -0.111327
+MUSETT_T3_DSSD_X38_T 918.636 -0.111495
+MUSETT_T3_DSSD_X39_T 927.002 -0.112521
+MUSETT_T3_DSSD_X40_T 934.79 -0.11347
+MUSETT_T3_DSSD_X41_T 928.489 -0.112717
+MUSETT_T3_DSSD_X42_T 925.669 -0.112335
+MUSETT_T3_DSSD_X43_T 450.0 -0.112964
+MUSETT_T3_DSSD_X44_T 932.907 -0.113245
+MUSETT_T3_DSSD_X45_T 927.364 -0.11258
+MUSETT_T3_DSSD_X46_T 934.8 -0.113476
+MUSETT_T3_DSSD_X47_T 933.166 -0.113256
+MUSETT_T3_DSSD_X48_T 863.882 -0.104661
+MUSETT_T3_DSSD_X49_T 863.742 -0.104634
+MUSETT_T3_DSSD_X50_T 876.032 -0.106155
+MUSETT_T3_DSSD_X51_T 885.987 -0.107364
+MUSETT_T3_DSSD_X52_T 886.077 -0.107368
+MUSETT_T3_DSSD_X53_T 882.141 -0.106861
+MUSETT_T3_DSSD_X54_T 894.386 -0.108382
+MUSETT_T3_DSSD_X55_T 897.465 -0.108733
+MUSETT_T3_DSSD_X56_T 894.9 -0.10844
+MUSETT_T3_DSSD_X57_T 900.295 -0.10908
+MUSETT_T3_DSSD_X58_T 895.793 -0.108538
+MUSETT_T3_DSSD_X59_T 895.372 -0.10849
+MUSETT_T3_DSSD_X60_T 902.176 -0.109312
+MUSETT_T3_DSSD_X61_T 903.192 -0.109445
+MUSETT_T3_DSSD_X62_T 889.712 -0.107803
+MUSETT_T3_DSSD_X63_T 921.265 -0.108862
+MUSETT_T3_DSSD_X64_T 981.944 -0.119126
+MUSETT_T3_DSSD_X65_T 987.148 -0.119789
+MUSETT_T3_DSSD_X66_T 987.456 -0.119851
+MUSETT_T3_DSSD_X67_T 1003.28 -0.121753
+MUSETT_T3_DSSD_X68_T 1003.82 -0.121824
+MUSETT_T3_DSSD_X69_T 1000.66 -0.121446
+MUSETT_T3_DSSD_X70_T 1004.35 -0.121893
+MUSETT_T3_DSSD_X71_T 1008.06 -0.122347
+MUSETT_T3_DSSD_X72_T 1004.22 -0.121883
+MUSETT_T3_DSSD_X73_T 1011.08 -0.122684
+MUSETT_T3_DSSD_X74_T 1019.46 -0.123722
+MUSETT_T3_DSSD_X75_T 1029.58 -0.124938
+MUSETT_T3_DSSD_X76_T 1011.08 -0.122709
+MUSETT_T3_DSSD_X77_T 1010.81 -0.12265
+MUSETT_T3_DSSD_X78_T 1022.22 -0.124061
+MUSETT_T3_DSSD_X79_T 1391.94 -0.123313
+MUSETT_T3_DSSD_X80_T 939.257 -0.11381
+MUSETT_T3_DSSD_X81_T 945.066 -0.114558
+MUSETT_T3_DSSD_X82_T 948.6 -0.114986
+MUSETT_T3_DSSD_X83_T 947.122 -0.114804
+MUSETT_T3_DSSD_X84_T 961.987 -0.116619
+MUSETT_T3_DSSD_X85_T 964.59 -0.11693
+MUSETT_T3_DSSD_X86_T 959.397 -0.116299
+MUSETT_T3_DSSD_X87_T 964.355 -0.116863
+MUSETT_T3_DSSD_X88_T 975.002 -0.118161
+MUSETT_T3_DSSD_X89_T 971.077 -0.117687
+MUSETT_T3_DSSD_X90_T 976.04 -0.118304
+MUSETT_T3_DSSD_X91_T 983.975 -0.119256
+MUSETT_T3_DSSD_X92_T 983.617 -0.119241
+MUSETT_T3_DSSD_X93_T 983.301 -0.119186
+MUSETT_T3_DSSD_X94_T 980.734 -0.118879
+MUSETT_T3_DSSD_X95_T 975.837 -0.118278
+MUSETT_T3_DSSD_X96_T 858.761 -0.104124
+MUSETT_T3_DSSD_X97_T 863.527 -0.104728
+MUSETT_T3_DSSD_X98_T 863.719 -0.104753
+MUSETT_T3_DSSD_X99_T 869.797 -0.105492
+MUSETT_T3_DSSD_X100_T 879.582 -0.106693
+MUSETT_T3_DSSD_X101_T 874.971 -0.10614
+MUSETT_T3_DSSD_X102_T 879.706 -0.106708
+MUSETT_T3_DSSD_X103_T 878.738 -0.106567
+MUSETT_T3_DSSD_X104_T 887.854 -0.107671
+MUSETT_T3_DSSD_X105_T 892.385 -0.108216
+MUSETT_T3_DSSD_X106_T 884.225 -0.107225
+MUSETT_T3_DSSD_X107_T 894.981 -0.108561
+MUSETT_T3_DSSD_X108_T 895.51 -0.108609
+MUSETT_T3_DSSD_X109_T 891.851 -0.108191
+MUSETT_T3_DSSD_X110_T 901.356 -0.109337
+MUSETT_T3_DSSD_X111_T 900.727 -0.108709
+MUSETT_T3_DSSD_X112_T 855.952 -0.103629
+MUSETT_T3_DSSD_X113_T 865.7 -0.10481
+MUSETT_T3_DSSD_X114_T 866.161 -0.1049
+MUSETT_T3_DSSD_X115_T 872.362 -0.105647
+MUSETT_T3_DSSD_X116_T 1490.13 -0.126949
+MUSETT_T3_DSSD_X117_T 876.561 -0.106145
+MUSETT_T3_DSSD_X118_T 884.075 -0.107055
+MUSETT_T3_DSSD_X119_T 881.54 -0.10675
+MUSETT_T3_DSSD_X120_T 884.679 -0.107137
+MUSETT_T3_DSSD_X121_T 888.637 -0.107599
+MUSETT_T3_DSSD_X122_T 884.493 -0.107093
+MUSETT_T3_DSSD_X123_T 893.964 -0.108252
+MUSETT_T3_DSSD_X124_T 888.064 -0.107522
+MUSETT_T3_DSSD_X125_T 894.536 -0.108336
+MUSETT_T3_DSSD_X126_T 882.088 -0.106793
+MUSETT_T3_DSSD_X127_T 890.98 -0.107896
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..164e1edc8a5c9527382a6866a680275ec137b39a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_T 916.716 -0.11121
+MUSETT_T3_DSSD_Y1_T 924.259 -0.112154
+MUSETT_T3_DSSD_Y2_T 933.256 -0.113241
+MUSETT_T3_DSSD_Y3_T 942.953 -0.114409
+MUSETT_T3_DSSD_Y4_T 939.901 -0.114032
+MUSETT_T3_DSSD_Y5_T 947.878 -0.114994
+MUSETT_T3_DSSD_Y6_T 952.484 -0.115552
+MUSETT_T3_DSSD_Y7_T 952.713 -0.115546
+MUSETT_T3_DSSD_Y8_T 960.463 -0.116506
+MUSETT_T3_DSSD_Y9_T 964.543 -0.117006
+MUSETT_T3_DSSD_Y10_T 966.84 -0.117251
+MUSETT_T3_DSSD_Y11_T 965.68 -0.117093
+MUSETT_T3_DSSD_Y12_T 975.182 -0.118272
+MUSETT_T3_DSSD_Y13_T 981.614 -0.119048
+MUSETT_T3_DSSD_Y14_T 973.869 -0.118075
+MUSETT_T3_DSSD_Y15_T 981.076 -0.118941
+MUSETT_T3_DSSD_Y16_T 967.206 -0.117174
+MUSETT_T3_DSSD_Y17_T 980.188 -0.118815
+MUSETT_T3_DSSD_Y18_T 981.134 -0.118931
+MUSETT_T3_DSSD_Y19_T 986.719 -0.119638
+MUSETT_T3_DSSD_Y20_T 992.386 -0.12034
+MUSETT_T3_DSSD_Y21_T 1002.21 -0.121551
+MUSETT_T3_DSSD_Y22_T 997.474 -0.120998
+MUSETT_T3_DSSD_Y23_T 992.008 -0.120321
+MUSETT_T3_DSSD_Y24_T 998.021 -0.121073
+MUSETT_T3_DSSD_Y25_T 1004.15 -0.121839
+MUSETT_T3_DSSD_Y26_T 1004.31 -0.121856
+MUSETT_T3_DSSD_Y27_T 1010.69 -0.122649
+MUSETT_T3_DSSD_Y28_T 1013.79 -0.12302
+MUSETT_T3_DSSD_Y29_T 1002.56 -0.121668
+MUSETT_T3_DSSD_Y30_T 1011.72 -0.122794
+MUSETT_T3_DSSD_Y31_T 1012.54 -0.122927
+MUSETT_T3_DSSD_Y32_T 868.546 -0.105446
+MUSETT_T3_DSSD_Y33_T 865.415 -0.105092
+MUSETT_T3_DSSD_Y34_T 870.615 -0.10573
+MUSETT_T3_DSSD_Y35_T 867.501 -0.105345
+MUSETT_T3_DSSD_Y36_T 879.085 -0.106744
+MUSETT_T3_DSSD_Y37_T 878.372 -0.106654
+MUSETT_T3_DSSD_Y38_T 883.834 -0.107294
+MUSETT_T3_DSSD_Y39_T 892.468 -0.108361
+MUSETT_T3_DSSD_Y40_T 889.652 -0.10799
+MUSETT_T3_DSSD_Y41_T 893.582 -0.10846
+MUSETT_T3_DSSD_Y42_T 902.982 -0.109593
+MUSETT_T3_DSSD_Y43_T 899.542 -0.109195
+MUSETT_T3_DSSD_Y44_T 894.786 -0.108568
+MUSETT_T3_DSSD_Y45_T 904.997 -0.109804
+MUSETT_T3_DSSD_Y46_T 908.733 -0.110263
+MUSETT_T3_DSSD_Y47_T 901.41 -0.109382
+MUSETT_T3_DSSD_Y48_T 874.853 -0.105997
+MUSETT_T3_DSSD_Y49_T 880.713 -0.106772
+MUSETT_T3_DSSD_Y50_T 892.705 -0.108217
+MUSETT_T3_DSSD_Y51_T 895.218 -0.108527
+MUSETT_T3_DSSD_Y52_T 889.343 -0.107825
+MUSETT_T3_DSSD_Y53_T 897.932 -0.108862
+MUSETT_T3_DSSD_Y54_T 902.448 -0.109456
+MUSETT_T3_DSSD_Y55_T 908.367 -0.110152
+MUSETT_T3_DSSD_Y56_T 912.74 -0.110718
+MUSETT_T3_DSSD_Y57_T 911.519 -0.11056
+MUSETT_T3_DSSD_Y58_T 920.413 -0.111636
+MUSETT_T3_DSSD_Y59_T 906.185 -0.109934
+MUSETT_T3_DSSD_Y60_T 919.759 -0.111581
+MUSETT_T3_DSSD_Y61_T 920.555 -0.111694
+MUSETT_T3_DSSD_Y62_T 915.715 -0.1111
+MUSETT_T3_DSSD_Y63_T 918.454 -0.11144
+MUSETT_T3_DSSD_Y64_T 901.244 -0.109216
+MUSETT_T3_DSSD_Y65_T 907.742 -0.110026
+MUSETT_T3_DSSD_Y66_T 908.334 -0.110106
+MUSETT_T3_DSSD_Y67_T 916.785 -0.11114
+MUSETT_T3_DSSD_Y68_T 928.178 -0.11252
+MUSETT_T3_DSSD_Y69_T 936.612 -0.113544
+MUSETT_T3_DSSD_Y70_T 929.327 -0.112672
+MUSETT_T3_DSSD_Y71_T 927.889 -0.112491
+MUSETT_T3_DSSD_Y72_T 944.015 -0.114462
+MUSETT_T3_DSSD_Y73_T 936.5 -0.11354
+MUSETT_T3_DSSD_Y74_T 952.669 -0.115517
+MUSETT_T3_DSSD_Y75_T 949.121 -0.115086
+MUSETT_T3_DSSD_Y76_T 961.66 -0.116618
+MUSETT_T3_DSSD_Y77_T 950.324 -0.115232
+MUSETT_T3_DSSD_Y78_T 943.005 -0.114343
+MUSETT_T3_DSSD_Y79_T 948.05 -0.114947
+MUSETT_T3_DSSD_Y80_T 967.814 -0.117288
+MUSETT_T3_DSSD_Y81_T 979.35 -0.118727
+MUSETT_T3_DSSD_Y82_T 985.387 -0.119474
+MUSETT_T3_DSSD_Y83_T 988.884 -0.119909
+MUSETT_T3_DSSD_Y84_T 990.688 -0.120116
+MUSETT_T3_DSSD_Y85_T 997.728 -0.120975
+MUSETT_T3_DSSD_Y86_T 994.598 -0.120606
+MUSETT_T3_DSSD_Y87_T 996.045 -0.12076
+MUSETT_T3_DSSD_Y88_T 1000.77 -0.121336
+MUSETT_T3_DSSD_Y89_T 1011.99 -0.122713
+MUSETT_T3_DSSD_Y90_T 1015.05 -0.1231
+MUSETT_T3_DSSD_Y91_T 1003.4 -0.121678
+MUSETT_T3_DSSD_Y92_T 1011.74 -0.122697
+MUSETT_T3_DSSD_Y93_T 1014.96 -0.123087
+MUSETT_T3_DSSD_Y94_T 1007.34 -0.122144
+MUSETT_T3_DSSD_Y95_T 1008.36 -0.122274
+MUSETT_T3_DSSD_Y96_T 871.329 -0.105573
+MUSETT_T3_DSSD_Y97_T 868.142 -0.105224
+MUSETT_T3_DSSD_Y98_T 872.865 -0.105791
+MUSETT_T3_DSSD_Y99_T 882.085 -0.106904
+MUSETT_T3_DSSD_Y100_T 889.159 -0.107789
+MUSETT_T3_DSSD_Y101_T 888.956 -0.107742
+MUSETT_T3_DSSD_Y102_T 899.906 -0.109085
+MUSETT_T3_DSSD_Y103_T 892.033 -0.108126
+MUSETT_T3_DSSD_Y104_T 899.207 -0.108999
+MUSETT_T3_DSSD_Y105_T 891.613 -0.108068
+MUSETT_T3_DSSD_Y106_T 891.136 -0.108006
+MUSETT_T3_DSSD_Y107_T 900.207 -0.109125
+MUSETT_T3_DSSD_Y108_T 902.911 -0.109439
+MUSETT_T3_DSSD_Y109_T 900.692 -0.109168
+MUSETT_T3_DSSD_Y110_T 896.133 -0.108625
+MUSETT_T3_DSSD_Y111_T 902.665 -0.109416
+MUSETT_T3_DSSD_Y112_T 888.587 -0.107554
+MUSETT_T3_DSSD_Y113_T 895.918 -0.108473
+MUSETT_T3_DSSD_Y114_T 898.97 -0.108848
+MUSETT_T3_DSSD_Y115_T 894.394 -0.108292
+MUSETT_T3_DSSD_Y116_T 902.574 -0.109288
+MUSETT_T3_DSSD_Y117_T 907.964 -0.109943
+MUSETT_T3_DSSD_Y118_T 906.564 -0.109765
+MUSETT_T3_DSSD_Y119_T 905.798 -0.109672
+MUSETT_T3_DSSD_Y120_T 912.702 -0.110512
+MUSETT_T3_DSSD_Y121_T 921.335 -0.111588
+MUSETT_T3_DSSD_Y122_T 924.085 -0.111915
+MUSETT_T3_DSSD_Y123_T 906.564 -0.109772
+MUSETT_T3_DSSD_Y124_T 910.838 -0.11029
+MUSETT_T3_DSSD_Y125_T 916.176 -0.110947
+MUSETT_T3_DSSD_Y126_T 917.763 -0.111116
+MUSETT_T3_DSSD_Y127_T 925.891 -0.112131
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..9ad991c7e68cfa35cdedb80af41fe8229c43e950
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/cal_to_NPTOOL.py
@@ -0,0 +1,147 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 0
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/calibE0.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/calibE0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..5f77c3d04858dd864b1411813497cfbbcbbac345
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/calibE0.cal1
@@ -0,0 +1,1024 @@
+-61662.3 7.52711 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61862.3 7.5515 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61786 7.54225 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61488.6 7.50587 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61896.8 7.55579 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61641.5 7.52453 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61399.4 7.49501 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61236.4 7.47509 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-60986.5 7.4446 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62681.3 7.65148 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62393.5 7.61631 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61925.3 7.55919 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62029.9 7.57195 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62417.6 7.61932 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61275.3 7.47982 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63058.3 7.69749 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62722.2 7.65646 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62134.9 7.58477 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62458.1 7.62423 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63902.7 7.80057 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62519.9 7.63181 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62297.5 7.60463 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62659.6 7.64878 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62852.3 7.67238 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62985.4 7.68854 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63073.7 7.69941 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62632 7.64548 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-63013.4 7.69203 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62579 7.63901 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63401.5 7.7394 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62630 7.64523 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56399 6.88462 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56789.2 6.93221 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55564.2 6.78269 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56333.4 6.87654 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-56040.6 6.84084 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+-10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55909.7 6.82487 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55658.4 6.79421 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56211.8 6.86172 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55874 6.82053 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56164.8 6.85597 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56307.5 6.87343 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56382 6.88247 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+-10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+-10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55911.5 6.82508 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57927.5 7.07116 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57924.8 7.07081 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57746 7.049 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57343.1 6.99988 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58172.2 7.10106 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57237.7 6.98697 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57876.3 7.06488 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57523.5 7.02188 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58500.7 7.14114 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57786.5 7.05393 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57300.4 6.99465 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57790.9 7.05448 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57203.4 6.9828 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57985 7.0782 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57888.7 7.06644 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58127.1 7.09555 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63452.4 7.74561 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63612.1 7.76511 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63338.7 7.73174 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64021.8 7.81515 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63197.4 7.71456 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63968.4 7.80864 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63853.8 7.79469 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63356.4 7.73397 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64117.7 7.82683 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63242.6 7.72007 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63972.5 7.80918 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63941.4 7.8053 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63651.8 7.77009 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63754.3 7.78255 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64292.8 7.84837 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64690.6 7.89693 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61215.8 7.47271 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60865.1 7.42995 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61147.3 7.46434 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61469.6 7.50369 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61379.1 7.49269 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61888.7 7.55484 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61403.2 7.49554 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62166.5 7.58877 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61896.4 7.55578 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61572.1 7.51618 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61720.5 7.53424 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62796.5 7.66557 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61868.1 7.55224 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60999.1 7.44621 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61368.2 7.49129 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62166.8 7.58877 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57169.7 6.97872 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57564 7.02681 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57724.2 7.04642 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57113.1 6.97176 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58126.5 7.0955 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57746.5 7.04909 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57665.4 7.03921 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57244.7 6.98784 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57357.8 7.00171 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57943.6 7.0732 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57279.1 6.99197 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57628.2 7.03471 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58567.7 7.1494 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58013.5 7.08178 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57681.5 7.04111 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57795.4 7.05508 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59002.3 7.20244 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59192.2 7.22562 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58512.8 7.14267 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58671.3 7.16207 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58171.6 7.10101 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58350.5 7.12281 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.4 7.11445 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58508.2 7.1421 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58511.7 7.14253 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58653.9 7.15989 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58550.4 7.14724 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59318.4 7.24097 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57853 7.06214 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58498.4 7.14087 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58426.4 7.13213 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59512.6 7.26467 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60443.5 -7.37839 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60908.5 -7.43514 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61060.2 -7.45367 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59984.4 -7.32237 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60129.5 -7.3401 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60783.1 -7.41989 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60431 -7.37691 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60140.7 -7.34142 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59998.4 -7.32403 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60395.7 -7.37254 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60028.3 -7.32774 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60887.8 -7.43267 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61066.5 -7.45441 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61164 -7.46632 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60739.8 -7.41458 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60443.5 -7.37838 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60544.4 -7.39071 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60303 -7.3612 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60143.3 -7.34174 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60328.6 -7.3644 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60395.9 -7.37256 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60276 -7.35798 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59684.2 -7.28572 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60187.9 -7.34719 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.4 -7.29698 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60128.6 -7.33997 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60450.5 -7.37922 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59890.5 -7.31089 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59647.3 -7.2812 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59834.9 -7.30412 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60999.1 -7.44624 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56552.5 -6.90341 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57074.5 -6.96718 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56536.5 -6.9015 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57036.3 -6.96248 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57405.1 -7.0075 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57259.2 -6.98972 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56419.6 -6.88718 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56461.1 -6.89226 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56951.6 -6.95213 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56800 -6.93367 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56600.5 -6.90927 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56511.5 -6.8984 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56870.5 -6.94221 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56993.6 -6.95727 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57679.7 -7.04103 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56560.6 -6.90438 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57546.6 -7.02477 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57035.8 -6.96245 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56800.6 -6.93377 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56505.8 -6.89773 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57161.4 -6.97779 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56855 -6.94036 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56619.7 -6.91168 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57621.8 -7.03399 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57359.7 -7.00197 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56825.9 -6.93676 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57031.5 -6.96191 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57239.3 -6.98735 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57254.8 -6.98918 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57074.4 -6.96716 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57574.5 -7.02822 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57912.4 -7.06943 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+61002.8 -7.44668 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61155.3 -7.4653 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61053.3 -7.45282 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61373.4 -7.4919 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60489.7 -7.38403 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61580.3 -7.51716 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60895.6 -7.4336 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60400.3 -7.3731 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61676.2 -7.52889 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61107.3 -7.45944 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61113.2 -7.46014 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61230.4 -7.47441 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60593.4 -7.39669 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61412.2 -7.49666 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61676.7 -7.52894 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61114.5 -7.46029 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62335.5 -7.60932 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61110.8 -7.45984 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61589.5 -7.51825 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62064.5 -7.57624 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61004.9 -7.44692 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60900.3 -7.43416 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61810.8 -7.54524 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61439.5 -7.49992 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61153 -7.46501 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61309.9 -7.48418 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61160.3 -7.46589 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61470.5 -7.50377 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61862.5 -7.55157 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61676 -7.52886 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62387.3 -7.61565 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60904.4 -7.43464 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56381.2 -6.88248 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56647.7 -6.91501 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56593.9 -6.90848 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56466.6 -6.8929 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56205.1 -6.86097 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56339.2 -6.87735 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56071.1 -6.84463 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56586.9 -6.90762 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56922.8 -6.94858 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56073.7 -6.84493 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57080.7 -6.96791 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57414.3 -7.00859 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56582.5 -6.9071 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56583.6 -6.90725 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56679.2 -6.91888 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56421.5 -6.8874 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56904.4 -6.94638 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57127.8 -6.97364 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56965.6 -6.9538 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56822.1 -6.93632 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57302 -6.99491 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.2 -6.90362 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56421.8 -6.88745 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56645.4 -6.91475 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57398.8 -7.00675 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57237.3 -6.98696 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56689 -6.92007 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56011.6 -6.83742 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56467.7 -6.89303 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55922.3 -6.8265 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56957.2 -6.95281 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56586.5 -6.90758 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62384.5 7.61517 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62210.4 7.59389 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62273.5 7.60161 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62019.1 7.5706 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61476.5 7.50432 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61597 7.51908 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62319.3 7.60717 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61416.3 7.49697 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61327.1 7.48611 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61486.5 7.50558 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61673.4 7.52832 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61732.6 7.53556 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61963.2 7.56376 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61418.2 7.49719 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61209 7.47165 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61987.6 7.56667 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62554.4 7.63592 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61756 7.53848 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62264.1 7.60048 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61953.7 7.56258 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62913.2 7.67967 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62120.9 7.583 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62709 7.65477 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62390 7.61587 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62229.7 7.59629 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61997.7 7.56794 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-62036.5 7.57262 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61752 7.53798 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61655.6 7.52623 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62767.5 7.66194 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61803 7.54422 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62761.8 7.66122 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58303.5 7.11703 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58372.5 7.12549 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58359.9 7.12397 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58262.2 7.11204 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58041 7.08509 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58261 7.11167 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58055.7 7.0867 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58647.4 7.15904 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58203.9 7.10488 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58893.9 7.18895 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58051.5 7.08632 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58539.4 7.14586 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58554.4 7.14758 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59335.9 7.24309 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58725.8 7.16875 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58465.7 7.13677 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.8 7.06394 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58529.8 7.14462 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-57972.8 7.07665 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57725.1 7.04637 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57946.6 7.07339 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57919.5 7.07013 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57971 7.07643 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57812.9 7.05708 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58059.5 7.08722 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57860.9 7.06295 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58481.2 7.13869 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57673.5 7.04005 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57733.9 7.04747 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58243 7.10961 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.2 7.09391 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58246.7 7.11007 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61009.3 7.44733 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61630.7 7.52317 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61471.8 7.50372 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61716.9 7.53361 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61893.5 7.55524 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.6 7.48633 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61623.4 7.52221 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61911.8 7.55752 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61279.1 7.48026 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62438.1 7.62175 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61937.8 7.56062 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62078.7 7.57786 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61496.4 7.50682 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61721.2 7.53417 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61321.1 7.48534 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61930.9 7.55971 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63425.9 7.7423 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63726 7.77898 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.8 7.83822 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63931 7.80396 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64114.7 7.8264 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63881.4 7.7979 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64089.1 7.82321 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64226 7.83998 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64162.8 7.83225 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64227.3 7.84014 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63324.3 7.72992 0.00 !Mu1ChX91ERaw[C.o2At2Ch11]
+-63377.9 7.73646 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64592.4 7.88475 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64051.2 7.81864 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63785.3 7.78625 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63425.1 7.74221 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56277.1 6.86963 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56696.4 6.92087 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56524.2 6.89973 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56421.9 6.88734 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56516.9 6.89896 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-56987.1 6.95627 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57341.9 6.99957 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56590.4 6.90785 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56842.5 6.93859 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57029.9 6.96151 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57840.1 7.06034 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57754.1 7.04987 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57718.4 7.04556 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57495 7.01832 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57673.7 7.0401 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-58035.2 7.08421 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57254.3 6.98888 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57309.6 6.99565 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56813.7 6.93513 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57684.3 7.04141 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57273.6 6.99128 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57263.3 6.99002 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56331.2 6.87626 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58331 7.12035 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57448.3 7.0126 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57763.7 7.05109 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57724.2 7.04628 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57458.3 7.01385 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57586.5 7.02947 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57671.5 7.03982 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57076.6 6.9672 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57818.9 7.05784 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59628.2 -7.27891 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60484.2 -7.3834 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59719.3 -7.29006 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59358 -7.24601 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60209.4 -7.34991 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60023.9 -7.32724 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59427.4 -7.25442 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59479.8 -7.26081 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.6 -7.25995 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59661.5 -7.28303 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59523 -7.2661 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59520.7 -7.26582 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60207.7 -7.3497 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59281.6 -7.23662 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59499.5 -7.26329 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59822.2 -7.30262 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62231 -7.59672 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62517.6 -7.63166 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62462.5 -7.62493 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62047 -7.57417 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62207.3 -7.59375 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62362.9 -7.61277 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62017.5 -7.57064 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61713.9 -7.53355 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61449.1 -7.50123 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62086.1 -7.57898 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62077.7 -7.57796 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62287.6 -7.60362 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62027.9 -7.5719 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61668.6 -7.52799 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61804.8 -7.54468 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115.7 -6.85022 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56255.7 -6.86728 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55634.9 -6.79153 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55640.9 -6.79227 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55384.3 -6.76092 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56420.4 -6.88745 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55380.9 -6.76051 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55934.8 -6.82817 0.00 !Mu1ChY40ERaw[C.o3At3Ch8]
+56036.5 -6.84053 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56149.2 -6.85434 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55509.9 -6.77625 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56637.3 -6.9139 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55637.9 -6.79188 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55730.3 -6.80315 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55751.6 -6.80582 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55760.9 -6.80693 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.7 -6.9819 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56616.7 -6.91132 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56565.1 -6.90504 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56007.5 -6.83694 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56838.9 -6.93846 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56277 -6.86982 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56475.8 -6.89415 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56394.9 -6.88425 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57286.1 -6.99307 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57107.7 -6.97128 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56704.7 -6.92209 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57329.2 -6.99832 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57398.8 -7.00677 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57025.8 -6.96125 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56179.4 -6.85794 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57294.5 -6.99407 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61036 -7.45079 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61615.2 -7.52147 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61327.7 -7.48646 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61616.9 -7.52169 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61289.5 -7.48175 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60072.3 -7.33313 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60461.8 -7.38072 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61147.5 -7.46439 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60324.6 -7.36394 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61243.3 -7.47609 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60892.2 -7.43321 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60362.6 -7.36861 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60563.4 -7.39312 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60969.5 -7.44272 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60632 -7.40146 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61354.5 -7.48966 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61129 -7.46218 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61142.4 -7.46376 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61098.2 -7.45836 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60505 -7.38602 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60475.6 -7.38236 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61198.3 -7.47058 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60653.8 -7.40421 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60610.3 -7.39887 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61084.6 -7.45673 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61281.6 -7.48082 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60759.5 -7.41709 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60908.7 -7.43532 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60520.1 -7.38782 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61330.5 -7.48678 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61609.9 -7.52084 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60752.2 -7.41622 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55866.2 -6.81972 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55510.1 -6.77629 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55739.1 -6.80422 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55602.7 -6.78757 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55779.5 -6.80916 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55452.6 -6.76931 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55433.8 -6.76695 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56175.8 -6.85753 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55295 -6.75003 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55267.6 -6.74664 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55913.4 -6.82548 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55219 -6.74076 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55914.7 -6.82563 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56088.3 -6.84683 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56128.7 -6.85177 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.7 -6.9068 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54791.9 -6.68861 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55573.5 -6.78397 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55177.3 -6.73564 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.9 -6.722 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55271.1 -6.74706 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55426.4 -6.76607 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55308.9 -6.7517 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55560.5 -6.78242 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55828.4 -6.8151 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55461.9 -6.77042 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.4 -6.69404 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55154.2 -6.73277 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55218.5 -6.74067 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55198.9 -6.73821 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55347.2 -6.75638 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56270.5 -6.86904 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62771.8 7.66248 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62536.2 7.63367 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62923.2 7.68092 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62099.2 7.5803 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62071.6 7.577 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62762.5 7.66131 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62536.6 7.63372 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62863.4 7.6736 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62977.6 7.68755 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62169.2 7.58889 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62486.2 7.62758 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62494 7.62855 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62591.4 7.6404 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62596.5 7.64104 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62693.3 7.65283 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63431.9 7.74304 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62275.5 7.60186 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61847 7.54956 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61648.9 7.52542 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61472.2 7.5038 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61487.7 7.50573 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62323.6 7.60772 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62160.6 7.58783 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61801.5 7.54404 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61589.4 7.51813 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61837.9 7.54843 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61997.2 7.56788 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61886.9 7.55441 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61669.6 7.52787 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61317.6 7.48493 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62385.4 7.6153 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61544.8 7.51271 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59005.1 7.20263 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58125.4 7.0952 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58621 7.15577 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58420.8 7.13128 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58182.1 7.10215 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58179.5 7.10183 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58382.7 7.12665 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57951.6 7.074 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57619.4 7.03346 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58602.8 7.15349 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58763.6 7.17317 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58295.3 7.11601 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58611.5 7.15458 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58569.5 7.14945 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58368.6 7.12489 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58524.7 7.144 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57829.7 7.05919 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57177.7 6.97958 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58151 7.0984 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57925 7.07083 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57600.2 7.03119 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57219.8 6.9847 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57855.4 7.06228 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57682.2 7.04116 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57912.6 7.06929 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57598.9 7.03102 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57919.6 7.07016 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.5 6.9577 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57498.2 7.01871 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56729.1 6.92483 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57500.6 7.01901 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57910.6 7.06904 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63311 7.72824 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64991.8 7.93347 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-63994.5 7.8117 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63750.3 7.78186 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64408.5 7.86228 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63629 7.76702 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63438.8 7.74388 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63358.3 7.73399 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63144.6 7.70793 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63812.1 7.7894 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63662.4 7.77117 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63876.9 7.79733 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63771.1 7.78444 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63652.1 7.7699 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63600.3 7.76358 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63256.4 7.72158 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63333.7 7.73107 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63150 7.70859 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63204.5 7.71524 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63982.1 7.81015 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63771.3 7.78446 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63682.7 7.7737 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63921.1 7.80269 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63090.3 7.7013 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63548.7 7.75733 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63345.7 7.73257 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63537.7 7.75593 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63267.1 7.72292 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64614.3 7.88733 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63737 7.78019 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63627.5 7.76682 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59011.6 7.20345 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58536.3 7.14543 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58294.5 7.11592 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58764.5 7.17328 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59388.2 7.24938 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59353.9 7.24523 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58868.9 7.18606 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59020.4 7.20454 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59051.2 7.20827 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59067.7 7.21031 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58780.6 7.17527 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59011.8 7.20348 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58685.6 7.16369 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60313.6 7.36243 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58947.7 7.1956 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58640.6 7.15819 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59256.4 7.23333 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59391.4 7.24979 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59741.5 7.29254 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59153 7.2207 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59659.3 7.28255 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60043.5 7.32941 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59492.9 7.26218 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59355.9 7.2455 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60079 7.3337 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58759.7 7.17268 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59106.3 7.21501 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59356.4 7.24556 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58905.4 7.19045 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58909 7.19091 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59139.8 7.21905 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59244.4 7.23184 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63180.3 -7.71254 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63958.5 -7.80757 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62563.9 -7.63734 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63393.8 -7.73864 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62965.3 -7.6863 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62695.2 -7.65332 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63071 -7.6992 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62684.7 -7.65205 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62805.2 -7.66674 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63405.9 -7.74008 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+63006 -7.69129 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62613.8 -7.64344 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62135.8 -7.58506 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62797.8 -7.66584 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+63003.9 -7.69104 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63451.5 -7.74566 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61680.4 -7.52939 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60963.7 -7.44202 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60731.3 -7.4136 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62044.4 -7.57386 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.9 -7.46121 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60932 -7.4381 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62091.8 -7.57965 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61042.5 -7.45157 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61080.2 -7.45622 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61569 -7.51583 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61088.9 -7.45724 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61401.8 -7.49545 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61590.8 -7.51854 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61456.7 -7.50214 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61348.2 -7.48891 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61814.6 -7.54586 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56310.4 -6.87387 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56475.6 -6.89413 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56843.7 -6.93897 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56709.9 -6.9227 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+57006.5 -6.95894 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56922.7 -6.94871 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56395.9 -6.88437 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56437.5 -6.88946 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56168.1 -6.85657 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58137.4 -7.09691 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56752.1 -6.92786 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56268.3 -6.86879 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57248.3 -6.98843 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57237.7 -6.98715 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57062.5 -6.96574 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56700.2 -6.92152 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57609.4 -7.03252 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57045.1 -6.96368 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57893.4 -7.06716 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57432.1 -7.01085 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57327.3 -6.9981 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58593.6 -7.15267 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57713.2 -7.04516 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57801 -7.05589 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57750.1 -7.0497 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57564.6 -7.02705 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57513.2 -7.02079 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58298.6 -7.11669 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57883.6 -7.066 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57333.9 -6.99889 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57877.7 -7.06529 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58222.3 -7.10732 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59352.4 -7.24534 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59653 -7.28202 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59466.7 -7.25926 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60421 -7.37573 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59563.3 -7.27104 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59865.2 -7.30789 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59568.1 -7.27161 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59903.1 -7.31254 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59874.2 -7.30895 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59565.9 -7.27135 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59951.4 -7.31844 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60102.6 -7.33689 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59329 -7.24242 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59973.3 -7.32106 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59369.2 -7.24734 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60205.5 -7.34945 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60559.1 -7.39262 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61223.9 -7.47379 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60555.5 -7.39217 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61267.8 -7.47916 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61183.2 -7.46879 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60877.4 -7.43143 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60964.7 -7.44213 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61316.7 -7.48517 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60889.6 -7.43289 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60834.9 -7.42623 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61475.4 -7.50452 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60713.8 -7.41149 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61139.9 -7.46349 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60586.2 -7.39585 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61091.2 -7.45753 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61463 -7.50289 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56883.7 -6.94393 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55958.3 -6.83096 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56259.7 -6.86775 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56620.9 -6.91184 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56390.1 -6.88368 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56741.9 -6.92663 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55881.7 -6.82158 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57242.5 -6.98773 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56047.6 -6.84185 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56706.4 -6.92227 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56618.3 -6.91153 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57516.3 -7.02116 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57052.7 -6.96458 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56701.3 -6.92167 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57023.2 -6.96095 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56155.3 -6.85506 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56480.1 -6.89468 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57291 -6.99365 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56601.1 -6.90948 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56864.7 -6.94167 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56504.8 -6.89772 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56531 -6.90085 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56803.1 -6.93407 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56744.6 -6.92696 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56339.6 -6.87753 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57094.7 -6.96973 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57471.8 -7.01574 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56243.7 -6.86585 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56920.2 -6.94841 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56357.9 -6.87972 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56171.4 -6.85698 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62432 7.62115 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61898.1 7.55599 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62261.8 7.60035 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62377.7 7.61452 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61987.1 7.56678 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61925.3 7.55922 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62100.7 7.58066 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61621.8 7.5222 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61764.3 7.53956 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61918.3 7.55834 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61881.5 7.55388 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62903 7.67858 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61674.1 7.52859 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61812.4 7.54541 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61555.6 7.51408 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62627.4 7.64492 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63656.5 7.77047 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63108 7.70354 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62943.4 7.68346 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62837.7 7.67058 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62676.4 7.65089 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.8 7.70503 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63798 7.78783 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63791 7.78695 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62795 7.6654 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63502.6 7.75172 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63532.1 7.75542 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63309.9 7.72829 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63637.8 7.76831 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63587.2 7.76214 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64531.7 7.87739 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63742.8 7.78111 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59430.3 7.25494 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59220.2 7.22924 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58174.6 7.10163 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58373.6 7.12581 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58848.1 7.18369 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-59012.9 7.20387 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59307.2 7.23977 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58677.9 7.16294 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59283.1 7.23677 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58956.4 7.1969 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-59043.5 7.20751 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59047.9 7.20805 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59414.1 7.25268 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58832.8 7.18171 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59184.6 7.22469 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57410.4 7.00817 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57223.7 6.98537 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56941.7 6.95094 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57306.3 6.99545 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56939.2 6.95063 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57390.5 7.00573 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56638.3 6.91393 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57358.5 7.00183 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57684.4 7.04165 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56591.3 6.9082 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57508 7.02016 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57136.1 6.97475 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56380.4 6.88251 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56917.4 6.9481 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56824.5 6.93679 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56577 6.90664 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64140 7.82956 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63839.3 7.79281 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63564.4 7.75927 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63770.4 7.78438 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63671.6 7.77235 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63272.3 7.72359 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64307 7.84993 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62530.8 7.63314 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62672.9 7.65044 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63019 7.69272 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63152.8 7.70897 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63441 7.74419 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64109.3 7.82574 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62453.5 7.62365 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62622.2 7.64425 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63017.2 7.69251 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62453.4 7.62363 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62780.3 7.66354 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62670.1 7.65009 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62554.7 7.63598 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62062.4 7.57587 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62422.6 7.61994 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62402.7 7.61746 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.8 7.58526 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62351.6 7.61123 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62791 7.66488 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62302.7 7.60527 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62078.1 7.57785 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62829.3 7.66952 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.5 7.6367 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62144 7.5859 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62353.9 7.61152 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56131.1 6.85191 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55920.2 6.82616 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55178.7 6.73562 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55783.6 6.8095 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55958 6.83076 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55940.2 6.82857 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55976 6.83293 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55255.5 6.74498 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55479.7 6.77237 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-56040.3 6.84079 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55791.2 6.81044 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55701.6 6.79948 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56738.3 6.92598 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56293.9 6.87171 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55819.1 6.81378 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55694.2 6.79856 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57554.1 7.02556 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56976.8 6.95514 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57518.4 7.02123 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56980.7 6.95562 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58026.2 7.08323 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57191.1 6.98127 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57432 7.01071 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56290.9 6.87137 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56748.2 6.92722 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57901.7 7.06808 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57512.9 7.02056 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57112.4 6.9717 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57653.3 7.03769 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56762.7 6.92904 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57841.9 7.06073 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56524.8 6.89995 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60194.7 -7.34802 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987.9 -7.20075 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60132.2 -7.34041 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59977.5 -7.32152 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59787.4 -7.2983 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59893.4 -7.31122 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59798.6 -7.29963 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60251.3 -7.3549 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60589.5 -7.39622 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60436.6 -7.37756 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60189.7 -7.3474 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59826.4 -7.3031 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59687.2 -7.28606 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59622.1 -7.27818 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60574.8 -7.39447 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59719.2 -7.29002 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62963.1 -7.68601 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63186.9 -7.71331 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62262.3 -7.60044 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62806 -7.6668 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63246.8 -7.72062 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63550.3 -7.75759 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+63016.8 -7.69256 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62986.6 -7.68882 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63522.2 -7.75424 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63478.7 -7.7489 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62643.1 -7.64692 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63429.9 -7.74292 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62483.7 -7.62745 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62960.7 -7.68572 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63085.3 -7.7009 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62969.4 -7.68675 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84715 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56228.6 -6.86391 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55834.6 -6.81583 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55713 -6.80096 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55757 -6.80633 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56228 -6.86384 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55925.9 -6.82695 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55539.7 -6.77979 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55412.1 -6.76422 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185 -6.85859 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55981.8 -6.83375 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55370.8 -6.75918 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55748.9 -6.80537 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55612.3 -6.78871 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55926.3 -6.82699 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55801.2 -6.81172 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56670.8 -6.9179 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56949.5 -6.9519 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57147.1 -6.97597 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56960.4 -6.95318 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56493.9 -6.89629 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56963.2 -6.95364 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56581.6 -6.90701 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57050.7 -6.96421 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57076.9 -6.96747 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56623.8 -6.91216 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57493.2 -7.01827 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57089.4 -6.96896 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57586.3 -7.02963 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57044.7 -6.96349 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56777.7 -6.93089 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57421.6 -7.00961 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59437.6 -7.25562 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59994 -7.32351 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59523.9 -7.2662 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59337.1 -7.24336 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59498.6 -7.26303 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58818.6 -7.18002 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59332.2 -7.24276 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+60018.7 -7.32659 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60180.5 -7.3463 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59480.7 -7.26089 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59527.7 -7.26664 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59635.1 -7.27972 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59581.2 -7.27315 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59444.7 -7.25647 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59048.4 -7.20811 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59989.5 -7.32298 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62855.4 -7.67285 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62750.4 -7.66003 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62532.7 -7.63346 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62151.3 -7.58691 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.6 -7.57075 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62710.2 -7.65509 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62271.6 -7.60155 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62960 -7.68565 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62677.8 -7.65121 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62626.1 -7.64489 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61878.3 -7.55359 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61999.2 -7.56832 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61924.7 -7.55927 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+61995.6 -7.56788 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61960.5 -7.56357 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61833.6 -7.54812 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56731.4 -6.92523 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56909.9 -6.94702 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56318.3 -6.87484 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55946.5 -6.8294 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56299.8 -6.87252 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56328.7 -6.87609 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55986.5 -6.8343 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55996.3 -6.83546 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55858.1 -6.81861 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56336.4 -6.877 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56504.4 -6.89753 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56280.4 -6.87019 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55801.7 -6.81176 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55903.8 -6.82419 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56672.2 -6.91805 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56668.9 -6.91765 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57102.2 -6.97047 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57033.7 -6.96222 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57102 -6.97059 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+57015.2 -6.95994 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57666.6 -7.03944 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57327.3 -6.99806 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56838.8 -6.9384 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57642.3 -7.0364 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57472.4 -7.01575 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57009.2 -6.95917 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57427.6 -7.01028 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57105.1 -6.97094 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57606 -7.03198 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56852.7 -6.94013 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57287.8 -6.99311 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57526.7 -7.02236 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/calibT0.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/calibT0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..99605ef63058dd281004c7ed8c90ec17435b8b21
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/calibT0.cal1
@@ -0,0 +1,1023 @@
+946.164 -0.114176 0.00 !Mu0ChX1TRaw[Co1At1Ch1]
+956.811 -0.115529 0.00 !Mu0ChX2TRaw[Co1At1Ch2]
+957.988 -0.115657 0.00 !Mu0ChX3TRaw[Co1At1Ch3]
+972.139 -0.117409 0.00 !Mu0ChX4TRaw[Co1At1Ch4]
+971.761 -0.117367 0.00 !Mu0ChX5TRaw[Co1At1Ch5]
+971.702 -0.117353 0.00 !Mu0ChX6TRaw[Co1At1Ch6]
+976.911 -0.117969 0.00 !Mu0ChX7TRaw[Co1At1Ch7]
+979.143 -0.118246 0.00 !Mu0ChX8TRaw[Co1At1Ch8]
+977.915 -0.118065 0.00 !Mu0ChX9TRaw[Co1At1Ch9]
+981.976 -0.118546 0.00 !Mu0ChX10TRaw[Co1At1Ch10]
+986.577 -0.119138 0.00 !Mu0ChX11TRaw[Co1At1Ch11]
+986.184 -0.119075 0.00 !Mu0ChX12TRaw[Co1At1Ch12]
+993.563 -0.119996 0.00 !Mu0ChX13TRaw[Co1At1Ch13]
+978.874 -0.118174 0.00 !Mu0ChX14TRaw[Co1At1Ch14]
+989.894 -0.119531 0.00 !Mu0ChX15TRaw[Co1At1Ch15]
+1318.57 -0.118448 0.00 !Mu0ChX16TRaw[Co1At1Ch16]
+955.564 -0.115275 0.00 !Mu0ChX17TRaw[Co1At2Ch1]
+965.774 -0.116527 0.00 !Mu0ChX18TRaw[Co1At2Ch2]
+978.184 -0.118044 0.00 !Mu0ChX19TRaw[Co1At2Ch3]
+978.854 -0.118125 0.00 !Mu0ChX20TRaw[Co1At2Ch4]
+987.988 -0.119233 0.00 !Mu0ChX21TRaw[Co1At2Ch5]
+982.353 -0.118555 0.00 !Mu0ChX22TRaw[Co1At2Ch6]
+992.928 -0.119845 0.00 !Mu0ChX23TRaw[Co1At2Ch7]
+994.329 -0.120005 0.00 !Mu0ChX24TRaw[Co1At2Ch8]
+989.504 -0.119427 0.00 !Mu0ChX25TRaw[Co1At2Ch9]
+1000.62 -0.120777 0.00 !Mu0ChX26TRaw[Co1At2Ch10]
+1002.92 -0.121057 0.00 !Mu0ChX27TRaw[Co1At2Ch11]
+1006.98 -0.121545 0.00 !Mu0ChX28TRaw[Co1At2Ch12]
+1002.57 -0.121021 0.00 !Mu0ChX29TRaw[Co1At2Ch13]
+1001.43 -0.120851 0.00 !Mu0ChX30TRaw[Co1At2Ch14]
+997.945 -0.12045 0.00 !Mu0ChX31TRaw[Co1At2Ch15]
+993.524 -0.119947 0.00 !Mu0ChX32TRaw[Co1At2Ch16]
+872.545 -0.105192 0.00 !Mu0ChX33TRaw[Co1At3Ch1]
+870.474 -0.104955 0.00 !Mu0ChX34TRaw[Co1At3Ch2]
+890.439 -0.107397 0.00 !Mu0ChX35TRaw[Co1At3Ch3]
+879.216 -0.106033 0.00 !Mu0ChX36TRaw[Co1At3Ch4]
+881.009 -0.106227 0.00 !Mu0ChX37TRaw[Co1At3Ch5]
+895.366 -0.108005 0.00 !Mu0ChX38TRaw[Co1At3Ch6]
+897.01 -0.108195 0.00 !Mu0ChX39TRaw[Co1At3Ch7]
+895.47 -0.107979 0.00 !Mu0ChX40TRaw[Co1At3Ch8]
+898.037 -0.108302 0.00 !Mu0ChX41TRaw[Co1At3Ch9]
+898.361 -0.108334 0.00 !Mu0ChX42TRaw[Co1At3Ch10]
+897.507 -0.108243 0.00 !Mu0ChX43TRaw[Co1At3Ch11]
+904.455 -0.109095 0.00 !Mu0ChX44TRaw[Co1At3Ch12]
+899.781 -0.108505 0.00 !Mu0ChX45TRaw[Co1At3Ch13]
+894.363 -0.107877 0.00 !Mu0ChX46TRaw[Co1At3Ch14]
+896.817 -0.108187 0.00 !Mu0ChX47TRaw[Co1At3Ch15]
+930.792 -0.10826 0.00 !Mu0ChX48TRaw[Co1At3Ch16]
+884.648 -0.106556 0.00 !Mu0ChX49TRaw[Co1At4Ch1]
+887.836 -0.106942 0.00 !Mu0ChX50TRaw[Co1At4Ch2]
+893.25 -0.107622 0.00 !Mu0ChX51TRaw[Co1At4Ch3]
+901.75 -0.109464 0.00 !Mu0ChX52TRaw[Co1At4Ch4]
+907.099 -0.109295 0.00 !Mu0ChX53TRaw[Co1At4Ch5]
+909.979 -0.109652 0.00 !Mu0ChX54TRaw[Co1At4Ch6]
+912.526 -0.109955 0.00 !Mu0ChX55TRaw[Co1At4Ch7]
+916.597 -0.110458 0.00 !Mu0ChX56TRaw[Co1At4Ch8]
+925.24 -0.111499 0.00 !Mu0ChX57TRaw[Co1At4Ch9]
+916.715 -0.110456 0.00 !Mu0ChX58TRaw[Co1At4Ch10]
+924.251 -0.111378 0.00 !Mu0ChX59TRaw[Co1At4Ch11]
+928.786 -0.111943 0.00 !Mu0ChX60TRaw[Co1At4Ch12]
+935.878 -0.112807 0.00 !Mu0ChX61TRaw[Co1At4Ch13]
+938.667 -0.11314 0.00 !Mu0ChX62TRaw[Co1At4Ch14]
+940.288 -0.113338 0.00 !Mu0ChX63TRaw[Co1At4Ch15]
+929.111 -0.111982 0.00 !Mu0ChX64TRaw[Co1At4Ch16]
+957.51 -0.115846 0.00 !Mu0ChX65TRaw[Co2At1Ch1]
+962.646 -0.11646 0.00 !Mu0ChX66TRaw[Co2At1Ch2]
+972.344 -0.117644 0.00 !Mu0ChX67TRaw[Co2At1Ch3]
+973.464 -0.117791 0.00 !Mu0ChX68TRaw[Co2At1Ch4]
+976.904 -0.118174 0.00 !Mu0ChX69TRaw[Co2At1Ch5]
+989.493 -0.119717 0.00 !Mu0ChX70TRaw[Co2At1Ch6]
+993.895 -0.120284 0.00 !Mu0ChX71TRaw[Co2At1Ch7]
+995.117 -0.120426 0.00 !Mu0ChX72TRaw[Co2At1Ch8]
+1006.3 -0.121763 0.00 !Mu0ChX73TRaw[Co2At1Ch9]
+987.403 -0.119445 0.00 !Mu0ChX74TRaw[Co2At1Ch10]
+1004.54 -0.121535 0.00 !Mu0ChX75TRaw[Co2At1Ch11]
+995.118 -0.120381 0.00 !Mu0ChX76TRaw[Co2At1Ch12]
+1002.39 -0.121262 0.00 !Mu0ChX77TRaw[Co2At1Ch13]
+1006.49 -0.121766 0.00 !Mu0ChX78TRaw[Co2At1Ch14]
+997.059 -0.120615 0.00 !Mu0ChX79TRaw[Co2At1Ch15]
+1377.74 -0.120952 0.00 !Mu0ChX80TRaw[Co2At1Ch16]
+923.114 -0.111515 0.00 !Mu0ChX81TRaw[Co2At2Ch1]
+932.866 -0.112746 0.00 !Mu0ChX82TRaw[Co2At2Ch2]
+924.928 -0.111774 0.00 !Mu0ChX83TRaw[Co2At2Ch3]
+937.265 -0.113281 0.00 !Mu0ChX84TRaw[Co2At2Ch4]
+930.752 -0.112468 0.00 !Mu0ChX85TRaw[Co2At2Ch5]
+941.628 -0.113819 0.00 !Mu0ChX86TRaw[Co2At2Ch6]
+949.998 -0.114818 0.00 !Mu0ChX87TRaw[Co2At2Ch7]
+943.027 -0.113978 0.00 !Mu0ChX88TRaw[Co2At2Ch8]
+949.721 -0.114813 0.00 !Mu0ChX89TRaw[Co2At2Ch9]
+957.242 -0.115728 0.00 !Mu0ChX90TRaw[Co2At2Ch10]
+964.815 -0.11664 0.00 !Mu0ChX91TRaw[Co2At2Ch11]
+961.466 -0.11625 0.00 !Mu0ChX92TRaw[Co2At2Ch12]
+961.749 -0.116299 0.00 !Mu0ChX93TRaw[Co2At2Ch13]
+960.655 -0.116152 0.00 !Mu0ChX94TRaw[Co2At2Ch14]
+974.674 -0.117868 0.00 !Mu0ChX95TRaw[Co2At2Ch15]
+992.705 -0.116744 0.00 !Mu0ChX96TRaw[Co2At2Ch16]
+868.269 -0.105013 0.00 !Mu0ChX97TRaw[Co2At3Ch1]
+877.648 -0.106169 0.00 !Mu0ChX98TRaw[Co2At3Ch2]
+878.241 -0.106212 0.00 !Mu0ChX99TRaw[Co2At3Ch3]
+883.994 -0.106905 0.00 !Mu0ChX100TRaw[Co2At3Ch4]
+893.321 -0.108043 0.00 !Mu0ChX101TRaw[Co2At3Ch5]
+900.56 -0.108935 0.00 !Mu0ChX102TRaw[Co2At3Ch6]
+896.766 -0.108442 0.00 !Mu0ChX103TRaw[Co2At3Ch7]
+894.903 -0.108194 0.00 !Mu0ChX104TRaw[Co2At3Ch8]
+904.239 -0.109336 0.00 !Mu0ChX105TRaw[Co2At3Ch9]
+902.018 -0.109053 0.00 !Mu0ChX106TRaw[Co2At3Ch10]
+907.673 -0.109771 0.00 !Mu0ChX107TRaw[Co2At3Ch11]
+904.96 -0.109449 0.00 !Mu0ChX108TRaw[Co2At3Ch12]
+902.795 -0.109128 0.00 !Mu0ChX109TRaw[Co2At3Ch13]
+906.335 -0.109641 0.00 !Mu0ChX110TRaw[Co2At3Ch14]
+903.029 -0.109177 0.00 !Mu0ChX111TRaw[Co2At3Ch15]
+912.908 -0.109478 0.00 !Mu0ChX112TRaw[Co2At3Ch16]
+888.694 -0.107364 0.00 !Mu0ChX113TRaw[Co2At4Ch1]
+891.736 -0.107748 0.00 !Mu0ChX114TRaw[Co2At4Ch2]
+891.957 -0.107782 0.00 !Mu0ChX115TRaw[Co2At4Ch3]
+901.87 -0.109007 0.00 !Mu0ChX116TRaw[Co2At4Ch4]
+905.48 -0.109423 0.00 !Mu0ChX117TRaw[Co2At4Ch5]
+899.196 -0.108648 0.00 !Mu0ChX118TRaw[Co2At4Ch6]
+913.782 -0.110413 0.00 !Mu0ChX119TRaw[Co2At4Ch7]
+914.779 -0.110579 0.00 !Mu0ChX120TRaw[Co2At4Ch8]
+909.004 -0.109898 0.00 !Mu0ChX121TRaw[Co2At4Ch9]
+914.282 -0.1105 0.00 !Mu0ChX122TRaw[Co2At4Ch10]
+922.657 -0.111529 0.00 !Mu0ChX123TRaw[Co2At4Ch11]
+914.822 -0.110604 0.00 !Mu0ChX124TRaw[Co2At4Ch12]
+917.977 -0.110972 0.00 !Mu0ChX125TRaw[Co2At4Ch13]
+919.687 -0.11118 0.00 !Mu0ChX126TRaw[Co2At4Ch14]
+914.922 -0.110613 0.00 !Mu0ChX127TRaw[Co2At4Ch15]
+925.329 -0.111151 0.00 !Mu0ChX128TRaw[Co2At4Ch16]
+942.169 -0.114033 0.00 !Mu0ChY2TRaw[Co3At1Ch2]
+941.094 -0.113921 0.00 !Mu0ChY3TRaw[Co3At1Ch3]
+959.045 -0.116104 0.00 !Mu0ChY4TRaw[Co3At1Ch4]
+954.629 -0.115563 0.00 !Mu0ChY5TRaw[Co3At1Ch5]
+970.443 -0.117481 0.00 !Mu0ChY6TRaw[Co3At1Ch6]
+969.234 -0.117339 0.00 !Mu0ChY7TRaw[Co3At1Ch7]
+966.53 -0.117018 0.00 !Mu0ChY8TRaw[Co3At1Ch8]
+973.409 -0.117842 0.00 !Mu0ChY9TRaw[Co3At1Ch9]
+968.923 -0.117316 0.00 !Mu0ChY10TRaw[Co3At1Ch10]
+971.661 -0.117632 0.00 !Mu0ChY11TRaw[Co3At1Ch11]
+977.841 -0.118398 0.00 !Mu0ChY12TRaw[Co3At1Ch12]
+975.821 -0.11814 0.00 !Mu0ChY13TRaw[Co3At1Ch13]
+971.638 -0.117633 0.00 !Mu0ChY14TRaw[Co3At1Ch14]
+974.225 -0.117944 0.00 !Mu0ChY15TRaw[Co3At1Ch15]
+980.805 -0.118761 0.00 !Mu0ChY16TRaw[Co3At1Ch16]
+935.973 -0.113175 0.00 !Mu0ChY17TRaw[Co3At2Ch1]
+944.972 -0.114309 0.00 !Mu0ChY18TRaw[Co3At2Ch2]
+953.592 -0.115351 0.00 !Mu0ChY19TRaw[Co3At2Ch3]
+945.492 -0.11436 0.00 !Mu0ChY20TRaw[Co3At2Ch4]
+948.066 -0.114686 0.00 !Mu0ChY21TRaw[Co3At2Ch5]
+951.558 -0.115103 0.00 !Mu0ChY22TRaw[Co3At2Ch6]
+957.545 -0.115832 0.00 !Mu0ChY23TRaw[Co3At2Ch7]
+957.576 -0.115841 0.00 !Mu0ChY24TRaw[Co3At2Ch8]
+962.251 -0.116398 0.00 !Mu0ChY25TRaw[Co3At2Ch9]
+960.479 -0.116195 0.00 !Mu0ChY26TRaw[Co3At2Ch10]
+957.007 -0.115516 0.00 !Mu0ChY27TRaw[Co3At2Ch11]
+971.646 -0.117562 0.00 !Mu0ChY28TRaw[Co3At2Ch12]
+974.064 -0.117834 0.00 !Mu0ChY29TRaw[Co3At2Ch13]
+968.974 -0.11722 0.00 !Mu0ChY30TRaw[Co3At2Ch14]
+971.944 -0.11759 0.00 !Mu0ChY31TRaw[Co3At2Ch15]
+966.713 -0.116928 0.00 !Mu0ChY32TRaw[Co3At2Ch16]
+869.43 -0.105131 0.00 !Mu0ChY33TRaw[Co3At3Ch1]
+868.989 -0.105113 0.00 !Mu0ChY34TRaw[Co3At3Ch2]
+886.133 -0.107174 0.00 !Mu0ChY35TRaw[Co3At3Ch3]
+876.002 -0.105955 0.00 !Mu0ChY36TRaw[Co3At3Ch4]
+887.653 -0.107363 0.00 !Mu0ChY37TRaw[Co3At3Ch5]
+886.897 -0.107278 0.00 !Mu0ChY38TRaw[Co3At3Ch6]
+887.559 -0.107347 0.00 !Mu0ChY39TRaw[Co3At3Ch7]
+905.525 -0.109567 0.00 !Mu0ChY40TRaw[Co3At3Ch8]
+903.288 -0.109268 0.00 !Mu0ChY41TRaw[Co3At3Ch9]
+901.488 -0.109045 0.00 !Mu0ChY42TRaw[Co3At3Ch10]
+900.453 -0.108924 0.00 !Mu0ChY43TRaw[Co3At3Ch11]
+911.154 -0.110196 0.00 !Mu0ChY44TRaw[Co3At3Ch12]
+908.4 -0.109895 0.00 !Mu0ChY45TRaw[Co3At3Ch13]
+903.164 -0.10924 0.00 !Mu0ChY46TRaw[Co3At3Ch14]
+913.419 -0.110513 0.00 !Mu0ChY47TRaw[Co3At3Ch15]
+901.371 -0.109056 0.00 !Mu0ChY48TRaw[Co3At3Ch16]
+855.809 -0.103507 0.00 !Mu0ChY49TRaw[Co3At4Ch1]
+866.963 -0.104888 0.00 !Mu0ChY50TRaw[Co3At4Ch2]
+862.301 -0.104347 0.00 !Mu0ChY51TRaw[Co3At4Ch3]
+879.214 -0.106391 0.00 !Mu0ChY52TRaw[Co3At4Ch4]
+881.851 -0.106718 0.00 !Mu0ChY53TRaw[Co3At4Ch5]
+883.115 -0.106878 0.00 !Mu0ChY54TRaw[Co3At4Ch6]
+879.659 -0.106441 0.00 !Mu0ChY55TRaw[Co3At4Ch7]
+887.765 -0.107426 0.00 !Mu0ChY56TRaw[Co3At4Ch8]
+889.179 -0.107608 0.00 !Mu0ChY57TRaw[Co3At4Ch9]
+893.434 -0.108136 0.00 !Mu0ChY58TRaw[Co3At4Ch10]
+900.612 -0.109012 0.00 !Mu0ChY59TRaw[Co3At4Ch11]
+899.41 -0.108611 0.00 !Mu0ChY60TRaw[Co3At4Ch12]
+898.225 -0.108719 0.00 !Mu0ChY61TRaw[Co3At4Ch13]
+905.378 -0.109581 0.00 !Mu0ChY62TRaw[Co3At4Ch14]
+899.576 -0.108895 0.00 !Mu0ChY63TRaw[Co3At4Ch15]
+904.856 -0.109543 0.00 !Mu0ChY64TRaw[Co3At4Ch16]
+964.166 -0.116469 0.00 !Mu0ChY65TRaw[Co4At1Ch1]
+970.821 -0.117302 0.00 !Mu0ChY66TRaw[Co4At1Ch2]
+976.54 -0.118012 0.00 !Mu0ChY67TRaw[Co4At1Ch3]
+976.814 -0.118028 0.00 !Mu0ChY68TRaw[Co4At1Ch4]
+979.621 -0.118378 0.00 !Mu0ChY69TRaw[Co4At1Ch5]
+983.271 -0.118825 0.00 !Mu0ChY70TRaw[Co4At1Ch6]
+982.977 -0.118781 0.00 !Mu0ChY71TRaw[Co4At1Ch7]
+986.021 -0.119156 0.00 !Mu0ChY72TRaw[Co4At1Ch8]
+989.88 -0.119628 0.00 !Mu0ChY73TRaw[Co4At1Ch9]
+981.368 -0.118591 0.00 !Mu0ChY74TRaw[Co4At1Ch10]
+990.1 -0.119656 0.00 !Mu0ChY75TRaw[Co4At1Ch11]
+1000.52 -0.120924 0.00 !Mu0ChY76TRaw[Co4At1Ch12]
+995.667 -0.120327 0.00 !Mu0ChY77TRaw[Co4At1Ch13]
+997.754 -0.120579 0.00 !Mu0ChY78TRaw[Co4At1Ch14]
+994.951 -0.120247 0.00 !Mu0ChY79TRaw[Co4At1Ch15]
+1001.99 -0.121097 0.00 !Mu0ChY80TRaw[Co4At1Ch16]
+970.583 -0.117145 0.00 !Mu0ChY81TRaw[Co4At2Ch1]
+986.462 -0.119118 0.00 !Mu0ChY82TRaw[Co4At2Ch2]
+981.625 -0.118534 0.00 !Mu0ChY83TRaw[Co4At2Ch3]
+996.206 -0.12031 0.00 !Mu0ChY84TRaw[Co4At2Ch4]
+1000.06 -0.120777 0.00 !Mu0ChY85TRaw[Co4At2Ch5]
+1002.53 -0.121085 0.00 !Mu0ChY86TRaw[Co4At2Ch6]
+998.357 -0.120569 0.00 !Mu0ChY87TRaw[Co4At2Ch7]
+1008.76 -0.121839 0.00 !Mu0ChY88TRaw[Co4At2Ch8]
+1004.65 -0.121339 0.00 !Mu0ChY89TRaw[Co4At2Ch9]
+1015 -0.122592 0.00 !Mu0ChY90TRaw[Co4At2Ch10]
+1025.62 -0.123897 0.00 !Mu0ChY91TRaw[Co4At2Ch11]
+1025.41 -0.123866 0.00 !Mu0ChY92TRaw[Co4At2Ch12]
+1020.27 -0.123256 0.00 !Mu0ChY93TRaw[Co4At2Ch13]
+1024.71 -0.123786 0.00 !Mu0ChY94TRaw[Co4At2Ch14]
+1021.51 -0.123408 0.00 !Mu0ChY95TRaw[Co4At2Ch15]
+1016.94 -0.122879 0.00 !Mu0ChY96TRaw[Co4At2Ch16]
+882.97 -0.106544 0.00 !Mu0ChY97TRaw[Co4At3Ch1]
+879.326 -0.106139 0.00 !Mu0ChY98TRaw[Co4At3Ch2]
+878.449 -0.106028 0.00 !Mu0ChY99TRaw[Co4At3Ch3]
+894.979 -0.108041 0.00 !Mu0ChY100TRaw[Co4At3Ch4]
+892.203 -0.107707 0.00 !Mu0ChY101TRaw[Co4At3Ch5]
+891.015 -0.10757 0.00 !Mu0ChY102TRaw[Co4At3Ch6]
+895.424 -0.108105 0.00 !Mu0ChY103TRaw[Co4At3Ch7]
+907.578 -0.10959 0.00 !Mu0ChY104TRaw[Co4At3Ch8]
+902.147 -0.108916 0.00 !Mu0ChY105TRaw[Co4At3Ch9]
+915.536 -0.110544 0.00 !Mu0ChY106TRaw[Co4At3Ch10]
+910.897 -0.109981 0.00 !Mu0ChY107TRaw[Co4At3Ch11]
+915.092 -0.11051 0.00 !Mu0ChY108TRaw[Co4At3Ch12]
+914.664 -0.110421 0.00 !Mu0ChY109TRaw[Co4At3Ch13]
+910.113 -0.109894 0.00 !Mu0ChY110TRaw[Co4At3Ch14]
+915.675 -0.110572 0.00 !Mu0ChY111TRaw[Co4At3Ch15]
+917.59 -0.110803 0.00 !Mu0ChY112TRaw[Co4At3Ch16]
+892.441 -0.107535 0.00 !Mu0ChY113TRaw[Co4At4Ch1]
+899.913 -0.108466 0.00 !Mu0ChY114TRaw[Co4At4Ch2]
+899.438 -0.108438 0.00 !Mu0ChY115TRaw[Co4At4Ch3]
+905.439 -0.109158 0.00 !Mu0ChY116TRaw[Co4At4Ch4]
+917.108 -0.110566 0.00 !Mu0ChY117TRaw[Co4At4Ch5]
+910.331 -0.109757 0.00 !Mu0ChY118TRaw[Co4At4Ch6]
+930.135 -0.112167 0.00 !Mu0ChY119TRaw[Co4At4Ch7]
+921.847 -0.111146 0.00 !Mu0ChY120TRaw[Co4At4Ch8]
+932.043 -0.112407 0.00 !Mu0ChY121TRaw[Co4At4Ch9]
+931.497 -0.112337 0.00 !Mu0ChY122TRaw[Co4At4Ch10]
+933.275 -0.112539 0.00 !Mu0ChY123TRaw[Co4At4Ch11]
+936.749 -0.112978 0.00 !Mu0ChY124TRaw[Co4At4Ch12]
+931.392 -0.112316 0.00 !Mu0ChY125TRaw[Co4At4Ch13]
+930.352 -0.112192 0.00 !Mu0ChY126TRaw[Co4At4Ch14]
+927.302 -0.111821 0.00 !Mu0ChY127TRaw[Co4At4Ch15]
+930.24 -0.112162 0.00 !Mu0ChY128TRaw[Co4At4Ch16]
+926.786 -0.11232 0.00 !Mu1ChX1TRaw[Co1At1Ch1]
+940.575 -0.114015 0.00 !Mu1ChX2TRaw[Co1At1Ch2]
+943.089 -0.114341 0.00 !Mu1ChX3TRaw[Co1At1Ch3]
+954.304 -0.115712 0.00 !Mu1ChX4TRaw[Co1At1Ch4]
+954.653 -0.115744 0.00 !Mu1ChX5TRaw[Co1At1Ch5]
+956.573 -0.115962 0.00 !Mu1ChX6TRaw[Co1At1Ch6]
+970.061 -0.117589 0.00 !Mu1ChX7TRaw[Co1At1Ch7]
+965.116 -0.116998 0.00 !Mu1ChX8TRaw[Co1At1Ch8]
+969.325 -0.117498 0.00 !Mu1ChX9TRaw[Co1At1Ch9]
+978.231 -0.118577 0.00 !Mu1ChX10TRaw[Co1At1Ch10]
+974.593 -0.118143 0.00 !Mu1ChX11TRaw[Co1At1Ch11]
+974.146 -0.118071 0.00 !Mu1ChX12TRaw[Co1At1Ch12]
+986.191 -0.11954 0.00 !Mu1ChX13TRaw[Co1At1Ch13]
+986.678 -0.119597 0.00 !Mu1ChX14TRaw[Co1At1Ch14]
+983.727 -0.119236 0.00 !Mu1ChX15TRaw[Co1At1Ch15]
+1371.19 -0.119179 0.00 !Mu1ChX16TRaw[Co1At1Ch16]
+922.557 -0.111777 0.00 !Mu1ChX17TRaw[Co1At2Ch1]
+945.525 -0.114612 0.00 !Mu1ChX18TRaw[Co1At2Ch2]
+946.378 -0.114738 0.00 !Mu1ChX19TRaw[Co1At2Ch3]
+943.86 -0.114439 0.00 !Mu1ChX20TRaw[Co1At2Ch4]
+952.199 -0.115464 0.00 !Mu1ChX21TRaw[Co1At2Ch5]
+965.45 -0.117052 0.00 !Mu1ChX22TRaw[Co1At2Ch6]
+954.947 -0.115762 0.00 !Mu1ChX23TRaw[Co1At2Ch7]
+971.26 -0.117739 0.00 !Mu1ChX24TRaw[Co1At2Ch8]
+969.364 -0.117531 0.00 !Mu1ChX25TRaw[Co1At2Ch9]
+972.531 -0.117923 0.00 !Mu1ChX26TRaw[Co1At2Ch10]
+971.171 -0.117737 0.00 !Mu1ChX27TRaw[Co1At2Ch11]
+974.954 -0.11821 0.00 !Mu1ChX28TRaw[Co1At2Ch12]
+978.834 -0.118677 0.00 !Mu1ChX29TRaw[Co1At2Ch13]
+975.807 -0.118324 0.00 !Mu1ChX30TRaw[Co1At2Ch14]
+974.804 -0.118198 0.00 !Mu1ChX31TRaw[Co1At2Ch15]
+984.936 -0.119148 0.00 !Mu1ChX32TRaw[Co1At2Ch16]
+875.904 -0.106165 0.00 !Mu1ChX33TRaw[Co1At3Ch1]
+875.79 -0.10618 0.00 !Mu1ChX34TRaw[Co1At3Ch2]
+891.706 -0.108064 0.00 !Mu1ChX35TRaw[Co1At3Ch3]
+873.845 -0.105941 0.00 !Mu1ChX36TRaw[Co1At3Ch4]
+891.762 -0.108105 0.00 !Mu1ChX37TRaw[Co1At3Ch5]
+897.589 -0.108823 0.00 !Mu1ChX38TRaw[Co1At3Ch6]
+889.745 -0.107861 0.00 !Mu1ChX39TRaw[Co1At3Ch7]
+894.521 -0.10842 0.00 !Mu1ChX40TRaw[Co1At3Ch8]
+897.332 -0.108779 0.00 !Mu1ChX41TRaw[Co1At3Ch9]
+897.319 -0.108754 0.00 !Mu1ChX42TRaw[Co1At3Ch10]
+905.732 -0.109783 0.00 !Mu1ChX43TRaw[Co1At3Ch11]
+897.833 -0.108855 0.00 !Mu1ChX44TRaw[Co1At3Ch12]
+907.458 -0.110019 0.00 !Mu1ChX45TRaw[Co1At3Ch13]
+905.696 -0.109854 0.00 !Mu1ChX46TRaw[Co1At3Ch14]
+903.207 -0.109528 0.00 !Mu1ChX47TRaw[Co1At3Ch15]
+918.195 -0.110055 0.00 !Mu1ChX48TRaw[Co1At3Ch16]
+865.632 -0.104838 0.00 !Mu1ChX49TRaw[Co1At4Ch1]
+871.03 -0.105455 0.00 !Mu1ChX50TRaw[Co1At4Ch2]
+883.706 -0.107015 0.00 !Mu1ChX51TRaw[Co1At4Ch3]
+886.118 -0.107338 0.00 !Mu1ChX52TRaw[Co1At4Ch4]
+888.977 -0.107685 0.00 !Mu1ChX53TRaw[Co1At4Ch5]
+889.176 -0.107699 0.00 !Mu1ChX54TRaw[Co1At4Ch6]
+893.053 -0.10819 0.00 !Mu1ChX55TRaw[Co1At4Ch7]
+898.958 -0.108878 0.00 !Mu1ChX56TRaw[Co1At4Ch8]
+905.343 -0.1097 0.00 !Mu1ChX57TRaw[Co1At4Ch9]
+901.014 -0.10916 0.00 !Mu1ChX58TRaw[Co1At4Ch10]
+909.801 -0.110244 0.00 !Mu1ChX59TRaw[Co1At4Ch11]
+902.356 -0.109308 0.00 !Mu1ChX60TRaw[Co1At4Ch12]
+915.181 -0.110894 0.00 !Mu1ChX61TRaw[Co1At4Ch13]
+906.646 -0.109867 0.00 !Mu1ChX62TRaw[Co1At4Ch14]
+906.177 -0.109791 0.00 !Mu1ChX63TRaw[Co1At4Ch15]
+917.322 -0.110777 0.00 !Mu1ChX64TRaw[Co1At4Ch16]
+947.375 -0.114723 0.00 !Mu1ChX65TRaw[Co2At1Ch1]
+949.155 -0.114949 0.00 !Mu1ChX66TRaw[Co2At1Ch2]
+962.658 -0.116629 0.00 !Mu1ChX67TRaw[Co2At1Ch3]
+962.29 -0.116557 0.00 !Mu1ChX68TRaw[Co2At1Ch4]
+964.501 -0.116827 0.00 !Mu1ChX69TRaw[Co2At1Ch5]
+972.559 -0.117811 0.00 !Mu1ChX70TRaw[Co2At1Ch6]
+972.248 -0.117758 0.00 !Mu1ChX71TRaw[Co2At1Ch7]
+977.48 -0.118392 0.00 !Mu1ChX72TRaw[Co2At1Ch8]
+974.838 -0.118063 0.00 !Mu1ChX73TRaw[Co2At1Ch9]
+989.581 -0.119853 0.00 !Mu1ChX74TRaw[Co2At1Ch10]
+985.59 -0.119377 0.00 !Mu1ChX75TRaw[Co2At1Ch11]
+983.734 -0.119141 0.00 !Mu1ChX76TRaw[Co2At1Ch12]
+990.699 -0.119982 0.00 !Mu1ChX77TRaw[Co2At1Ch13]
+992.465 -0.120199 0.00 !Mu1ChX78TRaw[Co2At1Ch14]
+992.485 -0.1202 0.00 !Mu1ChX79TRaw[Co2At1Ch15]
+1375.52 -0.120722 0.00 !Mu1ChX80TRaw[Co2At1Ch16]
+972.687 -0.117775 0.00 !Mu1ChX81TRaw[Co2At2Ch1]
+974.84 -0.118024 0.00 !Mu1ChX82TRaw[Co2At2Ch2]
+979.911 -0.118652 0.00 !Mu1ChX83TRaw[Co2At2Ch3]
+993.406 -0.120307 0.00 !Mu1ChX84TRaw[Co2At2Ch4]
+992.814 -0.120215 0.00 !Mu1ChX85TRaw[Co2At2Ch5]
+1002.31 -0.121389 0.00 !Mu1ChX86TRaw[Co2At2Ch6]
+1003.74 -0.121554 0.00 !Mu1ChX87TRaw[Co2At2Ch7]
+995.588 -0.12057 0.00 !Mu1ChX88TRaw[Co2At2Ch8]
+1010.12 -0.122345 0.00 !Mu1ChX89TRaw[Co2At2Ch9]
+1012.32 -0.12261 0.00 !Mu1ChX90TRaw[Co2At2Ch10]
+1007.94 -0.122082 0.00 !Mu1ChX91TRaw[Co2At2Ch11]
+1014.03 -0.12282 0.00 !Mu1ChX92TRaw[Co2At2Ch12]
+1013.77 -0.12279 0.00 !Mu1ChX93TRaw[Co2At2Ch13]
+1016.53 -0.123127 0.00 !Mu1ChX94TRaw[Co2At2Ch14]
+1016.3 -0.123096 0.00 !Mu1ChX95TRaw[Co2At2Ch15]
+1004.26 -0.12163 0.00 !Mu1ChX96TRaw[Co2At2Ch16]
+888.673 -0.107613 0.00 !Mu1ChX97TRaw[Co2At3Ch1]
+886.825 -0.107373 0.00 !Mu1ChX98TRaw[Co2At3Ch2]
+890.552 -0.107838 0.00 !Mu1ChX99TRaw[Co2At3Ch3]
+901.931 -0.109224 0.00 !Mu1ChX100TRaw[Co2At3Ch4]
+901.707 -0.1092 0.00 !Mu1ChX101TRaw[Co2At3Ch5]
+906.676 -0.109791 0.00 !Mu1ChX102TRaw[Co2At3Ch6]
+902.249 -0.109268 0.00 !Mu1ChX103TRaw[Co2At3Ch7]
+917.913 -0.111151 0.00 !Mu1ChX104TRaw[Co2At3Ch8]
+919.118 -0.11128 0.00 !Mu1ChX105TRaw[Co2At3Ch9]
+920.502 -0.111467 0.00 !Mu1ChX106TRaw[Co2At3Ch10]
+925.286 -0.112035 0.00 !Mu1ChX107TRaw[Co2At3Ch11]
+920.839 -0.111519 0.00 !Mu1ChX108TRaw[Co2At3Ch12]
+921.752 -0.111616 0.00 !Mu1ChX109TRaw[Co2At3Ch13]
+913.537 -0.110627 0.00 !Mu1ChX110TRaw[Co2At3Ch14]
+916.058 -0.110941 0.00 !Mu1ChX111TRaw[Co2At3Ch15]
+924.322 -0.11176 0.00 !Mu1ChX112TRaw[Co2At3Ch16]
+897.027 -0.108476 0.00 !Mu1ChX113TRaw[Co2At4Ch1]
+897.77 -0.108567 0.00 !Mu1ChX114TRaw[Co2At4Ch2]
+905.06 -0.10946 0.00 !Mu1ChX115TRaw[Co2At4Ch3]
+910.605 -0.110136 0.00 !Mu1ChX116TRaw[Co2At4Ch4]
+925.57 -0.111977 0.00 !Mu1ChX117TRaw[Co2At4Ch5]
+920.161 -0.111304 0.00 !Mu1ChX118TRaw[Co2At4Ch6]
+932.296 -0.112781 0.00 !Mu1ChX119TRaw[Co2At4Ch7]
+914.819 -0.110659 0.00 !Mu1ChX120TRaw[Co2At4Ch8]
+920.284 -0.111325 0.00 !Mu1ChX121TRaw[Co2At4Ch9]
+927.772 -0.112226 0.00 !Mu1ChX122TRaw[Co2At4Ch10]
+928.866 -0.11236 0.00 !Mu1ChX123TRaw[Co2At4Ch11]
+924.041 -0.111775 0.00 !Mu1ChX124TRaw[Co2At4Ch12]
+921.484 -0.111483 0.00 !Mu1ChX125TRaw[Co2At4Ch13]
+927.438 -0.112193 0.00 !Mu1ChX126TRaw[Co2At4Ch14]
+930.757 -0.112614 0.00 !Mu1ChX127TRaw[Co2At4Ch15]
+924.698 -0.111864 0.00 !Mu1ChX128TRaw[Co2At4Ch16]
+930.899 -0.11282 0.00 !Mu1ChY1TRaw[Co3At1Ch1]
+932.297 -0.113022 0.00 !Mu1ChY2TRaw[Co3At1Ch2]
+943.292 -0.114361 0.00 !Mu1ChY3TRaw[Co3At1Ch3]
+947.201 -0.114834 0.00 !Mu1ChY4TRaw[Co3At1Ch4]
+949.524 -0.115122 0.00 !Mu1ChY5TRaw[Co3At1Ch5]
+952.95 -0.115533 0.00 !Mu1ChY6TRaw[Co3At1Ch6]
+956.311 -0.115938 0.00 !Mu1ChY7TRaw[Co3At1Ch7]
+946.369 -0.114726 0.00 !Mu1ChY8TRaw[Co3At1Ch8]
+953.576 -0.11562 0.00 !Mu1ChY9TRaw[Co3At1Ch9]
+964.215 -0.116854 0.00 !Mu1ChY10TRaw[Co3At1Ch10]
+959.98 -0.116368 0.00 !Mu1ChY11TRaw[Co3At1Ch11]
+967.734 -0.117327 0.00 !Mu1ChY12TRaw[Co3At1Ch12]
+967.914 -0.117358 0.00 !Mu1ChY13TRaw[Co3At1Ch13]
+963.677 -0.116827 0.00 !Mu1ChY14TRaw[Co3At1Ch14]
+965.026 -0.116981 0.00 !Mu1ChY15TRaw[Co3At1Ch15]
+962.695 -0.116717 0.00 !Mu1ChY16TRaw[Co3At1Ch16]
+964.683 -0.116883 0.00 !Mu1ChY17TRaw[Co3At2Ch1]
+966.649 -0.117128 0.00 !Mu1ChY18TRaw[Co3At2Ch2]
+971.034 -0.117665 0.00 !Mu1ChY19TRaw[Co3At2Ch3]
+971.558 -0.117743 0.00 !Mu1ChY20TRaw[Co3At2Ch4]
+983.103 -0.119146 0.00 !Mu1ChY21TRaw[Co3At2Ch5]
+979.702 -0.118747 0.00 !Mu1ChY22TRaw[Co3At2Ch6]
+450 -0.119189 0.00 !Mu1ChY23TRaw[Co3At2Ch7]
+989.487 -0.119964 0.00 !Mu1ChY24TRaw[Co3At2Ch8]
+991.153 -0.120158 0.00 !Mu1ChY25TRaw[Co3At2Ch9]
+991.247 -0.120176 0.00 !Mu1ChY26TRaw[Co3At2Ch10]
+995.752 -0.120728 0.00 !Mu1ChY27TRaw[Co3At2Ch11]
+990.621 -0.120113 0.00 !Mu1ChY28TRaw[Co3At2Ch12]
+992.588 -0.120339 0.00 !Mu1ChY29TRaw[Co3At2Ch13]
+983.94 -0.119308 0.00 !Mu1ChY30TRaw[Co3At2Ch14]
+990.472 -0.120108 0.00 !Mu1ChY31TRaw[Co3At2Ch15]
+985.366 -0.119515 0.00 !Mu1ChY32TRaw[Co3At2Ch16]
+879.895 -0.106691 0.00 !Mu1ChY33TRaw[Co3At3Ch1]
+885.732 -0.10745 0.00 !Mu1ChY34TRaw[Co3At3Ch2]
+880.947 -0.106848 0.00 !Mu1ChY35TRaw[Co3At3Ch3]
+890.881 -0.108037 0.00 !Mu1ChY36TRaw[Co3At3Ch4]
+8.50641e+11 -1.03827e+08 0.00 !Mu1ChY37TRaw[Co3At3Ch5]
+901.269 -0.109433 0.00 !Mu1ChY38TRaw[Co3At3Ch6]
+900.483 -0.110242 0.00 !Mu1ChY39TRaw[Co3At3Ch7]
+902.133 -0.10944 0.00 !Mu1ChY40TRaw[Co3At3Ch8]
+890.343 -0.107957 0.00 !Mu1ChY41TRaw[Co3At3Ch9]
+902.898 -0.109521 0.00 !Mu1ChY42TRaw[Co3At3Ch10]
+895.657 -0.108623 0.00 !Mu1ChY43TRaw[Co3At3Ch11]
+904.61 -0.10969 0.00 !Mu1ChY44TRaw[Co3At3Ch12]
+907.072 -0.109989 0.00 !Mu1ChY45TRaw[Co3At3Ch13]
+901.222 -0.109312 0.00 !Mu1ChY46TRaw[Co3At3Ch14]
+905.951 -0.109844 0.00 !Mu1ChY47TRaw[Co3At3Ch15]
+901.159 -0.109257 0.00 !Mu1ChY48TRaw[Co3At3Ch16]
+883.344 -0.10696 0.00 !Mu1ChY49TRaw[Co3At4Ch1]
+882.465 -0.106852 0.00 !Mu1ChY50TRaw[Co3At4Ch2]
+878.872 -0.106436 0.00 !Mu1ChY51TRaw[Co3At4Ch3]
+892.099 -0.108049 0.00 !Mu1ChY52TRaw[Co3At4Ch4]
+897.834 -0.108781 0.00 !Mu1ChY53TRaw[Co3At4Ch5]
+899.02 -0.108923 0.00 !Mu1ChY54TRaw[Co3At4Ch6]
+898.979 -0.108922 0.00 !Mu1ChY55TRaw[Co3At4Ch7]
+899.225 -0.108949 0.00 !Mu1ChY56TRaw[Co3At4Ch8]
+911.018 -0.110395 0.00 !Mu1ChY57TRaw[Co3At4Ch9]
+910.225 -0.110294 0.00 !Mu1ChY58TRaw[Co3At4Ch10]
+905.692 -0.109746 0.00 !Mu1ChY59TRaw[Co3At4Ch11]
+908.504 -0.109802 0.00 !Mu1ChY60TRaw[Co3At4Ch12]
+905.665 -0.109742 0.00 !Mu1ChY61TRaw[Co3At4Ch13]
+913.658 -0.11072 0.00 !Mu1ChY62TRaw[Co3At4Ch14]
+915.004 -0.110879 0.00 !Mu1ChY63TRaw[Co3At4Ch15]
+915.999 -0.111037 0.00 !Mu1ChY64TRaw[Co3At4Ch16]
+945.876 -0.115194 0.00 !Mu1ChY65TRaw[Co4At1Ch1]
+952.653 -0.116053 0.00 !Mu1ChY66TRaw[Co4At1Ch2]
+958.599 -0.116788 0.00 !Mu1ChY67TRaw[Co4At1Ch3]
+962.073 -0.117211 0.00 !Mu1ChY68TRaw[Co4At1Ch4]
+965.512 -0.117617 0.00 !Mu1ChY69TRaw[Co4At1Ch5]
+973.646 -0.118609 0.00 !Mu1ChY70TRaw[Co4At1Ch6]
+969.091 -0.118053 0.00 !Mu1ChY71TRaw[Co4At1Ch7]
+977.205 -0.119038 0.00 !Mu1ChY72TRaw[Co4At1Ch8]
+978.244 -0.119163 0.00 !Mu1ChY73TRaw[Co4At1Ch9]
+981.509 -0.119552 0.00 !Mu1ChY74TRaw[Co4At1Ch10]
+983.33 -0.119777 0.00 !Mu1ChY75TRaw[Co4At1Ch11]
+980.28 -0.119391 0.00 !Mu1ChY76TRaw[Co4At1Ch12]
+987.378 -0.11981 0.00 !Mu1ChY77TRaw[Co4At1Ch13]
+981.221 -0.119505 0.00 !Mu1ChY78TRaw[Co4At1Ch14]
+982.019 -0.119601 0.00 !Mu1ChY79TRaw[Co4At1Ch15]
+986.869 -0.120194 0.00 !Mu1ChY80TRaw[Co4At1Ch16]
+942.041 -0.114646 0.00 !Mu1ChY81TRaw[Co4At2Ch1]
+950.256 -0.115676 0.00 !Mu1ChY82TRaw[Co4At2Ch2]
+949.146 -0.115551 0.00 !Mu1ChY83TRaw[Co4At2Ch3]
+956.132 -0.116392 0.00 !Mu1ChY84TRaw[Co4At2Ch4]
+955.603 -0.116344 0.00 !Mu1ChY85TRaw[Co4At2Ch5]
+965.862 -0.117589 0.00 !Mu1ChY86TRaw[Co4At2Ch6]
+966.696 -0.117699 0.00 !Mu1ChY87TRaw[Co4At2Ch7]
+973.856 -0.118567 0.00 !Mu1ChY88TRaw[Co4At2Ch8]
+974.942 -0.118705 0.00 !Mu1ChY89TRaw[Co4At2Ch9]
+967.58 -0.117807 0.00 !Mu1ChY90TRaw[Co4At2Ch10]
+972.217 -0.118376 0.00 !Mu1ChY91TRaw[Co4At2Ch11]
+980.142 -0.119333 0.00 !Mu1ChY92TRaw[Co4At2Ch12]
+980.758 -0.119429 0.00 !Mu1ChY93TRaw[Co4At2Ch13]
+973.754 -0.118576 0.00 !Mu1ChY94TRaw[Co4At2Ch14]
+977.548 -0.119031 0.00 !Mu1ChY95TRaw[Co4At2Ch15]
+988.795 -0.120471 0.00 !Mu1ChY96TRaw[Co4At2Ch16]
+871.404 -0.106136 0.00 !Mu1ChY97TRaw[Co4At3Ch1]
+870.084 -0.106 0.00 !Mu1ChY98TRaw[Co4At3Ch2]
+874.611 -0.106555 0.00 !Mu1ChY99TRaw[Co4At3Ch3]
+888.655 -0.108263 0.00 !Mu1ChY100TRaw[Co4At3Ch4]
+886.461 -0.10801 0.00 !Mu1ChY101TRaw[Co4At3Ch5]
+878.586 -0.107044 0.00 !Mu1ChY102TRaw[Co4At3Ch6]
+886.442 -0.108005 0.00 !Mu1ChY103TRaw[Co4At3Ch7]
+889.81 -0.108406 0.00 !Mu1ChY104TRaw[Co4At3Ch8]
+900.116 -0.109653 0.00 !Mu1ChY105TRaw[Co4At3Ch9]
+896.798 -0.10926 0.00 !Mu1ChY106TRaw[Co4At3Ch10]
+900.214 -0.10967 0.00 !Mu1ChY107TRaw[Co4At3Ch11]
+890.896 -0.108536 0.00 !Mu1ChY108TRaw[Co4At3Ch12]
+898.103 -0.109417 0.00 !Mu1ChY109TRaw[Co4At3Ch13]
+905.123 -0.110268 0.00 !Mu1ChY110TRaw[Co4At3Ch14]
+895.488 -0.109108 0.00 !Mu1ChY111TRaw[Co4At3Ch15]
+901.504 -0.109824 0.00 !Mu1ChY112TRaw[Co4At3Ch16]
+857.767 -0.104291 0.00 !Mu1ChY113TRaw[Co4At4Ch1]
+851.391 -0.103549 0.00 !Mu1ChY114TRaw[Co4At4Ch2]
+861.589 -0.104798 0.00 !Mu1ChY115TRaw[Co4At4Ch3]
+856.553 -0.10419 0.00 !Mu1ChY116TRaw[Co4At4Ch4]
+865 -0.105221 0.00 !Mu1ChY117TRaw[Co4At4Ch5]
+874.383 -0.106354 0.00 !Mu1ChY118TRaw[Co4At4Ch6]
+878.744 -0.1069 0.00 !Mu1ChY119TRaw[Co4At4Ch7]
+873.451 -0.106252 0.00 !Mu1ChY120TRaw[Co4At4Ch8]
+890.883 -0.108379 0.00 !Mu1ChY121TRaw[Co4At4Ch9]
+891.802 -0.108492 0.00 !Mu1ChY122TRaw[Co4At4Ch10]
+889.789 -0.108225 0.00 !Mu1ChY123TRaw[Co4At4Ch11]
+888.888 -0.108132 0.00 !Mu1ChY124TRaw[Co4At4Ch12]
+891.161 -0.108412 0.00 !Mu1ChY125TRaw[Co4At4Ch13]
+886.515 -0.10784 0.00 !Mu1ChY126TRaw[Co4At4Ch14]
+883.99 -0.107526 0.00 !Mu1ChY127TRaw[Co4At4Ch15]
+947.91 -0.121191 0.00 !Mu1ChY128TRaw[Co4At4Ch16]
+936.808 -0.113282 0.00 !Mu2ChX1TRaw[Co1At1Ch1]
+933.588 -0.112935 0.00 !Mu2ChX2TRaw[Co1At1Ch2]
+941.562 -0.113903 0.00 !Mu2ChX3TRaw[Co1At1Ch3]
+953.784 -0.11541 0.00 !Mu2ChX4TRaw[Co1At1Ch4]
+949.078 -0.114834 0.00 !Mu2ChX5TRaw[Co1At1Ch5]
+966.718 -0.116968 0.00 !Mu2ChX6TRaw[Co1At1Ch6]
+960.214 -0.116144 0.00 !Mu2ChX7TRaw[Co1At1Ch7]
+964.987 -0.116738 0.00 !Mu2ChX8TRaw[Co1At1Ch8]
+956.88 -0.115736 0.00 !Mu2ChX9TRaw[Co1At1Ch9]
+968.81 -0.117191 0.00 !Mu2ChX10TRaw[Co1At1Ch10]
+971.337 -0.117505 0.00 !Mu2ChX11TRaw[Co1At1Ch11]
+966.1 -0.116868 0.00 !Mu2ChX12TRaw[Co1At1Ch12]
+972.053 -0.117596 0.00 !Mu2ChX13TRaw[Co1At1Ch13]
+966.078 -0.116864 0.00 !Mu2ChX14TRaw[Co1At1Ch14]
+966.541 -0.116934 0.00 !Mu2ChX15TRaw[Co1At1Ch15]
+1367.28 -0.118078 0.00 !Mu2ChX16TRaw[Co1At1Ch16]
+918.709 -0.111042 0.00 !Mu2ChX17TRaw[Co1At2Ch1]
+933.754 -0.1129 0.00 !Mu2ChX18TRaw[Co1At2Ch2]
+936.423 -0.113239 0.00 !Mu2ChX19TRaw[Co1At2Ch3]
+935.388 -0.11311 0.00 !Mu2ChX20TRaw[Co1At2Ch4]
+946.289 -0.114433 0.00 !Mu2ChX21TRaw[Co1At2Ch5]
+941.937 -0.113893 0.00 !Mu2ChX22TRaw[Co1At2Ch6]
+939.701 -0.113604 0.00 !Mu2ChX23TRaw[Co1At2Ch7]
+947.866 -0.114596 0.00 !Mu2ChX24TRaw[Co1At2Ch8]
+939.11 -0.113523 0.00 !Mu2ChX25TRaw[Co1At2Ch9]
+947.312 -0.114529 0.00 !Mu2ChX26TRaw[Co1At2Ch10]
+947.872 -0.114587 0.00 !Mu2ChX27TRaw[Co1At2Ch11]
+944.089 -0.114127 0.00 !Mu2ChX28TRaw[Co1At2Ch12]
+951.541 -0.115049 0.00 !Mu2ChX29TRaw[Co1At2Ch13]
+947.806 -0.114577 0.00 !Mu2ChX30TRaw[Co1At2Ch14]
+949.646 -0.114801 0.00 !Mu2ChX31TRaw[Co1At2Ch15]
+1101.24 -0.114725 0.00 !Mu2ChX32TRaw[Co1At2Ch16]
+883.868 -0.106884 0.00 !Mu2ChX33TRaw[Co1At3Ch1]
+881.306 -0.106588 0.00 !Mu2ChX34TRaw[Co1At3Ch2]
+890.406 -0.10771 0.00 !Mu2ChX35TRaw[Co1At3Ch3]
+887.688 -0.10739 0.00 !Mu2ChX36TRaw[Co1At3Ch4]
+901.335 -0.109058 0.00 !Mu2ChX37TRaw[Co1At3Ch5]
+898.532 -0.108685 0.00 !Mu2ChX38TRaw[Co1At3Ch6]
+906.127 -0.109605 0.00 !Mu2ChX39TRaw[Co1At3Ch7]
+903.029 -0.109211 0.00 !Mu2ChX40TRaw[Co1At3Ch8]
+902.567 -0.109168 0.00 !Mu2ChX41TRaw[Co1At3Ch9]
+906.324 -0.109617 0.00 !Mu2ChX42TRaw[Co1At3Ch10]
+912.663 -0.1104 0.00 !Mu2ChX43TRaw[Co1At3Ch11]
+911.609 -0.110254 0.00 !Mu2ChX44TRaw[Co1At3Ch12]
+919.504 -0.111219 0.00 !Mu2ChX45TRaw[Co1At3Ch13]
+918.075 -0.111043 0.00 !Mu2ChX46TRaw[Co1At3Ch14]
+920.693 -0.111378 0.00 !Mu2ChX47TRaw[Co1At3Ch15]
+1304.08 -0.11089 0.00 !Mu2ChX48TRaw[Co1At3Ch16]
+852.901 -0.102956 0.00 !Mu2ChX49TRaw[Co1At4Ch1]
+862.836 -0.104191 0.00 !Mu2ChX50TRaw[Co1At4Ch2]
+872.425 -0.105362 0.00 !Mu2ChX51TRaw[Co1At4Ch3]
+866.551 -0.10464 0.00 !Mu2ChX52TRaw[Co1At4Ch4]
+875.507 -0.105723 0.00 !Mu2ChX53TRaw[Co1At4Ch5]
+875.722 -0.105755 0.00 !Mu2ChX54TRaw[Co1At4Ch6]
+877.794 -0.105984 0.00 !Mu2ChX55TRaw[Co1At4Ch7]
+885.59 -0.106931 0.00 !Mu2ChX56TRaw[Co1At4Ch8]
+894.535 -0.108024 0.00 !Mu2ChX57TRaw[Co1At4Ch9]
+896.983 -0.108307 0.00 !Mu2ChX58TRaw[Co1At4Ch10]
+888.442 -0.107279 0.00 !Mu2ChX59TRaw[Co1At4Ch11]
+898.855 -0.108543 0.00 !Mu2ChX60TRaw[Co1At4Ch12]
+900.217 -0.108721 0.00 !Mu2ChX61TRaw[Co1At4Ch13]
+899.805 -0.108665 0.00 !Mu2ChX62TRaw[Co1At4Ch14]
+896.358 -0.10824 0.00 !Mu2ChX63TRaw[Co1At4Ch15]
+1286.56 -0.107885 0.00 !Mu2ChX64TRaw[Co1At4Ch16]
+969.588 -0.117533 0.00 !Mu2ChX65TRaw[Co2At1Ch1]
+969.639 -0.117545 0.00 !Mu2ChX66TRaw[Co2At1Ch2]
+981.26 -0.118957 0.00 !Mu2ChX67TRaw[Co2At1Ch3]
+986.207 -0.119584 0.00 !Mu2ChX68TRaw[Co2At1Ch4]
+450 -0.119902 0.00 !Mu2ChX69TRaw[Co2At1Ch5]
+989.899 -0.12002 0.00 !Mu2ChX70TRaw[Co2At1Ch6]
+991.208 -0.120171 0.00 !Mu2ChX71TRaw[Co2At1Ch7]
+996.377 -0.120802 0.00 !Mu2ChX72TRaw[Co2At1Ch8]
+989.619 -0.119977 0.00 !Mu2ChX73TRaw[Co2At1Ch9]
+998.452 -0.12102 0.00 !Mu2ChX74TRaw[Co2At1Ch10]
+994.24 -0.12055 0.00 !Mu2ChX75TRaw[Co2At1Ch11]
+993.976 -0.12048 0.00 !Mu2ChX76TRaw[Co2At1Ch12]
+1003.64 -0.121688 0.00 !Mu2ChX77TRaw[Co2At1Ch13]
+1007.3 -0.122136 0.00 !Mu2ChX78TRaw[Co2At1Ch14]
+1010.11 -0.122472 0.00 !Mu2ChX79TRaw[Co2At1Ch15]
+1318.69 -0.121488 0.00 !Mu2ChX80TRaw[Co2At1Ch16]
+950.946 -0.115148 0.00 !Mu2ChX81TRaw[Co2At2Ch1]
+961.899 -0.116512 0.00 !Mu2ChX82TRaw[Co2At2Ch2]
+963.68 -0.116735 0.00 !Mu2ChX83TRaw[Co2At2Ch3]
+967.2 -0.117158 0.00 !Mu2ChX84TRaw[Co2At2Ch4]
+967.305 -0.117159 0.00 !Mu2ChX85TRaw[Co2At2Ch5]
+968.515 -0.117336 0.00 !Mu2ChX86TRaw[Co2At2Ch6]
+982.177 -0.118997 0.00 !Mu2ChX87TRaw[Co2At2Ch7]
+981.387 -0.118879 0.00 !Mu2ChX88TRaw[Co2At2Ch8]
+991.904 -0.120152 0.00 !Mu2ChX89TRaw[Co2At2Ch9]
+991.623 -0.120143 0.00 !Mu2ChX90TRaw[Co2At2Ch10]
+990.622 -0.120011 0.00 !Mu2ChX91TRaw[Co2At2Ch11]
+980.868 -0.118788 0.00 !Mu2ChX92TRaw[Co2At2Ch12]
+995.536 -0.120614 0.00 !Mu2ChX93TRaw[Co2At2Ch13]
+999.576 -0.12112 0.00 !Mu2ChX94TRaw[Co2At2Ch14]
+1000.5 -0.12123 0.00 !Mu2ChX95TRaw[Co2At2Ch15]
+985.324 -0.119394 0.00 !Mu2ChX96TRaw[Co2At2Ch16]
+898.921 -0.10895 0.00 !Mu2ChX97TRaw[Co2At3Ch1]
+915.715 -0.11099 0.00 !Mu2ChX98TRaw[Co2At3Ch2]
+911.411 -0.110483 0.00 !Mu2ChX99TRaw[Co2At3Ch3]
+911.648 -0.110494 0.00 !Mu2ChX100TRaw[Co2At3Ch4]
+920.871 -0.11163 0.00 !Mu2ChX101TRaw[Co2At3Ch5]
+920.388 -0.111573 0.00 !Mu2ChX102TRaw[Co2At3Ch6]
+918.664 -0.111368 0.00 !Mu2ChX103TRaw[Co2At3Ch7]
+923.174 -0.111888 0.00 !Mu2ChX104TRaw[Co2At3Ch8]
+933.198 -0.113122 0.00 !Mu2ChX105TRaw[Co2At3Ch9]
+930.187 -0.112764 0.00 !Mu2ChX106TRaw[Co2At3Ch10]
+935.147 -0.113373 0.00 !Mu2ChX107TRaw[Co2At3Ch11]
+930.349 -0.112797 0.00 !Mu2ChX108TRaw[Co2At3Ch12]
+933.561 -0.113176 0.00 !Mu2ChX109TRaw[Co2At3Ch13]
+940.135 -0.113973 0.00 !Mu2ChX110TRaw[Co2At3Ch14]
+940.914 -0.114066 0.00 !Mu2ChX111TRaw[Co2At3Ch15]
+940.163 -0.113973 0.00 !Mu2ChX112TRaw[Co2At3Ch16]
+900.272 -0.108961 0.00 !Mu2ChX113TRaw[Co2At4Ch1]
+905.007 -0.109531 0.00 !Mu2ChX114TRaw[Co2At4Ch2]
+912.464 -0.110461 0.00 !Mu2ChX115TRaw[Co2At4Ch3]
+912.22 -0.110414 0.00 !Mu2ChX116TRaw[Co2At4Ch4]
+927.733 -0.112323 0.00 !Mu2ChX117TRaw[Co2At4Ch5]
+930.691 -0.11267 0.00 !Mu2ChX118TRaw[Co2At4Ch6]
+936.077 -0.113333 0.00 !Mu2ChX119TRaw[Co2At4Ch7]
+939.108 -0.113698 0.00 !Mu2ChX120TRaw[Co2At4Ch8]
+938.924 -0.113666 0.00 !Mu2ChX121TRaw[Co2At4Ch9]
+947.571 -0.114745 0.00 !Mu2ChX122TRaw[Co2At4Ch10]
+938.938 -0.113673 0.00 !Mu2ChX123TRaw[Co2At4Ch11]
+945.07 -0.11443 0.00 !Mu2ChX124TRaw[Co2At4Ch12]
+934.733 -0.113174 0.00 !Mu2ChX125TRaw[Co2At4Ch13]
+934.595 -0.113143 0.00 !Mu2ChX126TRaw[Co2At4Ch14]
+943.044 -0.114176 0.00 !Mu2ChX127TRaw[Co2At4Ch15]
+943.184 -0.114186 0.00 !Mu2ChX128TRaw[Co2At4Ch16]
+987.442 -0.119525 0.00 !Mu2ChY1TRaw[Co3At1Ch1]
+990.37 -0.119903 0.00 !Mu2ChY2TRaw[Co3At1Ch2]
+989.136 -0.119776 0.00 !Mu2ChY3TRaw[Co3At1Ch3]
+995.437 -0.120524 0.00 !Mu2ChY4TRaw[Co3At1Ch4]
+1000.77 -0.121165 0.00 !Mu2ChY5TRaw[Co3At1Ch5]
+998.951 -0.120947 0.00 !Mu2ChY6TRaw[Co3At1Ch6]
+1003.75 -0.121526 0.00 !Mu2ChY7TRaw[Co3At1Ch7]
+1010.87 -0.122366 0.00 !Mu2ChY8TRaw[Co3At1Ch8]
+1012.21 -0.122539 0.00 !Mu2ChY9TRaw[Co3At1Ch9]
+1003.9 -0.121307 0.00 !Mu2ChY10TRaw[Co3At1Ch10]
+1010.24 -0.122275 0.00 !Mu2ChY11TRaw[Co3At1Ch11]
+1015.27 -0.122898 0.00 !Mu2ChY12TRaw[Co3At1Ch12]
+1017.2 -0.12312 0.00 !Mu2ChY13TRaw[Co3At1Ch13]
+1022.23 -0.123746 0.00 !Mu2ChY14TRaw[Co3At1Ch14]
+1021.37 -0.123621 0.00 !Mu2ChY15TRaw[Co3At1Ch15]
+1022.68 -0.123744 0.00 !Mu2ChY16TRaw[Co3At1Ch16]
+939.963 -0.113632 0.00 !Mu2ChY17TRaw[Co3At2Ch1]
+939.308 -0.11359 0.00 !Mu2ChY18TRaw[Co3At2Ch2]
+938.897 -0.113546 0.00 !Mu2ChY19TRaw[Co3At2Ch3]
+938.628 -0.113526 0.00 !Mu2ChY20TRaw[Co3At2Ch4]
+953.606 -0.115367 0.00 !Mu2ChY21TRaw[Co3At2Ch5]
+969.437 -0.117305 0.00 !Mu2ChY22TRaw[Co3At2Ch6]
+965.454 -0.11682 0.00 !Mu2ChY23TRaw[Co3At2Ch7]
+960.44 -0.116216 0.00 !Mu2ChY24TRaw[Co3At2Ch8]
+975.99 -0.118134 0.00 !Mu2ChY25TRaw[Co3At2Ch9]
+978.687 -0.118446 0.00 !Mu2ChY26TRaw[Co3At2Ch10]
+976.083 -0.117858 0.00 !Mu2ChY27TRaw[Co3At2Ch11]
+982.568 -0.11895 0.00 !Mu2ChY28TRaw[Co3At2Ch12]
+976.864 -0.118238 0.00 !Mu2ChY29TRaw[Co3At2Ch13]
+978.515 -0.118468 0.00 !Mu2ChY30TRaw[Co3At2Ch14]
+977.409 -0.118337 0.00 !Mu2ChY31TRaw[Co3At2Ch15]
+965.447 -0.116905 0.00 !Mu2ChY32TRaw[Co3At2Ch16]
+870.181 -0.105393 0.00 !Mu2ChY33TRaw[Co3At3Ch1]
+876.858 -0.106206 0.00 !Mu2ChY34TRaw[Co3At3Ch2]
+889.244 -0.107711 0.00 !Mu2ChY35TRaw[Co3At3Ch3]
+890.519 -0.10786 0.00 !Mu2ChY36TRaw[Co3At3Ch4]
+893.817 -0.108297 0.00 !Mu2ChY37TRaw[Co3At3Ch5]
+888.588 -0.107628 0.00 !Mu2ChY38TRaw[Co3At3Ch6]
+904.701 -0.109574 0.00 !Mu2ChY39TRaw[Co3At3Ch7]
+903.479 -0.109401 0.00 !Mu2ChY40TRaw[Co3At3Ch8]
+906.236 -0.109756 0.00 !Mu2ChY41TRaw[Co3At3Ch9]
+914.382 -0.110304 0.00 !Mu2ChY42TRaw[Co3At3Ch10]
+906.598 -0.10979 0.00 !Mu2ChY43TRaw[Co3At3Ch11]
+910.53 -0.110231 0.00 !Mu2ChY44TRaw[Co3At3Ch12]
+912.933 -0.110532 0.00 !Mu2ChY45TRaw[Co3At3Ch13]
+916.041 -0.110907 0.00 !Mu2ChY46TRaw[Co3At3Ch14]
+919.774 -0.111371 0.00 !Mu2ChY47TRaw[Co3At3Ch15]
+915.148 -0.110791 0.00 !Mu2ChY48TRaw[Co3At3Ch16]
+893.19 -0.108016 0.00 !Mu2ChY49TRaw[Co3At4Ch1]
+902.467 -0.109155 0.00 !Mu2ChY50TRaw[Co3At4Ch2]
+899.946 -0.108834 0.00 !Mu2ChY51TRaw[Co3At4Ch3]
+913.407 -0.110471 0.00 !Mu2ChY52TRaw[Co3At4Ch4]
+905.911 -0.109622 0.00 !Mu2ChY53TRaw[Co3At4Ch5]
+914.887 -0.110708 0.00 !Mu2ChY54TRaw[Co3At4Ch6]
+922.021 -0.111116 0.00 !Mu2ChY55TRaw[Co3At4Ch7]
+914.007 -0.11061 0.00 !Mu2ChY56TRaw[Co3At4Ch8]
+926.973 -0.11216 0.00 !Mu2ChY57TRaw[Co3At4Ch9]
+918.182 -0.111079 0.00 !Mu2ChY58TRaw[Co3At4Ch10]
+920.356 -0.111393 0.00 !Mu2ChY59TRaw[Co3At4Ch11]
+924.322 -0.11168 0.00 !Mu2ChY60TRaw[Co3At4Ch12]
+940.509 -0.11386 0.00 !Mu2ChY61TRaw[Co3At4Ch13]
+925.883 -0.112068 0.00 !Mu2ChY62TRaw[Co3At4Ch14]
+921.861 -0.111623 0.00 !Mu2ChY63TRaw[Co3At4Ch15]
+929.763 -0.112593 0.00 !Mu2ChY64TRaw[Co3At4Ch16]
+924.331 -0.111864 0.00 !Mu2ChY65TRaw[Co4At1Ch1]
+943.62 -0.114242 0.00 !Mu2ChY66TRaw[Co4At1Ch2]
+947.992 -0.114763 0.00 !Mu2ChY67TRaw[Co4At1Ch3]
+945.728 -0.114477 0.00 !Mu2ChY68TRaw[Co4At1Ch4]
+972.019 -0.117701 0.00 !Mu2ChY69TRaw[Co4At1Ch5]
+960.071 -0.116242 0.00 !Mu2ChY70TRaw[Co4At1Ch6]
+967.505 -0.117144 0.00 !Mu2ChY71TRaw[Co4At1Ch7]
+964.472 -0.116783 0.00 !Mu2ChY72TRaw[Co4At1Ch8]
+955.96 -0.115747 0.00 !Mu2ChY73TRaw[Co4At1Ch9]
+958.084 -0.115989 0.00 !Mu2ChY74TRaw[Co4At1Ch10]
+964.33 -0.116762 0.00 !Mu2ChY75TRaw[Co4At1Ch11]
+977.202 -0.118324 0.00 !Mu2ChY76TRaw[Co4At1Ch12]
+973.571 -0.117892 0.00 !Mu2ChY77TRaw[Co4At1Ch13]
+976.2 -0.118194 0.00 !Mu2ChY78TRaw[Co4At1Ch14]
+967.051 -0.117092 0.00 !Mu2ChY79TRaw[Co4At1Ch15]
+968.99 -0.117343 0.00 !Mu2ChY80TRaw[Co4At1Ch16]
+944.542 -0.114246 0.00 !Mu2ChY81TRaw[Co4At2Ch1]
+939.064 -0.113582 0.00 !Mu2ChY82TRaw[Co4At2Ch2]
+951.122 -0.115097 0.00 !Mu2ChY83TRaw[Co4At2Ch3]
+946.764 -0.114574 0.00 !Mu2ChY84TRaw[Co4At2Ch4]
+955.625 -0.115653 0.00 !Mu2ChY85TRaw[Co4At2Ch5]
+966 -0.11692 0.00 !Mu2ChY86TRaw[Co4At2Ch6]
+964.199 -0.116695 0.00 !Mu2ChY87TRaw[Co4At2Ch7]
+969.926 -0.117388 0.00 !Mu2ChY88TRaw[Co4At2Ch8]
+972.649 -0.117739 0.00 !Mu2ChY89TRaw[Co4At2Ch9]
+974.635 -0.11797 0.00 !Mu2ChY90TRaw[Co4At2Ch10]
+979.1 -0.118525 0.00 !Mu2ChY91TRaw[Co4At2Ch11]
+969.715 -0.117371 0.00 !Mu2ChY92TRaw[Co4At2Ch12]
+977.475 -0.118331 0.00 !Mu2ChY93TRaw[Co4At2Ch13]
+977.142 -0.118283 0.00 !Mu2ChY94TRaw[Co4At2Ch14]
+984.646 -0.119174 0.00 !Mu2ChY95TRaw[Co4At2Ch15]
+989.259 -0.119806 0.00 !Mu2ChY96TRaw[Co4At2Ch16]
+897.538 -0.108639 0.00 !Mu2ChY97TRaw[Co4At3Ch1]
+893.51 -0.108189 0.00 !Mu2ChY98TRaw[Co4At3Ch2]
+904.052 -0.109474 0.00 !Mu2ChY99TRaw[Co4At3Ch3]
+902.752 -0.109308 0.00 !Mu2ChY100TRaw[Co4At3Ch4]
+916.527 -0.110997 0.00 !Mu2ChY101TRaw[Co4At3Ch5]
+924.175 -0.111938 0.00 !Mu2ChY102TRaw[Co4At3Ch6]
+914.572 -0.110746 0.00 !Mu2ChY103TRaw[Co4At3Ch7]
+930.562 -0.112691 0.00 !Mu2ChY104TRaw[Co4At3Ch8]
+925.104 -0.112025 0.00 !Mu2ChY105TRaw[Co4At3Ch9]
+920.853 -0.111507 0.00 !Mu2ChY106TRaw[Co4At3Ch10]
+922.078 -0.111663 0.00 !Mu2ChY107TRaw[Co4At3Ch11]
+921.772 -0.111623 0.00 !Mu2ChY108TRaw[Co4At3Ch12]
+925.31 -0.112066 0.00 !Mu2ChY109TRaw[Co4At3Ch13]
+926.033 -0.11214 0.00 !Mu2ChY110TRaw[Co4At3Ch14]
+922.391 -0.111703 0.00 !Mu2ChY111TRaw[Co4At3Ch15]
+912.83 -0.110525 0.00 !Mu2ChY112TRaw[Co4At3Ch16]
+852.798 -0.102981 0.00 !Mu2ChY113TRaw[Co4At4Ch1]
+868.843 -0.104976 0.00 !Mu2ChY114TRaw[Co4At4Ch2]
+876.793 -0.105936 0.00 !Mu2ChY115TRaw[Co4At4Ch3]
+875.311 -0.10575 0.00 !Mu2ChY116TRaw[Co4At4Ch4]
+883.331 -0.106741 0.00 !Mu2ChY117TRaw[Co4At4Ch5]
+879.699 -0.10628 0.00 !Mu2ChY118TRaw[Co4At4Ch6]
+891.993 -0.107805 0.00 !Mu2ChY119TRaw[Co4At4Ch7]
+893.52 -0.107966 0.00 !Mu2ChY120TRaw[Co4At4Ch8]
+883.484 -0.106759 0.00 !Mu2ChY121TRaw[Co4At4Ch9]
+896.835 -0.108381 0.00 !Mu2ChY122TRaw[Co4At4Ch10]
+895.32 -0.108195 0.00 !Mu2ChY123TRaw[Co4At4Ch11]
+1336.18 -0.108195 0.00 !Mu2ChY124TRaw[Co4At4Ch12]
+897.921 -0.108519 0.00 !Mu2ChY125TRaw[Co4At4Ch13]
+898.896 -0.10863 0.00 !Mu2ChY126TRaw[Co4At4Ch14]
+900.009 -0.108768 0.00 !Mu2ChY127TRaw[Co4At4Ch15]
+896.14 -0.108297 0.00 !Mu2ChY128TRaw[Co4At4Ch16]
+936.261 -0.113591 0.00 !Mu3ChX1TRaw[Co1At1Ch1]
+949.597 -0.115254 0.00 !Mu3ChX2TRaw[Co1At1Ch2]
+954.137 -0.115822 0.00 !Mu3ChX3TRaw[Co1At1Ch3]
+956.021 -0.116042 0.00 !Mu3ChX4TRaw[Co1At1Ch4]
+948.148 -0.115096 0.00 !Mu3ChX5TRaw[Co1At1Ch5]
+962.715 -0.11686 0.00 !Mu3ChX6TRaw[Co1At1Ch6]
+967.087 -0.117385 0.00 !Mu3ChX7TRaw[Co1At1Ch7]
+972.268 -0.118019 0.00 !Mu3ChX8TRaw[Co1At1Ch8]
+970.481 -0.117779 0.00 !Mu3ChX9TRaw[Co1At1Ch9]
+968.226 -0.117496 0.00 !Mu3ChX10TRaw[Co1At1Ch10]
+970.608 -0.117795 0.00 !Mu3ChX11TRaw[Co1At1Ch11]
+982.826 -0.119273 0.00 !Mu3ChX12TRaw[Co1At1Ch12]
+972.655 -0.118031 0.00 !Mu3ChX13TRaw[Co1At1Ch13]
+978.966 -0.118805 0.00 !Mu3ChX14TRaw[Co1At1Ch14]
+976.646 -0.118524 0.00 !Mu3ChX15TRaw[Co1At1Ch15]
+1358.4 -0.119127 0.00 !Mu3ChX16TRaw[Co1At1Ch16]
+965.022 -0.117029 0.00 !Mu3ChX17TRaw[Co1At2Ch1]
+961.069 -0.116582 0.00 !Mu3ChX18TRaw[Co1At2Ch2]
+979.729 -0.11886 0.00 !Mu3ChX19TRaw[Co1At2Ch3]
+975.886 -0.118386 0.00 !Mu3ChX20TRaw[Co1At2Ch4]
+982.811 -0.119229 0.00 !Mu3ChX21TRaw[Co1At2Ch5]
+989.956 -0.120114 0.00 !Mu3ChX22TRaw[Co1At2Ch6]
+982.322 -0.119177 0.00 !Mu3ChX23TRaw[Co1At2Ch7]
+986.837 -0.119693 0.00 !Mu3ChX24TRaw[Co1At2Ch8]
+984.553 -0.119405 0.00 !Mu3ChX25TRaw[Co1At2Ch9]
+985.367 -0.119523 0.00 !Mu3ChX26TRaw[Co1At2Ch10]
+998.436 -0.12115 0.00 !Mu3ChX27TRaw[Co1At2Ch11]
+994.592 -0.120628 0.00 !Mu3ChX28TRaw[Co1At2Ch12]
+1004.55 -0.121885 0.00 !Mu3ChX29TRaw[Co1At2Ch13]
+997.75 -0.121035 0.00 !Mu3ChX30TRaw[Co1At2Ch14]
+999.387 -0.121233 0.00 !Mu3ChX31TRaw[Co1At2Ch15]
+994.205 -0.120654 0.00 !Mu3ChX32TRaw[Co1At2Ch16]
+895.626 -0.108693 0.00 !Mu3ChX33TRaw[Co1At3Ch1]
+901.788 -0.109485 0.00 !Mu3ChX34TRaw[Co1At3Ch2]
+909.669 -0.110421 0.00 !Mu3ChX35TRaw[Co1At3Ch3]
+902.809 -0.109588 0.00 !Mu3ChX36TRaw[Co1At3Ch4]
+908.707 -0.110301 0.00 !Mu3ChX37TRaw[Co1At3Ch5]
+917.184 -0.111327 0.00 !Mu3ChX38TRaw[Co1At3Ch6]
+918.636 -0.111495 0.00 !Mu3ChX39TRaw[Co1At3Ch7]
+927.002 -0.112521 0.00 !Mu3ChX40TRaw[Co1At3Ch8]
+934.79 -0.11347 0.00 !Mu3ChX41TRaw[Co1At3Ch9]
+928.489 -0.112717 0.00 !Mu3ChX42TRaw[Co1At3Ch10]
+925.669 -0.112335 0.00 !Mu3ChX43TRaw[Co1At3Ch11]
+450 -0.112964 0.00 !Mu3ChX44TRaw[Co1At3Ch12]
+932.907 -0.113245 0.00 !Mu3ChX45TRaw[Co1At3Ch13]
+927.364 -0.11258 0.00 !Mu3ChX46TRaw[Co1At3Ch14]
+934.8 -0.113476 0.00 !Mu3ChX47TRaw[Co1At3Ch15]
+933.166 -0.113256 0.00 !Mu3ChX48TRaw[Co1At3Ch16]
+863.882 -0.104661 0.00 !Mu3ChX49TRaw[Co1At4Ch1]
+863.742 -0.104634 0.00 !Mu3ChX50TRaw[Co1At4Ch2]
+876.032 -0.106155 0.00 !Mu3ChX51TRaw[Co1At4Ch3]
+885.987 -0.107364 0.00 !Mu3ChX52TRaw[Co1At4Ch4]
+886.077 -0.107368 0.00 !Mu3ChX53TRaw[Co1At4Ch5]
+882.141 -0.106861 0.00 !Mu3ChX54TRaw[Co1At4Ch6]
+894.386 -0.108382 0.00 !Mu3ChX55TRaw[Co1At4Ch7]
+897.465 -0.108733 0.00 !Mu3ChX56TRaw[Co1At4Ch8]
+894.9 -0.10844 0.00 !Mu3ChX57TRaw[Co1At4Ch9]
+900.295 -0.10908 0.00 !Mu3ChX58TRaw[Co1At4Ch10]
+895.793 -0.108538 0.00 !Mu3ChX59TRaw[Co1At4Ch11]
+895.372 -0.10849 0.00 !Mu3ChX60TRaw[Co1At4Ch12]
+902.176 -0.109312 0.00 !Mu3ChX61TRaw[Co1At4Ch13]
+903.192 -0.109445 0.00 !Mu3ChX62TRaw[Co1At4Ch14]
+889.712 -0.107803 0.00 !Mu3ChX63TRaw[Co1At4Ch15]
+921.265 -0.108862 0.00 !Mu3ChX64TRaw[Co1At4Ch16]
+981.944 -0.119126 0.00 !Mu3ChX65TRaw[Co2At1Ch1]
+987.148 -0.119789 0.00 !Mu3ChX66TRaw[Co2At1Ch2]
+987.456 -0.119851 0.00 !Mu3ChX67TRaw[Co2At1Ch3]
+1003.28 -0.121753 0.00 !Mu3ChX68TRaw[Co2At1Ch4]
+1003.82 -0.121824 0.00 !Mu3ChX69TRaw[Co2At1Ch5]
+1000.66 -0.121446 0.00 !Mu3ChX70TRaw[Co2At1Ch6]
+1004.35 -0.121893 0.00 !Mu3ChX71TRaw[Co2At1Ch7]
+1008.06 -0.122347 0.00 !Mu3ChX72TRaw[Co2At1Ch8]
+1004.22 -0.121883 0.00 !Mu3ChX73TRaw[Co2At1Ch9]
+1011.08 -0.122684 0.00 !Mu3ChX74TRaw[Co2At1Ch10]
+1019.46 -0.123722 0.00 !Mu3ChX75TRaw[Co2At1Ch11]
+1029.58 -0.124938 0.00 !Mu3ChX76TRaw[Co2At1Ch12]
+1011.08 -0.122709 0.00 !Mu3ChX77TRaw[Co2At1Ch13]
+1010.81 -0.12265 0.00 !Mu3ChX78TRaw[Co2At1Ch14]
+1022.22 -0.124061 0.00 !Mu3ChX79TRaw[Co2At1Ch15]
+1391.94 -0.123313 0.00 !Mu3ChX80TRaw[Co2At1Ch16]
+939.257 -0.11381 0.00 !Mu3ChX81TRaw[Co2At2Ch1]
+945.066 -0.114558 0.00 !Mu3ChX82TRaw[Co2At2Ch2]
+948.6 -0.114986 0.00 !Mu3ChX83TRaw[Co2At2Ch3]
+947.122 -0.114804 0.00 !Mu3ChX84TRaw[Co2At2Ch4]
+961.987 -0.116619 0.00 !Mu3ChX85TRaw[Co2At2Ch5]
+964.59 -0.11693 0.00 !Mu3ChX86TRaw[Co2At2Ch6]
+959.397 -0.116299 0.00 !Mu3ChX87TRaw[Co2At2Ch7]
+964.355 -0.116863 0.00 !Mu3ChX88TRaw[Co2At2Ch8]
+975.002 -0.118161 0.00 !Mu3ChX89TRaw[Co2At2Ch9]
+971.077 -0.117687 0.00 !Mu3ChX90TRaw[Co2At2Ch10]
+976.04 -0.118304 0.00 !Mu3ChX91TRaw[Co2At2Ch11]
+983.975 -0.119256 0.00 !Mu3ChX92TRaw[Co2At2Ch12]
+983.617 -0.119241 0.00 !Mu3ChX93TRaw[Co2At2Ch13]
+983.301 -0.119186 0.00 !Mu3ChX94TRaw[Co2At2Ch14]
+980.734 -0.118879 0.00 !Mu3ChX95TRaw[Co2At2Ch15]
+975.837 -0.118278 0.00 !Mu3ChX96TRaw[Co2At2Ch16]
+858.761 -0.104124 0.00 !Mu3ChX97TRaw[Co2At3Ch1]
+863.527 -0.104728 0.00 !Mu3ChX98TRaw[Co2At3Ch2]
+863.719 -0.104753 0.00 !Mu3ChX99TRaw[Co2At3Ch3]
+869.797 -0.105492 0.00 !Mu3ChX100TRaw[Co2At3Ch4]
+879.582 -0.106693 0.00 !Mu3ChX101TRaw[Co2At3Ch5]
+874.971 -0.10614 0.00 !Mu3ChX102TRaw[Co2At3Ch6]
+879.706 -0.106708 0.00 !Mu3ChX103TRaw[Co2At3Ch7]
+878.738 -0.106567 0.00 !Mu3ChX104TRaw[Co2At3Ch8]
+887.854 -0.107671 0.00 !Mu3ChX105TRaw[Co2At3Ch9]
+892.385 -0.108216 0.00 !Mu3ChX106TRaw[Co2At3Ch10]
+884.225 -0.107225 0.00 !Mu3ChX107TRaw[Co2At3Ch11]
+894.981 -0.108561 0.00 !Mu3ChX108TRaw[Co2At3Ch12]
+895.51 -0.108609 0.00 !Mu3ChX109TRaw[Co2At3Ch13]
+891.851 -0.108191 0.00 !Mu3ChX110TRaw[Co2At3Ch14]
+901.356 -0.109337 0.00 !Mu3ChX111TRaw[Co2At3Ch15]
+900.727 -0.108709 0.00 !Mu3ChX112TRaw[Co2At3Ch16]
+855.952 -0.103629 0.00 !Mu3ChX113TRaw[Co2At4Ch1]
+865.7 -0.10481 0.00 !Mu3ChX114TRaw[Co2At4Ch2]
+866.161 -0.1049 0.00 !Mu3ChX115TRaw[Co2At4Ch3]
+872.362 -0.105647 0.00 !Mu3ChX116TRaw[Co2At4Ch4]
+1490.13 -0.126949 0.00 !Mu3ChX117TRaw[Co2At4Ch5]
+876.561 -0.106145 0.00 !Mu3ChX118TRaw[Co2At4Ch6]
+884.075 -0.107055 0.00 !Mu3ChX119TRaw[Co2At4Ch7]
+881.54 -0.10675 0.00 !Mu3ChX120TRaw[Co2At4Ch8]
+884.679 -0.107137 0.00 !Mu3ChX121TRaw[Co2At4Ch9]
+888.637 -0.107599 0.00 !Mu3ChX122TRaw[Co2At4Ch10]
+884.493 -0.107093 0.00 !Mu3ChX123TRaw[Co2At4Ch11]
+893.964 -0.108252 0.00 !Mu3ChX124TRaw[Co2At4Ch12]
+888.064 -0.107522 0.00 !Mu3ChX125TRaw[Co2At4Ch13]
+894.536 -0.108336 0.00 !Mu3ChX126TRaw[Co2At4Ch14]
+882.088 -0.106793 0.00 !Mu3ChX127TRaw[Co2At4Ch15]
+890.98 -0.107896 0.00 !Mu3ChX128TRaw[Co2At4Ch16]
+916.716 -0.11121 0.00 !Mu3ChY1TRaw[Co3At1Ch1]
+924.259 -0.112154 0.00 !Mu3ChY2TRaw[Co3At1Ch2]
+933.256 -0.113241 0.00 !Mu3ChY3TRaw[Co3At1Ch3]
+942.953 -0.114409 0.00 !Mu3ChY4TRaw[Co3At1Ch4]
+939.901 -0.114032 0.00 !Mu3ChY5TRaw[Co3At1Ch5]
+947.878 -0.114994 0.00 !Mu3ChY6TRaw[Co3At1Ch6]
+952.484 -0.115552 0.00 !Mu3ChY7TRaw[Co3At1Ch7]
+952.713 -0.115546 0.00 !Mu3ChY8TRaw[Co3At1Ch8]
+960.463 -0.116506 0.00 !Mu3ChY9TRaw[Co3At1Ch9]
+964.543 -0.117006 0.00 !Mu3ChY10TRaw[Co3At1Ch10]
+966.84 -0.117251 0.00 !Mu3ChY11TRaw[Co3At1Ch11]
+965.68 -0.117093 0.00 !Mu3ChY12TRaw[Co3At1Ch12]
+975.182 -0.118272 0.00 !Mu3ChY13TRaw[Co3At1Ch13]
+981.614 -0.119048 0.00 !Mu3ChY14TRaw[Co3At1Ch14]
+973.869 -0.118075 0.00 !Mu3ChY15TRaw[Co3At1Ch15]
+981.076 -0.118941 0.00 !Mu3ChY16TRaw[Co3At1Ch16]
+967.206 -0.117174 0.00 !Mu3ChY17TRaw[Co3At2Ch1]
+980.188 -0.118815 0.00 !Mu3ChY18TRaw[Co3At2Ch2]
+981.134 -0.118931 0.00 !Mu3ChY19TRaw[Co3At2Ch3]
+986.719 -0.119638 0.00 !Mu3ChY20TRaw[Co3At2Ch4]
+992.386 -0.12034 0.00 !Mu3ChY21TRaw[Co3At2Ch5]
+1002.21 -0.121551 0.00 !Mu3ChY22TRaw[Co3At2Ch6]
+997.474 -0.120998 0.00 !Mu3ChY23TRaw[Co3At2Ch7]
+992.008 -0.120321 0.00 !Mu3ChY24TRaw[Co3At2Ch8]
+998.021 -0.121073 0.00 !Mu3ChY25TRaw[Co3At2Ch9]
+1004.15 -0.121839 0.00 !Mu3ChY26TRaw[Co3At2Ch10]
+1004.31 -0.121856 0.00 !Mu3ChY27TRaw[Co3At2Ch11]
+1010.69 -0.122649 0.00 !Mu3ChY28TRaw[Co3At2Ch12]
+1013.79 -0.12302 0.00 !Mu3ChY29TRaw[Co3At2Ch13]
+1002.56 -0.121668 0.00 !Mu3ChY30TRaw[Co3At2Ch14]
+1011.72 -0.122794 0.00 !Mu3ChY31TRaw[Co3At2Ch15]
+1012.54 -0.122927 0.00 !Mu3ChY32TRaw[Co3At2Ch16]
+868.546 -0.105446 0.00 !Mu3ChY33TRaw[Co3At3Ch1]
+865.415 -0.105092 0.00 !Mu3ChY34TRaw[Co3At3Ch2]
+870.615 -0.10573 0.00 !Mu3ChY35TRaw[Co3At3Ch3]
+867.501 -0.105345 0.00 !Mu3ChY36TRaw[Co3At3Ch4]
+879.085 -0.106744 0.00 !Mu3ChY37TRaw[Co3At3Ch5]
+878.372 -0.106654 0.00 !Mu3ChY38TRaw[Co3At3Ch6]
+883.834 -0.107294 0.00 !Mu3ChY39TRaw[Co3At3Ch7]
+892.468 -0.108361 0.00 !Mu3ChY40TRaw[Co3At3Ch8]
+889.652 -0.10799 0.00 !Mu3ChY41TRaw[Co3At3Ch9]
+893.582 -0.10846 0.00 !Mu3ChY42TRaw[Co3At3Ch10]
+902.982 -0.109593 0.00 !Mu3ChY43TRaw[Co3At3Ch11]
+899.542 -0.109195 0.00 !Mu3ChY44TRaw[Co3At3Ch12]
+894.786 -0.108568 0.00 !Mu3ChY45TRaw[Co3At3Ch13]
+904.997 -0.109804 0.00 !Mu3ChY46TRaw[Co3At3Ch14]
+908.733 -0.110263 0.00 !Mu3ChY47TRaw[Co3At3Ch15]
+901.41 -0.109382 0.00 !Mu3ChY48TRaw[Co3At3Ch16]
+874.853 -0.105997 0.00 !Mu3ChY49TRaw[Co3At4Ch1]
+880.713 -0.106772 0.00 !Mu3ChY50TRaw[Co3At4Ch2]
+892.705 -0.108217 0.00 !Mu3ChY51TRaw[Co3At4Ch3]
+895.218 -0.108527 0.00 !Mu3ChY52TRaw[Co3At4Ch4]
+889.343 -0.107825 0.00 !Mu3ChY53TRaw[Co3At4Ch5]
+897.932 -0.108862 0.00 !Mu3ChY54TRaw[Co3At4Ch6]
+902.448 -0.109456 0.00 !Mu3ChY55TRaw[Co3At4Ch7]
+908.367 -0.110152 0.00 !Mu3ChY56TRaw[Co3At4Ch8]
+912.74 -0.110718 0.00 !Mu3ChY57TRaw[Co3At4Ch9]
+911.519 -0.11056 0.00 !Mu3ChY58TRaw[Co3At4Ch10]
+920.413 -0.111636 0.00 !Mu3ChY59TRaw[Co3At4Ch11]
+906.185 -0.109934 0.00 !Mu3ChY60TRaw[Co3At4Ch12]
+919.759 -0.111581 0.00 !Mu3ChY61TRaw[Co3At4Ch13]
+920.555 -0.111694 0.00 !Mu3ChY62TRaw[Co3At4Ch14]
+915.715 -0.1111 0.00 !Mu3ChY63TRaw[Co3At4Ch15]
+918.454 -0.11144 0.00 !Mu3ChY64TRaw[Co3At4Ch16]
+901.244 -0.109216 0.00 !Mu3ChY65TRaw[Co4At1Ch1]
+907.742 -0.110026 0.00 !Mu3ChY66TRaw[Co4At1Ch2]
+908.334 -0.110106 0.00 !Mu3ChY67TRaw[Co4At1Ch3]
+916.785 -0.11114 0.00 !Mu3ChY68TRaw[Co4At1Ch4]
+928.178 -0.11252 0.00 !Mu3ChY69TRaw[Co4At1Ch5]
+936.612 -0.113544 0.00 !Mu3ChY70TRaw[Co4At1Ch6]
+929.327 -0.112672 0.00 !Mu3ChY71TRaw[Co4At1Ch7]
+927.889 -0.112491 0.00 !Mu3ChY72TRaw[Co4At1Ch8]
+944.015 -0.114462 0.00 !Mu3ChY73TRaw[Co4At1Ch9]
+936.5 -0.11354 0.00 !Mu3ChY74TRaw[Co4At1Ch10]
+952.669 -0.115517 0.00 !Mu3ChY75TRaw[Co4At1Ch11]
+949.121 -0.115086 0.00 !Mu3ChY76TRaw[Co4At1Ch12]
+961.66 -0.116618 0.00 !Mu3ChY77TRaw[Co4At1Ch13]
+950.324 -0.115232 0.00 !Mu3ChY78TRaw[Co4At1Ch14]
+943.005 -0.114343 0.00 !Mu3ChY79TRaw[Co4At1Ch15]
+948.05 -0.114947 0.00 !Mu3ChY80TRaw[Co4At1Ch16]
+967.814 -0.117288 0.00 !Mu3ChY81TRaw[Co4At2Ch1]
+979.35 -0.118727 0.00 !Mu3ChY82TRaw[Co4At2Ch2]
+985.387 -0.119474 0.00 !Mu3ChY83TRaw[Co4At2Ch3]
+988.884 -0.119909 0.00 !Mu3ChY84TRaw[Co4At2Ch4]
+990.688 -0.120116 0.00 !Mu3ChY85TRaw[Co4At2Ch5]
+997.728 -0.120975 0.00 !Mu3ChY86TRaw[Co4At2Ch6]
+994.598 -0.120606 0.00 !Mu3ChY87TRaw[Co4At2Ch7]
+996.045 -0.12076 0.00 !Mu3ChY88TRaw[Co4At2Ch8]
+1000.77 -0.121336 0.00 !Mu3ChY89TRaw[Co4At2Ch9]
+1011.99 -0.122713 0.00 !Mu3ChY90TRaw[Co4At2Ch10]
+1015.05 -0.1231 0.00 !Mu3ChY91TRaw[Co4At2Ch11]
+1003.4 -0.121678 0.00 !Mu3ChY92TRaw[Co4At2Ch12]
+1011.74 -0.122697 0.00 !Mu3ChY93TRaw[Co4At2Ch13]
+1014.96 -0.123087 0.00 !Mu3ChY94TRaw[Co4At2Ch14]
+1007.34 -0.122144 0.00 !Mu3ChY95TRaw[Co4At2Ch15]
+1008.36 -0.122274 0.00 !Mu3ChY96TRaw[Co4At2Ch16]
+871.329 -0.105573 0.00 !Mu3ChY97TRaw[Co4At3Ch1]
+868.142 -0.105224 0.00 !Mu3ChY98TRaw[Co4At3Ch2]
+872.865 -0.105791 0.00 !Mu3ChY99TRaw[Co4At3Ch3]
+882.085 -0.106904 0.00 !Mu3ChY100TRaw[Co4At3Ch4]
+889.159 -0.107789 0.00 !Mu3ChY101TRaw[Co4At3Ch5]
+888.956 -0.107742 0.00 !Mu3ChY102TRaw[Co4At3Ch6]
+899.906 -0.109085 0.00 !Mu3ChY103TRaw[Co4At3Ch7]
+892.033 -0.108126 0.00 !Mu3ChY104TRaw[Co4At3Ch8]
+899.207 -0.108999 0.00 !Mu3ChY105TRaw[Co4At3Ch9]
+891.613 -0.108068 0.00 !Mu3ChY106TRaw[Co4At3Ch10]
+891.136 -0.108006 0.00 !Mu3ChY107TRaw[Co4At3Ch11]
+900.207 -0.109125 0.00 !Mu3ChY108TRaw[Co4At3Ch12]
+902.911 -0.109439 0.00 !Mu3ChY109TRaw[Co4At3Ch13]
+900.692 -0.109168 0.00 !Mu3ChY110TRaw[Co4At3Ch14]
+896.133 -0.108625 0.00 !Mu3ChY111TRaw[Co4At3Ch15]
+902.665 -0.109416 0.00 !Mu3ChY112TRaw[Co4At3Ch16]
+888.587 -0.107554 0.00 !Mu3ChY113TRaw[Co4At4Ch1]
+895.918 -0.108473 0.00 !Mu3ChY114TRaw[Co4At4Ch2]
+898.97 -0.108848 0.00 !Mu3ChY115TRaw[Co4At4Ch3]
+894.394 -0.108292 0.00 !Mu3ChY116TRaw[Co4At4Ch4]
+902.574 -0.109288 0.00 !Mu3ChY117TRaw[Co4At4Ch5]
+907.964 -0.109943 0.00 !Mu3ChY118TRaw[Co4At4Ch6]
+906.564 -0.109765 0.00 !Mu3ChY119TRaw[Co4At4Ch7]
+905.798 -0.109672 0.00 !Mu3ChY120TRaw[Co4At4Ch8]
+912.702 -0.110512 0.00 !Mu3ChY121TRaw[Co4At4Ch9]
+921.335 -0.111588 0.00 !Mu3ChY122TRaw[Co4At4Ch10]
+924.085 -0.111915 0.00 !Mu3ChY123TRaw[Co4At4Ch11]
+906.564 -0.109772 0.00 !Mu3ChY124TRaw[Co4At4Ch12]
+910.838 -0.11029 0.00 !Mu3ChY125TRaw[Co4At4Ch13]
+916.176 -0.110947 0.00 !Mu3ChY126TRaw[Co4At4Ch14]
+917.763 -0.111116 0.00 !Mu3ChY127TRaw[Co4At4Ch15]
+925.891 -0.112131 0.00 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Calibration.txt b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Calibration.txt
new file mode 100755
index 0000000000000000000000000000000000000000..f9c8fd827ecc027383447ddca282737a0c4ec402
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Calibration.txt
@@ -0,0 +1,21 @@
+CalibrationFilePath
+  calibration/double_alpha_Ra222_R271-279/M0_E/Cal_Str_X_E_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_E/Cal_Str_X_E_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_E/Cal_Str_X_E_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_E/Cal_Str_X_E_MM3.cal
+
+
+  calibration/double_alpha_Ra222_R271-279/M0_E/Cal_Str_Y_E_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_E/Cal_Str_Y_E_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_E/Cal_Str_Y_E_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_E/Cal_Str_Y_E_MM3.cal
+
+  calibration/double_alpha_Ra222_R271-279/M0_T/Cal_Str_X_T_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_T/Cal_Str_X_T_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_T/Cal_Str_X_T_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_T/Cal_Str_X_T_MM3.cal
+
+  calibration/double_alpha_Ra222_R271-279/M0_T/Cal_Str_Y_T_MM0.cal
+  calibration/double_alpha_Ra222_R271-279/M1_T/Cal_Str_Y_T_MM1.cal
+  calibration/double_alpha_Ra222_R271-279/M2_T/Cal_Str_Y_T_MM2.cal
+  calibration/double_alpha_Ra222_R271-279/M3_T/Cal_Str_Y_T_MM3.cal
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/.root_hist b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..09dfc734ee013cb276530bcb513b3517ad5ad8e5
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/.root_hist
@@ -0,0 +1,97 @@
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.qqqqqqqqqqq
+.x ExtractRawHisto_E_Pedestals.C
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.x ExtractRawHisto_E_Pedestals.C
+.L ExtractRawHisto_E_Pedestals.C+
+we 
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+q
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+.x ExtractRawHisto_E_Pedestals.C
+.q
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.q
+.L ExtractRawHisto_E_Pedestals.C+
+.q
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_1_pedestals","MUST2")
+.ls
+.q
+TFile *_file0 = TFile::Open("Histograms/run_1_pedestals_RawMUST2Histos.root")
+new TBrowser
+.q
+.L ExtractRawHisto_E.C+
+.q
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_7_pedestals","MUST2")
+ew TBrowser
+new TBrowser
+.q
+.L EnergyCalibrator.C+
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+ls
+.ls
+.q
+ExtractRawHistos("run_9","MUST2")
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_9","MUST2")
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L ExtractRawHisto_E.C+
+ExtractRawHistos("run_19","MUST2")
+ls
+.ls
+.L EnergyCalibrator+
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q 
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
+.L EnergyCalibrator.C+
+AutoCalibration(1,4,"MUST2")
+.q
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/.root_hist b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..c37259c1cc98a5df9fb1857211ba438c6f0f0080
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/.root_hist
@@ -0,0 +1,5 @@
+new TBrowser
+q
+.q
+new TBrowser
+.q
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..59533f1c2519edd5aac99e291c7b1ce2b6b0e9a5
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
@@ -0,0 +1,147 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 1
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c52a1498c48fb030cff766a611dcc953c32ec35f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E -61.4176 0.00749736
+MUSETT_T0_DSSD_X1_E -61.7332 0.00753786
+MUSETT_T0_DSSD_X2_E -61.3896 0.00749605
+MUSETT_T0_DSSD_X3_E -61.2903 0.00748199
+MUSETT_T0_DSSD_X4_E -61.431 0.00750212
+MUSETT_T0_DSSD_X5_E -61.326 0.00748787
+MUSETT_T0_DSSD_X6_E -61.0441 0.00745321
+MUSETT_T0_DSSD_X7_E -60.8321 0.00742833
+MUSETT_T0_DSSD_X8_E -60.8507 0.00742788
+MUSETT_T0_DSSD_X9_E -62.3428 0.0076116
+MUSETT_T0_DSSD_X10_E -62.0533 0.00757613
+MUSETT_T0_DSSD_X11_E -61.706 0.00753425
+MUSETT_T0_DSSD_X12_E -61.8146 0.00754892
+MUSETT_T0_DSSD_X13_E -61.4548 0.00750366
+MUSETT_T0_DSSD_X14_E -62.103 0.00758278
+MUSETT_T0_DSSD_X15_E -61.0209 0.00745076
+MUSETT_T0_DSSD_X16_E -62.6789 0.0076538
+MUSETT_T0_DSSD_X17_E -62.1645 0.00759548
+MUSETT_T0_DSSD_X18_E -61.9167 0.00755979
+MUSETT_T0_DSSD_X19_E -61.9572 0.00756687
+MUSETT_T0_DSSD_X20_E -63.6131 0.00776601
+MUSETT_T0_DSSD_X21_E -62.1196 0.00758583
+MUSETT_T0_DSSD_X22_E -62.0121 0.00757122
+MUSETT_T0_DSSD_X23_E -62.3166 0.00761046
+MUSETT_T0_DSSD_X24_E -62.4782 0.00762937
+MUSETT_T0_DSSD_X25_E -62.5948 0.00764366
+MUSETT_T0_DSSD_X26_E -62.8291 0.00767039
+MUSETT_T0_DSSD_X27_E -62.1445 0.00759002
+MUSETT_T0_DSSD_X28_E -62.7578 0.00766138
+MUSETT_T0_DSSD_X29_E -62.2734 0.00760445
+MUSETT_T0_DSSD_X30_E -63.1287 0.00770747
+MUSETT_T0_DSSD_X31_E -62.259 0.007602
+MUSETT_T0_DSSD_X32_E -56.1626 0.0068604
+MUSETT_T0_DSSD_X33_E -56.4142 0.00688949
+MUSETT_T0_DSSD_X34_E -55.0958 0.00672999
+MUSETT_T0_DSSD_X35_E -55.8984 0.00682813
+MUSETT_T0_DSSD_X36_E -55.6715 0.00679777
+MUSETT_T0_DSSD_X37_E -54.9391 0.00671187
+MUSETT_T0_DSSD_X38_E -55.4656 0.00677524
+MUSETT_T0_DSSD_X39_E -55.2745 0.00675192
+MUSETT_T0_DSSD_X40_E -55.9564 0.00683237
+MUSETT_T0_DSSD_X41_E -55.6024 0.00678835
+MUSETT_T0_DSSD_X42_E -55.7768 0.00681221
+MUSETT_T0_DSSD_X43_E -55.9848 0.00683639
+MUSETT_T0_DSSD_X44_E -56.0388 0.00684277
+MUSETT_T0_DSSD_X45_E -100.746 0.0122904
+MUSETT_T0_DSSD_X46_E -99.399 0.0121408
+MUSETT_T0_DSSD_X47_E -55.6563 0.00679819
+MUSETT_T0_DSSD_X48_E -57.4429 0.0070159
+MUSETT_T0_DSSD_X49_E -57.5152 0.00702414
+MUSETT_T0_DSSD_X50_E -57.487 0.00701839
+MUSETT_T0_DSSD_X51_E -56.9208 0.00695135
+MUSETT_T0_DSSD_X52_E -58.0107 0.00708119
+MUSETT_T0_DSSD_X53_E -56.9193 0.00694986
+MUSETT_T0_DSSD_X54_E -57.4367 0.00701404
+MUSETT_T0_DSSD_X55_E -57.1583 0.00697967
+MUSETT_T0_DSSD_X56_E -58.0046 0.00708458
+MUSETT_T0_DSSD_X57_E -57.3176 0.00699982
+MUSETT_T0_DSSD_X58_E -57.134 0.00697341
+MUSETT_T0_DSSD_X59_E -57.4375 0.00701403
+MUSETT_T0_DSSD_X60_E -56.9962 0.00695735
+MUSETT_T0_DSSD_X61_E -57.5621 0.00702929
+MUSETT_T0_DSSD_X62_E -57.6273 0.00703611
+MUSETT_T0_DSSD_X63_E -57.8094 0.00705862
+MUSETT_T0_DSSD_X64_E -62.5694 0.00764554
+MUSETT_T0_DSSD_X65_E -62.7765 0.00767141
+MUSETT_T0_DSSD_X66_E -62.6601 0.00765656
+MUSETT_T0_DSSD_X67_E -63.0717 0.00770888
+MUSETT_T0_DSSD_X68_E -62.275 0.00761087
+MUSETT_T0_DSSD_X69_E -62.7076 0.00766829
+MUSETT_T0_DSSD_X70_E -63.2742 0.00772849
+MUSETT_T0_DSSD_X71_E -61.7578 0.00755677
+MUSETT_T0_DSSD_X72_E -62.8436 0.00768583
+MUSETT_T0_DSSD_X73_E -61.1488 0.00748861
+MUSETT_T0_DSSD_X74_E -62.5469 0.00765229
+MUSETT_T0_DSSD_X75_E -62.2494 0.00761832
+MUSETT_T0_DSSD_X76_E -61.9556 0.00758282
+MUSETT_T0_DSSD_X77_E -61.7742 0.00756394
+MUSETT_T0_DSSD_X78_E -62.631 0.00766349
+MUSETT_T0_DSSD_X79_E -62.5657 0.00766188
+MUSETT_T0_DSSD_X80_E -59.317 0.00726294
+MUSETT_T0_DSSD_X81_E -58.8177 0.0072054
+MUSETT_T0_DSSD_X82_E -59.0886 0.00723829
+MUSETT_T0_DSSD_X83_E -59.6477 0.00730317
+MUSETT_T0_DSSD_X84_E -59.8536 0.00732352
+MUSETT_T0_DSSD_X85_E -60.4055 0.00739355
+MUSETT_T0_DSSD_X86_E -60.3646 0.00738021
+MUSETT_T0_DSSD_X87_E -60.8435 0.00744227
+MUSETT_T0_DSSD_X88_E -60.8501 0.00743939
+MUSETT_T0_DSSD_X89_E -60.5184 0.00739918
+MUSETT_T0_DSSD_X90_E -60.6657 0.00741709
+MUSETT_T0_DSSD_X91_E -61.8484 0.00756021
+MUSETT_T0_DSSD_X92_E -61.0175 0.00745665
+MUSETT_T0_DSSD_X93_E -59.9938 0.00733538
+MUSETT_T0_DSSD_X94_E -60.5911 0.00740502
+MUSETT_T0_DSSD_X95_E -61.5567 0.00752034
+MUSETT_T0_DSSD_X96_E -56.9853 0.00695607
+MUSETT_T0_DSSD_X97_E -56.805 0.00694169
+MUSETT_T0_DSSD_X98_E -57.0758 0.00697401
+MUSETT_T0_DSSD_X99_E -56.7956 0.00693482
+MUSETT_T0_DSSD_X100_E -57.7593 0.0070528
+MUSETT_T0_DSSD_X101_E -57.6971 0.00704109
+MUSETT_T0_DSSD_X102_E -57.1712 0.0069833
+MUSETT_T0_DSSD_X103_E -56.5661 0.00691177
+MUSETT_T0_DSSD_X104_E -56.8282 0.00694184
+MUSETT_T0_DSSD_X105_E -57.3391 0.00700475
+MUSETT_T0_DSSD_X106_E -56.6671 0.00692293
+MUSETT_T0_DSSD_X107_E -56.8853 0.00695107
+MUSETT_T0_DSSD_X108_E -57.9765 0.00708265
+MUSETT_T0_DSSD_X109_E -57.388 0.00701232
+MUSETT_T0_DSSD_X110_E -56.5401 0.00691485
+MUSETT_T0_DSSD_X111_E -57.0413 0.00697142
+MUSETT_T0_DSSD_X112_E -58.286 0.00712194
+MUSETT_T0_DSSD_X113_E -58.5104 0.00714936
+MUSETT_T0_DSSD_X114_E -57.7679 0.00705962
+MUSETT_T0_DSSD_X115_E -57.9796 0.00708441
+MUSETT_T0_DSSD_X116_E -57.4801 0.00702354
+MUSETT_T0_DSSD_X117_E -57.6419 0.00704336
+MUSETT_T0_DSSD_X118_E -57.9462 0.00707592
+MUSETT_T0_DSSD_X119_E -58.1659 0.00710274
+MUSETT_T0_DSSD_X120_E -57.9026 0.00707413
+MUSETT_T0_DSSD_X121_E -58.1983 0.00710762
+MUSETT_T0_DSSD_X122_E -57.9833 0.00708219
+MUSETT_T0_DSSD_X123_E -59.0073 0.00720479
+MUSETT_T0_DSSD_X124_E -57.4047 0.00701145
+MUSETT_T0_DSSD_X125_E -57.9162 0.00707506
+MUSETT_T0_DSSD_X126_E -58.0998 0.00709359
+MUSETT_T0_DSSD_X127_E -58.9229 0.00719802
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..f8ae648fae141c1fc741a6261a14a3bd269603fa
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/Cal_Str_X_E_MM0.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E_Zero_Dispersion 0.102913
+MUSETT_T0_DSSD_X1_E_Zero_Dispersion 2.24487
+MUSETT_T0_DSSD_X2_E_Zero_Dispersion 2.40801
+MUSETT_T0_DSSD_X3_E_Zero_Dispersion 0.290031
+MUSETT_T0_DSSD_X4_E_Zero_Dispersion 3.51494
+MUSETT_T0_DSSD_X5_E_Zero_Dispersion 1.95333
+MUSETT_T0_DSSD_X6_E_Zero_Dispersion 1.68842
+MUSETT_T0_DSSD_X7_E_Zero_Dispersion 2.79134
+MUSETT_T0_DSSD_X8_E_Zero_Dispersion -0.20541
+MUSETT_T0_DSSD_X9_E_Zero_Dispersion 1.50734
+MUSETT_T0_DSSD_X10_E_Zero_Dispersion 1.37658
+MUSETT_T0_DSSD_X11_E_Zero_Dispersion 1.92986
+MUSETT_T0_DSSD_X12_E_Zero_Dispersion 3.45815
+MUSETT_T0_DSSD_X13_E_Zero_Dispersion 2.02481
+MUSETT_T0_DSSD_X14_E_Zero_Dispersion 1.99584
+MUSETT_T0_DSSD_X15_E_Zero_Dispersion 2.11099
+MUSETT_T0_DSSD_X16_E_Zero_Dispersion 2.73808
+MUSETT_T0_DSSD_X17_E_Zero_Dispersion 7.59976
+MUSETT_T0_DSSD_X18_E_Zero_Dispersion 1.73776
+MUSETT_T0_DSSD_X19_E_Zero_Dispersion 4.04507
+MUSETT_T0_DSSD_X20_E_Zero_Dispersion 0.773641
+MUSETT_T0_DSSD_X21_E_Zero_Dispersion 3.09557
+MUSETT_T0_DSSD_X22_E_Zero_Dispersion 1.50144
+MUSETT_T0_DSSD_X23_E_Zero_Dispersion 3.71503
+MUSETT_T0_DSSD_X24_E_Zero_Dispersion 2.83617
+MUSETT_T0_DSSD_X25_E_Zero_Dispersion 2.88454
+MUSETT_T0_DSSD_X26_E_Zero_Dispersion 0.86892
+MUSETT_T0_DSSD_X27_E_Zero_Dispersion 4.34091
+MUSETT_T0_DSSD_X28_E_Zero_Dispersion 0.546165
+MUSETT_T0_DSSD_X29_E_Zero_Dispersion 2.92398
+MUSETT_T0_DSSD_X30_E_Zero_Dispersion 1.41443
+MUSETT_T0_DSSD_X31_E_Zero_Dispersion 2.18272
+MUSETT_T0_DSSD_X32_E_Zero_Dispersion 5.50955
+MUSETT_T0_DSSD_X33_E_Zero_Dispersion 3.54479
+MUSETT_T0_DSSD_X34_E_Zero_Dispersion 5.38916
+MUSETT_T0_DSSD_X35_E_Zero_Dispersion 5.51265
+MUSETT_T0_DSSD_X36_E_Zero_Dispersion 2.32903
+MUSETT_T0_DSSD_X37_E_Zero_Dispersion 6.63815
+MUSETT_T0_DSSD_X38_E_Zero_Dispersion 5.48844
+MUSETT_T0_DSSD_X39_E_Zero_Dispersion 5.51694
+MUSETT_T0_DSSD_X40_E_Zero_Dispersion 2.10885
+MUSETT_T0_DSSD_X41_E_Zero_Dispersion 1.14006
+MUSETT_T0_DSSD_X42_E_Zero_Dispersion 4.22353
+MUSETT_T0_DSSD_X43_E_Zero_Dispersion 2.76535
+MUSETT_T0_DSSD_X44_E_Zero_Dispersion 2.5117
+MUSETT_T0_DSSD_X45_E_Zero_Dispersion -5.0981
+MUSETT_T0_DSSD_X46_E_Zero_Dispersion 4.81708
+MUSETT_T0_DSSD_X47_E_Zero_Dispersion 5.06188
+MUSETT_T0_DSSD_X48_E_Zero_Dispersion 4.46775
+MUSETT_T0_DSSD_X49_E_Zero_Dispersion 3.77405
+MUSETT_T0_DSSD_X50_E_Zero_Dispersion 1.09247
+MUSETT_T0_DSSD_X51_E_Zero_Dispersion 3.54488
+MUSETT_T0_DSSD_X52_E_Zero_Dispersion -0.232348
+MUSETT_T0_DSSD_X53_E_Zero_Dispersion 2.00614
+MUSETT_T0_DSSD_X54_E_Zero_Dispersion 3.18011
+MUSETT_T0_DSSD_X55_E_Zero_Dispersion 2.74231
+MUSETT_T0_DSSD_X56_E_Zero_Dispersion 4.55659
+MUSETT_T0_DSSD_X57_E_Zero_Dispersion 3.56342
+MUSETT_T0_DSSD_X58_E_Zero_Dispersion -1.12628
+MUSETT_T0_DSSD_X59_E_Zero_Dispersion 3.05041
+MUSETT_T0_DSSD_X60_E_Zero_Dispersion -0.231608
+MUSETT_T0_DSSD_X61_E_Zero_Dispersion 3.1073
+MUSETT_T0_DSSD_X62_E_Zero_Dispersion 1.78151
+MUSETT_T0_DSSD_X63_E_Zero_Dispersion 2.0984
+MUSETT_T0_DSSD_X64_E_Zero_Dispersion 8.21535
+MUSETT_T0_DSSD_X65_E_Zero_Dispersion 8.81345
+MUSETT_T0_DSSD_X66_E_Zero_Dispersion 8.15405
+MUSETT_T0_DSSD_X67_E_Zero_Dispersion 10.302
+MUSETT_T0_DSSD_X68_E_Zero_Dispersion 9.61918
+MUSETT_T0_DSSD_X69_E_Zero_Dispersion 14.4759
+MUSETT_T0_DSSD_X70_E_Zero_Dispersion 4.87172
+MUSETT_T0_DSSD_X71_E_Zero_Dispersion 19.4779
+MUSETT_T0_DSSD_X72_E_Zero_Dispersion 15.4516
+MUSETT_T0_DSSD_X73_E_Zero_Dispersion 26.4327
+MUSETT_T0_DSSD_X74_E_Zero_Dispersion 18.3719
+MUSETT_T0_DSSD_X75_E_Zero_Dispersion 20.993
+MUSETT_T0_DSSD_X76_E_Zero_Dispersion 21.4767
+MUSETT_T0_DSSD_X77_E_Zero_Dispersion 25.0765
+MUSETT_T0_DSSD_X78_E_Zero_Dispersion 19.3561
+MUSETT_T0_DSSD_X79_E_Zero_Dispersion 26.1513
+MUSETT_T0_DSSD_X80_E_Zero_Dispersion 24.9254
+MUSETT_T0_DSSD_X81_E_Zero_Dispersion 28.9995
+MUSETT_T0_DSSD_X82_E_Zero_Dispersion 28.6547
+MUSETT_T0_DSSD_X83_E_Zero_Dispersion 24.6368
+MUSETT_T0_DSSD_X84_E_Zero_Dispersion 19.2
+MUSETT_T0_DSSD_X85_E_Zero_Dispersion 21.9724
+MUSETT_T0_DSSD_X86_E_Zero_Dispersion 12.7551
+MUSETT_T0_DSSD_X87_E_Zero_Dispersion 16.6039
+MUSETT_T0_DSSD_X88_E_Zero_Dispersion 12.5542
+MUSETT_T0_DSSD_X89_E_Zero_Dispersion 12.9298
+MUSETT_T0_DSSD_X90_E_Zero_Dispersion 12.8183
+MUSETT_T0_DSSD_X91_E_Zero_Dispersion 11.2252
+MUSETT_T0_DSSD_X92_E_Zero_Dispersion 9.04167
+MUSETT_T0_DSSD_X93_E_Zero_Dispersion 13.3112
+MUSETT_T0_DSSD_X94_E_Zero_Dispersion 9.56023
+MUSETT_T0_DSSD_X95_E_Zero_Dispersion 6.64401
+MUSETT_T0_DSSD_X96_E_Zero_Dispersion -0.169952
+MUSETT_T0_DSSD_X97_E_Zero_Dispersion 8.82478
+MUSETT_T0_DSSD_X98_E_Zero_Dispersion 7.93764
+MUSETT_T0_DSSD_X99_E_Zero_Dispersion 2.09013
+MUSETT_T0_DSSD_X100_E_Zero_Dispersion 2.4381
+MUSETT_T0_DSSD_X101_E_Zero_Dispersion -2.35007
+MUSETT_T0_DSSD_X102_E_Zero_Dispersion 5.15856
+MUSETT_T0_DSSD_X103_E_Zero_Dispersion 7.96765
+MUSETT_T0_DSSD_X104_E_Zero_Dispersion 5.67829
+MUSETT_T0_DSSD_X105_E_Zero_Dispersion 6.25581
+MUSETT_T0_DSSD_X106_E_Zero_Dispersion 6.57618
+MUSETT_T0_DSSD_X107_E_Zero_Dispersion 8.33115
+MUSETT_T0_DSSD_X108_E_Zero_Dispersion 6.29503
+MUSETT_T0_DSSD_X109_E_Zero_Dispersion 8.12487
+MUSETT_T0_DSSD_X110_E_Zero_Dispersion 15.3838
+MUSETT_T0_DSSD_X111_E_Zero_Dispersion 9.83817
+MUSETT_T0_DSSD_X112_E_Zero_Dispersion 7.99507
+MUSETT_T0_DSSD_X113_E_Zero_Dispersion 7.99615
+MUSETT_T0_DSSD_X114_E_Zero_Dispersion 9.13852
+MUSETT_T0_DSSD_X115_E_Zero_Dispersion 7.88735
+MUSETT_T0_DSSD_X116_E_Zero_Dispersion 8.07551
+MUSETT_T0_DSSD_X117_E_Zero_Dispersion 8.13797
+MUSETT_T0_DSSD_X118_E_Zero_Dispersion 2.79139
+MUSETT_T0_DSSD_X119_E_Zero_Dispersion 2.77742
+MUSETT_T0_DSSD_X120_E_Zero_Dispersion 6.88387
+MUSETT_T0_DSSD_X121_E_Zero_Dispersion 3.85057
+MUSETT_T0_DSSD_X122_E_Zero_Dispersion 4.80636
+MUSETT_T0_DSSD_X123_E_Zero_Dispersion 1.98461
+MUSETT_T0_DSSD_X124_E_Zero_Dispersion 4.72226
+MUSETT_T0_DSSD_X125_E_Zero_Dispersion 6.02878
+MUSETT_T0_DSSD_X126_E_Zero_Dispersion 1.53415
+MUSETT_T0_DSSD_X127_E_Zero_Dispersion 6.01497
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/latex/double_alpha_run_0274_X_MM0_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/latex/double_alpha_run_0274_X_MM0_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..0f0b8b95b2be370ed23cf83a5c8c58f0417f5f55
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/latex/double_alpha_run_0274_X_MM0_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  0
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 0 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM0_E/latex/pictures/Telescope0Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.10885
+
+Sigma fit sigma: 0.331137
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/peaks/Cal_Str_X_E_MM0.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM0_E/peaks/Cal_Str_X_E_MM0.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..7777df8b98e27e5e884c065c80d8f14990e2144d
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E -62.3477 0.007611
+MUSETT_T1_DSSD_X1_E -62.308 0.00760306
+MUSETT_T1_DSSD_X2_E -62.1697 0.0075878
+MUSETT_T1_DSSD_X3_E -62.0173 0.00756982
+MUSETT_T1_DSSD_X4_E -61.3648 0.00749166
+MUSETT_T1_DSSD_X5_E -61.5997 0.00751643
+MUSETT_T1_DSSD_X6_E -62.4787 0.00762243
+MUSETT_T1_DSSD_X7_E -61.3185 0.00748472
+MUSETT_T1_DSSD_X8_E -61.1328 0.00746245
+MUSETT_T1_DSSD_X9_E -61.4827 0.00750394
+MUSETT_T1_DSSD_X10_E -61.8118 0.0075418
+MUSETT_T1_DSSD_X11_E -61.9258 0.00755463
+MUSETT_T1_DSSD_X12_E -61.8767 0.00755134
+MUSETT_T1_DSSD_X13_E -61.3156 0.0074846
+MUSETT_T1_DSSD_X14_E -61.3699 0.00748612
+MUSETT_T1_DSSD_X15_E -62.1632 0.00758373
+MUSETT_T1_DSSD_X16_E -62.9211 0.00767431
+MUSETT_T1_DSSD_X17_E -62.0562 0.00756866
+MUSETT_T1_DSSD_X18_E -62.0386 0.00757545
+MUSETT_T1_DSSD_X19_E -62.2875 0.0075986
+MUSETT_T1_DSSD_X20_E -62.8822 0.00767441
+MUSETT_T1_DSSD_X21_E -62.3374 0.00760465
+MUSETT_T1_DSSD_X22_E -62.852 0.00767109
+MUSETT_T1_DSSD_X23_E -62.8192 0.00765988
+MUSETT_T1_DSSD_X24_E -62.4176 0.00761481
+MUSETT_T1_DSSD_X25_E -62.2038 0.00758803
+MUSETT_T1_DSSD_X26_E -62.0181 0.00756821
+MUSETT_T1_DSSD_X27_E -61.9276 0.00755372
+MUSETT_T1_DSSD_X28_E -61.6034 0.00751835
+MUSETT_T1_DSSD_X29_E -62.9333 0.00767748
+MUSETT_T1_DSSD_X30_E -62.1268 0.0075773
+MUSETT_T1_DSSD_X31_E -63.1585 0.00770313
+MUSETT_T1_DSSD_X32_E -58.3057 0.00711587
+MUSETT_T1_DSSD_X33_E -58.4042 0.00712871
+MUSETT_T1_DSSD_X34_E -58.4884 0.00713562
+MUSETT_T1_DSSD_X35_E -57.4835 0.00702506
+MUSETT_T1_DSSD_X36_E -58.3917 0.00712193
+MUSETT_T1_DSSD_X37_E -58.5648 0.00714415
+MUSETT_T1_DSSD_X38_E -58.5559 0.00713839
+MUSETT_T1_DSSD_X39_E -58.5374 0.00714562
+MUSETT_T1_DSSD_X40_E -58.7158 0.00715871
+MUSETT_T1_DSSD_X41_E -58.8359 0.00717997
+MUSETT_T1_DSSD_X42_E -58.2602 0.00710755
+MUSETT_T1_DSSD_X43_E -57.8239 0.00706527
+MUSETT_T1_DSSD_X44_E -58.7242 0.00716462
+MUSETT_T1_DSSD_X45_E -59.6459 0.00727511
+MUSETT_T1_DSSD_X46_E -59.1603 0.00721451
+MUSETT_T1_DSSD_X47_E -58.6549 0.00715909
+MUSETT_T1_DSSD_X48_E -57.9484 0.00706941
+MUSETT_T1_DSSD_X49_E -58.7332 0.00716424
+MUSETT_T1_DSSD_X50_E -58.1769 0.00709735
+MUSETT_T1_DSSD_X51_E -57.9451 0.00706791
+MUSETT_T1_DSSD_X52_E -58.1687 0.00709592
+MUSETT_T1_DSSD_X53_E -57.9405 0.00707027
+MUSETT_T1_DSSD_X54_E -58.0919 0.00708762
+MUSETT_T1_DSSD_X55_E -58.0252 0.00707798
+MUSETT_T1_DSSD_X56_E -58.1604 0.00709681
+MUSETT_T1_DSSD_X57_E -57.9484 0.00706999
+MUSETT_T1_DSSD_X58_E -58.6075 0.00715036
+MUSETT_T1_DSSD_X59_E -57.6713 0.00703735
+MUSETT_T1_DSSD_X60_E -57.8203 0.00705456
+MUSETT_T1_DSSD_X61_E -58.3158 0.00711494
+MUSETT_T1_DSSD_X62_E -58.225 0.00710301
+MUSETT_T1_DSSD_X63_E -58.3159 0.00711583
+MUSETT_T1_DSSD_X64_E -60.9382 0.00743605
+MUSETT_T1_DSSD_X65_E -61.7124 0.00752921
+MUSETT_T1_DSSD_X66_E -61.2888 0.00748085
+MUSETT_T1_DSSD_X67_E -61.849 0.00754516
+MUSETT_T1_DSSD_X68_E -61.6144 0.00752229
+MUSETT_T1_DSSD_X69_E -61.4359 0.00749578
+MUSETT_T1_DSSD_X70_E -62.0725 0.00756872
+MUSETT_T1_DSSD_X71_E -61.9649 0.00756182
+MUSETT_T1_DSSD_X72_E -61.4025 0.00749204
+MUSETT_T1_DSSD_X73_E -62.3351 0.0076103
+MUSETT_T1_DSSD_X74_E -61.716 0.00753373
+MUSETT_T1_DSSD_X75_E -61.8091 0.00754583
+MUSETT_T1_DSSD_X76_E -61.6917 0.00752919
+MUSETT_T1_DSSD_X77_E -61.6932 0.00752907
+MUSETT_T1_DSSD_X78_E -61.7762 0.00753336
+MUSETT_T1_DSSD_X79_E -61.6882 0.00753087
+MUSETT_T1_DSSD_X80_E -63.4393 0.0077416
+MUSETT_T1_DSSD_X81_E -63.5227 0.00775487
+MUSETT_T1_DSSD_X82_E -64.1587 0.00782973
+MUSETT_T1_DSSD_X83_E -63.9945 0.0078081
+MUSETT_T1_DSSD_X84_E -64.0395 0.00781725
+MUSETT_T1_DSSD_X85_E -63.6515 0.00777089
+MUSETT_T1_DSSD_X86_E -64.4594 0.00786175
+MUSETT_T1_DSSD_X87_E -64.6224 0.0078816
+MUSETT_T1_DSSD_X88_E -63.8054 0.00779141
+MUSETT_T1_DSSD_X89_E -64.3273 0.00785003
+MUSETT_T1_DSSD_X90_E -63.2969 0.0077277
+MUSETT_T1_DSSD_X91_E -63.3398 0.00773073
+MUSETT_T1_DSSD_X92_E -64.83 0.00790919
+MUSETT_T1_DSSD_X93_E -63.8665 0.00779592
+MUSETT_T1_DSSD_X94_E -63.4522 0.0077484
+MUSETT_T1_DSSD_X95_E -63.846 0.00778696
+MUSETT_T1_DSSD_X96_E -56.5424 0.00689651
+MUSETT_T1_DSSD_X97_E -56.7469 0.00692393
+MUSETT_T1_DSSD_X98_E -56.7961 0.00693011
+MUSETT_T1_DSSD_X99_E -56.5307 0.00689674
+MUSETT_T1_DSSD_X100_E -56.647 0.0069118
+MUSETT_T1_DSSD_X101_E -57.1825 0.00697855
+MUSETT_T1_DSSD_X102_E -57.4464 0.00700859
+MUSETT_T1_DSSD_X103_E -56.52 0.00689815
+MUSETT_T1_DSSD_X104_E -56.9595 0.00694911
+MUSETT_T1_DSSD_X105_E -56.9963 0.00695535
+MUSETT_T1_DSSD_X106_E -57.9167 0.0070665
+MUSETT_T1_DSSD_X107_E -57.7395 0.00704685
+MUSETT_T1_DSSD_X108_E -57.738 0.00704522
+MUSETT_T1_DSSD_X109_E -57.4812 0.00701462
+MUSETT_T1_DSSD_X110_E -57.7292 0.00704441
+MUSETT_T1_DSSD_X111_E -58.0147 0.00707895
+MUSETT_T1_DSSD_X112_E -57.13 0.00697333
+MUSETT_T1_DSSD_X113_E -57.2102 0.00698216
+MUSETT_T1_DSSD_X114_E -56.8331 0.0069354
+MUSETT_T1_DSSD_X115_E -57.7562 0.00704746
+MUSETT_T1_DSSD_X116_E -57.2371 0.00698564
+MUSETT_T1_DSSD_X117_E -57.2535 0.00698716
+MUSETT_T1_DSSD_X118_E -56.4116 0.00688587
+MUSETT_T1_DSSD_X119_E -58.4293 0.00712899
+MUSETT_T1_DSSD_X120_E -57.5313 0.00701926
+MUSETT_T1_DSSD_X121_E -57.8937 0.00706324
+MUSETT_T1_DSSD_X122_E -57.779 0.00705032
+MUSETT_T1_DSSD_X123_E -57.6016 0.00702717
+MUSETT_T1_DSSD_X124_E -57.8107 0.00705219
+MUSETT_T1_DSSD_X125_E -57.7972 0.00705126
+MUSETT_T1_DSSD_X126_E -56.9888 0.00695535
+MUSETT_T1_DSSD_X127_E -57.9332 0.00706948
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..9c5f44ef381e031fcd2a0e76e310f1b3a2df8192
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/Cal_Str_X_E_MM1.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E_Zero_Dispersion 0.207675
+MUSETT_T1_DSSD_X1_E_Zero_Dispersion -3.12166
+MUSETT_T1_DSSD_X2_E_Zero_Dispersion -1.37277
+MUSETT_T1_DSSD_X3_E_Zero_Dispersion -0.696181
+MUSETT_T1_DSSD_X4_E_Zero_Dispersion 0.922503
+MUSETT_T1_DSSD_X5_E_Zero_Dispersion -3.34158
+MUSETT_T1_DSSD_X6_E_Zero_Dispersion -4.69115
+MUSETT_T1_DSSD_X7_E_Zero_Dispersion -0.496055
+MUSETT_T1_DSSD_X8_E_Zero_Dispersion -0.0470192
+MUSETT_T1_DSSD_X9_E_Zero_Dispersion -1.38881
+MUSETT_T1_DSSD_X10_E_Zero_Dispersion -3.90049
+MUSETT_T1_DSSD_X11_E_Zero_Dispersion -5.07207
+MUSETT_T1_DSSD_X12_E_Zero_Dispersion -2.14227
+MUSETT_T1_DSSD_X13_E_Zero_Dispersion -0.234495
+MUSETT_T1_DSSD_X14_E_Zero_Dispersion -5.82493
+MUSETT_T1_DSSD_X15_E_Zero_Dispersion -4.92261
+MUSETT_T1_DSSD_X16_E_Zero_Dispersion -6.92733
+MUSETT_T1_DSSD_X17_E_Zero_Dispersion -7.09341
+MUSETT_T1_DSSD_X18_E_Zero_Dispersion 2.56607
+MUSETT_T1_DSSD_X19_E_Zero_Dispersion -5.23495
+MUSETT_T1_DSSD_X20_E_Zero_Dispersion -1.75695
+MUSETT_T1_DSSD_X21_E_Zero_Dispersion -5.26724
+MUSETT_T1_DSSD_X22_E_Zero_Dispersion -1.36292
+MUSETT_T1_DSSD_X23_E_Zero_Dispersion -9.07008
+MUSETT_T1_DSSD_X24_E_Zero_Dispersion -4.87091
+MUSETT_T1_DSSD_X25_E_Zero_Dispersion -5.62481
+MUSETT_T1_DSSD_X26_E_Zero_Dispersion -2.54779
+MUSETT_T1_DSSD_X27_E_Zero_Dispersion -6.29276
+MUSETT_T1_DSSD_X28_E_Zero_Dispersion -1.73424
+MUSETT_T1_DSSD_X29_E_Zero_Dispersion -5.12994
+MUSETT_T1_DSSD_X30_E_Zero_Dispersion -7.07016
+MUSETT_T1_DSSD_X31_E_Zero_Dispersion -7.06883
+MUSETT_T1_DSSD_X32_E_Zero_Dispersion -1.75746
+MUSETT_T1_DSSD_X33_E_Zero_Dispersion -0.825512
+MUSETT_T1_DSSD_X34_E_Zero_Dispersion -4.68256
+MUSETT_T1_DSSD_X35_E_Zero_Dispersion 9.36896
+MUSETT_T1_DSSD_X36_E_Zero_Dispersion -6.86266
+MUSETT_T1_DSSD_X37_E_Zero_Dispersion -5.58357
+MUSETT_T1_DSSD_X38_E_Zero_Dispersion -10.959
+MUSETT_T1_DSSD_X39_E_Zero_Dispersion -0.0687966
+MUSETT_T1_DSSD_X40_E_Zero_Dispersion -9.99784
+MUSETT_T1_DSSD_X41_E_Zero_Dispersion -2.44016
+MUSETT_T1_DSSD_X42_E_Zero_Dispersion -4.94577
+MUSETT_T1_DSSD_X43_E_Zero_Dispersion 7.75454
+MUSETT_T1_DSSD_X44_E_Zero_Dispersion -4.41858
+MUSETT_T1_DSSD_X45_E_Zero_Dispersion -6.63503
+MUSETT_T1_DSSD_X46_E_Zero_Dispersion -8.18599
+MUSETT_T1_DSSD_X47_E_Zero_Dispersion -1.05895
+MUSETT_T1_DSSD_X48_E_Zero_Dispersion -5.06197
+MUSETT_T1_DSSD_X49_E_Zero_Dispersion -6.10946
+MUSETT_T1_DSSD_X50_E_Zero_Dispersion -4.98572
+MUSETT_T1_DSSD_X51_E_Zero_Dispersion -6.33386
+MUSETT_T1_DSSD_X52_E_Zero_Dispersion -5.48155
+MUSETT_T1_DSSD_X53_E_Zero_Dispersion -2.95043
+MUSETT_T1_DSSD_X54_E_Zero_Dispersion -4.24495
+MUSETT_T1_DSSD_X55_E_Zero_Dispersion -5.98882
+MUSETT_T1_DSSD_X56_E_Zero_Dispersion -3.2979
+MUSETT_T1_DSSD_X57_E_Zero_Dispersion -4.38577
+MUSETT_T1_DSSD_X58_E_Zero_Dispersion -4.43741
+MUSETT_T1_DSSD_X59_E_Zero_Dispersion -3.03098
+MUSETT_T1_DSSD_X60_E_Zero_Dispersion -4.15964
+MUSETT_T1_DSSD_X61_E_Zero_Dispersion -4.25378
+MUSETT_T1_DSSD_X62_E_Zero_Dispersion -5.22603
+MUSETT_T1_DSSD_X63_E_Zero_Dispersion -3.23753
+MUSETT_T1_DSSD_X64_E_Zero_Dispersion -2.97709
+MUSETT_T1_DSSD_X65_E_Zero_Dispersion -4.39933
+MUSETT_T1_DSSD_X66_E_Zero_Dispersion -0.765858
+MUSETT_T1_DSSD_X67_E_Zero_Dispersion -5.17521
+MUSETT_T1_DSSD_X68_E_Zero_Dispersion 1.08472
+MUSETT_T1_DSSD_X69_E_Zero_Dispersion -4.06467
+MUSETT_T1_DSSD_X70_E_Zero_Dispersion -9.18942
+MUSETT_T1_DSSD_X71_E_Zero_Dispersion -2.43993
+MUSETT_T1_DSSD_X72_E_Zero_Dispersion -3.6973
+MUSETT_T1_DSSD_X73_E_Zero_Dispersion 1.11852
+MUSETT_T1_DSSD_X74_E_Zero_Dispersion 0.0432011
+MUSETT_T1_DSSD_X75_E_Zero_Dispersion 0.838378
+MUSETT_T1_DSSD_X76_E_Zero_Dispersion -1.66996
+MUSETT_T1_DSSD_X77_E_Zero_Dispersion -1.99084
+MUSETT_T1_DSSD_X78_E_Zero_Dispersion -8.34532
+MUSETT_T1_DSSD_X79_E_Zero_Dispersion 0.627745
+MUSETT_T1_DSSD_X80_E_Zero_Dispersion -2.60163
+MUSETT_T1_DSSD_X81_E_Zero_Dispersion 0.662357
+MUSETT_T1_DSSD_X82_E_Zero_Dispersion -2.24635
+MUSETT_T1_DSSD_X83_E_Zero_Dispersion -3.90974
+MUSETT_T1_DSSD_X84_E_Zero_Dispersion -0.0795075
+MUSETT_T1_DSSD_X85_E_Zero_Dispersion 0.988812
+MUSETT_T1_DSSD_X86_E_Zero_Dispersion -7.12063
+MUSETT_T1_DSSD_X87_E_Zero_Dispersion -7.15203
+MUSETT_T1_DSSD_X88_E_Zero_Dispersion 2.79429
+MUSETT_T1_DSSD_X89_E_Zero_Dispersion -2.5303
+MUSETT_T1_DSSD_X90_E_Zero_Dispersion 1.09268
+MUSETT_T1_DSSD_X91_E_Zero_Dispersion -1.25755
+MUSETT_T1_DSSD_X92_E_Zero_Dispersion -4.78431
+MUSETT_T1_DSSD_X93_E_Zero_Dispersion -0.296209
+MUSETT_T1_DSSD_X94_E_Zero_Dispersion 2.9226
+MUSETT_T1_DSSD_X95_E_Zero_Dispersion -7.09196
+MUSETT_T1_DSSD_X96_E_Zero_Dispersion -6.70346
+MUSETT_T1_DSSD_X97_E_Zero_Dispersion -3.77243
+MUSETT_T1_DSSD_X98_E_Zero_Dispersion -3.55
+MUSETT_T1_DSSD_X99_E_Zero_Dispersion -4.7306
+MUSETT_T1_DSSD_X100_E_Zero_Dispersion -3.70206
+MUSETT_T1_DSSD_X101_E_Zero_Dispersion -2.03397
+MUSETT_T1_DSSD_X102_E_Zero_Dispersion -4.56362
+MUSETT_T1_DSSD_X103_E_Zero_Dispersion -1.50341
+MUSETT_T1_DSSD_X104_E_Zero_Dispersion -4.65139
+MUSETT_T1_DSSD_X105_E_Zero_Dispersion -2.58858
+MUSETT_T1_DSSD_X106_E_Zero_Dispersion -3.95507
+MUSETT_T1_DSSD_X107_E_Zero_Dispersion -1.66488
+MUSETT_T1_DSSD_X108_E_Zero_Dispersion -3.35039
+MUSETT_T1_DSSD_X109_E_Zero_Dispersion -2.48819
+MUSETT_T1_DSSD_X110_E_Zero_Dispersion -3.0314
+MUSETT_T1_DSSD_X111_E_Zero_Dispersion -3.38841
+MUSETT_T1_DSSD_X112_E_Zero_Dispersion -0.641331
+MUSETT_T1_DSSD_X113_E_Zero_Dispersion -1.76825
+MUSETT_T1_DSSD_X114_E_Zero_Dispersion -2.63496
+MUSETT_T1_DSSD_X115_E_Zero_Dispersion -3.31573
+MUSETT_T1_DSSD_X116_E_Zero_Dispersion -1.54376
+MUSETT_T1_DSSD_X117_E_Zero_Dispersion -2.102
+MUSETT_T1_DSSD_X118_E_Zero_Dispersion -0.370533
+MUSETT_T1_DSSD_X119_E_Zero_Dispersion -4.01352
+MUSETT_T1_DSSD_X120_E_Zero_Dispersion -4.20468
+MUSETT_T1_DSSD_X121_E_Zero_Dispersion -4.47258
+MUSETT_T1_DSSD_X122_E_Zero_Dispersion -3.22979
+MUSETT_T1_DSSD_X123_E_Zero_Dispersion -4.98259
+MUSETT_T1_DSSD_X124_E_Zero_Dispersion -5.54173
+MUSETT_T1_DSSD_X125_E_Zero_Dispersion -4.71733
+MUSETT_T1_DSSD_X126_E_Zero_Dispersion -1.51981
+MUSETT_T1_DSSD_X127_E_Zero_Dispersion -2.8288
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/latex/double_alpha_run_0274_X_MM1_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/latex/double_alpha_run_0274_X_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..a4bb552c18f9bd933b86bda8de52a06f4ece6722
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/latex/double_alpha_run_0274_X_MM1_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.04129
+
+Sigma fit sigma: 0.593411
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..92a5f108ce207d52baeea155c51fab4a6653745a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E -62.5366 0.00763956
+MUSETT_T2_DSSD_X1_E -62.6099 0.00763888
+MUSETT_T2_DSSD_X2_E -62.823 0.00766708
+MUSETT_T2_DSSD_X3_E -62.257 0.00759549
+MUSETT_T2_DSSD_X4_E -62.0597 0.00757342
+MUSETT_T2_DSSD_X5_E -62.5307 0.00763323
+MUSETT_T2_DSSD_X6_E -62.3807 0.00761398
+MUSETT_T2_DSSD_X7_E -62.9375 0.0076789
+MUSETT_T2_DSSD_X8_E -62.9224 0.00767896
+MUSETT_T2_DSSD_X9_E -62.1614 0.00758679
+MUSETT_T2_DSSD_X10_E -62.4417 0.00762037
+MUSETT_T2_DSSD_X11_E -62.4249 0.0076183
+MUSETT_T2_DSSD_X12_E -62.5094 0.00763316
+MUSETT_T2_DSSD_X13_E -62.5081 0.0076287
+MUSETT_T2_DSSD_X14_E -62.5989 0.00763997
+MUSETT_T2_DSSD_X15_E -63.3009 0.00773126
+MUSETT_T2_DSSD_X16_E -62.2936 0.00760052
+MUSETT_T2_DSSD_X17_E -61.672 0.00752836
+MUSETT_T2_DSSD_X18_E -61.6376 0.00752157
+MUSETT_T2_DSSD_X19_E -61.5695 0.00751193
+MUSETT_T2_DSSD_X20_E -61.5665 0.0075144
+MUSETT_T2_DSSD_X21_E -62.4688 0.00762107
+MUSETT_T2_DSSD_X22_E -62.1354 0.00758375
+MUSETT_T2_DSSD_X23_E -61.8155 0.00754313
+MUSETT_T2_DSSD_X24_E -61.4306 0.00749834
+MUSETT_T2_DSSD_X25_E -61.9883 0.00756594
+MUSETT_T2_DSSD_X26_E -61.8156 0.00754772
+MUSETT_T2_DSSD_X27_E -61.7444 0.00753541
+MUSETT_T2_DSSD_X28_E -61.7334 0.00753213
+MUSETT_T2_DSSD_X29_E -61.4228 0.00749322
+MUSETT_T2_DSSD_X30_E -62.1977 0.00759248
+MUSETT_T2_DSSD_X31_E -61.6447 0.00752122
+MUSETT_T2_DSSD_X32_E -58.935 0.00719311
+MUSETT_T2_DSSD_X33_E -58.1147 0.00709182
+MUSETT_T2_DSSD_X34_E -58.5596 0.007148
+MUSETT_T2_DSSD_X35_E -58.5961 0.00714764
+MUSETT_T2_DSSD_X36_E -58.3105 0.00711447
+MUSETT_T2_DSSD_X37_E -58.0487 0.00708602
+MUSETT_T2_DSSD_X38_E -58.1502 0.0070988
+MUSETT_T2_DSSD_X39_E -57.7857 0.00705326
+MUSETT_T2_DSSD_X40_E -57.4608 0.00701359
+MUSETT_T2_DSSD_X41_E -58.5375 0.00714392
+MUSETT_T2_DSSD_X42_E -59.0118 0.0071977
+MUSETT_T2_DSSD_X43_E -58.2242 0.00710688
+MUSETT_T2_DSSD_X44_E -58.3352 0.00712354
+MUSETT_T2_DSSD_X45_E -58.3114 0.00712245
+MUSETT_T2_DSSD_X46_E -58.4466 0.00713226
+MUSETT_T2_DSSD_X47_E -58.5104 0.00713991
+MUSETT_T2_DSSD_X48_E -57.8607 0.00705903
+MUSETT_T2_DSSD_X49_E -57.1886 0.00697896
+MUSETT_T2_DSSD_X50_E -58.0113 0.00708101
+MUSETT_T2_DSSD_X51_E -57.7279 0.00704713
+MUSETT_T2_DSSD_X52_E -57.4556 0.00701364
+MUSETT_T2_DSSD_X53_E -57.1649 0.00697518
+MUSETT_T2_DSSD_X54_E -57.8984 0.00706521
+MUSETT_T2_DSSD_X55_E -57.63 0.00703352
+MUSETT_T2_DSSD_X56_E -58.0258 0.00707928
+MUSETT_T2_DSSD_X57_E -57.4642 0.00701702
+MUSETT_T2_DSSD_X58_E -58.132 0.00709186
+MUSETT_T2_DSSD_X59_E -57.1561 0.00697346
+MUSETT_T2_DSSD_X60_E -57.6188 0.00702948
+MUSETT_T2_DSSD_X61_E -56.6504 0.00691451
+MUSETT_T2_DSSD_X62_E -57.3571 0.00700169
+MUSETT_T2_DSSD_X63_E -57.7666 0.00705029
+MUSETT_T2_DSSD_X64_E -63.3097 0.00772569
+MUSETT_T2_DSSD_X65_E -64.9047 0.0079212
+MUSETT_T2_DSSD_X66_E -64.0703 0.0078168
+MUSETT_T2_DSSD_X67_E -63.7681 0.00778096
+MUSETT_T2_DSSD_X68_E 7.39123 0.851608
+MUSETT_T2_DSSD_X69_E -64.3545 0.00785369
+MUSETT_T2_DSSD_X70_E -63.7255 0.00777554
+MUSETT_T2_DSSD_X71_E -63.4889 0.00774685
+MUSETT_T2_DSSD_X72_E -63.5163 0.00774852
+MUSETT_T2_DSSD_X73_E -63.1974 0.00771009
+MUSETT_T2_DSSD_X74_E -63.9963 0.00780668
+MUSETT_T2_DSSD_X75_E -63.7405 0.0077769
+MUSETT_T2_DSSD_X76_E -63.7719 0.00778584
+MUSETT_T2_DSSD_X77_E -63.7168 0.00777911
+MUSETT_T2_DSSD_X78_E -63.5337 0.00775379
+MUSETT_T2_DSSD_X79_E -63.3949 0.00773821
+MUSETT_T2_DSSD_X80_E -63.4539 0.0077397
+MUSETT_T2_DSSD_X81_E -63.4815 0.00774493
+MUSETT_T2_DSSD_X82_E -63.2698 0.00771876
+MUSETT_T2_DSSD_X83_E -63.3573 0.00772905
+MUSETT_T2_DSSD_X84_E -64.1625 0.00782699
+MUSETT_T2_DSSD_X85_E -64.0116 0.00780771
+MUSETT_T2_DSSD_X86_E -64.0772 0.00781423
+MUSETT_T2_DSSD_X87_E -64.0599 0.00781546
+MUSETT_T2_DSSD_X88_E -63.251 0.00771539
+MUSETT_T2_DSSD_X89_E -63.6831 0.00777027
+MUSETT_T2_DSSD_X90_E -63.3564 0.00773379
+MUSETT_T2_DSSD_X91_E -63.787 0.00778135
+MUSETT_T2_DSSD_X92_E -63.3512 0.00773017
+MUSETT_T2_DSSD_X93_E -64.7604 0.00790006
+MUSETT_T2_DSSD_X94_E -64.0132 0.00780733
+MUSETT_T2_DSSD_X95_E -63.8549 0.00778867
+MUSETT_T2_DSSD_X96_E -59.0282 0.00720288
+MUSETT_T2_DSSD_X97_E -58.4936 0.00713811
+MUSETT_T2_DSSD_X98_E -58.4712 0.0071327
+MUSETT_T2_DSSD_X99_E -58.4859 0.00713993
+MUSETT_T2_DSSD_X100_E -59.3214 0.00723965
+MUSETT_T2_DSSD_X101_E -59.3697 0.00724433
+MUSETT_T2_DSSD_X102_E -58.6853 0.00716351
+MUSETT_T2_DSSD_X103_E -59.023 0.00720218
+MUSETT_T2_DSSD_X104_E -58.8858 0.00718901
+MUSETT_T2_DSSD_X105_E -59.0599 0.00720698
+MUSETT_T2_DSSD_X106_E -58.7339 0.00716764
+MUSETT_T2_DSSD_X107_E -59.1791 0.00721879
+MUSETT_T2_DSSD_X108_E -58.8627 0.00718154
+MUSETT_T2_DSSD_X109_E -60.4055 0.00737306
+MUSETT_T2_DSSD_X110_E -59.0673 0.00720612
+MUSETT_T2_DSSD_X111_E -58.3996 0.00712943
+MUSETT_T2_DSSD_X112_E -59.447 0.00725194
+MUSETT_T2_DSSD_X113_E -59.4328 0.00725039
+MUSETT_T2_DSSD_X114_E -59.8168 0.00729738
+MUSETT_T2_DSSD_X115_E -59.2689 0.0072298
+MUSETT_T2_DSSD_X116_E -59.8131 0.00729784
+MUSETT_T2_DSSD_X117_E -59.9981 0.00732151
+MUSETT_T2_DSSD_X118_E -59.5137 0.00726182
+MUSETT_T2_DSSD_X119_E -59.3863 0.00724848
+MUSETT_T2_DSSD_X120_E -59.9252 0.0073143
+MUSETT_T2_DSSD_X121_E -58.732 0.00716699
+MUSETT_T2_DSSD_X122_E -59.0078 0.00720103
+MUSETT_T2_DSSD_X123_E -59.1915 0.00722497
+MUSETT_T2_DSSD_X124_E -59.0543 0.00720394
+MUSETT_T2_DSSD_X125_E -58.9019 0.00718805
+MUSETT_T2_DSSD_X126_E -59.23 0.00722589
+MUSETT_T2_DSSD_X127_E -59.1923 0.00722341
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..2175ed5a50a587cb99ab47570237c02d69c6fcaa
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/Cal_Str_X_E_MM2.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E_Zero_Dispersion 6.11899
+MUSETT_T2_DSSD_X1_E_Zero_Dispersion -4.20805
+MUSETT_T2_DSSD_X2_E_Zero_Dispersion -1.86488
+MUSETT_T2_DSSD_X3_E_Zero_Dispersion -4.58098
+MUSETT_T2_DSSD_X4_E_Zero_Dispersion -2.40657
+MUSETT_T2_DSSD_X5_E_Zero_Dispersion 0.0920053
+MUSETT_T2_DSSD_X6_E_Zero_Dispersion -0.910839
+MUSETT_T2_DSSD_X7_E_Zero_Dispersion -4.15844
+MUSETT_T2_DSSD_X8_E_Zero_Dispersion -2.1288
+MUSETT_T2_DSSD_X9_E_Zero_Dispersion -1.37912
+MUSETT_T2_DSSD_X10_E_Zero_Dispersion -2.05567
+MUSETT_T2_DSSD_X11_E_Zero_Dispersion -2.07325
+MUSETT_T2_DSSD_X12_E_Zero_Dispersion 2.81111
+MUSETT_T2_DSSD_X13_E_Zero_Dispersion -1.80673
+MUSETT_T2_DSSD_X14_E_Zero_Dispersion -1.60517
+MUSETT_T2_DSSD_X15_E_Zero_Dispersion 4.34084
+MUSETT_T2_DSSD_X16_E_Zero_Dispersion -3.96451
+MUSETT_T2_DSSD_X17_E_Zero_Dispersion 0.0445557
+MUSETT_T2_DSSD_X18_E_Zero_Dispersion -2.78144
+MUSETT_T2_DSSD_X19_E_Zero_Dispersion -4.22976
+MUSETT_T2_DSSD_X20_E_Zero_Dispersion -1.13585
+MUSETT_T2_DSSD_X21_E_Zero_Dispersion -4.86085
+MUSETT_T2_DSSD_X22_E_Zero_Dispersion -1.23012
+MUSETT_T2_DSSD_X23_E_Zero_Dispersion -2.93315
+MUSETT_T2_DSSD_X24_E_Zero_Dispersion -0.567119
+MUSETT_T2_DSSD_X25_E_Zero_Dispersion -1.08228
+MUSETT_T2_DSSD_X26_E_Zero_Dispersion 2.03054
+MUSETT_T2_DSSD_X27_E_Zero_Dispersion -1.8977
+MUSETT_T2_DSSD_X28_E_Zero_Dispersion -4.00109
+MUSETT_T2_DSSD_X29_E_Zero_Dispersion -5.10994
+MUSETT_T2_DSSD_X30_E_Zero_Dispersion -0.0205928
+MUSETT_T2_DSSD_X31_E_Zero_Dispersion -4.09755
+MUSETT_T2_DSSD_X32_E_Zero_Dispersion -1.25514
+MUSETT_T2_DSSD_X33_E_Zero_Dispersion -2.61227
+MUSETT_T2_DSSD_X34_E_Zero_Dispersion -0.440474
+MUSETT_T2_DSSD_X35_E_Zero_Dispersion -5.95833
+MUSETT_T2_DSSD_X36_E_Zero_Dispersion -4.04569
+MUSETT_T2_DSSD_X37_E_Zero_Dispersion 0.0077729
+MUSETT_T2_DSSD_X38_E_Zero_Dispersion 0.445825
+MUSETT_T2_DSSD_X39_E_Zero_Dispersion -0.760995
+MUSETT_T2_DSSD_X40_E_Zero_Dispersion -0.779193
+MUSETT_T2_DSSD_X41_E_Zero_Dispersion -2.03756
+MUSETT_T2_DSSD_X42_E_Zero_Dispersion -6.7056
+MUSETT_T2_DSSD_X43_E_Zero_Dispersion -0.653277
+MUSETT_T2_DSSD_X44_E_Zero_Dispersion 2.92757
+MUSETT_T2_DSSD_X45_E_Zero_Dispersion 5.00509
+MUSETT_T2_DSSD_X46_E_Zero_Dispersion -2.68399
+MUSETT_T2_DSSD_X47_E_Zero_Dispersion -2.83135
+MUSETT_T2_DSSD_X48_E_Zero_Dispersion -4.68951
+MUSETT_T2_DSSD_X49_E_Zero_Dispersion -2.42602
+MUSETT_T2_DSSD_X50_E_Zero_Dispersion -0.516333
+MUSETT_T2_DSSD_X51_E_Zero_Dispersion 0.312368
+MUSETT_T2_DSSD_X52_E_Zero_Dispersion 0.0122945
+MUSETT_T2_DSSD_X53_E_Zero_Dispersion -3.47949
+MUSETT_T2_DSSD_X54_E_Zero_Dispersion -2.87002
+MUSETT_T2_DSSD_X55_E_Zero_Dispersion -1.61444
+MUSETT_T2_DSSD_X56_E_Zero_Dispersion -4.5746
+MUSETT_T2_DSSD_X57_E_Zero_Dispersion 2.74437
+MUSETT_T2_DSSD_X58_E_Zero_Dispersion -5.00423
+MUSETT_T2_DSSD_X59_E_Zero_Dispersion -4.23142
+MUSETT_T2_DSSD_X60_E_Zero_Dispersion -4.72474
+MUSETT_T2_DSSD_X61_E_Zero_Dispersion -0.975189
+MUSETT_T2_DSSD_X62_E_Zero_Dispersion 0.109618
+MUSETT_T2_DSSD_X63_E_Zero_Dispersion -1.50696
+MUSETT_T2_DSSD_X64_E_Zero_Dispersion -2.70853
+MUSETT_T2_DSSD_X65_E_Zero_Dispersion -1.80166
+MUSETT_T2_DSSD_X66_E_Zero_Dispersion -4.48537
+MUSETT_T2_DSSD_X67_E_Zero_Dispersion -3.40495
+MUSETT_T2_DSSD_X68_E_Zero_Dispersion 8200.68
+MUSETT_T2_DSSD_X69_E_Zero_Dispersion -2.17963
+MUSETT_T2_DSSD_X70_E_Zero_Dispersion -3.6384
+MUSETT_T2_DSSD_X71_E_Zero_Dispersion -3.43843
+MUSETT_T2_DSSD_X72_E_Zero_Dispersion -5.22173
+MUSETT_T2_DSSD_X73_E_Zero_Dispersion -4.72123
+MUSETT_T2_DSSD_X74_E_Zero_Dispersion -5.63015
+MUSETT_T2_DSSD_X75_E_Zero_Dispersion -4.13665
+MUSETT_T2_DSSD_X76_E_Zero_Dispersion 1.24523
+MUSETT_T2_DSSD_X77_E_Zero_Dispersion 1.23439
+MUSETT_T2_DSSD_X78_E_Zero_Dispersion -1.89727
+MUSETT_T2_DSSD_X79_E_Zero_Dispersion -0.447251
+MUSETT_T2_DSSD_X80_E_Zero_Dispersion -6.49207
+MUSETT_T2_DSSD_X81_E_Zero_Dispersion -4.52581
+MUSETT_T2_DSSD_X82_E_Zero_Dispersion -4.8822
+MUSETT_T2_DSSD_X83_E_Zero_Dispersion -5.2954
+MUSETT_T2_DSSD_X84_E_Zero_Dispersion -5.59878
+MUSETT_T2_DSSD_X85_E_Zero_Dispersion -6.51265
+MUSETT_T2_DSSD_X86_E_Zero_Dispersion -8.06397
+MUSETT_T2_DSSD_X87_E_Zero_Dispersion -4.56011
+MUSETT_T2_DSSD_X88_E_Zero_Dispersion -6.02613
+MUSETT_T2_DSSD_X89_E_Zero_Dispersion -3.74084
+MUSETT_T2_DSSD_X90_E_Zero_Dispersion -0.158172
+MUSETT_T2_DSSD_X91_E_Zero_Dispersion -5.41945
+MUSETT_T2_DSSD_X92_E_Zero_Dispersion -3.32195
+MUSETT_T2_DSSD_X93_E_Zero_Dispersion -5.45422
+MUSETT_T2_DSSD_X94_E_Zero_Dispersion -7.11956
+MUSETT_T2_DSSD_X95_E_Zero_Dispersion -6.43228
+MUSETT_T2_DSSD_X96_E_Zero_Dispersion -3.0892
+MUSETT_T2_DSSD_X97_E_Zero_Dispersion -2.5437
+MUSETT_T2_DSSD_X98_E_Zero_Dispersion -5.63205
+MUSETT_T2_DSSD_X99_E_Zero_Dispersion 0.622242
+MUSETT_T2_DSSD_X100_E_Zero_Dispersion -1.95818
+MUSETT_T2_DSSD_X101_E_Zero_Dispersion -3.3241
+MUSETT_T2_DSSD_X102_E_Zero_Dispersion -0.260072
+MUSETT_T2_DSSD_X103_E_Zero_Dispersion -3.16489
+MUSETT_T2_DSSD_X104_E_Zero_Dispersion 0.907419
+MUSETT_T2_DSSD_X105_E_Zero_Dispersion -2.81874
+MUSETT_T2_DSSD_X106_E_Zero_Dispersion -2.31876
+MUSETT_T2_DSSD_X107_E_Zero_Dispersion -5.91743
+MUSETT_T2_DSSD_X108_E_Zero_Dispersion -4.3861
+MUSETT_T2_DSSD_X109_E_Zero_Dispersion -0.733514
+MUSETT_T2_DSSD_X110_E_Zero_Dispersion -4.8252
+MUSETT_T2_DSSD_X111_E_Zero_Dispersion 0.653802
+MUSETT_T2_DSSD_X112_E_Zero_Dispersion -5.38964
+MUSETT_T2_DSSD_X113_E_Zero_Dispersion -5.18522
+MUSETT_T2_DSSD_X114_E_Zero_Dispersion -5.01951
+MUSETT_T2_DSSD_X115_E_Zero_Dispersion -5.85542
+MUSETT_T2_DSSD_X116_E_Zero_Dispersion -3.99512
+MUSETT_T2_DSSD_X117_E_Zero_Dispersion -2.76824
+MUSETT_T2_DSSD_X118_E_Zero_Dispersion -3.42856
+MUSETT_T2_DSSD_X119_E_Zero_Dispersion -0.924597
+MUSETT_T2_DSSD_X120_E_Zero_Dispersion -0.889406
+MUSETT_T2_DSSD_X121_E_Zero_Dispersion -2.79347
+MUSETT_T2_DSSD_X122_E_Zero_Dispersion -2.34855
+MUSETT_T2_DSSD_X123_E_Zero_Dispersion -0.634432
+MUSETT_T2_DSSD_X124_E_Zero_Dispersion -5.50355
+MUSETT_T2_DSSD_X125_E_Zero_Dispersion -2.4172
+MUSETT_T2_DSSD_X126_E_Zero_Dispersion -4.91707
+MUSETT_T2_DSSD_X127_E_Zero_Dispersion -2.51241
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/latex/double_alpha_run_0274_X_MM2_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/latex/double_alpha_run_0274_X_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..ac2735d3cb8597e3fabac45b3f77c8621519a7f6
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/latex/double_alpha_run_0274_X_MM2_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+68 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.14784
+
+Sigma fit sigma: 0.618476
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..f8e4c59253891d9021ba3560f9481f1d2833aa18
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E -61.7475 0.00754365
+MUSETT_T3_DSSD_X1_E -61.3279 0.00749158
+MUSETT_T3_DSSD_X2_E -61.6596 0.0075318
+MUSETT_T3_DSSD_X3_E -61.7171 0.00753951
+MUSETT_T3_DSSD_X4_E -61.4553 0.00750656
+MUSETT_T3_DSSD_X5_E -61.3762 0.00749656
+MUSETT_T3_DSSD_X6_E -61.5322 0.00751647
+MUSETT_T3_DSSD_X7_E -61.2036 0.0074747
+MUSETT_T3_DSSD_X8_E -61.3418 0.00749155
+MUSETT_T3_DSSD_X9_E -61.3643 0.00749498
+MUSETT_T3_DSSD_X10_E -61.5146 0.00751027
+MUSETT_T3_DSSD_X11_E -62.5512 0.00763887
+MUSETT_T3_DSSD_X12_E -61.3127 0.00748672
+MUSETT_T3_DSSD_X13_E -61.5248 0.00751198
+MUSETT_T3_DSSD_X14_E -61.2067 0.00747599
+MUSETT_T3_DSSD_X15_E -62.199 0.00759553
+MUSETT_T3_DSSD_X16_E -63.291 0.00772834
+MUSETT_T3_DSSD_X17_E -62.6431 0.00764987
+MUSETT_T3_DSSD_X18_E -62.5264 0.00763546
+MUSETT_T3_DSSD_X19_E -62.54 0.00763491
+MUSETT_T3_DSSD_X20_E -62.2248 0.00759793
+MUSETT_T3_DSSD_X21_E -62.5934 0.00764571
+MUSETT_T3_DSSD_X22_E -63.1363 0.00771819
+MUSETT_T3_DSSD_X23_E -63.378 0.00773985
+MUSETT_T3_DSSD_X24_E -62.0995 0.00758736
+MUSETT_T3_DSSD_X25_E -63.1387 0.00770998
+MUSETT_T3_DSSD_X26_E -63.0598 0.00770204
+MUSETT_T3_DSSD_X27_E -62.7893 0.00766932
+MUSETT_T3_DSSD_X28_E -62.9673 0.00769104
+MUSETT_T3_DSSD_X29_E -62.9568 0.00769116
+MUSETT_T3_DSSD_X30_E -63.9027 0.00780659
+MUSETT_T3_DSSD_X31_E -62.8794 0.00768443
+MUSETT_T3_DSSD_X32_E -58.1027 0.0071075
+MUSETT_T3_DSSD_X33_E -57.9939 0.00709412
+MUSETT_T3_DSSD_X34_E -56.9563 0.00696692
+MUSETT_T3_DSSD_X35_E -57.2356 0.00699925
+MUSETT_T3_DSSD_X36_E -57.8181 0.00706923
+MUSETT_T3_DSSD_X37_E -58.0886 0.00710147
+MUSETT_T3_DSSD_X38_E -58.2613 0.00712383
+MUSETT_T3_DSSD_X39_E -57.8152 0.00706775
+MUSETT_T3_DSSD_X40_E -58.4241 0.00714095
+MUSETT_T3_DSSD_X41_E -57.8933 0.0070794
+MUSETT_T3_DSSD_X42_E -58.0439 0.00709692
+MUSETT_T3_DSSD_X43_E 7.39123 0.851608
+MUSETT_T3_DSSD_X44_E -58.3014 0.00712825
+MUSETT_T3_DSSD_X45_E -58.706 0.00717278
+MUSETT_T3_DSSD_X46_E -58.282 0.0071191
+MUSETT_T3_DSSD_X47_E -58.5478 0.00715315
+MUSETT_T3_DSSD_X48_E -56.8326 0.00694268
+MUSETT_T3_DSSD_X49_E -56.5904 0.00691381
+MUSETT_T3_DSSD_X50_E -56.2694 0.00687536
+MUSETT_T3_DSSD_X51_E -56.3974 0.00689359
+MUSETT_T3_DSSD_X52_E -56.0544 0.00685429
+MUSETT_T3_DSSD_X53_E -56.5244 0.00691084
+MUSETT_T3_DSSD_X54_E -55.9116 0.00683458
+MUSETT_T3_DSSD_X55_E -56.3099 0.00688659
+MUSETT_T3_DSSD_X56_E -56.8089 0.00694464
+MUSETT_T3_DSSD_X57_E -55.5634 0.00679492
+MUSETT_T3_DSSD_X58_E -56.3701 0.00689601
+MUSETT_T3_DSSD_X59_E -56.0208 0.00685211
+MUSETT_T3_DSSD_X60_E -55.2121 0.00675438
+MUSETT_T3_DSSD_X61_E -55.8207 0.00682687
+MUSETT_T3_DSSD_X62_E -55.6304 0.00680525
+MUSETT_T3_DSSD_X63_E -55.1928 0.00675491
+MUSETT_T3_DSSD_X64_E -63.9696 0.00780931
+MUSETT_T3_DSSD_X65_E -63.3555 0.00773855
+MUSETT_T3_DSSD_X66_E -63.1771 0.00771551
+MUSETT_T3_DSSD_X67_E -63.5098 0.00775306
+MUSETT_T3_DSSD_X68_E -63.3882 0.00773862
+MUSETT_T3_DSSD_X69_E -63.0461 0.00769634
+MUSETT_T3_DSSD_X70_E -64.0234 0.00781715
+MUSETT_T3_DSSD_X71_E -62.1448 0.00758861
+MUSETT_T3_DSSD_X72_E -62.356 0.00761402
+MUSETT_T3_DSSD_X73_E -62.6019 0.00764474
+MUSETT_T3_DSSD_X74_E -62.8733 0.00767594
+MUSETT_T3_DSSD_X75_E -63.1537 0.00771003
+MUSETT_T3_DSSD_X76_E -63.7982 0.00778975
+MUSETT_T3_DSSD_X77_E -62.1866 0.0075927
+MUSETT_T3_DSSD_X78_E -62.3106 0.00760775
+MUSETT_T3_DSSD_X79_E -62.7171 0.00765713
+MUSETT_T3_DSSD_X80_E -62.2113 0.0075955
+MUSETT_T3_DSSD_X81_E -62.4889 0.00763009
+MUSETT_T3_DSSD_X82_E -62.433 0.00762271
+MUSETT_T3_DSSD_X83_E -62.3816 0.00761606
+MUSETT_T3_DSSD_X84_E -61.8228 0.0075474
+MUSETT_T3_DSSD_X85_E -62.0885 0.00758168
+MUSETT_T3_DSSD_X86_E -62.1847 0.00759208
+MUSETT_T3_DSSD_X87_E -61.7134 0.00753717
+MUSETT_T3_DSSD_X88_E -61.9746 0.00756738
+MUSETT_T3_DSSD_X89_E -62.3044 0.00760928
+MUSETT_T3_DSSD_X90_E -62.1099 0.00758286
+MUSETT_T3_DSSD_X91_E -61.5959 0.00752284
+MUSETT_T3_DSSD_X92_E -62.3641 0.00761711
+MUSETT_T3_DSSD_X93_E -62.2005 0.00759558
+MUSETT_T3_DSSD_X94_E -61.8202 0.00754895
+MUSETT_T3_DSSD_X95_E -62.1497 0.00758769
+MUSETT_T3_DSSD_X96_E -55.9035 0.00682462
+MUSETT_T3_DSSD_X97_E -55.4954 0.00677857
+MUSETT_T3_DSSD_X98_E -54.9585 0.00670973
+MUSETT_T3_DSSD_X99_E -55.3775 0.00676383
+MUSETT_T3_DSSD_X100_E -55.7181 0.00680553
+MUSETT_T3_DSSD_X101_E -55.6337 0.00679291
+MUSETT_T3_DSSD_X102_E -55.6556 0.00679656
+MUSETT_T3_DSSD_X103_E -54.9843 0.00671304
+MUSETT_T3_DSSD_X104_E -55.3714 0.00675929
+MUSETT_T3_DSSD_X105_E -55.6203 0.00679297
+MUSETT_T3_DSSD_X106_E -55.651 0.00679392
+MUSETT_T3_DSSD_X107_E -55.5623 0.00678286
+MUSETT_T3_DSSD_X108_E -56.4102 0.00689092
+MUSETT_T3_DSSD_X109_E -55.8281 0.00681951
+MUSETT_T3_DSSD_X110_E -55.6717 0.00679537
+MUSETT_T3_DSSD_X111_E -55.5708 0.0067833
+MUSETT_T3_DSSD_X112_E -57.0662 0.00697157
+MUSETT_T3_DSSD_X113_E -56.5305 0.00690489
+MUSETT_T3_DSSD_X114_E -57.4322 0.00701067
+MUSETT_T3_DSSD_X115_E -56.6085 0.00691311
+MUSETT_T3_DSSD_X116_E -57.6268 0.00703901
+MUSETT_T3_DSSD_X117_E -56.8313 0.00694126
+MUSETT_T3_DSSD_X118_E -57.0933 0.00697294
+MUSETT_T3_DSSD_X119_E -55.8642 0.00682494
+MUSETT_T3_DSSD_X120_E -56.4873 0.00689798
+MUSETT_T3_DSSD_X121_E -57.4399 0.00701642
+MUSETT_T3_DSSD_X122_E -57.0316 0.00696599
+MUSETT_T3_DSSD_X123_E -56.5839 0.00691232
+MUSETT_T3_DSSD_X124_E -57.4735 0.0070168
+MUSETT_T3_DSSD_X125_E -56.4109 0.00688805
+MUSETT_T3_DSSD_X126_E -57.6384 0.00703652
+MUSETT_T3_DSSD_X127_E -56.1553 0.00685853
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..b5fa204258284f9cd6b57600d0dc56f3b075c029
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/Cal_Str_X_E_MM3.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E_Zero_Dispersion 6.63254
+MUSETT_T3_DSSD_X1_E_Zero_Dispersion 5.74949
+MUSETT_T3_DSSD_X2_E_Zero_Dispersion 5.42348
+MUSETT_T3_DSSD_X3_E_Zero_Dispersion 6.18133
+MUSETT_T3_DSSD_X4_E_Zero_Dispersion 5.11964
+MUSETT_T3_DSSD_X5_E_Zero_Dispersion 4.75466
+MUSETT_T3_DSSD_X6_E_Zero_Dispersion 5.68136
+MUSETT_T3_DSSD_X7_E_Zero_Dispersion 3.9033
+MUSETT_T3_DSSD_X8_E_Zero_Dispersion 3.86185
+MUSETT_T3_DSSD_X9_E_Zero_Dispersion 4.605
+MUSETT_T3_DSSD_X10_E_Zero_Dispersion 1.26815
+MUSETT_T3_DSSD_X11_E_Zero_Dispersion 3.4552
+MUSETT_T3_DSSD_X12_E_Zero_Dispersion 2.46614
+MUSETT_T3_DSSD_X13_E_Zero_Dispersion 1.77666
+MUSETT_T3_DSSD_X14_E_Zero_Dispersion 4.88605
+MUSETT_T3_DSSD_X15_E_Zero_Dispersion 3.10354
+MUSETT_T3_DSSD_X16_E_Zero_Dispersion 2.53841
+MUSETT_T3_DSSD_X17_E_Zero_Dispersion 3.22056
+MUSETT_T3_DSSD_X18_E_Zero_Dispersion 3.04206
+MUSETT_T3_DSSD_X19_E_Zero_Dispersion 0.685915
+MUSETT_T3_DSSD_X20_E_Zero_Dispersion 2.29495
+MUSETT_T3_DSSD_X21_E_Zero_Dispersion 5.26527
+MUSETT_T3_DSSD_X22_E_Zero_Dispersion 11.8048
+MUSETT_T3_DSSD_X23_E_Zero_Dispersion 3.45973
+MUSETT_T3_DSSD_X24_E_Zero_Dispersion 7.39581
+MUSETT_T3_DSSD_X25_E_Zero_Dispersion 2.78975
+MUSETT_T3_DSSD_X26_E_Zero_Dispersion 4.58737
+MUSETT_T3_DSSD_X27_E_Zero_Dispersion 4.92463
+MUSETT_T3_DSSD_X28_E_Zero_Dispersion 4.89984
+MUSETT_T3_DSSD_X29_E_Zero_Dispersion 6.39284
+MUSETT_T3_DSSD_X30_E_Zero_Dispersion 6.26056
+MUSETT_T3_DSSD_X31_E_Zero_Dispersion 9.2975
+MUSETT_T3_DSSD_X32_E_Zero_Dispersion 17.1538
+MUSETT_T3_DSSD_X33_E_Zero_Dispersion 17.0711
+MUSETT_T3_DSSD_X34_E_Zero_Dispersion 16.7475
+MUSETT_T3_DSSD_X35_E_Zero_Dispersion 14.6113
+MUSETT_T3_DSSD_X36_E_Zero_Dispersion 13.1613
+MUSETT_T3_DSSD_X37_E_Zero_Dispersion 12.1957
+MUSETT_T3_DSSD_X38_E_Zero_Dispersion 13.6338
+MUSETT_T3_DSSD_X39_E_Zero_Dispersion 11.8618
+MUSETT_T3_DSSD_X40_E_Zero_Dispersion 10.4463
+MUSETT_T3_DSSD_X41_E_Zero_Dispersion 14.2917
+MUSETT_T3_DSSD_X42_E_Zero_Dispersion 13.258
+MUSETT_T3_DSSD_X43_E_Zero_Dispersion 8200.68
+MUSETT_T3_DSSD_X44_E_Zero_Dispersion 13.079
+MUSETT_T3_DSSD_X45_E_Zero_Dispersion 7.44103
+MUSETT_T3_DSSD_X46_E_Zero_Dispersion 5.29528
+MUSETT_T3_DSSD_X47_E_Zero_Dispersion 7.10408
+MUSETT_T3_DSSD_X48_E_Zero_Dispersion 6.02579
+MUSETT_T3_DSSD_X49_E_Zero_Dispersion 6.87837
+MUSETT_T3_DSSD_X50_E_Zero_Dispersion 7.78668
+MUSETT_T3_DSSD_X51_E_Zero_Dispersion 10.8579
+MUSETT_T3_DSSD_X52_E_Zero_Dispersion 14.0069
+MUSETT_T3_DSSD_X53_E_Zero_Dispersion 12.908
+MUSETT_T3_DSSD_X54_E_Zero_Dispersion 11.3155
+MUSETT_T3_DSSD_X55_E_Zero_Dispersion 15.2509
+MUSETT_T3_DSSD_X56_E_Zero_Dispersion 11.7545
+MUSETT_T3_DSSD_X57_E_Zero_Dispersion 14.8099
+MUSETT_T3_DSSD_X58_E_Zero_Dispersion 17.6948
+MUSETT_T3_DSSD_X59_E_Zero_Dispersion 16.2995
+MUSETT_T3_DSSD_X60_E_Zero_Dispersion 17.7334
+MUSETT_T3_DSSD_X61_E_Zero_Dispersion 15.3887
+MUSETT_T3_DSSD_X62_E_Zero_Dispersion 17.36
+MUSETT_T3_DSSD_X63_E_Zero_Dispersion 21.2396
+MUSETT_T3_DSSD_X64_E_Zero_Dispersion 0.54688
+MUSETT_T3_DSSD_X65_E_Zero_Dispersion 5.00404
+MUSETT_T3_DSSD_X66_E_Zero_Dispersion 3.67625
+MUSETT_T3_DSSD_X67_E_Zero_Dispersion 0.418682
+MUSETT_T3_DSSD_X68_E_Zero_Dispersion 0.844769
+MUSETT_T3_DSSD_X69_E_Zero_Dispersion 0.310282
+MUSETT_T3_DSSD_X70_E_Zero_Dispersion 1.88164
+MUSETT_T3_DSSD_X71_E_Zero_Dispersion 2.773
+MUSETT_T3_DSSD_X72_E_Zero_Dispersion 2.36367
+MUSETT_T3_DSSD_X73_E_Zero_Dispersion 3.10533
+MUSETT_T3_DSSD_X74_E_Zero_Dispersion 1.03999
+MUSETT_T3_DSSD_X75_E_Zero_Dispersion 0.882051
+MUSETT_T3_DSSD_X76_E_Zero_Dispersion 1.97499
+MUSETT_T3_DSSD_X77_E_Zero_Dispersion 1.67487
+MUSETT_T3_DSSD_X78_E_Zero_Dispersion 1.59284
+MUSETT_T3_DSSD_X79_E_Zero_Dispersion 1.32705
+MUSETT_T3_DSSD_X80_E_Zero_Dispersion 1.45268
+MUSETT_T3_DSSD_X81_E_Zero_Dispersion 2.21072
+MUSETT_T3_DSSD_X82_E_Zero_Dispersion 1.60635
+MUSETT_T3_DSSD_X83_E_Zero_Dispersion 1.2076
+MUSETT_T3_DSSD_X84_E_Zero_Dispersion 0.732884
+MUSETT_T3_DSSD_X85_E_Zero_Dispersion 2.71973
+MUSETT_T3_DSSD_X86_E_Zero_Dispersion 1.26472
+MUSETT_T3_DSSD_X87_E_Zero_Dispersion 4.12606
+MUSETT_T3_DSSD_X88_E_Zero_Dispersion 2.29194
+MUSETT_T3_DSSD_X89_E_Zero_Dispersion 4.04424
+MUSETT_T3_DSSD_X90_E_Zero_Dispersion 1.16739
+MUSETT_T3_DSSD_X91_E_Zero_Dispersion 4.13851
+MUSETT_T3_DSSD_X92_E_Zero_Dispersion 4.62734
+MUSETT_T3_DSSD_X93_E_Zero_Dispersion 2.96159
+MUSETT_T3_DSSD_X94_E_Zero_Dispersion 2.75865
+MUSETT_T3_DSSD_X95_E_Zero_Dispersion 1.13467
+MUSETT_T3_DSSD_X96_E_Zero_Dispersion 0.560919
+MUSETT_T3_DSSD_X97_E_Zero_Dispersion 5.11095
+MUSETT_T3_DSSD_X98_E_Zero_Dispersion 1.14066
+MUSETT_T3_DSSD_X99_E_Zero_Dispersion 4.70192
+MUSETT_T3_DSSD_X100_E_Zero_Dispersion 4.82997
+MUSETT_T3_DSSD_X101_E_Zero_Dispersion 2.03176
+MUSETT_T3_DSSD_X102_E_Zero_Dispersion 3.20693
+MUSETT_T3_DSSD_X103_E_Zero_Dispersion 1.32489
+MUSETT_T3_DSSD_X104_E_Zero_Dispersion 0.0996645
+MUSETT_T3_DSSD_X105_E_Zero_Dispersion 4.07351
+MUSETT_T3_DSSD_X106_E_Zero_Dispersion 0.709593
+MUSETT_T3_DSSD_X107_E_Zero_Dispersion 0.418541
+MUSETT_T3_DSSD_X108_E_Zero_Dispersion 5.84514
+MUSETT_T3_DSSD_X109_E_Zero_Dispersion 5.46992
+MUSETT_T3_DSSD_X110_E_Zero_Dispersion -0.584243
+MUSETT_T3_DSSD_X111_E_Zero_Dispersion -0.299269
+MUSETT_T3_DSSD_X112_E_Zero_Dispersion 6.43671
+MUSETT_T3_DSSD_X113_E_Zero_Dispersion 4.9844
+MUSETT_T3_DSSD_X114_E_Zero_Dispersion -0.124211
+MUSETT_T3_DSSD_X115_E_Zero_Dispersion 3.4256
+MUSETT_T3_DSSD_X116_E_Zero_Dispersion 5.23201
+MUSETT_T3_DSSD_X117_E_Zero_Dispersion 4.53419
+MUSETT_T3_DSSD_X118_E_Zero_Dispersion 4.16371
+MUSETT_T3_DSSD_X119_E_Zero_Dispersion 6.69004
+MUSETT_T3_DSSD_X120_E_Zero_Dispersion 3.03511
+MUSETT_T3_DSSD_X121_E_Zero_Dispersion 5.50333
+MUSETT_T3_DSSD_X122_E_Zero_Dispersion 4.84654
+MUSETT_T3_DSSD_X123_E_Zero_Dispersion 6.04781
+MUSETT_T3_DSSD_X124_E_Zero_Dispersion 1.15854
+MUSETT_T3_DSSD_X125_E_Zero_Dispersion 2.32906
+MUSETT_T3_DSSD_X126_E_Zero_Dispersion 0.678591
+MUSETT_T3_DSSD_X127_E_Zero_Dispersion 4.34674
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/latex/double_alpha_run_0274_X_MM3_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/latex/double_alpha_run_0274_X_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..052d4c198b5188d9f6165d0051ac816c1e4827da
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/latex/double_alpha_run_0274_X_MM3_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+43 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_X_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 1.90056
+
+Sigma fit sigma: 0.335518
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0e94c581d2f45cea94e846763ede16df8e9cd22d
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_Y0_E 6.82575 -0.844837
+MUSETT_T0_DSSD_Y1_E 59.9396 -0.00731092
+MUSETT_T0_DSSD_Y2_E 60.4106 -0.00736742
+MUSETT_T0_DSSD_Y3_E 60.536 -0.00738222
+MUSETT_T0_DSSD_Y4_E 59.5713 -0.00726647
+MUSETT_T0_DSSD_Y5_E 59.6593 -0.0072751
+MUSETT_T0_DSSD_Y6_E 60.2169 -0.00734415
+MUSETT_T0_DSSD_Y7_E 60.0432 -0.00732455
+MUSETT_T0_DSSD_Y8_E 59.5902 -0.00726598
+MUSETT_T0_DSSD_Y9_E 59.4347 -0.00724787
+MUSETT_T0_DSSD_Y10_E 59.9372 -0.00730993
+MUSETT_T0_DSSD_Y11_E 59.6307 -0.00727372
+MUSETT_T0_DSSD_Y12_E 60.3787 -0.00736332
+MUSETT_T0_DSSD_Y13_E 64.1489 -0.00787871
+MUSETT_T0_DSSD_Y14_E 60.5738 -0.00738797
+MUSETT_T0_DSSD_Y15_E 60.1216 -0.00733002
+MUSETT_T0_DSSD_Y16_E 59.9228 -0.0073087
+MUSETT_T0_DSSD_Y17_E 59.9655 -0.00731221
+MUSETT_T0_DSSD_Y18_E 59.7151 -0.00728067
+MUSETT_T0_DSSD_Y19_E 59.6477 -0.00727435
+MUSETT_T0_DSSD_Y20_E 59.8071 -0.00729347
+MUSETT_T0_DSSD_Y21_E 59.9607 -0.00731324
+MUSETT_T0_DSSD_Y22_E 59.7539 -0.00728791
+MUSETT_T0_DSSD_Y23_E 59.0607 -0.00720123
+MUSETT_T0_DSSD_Y24_E 59.5327 -0.00725816
+MUSETT_T0_DSSD_Y25_E 59.2586 -0.00722739
+MUSETT_T0_DSSD_Y26_E 59.6039 -0.00727089
+MUSETT_T0_DSSD_Y27_E 59.8624 -0.00730066
+MUSETT_T0_DSSD_Y28_E 59.4132 -0.00724484
+MUSETT_T0_DSSD_Y29_E 59.2535 -0.00722877
+MUSETT_T0_DSSD_Y30_E 59.4539 -0.00725365
+MUSETT_T0_DSSD_Y31_E 60.5797 -0.00739042
+MUSETT_T0_DSSD_Y32_E 56.1608 -0.00684825
+MUSETT_T0_DSSD_Y33_E 56.5204 -0.00689187
+MUSETT_T0_DSSD_Y34_E 56.2288 -0.00686031
+MUSETT_T0_DSSD_Y35_E 56.6772 -0.00691344
+MUSETT_T0_DSSD_Y36_E 56.9245 -0.00694145
+MUSETT_T0_DSSD_Y37_E 56.9461 -0.00694672
+MUSETT_T0_DSSD_Y38_E 56.0767 -0.0068407
+MUSETT_T0_DSSD_Y39_E 56.1027 -0.006843
+MUSETT_T0_DSSD_Y40_E 56.5705 -0.00690073
+MUSETT_T0_DSSD_Y41_E 56.1805 -0.00684956
+MUSETT_T0_DSSD_Y42_E 56.2323 -0.00685952
+MUSETT_T0_DSSD_Y43_E 56.1879 -0.00685347
+MUSETT_T0_DSSD_Y44_E 56.4542 -0.00688626
+MUSETT_T0_DSSD_Y45_E 56.549 -0.00689733
+MUSETT_T0_DSSD_Y46_E 57.2559 -0.00698044
+MUSETT_T0_DSSD_Y47_E 56.1545 -0.00684912
+MUSETT_T0_DSSD_Y48_E 57.2081 -0.00697815
+MUSETT_T0_DSSD_Y49_E 56.525 -0.00689257
+MUSETT_T0_DSSD_Y50_E 56.3639 -0.00687465
+MUSETT_T0_DSSD_Y51_E 56.0496 -0.00683669
+MUSETT_T0_DSSD_Y52_E 56.6657 -0.00691036
+MUSETT_T0_DSSD_Y53_E 56.4242 -0.00687821
+MUSETT_T0_DSSD_Y54_E 56.3254 -0.00687194
+MUSETT_T0_DSSD_Y55_E 56.9205 -0.00693805
+MUSETT_T0_DSSD_Y56_E 57.0242 -0.00695791
+MUSETT_T0_DSSD_Y57_E 56.5056 -0.00689519
+MUSETT_T0_DSSD_Y58_E 56.4569 -0.00688479
+MUSETT_T0_DSSD_Y59_E 56.8005 -0.006928
+MUSETT_T0_DSSD_Y60_E 56.6359 -0.00690454
+MUSETT_T0_DSSD_Y61_E 56.5755 -0.00689818
+MUSETT_T0_DSSD_Y62_E 57.045 -0.00695521
+MUSETT_T0_DSSD_Y63_E 57.4402 -0.00700138
+MUSETT_T0_DSSD_Y64_E 60.581 -0.00738974
+MUSETT_T0_DSSD_Y65_E 60.6496 -0.00739714
+MUSETT_T0_DSSD_Y66_E 60.4622 -0.00737333
+MUSETT_T0_DSSD_Y67_E 60.936 -0.00743343
+MUSETT_T0_DSSD_Y68_E 60.0202 -0.00732222
+MUSETT_T0_DSSD_Y69_E 61.036 -0.00744431
+MUSETT_T0_DSSD_Y70_E 60.3324 -0.00735687
+MUSETT_T0_DSSD_Y71_E 60.0203 -0.00732156
+MUSETT_T0_DSSD_Y72_E 61.2337 -0.00746905
+MUSETT_T0_DSSD_Y73_E 60.6202 -0.00739313
+MUSETT_T0_DSSD_Y74_E 60.6822 -0.00740078
+MUSETT_T0_DSSD_Y75_E 60.8037 -0.00741032
+MUSETT_T0_DSSD_Y76_E 60.2306 -0.00734812
+MUSETT_T0_DSSD_Y77_E 60.9684 -0.0074378
+MUSETT_T0_DSSD_Y78_E 61.3278 -0.00748195
+MUSETT_T0_DSSD_Y79_E 60.5917 -0.00738993
+MUSETT_T0_DSSD_Y80_E 61.6875 -0.00751447
+MUSETT_T0_DSSD_Y81_E 60.5067 -0.00737839
+MUSETT_T0_DSSD_Y82_E 61.0018 -0.00743772
+MUSETT_T0_DSSD_Y83_E 61.7662 -0.00753354
+MUSETT_T0_DSSD_Y84_E 60.3646 -0.00735909
+MUSETT_T0_DSSD_Y85_E 60.2349 -0.007342
+MUSETT_T0_DSSD_Y86_E 61.2239 -0.00746588
+MUSETT_T0_DSSD_Y87_E 60.8481 -0.00741858
+MUSETT_T0_DSSD_Y88_E 60.432 -0.00736679
+MUSETT_T0_DSSD_Y89_E 60.8595 -0.0074229
+MUSETT_T0_DSSD_Y90_E 60.6124 -0.00739208
+MUSETT_T0_DSSD_Y91_E 60.9829 -0.00743762
+MUSETT_T0_DSSD_Y92_E 61.2564 -0.00746856
+MUSETT_T0_DSSD_Y93_E 61.0818 -0.0074474
+MUSETT_T0_DSSD_Y94_E 61.7604 -0.00752996
+MUSETT_T0_DSSD_Y95_E 60.1873 -0.00733724
+MUSETT_T0_DSSD_Y96_E 55.7827 -0.00679989
+MUSETT_T0_DSSD_Y97_E 56.0999 -0.00683972
+MUSETT_T0_DSSD_Y98_E 56.2346 -0.00686015
+MUSETT_T0_DSSD_Y99_E 56.0143 -0.00683094
+MUSETT_T0_DSSD_Y100_E 55.7323 -0.00679648
+MUSETT_T0_DSSD_Y101_E 55.8821 -0.00681118
+MUSETT_T0_DSSD_Y102_E 55.5714 -0.00677554
+MUSETT_T0_DSSD_Y103_E 55.9719 -0.00682257
+MUSETT_T0_DSSD_Y104_E 56.5704 -0.00690135
+MUSETT_T0_DSSD_Y105_E 55.6434 -0.00678573
+MUSETT_T0_DSSD_Y106_E 56.6027 -0.00690209
+MUSETT_T0_DSSD_Y107_E 56.9725 -0.00694856
+MUSETT_T0_DSSD_Y108_E 56.0688 -0.00683764
+MUSETT_T0_DSSD_Y109_E 56.1521 -0.00684898
+MUSETT_T0_DSSD_Y110_E 56.3271 -0.00687067
+MUSETT_T0_DSSD_Y111_E 55.8965 -0.00681587
+MUSETT_T0_DSSD_Y112_E 56.4834 -0.00688847
+MUSETT_T0_DSSD_Y113_E 56.3634 -0.00686863
+MUSETT_T0_DSSD_Y114_E 56.6287 -0.00690812
+MUSETT_T0_DSSD_Y115_E 56.4297 -0.0068832
+MUSETT_T0_DSSD_Y116_E 56.7518 -0.00691987
+MUSETT_T0_DSSD_Y117_E 56.0688 -0.00683716
+MUSETT_T0_DSSD_Y118_E 55.8832 -0.00681286
+MUSETT_T0_DSSD_Y119_E 56.0852 -0.00683815
+MUSETT_T0_DSSD_Y120_E 56.9102 -0.0069408
+MUSETT_T0_DSSD_Y121_E 56.6179 -0.00690191
+MUSETT_T0_DSSD_Y122_E 56.2517 -0.00685791
+MUSETT_T0_DSSD_Y123_E 55.6493 -0.0067881
+MUSETT_T0_DSSD_Y124_E 55.7588 -0.00679547
+MUSETT_T0_DSSD_Y125_E 55.3298 -0.00674464
+MUSETT_T0_DSSD_Y126_E 56.5723 -0.00690015
+MUSETT_T0_DSSD_Y127_E 55.9475 -0.00682061
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..56dce7bc4b19a542bdf9afb2fecfb3b1b15d9014
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/Cal_Str_Y_E_MM0.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E_Zero_Dispersion 8183.92
+MUSETT_T0_DSSD_X1_E_Zero_Dispersion -6.63295
+MUSETT_T0_DSSD_X2_E_Zero_Dispersion -7.7008
+MUSETT_T0_DSSD_X3_E_Zero_Dispersion -8.2479
+MUSETT_T0_DSSD_X4_E_Zero_Dispersion -6.11069
+MUSETT_T0_DSSD_X5_E_Zero_Dispersion -8.48188
+MUSETT_T0_DSSD_X6_E_Zero_Dispersion -7.31025
+MUSETT_T0_DSSD_X7_E_Zero_Dispersion -5.53197
+MUSETT_T0_DSSD_X8_E_Zero_Dispersion -9.25746
+MUSETT_T0_DSSD_X9_E_Zero_Dispersion -8.30132
+MUSETT_T0_DSSD_X10_E_Zero_Dispersion -7.41508
+MUSETT_T0_DSSD_X11_E_Zero_Dispersion -6.10382
+MUSETT_T0_DSSD_X12_E_Zero_Dispersion -7.91969
+MUSETT_T0_DSSD_X13_E_Zero_Dispersion 49.9456
+MUSETT_T0_DSSD_X14_E_Zero_Dispersion -6.97607
+MUSETT_T0_DSSD_X15_E_Zero_Dispersion -10.1047
+MUSETT_T0_DSSD_X16_E_Zero_Dispersion -6.83215
+MUSETT_T0_DSSD_X17_E_Zero_Dispersion -8.73859
+MUSETT_T0_DSSD_X18_E_Zero_Dispersion -9.86747
+MUSETT_T0_DSSD_X19_E_Zero_Dispersion -7.73418
+MUSETT_T0_DSSD_X20_E_Zero_Dispersion -8.09245
+MUSETT_T0_DSSD_X21_E_Zero_Dispersion -6.92018
+MUSETT_T0_DSSD_X22_E_Zero_Dispersion -7.03661
+MUSETT_T0_DSSD_X23_E_Zero_Dispersion -9.47716
+MUSETT_T0_DSSD_X24_E_Zero_Dispersion -10.1866
+MUSETT_T0_DSSD_X25_E_Zero_Dispersion -7.16795
+MUSETT_T0_DSSD_X26_E_Zero_Dispersion -5.6114
+MUSETT_T0_DSSD_X27_E_Zero_Dispersion -7.5916
+MUSETT_T0_DSSD_X28_E_Zero_Dispersion -8.76414
+MUSETT_T0_DSSD_X29_E_Zero_Dispersion -4.90095
+MUSETT_T0_DSSD_X30_E_Zero_Dispersion -4.41223
+MUSETT_T0_DSSD_X31_E_Zero_Dispersion -5.04983
+MUSETT_T0_DSSD_X32_E_Zero_Dispersion -8.74888
+MUSETT_T0_DSSD_X33_E_Zero_Dispersion -9.02414
+MUSETT_T0_DSSD_X34_E_Zero_Dispersion -4.24547
+MUSETT_T0_DSSD_X35_E_Zero_Dispersion -6.11783
+MUSETT_T0_DSSD_X36_E_Zero_Dispersion -8.67274
+MUSETT_T0_DSSD_X37_E_Zero_Dispersion -5.55349
+MUSETT_T0_DSSD_X38_E_Zero_Dispersion -5.49848
+MUSETT_T0_DSSD_X39_E_Zero_Dispersion -6.55596
+MUSETT_T0_DSSD_X40_E_Zero_Dispersion -5.75522
+MUSETT_T0_DSSD_X41_E_Zero_Dispersion -10.0658
+MUSETT_T0_DSSD_X42_E_Zero_Dispersion -5.70397
+MUSETT_T0_DSSD_X43_E_Zero_Dispersion -6.46707
+MUSETT_T0_DSSD_X44_E_Zero_Dispersion -6.08433
+MUSETT_T0_DSSD_X45_E_Zero_Dispersion -6.67154
+MUSETT_T0_DSSD_X46_E_Zero_Dispersion -10.3332
+MUSETT_T0_DSSD_X47_E_Zero_Dispersion -6.79015
+MUSETT_T0_DSSD_X48_E_Zero_Dispersion -6.18417
+MUSETT_T0_DSSD_X49_E_Zero_Dispersion -8.85446
+MUSETT_T0_DSSD_X50_E_Zero_Dispersion -6.79964
+MUSETT_T0_DSSD_X51_E_Zero_Dispersion -6.34267
+MUSETT_T0_DSSD_X52_E_Zero_Dispersion -8.10679
+MUSETT_T0_DSSD_X53_E_Zero_Dispersion -11.3244
+MUSETT_T0_DSSD_X54_E_Zero_Dispersion -4.43412
+MUSETT_T0_DSSD_X55_E_Zero_Dispersion -12.1053
+MUSETT_T0_DSSD_X56_E_Zero_Dispersion -3.59209
+MUSETT_T0_DSSD_X57_E_Zero_Dispersion -2.93464
+MUSETT_T0_DSSD_X58_E_Zero_Dispersion -8.23944
+MUSETT_T0_DSSD_X59_E_Zero_Dispersion -6.68791
+MUSETT_T0_DSSD_X60_E_Zero_Dispersion -10.701
+MUSETT_T0_DSSD_X61_E_Zero_Dispersion -9.50467
+MUSETT_T0_DSSD_X62_E_Zero_Dispersion -9.75864
+MUSETT_T0_DSSD_X63_E_Zero_Dispersion -12.1268
+MUSETT_T0_DSSD_X64_E_Zero_Dispersion -5.98167
+MUSETT_T0_DSSD_X65_E_Zero_Dispersion -7.06478
+MUSETT_T0_DSSD_X66_E_Zero_Dispersion -8.11857
+MUSETT_T0_DSSD_X67_E_Zero_Dispersion -5.55447
+MUSETT_T0_DSSD_X68_E_Zero_Dispersion -4.99593
+MUSETT_T0_DSSD_X69_E_Zero_Dispersion -7.02027
+MUSETT_T0_DSSD_X70_E_Zero_Dispersion -8.83169
+MUSETT_T0_DSSD_X71_E_Zero_Dispersion -5.74392
+MUSETT_T0_DSSD_X72_E_Zero_Dispersion -6.31696
+MUSETT_T0_DSSD_X73_E_Zero_Dispersion -7.52914
+MUSETT_T0_DSSD_X74_E_Zero_Dispersion -7.43815
+MUSETT_T0_DSSD_X75_E_Zero_Dispersion -13.2719
+MUSETT_T0_DSSD_X76_E_Zero_Dispersion -4.73017
+MUSETT_T0_DSSD_X77_E_Zero_Dispersion -5.09789
+MUSETT_T0_DSSD_X78_E_Zero_Dispersion -4.76807
+MUSETT_T0_DSSD_X79_E_Zero_Dispersion -7.22795
+MUSETT_T0_DSSD_X80_E_Zero_Dispersion -17.1633
+MUSETT_T0_DSSD_X81_E_Zero_Dispersion -8.52399
+MUSETT_T0_DSSD_X82_E_Zero_Dispersion -9.67415
+MUSETT_T0_DSSD_X83_E_Zero_Dispersion -6.82375
+MUSETT_T0_DSSD_X84_E_Zero_Dispersion -10.7194
+MUSETT_T0_DSSD_X85_E_Zero_Dispersion -12.1529
+MUSETT_T0_DSSD_X86_E_Zero_Dispersion -8.48907
+MUSETT_T0_DSSD_X87_E_Zero_Dispersion -10.1272
+MUSETT_T0_DSSD_X88_E_Zero_Dispersion -11.3035
+MUSETT_T0_DSSD_X89_E_Zero_Dispersion -6.88179
+MUSETT_T0_DSSD_X90_E_Zero_Dispersion -7.64239
+MUSETT_T0_DSSD_X91_E_Zero_Dispersion -7.25621
+MUSETT_T0_DSSD_X92_E_Zero_Dispersion -9.90046
+MUSETT_T0_DSSD_X93_E_Zero_Dispersion -9.76531
+MUSETT_T0_DSSD_X94_E_Zero_Dispersion -9.94603
+MUSETT_T0_DSSD_X95_E_Zero_Dispersion -10.9835
+MUSETT_T0_DSSD_X96_E_Zero_Dispersion -11.4783
+MUSETT_T0_DSSD_X97_E_Zero_Dispersion -10.0747
+MUSETT_T0_DSSD_X98_E_Zero_Dispersion -5.29075
+MUSETT_T0_DSSD_X99_E_Zero_Dispersion -8.08608
+MUSETT_T0_DSSD_X100_E_Zero_Dispersion -8.17472
+MUSETT_T0_DSSD_X101_E_Zero_Dispersion -12.4671
+MUSETT_T0_DSSD_X102_E_Zero_Dispersion -9.76917
+MUSETT_T0_DSSD_X103_E_Zero_Dispersion -11.9265
+MUSETT_T0_DSSD_X104_E_Zero_Dispersion -5.00413
+MUSETT_T0_DSSD_X105_E_Zero_Dispersion -8.06976
+MUSETT_T0_DSSD_X106_E_Zero_Dispersion -8.81165
+MUSETT_T0_DSSD_X107_E_Zero_Dispersion -7.18314
+MUSETT_T0_DSSD_X108_E_Zero_Dispersion -8.03071
+MUSETT_T0_DSSD_X109_E_Zero_Dispersion -6.61411
+MUSETT_T0_DSSD_X110_E_Zero_Dispersion -6.2023
+MUSETT_T0_DSSD_X111_E_Zero_Dispersion -8.92192
+MUSETT_T0_DSSD_X112_E_Zero_Dispersion -7.70585
+MUSETT_T0_DSSD_X113_E_Zero_Dispersion -13.9267
+MUSETT_T0_DSSD_X114_E_Zero_Dispersion -5.41344
+MUSETT_T0_DSSD_X115_E_Zero_Dispersion -6.16773
+MUSETT_T0_DSSD_X116_E_Zero_Dispersion -9.27551
+MUSETT_T0_DSSD_X117_E_Zero_Dispersion -8.58972
+MUSETT_T0_DSSD_X118_E_Zero_Dispersion -10.599
+MUSETT_T0_DSSD_X119_E_Zero_Dispersion -9.81363
+MUSETT_T0_DSSD_X120_E_Zero_Dispersion -7.37254
+MUSETT_T0_DSSD_X121_E_Zero_Dispersion -11.2188
+MUSETT_T0_DSSD_X122_E_Zero_Dispersion -10.4584
+MUSETT_T0_DSSD_X123_E_Zero_Dispersion -6.05833
+MUSETT_T0_DSSD_X124_E_Zero_Dispersion -13.2832
+MUSETT_T0_DSSD_X125_E_Zero_Dispersion -11.5256
+MUSETT_T0_DSSD_X126_E_Zero_Dispersion -6.70314
+MUSETT_T0_DSSD_X127_E_Zero_Dispersion -10.7178
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/latex/double_alpha_run_0274_Y_MM0_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/latex/double_alpha_run_0274_Y_MM0_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..7431b47b293f2b279d97bbb808af6f4a2eb0c1b4
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/latex/double_alpha_run_0274_Y_MM0_E.tex
@@ -0,0 +1,62 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  0
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 0 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+0 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+13 &  zero extrapolation too high:49.9456channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM0_E/latex/pictures/Telescope0Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.10006
+
+Sigma fit sigma: 0.178421
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/peaks/Cal_Str_Y_E_MM0.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM0_E/peaks/Cal_Str_Y_E_MM0.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b0b0dae0ad5a4dcfd2658fe9202440da49d36dbd
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_E 59.5713 -0.00727366
+MUSETT_T1_DSSD_Y1_E 60.1008 -0.00733351
+MUSETT_T1_DSSD_Y2_E 59.5524 -0.00726963
+MUSETT_T1_DSSD_Y3_E 59.1431 -0.00721903
+MUSETT_T1_DSSD_Y4_E 59.9251 -0.00731315
+MUSETT_T1_DSSD_Y5_E 60.0201 -0.00732852
+MUSETT_T1_DSSD_Y6_E 59.289 -0.00723845
+MUSETT_T1_DSSD_Y7_E 59.4021 -0.007252
+MUSETT_T1_DSSD_Y8_E 59.3992 -0.00725239
+MUSETT_T1_DSSD_Y9_E 59.5263 -0.00726694
+MUSETT_T1_DSSD_Y10_E 59.2864 -0.00723601
+MUSETT_T1_DSSD_Y11_E 59.4514 -0.00725811
+MUSETT_T1_DSSD_Y12_E 60.0312 -0.00732756
+MUSETT_T1_DSSD_Y13_E 59.2537 -0.00723424
+MUSETT_T1_DSSD_Y14_E 59.3893 -0.00725095
+MUSETT_T1_DSSD_Y15_E 59.7658 -0.0072936
+MUSETT_T1_DSSD_Y16_E 62.2769 -0.00760174
+MUSETT_T1_DSSD_Y17_E 62.117 -0.00757965
+MUSETT_T1_DSSD_Y18_E 62.072 -0.00757377
+MUSETT_T1_DSSD_Y19_E 61.9724 -0.00756654
+MUSETT_T1_DSSD_Y20_E 62.0118 -0.00756272
+MUSETT_T1_DSSD_Y21_E 62.1497 -0.00758453
+MUSETT_T1_DSSD_Y22_E 6.82575 -0.844837
+MUSETT_T1_DSSD_Y23_E 61.6857 -0.00752703
+MUSETT_T1_DSSD_Y24_E 61.3481 -0.0074851
+MUSETT_T1_DSSD_Y25_E 61.369 -0.0074932
+MUSETT_T1_DSSD_Y26_E 62.0024 -0.00756996
+MUSETT_T1_DSSD_Y27_E 61.921 -0.00755903
+MUSETT_T1_DSSD_Y28_E 62.0404 -0.00757219
+MUSETT_T1_DSSD_Y29_E 61.9073 -0.00755709
+MUSETT_T1_DSSD_Y30_E 61.3619 -0.00748814
+MUSETT_T1_DSSD_Y31_E 61.3944 -0.00749024
+MUSETT_T1_DSSD_Y32_E 55.862 -0.0068178
+MUSETT_T1_DSSD_Y33_E 56.1905 -0.00686073
+MUSETT_T1_DSSD_Y34_E 55.4752 -0.00677191
+MUSETT_T1_DSSD_Y35_E 55.4395 -0.00676548
+MUSETT_T1_DSSD_Y36_E 55.1726 -0.00673431
+MUSETT_T1_DSSD_Y37_E 56.143 -0.00685196
+MUSETT_T1_DSSD_Y38_E 55.1566 -0.00673131
+MUSETT_T1_DSSD_Y39_E 55.718 -0.00680006
+MUSETT_T1_DSSD_Y40_E 56.1499 -0.00685882
+MUSETT_T1_DSSD_Y41_E 55.8773 -0.00681981
+MUSETT_T1_DSSD_Y42_E 55.2904 -0.00674786
+MUSETT_T1_DSSD_Y43_E 56.4892 -0.00689618
+MUSETT_T1_DSSD_Y44_E 55.4436 -0.00676674
+MUSETT_T1_DSSD_Y45_E 55.639 -0.00679338
+MUSETT_T1_DSSD_Y46_E 55.5529 -0.00677944
+MUSETT_T1_DSSD_Y47_E 55.484 -0.00677176
+MUSETT_T1_DSSD_Y48_E 56.9644 -0.00695219
+MUSETT_T1_DSSD_Y49_E 56.285 -0.00686719
+MUSETT_T1_DSSD_Y50_E 56.1211 -0.00684591
+MUSETT_T1_DSSD_Y51_E 55.6085 -0.00678336
+MUSETT_T1_DSSD_Y52_E 56.6749 -0.00691731
+MUSETT_T1_DSSD_Y53_E 55.8722 -0.00681439
+MUSETT_T1_DSSD_Y54_E 56.1028 -0.00684409
+MUSETT_T1_DSSD_Y55_E 56.0397 -0.00683656
+MUSETT_T1_DSSD_Y56_E 56.9231 -0.00694547
+MUSETT_T1_DSSD_Y57_E 56.8501 -0.00693858
+MUSETT_T1_DSSD_Y58_E 56.2203 -0.00685803
+MUSETT_T1_DSSD_Y59_E 57.1097 -0.00697017
+MUSETT_T1_DSSD_Y60_E 57.2955 -0.00699211
+MUSETT_T1_DSSD_Y61_E 56.5987 -0.00690325
+MUSETT_T1_DSSD_Y62_E 56.0145 -0.00683747
+MUSETT_T1_DSSD_Y63_E 57.1694 -0.00697746
+MUSETT_T1_DSSD_Y64_E 60.8531 -0.00742731
+MUSETT_T1_DSSD_Y65_E 61.2035 -0.00746692
+MUSETT_T1_DSSD_Y66_E 61.1281 -0.00746104
+MUSETT_T1_DSSD_Y67_E 61.3924 -0.00749318
+MUSETT_T1_DSSD_Y68_E 61.0537 -0.00745178
+MUSETT_T1_DSSD_Y69_E 59.7484 -0.0072913
+MUSETT_T1_DSSD_Y70_E 60.1721 -0.00734278
+MUSETT_T1_DSSD_Y71_E 60.9846 -0.00744362
+MUSETT_T1_DSSD_Y72_E 60.1471 -0.00734103
+MUSETT_T1_DSSD_Y73_E 61.0101 -0.00744673
+MUSETT_T1_DSSD_Y74_E 60.715 -0.00741063
+MUSETT_T1_DSSD_Y75_E 60.1824 -0.00734473
+MUSETT_T1_DSSD_Y76_E 60.5111 -0.00738908
+MUSETT_T1_DSSD_Y77_E 60.8614 -0.00743023
+MUSETT_T1_DSSD_Y78_E 60.4805 -0.00738223
+MUSETT_T1_DSSD_Y79_E 61.2051 -0.00747177
+MUSETT_T1_DSSD_Y80_E 60.9209 -0.00743493
+MUSETT_T1_DSSD_Y81_E 60.7358 -0.00741074
+MUSETT_T1_DSSD_Y82_E 60.8 -0.00741892
+MUSETT_T1_DSSD_Y83_E 60.4562 -0.00738112
+MUSETT_T1_DSSD_Y84_E 60.1521 -0.00734031
+MUSETT_T1_DSSD_Y85_E 61.1671 -0.00746593
+MUSETT_T1_DSSD_Y86_E 60.6634 -0.00740806
+MUSETT_T1_DSSD_Y87_E 60.3342 -0.00736062
+MUSETT_T1_DSSD_Y88_E 60.8086 -0.00742136
+MUSETT_T1_DSSD_Y89_E 61.0582 -0.00745181
+MUSETT_T1_DSSD_Y90_E 60.4628 -0.0073781
+MUSETT_T1_DSSD_Y91_E 60.5439 -0.00738751
+MUSETT_T1_DSSD_Y92_E 60.173 -0.00734265
+MUSETT_T1_DSSD_Y93_E 61.2089 -0.00746997
+MUSETT_T1_DSSD_Y94_E 61.1999 -0.00746579
+MUSETT_T1_DSSD_Y95_E 60.5711 -0.00739332
+MUSETT_T1_DSSD_Y96_E 55.7695 -0.00680856
+MUSETT_T1_DSSD_Y97_E 55.239 -0.00674105
+MUSETT_T1_DSSD_Y98_E 55.7487 -0.0068081
+MUSETT_T1_DSSD_Y99_E 55.5363 -0.00678092
+MUSETT_T1_DSSD_Y100_E 55.7637 -0.00680698
+MUSETT_T1_DSSD_Y101_E 55.3921 -0.00676203
+MUSETT_T1_DSSD_Y102_E 55.4885 -0.00677566
+MUSETT_T1_DSSD_Y103_E 56.1288 -0.0068526
+MUSETT_T1_DSSD_Y104_E 55.0197 -0.00671458
+MUSETT_T1_DSSD_Y105_E 55.0473 -0.00671677
+MUSETT_T1_DSSD_Y106_E 55.8463 -0.00681955
+MUSETT_T1_DSSD_Y107_E 55.1768 -0.00673729
+MUSETT_T1_DSSD_Y108_E 55.6608 -0.00679222
+MUSETT_T1_DSSD_Y109_E 55.8837 -0.00682082
+MUSETT_T1_DSSD_Y110_E 56.0661 -0.00684396
+MUSETT_T1_DSSD_Y111_E 56.5742 -0.00690789
+MUSETT_T1_DSSD_Y112_E 54.6562 -0.00667282
+MUSETT_T1_DSSD_Y113_E 55.323 -0.00675101
+MUSETT_T1_DSSD_Y114_E 54.9651 -0.00670899
+MUSETT_T1_DSSD_Y115_E 55.0097 -0.00671473
+MUSETT_T1_DSSD_Y116_E 55.0182 -0.00671428
+MUSETT_T1_DSSD_Y117_E 55.2189 -0.00673988
+MUSETT_T1_DSSD_Y118_E 55.0491 -0.00671853
+MUSETT_T1_DSSD_Y119_E 55.547 -0.00677839
+MUSETT_T1_DSSD_Y120_E 55.6261 -0.00679154
+MUSETT_T1_DSSD_Y121_E 55.3517 -0.00675826
+MUSETT_T1_DSSD_Y122_E 54.6662 -0.00667402
+MUSETT_T1_DSSD_Y123_E 55.1066 -0.0067295
+MUSETT_T1_DSSD_Y124_E 55.106 -0.00672715
+MUSETT_T1_DSSD_Y125_E 55.0026 -0.00671395
+MUSETT_T1_DSSD_Y126_E 55.1727 -0.00673426
+MUSETT_T1_DSSD_Y127_E 56.0969 -0.0068486
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..cde968dc417489c3337516e28938fc54e9c535b4
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E_Zero_Dispersion 1.99155
+MUSETT_T1_DSSD_X1_E_Zero_Dispersion -3.36744
+MUSETT_T1_DSSD_X2_E_Zero_Dispersion 0.0532965
+MUSETT_T1_DSSD_X3_E_Zero_Dispersion -0.670512
+MUSETT_T1_DSSD_X4_E_Zero_Dispersion -2.15656
+MUSETT_T1_DSSD_X5_E_Zero_Dispersion 2.06015
+MUSETT_T1_DSSD_X6_E_Zero_Dispersion 1.15907
+MUSETT_T1_DSSD_X7_E_Zero_Dispersion 0.856124
+MUSETT_T1_DSSD_X8_E_Zero_Dispersion 1.70508
+MUSETT_T1_DSSD_X9_E_Zero_Dispersion 0.617081
+MUSETT_T1_DSSD_X10_E_Zero_Dispersion -1.24746
+MUSETT_T1_DSSD_X11_E_Zero_Dispersion 0.974372
+MUSETT_T1_DSSD_X12_E_Zero_Dispersion -0.523207
+MUSETT_T1_DSSD_X13_E_Zero_Dispersion 1.26217
+MUSETT_T1_DSSD_X14_E_Zero_Dispersion 1.45131
+MUSETT_T1_DSSD_X15_E_Zero_Dispersion -2.28
+MUSETT_T1_DSSD_X16_E_Zero_Dispersion -0.445466
+MUSETT_T1_DSSD_X17_E_Zero_Dispersion -3.22932
+MUSETT_T1_DSSD_X18_E_Zero_Dispersion -3.65555
+MUSETT_T1_DSSD_X19_E_Zero_Dispersion 1.68167
+MUSETT_T1_DSSD_X20_E_Zero_Dispersion -7.67168
+MUSETT_T1_DSSD_X21_E_Zero_Dispersion -2.26369
+MUSETT_T1_DSSD_X22_E_Zero_Dispersion 8183.92
+MUSETT_T1_DSSD_X23_E_Zero_Dispersion -3.22536
+MUSETT_T1_DSSD_X24_E_Zero_Dispersion -4.02648
+MUSETT_T1_DSSD_X25_E_Zero_Dispersion 2.03906
+MUSETT_T1_DSSD_X26_E_Zero_Dispersion 1.41268
+MUSETT_T1_DSSD_X27_E_Zero_Dispersion 0.34993
+MUSETT_T1_DSSD_X28_E_Zero_Dispersion -1.19268
+MUSETT_T1_DSSD_X29_E_Zero_Dispersion 0.0528127
+MUSETT_T1_DSSD_X30_E_Zero_Dispersion -2.53391
+MUSETT_T1_DSSD_X31_E_Zero_Dispersion -4.59477
+MUSETT_T1_DSSD_X32_E_Zero_Dispersion -1.55375
+MUSETT_T1_DSSD_X33_E_Zero_Dispersion 1.83181
+MUSETT_T1_DSSD_X34_E_Zero_Dispersion 0.0380421
+MUSETT_T1_DSSD_X35_E_Zero_Dispersion -2.47029
+MUSETT_T1_DSSD_X36_E_Zero_Dispersion -0.760245
+MUSETT_T1_DSSD_X37_E_Zero_Dispersion -1.70397
+MUSETT_T1_DSSD_X38_E_Zero_Dispersion -2.04435
+MUSETT_T1_DSSD_X39_E_Zero_Dispersion -1.75536
+MUSETT_T1_DSSD_X40_E_Zero_Dispersion 5.47503
+MUSETT_T1_DSSD_X41_E_Zero_Dispersion -1.38296
+MUSETT_T1_DSSD_X42_E_Zero_Dispersion -1.76707
+MUSETT_T1_DSSD_X43_E_Zero_Dispersion 0.635043
+MUSETT_T1_DSSD_X44_E_Zero_Dispersion -1.5517
+MUSETT_T1_DSSD_X45_E_Zero_Dispersion 1.82123
+MUSETT_T1_DSSD_X46_E_Zero_Dispersion -2.32144
+MUSETT_T1_DSSD_X47_E_Zero_Dispersion -1.44783
+MUSETT_T1_DSSD_X48_E_Zero_Dispersion -1.74129
+MUSETT_T1_DSSD_X49_E_Zero_Dispersion -4.22587
+MUSETT_T1_DSSD_X50_E_Zero_Dispersion -5.75529
+MUSETT_T1_DSSD_X51_E_Zero_Dispersion -5.79249
+MUSETT_T1_DSSD_X52_E_Zero_Dispersion -1.1894
+MUSETT_T1_DSSD_X53_E_Zero_Dispersion -7.15251
+MUSETT_T1_DSSD_X54_E_Zero_Dispersion -5.26423
+MUSETT_T1_DSSD_X55_E_Zero_Dispersion -5.06334
+MUSETT_T1_DSSD_X56_E_Zero_Dispersion -3.72446
+MUSETT_T1_DSSD_X57_E_Zero_Dispersion -1.33524
+MUSETT_T1_DSSD_X58_E_Zero_Dispersion -5.7377
+MUSETT_T1_DSSD_X59_E_Zero_Dispersion -1.44175
+MUSETT_T1_DSSD_X60_E_Zero_Dispersion -2.31319
+MUSETT_T1_DSSD_X61_E_Zero_Dispersion -6.84675
+MUSETT_T1_DSSD_X62_E_Zero_Dispersion -0.288522
+MUSETT_T1_DSSD_X63_E_Zero_Dispersion -1.4453
+MUSETT_T1_DSSD_X64_E_Zero_Dispersion -1.14669
+MUSETT_T1_DSSD_X65_E_Zero_Dispersion -4.61755
+MUSETT_T1_DSSD_X66_E_Zero_Dispersion -0.976242
+MUSETT_T1_DSSD_X67_E_Zero_Dispersion -1.10734
+MUSETT_T1_DSSD_X68_E_Zero_Dispersion -1.16978
+MUSETT_T1_DSSD_X69_E_Zero_Dispersion -2.47694
+MUSETT_T1_DSSD_X70_E_Zero_Dispersion -2.72998
+MUSETT_T1_DSSD_X71_E_Zero_Dispersion -0.877548
+MUSETT_T1_DSSD_X72_E_Zero_Dispersion -1.27685
+MUSETT_T1_DSSD_X73_E_Zero_Dispersion -0.870154
+MUSETT_T1_DSSD_X74_E_Zero_Dispersion -0.971537
+MUSETT_T1_DSSD_X75_E_Zero_Dispersion -1.95811
+MUSETT_T1_DSSD_X76_E_Zero_Dispersion 2.72883
+MUSETT_T1_DSSD_X77_E_Zero_Dispersion 0.949706
+MUSETT_T1_DSSD_X78_E_Zero_Dispersion -0.718313
+MUSETT_T1_DSSD_X79_E_Zero_Dispersion 0.487229
+MUSETT_T1_DSSD_X80_E_Zero_Dispersion -1.87203
+MUSETT_T1_DSSD_X81_E_Zero_Dispersion -3.64332
+MUSETT_T1_DSSD_X82_E_Zero_Dispersion -3.25926
+MUSETT_T1_DSSD_X83_E_Zero_Dispersion 1.34689
+MUSETT_T1_DSSD_X84_E_Zero_Dispersion -2.76229
+MUSETT_T1_DSSD_X85_E_Zero_Dispersion -0.820758
+MUSETT_T1_DSSD_X86_E_Zero_Dispersion 3.15827
+MUSETT_T1_DSSD_X87_E_Zero_Dispersion -4.89819
+MUSETT_T1_DSSD_X88_E_Zero_Dispersion -1.72898
+MUSETT_T1_DSSD_X89_E_Zero_Dispersion -1.73753
+MUSETT_T1_DSSD_X90_E_Zero_Dispersion -2.90363
+MUSETT_T1_DSSD_X91_E_Zero_Dispersion -3.4417
+MUSETT_T1_DSSD_X92_E_Zero_Dispersion -2.99842
+MUSETT_T1_DSSD_X93_E_Zero_Dispersion -1.99586
+MUSETT_T1_DSSD_X94_E_Zero_Dispersion -5.37291
+MUSETT_T1_DSSD_X95_E_Zero_Dispersion -0.680694
+MUSETT_T1_DSSD_X96_E_Zero_Dispersion 0.917666
+MUSETT_T1_DSSD_X97_E_Zero_Dispersion -2.42032
+MUSETT_T1_DSSD_X98_E_Zero_Dispersion 3.42181
+MUSETT_T1_DSSD_X99_E_Zero_Dispersion 1.9192
+MUSETT_T1_DSSD_X100_E_Zero_Dispersion -0.131786
+MUSETT_T1_DSSD_X101_E_Zero_Dispersion 0.365438
+MUSETT_T1_DSSD_X102_E_Zero_Dispersion 2.6059
+MUSETT_T1_DSSD_X103_E_Zero_Dispersion 1.11622
+MUSETT_T1_DSSD_X104_E_Zero_Dispersion -2.06555
+MUSETT_T1_DSSD_X105_E_Zero_Dispersion -3.4939
+MUSETT_T1_DSSD_X106_E_Zero_Dispersion 2.85683
+MUSETT_T1_DSSD_X107_E_Zero_Dispersion 2.2385
+MUSETT_T1_DSSD_X108_E_Zero_Dispersion -2.77996
+MUSETT_T1_DSSD_X109_E_Zero_Dispersion -1.11409
+MUSETT_T1_DSSD_X110_E_Zero_Dispersion -0.0559515
+MUSETT_T1_DSSD_X111_E_Zero_Dispersion 2.19809
+MUSETT_T1_DSSD_X112_E_Zero_Dispersion 1.1396
+MUSETT_T1_DSSD_X113_E_Zero_Dispersion -2.7754
+MUSETT_T1_DSSD_X114_E_Zero_Dispersion -0.753716
+MUSETT_T1_DSSD_X115_E_Zero_Dispersion -0.402319
+MUSETT_T1_DSSD_X116_E_Zero_Dispersion -2.20761
+MUSETT_T1_DSSD_X117_E_Zero_Dispersion -0.864114
+MUSETT_T1_DSSD_X118_E_Zero_Dispersion -1.62397
+MUSETT_T1_DSSD_X119_E_Zero_Dispersion -2.71892
+MUSETT_T1_DSSD_X120_E_Zero_Dispersion 1.49164
+MUSETT_T1_DSSD_X121_E_Zero_Dispersion 1.75966
+MUSETT_T1_DSSD_X122_E_Zero_Dispersion 1.11113
+MUSETT_T1_DSSD_X123_E_Zero_Dispersion 3.18743
+MUSETT_T1_DSSD_X124_E_Zero_Dispersion 0.422646
+MUSETT_T1_DSSD_X125_E_Zero_Dispersion -0.292593
+MUSETT_T1_DSSD_X126_E_Zero_Dispersion -0.836667
+MUSETT_T1_DSSD_X127_E_Zero_Dispersion 0.996941
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/latex/double_alpha_run_0274_Y_MM1_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/latex/double_alpha_run_0274_Y_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..649f1f152426bccf5d14303f65883cc30694cfd2
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/latex/double_alpha_run_0274_Y_MM1_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+22 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.33191
+
+Sigma fit sigma: 0.487957
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c8baaab11e0e8a21433926ecac9ae88c9197f13b
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_E 62.9053 -0.0076766
+MUSETT_T2_DSSD_Y1_E 63.6771 -0.00777088
+MUSETT_T2_DSSD_Y2_E 62.331 -0.00760718
+MUSETT_T2_DSSD_Y3_E 63.2578 -0.00772102
+MUSETT_T2_DSSD_Y4_E 62.7132 -0.00765406
+MUSETT_T2_DSSD_Y5_E 62.5292 -0.00763228
+MUSETT_T2_DSSD_Y6_E 62.8143 -0.00766532
+MUSETT_T2_DSSD_Y7_E 62.3329 -0.00760504
+MUSETT_T2_DSSD_Y8_E 62.4752 -0.00762288
+MUSETT_T2_DSSD_Y9_E 63.2006 -0.00771317
+MUSETT_T2_DSSD_Y10_E 62.6927 -0.00764988
+MUSETT_T2_DSSD_Y11_E 62.3066 -0.00760391
+MUSETT_T2_DSSD_Y12_E 61.8667 -0.00755085
+MUSETT_T2_DSSD_Y13_E 62.5037 -0.00762743
+MUSETT_T2_DSSD_Y14_E 62.7099 -0.00765226
+MUSETT_T2_DSSD_Y15_E 63.2095 -0.00771415
+MUSETT_T2_DSSD_Y16_E 61.1316 -0.00745457
+MUSETT_T2_DSSD_Y17_E 60.4523 -0.0073738
+MUSETT_T2_DSSD_Y18_E 60.4246 -0.00737171
+MUSETT_T2_DSSD_Y19_E 61.8438 -0.00754775
+MUSETT_T2_DSSD_Y20_E 60.7912 -0.00741418
+MUSETT_T2_DSSD_Y21_E 60.568 -0.00738896
+MUSETT_T2_DSSD_Y22_E 62.104 -0.00758231
+MUSETT_T2_DSSD_Y23_E 60.6819 -0.0074026
+MUSETT_T2_DSSD_Y24_E 60.7567 -0.00741337
+MUSETT_T2_DSSD_Y25_E 61.2726 -0.00747614
+MUSETT_T2_DSSD_Y26_E 61.018 -0.007449
+MUSETT_T2_DSSD_Y27_E 61.0798 -0.00745285
+MUSETT_T2_DSSD_Y28_E 61.4819 -0.00750524
+MUSETT_T2_DSSD_Y29_E 61.0725 -0.00745017
+MUSETT_T2_DSSD_Y30_E 61.0692 -0.00745178
+MUSETT_T2_DSSD_Y31_E 61.4178 -0.00749438
+MUSETT_T2_DSSD_Y32_E 56.1768 -0.00685736
+MUSETT_T2_DSSD_Y33_E 56.1338 -0.00684851
+MUSETT_T2_DSSD_Y34_E 56.6319 -0.00691225
+MUSETT_T2_DSSD_Y35_E 56.4588 -0.00688948
+MUSETT_T2_DSSD_Y36_E 56.8551 -0.00694108
+MUSETT_T2_DSSD_Y37_E 56.7297 -0.00692354
+MUSETT_T2_DSSD_Y38_E 56.5669 -0.00690904
+MUSETT_T2_DSSD_Y39_E 56.2353 -0.00686434
+MUSETT_T2_DSSD_Y40_E 56.0605 -0.00683605
+MUSETT_T2_DSSD_Y41_E 57.8921 -0.00706581
+MUSETT_T2_DSSD_Y42_E 56.8378 -0.00694167
+MUSETT_T2_DSSD_Y43_E 56.1668 -0.00685633
+MUSETT_T2_DSSD_Y44_E 57.1736 -0.00697438
+MUSETT_T2_DSSD_Y45_E 57.1146 -0.00697004
+MUSETT_T2_DSSD_Y46_E 57.0347 -0.00696503
+MUSETT_T2_DSSD_Y47_E 56.6995 -0.00692395
+MUSETT_T2_DSSD_Y48_E 57.6463 -0.00703935
+MUSETT_T2_DSSD_Y49_E 56.8816 -0.00694221
+MUSETT_T2_DSSD_Y50_E 57.6197 -0.007027
+MUSETT_T2_DSSD_Y51_E 57.0982 -0.00696628
+MUSETT_T2_DSSD_Y52_E 57.0607 -0.0069611
+MUSETT_T2_DSSD_Y53_E 58.2938 -0.00711296
+MUSETT_T2_DSSD_Y54_E 57.3536 -0.00699681
+MUSETT_T2_DSSD_Y55_E 57.7002 -0.0070433
+MUSETT_T2_DSSD_Y56_E 57.6913 -0.0070446
+MUSETT_T2_DSSD_Y57_E 57.4625 -0.00701406
+MUSETT_T2_DSSD_Y58_E 57.5339 -0.00702592
+MUSETT_T2_DSSD_Y59_E 58.1037 -0.00709062
+MUSETT_T2_DSSD_Y60_E 57.6517 -0.00703636
+MUSETT_T2_DSSD_Y61_E 57.2738 -0.00699268
+MUSETT_T2_DSSD_Y62_E 57.5479 -0.00702183
+MUSETT_T2_DSSD_Y63_E 57.9209 -0.0070673
+MUSETT_T2_DSSD_Y64_E 59.3445 -0.00724661
+MUSETT_T2_DSSD_Y65_E 59.1152 -0.00720968
+MUSETT_T2_DSSD_Y66_E 59.3455 -0.00724365
+MUSETT_T2_DSSD_Y67_E 60.3675 -0.00736968
+MUSETT_T2_DSSD_Y68_E 59.4674 -0.00725991
+MUSETT_T2_DSSD_Y69_E 59.7805 -0.00729818
+MUSETT_T2_DSSD_Y70_E 59.407 -0.0072506
+MUSETT_T2_DSSD_Y71_E 59.8303 -0.00730098
+MUSETT_T2_DSSD_Y72_E 59.6133 -0.00727175
+MUSETT_T2_DSSD_Y73_E 59.4611 -0.00725939
+MUSETT_T2_DSSD_Y74_E 59.819 -0.00730197
+MUSETT_T2_DSSD_Y75_E 59.9389 -0.00731478
+MUSETT_T2_DSSD_Y76_E 59.2682 -0.00723539
+MUSETT_T2_DSSD_Y77_E 59.7239 -0.00728809
+MUSETT_T2_DSSD_Y78_E 59.2572 -0.0072339
+MUSETT_T2_DSSD_Y79_E 59.9111 -0.00731045
+MUSETT_T2_DSSD_Y80_E 60.372 -0.00736937
+MUSETT_T2_DSSD_Y81_E 60.9866 -0.00744401
+MUSETT_T2_DSSD_Y82_E 60.3006 -0.00735778
+MUSETT_T2_DSSD_Y83_E 61.091 -0.00745649
+MUSETT_T2_DSSD_Y84_E 61.1408 -0.0074625
+MUSETT_T2_DSSD_Y85_E 60.6215 -0.00739872
+MUSETT_T2_DSSD_Y86_E 60.8191 -0.00742516
+MUSETT_T2_DSSD_Y87_E 61.2005 -0.00747154
+MUSETT_T2_DSSD_Y88_E 60.6151 -0.00739683
+MUSETT_T2_DSSD_Y89_E 60.6023 -0.00739569
+MUSETT_T2_DSSD_Y90_E 61.294 -0.00748233
+MUSETT_T2_DSSD_Y91_E 60.3249 -0.00736066
+MUSETT_T2_DSSD_Y92_E 60.7802 -0.00741634
+MUSETT_T2_DSSD_Y93_E 60.5912 -0.0073986
+MUSETT_T2_DSSD_Y94_E 61.0494 -0.0074543
+MUSETT_T2_DSSD_Y95_E 61.2259 -0.0074723
+MUSETT_T2_DSSD_Y96_E 56.767 -0.00692993
+MUSETT_T2_DSSD_Y97_E 55.8842 -0.00682215
+MUSETT_T2_DSSD_Y98_E 55.9948 -0.00683354
+MUSETT_T2_DSSD_Y99_E 56.5032 -0.00689574
+MUSETT_T2_DSSD_Y100_E 56.2013 -0.00685846
+MUSETT_T2_DSSD_Y101_E 56.6875 -0.00692035
+MUSETT_T2_DSSD_Y102_E 55.8833 -0.00682028
+MUSETT_T2_DSSD_Y103_E 56.9716 -0.00695232
+MUSETT_T2_DSSD_Y104_E 55.9808 -0.0068345
+MUSETT_T2_DSSD_Y105_E 56.3951 -0.00688072
+MUSETT_T2_DSSD_Y106_E 56.523 -0.00690076
+MUSETT_T2_DSSD_Y107_E 57.3852 -0.00700542
+MUSETT_T2_DSSD_Y108_E 56.8841 -0.006943
+MUSETT_T2_DSSD_Y109_E 56.4088 -0.00688278
+MUSETT_T2_DSSD_Y110_E 56.9256 -0.00694942
+MUSETT_T2_DSSD_Y111_E 56.0116 -0.00683751
+MUSETT_T2_DSSD_Y112_E 56.3369 -0.00687712
+MUSETT_T2_DSSD_Y113_E 57.2396 -0.00698874
+MUSETT_T2_DSSD_Y114_E 56.4917 -0.00689683
+MUSETT_T2_DSSD_Y115_E 56.6869 -0.00691913
+MUSETT_T2_DSSD_Y116_E 56.2888 -0.00687008
+MUSETT_T2_DSSD_Y117_E 56.3479 -0.00687777
+MUSETT_T2_DSSD_Y118_E 56.6964 -0.00692013
+MUSETT_T2_DSSD_Y119_E 56.5915 -0.00690786
+MUSETT_T2_DSSD_Y120_E 56.0884 -0.00684535
+MUSETT_T2_DSSD_Y121_E 56.9015 -0.00694589
+MUSETT_T2_DSSD_Y122_E 57.3743 -0.0070056
+MUSETT_T2_DSSD_Y123_E 6.82575 -0.844837
+MUSETT_T2_DSSD_Y124_E 56.0464 -0.00684178
+MUSETT_T2_DSSD_Y125_E 56.9017 -0.00694728
+MUSETT_T2_DSSD_Y126_E 56.2566 -0.006867
+MUSETT_T2_DSSD_Y127_E 56.0062 -0.00683531
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..d72fa5b9cad0904a8c51ed68141de2514ad9b58e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E_Zero_Dispersion -2.42348
+MUSETT_T2_DSSD_X1_E_Zero_Dispersion -2.32565
+MUSETT_T2_DSSD_X2_E_Zero_Dispersion -1.70954
+MUSETT_T2_DSSD_X3_E_Zero_Dispersion -0.93988
+MUSETT_T2_DSSD_X4_E_Zero_Dispersion -1.4585
+MUSETT_T2_DSSD_X5_E_Zero_Dispersion -0.728393
+MUSETT_T2_DSSD_X6_E_Zero_Dispersion -2.61116
+MUSETT_T2_DSSD_X7_E_Zero_Dispersion -4.26056
+MUSETT_T2_DSSD_X8_E_Zero_Dispersion -3.7517
+MUSETT_T2_DSSD_X9_E_Zero_Dispersion -1.85143
+MUSETT_T2_DSSD_X10_E_Zero_Dispersion -3.24938
+MUSETT_T2_DSSD_X11_E_Zero_Dispersion -2.01508
+MUSETT_T2_DSSD_X12_E_Zero_Dispersion -1.33746
+MUSETT_T2_DSSD_X13_E_Zero_Dispersion -2.5894
+MUSETT_T2_DSSD_X14_E_Zero_Dispersion -2.94817
+MUSETT_T2_DSSD_X15_E_Zero_Dispersion -1.96166
+MUSETT_T2_DSSD_X16_E_Zero_Dispersion -8.56126
+MUSETT_T2_DSSD_X17_E_Zero_Dispersion -6.25371
+MUSETT_T2_DSSD_X18_E_Zero_Dispersion -4.81945
+MUSETT_T2_DSSD_X19_E_Zero_Dispersion -1.67631
+MUSETT_T2_DSSD_X20_E_Zero_Dispersion -7.31559
+MUSETT_T2_DSSD_X21_E_Zero_Dispersion -5.09282
+MUSETT_T2_DSSD_X22_E_Zero_Dispersion 1.35023
+MUSETT_T2_DSSD_X23_E_Zero_Dispersion -5.38096
+MUSETT_T2_DSSD_X24_E_Zero_Dispersion -3.55712
+MUSETT_T2_DSSD_X25_E_Zero_Dispersion -3.75293
+MUSETT_T2_DSSD_X26_E_Zero_Dispersion 0.56756
+MUSETT_T2_DSSD_X27_E_Zero_Dispersion -3.50174
+MUSETT_T2_DSSD_X28_E_Zero_Dispersion 0.133472
+MUSETT_T2_DSSD_X29_E_Zero_Dispersion -5.4653
+MUSETT_T2_DSSD_X30_E_Zero_Dispersion -3.25333
+MUSETT_T2_DSSD_X31_E_Zero_Dispersion -3.17121
+MUSETT_T2_DSSD_X32_E_Zero_Dispersion -0.196339
+MUSETT_T2_DSSD_X33_E_Zero_Dispersion -4.4941
+MUSETT_T2_DSSD_X34_E_Zero_Dispersion -0.967098
+MUSETT_T2_DSSD_X35_E_Zero_Dispersion -2.92968
+MUSETT_T2_DSSD_X36_E_Zero_Dispersion 0.898504
+MUSETT_T2_DSSD_X37_E_Zero_Dispersion -1.74236
+MUSETT_T2_DSSD_X38_E_Zero_Dispersion 4.62804
+MUSETT_T2_DSSD_X39_E_Zero_Dispersion -0.387863
+MUSETT_T2_DSSD_X40_E_Zero_Dispersion -8.72277
+MUSETT_T2_DSSD_X41_E_Zero_Dispersion -1.27485
+MUSETT_T2_DSSD_X42_E_Zero_Dispersion 4.09026
+MUSETT_T2_DSSD_X43_E_Zero_Dispersion 0.043723
+MUSETT_T2_DSSD_X44_E_Zero_Dispersion -5.66238
+MUSETT_T2_DSSD_X45_E_Zero_Dispersion -2.29688
+MUSETT_T2_DSSD_X46_E_Zero_Dispersion 3.27154
+MUSETT_T2_DSSD_X47_E_Zero_Dispersion 3.10116
+MUSETT_T2_DSSD_X48_E_Zero_Dispersion 2.85014
+MUSETT_T2_DSSD_X49_E_Zero_Dispersion -1.59283
+MUSETT_T2_DSSD_X50_E_Zero_Dispersion -7.76806
+MUSETT_T2_DSSD_X51_E_Zero_Dispersion -4.36698
+MUSETT_T2_DSSD_X52_E_Zero_Dispersion -5.08248
+MUSETT_T2_DSSD_X53_E_Zero_Dispersion -3.43024
+MUSETT_T2_DSSD_X54_E_Zero_Dispersion -5.11109
+MUSETT_T2_DSSD_X55_E_Zero_Dispersion -0.211241
+MUSETT_T2_DSSD_X56_E_Zero_Dispersion 2.57154
+MUSETT_T2_DSSD_X57_E_Zero_Dispersion -0.480694
+MUSETT_T2_DSSD_X58_E_Zero_Dispersion 3.19339
+MUSETT_T2_DSSD_X59_E_Zero_Dispersion -2.44151
+MUSETT_T2_DSSD_X60_E_Zero_Dispersion -1.4014
+MUSETT_T2_DSSD_X61_E_Zero_Dispersion 1.4657
+MUSETT_T2_DSSD_X62_E_Zero_Dispersion -3.5779
+MUSETT_T2_DSSD_X63_E_Zero_Dispersion -3.62517
+MUSETT_T2_DSSD_X64_E_Zero_Dispersion 2.71683
+MUSETT_T2_DSSD_X65_E_Zero_Dispersion -7.40988
+MUSETT_T2_DSSD_X66_E_Zero_Dispersion -0.76599
+MUSETT_T2_DSSD_X67_E_Zero_Dispersion 0.661453
+MUSETT_T2_DSSD_X68_E_Zero_Dispersion 0.798704
+MUSETT_T2_DSSD_X69_E_Zero_Dispersion 0.847437
+MUSETT_T2_DSSD_X70_E_Zero_Dispersion -1.38987
+MUSETT_T2_DSSD_X71_E_Zero_Dispersion -2.82554
+MUSETT_T2_DSSD_X72_E_Zero_Dispersion -5.92974
+MUSETT_T2_DSSD_X73_E_Zero_Dispersion 1.07297
+MUSETT_T2_DSSD_X74_E_Zero_Dispersion -0.164958
+MUSETT_T2_DSSD_X75_E_Zero_Dispersion -2.22346
+MUSETT_T2_DSSD_X76_E_Zero_Dispersion 0.572025
+MUSETT_T2_DSSD_X77_E_Zero_Dispersion -2.72737
+MUSETT_T2_DSSD_X78_E_Zero_Dispersion 0.409691
+MUSETT_T2_DSSD_X79_E_Zero_Dispersion -3.26428
+MUSETT_T2_DSSD_X80_E_Zero_Dispersion -0.280829
+MUSETT_T2_DSSD_X81_E_Zero_Dispersion -0.701766
+MUSETT_T2_DSSD_X82_E_Zero_Dispersion -3.4871
+MUSETT_T2_DSSD_X83_E_Zero_Dispersion -0.994055
+MUSETT_T2_DSSD_X84_E_Zero_Dispersion -1.07151
+MUSETT_T2_DSSD_X85_E_Zero_Dispersion -1.50907
+MUSETT_T2_DSSD_X86_E_Zero_Dispersion 1.05267
+MUSETT_T2_DSSD_X87_E_Zero_Dispersion 0.85632
+MUSETT_T2_DSSD_X88_E_Zero_Dispersion -2.73801
+MUSETT_T2_DSSD_X89_E_Zero_Dispersion -2.26986
+MUSETT_T2_DSSD_X90_E_Zero_Dispersion 0.17018
+MUSETT_T2_DSSD_X91_E_Zero_Dispersion -3.58063
+MUSETT_T2_DSSD_X92_E_Zero_Dispersion -3.44762
+MUSETT_T2_DSSD_X93_E_Zero_Dispersion 2.45593
+MUSETT_T2_DSSD_X94_E_Zero_Dispersion 2.17782
+MUSETT_T2_DSSD_X95_E_Zero_Dispersion -1.70958
+MUSETT_T2_DSSD_X96_E_Zero_Dispersion 0.439838
+MUSETT_T2_DSSD_X97_E_Zero_Dispersion 0.413338
+MUSETT_T2_DSSD_X98_E_Zero_Dispersion -2.1071
+MUSETT_T2_DSSD_X99_E_Zero_Dispersion -1.93597
+MUSETT_T2_DSSD_X100_E_Zero_Dispersion -2.44353
+MUSETT_T2_DSSD_X101_E_Zero_Dispersion 0.573167
+MUSETT_T2_DSSD_X102_E_Zero_Dispersion -1.69432
+MUSETT_T2_DSSD_X103_E_Zero_Dispersion -2.61017
+MUSETT_T2_DSSD_X104_E_Zero_Dispersion 1.08866
+MUSETT_T2_DSSD_X105_E_Zero_Dispersion -4.10709
+MUSETT_T2_DSSD_X106_E_Zero_Dispersion 1.16204
+MUSETT_T2_DSSD_X107_E_Zero_Dispersion 0.461815
+MUSETT_T2_DSSD_X108_E_Zero_Dispersion -1.01862
+MUSETT_T2_DSSD_X109_E_Zero_Dispersion -3.64241
+MUSETT_T2_DSSD_X110_E_Zero_Dispersion 0.576806
+MUSETT_T2_DSSD_X111_E_Zero_Dispersion 0.178436
+MUSETT_T2_DSSD_X112_E_Zero_Dispersion 0.0622636
+MUSETT_T2_DSSD_X113_E_Zero_Dispersion 1.74031
+MUSETT_T2_DSSD_X114_E_Zero_Dispersion 1.02572
+MUSETT_T2_DSSD_X115_E_Zero_Dispersion -0.77606
+MUSETT_T2_DSSD_X116_E_Zero_Dispersion -1.32185
+MUSETT_T2_DSSD_X117_E_Zero_Dispersion -0.750783
+MUSETT_T2_DSSD_X118_E_Zero_Dispersion -0.97089
+MUSETT_T2_DSSD_X119_E_Zero_Dispersion -0.329617
+MUSETT_T2_DSSD_X120_E_Zero_Dispersion -1.65754
+MUSETT_T2_DSSD_X121_E_Zero_Dispersion -0.11324
+MUSETT_T2_DSSD_X122_E_Zero_Dispersion 2.2277
+MUSETT_T2_DSSD_X123_E_Zero_Dispersion 8183.92
+MUSETT_T2_DSSD_X124_E_Zero_Dispersion 0.214499
+MUSETT_T2_DSSD_X125_E_Zero_Dispersion 1.49584
+MUSETT_T2_DSSD_X126_E_Zero_Dispersion -0.310643
+MUSETT_T2_DSSD_X127_E_Zero_Dispersion -1.65641
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/latex/double_alpha_run_0274_Y_MM2_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/latex/double_alpha_run_0274_Y_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..08927343ad82e24a6674ca03041c4e2afb7df7bd
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/latex/double_alpha_run_0274_Y_MM2_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+123 &  1 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.38247
+
+Sigma fit sigma: 0.516623
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a404c4da212317405c288baa69957d161a3a4755
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_E 59.702 -0.00728302
+MUSETT_T3_DSSD_Y1_E 58.3787 -0.0071186
+MUSETT_T3_DSSD_Y2_E 59.5406 -0.00726078
+MUSETT_T3_DSSD_Y3_E 59.4207 -0.00724628
+MUSETT_T3_DSSD_Y4_E 59.2519 -0.00722493
+MUSETT_T3_DSSD_Y5_E 59.5148 -0.00725591
+MUSETT_T3_DSSD_Y6_E 59.2665 -0.00722811
+MUSETT_T3_DSSD_Y7_E 59.672 -0.00727764
+MUSETT_T3_DSSD_Y8_E 59.8899 -0.00730264
+MUSETT_T3_DSSD_Y9_E 59.8021 -0.00729111
+MUSETT_T3_DSSD_Y10_E 59.6681 -0.00727735
+MUSETT_T3_DSSD_Y11_E 59.293 -0.00723063
+MUSETT_T3_DSSD_Y12_E 59.176 -0.00721645
+MUSETT_T3_DSSD_Y13_E 59.3339 -0.00723976
+MUSETT_T3_DSSD_Y14_E 60.0332 -0.00732142
+MUSETT_T3_DSSD_Y15_E 59.2042 -0.00721921
+MUSETT_T3_DSSD_Y16_E 62.3463 -0.00760203
+MUSETT_T3_DSSD_Y17_E 62.4922 -0.00761942
+MUSETT_T3_DSSD_Y18_E 61.5402 -0.00750213
+MUSETT_T3_DSSD_Y19_E 62.3021 -0.00760024
+MUSETT_T3_DSSD_Y20_E 62.7324 -0.00765137
+MUSETT_T3_DSSD_Y21_E 62.9757 -0.00767956
+MUSETT_T3_DSSD_Y22_E 62.4365 -0.00761384
+MUSETT_T3_DSSD_Y23_E 62.4332 -0.00761375
+MUSETT_T3_DSSD_Y24_E 62.9777 -0.00768004
+MUSETT_T3_DSSD_Y25_E 63.0395 -0.00769065
+MUSETT_T3_DSSD_Y26_E 62.0007 -0.00756011
+MUSETT_T3_DSSD_Y27_E 62.9293 -0.00767512
+MUSETT_T3_DSSD_Y28_E 62.0982 -0.0075755
+MUSETT_T3_DSSD_Y29_E 62.4728 -0.00761992
+MUSETT_T3_DSSD_Y30_E 62.5931 -0.00763427
+MUSETT_T3_DSSD_Y31_E 62.5802 -0.00763452
+MUSETT_T3_DSSD_Y32_E 55.7914 -0.00680641
+MUSETT_T3_DSSD_Y33_E 55.7674 -0.00680123
+MUSETT_T3_DSSD_Y34_E 55.329 -0.00674626
+MUSETT_T3_DSSD_Y35_E 55.2499 -0.00673764
+MUSETT_T3_DSSD_Y36_E 55.2989 -0.00674368
+MUSETT_T3_DSSD_Y37_E 55.8055 -0.00680603
+MUSETT_T3_DSSD_Y38_E 55.4683 -0.00676398
+MUSETT_T3_DSSD_Y39_E 55.2091 -0.00673465
+MUSETT_T3_DSSD_Y40_E 54.9662 -0.00670321
+MUSETT_T3_DSSD_Y41_E 55.7319 -0.00679671
+MUSETT_T3_DSSD_Y42_E 55.5277 -0.0067717
+MUSETT_T3_DSSD_Y43_E 54.9271 -0.00669793
+MUSETT_T3_DSSD_Y44_E 55.2872 -0.00674212
+MUSETT_T3_DSSD_Y45_E 55.1636 -0.0067267
+MUSETT_T3_DSSD_Y46_E 55.5176 -0.00677111
+MUSETT_T3_DSSD_Y47_E 55.445 -0.00676249
+MUSETT_T3_DSSD_Y48_E 56.3994 -0.00688159
+MUSETT_T3_DSSD_Y49_E 56.3874 -0.00687186
+MUSETT_T3_DSSD_Y50_E 56.7626 -0.00692332
+MUSETT_T3_DSSD_Y51_E 56.5674 -0.00690086
+MUSETT_T3_DSSD_Y52_E 56.1204 -0.00684563
+MUSETT_T3_DSSD_Y53_E 56.5875 -0.00690296
+MUSETT_T3_DSSD_Y54_E 56.3352 -0.00687243
+MUSETT_T3_DSSD_Y55_E 56.6813 -0.0069144
+MUSETT_T3_DSSD_Y56_E 56.8614 -0.00694052
+MUSETT_T3_DSSD_Y57_E 56.3936 -0.00688224
+MUSETT_T3_DSSD_Y58_E 57.1705 -0.00697448
+MUSETT_T3_DSSD_Y59_E 56.5912 -0.00690253
+MUSETT_T3_DSSD_Y60_E 57.3671 -0.00699323
+MUSETT_T3_DSSD_Y61_E 56.748 -0.00692368
+MUSETT_T3_DSSD_Y62_E 56.3286 -0.00686989
+MUSETT_T3_DSSD_Y63_E 56.8989 -0.00693749
+MUSETT_T3_DSSD_Y64_E 58.9479 -0.00718907
+MUSETT_T3_DSSD_Y65_E 59.4791 -0.00725117
+MUSETT_T3_DSSD_Y66_E 59.1331 -0.00721363
+MUSETT_T3_DSSD_Y67_E 58.9369 -0.00718937
+MUSETT_T3_DSSD_Y68_E 58.9593 -0.00719074
+MUSETT_T3_DSSD_Y69_E 58.3407 -0.00711646
+MUSETT_T3_DSSD_Y70_E 58.7466 -0.00716412
+MUSETT_T3_DSSD_Y71_E 59.5453 -0.0072637
+MUSETT_T3_DSSD_Y72_E 59.7258 -0.00728509
+MUSETT_T3_DSSD_Y73_E 59.0505 -0.00720025
+MUSETT_T3_DSSD_Y74_E 59.0541 -0.00720339
+MUSETT_T3_DSSD_Y75_E 59.1222 -0.00721096
+MUSETT_T3_DSSD_Y76_E 59.1137 -0.00720993
+MUSETT_T3_DSSD_Y77_E 59.0423 -0.00720339
+MUSETT_T3_DSSD_Y78_E 58.6663 -0.00715385
+MUSETT_T3_DSSD_Y79_E 59.5802 -0.00726772
+MUSETT_T3_DSSD_Y80_E 62.6379 -0.00764533
+MUSETT_T3_DSSD_Y81_E 62.4283 -0.00761774
+MUSETT_T3_DSSD_Y82_E 62.1525 -0.00758286
+MUSETT_T3_DSSD_Y83_E 61.8869 -0.00755255
+MUSETT_T3_DSSD_Y84_E 61.7925 -0.0075406
+MUSETT_T3_DSSD_Y85_E 62.4247 -0.00761548
+MUSETT_T3_DSSD_Y86_E 61.9409 -0.00755804
+MUSETT_T3_DSSD_Y87_E 62.6041 -0.00763803
+MUSETT_T3_DSSD_Y88_E 62.3788 -0.00761206
+MUSETT_T3_DSSD_Y89_E 62.1087 -0.00757722
+MUSETT_T3_DSSD_Y90_E 61.3528 -0.00748336
+MUSETT_T3_DSSD_Y91_E 61.7744 -0.00753941
+MUSETT_T3_DSSD_Y92_E 61.4575 -0.00749639
+MUSETT_T3_DSSD_Y93_E 61.7842 -0.00753712
+MUSETT_T3_DSSD_Y94_E 61.6046 -0.00751549
+MUSETT_T3_DSSD_Y95_E 61.6088 -0.00752019
+MUSETT_T3_DSSD_Y96_E 56.2634 -0.00686135
+MUSETT_T3_DSSD_Y97_E 56.2993 -0.00686374
+MUSETT_T3_DSSD_Y98_E 55.8122 -0.00680555
+MUSETT_T3_DSSD_Y99_E 55.437 -0.00675937
+MUSETT_T3_DSSD_Y100_E 55.921 -0.00682207
+MUSETT_T3_DSSD_Y101_E 55.8696 -0.00681459
+MUSETT_T3_DSSD_Y102_E 55.5832 -0.0067806
+MUSETT_T3_DSSD_Y103_E 55.6435 -0.00678703
+MUSETT_T3_DSSD_Y104_E 55.4529 -0.00676431
+MUSETT_T3_DSSD_Y105_E 55.8255 -0.00680724
+MUSETT_T3_DSSD_Y106_E 56.1601 -0.00685133
+MUSETT_T3_DSSD_Y107_E 55.9735 -0.00682879
+MUSETT_T3_DSSD_Y108_E 55.277 -0.00674092
+MUSETT_T3_DSSD_Y109_E 55.3963 -0.00675567
+MUSETT_T3_DSSD_Y110_E 56.2012 -0.00685345
+MUSETT_T3_DSSD_Y111_E 56.2256 -0.00685819
+MUSETT_T3_DSSD_Y112_E 56.9505 -0.00694708
+MUSETT_T3_DSSD_Y113_E 56.652 -0.00691043
+MUSETT_T3_DSSD_Y114_E 56.4607 -0.0068827
+MUSETT_T3_DSSD_Y115_E 56.5407 -0.00689618
+MUSETT_T3_DSSD_Y116_E 57.1472 -0.00696739
+MUSETT_T3_DSSD_Y117_E 56.8202 -0.00692948
+MUSETT_T3_DSSD_Y118_E 56.3612 -0.00687348
+MUSETT_T3_DSSD_Y119_E 57.3636 -0.00699479
+MUSETT_T3_DSSD_Y120_E 57.1678 -0.00697736
+MUSETT_T3_DSSD_Y121_E 56.3742 -0.00687323
+MUSETT_T3_DSSD_Y122_E 56.9107 -0.00694054
+MUSETT_T3_DSSD_Y123_E 56.493 -0.00688812
+MUSETT_T3_DSSD_Y124_E 57.1898 -0.00697686
+MUSETT_T3_DSSD_Y125_E 56.6657 -0.00691505
+MUSETT_T3_DSSD_Y126_E 57.119 -0.00697105
+MUSETT_T3_DSSD_Y127_E 56.999 -0.00695078
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..2751b83f51f665bbaa8e8fad09a37f1e59ac5a4d
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E_Zero_Dispersion -5.41957
+MUSETT_T3_DSSD_X1_E_Zero_Dispersion -8.86995
+MUSETT_T3_DSSD_X2_E_Zero_Dispersion -8.30108
+MUSETT_T3_DSSD_X3_E_Zero_Dispersion -8.15939
+MUSETT_T3_DSSD_X4_E_Zero_Dispersion -9.03932
+MUSETT_T3_DSSD_X5_E_Zero_Dispersion -10.2498
+MUSETT_T3_DSSD_X6_E_Zero_Dispersion -7.43945
+MUSETT_T3_DSSD_X7_E_Zero_Dispersion -7.36836
+MUSETT_T3_DSSD_X8_E_Zero_Dispersion -9.11958
+MUSETT_T3_DSSD_X9_E_Zero_Dispersion -10.0619
+MUSETT_T3_DSSD_X10_E_Zero_Dispersion -7.15612
+MUSETT_T3_DSSD_X11_E_Zero_Dispersion -8.24408
+MUSETT_T3_DSSD_X12_E_Zero_Dispersion -8.14575
+MUSETT_T3_DSSD_X13_E_Zero_Dispersion -3.56741
+MUSETT_T3_DSSD_X14_E_Zero_Dispersion -7.66734
+MUSETT_T3_DSSD_X15_E_Zero_Dispersion -8.92918
+MUSETT_T3_DSSD_X16_E_Zero_Dispersion -9.27725
+MUSETT_T3_DSSD_X17_E_Zero_Dispersion -9.70349
+MUSETT_T3_DSSD_X18_E_Zero_Dispersion -11.0327
+MUSETT_T3_DSSD_X19_E_Zero_Dispersion -5.38831
+MUSETT_T3_DSSD_X20_E_Zero_Dispersion -6.83881
+MUSETT_T3_DSSD_X21_E_Zero_Dispersion -8.42252
+MUSETT_T3_DSSD_X22_E_Zero_Dispersion -8.39345
+MUSETT_T3_DSSD_X23_E_Zero_Dispersion -8.05925
+MUSETT_T3_DSSD_X24_E_Zero_Dispersion -8.17293
+MUSETT_T3_DSSD_X25_E_Zero_Dispersion -4.9071
+MUSETT_T3_DSSD_X26_E_Zero_Dispersion -9.02688
+MUSETT_T3_DSSD_X27_E_Zero_Dispersion -7.12465
+MUSETT_T3_DSSD_X28_E_Zero_Dispersion -5.2376
+MUSETT_T3_DSSD_X29_E_Zero_Dispersion -6.61771
+MUSETT_T3_DSSD_X30_E_Zero_Dispersion -6.96243
+MUSETT_T3_DSSD_X31_E_Zero_Dispersion -5.00018
+MUSETT_T3_DSSD_X32_E_Zero_Dispersion -4.88267
+MUSETT_T3_DSSD_X33_E_Zero_Dispersion -7.59861
+MUSETT_T3_DSSD_X34_E_Zero_Dispersion -9.43247
+MUSETT_T3_DSSD_X35_E_Zero_Dispersion -8.19111
+MUSETT_T3_DSSD_X36_E_Zero_Dispersion -8.10079
+MUSETT_T3_DSSD_X37_E_Zero_Dispersion -7.41225
+MUSETT_T3_DSSD_X38_E_Zero_Dispersion -8.5484
+MUSETT_T3_DSSD_X39_E_Zero_Dispersion -5.77262
+MUSETT_T3_DSSD_X40_E_Zero_Dispersion -7.97901
+MUSETT_T3_DSSD_X41_E_Zero_Dispersion -7.83998
+MUSETT_T3_DSSD_X42_E_Zero_Dispersion -7.95986
+MUSETT_T3_DSSD_X43_E_Zero_Dispersion -8.60867
+MUSETT_T3_DSSD_X44_E_Zero_Dispersion -8.28093
+MUSETT_T3_DSSD_X45_E_Zero_Dispersion -8.6904
+MUSETT_T3_DSSD_X46_E_Zero_Dispersion -7.19054
+MUSETT_T3_DSSD_X47_E_Zero_Dispersion -6.90563
+MUSETT_T3_DSSD_X48_E_Zero_Dispersion -3.70104
+MUSETT_T3_DSSD_X49_E_Zero_Dispersion -13.5441
+MUSETT_T3_DSSD_X50_E_Zero_Dispersion -6.76592
+MUSETT_T3_DSSD_X51_E_Zero_Dispersion -5.14453
+MUSETT_T3_DSSD_X52_E_Zero_Dispersion -5.99688
+MUSETT_T3_DSSD_X53_E_Zero_Dispersion -5.57742
+MUSETT_T3_DSSD_X54_E_Zero_Dispersion -5.26969
+MUSETT_T3_DSSD_X55_E_Zero_Dispersion -5.56943
+MUSETT_T3_DSSD_X56_E_Zero_Dispersion -0.672954
+MUSETT_T3_DSSD_X57_E_Zero_Dispersion -2.07153
+MUSETT_T3_DSSD_X58_E_Zero_Dispersion -5.09013
+MUSETT_T3_DSSD_X59_E_Zero_Dispersion -6.62418
+MUSETT_T3_DSSD_X60_E_Zero_Dispersion -11.2358
+MUSETT_T3_DSSD_X61_E_Zero_Dispersion -4.21565
+MUSETT_T3_DSSD_X62_E_Zero_Dispersion -7.34583
+MUSETT_T3_DSSD_X63_E_Zero_Dispersion -9.65512
+MUSETT_T3_DSSD_X64_E_Zero_Dispersion -7.65683
+MUSETT_T3_DSSD_X65_E_Zero_Dispersion -10.6823
+MUSETT_T3_DSSD_X66_E_Zero_Dispersion -5.40653
+MUSETT_T3_DSSD_X67_E_Zero_Dispersion -5.79389
+MUSETT_T3_DSSD_X68_E_Zero_Dispersion -7.3289
+MUSETT_T3_DSSD_X69_E_Zero_Dispersion -5.99778
+MUSETT_T3_DSSD_X70_E_Zero_Dispersion -8.12196
+MUSETT_T3_DSSD_X71_E_Zero_Dispersion -5.65164
+MUSETT_T3_DSSD_X72_E_Zero_Dispersion -6.36576
+MUSETT_T3_DSSD_X73_E_Zero_Dispersion -9.1687
+MUSETT_T3_DSSD_X74_E_Zero_Dispersion -6.09965
+MUSETT_T3_DSSD_X75_E_Zero_Dispersion -6.93288
+MUSETT_T3_DSSD_X76_E_Zero_Dispersion -6.92679
+MUSETT_T3_DSSD_X77_E_Zero_Dispersion -4.45287
+MUSETT_T3_DSSD_X78_E_Zero_Dispersion -8.66758
+MUSETT_T3_DSSD_X79_E_Zero_Dispersion -5.9207
+MUSETT_T3_DSSD_X80_E_Zero_Dispersion -0.957496
+MUSETT_T3_DSSD_X81_E_Zero_Dispersion -3.12253
+MUSETT_T3_DSSD_X82_E_Zero_Dispersion -4.44679
+MUSETT_T3_DSSD_X83_E_Zero_Dispersion -2.17414
+MUSETT_T3_DSSD_X84_E_Zero_Dispersion -2.63732
+MUSETT_T3_DSSD_X85_E_Zero_Dispersion -5.08047
+MUSETT_T3_DSSD_X86_E_Zero_Dispersion -3.36589
+MUSETT_T3_DSSD_X87_E_Zero_Dispersion -4.36667
+MUSETT_T3_DSSD_X88_E_Zero_Dispersion -2.74132
+MUSETT_T3_DSSD_X89_E_Zero_Dispersion -4.76239
+MUSETT_T3_DSSD_X90_E_Zero_Dispersion -6.55583
+MUSETT_T3_DSSD_X91_E_Zero_Dispersion -1.53525
+MUSETT_T3_DSSD_X92_E_Zero_Dispersion -6.27653
+MUSETT_T3_DSSD_X93_E_Zero_Dispersion -5.3257
+MUSETT_T3_DSSD_X94_E_Zero_Dispersion -5.01043
+MUSETT_T3_DSSD_X95_E_Zero_Dispersion -0.456113
+MUSETT_T3_DSSD_X96_E_Zero_Dispersion -8.04745
+MUSETT_T3_DSSD_X97_E_Zero_Dispersion -10.4259
+MUSETT_T3_DSSD_X98_E_Zero_Dispersion -8.97827
+MUSETT_T3_DSSD_X99_E_Zero_Dispersion -9.50101
+MUSETT_T3_DSSD_X100_E_Zero_Dispersion -5.06649
+MUSETT_T3_DSSD_X101_E_Zero_Dispersion -6.52895
+MUSETT_T3_DSSD_X102_E_Zero_Dispersion -5.38737
+MUSETT_T3_DSSD_X103_E_Zero_Dispersion -6.51207
+MUSETT_T3_DSSD_X104_E_Zero_Dispersion -5.86657
+MUSETT_T3_DSSD_X105_E_Zero_Dispersion -8.89782
+MUSETT_T3_DSSD_X106_E_Zero_Dispersion -4.95711
+MUSETT_T3_DSSD_X107_E_Zero_Dispersion -4.69307
+MUSETT_T3_DSSD_X108_E_Zero_Dispersion -8.20475
+MUSETT_T3_DSSD_X109_E_Zero_Dispersion -7.97014
+MUSETT_T3_DSSD_X110_E_Zero_Dispersion -8.41562
+MUSETT_T3_DSSD_X111_E_Zero_Dispersion -6.30905
+MUSETT_T3_DSSD_X112_E_Zero_Dispersion -5.75683
+MUSETT_T3_DSSD_X113_E_Zero_Dispersion -6.0403
+MUSETT_T3_DSSD_X114_E_Zero_Dispersion -11.2787
+MUSETT_T3_DSSD_X115_E_Zero_Dispersion -6.84209
+MUSETT_T3_DSSD_X116_E_Zero_Dispersion -10.0933
+MUSETT_T3_DSSD_X117_E_Zero_Dispersion -7.77647
+MUSETT_T3_DSSD_X118_E_Zero_Dispersion -7.81202
+MUSETT_T3_DSSD_X119_E_Zero_Dispersion -8.89558
+MUSETT_T3_DSSD_X120_E_Zero_Dispersion -1.3233
+MUSETT_T3_DSSD_X121_E_Zero_Dispersion -10.0015
+MUSETT_T3_DSSD_X122_E_Zero_Dispersion -7.74672
+MUSETT_T3_DSSD_X123_E_Zero_Dispersion -9.50896
+MUSETT_T3_DSSD_X124_E_Zero_Dispersion -5.07719
+MUSETT_T3_DSSD_X125_E_Zero_Dispersion -2.54399
+MUSETT_T3_DSSD_X126_E_Zero_Dispersion -1.7462
+MUSETT_T3_DSSD_X127_E_Zero_Dispersion -8.38043
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/latex/double_alpha_run_0274_Y_MM3_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/latex/double_alpha_run_0274_Y_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..729d52a0b8315dd863e3bca55ac7e06e75028201
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/latex/double_alpha_run_0274_Y_MM3_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  0 to 127 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_0274_Y_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.00954
+
+Sigma fit sigma: 0.166493
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_0274_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..3a2fa5a79e1b882f99538a1c3ea7ce354d532d91
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X1_E -61.1208 0.00746406
+MUSETT_T0_DSSD_X2_E -61.6675 0.00752582
+MUSETT_T0_DSSD_X3_E -61.2762 0.0074817
+MUSETT_T0_DSSD_X4_E -61.1528 0.00746629
+MUSETT_T0_DSSD_X5_E -61.4073 0.00749789
+MUSETT_T0_DSSD_X6_E -61.2983 0.00748309
+MUSETT_T0_DSSD_X7_E -60.9942 0.00744676
+MUSETT_T0_DSSD_X8_E -60.7568 0.00741862
+MUSETT_T0_DSSD_X9_E -60.7209 0.00741264
+MUSETT_T0_DSSD_X10_E -62.3275 0.00760814
+MUSETT_T0_DSSD_X11_E -62.0191 0.00757165
+MUSETT_T0_DSSD_X12_E -61.6158 0.00752169
+MUSETT_T0_DSSD_X13_E -61.6131 0.0075228
+MUSETT_T0_DSSD_X14_E -61.419 0.00749721
+MUSETT_T0_DSSD_X15_E -62.1513 0.00758648
+MUSETT_T0_DSSD_X16_E -61.0179 0.00744761
+MUSETT_T0_DSSD_X17_E -62.6095 0.00764466
+MUSETT_T0_DSSD_X18_E -61.9721 0.00757029
+MUSETT_T0_DSSD_X19_E -61.8277 0.00754841
+MUSETT_T0_DSSD_X20_E -61.9456 0.00756393
+MUSETT_T0_DSSD_X21_E -63.5377 0.00775798
+MUSETT_T0_DSSD_X22_E -62.0787 0.00758034
+MUSETT_T0_DSSD_X23_E -61.9391 0.00756191
+MUSETT_T0_DSSD_X24_E -62.145 0.00758935
+MUSETT_T0_DSSD_X25_E -62.3753 0.00761693
+MUSETT_T0_DSSD_X26_E -62.5654 0.00763812
+MUSETT_T0_DSSD_X27_E -62.6261 0.00764629
+MUSETT_T0_DSSD_X28_E -62.036 0.00757722
+MUSETT_T0_DSSD_X29_E -62.7202 0.00765514
+MUSETT_T0_DSSD_X30_E -62.1674 0.00759131
+MUSETT_T0_DSSD_X31_E -63.0507 0.00769798
+MUSETT_T0_DSSD_X32_E -62.2015 0.00759476
+MUSETT_T0_DSSD_X33_E -56.0625 0.00684513
+MUSETT_T0_DSSD_X34_E -56.3393 0.00687979
+MUSETT_T0_DSSD_X35_E -55.0695 0.00672469
+MUSETT_T0_DSSD_X36_E -55.825 0.00681772
+MUSETT_T0_DSSD_X37_E -55.5784 0.00678682
+MUSETT_T0_DSSD_X38_E -54.9215 0.00670936
+MUSETT_T0_DSSD_X39_E -55.4209 0.00676909
+MUSETT_T0_DSSD_X40_E -55.19 0.00674055
+MUSETT_T0_DSSD_X41_E -55.8977 0.00682444
+MUSETT_T0_DSSD_X42_E -55.5041 0.00677725
+MUSETT_T0_DSSD_X43_E -55.7618 0.00680926
+MUSETT_T0_DSSD_X44_E -55.8855 0.00682401
+MUSETT_T0_DSSD_X45_E -55.9116 0.00682759
+MUSETT_T0_DSSD_X46_E -56.0731 0.00684536
+MUSETT_T0_DSSD_X47_E -55.4323 0.00677014
+MUSETT_T0_DSSD_X48_E -55.6243 0.00679015
+MUSETT_T0_DSSD_X49_E -57.4481 0.00701463
+MUSETT_T0_DSSD_X50_E -57.3166 0.00699996
+MUSETT_T0_DSSD_X51_E -57.4682 0.00701473
+MUSETT_T0_DSSD_X52_E -56.9036 0.00694772
+MUSETT_T0_DSSD_X53_E -57.9253 0.00707135
+MUSETT_T0_DSSD_X54_E -56.8322 0.00693982
+MUSETT_T0_DSSD_X55_E -57.3403 0.00700263
+MUSETT_T0_DSSD_X56_E -57.11 0.00697302
+MUSETT_T0_DSSD_X57_E -58.0662 0.00709005
+MUSETT_T0_DSSD_X58_E -57.1909 0.00698498
+MUSETT_T0_DSSD_X59_E -57.1516 0.00697543
+MUSETT_T0_DSSD_X60_E -57.3091 0.00699896
+MUSETT_T0_DSSD_X61_E -56.8788 0.00694276
+MUSETT_T0_DSSD_X62_E -57.5062 0.00702177
+MUSETT_T0_DSSD_X63_E -57.4608 0.00701642
+MUSETT_T0_DSSD_X64_E -57.6054 0.00703493
+MUSETT_T0_DSSD_X65_E -62.6637 0.00765519
+MUSETT_T0_DSSD_X66_E -62.8084 0.00767265
+MUSETT_T0_DSSD_X67_E -62.6318 0.00765143
+MUSETT_T0_DSSD_X68_E -63.6899 0.00777649
+MUSETT_T0_DSSD_X69_E -62.46 0.00763065
+MUSETT_T0_DSSD_X70_E -62.9383 0.00769239
+MUSETT_T0_DSSD_X71_E -63.1232 0.00771022
+MUSETT_T0_DSSD_X72_E -62.3967 0.00762575
+MUSETT_T0_DSSD_X73_E -63.1794 0.007721
+MUSETT_T0_DSSD_X74_E -62.2726 0.00761037
+MUSETT_T0_DSSD_X75_E -62.7728 0.00767497
+MUSETT_T0_DSSD_X76_E -62.9363 0.00769246
+MUSETT_T0_DSSD_X77_E -62.5638 0.00764824
+MUSETT_T0_DSSD_X78_E -62.5178 0.00764408
+MUSETT_T0_DSSD_X79_E -62.6461 0.00766375
+MUSETT_T0_DSSD_X80_E -63.525 0.00776621
+MUSETT_T0_DSSD_X81_E -59.9128 0.00732741
+MUSETT_T0_DSSD_X82_E -59.3636 0.00726247
+MUSETT_T0_DSSD_X83_E -59.8482 0.00731971
+MUSETT_T0_DSSD_X84_E -60.4754 0.00739241
+MUSETT_T0_DSSD_X85_E -60.3435 0.00737654
+MUSETT_T0_DSSD_X86_E -60.9015 0.00744372
+MUSETT_T0_DSSD_X87_E -60.4558 0.00738888
+MUSETT_T0_DSSD_X88_E -61.235 0.00748304
+MUSETT_T0_DSSD_X89_E -61.2602 0.00748247
+MUSETT_T0_DSSD_X90_E -60.8604 0.00743528
+MUSETT_T0_DSSD_X91_E -61.0173 0.00745408
+MUSETT_T0_DSSD_X92_E -62.0709 0.00758305
+MUSETT_T0_DSSD_X93_E -61.1413 0.00746888
+MUSETT_T0_DSSD_X94_E -60.3266 0.00736933
+MUSETT_T0_DSSD_X95_E -60.7026 0.00741607
+MUSETT_T0_DSSD_X96_E -61.6511 0.00752938
+MUSETT_T0_DSSD_X97_E -56.8975 0.00694585
+MUSETT_T0_DSSD_X98_E -56.7045 0.00692979
+MUSETT_T0_DSSD_X99_E -57.4852 0.00701765
+MUSETT_T0_DSSD_X100_E -56.5094 0.00690243
+MUSETT_T0_DSSD_X101_E -58.135 0.0070925
+MUSETT_T0_DSSD_X102_E -57.0159 0.00696594
+MUSETT_T0_DSSD_X103_E -56.915 0.00695517
+MUSETT_T0_DSSD_X104_E -56.5216 0.00690647
+MUSETT_T0_DSSD_X105_E -56.8348 0.00694123
+MUSETT_T0_DSSD_X106_E -57.3582 0.00700658
+MUSETT_T0_DSSD_X107_E -56.9332 0.00695083
+MUSETT_T0_DSSD_X108_E -56.998 0.00696262
+MUSETT_T0_DSSD_X109_E -58.1328 0.00709928
+MUSETT_T0_DSSD_X110_E -57.4545 0.00701814
+MUSETT_T0_DSSD_X111_E -56.8124 0.0069431
+MUSETT_T0_DSSD_X112_E -56.9338 0.00695883
+MUSETT_T0_DSSD_X113_E -58.4826 0.00714263
+MUSETT_T0_DSSD_X114_E -58.3264 0.00712789
+MUSETT_T0_DSSD_X115_E -57.9386 0.00707706
+MUSETT_T0_DSSD_X116_E -58.0162 0.00708749
+MUSETT_T0_DSSD_X117_E -57.4747 0.00702134
+MUSETT_T0_DSSD_X118_E -57.6784 0.00704615
+MUSETT_T0_DSSD_X119_E -57.8784 0.00706734
+MUSETT_T0_DSSD_X120_E -58.208 0.0071064
+MUSETT_T0_DSSD_X121_E -57.9961 0.00708332
+MUSETT_T0_DSSD_X122_E -58.2606 0.00711423
+MUSETT_T0_DSSD_X123_E -57.9878 0.00708282
+MUSETT_T0_DSSD_X124_E -59.0777 0.00721175
+MUSETT_T0_DSSD_X125_E -57.4447 0.0070148
+MUSETT_T0_DSSD_X126_E -58.0233 0.00708585
+MUSETT_T0_DSSD_X127_E -58.1629 0.00710048
+MUSETT_T0_DSSD_X128_E -58.9941 0.007205
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..27a78260e778badc1e65dd5e1c0642cdbe333ccd
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/Cal_Str_X_E_MM1.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X1_E_Zero_Dispersion 3.31826
+MUSETT_T1_DSSD_X2_E_Zero_Dispersion -2.12122
+MUSETT_T1_DSSD_X3_E_Zero_Dispersion 1.8638
+MUSETT_T1_DSSD_X4_E_Zero_Dispersion 1.47715
+MUSETT_T1_DSSD_X5_E_Zero_Dispersion 2.05422
+MUSETT_T1_DSSD_X6_E_Zero_Dispersion 0.429893
+MUSETT_T1_DSSD_X7_E_Zero_Dispersion 1.29458
+MUSETT_T1_DSSD_X8_E_Zero_Dispersion 2.2296
+MUSETT_T1_DSSD_X9_E_Zero_Dispersion 0.455026
+MUSETT_T1_DSSD_X10_E_Zero_Dispersion -0.202696
+MUSETT_T1_DSSD_X11_E_Zero_Dispersion 1.03105
+MUSETT_T1_DSSD_X12_E_Zero_Dispersion 0.253439
+MUSETT_T1_DSSD_X13_E_Zero_Dispersion 1.82041
+MUSETT_T1_DSSD_X14_E_Zero_Dispersion -0.247248
+MUSETT_T1_DSSD_X15_E_Zero_Dispersion -0.372974
+MUSETT_T1_DSSD_X16_E_Zero_Dispersion -0.948618
+MUSETT_T1_DSSD_X17_E_Zero_Dispersion 2.0412
+MUSETT_T1_DSSD_X18_E_Zero_Dispersion 5.76735
+MUSETT_T1_DSSD_X19_E_Zero_Dispersion 1.16575
+MUSETT_T1_DSSD_X20_E_Zero_Dispersion 2.39481
+MUSETT_T1_DSSD_X21_E_Zero_Dispersion 2.02453
+MUSETT_T1_DSSD_X22_E_Zero_Dispersion 2.56637
+MUSETT_T1_DSSD_X23_E_Zero_Dispersion 1.06394
+MUSETT_T1_DSSD_X24_E_Zero_Dispersion 3.56234
+MUSETT_T1_DSSD_X25_E_Zero_Dispersion 2.95716
+MUSETT_T1_DSSD_X26_E_Zero_Dispersion 0.789701
+MUSETT_T1_DSSD_X27_E_Zero_Dispersion 1.60545
+MUSETT_T1_DSSD_X28_E_Zero_Dispersion 4.83078
+MUSETT_T1_DSSD_X29_E_Zero_Dispersion -1.20681
+MUSETT_T1_DSSD_X30_E_Zero_Dispersion 2.7154
+MUSETT_T1_DSSD_X31_E_Zero_Dispersion 1.45376
+MUSETT_T1_DSSD_X32_E_Zero_Dispersion 1.9387
+MUSETT_T1_DSSD_X33_E_Zero_Dispersion 1.87169
+MUSETT_T1_DSSD_X34_E_Zero_Dispersion 2.89343
+MUSETT_T1_DSSD_X35_E_Zero_Dispersion 2.8554
+MUSETT_T1_DSSD_X36_E_Zero_Dispersion 3.77693
+MUSETT_T1_DSSD_X37_E_Zero_Dispersion 2.83182
+MUSETT_T1_DSSD_X38_E_Zero_Dispersion 6.19925
+MUSETT_T1_DSSD_X39_E_Zero_Dispersion 4.64912
+MUSETT_T1_DSSD_X40_E_Zero_Dispersion 4.2395
+MUSETT_T1_DSSD_X41_E_Zero_Dispersion 1.18291
+MUSETT_T1_DSSD_X42_E_Zero_Dispersion 2.2358
+MUSETT_T1_DSSD_X43_E_Zero_Dispersion 2.89726
+MUSETT_T1_DSSD_X44_E_Zero_Dispersion 2.45726
+MUSETT_T1_DSSD_X45_E_Zero_Dispersion 2.9394
+MUSETT_T1_DSSD_X46_E_Zero_Dispersion 0.597119
+MUSETT_T1_DSSD_X47_E_Zero_Dispersion 4.23
+MUSETT_T1_DSSD_X48_E_Zero_Dispersion 0.091128
+MUSETT_T1_DSSD_X49_E_Zero_Dispersion 2.24858
+MUSETT_T1_DSSD_X50_E_Zero_Dispersion 3.85479
+MUSETT_T1_DSSD_X51_E_Zero_Dispersion -0.509961
+MUSETT_T1_DSSD_X52_E_Zero_Dispersion 1.73771
+MUSETT_T1_DSSD_X53_E_Zero_Dispersion 0.444579
+MUSETT_T1_DSSD_X54_E_Zero_Dispersion 2.70882
+MUSETT_T1_DSSD_X55_E_Zero_Dispersion 3.60445
+MUSETT_T1_DSSD_X56_E_Zero_Dispersion 1.8604
+MUSETT_T1_DSSD_X57_E_Zero_Dispersion 2.17985
+MUSETT_T1_DSSD_X58_E_Zero_Dispersion 4.30362
+MUSETT_T1_DSSD_X59_E_Zero_Dispersion -1.27124
+MUSETT_T1_DSSD_X60_E_Zero_Dispersion 3.76398
+MUSETT_T1_DSSD_X61_E_Zero_Dispersion -0.528796
+MUSETT_T1_DSSD_X62_E_Zero_Dispersion 2.30742
+MUSETT_T1_DSSD_X63_E_Zero_Dispersion 2.52882
+MUSETT_T1_DSSD_X64_E_Zero_Dispersion 3.52446
+MUSETT_T1_DSSD_X65_E_Zero_Dispersion 6.21631
+MUSETT_T1_DSSD_X66_E_Zero_Dispersion 5.9921
+MUSETT_T1_DSSD_X67_E_Zero_Dispersion 6.36861
+MUSETT_T1_DSSD_X68_E_Zero_Dispersion 1.94082
+MUSETT_T1_DSSD_X69_E_Zero_Dispersion 6.59321
+MUSETT_T1_DSSD_X70_E_Zero_Dispersion 10.1099
+MUSETT_T1_DSSD_X71_E_Zero_Dispersion 5.05423
+MUSETT_T1_DSSD_X72_E_Zero_Dispersion 9.62236
+MUSETT_T1_DSSD_X73_E_Zero_Dispersion 9.19309
+MUSETT_T1_DSSD_X74_E_Zero_Dispersion 9.40983
+MUSETT_T1_DSSD_X75_E_Zero_Dispersion 13.1014
+MUSETT_T1_DSSD_X76_E_Zero_Dispersion 10.4419
+MUSETT_T1_DSSD_X77_E_Zero_Dispersion 11.8371
+MUSETT_T1_DSSD_X78_E_Zero_Dispersion 13.4091
+MUSETT_T1_DSSD_X79_E_Zero_Dispersion 17.6642
+MUSETT_T1_DSSD_X80_E_Zero_Dispersion 12.3404
+MUSETT_T1_DSSD_X81_E_Zero_Dispersion 15.4726
+MUSETT_T1_DSSD_X82_E_Zero_Dispersion 17.9738
+MUSETT_T1_DSSD_X83_E_Zero_Dispersion 15.6833
+MUSETT_T1_DSSD_X84_E_Zero_Dispersion 11.262
+MUSETT_T1_DSSD_X85_E_Zero_Dispersion 11.5359
+MUSETT_T1_DSSD_X86_E_Zero_Dispersion 10.4098
+MUSETT_T1_DSSD_X87_E_Zero_Dispersion 9.99555
+MUSETT_T1_DSSD_X88_E_Zero_Dispersion 8.8319
+MUSETT_T1_DSSD_X89_E_Zero_Dispersion 4.84346
+MUSETT_T1_DSSD_X90_E_Zero_Dispersion 6.63797
+MUSETT_T1_DSSD_X91_E_Zero_Dispersion 6.23688
+MUSETT_T1_DSSD_X92_E_Zero_Dispersion 6.52259
+MUSETT_T1_DSSD_X93_E_Zero_Dispersion 5.8684
+MUSETT_T1_DSSD_X94_E_Zero_Dispersion 5.82198
+MUSETT_T1_DSSD_X95_E_Zero_Dispersion 6.72663
+MUSETT_T1_DSSD_X96_E_Zero_Dispersion 3.9278
+MUSETT_T1_DSSD_X97_E_Zero_Dispersion 0.411282
+MUSETT_T1_DSSD_X98_E_Zero_Dispersion 9.27819
+MUSETT_T1_DSSD_X99_E_Zero_Dispersion 0.488031
+MUSETT_T1_DSSD_X100_E_Zero_Dispersion 5.11102
+MUSETT_T1_DSSD_X101_E_Zero_Dispersion -4.68532
+MUSETT_T1_DSSD_X102_E_Zero_Dispersion 7.03328
+MUSETT_T1_DSSD_X103_E_Zero_Dispersion 8.87449
+MUSETT_T1_DSSD_X104_E_Zero_Dispersion 8.14285
+MUSETT_T1_DSSD_X105_E_Zero_Dispersion 4.00011
+MUSETT_T1_DSSD_X106_E_Zero_Dispersion 5.67661
+MUSETT_T1_DSSD_X107_E_Zero_Dispersion 1.15362
+MUSETT_T1_DSSD_X108_E_Zero_Dispersion 5.71981
+MUSETT_T1_DSSD_X109_E_Zero_Dispersion 3.44129
+MUSETT_T1_DSSD_X110_E_Zero_Dispersion 5.42935
+MUSETT_T1_DSSD_X111_E_Zero_Dispersion 9.43061
+MUSETT_T1_DSSD_X112_E_Zero_Dispersion 10.476
+MUSETT_T1_DSSD_X113_E_Zero_Dispersion 4.17
+MUSETT_T1_DSSD_X114_E_Zero_Dispersion 9.15367
+MUSETT_T1_DSSD_X115_E_Zero_Dispersion 5.19154
+MUSETT_T1_DSSD_X116_E_Zero_Dispersion 6.2837
+MUSETT_T1_DSSD_X117_E_Zero_Dispersion 6.28696
+MUSETT_T1_DSSD_X118_E_Zero_Dispersion 6.20439
+MUSETT_T1_DSSD_X119_E_Zero_Dispersion 2.44417
+MUSETT_T1_DSSD_X120_E_Zero_Dispersion 1.07086
+MUSETT_T1_DSSD_X121_E_Zero_Dispersion 4.31051
+MUSETT_T1_DSSD_X122_E_Zero_Dispersion 2.69751
+MUSETT_T1_DSSD_X123_E_Zero_Dispersion 4.89076
+MUSETT_T1_DSSD_X124_E_Zero_Dispersion 0.134467
+MUSETT_T1_DSSD_X125_E_Zero_Dispersion 2.93377
+MUSETT_T1_DSSD_X126_E_Zero_Dispersion 3.3914
+MUSETT_T1_DSSD_X127_E_Zero_Dispersion 0.596674
+MUSETT_T1_DSSD_X128_E_Zero_Dispersion 4.06162
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/latex/double_alpha_run_244_X_MM1_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/latex/double_alpha_run_244_X_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b1b0f08722ed1473489d981711d8984c0286ed97
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/latex/double_alpha_run_244_X_MM1_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 1.91975
+
+Sigma fit sigma: 0.254217
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM1_E/peaks/Cal_Str_X_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1514879b173bb1c0abac27e92f48188a0ca62b20
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X1_E -62.3624 0.00761012
+MUSETT_T1_DSSD_X2_E -62.371 0.00760877
+MUSETT_T1_DSSD_X3_E -62.1936 0.00759021
+MUSETT_T1_DSSD_X4_E -62.0099 0.0075663
+MUSETT_T1_DSSD_X5_E -61.4333 0.00749709
+MUSETT_T1_DSSD_X6_E -61.6076 0.00751681
+MUSETT_T1_DSSD_X7_E -62.4597 0.00761988
+MUSETT_T1_DSSD_X8_E -61.3276 0.00748486
+MUSETT_T1_DSSD_X9_E -61.1994 0.00746931
+MUSETT_T1_DSSD_X10_E -61.5135 0.00750523
+MUSETT_T1_DSSD_X11_E -61.843 0.00754449
+MUSETT_T1_DSSD_X12_E -61.7608 0.00753579
+MUSETT_T1_DSSD_X13_E -61.9736 0.00756143
+MUSETT_T1_DSSD_X14_E -61.4587 0.00749868
+MUSETT_T1_DSSD_X15_E -61.3372 0.00748218
+MUSETT_T1_DSSD_X16_E -62.049 0.00757062
+MUSETT_T1_DSSD_X17_E -62.8031 0.00766039
+MUSETT_T1_DSSD_X18_E -62.1984 0.00758379
+MUSETT_T1_DSSD_X19_E -62.0833 0.00757771
+MUSETT_T1_DSSD_X20_E -62.3149 0.00759894
+MUSETT_T1_DSSD_X21_E -62.793 0.00766413
+MUSETT_T1_DSSD_X22_E -62.3253 0.00760286
+MUSETT_T1_DSSD_X23_E -62.9052 0.00767299
+MUSETT_T1_DSSD_X24_E -62.6229 0.00763869
+MUSETT_T1_DSSD_X25_E -62.7474 0.00765064
+MUSETT_T1_DSSD_X26_E -62.3524 0.00760372
+MUSETT_T1_DSSD_X27_E -62.1417 0.00758143
+MUSETT_T1_DSSD_X28_E -61.9796 0.00755889
+MUSETT_T1_DSSD_X29_E -61.5268 0.00750914
+MUSETT_T1_DSSD_X30_E -63.0556 0.00769029
+MUSETT_T1_DSSD_X31_E -62.285 0.00759403
+MUSETT_T1_DSSD_X32_E -63.1497 0.00770174
+MUSETT_T1_DSSD_X33_E -58.2595 0.00710945
+MUSETT_T1_DSSD_X34_E -58.1495 0.0070983
+MUSETT_T1_DSSD_X35_E -58.425 0.00712764
+MUSETT_T1_DSSD_X36_E -57.5043 0.00702656
+MUSETT_T1_DSSD_X37_E -58.3774 0.00711928
+MUSETT_T1_DSSD_X38_E -58.4588 0.00712951
+MUSETT_T1_DSSD_X39_E -58.6065 0.00714334
+MUSETT_T1_DSSD_X40_E -58.9822 0.00719271
+MUSETT_T1_DSSD_X41_E -58.7956 0.00716704
+MUSETT_T1_DSSD_X42_E -58.8535 0.00718162
+MUSETT_T1_DSSD_X43_E -58.2322 0.00710428
+MUSETT_T1_DSSD_X44_E -57.8207 0.00706366
+MUSETT_T1_DSSD_X45_E -58.6346 0.0071536
+MUSETT_T1_DSSD_X46_E -59.7894 0.00728966
+MUSETT_T1_DSSD_X47_E -59.2746 0.00722547
+MUSETT_T1_DSSD_X48_E -58.529 0.00714105
+MUSETT_T1_DSSD_X49_E -58.0371 0.0070803
+MUSETT_T1_DSSD_X50_E -58.6199 0.00715229
+MUSETT_T1_DSSD_X51_E -58.337 0.00711425
+MUSETT_T1_DSSD_X52_E -58.0837 0.00708355
+MUSETT_T1_DSSD_X53_E -58.1637 0.00709458
+MUSETT_T1_DSSD_X54_E -57.9776 0.00707403
+MUSETT_T1_DSSD_X55_E -58.3312 0.00711354
+MUSETT_T1_DSSD_X56_E -58.1594 0.00709216
+MUSETT_T1_DSSD_X57_E -58.0287 0.00708161
+MUSETT_T1_DSSD_X58_E -57.9741 0.00707198
+MUSETT_T1_DSSD_X59_E -58.5591 0.00714465
+MUSETT_T1_DSSD_X60_E -57.7298 0.00704314
+MUSETT_T1_DSSD_X61_E -57.911 0.00706416
+MUSETT_T1_DSSD_X62_E -58.32 0.00711548
+MUSETT_T1_DSSD_X63_E -57.9209 0.00706902
+MUSETT_T1_DSSD_X64_E -57.6581 0.00704331
+MUSETT_T1_DSSD_X65_E -61.1032 0.00745382
+MUSETT_T1_DSSD_X66_E -61.5619 0.00751166
+MUSETT_T1_DSSD_X67_E -61.3687 0.00748805
+MUSETT_T1_DSSD_X68_E -61.9709 0.0075568
+MUSETT_T1_DSSD_X69_E -61.6644 0.00752686
+MUSETT_T1_DSSD_X70_E -61.3912 0.00749046
+MUSETT_T1_DSSD_X71_E -61.9218 0.007552
+MUSETT_T1_DSSD_X72_E -62.0173 0.00756577
+MUSETT_T1_DSSD_X73_E -61.2703 0.00747548
+MUSETT_T1_DSSD_X74_E -62.3646 0.00760904
+MUSETT_T1_DSSD_X75_E -61.6779 0.0075284
+MUSETT_T1_DSSD_X76_E -61.8796 0.00755244
+MUSETT_T1_DSSD_X77_E -61.8422 0.00754114
+MUSETT_T1_DSSD_X78_E -61.8398 0.00754322
+MUSETT_T1_DSSD_X79_E -61.5458 0.00750591
+MUSETT_T1_DSSD_X80_E -61.74 0.00753496
+MUSETT_T1_DSSD_X81_E -63.3825 0.00773354
+MUSETT_T1_DSSD_X82_E -63.5514 0.00775624
+MUSETT_T1_DSSD_X83_E -64.0743 0.00781917
+MUSETT_T1_DSSD_X84_E -63.8267 0.00778846
+MUSETT_T1_DSSD_X85_E -63.882 0.00779768
+MUSETT_T1_DSSD_X86_E -64.0168 0.00780882
+MUSETT_T1_DSSD_X87_E -64.3022 0.00784247
+MUSETT_T1_DSSD_X88_E -64.6835 0.00788668
+MUSETT_T1_DSSD_X89_E -63.7597 0.00778432
+MUSETT_T1_DSSD_X90_E -64.2214 0.00783607
+MUSETT_T1_DSSD_X91_E -63.1681 0.00770996
+MUSETT_T1_DSSD_X92_E -63.1287 0.00770542
+MUSETT_T1_DSSD_X93_E -64.6547 0.00788697
+MUSETT_T1_DSSD_X94_E -64.0697 0.00781609
+MUSETT_T1_DSSD_X95_E -63.3459 0.0077344
+MUSETT_T1_DSSD_X96_E -63.3339 0.00772929
+MUSETT_T1_DSSD_X97_E -56.6206 0.00690407
+MUSETT_T1_DSSD_X98_E -56.6271 0.00690945
+MUSETT_T1_DSSD_X99_E -56.8075 0.00692682
+MUSETT_T1_DSSD_X100_E -56.3784 0.00687942
+MUSETT_T1_DSSD_X101_E -56.5092 0.00689507
+MUSETT_T1_DSSD_X102_E -57.0925 0.00696497
+MUSETT_T1_DSSD_X103_E -57.4137 0.00700377
+MUSETT_T1_DSSD_X104_E -56.4692 0.00689105
+MUSETT_T1_DSSD_X105_E -56.8896 0.00693984
+MUSETT_T1_DSSD_X106_E -56.927 0.00694687
+MUSETT_T1_DSSD_X107_E -57.9729 0.0070716
+MUSETT_T1_DSSD_X108_E -57.6679 0.00703655
+MUSETT_T1_DSSD_X109_E -57.6556 0.00703509
+MUSETT_T1_DSSD_X110_E -57.3883 0.00700337
+MUSETT_T1_DSSD_X111_E -57.7513 0.00704555
+MUSETT_T1_DSSD_X112_E -57.877 0.00706349
+MUSETT_T1_DSSD_X113_E -57.2915 0.00698936
+MUSETT_T1_DSSD_X114_E -57.3171 0.00699306
+MUSETT_T1_DSSD_X115_E -56.6719 0.0069159
+MUSETT_T1_DSSD_X116_E -57.7554 0.00704559
+MUSETT_T1_DSSD_X117_E -57.1005 0.0069688
+MUSETT_T1_DSSD_X118_E -57.1996 0.00697882
+MUSETT_T1_DSSD_X119_E -56.7493 0.00691919
+MUSETT_T1_DSSD_X120_E -58.3182 0.00711505
+MUSETT_T1_DSSD_X121_E -57.4007 0.00700393
+MUSETT_T1_DSSD_X122_E -57.9735 0.00707107
+MUSETT_T1_DSSD_X123_E -57.7802 0.00704869
+MUSETT_T1_DSSD_X124_E -57.4132 0.00700545
+MUSETT_T1_DSSD_X125_E -57.6474 0.00703247
+MUSETT_T1_DSSD_X126_E -57.6019 0.00702875
+MUSETT_T1_DSSD_X127_E -57.0542 0.00696086
+MUSETT_T1_DSSD_X128_E -57.9072 0.00706381
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..a1d0d195e75ebc7fcffae98d035de65ce55b4e0f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/Cal_Str_X_E_MM2.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X1_E_Zero_Dispersion -2.66336
+MUSETT_T2_DSSD_X2_E_Zero_Dispersion -5.25288
+MUSETT_T2_DSSD_X3_E_Zero_Dispersion -1.92259
+MUSETT_T2_DSSD_X4_E_Zero_Dispersion -3.54109
+MUSETT_T2_DSSD_X5_E_Zero_Dispersion -2.28776
+MUSETT_T2_DSSD_X6_E_Zero_Dispersion -3.97271
+MUSETT_T2_DSSD_X7_E_Zero_Dispersion -4.93891
+MUSETT_T2_DSSD_X8_E_Zero_Dispersion -1.54904
+MUSETT_T2_DSSD_X9_E_Zero_Dispersion -1.45065
+MUSETT_T2_DSSD_X10_E_Zero_Dispersion -4.07884
+MUSETT_T2_DSSD_X11_E_Zero_Dispersion -5.10266
+MUSETT_T2_DSSD_X12_E_Zero_Dispersion -3.66286
+MUSETT_T2_DSSD_X13_E_Zero_Dispersion -4.01344
+MUSETT_T2_DSSD_X14_E_Zero_Dispersion -3.93852
+MUSETT_T2_DSSD_X15_E_Zero_Dispersion -5.7754
+MUSETT_T2_DSSD_X16_E_Zero_Dispersion -4.02067
+MUSETT_T2_DSSD_X17_E_Zero_Dispersion -6.42262
+MUSETT_T2_DSSD_X18_E_Zero_Dispersion -9.48953
+MUSETT_T2_DSSD_X19_E_Zero_Dispersion -0.891036
+MUSETT_T2_DSSD_X20_E_Zero_Dispersion -8.46321
+MUSETT_T2_DSSD_X21_E_Zero_Dispersion -1.10458
+MUSETT_T2_DSSD_X22_E_Zero_Dispersion -5.61099
+MUSETT_T2_DSSD_X23_E_Zero_Dispersion -6.26129
+MUSETT_T2_DSSD_X24_E_Zero_Dispersion -6.12355
+MUSETT_T2_DSSD_X25_E_Zero_Dispersion -9.58648
+MUSETT_T2_DSSD_X26_E_Zero_Dispersion -8.24656
+MUSETT_T2_DSSD_X27_E_Zero_Dispersion -4.5608
+MUSETT_T2_DSSD_X28_E_Zero_Dispersion -7.56859
+MUSETT_T2_DSSD_X29_E_Zero_Dispersion -1.5913
+MUSETT_T2_DSSD_X30_E_Zero_Dispersion -7.37654
+MUSETT_T2_DSSD_X31_E_Zero_Dispersion -9.83087
+MUSETT_T2_DSSD_X32_E_Zero_Dispersion -7.39623
+MUSETT_T2_DSSD_X33_E_Zero_Dispersion -2.66342
+MUSETT_T2_DSSD_X34_E_Zero_Dispersion -0.0289014
+MUSETT_T2_DSSD_X35_E_Zero_Dispersion -4.95942
+MUSETT_T2_DSSD_X36_E_Zero_Dispersion 8.1537
+MUSETT_T2_DSSD_X37_E_Zero_Dispersion -7.91062
+MUSETT_T2_DSSD_X38_E_Zero_Dispersion -7.56346
+MUSETT_T2_DSSD_X39_E_Zero_Dispersion -12.3574
+MUSETT_T2_DSSD_X40_E_Zero_Dispersion -8.28567
+MUSETT_T2_DSSD_X41_E_Zero_Dispersion -11.6126
+MUSETT_T2_DSSD_X42_E_Zero_Dispersion -3.01155
+MUSETT_T2_DSSD_X43_E_Zero_Dispersion -4.76688
+MUSETT_T2_DSSD_X44_E_Zero_Dispersion 6.34002
+MUSETT_T2_DSSD_X45_E_Zero_Dispersion -4.51005
+MUSETT_T2_DSSD_X46_E_Zero_Dispersion -9.94451
+MUSETT_T2_DSSD_X47_E_Zero_Dispersion -11.5601
+MUSETT_T2_DSSD_X48_E_Zero_Dispersion -4.13332
+MUSETT_T2_DSSD_X49_E_Zero_Dispersion -4.98186
+MUSETT_T2_DSSD_X50_E_Zero_Dispersion -3.95739
+MUSETT_T2_DSSD_X51_E_Zero_Dispersion -8.01934
+MUSETT_T2_DSSD_X52_E_Zero_Dispersion -7.80714
+MUSETT_T2_DSSD_X53_E_Zero_Dispersion -6.32075
+MUSETT_T2_DSSD_X54_E_Zero_Dispersion -3.84099
+MUSETT_T2_DSSD_X55_E_Zero_Dispersion -8.02657
+MUSETT_T2_DSSD_X56_E_Zero_Dispersion -8.51638
+MUSETT_T2_DSSD_X57_E_Zero_Dispersion -2.272
+MUSETT_T2_DSSD_X58_E_Zero_Dispersion -5.71716
+MUSETT_T2_DSSD_X59_E_Zero_Dispersion -4.2153
+MUSETT_T2_DSSD_X60_E_Zero_Dispersion -4.60056
+MUSETT_T2_DSSD_X61_E_Zero_Dispersion -5.86954
+MUSETT_T2_DSSD_X62_E_Zero_Dispersion -4.20939
+MUSETT_T2_DSSD_X63_E_Zero_Dispersion -1.61668
+MUSETT_T2_DSSD_X64_E_Zero_Dispersion 5.78277
+MUSETT_T2_DSSD_X65_E_Zero_Dispersion -5.57542
+MUSETT_T2_DSSD_X66_E_Zero_Dispersion -3.51091
+MUSETT_T2_DSSD_X67_E_Zero_Dispersion -3.55616
+MUSETT_T2_DSSD_X68_E_Zero_Dispersion -8.67517
+MUSETT_T2_DSSD_X69_E_Zero_Dispersion -0.576371
+MUSETT_T2_DSSD_X70_E_Zero_Dispersion -3.91829
+MUSETT_T2_DSSD_X71_E_Zero_Dispersion -7.39344
+MUSETT_T2_DSSD_X72_E_Zero_Dispersion -5.08126
+MUSETT_T2_DSSD_X73_E_Zero_Dispersion -4.17441
+MUSETT_T2_DSSD_X74_E_Zero_Dispersion -4.12028
+MUSETT_T2_DSSD_X75_E_Zero_Dispersion -0.68974
+MUSETT_T2_DSSD_X76_E_Zero_Dispersion -1.3283
+MUSETT_T2_DSSD_X77_E_Zero_Dispersion -8.64839
+MUSETT_T2_DSSD_X78_E_Zero_Dispersion -6.05987
+MUSETT_T2_DSSD_X79_E_Zero_Dispersion -7.65052
+MUSETT_T2_DSSD_X80_E_Zero_Dispersion -1.81011
+MUSETT_T2_DSSD_X81_E_Zero_Dispersion -3.79935
+MUSETT_T2_DSSD_X82_E_Zero_Dispersion -1.58273
+MUSETT_T2_DSSD_X83_E_Zero_Dispersion -2.51097
+MUSETT_T2_DSSD_X84_E_Zero_Dispersion -3.03033
+MUSETT_T2_DSSD_X85_E_Zero_Dispersion -0.442009
+MUSETT_T2_DSSD_X86_E_Zero_Dispersion -6.02322
+MUSETT_T2_DSSD_X87_E_Zero_Dispersion -7.2206
+MUSETT_T2_DSSD_X88_E_Zero_Dispersion -9.61511
+MUSETT_T2_DSSD_X89_E_Zero_Dispersion 1.2093
+MUSETT_T2_DSSD_X90_E_Zero_Dispersion -3.6126
+MUSETT_T2_DSSD_X91_E_Zero_Dispersion -1.05543
+MUSETT_T2_DSSD_X92_E_Zero_Dispersion -0.763344
+MUSETT_T2_DSSD_X93_E_Zero_Dispersion -5.66186
+MUSETT_T2_DSSD_X94_E_Zero_Dispersion -5.15498
+MUSETT_T2_DSSD_X95_E_Zero_Dispersion 1.84768
+MUSETT_T2_DSSD_X96_E_Zero_Dispersion -2.00809
+MUSETT_T2_DSSD_X97_E_Zero_Dispersion -9.04459
+MUSETT_T2_DSSD_X98_E_Zero_Dispersion -3.6058
+MUSETT_T2_DSSD_X99_E_Zero_Dispersion -9.10151
+MUSETT_T2_DSSD_X100_E_Zero_Dispersion -3.22846
+MUSETT_T2_DSSD_X101_E_Zero_Dispersion -3.5899
+MUSETT_T2_DSSD_X102_E_Zero_Dispersion -5.1005
+MUSETT_T2_DSSD_X103_E_Zero_Dispersion -5.54284
+MUSETT_T2_DSSD_X104_E_Zero_Dispersion -2.57029
+MUSETT_T2_DSSD_X105_E_Zero_Dispersion -5.53144
+MUSETT_T2_DSSD_X106_E_Zero_Dispersion -2.6213
+MUSETT_T2_DSSD_X107_E_Zero_Dispersion -5.99254
+MUSETT_T2_DSSD_X108_E_Zero_Dispersion -3.48025
+MUSETT_T2_DSSD_X109_E_Zero_Dispersion -3.43173
+MUSETT_T2_DSSD_X110_E_Zero_Dispersion -2.38627
+MUSETT_T2_DSSD_X111_E_Zero_Dispersion -4.85672
+MUSETT_T2_DSSD_X112_E_Zero_Dispersion -1.81737
+MUSETT_T2_DSSD_X113_E_Zero_Dispersion -4.94892
+MUSETT_T2_DSSD_X114_E_Zero_Dispersion -4.27881
+MUSETT_T2_DSSD_X115_E_Zero_Dispersion -2.43837
+MUSETT_T2_DSSD_X116_E_Zero_Dispersion -5.38135
+MUSETT_T2_DSSD_X117_E_Zero_Dispersion -1.73183
+MUSETT_T2_DSSD_X118_E_Zero_Dispersion -4.18097
+MUSETT_T2_DSSD_X119_E_Zero_Dispersion -9.72105
+MUSETT_T2_DSSD_X120_E_Zero_Dispersion -4.44539
+MUSETT_T2_DSSD_X121_E_Zero_Dispersion -3.4985
+MUSETT_T2_DSSD_X122_E_Zero_Dispersion -6.68664
+MUSETT_T2_DSSD_X123_E_Zero_Dispersion -5.29485
+MUSETT_T2_DSSD_X124_E_Zero_Dispersion -3.51126
+MUSETT_T2_DSSD_X125_E_Zero_Dispersion -5.32215
+MUSETT_T2_DSSD_X126_E_Zero_Dispersion -3.18144
+MUSETT_T2_DSSD_X127_E_Zero_Dispersion -4.42428
+MUSETT_T2_DSSD_X128_E_Zero_Dispersion -5.73232
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/latex/double_alpha_run_244_X_MM2_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/latex/double_alpha_run_244_X_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..3365edba553e22cb61ca91d540c539acf3053f1f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/latex/double_alpha_run_244_X_MM2_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.20003
+
+Sigma fit sigma: 0.500241
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM2_E/peaks/Cal_Str_X_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1ea46de722d52007ccdc52ae1a44116b84ad5488
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X1_E -62.3745 0.00761382
+MUSETT_T2_DSSD_X2_E -62.4133 0.00761549
+MUSETT_T2_DSSD_X3_E -62.9088 0.00767481
+MUSETT_T2_DSSD_X4_E -62.0005 0.00756534
+MUSETT_T2_DSSD_X5_E -62.0959 0.00757598
+MUSETT_T2_DSSD_X6_E -62.5355 0.00763149
+MUSETT_T2_DSSD_X7_E -62.3555 0.00760844
+MUSETT_T2_DSSD_X8_E -62.789 0.00766052
+MUSETT_T2_DSSD_X9_E -62.8245 0.00766499
+MUSETT_T2_DSSD_X10_E -61.8797 0.00755263
+MUSETT_T2_DSSD_X11_E -62.3935 0.00761255
+MUSETT_T2_DSSD_X12_E -62.4152 0.00761577
+MUSETT_T2_DSSD_X13_E -62.4159 0.00761702
+MUSETT_T2_DSSD_X14_E -62.3704 0.00761108
+MUSETT_T2_DSSD_X15_E -62.317 0.00760687
+MUSETT_T2_DSSD_X16_E -63.2168 0.00771561
+MUSETT_T2_DSSD_X17_E -61.9631 0.00756257
+MUSETT_T2_DSSD_X18_E -61.6056 0.00751788
+MUSETT_T2_DSSD_X19_E -61.6813 0.00752472
+MUSETT_T2_DSSD_X20_E -61.5714 0.00750962
+MUSETT_T2_DSSD_X21_E -61.6266 0.00751682
+MUSETT_T2_DSSD_X22_E -62.1879 0.00758809
+MUSETT_T2_DSSD_X23_E -62.1134 0.00757826
+MUSETT_T2_DSSD_X24_E -61.7582 0.0075354
+MUSETT_T2_DSSD_X25_E -61.39 0.00749151
+MUSETT_T2_DSSD_X26_E -61.6812 0.00752659
+MUSETT_T2_DSSD_X27_E -61.7485 0.00753617
+MUSETT_T2_DSSD_X28_E -61.651 0.00752289
+MUSETT_T2_DSSD_X29_E -61.6342 0.00751953
+MUSETT_T2_DSSD_X30_E -61.2964 0.00747738
+MUSETT_T2_DSSD_X31_E -62.1731 0.00758767
+MUSETT_T2_DSSD_X32_E -61.208 0.00747172
+MUSETT_T2_DSSD_X33_E -58.877 0.00718399
+MUSETT_T2_DSSD_X34_E -58.0501 0.00708321
+MUSETT_T2_DSSD_X35_E -58.7726 0.00716724
+MUSETT_T2_DSSD_X36_E -58.3747 0.00712148
+MUSETT_T2_DSSD_X37_E -58.0135 0.00707986
+MUSETT_T2_DSSD_X38_E -58.0463 0.00708209
+MUSETT_T2_DSSD_X39_E -58.2094 0.00710299
+MUSETT_T2_DSSD_X40_E -57.8569 0.00705858
+MUSETT_T2_DSSD_X41_E -57.4387 0.00700905
+MUSETT_T2_DSSD_X42_E -58.3993 0.00712671
+MUSETT_T2_DSSD_X43_E -58.7613 0.00716844
+MUSETT_T2_DSSD_X44_E -57.9448 0.00707376
+MUSETT_T2_DSSD_X45_E -58.3502 0.00712097
+MUSETT_T2_DSSD_X46_E -58.2534 0.00711005
+MUSETT_T2_DSSD_X47_E -58.0822 0.00708956
+MUSETT_T2_DSSD_X48_E -58.3382 0.00711898
+MUSETT_T2_DSSD_X49_E -57.8843 0.00706058
+MUSETT_T2_DSSD_X50_E -57.0287 0.00695961
+MUSETT_T2_DSSD_X51_E -58.0686 0.00708481
+MUSETT_T2_DSSD_X52_E -57.6552 0.00703664
+MUSETT_T2_DSSD_X53_E -57.4091 0.00700501
+MUSETT_T2_DSSD_X54_E -57.022 0.00695781
+MUSETT_T2_DSSD_X55_E -57.7248 0.00704344
+MUSETT_T2_DSSD_X56_E -57.6815 0.00703611
+MUSETT_T2_DSSD_X57_E -57.7522 0.00704777
+MUSETT_T2_DSSD_X58_E -57.4394 0.00700864
+MUSETT_T2_DSSD_X59_E -57.7521 0.00704837
+MUSETT_T2_DSSD_X60_E -57.0404 0.0069587
+MUSETT_T2_DSSD_X61_E -57.3805 0.00700244
+MUSETT_T2_DSSD_X62_E -56.5934 0.00690545
+MUSETT_T2_DSSD_X63_E -57.3124 0.00699347
+MUSETT_T2_DSSD_X64_E -57.6371 0.00703515
+MUSETT_T2_DSSD_X65_E -63.5966 0.0077563
+MUSETT_T2_DSSD_X66_E -64.8681 0.00791583
+MUSETT_T2_DSSD_X67_E -64.0001 0.00780914
+MUSETT_T2_DSSD_X68_E -63.7075 0.00777425
+MUSETT_T2_DSSD_X69_E 7.39123 0.851608
+MUSETT_T2_DSSD_X70_E -64.4456 0.00786221
+MUSETT_T2_DSSD_X71_E -63.6997 0.00777172
+MUSETT_T2_DSSD_X72_E -63.5222 0.00775005
+MUSETT_T2_DSSD_X73_E -63.3566 0.00773054
+MUSETT_T2_DSSD_X74_E -63.234 0.00771375
+MUSETT_T2_DSSD_X75_E -63.9226 0.00779819
+MUSETT_T2_DSSD_X76_E -63.8297 0.00778634
+MUSETT_T2_DSSD_X77_E -63.8052 0.00778563
+MUSETT_T2_DSSD_X78_E -63.7932 0.00778386
+MUSETT_T2_DSSD_X79_E -63.5252 0.00775286
+MUSETT_T2_DSSD_X80_E -63.5056 0.00775044
+MUSETT_T2_DSSD_X81_E -63.4693 0.00774158
+MUSETT_T2_DSSD_X82_E -63.6629 0.00776338
+MUSETT_T2_DSSD_X83_E -63.419 0.00773462
+MUSETT_T2_DSSD_X84_E -63.5625 0.00775087
+MUSETT_T2_DSSD_X85_E -64.3707 0.00785022
+MUSETT_T2_DSSD_X86_E -64.1999 0.00782862
+MUSETT_T2_DSSD_X87_E -64.0598 0.0078123
+MUSETT_T2_DSSD_X88_E -64.3996 0.00785195
+MUSETT_T2_DSSD_X89_E -63.2586 0.00771552
+MUSETT_T2_DSSD_X90_E -63.7169 0.0077721
+MUSETT_T2_DSSD_X91_E -63.3022 0.00772491
+MUSETT_T2_DSSD_X92_E -63.6661 0.00776698
+MUSETT_T2_DSSD_X93_E -63.3863 0.00773314
+MUSETT_T2_DSSD_X94_E -64.5447 0.00787516
+MUSETT_T2_DSSD_X95_E -64.0332 0.00780874
+MUSETT_T2_DSSD_X96_E -63.775 0.00777911
+MUSETT_T2_DSSD_X97_E -59.019 0.0072016
+MUSETT_T2_DSSD_X98_E -58.4069 0.00712773
+MUSETT_T2_DSSD_X99_E -58.2978 0.00711337
+MUSETT_T2_DSSD_X100_E -58.5285 0.00714353
+MUSETT_T2_DSSD_X101_E -59.2948 0.00723645
+MUSETT_T2_DSSD_X102_E -59.6459 0.00727401
+MUSETT_T2_DSSD_X103_E -58.6857 0.00716225
+MUSETT_T2_DSSD_X104_E -59.0033 0.00719967
+MUSETT_T2_DSSD_X105_E -58.9264 0.00719161
+MUSETT_T2_DSSD_X106_E -59.4858 0.00725265
+MUSETT_T2_DSSD_X107_E -58.7519 0.00716832
+MUSETT_T2_DSSD_X108_E -59.0331 0.00720173
+MUSETT_T2_DSSD_X109_E -59.0155 0.00719649
+MUSETT_T2_DSSD_X110_E -60.2759 0.00735525
+MUSETT_T2_DSSD_X111_E -59.0083 0.00719905
+MUSETT_T2_DSSD_X112_E -58.4919 0.00713902
+MUSETT_T2_DSSD_X113_E -59.3071 0.00723613
+MUSETT_T2_DSSD_X114_E -59.243 0.00722981
+MUSETT_T2_DSSD_X115_E -59.8876 0.00730493
+MUSETT_T2_DSSD_X116_E -59.0986 0.00721094
+MUSETT_T2_DSSD_X117_E -59.6857 0.00728175
+MUSETT_T2_DSSD_X118_E -60.0494 0.0073265
+MUSETT_T2_DSSD_X119_E -59.5067 0.00725986
+MUSETT_T2_DSSD_X120_E -59.3945 0.0072465
+MUSETT_T2_DSSD_X121_E -59.9528 0.00731699
+MUSETT_T2_DSSD_X122_E -58.6326 0.00715602
+MUSETT_T2_DSSD_X123_E -58.967 0.00719608
+MUSETT_T2_DSSD_X124_E -59.1874 0.00722373
+MUSETT_T2_DSSD_X125_E -58.8666 0.00718277
+MUSETT_T2_DSSD_X126_E -58.9483 0.00719295
+MUSETT_T2_DSSD_X127_E -59.211 0.00722381
+MUSETT_T2_DSSD_X128_E -59.1485 0.007219442
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..20618fb89cf2e49eae95d99759c4cbad1d78ed4f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/Cal_Str_X_E_MM3.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X1_E_Zero_Dispersion -0.272194
+MUSETT_T3_DSSD_X2_E_Zero_Dispersion -3.57484
+MUSETT_T3_DSSD_X3_E_Zero_Dispersion -4.78478
+MUSETT_T3_DSSD_X4_E_Zero_Dispersion -3.34246
+MUSETT_T3_DSSD_X5_E_Zero_Dispersion -4.42034
+MUSETT_T3_DSSD_X6_E_Zero_Dispersion -2.40323
+MUSETT_T3_DSSD_X7_E_Zero_Dispersion -3.56719
+MUSETT_T3_DSSD_X8_E_Zero_Dispersion -4.44476
+MUSETT_T3_DSSD_X9_E_Zero_Dispersion -4.29056
+MUSETT_T3_DSSD_X10_E_Zero_Dispersion -1.13362
+MUSETT_T3_DSSD_X11_E_Zero_Dispersion -4.13547
+MUSETT_T3_DSSD_X12_E_Zero_Dispersion -3.52441
+MUSETT_T3_DSSD_X13_E_Zero_Dispersion -2.27095
+MUSETT_T3_DSSD_X14_E_Zero_Dispersion -2.68251
+MUSETT_T3_DSSD_X15_E_Zero_Dispersion -0.195728
+MUSETT_T3_DSSD_X16_E_Zero_Dispersion -1.36364
+MUSETT_T3_DSSD_X17_E_Zero_Dispersion -1.39536
+MUSETT_T3_DSSD_X18_E_Zero_Dispersion -2.53981
+MUSETT_T3_DSSD_X19_E_Zero_Dispersion -5.15211
+MUSETT_T3_DSSD_X20_E_Zero_Dispersion -7.00928
+MUSETT_T3_DSSD_X21_E_Zero_Dispersion -6.49325
+MUSETT_T3_DSSD_X22_E_Zero_Dispersion -3.46926
+MUSETT_T3_DSSD_X23_E_Zero_Dispersion -4.25129
+MUSETT_T3_DSSD_X24_E_Zero_Dispersion -3.7358
+MUSETT_T3_DSSD_X25_E_Zero_Dispersion -2.60782
+MUSETT_T3_DSSD_X26_E_Zero_Dispersion -3.1108
+MUSETT_T3_DSSD_X27_E_Zero_Dispersion -1.61095
+MUSETT_T3_DSSD_X28_E_Zero_Dispersion -3.11692
+MUSETT_T3_DSSD_X29_E_Zero_Dispersion -4.54675
+MUSETT_T3_DSSD_X30_E_Zero_Dispersion -5.57507
+MUSETT_T3_DSSD_X31_E_Zero_Dispersion -1.97103
+MUSETT_T3_DSSD_X32_E_Zero_Dispersion 0.0507405
+MUSETT_T3_DSSD_X33_E_Zero_Dispersion -3.59308
+MUSETT_T3_DSSD_X34_E_Zero_Dispersion -3.44769
+MUSETT_T3_DSSD_X35_E_Zero_Dispersion -8.16984
+MUSETT_T3_DSSD_X36_E_Zero_Dispersion -4.99199
+MUSETT_T3_DSSD_X37_E_Zero_Dispersion -2.15116
+MUSETT_T3_DSSD_X38_E_Zero_Dispersion -4.20735
+MUSETT_T3_DSSD_X39_E_Zero_Dispersion -3.05659
+MUSETT_T3_DSSD_X40_E_Zero_Dispersion -4.67988
+MUSETT_T3_DSSD_X41_E_Zero_Dispersion -2.92491
+MUSETT_T3_DSSD_X42_E_Zero_Dispersion -2.42226
+MUSETT_T3_DSSD_X43_E_Zero_Dispersion -5.21746
+MUSETT_T3_DSSD_X44_E_Zero_Dispersion 0.477144
+MUSETT_T3_DSSD_X45_E_Zero_Dispersion -2.1261
+MUSETT_T3_DSSD_X46_E_Zero_Dispersion -1.11767
+MUSETT_T3_DSSD_X47_E_Zero_Dispersion -0.64482
+MUSETT_T3_DSSD_X48_E_Zero_Dispersion -2.74742
+MUSETT_T3_DSSD_X49_E_Zero_Dispersion -6.22693
+MUSETT_T3_DSSD_X50_E_Zero_Dispersion -2.24231
+MUSETT_T3_DSSD_X51_E_Zero_Dispersion -4.20288
+MUSETT_T3_DSSD_X52_E_Zero_Dispersion -1.5656
+MUSETT_T3_DSSD_X53_E_Zero_Dispersion -3.42217
+MUSETT_T3_DSSD_X54_E_Zero_Dispersion -3.38373
+MUSETT_T3_DSSD_X55_E_Zero_Dispersion -3.54143
+MUSETT_T3_DSSD_X56_E_Zero_Dispersion -5.92556
+MUSETT_T3_DSSD_X57_E_Zero_Dispersion -2.38321
+MUSETT_T3_DSSD_X58_E_Zero_Dispersion -3.50863
+MUSETT_T3_DSSD_X59_E_Zero_Dispersion -1.68054
+MUSETT_T3_DSSD_X60_E_Zero_Dispersion -4.98707
+MUSETT_T3_DSSD_X61_E_Zero_Dispersion -2.35383
+MUSETT_T3_DSSD_X62_E_Zero_Dispersion -3.46699
+MUSETT_T3_DSSD_X63_E_Zero_Dispersion -3.13198
+MUSETT_T3_DSSD_X64_E_Zero_Dispersion -0.735981
+MUSETT_T3_DSSD_X65_E_Zero_Dispersion -7.34884
+MUSETT_T3_DSSD_X66_E_Zero_Dispersion -2.733
+MUSETT_T3_DSSD_X67_E_Zero_Dispersion -3.52966
+MUSETT_T3_DSSD_X68_E_Zero_Dispersion -2.67818
+MUSETT_T3_DSSD_X69_E_Zero_Dispersion 8200.68
+MUSETT_T3_DSSD_X70_E_Zero_Dispersion -4.88533
+MUSETT_T3_DSSD_X71_E_Zero_Dispersion -4.34478
+MUSETT_T3_DSSD_X72_E_Zero_Dispersion -4.36081
+MUSETT_T3_DSSD_X73_E_Zero_Dispersion -3.62389
+MUSETT_T3_DSSD_X74_E_Zero_Dispersion -5.57414
+MUSETT_T3_DSSD_X75_E_Zero_Dispersion -5.10048
+MUSETT_T3_DSSD_X76_E_Zero_Dispersion -5.65346
+MUSETT_T3_DSSD_X77_E_Zero_Dispersion -3.25937
+MUSETT_T3_DSSD_X78_E_Zero_Dispersion -3.57589
+MUSETT_T3_DSSD_X79_E_Zero_Dispersion -1.77804
+MUSETT_T3_DSSD_X80_E_Zero_Dispersion -1.80417
+MUSETT_T3_DSSD_X81_E_Zero_Dispersion -6.49837
+MUSETT_T3_DSSD_X82_E_Zero_Dispersion -8.41806
+MUSETT_T3_DSSD_X83_E_Zero_Dispersion -7.36628
+MUSETT_T3_DSSD_X84_E_Zero_Dispersion -8.6958
+MUSETT_T3_DSSD_X85_E_Zero_Dispersion -7.8555
+MUSETT_T3_DSSD_X86_E_Zero_Dispersion -8.67096
+MUSETT_T3_DSSD_X87_E_Zero_Dispersion -7.86593
+MUSETT_T3_DSSD_X88_E_Zero_Dispersion -9.73612
+MUSETT_T3_DSSD_X89_E_Zero_Dispersion -6.86882
+MUSETT_T3_DSSD_X90_E_Zero_Dispersion -6.15759
+MUSETT_T3_DSSD_X91_E_Zero_Dispersion -2.54625
+MUSETT_T3_DSSD_X92_E_Zero_Dispersion -5.02406
+MUSETT_T3_DSSD_X93_E_Zero_Dispersion -4.70687
+MUSETT_T3_DSSD_X94_E_Zero_Dispersion -3.9826
+MUSETT_T3_DSSD_X95_E_Zero_Dispersion -8.18982
+MUSETT_T3_DSSD_X96_E_Zero_Dispersion -6.23549
+MUSETT_T3_DSSD_X97_E_Zero_Dispersion -3.26386
+MUSETT_T3_DSSD_X98_E_Zero_Dispersion -2.31023
+MUSETT_T3_DSSD_X99_E_Zero_Dispersion -3.52817
+MUSETT_T3_DSSD_X100_E_Zero_Dispersion -1.22212
+MUSETT_T3_DSSD_X101_E_Zero_Dispersion -1.91003
+MUSETT_T3_DSSD_X102_E_Zero_Dispersion -7.86838
+MUSETT_T3_DSSD_X103_E_Zero_Dispersion -1.75857
+MUSETT_T3_DSSD_X104_E_Zero_Dispersion -3.27153
+MUSETT_T3_DSSD_X105_E_Zero_Dispersion -1.77059
+MUSETT_T3_DSSD_X106_E_Zero_Dispersion -9.94726
+MUSETT_T3_DSSD_X107_E_Zero_Dispersion -4.05166
+MUSETT_T3_DSSD_X108_E_Zero_Dispersion -5.07817
+MUSETT_T3_DSSD_X109_E_Zero_Dispersion -8.59766
+MUSETT_T3_DSSD_X110_E_Zero_Dispersion -2.95256
+MUSETT_T3_DSSD_X111_E_Zero_Dispersion -4.68738
+MUSETT_T3_DSSD_X112_E_Zero_Dispersion -1.26695
+MUSETT_T3_DSSD_X113_E_Zero_Dispersion -3.96787
+MUSETT_T3_DSSD_X114_E_Zero_Dispersion -2.26424
+MUSETT_T3_DSSD_X115_E_Zero_Dispersion -6.23865
+MUSETT_T3_DSSD_X116_E_Zero_Dispersion -3.69418
+MUSETT_T3_DSSD_X117_E_Zero_Dispersion -4.60262
+MUSETT_T3_DSSD_X118_E_Zero_Dispersion -4.18733
+MUSETT_T3_DSSD_X119_E_Zero_Dispersion -4.68356
+MUSETT_T3_DSSD_X120_E_Zero_Dispersion -4.30828
+MUSETT_T3_DSSD_X121_E_Zero_Dispersion -1.65165
+MUSETT_T3_DSSD_X122_E_Zero_Dispersion -1.45627
+MUSETT_T3_DSSD_X123_E_Zero_Dispersion -2.32492
+MUSETT_T3_DSSD_X124_E_Zero_Dispersion -1.46822
+MUSETT_T3_DSSD_X125_E_Zero_Dispersion -3.52944
+MUSETT_T3_DSSD_X126_E_Zero_Dispersion -3.28717
+MUSETT_T3_DSSD_X127_E_Zero_Dispersion -4.64587
+MUSETT_T3_DSSD_X128_E_Zero_Dispersion -0.944562
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/latex/double_alpha_run_244_X_MM3_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/latex/double_alpha_run_244_X_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b268ca7a448fdfbc64e01b287dd8f1095639ef42
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/latex/double_alpha_run_244_X_MM3_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+69 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.25851
+
+Sigma fit sigma: 0.518519
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM3_E/peaks/Cal_Str_X_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b8e9902c2040d7f915f407dcbf10e57ab64702b7
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X1_E -61.4344 0.00750796
+MUSETT_T3_DSSD_X2_E -60.9311 0.00744726
+MUSETT_T3_DSSD_X3_E -61.3152 0.00749341
+MUSETT_T3_DSSD_X4_E -61.4404 0.00750847
+MUSETT_T3_DSSD_X5_E -61.3511 0.00749425
+MUSETT_T3_DSSD_X6_E -61.1564 0.00747159
+MUSETT_T3_DSSD_X7_E -61.2654 0.00748535
+MUSETT_T3_DSSD_X8_E -60.9618 0.00744638
+MUSETT_T3_DSSD_X9_E -60.9521 0.00744771
+MUSETT_T3_DSSD_X10_E -61.3243 0.00748969
+MUSETT_T3_DSSD_X11_E -61.1676 0.00747118
+MUSETT_T3_DSSD_X12_E -62.3027 0.00760888
+MUSETT_T3_DSSD_X13_E -61.0781 0.00745987
+MUSETT_T3_DSSD_X14_E -61.2459 0.00748024
+MUSETT_T3_DSSD_X15_E -61.0256 0.00745258
+MUSETT_T3_DSSD_X16_E -62.0394 0.00757675
+MUSETT_T3_DSSD_X17_E -63.0618 0.00770125
+MUSETT_T3_DSSD_X18_E -62.549 0.0076384
+MUSETT_T3_DSSD_X19_E -62.3853 0.00761829
+MUSETT_T3_DSSD_X20_E -62.2692 0.00760521
+MUSETT_T3_DSSD_X21_E -62.1327 0.00758719
+MUSETT_T3_DSSD_X22_E -62.3744 0.00762015
+MUSETT_T3_DSSD_X23_E -63.0067 0.00769716
+MUSETT_T3_DSSD_X24_E -63.2836 0.00772789
+MUSETT_T3_DSSD_X25_E -61.9669 0.00757139
+MUSETT_T3_DSSD_X26_E -62.8285 0.00767525
+MUSETT_T3_DSSD_X27_E -62.7963 0.00767196
+MUSETT_T3_DSSD_X28_E -62.5152 0.00763828
+MUSETT_T3_DSSD_X29_E -62.678 0.00765939
+MUSETT_T3_DSSD_X30_E -62.7253 0.00766476
+MUSETT_T3_DSSD_X31_E -63.7153 0.00778588
+MUSETT_T3_DSSD_X32_E -62.5499 0.00764735
+MUSETT_T3_DSSD_X33_E -56.8213 0.00696677
+MUSETT_T3_DSSD_X34_E -56.7982 0.00696255
+MUSETT_T3_DSSD_X35_E -55.526 0.00681059
+MUSETT_T3_DSSD_X36_E -56.4154 0.00691009
+MUSETT_T3_DSSD_X37_E -56.4757 0.00692283
+MUSETT_T3_DSSD_X38_E -57.2453 0.00700874
+MUSETT_T3_DSSD_X39_E -57.0613 0.00699212
+MUSETT_T3_DSSD_X40_E -57.0886 0.00698759
+MUSETT_T3_DSSD_X41_E -57.7589 0.00706822
+MUSETT_T3_DSSD_X42_E -57.3428 0.0070182
+MUSETT_T3_DSSD_X43_E -57.7241 0.00706065
+MUSETT_T3_DSSD_X44_E 7.39123 0.851608
+MUSETT_T3_DSSD_X45_E -57.7224 0.00706052
+MUSETT_T3_DSSD_X46_E -58.2105 0.00711805
+MUSETT_T3_DSSD_X47_E -57.7339 0.00705913
+MUSETT_T3_DSSD_X48_E -58.3554 0.00713166
+MUSETT_T3_DSSD_X49_E -56.5837 0.00691576
+MUSETT_T3_DSSD_X50_E -56.257 0.00687717
+MUSETT_T3_DSSD_X51_E -55.8364 0.00682767
+MUSETT_T3_DSSD_X52_E -55.9874 0.00684895
+MUSETT_T3_DSSD_X53_E -55.4265 0.00678359
+MUSETT_T3_DSSD_X54_E -55.9351 0.00684516
+MUSETT_T3_DSSD_X55_E -55.2927 0.00676592
+MUSETT_T3_DSSD_X56_E -55.7086 0.00682041
+MUSETT_T3_DSSD_X57_E -56.235 0.00688176
+MUSETT_T3_DSSD_X58_E -54.8461 0.00671602
+MUSETT_T3_DSSD_X59_E -55.4902 0.00679944
+MUSETT_T3_DSSD_X60_E -55.0588 0.00674752
+MUSETT_T3_DSSD_X61_E -54.1771 0.00664112
+MUSETT_T3_DSSD_X62_E -54.5191 0.00668556
+MUSETT_T3_DSSD_X63_E -54.0062 0.00663013
+MUSETT_T3_DSSD_X64_E -53.5202 0.00657298
+MUSETT_T3_DSSD_X65_E -63.7555 0.00778507
+MUSETT_T3_DSSD_X66_E -63.3991 0.00774165
+MUSETT_T3_DSSD_X67_E -63.062 0.00770084
+MUSETT_T3_DSSD_X68_E -63.3627 0.00773595
+MUSETT_T3_DSSD_X69_E -63.2931 0.00772761
+MUSETT_T3_DSSD_X70_E -62.9059 0.00768021
+MUSETT_T3_DSSD_X71_E -63.8362 0.00779493
+MUSETT_T3_DSSD_X72_E -62.0544 0.00757796
+MUSETT_T3_DSSD_X73_E -62.2713 0.00760224
+MUSETT_T3_DSSD_X74_E -62.6003 0.00764373
+MUSETT_T3_DSSD_X75_E -62.7878 0.00766484
+MUSETT_T3_DSSD_X76_E -62.953 0.00768723
+MUSETT_T3_DSSD_X77_E -63.6786 0.00777506
+MUSETT_T3_DSSD_X78_E -61.9665 0.00756692
+MUSETT_T3_DSSD_X79_E -62.1503 0.00758847
+MUSETT_T3_DSSD_X80_E -62.6432 0.0076476
+MUSETT_T3_DSSD_X81_E -62.0631 0.00757748
+MUSETT_T3_DSSD_X82_E -62.3142 0.00760837
+MUSETT_T3_DSSD_X83_E -62.2456 0.0076
+MUSETT_T3_DSSD_X84_E -62.2345 0.00759733
+MUSETT_T3_DSSD_X85_E -61.7445 0.00753758
+MUSETT_T3_DSSD_X86_E -61.9859 0.00756955
+MUSETT_T3_DSSD_X87_E -61.9838 0.00756817
+MUSETT_T3_DSSD_X88_E -61.6506 0.00752898
+MUSETT_T3_DSSD_X89_E -61.8489 0.00755271
+MUSETT_T3_DSSD_X90_E -62.2366 0.00760022
+MUSETT_T3_DSSD_X91_E -61.9781 0.00756676
+MUSETT_T3_DSSD_X92_E -61.5129 0.00751273
+MUSETT_T3_DSSD_X93_E -62.2053 0.00759784
+MUSETT_T3_DSSD_X94_E -62.0013 0.00757199
+MUSETT_T3_DSSD_X95_E -61.8074 0.00754657
+MUSETT_T3_DSSD_X96_E -61.8809 0.0075563
+MUSETT_T3_DSSD_X97_E -55.7296 0.00680537
+MUSETT_T3_DSSD_X98_E -55.4005 0.00676761
+MUSETT_T3_DSSD_X99_E -54.8557 0.00669758
+MUSETT_T3_DSSD_X100_E -55.2366 0.00674709
+MUSETT_T3_DSSD_X101_E -55.5893 0.00678792
+MUSETT_T3_DSSD_X102_E -55.4701 0.00677435
+MUSETT_T3_DSSD_X103_E -55.4915 0.00677789
+MUSETT_T3_DSSD_X104_E -54.892 0.00670236
+MUSETT_T3_DSSD_X105_E -55.1963 0.00673947
+MUSETT_T3_DSSD_X106_E -55.5479 0.00678426
+MUSETT_T3_DSSD_X107_E -55.5634 0.00678306
+MUSETT_T3_DSSD_X108_E -55.4827 0.00677291
+MUSETT_T3_DSSD_X109_E -56.4925 0.00689605
+MUSETT_T3_DSSD_X110_E -55.8164 0.00681684
+MUSETT_T3_DSSD_X111_E -55.579 0.00678476
+MUSETT_T3_DSSD_X112_E -55.4701 0.00677075
+MUSETT_T3_DSSD_X113_E -57.0981 0.00697327
+MUSETT_T3_DSSD_X114_E -56.4556 0.00689535
+MUSETT_T3_DSSD_X115_E -57.1944 0.00698281
+MUSETT_T3_DSSD_X116_E -56.5164 0.00690203
+MUSETT_T3_DSSD_X117_E -68.2358 0.0083431
+MUSETT_T3_DSSD_X118_E -56.5714 0.00691135
+MUSETT_T3_DSSD_X119_E -56.8792 0.00694766
+MUSETT_T3_DSSD_X120_E -55.7309 0.00680731
+MUSETT_T3_DSSD_X121_E -56.3993 0.00688613
+MUSETT_T3_DSSD_X122_E -57.2433 0.00699377
+MUSETT_T3_DSSD_X123_E -57.1708 0.00698018
+MUSETT_T3_DSSD_X124_E -56.4433 0.00689599
+MUSETT_T3_DSSD_X125_E -57.2047 0.00698725
+MUSETT_T3_DSSD_X126_E -56.3667 0.00688249
+MUSETT_T3_DSSD_X127_E -57.3995 0.00700974
+MUSETT_T3_DSSD_X128_E -56.2814 0.00687093
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..9467a373b042d1abf6d1eab370731ae60f5b9e2b
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/Cal_Str_X_E_MM4.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T4_DSSD_X1_E_Zero_Dispersion 9.43714
+MUSETT_T4_DSSD_X2_E_Zero_Dispersion 10.3151
+MUSETT_T4_DSSD_X3_E_Zero_Dispersion 9.45406
+MUSETT_T4_DSSD_X4_E_Zero_Dispersion 9.18506
+MUSETT_T4_DSSD_X5_E_Zero_Dispersion 5.57887
+MUSETT_T4_DSSD_X6_E_Zero_Dispersion 6.80755
+MUSETT_T4_DSSD_X7_E_Zero_Dispersion 7.29718
+MUSETT_T4_DSSD_X8_E_Zero_Dispersion 5.23075
+MUSETT_T4_DSSD_X9_E_Zero_Dispersion 7.9912
+MUSETT_T4_DSSD_X10_E_Zero_Dispersion 4.16206
+MUSETT_T4_DSSD_X11_E_Zero_Dispersion 4.86749
+MUSETT_T4_DSSD_X12_E_Zero_Dispersion 3.85003
+MUSETT_T4_DSSD_X13_E_Zero_Dispersion 4.43557
+MUSETT_T4_DSSD_X14_E_Zero_Dispersion 4.30789
+MUSETT_T4_DSSD_X15_E_Zero_Dispersion 3.47843
+MUSETT_T4_DSSD_X16_E_Zero_Dispersion 3.87588
+MUSETT_T4_DSSD_X17_E_Zero_Dispersion 3.48618
+MUSETT_T4_DSSD_X18_E_Zero_Dispersion 3.23736
+MUSETT_T4_DSSD_X19_E_Zero_Dispersion 3.11517
+MUSETT_T4_DSSD_X20_E_Zero_Dispersion 4.29254
+MUSETT_T4_DSSD_X21_E_Zero_Dispersion 2.83918
+MUSETT_T4_DSSD_X22_E_Zero_Dispersion 6.54141
+MUSETT_T4_DSSD_X23_E_Zero_Dispersion 6.2891
+MUSETT_T4_DSSD_X24_E_Zero_Dispersion 3.01035
+MUSETT_T4_DSSD_X25_E_Zero_Dispersion 7.64501
+MUSETT_T4_DSSD_X26_E_Zero_Dispersion 6.14988
+MUSETT_T4_DSSD_X27_E_Zero_Dispersion 6.82549
+MUSETT_T4_DSSD_X28_E_Zero_Dispersion 7.5375
+MUSETT_T4_DSSD_X29_E_Zero_Dispersion 8.83919
+MUSETT_T4_DSSD_X30_E_Zero_Dispersion 8.40668
+MUSETT_T4_DSSD_X31_E_Zero_Dispersion 8.56127
+MUSETT_T4_DSSD_X32_E_Zero_Dispersion 12.7163
+MUSETT_T4_DSSD_X33_E_Zero_Dispersion 35.9519
+MUSETT_T4_DSSD_X34_E_Zero_Dispersion 34.3338
+MUSETT_T4_DSSD_X35_E_Zero_Dispersion 39.1134
+MUSETT_T4_DSSD_X36_E_Zero_Dispersion 27.8005
+MUSETT_T4_DSSD_X37_E_Zero_Dispersion 34.1042
+MUSETT_T4_DSSD_X38_E_Zero_Dispersion 24.3036
+MUSETT_T4_DSSD_X39_E_Zero_Dispersion 31.1979
+MUSETT_T4_DSSD_X40_E_Zero_Dispersion 21.9896
+MUSETT_T4_DSSD_X41_E_Zero_Dispersion 20.3563
+MUSETT_T4_DSSD_X42_E_Zero_Dispersion 21.4134
+MUSETT_T4_DSSD_X43_E_Zero_Dispersion 16.5249
+MUSETT_T4_DSSD_X44_E_Zero_Dispersion 8200.68
+MUSETT_T4_DSSD_X45_E_Zero_Dispersion 16.6242
+MUSETT_T4_DSSD_X46_E_Zero_Dispersion 14.1255
+MUSETT_T4_DSSD_X47_E_Zero_Dispersion 13.3807
+MUSETT_T4_DSSD_X48_E_Zero_Dispersion 9.42373
+MUSETT_T4_DSSD_X49_E_Zero_Dispersion 10.1485
+MUSETT_T4_DSSD_X50_E_Zero_Dispersion 11.7371
+MUSETT_T4_DSSD_X51_E_Zero_Dispersion 14.0411
+MUSETT_T4_DSSD_X52_E_Zero_Dispersion 17.4005
+MUSETT_T4_DSSD_X53_E_Zero_Dispersion 21.3321
+MUSETT_T4_DSSD_X54_E_Zero_Dispersion 20.5253
+MUSETT_T4_DSSD_X55_E_Zero_Dispersion 19.7653
+MUSETT_T4_DSSD_X56_E_Zero_Dispersion 24.0834
+MUSETT_T4_DSSD_X57_E_Zero_Dispersion 20.4027
+MUSETT_T4_DSSD_X58_E_Zero_Dispersion 25.5444
+MUSETT_T4_DSSD_X59_E_Zero_Dispersion 30.9983
+MUSETT_T4_DSSD_X60_E_Zero_Dispersion 32.1426
+MUSETT_T4_DSSD_X61_E_Zero_Dispersion 34.1756
+MUSETT_T4_DSSD_X62_E_Zero_Dispersion 37.2374
+MUSETT_T4_DSSD_X63_E_Zero_Dispersion 46.4195
+MUSETT_T4_DSSD_X64_E_Zero_Dispersion 49.5439
+MUSETT_T4_DSSD_X65_E_Zero_Dispersion 2.54403
+MUSETT_T4_DSSD_X66_E_Zero_Dispersion 2.64722
+MUSETT_T4_DSSD_X67_E_Zero_Dispersion 3.02016
+MUSETT_T4_DSSD_X68_E_Zero_Dispersion 1.31956
+MUSETT_T4_DSSD_X69_E_Zero_Dispersion 1.48183
+MUSETT_T4_DSSD_X70_E_Zero_Dispersion 1.36036
+MUSETT_T4_DSSD_X71_E_Zero_Dispersion 2.54787
+MUSETT_T4_DSSD_X72_E_Zero_Dispersion 3.19439
+MUSETT_T4_DSSD_X73_E_Zero_Dispersion 0.815804
+MUSETT_T4_DSSD_X74_E_Zero_Dispersion 2.2367
+MUSETT_T4_DSSD_X75_E_Zero_Dispersion 0.333278
+MUSETT_T4_DSSD_X76_E_Zero_Dispersion 2.70478
+MUSETT_T4_DSSD_X77_E_Zero_Dispersion 1.88898
+MUSETT_T4_DSSD_X78_E_Zero_Dispersion 2.86848
+MUSETT_T4_DSSD_X79_E_Zero_Dispersion 1.90286
+MUSETT_T4_DSSD_X80_E_Zero_Dispersion 0.769777
+MUSETT_T4_DSSD_X81_E_Zero_Dispersion 1.53316
+MUSETT_T4_DSSD_X82_E_Zero_Dispersion 1.78934
+MUSETT_T4_DSSD_X83_E_Zero_Dispersion 1.7956
+MUSETT_T4_DSSD_X84_E_Zero_Dispersion 0.374982
+MUSETT_T4_DSSD_X85_E_Zero_Dispersion 0.447399
+MUSETT_T4_DSSD_X86_E_Zero_Dispersion 3.15039
+MUSETT_T4_DSSD_X87_E_Zero_Dispersion 1.93764
+MUSETT_T4_DSSD_X88_E_Zero_Dispersion 3.5625
+MUSETT_T4_DSSD_X89_E_Zero_Dispersion 3.03336
+MUSETT_T4_DSSD_X90_E_Zero_Dispersion 3.2148
+MUSETT_T4_DSSD_X91_E_Zero_Dispersion 1.15977
+MUSETT_T4_DSSD_X92_E_Zero_Dispersion 4.17241
+MUSETT_T4_DSSD_X93_E_Zero_Dispersion 4.77125
+MUSETT_T4_DSSD_X94_E_Zero_Dispersion 3.75748
+MUSETT_T4_DSSD_X95_E_Zero_Dispersion 1.86818
+MUSETT_T4_DSSD_X96_E_Zero_Dispersion 2.69147
+MUSETT_T4_DSSD_X97_E_Zero_Dispersion 2.94685
+MUSETT_T4_DSSD_X98_E_Zero_Dispersion 5.88338
+MUSETT_T4_DSSD_X99_E_Zero_Dispersion 1.62951
+MUSETT_T4_DSSD_X100_E_Zero_Dispersion 5.26274
+MUSETT_T4_DSSD_X101_E_Zero_Dispersion 2.55273
+MUSETT_T4_DSSD_X102_E_Zero_Dispersion 3.74598
+MUSETT_T4_DSSD_X103_E_Zero_Dispersion 4.8642
+MUSETT_T4_DSSD_X104_E_Zero_Dispersion 2.04672
+MUSETT_T4_DSSD_X105_E_Zero_Dispersion 2.00002
+MUSETT_T4_DSSD_X106_E_Zero_Dispersion 4.24525
+MUSETT_T4_DSSD_X107_E_Zero_Dispersion 0.510241
+MUSETT_T4_DSSD_X108_E_Zero_Dispersion 0.13569
+MUSETT_T4_DSSD_X109_E_Zero_Dispersion -0.00527578
+MUSETT_T4_DSSD_X110_E_Zero_Dispersion 3.98584
+MUSETT_T4_DSSD_X111_E_Zero_Dispersion 0.259296
+MUSETT_T4_DSSD_X112_E_Zero_Dispersion -0.602258
+MUSETT_T4_DSSD_X113_E_Zero_Dispersion 3.85513
+MUSETT_T4_DSSD_X114_E_Zero_Dispersion 4.51471
+MUSETT_T4_DSSD_X115_E_Zero_Dispersion 1.25465
+MUSETT_T4_DSSD_X116_E_Zero_Dispersion 3.63238
+MUSETT_T4_DSSD_X117_E_Zero_Dispersion 13.2951
+MUSETT_T4_DSSD_X118_E_Zero_Dispersion 6.71239
+MUSETT_T4_DSSD_X119_E_Zero_Dispersion 5.18727
+MUSETT_T4_DSSD_X120_E_Zero_Dispersion 5.07562
+MUSETT_T4_DSSD_X121_E_Zero_Dispersion 1.72684
+MUSETT_T4_DSSD_X122_E_Zero_Dispersion 7.10552
+MUSETT_T4_DSSD_X123_E_Zero_Dispersion 1.55087
+MUSETT_T4_DSSD_X124_E_Zero_Dispersion 7.0511
+MUSETT_T4_DSSD_X125_E_Zero_Dispersion 4.98496
+MUSETT_T4_DSSD_X126_E_Zero_Dispersion 2.12141
+MUSETT_T4_DSSD_X127_E_Zero_Dispersion 3.46279
+MUSETT_T4_DSSD_X128_E_Zero_Dispersion 0.731019
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/latex/double_alpha_run_244_X_MM4_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/latex/double_alpha_run_244_X_MM4_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2b328da3b288cd013ccc67870c591b23eee440cb
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/latex/double_alpha_run_244_X_MM4_E.tex
@@ -0,0 +1,72 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  4
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  X
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 4 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+33 &  zero extrapolation too high:35.9519channels;  \\ \hline 
+34 &  zero extrapolation too high:34.3338channels;  \\ \hline 
+35 &  zero extrapolation too high:39.1134channels;  \\ \hline 
+37 &  zero extrapolation too high:34.1042channels;  \\ \hline 
+39 &  zero extrapolation too high:31.1979channels;  \\ \hline 
+44 &  0 peak(s) found; zero extrapolation too high:8200.68channels;  \\ \hline 
+59 &  zero extrapolation too high:30.9983channels;  \\ \hline 
+60 &  zero extrapolation too high:32.1426channels;  \\ \hline 
+61 &  zero extrapolation too high:34.1756channels;  \\ \hline 
+62 &  zero extrapolation too high:37.2374channels;  \\ \hline 
+63 &  zero extrapolation too high:46.4195channels;  \\ \hline 
+64 &  zero extrapolation too high:49.5439channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_X_MM4_E/latex/pictures/Telescope4Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 1.94304
+
+Sigma fit sigma: 0.256664
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/peaks/Cal_Str_X_E_MM4.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_X_MM4_E/peaks/Cal_Str_X_E_MM4.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b6eb9970c8c803219b329c0168ce457398ffda3b
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,129 @@
+MUSETT_T0_DSSD_Y1_E 6.82575 -0.844837
+MUSETT_T0_DSSD_Y2_E 60.0305 -0.00732332
+MUSETT_T0_DSSD_Y3_E 60.4656 -0.00737752
+MUSETT_T0_DSSD_Y4_E 60.542 -0.00738408
+MUSETT_T0_DSSD_Y5_E 59.6447 -0.0072775
+MUSETT_T0_DSSD_Y6_E 59.7974 -0.00729656
+MUSETT_T0_DSSD_Y7_E 60.3772 -0.00736639
+MUSETT_T0_DSSD_Y8_E 60.1212 -0.00733684
+MUSETT_T0_DSSD_Y9_E 59.8625 -0.00730581
+MUSETT_T0_DSSD_Y10_E 59.496 -0.00725634
+MUSETT_T0_DSSD_Y11_E 59.9281 -0.00730956
+MUSETT_T0_DSSD_Y12_E 59.6043 -0.00727125
+MUSETT_T0_DSSD_Y13_E 60.4812 -0.00737889
+MUSETT_T0_DSSD_Y14_E 60.4433 -0.00737206
+MUSETT_T0_DSSD_Y15_E 60.6333 -0.00739619
+MUSETT_T0_DSSD_Y16_E 60.2417 -0.00734748
+MUSETT_T0_DSSD_Y17_E 59.7989 -0.00729235
+MUSETT_T0_DSSD_Y18_E 60.1387 -0.00733664
+MUSETT_T0_DSSD_Y19_E 59.8362 -0.00729822
+MUSETT_T0_DSSD_Y20_E 59.7958 -0.00729573
+MUSETT_T0_DSSD_Y21_E 59.8881 -0.00730571
+MUSETT_T0_DSSD_Y22_E 59.8897 -0.00730593
+MUSETT_T0_DSSD_Y23_E 59.8529 -0.0073019
+MUSETT_T0_DSSD_Y24_E 59.0455 -0.00719993
+MUSETT_T0_DSSD_Y25_E 59.7814 -0.00729341
+MUSETT_T0_DSSD_Y26_E 59.1099 -0.00720773
+MUSETT_T0_DSSD_Y27_E 59.6976 -0.00728338
+MUSETT_T0_DSSD_Y28_E 60.2085 -0.00734867
+MUSETT_T0_DSSD_Y29_E 59.5753 -0.00726912
+MUSETT_T0_DSSD_Y30_E 59.3138 -0.00723859
+MUSETT_T0_DSSD_Y31_E 59.3163 -0.00723493
+MUSETT_T0_DSSD_Y32_E 60.5241 -0.00738219
+MUSETT_T0_DSSD_Y33_E 56.2258 -0.00686009
+MUSETT_T0_DSSD_Y34_E 56.6532 -0.00691064
+MUSETT_T0_DSSD_Y35_E 56.2561 -0.00686504
+MUSETT_T0_DSSD_Y36_E 56.722 -0.0069207
+MUSETT_T0_DSSD_Y37_E 56.847 -0.00693147
+MUSETT_T0_DSSD_Y38_E 56.9544 -0.00694991
+MUSETT_T0_DSSD_Y39_E 56.134 -0.00684856
+MUSETT_T0_DSSD_Y40_E 56.0097 -0.00683111
+MUSETT_T0_DSSD_Y41_E 56.6694 -0.00691524
+MUSETT_T0_DSSD_Y42_E 56.2779 -0.00686313
+MUSETT_T0_DSSD_Y43_E 56.2253 -0.00685882
+MUSETT_T0_DSSD_Y44_E 56.1145 -0.00684532
+MUSETT_T0_DSSD_Y45_E 56.4761 -0.00688999
+MUSETT_T0_DSSD_Y46_E 56.4819 -0.00688879
+MUSETT_T0_DSSD_Y47_E 57.2404 -0.00698108
+MUSETT_T0_DSSD_Y48_E 56.2289 -0.00686101
+MUSETT_T0_DSSD_Y49_E 57.398 -0.00700506
+MUSETT_T0_DSSD_Y50_E 56.6208 -0.00690614
+MUSETT_T0_DSSD_Y51_E 56.4304 -0.00688429
+MUSETT_T0_DSSD_Y52_E 56.0271 -0.00683326
+MUSETT_T0_DSSD_Y53_E 56.7227 -0.00691907
+MUSETT_T0_DSSD_Y54_E 56.4653 -0.00688772
+MUSETT_T0_DSSD_Y55_E 56.1677 -0.00685025
+MUSETT_T0_DSSD_Y56_E 57.0927 -0.00696322
+MUSETT_T0_DSSD_Y57_E 56.9876 -0.00695253
+MUSETT_T0_DSSD_Y58_E 56.4869 -0.00689167
+MUSETT_T0_DSSD_Y59_E 56.5437 -0.00689688
+MUSETT_T0_DSSD_Y60_E 56.8763 -0.00693813
+MUSETT_T0_DSSD_Y61_E 56.7642 -0.00692306
+MUSETT_T0_DSSD_Y62_E 56.5536 -0.00689607
+MUSETT_T0_DSSD_Y63_E 57.0689 -0.00696044
+MUSETT_T0_DSSD_Y64_E 57.4824 -0.007011
+MUSETT_T0_DSSD_Y65_E 60.4372 -0.00737119
+MUSETT_T0_DSSD_Y66_E 60.7663 -0.0074137
+MUSETT_T0_DSSD_Y67_E 60.5292 -0.00738309
+MUSETT_T0_DSSD_Y68_E 60.9793 -0.00744018
+MUSETT_T0_DSSD_Y69_E 60.0308 -0.00732315
+MUSETT_T0_DSSD_Y70_E 60.9999 -0.00743892
+MUSETT_T0_DSSD_Y71_E 60.3109 -0.00735447
+MUSETT_T0_DSSD_Y72_E 59.935 -0.00731087
+MUSETT_T0_DSSD_Y73_E 61.1324 -0.0074552
+MUSETT_T0_DSSD_Y74_E 60.5495 -0.00738399
+MUSETT_T0_DSSD_Y75_E 60.5954 -0.0073903
+MUSETT_T0_DSSD_Y76_E 60.7486 -0.00740942
+MUSETT_T0_DSSD_Y77_E 60.1728 -0.00734104
+MUSETT_T0_DSSD_Y78_E 60.9903 -0.00744098
+MUSETT_T0_DSSD_Y79_E 61.279 -0.00747631
+MUSETT_T0_DSSD_Y80_E 60.4295 -0.00736811
+MUSETT_T0_DSSD_Y81_E 61.6075 -0.0075119
+MUSETT_T0_DSSD_Y82_E 60.614 -0.00739305
+MUSETT_T0_DSSD_Y83_E 60.9806 -0.00743603
+MUSETT_T0_DSSD_Y84_E 61.5583 -0.00750846
+MUSETT_T0_DSSD_Y85_E 60.4678 -0.00737414
+MUSETT_T0_DSSD_Y86_E 60.2097 -0.00734092
+MUSETT_T0_DSSD_Y87_E 61.2218 -0.00746599
+MUSETT_T0_DSSD_Y88_E 60.8157 -0.00741559
+MUSETT_T0_DSSD_Y89_E 60.5574 -0.00738398
+MUSETT_T0_DSSD_Y90_E 60.8627 -0.00742455
+MUSETT_T0_DSSD_Y91_E 60.5988 -0.00739044
+MUSETT_T0_DSSD_Y92_E 60.8428 -0.00741833
+MUSETT_T0_DSSD_Y93_E 61.1607 -0.00745558
+MUSETT_T0_DSSD_Y94_E 61.0983 -0.00745144
+MUSETT_T0_DSSD_Y95_E 61.8302 -0.0075415
+MUSETT_T0_DSSD_Y96_E 60.0553 -0.00731929
+MUSETT_T0_DSSD_Y97_E 55.7742 -0.00679946
+MUSETT_T0_DSSD_Y98_E 56.1832 -0.00685158
+MUSETT_T0_DSSD_Y99_E 56.152 -0.00684972
+MUSETT_T0_DSSD_Y100_E 55.912 -0.00681729
+MUSETT_T0_DSSD_Y101_E 55.6362 -0.00678371
+MUSETT_T0_DSSD_Y102_E 55.8572 -0.00681179
+MUSETT_T0_DSSD_Y103_E 55.486 -0.00676551
+MUSETT_T0_DSSD_Y104_E 55.885 -0.00681303
+MUSETT_T0_DSSD_Y105_E 56.4646 -0.00688688
+MUSETT_T0_DSSD_Y106_E 55.5213 -0.00677028
+MUSETT_T0_DSSD_Y107_E 56.5196 -0.00689244
+MUSETT_T0_DSSD_Y108_E 56.9227 -0.00694262
+MUSETT_T0_DSSD_Y109_E 56.1534 -0.00684992
+MUSETT_T0_DSSD_Y110_E 56.1398 -0.00684749
+MUSETT_T0_DSSD_Y111_E 56.3085 -0.00686958
+MUSETT_T0_DSSD_Y112_E 55.8333 -0.00680889
+MUSETT_T0_DSSD_Y113_E 56.4396 -0.00688391
+MUSETT_T0_DSSD_Y114_E 56.5463 -0.00689512
+MUSETT_T0_DSSD_Y115_E 56.5453 -0.00689864
+MUSETT_T0_DSSD_Y116_E 56.3018 -0.00686687
+MUSETT_T0_DSSD_Y117_E 56.705 -0.00691355
+MUSETT_T0_DSSD_Y118_E 56.201 -0.00685677
+MUSETT_T0_DSSD_Y119_E 55.7838 -0.00680077
+MUSETT_T0_DSSD_Y120_E 56.2447 -0.0068617
+MUSETT_T0_DSSD_Y121_E 56.8408 -0.00693173
+MUSETT_T0_DSSD_Y122_E 56.5297 -0.00689177
+MUSETT_T0_DSSD_Y123_E 56.1895 -0.00685299
+MUSETT_T0_DSSD_Y124_E 55.5455 -0.00677484
+MUSETT_T0_DSSD_Y125_E 55.8037 -0.00680289
+MUSETT_T0_DSSD_Y126_E 55.2461 -0.00673471
+MUSETT_T0_DSSD_Y127_E 56.4438 -0.00688289
+MUSETT_T0_DSSD_Y128_E 56.0716 -0.00683804
+0
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..318ba9987b5d4da82bdbcfd61fd4a701019ef34a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/Cal_Str_Y_E_MM1.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X1_E_Zero_Dispersion 8183.92
+MUSETT_T1_DSSD_X2_E_Zero_Dispersion -5.17044
+MUSETT_T1_DSSD_X3_E_Zero_Dispersion -3.92847
+MUSETT_T1_DSSD_X4_E_Zero_Dispersion -6.99527
+MUSETT_T1_DSSD_X5_E_Zero_Dispersion -3.77063
+MUSETT_T1_DSSD_X6_E_Zero_Dispersion -3.28123
+MUSETT_T1_DSSD_X7_E_Zero_Dispersion -4.30523
+MUSETT_T1_DSSD_X8_E_Zero_Dispersion -2.42544
+MUSETT_T1_DSSD_X9_E_Zero_Dispersion -1.81463
+MUSETT_T1_DSSD_X10_E_Zero_Dispersion -7.16592
+MUSETT_T1_DSSD_X11_E_Zero_Dispersion -6.59667
+MUSETT_T1_DSSD_X12_E_Zero_Dispersion -5.2663
+MUSETT_T1_DSSD_X13_E_Zero_Dispersion -4.51215
+MUSETT_T1_DSSD_X14_E_Zero_Dispersion -6.97301
+MUSETT_T1_DSSD_X15_E_Zero_Dispersion -5.9137
+MUSETT_T1_DSSD_X16_E_Zero_Dispersion -6.95885
+MUSETT_T1_DSSD_X17_E_Zero_Dispersion -8.21584
+MUSETT_T1_DSSD_X18_E_Zero_Dispersion -5.03832
+MUSETT_T1_DSSD_X19_E_Zero_Dispersion -6.74204
+MUSETT_T1_DSSD_X20_E_Zero_Dispersion -4.0087
+MUSETT_T1_DSSD_X21_E_Zero_Dispersion -5.43692
+MUSETT_T1_DSSD_X22_E_Zero_Dispersion -5.40324
+MUSETT_T1_DSSD_X23_E_Zero_Dispersion -4.89198
+MUSETT_T1_DSSD_X24_E_Zero_Dispersion -8.84137
+MUSETT_T1_DSSD_X25_E_Zero_Dispersion -4.63797
+MUSETT_T1_DSSD_X26_E_Zero_Dispersion -8.90324
+MUSETT_T1_DSSD_X27_E_Zero_Dispersion -4.40912
+MUSETT_T1_DSSD_X28_E_Zero_Dispersion -1.11383
+MUSETT_T1_DSSD_X29_E_Zero_Dispersion -3.66571
+MUSETT_T1_DSSD_X30_E_Zero_Dispersion -2.10558
+MUSETT_T1_DSSD_X31_E_Zero_Dispersion -6.59864
+MUSETT_T1_DSSD_X32_E_Zero_Dispersion -6.67447
+MUSETT_T1_DSSD_X33_E_Zero_Dispersion -4.07185
+MUSETT_T1_DSSD_X34_E_Zero_Dispersion -5.96725
+MUSETT_T1_DSSD_X35_E_Zero_Dispersion -2.57858
+MUSETT_T1_DSSD_X36_E_Zero_Dispersion -3.98445
+MUSETT_T1_DSSD_X37_E_Zero_Dispersion -9.29023
+MUSETT_T1_DSSD_X38_E_Zero_Dispersion -2.99038
+MUSETT_T1_DSSD_X39_E_Zero_Dispersion -4.47744
+MUSETT_T1_DSSD_X40_E_Zero_Dispersion -7.21395
+MUSETT_T1_DSSD_X41_E_Zero_Dispersion -2.85691
+MUSETT_T1_DSSD_X42_E_Zero_Dispersion -8.03008
+MUSETT_T1_DSSD_X43_E_Zero_Dispersion -5.52405
+MUSETT_T1_DSSD_X44_E_Zero_Dispersion -5.50196
+MUSETT_T1_DSSD_X45_E_Zero_Dispersion -4.82071
+MUSETT_T1_DSSD_X46_E_Zero_Dispersion -7.09976
+MUSETT_T1_DSSD_X47_E_Zero_Dispersion -7.35468
+MUSETT_T1_DSSD_X48_E_Zero_Dispersion -3.43199
+MUSETT_T1_DSSD_X49_E_Zero_Dispersion -1.79955
+MUSETT_T1_DSSD_X50_E_Zero_Dispersion -6.61684
+MUSETT_T1_DSSD_X51_E_Zero_Dispersion -4.97747
+MUSETT_T1_DSSD_X52_E_Zero_Dispersion -7.18129
+MUSETT_T1_DSSD_X53_E_Zero_Dispersion -6.01197
+MUSETT_T1_DSSD_X54_E_Zero_Dispersion -5.97719
+MUSETT_T1_DSSD_X55_E_Zero_Dispersion -7.36041
+MUSETT_T1_DSSD_X56_E_Zero_Dispersion -7.17978
+MUSETT_T1_DSSD_X57_E_Zero_Dispersion -4.67205
+MUSETT_T1_DSSD_X58_E_Zero_Dispersion -4.40417
+MUSETT_T1_DSSD_X59_E_Zero_Dispersion -6.45299
+MUSETT_T1_DSSD_X60_E_Zero_Dispersion -5.64194
+MUSETT_T1_DSSD_X61_E_Zero_Dispersion -7.28262
+MUSETT_T1_DSSD_X62_E_Zero_Dispersion -8.83294
+MUSETT_T1_DSSD_X63_E_Zero_Dispersion -7.03943
+MUSETT_T1_DSSD_X64_E_Zero_Dispersion -6.87995
+MUSETT_T1_DSSD_X65_E_Zero_Dispersion -7.12
+MUSETT_T1_DSSD_X66_E_Zero_Dispersion -4.49207
+MUSETT_T1_DSSD_X67_E_Zero_Dispersion -6.36095
+MUSETT_T1_DSSD_X68_E_Zero_Dispersion -3.95364
+MUSETT_T1_DSSD_X69_E_Zero_Dispersion -5.40585
+MUSETT_T1_DSSD_X70_E_Zero_Dispersion -8.10005
+MUSETT_T1_DSSD_X71_E_Zero_Dispersion -8.57551
+MUSETT_T1_DSSD_X72_E_Zero_Dispersion -6.06378
+MUSETT_T1_DSSD_X73_E_Zero_Dispersion -7.96105
+MUSETT_T1_DSSD_X74_E_Zero_Dispersion -8.10179
+MUSETT_T1_DSSD_X75_E_Zero_Dispersion -7.31795
+MUSETT_T1_DSSD_X76_E_Zero_Dispersion -6.83977
+MUSETT_T1_DSSD_X77_E_Zero_Dispersion -4.77703
+MUSETT_T1_DSSD_X78_E_Zero_Dispersion -4.54183
+MUSETT_T1_DSSD_X79_E_Zero_Dispersion -4.41532
+MUSETT_T1_DSSD_X80_E_Zero_Dispersion -9.49729
+MUSETT_T1_DSSD_X81_E_Zero_Dispersion -9.32143
+MUSETT_T1_DSSD_X82_E_Zero_Dispersion -6.78535
+MUSETT_T1_DSSD_X83_E_Zero_Dispersion -8.69509
+MUSETT_T1_DSSD_X84_E_Zero_Dispersion -6.52163
+MUSETT_T1_DSSD_X85_E_Zero_Dispersion -7.98711
+MUSETT_T1_DSSD_X86_E_Zero_Dispersion -9.92926
+MUSETT_T1_DSSD_X87_E_Zero_Dispersion -8.09908
+MUSETT_T1_DSSD_X88_E_Zero_Dispersion -9.06084
+MUSETT_T1_DSSD_X89_E_Zero_Dispersion -9.19743
+MUSETT_T1_DSSD_X90_E_Zero_Dispersion -5.4875
+MUSETT_T1_DSSD_X91_E_Zero_Dispersion -7.61256
+MUSETT_T1_DSSD_X92_E_Zero_Dispersion -9.68182
+MUSETT_T1_DSSD_X93_E_Zero_Dispersion -11.3434
+MUSETT_T1_DSSD_X94_E_Zero_Dispersion -7.52494
+MUSETT_T1_DSSD_X95_E_Zero_Dispersion -6.66366
+MUSETT_T1_DSSD_X96_E_Zero_Dispersion -13.0664
+MUSETT_T1_DSSD_X97_E_Zero_Dispersion -10.7421
+MUSETT_T1_DSSD_X98_E_Zero_Dispersion -8.03092
+MUSETT_T1_DSSD_X99_E_Zero_Dispersion -5.70467
+MUSETT_T1_DSSD_X100_E_Zero_Dispersion -9.49564
+MUSETT_T1_DSSD_X101_E_Zero_Dispersion -9.43986
+MUSETT_T1_DSSD_X102_E_Zero_Dispersion -8.07489
+MUSETT_T1_DSSD_X103_E_Zero_Dispersion -9.29445
+MUSETT_T1_DSSD_X104_E_Zero_Dispersion -10.6584
+MUSETT_T1_DSSD_X105_E_Zero_Dispersion -6.86707
+MUSETT_T1_DSSD_X106_E_Zero_Dispersion -8.73563
+MUSETT_T1_DSSD_X107_E_Zero_Dispersion -8.23037
+MUSETT_T1_DSSD_X108_E_Zero_Dispersion -7.02417
+MUSETT_T1_DSSD_X109_E_Zero_Dispersion -5.66842
+MUSETT_T1_DSSD_X110_E_Zero_Dispersion -6.59401
+MUSETT_T1_DSSD_X111_E_Zero_Dispersion -4.7843
+MUSETT_T1_DSSD_X112_E_Zero_Dispersion -8.05371
+MUSETT_T1_DSSD_X113_E_Zero_Dispersion -6.76558
+MUSETT_T1_DSSD_X114_E_Zero_Dispersion -8.92279
+MUSETT_T1_DSSD_X115_E_Zero_Dispersion -4.59212
+MUSETT_T1_DSSD_X116_E_Zero_Dispersion -7.04071
+MUSETT_T1_DSSD_X117_E_Zero_Dispersion -10.0125
+MUSETT_T1_DSSD_X118_E_Zero_Dispersion -4.43158
+MUSETT_T1_DSSD_X119_E_Zero_Dispersion -10.5822
+MUSETT_T1_DSSD_X120_E_Zero_Dispersion -4.90309
+MUSETT_T1_DSSD_X121_E_Zero_Dispersion -8.08149
+MUSETT_T1_DSSD_X122_E_Zero_Dispersion -10.5025
+MUSETT_T1_DSSD_X123_E_Zero_Dispersion -7.25654
+MUSETT_T1_DSSD_X124_E_Zero_Dispersion -6.79145
+MUSETT_T1_DSSD_X125_E_Zero_Dispersion -10.95
+MUSETT_T1_DSSD_X126_E_Zero_Dispersion -11.1871
+MUSETT_T1_DSSD_X127_E_Zero_Dispersion -8.59784
+MUSETT_T1_DSSD_X128_E_Zero_Dispersion -7.95412
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/latex/double_alpha_run_244_Y_MM1_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/latex/double_alpha_run_244_Y_MM1_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..eec190f7d97791444a4ab3d075ec214dee739b61
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/latex/double_alpha_run_244_Y_MM1_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  1
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 1 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+1 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM1_E/latex/pictures/Telescope1Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.017
+
+Sigma fit sigma: 0.189688
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM1_E/peaks/Cal_Str_Y_E_MM1.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..02b23fc2e880a8cad066a6062960ca364af00c13
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,129 @@
+MUSETT_T1_DSSD_Y1_E 59.5705 -0.00727398
+MUSETT_T1_DSSD_Y2_E 60.2151 -0.00734888
+MUSETT_T1_DSSD_Y3_E 59.57 -0.00727192
+MUSETT_T1_DSSD_Y4_E 59.201 -0.00722713
+MUSETT_T1_DSSD_Y5_E 60.1046 -0.00733734
+MUSETT_T1_DSSD_Y6_E 59.9026 -0.00731246
+MUSETT_T1_DSSD_Y7_E 59.388 -0.0072511
+MUSETT_T1_DSSD_Y8_E 59.1918 -0.0072224
+MUSETT_T1_DSSD_Y9_E 59.376 -0.0072489
+MUSETT_T1_DSSD_Y10_E 59.7253 -0.00729359
+MUSETT_T1_DSSD_Y11_E 16.0752 -0.00119596
+MUSETT_T1_DSSD_Y12_E 59.4842 -0.00726278
+MUSETT_T1_DSSD_Y13_E 60.0605 -0.00733142
+MUSETT_T1_DSSD_Y14_E 59.206 -0.00722921
+MUSETT_T1_DSSD_Y15_E 59.2192 -0.00722769
+MUSETT_T1_DSSD_Y16_E 59.6695 -0.00728356
+MUSETT_T1_DSSD_Y17_E 62.1482 -0.00758802
+MUSETT_T1_DSSD_Y18_E 62.2753 -0.0076006
+MUSETT_T1_DSSD_Y19_E 62.195 -0.00758977
+MUSETT_T1_DSSD_Y20_E 61.9362 -0.00756177
+MUSETT_T1_DSSD_Y21_E 61.7663 -0.00753461
+MUSETT_T1_DSSD_Y22_E 61.9215 -0.0075538
+MUSETT_T1_DSSD_Y23_E 6.82575 -0.844837
+MUSETT_T1_DSSD_Y24_E 61.8655 -0.00755191
+MUSETT_T1_DSSD_Y25_E 61.3176 -0.00748082
+MUSETT_T1_DSSD_Y26_E 61.2588 -0.00747669
+MUSETT_T1_DSSD_Y27_E 62.0872 -0.00758225
+MUSETT_T1_DSSD_Y28_E 61.8438 -0.00754851
+MUSETT_T1_DSSD_Y29_E 62.3111 -0.00760852
+MUSETT_T1_DSSD_Y30_E 61.8994 -0.00755587
+MUSETT_T1_DSSD_Y31_E 61.7287 -0.00753818
+MUSETT_T1_DSSD_Y32_E 61.5036 -0.007505
+MUSETT_T1_DSSD_Y33_E 55.8776 -0.00681857
+MUSETT_T1_DSSD_Y34_E 56.3128 -0.00687709
+MUSETT_T1_DSSD_Y35_E 55.5307 -0.00677956
+MUSETT_T1_DSSD_Y36_E 55.4016 -0.00676073
+MUSETT_T1_DSSD_Y37_E 53.1921 -0.00645194
+MUSETT_T1_DSSD_Y38_E 56.1812 -0.00685751
+MUSETT_T1_DSSD_Y39_E 55.196 -0.00673652
+MUSETT_T1_DSSD_Y40_E 55.6469 -0.00679102
+MUSETT_T1_DSSD_Y41_E 56.181 -0.00686375
+MUSETT_T1_DSSD_Y42_E 55.9769 -0.00683292
+MUSETT_T1_DSSD_Y43_E 55.3257 -0.00675247
+MUSETT_T1_DSSD_Y44_E 56.3504 -0.00687658
+MUSETT_T1_DSSD_Y45_E 55.5227 -0.00677836
+MUSETT_T1_DSSD_Y46_E 55.5291 -0.00677773
+MUSETT_T1_DSSD_Y47_E 55.5286 -0.00677689
+MUSETT_T1_DSSD_Y48_E 55.5031 -0.00677406
+MUSETT_T1_DSSD_Y49_E 57.0121 -0.00695828
+MUSETT_T1_DSSD_Y50_E 56.396 -0.0068824
+MUSETT_T1_DSSD_Y51_E 56.0249 -0.00683191
+MUSETT_T1_DSSD_Y52_E 55.6123 -0.00678369
+MUSETT_T1_DSSD_Y53_E 56.6957 -0.00692135
+MUSETT_T1_DSSD_Y54_E 55.743 -0.00679812
+MUSETT_T1_DSSD_Y55_E 56.5408 -0.00690599
+MUSETT_T1_DSSD_Y56_E 55.9616 -0.00682548
+MUSETT_T1_DSSD_Y57_E 56.9111 -0.00694268
+MUSETT_T1_DSSD_Y58_E 56.8826 -0.00694298
+MUSETT_T1_DSSD_Y59_E 56.2912 -0.00686755
+MUSETT_T1_DSSD_Y60_E 56.9681 -0.0069508
+MUSETT_T1_DSSD_Y61_E 57.2803 -0.00699287
+MUSETT_T1_DSSD_Y62_E 56.6306 -0.00690811
+MUSETT_T1_DSSD_Y63_E 56.0755 -0.00684657
+MUSETT_T1_DSSD_Y64_E 57.1404 -0.00697566
+MUSETT_T1_DSSD_Y65_E 60.8642 -0.00742914
+MUSETT_T1_DSSD_Y66_E 61.5287 -0.00751148
+MUSETT_T1_DSSD_Y67_E 61.1786 -0.00746816
+MUSETT_T1_DSSD_Y68_E 61.452 -0.00750172
+MUSETT_T1_DSSD_Y69_E 61.0464 -0.00745119
+MUSETT_T1_DSSD_Y70_E 59.8503 -0.00730518
+MUSETT_T1_DSSD_Y71_E 60.1717 -0.00734174
+MUSETT_T1_DSSD_Y72_E 60.9194 -0.0074351
+MUSETT_T1_DSSD_Y73_E 60.1838 -0.00734734
+MUSETT_T1_DSSD_Y74_E 60.9926 -0.00744338
+MUSETT_T1_DSSD_Y75_E 60.6965 -0.00740912
+MUSETT_T1_DSSD_Y76_E 60.1709 -0.00734455
+MUSETT_T1_DSSD_Y77_E 60.3451 -0.00736622
+MUSETT_T1_DSSD_Y78_E 60.8982 -0.00743519
+MUSETT_T1_DSSD_Y79_E 60.4023 -0.00737177
+MUSETT_T1_DSSD_Y80_E 61.1521 -0.00746358
+MUSETT_T1_DSSD_Y81_E 60.839 -0.00742397
+MUSETT_T1_DSSD_Y82_E 60.8305 -0.00742279
+MUSETT_T1_DSSD_Y83_E 60.8257 -0.00742368
+MUSETT_T1_DSSD_Y84_E 60.2943 -0.00735897
+MUSETT_T1_DSSD_Y85_E 60.1703 -0.0073422
+MUSETT_T1_DSSD_Y86_E 61.2194 -0.00747585
+MUSETT_T1_DSSD_Y87_E 60.6736 -0.00740962
+MUSETT_T1_DSSD_Y88_E 60.444 -0.00737797
+MUSETT_T1_DSSD_Y89_E 60.9583 -0.00744118
+MUSETT_T1_DSSD_Y90_E 61.1705 -0.00746654
+MUSETT_T1_DSSD_Y91_E 60.3498 -0.00736287
+MUSETT_T1_DSSD_Y92_E 60.6395 -0.00740081
+MUSETT_T1_DSSD_Y93_E 60.1318 -0.00733569
+MUSETT_T1_DSSD_Y94_E 61.2877 -0.00748294
+MUSETT_T1_DSSD_Y95_E 61.2431 -0.00747224
+MUSETT_T1_DSSD_Y96_E 60.4303 -0.00737412
+MUSETT_T1_DSSD_Y97_E 55.8061 -0.00681283
+MUSETT_T1_DSSD_Y98_E 55.4171 -0.00676627
+MUSETT_T1_DSSD_Y99_E 55.7214 -0.00680459
+MUSETT_T1_DSSD_Y100_E 55.2639 -0.00674314
+MUSETT_T1_DSSD_Y101_E 55.6849 -0.00679758
+MUSETT_T1_DSSD_Y102_E 55.3177 -0.00675153
+MUSETT_T1_DSSD_Y103_E 55.378 -0.00676143
+MUSETT_T1_DSSD_Y104_E 56.0478 -0.00684278
+MUSETT_T1_DSSD_Y105_E 55.1499 -0.00673191
+MUSETT_T1_DSSD_Y106_E 55.1058 -0.00672629
+MUSETT_T1_DSSD_Y107_E 55.8368 -0.00681743
+MUSETT_T1_DSSD_Y108_E 55.2548 -0.00674814
+MUSETT_T1_DSSD_Y109_E 55.6596 -0.00679294
+MUSETT_T1_DSSD_Y110_E 55.9243 -0.00682591
+MUSETT_T1_DSSD_Y111_E 56.0708 -0.00684616
+MUSETT_T1_DSSD_Y112_E 56.3903 -0.00688352
+MUSETT_T1_DSSD_Y113_E 54.7069 -0.00667838
+MUSETT_T1_DSSD_Y114_E 55.2602 -0.00674283
+MUSETT_T1_DSSD_Y115_E 55.0071 -0.00671389
+MUSETT_T1_DSSD_Y116_E 55.0806 -0.00672618
+MUSETT_T1_DSSD_Y117_E 55.1102 -0.00672804
+MUSETT_T1_DSSD_Y118_E 55.3182 -0.00675322
+MUSETT_T1_DSSD_Y119_E 55.1394 -0.00673094
+MUSETT_T1_DSSD_Y120_E 55.5783 -0.00678642
+MUSETT_T1_DSSD_Y121_E 55.6557 -0.00679265
+MUSETT_T1_DSSD_Y122_E 55.3764 -0.00676029
+MUSETT_T1_DSSD_Y123_E 54.6315 -0.00666751
+MUSETT_T1_DSSD_Y124_E 55.0287 -0.00671759
+MUSETT_T1_DSSD_Y125_E 55.0921 -0.00672524
+MUSETT_T1_DSSD_Y126_E 55.0536 -0.00671929
+MUSETT_T1_DSSD_Y127_E 55.165 -0.00673334
+MUSETT_T1_DSSD_Y128_E 56.1067 -0.00684803
+1
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..e618b3e89fa3f4466cb835dcf8f40712192b1207
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/Cal_Str_Y_E_MM2.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X1_E_Zero_Dispersion 2.46658
+MUSETT_T2_DSSD_X2_E_Zero_Dispersion -1.78382
+MUSETT_T2_DSSD_X3_E_Zero_Dispersion 0.215451
+MUSETT_T2_DSSD_X4_E_Zero_Dispersion 0.495236
+MUSETT_T2_DSSD_X5_E_Zero_Dispersion 0.3988
+MUSETT_T2_DSSD_X6_E_Zero_Dispersion 0.157444
+MUSETT_T2_DSSD_X7_E_Zero_Dispersion 1.7836
+MUSETT_T2_DSSD_X8_E_Zero_Dispersion -3.58366
+MUSETT_T2_DSSD_X9_E_Zero_Dispersion 0.966967
+MUSETT_T2_DSSD_X10_E_Zero_Dispersion 3.25767
+MUSETT_T2_DSSD_X11_E_Zero_Dispersion -5249.29
+MUSETT_T2_DSSD_X12_E_Zero_Dispersion 1.72085
+MUSETT_T2_DSSD_X13_E_Zero_Dispersion -0.211809
+MUSETT_T2_DSSD_X14_E_Zero_Dispersion 2.17294
+MUSETT_T2_DSSD_X15_E_Zero_Dispersion -1.38534
+MUSETT_T2_DSSD_X16_E_Zero_Dispersion -0.356436
+MUSETT_T2_DSSD_X17_E_Zero_Dispersion 1.69495
+MUSETT_T2_DSSD_X18_E_Zero_Dispersion -1.47987
+MUSETT_T2_DSSD_X19_E_Zero_Dispersion -2.58605
+MUSETT_T2_DSSD_X20_E_Zero_Dispersion 1.30178
+MUSETT_T2_DSSD_X21_E_Zero_Dispersion -5.66889
+MUSETT_T2_DSSD_X22_E_Zero_Dispersion -5.4075
+MUSETT_T2_DSSD_X23_E_Zero_Dispersion 8183.92
+MUSETT_T2_DSSD_X24_E_Zero_Dispersion -0.038001
+MUSETT_T2_DSSD_X25_E_Zero_Dispersion -4.63427
+MUSETT_T2_DSSD_X26_E_Zero_Dispersion -1.29601
+MUSETT_T2_DSSD_X27_E_Zero_Dispersion 3.51474
+MUSETT_T2_DSSD_X28_E_Zero_Dispersion -0.85752
+MUSETT_T2_DSSD_X29_E_Zero_Dispersion 2.35036
+MUSETT_T2_DSSD_X30_E_Zero_Dispersion -0.227067
+MUSETT_T2_DSSD_X31_E_Zero_Dispersion 3.20144
+MUSETT_T2_DSSD_X32_E_Zero_Dispersion -3.01983
+MUSETT_T2_DSSD_X33_E_Zero_Dispersion -2.90432
+MUSETT_T2_DSSD_X34_E_Zero_Dispersion 3.53618
+MUSETT_T2_DSSD_X35_E_Zero_Dispersion 1.10118
+MUSETT_T2_DSSD_X36_E_Zero_Dispersion -2.62621
+MUSETT_T2_DSSD_X37_E_Zero_Dispersion -52.3637
+MUSETT_T2_DSSD_X38_E_Zero_Dispersion -0.653989
+MUSETT_T2_DSSD_X39_E_Zero_Dispersion -1.53764
+MUSETT_T2_DSSD_X40_E_Zero_Dispersion -2.18515
+MUSETT_T2_DSSD_X41_E_Zero_Dispersion 6.82292
+MUSETT_T2_DSSD_X42_E_Zero_Dispersion -0.243571
+MUSETT_T2_DSSD_X43_E_Zero_Dispersion -1.39854
+MUSETT_T2_DSSD_X44_E_Zero_Dispersion -2.54148
+MUSETT_T2_DSSD_X45_E_Zero_Dispersion 0.824955
+MUSETT_T2_DSSD_X46_E_Zero_Dispersion -0.881018
+MUSETT_T2_DSSD_X47_E_Zero_Dispersion -1.82214
+MUSETT_T2_DSSD_X48_E_Zero_Dispersion -1.46902
+MUSETT_T2_DSSD_X49_E_Zero_Dispersion -1.42389
+MUSETT_T2_DSSD_X50_E_Zero_Dispersion -2.23688
+MUSETT_T2_DSSD_X51_E_Zero_Dispersion -8.47943
+MUSETT_T2_DSSD_X52_E_Zero_Dispersion -5.93955
+MUSETT_T2_DSSD_X53_E_Zero_Dispersion 0.583184
+MUSETT_T2_DSSD_X54_E_Zero_Dispersion -7.77127
+MUSETT_T2_DSSD_X55_E_Zero_Dispersion 4.7839
+MUSETT_T2_DSSD_X56_E_Zero_Dispersion -6.91851
+MUSETT_T2_DSSD_X57_E_Zero_Dispersion -5.27507
+MUSETT_T2_DSSD_X58_E_Zero_Dispersion -0.825614
+MUSETT_T2_DSSD_X59_E_Zero_Dispersion -4.69548
+MUSETT_T2_DSSD_X60_E_Zero_Dispersion -3.90577
+MUSETT_T2_DSSD_X61_E_Zero_Dispersion 0.756766
+MUSETT_T2_DSSD_X62_E_Zero_Dispersion -5.70142
+MUSETT_T2_DSSD_X63_E_Zero_Dispersion 1.69226
+MUSETT_T2_DSSD_X64_E_Zero_Dispersion 0.602726
+MUSETT_T2_DSSD_X65_E_Zero_Dispersion -0.629055
+MUSETT_T2_DSSD_X66_E_Zero_Dispersion 0.701984
+MUSETT_T2_DSSD_X67_E_Zero_Dispersion 0.0711705
+MUSETT_T2_DSSD_X68_E_Zero_Dispersion 0.286164
+MUSETT_T2_DSSD_X69_E_Zero_Dispersion -0.834185
+MUSETT_T2_DSSD_X70_E_Zero_Dispersion -0.854994
+MUSETT_T2_DSSD_X71_E_Zero_Dispersion -3.83721
+MUSETT_T2_DSSD_X72_E_Zero_Dispersion -1.48499
+MUSETT_T2_DSSD_X73_E_Zero_Dispersion 0.764159
+MUSETT_T2_DSSD_X74_E_Zero_Dispersion -2.20543
+MUSETT_T2_DSSD_X75_E_Zero_Dispersion -0.135162
+MUSETT_T2_DSSD_X76_E_Zero_Dispersion -0.598422
+MUSETT_T2_DSSD_X77_E_Zero_Dispersion -0.136367
+MUSETT_T2_DSSD_X78_E_Zero_Dispersion 1.45911
+MUSETT_T2_DSSD_X79_E_Zero_Dispersion -1.73055
+MUSETT_T2_DSSD_X80_E_Zero_Dispersion -1.39263
+MUSETT_T2_DSSD_X81_E_Zero_Dispersion -2.94408
+MUSETT_T2_DSSD_X82_E_Zero_Dispersion -3.10204
+MUSETT_T2_DSSD_X83_E_Zero_Dispersion -1.47031
+MUSETT_T2_DSSD_X84_E_Zero_Dispersion -1.30554
+MUSETT_T2_DSSD_X85_E_Zero_Dispersion -3.13034
+MUSETT_T2_DSSD_X86_E_Zero_Dispersion 3.0528
+MUSETT_T2_DSSD_X87_E_Zero_Dispersion 3.5033
+MUSETT_T2_DSSD_X88_E_Zero_Dispersion -0.496354
+MUSETT_T2_DSSD_X89_E_Zero_Dispersion -0.0103355
+MUSETT_T2_DSSD_X90_E_Zero_Dispersion -0.60827
+MUSETT_T2_DSSD_X91_E_Zero_Dispersion -4.50448
+MUSETT_T2_DSSD_X92_E_Zero_Dispersion -1.62803
+MUSETT_T2_DSSD_X93_E_Zero_Dispersion -5.15821
+MUSETT_T2_DSSD_X94_E_Zero_Dispersion 1.6757
+MUSETT_T2_DSSD_X95_E_Zero_Dispersion -4.09057
+MUSETT_T2_DSSD_X96_E_Zero_Dispersion -2.91394
+MUSETT_T2_DSSD_X97_E_Zero_Dispersion 0.674579
+MUSETT_T2_DSSD_X98_E_Zero_Dispersion 1.79696
+MUSETT_T2_DSSD_X99_E_Zero_Dispersion 3.20238
+MUSETT_T2_DSSD_X100_E_Zero_Dispersion -3.57047
+MUSETT_T2_DSSD_X101_E_Zero_Dispersion 0.12868
+MUSETT_T2_DSSD_X102_E_Zero_Dispersion -1.36355
+MUSETT_T2_DSSD_X103_E_Zero_Dispersion 1.71917
+MUSETT_T2_DSSD_X104_E_Zero_Dispersion 1.21368
+MUSETT_T2_DSSD_X105_E_Zero_Dispersion -0.316078
+MUSETT_T2_DSSD_X106_E_Zero_Dispersion -0.596855
+MUSETT_T2_DSSD_X107_E_Zero_Dispersion 1.69928
+MUSETT_T2_DSSD_X108_E_Zero_Dispersion 3.844
+MUSETT_T2_DSSD_X109_E_Zero_Dispersion -1.7394
+MUSETT_T2_DSSD_X110_E_Zero_Dispersion -0.947143
+MUSETT_T2_DSSD_X111_E_Zero_Dispersion 1.89807
+MUSETT_T2_DSSD_X112_E_Zero_Dispersion -0.0740967
+MUSETT_T2_DSSD_X113_E_Zero_Dispersion 0.361099
+MUSETT_T2_DSSD_X114_E_Zero_Dispersion -3.39836
+MUSETT_T2_DSSD_X115_E_Zero_Dispersion -1.03134
+MUSETT_T2_DSSD_X116_E_Zero_Dispersion 3.01242
+MUSETT_T2_DSSD_X117_E_Zero_Dispersion 0.878279
+MUSETT_T2_DSSD_X118_E_Zero_Dispersion 0.617765
+MUSETT_T2_DSSD_X119_E_Zero_Dispersion 0.0589642
+MUSETT_T2_DSSD_X120_E_Zero_Dispersion 2.36366
+MUSETT_T2_DSSD_X121_E_Zero_Dispersion -1.52548
+MUSETT_T2_DSSD_X122_E_Zero_Dispersion 0.580297
+MUSETT_T2_DSSD_X123_E_Zero_Dispersion -1.6797
+MUSETT_T2_DSSD_X124_E_Zero_Dispersion 0.263346
+MUSETT_T2_DSSD_X125_E_Zero_Dispersion 0.151479
+MUSETT_T2_DSSD_X126_E_Zero_Dispersion -1.36217
+MUSETT_T2_DSSD_X127_E_Zero_Dispersion -0.8161
+MUSETT_T2_DSSD_X128_E_Zero_Dispersion -1.12133
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/latex/double_alpha_run_244_Y_MM2_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/latex/double_alpha_run_244_Y_MM2_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..cd8829c73ed39fd04665446fa68b71f36146ae8b
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/latex/double_alpha_run_244_Y_MM2_E.tex
@@ -0,0 +1,63 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  2
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 2 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+11 &  zero extrapolation too high:-5249.29channels;  \\ \hline 
+23 &  0 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+37 &  zero extrapolation too high:-52.3637channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM2_E/latex/pictures/Telescope2Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.32869
+
+Sigma fit sigma: 0.445892
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM2_E/peaks/Cal_Str_Y_E_MM2.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..89ff961585b7392e84ac6a282c62ea9e8f8540bc
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y1_E 62.9696 -0.00768446
+MUSETT_T2_DSSD_Y2_E 63.6646 -0.00776718
+MUSETT_T2_DSSD_Y3_E 62.408 -0.00761735
+MUSETT_T2_DSSD_Y4_E 63.2424 -0.00771872
+MUSETT_T2_DSSD_Y5_E 62.6675 -0.00764504
+MUSETT_T2_DSSD_Y6_E 62.6087 -0.00764254
+MUSETT_T2_DSSD_Y7_E 62.8947 -0.00767579
+MUSETT_T2_DSSD_Y8_E 62.5261 -0.00763211
+MUSETT_T2_DSSD_Y9_E 62.528 -0.00762973
+MUSETT_T2_DSSD_Y10_E 63.2307 -0.00771667
+MUSETT_T2_DSSD_Y11_E 62.6418 -0.00764334
+MUSETT_T2_DSSD_Y12_E 62.3872 -0.00761368
+MUSETT_T2_DSSD_Y13_E 61.8591 -0.00754885
+MUSETT_T2_DSSD_Y14_E 62.4679 -0.00762255
+MUSETT_T2_DSSD_Y15_E 62.7008 -0.00765026
+MUSETT_T2_DSSD_Y16_E 63.3551 -0.00773223
+MUSETT_T2_DSSD_Y17_E 61.3352 -0.00748234
+MUSETT_T2_DSSD_Y18_E 60.5521 -0.00738515
+MUSETT_T2_DSSD_Y19_E 60.5685 -0.00739241
+MUSETT_T2_DSSD_Y20_E 61.7065 -0.00752796
+MUSETT_T2_DSSD_Y21_E 60.6735 -0.00740095
+MUSETT_T2_DSSD_Y22_E 60.6699 -0.00740261
+MUSETT_T2_DSSD_Y23_E 62.071 -0.00757764
+MUSETT_T2_DSSD_Y24_E 60.7475 -0.00741138
+MUSETT_T2_DSSD_Y25_E 60.7386 -0.00741045
+MUSETT_T2_DSSD_Y26_E 61.2797 -0.00747636
+MUSETT_T2_DSSD_Y27_E 61.0832 -0.00745632
+MUSETT_T2_DSSD_Y28_E 61.3148 -0.00748463
+MUSETT_T2_DSSD_Y29_E 61.6303 -0.00752515
+MUSETT_T2_DSSD_Y30_E 61.125 -0.00745808
+MUSETT_T2_DSSD_Y31_E 60.9348 -0.00743314
+MUSETT_T2_DSSD_Y32_E 61.3989 -0.00748983
+MUSETT_T2_DSSD_Y33_E 56.1952 -0.00685817
+MUSETT_T2_DSSD_Y34_E 56.3063 -0.0068715
+MUSETT_T2_DSSD_Y35_E 56.6538 -0.00691505
+MUSETT_T2_DSSD_Y36_E 56.4972 -0.00689435
+MUSETT_T2_DSSD_Y37_E 56.8817 -0.00694325
+MUSETT_T2_DSSD_Y38_E 56.6748 -0.00691555
+MUSETT_T2_DSSD_Y39_E 56.4253 -0.00688901
+MUSETT_T2_DSSD_Y40_E 56.5601 -0.00690807
+MUSETT_T2_DSSD_Y41_E 56.1552 -0.00685461
+MUSETT_T2_DSSD_Y42_E 57.9279 -0.00707067
+MUSETT_T2_DSSD_Y43_E 56.7445 -0.00692782
+MUSETT_T2_DSSD_Y44_E 56.119 -0.00684937
+MUSETT_T2_DSSD_Y45_E 56.9957 -0.00695498
+MUSETT_T2_DSSD_Y46_E 57.2405 -0.00698921
+MUSETT_T2_DSSD_Y47_E 56.88 -0.00694151
+MUSETT_T2_DSSD_Y48_E 56.613 -0.00691086
+MUSETT_T2_DSSD_Y49_E 57.4333 -0.00700977
+MUSETT_T2_DSSD_Y50_E 57.2345 -0.00699068
+MUSETT_T2_DSSD_Y51_E 57.6386 -0.00703191
+MUSETT_T2_DSSD_Y52_E 57.3765 -0.00700354
+MUSETT_T2_DSSD_Y53_E 57.0322 -0.00695819
+MUSETT_T2_DSSD_Y54_E 58.6382 -0.00715991
+MUSETT_T2_DSSD_Y55_E 57.5071 -0.00701732
+MUSETT_T2_DSSD_Y56_E 57.4561 -0.00700876
+MUSETT_T2_DSSD_Y57_E 57.9355 -0.00707626
+MUSETT_T2_DSSD_Y58_E 57.2996 -0.00699196
+MUSETT_T2_DSSD_Y59_E 57.4134 -0.00701027
+MUSETT_T2_DSSD_Y60_E 57.9795 -0.00707456
+MUSETT_T2_DSSD_Y61_E 57.9301 -0.00707376
+MUSETT_T2_DSSD_Y62_E 57.3702 -0.00700489
+MUSETT_T2_DSSD_Y63_E 57.6224 -0.00703204
+MUSETT_T2_DSSD_Y64_E 57.9617 -0.00707244
+MUSETT_T2_DSSD_Y65_E 59.2845 -0.00723849
+MUSETT_T2_DSSD_Y66_E 59.3552 -0.00724338
+MUSETT_T2_DSSD_Y67_E 59.4277 -0.00725571
+MUSETT_T2_DSSD_Y68_E 60.3423 -0.00736738
+MUSETT_T2_DSSD_Y69_E 59.3284 -0.00724153
+MUSETT_T2_DSSD_Y70_E 59.6515 -0.00728136
+MUSETT_T2_DSSD_Y71_E 59.3639 -0.00724599
+MUSETT_T2_DSSD_Y72_E 59.8305 -0.00730471
+MUSETT_T2_DSSD_Y73_E 59.4632 -0.00725583
+MUSETT_T2_DSSD_Y74_E 59.4182 -0.00725297
+MUSETT_T2_DSSD_Y75_E 59.8054 -0.00730017
+MUSETT_T2_DSSD_Y76_E 60.0136 -0.00732756
+MUSETT_T2_DSSD_Y77_E 59.2215 -0.00722933
+MUSETT_T2_DSSD_Y78_E 59.7288 -0.00728927
+MUSETT_T2_DSSD_Y79_E 59.2356 -0.00723031
+MUSETT_T2_DSSD_Y80_E 59.8523 -0.0073024
+MUSETT_T2_DSSD_Y81_E 60.3502 -0.00736651
+MUSETT_T2_DSSD_Y82_E 61.1949 -0.00747228
+MUSETT_T2_DSSD_Y83_E 60.2825 -0.00735721
+MUSETT_T2_DSSD_Y84_E 61.0497 -0.00745147
+MUSETT_T2_DSSD_Y85_E 61.0062 -0.00744668
+MUSETT_T2_DSSD_Y86_E 60.8096 -0.00742536
+MUSETT_T2_DSSD_Y87_E 60.7138 -0.00741077
+MUSETT_T2_DSSD_Y88_E 61.1868 -0.00747042
+MUSETT_T2_DSSD_Y89_E 60.9587 -0.00744537
+MUSETT_T2_DSSD_Y90_E 60.5173 -0.00738459
+MUSETT_T2_DSSD_Y91_E 61.3266 -0.00748644
+MUSETT_T2_DSSD_Y92_E 60.3678 -0.00736723
+MUSETT_T2_DSSD_Y93_E 60.8698 -0.0074295
+MUSETT_T2_DSSD_Y94_E 60.5372 -0.00739126
+MUSETT_T2_DSSD_Y95_E 61.1493 -0.00746795
+MUSETT_T2_DSSD_Y96_E 61.24 -0.00747413
+MUSETT_T2_DSSD_Y97_E 56.7785 -0.00693163
+MUSETT_T2_DSSD_Y98_E 55.8642 -0.00682005
+MUSETT_T2_DSSD_Y99_E 55.9639 -0.00682944
+MUSETT_T2_DSSD_Y100_E 56.307 -0.00687006
+MUSETT_T2_DSSD_Y101_E 56.3035 -0.00687388
+MUSETT_T2_DSSD_Y102_E 56.6481 -0.00691634
+MUSETT_T2_DSSD_Y103_E 55.7931 -0.00681196
+MUSETT_T2_DSSD_Y104_E 56.8928 -0.00694196
+MUSETT_T2_DSSD_Y105_E 55.941 -0.00682942
+MUSETT_T2_DSSD_Y106_E 56.4688 -0.00689177
+MUSETT_T2_DSSD_Y107_E 56.5486 -0.00690473
+MUSETT_T2_DSSD_Y108_E 57.3136 -0.00699581
+MUSETT_T2_DSSD_Y109_E 56.9154 -0.00694746
+MUSETT_T2_DSSD_Y110_E 56.4094 -0.00688365
+MUSETT_T2_DSSD_Y111_E 56.9197 -0.00694954
+MUSETT_T2_DSSD_Y112_E 55.9961 -0.00683611
+MUSETT_T2_DSSD_Y113_E 56.4905 -0.00689823
+MUSETT_T2_DSSD_Y114_E 57.3805 -0.00700796
+MUSETT_T2_DSSD_Y115_E 56.3932 -0.00688319
+MUSETT_T2_DSSD_Y116_E 56.6059 -0.00690785
+MUSETT_T2_DSSD_Y117_E 56.2703 -0.00686753
+MUSETT_T2_DSSD_Y118_E 56.275 -0.0068674
+MUSETT_T2_DSSD_Y119_E 56.7938 -0.00693488
+MUSETT_T2_DSSD_Y120_E 56.6145 -0.00691195
+MUSETT_T2_DSSD_Y121_E 56.2102 -0.00686234
+MUSETT_T2_DSSD_Y122_E 56.9331 -0.00695032
+MUSETT_T2_DSSD_Y123_E 57.2777 -0.00699227
+MUSETT_T2_DSSD_Y124_E 6.82575 -0.844837
+MUSETT_T2_DSSD_Y125_E 55.9049 -0.00682177
+MUSETT_T2_DSSD_Y126_E 56.8814 -0.00694534
+MUSETT_T2_DSSD_Y127_E 56.2481 -0.00686735
+MUSETT_T2_DSSD_Y128_E 56.034 -0.006839782
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..83ec1ed8246674ff4aa7d02a1df0521fe33e5e49
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/Cal_Str_Y_E_MM3.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X1_E_Zero_Dispersion -2.41452
+MUSETT_T3_DSSD_X2_E_Zero_Dispersion -4.62314
+MUSETT_T3_DSSD_X3_E_Zero_Dispersion -0.868891
+MUSETT_T3_DSSD_X4_E_Zero_Dispersion -1.38342
+MUSETT_T3_DSSD_X5_E_Zero_Dispersion -5.15237
+MUSETT_T3_DSSD_X6_E_Zero_Dispersion -0.130584
+MUSETT_T3_DSSD_X7_E_Zero_Dispersion -1.90652
+MUSETT_T3_DSSD_X8_E_Zero_Dispersion -0.495975
+MUSETT_T3_DSSD_X9_E_Zero_Dispersion -3.30325
+MUSETT_T3_DSSD_X10_E_Zero_Dispersion -2.03449
+MUSETT_T3_DSSD_X11_E_Zero_Dispersion -3.60991
+MUSETT_T3_DSSD_X12_E_Zero_Dispersion -2.09425
+MUSETT_T3_DSSD_X13_E_Zero_Dispersion -2.50083
+MUSETT_T3_DSSD_X14_E_Zero_Dispersion -3.15323
+MUSETT_T3_DSSD_X15_E_Zero_Dispersion -3.90725
+MUSETT_T3_DSSD_X16_E_Zero_Dispersion -1.63926
+MUSETT_T3_DSSD_X17_E_Zero_Dispersion -5.33288
+MUSETT_T3_DSSD_X18_E_Zero_Dispersion -7.18027
+MUSETT_T3_DSSD_X19_E_Zero_Dispersion -1.32954
+MUSETT_T3_DSSD_X20_E_Zero_Dispersion -4.97396
+MUSETT_T3_DSSD_X21_E_Zero_Dispersion -6.07616
+MUSETT_T3_DSSD_X22_E_Zero_Dispersion -3.74321
+MUSETT_T3_DSSD_X23_E_Zero_Dispersion 0.663908
+MUSETT_T3_DSSD_X24_E_Zero_Dispersion -4.52288
+MUSETT_T3_DSSD_X25_E_Zero_Dispersion -4.33959
+MUSETT_T3_DSSD_X26_E_Zero_Dispersion -4.46834
+MUSETT_T3_DSSD_X27_E_Zero_Dispersion -0.136323
+MUSETT_T3_DSSD_X28_E_Zero_Dispersion -0.105464
+MUSETT_T3_DSSD_X29_E_Zero_Dispersion 2.08573
+MUSETT_T3_DSSD_X30_E_Zero_Dispersion -3.80806
+MUSETT_T3_DSSD_X31_E_Zero_Dispersion -5.72914
+MUSETT_T3_DSSD_X32_E_Zero_Dispersion -5.63244
+MUSETT_T3_DSSD_X33_E_Zero_Dispersion -1.91772
+MUSETT_T3_DSSD_X34_E_Zero_Dispersion -2.17757
+MUSETT_T3_DSSD_X35_E_Zero_Dispersion -0.820265
+MUSETT_T3_DSSD_X36_E_Zero_Dispersion -2.70672
+MUSETT_T3_DSSD_X37_E_Zero_Dispersion -0.371581
+MUSETT_T3_DSSD_X38_E_Zero_Dispersion -3.26869
+MUSETT_T3_DSSD_X39_E_Zero_Dispersion 1.37186
+MUSETT_T3_DSSD_X40_E_Zero_Dispersion 4.45981
+MUSETT_T3_DSSD_X41_E_Zero_Dispersion -0.328392
+MUSETT_T3_DSSD_X42_E_Zero_Dispersion -0.694481
+MUSETT_T3_DSSD_X43_E_Zero_Dispersion 1.18661
+MUSETT_T3_DSSD_X44_E_Zero_Dispersion -1.30229
+MUSETT_T3_DSSD_X45_E_Zero_Dispersion -2.94757
+MUSETT_T3_DSSD_X46_E_Zero_Dispersion 2.16577
+MUSETT_T3_DSSD_X47_E_Zero_Dispersion -2.18928
+MUSETT_T3_DSSD_X48_E_Zero_Dispersion 0.104608
+MUSETT_T3_DSSD_X49_E_Zero_Dispersion -1.32368
+MUSETT_T3_DSSD_X50_E_Zero_Dispersion 4.74399
+MUSETT_T3_DSSD_X51_E_Zero_Dispersion -4.71591
+MUSETT_T3_DSSD_X52_E_Zero_Dispersion -0.509006
+MUSETT_T3_DSSD_X53_E_Zero_Dispersion -4.41517
+MUSETT_T3_DSSD_X54_E_Zero_Dispersion 2.21521
+MUSETT_T3_DSSD_X55_E_Zero_Dispersion -3.01389
+MUSETT_T3_DSSD_X56_E_Zero_Dispersion -5.75791
+MUSETT_T3_DSSD_X57_E_Zero_Dispersion 4.69962
+MUSETT_T3_DSSD_X58_E_Zero_Dispersion -3.076
+MUSETT_T3_DSSD_X59_E_Zero_Dispersion 2.09821
+MUSETT_T3_DSSD_X60_E_Zero_Dispersion -3.48995
+MUSETT_T3_DSSD_X61_E_Zero_Dispersion 2.56403
+MUSETT_T3_DSSD_X62_E_Zero_Dispersion 1.98175
+MUSETT_T3_DSSD_X63_E_Zero_Dispersion -2.27108
+MUSETT_T3_DSSD_X64_E_Zero_Dispersion -3.42757
+MUSETT_T3_DSSD_X65_E_Zero_Dispersion 1.82693
+MUSETT_T3_DSSD_X66_E_Zero_Dispersion -2.40702
+MUSETT_T3_DSSD_X67_E_Zero_Dispersion 1.53094
+MUSETT_T3_DSSD_X68_E_Zero_Dispersion 1.53277
+MUSETT_T3_DSSD_X69_E_Zero_Dispersion -0.791383
+MUSETT_T3_DSSD_X70_E_Zero_Dispersion -0.362237
+MUSETT_T3_DSSD_X71_E_Zero_Dispersion -0.659603
+MUSETT_T3_DSSD_X72_E_Zero_Dispersion 1.32626
+MUSETT_T3_DSSD_X73_E_Zero_Dispersion -3.22076
+MUSETT_T3_DSSD_X74_E_Zero_Dispersion -0.251833
+MUSETT_T3_DSSD_X75_E_Zero_Dispersion -0.331908
+MUSETT_T3_DSSD_X76_E_Zero_Dispersion 1.87832
+MUSETT_T3_DSSD_X77_E_Zero_Dispersion 0.151597
+MUSETT_T3_DSSD_X78_E_Zero_Dispersion -2.06675
+MUSETT_T3_DSSD_X79_E_Zero_Dispersion -0.672223
+MUSETT_T3_DSSD_X80_E_Zero_Dispersion -4.24799
+MUSETT_T3_DSSD_X81_E_Zero_Dispersion -0.506594
+MUSETT_T3_DSSD_X82_E_Zero_Dispersion 2.41919
+MUSETT_T3_DSSD_X83_E_Zero_Dispersion -1.66554
+MUSETT_T3_DSSD_X84_E_Zero_Dispersion -0.972652
+MUSETT_T3_DSSD_X85_E_Zero_Dispersion -0.403224
+MUSETT_T3_DSSD_X86_E_Zero_Dispersion 2.55276
+MUSETT_T3_DSSD_X87_E_Zero_Dispersion -0.634855
+MUSETT_T3_DSSD_X88_E_Zero_Dispersion 1.44682
+MUSETT_T3_DSSD_X89_E_Zero_Dispersion 4.54114
+MUSETT_T3_DSSD_X90_E_Zero_Dispersion -3.08185
+MUSETT_T3_DSSD_X91_E_Zero_Dispersion 0.317454
+MUSETT_T3_DSSD_X92_E_Zero_Dispersion -2.08604
+MUSETT_T3_DSSD_X93_E_Zero_Dispersion -0.985475
+MUSETT_T3_DSSD_X94_E_Zero_Dispersion 1.62963
+MUSETT_T3_DSSD_X95_E_Zero_Dispersion 3.76716
+MUSETT_T3_DSSD_X96_E_Zero_Dispersion -1.59486
+MUSETT_T3_DSSD_X97_E_Zero_Dispersion 0.77823
+MUSETT_T3_DSSD_X98_E_Zero_Dispersion 0.822189
+MUSETT_T3_DSSD_X99_E_Zero_Dispersion -2.50977
+MUSETT_T3_DSSD_X100_E_Zero_Dispersion -4.00084
+MUSETT_T3_DSSD_X101_E_Zero_Dispersion 1.05943
+MUSETT_T3_DSSD_X102_E_Zero_Dispersion 1.51908
+MUSETT_T3_DSSD_X103_E_Zero_Dispersion 1.53918
+MUSETT_T3_DSSD_X104_E_Zero_Dispersion -3.48824
+MUSETT_T3_DSSD_X105_E_Zero_Dispersion 0.816455
+MUSETT_T3_DSSD_X106_E_Zero_Dispersion -1.65375
+MUSETT_T3_DSSD_X107_E_Zero_Dispersion 2.15443
+MUSETT_T3_DSSD_X108_E_Zero_Dispersion -0.56696
+MUSETT_T3_DSSD_X109_E_Zero_Dispersion -0.26407
+MUSETT_T3_DSSD_X110_E_Zero_Dispersion -2.68868
+MUSETT_T3_DSSD_X111_E_Zero_Dispersion 1.5642
+MUSETT_T3_DSSD_X112_E_Zero_Dispersion 0.774111
+MUSETT_T3_DSSD_X113_E_Zero_Dispersion 2.8693
+MUSETT_T3_DSSD_X114_E_Zero_Dispersion 4.10331
+MUSETT_T3_DSSD_X115_E_Zero_Dispersion -0.889989
+MUSETT_T3_DSSD_X116_E_Zero_Dispersion -2.43413
+MUSETT_T3_DSSD_X117_E_Zero_Dispersion -1.67811
+MUSETT_T3_DSSD_X118_E_Zero_Dispersion -2.51115
+MUSETT_T3_DSSD_X119_E_Zero_Dispersion 2.41323
+MUSETT_T3_DSSD_X120_E_Zero_Dispersion 1.18431
+MUSETT_T3_DSSD_X121_E_Zero_Dispersion 0.881997
+MUSETT_T3_DSSD_X122_E_Zero_Dispersion 0.569719
+MUSETT_T3_DSSD_X123_E_Zero_Dispersion 0.434787
+MUSETT_T3_DSSD_X124_E_Zero_Dispersion 8183.92
+MUSETT_T3_DSSD_X125_E_Zero_Dispersion -3.08136
+MUSETT_T3_DSSD_X126_E_Zero_Dispersion 2.12758
+MUSETT_T3_DSSD_X127_E_Zero_Dispersion 1.35063
+MUSETT_T3_DSSD_X128_E_Zero_Dispersion -0.367075
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/latex/double_alpha_run_244_Y_MM3_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/latex/double_alpha_run_244_Y_MM3_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d4e55b9f104591a15b76020d1d9e05788486e41e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/latex/double_alpha_run_244_Y_MM3_E.tex
@@ -0,0 +1,61 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  3
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 3 }
+ Bad Strip:
+\begin{center}
+\begin{tabular}{ | c | c | } 
+\hline 
+ Strip Number & Problem \\ \hline 
+124 &  1 peak(s) found; zero extrapolation too high:8183.92channels;  \\ \hline 
+\end{tabular} 
+\end{center}
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM3_E/latex/pictures/Telescope3Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.28892
+
+Sigma fit sigma: 0.565314
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM3_E/peaks/Cal_Str_Y_E_MM3.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.cal
new file mode 100644
index 0000000000000000000000000000000000000000..8a89504b3dc807daabb33e82ab3f2391497ddbf1
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y1_E 59.5234 -0.00725765
+MUSETT_T3_DSSD_Y2_E 58.5127 -0.00713688
+MUSETT_T3_DSSD_Y3_E 59.574 -0.00726549
+MUSETT_T3_DSSD_Y4_E 59.51 -0.00725796
+MUSETT_T3_DSSD_Y5_E 59.2116 -0.00722064
+MUSETT_T3_DSSD_Y6_E 59.4237 -0.00724658
+MUSETT_T3_DSSD_Y7_E 59.0257 -0.00719413
+MUSETT_T3_DSSD_Y8_E 59.537 -0.00725846
+MUSETT_T3_DSSD_Y9_E 59.9426 -0.00730929
+MUSETT_T3_DSSD_Y10_E 59.6876 -0.00727441
+MUSETT_T3_DSSD_Y11_E 59.5449 -0.00725957
+MUSETT_T3_DSSD_Y12_E 59.3479 -0.00723827
+MUSETT_T3_DSSD_Y13_E 59.032 -0.0071972
+MUSETT_T3_DSSD_Y14_E 59.265 -0.00722989
+MUSETT_T3_DSSD_Y15_E 60.0166 -0.00731897
+MUSETT_T3_DSSD_Y16_E 59.3186 -0.00723564
+MUSETT_T3_DSSD_Y17_E 62.3545 -0.00760396
+MUSETT_T3_DSSD_Y18_E 62.624 -0.00763656
+MUSETT_T3_DSSD_Y19_E 61.4411 -0.00748826
+MUSETT_T3_DSSD_Y20_E 62.2082 -0.00758654
+MUSETT_T3_DSSD_Y21_E 62.6184 -0.00763608
+MUSETT_T3_DSSD_Y22_E 62.8879 -0.00766657
+MUSETT_T3_DSSD_Y23_E 62.305 -0.0075962
+MUSETT_T3_DSSD_Y24_E 62.4905 -0.00762219
+MUSETT_T3_DSSD_Y25_E 62.9493 -0.00767672
+MUSETT_T3_DSSD_Y26_E 62.9678 -0.0076806
+MUSETT_T3_DSSD_Y27_E 61.9803 -0.00755709
+MUSETT_T3_DSSD_Y28_E 62.9625 -0.00767967
+MUSETT_T3_DSSD_Y29_E 62.2051 -0.00758948
+MUSETT_T3_DSSD_Y30_E 62.4204 -0.00761303
+MUSETT_T3_DSSD_Y31_E 62.5487 -0.00762832
+MUSETT_T3_DSSD_Y32_E 62.481 -0.00762089
+MUSETT_T3_DSSD_Y33_E 55.6954 -0.00679321
+MUSETT_T3_DSSD_Y34_E 55.862 -0.00681429
+MUSETT_T3_DSSD_Y35_E 55.2595 -0.00673682
+MUSETT_T3_DSSD_Y36_E 55.2613 -0.0067392
+MUSETT_T3_DSSD_Y37_E 55.3232 -0.00674678
+MUSETT_T3_DSSD_Y38_E 55.7697 -0.00680183
+MUSETT_T3_DSSD_Y39_E 55.4597 -0.00676292
+MUSETT_T3_DSSD_Y40_E 55.1054 -0.00672069
+MUSETT_T3_DSSD_Y41_E 54.9776 -0.0067034
+MUSETT_T3_DSSD_Y42_E 55.6329 -0.00678247
+MUSETT_T3_DSSD_Y43_E 55.5045 -0.00676804
+MUSETT_T3_DSSD_Y44_E 54.833 -0.00668532
+MUSETT_T3_DSSD_Y45_E 55.268 -0.00673901
+MUSETT_T3_DSSD_Y46_E 55.1892 -0.00673083
+MUSETT_T3_DSSD_Y47_E 55.4934 -0.00676746
+MUSETT_T3_DSSD_Y48_E 55.4247 -0.00675997
+MUSETT_T3_DSSD_Y49_E 56.2861 -0.00686516
+MUSETT_T3_DSSD_Y50_E 56.3992 -0.00687703
+MUSETT_T3_DSSD_Y51_E 56.6985 -0.00691472
+MUSETT_T3_DSSD_Y52_E 56.5241 -0.00689401
+MUSETT_T3_DSSD_Y53_E 56.1254 -0.00684574
+MUSETT_T3_DSSD_Y54_E 56.6081 -0.00690538
+MUSETT_T3_DSSD_Y55_E 56.3216 -0.00687193
+MUSETT_T3_DSSD_Y56_E 56.5475 -0.006896
+MUSETT_T3_DSSD_Y57_E 56.7187 -0.00691876
+MUSETT_T3_DSSD_Y58_E 56.1262 -0.00684421
+MUSETT_T3_DSSD_Y59_E 57.0384 -0.00695577
+MUSETT_T3_DSSD_Y60_E 56.6041 -0.0069031
+MUSETT_T3_DSSD_Y61_E 57.1317 -0.00696705
+MUSETT_T3_DSSD_Y62_E 56.6654 -0.006912
+MUSETT_T3_DSSD_Y63_E 56.4458 -0.00688605
+MUSETT_T3_DSSD_Y64_E 57.0189 -0.00695467
+MUSETT_T3_DSSD_Y65_E 58.866 -0.00717739
+MUSETT_T3_DSSD_Y66_E 59.3718 -0.00723936
+MUSETT_T3_DSSD_Y67_E 58.8606 -0.00717536
+MUSETT_T3_DSSD_Y68_E 59.0432 -0.00720334
+MUSETT_T3_DSSD_Y69_E 58.8518 -0.00717572
+MUSETT_T3_DSSD_Y70_E 58.1666 -0.00709048
+MUSETT_T3_DSSD_Y71_E 58.6539 -0.00715115
+MUSETT_T3_DSSD_Y72_E 59.4352 -0.00724736
+MUSETT_T3_DSSD_Y73_E 59.6808 -0.00727892
+MUSETT_T3_DSSD_Y74_E 58.9154 -0.0071833
+MUSETT_T3_DSSD_Y75_E 58.9534 -0.00718787
+MUSETT_T3_DSSD_Y76_E 59.1119 -0.00720917
+MUSETT_T3_DSSD_Y77_E 59.0564 -0.00720162
+MUSETT_T3_DSSD_Y78_E 58.8468 -0.00717579
+MUSETT_T3_DSSD_Y79_E 58.5676 -0.00714313
+MUSETT_T3_DSSD_Y80_E 59.5249 -0.00725969
+MUSETT_T3_DSSD_Y81_E 62.5316 -0.00763049
+MUSETT_T3_DSSD_Y82_E 62.3098 -0.00760082
+MUSETT_T3_DSSD_Y83_E 62.1091 -0.00757633
+MUSETT_T3_DSSD_Y84_E 61.7125 -0.00752821
+MUSETT_T3_DSSD_Y85_E 61.7896 -0.00754096
+MUSETT_T3_DSSD_Y86_E 62.3687 -0.0076099
+MUSETT_T3_DSSD_Y87_E 62.0224 -0.00756846
+MUSETT_T3_DSSD_Y88_E 62.3511 -0.00760351
+MUSETT_T3_DSSD_Y89_E 62.3244 -0.00760376
+MUSETT_T3_DSSD_Y90_E 62.1206 -0.00757798
+MUSETT_T3_DSSD_Y91_E 61.3832 -0.0074877
+MUSETT_T3_DSSD_Y92_E 61.5775 -0.00751155
+MUSETT_T3_DSSD_Y93_E 61.483 -0.007499
+MUSETT_T3_DSSD_Y94_E 61.7077 -0.00752956
+MUSETT_T3_DSSD_Y95_E 61.4383 -0.00749316
+MUSETT_T3_DSSD_Y96_E 61.4678 -0.00749923
+MUSETT_T3_DSSD_Y97_E 55.9891 -0.0068234
+MUSETT_T3_DSSD_Y98_E 56.238 -0.00685463
+MUSETT_T3_DSSD_Y99_E 55.7145 -0.00679225
+MUSETT_T3_DSSD_Y100_E 55.3441 -0.00674679
+MUSETT_T3_DSSD_Y101_E 55.7335 -0.00679658
+MUSETT_T3_DSSD_Y102_E 55.7497 -0.00679727
+MUSETT_T3_DSSD_Y103_E 55.3707 -0.0067502
+MUSETT_T3_DSSD_Y104_E 55.4781 -0.00676373
+MUSETT_T3_DSSD_Y105_E 55.2205 -0.00673093
+MUSETT_T3_DSSD_Y106_E 55.7488 -0.00679679
+MUSETT_T3_DSSD_Y107_E 55.9598 -0.00682393
+MUSETT_T3_DSSD_Y108_E 55.7521 -0.00679752
+MUSETT_T3_DSSD_Y109_E 55.2111 -0.00673195
+MUSETT_T3_DSSD_Y110_E 55.3052 -0.00674172
+MUSETT_T3_DSSD_Y111_E 56.0662 -0.00683506
+MUSETT_T3_DSSD_Y112_E 56.0236 -0.00682937
+MUSETT_T3_DSSD_Y113_E 56.7839 -0.00692618
+MUSETT_T3_DSSD_Y114_E 56.5644 -0.00689877
+MUSETT_T3_DSSD_Y115_E 56.3829 -0.00687154
+MUSETT_T3_DSSD_Y116_E 56.4761 -0.00688733
+MUSETT_T3_DSSD_Y117_E 57.0804 -0.00695954
+MUSETT_T3_DSSD_Y118_E 56.6645 -0.00690751
+MUSETT_T3_DSSD_Y119_E 56.1478 -0.0068441
+MUSETT_T3_DSSD_Y120_E 57.1191 -0.00696464
+MUSETT_T3_DSSD_Y121_E 57.1449 -0.00697197
+MUSETT_T3_DSSD_Y122_E 56.1944 -0.00684715
+MUSETT_T3_DSSD_Y123_E 56.9821 -0.00694955
+MUSETT_T3_DSSD_Y124_E 56.3139 -0.00686238
+MUSETT_T3_DSSD_Y125_E 57.1661 -0.00697354
+MUSETT_T3_DSSD_Y126_E 56.4641 -0.00688782
+MUSETT_T3_DSSD_Y127_E 57.0575 -0.00696247
+MUSETT_T3_DSSD_Y128_E 56.782 -0.006919733
\ No newline at end of file
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.dispersion b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.dispersion
new file mode 100644
index 0000000000000000000000000000000000000000..6c14fada3338d7ab4a13340bb9b25fa05e2e259f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/Cal_Str_Y_E_MM4.dispersion
@@ -0,0 +1,128 @@
+MUSETT_T4_DSSD_X1_E_Zero_Dispersion -9.46769
+MUSETT_T4_DSSD_X2_E_Zero_Dispersion -6.63941
+MUSETT_T4_DSSD_X3_E_Zero_Dispersion -7.59066
+MUSETT_T4_DSSD_X4_E_Zero_Dispersion -7.27873
+MUSETT_T4_DSSD_X5_E_Zero_Dispersion -8.33041
+MUSETT_T4_DSSD_X6_E_Zero_Dispersion -8.25031
+MUSETT_T4_DSSD_X7_E_Zero_Dispersion -12.7051
+MUSETT_T4_DSSD_X8_E_Zero_Dispersion -10.4257
+MUSETT_T4_DSSD_X9_E_Zero_Dispersion -8.87304
+MUSETT_T4_DSSD_X10_E_Zero_Dispersion -13.1471
+MUSETT_T4_DSSD_X11_E_Zero_Dispersion -10.2696
+MUSETT_T4_DSSD_X12_E_Zero_Dispersion -7.18175
+MUSETT_T4_DSSD_X13_E_Zero_Dispersion -10.08
+MUSETT_T4_DSSD_X14_E_Zero_Dispersion -5.22013
+MUSETT_T4_DSSD_X15_E_Zero_Dispersion -8.14216
+MUSETT_T4_DSSD_X16_E_Zero_Dispersion -6.10666
+MUSETT_T4_DSSD_X17_E_Zero_Dispersion -8.26993
+MUSETT_T4_DSSD_X18_E_Zero_Dispersion -8.55315
+MUSETT_T4_DSSD_X19_E_Zero_Dispersion -12.9968
+MUSETT_T4_DSSD_X20_E_Zero_Dispersion -7.81329
+MUSETT_T4_DSSD_X21_E_Zero_Dispersion -8.33246
+MUSETT_T4_DSSD_X22_E_Zero_Dispersion -10.8731
+MUSETT_T4_DSSD_X23_E_Zero_Dispersion -10.1298
+MUSETT_T4_DSSD_X24_E_Zero_Dispersion -6.49554
+MUSETT_T4_DSSD_X25_E_Zero_Dispersion -8.03084
+MUSETT_T4_DSSD_X26_E_Zero_Dispersion -6.28445
+MUSETT_T4_DSSD_X27_E_Zero_Dispersion -9.61192
+MUSETT_T4_DSSD_X28_E_Zero_Dispersion -6.60574
+MUSETT_T4_DSSD_X29_E_Zero_Dispersion -4.2257
+MUSETT_T4_DSSD_X30_E_Zero_Dispersion -7.14973
+MUSETT_T4_DSSD_X31_E_Zero_Dispersion -7.53233
+MUSETT_T4_DSSD_X32_E_Zero_Dispersion -6.64291
+MUSETT_T4_DSSD_X33_E_Zero_Dispersion -6.68809
+MUSETT_T4_DSSD_X34_E_Zero_Dispersion -5.77713
+MUSETT_T4_DSSD_X35_E_Zero_Dispersion -10.6039
+MUSETT_T4_DSSD_X36_E_Zero_Dispersion -7.96819
+MUSETT_T4_DSSD_X37_E_Zero_Dispersion -7.94165
+MUSETT_T4_DSSD_X38_E_Zero_Dispersion -7.21244
+MUSETT_T4_DSSD_X39_E_Zero_Dispersion -8.55547
+MUSETT_T4_DSSD_X40_E_Zero_Dispersion -7.36818
+MUSETT_T4_DSSD_X41_E_Zero_Dispersion -9.44709
+MUSETT_T4_DSSD_X42_E_Zero_Dispersion -10.4522
+MUSETT_T4_DSSD_X43_E_Zero_Dispersion -8.97489
+MUSETT_T4_DSSD_X44_E_Zero_Dispersion -10
+MUSETT_T4_DSSD_X45_E_Zero_Dispersion -9.2142
+MUSETT_T4_DSSD_X46_E_Zero_Dispersion -7.46812
+MUSETT_T4_DSSD_X47_E_Zero_Dispersion -8.04091
+MUSETT_T4_DSSD_X48_E_Zero_Dispersion -6.95261
+MUSETT_T4_DSSD_X49_E_Zero_Dispersion -6.80019
+MUSETT_T4_DSSD_X50_E_Zero_Dispersion -9.09434
+MUSETT_T4_DSSD_X51_E_Zero_Dispersion -7.67807
+MUSETT_T4_DSSD_X52_E_Zero_Dispersion -7.01785
+MUSETT_T4_DSSD_X53_E_Zero_Dispersion -6.58275
+MUSETT_T4_DSSD_X54_E_Zero_Dispersion -5.67122
+MUSETT_T4_DSSD_X55_E_Zero_Dispersion -3.88878
+MUSETT_T4_DSSD_X56_E_Zero_Dispersion -8.03944
+MUSETT_T4_DSSD_X57_E_Zero_Dispersion -5.81276
+MUSETT_T4_DSSD_X58_E_Zero_Dispersion -8.54494
+MUSETT_T4_DSSD_X59_E_Zero_Dispersion -8.16751
+MUSETT_T4_DSSD_X60_E_Zero_Dispersion -7.80874
+MUSETT_T4_DSSD_X61_E_Zero_Dispersion -8.26822
+MUSETT_T4_DSSD_X62_E_Zero_Dispersion -6.11378
+MUSETT_T4_DSSD_X63_E_Zero_Dispersion -5.12248
+MUSETT_T4_DSSD_X64_E_Zero_Dispersion -6.64078
+MUSETT_T4_DSSD_X65_E_Zero_Dispersion -9.58986
+MUSETT_T4_DSSD_X66_E_Zero_Dispersion -9.24837
+MUSETT_T4_DSSD_X67_E_Zero_Dispersion -11.1603
+MUSETT_T4_DSSD_X68_E_Zero_Dispersion -4.63863
+MUSETT_T4_DSSD_X69_E_Zero_Dispersion -9.52264
+MUSETT_T4_DSSD_X70_E_Zero_Dispersion -11.479
+MUSETT_T4_DSSD_X71_E_Zero_Dispersion -10.0137
+MUSETT_T4_DSSD_X72_E_Zero_Dispersion -8.94496
+MUSETT_T4_DSSD_X73_E_Zero_Dispersion -7.12698
+MUSETT_T4_DSSD_X74_E_Zero_Dispersion -9.7154
+MUSETT_T4_DSSD_X75_E_Zero_Dispersion -9.78426
+MUSETT_T4_DSSD_X76_E_Zero_Dispersion -7.53312
+MUSETT_T4_DSSD_X77_E_Zero_Dispersion -8.43401
+MUSETT_T4_DSSD_X78_E_Zero_Dispersion -8.73408
+MUSETT_T4_DSSD_X79_E_Zero_Dispersion -7.14449
+MUSETT_T4_DSSD_X80_E_Zero_Dispersion -7.37592
+MUSETT_T4_DSSD_X81_E_Zero_Dispersion -2.96715
+MUSETT_T4_DSSD_X82_E_Zero_Dispersion -5.76667
+MUSETT_T4_DSSD_X83_E_Zero_Dispersion -5.78229
+MUSETT_T4_DSSD_X84_E_Zero_Dispersion -5.50772
+MUSETT_T4_DSSD_X85_E_Zero_Dispersion -1.86551
+MUSETT_T4_DSSD_X86_E_Zero_Dispersion -3.73733
+MUSETT_T4_DSSD_X87_E_Zero_Dispersion -2.84542
+MUSETT_T4_DSSD_X88_E_Zero_Dispersion -8.3055
+MUSETT_T4_DSSD_X89_E_Zero_Dispersion -4.52337
+MUSETT_T4_DSSD_X90_E_Zero_Dispersion -5.51395
+MUSETT_T4_DSSD_X91_E_Zero_Dispersion -5.87937
+MUSETT_T4_DSSD_X92_E_Zero_Dispersion -5.71029
+MUSETT_T4_DSSD_X93_E_Zero_Dispersion -6.8214
+MUSETT_T4_DSSD_X94_E_Zero_Dispersion -3.3959
+MUSETT_T4_DSSD_X95_E_Zero_Dispersion -7.24608
+MUSETT_T4_DSSD_X96_E_Zero_Dispersion -4.55237
+MUSETT_T4_DSSD_X97_E_Zero_Dispersion -13.4435
+MUSETT_T4_DSSD_X98_E_Zero_Dispersion -12.3841
+MUSETT_T4_DSSD_X99_E_Zero_Dispersion -10.6606
+MUSETT_T4_DSSD_X100_E_Zero_Dispersion -11.0243
+MUSETT_T4_DSSD_X101_E_Zero_Dispersion -8.23096
+MUSETT_T4_DSSD_X102_E_Zero_Dispersion -9.78454
+MUSETT_T4_DSSD_X103_E_Zero_Dispersion -10.8303
+MUSETT_T4_DSSD_X104_E_Zero_Dispersion -10.3008
+MUSETT_T4_DSSD_X105_E_Zero_Dispersion -11.9899
+MUSETT_T4_DSSD_X106_E_Zero_Dispersion -10.234
+MUSETT_T4_DSSD_X107_E_Zero_Dispersion -8.52824
+MUSETT_T4_DSSD_X108_E_Zero_Dispersion -9.83499
+MUSETT_T4_DSSD_X109_E_Zero_Dispersion -9.35842
+MUSETT_T4_DSSD_X110_E_Zero_Dispersion -11.4331
+MUSETT_T4_DSSD_X111_E_Zero_Dispersion -10.7369
+MUSETT_T4_DSSD_X112_E_Zero_Dispersion -11.3431
+MUSETT_T4_DSSD_X113_E_Zero_Dispersion -6.44424
+MUSETT_T4_DSSD_X114_E_Zero_Dispersion -7.19987
+MUSETT_T4_DSSD_X115_E_Zero_Dispersion -13.2774
+MUSETT_T4_DSSD_X116_E_Zero_Dispersion -8.00115
+MUSETT_T4_DSSD_X117_E_Zero_Dispersion -9.74113
+MUSETT_T4_DSSD_X118_E_Zero_Dispersion -11.3227
+MUSETT_T4_DSSD_X119_E_Zero_Dispersion -11.8247
+MUSETT_T4_DSSD_X120_E_Zero_Dispersion -9.29674
+MUSETT_T4_DSSD_X121_E_Zero_Dispersion -4.37841
+MUSETT_T4_DSSD_X122_E_Zero_Dispersion -14.9703
+MUSETT_T4_DSSD_X123_E_Zero_Dispersion -7.38905
+MUSETT_T4_DSSD_X124_E_Zero_Dispersion -14.1675
+MUSETT_T4_DSSD_X125_E_Zero_Dispersion -5.57399
+MUSETT_T4_DSSD_X126_E_Zero_Dispersion -5.67467
+MUSETT_T4_DSSD_X127_E_Zero_Dispersion -3.0189
+MUSETT_T4_DSSD_X128_E_Zero_Dispersion -13.8068
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/latex/double_alpha_run_244_Y_MM4_E.tex b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/latex/double_alpha_run_244_Y_MM4_E.tex
new file mode 100644
index 0000000000000000000000000000000000000000..19b7e5c7fe7ef0dafc92bdd24671bbd7b3b403ce
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/latex/double_alpha_run_244_Y_MM4_E.tex
@@ -0,0 +1,54 @@
+\documentclass[a4paper,6pt]{article}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{fullpage}
+\topmargin = 0pt
+\headsep = 0pt
+\begin{document}
+\title{MUSETT DSSD Energy Calibration Report}
+\date{}
+\maketitle
+\section{Calibration Summary}
+\begin{itemize}
+	 \item[{\bf Experiment:}] double_alpha
+	 \item[{\bf Operator:}] Hugo
+	 \item[{\bf App. Date:}] 21/06/2023
+	 \item[{\bf Source:}] 3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po
+	 \item[{\bf Dead Layer:}] Al 0.3$\mu$m + Si 0$\mu$m
+	 \item[{\bf Comment:}] MUSETT
+	 \item[] 
+	 \item[{\bf Calibration Method:}]  ZeroExtrapolation 
+	 \item[{\bf Telescope Treated:}]  4
+	 \item[{\bf Strip Treated:}]  1 to 128 
+	 \item[{\bf DSSD Side:}]  Y
+\end{itemize}
+\begin{itemize}
+	 \item[] 
+	 \item[] 
+\end{itemize}
+{\bf Source Description:} 
+\begin{center}
+\begin{tabular}{ | c | c | c | } 
+\hline 
+Isotope & Original Energy (MeV) & Branching Ratio \\ \hline 
+$^{222}$Ra & 6.558 & 96.95 \\ \hline
+$^{222}$Ra & 6.239 & 3.05 \\ \hline
+$^{218}$Rn & 7.1291 & 100 \\ \hline
+$^{214}$Po & 7.68682 & 100 \\ \hline
+\end{tabular} 
+\end{center}
+\pagebreak
+\section{Telescope 4 }
+Bad Strip : All Strip are ok.
+\begin{figure}[htcb!]
+\begin{center}
+\includegraphics[width=0.7\textwidth]{./Calibration/double_alpha_run_244_Y_MM4_E/latex/pictures/Telescope4Summary.pdf}
+\end{center}
+\end{figure}
+\pagebreak
+Sigma fit centroid: 2.05778
+
+Sigma fit sigma: 0.173405
+
+\end{document}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/peaks/Cal_Str_Y_E_MM4.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Calibration/double_alpha_run_244_Y_MM4_E/peaks/Cal_Str_Y_E_MM4.peak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator.C b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator.C
new file mode 100644
index 0000000000000000000000000000000000000000..3e38e7214e317a1d5e9e353e14fc066143fb0df8
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator.C
@@ -0,0 +1,928 @@
+// Contain global variable declaration, comment and option
+#include "EnergyCalibrator.h"
+
+void AutoCalibration(int Telescope_Start, int Telescope_End)
+{
+  for(int i = Telescope_Start ; i<=Telescope_End ;i++)
+  {
+    AlThickness = 0.3*micrometer ;
+    SiThickness = 0.0*micrometer ;
+    CThickness = 127*nanometer ;
+    double Al_step = 0.01*micrometer;
+    int step_limit = 100;
+    int k = 0 ;
+
+    TString inFileName = frun;
+
+    Telescope_Number = i ;
+    // Create a folder to Hold all the file from calibration
+    ostringstream FolderName;
+
+    FolderName << Experiment << "_" << inFileName << "_" << xy << "_MM" << Telescope_Number << "_E";
+    
+    main_name = FolderName.str() ;
+    TString make_folder = "mkdir ./Calibration/" + main_name ;   
+    folder = "./Calibration/" + FolderName.str() ;
+    system(make_folder);
+    system(make_folder+"/peaks");
+    system(make_folder+"/dispersion");
+    system(make_folder+"/latex");
+    system(make_folder+"/latex/pictures");
+
+    // open the ROOT file to process
+    TString path  = "./Histograms/";
+    inFile = new TFile(path + inFileName +"_RawMUSETTHistos.root");
+    // inFile = new TFile(path + inFileName +"_RawMust2Histos.root");
+    //inFile = new TFile(path + inFileName +"_RawMust2Histos_Threshold.root");
+    //  cout<<path + inFileName +"_RawMust2Histos.root"<<endl;
+    //cout<<inFile<<endl;
+
+    EnergyCalibrator();
+/*
+    bool check1=false,check2=false;
+    while( !(mean_extrapolation <0.1 && mean_extrapolation >-0.1 ) && k < step_limit )
+    {
+      if(mean_extrapolation < 0)
+      {
+        if(xy=="X")
+          AlThickness -= Al_step;
+        else if(xy=="Y")
+          AlThickness += Al_step;
+
+        check1=true;
+      }
+
+      else if (mean_extrapolation > 0)
+      {
+        if(xy=="X")
+          AlThickness += Al_step;
+        else if(xy=="Y")
+          AlThickness -= Al_step;
+
+        check2=true;
+      }
+
+      if(check1&&check2)
+      {
+        Al_step=Al_step/10.;
+        check1=false;check2=false;
+      }
+      latex_file.close();
+      EnergyCalibrator(fDet);
+
+      cout << " Iteration Results: Al Thickness: " << AlThickness/micrometer << "um | Mean Extrapolation  "  << mean_extrapolation << "Chan. "<< endl ;
+
+      k++;
+    }
+*/
+    LatexSummaryEnder();
+
+    delete Buffer;
+    delete Source_branching_ratio;
+    delete Source_E;
+    delete Source_Sig;
+    delete energyX;
+    delete errorsX;
+    delete energyY;
+    delete errorsY;
+
+  }
+
+  return;
+}
+
+
+/////////////////////////////
+void DefineSource(TString sourceName)
+{
+  if(sourceName=="3 alphas")
+  {
+    NumberOfIsotope = 3 ;
+    energyX = new Double_t[NumberOfIsotope]; errorsX = new Double_t[NumberOfIsotope];
+    energyY = new Double_t[NumberOfIsotope]; errorsY = new Double_t[NumberOfIsotope];
+
+    /// Information used in the summary
+    Source_Number_Peak = 8;
+    Source_isotope = new TString[Source_Number_Peak] ;Source_E = new Double_t[Source_Number_Peak] ; Source_Sig = new Double_t[Source_Number_Peak] ; Source_branching_ratio = new Double_t[Source_Number_Peak] ;
+
+    // 244Pu
+    Source_isotope[0]="$^{239}$Pu"; Source_E[0]   = 5.15659 ; Source_Sig[0] = 0.00014 ; Source_branching_ratio[0] = 70.77 ;
+    Source_isotope[1]="$^{239}$Pu"; Source_E[1]   = 5.14438 ; Source_Sig[1] = 0.00014 ; Source_branching_ratio[1] = 17.11 ;
+    Source_isotope[2]="$^{239}$Pu"; Source_E[2]   = 5.1055  ; Source_Sig[2] = 0.00014 ; Source_branching_ratio[2] = 11.94 ;
+
+    // 241Am
+    Source_isotope[3]="$^{241}$Am"; Source_E[3]   = 5.48556 ; Source_Sig[3] = 0.00012 ; Source_branching_ratio[3] = 84.8 ;
+    Source_isotope[4]="$^{241}$Am"; Source_E[4]   = 5.44280 ; Source_Sig[4] = 0.00012 ; Source_branching_ratio[4] = 13.1 ;
+    Source_isotope[5]="$^{241}$Am"; Source_E[5]   = 5.388   ; Source_Sig[5] = 0.00012 ; Source_branching_ratio[5] = 1.66 ;
+
+    // 244Cm
+    Source_isotope[6]="$^{244}$Cm"; Source_E[6]   = 5.80477 ; Source_Sig[6] = 0.00005 ; Source_branching_ratio[6] = 76.40 ;
+    Source_isotope[7]="$^{244}$Cm"; Source_E[7]   = 5.76264 ; Source_Sig[7] = 0.00005 ; Source_branching_ratio[7] = 23.60 ;
+
+    // Corrected value of main peak used in the fit
+    Double_t sig_value = 0.1;
+    Double_t alpha1_Sig = sig_value ; Double_t alpha2_Sig = sig_value ; Double_t alpha3_Sig = sig_value ; 
+
+    Double_t alpha1_E , alpha2_E , alpha3_E;
+
+    alpha1_E = EL_Al.Slow(	Source_E[0]*MeV , // Energy of the detected particle
+        AlThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha1_E = EL_Si.Slow(	alpha1_E*MeV    , // Energy of the detected particle
+        SiThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha2_E = EL_Al.Slow(	Source_E[3]*MeV , // Energy of the detected particle
+        AlThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha2_E = EL_Si.Slow(	alpha2_E*MeV    , // Energy of the detected particle
+        SiThickness	    , // Target Thickness at 0 degree
+        0     		      ) ;		
+
+    alpha3_E = EL_Al.Slow(	Source_E[6]*MeV , // Energy of the detected particle
+        AlThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha3_E = EL_Si.Slow(	alpha3_E*MeV    , // Energy of the detected particle
+        SiThickness   	, // Target Thickness at 0 degree
+        0     		      ) ;		                          
+
+    // X and Y are in a reversed order        
+    energyX[0] = alpha1_E   ; energyX[1] = alpha2_E   ; energyX[2] = alpha3_E   ;
+    errorsX[0] = alpha1_Sig ; errorsX[1] = alpha2_Sig ; errorsX[2] = alpha3_Sig ;
+
+    energyY[0] = alpha3_E   ; energyY[1] = alpha2_E   ; energyY[2] = alpha1_E   ;
+    errorsY[0] = alpha3_Sig ; errorsY[1] = alpha2_Sig ; errorsY[2] = alpha1_Sig ;
+  }
+  if(sourceName=="222Ra 218Rn 214Po"){
+    std::cout << "///////////////////////////////////////////////// TEST /////////////////////" <<std::endl;
+    NumberOfIsotope = 3 ;
+    energyX = new Double_t[NumberOfIsotope]; errorsX = new Double_t[NumberOfIsotope];
+    energyY = new Double_t[NumberOfIsotope]; errorsY = new Double_t[NumberOfIsotope];
+
+    /// Information used in the summary
+    Source_Number_Peak = 4;
+    Source_isotope = new TString[Source_Number_Peak] ;Source_E = new Double_t[Source_Number_Peak] ; Source_Sig = new Double_t[Source_Number_Peak] ; Source_branching_ratio = new Double_t[Source_Number_Peak] ;
+
+    // 222Ra
+    Source_isotope[0]="$^{222}$Ra"; Source_E[0]   = 6.558 ; Source_Sig[0] = 0.00014 ; Source_branching_ratio[0] = 96.95 ;
+    Source_isotope[1]="$^{222}$Ra"; Source_E[1]   = 6.239 ; Source_Sig[1] = 0.00014 ; Source_branching_ratio[1] = 3.05 ;
+
+    // 218Rn
+    Source_isotope[2]="$^{218}$Rn"; Source_E[2]   = 7.1291 ; Source_Sig[2] = 0.00005 ; Source_branching_ratio[2] = 100 ;
+
+    // 214Po
+    Source_isotope[3]="$^{214}$Po"; Source_E[3]   = 7.68682 ; Source_Sig[3] = 0.00005 ; Source_branching_ratio[3] = 100 ;
+
+    // Corrected value of main peak used in the fit
+    Double_t sig_value = 0.1;
+    Double_t alpha1_Sig = sig_value ; Double_t alpha2_Sig = sig_value ; Double_t alpha3_Sig = sig_value ; 
+
+    Double_t alpha1_E , alpha2_E , alpha3_E;
+
+
+    alpha1_E = EL_C.Slow(	Source_E[0]*MeV    , // Energy of the detected particle
+        CThickness	    , // Target Thickness at 0 degree
+        0			          ) ;
+
+    alpha2_E = EL_C.Slow(	Source_E[2]*MeV    , // Energy of the detected particle
+        CThickness	    , // Target Thickness at 0 degree
+        0     		      ) ;		
+
+    alpha3_E = EL_C.Slow(	Source_E[3]*MeV    , // Energy of the detected particle
+        CThickness   	, // Target Thickness at 0 degree
+        0     		      ) ;		                          
+
+    // X and Y are in a reversed order        
+    energyX[0] = alpha1_E   ; energyX[1] = alpha2_E   ; energyX[2] = alpha3_E   ;
+    errorsX[0] = alpha1_Sig ; errorsX[1] = alpha2_Sig ; errorsX[2] = alpha3_Sig ;
+
+    energyY[0] = alpha3_E   ; energyY[1] = alpha2_E   ; energyY[2] = alpha1_E   ;
+    errorsY[0] = alpha3_Sig ; errorsY[1] = alpha2_Sig ; errorsY[2] = alpha1_Sig ;
+
+  }
+
+  return;  
+}
+
+
+/////////////////////////////
+void EnergyCalibrator()
+{
+  std::cout << "test 1" << std::endl;
+  // Set-up the root Style
+  gStyle->SetOptTitle();
+  gStyle->SetOptTitle();
+  gStyle->SetOptStat(111111111);
+  //gPad->SetSetShowStyle(true);
+
+  DefineSource("222Ra 218Rn 214Po");
+
+  TString str;
+  TString str1;
+  TString str2;
+  TString strbuff;
+  TString strbuff2;
+  TString fname;
+  TString fname2;
+  TString fname3;
+  TString hname;
+  LatexSummaryHeader(xy);
+
+  // Clear everything
+  BadStrip.clear() ;
+  sigma_fit = new TH1F("Sigma", "Sigma from fit (channel)", 80, 0,10);
+  Dispersion= new TH1F("Dispersion", "Dispersion from Zero Extrapolation (channel)", 40, -20,20);
+  ZeroDispersion = new TGraph(128);
+  coeff_a = new TGraph(128);
+  coeff_b = new TGraph(128);
+
+  ostringstream number ;
+  number << Telescope_Number  ;
+  CurrentTelescope = Telescope_Number ;
+  if (xy == "X"){ 
+    //////// Input Files ///////////
+    str = "hMM"+number.str()+"_STRX_E";
+    str1 = "Cal_Str_X_E_MM"+number.str();
+  }	 
+  else if (xy == "Y"){ 	
+    //////// Input Files ///////////
+    str = "hMM"+number.str()+"_STRY_E";
+    str1 = "Cal_Str_Y_E_MM"+number.str();
+  }	 
+  else {cout<< "ERROR FOR X or Y PARAMETER"<< endl;}
+
+  fname =  folder + "/peaks/" + str1 + ".peak";
+  peaks_file.open( ( (string)fname ).c_str() );
+
+  fname2 = folder + "/" + str1 + ".cal";
+  calib_file.open( ( (string)fname2 ).c_str() );
+
+  fname3 = folder + "/" + str1 + ".dispersion";
+  dispersion_file.open( ( (string)fname3 ).c_str() );
+
+  Tsummary = new TCanvas((TString)("Telescope"+number.str()+"Summary"), (TString)("Telescope "+number.str()+" Summary"), 700, 700);
+  Tsummary->Divide(2,3);
+  Buffer  = new TCanvas((TString)("Buffer"), (TString)("Buffer"), 10, 10);
+  Buffer->cd(1);
+  std::cout << "test 2" << std::endl;
+
+  TH1F *histAlphaToPrint;
+  Int_t StripToPrint=127;
+
+  for (Int_t j = Strip_Start; j <= Strip_End; j++)
+  {
+  std::cout << "test 3 " << j << std::endl;
+    ///// Get the histogram of det i and strip j /////
+    CurrentStrip=j;
+    number.seekp(0);
+    number << j;
+    hname = str+(number.str().c_str());
+    TH1F *hist = (TH1F*) inFile->Get(((string)hname).c_str());
+
+    // Prevent rebinning in Pedestal
+    TH1F *histAlpha = (TH1F*)hist->Clone();
+    histAlpha->Rebin(2);
+
+    Alpha(histAlpha,
+        xy,
+        Pedestals(hist));
+
+    //Tsummary->WaitPrimitive();
+    /*if(xy == "X") 	   histAlpha->GetXaxis()->SetRangeUser(8500,9200);
+    else if(xy == "Y") histAlpha->GetXaxis()->SetRangeUser(7000,8000);*/
+    if(xy == "X") 	   histAlpha->GetXaxis()->SetRangeUser(Xmin,Xmax);
+    else if(xy == "Y") histAlpha->GetXaxis()->SetRangeUser(Ymin,Ymax);
+
+
+    if(j == StripToPrint-1) 
+    { //TH1F histAlpha67 = TH1F(*histAlpha);
+      histAlphaToPrint = (TH1F*)histAlpha->Clone();
+    }
+
+    //Buffer->WaitPrimitive();
+  }
+
+  Tsummary->cd(1); 
+  mean_extrapolation = ZeroDispersion->GetMean(2);
+  ZeroDispersion->SetMaximum(mean_extrapolation+30);ZeroDispersion->SetMinimum(mean_extrapolation-30);
+  ZeroDispersion->SetTitle("Scattered plot of zero extrapolation dispersion : Ped.+b/a");
+  ZeroDispersion->SetMarkerStyle(2);
+  ZeroDispersion->Draw("ap");
+  //Draw the mean line
+  TLine mean_line = TLine(0, ZeroDispersion->GetMean(2), 140, ZeroDispersion->GetMean(2) );
+  mean_line.Draw("");
+
+
+  std::cout << "test 4" << std::endl;
+  Tsummary->cd(2);
+  histAlphaToPrint->SetStats(true);
+  histAlphaToPrint->SetTitle("Raw Spectrum of a strip with gaussian fit");
+  histAlphaToPrint->Draw();
+
+  Tsummary->cd(3); 
+  Dispersion->Draw();
+
+  Tsummary->cd(4); 
+  sigma_fit->Draw();
+  TF1 *sigma_fit_fit = new TF1("sigma_fit_fit", "gaus", 0, 5);
+  sigma_fit->Fit("sigma_fit_fit", "Q");
+  sigma_fit_centroid = sigma_fit_fit->GetParameter(1);
+  sigma_fit_sigma = sigma_fit_fit->GetParameter(2);
+
+  Tsummary->cd(5) ;
+  coeff_a->SetMarkerStyle(2);
+  coeff_a->SetMaximum(coeff_a->GetMean(2)+0.002);coeff_a->SetMinimum(coeff_a->GetMean(2)-0.002);
+  coeff_a->SetTitle("Gain a (MeV/channel)");
+  coeff_a->Draw("ap");
+
+  Tsummary->cd(6);
+  coeff_b->SetMaximum(coeff_b->GetMean(2)+10);coeff_b->SetMinimum(coeff_b->GetMean(2)-10);
+  coeff_b->SetMarkerStyle(2);
+  coeff_b->SetTitle("Offset b (MeV)");
+  coeff_b->Draw("ap");
+
+  TString filename = Tsummary->GetName();
+  Tsummary->SaveAs(filename+".pdf");
+  Tsummary->Close();
+  system("mv "+filename+".pdf ./" + folder + "/latex/pictures");
+
+  peaks_file.close();
+  calib_file.close();
+  dispersion_file.close();
+
+  LatexSummaryTelescope();
+  delete Tsummary   ;
+  delete sigma_fit  ;
+  delete Dispersion ;
+
+  Buffer->Close();   
+}
+
+/////////////////////////////////
+Double_t Pedestals(TH1F *hist)
+{
+
+  if(Pedestals_Aligned)
+    return 8192 ;
+
+  else
+  {
+    TF1 *gauss=new TF1("gauss","gaus",0,1024);
+
+    hist->SetAxisRange(7800,8500);
+
+    ///// Peak search /////
+    TSpectrum *s = new TSpectrum(2,1);
+    Int_t nfound =0;
+    nfound = s->Search(hist,2," ");
+
+    /* Float_t *xpeaks = s->GetPositionX(); */
+    Double_t *xpeaks = s->GetPositionX();
+
+    Float_t linf =0, lsup =0; 
+    Double_t sum=0, mean=0, sigma=0;
+
+    if(nfound != 1 ) 
+      cout << "########   PROBLEM Nfound != NAsked !  ########   " << hist->GetName() <<"  Nfound:"<<nfound<<endl;
+
+    else {
+      linf = xpeaks[0]-10;
+      lsup = xpeaks[0]+10; 
+      gauss=new TF1("gauss","gaus",linf,lsup); 
+      gauss->SetRange(linf,lsup);
+      hist->Fit(gauss,"RQ");
+
+      sum = gauss->GetParameter(0);
+      mean = gauss->GetParameter(1);
+      sigma = gauss->GetParameter(2);
+
+      if(sigma > 3)
+        BadStrip[CurrentStrip] += " Alpha peak too large;" ;
+
+    }
+
+    delete s; delete gauss;
+    return (mean) ;
+  }
+
+
+}
+
+/////////////////////////////////
+void Alpha(TH1F *hist, TString xy, Double_t Pedestal)
+{
+
+  if(xy == "X") 		hist->GetXaxis()->SetRangeUser(Xmin,Xmax);
+//  if(xy == "X") 		hist->GetXaxis()->SetRangeUser(8300,10000);
+  else if(xy == "Y") 	hist->GetXaxis()->SetRangeUser(Ymin,Ymax);
+
+  if(!Finder(hist, xy, mean, sigma )) cout << "On "<< hist->GetName() << endl ;
+
+  // Fit 
+  TGraphErrors* gr_MM= new TGraphErrors(4);
+
+  if(method == "ZeroForce")
+  {
+    a = Calib_ZeroForceMethod((string)xy,gr_MM,Pedestal, mean,sigma);
+    b = -Pedestal*a ;
+  }
+
+  else if(method == "ZeroExtrapolation")
+  {
+    Calib_ZeroExtrapolationMethod(hist,(string)xy,gr_MM,Pedestal, mean, sigma,a,b);
+  }
+
+}
+
+/////////////////////////////////
+bool Finder(TH1F *h, TString xy, Double_t *mean, Double_t *sigma)
+{
+
+  /////////////////////////////////////////////////
+  //						                                 //
+  //	           ALPHA  FINDER		               //
+  //						                                 //
+  /////////////////////////////////////////////////
+
+  for(int k=0; k<3; k++)
+  {
+    mean[k]=0;
+    sigma[k]=0;
+  }
+
+  Double_t resolsig = 5;
+  Float_t resolsigTSpec = 1;
+  Double_t seuil = 0.05;
+  Int_t npeaks = 3;   // maximum number of peaks that can be found
+
+  //////// Peak finder
+
+  TSpectrum *s = new TSpectrum(npeaks,resolsigTSpec);
+
+  Int_t nfound = s->Search(h, resolsig, "new", seuil);
+  Double_t *xpeaks = s->GetPositionX();
+ 
+  //for(int i=0; i< nfound; i++)
+    //cout << xpeaks[i] << endl;
+
+  //Sort in growing order the array
+  if(nfound>1)
+  {
+    for(Int_t p=0;p<nfound;p++)
+    {
+      for(Int_t i=0;i<nfound-1;i++)
+      {
+        if(xpeaks[i]>xpeaks[i+1])
+        {
+          Float_t varia=xpeaks[i];
+          xpeaks[i]=xpeaks[i+1];
+          xpeaks[i+1]=varia;
+        }	  
+      }
+    }
+  }
+
+  Float_t linf=0, lsup=0; 
+
+  // If 3 peaks found
+  if(nfound == 3)
+  {
+    for (Int_t p=0;p<nfound;p++)
+    {   
+      if(xy == "X")
+      {			
+        linf = xpeaks[p]-2;
+        lsup = xpeaks[p]+8;
+      }
+
+      else if (xy == "Y")
+      {			
+        linf = xpeaks[p]-8;
+        lsup = xpeaks[p]+2;
+      }
+
+      TF1 *gauss = new TF1("gauss","gaus",linf,lsup);
+      h->Fit(gauss,"RQ");
+      mean[p] = gauss->GetParameter(1);
+      sigma[p]= gauss->GetParameter(2);
+      //cout << mean[p] << endl;
+
+      sigma_fit->Fill(gauss->GetParameter(2));
+    }
+  }
+
+  if(nfound!=3)
+  {
+    ostringstream numP;
+    numP << nfound ;
+    cout << nfound << "peaks found!" << endl;
+    BadStrip[CurrentStrip] += " " + numP.str() + " peak(s) found;" ;
+
+    for (Int_t p=0;p<3;p++)
+    {
+      cout << "attention, nombre de pics different de 3!!!" ;
+      mean[p]=-1;
+      sigma[p]=-1;
+      return false ;
+    }
+  }
+
+  return true ;
+}
+
+
+/////////////////////////////////
+Double_t Calib_ZeroForceMethod(string xy,TGraphErrors *gr,float Pedestal, Double_t *mean, Double_t *sigma)
+{  
+  Double_t energy[3];
+  Double_t errors[3];
+
+  if(xy=="X")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyX[i];
+      errors[i] = errorsX[i];
+    }
+
+  if(xy=="Y")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyY[i];
+      errors[i] = errorsY[i];
+    }
+
+  gr->SetPoint(0,Pedestal,energy[0]);
+
+  for (Int_t p = 0; p < 3; p++) {
+    gr->SetPoint(p, mean[p], energy[p]);
+    gr->SetPointError(p, sigma[p], errors[p]);    
+  }
+
+  TF1 *f1 = new TF1("f1",Form("[0]*(x-%f)",Pedestal));
+  gr->Fit("f1", "Q" );
+
+  a = f1 -> GetParameter(0);
+
+  if (xy == "X"){
+    calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+
+  else if (xy == "Y"){
+    calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+  delete f1;
+  return a ;
+}
+
+/////////////////////////////////
+Double_t Calib_ZeroExtrapolationMethod(TH1F* hist , string xy,TGraphErrors *gr, float Pedestal, Double_t* mean, Double_t* sigma, Double_t &a , Double_t &b)
+{  
+  Double_t energy[3];
+  Double_t errors[3];
+
+  if(xy=="X")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyX[i];
+      errors[i] = errorsX[i];
+    }
+
+  if(xy=="Y")
+    for(int i = 0 ; i < 3 ; i ++)
+    {
+      energy[i] = energyY[i];
+      errors[i] = errorsY[i];
+    }
+
+  for (Int_t p = 0; p < 3; p++) {
+    gr->SetPoint(p, mean[p], energy[p]);
+    gr->SetPointError(p, sigma[p], errors[p]);    
+  }
+
+  TF1 *f1 = new TF1("f1","[1]+[0]*x");
+  gr->Fit("f1", "Q" );
+
+  a = f1 -> GetParameter(0);
+  b = f1 -> GetParameter(1);
+
+  if(RefitWithSatellite)
+  {
+    Find_Satellites(hist);
+
+    for (Int_t p = 0; p < 3; p++) 
+    {
+      gr->SetPoint(p, mean[p], energy[p]);
+      gr->SetPointError(p, sigma[p], a*sigma[p]);    
+    }
+
+    gr->Fit("f1", "Q" );
+
+    a = f1 -> GetParameter(0);
+    b = f1 -> GetParameter(1);
+  }
+  std::cout << "/////////////// " << energy[0] << "  " << mean[0] << std::endl;
+
+
+  if( (a < 0.009 &&  a > 0.006) || (a > -0.009 &&  a < -0.006) )  
+    coeff_a->SetPoint(CurrentStrip,CurrentStrip,a);
+
+  if( (b < -54 && b > -72) || (b > 54 && b < 72) )
+    coeff_b->SetPoint(CurrentStrip,CurrentStrip,b);
+
+  // look at the dispersion around Pedestals
+  Double_t dispersion = Pedestal + b/a ;
+  dispersion_file  << "MUSETT_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_E_Zero_Dispersion " << dispersion << endl ;
+
+  // Condition avoid Mean problem due to a few large value
+  if(dispersion<40 && dispersion>-40 )
+    ZeroDispersion->SetPoint(CurrentStrip,CurrentStrip,dispersion);
+
+  Dispersion->Fill(dispersion);
+
+  if(dispersion > 30 || dispersion < -30)
+  {
+    ostringstream disp;
+    disp << dispersion ;
+    BadStrip[CurrentStrip] += " zero extrapolation too high:" + disp.str() +"channels; ";
+  }
+
+
+  if (xy == "X"){
+    calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+
+  else if (xy == "Y"){
+    calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_E " << b << " " << a  << endl ;
+  }
+  delete f1;
+  return a ;
+
+}
+
+/////////////////////////////////////////
+void LatexSummaryHeader(TString xy)
+{
+
+  latex_file.open(folder+"/latex/"+main_name+".tex");
+
+  ///// Write File Header
+
+  latex_file << "\\documentclass[a4paper,6pt]{article}" << endl ;
+  latex_file << "\\usepackage[french]{babel}" << endl ;
+  latex_file << "\\usepackage[T1]{fontenc}" << endl ;
+  latex_file << "\\usepackage{graphicx}" << endl ;
+  latex_file << "\\usepackage{fullpage}" << endl ;
+  latex_file << "\\topmargin = 0pt" << endl ;
+  latex_file << "\\headsep = 0pt" << endl ;
+
+  // Start Document
+  latex_file << "\\begin{document}" << endl ;
+  latex_file << "\\title{MUSETT DSSD Energy Calibration Report}" << endl ;
+
+  latex_file << "\\date{}" << endl ;
+  latex_file << "\\maketitle" << endl ;
+
+  // Write Report header
+  latex_file << "\\section{Calibration Summary}" << endl ;
+  latex_file << "\\begin{itemize}" << endl ;
+  latex_file << "\t \\item[{\\bf Experiment:}] "<< Experiment << endl ;
+  latex_file << "\t \\item[{\\bf Operator:}] "<< Operator << endl ;
+  latex_file << "\t \\item[{\\bf App. Date:}] "<< Run_Period << endl ;
+  latex_file << "\t \\item[{\\bf Source:}] "<< Source << endl ;
+  latex_file << "\t \\item[{\\bf Dead Layer:}] "<< "Al "<< AlThickness/micrometer << "$\\mu$m + Si " << SiThickness/micrometer << "$\\mu$m" << endl ;
+  latex_file << "\t \\item[{\\bf Comment:}] "<< Comment << endl ;
+  latex_file << "\t \\item[] "<< endl ;
+  latex_file << "\t \\item[{\\bf Calibration Method:}] "<< " " << method << " "<< endl ;
+  latex_file << "\t \\item[{\\bf Telescope Treated:}] "<<  " " << Telescope_Number << endl ;
+  latex_file << "\t \\item[{\\bf Strip Treated:}] "<<  " " << Strip_Start << " to "<< Strip_End << " " << endl ;
+  latex_file << "\t \\item[{\\bf DSSD Side:}] "<< " " <<  xy << endl ;
+
+  latex_file << "\\end{itemize}" << endl ;
+
+  latex_file << "\\begin{itemize}" << endl ;
+  latex_file << "\t \\item[] "<< endl ;
+  latex_file << "\t \\item[] "<< endl ;
+  latex_file << "\\end{itemize}" << endl ;
+
+  latex_file << "{\\bf Source Description:} " << endl ;
+  latex_file << "\\begin{center}"<<endl ;
+  latex_file << "\\begin{tabular}{ | c | c | c | } "<<endl ;
+  latex_file << "\\hline "<<endl ;
+  latex_file << "Isotope & Original Energy (MeV) & Branching Ratio \\\\ \\hline " << endl ;
+
+  for(int hh = 0 ; hh < Source_Number_Peak ; hh++)
+  {
+    latex_file << Source_isotope[hh] << " & " << Source_E[hh] << " & " << Source_branching_ratio[hh] << " \\\\ \\hline" << endl;
+  }
+
+  latex_file << "\\end{tabular} "<<endl ;
+  latex_file << "\\end{center}"<<endl ;
+
+  latex_file <<"\\pagebreak"<<endl ;
+}
+
+///
+void LatexSummaryEnder()
+{
+  latex_file << endl <<  "\\end{document}" << endl ;
+  latex_file.close();
+  // generate the pdf file and clean-up
+  system("pdflatex "+folder+"/latex/"+main_name+".tex");
+  system("rm -f *.log");
+  system("rm -f *.aux");
+  system("mv " + main_name+".pdf "+folder  );
+}
+
+///
+void LatexSummaryTelescope()
+{
+  /// Write main summary
+  latex_file << "\\section{Telescope "<< CurrentTelescope << " }"<<endl ;
+  /// List symptomatic strips and reason
+
+  if(BadStrip.size()>0)
+  {
+    latex_file << " Bad Strip:" << endl ;
+    latex_file << "\\begin{center}"<<endl ;
+    latex_file << "\\begin{tabular}{ | c | c | } "<<endl ;
+    latex_file << "\\hline "<<endl ;
+    latex_file << " Strip Number & Problem \\\\ \\hline "<<endl ;
+    map<int,string>::iterator it ;
+    for(it = BadStrip.begin() ; it!=BadStrip.end() ; it++)
+    {
+      latex_file << it->first << " & " << it->second <<  " \\\\ \\hline "<<endl ;
+    }
+
+    latex_file << "\\end{tabular} "<<endl ;
+    latex_file << "\\end{center}"<<endl ;
+  }
+
+  else
+    latex_file << "Bad Strip : All Strip are ok."<<endl ;
+
+  // Add the Graph
+  TString filename = Tsummary->GetName();
+  TString path = folder+"/latex/pictures/"+filename+".pdf";
+
+  latex_file <<"\\begin{figure}[htcb!]"<<endl ;
+  latex_file <<"\\begin{center}"<<endl ;
+  latex_file <<"\\includegraphics[width=0.7\\textwidth]{"+path +"}"<<endl ;
+  latex_file <<"\\end{center}"<<endl ;
+  latex_file <<"\\end{figure}"<<endl ;
+
+  latex_file <<"\\pagebreak"<<endl ;
+
+  latex_file << "Sigma fit centroid: " << sigma_fit_centroid << endl << endl;
+  latex_file << "Sigma fit sigma: " << sigma_fit_sigma << endl;
+
+  /// add summary graph and image
+
+}
+
+
+//////// Satellite finder and description of the Peak+Sattelite look-a-like function
+void Find_Satellites(TH1F *h)
+{
+
+  if(mean[0]==0 && mean[1]==0 && mean[2]==0) { cout << "pas de pics ---> pas de satellites!" << endl;}
+
+  else {
+
+    Float_t linf1 =0 , lsup1 =0, linf2 =0 , lsup2 =0 , linf3 =0 , lsup3=0;
+
+    if(a>0) { // ie Y case
+      linf1 = mean[0]-15; lsup1 = mean[0]+10;
+      linf2 = mean[1]-15; lsup2 = mean[1]+10;
+      linf3 = mean[2]-15; lsup3 = mean[2]+10;
+    }
+
+    else { // ie X case 
+      lsup1 = mean[0]+15; linf1 = mean[0]-10;
+      lsup2 = mean[1]+15; linf2 = mean[1]-10;
+      lsup3 = mean[2]+15; linf3 = mean[2]-10;
+    }
+
+    Double_t keVtoMeV = 1./1000. ;
+
+    TF1 *Pu = new TF1("fit_sat_Pu", source_Pu, linf1, lsup1, 6);
+    Pu->SetParameters(150,mean[0],mean[0]-12.4*keVtoMeV/a,mean[0]-51.6*keVtoMeV/a,sigma[0]);
+    Pu->SetParLimits(2,mean[0]-12.4*keVtoMeV/a-10,mean[0]-12.6*keVtoMeV/a+10);
+    Pu->SetParLimits(3,mean[0]-51.6*keVtoMeV/a-10,mean[0]-51.6*keVtoMeV/a+10);
+    Pu->SetParNames("Constant","Mean_value1","Mean_value2","Mean_value3","SigmaPu");
+    h->Fit("fit_sat_Pu", "RQ");
+
+    TF1 *Am = new TF1("fit_sat_Am", source_Am, linf2, lsup2, 6);
+    Am->SetParameters(150,mean[1],mean[1]-43.2*keVtoMeV/a,mean[1]-98.4*keVtoMeV/a,sigma[1]);
+    Am->SetParLimits(2,mean[1]-43.2*keVtoMeV/a-10,mean[1]-43.2*keVtoMeV/a+10);
+    Am->SetParLimits(3,mean[1]-98.4*keVtoMeV/a-10,mean[1]-98.4*keVtoMeV/a+10);
+    Am->SetParNames("Constant","Mean_value1","Mean_value2","Mean_value3","SigmaAm");
+    h->Fit("fit_sat_Am", "RQ+");
+
+
+    TF1 *Cm = new TF1("fit_sat_Cm", source_Cm, linf3, lsup3, 6);
+    Cm->SetParameters(150,mean[2],mean[2]-43.1*keVtoMeV/a,sigma[2]);
+    Cm->SetParLimits(2,mean[2]-43.1*keVtoMeV/a-10,mean[0]-43.1*keVtoMeV/a-10);
+    Cm->SetParNames("Constant","Mean_value1","Mean_value2","SigmaCm");
+    h->Fit("fit_sat_Cm", "RQ+");
+
+    mean[0]=Pu->GetParameter(1);  // Position of the 1st principal peak
+    sigma[0]=Pu->GetParameter(4); // Sigma of the 1st principal peak
+    sigma_fit->Fill(sigma[0]) ;
+    error_par[0]= Pu->GetParError(1);
+    mean[1]=Am->GetParameter(1);
+    sigma[1]=Am->GetParameter(4);
+    sigma_fit->Fill(sigma[1]) ;
+    error_par[1]= Am->GetParError(1);
+    mean[2]=Cm->GetParameter(1);
+    sigma[2]=Cm->GetParameter(3);
+    sigma_fit->Fill(sigma[2]) ;
+    error_par[2]= Cm->GetParError(1);
+  }
+
+}
+
+///////////////////////////////////////////////
+Double_t source_Pu(Double_t *x, Double_t *par)
+{
+  // [0] : constant
+  // [1] : position peak1
+  // [2] : position peak2
+  // [3] : position peak3
+  // [4] : sigma
+
+  Double_t arg1 = 0;
+  Double_t arg2 = 0;
+  Double_t arg3 = 0;
+
+  if(par[4]!=0) { 
+    arg1 = (x[0]-par[1])/par[4];
+    arg2 = (x[0]-par[2])/par[4];
+    arg3 = (x[0]-par[3])/par[4];
+  }
+
+  else cout << " Attention, sigma est nul !" << endl;
+
+  Double_t gaus1 =           par[0]*exp(-0.5*arg1*arg1);
+  Double_t gaus2 = 15.1/73.8*par[0]*exp(-0.5*arg2*arg2);
+  Double_t gaus3 = 11.5/73.8*par[0]*exp(-0.5*arg3*arg3);
+  Double_t fitval = gaus1+gaus2+gaus3;
+
+  return fitval;
+}
+
+///////////////////////////////////////////////
+Double_t source_Am(Double_t *x, Double_t *par)
+{
+  // [0] : constant
+  // [1] : position peak1
+  // [2] : position peak2
+  // [3] : position peak3
+  // [4] : sigma
+
+  Double_t arg1 = 0;
+  Double_t arg2 = 0;
+  Double_t arg3 = 0;
+
+  if(par[4]!=0) { 
+    arg1 = (x[0]-par[1])/par[4];
+    arg2 = (x[0]-par[2])/par[4];
+    arg3 = (x[0]-par[3])/par[4];
+  }
+
+  else cout << " Attention, sigma est nul !" << endl;
+
+  Double_t gaus1 =           par[0]*exp(-0.5*arg1*arg1);
+  Double_t gaus2 = 13.0/84.5*par[0]*exp(-0.5*arg2*arg2);
+  Double_t gaus3 = 1.6/84.5 *par[0]*exp(-0.5*arg3*arg3);
+  Double_t fitval= gaus1+gaus2+gaus3;
+
+  return fitval;
+}
+
+///////////////////////////////////////////////
+Double_t source_Cm(Double_t *x, Double_t *par)
+{
+  // [0] : constante
+  // [1] : position peak1
+  // [2] : position peak2
+  // [3] : sigma
+
+  Double_t arg1 = 0;
+  Double_t arg2 = 0;
+
+  if(par[3]!=0) { 
+    arg1 = (x[0]-par[1])/par[3];
+    arg2 = (x[0]-par[2])/par[3];
+  }
+
+  else cout << " Attention, sigma est nul !" << endl;
+
+  Double_t gaus1 =           par[0]*exp(-0.5*arg1*arg1);
+  Double_t gaus2 = 23.6/76.4*par[0]*exp(-0.5*arg2*arg2);
+  Double_t fitval= gaus1+gaus2; 
+
+  return fitval;
+}  
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator.h b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator.h
new file mode 100644
index 0000000000000000000000000000000000000000..9a14ef624c44f1e4b32b7b2a25b3a1ca7fb12147
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator.h
@@ -0,0 +1,134 @@
+// STL
+#include<stdlib.h>
+#include<stdio.h>
+#include <time.h>
+#include <iostream>
+#include <fstream>
+#include <sstream>
+#include <map>
+
+// Root
+#include "TString.h"
+#include "TSpectrum.h"
+#include "TGraphErrors.h"
+#include "TGraph.h"
+#include "TCanvas.h"
+#include "TFile.h"
+#include "TTree.h"
+#include "TH1F.h"
+#include "TF1.h"
+#include "TStyle.h"
+#include "TLine.h"
+
+//NPTool
+#include "NPEnergyLoss.h"
+#include "NPSystemOfUnits.h"
+
+
+using namespace NPUNITS;
+using namespace NPL;
+
+/// DEFINING GLOBAL VARIABLE
+
+double mean_extrapolation=100;
+
+/// Parameter used in the macro
+// Micrometer
+Double_t AlThickness;
+Double_t SiThickness;
+Double_t CThickness;
+EnergyLoss EL_Al("./EnergyLossTable/alpha_Al.G4table" , "G4Table", 100) ;
+EnergyLoss EL_Si("./EnergyLossTable/alpha_Si.G4table" , "G4Table", 100) ;
+EnergyLoss EL_C("./EnergyLossTable/alpha_C.G4table" , "G4Table", 100) ;
+// Information about the calibration condition (use Latex marks-up)
+
+const TString xy                  = "Y";
+const TString Experiment          = "double_alpha";
+const TString Run_Period          = "21/06/2023"; 
+const TString Operator            = "Hugo";
+const TString Source              = "3 alpha peaks $^{222}$Ra, $^{218}$Rn, $^{214}$Po";
+const TString Comment             = "MUSETT";
+const char* frun = "run_0274";
+
+
+
+
+int Telescope_Number=0;
+const int Strip_Start=0;
+const int Strip_End=127;
+
+const int Xmin = 8700;
+const int Xmax = 9500;
+
+const int Ymin = 6800;
+const int Ymax = 8000;
+
+// choosing a method for the fit
+const TString method = "ZeroExtrapolation" ;
+//const TString method = "ZeroForce";
+const bool RefitWithSatellite = false;
+const bool Pedestals_Aligned = true;   
+Int_t CurrentTelescope = 0;
+Int_t CurrentStrip     = 0;
+TString folder;
+TString main_name;
+TCanvas* Tsummary;
+TCanvas* Buffer;
+double sigma_fit_centroid = 0.;
+double sigma_fit_sigma = 0.;
+
+map<int,string> BadStrip;
+
+// Defining the array used after (order needs to be diffent for X and Y )
+Int_t NumberOfIsotope;
+
+// Source original value
+Int_t Source_Number_Peak;
+TString*  Source_isotope;
+Double_t* Source_branching_ratio;
+Double_t* Source_E;
+Double_t* Source_Sig;
+
+// Source corrected value
+Double_t* energyX;
+Double_t* errorsX;
+Double_t* energyY;
+Double_t* errorsY;
+
+// Calibration Coefficient
+Double_t a ;
+Double_t b ;
+
+Double_t* mean      = new Double_t[3]; 
+Double_t* sigma     = new Double_t[3];
+Double_t* error_par = new Double_t[3];
+
+TGraph* ZeroDispersion ;
+ofstream peaks_file, calib_file, dispersion_file , calib_online_file, latex_file;; 
+
+TH1F* sigma_fit  ;
+TH1F* Dispersion ;
+TGraph* coeff_a ;
+TGraph* coeff_b ;
+
+TFile *inFile;
+
+/// Function Header
+void AutoCalibration(int first_telescope ,int last_telescope, std::string fDet);
+void EnergyCalibrator();
+Double_t Pedestals(TH1F *);
+void Alpha(TH1F*, TString, Double_t);
+bool Finder(TH1F*, TString , Double_t*, Double_t*);
+Double_t Calib_ZeroForceMethod(string ,TGraphErrors*,float, Double_t*, Double_t*);
+Double_t Calib_ZeroExtrapolationMethod(TH1F* hist ,string ,TGraphErrors*,float, Double_t*, Double_t*, Double_t &a , Double_t &b);
+void LatexSummaryHeader(TString xy);
+void LatexSummaryEnder();
+void LatexSummaryTelescope();
+void DefineSource(TString sourceName="3 alphas");
+
+
+void Find_Satellites(TH1F *h);
+Double_t source_Pu(Double_t *x, Double_t *par);
+Double_t source_Am(Double_t *x, Double_t *par);
+Double_t source_Cm(Double_t *x, Double_t *par);
+
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator_C.d b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..998cb85a8698d6155c17e737757ae896dd57f834
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyCalibrator_C.d
@@ -0,0 +1,110 @@
+
+# DO NOT DELETE
+
+./EnergyCalibrator_C.so: EnergyCalibrator.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSpectrum.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraphErrors.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraph.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCanvas.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TPad.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualPad.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttPad.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/GuiTypes.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Buttons.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttBBox2D.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttCanvas.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFormula.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/Types.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMethodCall.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1AbsComposition.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMath.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TError.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/ParamFunctor.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStyle.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttText.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TColor.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TLine.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPEnergyLoss.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSpline.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPGlobalSystemOfUnits.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPPhysicalConstants.h
+./EnergyCalibrator_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPSystemOfUnits.h
+./EnergyCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+EnergyCalibrator_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_Al.G4table b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_Al.G4table
new file mode 100644
index 0000000000000000000000000000000000000000..e709021f7318e8035a1b958d1a4a4746ddd0822d
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_Al.G4table
@@ -0,0 +1,10002 @@
+Table from Geant4 generate using NPSimulation 	Particle: alpha	Material: Aluminium
+0	0
+0.12	0.263296
+0.24	0.321639
+0.36	0.343225
+0.48	0.35083
+0.6	0.351191
+0.72	0.347455
+0.84	0.341367
+0.96	0.334008
+1.08	0.32598
+1.2	0.317694
+1.32	0.30938
+1.44	0.301191
+1.56	0.293217
+1.68	0.285509
+1.8	0.278096
+1.92	0.270987
+2.04	0.264181
+2.16	0.257675
+2.28	0.251464
+2.4	0.245534
+2.52	0.239869
+2.64	0.234458
+2.76	0.229288
+2.88	0.224347
+3	0.219621
+3.12	0.215096
+3.24	0.210762
+3.36	0.206608
+3.48	0.202622
+3.6	0.198797
+3.72	0.195121
+3.84	0.191588
+3.96	0.18819
+4.08	0.184918
+4.2	0.181769
+4.32	0.178734
+4.44	0.175806
+4.56	0.172981
+4.68	0.170252
+4.8	0.167615
+4.92	0.165066
+5.04	0.1626
+5.16	0.160215
+5.28	0.157903
+5.4	0.155662
+5.52	0.15349
+5.64	0.151385
+5.76	0.149342
+5.88	0.147358
+6	0.145432
+6.12	0.14356
+6.24	0.14174
+6.36	0.13997
+6.48	0.138249
+6.6	0.136573
+6.72	0.134941
+6.84	0.133351
+6.96	0.131802
+7.08	0.130293
+7.2	0.12882
+7.32	0.127384
+7.44	0.125983
+7.56	0.124615
+7.68	0.12328
+7.8	0.121976
+7.92	0.120701
+8.04	0.119219
+8.16	0.117982
+8.28	0.116771
+8.4	0.115586
+8.52	0.114426
+8.64	0.11329
+8.76	0.112177
+8.88	0.111086
+9	0.110018
+9.12	0.108971
+9.24	0.107944
+9.36	0.106938
+9.48	0.106318
+9.6	0.105349
+9.72	0.104294
+9.84	0.103368
+9.96	0.10246
+10.08	0.101568
+10.2	0.100698
+10.32	0.0998523
+10.44	0.0990212
+10.56	0.0982045
+10.68	0.0974016
+10.8	0.0966124
+10.92	0.0958364
+11.04	0.0953229
+11.16	0.0945601
+11.28	0.0937563
+11.4	0.0930218
+11.52	0.0922994
+11.64	0.0915887
+11.76	0.0910948
+11.88	0.0904129
+12	0.0897418
+12.12	0.0890813
+12.24	0.0884311
+12.36	0.087791
+12.48	0.0871608
+12.6	0.0865384
+12.72	0.0859271
+12.84	0.0853251
+12.96	0.0846983
+13.08	0.0841171
+13.2	0.0835445
+13.32	0.0831803
+13.44	0.082624
+13.56	0.0820757
+13.68	0.0815354
+13.8	0.0810029
+13.92	0.0804779
+14.04	0.0799603
+14.16	0.0794499
+14.28	0.0789467
+14.4	0.0784503
+14.52	0.0779608
+14.64	0.077478
+14.76	0.0770016
+14.88	0.0765317
+15	0.076068
+15.12	0.0756105
+15.24	0.075159
+15.36	0.0747134
+15.48	0.0742736
+15.6	0.0738394
+15.72	0.0736242
+15.84	0.0732002
+15.96	0.0727806
+16.08	0.072365
+16.2	0.071949
+16.32	0.0715452
+16.44	0.0711466
+16.56	0.0707529
+16.68	0.0703642
+16.8	0.0699802
+16.92	0.0696009
+17.04	0.0692261
+17.16	0.0688559
+17.28	0.0684902
+17.4	0.0681287
+17.52	0.0677716
+17.64	0.0674186
+17.76	0.0670698
+17.88	0.066725
+18	0.0663841
+18.12	0.0660472
+18.24	0.0657141
+18.36	0.0653848
+18.48	0.0650591
+18.6	0.0647371
+18.72	0.0644187
+18.84	0.0641038
+18.96	0.0637924
+19.08	0.0634843
+19.2	0.0631796
+19.32	0.0628782
+19.44	0.0625931
+19.56	0.0622985
+19.68	0.0620071
+19.8	0.0617188
+19.92	0.0614334
+20.04	0.0611511
+20.16	0.0608716
+20.28	0.0605951
+20.4	0.0603214
+20.52	0.0600504
+20.64	0.0597822
+20.76	0.0595167
+20.88	0.0592539
+21	0.0589936
+21.12	0.058736
+21.24	0.0584809
+21.36	0.0582283
+21.48	0.0579781
+21.6	0.0577304
+21.72	0.0574851
+21.84	0.0572421
+21.96	0.0570015
+22.08	0.0567632
+22.2	0.0565271
+22.32	0.0562933
+22.44	0.0560617
+22.56	0.0558322
+22.68	0.055618
+22.8	0.0553926
+22.92	0.0551694
+23.04	0.0549482
+23.16	0.0547289
+23.28	0.0545117
+23.4	0.0542964
+23.52	0.054083
+23.64	0.0540172
+23.76	0.0538059
+23.88	0.0535964
+24	0.0533888
+24.12	0.053183
+24.24	0.052979
+24.36	0.0527942
+24.48	0.0525939
+24.6	0.0523953
+24.72	0.0521983
+24.84	0.0520031
+24.96	0.0518095
+25.08	0.0516175
+25.2	0.0514271
+25.32	0.0512383
+25.44	0.0510511
+25.56	0.0508654
+25.68	0.0506812
+25.8	0.0504985
+25.92	0.0503174
+26.04	0.0501377
+26.16	0.0499594
+26.28	0.0497826
+26.4	0.0496071
+26.52	0.0494331
+26.64	0.0492605
+26.76	0.0490892
+26.88	0.0489193
+27	0.0487507
+27.12	0.0485834
+27.24	0.0484174
+27.36	0.0482527
+27.48	0.0480893
+27.6	0.047949
+27.72	0.0477881
+27.84	0.0476283
+27.96	0.0474698
+28.08	0.0473124
+28.2	0.0471562
+28.32	0.0470012
+28.44	0.0468475
+28.56	0.0466953
+28.68	0.0465443
+28.8	0.0463944
+28.92	0.0462455
+29.04	0.0460978
+29.16	0.045951
+29.28	0.0458054
+29.4	0.0456607
+29.52	0.0455171
+29.64	0.0453746
+29.76	0.045233
+29.88	0.0450924
+30	0.0449528
+30.12	0.0448141
+30.24	0.0446765
+30.36	0.0445397
+30.48	0.0444039
+30.6	0.0442691
+30.72	0.0441352
+30.84	0.0440021
+30.96	0.04387
+31.08	0.0437388
+31.2	0.0436085
+31.32	0.043479
+31.44	0.0433504
+31.56	0.0432226
+31.68	0.0430957
+31.8	0.0429697
+31.92	0.0428444
+32.04	0.04272
+32.16	0.0425964
+32.28	0.0424736
+32.4	0.0423516
+32.52	0.0422824
+32.64	0.0421619
+32.76	0.0420422
+32.88	0.0419232
+33	0.041805
+33.12	0.0416875
+33.24	0.0415708
+33.36	0.0414548
+33.48	0.0413396
+33.6	0.041225
+33.72	0.0411112
+33.84	0.0409981
+33.96	0.0408857
+34.08	0.040774
+34.2	0.040663
+34.32	0.0405526
+34.44	0.0404429
+34.56	0.0403339
+34.68	0.0402256
+34.8	0.0401179
+34.92	0.0400109
+35.04	0.0399045
+35.16	0.0397987
+35.28	0.0396936
+35.4	0.0395891
+35.52	0.0394852
+35.64	0.039382
+35.76	0.0392793
+35.88	0.0391773
+36	0.0390758
+36.12	0.038975
+36.24	0.0388747
+36.36	0.038775
+36.48	0.0386759
+36.6	0.0385773
+36.72	0.0384794
+36.84	0.038382
+36.96	0.0382851
+37.08	0.0381888
+37.2	0.038093
+37.32	0.0379978
+37.44	0.0379031
+37.56	0.037809
+37.68	0.0377153
+37.8	0.0376222
+37.92	0.0375297
+38.04	0.0374376
+38.16	0.037346
+38.28	0.037255
+38.4	0.0371644
+38.52	0.0370744
+38.64	0.0369848
+38.76	0.0368957
+38.88	0.0368071
+39	0.036719
+39.12	0.0366314
+39.24	0.0365442
+39.36	0.0364575
+39.48	0.0363713
+39.6	0.0362137
+39.72	0.0361264
+39.84	0.0360395
+39.96	0.0359532
+40.08	0.0358672
+40.2	0.0357818
+40.32	0.0356968
+40.44	0.0356122
+40.56	0.0355281
+40.68	0.0354444
+40.8	0.0353611
+40.92	0.0352783
+41.04	0.0351959
+41.16	0.035114
+41.28	0.0350325
+41.4	0.0349514
+41.52	0.0348707
+41.64	0.0347905
+41.76	0.0347106
+41.88	0.0346311
+42	0.0345521
+42.12	0.0344734
+42.24	0.0343952
+42.36	0.0343173
+42.48	0.0342398
+42.6	0.0341627
+42.72	0.034086
+42.84	0.0340097
+42.96	0.0339337
+43.08	0.0338582
+43.2	0.033783
+43.32	0.0337081
+43.44	0.0336337
+43.56	0.0335595
+43.68	0.0334858
+43.8	0.0334124
+43.92	0.0333394
+44.04	0.0332667
+44.16	0.0331944
+44.28	0.0331224
+44.4	0.0330507
+44.52	0.0329794
+44.64	0.0329085
+44.76	0.0328378
+44.88	0.0327676
+45	0.0326976
+45.12	0.032628
+45.24	0.0325587
+45.36	0.0324897
+45.48	0.032421
+45.6	0.0323527
+45.72	0.0322847
+45.84	0.032217
+45.96	0.0321496
+46.08	0.0320825
+46.2	0.0320158
+46.32	0.0319493
+46.44	0.0318831
+46.56	0.0318173
+46.68	0.0317517
+46.8	0.0316865
+46.92	0.0316215
+47.04	0.0315568
+47.16	0.0314925
+47.28	0.0314284
+47.4	0.0313646
+47.52	0.0313011
+47.64	0.0312378
+47.76	0.0311749
+47.88	0.0311122
+48	0.0310498
+48.12	0.0309877
+48.24	0.0309259
+48.36	0.0308643
+48.48	0.030803
+48.6	0.030742
+48.72	0.0306812
+48.84	0.0306207
+48.96	0.0305605
+49.08	0.0305519
+49.2	0.0304919
+49.32	0.0304322
+49.44	0.0303728
+49.56	0.0303136
+49.68	0.0302547
+49.8	0.030196
+49.92	0.0301375
+50.04	0.0300794
+50.16	0.0300214
+50.28	0.0299637
+50.4	0.0299063
+50.52	0.0298491
+50.64	0.0297921
+50.76	0.0297354
+50.88	0.0296789
+51	0.0296227
+51.12	0.0295666
+51.24	0.0295108
+51.36	0.0294553
+51.48	0.0294
+51.6	0.0293449
+51.72	0.02929
+51.84	0.0292354
+51.96	0.029181
+52.08	0.0291268
+52.2	0.0290728
+52.32	0.029019
+52.44	0.0289655
+52.56	0.0289122
+52.68	0.0288591
+52.8	0.0288062
+52.92	0.0287535
+53.04	0.028701
+53.16	0.0286488
+53.28	0.0285968
+53.4	0.0285449
+53.52	0.0284933
+53.64	0.0284419
+53.76	0.0283906
+53.88	0.0283396
+54	0.0282888
+54.12	0.0282382
+54.24	0.0281878
+54.36	0.0281376
+54.48	0.0280875
+54.6	0.0280377
+54.72	0.0279881
+54.84	0.0279387
+54.96	0.0278894
+55.08	0.0278404
+55.2	0.0277915
+55.32	0.0277429
+55.44	0.0276944
+55.56	0.0276461
+55.68	0.0275068
+55.8	0.0274626
+55.92	0.0274185
+56.04	0.0273745
+56.16	0.0273308
+56.28	0.0272871
+56.4	0.0272437
+56.52	0.0272003
+56.64	0.0271572
+56.76	0.0271141
+56.88	0.0270712
+57	0.0270285
+57.12	0.0269859
+57.24	0.0269435
+57.36	0.0269012
+57.48	0.026859
+57.6	0.026817
+57.72	0.0267751
+57.84	0.0267334
+57.96	0.0266918
+58.08	0.0266504
+58.2	0.0266091
+58.32	0.0265679
+58.44	0.0265269
+58.56	0.026486
+58.68	0.0264453
+58.8	0.0264046
+58.92	0.0263642
+59.04	0.0263238
+59.16	0.0262836
+59.28	0.0262435
+59.4	0.0262036
+59.52	0.0261638
+59.64	0.0261241
+59.76	0.0260846
+59.88	0.0260451
+60	0.0260059
+60.12	0.0259667
+60.24	0.0259277
+60.36	0.0258888
+60.48	0.02585
+60.6	0.0258114
+60.72	0.0257728
+60.84	0.0257344
+60.96	0.0256962
+61.08	0.025658
+61.2	0.02562
+61.32	0.0255821
+61.44	0.0255443
+61.56	0.0255067
+61.68	0.0254691
+61.8	0.0254317
+61.92	0.0253944
+62.04	0.0253573
+62.16	0.0253202
+62.28	0.0252833
+62.4	0.0252465
+62.52	0.0252098
+62.64	0.0251732
+62.76	0.0251367
+62.88	0.0251004
+63	0.0250641
+63.12	0.025028
+63.24	0.024992
+63.36	0.0249561
+63.48	0.0249203
+63.6	0.0248847
+63.72	0.0248491
+63.84	0.0248137
+63.96	0.0247783
+64.08	0.0247431
+64.2	0.024708
+64.32	0.024673
+64.44	0.0246381
+64.56	0.0246033
+64.68	0.0245686
+64.8	0.0245341
+64.92	0.0244996
+65.04	0.0244653
+65.16	0.024431
+65.28	0.0243969
+65.4	0.0243628
+65.52	0.0243289
+65.64	0.0242951
+65.76	0.0242614
+65.88	0.0242278
+66	0.0241942
+66.12	0.0241608
+66.24	0.0241275
+66.36	0.0240943
+66.48	0.0240612
+66.6	0.0240282
+66.72	0.0239953
+66.84	0.0239625
+66.96	0.0239298
+67.08	0.0238972
+67.2	0.0238646
+67.32	0.0238322
+67.44	0.0237999
+67.56	0.0237677
+67.68	0.0237355
+67.8	0.0237035
+67.92	0.0236716
+68.04	0.0236397
+68.16	0.023608
+68.28	0.0235763
+68.4	0.0235448
+68.52	0.0235133
+68.64	0.0234819
+68.76	0.0234506
+68.88	0.0234195
+69	0.0233884
+69.12	0.0233574
+69.24	0.0233264
+69.36	0.0232956
+69.48	0.0232649
+69.6	0.0232342
+69.72	0.0232037
+69.84	0.0231732
+69.96	0.0231428
+70.08	0.0231125
+70.2	0.0230823
+70.32	0.0230522
+70.44	0.0230222
+70.56	0.0229922
+70.68	0.0229624
+70.8	0.0229326
+70.92	0.0229029
+71.04	0.0228733
+71.16	0.0228438
+71.28	0.0228143
+71.4	0.022785
+71.52	0.0227557
+71.64	0.0227265
+71.76	0.0226974
+71.88	0.0226684
+72	0.0226395
+72.12	0.0226106
+72.24	0.0225818
+72.36	0.0225532
+72.48	0.0225245
+72.6	0.022496
+72.72	0.0224676
+72.84	0.0224392
+72.96	0.0224109
+73.08	0.0223827
+73.2	0.0223545
+73.32	0.0223265
+73.44	0.0222985
+73.56	0.0222706
+73.68	0.0222428
+73.8	0.022215
+73.92	0.0221874
+74.04	0.0221598
+74.16	0.0221323
+74.28	0.0221048
+74.4	0.0220774
+74.52	0.0220502
+74.64	0.0220229
+74.76	0.0219958
+74.88	0.0219687
+75	0.0219417
+75.12	0.0219148
+75.24	0.021888
+75.36	0.0218612
+75.48	0.0218345
+75.6	0.0218079
+75.72	0.0217813
+75.84	0.0217548
+75.96	0.0217284
+76.08	0.0217021
+76.2	0.0216758
+76.32	0.0216496
+76.44	0.0216235
+76.56	0.0215974
+76.68	0.0215714
+76.8	0.0215455
+76.92	0.0215196
+77.04	0.0214939
+77.16	0.0214681
+77.28	0.0214425
+77.4	0.0214169
+77.52	0.0213914
+77.64	0.021366
+77.76	0.0213406
+77.88	0.0213153
+78	0.02129
+78.12	0.0212649
+78.24	0.0212398
+78.36	0.0212147
+78.48	0.0211897
+78.6	0.0211648
+78.72	0.02114
+78.84	0.0211152
+78.96	0.0210905
+79.08	0.0210658
+79.2	0.0210412
+79.32	0.0210167
+79.44	0.0209923
+79.56	0.0209679
+79.68	0.0209435
+79.8	0.0209193
+79.92	0.020895
+80.04	0.0208709
+80.16	0.0208468
+80.28	0.0208228
+80.4	0.0207988
+80.52	0.0207749
+80.64	0.0207511
+80.76	0.0207273
+80.88	0.0207036
+81	0.0206799
+81.12	0.0206563
+81.24	0.0206328
+81.36	0.0206093
+81.48	0.0205859
+81.6	0.0205626
+81.72	0.0205393
+81.84	0.020516
+81.96	0.0204928
+82.08	0.0204697
+82.2	0.0204467
+82.32	0.0204237
+82.44	0.0204007
+82.56	0.0203779
+82.68	0.020355
+82.8	0.0203551
+82.92	0.0203323
+83.04	0.0203096
+83.16	0.0202869
+83.28	0.0202643
+83.4	0.0202417
+83.52	0.0202192
+83.64	0.0201967
+83.76	0.0201743
+83.88	0.020152
+84	0.0201297
+84.12	0.0201075
+84.24	0.0200853
+84.36	0.0200632
+84.48	0.0200411
+84.6	0.0200191
+84.72	0.0199971
+84.84	0.0199752
+84.96	0.0199534
+85.08	0.0199316
+85.2	0.0199098
+85.32	0.0198881
+85.44	0.0198665
+85.56	0.0198449
+85.68	0.0198234
+85.8	0.0198019
+85.92	0.0197804
+86.04	0.0197591
+86.16	0.0197377
+86.28	0.0197164
+86.4	0.0196952
+86.52	0.019674
+86.64	0.0196529
+86.76	0.0196318
+86.88	0.0196108
+87	0.0195899
+87.12	0.0195689
+87.24	0.0195481
+87.36	0.0195272
+87.48	0.0195065
+87.6	0.0194857
+87.72	0.0194651
+87.84	0.0194444
+87.96	0.0194239
+88.08	0.0194033
+88.2	0.0193828
+88.32	0.0193624
+88.44	0.019342
+88.56	0.0193217
+88.68	0.0193014
+88.8	0.0192812
+88.92	0.019261
+89.04	0.0192408
+89.16	0.0192207
+89.28	0.0192007
+89.4	0.0191807
+89.52	0.0191607
+89.64	0.0191408
+89.76	0.019121
+89.88	0.0191011
+90	0.0190814
+90.12	0.0190616
+90.24	0.019042
+90.36	0.0190223
+90.48	0.0190027
+90.6	0.0189832
+90.72	0.0189637
+90.84	0.0189442
+90.96	0.0189248
+91.08	0.0189055
+91.2	0.0188861
+91.32	0.0188669
+91.44	0.0188476
+91.56	0.0188284
+91.68	0.0188093
+91.8	0.0187902
+91.92	0.0187711
+92.04	0.0187521
+92.16	0.0187332
+92.28	0.0187142
+92.4	0.0186953
+92.52	0.0186765
+92.64	0.0186577
+92.76	0.0186389
+92.88	0.0186202
+93	0.0186016
+93.12	0.0185829
+93.24	0.0185643
+93.36	0.0185458
+93.48	0.0185273
+93.6	0.0185088
+93.72	0.0184904
+93.84	0.018472
+93.96	0.0184537
+94.08	0.0184354
+94.2	0.0184171
+94.32	0.0183989
+94.44	0.0183807
+94.56	0.0183626
+94.68	0.0183445
+94.8	0.0183264
+94.92	0.0183084
+95.04	0.0182904
+95.16	0.0182725
+95.28	0.0182546
+95.4	0.0182367
+95.52	0.0182189
+95.64	0.0182011
+95.76	0.0181834
+95.88	0.0181657
+96	0.018148
+96.12	0.0181304
+96.24	0.0181128
+96.36	0.0180953
+96.48	0.0180778
+96.6	0.0180603
+96.72	0.0180429
+96.84	0.0180255
+96.96	0.0180081
+97.08	0.0179908
+97.2	0.0179735
+97.32	0.0179563
+97.44	0.017939
+97.56	0.0179219
+97.68	0.0179047
+97.8	0.0178876
+97.92	0.0178706
+98.04	0.0178536
+98.16	0.0178366
+98.28	0.0178196
+98.4	0.0178027
+98.52	0.0177858
+98.64	0.017769
+98.76	0.0177522
+98.88	0.0177354
+99	0.0177187
+99.12	0.017702
+99.24	0.0176853
+99.36	0.0176687
+99.48	0.0176521
+99.6	0.0176355
+99.72	0.017619
+99.84	0.0176025
+99.96	0.0175861
+100.08	0.0175696
+100.2	0.0175532
+100.32	0.0175369
+100.44	0.0175206
+100.56	0.0175043
+100.68	0.017488
+100.8	0.0174718
+100.92	0.0174557
+101.04	0.0174395
+101.16	0.0174234
+101.28	0.0174073
+101.4	0.0173913
+101.52	0.0173753
+101.64	0.0173593
+101.76	0.0173433
+101.88	0.0173274
+102	0.0173115
+102.12	0.0172957
+102.24	0.0172799
+102.36	0.0172641
+102.48	0.0172483
+102.6	0.0172326
+102.72	0.0172169
+102.84	0.0172013
+102.96	0.0171857
+103.08	0.0171701
+103.2	0.0171545
+103.32	0.017139
+103.44	0.0171235
+103.56	0.0171081
+103.68	0.0170926
+103.8	0.0170772
+103.92	0.0170619
+104.04	0.0170465
+104.16	0.0170312
+104.28	0.0170159
+104.4	0.0170007
+104.52	0.0169855
+104.64	0.0169703
+104.76	0.0169552
+104.88	0.01694
+105	0.0169249
+105.12	0.0169099
+105.24	0.0168949
+105.36	0.0168799
+105.48	0.0168649
+105.6	0.01685
+105.72	0.016835
+105.84	0.0168202
+105.96	0.0168053
+106.08	0.0167905
+106.2	0.0167757
+106.32	0.0167609
+106.44	0.0167462
+106.56	0.0167315
+106.68	0.0167168
+106.8	0.0167022
+106.92	0.0166876
+107.04	0.016673
+107.16	0.0166584
+107.28	0.0166439
+107.4	0.0166294
+107.52	0.0166149
+107.64	0.0166005
+107.76	0.0165861
+107.88	0.0165717
+108	0.0165573
+108.12	0.016543
+108.24	0.0165287
+108.36	0.0165144
+108.48	0.0165002
+108.6	0.016486
+108.72	0.0164718
+108.84	0.0164576
+108.96	0.0164435
+109.08	0.0164294
+109.2	0.0164153
+109.32	0.0164013
+109.44	0.0163872
+109.56	0.0163732
+109.68	0.0163593
+109.8	0.0163453
+109.92	0.0163314
+110.04	0.0163175
+110.16	0.0163037
+110.28	0.0162898
+110.4	0.016276
+110.52	0.0162623
+110.64	0.0162485
+110.76	0.0162348
+110.88	0.0162211
+111	0.0162074
+111.12	0.0161937
+111.24	0.0161801
+111.36	0.0161665
+111.48	0.016153
+111.6	0.0161394
+111.72	0.0161259
+111.84	0.0161124
+111.96	0.0160989
+112.08	0.0160855
+112.2	0.0160721
+112.32	0.0160587
+112.44	0.0160453
+112.56	0.016032
+112.68	0.0160187
+112.8	0.0160054
+112.92	0.0159921
+113.04	0.0159789
+113.16	0.0159657
+113.28	0.0159525
+113.4	0.0159393
+113.52	0.0159262
+113.64	0.015913
+113.76	0.0158999
+113.88	0.0158869
+114	0.0158738
+114.12	0.0158608
+114.24	0.0158478
+114.36	0.0158349
+114.48	0.0158219
+114.6	0.015809
+114.72	0.0157961
+114.84	0.0157832
+114.96	0.0157704
+115.08	0.0157575
+115.2	0.0157447
+115.32	0.0157319
+115.44	0.0157192
+115.56	0.0157065
+115.68	0.0156938
+115.8	0.0156811
+115.92	0.0156684
+116.04	0.0156558
+116.16	0.0156431
+116.28	0.0156306
+116.4	0.015618
+116.52	0.0156054
+116.64	0.0155929
+116.76	0.0155804
+116.88	0.0155679
+117	0.0155555
+117.12	0.015543
+117.24	0.0155306
+117.36	0.0155182
+117.48	0.015517
+117.6	0.0155047
+117.72	0.0154923
+117.84	0.01548
+117.96	0.0154677
+118.08	0.0154554
+118.2	0.0154431
+118.32	0.0154309
+118.44	0.0154187
+118.56	0.0154065
+118.68	0.0153943
+118.8	0.0153822
+118.92	0.01537
+119.04	0.0153579
+119.16	0.0153459
+119.28	0.0153338
+119.4	0.0153217
+119.52	0.0153097
+119.64	0.0152977
+119.76	0.0152857
+119.88	0.0152738
+120	0.0152619
+120.12	0.0152499
+120.24	0.015238
+120.36	0.0152262
+120.48	0.0152143
+120.6	0.0152025
+120.72	0.0151907
+120.84	0.0151789
+120.96	0.0151671
+121.08	0.0151554
+121.2	0.0151437
+121.32	0.015132
+121.44	0.0151203
+121.56	0.0151086
+121.68	0.015097
+121.8	0.0150853
+121.92	0.0150737
+122.04	0.0150622
+122.16	0.0150506
+122.28	0.015039
+122.4	0.0150275
+122.52	0.015016
+122.64	0.0150045
+122.76	0.0149931
+122.88	0.0149816
+123	0.0149702
+123.12	0.0149588
+123.24	0.0149474
+123.36	0.0149361
+123.48	0.0149247
+123.6	0.0149134
+123.72	0.0149021
+123.84	0.0148908
+123.96	0.0148795
+124.08	0.0148683
+124.2	0.0148571
+124.32	0.0148459
+124.44	0.0148347
+124.56	0.0148235
+124.68	0.0148124
+124.8	0.0148012
+124.92	0.0147901
+125.04	0.014779
+125.16	0.014768
+125.28	0.0147569
+125.4	0.0147459
+125.52	0.0147349
+125.64	0.0147239
+125.76	0.0147129
+125.88	0.0147019
+126	0.014691
+126.12	0.0146801
+126.24	0.0146691
+126.36	0.0146583
+126.48	0.0146474
+126.6	0.0146365
+126.72	0.0146257
+126.84	0.0146149
+126.96	0.0146041
+127.08	0.0145933
+127.2	0.0145826
+127.32	0.0145718
+127.44	0.0145611
+127.56	0.0145504
+127.68	0.0145397
+127.8	0.0145291
+127.92	0.0145184
+128.04	0.0145078
+128.16	0.0144972
+128.28	0.0144866
+128.4	0.014476
+128.52	0.0144654
+128.64	0.0144549
+128.76	0.0144443
+128.88	0.0144338
+129	0.0144233
+129.12	0.0144129
+129.24	0.0144024
+129.36	0.014392
+129.48	0.0143816
+129.6	0.0143711
+129.72	0.0143608
+129.84	0.0143504
+129.96	0.01434
+130.08	0.0143297
+130.2	0.0143194
+130.32	0.0143091
+130.44	0.0142988
+130.56	0.0142885
+130.68	0.0142783
+130.8	0.014268
+130.92	0.0142578
+131.04	0.0142476
+131.16	0.0142374
+131.28	0.0142273
+131.4	0.0142171
+131.52	0.014207
+131.64	0.0141969
+131.76	0.0141868
+131.88	0.0141767
+132	0.0141666
+132.12	0.0141566
+132.24	0.0141465
+132.36	0.0141365
+132.48	0.0141265
+132.6	0.0141165
+132.72	0.0141065
+132.84	0.0140966
+132.96	0.0140866
+133.08	0.0140767
+133.2	0.0140668
+133.32	0.0140569
+133.44	0.014047
+133.56	0.0140372
+133.68	0.0140273
+133.8	0.0140175
+133.92	0.0140077
+134.04	0.0139979
+134.16	0.0139881
+134.28	0.0139784
+134.4	0.0139686
+134.52	0.0139589
+134.64	0.0139491
+134.76	0.0139394
+134.88	0.0139298
+135	0.0139201
+135.12	0.0139104
+135.24	0.0139008
+135.36	0.0138912
+135.48	0.0138815
+135.6	0.013872
+135.72	0.0138624
+135.84	0.0138528
+135.96	0.0138433
+136.08	0.0138337
+136.2	0.0138242
+136.32	0.0138147
+136.44	0.0138052
+136.56	0.0137957
+136.68	0.0137863
+136.8	0.0137768
+136.92	0.0137674
+137.04	0.013758
+137.16	0.0137486
+137.28	0.0137392
+137.4	0.0137298
+137.52	0.0137205
+137.64	0.0137111
+137.76	0.0137018
+137.88	0.0136925
+138	0.0136832
+138.12	0.0136739
+138.24	0.0136647
+138.36	0.0136554
+138.48	0.0136462
+138.6	0.0136369
+138.72	0.0136277
+138.84	0.0136185
+138.96	0.0136093
+139.08	0.0136002
+139.2	0.013591
+139.32	0.0135819
+139.44	0.0135728
+139.56	0.0135637
+139.68	0.0135546
+139.8	0.0135455
+139.92	0.0135364
+140.04	0.0135273
+140.16	0.0135183
+140.28	0.0135093
+140.4	0.0135003
+140.52	0.0134913
+140.64	0.0134823
+140.76	0.0134733
+140.88	0.0134643
+141	0.0134554
+141.12	0.0134465
+141.24	0.0134376
+141.36	0.0134286
+141.48	0.0134198
+141.6	0.0134109
+141.72	0.013402
+141.84	0.0133932
+141.96	0.0133843
+142.08	0.0133755
+142.2	0.0133667
+142.32	0.0133579
+142.44	0.0133491
+142.56	0.0133403
+142.68	0.0133316
+142.8	0.0133228
+142.92	0.0133141
+143.04	0.0133054
+143.16	0.0132967
+143.28	0.013288
+143.4	0.0132793
+143.52	0.0132707
+143.64	0.013262
+143.76	0.0132534
+143.88	0.0132447
+144	0.0132361
+144.12	0.0132275
+144.24	0.0132189
+144.36	0.0132104
+144.48	0.0132018
+144.6	0.0131933
+144.72	0.0131847
+144.84	0.0131762
+144.96	0.0131677
+145.08	0.0131592
+145.2	0.0131507
+145.32	0.0131422
+145.44	0.0131338
+145.56	0.0131253
+145.68	0.0131169
+145.8	0.0131085
+145.92	0.0131001
+146.04	0.0130917
+146.16	0.0130833
+146.28	0.0130749
+146.4	0.0130665
+146.52	0.0130582
+146.64	0.0130499
+146.76	0.0130415
+146.88	0.0130332
+147	0.0130249
+147.12	0.0130166
+147.24	0.0130084
+147.36	0.0130001
+147.48	0.0129918
+147.6	0.0129836
+147.72	0.0129754
+147.84	0.0129672
+147.96	0.012959
+148.08	0.0129508
+148.2	0.0129426
+148.32	0.0129344
+148.44	0.0129263
+148.56	0.0129181
+148.68	0.01291
+148.8	0.0129019
+148.92	0.0128938
+149.04	0.0128857
+149.16	0.0128776
+149.28	0.0128695
+149.4	0.0128614
+149.52	0.0128534
+149.64	0.0128454
+149.76	0.0128373
+149.88	0.0128293
+150	0.0128213
+150.12	0.0128133
+150.24	0.0128053
+150.36	0.0127974
+150.48	0.0127894
+150.6	0.0127815
+150.72	0.0127735
+150.84	0.0127656
+150.96	0.0127577
+151.08	0.0127498
+151.2	0.0127419
+151.32	0.012734
+151.44	0.0127262
+151.56	0.0127183
+151.68	0.0127105
+151.8	0.0127026
+151.92	0.0126948
+152.04	0.012687
+152.16	0.0126792
+152.28	0.0126714
+152.4	0.0126636
+152.52	0.0126559
+152.64	0.0126481
+152.76	0.0126404
+152.88	0.0126326
+153	0.0126249
+153.12	0.0126172
+153.24	0.0126095
+153.36	0.0126018
+153.48	0.0125941
+153.6	0.0125864
+153.72	0.0125788
+153.84	0.0125711
+153.96	0.0125635
+154.08	0.0125559
+154.2	0.0125483
+154.32	0.0125407
+154.44	0.0125331
+154.56	0.0125255
+154.68	0.0125179
+154.8	0.0125103
+154.92	0.0125028
+155.04	0.0124952
+155.16	0.0124877
+155.28	0.0124802
+155.4	0.0124727
+155.52	0.0124652
+155.64	0.0124577
+155.76	0.0124502
+155.88	0.0124428
+156	0.0124353
+156.12	0.0124278
+156.24	0.0124204
+156.36	0.012413
+156.48	0.0124056
+156.6	0.0123982
+156.72	0.0123908
+156.84	0.0123834
+156.96	0.012376
+157.08	0.0123686
+157.2	0.0123613
+157.32	0.0123539
+157.44	0.0123466
+157.56	0.0123393
+157.68	0.012332
+157.8	0.0123247
+157.92	0.0123174
+158.04	0.0123101
+158.16	0.0123028
+158.28	0.0122955
+158.4	0.0122883
+158.52	0.012281
+158.64	0.0122738
+158.76	0.0122666
+158.88	0.0122594
+159	0.0122521
+159.12	0.0122449
+159.24	0.0122378
+159.36	0.0122306
+159.48	0.0122234
+159.6	0.0122163
+159.72	0.0122091
+159.84	0.012202
+159.96	0.0121948
+160.08	0.0121877
+160.2	0.0121806
+160.32	0.0121735
+160.44	0.0121664
+160.56	0.0121593
+160.68	0.0121523
+160.8	0.0121452
+160.92	0.0121382
+161.04	0.0121311
+161.16	0.0121241
+161.28	0.0121171
+161.4	0.0121101
+161.52	0.012103
+161.64	0.0120961
+161.76	0.0120891
+161.88	0.0120821
+162	0.0120751
+162.12	0.0120682
+162.24	0.0120612
+162.36	0.0120543
+162.48	0.0120474
+162.6	0.0120404
+162.72	0.0120335
+162.84	0.0120266
+162.96	0.0120197
+163.08	0.0120128
+163.2	0.012006
+163.32	0.0119991
+163.44	0.0119922
+163.56	0.0119854
+163.68	0.0119786
+163.8	0.0119717
+163.92	0.0119649
+164.04	0.0119581
+164.16	0.0119513
+164.28	0.0119445
+164.4	0.0119377
+164.52	0.011931
+164.64	0.0119242
+164.76	0.0119174
+164.88	0.0119107
+165	0.0119039
+165.12	0.0118972
+165.24	0.0118905
+165.36	0.0118838
+165.48	0.0118771
+165.6	0.0118704
+165.72	0.0118637
+165.84	0.011857
+165.96	0.0118504
+166.08	0.0118437
+166.2	0.0118371
+166.32	0.0118304
+166.44	0.0118238
+166.56	0.0118172
+166.68	0.0118105
+166.8	0.0118039
+166.92	0.0117973
+167.04	0.0117907
+167.16	0.0117842
+167.28	0.0117776
+167.4	0.011771
+167.52	0.0117645
+167.64	0.0117579
+167.76	0.0117514
+167.88	0.0117449
+168	0.0117383
+168.12	0.0117318
+168.24	0.0117253
+168.36	0.0117188
+168.48	0.0117123
+168.6	0.0117058
+168.72	0.0116994
+168.84	0.0116929
+168.96	0.0116865
+169.08	0.01168
+169.2	0.0116736
+169.32	0.0116671
+169.44	0.0116607
+169.56	0.0116543
+169.68	0.0116479
+169.8	0.0116415
+169.92	0.0116351
+170.04	0.0116287
+170.16	0.0116224
+170.28	0.011616
+170.4	0.0116096
+170.52	0.0116033
+170.64	0.0115969
+170.76	0.0115906
+170.88	0.0115843
+171	0.011578
+171.12	0.0115717
+171.24	0.0115679
+171.36	0.0115616
+171.48	0.0115554
+171.6	0.0115491
+171.72	0.0115428
+171.84	0.0115366
+171.96	0.0115303
+172.08	0.0115241
+172.2	0.0115178
+172.32	0.0115116
+172.44	0.0115054
+172.56	0.0114992
+172.68	0.011493
+172.8	0.0114868
+172.92	0.0114806
+173.04	0.0114744
+173.16	0.0114682
+173.28	0.0114621
+173.4	0.0114559
+173.52	0.0114498
+173.64	0.0114436
+173.76	0.0114375
+173.88	0.0114314
+174	0.0114253
+174.12	0.0114192
+174.24	0.011413
+174.36	0.011407
+174.48	0.0114009
+174.6	0.0113948
+174.72	0.0113887
+174.84	0.0113826
+174.96	0.0113766
+175.08	0.0113705
+175.2	0.0113645
+175.32	0.0113585
+175.44	0.0113524
+175.56	0.0113464
+175.68	0.0113404
+175.8	0.0113344
+175.92	0.0113284
+176.04	0.0113224
+176.16	0.0113164
+176.28	0.0113105
+176.4	0.0113045
+176.52	0.0112985
+176.64	0.0112926
+176.76	0.0112866
+176.88	0.0112807
+177	0.0112748
+177.12	0.0112688
+177.24	0.0112629
+177.36	0.011257
+177.48	0.0112511
+177.6	0.0112452
+177.72	0.0112393
+177.84	0.0112334
+177.96	0.0112276
+178.08	0.0112217
+178.2	0.0112158
+178.32	0.01121
+178.44	0.0112041
+178.56	0.0111983
+178.68	0.0111925
+178.8	0.0111866
+178.92	0.0111808
+179.04	0.011175
+179.16	0.0111692
+179.28	0.0111634
+179.4	0.0111576
+179.52	0.0111519
+179.64	0.0111461
+179.76	0.0111403
+179.88	0.0111345
+180	0.0111288
+180.12	0.011123
+180.24	0.0111173
+180.36	0.0111116
+180.48	0.0111058
+180.6	0.0111001
+180.72	0.0110944
+180.84	0.0110887
+180.96	0.011083
+181.08	0.0110773
+181.2	0.0110716
+181.32	0.011066
+181.44	0.0110603
+181.56	0.0110546
+181.68	0.011049
+181.8	0.0110433
+181.92	0.0110377
+182.04	0.011032
+182.16	0.0110264
+182.28	0.0110208
+182.4	0.0110152
+182.52	0.0110095
+182.64	0.0110039
+182.76	0.0109983
+182.88	0.0109927
+183	0.0109872
+183.12	0.0109816
+183.24	0.010976
+183.36	0.0109705
+183.48	0.0109649
+183.6	0.0109593
+183.72	0.0109538
+183.84	0.0109483
+183.96	0.0109427
+184.08	0.0109372
+184.2	0.0109317
+184.32	0.0109262
+184.44	0.0109207
+184.56	0.0109152
+184.68	0.0109097
+184.8	0.0109042
+184.92	0.0108987
+185.04	0.0108932
+185.16	0.0108878
+185.28	0.0108823
+185.4	0.0108769
+185.52	0.0108714
+185.64	0.010866
+185.76	0.0108605
+185.88	0.0108551
+186	0.0108497
+186.12	0.0108443
+186.24	0.0108389
+186.36	0.0108334
+186.48	0.0108281
+186.6	0.0108227
+186.72	0.0108173
+186.84	0.0108119
+186.96	0.0108065
+187.08	0.0108012
+187.2	0.0107958
+187.32	0.0107904
+187.44	0.0107851
+187.56	0.0107798
+187.68	0.0107744
+187.8	0.0107691
+187.92	0.0107638
+188.04	0.0107585
+188.16	0.0107531
+188.28	0.0107478
+188.4	0.0107425
+188.52	0.0107373
+188.64	0.010732
+188.76	0.0107267
+188.88	0.0107214
+189	0.0107161
+189.12	0.0107109
+189.24	0.0107056
+189.36	0.0107004
+189.48	0.0106951
+189.6	0.0106899
+189.72	0.0106847
+189.84	0.0106794
+189.96	0.0106742
+190.08	0.010669
+190.2	0.0106638
+190.32	0.0106586
+190.44	0.0106534
+190.56	0.0106482
+190.68	0.010643
+190.8	0.0106379
+190.92	0.0106327
+191.04	0.0106275
+191.16	0.0106224
+191.28	0.0106172
+191.4	0.0106121
+191.52	0.0106069
+191.64	0.0106018
+191.76	0.0105966
+191.88	0.0105915
+192	0.0105864
+192.12	0.0105813
+192.24	0.0105762
+192.36	0.0105711
+192.48	0.010566
+192.6	0.0105609
+192.72	0.0105558
+192.84	0.0105507
+192.96	0.0105457
+193.08	0.0105406
+193.2	0.0105355
+193.32	0.0105305
+193.44	0.0105254
+193.56	0.0105204
+193.68	0.0105153
+193.8	0.0105103
+193.92	0.0105053
+194.04	0.0105003
+194.16	0.0104952
+194.28	0.0104902
+194.4	0.0104852
+194.52	0.0104802
+194.64	0.0104752
+194.76	0.0104702
+194.88	0.0104653
+195	0.0104603
+195.12	0.0104553
+195.24	0.0104503
+195.36	0.0104454
+195.48	0.0104404
+195.6	0.0104355
+195.72	0.0104305
+195.84	0.0104256
+195.96	0.0104207
+196.08	0.0104157
+196.2	0.0104108
+196.32	0.0104059
+196.44	0.010401
+196.56	0.0103961
+196.68	0.0103912
+196.8	0.0103863
+196.92	0.0103814
+197.04	0.0103765
+197.16	0.0103716
+197.28	0.0103668
+197.4	0.0103619
+197.52	0.010357
+197.64	0.0103522
+197.76	0.0103473
+197.88	0.0103425
+198	0.0103376
+198.12	0.0103328
+198.24	0.010328
+198.36	0.0103231
+198.48	0.0103183
+198.6	0.0103135
+198.72	0.0103087
+198.84	0.0103039
+198.96	0.0102991
+199.08	0.0102943
+199.2	0.0102895
+199.32	0.0102847
+199.44	0.01028
+199.56	0.0102752
+199.68	0.0102704
+199.8	0.0102656
+199.92	0.0102609
+200.04	0.0102561
+200.16	0.0102514
+200.28	0.0102467
+200.4	0.0102419
+200.52	0.0102372
+200.64	0.0102325
+200.76	0.0102277
+200.88	0.010223
+201	0.0102183
+201.12	0.0102136
+201.24	0.0102089
+201.36	0.0102042
+201.48	0.0101995
+201.6	0.0101948
+201.72	0.0101902
+201.84	0.0101855
+201.96	0.0101808
+202.08	0.0101761
+202.2	0.0101715
+202.32	0.0101668
+202.44	0.0101622
+202.56	0.0101575
+202.68	0.0101529
+202.8	0.0101483
+202.92	0.0101436
+203.04	0.010139
+203.16	0.0101344
+203.28	0.0101298
+203.4	0.0101252
+203.52	0.0101206
+203.64	0.010116
+203.76	0.0101114
+203.88	0.0101068
+204	0.0101022
+204.12	0.0100976
+204.24	0.010093
+204.36	0.0100885
+204.48	0.0100839
+204.6	0.0100793
+204.72	0.0100748
+204.84	0.0100702
+204.96	0.0100657
+205.08	0.0100611
+205.2	0.0100566
+205.32	0.0100521
+205.44	0.0100475
+205.56	0.010043
+205.68	0.0100385
+205.8	0.010034
+205.92	0.0100295
+206.04	0.010025
+206.16	0.0100205
+206.28	0.010016
+206.4	0.0100115
+206.52	0.010007
+206.64	0.0100025
+206.76	0.00999805
+206.88	0.00999358
+207	0.00998911
+207.12	0.00998465
+207.24	0.0099802
+207.36	0.00997574
+207.48	0.0099713
+207.6	0.00996686
+207.72	0.00996242
+207.84	0.00995799
+207.96	0.00995356
+208.08	0.00994913
+208.2	0.00994471
+208.32	0.0099403
+208.44	0.00993589
+208.56	0.00993149
+208.68	0.00992709
+208.8	0.00992269
+208.92	0.0099183
+209.04	0.00991391
+209.16	0.00990953
+209.28	0.00990515
+209.4	0.00990078
+209.52	0.00989641
+209.64	0.00989205
+209.76	0.00988769
+209.88	0.00988333
+210	0.00987898
+210.12	0.00987464
+210.24	0.0098703
+210.36	0.00986596
+210.48	0.00986163
+210.6	0.0098573
+210.72	0.00985298
+210.84	0.00984866
+210.96	0.00984435
+211.08	0.00984004
+211.2	0.00983573
+211.32	0.00983143
+211.44	0.00982713
+211.56	0.00982284
+211.68	0.00981855
+211.8	0.00981427
+211.92	0.00980999
+212.04	0.00980572
+212.16	0.00980145
+212.28	0.00979718
+212.4	0.00979292
+212.52	0.00978866
+212.64	0.00978441
+212.76	0.00978016
+212.88	0.00977592
+213	0.00977168
+213.12	0.00976745
+213.24	0.00976322
+213.36	0.00975899
+213.48	0.00975477
+213.6	0.00975055
+213.72	0.00974634
+213.84	0.00974213
+213.96	0.00973792
+214.08	0.00973372
+214.2	0.00972953
+214.32	0.00972533
+214.44	0.00972115
+214.56	0.00971696
+214.68	0.00971278
+214.8	0.00970861
+214.92	0.00970444
+215.04	0.00970027
+215.16	0.00969611
+215.28	0.00969195
+215.4	0.0096878
+215.52	0.00968365
+215.64	0.0096795
+215.76	0.00967536
+215.88	0.00967123
+216	0.00966709
+216.12	0.00966296
+216.24	0.00965884
+216.36	0.00965472
+216.48	0.0096506
+216.6	0.00964649
+216.72	0.00964238
+216.84	0.00963828
+216.96	0.00963418
+217.08	0.00963009
+217.2	0.00962599
+217.32	0.00962191
+217.44	0.00961782
+217.56	0.00961375
+217.68	0.00960967
+217.8	0.0096056
+217.92	0.00960153
+218.04	0.00959747
+218.16	0.00959341
+218.28	0.00958936
+218.4	0.00958531
+218.52	0.00958126
+218.64	0.00957722
+218.76	0.00957318
+218.88	0.00956915
+219	0.00956512
+219.12	0.0095611
+219.24	0.00955708
+219.36	0.00955306
+219.48	0.00954904
+219.6	0.00954504
+219.72	0.00954103
+219.84	0.00953703
+219.96	0.00953303
+220.08	0.00952904
+220.2	0.00952505
+220.32	0.00952107
+220.44	0.00951708
+220.56	0.00951311
+220.68	0.00950913
+220.8	0.00950516
+220.92	0.0095012
+221.04	0.00949724
+221.16	0.00949328
+221.28	0.00948933
+221.4	0.00948538
+221.52	0.00948143
+221.64	0.00947749
+221.76	0.00947355
+221.88	0.00946962
+222	0.00946569
+222.12	0.00946176
+222.24	0.00945784
+222.36	0.00945392
+222.48	0.00945
+222.6	0.00944609
+222.72	0.00944218
+222.84	0.00943828
+222.96	0.00943438
+223.08	0.00943049
+223.2	0.00942659
+223.32	0.00942271
+223.44	0.00941882
+223.56	0.00941494
+223.68	0.00941106
+223.8	0.00940719
+223.92	0.00940332
+224.04	0.00939946
+224.16	0.00939559
+224.28	0.00939174
+224.4	0.00938788
+224.52	0.00938403
+224.64	0.00938019
+224.76	0.00937634
+224.88	0.0093725
+225	0.00936867
+225.12	0.00936484
+225.24	0.00936101
+225.36	0.00935719
+225.48	0.00935336
+225.6	0.00934955
+225.72	0.00934573
+225.84	0.00934193
+225.96	0.00933812
+226.08	0.00933432
+226.2	0.00933052
+226.32	0.00932673
+226.44	0.00932293
+226.56	0.00931915
+226.68	0.00931536
+226.8	0.00931158
+226.92	0.00930781
+227.04	0.00930403
+227.16	0.00930027
+227.28	0.0092965
+227.4	0.00929274
+227.52	0.00928898
+227.64	0.00928523
+227.76	0.00928147
+227.88	0.00927773
+228	0.00927398
+228.12	0.00927024
+228.24	0.00926651
+228.36	0.00926277
+228.48	0.00925904
+228.6	0.00925532
+228.72	0.0092516
+228.84	0.00924788
+228.96	0.00924416
+229.08	0.00924045
+229.2	0.00923674
+229.32	0.00923304
+229.44	0.00922934
+229.56	0.00922564
+229.68	0.00922195
+229.8	0.00921826
+229.92	0.00921457
+230.04	0.00921089
+230.16	0.00920721
+230.28	0.00920353
+230.4	0.00919986
+230.52	0.00919619
+230.64	0.00919252
+230.76	0.00918886
+230.88	0.0091852
+231	0.00918154
+231.12	0.00917789
+231.24	0.00917424
+231.36	0.0091706
+231.48	0.00916696
+231.6	0.00916332
+231.72	0.00915968
+231.84	0.00915605
+231.96	0.00915243
+232.08	0.0091488
+232.2	0.00914518
+232.32	0.00914156
+232.44	0.00913795
+232.56	0.00913434
+232.68	0.00913073
+232.8	0.00912713
+232.92	0.00912352
+233.04	0.00911993
+233.16	0.00911633
+233.28	0.00911274
+233.4	0.00910916
+233.52	0.00910557
+233.64	0.00910199
+233.76	0.00909842
+233.88	0.00909484
+234	0.00909127
+234.12	0.0090877
+234.24	0.00908414
+234.36	0.00908058
+234.48	0.00907702
+234.6	0.00907347
+234.72	0.00906992
+234.84	0.00906637
+234.96	0.00906283
+235.08	0.00905929
+235.2	0.00905575
+235.32	0.00905222
+235.44	0.00904869
+235.56	0.00904516
+235.68	0.00904164
+235.8	0.00903812
+235.92	0.0090346
+236.04	0.00903108
+236.16	0.00902757
+236.28	0.00902407
+236.4	0.00902056
+236.52	0.00901706
+236.64	0.00901356
+236.76	0.00901007
+236.88	0.00900658
+237	0.00900309
+237.12	0.0089996
+237.24	0.00899612
+237.36	0.00899264
+237.48	0.00898917
+237.6	0.00898569
+237.72	0.00898223
+237.84	0.00897876
+237.96	0.0089753
+238.08	0.00897184
+238.2	0.00896838
+238.32	0.00896493
+238.44	0.00896148
+238.56	0.00895803
+238.68	0.00895459
+238.8	0.00895115
+238.92	0.00894771
+239.04	0.00894428
+239.16	0.00894085
+239.28	0.00893742
+239.4	0.008934
+239.52	0.00893057
+239.64	0.00892716
+239.76	0.00892374
+239.88	0.00892033
+240	0.00891692
+240.12	0.00891351
+240.24	0.00891011
+240.36	0.00890671
+240.48	0.00890332
+240.6	0.00889992
+240.72	0.00889653
+240.84	0.00889314
+240.96	0.00888976
+241.08	0.00888638
+241.2	0.008883
+241.32	0.00887963
+241.44	0.00887626
+241.56	0.00887289
+241.68	0.00886952
+241.8	0.00886616
+241.92	0.0088628
+242.04	0.00885944
+242.16	0.00885609
+242.28	0.00885274
+242.4	0.00884939
+242.52	0.00884605
+242.64	0.00884271
+242.76	0.00883937
+242.88	0.00883603
+243	0.0088327
+243.12	0.00882937
+243.24	0.00882604
+243.36	0.00882272
+243.48	0.0088194
+243.6	0.00881608
+243.72	0.00881277
+243.84	0.00880946
+243.96	0.00880615
+244.08	0.00880284
+244.2	0.00879954
+244.32	0.00879624
+244.44	0.00879295
+244.56	0.00878965
+244.68	0.00878636
+244.8	0.00878307
+244.92	0.00877979
+245.04	0.00877651
+245.16	0.00877323
+245.28	0.00876995
+245.4	0.00876668
+245.52	0.00876341
+245.64	0.00876014
+245.76	0.00875688
+245.88	0.00875362
+246	0.00875036
+246.12	0.0087471
+246.24	0.00874385
+246.36	0.0087406
+246.48	0.00873735
+246.6	0.00873411
+246.72	0.00873087
+246.84	0.00872763
+246.96	0.0087244
+247.08	0.00872116
+247.2	0.00871793
+247.32	0.00871471
+247.44	0.00871148
+247.56	0.00870826
+247.68	0.00870505
+247.8	0.00870183
+247.92	0.00869862
+248.04	0.00869541
+248.16	0.0086922
+248.28	0.008689
+248.4	0.0086858
+248.52	0.0086826
+248.64	0.0086794
+248.76	0.00867621
+248.88	0.00867302
+249	0.00866984
+249.12	0.00866665
+249.24	0.00866347
+249.36	0.00866029
+249.48	0.00865712
+249.6	0.00865394
+249.72	0.00865077
+249.84	0.00864761
+249.96	0.00864444
+250.08	0.00864128
+250.2	0.00863812
+250.32	0.00863497
+250.44	0.00863181
+250.56	0.00862866
+250.68	0.00862551
+250.8	0.00862237
+250.92	0.00861923
+251.04	0.00861609
+251.16	0.00861295
+251.28	0.00860982
+251.4	0.00860668
+251.52	0.00860356
+251.64	0.00860043
+251.76	0.00859731
+251.88	0.00859419
+252	0.00859107
+252.12	0.00858795
+252.24	0.00858484
+252.36	0.00858173
+252.48	0.00857862
+252.6	0.00857552
+252.72	0.00857242
+252.84	0.00856932
+252.96	0.00856622
+253.08	0.00856313
+253.2	0.00856004
+253.32	0.00855695
+253.44	0.00855387
+253.56	0.00855078
+253.68	0.0085477
+253.8	0.00854463
+253.92	0.00854155
+254.04	0.00853848
+254.16	0.00853541
+254.28	0.00853234
+254.4	0.00852928
+254.52	0.00852622
+254.64	0.00852316
+254.76	0.0085201
+254.88	0.00851705
+255	0.008514
+255.12	0.00851095
+255.24	0.00850791
+255.36	0.00850486
+255.48	0.00850182
+255.6	0.00849879
+255.72	0.00849575
+255.84	0.00849272
+255.96	0.00848969
+256.08	0.00848666
+256.2	0.00848364
+256.32	0.00848061
+256.44	0.00847759
+256.56	0.00847458
+256.68	0.00847156
+256.8	0.00846855
+256.92	0.00846554
+257.04	0.00846254
+257.16	0.00845953
+257.28	0.00845653
+257.4	0.00845353
+257.52	0.00845053
+257.64	0.00844754
+257.76	0.00844455
+257.88	0.00844156
+258	0.00843857
+258.12	0.00843559
+258.24	0.00843261
+258.36	0.00842963
+258.48	0.00842666
+258.6	0.00842368
+258.72	0.00842071
+258.84	0.00841774
+258.96	0.00841478
+259.08	0.00841181
+259.2	0.00840885
+259.32	0.00840589
+259.44	0.00840294
+259.56	0.00839999
+259.68	0.00839703
+259.8	0.00839409
+259.92	0.00839114
+260.04	0.0083882
+260.16	0.00838526
+260.28	0.00838232
+260.4	0.00837938
+260.52	0.00837645
+260.64	0.00837352
+260.76	0.00837059
+260.88	0.00836766
+261	0.00836474
+261.12	0.00836182
+261.24	0.0083589
+261.36	0.00835598
+261.48	0.00835307
+261.6	0.00835016
+261.72	0.00834725
+261.84	0.00834434
+261.96	0.00834144
+262.08	0.00833854
+262.2	0.00833564
+262.32	0.00833274
+262.44	0.00832985
+262.56	0.00832696
+262.68	0.00832407
+262.8	0.00832118
+262.92	0.0083183
+263.04	0.00831541
+263.16	0.00831254
+263.28	0.00830966
+263.4	0.00830678
+263.52	0.00830391
+263.64	0.00830104
+263.76	0.00829817
+263.88	0.00829531
+264	0.00829244
+264.12	0.00828958
+264.24	0.00828673
+264.36	0.00828387
+264.48	0.00828102
+264.6	0.00827817
+264.72	0.00827532
+264.84	0.00827247
+264.96	0.00826963
+265.08	0.00826679
+265.2	0.00826395
+265.32	0.00826111
+265.44	0.00825828
+265.56	0.00825544
+265.68	0.00825261
+265.8	0.00824979
+265.92	0.00824696
+266.04	0.00824414
+266.16	0.00824132
+266.28	0.0082385
+266.4	0.00823568
+266.52	0.00823287
+266.64	0.00823006
+266.76	0.00822725
+266.88	0.00822445
+267	0.00822164
+267.12	0.00821884
+267.24	0.00821604
+267.36	0.00821324
+267.48	0.00821045
+267.6	0.00820766
+267.72	0.00820486
+267.84	0.00820208
+267.96	0.00819929
+268.08	0.00819651
+268.2	0.00819373
+268.32	0.00819095
+268.44	0.00818817
+268.56	0.0081854
+268.68	0.00818262
+268.8	0.00817986
+268.92	0.00817709
+269.04	0.00817432
+269.16	0.00817156
+269.28	0.0081688
+269.4	0.00816604
+269.52	0.00816328
+269.64	0.00816053
+269.76	0.00815778
+269.88	0.00815503
+270	0.00815228
+270.12	0.00814954
+270.24	0.00814679
+270.36	0.00814405
+270.48	0.00814132
+270.6	0.00813858
+270.72	0.00813585
+270.84	0.00813311
+270.96	0.00813038
+271.08	0.00812766
+271.2	0.00812493
+271.32	0.00812221
+271.44	0.00811949
+271.56	0.00811677
+271.68	0.00811406
+271.8	0.00811134
+271.92	0.00810863
+272.04	0.00810592
+272.16	0.00810321
+272.28	0.00810051
+272.4	0.00809781
+272.52	0.0080951
+272.64	0.00809241
+272.76	0.00808971
+272.88	0.00808702
+273	0.00808432
+273.12	0.00808163
+273.24	0.00807895
+273.36	0.00807626
+273.48	0.00807358
+273.6	0.0080709
+273.72	0.00806822
+273.84	0.00806554
+273.96	0.00806287
+274.08	0.0080602
+274.2	0.00805753
+274.32	0.00805486
+274.44	0.0080522
+274.56	0.00804953
+274.68	0.00804687
+274.8	0.00804421
+274.92	0.00804156
+275.04	0.0080389
+275.16	0.00803625
+275.28	0.0080336
+275.4	0.00803095
+275.52	0.0080283
+275.64	0.00802566
+275.76	0.00802302
+275.88	0.00802038
+276	0.00801774
+276.12	0.0080151
+276.24	0.00801247
+276.36	0.00800984
+276.48	0.00800721
+276.6	0.00800458
+276.72	0.00800196
+276.84	0.00799933
+276.96	0.00799671
+277.08	0.00799409
+277.2	0.00799148
+277.32	0.00798886
+277.44	0.00798625
+277.56	0.00798364
+277.68	0.00798103
+277.8	0.00797843
+277.92	0.00797582
+278.04	0.00797322
+278.16	0.00797062
+278.28	0.00796802
+278.4	0.00796542
+278.52	0.00796283
+278.64	0.00796024
+278.76	0.00795765
+278.88	0.00795506
+279	0.00795247
+279.12	0.00794989
+279.24	0.00794731
+279.36	0.00794473
+279.48	0.00794215
+279.6	0.00793958
+279.72	0.007937
+279.84	0.00793443
+279.96	0.00793186
+280.08	0.00792929
+280.2	0.00792673
+280.32	0.00792416
+280.44	0.0079216
+280.56	0.00791904
+280.68	0.00791649
+280.8	0.00791393
+280.92	0.00791138
+281.04	0.00790883
+281.16	0.00790628
+281.28	0.00790373
+281.4	0.00790118
+281.52	0.00789864
+281.64	0.0078961
+281.76	0.00789356
+281.88	0.00789102
+282	0.00788849
+282.12	0.00788595
+282.24	0.00788342
+282.36	0.00788089
+282.48	0.00787837
+282.6	0.00787584
+282.72	0.00787332
+282.84	0.0078708
+282.96	0.00786828
+283.08	0.00786576
+283.2	0.00786324
+283.32	0.00786073
+283.44	0.00785822
+283.56	0.00785571
+283.68	0.0078532
+283.8	0.0078507
+283.92	0.00784819
+284.04	0.00784569
+284.16	0.00784319
+284.28	0.00784069
+284.4	0.0078382
+284.52	0.0078357
+284.64	0.00783321
+284.76	0.00783072
+284.88	0.00782823
+285	0.00782574
+285.12	0.00782326
+285.24	0.00782078
+285.36	0.0078183
+285.48	0.00781582
+285.6	0.00781334
+285.72	0.00781087
+285.84	0.00780839
+285.96	0.00780592
+286.08	0.00780345
+286.2	0.00780099
+286.32	0.00779852
+286.44	0.00779606
+286.56	0.0077936
+286.68	0.00779114
+286.8	0.00778868
+286.92	0.00778622
+287.04	0.00778377
+287.16	0.00778132
+287.28	0.00777887
+287.4	0.00777642
+287.52	0.00777397
+287.64	0.00777153
+287.76	0.00776909
+287.88	0.00776665
+288	0.00776421
+288.12	0.00776177
+288.24	0.00775933
+288.36	0.0077569
+288.48	0.00775447
+288.6	0.00775204
+288.72	0.00774961
+288.84	0.00774719
+288.96	0.00774476
+289.08	0.00774234
+289.2	0.00773992
+289.32	0.0077375
+289.44	0.00773508
+289.56	0.00773267
+289.68	0.00773026
+289.8	0.00772785
+289.92	0.00772544
+290.04	0.00772303
+290.16	0.00772062
+290.28	0.00771822
+290.4	0.00771582
+290.52	0.00771342
+290.64	0.00771102
+290.76	0.00770862
+290.88	0.00770623
+291	0.00770384
+291.12	0.00770144
+291.24	0.00769906
+291.36	0.00769667
+291.48	0.00769428
+291.6	0.0076919
+291.72	0.00768952
+291.84	0.00768714
+291.96	0.00768476
+292.08	0.00768238
+292.2	0.00768001
+292.32	0.00767763
+292.44	0.00767526
+292.56	0.00767289
+292.68	0.00767053
+292.8	0.00766816
+292.92	0.0076658
+293.04	0.00766343
+293.16	0.00766107
+293.28	0.00765871
+293.4	0.00765636
+293.52	0.007654
+293.64	0.00765165
+293.76	0.0076493
+293.88	0.00764695
+294	0.0076446
+294.12	0.00764225
+294.24	0.00763991
+294.36	0.00763757
+294.48	0.00763523
+294.6	0.00763289
+294.72	0.00763055
+294.84	0.00762821
+294.96	0.00762588
+295.08	0.00762355
+295.2	0.00762122
+295.32	0.00761889
+295.44	0.00761656
+295.56	0.00761424
+295.68	0.00761191
+295.8	0.00760959
+295.92	0.00760727
+296.04	0.00760495
+296.16	0.00760263
+296.28	0.00760032
+296.4	0.00759801
+296.52	0.0075957
+296.64	0.00759339
+296.76	0.00759108
+296.88	0.00758877
+297	0.00758647
+297.12	0.00758416
+297.24	0.00758186
+297.36	0.00757956
+297.48	0.00757727
+297.6	0.00757497
+297.72	0.00757268
+297.84	0.00757038
+297.96	0.00756809
+298.08	0.0075658
+298.2	0.00756352
+298.32	0.00756123
+298.44	0.00755895
+298.56	0.00755666
+298.68	0.00755438
+298.8	0.0075521
+298.92	0.00754983
+299.04	0.00754755
+299.16	0.00754528
+299.28	0.007543
+299.4	0.00754073
+299.52	0.00753846
+299.64	0.0075362
+299.76	0.00753393
+299.88	0.00753167
+300	0.00752941
+300.12	0.00752714
+300.24	0.00752489
+300.36	0.00752263
+300.48	0.00752037
+300.6	0.00751812
+300.72	0.00751587
+300.84	0.00751362
+300.96	0.00751137
+301.08	0.00750912
+301.2	0.00750687
+301.32	0.00750463
+301.44	0.00750239
+301.56	0.00750015
+301.68	0.00749791
+301.8	0.00749567
+301.92	0.00749343
+302.04	0.0074912
+302.16	0.00748897
+302.28	0.00748674
+302.4	0.00748451
+302.52	0.00748228
+302.64	0.00748005
+302.76	0.00747783
+302.88	0.00747561
+303	0.00747339
+303.12	0.00747117
+303.24	0.00746895
+303.36	0.00746673
+303.48	0.00746452
+303.6	0.0074623
+303.72	0.00746009
+303.84	0.00745788
+303.96	0.00745567
+304.08	0.00745347
+304.2	0.00745126
+304.32	0.00744906
+304.44	0.00744686
+304.56	0.00744466
+304.68	0.00744246
+304.8	0.00744026
+304.92	0.00743807
+305.04	0.00743587
+305.16	0.00743368
+305.28	0.00743149
+305.4	0.0074293
+305.52	0.00742711
+305.64	0.00742493
+305.76	0.00742274
+305.88	0.00742056
+306	0.00741838
+306.12	0.0074162
+306.24	0.00741402
+306.36	0.00741184
+306.48	0.00740967
+306.6	0.0074075
+306.72	0.00740532
+306.84	0.00740315
+306.96	0.00740099
+307.08	0.00739882
+307.2	0.00739665
+307.32	0.00739449
+307.44	0.00739233
+307.56	0.00739017
+307.68	0.00738801
+307.8	0.00738585
+307.92	0.00738369
+308.04	0.00738154
+308.16	0.00737938
+308.28	0.00737723
+308.4	0.00737508
+308.52	0.00737293
+308.64	0.00737079
+308.76	0.00736864
+308.88	0.0073665
+309	0.00736436
+309.12	0.00736222
+309.24	0.00736008
+309.36	0.00735794
+309.48	0.0073558
+309.6	0.00735367
+309.72	0.00735154
+309.84	0.0073494
+309.96	0.00734727
+310.08	0.00734514
+310.2	0.00734302
+310.32	0.00734089
+310.44	0.00733877
+310.56	0.00733665
+310.68	0.00733452
+310.8	0.00733241
+310.92	0.00733029
+311.04	0.00732817
+311.16	0.00732606
+311.28	0.00732394
+311.4	0.00732183
+311.52	0.00731972
+311.64	0.00731761
+311.76	0.0073155
+311.88	0.0073134
+312	0.00731129
+312.12	0.00730919
+312.24	0.00730709
+312.36	0.00730499
+312.48	0.00730289
+312.6	0.00730079
+312.72	0.0072987
+312.84	0.0072966
+312.96	0.00729451
+313.08	0.00729242
+313.2	0.00729033
+313.32	0.00728824
+313.44	0.00728616
+313.56	0.00728407
+313.68	0.00728199
+313.8	0.00727991
+313.92	0.00727782
+314.04	0.00727575
+314.16	0.00727367
+314.28	0.00727159
+314.4	0.00726952
+314.52	0.00726744
+314.64	0.00726537
+314.76	0.0072633
+314.88	0.00726123
+315	0.00725916
+315.12	0.0072571
+315.24	0.00725503
+315.36	0.00725297
+315.48	0.00725091
+315.6	0.00724885
+315.72	0.00724679
+315.84	0.00724473
+315.96	0.00724268
+316.08	0.00724062
+316.2	0.00723857
+316.32	0.00723652
+316.44	0.00723447
+316.56	0.00723242
+316.68	0.00723037
+316.8	0.00722832
+316.92	0.00722628
+317.04	0.00722424
+317.16	0.00722219
+317.28	0.00722015
+317.4	0.00721812
+317.52	0.00721608
+317.64	0.00721404
+317.76	0.00721201
+317.88	0.00720997
+318	0.00720794
+318.12	0.00720591
+318.24	0.00720388
+318.36	0.00720186
+318.48	0.00719983
+318.6	0.00719781
+318.72	0.00719578
+318.84	0.00719376
+318.96	0.00719174
+319.08	0.00718972
+319.2	0.0071877
+319.32	0.00718569
+319.44	0.00718367
+319.56	0.00718166
+319.68	0.00717965
+319.8	0.00717764
+319.92	0.00717563
+320.04	0.00717362
+320.16	0.00717161
+320.28	0.00716961
+320.4	0.0071676
+320.52	0.0071656
+320.64	0.0071636
+320.76	0.0071616
+320.88	0.0071596
+321	0.00715761
+321.12	0.00715561
+321.24	0.00715362
+321.36	0.00715162
+321.48	0.00714963
+321.6	0.00714764
+321.72	0.00714565
+321.84	0.00714367
+321.96	0.00714168
+322.08	0.0071397
+322.2	0.00713771
+322.32	0.00713573
+322.44	0.00713375
+322.56	0.00713177
+322.68	0.00712979
+322.8	0.00712782
+322.92	0.00712584
+323.04	0.00712387
+323.16	0.0071219
+323.28	0.00711993
+323.4	0.00711796
+323.52	0.00711599
+323.64	0.00711402
+323.76	0.00711206
+323.88	0.00711009
+324	0.00710813
+324.12	0.00710617
+324.24	0.00710421
+324.36	0.00710225
+324.48	0.00710029
+324.6	0.00709834
+324.72	0.00709638
+324.84	0.00709443
+324.96	0.00709248
+325.08	0.00709053
+325.2	0.00708858
+325.32	0.00708663
+325.44	0.00708468
+325.56	0.00708274
+325.68	0.00708079
+325.8	0.00707885
+325.92	0.00707691
+326.04	0.00707497
+326.16	0.00707303
+326.28	0.00707109
+326.4	0.00706915
+326.52	0.00706722
+326.64	0.00706529
+326.76	0.00706335
+326.88	0.00706142
+327	0.00705949
+327.12	0.00705757
+327.24	0.00705564
+327.36	0.00705371
+327.48	0.00705179
+327.6	0.00704987
+327.72	0.00704794
+327.84	0.00704602
+327.96	0.0070441
+328.08	0.00704219
+328.2	0.00704027
+328.32	0.00703835
+328.44	0.00703644
+328.56	0.00703453
+328.68	0.00703262
+328.8	0.00703071
+328.92	0.0070288
+329.04	0.00702689
+329.16	0.00702498
+329.28	0.00702308
+329.4	0.00702117
+329.52	0.00701927
+329.64	0.00701737
+329.76	0.00701547
+329.88	0.00701357
+330	0.00701167
+330.12	0.00700978
+330.24	0.00700788
+330.36	0.00700599
+330.48	0.0070041
+330.6	0.00700221
+330.72	0.00700032
+330.84	0.00699843
+330.96	0.00699654
+331.08	0.00699466
+331.2	0.00699277
+331.32	0.00699089
+331.44	0.00698901
+331.56	0.00698713
+331.68	0.00698525
+331.8	0.00698337
+331.92	0.00698149
+332.04	0.00697961
+332.16	0.00697774
+332.28	0.00697587
+332.4	0.00697399
+332.52	0.00697212
+332.64	0.00697025
+332.76	0.00696839
+332.88	0.00696652
+333	0.00696465
+333.12	0.00696279
+333.24	0.00696093
+333.36	0.00695906
+333.48	0.0069572
+333.6	0.00695534
+333.72	0.00695348
+333.84	0.00695163
+333.96	0.00694977
+334.08	0.00694792
+334.2	0.00694606
+334.32	0.00694421
+334.44	0.00694236
+334.56	0.00694051
+334.68	0.00693866
+334.8	0.00693681
+334.92	0.00693497
+335.04	0.00693312
+335.16	0.00693128
+335.28	0.00692944
+335.4	0.0069276
+335.52	0.00692576
+335.64	0.00692392
+335.76	0.00692208
+335.88	0.00692024
+336	0.00691841
+336.12	0.00691657
+336.24	0.00691474
+336.36	0.00691291
+336.48	0.00691108
+336.6	0.00690925
+336.72	0.00690742
+336.84	0.0069056
+336.96	0.00690377
+337.08	0.00690195
+337.2	0.00690012
+337.32	0.0068983
+337.44	0.00689648
+337.56	0.00689466
+337.68	0.00689284
+337.8	0.00689103
+337.92	0.00688921
+338.04	0.0068874
+338.16	0.00688558
+338.28	0.00688377
+338.4	0.00688196
+338.52	0.00688015
+338.64	0.00687834
+338.76	0.00687653
+338.88	0.00687473
+339	0.00687292
+339.12	0.00687112
+339.24	0.00686931
+339.36	0.00686751
+339.48	0.00686571
+339.6	0.00686391
+339.72	0.00686211
+339.84	0.00686032
+339.96	0.00685852
+340.08	0.00685673
+340.2	0.00685493
+340.32	0.00685314
+340.44	0.00685135
+340.56	0.00684956
+340.68	0.00684777
+340.8	0.00684598
+340.92	0.0068442
+341.04	0.00684241
+341.16	0.00684063
+341.28	0.00683885
+341.4	0.00683706
+341.52	0.00683528
+341.64	0.0068335
+341.76	0.00683173
+341.88	0.00682995
+342	0.00682817
+342.12	0.0068264
+342.24	0.00682462
+342.36	0.00682285
+342.48	0.00682108
+342.6	0.00681931
+342.72	0.00681754
+342.84	0.00681577
+342.96	0.00681401
+343.08	0.00681224
+343.2	0.00681048
+343.32	0.00680871
+343.44	0.00680695
+343.56	0.00680519
+343.68	0.00680343
+343.8	0.00680167
+343.92	0.00679991
+344.04	0.00679816
+344.16	0.0067964
+344.28	0.00679465
+344.4	0.00679289
+344.52	0.00679114
+344.64	0.00678939
+344.76	0.00678764
+344.88	0.00678589
+345	0.00678415
+345.12	0.0067824
+345.24	0.00678065
+345.36	0.00677891
+345.48	0.00677717
+345.6	0.00677542
+345.72	0.00677368
+345.84	0.00677194
+345.96	0.00677021
+346.08	0.00676847
+346.2	0.00676673
+346.32	0.006765
+346.44	0.00676326
+346.56	0.00676153
+346.68	0.0067598
+346.8	0.00675807
+346.92	0.00675634
+347.04	0.00675461
+347.16	0.00675288
+347.28	0.00675116
+347.4	0.00674943
+347.52	0.00674771
+347.64	0.00674598
+347.76	0.00674426
+347.88	0.00674254
+348	0.00674082
+348.12	0.0067391
+348.24	0.00673738
+348.36	0.00673567
+348.48	0.00673395
+348.6	0.00673224
+348.72	0.00673053
+348.84	0.00672881
+348.96	0.0067271
+349.08	0.00672539
+349.2	0.00672368
+349.32	0.00672198
+349.44	0.00672027
+349.56	0.00671856
+349.68	0.00671686
+349.8	0.00671516
+349.92	0.00671345
+350.04	0.00671175
+350.16	0.00671005
+350.28	0.00670835
+350.4	0.00670666
+350.52	0.00670496
+350.64	0.00670326
+350.76	0.00670157
+350.88	0.00669988
+351	0.00669818
+351.12	0.00669649
+351.24	0.0066948
+351.36	0.00669311
+351.48	0.00669142
+351.6	0.00668974
+351.72	0.00668805
+351.84	0.00668636
+351.96	0.00668468
+352.08	0.006683
+352.2	0.00668132
+352.32	0.00667964
+352.44	0.00667796
+352.56	0.00667628
+352.68	0.0066746
+352.8	0.00667292
+352.92	0.00667125
+353.04	0.00666957
+353.16	0.0066679
+353.28	0.00666623
+353.4	0.00666456
+353.52	0.00666289
+353.64	0.00666122
+353.76	0.00665955
+353.88	0.00665788
+354	0.00665621
+354.12	0.00665455
+354.24	0.00665289
+354.36	0.00665122
+354.48	0.00664956
+354.6	0.0066479
+354.72	0.00664624
+354.84	0.00664458
+354.96	0.00664292
+355.08	0.00664127
+355.2	0.00663961
+355.32	0.00663796
+355.44	0.0066363
+355.56	0.00663465
+355.68	0.006633
+355.8	0.00663135
+355.92	0.0066297
+356.04	0.00662805
+356.16	0.0066264
+356.28	0.00662476
+356.4	0.00662311
+356.52	0.00662147
+356.64	0.00661982
+356.76	0.00661818
+356.88	0.00661654
+357	0.0066149
+357.12	0.00661326
+357.24	0.00661162
+357.36	0.00660999
+357.48	0.00660835
+357.6	0.00660671
+357.72	0.00660508
+357.84	0.00660345
+357.96	0.00660182
+358.08	0.00660018
+358.2	0.00659855
+358.32	0.00659692
+358.44	0.0065953
+358.56	0.00659367
+358.68	0.00659204
+358.8	0.00659042
+358.92	0.00658879
+359.04	0.00658717
+359.16	0.00658555
+359.28	0.00658393
+359.4	0.00658231
+359.52	0.00658069
+359.64	0.00657907
+359.76	0.00657745
+359.88	0.00657584
+360	0.00657422
+360.12	0.00657261
+360.24	0.006571
+360.36	0.00656938
+360.48	0.00656777
+360.6	0.00656616
+360.72	0.00656455
+360.84	0.00656295
+360.96	0.00656134
+361.08	0.00655973
+361.2	0.00655813
+361.32	0.00655652
+361.44	0.00655492
+361.56	0.00655332
+361.68	0.00655172
+361.8	0.00655012
+361.92	0.00654852
+362.04	0.00654692
+362.16	0.00654532
+362.28	0.00654373
+362.4	0.00654213
+362.52	0.00654054
+362.64	0.00653894
+362.76	0.00653735
+362.88	0.00653576
+363	0.00653417
+363.12	0.00653258
+363.24	0.00653099
+363.36	0.0065294
+363.48	0.00652782
+363.6	0.00652623
+363.72	0.00652465
+363.84	0.00652306
+363.96	0.00652148
+364.08	0.0065199
+364.2	0.00651832
+364.32	0.00651674
+364.44	0.00651516
+364.56	0.00651358
+364.68	0.00651201
+364.8	0.00651043
+364.92	0.00650886
+365.04	0.00650728
+365.16	0.00650571
+365.28	0.00650414
+365.4	0.00650257
+365.52	0.006501
+365.64	0.00649943
+365.76	0.00649786
+365.88	0.00649629
+366	0.00649473
+366.12	0.00649316
+366.24	0.0064916
+366.36	0.00649003
+366.48	0.00648847
+366.6	0.00648691
+366.72	0.00648535
+366.84	0.00648379
+366.96	0.00648223
+367.08	0.00648067
+367.2	0.00647912
+367.32	0.00647756
+367.44	0.00647601
+367.56	0.00647445
+367.68	0.0064729
+367.8	0.00647135
+367.92	0.0064698
+368.04	0.00646825
+368.16	0.0064667
+368.28	0.00646515
+368.4	0.0064636
+368.52	0.00646205
+368.64	0.00646051
+368.76	0.00645896
+368.88	0.00645742
+369	0.00645588
+369.12	0.00645434
+369.24	0.0064528
+369.36	0.00645126
+369.48	0.00644972
+369.6	0.00644818
+369.72	0.00644664
+369.84	0.0064451
+369.96	0.00644357
+370.08	0.00644204
+370.2	0.0064405
+370.32	0.00643897
+370.44	0.00643744
+370.56	0.00643591
+370.68	0.00643438
+370.8	0.00643285
+370.92	0.00643132
+371.04	0.00642979
+371.16	0.00642827
+371.28	0.00642674
+371.4	0.00642522
+371.52	0.0064237
+371.64	0.00642217
+371.76	0.00642065
+371.88	0.00641913
+372	0.00641761
+372.12	0.00641609
+372.24	0.00641457
+372.36	0.00641306
+372.48	0.00641154
+372.6	0.00641003
+372.72	0.00640851
+372.84	0.006407
+372.96	0.00640549
+373.08	0.00640398
+373.2	0.00640246
+373.32	0.00640095
+373.44	0.00639945
+373.56	0.00639794
+373.68	0.00639643
+373.8	0.00639492
+373.92	0.00639342
+374.04	0.00639192
+374.16	0.00639041
+374.28	0.00638891
+374.4	0.00638741
+374.52	0.00638591
+374.64	0.00638441
+374.76	0.00638291
+374.88	0.00638141
+375	0.00637991
+375.12	0.00637842
+375.24	0.00637692
+375.36	0.00637543
+375.48	0.00637393
+375.6	0.00637244
+375.72	0.00637095
+375.84	0.00636946
+375.96	0.00636797
+376.08	0.00636648
+376.2	0.00636499
+376.32	0.0063635
+376.44	0.00636202
+376.56	0.00636053
+376.68	0.00635905
+376.8	0.00635756
+376.92	0.00635608
+377.04	0.0063546
+377.16	0.00635312
+377.28	0.00635164
+377.4	0.00635016
+377.52	0.00634868
+377.64	0.0063472
+377.76	0.00634572
+377.88	0.00634425
+378	0.00634277
+378.12	0.0063413
+378.24	0.00633982
+378.36	0.00633835
+378.48	0.00633688
+378.6	0.00633541
+378.72	0.00633394
+378.84	0.00633247
+378.96	0.006331
+379.08	0.00632953
+379.2	0.00632807
+379.32	0.0063266
+379.44	0.00632514
+379.56	0.00632367
+379.68	0.00632221
+379.8	0.00632075
+379.92	0.00631929
+380.04	0.00631783
+380.16	0.00631637
+380.28	0.00631491
+380.4	0.00631345
+380.52	0.00631199
+380.64	0.00631054
+380.76	0.00630908
+380.88	0.00630763
+381	0.00630617
+381.12	0.00630472
+381.24	0.00630327
+381.36	0.00630182
+381.48	0.00630037
+381.6	0.00629892
+381.72	0.00629747
+381.84	0.00629602
+381.96	0.00629457
+382.08	0.00629313
+382.2	0.00629168
+382.32	0.00629024
+382.44	0.0062888
+382.56	0.00628735
+382.68	0.00628591
+382.8	0.00628447
+382.92	0.00628303
+383.04	0.00628159
+383.16	0.00628015
+383.28	0.00627871
+383.4	0.00627728
+383.52	0.00627584
+383.64	0.00627441
+383.76	0.00627297
+383.88	0.00627154
+384	0.00627011
+384.12	0.00626868
+384.24	0.00626724
+384.36	0.00626581
+384.48	0.00626438
+384.6	0.00626296
+384.72	0.00626153
+384.84	0.0062601
+384.96	0.00625868
+385.08	0.00625725
+385.2	0.00625583
+385.32	0.0062544
+385.44	0.00625298
+385.56	0.00625156
+385.68	0.00625014
+385.8	0.00624872
+385.92	0.0062473
+386.04	0.00624588
+386.16	0.00624446
+386.28	0.00624304
+386.4	0.00624163
+386.52	0.00624021
+386.64	0.0062388
+386.76	0.00623739
+386.88	0.00623597
+387	0.00623456
+387.12	0.00623315
+387.24	0.00623174
+387.36	0.00623033
+387.48	0.00622892
+387.6	0.00622751
+387.72	0.00622611
+387.84	0.0062247
+387.96	0.00622329
+388.08	0.00622189
+388.2	0.00622048
+388.32	0.00621908
+388.44	0.00621768
+388.56	0.00621628
+388.68	0.00621488
+388.8	0.00621348
+388.92	0.00621208
+389.04	0.00621068
+389.16	0.00620928
+389.28	0.00620789
+389.4	0.00620649
+389.52	0.0062051
+389.64	0.0062037
+389.76	0.00620231
+389.88	0.00620091
+390	0.00619952
+390.12	0.00619813
+390.24	0.00619674
+390.36	0.00619535
+390.48	0.00619396
+390.6	0.00619258
+390.72	0.00619119
+390.84	0.0061898
+390.96	0.00618842
+391.08	0.00618703
+391.2	0.00618565
+391.32	0.00618426
+391.44	0.00618288
+391.56	0.0061815
+391.68	0.00618012
+391.8	0.00617874
+391.92	0.00617736
+392.04	0.00617598
+392.16	0.0061746
+392.28	0.00617323
+392.4	0.00617185
+392.52	0.00617048
+392.64	0.0061691
+392.76	0.00616773
+392.88	0.00616635
+393	0.00616498
+393.12	0.00616361
+393.24	0.00616224
+393.36	0.00616087
+393.48	0.0061595
+393.6	0.00615813
+393.72	0.00615677
+393.84	0.0061554
+393.96	0.00615403
+394.08	0.00615267
+394.2	0.0061513
+394.32	0.00614994
+394.44	0.00614858
+394.56	0.00614722
+394.68	0.00614585
+394.8	0.00614449
+394.92	0.00614313
+395.04	0.00614177
+395.16	0.00614042
+395.28	0.00613906
+395.4	0.0061377
+395.52	0.00613635
+395.64	0.00613499
+395.76	0.00613364
+395.88	0.00613228
+396	0.00613093
+396.12	0.00612958
+396.24	0.00612823
+396.36	0.00612688
+396.48	0.00612553
+396.6	0.00612418
+396.72	0.00612283
+396.84	0.00612148
+396.96	0.00612013
+397.08	0.00611879
+397.2	0.00611744
+397.32	0.0061161
+397.44	0.00611475
+397.56	0.00611341
+397.68	0.00611207
+397.8	0.00611073
+397.92	0.00610939
+398.04	0.00610805
+398.16	0.00610671
+398.28	0.00610537
+398.4	0.00610403
+398.52	0.00610269
+398.64	0.00610136
+398.76	0.00610002
+398.88	0.00609869
+399	0.00609735
+399.12	0.00609602
+399.24	0.00609469
+399.36	0.00609336
+399.48	0.00609203
+399.6	0.00609069
+399.72	0.00608937
+399.84	0.00608804
+399.96	0.00608671
+400.08	0.00608538
+400.2	0.00608405
+400.32	0.00608273
+400.44	0.0060814
+400.56	0.00608008
+400.68	0.00607876
+400.8	0.00607743
+400.92	0.00607611
+401.04	0.00607479
+401.16	0.00607347
+401.28	0.00607215
+401.4	0.00607083
+401.52	0.00606951
+401.64	0.00606819
+401.76	0.00606688
+401.88	0.00606556
+402	0.00606424
+402.12	0.00606293
+402.24	0.00606162
+402.36	0.0060603
+402.48	0.00605899
+402.6	0.00605768
+402.72	0.00605637
+402.84	0.00605506
+402.96	0.00605375
+403.08	0.00605244
+403.2	0.00605113
+403.32	0.00604982
+403.44	0.00604851
+403.56	0.00604721
+403.68	0.0060459
+403.8	0.0060446
+403.92	0.00604329
+404.04	0.00604199
+404.16	0.00604069
+404.28	0.00603939
+404.4	0.00603809
+404.52	0.00603679
+404.64	0.00603549
+404.76	0.00603419
+404.88	0.00603289
+405	0.00603159
+405.12	0.0060303
+405.24	0.006029
+405.36	0.0060277
+405.48	0.00602641
+405.6	0.00602512
+405.72	0.00602382
+405.84	0.00602253
+405.96	0.00602124
+406.08	0.00601995
+406.2	0.00601866
+406.32	0.00601737
+406.44	0.00601608
+406.56	0.00601479
+406.68	0.0060135
+406.8	0.00601222
+406.92	0.00601093
+407.04	0.00600964
+407.16	0.00600836
+407.28	0.00600708
+407.4	0.00600579
+407.52	0.00600451
+407.64	0.00600323
+407.76	0.00600195
+407.88	0.00600067
+408	0.00599939
+408.12	0.00599811
+408.24	0.00599683
+408.36	0.00599555
+408.48	0.00599428
+408.6	0.005993
+408.72	0.00599172
+408.84	0.00599045
+408.96	0.00598917
+409.08	0.0059879
+409.2	0.00598663
+409.32	0.00598536
+409.44	0.00598408
+409.56	0.00598281
+409.68	0.00598154
+409.8	0.00598028
+409.92	0.00597901
+410.04	0.00597774
+410.16	0.00597647
+410.28	0.00597521
+410.4	0.00597394
+410.52	0.00597268
+410.64	0.00597141
+410.76	0.00597015
+410.88	0.00596889
+411	0.00596762
+411.12	0.00596636
+411.24	0.0059651
+411.36	0.00596384
+411.48	0.00596258
+411.6	0.00596133
+411.72	0.00596007
+411.84	0.00595881
+411.96	0.00595755
+412.08	0.0059563
+412.2	0.00595504
+412.32	0.00595379
+412.44	0.00595254
+412.56	0.00595128
+412.68	0.00595003
+412.8	0.00594878
+412.92	0.00594753
+413.04	0.00594628
+413.16	0.00594503
+413.28	0.00594378
+413.4	0.00594253
+413.52	0.00594128
+413.64	0.00594004
+413.76	0.00593879
+413.88	0.00593754
+414	0.0059363
+414.12	0.00593505
+414.24	0.00593381
+414.36	0.00593257
+414.48	0.00593133
+414.6	0.00593008
+414.72	0.00592884
+414.84	0.0059276
+414.96	0.00592636
+415.08	0.00592512
+415.2	0.00592389
+415.32	0.00592265
+415.44	0.00592141
+415.56	0.00592018
+415.68	0.00591894
+415.8	0.0059177
+415.92	0.00591647
+416.04	0.00591524
+416.16	0.005914
+416.28	0.00591277
+416.4	0.00591154
+416.52	0.00591031
+416.64	0.00590908
+416.76	0.00590785
+416.88	0.00590662
+417	0.00590539
+417.12	0.00590416
+417.24	0.00590294
+417.36	0.00590171
+417.48	0.00590049
+417.6	0.00589926
+417.72	0.00589804
+417.84	0.00589681
+417.96	0.00589559
+418.08	0.00589437
+418.2	0.00589315
+418.32	0.00589192
+418.44	0.0058907
+418.56	0.00588948
+418.68	0.00588827
+418.8	0.00588705
+418.92	0.00588583
+419.04	0.00588461
+419.16	0.0058834
+419.28	0.00588218
+419.4	0.00588096
+419.52	0.00587975
+419.64	0.00587854
+419.76	0.00587732
+419.88	0.00587611
+420	0.0058749
+420.12	0.00587369
+420.24	0.00587248
+420.36	0.00587127
+420.48	0.00587006
+420.6	0.00586885
+420.72	0.00586764
+420.84	0.00586643
+420.96	0.00586523
+421.08	0.00586402
+421.2	0.00586281
+421.32	0.00586161
+421.44	0.0058604
+421.56	0.0058592
+421.68	0.005858
+421.8	0.0058568
+421.92	0.00585559
+422.04	0.00585439
+422.16	0.00585319
+422.28	0.00585199
+422.4	0.00585079
+422.52	0.0058496
+422.64	0.0058484
+422.76	0.0058472
+422.88	0.005846
+423	0.00584481
+423.12	0.00584361
+423.24	0.00584242
+423.36	0.00584122
+423.48	0.00584003
+423.6	0.00583884
+423.72	0.00583765
+423.84	0.00583645
+423.96	0.00583526
+424.08	0.00583407
+424.2	0.00583288
+424.32	0.00583169
+424.44	0.00583051
+424.56	0.00582932
+424.68	0.00582813
+424.8	0.00582694
+424.92	0.00582576
+425.04	0.00582457
+425.16	0.00582339
+425.28	0.0058222
+425.4	0.00582102
+425.52	0.00581984
+425.64	0.00581866
+425.76	0.00581747
+425.88	0.00581629
+426	0.00581511
+426.12	0.00581393
+426.24	0.00581275
+426.36	0.00581158
+426.48	0.0058104
+426.6	0.00580922
+426.72	0.00580804
+426.84	0.00580687
+426.96	0.00580569
+427.08	0.00580452
+427.2	0.00580334
+427.32	0.00580217
+427.44	0.005801
+427.56	0.00579983
+427.68	0.00579865
+427.8	0.00579748
+427.92	0.00579631
+428.04	0.00579514
+428.16	0.00579397
+428.28	0.0057928
+428.4	0.00579164
+428.52	0.00579047
+428.64	0.0057893
+428.76	0.00578814
+428.88	0.00578697
+429	0.00578581
+429.12	0.00578464
+429.24	0.00578348
+429.36	0.00578232
+429.48	0.00578115
+429.6	0.00577999
+429.72	0.00577883
+429.84	0.00577767
+429.96	0.00577651
+430.08	0.00577535
+430.2	0.00577419
+430.32	0.00577303
+430.44	0.00577187
+430.56	0.00577072
+430.68	0.00576956
+430.8	0.00576841
+430.92	0.00576725
+431.04	0.0057661
+431.16	0.00576494
+431.28	0.00576379
+431.4	0.00576263
+431.52	0.00576148
+431.64	0.00576033
+431.76	0.00575918
+431.88	0.00575803
+432	0.00575688
+432.12	0.00575573
+432.24	0.00575458
+432.36	0.00575343
+432.48	0.00575229
+432.6	0.00575114
+432.72	0.00574999
+432.84	0.00574885
+432.96	0.0057477
+433.08	0.00574656
+433.2	0.00574541
+433.32	0.00574427
+433.44	0.00574313
+433.56	0.00574199
+433.68	0.00574084
+433.8	0.0057397
+433.92	0.00573856
+434.04	0.00573742
+434.16	0.00573628
+434.28	0.00573515
+434.4	0.00573401
+434.52	0.00573287
+434.64	0.00573173
+434.76	0.0057306
+434.88	0.00572946
+435	0.00572833
+435.12	0.00572719
+435.24	0.00572606
+435.36	0.00572492
+435.48	0.00572379
+435.6	0.00572266
+435.72	0.00572153
+435.84	0.0057204
+435.96	0.00571927
+436.08	0.00571814
+436.2	0.00571701
+436.32	0.00571588
+436.44	0.00571475
+436.56	0.00571362
+436.68	0.0057125
+436.8	0.00571137
+436.92	0.00571024
+437.04	0.00570912
+437.16	0.00570799
+437.28	0.00570687
+437.4	0.00570575
+437.52	0.00570462
+437.64	0.0057035
+437.76	0.00570238
+437.88	0.00570126
+438	0.00570014
+438.12	0.00569902
+438.24	0.0056979
+438.36	0.00569678
+438.48	0.00569566
+438.6	0.00569454
+438.72	0.00569343
+438.84	0.00569231
+438.96	0.00569119
+439.08	0.00569008
+439.2	0.00568896
+439.32	0.00568785
+439.44	0.00568673
+439.56	0.00568562
+439.68	0.00568451
+439.8	0.0056834
+439.92	0.00568229
+440.04	0.00568117
+440.16	0.00568006
+440.28	0.00567895
+440.4	0.00567785
+440.52	0.00567674
+440.64	0.00567563
+440.76	0.00567452
+440.88	0.00567341
+441	0.00567231
+441.12	0.0056712
+441.24	0.0056701
+441.36	0.00566899
+441.48	0.00566789
+441.6	0.00566678
+441.72	0.00566568
+441.84	0.00566458
+441.96	0.00566348
+442.08	0.00566238
+442.2	0.00566127
+442.32	0.00566017
+442.44	0.00565907
+442.56	0.00565798
+442.68	0.00565688
+442.8	0.00565578
+442.92	0.00565468
+443.04	0.00565358
+443.16	0.00565249
+443.28	0.00565139
+443.4	0.0056503
+443.52	0.0056492
+443.64	0.00564811
+443.76	0.00564702
+443.88	0.00564592
+444	0.00564483
+444.12	0.00564374
+444.24	0.00564265
+444.36	0.00564156
+444.48	0.00564047
+444.6	0.00563938
+444.72	0.00563829
+444.84	0.0056372
+444.96	0.00563611
+445.08	0.00563502
+445.2	0.00563394
+445.32	0.00563285
+445.44	0.00563176
+445.56	0.00563068
+445.68	0.00562959
+445.8	0.00562851
+445.92	0.00562743
+446.04	0.00562634
+446.16	0.00562526
+446.28	0.00562418
+446.4	0.0056231
+446.52	0.00562201
+446.64	0.00562093
+446.76	0.00561985
+446.88	0.00561878
+447	0.0056177
+447.12	0.00561662
+447.24	0.00561554
+447.36	0.00561446
+447.48	0.00561339
+447.6	0.00561231
+447.72	0.00561124
+447.84	0.00561016
+447.96	0.00560909
+448.08	0.00560801
+448.2	0.00560694
+448.32	0.00560587
+448.44	0.00560479
+448.56	0.00560372
+448.68	0.00560265
+448.8	0.00560158
+448.92	0.00560051
+449.04	0.00559944
+449.16	0.00559837
+449.28	0.0055973
+449.4	0.00559623
+449.52	0.00559517
+449.64	0.0055941
+449.76	0.00559303
+449.88	0.00559197
+450	0.0055909
+450.12	0.00558984
+450.24	0.00558877
+450.36	0.00558771
+450.48	0.00558665
+450.6	0.00558558
+450.72	0.00558452
+450.84	0.00558346
+450.96	0.0055824
+451.08	0.00558134
+451.2	0.00558028
+451.32	0.00557922
+451.44	0.00557816
+451.56	0.0055771
+451.68	0.00557604
+451.8	0.00557498
+451.92	0.00557393
+452.04	0.00557287
+452.16	0.00557182
+452.28	0.00557076
+452.4	0.00556971
+452.52	0.00556865
+452.64	0.0055676
+452.76	0.00556654
+452.88	0.00556549
+453	0.00556444
+453.12	0.00556339
+453.24	0.00556234
+453.36	0.00556129
+453.48	0.00556024
+453.6	0.00555919
+453.72	0.00555814
+453.84	0.00555709
+453.96	0.00555604
+454.08	0.00555499
+454.2	0.00555395
+454.32	0.0055529
+454.44	0.00555185
+454.56	0.00555081
+454.68	0.00554976
+454.8	0.00554872
+454.92	0.00554767
+455.04	0.00554663
+455.16	0.00554559
+455.28	0.00554455
+455.4	0.0055435
+455.52	0.00554246
+455.64	0.00554142
+455.76	0.00554038
+455.88	0.00553934
+456	0.0055383
+456.12	0.00553726
+456.24	0.00553623
+456.36	0.00553519
+456.48	0.00553415
+456.6	0.00553311
+456.72	0.00553208
+456.84	0.00553104
+456.96	0.00553001
+457.08	0.00552897
+457.2	0.00552794
+457.32	0.0055269
+457.44	0.00552587
+457.56	0.00552484
+457.68	0.00552381
+457.8	0.00552277
+457.92	0.00552174
+458.04	0.00552071
+458.16	0.00551968
+458.28	0.00551865
+458.4	0.00551762
+458.52	0.0055166
+458.64	0.00551557
+458.76	0.00551454
+458.88	0.00551351
+459	0.00551249
+459.12	0.00551146
+459.24	0.00551043
+459.36	0.00550941
+459.48	0.00550838
+459.6	0.00550736
+459.72	0.00550634
+459.84	0.00550531
+459.96	0.00550429
+460.08	0.00550327
+460.2	0.00550225
+460.32	0.00550123
+460.44	0.00550021
+460.56	0.00549919
+460.68	0.00549817
+460.8	0.00549715
+460.92	0.00549613
+461.04	0.00549511
+461.16	0.00549409
+461.28	0.00549308
+461.4	0.00549206
+461.52	0.00549104
+461.64	0.00549003
+461.76	0.00548901
+461.88	0.005488
+462	0.00548698
+462.12	0.00548597
+462.24	0.00548496
+462.36	0.00548394
+462.48	0.00548293
+462.6	0.00548192
+462.72	0.00548091
+462.84	0.0054799
+462.96	0.00547889
+463.08	0.00547788
+463.2	0.00547687
+463.32	0.00547586
+463.44	0.00547485
+463.56	0.00547384
+463.68	0.00547284
+463.8	0.00547183
+463.92	0.00547082
+464.04	0.00546982
+464.16	0.00546881
+464.28	0.00546781
+464.4	0.0054668
+464.52	0.0054658
+464.64	0.0054648
+464.76	0.00546379
+464.88	0.00546279
+465	0.00546179
+465.12	0.00546079
+465.24	0.00545979
+465.36	0.00545879
+465.48	0.00545779
+465.6	0.00545679
+465.72	0.00545579
+465.84	0.00545479
+465.96	0.00545379
+466.08	0.00545279
+466.2	0.0054518
+466.32	0.0054508
+466.44	0.0054498
+466.56	0.00544881
+466.68	0.00544781
+466.8	0.00544682
+466.92	0.00544582
+467.04	0.00544483
+467.16	0.00544384
+467.28	0.00544284
+467.4	0.00544185
+467.52	0.00544086
+467.64	0.00543987
+467.76	0.00543888
+467.88	0.00543789
+468	0.0054369
+468.12	0.00543591
+468.24	0.00543492
+468.36	0.00543393
+468.48	0.00543294
+468.6	0.00543195
+468.72	0.00543097
+468.84	0.00542998
+468.96	0.00542899
+469.08	0.00542801
+469.2	0.00542702
+469.32	0.00542604
+469.44	0.00542506
+469.56	0.00542407
+469.68	0.00542309
+469.8	0.00542211
+469.92	0.00542112
+470.04	0.00542014
+470.16	0.00541916
+470.28	0.00541818
+470.4	0.0054172
+470.52	0.00541622
+470.64	0.00541524
+470.76	0.00541426
+470.88	0.00541328
+471	0.0054123
+471.12	0.00541132
+471.24	0.00541035
+471.36	0.00540937
+471.48	0.00540839
+471.6	0.00540742
+471.72	0.00540644
+471.84	0.00540547
+471.96	0.00540449
+472.08	0.00540352
+472.2	0.00540255
+472.32	0.00540157
+472.44	0.0054006
+472.56	0.00539963
+472.68	0.00539866
+472.8	0.00539769
+472.92	0.00539672
+473.04	0.00539575
+473.16	0.00539478
+473.28	0.00539381
+473.4	0.00539284
+473.52	0.00539187
+473.64	0.0053909
+473.76	0.00538993
+473.88	0.00538897
+474	0.005388
+474.12	0.00538703
+474.24	0.00538607
+474.36	0.0053851
+474.48	0.00538414
+474.6	0.00538317
+474.72	0.00538221
+474.84	0.00538125
+474.96	0.00538028
+475.08	0.00537932
+475.2	0.00537836
+475.32	0.0053774
+475.44	0.00537644
+475.56	0.00537548
+475.68	0.00537452
+475.8	0.00537356
+475.92	0.0053726
+476.04	0.00537164
+476.16	0.00537068
+476.28	0.00536972
+476.4	0.00536876
+476.52	0.00536781
+476.64	0.00536685
+476.76	0.00536589
+476.88	0.00536494
+477	0.00536398
+477.12	0.00536303
+477.24	0.00536207
+477.36	0.00536112
+477.48	0.00536017
+477.6	0.00535921
+477.72	0.00535826
+477.84	0.00535731
+477.96	0.00535636
+478.08	0.00535541
+478.2	0.00535446
+478.32	0.00535351
+478.44	0.00535256
+478.56	0.00535161
+478.68	0.00535066
+478.8	0.00534971
+478.92	0.00534876
+479.04	0.00534781
+479.16	0.00534687
+479.28	0.00534592
+479.4	0.00534497
+479.52	0.00534403
+479.64	0.00534308
+479.76	0.00534214
+479.88	0.00534119
+480	0.00534025
+480.12	0.00533931
+480.24	0.00533836
+480.36	0.00533742
+480.48	0.00533648
+480.6	0.00533554
+480.72	0.00533459
+480.84	0.00533365
+480.96	0.00533271
+481.08	0.00533177
+481.2	0.00533083
+481.32	0.00532989
+481.44	0.00532896
+481.56	0.00532802
+481.68	0.00532708
+481.8	0.00532614
+481.92	0.0053252
+482.04	0.00532427
+482.16	0.00532333
+482.28	0.0053224
+482.4	0.00532146
+482.52	0.00532053
+482.64	0.00531959
+482.76	0.00531866
+482.88	0.00531772
+483	0.00531679
+483.12	0.00531586
+483.24	0.00531493
+483.36	0.00531399
+483.48	0.00531306
+483.6	0.00531213
+483.72	0.0053112
+483.84	0.00531027
+483.96	0.00530934
+484.08	0.00530841
+484.2	0.00530748
+484.32	0.00530656
+484.44	0.00530563
+484.56	0.0053047
+484.68	0.00530377
+484.8	0.00530285
+484.92	0.00530192
+485.04	0.005301
+485.16	0.00530007
+485.28	0.00529915
+485.4	0.00529822
+485.52	0.0052973
+485.64	0.00529637
+485.76	0.00529545
+485.88	0.00529453
+486	0.00529361
+486.12	0.00529268
+486.24	0.00529176
+486.36	0.00529084
+486.48	0.00528992
+486.6	0.005289
+486.72	0.00528808
+486.84	0.00528716
+486.96	0.00528624
+487.08	0.00528532
+487.2	0.00528441
+487.32	0.00528349
+487.44	0.00528257
+487.56	0.00528165
+487.68	0.00528074
+487.8	0.00527982
+487.92	0.00527891
+488.04	0.00527799
+488.16	0.00527708
+488.28	0.00527616
+488.4	0.00527525
+488.52	0.00527434
+488.64	0.00527342
+488.76	0.00527251
+488.88	0.0052716
+489	0.00527069
+489.12	0.00526978
+489.24	0.00526886
+489.36	0.00526795
+489.48	0.00526704
+489.6	0.00526613
+489.72	0.00526523
+489.84	0.00526432
+489.96	0.00526341
+490.08	0.0052625
+490.2	0.00526159
+490.32	0.00526069
+490.44	0.00525978
+490.56	0.00525887
+490.68	0.00525797
+490.8	0.00525706
+490.92	0.00525616
+491.04	0.00525525
+491.16	0.00525435
+491.28	0.00525344
+491.4	0.00525254
+491.52	0.00525164
+491.64	0.00525073
+491.76	0.00524983
+491.88	0.00524893
+492	0.00524803
+492.12	0.00524713
+492.24	0.00524623
+492.36	0.00524533
+492.48	0.00524443
+492.6	0.00524353
+492.72	0.00524263
+492.84	0.00524173
+492.96	0.00524083
+493.08	0.00523994
+493.2	0.00523904
+493.32	0.00523814
+493.44	0.00523725
+493.56	0.00523635
+493.68	0.00523545
+493.8	0.00523456
+493.92	0.00523367
+494.04	0.00523277
+494.16	0.00523188
+494.28	0.00523098
+494.4	0.00523009
+494.52	0.0052292
+494.64	0.00522831
+494.76	0.00522741
+494.88	0.00522652
+495	0.00522563
+495.12	0.00522474
+495.24	0.00522385
+495.36	0.00522296
+495.48	0.00522207
+495.6	0.00522118
+495.72	0.00522029
+495.84	0.0052194
+495.96	0.00521852
+496.08	0.00521763
+496.2	0.00521674
+496.32	0.00521586
+496.44	0.00521497
+496.56	0.00521408
+496.68	0.0052132
+496.8	0.00521231
+496.92	0.00521143
+497.04	0.00521054
+497.16	0.00520966
+497.28	0.00520878
+497.4	0.00520789
+497.52	0.00520701
+497.64	0.00520613
+497.76	0.00520525
+497.88	0.00520437
+498	0.00520349
+498.12	0.00520261
+498.24	0.00520173
+498.36	0.00520085
+498.48	0.00519997
+498.6	0.00519909
+498.72	0.00519821
+498.84	0.00519733
+498.96	0.00519645
+499.08	0.00519557
+499.2	0.0051947
+499.32	0.00519382
+499.44	0.00519294
+499.56	0.00519207
+499.68	0.00519119
+499.8	0.00519032
+499.92	0.00518944
+500.04	0.00518857
+500.16	0.0051877
+500.28	0.00518682
+500.4	0.00518595
+500.52	0.00518508
+500.64	0.0051842
+500.76	0.00518333
+500.88	0.00518246
+501	0.00518159
+501.12	0.00518072
+501.24	0.00517985
+501.36	0.00517898
+501.48	0.00517811
+501.6	0.00517724
+501.72	0.00517637
+501.84	0.0051755
+501.96	0.00517463
+502.08	0.00517377
+502.2	0.0051729
+502.32	0.00517203
+502.44	0.00517117
+502.56	0.0051703
+502.68	0.00516944
+502.8	0.00516857
+502.92	0.00516771
+503.04	0.00516684
+503.16	0.00516598
+503.28	0.00516511
+503.4	0.00516425
+503.52	0.00516339
+503.64	0.00516252
+503.76	0.00516166
+503.88	0.0051608
+504	0.00515994
+504.12	0.00515908
+504.24	0.00515822
+504.36	0.00515736
+504.48	0.0051565
+504.6	0.00515564
+504.72	0.00515478
+504.84	0.00515392
+504.96	0.00515306
+505.08	0.0051522
+505.2	0.00515135
+505.32	0.00515049
+505.44	0.00514963
+505.56	0.00514878
+505.68	0.00514792
+505.8	0.00514706
+505.92	0.00514621
+506.04	0.00514535
+506.16	0.0051445
+506.28	0.00514365
+506.4	0.00514279
+506.52	0.00514194
+506.64	0.00514109
+506.76	0.00514023
+506.88	0.00513938
+507	0.00513853
+507.12	0.00513768
+507.24	0.00513683
+507.36	0.00513598
+507.48	0.00513513
+507.6	0.00513428
+507.72	0.00513343
+507.84	0.00513258
+507.96	0.00513173
+508.08	0.00513088
+508.2	0.00513003
+508.32	0.00512918
+508.44	0.00512834
+508.56	0.00512749
+508.68	0.00512664
+508.8	0.0051258
+508.92	0.00512495
+509.04	0.00512411
+509.16	0.00512326
+509.28	0.00512242
+509.4	0.00512157
+509.52	0.00512073
+509.64	0.00511988
+509.76	0.00511904
+509.88	0.0051182
+510	0.00511736
+510.12	0.00511651
+510.24	0.00511567
+510.36	0.00511483
+510.48	0.00511399
+510.6	0.00511315
+510.72	0.00511231
+510.84	0.00511147
+510.96	0.00511063
+511.08	0.00510979
+511.2	0.00510895
+511.32	0.00510811
+511.44	0.00510727
+511.56	0.00510644
+511.68	0.0051056
+511.8	0.00510476
+511.92	0.00510393
+512.04	0.00510309
+512.16	0.00510225
+512.28	0.00510142
+512.4	0.00510058
+512.52	0.00509975
+512.64	0.00509892
+512.76	0.00509808
+512.88	0.00509725
+513	0.00509641
+513.12	0.00509558
+513.24	0.00509475
+513.36	0.00509392
+513.48	0.00509309
+513.6	0.00509225
+513.72	0.00509142
+513.84	0.00509059
+513.96	0.00508976
+514.08	0.00508893
+514.2	0.0050881
+514.32	0.00508727
+514.44	0.00508645
+514.56	0.00508562
+514.68	0.00508479
+514.8	0.00508396
+514.92	0.00508313
+515.04	0.00508231
+515.16	0.00508148
+515.28	0.00508065
+515.4	0.00507983
+515.52	0.005079
+515.64	0.00507818
+515.76	0.00507735
+515.88	0.00507653
+516	0.0050757
+516.12	0.00507488
+516.24	0.00507406
+516.36	0.00507323
+516.48	0.00507241
+516.6	0.00507159
+516.72	0.00507077
+516.84	0.00506994
+516.96	0.00506912
+517.08	0.0050683
+517.2	0.00506748
+517.32	0.00506666
+517.44	0.00506584
+517.56	0.00506502
+517.68	0.0050642
+517.8	0.00506339
+517.92	0.00506257
+518.04	0.00506175
+518.16	0.00506093
+518.28	0.00506011
+518.4	0.0050593
+518.52	0.00505848
+518.64	0.00505766
+518.76	0.00505685
+518.88	0.00505603
+519	0.00505522
+519.12	0.0050544
+519.24	0.00505359
+519.36	0.00505277
+519.48	0.00505196
+519.6	0.00505115
+519.72	0.00505033
+519.84	0.00504952
+519.96	0.00504871
+520.08	0.0050479
+520.2	0.00504709
+520.32	0.00504627
+520.44	0.00504546
+520.56	0.00504465
+520.68	0.00504384
+520.8	0.00504303
+520.92	0.00504222
+521.04	0.00504141
+521.16	0.0050406
+521.28	0.0050398
+521.4	0.00503899
+521.52	0.00503818
+521.64	0.00503737
+521.76	0.00503657
+521.88	0.00503576
+522	0.00503495
+522.12	0.00503415
+522.24	0.00503334
+522.36	0.00503254
+522.48	0.00503173
+522.6	0.00503093
+522.72	0.00503012
+522.84	0.00502932
+522.96	0.00502851
+523.08	0.00502771
+523.2	0.00502691
+523.32	0.00502611
+523.44	0.0050253
+523.56	0.0050245
+523.68	0.0050237
+523.8	0.0050229
+523.92	0.0050221
+524.04	0.0050213
+524.16	0.0050205
+524.28	0.0050197
+524.4	0.0050189
+524.52	0.0050181
+524.64	0.0050173
+524.76	0.0050165
+524.88	0.0050157
+525	0.00501491
+525.12	0.00501411
+525.24	0.00501331
+525.36	0.00501252
+525.48	0.00501172
+525.6	0.00501092
+525.72	0.00501013
+525.84	0.00500933
+525.96	0.00500854
+526.08	0.00500774
+526.2	0.00500695
+526.32	0.00500615
+526.44	0.00500536
+526.56	0.00500457
+526.68	0.00500377
+526.8	0.00500298
+526.92	0.00500219
+527.04	0.0050014
+527.16	0.00500061
+527.28	0.00499981
+527.4	0.00499902
+527.52	0.00499823
+527.64	0.00499744
+527.76	0.00499665
+527.88	0.00499586
+528	0.00499507
+528.12	0.00499429
+528.24	0.0049935
+528.36	0.00499271
+528.48	0.00499192
+528.6	0.00499113
+528.72	0.00499035
+528.84	0.00498956
+528.96	0.00498877
+529.08	0.00498799
+529.2	0.0049872
+529.32	0.00498642
+529.44	0.00498563
+529.56	0.00498485
+529.68	0.00498406
+529.8	0.00498328
+529.92	0.00498249
+530.04	0.00498171
+530.16	0.00498093
+530.28	0.00498014
+530.4	0.00497936
+530.52	0.00497858
+530.64	0.0049778
+530.76	0.00497702
+530.88	0.00497623
+531	0.00497545
+531.12	0.00497467
+531.24	0.00497389
+531.36	0.00497311
+531.48	0.00497233
+531.6	0.00497155
+531.72	0.00497078
+531.84	0.00497
+531.96	0.00496922
+532.08	0.00496844
+532.2	0.00496766
+532.32	0.00496689
+532.44	0.00496611
+532.56	0.00496533
+532.68	0.00496456
+532.8	0.00496378
+532.92	0.00496301
+533.04	0.00496223
+533.16	0.00496146
+533.28	0.00496068
+533.4	0.00495991
+533.52	0.00495913
+533.64	0.00495836
+533.76	0.00495759
+533.88	0.00495681
+534	0.00495604
+534.12	0.00495527
+534.24	0.0049545
+534.36	0.00495373
+534.48	0.00495295
+534.6	0.00495218
+534.72	0.00495141
+534.84	0.00495064
+534.96	0.00494987
+535.08	0.0049491
+535.2	0.00494833
+535.32	0.00494756
+535.44	0.0049468
+535.56	0.00494603
+535.68	0.00494526
+535.8	0.00494449
+535.92	0.00494372
+536.04	0.00494296
+536.16	0.00494219
+536.28	0.00494142
+536.4	0.00494066
+536.52	0.00493989
+536.64	0.00493913
+536.76	0.00493836
+536.88	0.0049376
+537	0.00493683
+537.12	0.00493607
+537.24	0.0049353
+537.36	0.00493454
+537.48	0.00493378
+537.6	0.00493301
+537.72	0.00493225
+537.84	0.00493149
+537.96	0.00493073
+538.08	0.00492997
+538.2	0.00492921
+538.32	0.00492844
+538.44	0.00492768
+538.56	0.00492692
+538.68	0.00492616
+538.8	0.0049254
+538.92	0.00492464
+539.04	0.00492389
+539.16	0.00492313
+539.28	0.00492237
+539.4	0.00492161
+539.52	0.00492085
+539.64	0.00492009
+539.76	0.00491934
+539.88	0.00491858
+540	0.00491782
+540.12	0.00491707
+540.24	0.00491631
+540.36	0.00491556
+540.48	0.0049148
+540.6	0.00491405
+540.72	0.00491329
+540.84	0.00491254
+540.96	0.00491178
+541.08	0.00491103
+541.2	0.00491028
+541.32	0.00490952
+541.44	0.00490877
+541.56	0.00490802
+541.68	0.00490727
+541.8	0.00490652
+541.92	0.00490576
+542.04	0.00490501
+542.16	0.00490426
+542.28	0.00490351
+542.4	0.00490276
+542.52	0.00490201
+542.64	0.00490126
+542.76	0.00490051
+542.88	0.00489976
+543	0.00489902
+543.12	0.00489827
+543.24	0.00489752
+543.36	0.00489677
+543.48	0.00489602
+543.6	0.00489528
+543.72	0.00489453
+543.84	0.00489378
+543.96	0.00489304
+544.08	0.00489229
+544.2	0.00489155
+544.32	0.0048908
+544.44	0.00489006
+544.56	0.00488931
+544.68	0.00488857
+544.8	0.00488782
+544.92	0.00488708
+545.04	0.00488634
+545.16	0.00488559
+545.28	0.00488485
+545.4	0.00488411
+545.52	0.00488337
+545.64	0.00488262
+545.76	0.00488188
+545.88	0.00488114
+546	0.0048804
+546.12	0.00487966
+546.24	0.00487892
+546.36	0.00487818
+546.48	0.00487744
+546.6	0.0048767
+546.72	0.00487596
+546.84	0.00487522
+546.96	0.00487449
+547.08	0.00487375
+547.2	0.00487301
+547.32	0.00487227
+547.44	0.00487154
+547.56	0.0048708
+547.68	0.00487006
+547.8	0.00486933
+547.92	0.00486859
+548.04	0.00486786
+548.16	0.00486712
+548.28	0.00486639
+548.4	0.00486565
+548.52	0.00486492
+548.64	0.00486418
+548.76	0.00486345
+548.88	0.00486272
+549	0.00486198
+549.12	0.00486125
+549.24	0.00486052
+549.36	0.00485979
+549.48	0.00485905
+549.6	0.00485832
+549.72	0.00485759
+549.84	0.00485686
+549.96	0.00485613
+550.08	0.0048554
+550.2	0.00485467
+550.32	0.00485394
+550.44	0.00485321
+550.56	0.00485248
+550.68	0.00485175
+550.8	0.00485102
+550.92	0.0048503
+551.04	0.00484957
+551.16	0.00484884
+551.28	0.00484811
+551.4	0.00484739
+551.52	0.00484666
+551.64	0.00484593
+551.76	0.00484521
+551.88	0.00484448
+552	0.00484375
+552.12	0.00484303
+552.24	0.0048423
+552.36	0.00484158
+552.48	0.00484086
+552.6	0.00484013
+552.72	0.00483941
+552.84	0.00483868
+552.96	0.00483796
+553.08	0.00483724
+553.2	0.00483652
+553.32	0.00483579
+553.44	0.00483507
+553.56	0.00483435
+553.68	0.00483363
+553.8	0.00483291
+553.92	0.00483219
+554.04	0.00483147
+554.16	0.00483075
+554.28	0.00483003
+554.4	0.00482931
+554.52	0.00482859
+554.64	0.00482787
+554.76	0.00482715
+554.88	0.00482643
+555	0.00482571
+555.12	0.00482499
+555.24	0.00482428
+555.36	0.00482356
+555.48	0.00482284
+555.6	0.00482213
+555.72	0.00482141
+555.84	0.00482069
+555.96	0.00481998
+556.08	0.00481926
+556.2	0.00481855
+556.32	0.00481783
+556.44	0.00481712
+556.56	0.0048164
+556.68	0.00481569
+556.8	0.00481498
+556.92	0.00481426
+557.04	0.00481355
+557.16	0.00481284
+557.28	0.00481212
+557.4	0.00481141
+557.52	0.0048107
+557.64	0.00480999
+557.76	0.00480928
+557.88	0.00480856
+558	0.00480785
+558.12	0.00480714
+558.24	0.00480643
+558.36	0.00480572
+558.48	0.00480501
+558.6	0.0048043
+558.72	0.00480359
+558.84	0.00480289
+558.96	0.00480218
+559.08	0.00480147
+559.2	0.00480076
+559.32	0.00480005
+559.44	0.00479935
+559.56	0.00479864
+559.68	0.00479793
+559.8	0.00479723
+559.92	0.00479652
+560.04	0.00479581
+560.16	0.00479511
+560.28	0.0047944
+560.4	0.0047937
+560.52	0.00479299
+560.64	0.00479229
+560.76	0.00479158
+560.88	0.00479088
+561	0.00479018
+561.12	0.00478947
+561.24	0.00478877
+561.36	0.00478807
+561.48	0.00478736
+561.6	0.00478666
+561.72	0.00478596
+561.84	0.00478526
+561.96	0.00478456
+562.08	0.00478385
+562.2	0.00478315
+562.32	0.00478245
+562.44	0.00478175
+562.56	0.00478105
+562.68	0.00478035
+562.8	0.00477965
+562.92	0.00477895
+563.04	0.00477826
+563.16	0.00477756
+563.28	0.00477686
+563.4	0.00477616
+563.52	0.00477546
+563.64	0.00477477
+563.76	0.00477407
+563.88	0.00477337
+564	0.00477267
+564.12	0.00477198
+564.24	0.00477128
+564.36	0.00477059
+564.48	0.00476989
+564.6	0.0047692
+564.72	0.0047685
+564.84	0.00476781
+564.96	0.00476711
+565.08	0.00476642
+565.2	0.00476572
+565.32	0.00476503
+565.44	0.00476434
+565.56	0.00476364
+565.68	0.00476295
+565.8	0.00476226
+565.92	0.00476157
+566.04	0.00476087
+566.16	0.00476018
+566.28	0.00475949
+566.4	0.0047588
+566.52	0.00475811
+566.64	0.00475742
+566.76	0.00475673
+566.88	0.00475604
+567	0.00475535
+567.12	0.00475466
+567.24	0.00475397
+567.36	0.00475328
+567.48	0.00475259
+567.6	0.0047519
+567.72	0.00475122
+567.84	0.00475053
+567.96	0.00474984
+568.08	0.00474915
+568.2	0.00474847
+568.32	0.00474778
+568.44	0.00474709
+568.56	0.00474641
+568.68	0.00474572
+568.8	0.00474504
+568.92	0.00474435
+569.04	0.00474367
+569.16	0.00474298
+569.28	0.0047423
+569.4	0.00474161
+569.52	0.00474093
+569.64	0.00474024
+569.76	0.00473956
+569.88	0.00473888
+570	0.0047382
+570.12	0.00473751
+570.24	0.00473683
+570.36	0.00473615
+570.48	0.00473547
+570.6	0.00473478
+570.72	0.0047341
+570.84	0.00473342
+570.96	0.00473274
+571.08	0.00473206
+571.2	0.00473138
+571.32	0.0047307
+571.44	0.00473002
+571.56	0.00472934
+571.68	0.00472866
+571.8	0.00472798
+571.92	0.00472731
+572.04	0.00472663
+572.16	0.00472595
+572.28	0.00472527
+572.4	0.00472459
+572.52	0.00472392
+572.64	0.00472324
+572.76	0.00472256
+572.88	0.00472189
+573	0.00472121
+573.12	0.00472054
+573.24	0.00471986
+573.36	0.00471918
+573.48	0.00471851
+573.6	0.00471783
+573.72	0.00471716
+573.84	0.00471649
+573.96	0.00471581
+574.08	0.00471514
+574.2	0.00471447
+574.32	0.00471379
+574.44	0.00471312
+574.56	0.00471245
+574.68	0.00471177
+574.8	0.0047111
+574.92	0.00471043
+575.04	0.00470976
+575.16	0.00470909
+575.28	0.00470842
+575.4	0.00470775
+575.52	0.00470707
+575.64	0.0047064
+575.76	0.00470573
+575.88	0.00470506
+576	0.0047044
+576.12	0.00470373
+576.24	0.00470306
+576.36	0.00470239
+576.48	0.00470172
+576.6	0.00470105
+576.72	0.00470038
+576.84	0.00469972
+576.96	0.00469905
+577.08	0.00469838
+577.2	0.00469771
+577.32	0.00469705
+577.44	0.00469638
+577.56	0.00469572
+577.68	0.00469505
+577.8	0.00469438
+577.92	0.00469372
+578.04	0.00469305
+578.16	0.00469239
+578.28	0.00469173
+578.4	0.00469106
+578.52	0.0046904
+578.64	0.00468973
+578.76	0.00468907
+578.88	0.00468841
+579	0.00468774
+579.12	0.00468708
+579.24	0.00468642
+579.36	0.00468576
+579.48	0.00468509
+579.6	0.00468443
+579.72	0.00468377
+579.84	0.00468311
+579.96	0.00468245
+580.08	0.00468179
+580.2	0.00468113
+580.32	0.00468047
+580.44	0.00467981
+580.56	0.00467915
+580.68	0.00467849
+580.8	0.00467783
+580.92	0.00467717
+581.04	0.00467651
+581.16	0.00467586
+581.28	0.0046752
+581.4	0.00467454
+581.52	0.00467388
+581.64	0.00467322
+581.76	0.00467257
+581.88	0.00467191
+582	0.00467125
+582.12	0.0046706
+582.24	0.00466994
+582.36	0.00466929
+582.48	0.00466863
+582.6	0.00466798
+582.72	0.00466732
+582.84	0.00466667
+582.96	0.00466601
+583.08	0.00466536
+583.2	0.0046647
+583.32	0.00466405
+583.44	0.0046634
+583.56	0.00466274
+583.68	0.00466209
+583.8	0.00466144
+583.92	0.00466079
+584.04	0.00466013
+584.16	0.00465948
+584.28	0.00465883
+584.4	0.00465818
+584.52	0.00465753
+584.64	0.00465688
+584.76	0.00465623
+584.88	0.00465558
+585	0.00465493
+585.12	0.00465428
+585.24	0.00465363
+585.36	0.00465298
+585.48	0.00465233
+585.6	0.00465168
+585.72	0.00465103
+585.84	0.00465038
+585.96	0.00464973
+586.08	0.00464909
+586.2	0.00464844
+586.32	0.00464779
+586.44	0.00464714
+586.56	0.0046465
+586.68	0.00464585
+586.8	0.0046452
+586.92	0.00464456
+587.04	0.00464391
+587.16	0.00464327
+587.28	0.00464262
+587.4	0.00464198
+587.52	0.00464133
+587.64	0.00464069
+587.76	0.00464004
+587.88	0.0046394
+588	0.00463875
+588.12	0.00463811
+588.24	0.00463747
+588.36	0.00463682
+588.48	0.00463618
+588.6	0.00463554
+588.72	0.0046349
+588.84	0.00463425
+588.96	0.00463361
+589.08	0.00463297
+589.2	0.00463233
+589.32	0.00463169
+589.44	0.00463105
+589.56	0.00463041
+589.68	0.00462977
+589.8	0.00462913
+589.92	0.00462849
+590.04	0.00462785
+590.16	0.00462721
+590.28	0.00462657
+590.4	0.00462593
+590.52	0.00462529
+590.64	0.00462465
+590.76	0.00462401
+590.88	0.00462338
+591	0.00462274
+591.12	0.0046221
+591.24	0.00462146
+591.36	0.00462083
+591.48	0.00462019
+591.6	0.00461955
+591.72	0.00461892
+591.84	0.00461828
+591.96	0.00461765
+592.08	0.00461701
+592.2	0.00461637
+592.32	0.00461574
+592.44	0.0046151
+592.56	0.00461447
+592.68	0.00461384
+592.8	0.0046132
+592.92	0.00461257
+593.04	0.00461193
+593.16	0.0046113
+593.28	0.00461067
+593.4	0.00461004
+593.52	0.0046094
+593.64	0.00460877
+593.76	0.00460814
+593.88	0.00460751
+594	0.00460688
+594.12	0.00460624
+594.24	0.00460561
+594.36	0.00460498
+594.48	0.00460435
+594.6	0.00460372
+594.72	0.00460309
+594.84	0.00460246
+594.96	0.00460183
+595.08	0.0046012
+595.2	0.00460057
+595.32	0.00459994
+595.44	0.00459931
+595.56	0.00459869
+595.68	0.00459806
+595.8	0.00459743
+595.92	0.0045968
+596.04	0.00459617
+596.16	0.00459555
+596.28	0.00459492
+596.4	0.00459429
+596.52	0.00459367
+596.64	0.00459304
+596.76	0.00459241
+596.88	0.00459179
+597	0.00459116
+597.12	0.00459054
+597.24	0.00458991
+597.36	0.00458929
+597.48	0.00458866
+597.6	0.00458804
+597.72	0.00458741
+597.84	0.00458679
+597.96	0.00458617
+598.08	0.00458554
+598.2	0.00458492
+598.32	0.0045843
+598.44	0.00458367
+598.56	0.00458305
+598.68	0.00458243
+598.8	0.00458181
+598.92	0.00458119
+599.04	0.00458056
+599.16	0.00457994
+599.28	0.00457932
+599.4	0.0045787
+599.52	0.00457808
+599.64	0.00457746
+599.76	0.00457684
+599.88	0.00457622
+600	0.0045756
+600.12	0.00457498
+600.24	0.00457436
+600.36	0.00457374
+600.48	0.00457312
+600.6	0.00457251
+600.72	0.00457189
+600.84	0.00457127
+600.96	0.00457065
+601.08	0.00457003
+601.2	0.00456942
+601.32	0.0045688
+601.44	0.00456818
+601.56	0.00456757
+601.68	0.00456695
+601.8	0.00456633
+601.92	0.00456572
+602.04	0.0045651
+602.16	0.00456449
+602.28	0.00456387
+602.4	0.00456326
+602.52	0.00456264
+602.64	0.00456203
+602.76	0.00456141
+602.88	0.0045608
+603	0.00456018
+603.12	0.00455957
+603.24	0.00455896
+603.36	0.00455834
+603.48	0.00455773
+603.6	0.00455712
+603.72	0.00455651
+603.84	0.00455589
+603.96	0.00455528
+604.08	0.00455467
+604.2	0.00455406
+604.32	0.00455345
+604.44	0.00455284
+604.56	0.00455223
+604.68	0.00455161
+604.8	0.004551
+604.92	0.00455039
+605.04	0.00454978
+605.16	0.00454917
+605.28	0.00454856
+605.4	0.00454796
+605.52	0.00454735
+605.64	0.00454674
+605.76	0.00454613
+605.88	0.00454552
+606	0.00454491
+606.12	0.0045443
+606.24	0.0045437
+606.36	0.00454309
+606.48	0.00454248
+606.6	0.00454188
+606.72	0.00454127
+606.84	0.00454066
+606.96	0.00454006
+607.08	0.00453945
+607.2	0.00453884
+607.32	0.00453824
+607.44	0.00453763
+607.56	0.00453703
+607.68	0.00453642
+607.8	0.00453582
+607.92	0.00453521
+608.04	0.00453461
+608.16	0.00453401
+608.28	0.0045334
+608.4	0.0045328
+608.52	0.0045322
+608.64	0.00453159
+608.76	0.00453099
+608.88	0.00453039
+609	0.00452978
+609.12	0.00452918
+609.24	0.00452858
+609.36	0.00452798
+609.48	0.00452738
+609.6	0.00452678
+609.72	0.00452617
+609.84	0.00452557
+609.96	0.00452497
+610.08	0.00452437
+610.2	0.00452377
+610.32	0.00452317
+610.44	0.00452257
+610.56	0.00452197
+610.68	0.00452137
+610.8	0.00452077
+610.92	0.00452018
+611.04	0.00451958
+611.16	0.00451898
+611.28	0.00451838
+611.4	0.00451778
+611.52	0.00451718
+611.64	0.00451659
+611.76	0.00451599
+611.88	0.00451539
+612	0.0045148
+612.12	0.0045142
+612.24	0.0045136
+612.36	0.00451301
+612.48	0.00451241
+612.6	0.00451181
+612.72	0.00451122
+612.84	0.00451062
+612.96	0.00451003
+613.08	0.00450943
+613.2	0.00450884
+613.32	0.00450824
+613.44	0.00450765
+613.56	0.00450706
+613.68	0.00450646
+613.8	0.00450587
+613.92	0.00450528
+614.04	0.00450468
+614.16	0.00450409
+614.28	0.0045035
+614.4	0.00450291
+614.52	0.00450231
+614.64	0.00450172
+614.76	0.00450113
+614.88	0.00450054
+615	0.00449995
+615.12	0.00449936
+615.24	0.00449876
+615.36	0.00449817
+615.48	0.00449758
+615.6	0.00449699
+615.72	0.0044964
+615.84	0.00449581
+615.96	0.00449522
+616.08	0.00449463
+616.2	0.00449404
+616.32	0.00449346
+616.44	0.00449287
+616.56	0.00449228
+616.68	0.00449169
+616.8	0.0044911
+616.92	0.00449051
+617.04	0.00448993
+617.16	0.00448934
+617.28	0.00448875
+617.4	0.00448817
+617.52	0.00448758
+617.64	0.00448699
+617.76	0.00448641
+617.88	0.00448582
+618	0.00448523
+618.12	0.00448465
+618.24	0.00448406
+618.36	0.00448348
+618.48	0.00448289
+618.6	0.00448231
+618.72	0.00448172
+618.84	0.00448114
+618.96	0.00448055
+619.08	0.00447997
+619.2	0.00447939
+619.32	0.0044788
+619.44	0.00447822
+619.56	0.00447764
+619.68	0.00447705
+619.8	0.00447647
+619.92	0.00447589
+620.04	0.00447531
+620.16	0.00447472
+620.28	0.00447414
+620.4	0.00447356
+620.52	0.00447298
+620.64	0.0044724
+620.76	0.00447182
+620.88	0.00447124
+621	0.00447066
+621.12	0.00447008
+621.24	0.0044695
+621.36	0.00446892
+621.48	0.00446834
+621.6	0.00446776
+621.72	0.00446718
+621.84	0.0044666
+621.96	0.00446602
+622.08	0.00446544
+622.2	0.00446486
+622.32	0.00446428
+622.44	0.00446371
+622.56	0.00446313
+622.68	0.00446255
+622.8	0.00446197
+622.92	0.0044614
+623.04	0.00446082
+623.16	0.00446024
+623.28	0.00445967
+623.4	0.00445909
+623.52	0.00445851
+623.64	0.00445794
+623.76	0.00445736
+623.88	0.00445679
+624	0.00445621
+624.12	0.00445564
+624.24	0.00445506
+624.36	0.00445449
+624.48	0.00445391
+624.6	0.00445334
+624.72	0.00445276
+624.84	0.00445219
+624.96	0.00445162
+625.08	0.00445104
+625.2	0.00445047
+625.32	0.0044499
+625.44	0.00444932
+625.56	0.00444875
+625.68	0.00444818
+625.8	0.00444761
+625.92	0.00444704
+626.04	0.00444646
+626.16	0.00444589
+626.28	0.00444532
+626.4	0.00444475
+626.52	0.00444418
+626.64	0.00444361
+626.76	0.00444304
+626.88	0.00444247
+627	0.0044419
+627.12	0.00444133
+627.24	0.00444076
+627.36	0.00444019
+627.48	0.00443962
+627.6	0.00443905
+627.72	0.00443848
+627.84	0.00443791
+627.96	0.00443734
+628.08	0.00443678
+628.2	0.00443621
+628.32	0.00443564
+628.44	0.00443507
+628.56	0.00443451
+628.68	0.00443394
+628.8	0.00443337
+628.92	0.0044328
+629.04	0.00443224
+629.16	0.00443167
+629.28	0.00443111
+629.4	0.00443054
+629.52	0.00442997
+629.64	0.00442941
+629.76	0.00442884
+629.88	0.00442828
+630	0.00442771
+630.12	0.00442715
+630.24	0.00442658
+630.36	0.00442602
+630.48	0.00442546
+630.6	0.00442489
+630.72	0.00442433
+630.84	0.00442376
+630.96	0.0044232
+631.08	0.00442264
+631.2	0.00442208
+631.32	0.00442151
+631.44	0.00442095
+631.56	0.00442039
+631.68	0.00441983
+631.8	0.00441926
+631.92	0.0044187
+632.04	0.00441814
+632.16	0.00441758
+632.28	0.00441702
+632.4	0.00441646
+632.52	0.0044159
+632.64	0.00441534
+632.76	0.00441478
+632.88	0.00441422
+633	0.00441366
+633.12	0.0044131
+633.24	0.00441254
+633.36	0.00441198
+633.48	0.00441142
+633.6	0.00441086
+633.72	0.0044103
+633.84	0.00440974
+633.96	0.00440919
+634.08	0.00440863
+634.2	0.00440807
+634.32	0.00440751
+634.44	0.00440695
+634.56	0.0044064
+634.68	0.00440584
+634.8	0.00440528
+634.92	0.00440473
+635.04	0.00440417
+635.16	0.00440361
+635.28	0.00440306
+635.4	0.0044025
+635.52	0.00440195
+635.64	0.00440139
+635.76	0.00440084
+635.88	0.00440028
+636	0.00439973
+636.12	0.00439917
+636.24	0.00439862
+636.36	0.00439806
+636.48	0.00439751
+636.6	0.00439696
+636.72	0.0043964
+636.84	0.00439585
+636.96	0.00439529
+637.08	0.00439474
+637.2	0.00439419
+637.32	0.00439364
+637.44	0.00439308
+637.56	0.00439253
+637.68	0.00439198
+637.8	0.00439143
+637.92	0.00439088
+638.04	0.00439032
+638.16	0.00438977
+638.28	0.00438922
+638.4	0.00438867
+638.52	0.00438812
+638.64	0.00438757
+638.76	0.00438702
+638.88	0.00438647
+639	0.00438592
+639.12	0.00438537
+639.24	0.00438482
+639.36	0.00438427
+639.48	0.00438372
+639.6	0.00438317
+639.72	0.00438262
+639.84	0.00438208
+639.96	0.00438153
+640.08	0.00438098
+640.2	0.00438043
+640.32	0.00437988
+640.44	0.00437934
+640.56	0.00437879
+640.68	0.00437824
+640.8	0.0043777
+640.92	0.00437715
+641.04	0.0043766
+641.16	0.00437606
+641.28	0.00437551
+641.4	0.00437496
+641.52	0.00437442
+641.64	0.00437387
+641.76	0.00437333
+641.88	0.00437278
+642	0.00437224
+642.12	0.00437169
+642.24	0.00437115
+642.36	0.0043706
+642.48	0.00437006
+642.6	0.00436951
+642.72	0.00436897
+642.84	0.00436843
+642.96	0.00436788
+643.08	0.00436734
+643.2	0.0043668
+643.32	0.00436625
+643.44	0.00436571
+643.56	0.00436517
+643.68	0.00436463
+643.8	0.00436408
+643.92	0.00436354
+644.04	0.004363
+644.16	0.00436246
+644.28	0.00436192
+644.4	0.00436138
+644.52	0.00436084
+644.64	0.0043603
+644.76	0.00435975
+644.88	0.00435921
+645	0.00435867
+645.12	0.00435813
+645.24	0.00435759
+645.36	0.00435705
+645.48	0.00435652
+645.6	0.00435598
+645.72	0.00435544
+645.84	0.0043549
+645.96	0.00435436
+646.08	0.00435382
+646.2	0.00435328
+646.32	0.00435274
+646.44	0.00435221
+646.56	0.00435167
+646.68	0.00435113
+646.8	0.00435059
+646.92	0.00435006
+647.04	0.00434952
+647.16	0.00434898
+647.28	0.00434845
+647.4	0.00434791
+647.52	0.00434737
+647.64	0.00434684
+647.76	0.0043463
+647.88	0.00434577
+648	0.00434523
+648.12	0.0043447
+648.24	0.00434416
+648.36	0.00434363
+648.48	0.00434309
+648.6	0.00434256
+648.72	0.00434202
+648.84	0.00434149
+648.96	0.00434095
+649.08	0.00434042
+649.2	0.00433989
+649.32	0.00433935
+649.44	0.00433882
+649.56	0.00433829
+649.68	0.00433775
+649.8	0.00433722
+649.92	0.00433669
+650.04	0.00433616
+650.16	0.00433563
+650.28	0.00433509
+650.4	0.00433456
+650.52	0.00433403
+650.64	0.0043335
+650.76	0.00433297
+650.88	0.00433244
+651	0.00433191
+651.12	0.00433138
+651.24	0.00433084
+651.36	0.00433031
+651.48	0.00432978
+651.6	0.00432925
+651.72	0.00432873
+651.84	0.0043282
+651.96	0.00432767
+652.08	0.00432714
+652.2	0.00432661
+652.32	0.00432608
+652.44	0.00432555
+652.56	0.00432502
+652.68	0.00432449
+652.8	0.00432397
+652.92	0.00432344
+653.04	0.00432291
+653.16	0.00432238
+653.28	0.00432186
+653.4	0.00432133
+653.52	0.0043208
+653.64	0.00432028
+653.76	0.00431975
+653.88	0.00431922
+654	0.0043187
+654.12	0.00431817
+654.24	0.00431765
+654.36	0.00431712
+654.48	0.00431659
+654.6	0.00431607
+654.72	0.00431554
+654.84	0.00431502
+654.96	0.00431449
+655.08	0.00431397
+655.2	0.00431345
+655.32	0.00431292
+655.44	0.0043124
+655.56	0.00431187
+655.68	0.00431135
+655.8	0.00431083
+655.92	0.0043103
+656.04	0.00430978
+656.16	0.00430926
+656.28	0.00430874
+656.4	0.00430821
+656.52	0.00430769
+656.64	0.00430717
+656.76	0.00430665
+656.88	0.00430612
+657	0.0043056
+657.12	0.00430508
+657.24	0.00430456
+657.36	0.00430404
+657.48	0.00430352
+657.6	0.004303
+657.72	0.00430248
+657.84	0.00430196
+657.96	0.00430144
+658.08	0.00430092
+658.2	0.0043004
+658.32	0.00429988
+658.44	0.00429936
+658.56	0.00429884
+658.68	0.00429832
+658.8	0.0042978
+658.92	0.00429728
+659.04	0.00429676
+659.16	0.00429625
+659.28	0.00429573
+659.4	0.00429521
+659.52	0.00429469
+659.64	0.00429417
+659.76	0.00429366
+659.88	0.00429314
+660	0.00429262
+660.12	0.00429211
+660.24	0.00429159
+660.36	0.00429107
+660.48	0.00429056
+660.6	0.00429004
+660.72	0.00428952
+660.84	0.00428901
+660.96	0.00428849
+661.08	0.00428798
+661.2	0.00428746
+661.32	0.00428695
+661.44	0.00428643
+661.56	0.00428592
+661.68	0.0042854
+661.8	0.00428489
+661.92	0.00428437
+662.04	0.00428386
+662.16	0.00428335
+662.28	0.00428283
+662.4	0.00428232
+662.52	0.00428181
+662.64	0.00428129
+662.76	0.00428078
+662.88	0.00428027
+663	0.00427975
+663.12	0.00427924
+663.24	0.00427873
+663.36	0.00427822
+663.48	0.00427771
+663.6	0.00427719
+663.72	0.00427668
+663.84	0.00427617
+663.96	0.00427566
+664.08	0.00427515
+664.2	0.00427464
+664.32	0.00427413
+664.44	0.00427362
+664.56	0.00427311
+664.68	0.0042726
+664.8	0.00427209
+664.92	0.00427158
+665.04	0.00427107
+665.16	0.00427056
+665.28	0.00427005
+665.4	0.00426954
+665.52	0.00426903
+665.64	0.00426852
+665.76	0.00426801
+665.88	0.0042675
+666	0.004267
+666.12	0.00426649
+666.24	0.00426598
+666.36	0.00426547
+666.48	0.00426496
+666.6	0.00426446
+666.72	0.00426395
+666.84	0.00426344
+666.96	0.00426294
+667.08	0.00426243
+667.2	0.00426192
+667.32	0.00426142
+667.44	0.00426091
+667.56	0.0042604
+667.68	0.0042599
+667.8	0.00425939
+667.92	0.00425889
+668.04	0.00425838
+668.16	0.00425788
+668.28	0.00425737
+668.4	0.00425687
+668.52	0.00425636
+668.64	0.00425586
+668.76	0.00425535
+668.88	0.00425485
+669	0.00425435
+669.12	0.00425384
+669.24	0.00425334
+669.36	0.00425284
+669.48	0.00425233
+669.6	0.00425183
+669.72	0.00425133
+669.84	0.00425082
+669.96	0.00425032
+670.08	0.00424982
+670.2	0.00424932
+670.32	0.00424881
+670.44	0.00424831
+670.56	0.00424781
+670.68	0.00424731
+670.8	0.00424681
+670.92	0.00424631
+671.04	0.00424581
+671.16	0.00424531
+671.28	0.0042448
+671.4	0.0042443
+671.52	0.0042438
+671.64	0.0042433
+671.76	0.0042428
+671.88	0.0042423
+672	0.0042418
+672.12	0.00424131
+672.24	0.00424081
+672.36	0.00424031
+672.48	0.00423981
+672.6	0.00423931
+672.72	0.00423881
+672.84	0.00423831
+672.96	0.00423781
+673.08	0.00423732
+673.2	0.00423682
+673.32	0.00423632
+673.44	0.00423582
+673.56	0.00423533
+673.68	0.00423483
+673.8	0.00423433
+673.92	0.00423383
+674.04	0.00423334
+674.16	0.00423284
+674.28	0.00423234
+674.4	0.00423185
+674.52	0.00423135
+674.64	0.00423086
+674.76	0.00423036
+674.88	0.00422986
+675	0.00422937
+675.12	0.00422887
+675.24	0.00422838
+675.36	0.00422788
+675.48	0.00422739
+675.6	0.00422689
+675.72	0.0042264
+675.84	0.00422591
+675.96	0.00422541
+676.08	0.00422492
+676.2	0.00422442
+676.32	0.00422393
+676.44	0.00422344
+676.56	0.00422294
+676.68	0.00422245
+676.8	0.00422196
+676.92	0.00422147
+677.04	0.00422097
+677.16	0.00422048
+677.28	0.00421999
+677.4	0.0042195
+677.52	0.004219
+677.64	0.00421851
+677.76	0.00421802
+677.88	0.00421753
+678	0.00421704
+678.12	0.00421655
+678.24	0.00421606
+678.36	0.00421557
+678.48	0.00421508
+678.6	0.00421458
+678.72	0.00421409
+678.84	0.0042136
+678.96	0.00421311
+679.08	0.00421263
+679.2	0.00421214
+679.32	0.00421165
+679.44	0.00421116
+679.56	0.00421067
+679.68	0.00421018
+679.8	0.00420969
+679.92	0.0042092
+680.04	0.00420871
+680.16	0.00420822
+680.28	0.00420774
+680.4	0.00420725
+680.52	0.00420676
+680.64	0.00420627
+680.76	0.00420579
+680.88	0.0042053
+681	0.00420481
+681.12	0.00420432
+681.24	0.00420384
+681.36	0.00420335
+681.48	0.00420286
+681.6	0.00420238
+681.72	0.00420189
+681.84	0.00420141
+681.96	0.00420092
+682.08	0.00420044
+682.2	0.00419995
+682.32	0.00419946
+682.44	0.00419898
+682.56	0.00419849
+682.68	0.00419801
+682.8	0.00419752
+682.92	0.00419704
+683.04	0.00419656
+683.16	0.00419607
+683.28	0.00419559
+683.4	0.0041951
+683.52	0.00419462
+683.64	0.00419414
+683.76	0.00419365
+683.88	0.00419317
+684	0.00419269
+684.12	0.0041922
+684.24	0.00419172
+684.36	0.00419124
+684.48	0.00419076
+684.6	0.00419027
+684.72	0.00418979
+684.84	0.00418931
+684.96	0.00418883
+685.08	0.00418835
+685.2	0.00418787
+685.32	0.00418738
+685.44	0.0041869
+685.56	0.00418642
+685.68	0.00418594
+685.8	0.00418546
+685.92	0.00418498
+686.04	0.0041845
+686.16	0.00418402
+686.28	0.00418354
+686.4	0.00418306
+686.52	0.00418258
+686.64	0.0041821
+686.76	0.00418162
+686.88	0.00418114
+687	0.00418066
+687.12	0.00418018
+687.24	0.00417971
+687.36	0.00417923
+687.48	0.00417875
+687.6	0.00417827
+687.72	0.00417779
+687.84	0.00417731
+687.96	0.00417684
+688.08	0.00417636
+688.2	0.00417588
+688.32	0.0041754
+688.44	0.00417493
+688.56	0.00417445
+688.68	0.00417397
+688.8	0.0041735
+688.92	0.00417302
+689.04	0.00417254
+689.16	0.00417207
+689.28	0.00417159
+689.4	0.00417112
+689.52	0.00417064
+689.64	0.00417016
+689.76	0.00416969
+689.88	0.00416921
+690	0.00416874
+690.12	0.00416826
+690.24	0.00416779
+690.36	0.00416732
+690.48	0.00416684
+690.6	0.00416637
+690.72	0.00416589
+690.84	0.00416542
+690.96	0.00416494
+691.08	0.00416447
+691.2	0.004164
+691.32	0.00416352
+691.44	0.00416305
+691.56	0.00416258
+691.68	0.00416211
+691.8	0.00416163
+691.92	0.00416116
+692.04	0.00416069
+692.16	0.00416022
+692.28	0.00415974
+692.4	0.00415927
+692.52	0.0041588
+692.64	0.00415833
+692.76	0.00415786
+692.88	0.00415739
+693	0.00415691
+693.12	0.00415644
+693.24	0.00415597
+693.36	0.0041555
+693.48	0.00415503
+693.6	0.00415456
+693.72	0.00415409
+693.84	0.00415362
+693.96	0.00415315
+694.08	0.00415268
+694.2	0.00415221
+694.32	0.00415174
+694.44	0.00415127
+694.56	0.0041508
+694.68	0.00415033
+694.8	0.00414987
+694.92	0.0041494
+695.04	0.00414893
+695.16	0.00414846
+695.28	0.00414799
+695.4	0.00414752
+695.52	0.00414706
+695.64	0.00414659
+695.76	0.00414612
+695.88	0.00414565
+696	0.00414519
+696.12	0.00414472
+696.24	0.00414425
+696.36	0.00414378
+696.48	0.00414332
+696.6	0.00414285
+696.72	0.00414239
+696.84	0.00414192
+696.96	0.00414145
+697.08	0.00414099
+697.2	0.00414052
+697.32	0.00414006
+697.44	0.00413959
+697.56	0.00413913
+697.68	0.00413866
+697.8	0.0041382
+697.92	0.00413773
+698.04	0.00413727
+698.16	0.0041368
+698.28	0.00413634
+698.4	0.00413587
+698.52	0.00413541
+698.64	0.00413494
+698.76	0.00413448
+698.88	0.00413402
+699	0.00413355
+699.12	0.00413309
+699.24	0.00413263
+699.36	0.00413216
+699.48	0.0041317
+699.6	0.00413124
+699.72	0.00413078
+699.84	0.00413031
+699.96	0.00412985
+700.08	0.00412939
+700.2	0.00412893
+700.32	0.00412847
+700.44	0.004128
+700.56	0.00412754
+700.68	0.00412708
+700.8	0.00412662
+700.92	0.00412616
+701.04	0.0041257
+701.16	0.00412524
+701.28	0.00412478
+701.4	0.00412432
+701.52	0.00412386
+701.64	0.0041234
+701.76	0.00412294
+701.88	0.00412248
+702	0.00412202
+702.12	0.00412156
+702.24	0.0041211
+702.36	0.00412064
+702.48	0.00412018
+702.6	0.00411972
+702.72	0.00411926
+702.84	0.0041188
+702.96	0.00411834
+703.08	0.00411789
+703.2	0.00411743
+703.32	0.00411697
+703.44	0.00411651
+703.56	0.00411605
+703.68	0.0041156
+703.8	0.00411514
+703.92	0.00411468
+704.04	0.00411423
+704.16	0.00411377
+704.28	0.00411331
+704.4	0.00411285
+704.52	0.0041124
+704.64	0.00411194
+704.76	0.00411149
+704.88	0.00411103
+705	0.00411057
+705.12	0.00411012
+705.24	0.00410966
+705.36	0.00410921
+705.48	0.00410875
+705.6	0.0041083
+705.72	0.00410784
+705.84	0.00410739
+705.96	0.00410693
+706.08	0.00410648
+706.2	0.00410602
+706.32	0.00410557
+706.44	0.00410511
+706.56	0.00410466
+706.68	0.00410421
+706.8	0.00410375
+706.92	0.0041033
+707.04	0.00410284
+707.16	0.00410239
+707.28	0.00410194
+707.4	0.00410149
+707.52	0.00410103
+707.64	0.00410058
+707.76	0.00410013
+707.88	0.00409967
+708	0.00409922
+708.12	0.00409877
+708.24	0.00409832
+708.36	0.00409787
+708.48	0.00409742
+708.6	0.00409696
+708.72	0.00409651
+708.84	0.00409606
+708.96	0.00409561
+709.08	0.00409516
+709.2	0.00409471
+709.32	0.00409426
+709.44	0.00409381
+709.56	0.00409336
+709.68	0.00409291
+709.8	0.00409246
+709.92	0.00409201
+710.04	0.00409156
+710.16	0.00409111
+710.28	0.00409066
+710.4	0.00409021
+710.52	0.00408976
+710.64	0.00408931
+710.76	0.00408886
+710.88	0.00408841
+711	0.00408796
+711.12	0.00408752
+711.24	0.00408707
+711.36	0.00408662
+711.48	0.00408617
+711.6	0.00408572
+711.72	0.00408527
+711.84	0.00408483
+711.96	0.00408438
+712.08	0.00408393
+712.2	0.00408349
+712.32	0.00408304
+712.44	0.00408259
+712.56	0.00408214
+712.68	0.0040817
+712.8	0.00408125
+712.92	0.00408081
+713.04	0.00408036
+713.16	0.00407991
+713.28	0.00407947
+713.4	0.00407902
+713.52	0.00407858
+713.64	0.00407813
+713.76	0.00407769
+713.88	0.00407724
+714	0.00407679
+714.12	0.00407635
+714.24	0.00407591
+714.36	0.00407546
+714.48	0.00407502
+714.6	0.00407457
+714.72	0.00407413
+714.84	0.00407368
+714.96	0.00407324
+715.08	0.0040728
+715.2	0.00407235
+715.32	0.00407191
+715.44	0.00407147
+715.56	0.00407102
+715.68	0.00407058
+715.8	0.00407014
+715.92	0.00406969
+716.04	0.00406925
+716.16	0.00406881
+716.28	0.00406837
+716.4	0.00406792
+716.52	0.00406748
+716.64	0.00406704
+716.76	0.0040666
+716.88	0.00406616
+717	0.00406572
+717.12	0.00406527
+717.24	0.00406483
+717.36	0.00406439
+717.48	0.00406395
+717.6	0.00406351
+717.72	0.00406307
+717.84	0.00406263
+717.96	0.00406219
+718.08	0.00406175
+718.2	0.00406131
+718.32	0.00406087
+718.44	0.00406043
+718.56	0.00405999
+718.68	0.00405955
+718.8	0.00405911
+718.92	0.00405867
+719.04	0.00405823
+719.16	0.00405779
+719.28	0.00405735
+719.4	0.00405692
+719.52	0.00405648
+719.64	0.00405604
+719.76	0.0040556
+719.88	0.00405516
+720	0.00405472
+720.12	0.00405429
+720.24	0.00405385
+720.36	0.00405341
+720.48	0.00405297
+720.6	0.00405254
+720.72	0.0040521
+720.84	0.00405166
+720.96	0.00405123
+721.08	0.00405079
+721.2	0.00405035
+721.32	0.00404992
+721.44	0.00404948
+721.56	0.00404904
+721.68	0.00404861
+721.8	0.00404817
+721.92	0.00404774
+722.04	0.0040473
+722.16	0.00404686
+722.28	0.00404643
+722.4	0.00404599
+722.52	0.00404556
+722.64	0.00404512
+722.76	0.00404469
+722.88	0.00404426
+723	0.00404382
+723.12	0.00404339
+723.24	0.00404295
+723.36	0.00404252
+723.48	0.00404208
+723.6	0.00404165
+723.72	0.00404122
+723.84	0.00404078
+723.96	0.00404035
+724.08	0.00403992
+724.2	0.00403948
+724.32	0.00403905
+724.44	0.00403862
+724.56	0.00403818
+724.68	0.00403775
+724.8	0.00403732
+724.92	0.00403689
+725.04	0.00403646
+725.16	0.00403602
+725.28	0.00403559
+725.4	0.00403516
+725.52	0.00403473
+725.64	0.0040343
+725.76	0.00403387
+725.88	0.00403343
+726	0.004033
+726.12	0.00403257
+726.24	0.00403214
+726.36	0.00403171
+726.48	0.00403128
+726.6	0.00403085
+726.72	0.00403042
+726.84	0.00402999
+726.96	0.00402956
+727.08	0.00402913
+727.2	0.0040287
+727.32	0.00402827
+727.44	0.00402784
+727.56	0.00402741
+727.68	0.00402698
+727.8	0.00402655
+727.92	0.00402612
+728.04	0.0040257
+728.16	0.00402527
+728.28	0.00402484
+728.4	0.00402441
+728.52	0.00402398
+728.64	0.00402355
+728.76	0.00402313
+728.88	0.0040227
+729	0.00402227
+729.12	0.00402184
+729.24	0.00402142
+729.36	0.00402099
+729.48	0.00402056
+729.6	0.00402013
+729.72	0.00401971
+729.84	0.00401928
+729.96	0.00401885
+730.08	0.00401843
+730.2	0.004018
+730.32	0.00401758
+730.44	0.00401715
+730.56	0.00401672
+730.68	0.0040163
+730.8	0.00401587
+730.92	0.00401545
+731.04	0.00401502
+731.16	0.0040146
+731.28	0.00401417
+731.4	0.00401375
+731.52	0.00401332
+731.64	0.0040129
+731.76	0.00401247
+731.88	0.00401205
+732	0.00401162
+732.12	0.0040112
+732.24	0.00401077
+732.36	0.00401035
+732.48	0.00400993
+732.6	0.0040095
+732.72	0.00400908
+732.84	0.00400866
+732.96	0.00400823
+733.08	0.00400781
+733.2	0.00400739
+733.32	0.00400696
+733.44	0.00400654
+733.56	0.00400612
+733.68	0.0040057
+733.8	0.00400527
+733.92	0.00400485
+734.04	0.00400443
+734.16	0.00400401
+734.28	0.00400359
+734.4	0.00400316
+734.52	0.00400274
+734.64	0.00400232
+734.76	0.0040019
+734.88	0.00400148
+735	0.00400106
+735.12	0.00400064
+735.24	0.00400022
+735.36	0.0039998
+735.48	0.00399937
+735.6	0.00399895
+735.72	0.00399853
+735.84	0.00399811
+735.96	0.00399769
+736.08	0.00399727
+736.2	0.00399685
+736.32	0.00399643
+736.44	0.00399602
+736.56	0.0039956
+736.68	0.00399518
+736.8	0.00399476
+736.92	0.00399434
+737.04	0.00399392
+737.16	0.0039935
+737.28	0.00399308
+737.4	0.00399266
+737.52	0.00399225
+737.64	0.00399183
+737.76	0.00399141
+737.88	0.00399099
+738	0.00399057
+738.12	0.00399016
+738.24	0.00398974
+738.36	0.00398932
+738.48	0.00398891
+738.6	0.00398849
+738.72	0.00398807
+738.84	0.00398765
+738.96	0.00398724
+739.08	0.00398682
+739.2	0.0039864
+739.32	0.00398599
+739.44	0.00398557
+739.56	0.00398516
+739.68	0.00398474
+739.8	0.00398432
+739.92	0.00398391
+740.04	0.00398349
+740.16	0.00398308
+740.28	0.00398266
+740.4	0.00398225
+740.52	0.00398183
+740.64	0.00398142
+740.76	0.003981
+740.88	0.00398059
+741	0.00398017
+741.12	0.00397976
+741.24	0.00397934
+741.36	0.00397893
+741.48	0.00397852
+741.6	0.0039781
+741.72	0.00397769
+741.84	0.00397728
+741.96	0.00397686
+742.08	0.00397645
+742.2	0.00397604
+742.32	0.00397562
+742.44	0.00397521
+742.56	0.0039748
+742.68	0.00397438
+742.8	0.00397397
+742.92	0.00397356
+743.04	0.00397315
+743.16	0.00397273
+743.28	0.00397232
+743.4	0.00397191
+743.52	0.0039715
+743.64	0.00397109
+743.76	0.00397067
+743.88	0.00397026
+744	0.00396985
+744.12	0.00396944
+744.24	0.00396903
+744.36	0.00396862
+744.48	0.00396821
+744.6	0.0039678
+744.72	0.00396739
+744.84	0.00396698
+744.96	0.00396657
+745.08	0.00396616
+745.2	0.00396575
+745.32	0.00396534
+745.44	0.00396493
+745.56	0.00396452
+745.68	0.00396411
+745.8	0.0039637
+745.92	0.00396329
+746.04	0.00396288
+746.16	0.00396247
+746.28	0.00396206
+746.4	0.00396165
+746.52	0.00396124
+746.64	0.00396084
+746.76	0.00396043
+746.88	0.00396002
+747	0.00395961
+747.12	0.0039592
+747.24	0.00395879
+747.36	0.00395839
+747.48	0.00395798
+747.6	0.00395757
+747.72	0.00395716
+747.84	0.00395676
+747.96	0.00395635
+748.08	0.00395594
+748.2	0.00395554
+748.32	0.00395513
+748.44	0.00395472
+748.56	0.00395432
+748.68	0.00395391
+748.8	0.0039535
+748.92	0.0039531
+749.04	0.00395269
+749.16	0.00395229
+749.28	0.00395188
+749.4	0.00395147
+749.52	0.00395107
+749.64	0.00395066
+749.76	0.00395026
+749.88	0.00394985
+750	0.00394945
+750.12	0.00394904
+750.24	0.00394864
+750.36	0.00394823
+750.48	0.00394783
+750.6	0.00394742
+750.72	0.00394702
+750.84	0.00394662
+750.96	0.00394621
+751.08	0.00394581
+751.2	0.0039454
+751.32	0.003945
+751.44	0.0039446
+751.56	0.00394419
+751.68	0.00394379
+751.8	0.00394339
+751.92	0.00394298
+752.04	0.00394258
+752.16	0.00394218
+752.28	0.00394178
+752.4	0.00394137
+752.52	0.00394097
+752.64	0.00394057
+752.76	0.00394017
+752.88	0.00393976
+753	0.00393936
+753.12	0.00393896
+753.24	0.00393856
+753.36	0.00393816
+753.48	0.00393776
+753.6	0.00393735
+753.72	0.00393695
+753.84	0.00393655
+753.96	0.00393615
+754.08	0.00393575
+754.2	0.00393535
+754.32	0.00393495
+754.44	0.00393455
+754.56	0.00393415
+754.68	0.00393375
+754.8	0.00393335
+754.92	0.00393295
+755.04	0.00393255
+755.16	0.00393215
+755.28	0.00393175
+755.4	0.00393135
+755.52	0.00393095
+755.64	0.00393055
+755.76	0.00393015
+755.88	0.00392975
+756	0.00392935
+756.12	0.00392895
+756.24	0.00392856
+756.36	0.00392816
+756.48	0.00392776
+756.6	0.00392736
+756.72	0.00392696
+756.84	0.00392656
+756.96	0.00392617
+757.08	0.00392577
+757.2	0.00392537
+757.32	0.00392497
+757.44	0.00392458
+757.56	0.00392418
+757.68	0.00392378
+757.8	0.00392338
+757.92	0.00392299
+758.04	0.00392259
+758.16	0.00392219
+758.28	0.0039218
+758.4	0.0039214
+758.52	0.003921
+758.64	0.00392061
+758.76	0.00392021
+758.88	0.00391982
+759	0.00391942
+759.12	0.00391902
+759.24	0.00391863
+759.36	0.00391823
+759.48	0.00391784
+759.6	0.00391744
+759.72	0.00391705
+759.84	0.00391665
+759.96	0.00391626
+760.08	0.00391586
+760.2	0.00391547
+760.32	0.00391507
+760.44	0.00391468
+760.56	0.00391428
+760.68	0.00391389
+760.8	0.0039135
+760.92	0.0039131
+761.04	0.00391271
+761.16	0.00391232
+761.28	0.00391192
+761.4	0.00391153
+761.52	0.00391113
+761.64	0.00391074
+761.76	0.00391035
+761.88	0.00390996
+762	0.00390956
+762.12	0.00390917
+762.24	0.00390878
+762.36	0.00390838
+762.48	0.00390799
+762.6	0.0039076
+762.72	0.00390721
+762.84	0.00390682
+762.96	0.00390642
+763.08	0.00390603
+763.2	0.00390564
+763.32	0.00390525
+763.44	0.00390486
+763.56	0.00390447
+763.68	0.00390407
+763.8	0.00390368
+763.92	0.00390329
+764.04	0.0039029
+764.16	0.00390251
+764.28	0.00390212
+764.4	0.00390173
+764.52	0.00390134
+764.64	0.00390095
+764.76	0.00390056
+764.88	0.00390017
+765	0.00389978
+765.12	0.00389939
+765.24	0.003899
+765.36	0.00389861
+765.48	0.00389822
+765.6	0.00389783
+765.72	0.00389744
+765.84	0.00389705
+765.96	0.00389666
+766.08	0.00389627
+766.2	0.00389589
+766.32	0.0038955
+766.44	0.00389511
+766.56	0.00389472
+766.68	0.00389433
+766.8	0.00389394
+766.92	0.00389356
+767.04	0.00389317
+767.16	0.00389278
+767.28	0.00389239
+767.4	0.003892
+767.52	0.00389162
+767.64	0.00389123
+767.76	0.00389084
+767.88	0.00389046
+768	0.00389007
+768.12	0.00388968
+768.24	0.00388929
+768.36	0.00388891
+768.48	0.00388852
+768.6	0.00388814
+768.72	0.00388775
+768.84	0.00388736
+768.96	0.00388698
+769.08	0.00388659
+769.2	0.0038862
+769.32	0.00388582
+769.44	0.00388543
+769.56	0.00388505
+769.68	0.00388466
+769.8	0.00388428
+769.92	0.00388389
+770.04	0.00388351
+770.16	0.00388312
+770.28	0.00388274
+770.4	0.00388235
+770.52	0.00388197
+770.64	0.00388158
+770.76	0.0038812
+770.88	0.00388082
+771	0.00388043
+771.12	0.00388005
+771.24	0.00387966
+771.36	0.00387928
+771.48	0.0038789
+771.6	0.00387851
+771.72	0.00387813
+771.84	0.00387775
+771.96	0.00387736
+772.08	0.00387698
+772.2	0.0038766
+772.32	0.00387621
+772.44	0.00387583
+772.56	0.00387545
+772.68	0.00387507
+772.8	0.00387468
+772.92	0.0038743
+773.04	0.00387392
+773.16	0.00387354
+773.28	0.00387315
+773.4	0.00387277
+773.52	0.00387239
+773.64	0.00387201
+773.76	0.00387163
+773.88	0.00387125
+774	0.00387086
+774.12	0.00387048
+774.24	0.0038701
+774.36	0.00386972
+774.48	0.00386934
+774.6	0.00386896
+774.72	0.00386858
+774.84	0.0038682
+774.96	0.00386782
+775.08	0.00386744
+775.2	0.00386706
+775.32	0.00386668
+775.44	0.0038663
+775.56	0.00386592
+775.68	0.00386554
+775.8	0.00386516
+775.92	0.00386478
+776.04	0.0038644
+776.16	0.00386402
+776.28	0.00386364
+776.4	0.00386326
+776.52	0.00386288
+776.64	0.00386251
+776.76	0.00386213
+776.88	0.00386175
+777	0.00386137
+777.12	0.00386099
+777.24	0.00386061
+777.36	0.00386024
+777.48	0.00385986
+777.6	0.00385948
+777.72	0.0038591
+777.84	0.00385872
+777.96	0.00385835
+778.08	0.00385797
+778.2	0.00385759
+778.32	0.00385721
+778.44	0.00385684
+778.56	0.00385646
+778.68	0.00385608
+778.8	0.00385571
+778.92	0.00385533
+779.04	0.00385495
+779.16	0.00385458
+779.28	0.0038542
+779.4	0.00385382
+779.52	0.00385345
+779.64	0.00385307
+779.76	0.0038527
+779.88	0.00385232
+780	0.00385195
+780.12	0.00385157
+780.24	0.00385119
+780.36	0.00385082
+780.48	0.00385044
+780.6	0.00385007
+780.72	0.00384969
+780.84	0.00384932
+780.96	0.00384894
+781.08	0.00384857
+781.2	0.00384819
+781.32	0.00384782
+781.44	0.00384745
+781.56	0.00384707
+781.68	0.0038467
+781.8	0.00384632
+781.92	0.00384595
+782.04	0.00384558
+782.16	0.0038452
+782.28	0.00384483
+782.4	0.00384446
+782.52	0.00384408
+782.64	0.00384371
+782.76	0.00384334
+782.88	0.00384296
+783	0.00384259
+783.12	0.00384222
+783.24	0.00384184
+783.36	0.00384147
+783.48	0.0038411
+783.6	0.00384073
+783.72	0.00384035
+783.84	0.00383998
+783.96	0.00383961
+784.08	0.00383924
+784.2	0.00383887
+784.32	0.00383849
+784.44	0.00383812
+784.56	0.00383775
+784.68	0.00383738
+784.8	0.00383701
+784.92	0.00383664
+785.04	0.00383627
+785.16	0.0038359
+785.28	0.00383553
+785.4	0.00383515
+785.52	0.00383478
+785.64	0.00383441
+785.76	0.00383404
+785.88	0.00383367
+786	0.0038333
+786.12	0.00383293
+786.24	0.00383256
+786.36	0.00383219
+786.48	0.00383182
+786.6	0.00383145
+786.72	0.00383108
+786.84	0.00383071
+786.96	0.00383035
+787.08	0.00382998
+787.2	0.00382961
+787.32	0.00382924
+787.44	0.00382887
+787.56	0.0038285
+787.68	0.00382813
+787.8	0.00382776
+787.92	0.00382739
+788.04	0.00382703
+788.16	0.00382666
+788.28	0.00382629
+788.4	0.00382592
+788.52	0.00382555
+788.64	0.00382519
+788.76	0.00382482
+788.88	0.00382445
+789	0.00382408
+789.12	0.00382372
+789.24	0.00382335
+789.36	0.00382298
+789.48	0.00382262
+789.6	0.00382225
+789.72	0.00382188
+789.84	0.00382151
+789.96	0.00382115
+790.08	0.00382078
+790.2	0.00382042
+790.32	0.00382005
+790.44	0.00381968
+790.56	0.00381932
+790.68	0.00381895
+790.8	0.00381858
+790.92	0.00381822
+791.04	0.00381785
+791.16	0.00381749
+791.28	0.00381712
+791.4	0.00381676
+791.52	0.00381639
+791.64	0.00381603
+791.76	0.00381566
+791.88	0.0038153
+792	0.00381493
+792.12	0.00381457
+792.24	0.0038142
+792.36	0.00381384
+792.48	0.00381347
+792.6	0.00381311
+792.72	0.00381275
+792.84	0.00381238
+792.96	0.00381202
+793.08	0.00381165
+793.2	0.00381129
+793.32	0.00381093
+793.44	0.00381056
+793.56	0.0038102
+793.68	0.00380984
+793.8	0.00380947
+793.92	0.00380911
+794.04	0.00380875
+794.16	0.00380838
+794.28	0.00380802
+794.4	0.00380766
+794.52	0.0038073
+794.64	0.00380693
+794.76	0.00380657
+794.88	0.00380621
+795	0.00380585
+795.12	0.00380548
+795.24	0.00380512
+795.36	0.00380476
+795.48	0.0038044
+795.6	0.00380404
+795.72	0.00380368
+795.84	0.00380331
+795.96	0.00380295
+796.08	0.00380259
+796.2	0.00380223
+796.32	0.00380187
+796.44	0.00380151
+796.56	0.00380115
+796.68	0.00380079
+796.8	0.00380043
+796.92	0.00380007
+797.04	0.00379971
+797.16	0.00379935
+797.28	0.00379899
+797.4	0.00379863
+797.52	0.00379827
+797.64	0.00379791
+797.76	0.00379755
+797.88	0.00379719
+798	0.00379683
+798.12	0.00379647
+798.24	0.00379611
+798.36	0.00379575
+798.48	0.00379539
+798.6	0.00379503
+798.72	0.00379467
+798.84	0.00379431
+798.96	0.00379395
+799.08	0.0037936
+799.2	0.00379324
+799.32	0.00379288
+799.44	0.00379252
+799.56	0.00379216
+799.68	0.0037918
+799.8	0.00379145
+799.92	0.00379109
+800.04	0.00379073
+800.16	0.00379037
+800.28	0.00379002
+800.4	0.00378966
+800.52	0.0037893
+800.64	0.00378894
+800.76	0.00378859
+800.88	0.00378823
+801	0.00378787
+801.12	0.00378752
+801.24	0.00378716
+801.36	0.0037868
+801.48	0.00378645
+801.6	0.00378609
+801.72	0.00378573
+801.84	0.00378538
+801.96	0.00378502
+802.08	0.00378466
+802.2	0.00378431
+802.32	0.00378395
+802.44	0.0037836
+802.56	0.00378324
+802.68	0.00378289
+802.8	0.00378253
+802.92	0.00378218
+803.04	0.00378182
+803.16	0.00378147
+803.28	0.00378111
+803.4	0.00378076
+803.52	0.0037804
+803.64	0.00378005
+803.76	0.00377969
+803.88	0.00377934
+804	0.00377898
+804.12	0.00377863
+804.24	0.00377827
+804.36	0.00377792
+804.48	0.00377757
+804.6	0.00377721
+804.72	0.00377686
+804.84	0.0037765
+804.96	0.00377615
+805.08	0.0037758
+805.2	0.00377544
+805.32	0.00377509
+805.44	0.00377474
+805.56	0.00377438
+805.68	0.00377403
+805.8	0.00377368
+805.92	0.00377333
+806.04	0.00377297
+806.16	0.00377262
+806.28	0.00377227
+806.4	0.00377192
+806.52	0.00377156
+806.64	0.00377121
+806.76	0.00377086
+806.88	0.00377051
+807	0.00377016
+807.12	0.0037698
+807.24	0.00376945
+807.36	0.0037691
+807.48	0.00376875
+807.6	0.0037684
+807.72	0.00376805
+807.84	0.0037677
+807.96	0.00376734
+808.08	0.00376699
+808.2	0.00376664
+808.32	0.00376629
+808.44	0.00376594
+808.56	0.00376559
+808.68	0.00376524
+808.8	0.00376489
+808.92	0.00376454
+809.04	0.00376419
+809.16	0.00376384
+809.28	0.00376349
+809.4	0.00376314
+809.52	0.00376279
+809.64	0.00376244
+809.76	0.00376209
+809.88	0.00376174
+810	0.00376139
+810.12	0.00376104
+810.24	0.00376069
+810.36	0.00376034
+810.48	0.00376
+810.6	0.00375965
+810.72	0.0037593
+810.84	0.00375895
+810.96	0.0037586
+811.08	0.00375825
+811.2	0.0037579
+811.32	0.00375756
+811.44	0.00375721
+811.56	0.00375686
+811.68	0.00375651
+811.8	0.00375616
+811.92	0.00375582
+812.04	0.00375547
+812.16	0.00375512
+812.28	0.00375477
+812.4	0.00375443
+812.52	0.00375408
+812.64	0.00375373
+812.76	0.00375338
+812.88	0.00375304
+813	0.00375269
+813.12	0.00375234
+813.24	0.003752
+813.36	0.00375165
+813.48	0.0037513
+813.6	0.00375096
+813.72	0.00375061
+813.84	0.00375027
+813.96	0.00374992
+814.08	0.00374957
+814.2	0.00374923
+814.32	0.00374888
+814.44	0.00374854
+814.56	0.00374819
+814.68	0.00374784
+814.8	0.0037475
+814.92	0.00374715
+815.04	0.00374681
+815.16	0.00374646
+815.28	0.00374612
+815.4	0.00374577
+815.52	0.00374543
+815.64	0.00374508
+815.76	0.00374474
+815.88	0.0037444
+816	0.00374405
+816.12	0.00374371
+816.24	0.00374336
+816.36	0.00374302
+816.48	0.00374267
+816.6	0.00374233
+816.72	0.00374199
+816.84	0.00374164
+816.96	0.0037413
+817.08	0.00374096
+817.2	0.00374061
+817.32	0.00374027
+817.44	0.00373993
+817.56	0.00373958
+817.68	0.00373924
+817.8	0.0037389
+817.92	0.00373855
+818.04	0.00373821
+818.16	0.00373787
+818.28	0.00373753
+818.4	0.00373718
+818.52	0.00373684
+818.64	0.0037365
+818.76	0.00373616
+818.88	0.00373581
+819	0.00373547
+819.12	0.00373513
+819.24	0.00373479
+819.36	0.00373445
+819.48	0.0037341
+819.6	0.00373376
+819.72	0.00373342
+819.84	0.00373308
+819.96	0.00373274
+820.08	0.0037324
+820.2	0.00373206
+820.32	0.00373172
+820.44	0.00373138
+820.56	0.00373104
+820.68	0.0037307
+820.8	0.00373035
+820.92	0.00373001
+821.04	0.00372967
+821.16	0.00372933
+821.28	0.00372899
+821.4	0.00372865
+821.52	0.00372831
+821.64	0.00372797
+821.76	0.00372763
+821.88	0.0037273
+822	0.00372696
+822.12	0.00372662
+822.24	0.00372628
+822.36	0.00372594
+822.48	0.0037256
+822.6	0.00372526
+822.72	0.00372492
+822.84	0.00372458
+822.96	0.00372424
+823.08	0.0037239
+823.2	0.00372357
+823.32	0.00372323
+823.44	0.00372289
+823.56	0.00372255
+823.68	0.00372221
+823.8	0.00372188
+823.92	0.00372154
+824.04	0.0037212
+824.16	0.00372086
+824.28	0.00372052
+824.4	0.00372019
+824.52	0.00371985
+824.64	0.00371951
+824.76	0.00371917
+824.88	0.00371884
+825	0.0037185
+825.12	0.00371816
+825.24	0.00371783
+825.36	0.00371749
+825.48	0.00371715
+825.6	0.00371682
+825.72	0.00371648
+825.84	0.00371614
+825.96	0.00371581
+826.08	0.00371547
+826.2	0.00371513
+826.32	0.0037148
+826.44	0.00371446
+826.56	0.00371413
+826.68	0.00371379
+826.8	0.00371345
+826.92	0.00371312
+827.04	0.00371278
+827.16	0.00371245
+827.28	0.00371211
+827.4	0.00371178
+827.52	0.00371144
+827.64	0.00371111
+827.76	0.00371077
+827.88	0.00371044
+828	0.0037101
+828.12	0.00370977
+828.24	0.00370943
+828.36	0.0037091
+828.48	0.00370877
+828.6	0.00370843
+828.72	0.0037081
+828.84	0.00370776
+828.96	0.00370743
+829.08	0.00370709
+829.2	0.00370676
+829.32	0.00370643
+829.44	0.00370609
+829.56	0.00370576
+829.68	0.00370543
+829.8	0.00370509
+829.92	0.00370476
+830.04	0.00370443
+830.16	0.00370409
+830.28	0.00370376
+830.4	0.00370343
+830.52	0.0037031
+830.64	0.00370276
+830.76	0.00370243
+830.88	0.0037021
+831	0.00370177
+831.12	0.00370143
+831.24	0.0037011
+831.36	0.00370077
+831.48	0.00370044
+831.6	0.0037001
+831.72	0.00369977
+831.84	0.00369944
+831.96	0.00369911
+832.08	0.00369878
+832.2	0.00369845
+832.32	0.00369811
+832.44	0.00369778
+832.56	0.00369745
+832.68	0.00369712
+832.8	0.00369679
+832.92	0.00369646
+833.04	0.00369613
+833.16	0.0036958
+833.28	0.00369547
+833.4	0.00369514
+833.52	0.00369481
+833.64	0.00369448
+833.76	0.00369415
+833.88	0.00369381
+834	0.00369348
+834.12	0.00369315
+834.24	0.00369282
+834.36	0.00369249
+834.48	0.00369217
+834.6	0.00369184
+834.72	0.00369151
+834.84	0.00369118
+834.96	0.00369085
+835.08	0.00369052
+835.2	0.00369019
+835.32	0.00368986
+835.44	0.00368953
+835.56	0.0036892
+835.68	0.00368887
+835.8	0.00368854
+835.92	0.00368822
+836.04	0.00368789
+836.16	0.00368756
+836.28	0.00368723
+836.4	0.0036869
+836.52	0.00368657
+836.64	0.00368625
+836.76	0.00368592
+836.88	0.00368559
+837	0.00368526
+837.12	0.00368493
+837.24	0.00368461
+837.36	0.00368428
+837.48	0.00368395
+837.6	0.00368362
+837.72	0.0036833
+837.84	0.00368297
+837.96	0.00368264
+838.08	0.00368232
+838.2	0.00368199
+838.32	0.00368166
+838.44	0.00368133
+838.56	0.00368101
+838.68	0.00368068
+838.8	0.00368036
+838.92	0.00368003
+839.04	0.0036797
+839.16	0.00367938
+839.28	0.00367905
+839.4	0.00367872
+839.52	0.0036784
+839.64	0.00367807
+839.76	0.00367775
+839.88	0.00367742
+840	0.0036771
+840.12	0.00367677
+840.24	0.00367644
+840.36	0.00367612
+840.48	0.00367579
+840.6	0.00367547
+840.72	0.00367514
+840.84	0.00367482
+840.96	0.00367449
+841.08	0.00367417
+841.2	0.00367384
+841.32	0.00367352
+841.44	0.0036732
+841.56	0.00367287
+841.68	0.00367255
+841.8	0.00367222
+841.92	0.0036719
+842.04	0.00367157
+842.16	0.00367125
+842.28	0.00367093
+842.4	0.0036706
+842.52	0.00367028
+842.64	0.00366996
+842.76	0.00366963
+842.88	0.00366931
+843	0.00366899
+843.12	0.00366866
+843.24	0.00366834
+843.36	0.00366802
+843.48	0.00366769
+843.6	0.00366737
+843.72	0.00366705
+843.84	0.00366672
+843.96	0.0036664
+844.08	0.00366608
+844.2	0.00366576
+844.32	0.00366543
+844.44	0.00366511
+844.56	0.00366479
+844.68	0.00366447
+844.8	0.00366415
+844.92	0.00366382
+845.04	0.0036635
+845.16	0.00366318
+845.28	0.00366286
+845.4	0.00366254
+845.52	0.00366222
+845.64	0.00366189
+845.76	0.00366157
+845.88	0.00366125
+846	0.00366093
+846.12	0.00366061
+846.24	0.00366029
+846.36	0.00365997
+846.48	0.00365965
+846.6	0.00365933
+846.72	0.00365901
+846.84	0.00365869
+846.96	0.00365836
+847.08	0.00365804
+847.2	0.00365772
+847.32	0.0036574
+847.44	0.00365708
+847.56	0.00365676
+847.68	0.00365644
+847.8	0.00365612
+847.92	0.0036558
+848.04	0.00365548
+848.16	0.00365517
+848.28	0.00365485
+848.4	0.00365453
+848.52	0.00365421
+848.64	0.00365389
+848.76	0.00365357
+848.88	0.00365325
+849	0.00365293
+849.12	0.00365261
+849.24	0.00365229
+849.36	0.00365197
+849.48	0.00365166
+849.6	0.00365134
+849.72	0.00365102
+849.84	0.0036507
+849.96	0.00365038
+850.08	0.00365006
+850.2	0.00364975
+850.32	0.00364943
+850.44	0.00364911
+850.56	0.00364879
+850.68	0.00364847
+850.8	0.00364816
+850.92	0.00364784
+851.04	0.00364752
+851.16	0.0036472
+851.28	0.00364689
+851.4	0.00364657
+851.52	0.00364625
+851.64	0.00364594
+851.76	0.00364562
+851.88	0.0036453
+852	0.00364499
+852.12	0.00364467
+852.24	0.00364435
+852.36	0.00364404
+852.48	0.00364372
+852.6	0.0036434
+852.72	0.00364309
+852.84	0.00364277
+852.96	0.00364245
+853.08	0.00364214
+853.2	0.00364182
+853.32	0.00364151
+853.44	0.00364119
+853.56	0.00364088
+853.68	0.00364056
+853.8	0.00364024
+853.92	0.00363993
+854.04	0.00363961
+854.16	0.0036393
+854.28	0.00363898
+854.4	0.00363867
+854.52	0.00363835
+854.64	0.00363804
+854.76	0.00363772
+854.88	0.00363741
+855	0.00363709
+855.12	0.00363678
+855.24	0.00363647
+855.36	0.00363615
+855.48	0.00363584
+855.6	0.00363552
+855.72	0.00363521
+855.84	0.00363489
+855.96	0.00363458
+856.08	0.00363427
+856.2	0.00363395
+856.32	0.00363364
+856.44	0.00363333
+856.56	0.00363301
+856.68	0.0036327
+856.8	0.00363239
+856.92	0.00363207
+857.04	0.00363176
+857.16	0.00363145
+857.28	0.00363113
+857.4	0.00363082
+857.52	0.00363051
+857.64	0.00363019
+857.76	0.00362988
+857.88	0.00362957
+858	0.00362926
+858.12	0.00362894
+858.24	0.00362863
+858.36	0.00362832
+858.48	0.00362801
+858.6	0.0036277
+858.72	0.00362738
+858.84	0.00362707
+858.96	0.00362676
+859.08	0.00362645
+859.2	0.00362614
+859.32	0.00362582
+859.44	0.00362551
+859.56	0.0036252
+859.68	0.00362489
+859.8	0.00362458
+859.92	0.00362427
+860.04	0.00362396
+860.16	0.00362365
+860.28	0.00362334
+860.4	0.00362302
+860.52	0.00362271
+860.64	0.0036224
+860.76	0.00362209
+860.88	0.00362178
+861	0.00362147
+861.12	0.00362116
+861.24	0.00362085
+861.36	0.00362054
+861.48	0.00362023
+861.6	0.00361992
+861.72	0.00361961
+861.84	0.0036193
+861.96	0.00361899
+862.08	0.00361868
+862.2	0.00361837
+862.32	0.00361806
+862.44	0.00361775
+862.56	0.00361744
+862.68	0.00361713
+862.8	0.00361683
+862.92	0.00361652
+863.04	0.00361621
+863.16	0.0036159
+863.28	0.00361559
+863.4	0.00361528
+863.52	0.00361497
+863.64	0.00361466
+863.76	0.00361436
+863.88	0.00361405
+864	0.00361374
+864.12	0.00361343
+864.24	0.00361312
+864.36	0.00361281
+864.48	0.00361251
+864.6	0.0036122
+864.72	0.00361189
+864.84	0.00361158
+864.96	0.00361128
+865.08	0.00361097
+865.2	0.00361066
+865.32	0.00361035
+865.44	0.00361005
+865.56	0.00360974
+865.68	0.00360943
+865.8	0.00360912
+865.92	0.00360882
+866.04	0.00360851
+866.16	0.0036082
+866.28	0.0036079
+866.4	0.00360759
+866.52	0.00360728
+866.64	0.00360698
+866.76	0.00360667
+866.88	0.00360636
+867	0.00360606
+867.12	0.00360575
+867.24	0.00360545
+867.36	0.00360514
+867.48	0.00360483
+867.6	0.00360453
+867.72	0.00360422
+867.84	0.00360392
+867.96	0.00360361
+868.08	0.0036033
+868.2	0.003603
+868.32	0.00360269
+868.44	0.00360239
+868.56	0.00360208
+868.68	0.00360178
+868.8	0.00360147
+868.92	0.00360117
+869.04	0.00360086
+869.16	0.00360056
+869.28	0.00360025
+869.4	0.00359995
+869.52	0.00359965
+869.64	0.00359934
+869.76	0.00359904
+869.88	0.00359873
+870	0.00359843
+870.12	0.00359812
+870.24	0.00359782
+870.36	0.00359752
+870.48	0.00359721
+870.6	0.00359691
+870.72	0.0035966
+870.84	0.0035963
+870.96	0.003596
+871.08	0.00359569
+871.2	0.00359539
+871.32	0.00359509
+871.44	0.00359478
+871.56	0.00359448
+871.68	0.00359418
+871.8	0.00359387
+871.92	0.00359357
+872.04	0.00359327
+872.16	0.00359297
+872.28	0.00359266
+872.4	0.00359236
+872.52	0.00359206
+872.64	0.00359176
+872.76	0.00359145
+872.88	0.00359115
+873	0.00359085
+873.12	0.00359055
+873.24	0.00359024
+873.36	0.00358994
+873.48	0.00358964
+873.6	0.00358934
+873.72	0.00358904
+873.84	0.00358874
+873.96	0.00358843
+874.08	0.00358813
+874.2	0.00358783
+874.32	0.00358753
+874.44	0.00358723
+874.56	0.00358693
+874.68	0.00358663
+874.8	0.00358633
+874.92	0.00358602
+875.04	0.00358572
+875.16	0.00358542
+875.28	0.00358512
+875.4	0.00358482
+875.52	0.00358452
+875.64	0.00358422
+875.76	0.00358392
+875.88	0.00358362
+876	0.00358332
+876.12	0.00358302
+876.24	0.00358272
+876.36	0.00358242
+876.48	0.00358212
+876.6	0.00358182
+876.72	0.00358152
+876.84	0.00358122
+876.96	0.00358092
+877.08	0.00358062
+877.2	0.00358032
+877.32	0.00358002
+877.44	0.00357972
+877.56	0.00357942
+877.68	0.00357913
+877.8	0.00357883
+877.92	0.00357853
+878.04	0.00357823
+878.16	0.00357793
+878.28	0.00357763
+878.4	0.00357733
+878.52	0.00357703
+878.64	0.00357674
+878.76	0.00357644
+878.88	0.00357614
+879	0.00357584
+879.12	0.00357554
+879.24	0.00357524
+879.36	0.00357495
+879.48	0.00357465
+879.6	0.00357435
+879.72	0.00357405
+879.84	0.00357376
+879.96	0.00357346
+880.08	0.00357316
+880.2	0.00357286
+880.32	0.00357257
+880.44	0.00357227
+880.56	0.00357197
+880.68	0.00357167
+880.8	0.00357138
+880.92	0.00357108
+881.04	0.00357078
+881.16	0.00357049
+881.28	0.00357019
+881.4	0.00356989
+881.52	0.0035696
+881.64	0.0035693
+881.76	0.003569
+881.88	0.00356871
+882	0.00356841
+882.12	0.00356812
+882.24	0.00356782
+882.36	0.00356752
+882.48	0.00356723
+882.6	0.00356693
+882.72	0.00356664
+882.84	0.00356634
+882.96	0.00356604
+883.08	0.00356575
+883.2	0.00356545
+883.32	0.00356516
+883.44	0.00356486
+883.56	0.00356457
+883.68	0.00356427
+883.8	0.00356398
+883.92	0.00356368
+884.04	0.00356339
+884.16	0.00356309
+884.28	0.0035628
+884.4	0.0035625
+884.52	0.00356221
+884.64	0.00356191
+884.76	0.00356162
+884.88	0.00356132
+885	0.00356103
+885.12	0.00356074
+885.24	0.00356044
+885.36	0.00356015
+885.48	0.00355985
+885.6	0.00355956
+885.72	0.00355927
+885.84	0.00355897
+885.96	0.00355868
+886.08	0.00355838
+886.2	0.00355809
+886.32	0.0035578
+886.44	0.0035575
+886.56	0.00355721
+886.68	0.00355692
+886.8	0.00355662
+886.92	0.00355633
+887.04	0.00355604
+887.16	0.00355575
+887.28	0.00355545
+887.4	0.00355516
+887.52	0.00355487
+887.64	0.00355458
+887.76	0.00355428
+887.88	0.00355399
+888	0.0035537
+888.12	0.00355341
+888.24	0.00355311
+888.36	0.00355282
+888.48	0.00355253
+888.6	0.00355224
+888.72	0.00355194
+888.84	0.00355165
+888.96	0.00355136
+889.08	0.00355107
+889.2	0.00355078
+889.32	0.00355049
+889.44	0.0035502
+889.56	0.0035499
+889.68	0.00354961
+889.8	0.00354932
+889.92	0.00354903
+890.04	0.00354874
+890.16	0.00354845
+890.28	0.00354816
+890.4	0.00354787
+890.52	0.00354758
+890.64	0.00354728
+890.76	0.00354699
+890.88	0.0035467
+891	0.00354641
+891.12	0.00354612
+891.24	0.00354583
+891.36	0.00354554
+891.48	0.00354525
+891.6	0.00354496
+891.72	0.00354467
+891.84	0.00354438
+891.96	0.00354409
+892.08	0.0035438
+892.2	0.00354351
+892.32	0.00354322
+892.44	0.00354293
+892.56	0.00354264
+892.68	0.00354235
+892.8	0.00354206
+892.92	0.00354178
+893.04	0.00354149
+893.16	0.0035412
+893.28	0.00354091
+893.4	0.00354062
+893.52	0.00354033
+893.64	0.00354004
+893.76	0.00353975
+893.88	0.00353946
+894	0.00353918
+894.12	0.00353889
+894.24	0.0035386
+894.36	0.00353831
+894.48	0.00353802
+894.6	0.00353773
+894.72	0.00353745
+894.84	0.00353716
+894.96	0.00353687
+895.08	0.00353658
+895.2	0.00353629
+895.32	0.00353601
+895.44	0.00353572
+895.56	0.00353543
+895.68	0.00353514
+895.8	0.00353486
+895.92	0.00353457
+896.04	0.00353428
+896.16	0.00353399
+896.28	0.00353371
+896.4	0.00353342
+896.52	0.00353313
+896.64	0.00353285
+896.76	0.00353256
+896.88	0.00353227
+897	0.00353199
+897.12	0.0035317
+897.24	0.00353141
+897.36	0.00353113
+897.48	0.00353084
+897.6	0.00353055
+897.72	0.00353027
+897.84	0.00352998
+897.96	0.00352969
+898.08	0.00352941
+898.2	0.00352912
+898.32	0.00352884
+898.44	0.00352855
+898.56	0.00352826
+898.68	0.00352798
+898.8	0.00352769
+898.92	0.00352741
+899.04	0.00352712
+899.16	0.00352684
+899.28	0.00352655
+899.4	0.00352627
+899.52	0.00352598
+899.64	0.0035257
+899.76	0.00352541
+899.88	0.00352513
+900	0.00352484
+900.12	0.00352456
+900.24	0.00352427
+900.36	0.00352399
+900.48	0.0035237
+900.6	0.00352342
+900.72	0.00352313
+900.84	0.00352285
+900.96	0.00352257
+901.08	0.00352228
+901.2	0.003522
+901.32	0.00352171
+901.44	0.00352143
+901.56	0.00352114
+901.68	0.00352086
+901.8	0.00352058
+901.92	0.00352029
+902.04	0.00352001
+902.16	0.00351973
+902.28	0.00351944
+902.4	0.00351916
+902.52	0.00351888
+902.64	0.00351859
+902.76	0.00351831
+902.88	0.00351803
+903	0.00351774
+903.12	0.00351746
+903.24	0.00351718
+903.36	0.00351689
+903.48	0.00351661
+903.6	0.00351633
+903.72	0.00351605
+903.84	0.00351576
+903.96	0.00351548
+904.08	0.0035152
+904.2	0.00351492
+904.32	0.00351463
+904.44	0.00351435
+904.56	0.00351407
+904.68	0.00351379
+904.8	0.00351351
+904.92	0.00351322
+905.04	0.00351294
+905.16	0.00351266
+905.28	0.00351238
+905.4	0.0035121
+905.52	0.00351182
+905.64	0.00351154
+905.76	0.00351125
+905.88	0.00351097
+906	0.00351069
+906.12	0.00351041
+906.24	0.00351013
+906.36	0.00350985
+906.48	0.00350957
+906.6	0.00350929
+906.72	0.00350901
+906.84	0.00350872
+906.96	0.00350844
+907.08	0.00350816
+907.2	0.00350788
+907.32	0.0035076
+907.44	0.00350732
+907.56	0.00350704
+907.68	0.00350676
+907.8	0.00350648
+907.92	0.0035062
+908.04	0.00350592
+908.16	0.00350564
+908.28	0.00350536
+908.4	0.00350508
+908.52	0.0035048
+908.64	0.00350452
+908.76	0.00350424
+908.88	0.00350396
+909	0.00350368
+909.12	0.0035034
+909.24	0.00350313
+909.36	0.00350285
+909.48	0.00350257
+909.6	0.00350229
+909.72	0.00350201
+909.84	0.00350173
+909.96	0.00350145
+910.08	0.00350117
+910.2	0.00350089
+910.32	0.00350062
+910.44	0.00350034
+910.56	0.00350006
+910.68	0.00349978
+910.8	0.0034995
+910.92	0.00349922
+911.04	0.00349895
+911.16	0.00349867
+911.28	0.00349839
+911.4	0.00349811
+911.52	0.00349783
+911.64	0.00349756
+911.76	0.00349728
+911.88	0.003497
+912	0.00349672
+912.12	0.00349644
+912.24	0.00349617
+912.36	0.00349589
+912.48	0.00349561
+912.6	0.00349533
+912.72	0.00349506
+912.84	0.00349478
+912.96	0.0034945
+913.08	0.00349423
+913.2	0.00349395
+913.32	0.00349367
+913.44	0.0034934
+913.56	0.00349312
+913.68	0.00349284
+913.8	0.00349257
+913.92	0.00349229
+914.04	0.00349201
+914.16	0.00349174
+914.28	0.00349146
+914.4	0.00349118
+914.52	0.00349091
+914.64	0.00349063
+914.76	0.00349036
+914.88	0.00349008
+915	0.0034898
+915.12	0.00348953
+915.24	0.00348925
+915.36	0.00348898
+915.48	0.0034887
+915.6	0.00348843
+915.72	0.00348815
+915.84	0.00348787
+915.96	0.0034876
+916.08	0.00348732
+916.2	0.00348705
+916.32	0.00348677
+916.44	0.0034865
+916.56	0.00348622
+916.68	0.00348595
+916.8	0.00348567
+916.92	0.0034854
+917.04	0.00348513
+917.16	0.00348485
+917.28	0.00348458
+917.4	0.0034843
+917.52	0.00348403
+917.64	0.00348375
+917.76	0.00348348
+917.88	0.0034832
+918	0.00348293
+918.12	0.00348266
+918.24	0.00348238
+918.36	0.00348211
+918.48	0.00348183
+918.6	0.00348156
+918.72	0.00348129
+918.84	0.00348101
+918.96	0.00348074
+919.08	0.00348047
+919.2	0.00348019
+919.32	0.00347992
+919.44	0.00347965
+919.56	0.00347937
+919.68	0.0034791
+919.8	0.00347883
+919.92	0.00347855
+920.04	0.00347828
+920.16	0.00347801
+920.28	0.00347773
+920.4	0.00347746
+920.52	0.00347719
+920.64	0.00347692
+920.76	0.00347664
+920.88	0.00347637
+921	0.0034761
+921.12	0.00347583
+921.24	0.00347556
+921.36	0.00347528
+921.48	0.00347501
+921.6	0.00347474
+921.72	0.00347447
+921.84	0.00347419
+921.96	0.00347392
+922.08	0.00347365
+922.2	0.00347338
+922.32	0.00347311
+922.44	0.00347284
+922.56	0.00347256
+922.68	0.00347229
+922.8	0.00347202
+922.92	0.00347175
+923.04	0.00347148
+923.16	0.00347121
+923.28	0.00347094
+923.4	0.00347067
+923.52	0.0034704
+923.64	0.00347012
+923.76	0.00346985
+923.88	0.00346958
+924	0.00346931
+924.12	0.00346904
+924.24	0.00346877
+924.36	0.0034685
+924.48	0.00346823
+924.6	0.00346796
+924.72	0.00346769
+924.84	0.00346742
+924.96	0.00346715
+925.08	0.00346688
+925.2	0.00346661
+925.32	0.00346634
+925.44	0.00346607
+925.56	0.0034658
+925.68	0.00346553
+925.8	0.00346526
+925.92	0.00346499
+926.04	0.00346472
+926.16	0.00346445
+926.28	0.00346418
+926.4	0.00346391
+926.52	0.00346364
+926.64	0.00346337
+926.76	0.00346311
+926.88	0.00346284
+927	0.00346257
+927.12	0.0034623
+927.24	0.00346203
+927.36	0.00346176
+927.48	0.00346149
+927.6	0.00346122
+927.72	0.00346096
+927.84	0.00346069
+927.96	0.00346042
+928.08	0.00346015
+928.2	0.00345988
+928.32	0.00345961
+928.44	0.00345935
+928.56	0.00345908
+928.68	0.00345881
+928.8	0.00345854
+928.92	0.00345827
+929.04	0.00345801
+929.16	0.00345774
+929.28	0.00345747
+929.4	0.0034572
+929.52	0.00345693
+929.64	0.00345667
+929.76	0.0034564
+929.88	0.00345613
+930	0.00345587
+930.12	0.0034556
+930.24	0.00345533
+930.36	0.00345506
+930.48	0.0034548
+930.6	0.00345453
+930.72	0.00345426
+930.84	0.003454
+930.96	0.00345373
+931.08	0.00345346
+931.2	0.0034532
+931.32	0.00345293
+931.44	0.00345266
+931.56	0.0034524
+931.68	0.00345213
+931.8	0.00345186
+931.92	0.0034516
+932.04	0.00345133
+932.16	0.00345107
+932.28	0.0034508
+932.4	0.00345053
+932.52	0.00345027
+932.64	0.00345
+932.76	0.00344974
+932.88	0.00344947
+933	0.0034492
+933.12	0.00344894
+933.24	0.00344867
+933.36	0.00344841
+933.48	0.00344814
+933.6	0.00344788
+933.72	0.00344761
+933.84	0.00344735
+933.96	0.00344708
+934.08	0.00344682
+934.2	0.00344655
+934.32	0.00344629
+934.44	0.00344602
+934.56	0.00344576
+934.68	0.00344549
+934.8	0.00344523
+934.92	0.00344496
+935.04	0.0034447
+935.16	0.00344443
+935.28	0.00344417
+935.4	0.00344391
+935.52	0.00344364
+935.64	0.00344338
+935.76	0.00344311
+935.88	0.00344285
+936	0.00344259
+936.12	0.00344232
+936.24	0.00344206
+936.36	0.00344179
+936.48	0.00344153
+936.6	0.00344127
+936.72	0.003441
+936.84	0.00344074
+936.96	0.00344048
+937.08	0.00344021
+937.2	0.00343995
+937.32	0.00343969
+937.44	0.00343942
+937.56	0.00343916
+937.68	0.0034389
+937.8	0.00343863
+937.92	0.00343837
+938.04	0.00343811
+938.16	0.00343785
+938.28	0.00343758
+938.4	0.00343732
+938.52	0.00343706
+938.64	0.0034368
+938.76	0.00343653
+938.88	0.00343627
+939	0.00343601
+939.12	0.00343575
+939.24	0.00343548
+939.36	0.00343522
+939.48	0.00343496
+939.6	0.0034347
+939.72	0.00343444
+939.84	0.00343417
+939.96	0.00343391
+940.08	0.00343365
+940.2	0.00343339
+940.32	0.00343313
+940.44	0.00343287
+940.56	0.0034326
+940.68	0.00343234
+940.8	0.00343208
+940.92	0.00343182
+941.04	0.00343156
+941.16	0.0034313
+941.28	0.00343104
+941.4	0.00343078
+941.52	0.00343051
+941.64	0.00343025
+941.76	0.00342999
+941.88	0.00342973
+942	0.00342947
+942.12	0.00342921
+942.24	0.00342895
+942.36	0.00342869
+942.48	0.00342843
+942.6	0.00342817
+942.72	0.00342791
+942.84	0.00342765
+942.96	0.00342739
+943.08	0.00342713
+943.2	0.00342687
+943.32	0.00342661
+943.44	0.00342635
+943.56	0.00342609
+943.68	0.00342583
+943.8	0.00342557
+943.92	0.00342531
+944.04	0.00342505
+944.16	0.00342479
+944.28	0.00342453
+944.4	0.00342427
+944.52	0.00342401
+944.64	0.00342375
+944.76	0.00342349
+944.88	0.00342323
+945	0.00342297
+945.12	0.00342272
+945.24	0.00342246
+945.36	0.0034222
+945.48	0.00342194
+945.6	0.00342168
+945.72	0.00342142
+945.84	0.00342116
+945.96	0.0034209
+946.08	0.00342065
+946.2	0.00342039
+946.32	0.00342013
+946.44	0.00341987
+946.56	0.00341961
+946.68	0.00341935
+946.8	0.0034191
+946.92	0.00341884
+947.04	0.00341858
+947.16	0.00341832
+947.28	0.00341806
+947.4	0.00341781
+947.52	0.00341755
+947.64	0.00341729
+947.76	0.00341703
+947.88	0.00341678
+948	0.00341652
+948.12	0.00341626
+948.24	0.003416
+948.36	0.00341575
+948.48	0.00341549
+948.6	0.00341523
+948.72	0.00341497
+948.84	0.00341472
+948.96	0.00341446
+949.08	0.0034142
+949.2	0.00341395
+949.32	0.00341369
+949.44	0.00341343
+949.56	0.00341318
+949.68	0.00341292
+949.8	0.00341266
+949.92	0.00341241
+950.04	0.00341215
+950.16	0.00341189
+950.28	0.00341164
+950.4	0.00341138
+950.52	0.00341112
+950.64	0.00341087
+950.76	0.00341061
+950.88	0.00341036
+951	0.0034101
+951.12	0.00340985
+951.24	0.00340959
+951.36	0.00340933
+951.48	0.00340908
+951.6	0.00340882
+951.72	0.00340857
+951.84	0.00340831
+951.96	0.00340806
+952.08	0.0034078
+952.2	0.00340755
+952.32	0.00340729
+952.44	0.00340703
+952.56	0.00340678
+952.68	0.00340652
+952.8	0.00340627
+952.92	0.00340601
+953.04	0.00340576
+953.16	0.00340551
+953.28	0.00340525
+953.4	0.003405
+953.52	0.00340474
+953.64	0.00340449
+953.76	0.00340423
+953.88	0.00340398
+954	0.00340372
+954.12	0.00340347
+954.24	0.00340321
+954.36	0.00340296
+954.48	0.00340271
+954.6	0.00340245
+954.72	0.0034022
+954.84	0.00340194
+954.96	0.00340169
+955.08	0.00340144
+955.2	0.00340118
+955.32	0.00340093
+955.44	0.00340068
+955.56	0.00340042
+955.68	0.00340017
+955.8	0.00339992
+955.92	0.00339966
+956.04	0.00339941
+956.16	0.00339916
+956.28	0.0033989
+956.4	0.00339865
+956.52	0.0033984
+956.64	0.00339814
+956.76	0.00339789
+956.88	0.00339764
+957	0.00339738
+957.12	0.00339713
+957.24	0.00339688
+957.36	0.00339663
+957.48	0.00339637
+957.6	0.00339612
+957.72	0.00339587
+957.84	0.00339562
+957.96	0.00339536
+958.08	0.00339511
+958.2	0.00339486
+958.32	0.00339461
+958.44	0.00339436
+958.56	0.0033941
+958.68	0.00339385
+958.8	0.0033936
+958.92	0.00339335
+959.04	0.0033931
+959.16	0.00339284
+959.28	0.00339259
+959.4	0.00339234
+959.52	0.00339209
+959.64	0.00339184
+959.76	0.00339159
+959.88	0.00339134
+960	0.00339108
+960.12	0.00339083
+960.24	0.00339058
+960.36	0.00339033
+960.48	0.00339008
+960.6	0.00338983
+960.72	0.00338958
+960.84	0.00338933
+960.96	0.00338908
+961.08	0.00338883
+961.2	0.00338858
+961.32	0.00338832
+961.44	0.00338807
+961.56	0.00338782
+961.68	0.00338757
+961.8	0.00338732
+961.92	0.00338707
+962.04	0.00338682
+962.16	0.00338657
+962.28	0.00338632
+962.4	0.00338607
+962.52	0.00338582
+962.64	0.00338557
+962.76	0.00338532
+962.88	0.00338507
+963	0.00338482
+963.12	0.00338457
+963.24	0.00338432
+963.36	0.00338407
+963.48	0.00338382
+963.6	0.00338358
+963.72	0.00338333
+963.84	0.00338308
+963.96	0.00338283
+964.08	0.00338258
+964.2	0.00338233
+964.32	0.00338208
+964.44	0.00338183
+964.56	0.00338158
+964.68	0.00338133
+964.8	0.00338108
+964.92	0.00338084
+965.04	0.00338059
+965.16	0.00338034
+965.28	0.00338009
+965.4	0.00337984
+965.52	0.00337959
+965.64	0.00337934
+965.76	0.0033791
+965.88	0.00337885
+966	0.0033786
+966.12	0.00337835
+966.24	0.0033781
+966.36	0.00337785
+966.48	0.00337761
+966.6	0.00337736
+966.72	0.00337711
+966.84	0.00337686
+966.96	0.00337662
+967.08	0.00337637
+967.2	0.00337612
+967.32	0.00337587
+967.44	0.00337563
+967.56	0.00337538
+967.68	0.00337513
+967.8	0.00337488
+967.92	0.00337464
+968.04	0.00337439
+968.16	0.00337414
+968.28	0.00337389
+968.4	0.00337365
+968.52	0.0033734
+968.64	0.00337315
+968.76	0.00337291
+968.88	0.00337266
+969	0.00337241
+969.12	0.00337217
+969.24	0.00337192
+969.36	0.00337167
+969.48	0.00337143
+969.6	0.00337118
+969.72	0.00337093
+969.84	0.00337069
+969.96	0.00337044
+970.08	0.0033702
+970.2	0.00336995
+970.32	0.0033697
+970.44	0.00336946
+970.56	0.00336921
+970.68	0.00336896
+970.8	0.00336872
+970.92	0.00336847
+971.04	0.00336823
+971.16	0.00336798
+971.28	0.00336774
+971.4	0.00336749
+971.52	0.00336725
+971.64	0.003367
+971.76	0.00336675
+971.88	0.00336651
+972	0.00336626
+972.12	0.00336602
+972.24	0.00336577
+972.36	0.00336553
+972.48	0.00336528
+972.6	0.00336504
+972.72	0.00336479
+972.84	0.00336455
+972.96	0.0033643
+973.08	0.00336406
+973.2	0.00336381
+973.32	0.00336357
+973.44	0.00336333
+973.56	0.00336308
+973.68	0.00336284
+973.8	0.00336259
+973.92	0.00336235
+974.04	0.0033621
+974.16	0.00336186
+974.28	0.00336162
+974.4	0.00336137
+974.52	0.00336113
+974.64	0.00336088
+974.76	0.00336064
+974.88	0.0033604
+975	0.00336015
+975.12	0.00335991
+975.24	0.00335966
+975.36	0.00335942
+975.48	0.00335918
+975.6	0.00335893
+975.72	0.00335869
+975.84	0.00335845
+975.96	0.0033582
+976.08	0.00335796
+976.2	0.00335772
+976.32	0.00335747
+976.44	0.00335723
+976.56	0.00335699
+976.68	0.00335675
+976.8	0.0033565
+976.92	0.00335626
+977.04	0.00335602
+977.16	0.00335577
+977.28	0.00335553
+977.4	0.00335529
+977.52	0.00335505
+977.64	0.0033548
+977.76	0.00335456
+977.88	0.00335432
+978	0.00335408
+978.12	0.00335383
+978.24	0.00335359
+978.36	0.00335335
+978.48	0.00335311
+978.6	0.00335287
+978.72	0.00335262
+978.84	0.00335238
+978.96	0.00335214
+979.08	0.0033519
+979.2	0.00335166
+979.32	0.00335141
+979.44	0.00335117
+979.56	0.00335093
+979.68	0.00335069
+979.8	0.00335045
+979.92	0.00335021
+980.04	0.00334997
+980.16	0.00334972
+980.28	0.00334948
+980.4	0.00334924
+980.52	0.003349
+980.64	0.00334876
+980.76	0.00334852
+980.88	0.00334828
+981	0.00334804
+981.12	0.0033478
+981.24	0.00334756
+981.36	0.00334731
+981.48	0.00334707
+981.6	0.00334683
+981.72	0.00334659
+981.84	0.00334635
+981.96	0.00334611
+982.08	0.00334587
+982.2	0.00334563
+982.32	0.00334539
+982.44	0.00334515
+982.56	0.00334491
+982.68	0.00334467
+982.8	0.00334443
+982.92	0.00334419
+983.04	0.00334395
+983.16	0.00334371
+983.28	0.00334347
+983.4	0.00334323
+983.52	0.00334299
+983.64	0.00334275
+983.76	0.00334251
+983.88	0.00334227
+984	0.00334203
+984.12	0.00334179
+984.24	0.00334156
+984.36	0.00334132
+984.48	0.00334108
+984.6	0.00334084
+984.72	0.0033406
+984.84	0.00334036
+984.96	0.00334012
+985.08	0.00333988
+985.2	0.00333964
+985.32	0.0033394
+985.44	0.00333917
+985.56	0.00333893
+985.68	0.00333869
+985.8	0.00333845
+985.92	0.00333821
+986.04	0.00333797
+986.16	0.00333773
+986.28	0.0033375
+986.4	0.00333726
+986.52	0.00333702
+986.64	0.00333678
+986.76	0.00333654
+986.88	0.0033363
+987	0.00333607
+987.12	0.00333583
+987.24	0.00333559
+987.36	0.00333535
+987.48	0.00333511
+987.6	0.00333488
+987.72	0.00333464
+987.84	0.0033344
+987.96	0.00333416
+988.08	0.00333393
+988.2	0.00333369
+988.32	0.00333345
+988.44	0.00333321
+988.56	0.00333298
+988.68	0.00333274
+988.8	0.0033325
+988.92	0.00333227
+989.04	0.00333203
+989.16	0.00333179
+989.28	0.00333155
+989.4	0.00333132
+989.52	0.00333108
+989.64	0.00333084
+989.76	0.00333061
+989.88	0.00333037
+990	0.00333013
+990.12	0.0033299
+990.24	0.00332966
+990.36	0.00332942
+990.48	0.00332919
+990.6	0.00332895
+990.72	0.00332872
+990.84	0.00332848
+990.96	0.00332824
+991.08	0.00332801
+991.2	0.00332777
+991.32	0.00332754
+991.44	0.0033273
+991.56	0.00332706
+991.68	0.00332683
+991.8	0.00332659
+991.92	0.00332636
+992.04	0.00332612
+992.16	0.00332588
+992.28	0.00332565
+992.4	0.00332541
+992.52	0.00332518
+992.64	0.00332494
+992.76	0.00332471
+992.88	0.00332447
+993	0.00332424
+993.12	0.003324
+993.24	0.00332377
+993.36	0.00332353
+993.48	0.0033233
+993.6	0.00332306
+993.72	0.00332283
+993.84	0.00332259
+993.96	0.00332236
+994.08	0.00332212
+994.2	0.00332189
+994.32	0.00332165
+994.44	0.00332142
+994.56	0.00332118
+994.68	0.00332095
+994.8	0.00332072
+994.92	0.00332048
+995.04	0.00332025
+995.16	0.00332001
+995.28	0.00331978
+995.4	0.00331954
+995.52	0.00331931
+995.64	0.00331908
+995.76	0.00331884
+995.88	0.00331861
+996	0.00331837
+996.12	0.00331814
+996.24	0.00331791
+996.36	0.00331767
+996.48	0.00331744
+996.6	0.00331721
+996.72	0.00331697
+996.84	0.00331674
+996.96	0.00331651
+997.08	0.00331627
+997.2	0.00331604
+997.32	0.00331581
+997.44	0.00331557
+997.56	0.00331534
+997.68	0.00331511
+997.8	0.00331487
+997.92	0.00331464
+998.04	0.00331441
+998.16	0.00331417
+998.28	0.00331394
+998.4	0.00331371
+998.52	0.00331348
+998.64	0.00331324
+998.76	0.00331301
+998.88	0.00331278
+999	0.00331255
+999.12	0.00331231
+999.24	0.00331208
+999.36	0.00331185
+999.48	0.00331162
+999.6	0.00331138
+999.72	0.00331115
+999.84	0.00331092
+999.96	0.00331069
+1000.08	0.00331046
+1000.2	0.00331022
+1000.32	0.00330999
+1000.44	0.00330976
+1000.56	0.00330953
+1000.68	0.0033093
+1000.8	0.00330907
+1000.92	0.00330883
+1001.04	0.0033086
+1001.16	0.00330837
+1001.28	0.00330814
+1001.4	0.00330791
+1001.52	0.00330768
+1001.64	0.00330745
+1001.76	0.00330721
+1001.88	0.00330698
+1002	0.00330675
+1002.12	0.00330652
+1002.24	0.00330629
+1002.36	0.00330606
+1002.48	0.00330583
+1002.6	0.0033056
+1002.72	0.00330537
+1002.84	0.00330514
+1002.96	0.00330491
+1003.08	0.00330467
+1003.2	0.00330444
+1003.32	0.00330421
+1003.44	0.00330398
+1003.56	0.00330375
+1003.68	0.00330352
+1003.8	0.00330329
+1003.92	0.00330306
+1004.04	0.00330283
+1004.16	0.0033026
+1004.28	0.00330237
+1004.4	0.00330214
+1004.52	0.00330191
+1004.64	0.00330168
+1004.76	0.00330145
+1004.88	0.00330122
+1005	0.00330099
+1005.12	0.00330076
+1005.24	0.00330053
+1005.36	0.0033003
+1005.48	0.00330007
+1005.6	0.00329984
+1005.72	0.00329961
+1005.84	0.00329939
+1005.96	0.00329916
+1006.08	0.00329893
+1006.2	0.0032987
+1006.32	0.00329847
+1006.44	0.00329824
+1006.56	0.00329801
+1006.68	0.00329778
+1006.8	0.00329755
+1006.92	0.00329732
+1007.04	0.00329709
+1007.16	0.00329687
+1007.28	0.00329664
+1007.4	0.00329641
+1007.52	0.00329618
+1007.64	0.00329595
+1007.76	0.00329572
+1007.88	0.00329549
+1008	0.00329527
+1008.12	0.00329504
+1008.24	0.00329481
+1008.36	0.00329458
+1008.48	0.00329435
+1008.6	0.00329412
+1008.72	0.0032939
+1008.84	0.00329367
+1008.96	0.00329344
+1009.08	0.00329321
+1009.2	0.00329298
+1009.32	0.00329276
+1009.44	0.00329253
+1009.56	0.0032923
+1009.68	0.00329207
+1009.8	0.00329185
+1009.92	0.00329162
+1010.04	0.00329139
+1010.16	0.00329116
+1010.28	0.00329094
+1010.4	0.00329071
+1010.52	0.00329048
+1010.64	0.00329025
+1010.76	0.00329003
+1010.88	0.0032898
+1011	0.00328957
+1011.12	0.00328934
+1011.24	0.00328912
+1011.36	0.00328889
+1011.48	0.00328866
+1011.6	0.00328844
+1011.72	0.00328821
+1011.84	0.00328798
+1011.96	0.00328776
+1012.08	0.00328753
+1012.2	0.0032873
+1012.32	0.00328708
+1012.44	0.00328685
+1012.56	0.00328662
+1012.68	0.0032864
+1012.8	0.00328617
+1012.92	0.00328595
+1013.04	0.00328572
+1013.16	0.00328549
+1013.28	0.00328527
+1013.4	0.00328504
+1013.52	0.00328482
+1013.64	0.00328459
+1013.76	0.00328436
+1013.88	0.00328414
+1014	0.00328391
+1014.12	0.00328369
+1014.24	0.00328346
+1014.36	0.00328323
+1014.48	0.00328301
+1014.6	0.00328278
+1014.72	0.00328256
+1014.84	0.00328233
+1014.96	0.00328211
+1015.08	0.00328188
+1015.2	0.00328166
+1015.32	0.00328143
+1015.44	0.00328121
+1015.56	0.00328098
+1015.68	0.00328076
+1015.8	0.00328053
+1015.92	0.00328031
+1016.04	0.00328008
+1016.16	0.00327986
+1016.28	0.00327963
+1016.4	0.00327941
+1016.52	0.00327918
+1016.64	0.00327896
+1016.76	0.00327873
+1016.88	0.00327851
+1017	0.00327828
+1017.12	0.00327806
+1017.24	0.00327784
+1017.36	0.00327761
+1017.48	0.00327739
+1017.6	0.00327716
+1017.72	0.00327694
+1017.84	0.00327671
+1017.96	0.00327649
+1018.08	0.00327627
+1018.2	0.00327604
+1018.32	0.00327582
+1018.44	0.00327559
+1018.56	0.00327537
+1018.68	0.00327515
+1018.8	0.00327492
+1018.92	0.0032747
+1019.04	0.00327448
+1019.16	0.00327425
+1019.28	0.00327403
+1019.4	0.00327381
+1019.52	0.00327358
+1019.64	0.00327336
+1019.76	0.00327314
+1019.88	0.00327291
+1020	0.00327269
+1020.12	0.00327247
+1020.24	0.00327224
+1020.36	0.00327202
+1020.48	0.0032718
+1020.6	0.00327157
+1020.72	0.00327135
+1020.84	0.00327113
+1020.96	0.0032709
+1021.08	0.00327068
+1021.2	0.00327046
+1021.32	0.00327024
+1021.44	0.00327001
+1021.56	0.00326979
+1021.68	0.00326957
+1021.8	0.00326935
+1021.92	0.00326912
+1022.04	0.0032689
+1022.16	0.00326868
+1022.28	0.00326846
+1022.4	0.00326824
+1022.52	0.00326801
+1022.64	0.00326779
+1022.76	0.00326757
+1022.88	0.00326735
+1023	0.00326713
+1023.12	0.0032669
+1023.24	0.00326668
+1023.36	0.00326646
+1023.48	0.00326624
+1023.6	0.00326602
+1023.72	0.0032658
+1023.84	0.00326557
+1023.96	0.00326535
+1024.08	0.00326513
+1024.2	0.00326491
+1024.32	0.00326469
+1024.44	0.00326447
+1024.56	0.00326425
+1024.68	0.00326402
+1024.8	0.0032638
+1024.92	0.00326358
+1025.04	0.00326336
+1025.16	0.00326314
+1025.28	0.00326292
+1025.4	0.0032627
+1025.52	0.00326248
+1025.64	0.00326226
+1025.76	0.00326204
+1025.88	0.00326181
+1026	0.00326159
+1026.12	0.00326137
+1026.24	0.00326115
+1026.36	0.00326093
+1026.48	0.00326071
+1026.6	0.00326049
+1026.72	0.00326027
+1026.84	0.00326005
+1026.96	0.00325983
+1027.08	0.00325961
+1027.2	0.00325939
+1027.32	0.00325917
+1027.44	0.00325895
+1027.56	0.00325873
+1027.68	0.00325851
+1027.8	0.00325829
+1027.92	0.00325807
+1028.04	0.00325785
+1028.16	0.00325763
+1028.28	0.00325741
+1028.4	0.00325719
+1028.52	0.00325697
+1028.64	0.00325675
+1028.76	0.00325653
+1028.88	0.00325631
+1029	0.00325609
+1029.12	0.00325588
+1029.24	0.00325566
+1029.36	0.00325544
+1029.48	0.00325522
+1029.6	0.003255
+1029.72	0.00325478
+1029.84	0.00325456
+1029.96	0.00325434
+1030.08	0.00325412
+1030.2	0.0032539
+1030.32	0.00325368
+1030.44	0.00325347
+1030.56	0.00325325
+1030.68	0.00325303
+1030.8	0.00325281
+1030.92	0.00325259
+1031.04	0.00325237
+1031.16	0.00325215
+1031.28	0.00325194
+1031.4	0.00325172
+1031.52	0.0032515
+1031.64	0.00325128
+1031.76	0.00325106
+1031.88	0.00325084
+1032	0.00325063
+1032.12	0.00325041
+1032.24	0.00325019
+1032.36	0.00324997
+1032.48	0.00324975
+1032.6	0.00324954
+1032.72	0.00324932
+1032.84	0.0032491
+1032.96	0.00324888
+1033.08	0.00324867
+1033.2	0.00324845
+1033.32	0.00324823
+1033.44	0.00324801
+1033.56	0.00324779
+1033.68	0.00324758
+1033.8	0.00324736
+1033.92	0.00324714
+1034.04	0.00324693
+1034.16	0.00324671
+1034.28	0.00324649
+1034.4	0.00324627
+1034.52	0.00324606
+1034.64	0.00324584
+1034.76	0.00324562
+1034.88	0.00324541
+1035	0.00324519
+1035.12	0.00324497
+1035.24	0.00324476
+1035.36	0.00324454
+1035.48	0.00324432
+1035.6	0.00324411
+1035.72	0.00324389
+1035.84	0.00324367
+1035.96	0.00324346
+1036.08	0.00324324
+1036.2	0.00324302
+1036.32	0.00324281
+1036.44	0.00324259
+1036.56	0.00324237
+1036.68	0.00324216
+1036.8	0.00324194
+1036.92	0.00324173
+1037.04	0.00324151
+1037.16	0.00324129
+1037.28	0.00324108
+1037.4	0.00324086
+1037.52	0.00324065
+1037.64	0.00324043
+1037.76	0.00324021
+1037.88	0.00324
+1038	0.00323978
+1038.12	0.00323957
+1038.24	0.00323935
+1038.36	0.00323914
+1038.48	0.00323892
+1038.6	0.0032387
+1038.72	0.00323849
+1038.84	0.00323827
+1038.96	0.00323806
+1039.08	0.00323784
+1039.2	0.00323763
+1039.32	0.00323741
+1039.44	0.0032372
+1039.56	0.00323698
+1039.68	0.00323677
+1039.8	0.00323655
+1039.92	0.00323634
+1040.04	0.00323612
+1040.16	0.00323591
+1040.28	0.00323569
+1040.4	0.00323548
+1040.52	0.00323526
+1040.64	0.00323505
+1040.76	0.00323484
+1040.88	0.00323462
+1041	0.00323441
+1041.12	0.00323419
+1041.24	0.00323398
+1041.36	0.00323376
+1041.48	0.00323355
+1041.6	0.00323334
+1041.72	0.00323312
+1041.84	0.00323291
+1041.96	0.00323269
+1042.08	0.00323248
+1042.2	0.00323226
+1042.32	0.00323205
+1042.44	0.00323184
+1042.56	0.00323162
+1042.68	0.00323141
+1042.8	0.0032312
+1042.92	0.00323098
+1043.04	0.00323077
+1043.16	0.00323055
+1043.28	0.00323034
+1043.4	0.00323013
+1043.52	0.00322991
+1043.64	0.0032297
+1043.76	0.00322949
+1043.88	0.00322927
+1044	0.00322906
+1044.12	0.00322885
+1044.24	0.00322863
+1044.36	0.00322842
+1044.48	0.00322821
+1044.6	0.003228
+1044.72	0.00322778
+1044.84	0.00322757
+1044.96	0.00322736
+1045.08	0.00322714
+1045.2	0.00322693
+1045.32	0.00322672
+1045.44	0.00322651
+1045.56	0.00322629
+1045.68	0.00322608
+1045.8	0.00322587
+1045.92	0.00322566
+1046.04	0.00322544
+1046.16	0.00322523
+1046.28	0.00322502
+1046.4	0.00322481
+1046.52	0.00322459
+1046.64	0.00322438
+1046.76	0.00322417
+1046.88	0.00322396
+1047	0.00322375
+1047.12	0.00322353
+1047.24	0.00322332
+1047.36	0.00322311
+1047.48	0.0032229
+1047.6	0.00322269
+1047.72	0.00322247
+1047.84	0.00322226
+1047.96	0.00322205
+1048.08	0.00322184
+1048.2	0.00322163
+1048.32	0.00322142
+1048.44	0.0032212
+1048.56	0.00322099
+1048.68	0.00322078
+1048.8	0.00322057
+1048.92	0.00322036
+1049.04	0.00322015
+1049.16	0.00321994
+1049.28	0.00321973
+1049.4	0.00321951
+1049.52	0.0032193
+1049.64	0.00321909
+1049.76	0.00321888
+1049.88	0.00321867
+1050	0.00321846
+1050.12	0.00321825
+1050.24	0.00321804
+1050.36	0.00321783
+1050.48	0.00321762
+1050.6	0.00321741
+1050.72	0.0032172
+1050.84	0.00321699
+1050.96	0.00321677
+1051.08	0.00321656
+1051.2	0.00321635
+1051.32	0.00321614
+1051.44	0.00321593
+1051.56	0.00321572
+1051.68	0.00321551
+1051.8	0.0032153
+1051.92	0.00321509
+1052.04	0.00321488
+1052.16	0.00321467
+1052.28	0.00321446
+1052.4	0.00321425
+1052.52	0.00321404
+1052.64	0.00321383
+1052.76	0.00321362
+1052.88	0.00321341
+1053	0.0032132
+1053.12	0.00321299
+1053.24	0.00321278
+1053.36	0.00321258
+1053.48	0.00321237
+1053.6	0.00321216
+1053.72	0.00321195
+1053.84	0.00321174
+1053.96	0.00321153
+1054.08	0.00321132
+1054.2	0.00321111
+1054.32	0.0032109
+1054.44	0.00321069
+1054.56	0.00321048
+1054.68	0.00321027
+1054.8	0.00321006
+1054.92	0.00320986
+1055.04	0.00320965
+1055.16	0.00320944
+1055.28	0.00320923
+1055.4	0.00320902
+1055.52	0.00320881
+1055.64	0.0032086
+1055.76	0.00320839
+1055.88	0.00320819
+1056	0.00320798
+1056.12	0.00320777
+1056.24	0.00320756
+1056.36	0.00320735
+1056.48	0.00320714
+1056.6	0.00320694
+1056.72	0.00320673
+1056.84	0.00320652
+1056.96	0.00320631
+1057.08	0.0032061
+1057.2	0.00320589
+1057.32	0.00320569
+1057.44	0.00320548
+1057.56	0.00320527
+1057.68	0.00320506
+1057.8	0.00320485
+1057.92	0.00320465
+1058.04	0.00320444
+1058.16	0.00320423
+1058.28	0.00320402
+1058.4	0.00320382
+1058.52	0.00320361
+1058.64	0.0032034
+1058.76	0.00320319
+1058.88	0.00320299
+1059	0.00320278
+1059.12	0.00320257
+1059.24	0.00320236
+1059.36	0.00320216
+1059.48	0.00320195
+1059.6	0.00320174
+1059.72	0.00320154
+1059.84	0.00320133
+1059.96	0.00320112
+1060.08	0.00320092
+1060.2	0.00320071
+1060.32	0.0032005
+1060.44	0.00320029
+1060.56	0.00320009
+1060.68	0.00319988
+1060.8	0.00319967
+1060.92	0.00319947
+1061.04	0.00319926
+1061.16	0.00319905
+1061.28	0.00319885
+1061.4	0.00319864
+1061.52	0.00319844
+1061.64	0.00319823
+1061.76	0.00319802
+1061.88	0.00319782
+1062	0.00319761
+1062.12	0.0031974
+1062.24	0.0031972
+1062.36	0.00319699
+1062.48	0.00319679
+1062.6	0.00319658
+1062.72	0.00319637
+1062.84	0.00319617
+1062.96	0.00319596
+1063.08	0.00319576
+1063.2	0.00319555
+1063.32	0.00319535
+1063.44	0.00319514
+1063.56	0.00319493
+1063.68	0.00319473
+1063.8	0.00319452
+1063.92	0.00319432
+1064.04	0.00319411
+1064.16	0.00319391
+1064.28	0.0031937
+1064.4	0.0031935
+1064.52	0.00319329
+1064.64	0.00319309
+1064.76	0.00319288
+1064.88	0.00319268
+1065	0.00319247
+1065.12	0.00319227
+1065.24	0.00319206
+1065.36	0.00319186
+1065.48	0.00319165
+1065.6	0.00319145
+1065.72	0.00319124
+1065.84	0.00319104
+1065.96	0.00319083
+1066.08	0.00319063
+1066.2	0.00319042
+1066.32	0.00319022
+1066.44	0.00319001
+1066.56	0.00318981
+1066.68	0.0031896
+1066.8	0.0031894
+1066.92	0.0031892
+1067.04	0.00318899
+1067.16	0.00318879
+1067.28	0.00318858
+1067.4	0.00318838
+1067.52	0.00318817
+1067.64	0.00318797
+1067.76	0.00318777
+1067.88	0.00318756
+1068	0.00318736
+1068.12	0.00318715
+1068.24	0.00318695
+1068.36	0.00318675
+1068.48	0.00318654
+1068.6	0.00318634
+1068.72	0.00318614
+1068.84	0.00318593
+1068.96	0.00318573
+1069.08	0.00318553
+1069.2	0.00318532
+1069.32	0.00318512
+1069.44	0.00318491
+1069.56	0.00318471
+1069.68	0.00318451
+1069.8	0.0031843
+1069.92	0.0031841
+1070.04	0.0031839
+1070.16	0.0031837
+1070.28	0.00318349
+1070.4	0.00318329
+1070.52	0.00318309
+1070.64	0.00318288
+1070.76	0.00318268
+1070.88	0.00318248
+1071	0.00318227
+1071.12	0.00318207
+1071.24	0.00318187
+1071.36	0.00318167
+1071.48	0.00318146
+1071.6	0.00318126
+1071.72	0.00318106
+1071.84	0.00318086
+1071.96	0.00318065
+1072.08	0.00318045
+1072.2	0.00318025
+1072.32	0.00318005
+1072.44	0.00317984
+1072.56	0.00317964
+1072.68	0.00317944
+1072.8	0.00317924
+1072.92	0.00317904
+1073.04	0.00317883
+1073.16	0.00317863
+1073.28	0.00317843
+1073.4	0.00317823
+1073.52	0.00317803
+1073.64	0.00317782
+1073.76	0.00317762
+1073.88	0.00317742
+1074	0.00317722
+1074.12	0.00317702
+1074.24	0.00317682
+1074.36	0.00317661
+1074.48	0.00317641
+1074.6	0.00317621
+1074.72	0.00317601
+1074.84	0.00317581
+1074.96	0.00317561
+1075.08	0.00317541
+1075.2	0.0031752
+1075.32	0.003175
+1075.44	0.0031748
+1075.56	0.0031746
+1075.68	0.0031744
+1075.8	0.0031742
+1075.92	0.003174
+1076.04	0.0031738
+1076.16	0.0031736
+1076.28	0.0031734
+1076.4	0.00317319
+1076.52	0.00317299
+1076.64	0.00317279
+1076.76	0.00317259
+1076.88	0.00317239
+1077	0.00317219
+1077.12	0.00317199
+1077.24	0.00317179
+1077.36	0.00317159
+1077.48	0.00317139
+1077.6	0.00317119
+1077.72	0.00317099
+1077.84	0.00317079
+1077.96	0.00317059
+1078.08	0.00317039
+1078.2	0.00317019
+1078.32	0.00316999
+1078.44	0.00316979
+1078.56	0.00316959
+1078.68	0.00316939
+1078.8	0.00316919
+1078.92	0.00316899
+1079.04	0.00316879
+1079.16	0.00316859
+1079.28	0.00316839
+1079.4	0.00316819
+1079.52	0.00316799
+1079.64	0.00316779
+1079.76	0.00316759
+1079.88	0.00316739
+1080	0.00316719
+1080.12	0.00316699
+1080.24	0.00316679
+1080.36	0.00316659
+1080.48	0.00316639
+1080.6	0.00316619
+1080.72	0.00316599
+1080.84	0.0031658
+1080.96	0.0031656
+1081.08	0.0031654
+1081.2	0.0031652
+1081.32	0.003165
+1081.44	0.0031648
+1081.56	0.0031646
+1081.68	0.0031644
+1081.8	0.0031642
+1081.92	0.003164
+1082.04	0.00316381
+1082.16	0.00316361
+1082.28	0.00316341
+1082.4	0.00316321
+1082.52	0.00316301
+1082.64	0.00316281
+1082.76	0.00316261
+1082.88	0.00316242
+1083	0.00316222
+1083.12	0.00316202
+1083.24	0.00316182
+1083.36	0.00316162
+1083.48	0.00316142
+1083.6	0.00316123
+1083.72	0.00316103
+1083.84	0.00316083
+1083.96	0.00316063
+1084.08	0.00316043
+1084.2	0.00316024
+1084.32	0.00316004
+1084.44	0.00315984
+1084.56	0.00315964
+1084.68	0.00315944
+1084.8	0.00315925
+1084.92	0.00315905
+1085.04	0.00315885
+1085.16	0.00315865
+1085.28	0.00315846
+1085.4	0.00315826
+1085.52	0.00315806
+1085.64	0.00315786
+1085.76	0.00315767
+1085.88	0.00315747
+1086	0.00315727
+1086.12	0.00315707
+1086.24	0.00315688
+1086.36	0.00315668
+1086.48	0.00315648
+1086.6	0.00315628
+1086.72	0.00315609
+1086.84	0.00315589
+1086.96	0.00315569
+1087.08	0.0031555
+1087.2	0.0031553
+1087.32	0.0031551
+1087.44	0.00315491
+1087.56	0.00315471
+1087.68	0.00315451
+1087.8	0.00315432
+1087.92	0.00315412
+1088.04	0.00315392
+1088.16	0.00315373
+1088.28	0.00315353
+1088.4	0.00315333
+1088.52	0.00315314
+1088.64	0.00315294
+1088.76	0.00315274
+1088.88	0.00315255
+1089	0.00315235
+1089.12	0.00315216
+1089.24	0.00315196
+1089.36	0.00315176
+1089.48	0.00315157
+1089.6	0.00315137
+1089.72	0.00315117
+1089.84	0.00315098
+1089.96	0.00315078
+1090.08	0.00315059
+1090.2	0.00315039
+1090.32	0.0031502
+1090.44	0.00315
+1090.56	0.0031498
+1090.68	0.00314961
+1090.8	0.00314941
+1090.92	0.00314922
+1091.04	0.00314902
+1091.16	0.00314883
+1091.28	0.00314863
+1091.4	0.00314844
+1091.52	0.00314824
+1091.64	0.00314804
+1091.76	0.00314785
+1091.88	0.00314765
+1092	0.00314746
+1092.12	0.00314726
+1092.24	0.00314707
+1092.36	0.00314687
+1092.48	0.00314668
+1092.6	0.00314648
+1092.72	0.00314629
+1092.84	0.00314609
+1092.96	0.0031459
+1093.08	0.0031457
+1093.2	0.00314551
+1093.32	0.00314531
+1093.44	0.00314512
+1093.56	0.00314493
+1093.68	0.00314473
+1093.8	0.00314454
+1093.92	0.00314434
+1094.04	0.00314415
+1094.16	0.00314395
+1094.28	0.00314376
+1094.4	0.00314356
+1094.52	0.00314337
+1094.64	0.00314318
+1094.76	0.00314298
+1094.88	0.00314279
+1095	0.00314259
+1095.12	0.0031424
+1095.24	0.00314221
+1095.36	0.00314201
+1095.48	0.00314182
+1095.6	0.00314162
+1095.72	0.00314143
+1095.84	0.00314124
+1095.96	0.00314104
+1096.08	0.00314085
+1096.2	0.00314065
+1096.32	0.00314046
+1096.44	0.00314027
+1096.56	0.00314007
+1096.68	0.00313988
+1096.8	0.00313969
+1096.92	0.00313949
+1097.04	0.0031393
+1097.16	0.00313911
+1097.28	0.00313891
+1097.4	0.00313872
+1097.52	0.00313853
+1097.64	0.00313833
+1097.76	0.00313814
+1097.88	0.00313795
+1098	0.00313775
+1098.12	0.00313756
+1098.24	0.00313737
+1098.36	0.00313718
+1098.48	0.00313698
+1098.6	0.00313679
+1098.72	0.0031366
+1098.84	0.0031364
+1098.96	0.00313621
+1099.08	0.00313602
+1099.2	0.00313583
+1099.32	0.00313563
+1099.44	0.00313544
+1099.56	0.00313525
+1099.68	0.00313506
+1099.8	0.00313486
+1099.92	0.00313467
+1100.04	0.00313448
+1100.16	0.00313429
+1100.28	0.00313409
+1100.4	0.0031339
+1100.52	0.00313371
+1100.64	0.00313352
+1100.76	0.00313333
+1100.88	0.00313313
+1101	0.00313294
+1101.12	0.00313275
+1101.24	0.00313256
+1101.36	0.00313237
+1101.48	0.00313217
+1101.6	0.00313198
+1101.72	0.00313179
+1101.84	0.0031316
+1101.96	0.00313141
+1102.08	0.00313122
+1102.2	0.00313102
+1102.32	0.00313083
+1102.44	0.00313064
+1102.56	0.00313045
+1102.68	0.00313026
+1102.8	0.00313007
+1102.92	0.00312987
+1103.04	0.00312968
+1103.16	0.00312949
+1103.28	0.0031293
+1103.4	0.00312911
+1103.52	0.00312892
+1103.64	0.00312873
+1103.76	0.00312854
+1103.88	0.00312835
+1104	0.00312815
+1104.12	0.00312796
+1104.24	0.00312777
+1104.36	0.00312758
+1104.48	0.00312739
+1104.6	0.0031272
+1104.72	0.00312701
+1104.84	0.00312682
+1104.96	0.00312663
+1105.08	0.00312644
+1105.2	0.00312625
+1105.32	0.00312606
+1105.44	0.00312587
+1105.56	0.00312568
+1105.68	0.00312548
+1105.8	0.00312529
+1105.92	0.0031251
+1106.04	0.00312491
+1106.16	0.00312472
+1106.28	0.00312453
+1106.4	0.00312434
+1106.52	0.00312415
+1106.64	0.00312396
+1106.76	0.00312377
+1106.88	0.00312358
+1107	0.00312339
+1107.12	0.0031232
+1107.24	0.00312301
+1107.36	0.00312282
+1107.48	0.00312263
+1107.6	0.00312244
+1107.72	0.00312225
+1107.84	0.00312206
+1107.96	0.00312187
+1108.08	0.00312168
+1108.2	0.0031215
+1108.32	0.00312131
+1108.44	0.00312112
+1108.56	0.00312093
+1108.68	0.00312074
+1108.8	0.00312055
+1108.92	0.00312036
+1109.04	0.00312017
+1109.16	0.00311998
+1109.28	0.00311979
+1109.4	0.0031196
+1109.52	0.00311941
+1109.64	0.00311922
+1109.76	0.00311903
+1109.88	0.00311885
+1110	0.00311866
+1110.12	0.00311847
+1110.24	0.00311828
+1110.36	0.00311809
+1110.48	0.0031179
+1110.6	0.00311771
+1110.72	0.00311752
+1110.84	0.00311733
+1110.96	0.00311715
+1111.08	0.00311696
+1111.2	0.00311677
+1111.32	0.00311658
+1111.44	0.00311639
+1111.56	0.0031162
+1111.68	0.00311602
+1111.8	0.00311583
+1111.92	0.00311564
+1112.04	0.00311545
+1112.16	0.00311526
+1112.28	0.00311507
+1112.4	0.00311489
+1112.52	0.0031147
+1112.64	0.00311451
+1112.76	0.00311432
+1112.88	0.00311413
+1113	0.00311395
+1113.12	0.00311376
+1113.24	0.00311357
+1113.36	0.00311338
+1113.48	0.00311319
+1113.6	0.00311301
+1113.72	0.00311282
+1113.84	0.00311263
+1113.96	0.00311244
+1114.08	0.00311226
+1114.2	0.00311207
+1114.32	0.00311188
+1114.44	0.00311169
+1114.56	0.00311151
+1114.68	0.00311132
+1114.8	0.00311113
+1114.92	0.00311094
+1115.04	0.00311076
+1115.16	0.00311057
+1115.28	0.00311038
+1115.4	0.00311019
+1115.52	0.00311001
+1115.64	0.00310982
+1115.76	0.00310963
+1115.88	0.00310945
+1116	0.00310926
+1116.12	0.00310907
+1116.24	0.00310889
+1116.36	0.0031087
+1116.48	0.00310851
+1116.6	0.00310833
+1116.72	0.00310814
+1116.84	0.00310795
+1116.96	0.00310777
+1117.08	0.00310758
+1117.2	0.00310739
+1117.32	0.00310721
+1117.44	0.00310702
+1117.56	0.00310683
+1117.68	0.00310665
+1117.8	0.00310646
+1117.92	0.00310627
+1118.04	0.00310609
+1118.16	0.0031059
+1118.28	0.00310571
+1118.4	0.00310553
+1118.52	0.00310534
+1118.64	0.00310516
+1118.76	0.00310497
+1118.88	0.00310478
+1119	0.0031046
+1119.12	0.00310441
+1119.24	0.00310423
+1119.36	0.00310404
+1119.48	0.00310385
+1119.6	0.00310367
+1119.72	0.00310348
+1119.84	0.0031033
+1119.96	0.00310311
+1120.08	0.00310293
+1120.2	0.00310274
+1120.32	0.00310256
+1120.44	0.00310237
+1120.56	0.00310218
+1120.68	0.003102
+1120.8	0.00310181
+1120.92	0.00310163
+1121.04	0.00310144
+1121.16	0.00310126
+1121.28	0.00310107
+1121.4	0.00310089
+1121.52	0.0031007
+1121.64	0.00310052
+1121.76	0.00310033
+1121.88	0.00310015
+1122	0.00309996
+1122.12	0.00309978
+1122.24	0.00309959
+1122.36	0.00309941
+1122.48	0.00309922
+1122.6	0.00309904
+1122.72	0.00309885
+1122.84	0.00309867
+1122.96	0.00309848
+1123.08	0.0030983
+1123.2	0.00309811
+1123.32	0.00309793
+1123.44	0.00309774
+1123.56	0.00309756
+1123.68	0.00309738
+1123.8	0.00309719
+1123.92	0.00309701
+1124.04	0.00309682
+1124.16	0.00309664
+1124.28	0.00309645
+1124.4	0.00309627
+1124.52	0.00309609
+1124.64	0.0030959
+1124.76	0.00309572
+1124.88	0.00309553
+1125	0.00309535
+1125.12	0.00309517
+1125.24	0.00309498
+1125.36	0.0030948
+1125.48	0.00309461
+1125.6	0.00309443
+1125.72	0.00309425
+1125.84	0.00309406
+1125.96	0.00309388
+1126.08	0.0030937
+1126.2	0.00309351
+1126.32	0.00309333
+1126.44	0.00309314
+1126.56	0.00309296
+1126.68	0.00309278
+1126.8	0.00309259
+1126.92	0.00309241
+1127.04	0.00309223
+1127.16	0.00309204
+1127.28	0.00309186
+1127.4	0.00309168
+1127.52	0.00309149
+1127.64	0.00309131
+1127.76	0.00309113
+1127.88	0.00309094
+1128	0.00309076
+1128.12	0.00309058
+1128.24	0.0030904
+1128.36	0.00309021
+1128.48	0.00309003
+1128.6	0.00308985
+1128.72	0.00308966
+1128.84	0.00308948
+1128.96	0.0030893
+1129.08	0.00308912
+1129.2	0.00308893
+1129.32	0.00308875
+1129.44	0.00308857
+1129.56	0.00308839
+1129.68	0.0030882
+1129.8	0.00308802
+1129.92	0.00308784
+1130.04	0.00308766
+1130.16	0.00308747
+1130.28	0.00308729
+1130.4	0.00308711
+1130.52	0.00308693
+1130.64	0.00308674
+1130.76	0.00308656
+1130.88	0.00308638
+1131	0.0030862
+1131.12	0.00308602
+1131.24	0.00308583
+1131.36	0.00308565
+1131.48	0.00308547
+1131.6	0.00308529
+1131.72	0.00308511
+1131.84	0.00308492
+1131.96	0.00308474
+1132.08	0.00308456
+1132.2	0.00308438
+1132.32	0.0030842
+1132.44	0.00308402
+1132.56	0.00308383
+1132.68	0.00308365
+1132.8	0.00308347
+1132.92	0.00308329
+1133.04	0.00308311
+1133.16	0.00308293
+1133.28	0.00308275
+1133.4	0.00308256
+1133.52	0.00308238
+1133.64	0.0030822
+1133.76	0.00308202
+1133.88	0.00308184
+1134	0.00308166
+1134.12	0.00308148
+1134.24	0.0030813
+1134.36	0.00308111
+1134.48	0.00308093
+1134.6	0.00308075
+1134.72	0.00308057
+1134.84	0.00308039
+1134.96	0.00308021
+1135.08	0.00308003
+1135.2	0.00307985
+1135.32	0.00307967
+1135.44	0.00307949
+1135.56	0.00307931
+1135.68	0.00307913
+1135.8	0.00307895
+1135.92	0.00307876
+1136.04	0.00307858
+1136.16	0.0030784
+1136.28	0.00307822
+1136.4	0.00307804
+1136.52	0.00307786
+1136.64	0.00307768
+1136.76	0.0030775
+1136.88	0.00307732
+1137	0.00307714
+1137.12	0.00307696
+1137.24	0.00307678
+1137.36	0.0030766
+1137.48	0.00307642
+1137.6	0.00307624
+1137.72	0.00307606
+1137.84	0.00307588
+1137.96	0.0030757
+1138.08	0.00307552
+1138.2	0.00307534
+1138.32	0.00307516
+1138.44	0.00307498
+1138.56	0.0030748
+1138.68	0.00307462
+1138.8	0.00307444
+1138.92	0.00307426
+1139.04	0.00307408
+1139.16	0.0030739
+1139.28	0.00307372
+1139.4	0.00307355
+1139.52	0.00307337
+1139.64	0.00307319
+1139.76	0.00307301
+1139.88	0.00307283
+1140	0.00307265
+1140.12	0.00307247
+1140.24	0.00307229
+1140.36	0.00307211
+1140.48	0.00307193
+1140.6	0.00307175
+1140.72	0.00307157
+1140.84	0.00307139
+1140.96	0.00307122
+1141.08	0.00307104
+1141.2	0.00307086
+1141.32	0.00307068
+1141.44	0.0030705
+1141.56	0.00307032
+1141.68	0.00307014
+1141.8	0.00306996
+1141.92	0.00306979
+1142.04	0.00306961
+1142.16	0.00306943
+1142.28	0.00306925
+1142.4	0.00306907
+1142.52	0.00306889
+1142.64	0.00306871
+1142.76	0.00306854
+1142.88	0.00306836
+1143	0.00306818
+1143.12	0.003068
+1143.24	0.00306782
+1143.36	0.00306764
+1143.48	0.00306747
+1143.6	0.00306729
+1143.72	0.00306711
+1143.84	0.00306693
+1143.96	0.00306675
+1144.08	0.00306658
+1144.2	0.0030664
+1144.32	0.00306622
+1144.44	0.00306604
+1144.56	0.00306586
+1144.68	0.00306569
+1144.8	0.00306551
+1144.92	0.00306533
+1145.04	0.00306515
+1145.16	0.00306498
+1145.28	0.0030648
+1145.4	0.00306462
+1145.52	0.00306444
+1145.64	0.00306427
+1145.76	0.00306409
+1145.88	0.00306391
+1146	0.00306373
+1146.12	0.00306356
+1146.24	0.00306338
+1146.36	0.0030632
+1146.48	0.00306302
+1146.6	0.00306285
+1146.72	0.00306267
+1146.84	0.00306249
+1146.96	0.00306231
+1147.08	0.00306214
+1147.2	0.00306196
+1147.32	0.00306178
+1147.44	0.00306161
+1147.56	0.00306143
+1147.68	0.00306125
+1147.8	0.00306108
+1147.92	0.0030609
+1148.04	0.00306072
+1148.16	0.00306055
+1148.28	0.00306037
+1148.4	0.00306019
+1148.52	0.00306002
+1148.64	0.00305984
+1148.76	0.00305966
+1148.88	0.00305949
+1149	0.00305931
+1149.12	0.00305913
+1149.24	0.00305896
+1149.36	0.00305878
+1149.48	0.0030586
+1149.6	0.00305843
+1149.72	0.00305825
+1149.84	0.00305808
+1149.96	0.0030579
+1150.08	0.00305772
+1150.2	0.00305755
+1150.32	0.00305737
+1150.44	0.00305719
+1150.56	0.00305702
+1150.68	0.00305684
+1150.8	0.00305667
+1150.92	0.00305649
+1151.04	0.00305631
+1151.16	0.00305614
+1151.28	0.00305596
+1151.4	0.00305579
+1151.52	0.00305561
+1151.64	0.00305544
+1151.76	0.00305526
+1151.88	0.00305508
+1152	0.00305491
+1152.12	0.00305473
+1152.24	0.00305456
+1152.36	0.00305438
+1152.48	0.00305421
+1152.6	0.00305403
+1152.72	0.00305386
+1152.84	0.00305368
+1152.96	0.00305351
+1153.08	0.00305333
+1153.2	0.00305316
+1153.32	0.00305298
+1153.44	0.0030528
+1153.56	0.00305263
+1153.68	0.00305245
+1153.8	0.00305228
+1153.92	0.0030521
+1154.04	0.00305193
+1154.16	0.00305175
+1154.28	0.00305158
+1154.4	0.0030514
+1154.52	0.00305123
+1154.64	0.00305106
+1154.76	0.00305088
+1154.88	0.00305071
+1155	0.00305053
+1155.12	0.00305036
+1155.24	0.00305018
+1155.36	0.00305001
+1155.48	0.00304983
+1155.6	0.00304966
+1155.72	0.00304948
+1155.84	0.00304931
+1155.96	0.00304914
+1156.08	0.00304896
+1156.2	0.00304879
+1156.32	0.00304861
+1156.44	0.00304844
+1156.56	0.00304826
+1156.68	0.00304809
+1156.8	0.00304792
+1156.92	0.00304774
+1157.04	0.00304757
+1157.16	0.00304739
+1157.28	0.00304722
+1157.4	0.00304705
+1157.52	0.00304687
+1157.64	0.0030467
+1157.76	0.00304652
+1157.88	0.00304635
+1158	0.00304618
+1158.12	0.003046
+1158.24	0.00304583
+1158.36	0.00304565
+1158.48	0.00304548
+1158.6	0.00304531
+1158.72	0.00304513
+1158.84	0.00304496
+1158.96	0.00304479
+1159.08	0.00304461
+1159.2	0.00304444
+1159.32	0.00304427
+1159.44	0.00304409
+1159.56	0.00304392
+1159.68	0.00304375
+1159.8	0.00304357
+1159.92	0.0030434
+1160.04	0.00304323
+1160.16	0.00304305
+1160.28	0.00304288
+1160.4	0.00304271
+1160.52	0.00304253
+1160.64	0.00304236
+1160.76	0.00304219
+1160.88	0.00304202
+1161	0.00304184
+1161.12	0.00304167
+1161.24	0.0030415
+1161.36	0.00304132
+1161.48	0.00304115
+1161.6	0.00304098
+1161.72	0.00304081
+1161.84	0.00304063
+1161.96	0.00304046
+1162.08	0.00304029
+1162.2	0.00304012
+1162.32	0.00303994
+1162.44	0.00303977
+1162.56	0.0030396
+1162.68	0.00303943
+1162.8	0.00303925
+1162.92	0.00303908
+1163.04	0.00303891
+1163.16	0.00303874
+1163.28	0.00303856
+1163.4	0.00303839
+1163.52	0.00303822
+1163.64	0.00303805
+1163.76	0.00303788
+1163.88	0.0030377
+1164	0.00303753
+1164.12	0.00303736
+1164.24	0.00303719
+1164.36	0.00303702
+1164.48	0.00303684
+1164.6	0.00303667
+1164.72	0.0030365
+1164.84	0.00303633
+1164.96	0.00303616
+1165.08	0.00303599
+1165.2	0.00303581
+1165.32	0.00303564
+1165.44	0.00303547
+1165.56	0.0030353
+1165.68	0.00303513
+1165.8	0.00303496
+1165.92	0.00303478
+1166.04	0.00303461
+1166.16	0.00303444
+1166.28	0.00303427
+1166.4	0.0030341
+1166.52	0.00303393
+1166.64	0.00303376
+1166.76	0.00303358
+1166.88	0.00303341
+1167	0.00303324
+1167.12	0.00303307
+1167.24	0.0030329
+1167.36	0.00303273
+1167.48	0.00303256
+1167.6	0.00303239
+1167.72	0.00303222
+1167.84	0.00303205
+1167.96	0.00303187
+1168.08	0.0030317
+1168.2	0.00303153
+1168.32	0.00303136
+1168.44	0.00303119
+1168.56	0.00303102
+1168.68	0.00303085
+1168.8	0.00303068
+1168.92	0.00303051
+1169.04	0.00303034
+1169.16	0.00303017
+1169.28	0.00303
+1169.4	0.00302983
+1169.52	0.00302966
+1169.64	0.00302949
+1169.76	0.00302932
+1169.88	0.00302915
+1170	0.00302898
+1170.12	0.00302881
+1170.24	0.00302864
+1170.36	0.00302846
+1170.48	0.00302829
+1170.6	0.00302812
+1170.72	0.00302795
+1170.84	0.00302778
+1170.96	0.00302761
+1171.08	0.00302744
+1171.2	0.00302727
+1171.32	0.0030271
+1171.44	0.00302693
+1171.56	0.00302677
+1171.68	0.0030266
+1171.8	0.00302643
+1171.92	0.00302626
+1172.04	0.00302609
+1172.16	0.00302592
+1172.28	0.00302575
+1172.4	0.00302558
+1172.52	0.00302541
+1172.64	0.00302524
+1172.76	0.00302507
+1172.88	0.0030249
+1173	0.00302473
+1173.12	0.00302456
+1173.24	0.00302439
+1173.36	0.00302422
+1173.48	0.00302405
+1173.6	0.00302388
+1173.72	0.00302371
+1173.84	0.00302354
+1173.96	0.00302338
+1174.08	0.00302321
+1174.2	0.00302304
+1174.32	0.00302287
+1174.44	0.0030227
+1174.56	0.00302253
+1174.68	0.00302236
+1174.8	0.00302219
+1174.92	0.00302202
+1175.04	0.00302186
+1175.16	0.00302169
+1175.28	0.00302152
+1175.4	0.00302135
+1175.52	0.00302118
+1175.64	0.00302101
+1175.76	0.00302084
+1175.88	0.00302067
+1176	0.00302051
+1176.12	0.00302034
+1176.24	0.00302017
+1176.36	0.00302
+1176.48	0.00301983
+1176.6	0.00301966
+1176.72	0.0030195
+1176.84	0.00301933
+1176.96	0.00301916
+1177.08	0.00301899
+1177.2	0.00301882
+1177.32	0.00301865
+1177.44	0.00301849
+1177.56	0.00301832
+1177.68	0.00301815
+1177.8	0.00301798
+1177.92	0.00301781
+1178.04	0.00301765
+1178.16	0.00301748
+1178.28	0.00301731
+1178.4	0.00301714
+1178.52	0.00301697
+1178.64	0.00301681
+1178.76	0.00301664
+1178.88	0.00301647
+1179	0.0030163
+1179.12	0.00301614
+1179.24	0.00301597
+1179.36	0.0030158
+1179.48	0.00301563
+1179.6	0.00301547
+1179.72	0.0030153
+1179.84	0.00301513
+1179.96	0.00301496
+1180.08	0.0030148
+1180.2	0.00301463
+1180.32	0.00301446
+1180.44	0.00301429
+1180.56	0.00301413
+1180.68	0.00301396
+1180.8	0.00301379
+1180.92	0.00301362
+1181.04	0.00301346
+1181.16	0.00301329
+1181.28	0.00301312
+1181.4	0.00301296
+1181.52	0.00301279
+1181.64	0.00301262
+1181.76	0.00301246
+1181.88	0.00301229
+1182	0.00301212
+1182.12	0.00301195
+1182.24	0.00301179
+1182.36	0.00301162
+1182.48	0.00301145
+1182.6	0.00301129
+1182.72	0.00301112
+1182.84	0.00301095
+1182.96	0.00301079
+1183.08	0.00301062
+1183.2	0.00301045
+1183.32	0.00301029
+1183.44	0.00301012
+1183.56	0.00300996
+1183.68	0.00300979
+1183.8	0.00300962
+1183.92	0.00300946
+1184.04	0.00300929
+1184.16	0.00300912
+1184.28	0.00300896
+1184.4	0.00300879
+1184.52	0.00300863
+1184.64	0.00300846
+1184.76	0.00300829
+1184.88	0.00300813
+1185	0.00300796
+1185.12	0.00300779
+1185.24	0.00300763
+1185.36	0.00300746
+1185.48	0.0030073
+1185.6	0.00300713
+1185.72	0.00300697
+1185.84	0.0030068
+1185.96	0.00300663
+1186.08	0.00300647
+1186.2	0.0030063
+1186.32	0.00300614
+1186.44	0.00300597
+1186.56	0.00300581
+1186.68	0.00300564
+1186.8	0.00300547
+1186.92	0.00300531
+1187.04	0.00300514
+1187.16	0.00300498
+1187.28	0.00300481
+1187.4	0.00300465
+1187.52	0.00300448
+1187.64	0.00300432
+1187.76	0.00300415
+1187.88	0.00300399
+1188	0.00300382
+1188.12	0.00300366
+1188.24	0.00300349
+1188.36	0.00300333
+1188.48	0.00300316
+1188.6	0.003003
+1188.72	0.00300283
+1188.84	0.00300267
+1188.96	0.0030025
+1189.08	0.00300234
+1189.2	0.00300217
+1189.32	0.00300201
+1189.44	0.00300184
+1189.56	0.00300168
+1189.68	0.00300151
+1189.8	0.00300135
+1189.92	0.00300118
+1190.04	0.00300102
+1190.16	0.00300085
+1190.28	0.00300069
+1190.4	0.00300052
+1190.52	0.00300036
+1190.64	0.0030002
+1190.76	0.00300003
+1190.88	0.00299987
+1191	0.0029997
+1191.12	0.00299954
+1191.24	0.00299937
+1191.36	0.00299921
+1191.48	0.00299905
+1191.6	0.00299888
+1191.72	0.00299872
+1191.84	0.00299855
+1191.96	0.00299839
+1192.08	0.00299822
+1192.2	0.00299806
+1192.32	0.0029979
+1192.44	0.00299773
+1192.56	0.00299757
+1192.68	0.0029974
+1192.8	0.00299724
+1192.92	0.00299708
+1193.04	0.00299691
+1193.16	0.00299675
+1193.28	0.00299659
+1193.4	0.00299642
+1193.52	0.00299626
+1193.64	0.00299609
+1193.76	0.00299593
+1193.88	0.00299577
+1194	0.0029956
+1194.12	0.00299544
+1194.24	0.00299528
+1194.36	0.00299511
+1194.48	0.00299495
+1194.6	0.00299479
+1194.72	0.00299462
+1194.84	0.00299446
+1194.96	0.0029943
+1195.08	0.00299413
+1195.2	0.00299397
+1195.32	0.00299381
+1195.44	0.00299364
+1195.56	0.00299348
+1195.68	0.00299332
+1195.8	0.00299315
+1195.92	0.00299299
+1196.04	0.00299283
+1196.16	0.00299267
+1196.28	0.0029925
+1196.4	0.00299234
+1196.52	0.00299218
+1196.64	0.00299201
+1196.76	0.00299185
+1196.88	0.00299169
+1197	0.00299153
+1197.12	0.00299136
+1197.24	0.0029912
+1197.36	0.00299104
+1197.48	0.00299088
+1197.6	0.00299071
+1197.72	0.00299055
+1197.84	0.00299039
+1197.96	0.00299023
+1198.08	0.00299006
+1198.2	0.0029899
+1198.32	0.00298974
+1198.44	0.00298958
+1198.56	0.00298941
+1198.68	0.00298925
+1198.8	0.00298909
+1198.92	0.00298893
+1199.04	0.00298876
+1199.16	0.0029886
+1199.28	0.00298844
+1199.4	0.00298828
+1199.52	0.00298812
+1199.64	0.00298795
+1199.76	0.00298779
+1199.88	0.00298763
+1200	0.00298747
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_C.G4table b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_C.G4table
new file mode 100644
index 0000000000000000000000000000000000000000..91d510b0e8ed01b1f226819b76166c1f4e9ceb8a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_C.G4table
@@ -0,0 +1,469 @@
+Table from Geant4 generate using NPSimulation 	Particle: alpha	Material: NPS_C
+0	0
+0.001	0.0800342
+0.002	0.089502
+0.003	0.0968824
+0.004	0.103038
+0.005	0.108819
+0.006	0.114128
+0.007	0.119081
+0.008	0.123761
+0.009	0.128328
+0.01	0.132552
+0.011	0.136608
+0.012	0.140564
+0.013	0.144303
+0.014	0.148047
+0.015	0.151666
+0.016	0.155131
+0.017	0.158456
+0.018	0.161655
+0.019	0.164737
+0.02	0.167765
+0.021	0.170886
+0.022	0.173916
+0.023	0.176861
+0.024	0.179726
+0.025	0.182516
+0.026	0.185237
+0.027	0.187892
+0.028	0.190484
+0.029	0.193017
+0.03	0.195495
+0.031	0.19792
+0.032	0.200294
+0.033	0.202621
+0.034	0.204901
+0.035	0.207138
+0.036	0.209332
+0.037	0.211487
+0.038	0.213603
+0.039	0.215681
+0.041	0.219878
+0.043	0.224
+0.045	0.227999
+0.047	0.231883
+0.049	0.235659
+0.051	0.239333
+0.053	0.242918
+0.055	0.246466
+0.057	0.249928
+0.059	0.253309
+0.061	0.256612
+0.063	0.259842
+0.065	0.263
+0.067	0.266109
+0.069	0.269169
+0.071	0.272168
+0.073	0.275106
+0.075	0.277988
+0.077	0.280814
+0.079	0.283587
+0.083	0.289035
+0.087	0.294293
+0.091	0.299371
+0.095	0.30428
+0.099	0.30903
+0.103	0.313629
+0.107	0.3181
+0.111	0.32246
+0.115	0.326691
+0.119	0.330798
+0.123	0.334787
+0.127	0.338663
+0.131	0.342431
+0.135	0.346118
+0.139	0.349712
+0.143	0.353209
+0.147	0.356613
+0.155	0.363155
+0.163	0.369359
+0.171	0.375248
+0.179	0.38084
+0.187	0.386152
+0.195	0.391198
+0.203	0.396017
+0.211	0.400612
+0.219	0.404979
+0.227	0.409129
+0.235	0.413072
+0.251	0.420375
+0.267	0.426962
+0.283	0.432917
+0.299	0.438259
+0.315	0.443034
+0.331	0.447285
+0.363	0.454365
+0.395	0.459772
+0.427	0.46378
+0.491	0.468233
+0.619	0.467001
+0.875	0.444095
+1.131	0.412876
+1.387	0.382064
+1.643	0.354088
+1.899	0.329315
+2.155	0.307531
+2.411	0.288349
+2.667	0.271385
+2.923	0.256314
+3.179	0.242844
+3.435	0.230743
+3.691	0.219815
+3.947	0.209901
+4.203	0.200873
+4.459	0.192614
+4.715	0.18503
+4.971	0.178041
+5.227	0.171581
+5.483	0.165592
+5.739	0.160024
+5.995	0.154834
+6.251	0.149984
+6.507	0.145441
+6.763	0.141177
+7.019	0.137168
+7.275	0.133391
+7.531	0.129825
+7.787	0.126454
+8.043	0.123441
+8.299	0.120855
+8.555	0.118379
+8.811	0.116008
+9.067	0.113736
+9.323	0.111558
+9.579	0.109468
+9.835	0.107448
+10.091	0.105493
+10.347	0.103614
+10.603	0.101806
+10.859	0.100067
+11.115	0.0983906
+11.371	0.096775
+11.627	0.0952167
+11.883	0.0937127
+12.139	0.0922597
+12.395	0.0908512
+12.651	0.0894897
+12.907	0.0881729
+13.163	0.0868987
+13.419	0.0856654
+13.675	0.0844707
+13.931	0.0833126
+14.187	0.0821896
+14.443	0.0811
+14.699	0.0800423
+14.955	0.0790151
+15.211	0.0780171
+15.467	0.0770469
+15.723	0.0761036
+15.979	0.0751419
+16.235	0.074249
+16.491	0.0733688
+16.747	0.0725115
+17.003	0.0716763
+17.259	0.0708623
+17.515	0.0700687
+17.771	0.0692946
+18.027	0.0685394
+18.283	0.0678023
+18.539	0.0670828
+18.795	0.06638
+19.051	0.0656936
+19.307	0.0650228
+19.563	0.0643672
+19.819	0.0637261
+20.331	0.0624859
+20.843	0.0612985
+21.355	0.0601605
+21.867	0.0590699
+22.379	0.0580238
+22.891	0.0570164
+23.403	0.056041
+23.915	0.0551019
+24.427	0.054197
+24.939	0.0533246
+25.451	0.0524827
+25.963	0.0516698
+26.475	0.0508844
+26.987	0.0501251
+27.499	0.0493905
+28.011	0.0486794
+28.523	0.0479908
+29.035	0.0473235
+29.547	0.0466765
+30.059	0.0460489
+30.571	0.0454397
+31.083	0.0448483
+31.595	0.0442737
+32.107	0.0437154
+32.619	0.0431724
+33.131	0.0426421
+33.643	0.0421258
+34.155	0.041623
+34.667	0.0411333
+35.179	0.0406561
+35.691	0.040191
+36.203	0.0397375
+36.715	0.0392951
+37.227	0.0388634
+37.739	0.0384421
+38.251	0.0380307
+38.763	0.037629
+39.275	0.0372364
+39.787	0.0368528
+40.299	0.0364778
+40.811	0.0361112
+41.323	0.0357525
+42.347	0.0350583
+43.371	0.0343932
+44.395	0.0337554
+45.419	0.033143
+46.443	0.0325547
+47.467	0.031989
+48.491	0.0314446
+49.515	0.0309203
+50.539	0.0304149
+51.563	0.0299275
+52.587	0.0294571
+53.611	0.0290026
+54.635	0.0285634
+55.659	0.0281387
+56.683	0.0277277
+57.707	0.0273298
+58.731	0.0269442
+59.755	0.0265706
+60.779	0.0262082
+61.803	0.0258566
+62.827	0.0255153
+63.851	0.0251838
+64.875	0.0248617
+65.899	0.0245487
+66.923	0.0242442
+67.947	0.023948
+68.971	0.0236597
+69.995	0.0233791
+71.019	0.0231057
+72.043	0.0228393
+73.067	0.0225797
+74.091	0.0223265
+75.115	0.0220796
+76.139	0.0218386
+77.163	0.0216035
+78.187	0.0213739
+79.211	0.0211497
+80.235	0.0209306
+81.259	0.0207166
+82.283	0.0205074
+83.307	0.0203028
+85.355	0.019907
+87.403	0.019528
+89.451	0.0191648
+91.499	0.0188164
+93.547	0.0184818
+95.595	0.0181602
+97.643	0.017851
+99.691	0.0175533
+101.739	0.0172665
+103.787	0.01699
+105.835	0.0167233
+107.883	0.0164658
+109.931	0.0162171
+111.979	0.0159767
+114.027	0.0157441
+116.075	0.0155191
+118.123	0.0153012
+120.171	0.0150901
+122.219	0.0148854
+124.267	0.014687
+126.315	0.0144944
+128.363	0.0143074
+130.411	0.0141259
+132.459	0.0139495
+134.507	0.013778
+136.555	0.0136112
+138.603	0.0134489
+140.651	0.013291
+142.699	0.0131373
+144.747	0.0129875
+146.795	0.0128416
+148.843	0.0126993
+150.891	0.0125607
+152.939	0.0124254
+154.987	0.0122934
+157.035	0.0121646
+159.083	0.0120388
+161.131	0.011916
+163.179	0.0117961
+165.227	0.0116788
+169.323	0.0114522
+173.419	0.0112354
+177.515	0.0110279
+181.611	0.0108291
+185.707	0.0106383
+189.803	0.0104551
+193.899	0.0102792
+197.995	0.0101099
+202.091	0.009947
+206.187	0.00979009
+210.283	0.00963885
+214.379	0.00949298
+218.475	0.00935218
+222.571	0.00921618
+226.667	0.00908475
+230.763	0.00895765
+234.859	0.00883466
+238.955	0.0087156
+243.051	0.00860026
+247.147	0.00848848
+251.243	0.00838009
+255.339	0.00827494
+259.435	0.00817287
+263.531	0.00807376
+267.627	0.00797748
+271.723	0.0078839
+275.819	0.00779291
+279.915	0.00770441
+284.011	0.00761829
+288.107	0.00753445
+292.203	0.00745281
+296.299	0.00737327
+300.395	0.00729576
+304.491	0.0072202
+308.587	0.00714652
+312.683	0.00707464
+316.779	0.0070045
+324.971	0.00686919
+333.163	0.00674011
+341.355	0.00661684
+349.547	0.006499
+357.739	0.00638622
+365.931	0.00627818
+374.123	0.00617459
+382.315	0.00607517
+390.507	0.00597968
+398.699	0.00588789
+406.891	0.00579957
+415.083	0.00571455
+423.275	0.00563262
+431.467	0.00555363
+439.659	0.00547743
+447.851	0.00540385
+456.043	0.00533277
+464.235	0.00526407
+472.427	0.00519762
+480.619	0.00513331
+488.811	0.00507105
+497.003	0.00501073
+505.195	0.00495227
+513.387	0.00489557
+521.579	0.00484057
+529.771	0.00478718
+537.963	0.00473534
+546.155	0.00468498
+554.347	0.00463603
+562.539	0.00458844
+570.731	0.00454215
+578.923	0.0044971
+595.307	0.00441057
+611.691	0.00432846
+628.075	0.00425044
+644.459	0.00417622
+660.843	0.00410552
+677.227	0.0040381
+693.611	0.00397374
+709.995	0.00391223
+726.379	0.00385339
+742.763	0.00379705
+759.147	0.00374305
+775.531	0.00369126
+791.915	0.00364153
+808.299	0.00359375
+824.683	0.00354781
+841.067	0.0035036
+857.451	0.00346102
+873.835	0.00342
+890.219	0.00338045
+906.603	0.00334228
+922.987	0.00330544
+939.371	0.00326984
+955.755	0.00323544
+972.139	0.00320217
+988.523	0.00316997
+1004.91	0.00313881
+1037.68	0.00307937
+1070.44	0.00302351
+1103.21	0.00297091
+1135.98	0.0029213
+1168.75	0.00287444
+1201.52	0.00283011
+1234.28	0.00278786
+1267.05	0.00274775
+1299.82	0.00270964
+1332.59	0.00267341
+1365.36	0.00263891
+1398.12	0.00260603
+1430.89	0.00257466
+1463.66	0.00254471
+1496.43	0.00251607
+1529.2	0.00248868
+1561.96	0.00246245
+1594.73	0.00243731
+1627.5	0.00241321
+1693.04	0.00236785
+1758.57	0.00232595
+1824.11	0.00228716
+1889.64	0.00225114
+1955.18	0.00221764
+2020.72	0.0021864
+2086.25	0.00215722
+2151.79	0.00212991
+2217.32	0.00210432
+2282.86	0.00208029
+2348.4	0.00205769
+2413.93	0.00203642
+2479.47	0.00201636
+2610.54	0.00197952
+2741.61	0.00194655
+2872.68	0.00191691
+3003.76	0.00189016
+3134.83	0.00186594
+3265.9	0.00184395
+3396.97	0.00182392
+3528.04	0.00180563
+3659.12	0.0017889
+3921.26	0.00175945
+4183.4	0.00173449
+4445.55	0.00171322
+4707.69	0.00169498
+4969.84	0.00167928
+5494.12	0.00165396
+6018.41	0.00163486
+6542.7	0.00162036
+7591.28	0.00160102
+8639.85	0.00159018
+10737	0.0015826
+14931.3	0.00159117
+23319.9	0.00162878
+31708.5	0.00166528
+40097.1	0.00169651
+48485.7	0.00172312
+56874.3	0.00174605
+65263	0.00176609
+73651.6	0.00178383
+82040.2	0.00179971
+98817.4	0.00182714
+115595	0.00185021
+132372	0.00187008
+149149	0.00188749
+182703	0.00191691
+216258	0.00194114
+249812	0.0019617
+283367	0.00197955
+350476	0.00200939
+417584	0.00203375
+484693	0.00205431
+551802	0.0020721
+686020	0.00210174
+820238	0.00212588
+954455	0.00214623
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_Si.G4table b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_Si.G4table
new file mode 100644
index 0000000000000000000000000000000000000000..50a1580b2306c631e507fcfccdfd89fd7f91c3d1
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/EnergyLossTable/alpha_Si.G4table
@@ -0,0 +1,10002 @@
+Table from Geant4 generate using NPSimulation 	Particle: alpha	Material: Si
+0	0
+0.12	0.227842
+0.24	0.318853
+0.36	0.356212
+0.48	0.363529
+0.6	0.35703
+0.72	0.345305
+0.84	0.332168
+0.96	0.319206
+1.08	0.306973
+1.2	0.295608
+1.32	0.285112
+1.44	0.27541
+1.56	0.266429
+1.68	0.25809
+1.8	0.250323
+1.92	0.243073
+2.04	0.236281
+2.16	0.229904
+2.28	0.223901
+2.4	0.21824
+2.52	0.212893
+2.64	0.207831
+2.76	0.203029
+2.88	0.198468
+3	0.19413
+3.12	0.19
+3.24	0.18606
+3.36	0.182298
+3.48	0.1787
+3.6	0.175257
+3.72	0.171957
+3.84	0.168792
+3.96	0.165754
+4.08	0.162834
+4.2	0.160027
+4.32	0.157324
+4.44	0.15472
+4.56	0.152212
+4.68	0.149793
+4.8	0.147457
+4.92	0.145201
+5.04	0.14302
+5.16	0.140912
+5.28	0.13887
+5.4	0.136892
+5.52	0.134975
+5.64	0.133117
+5.76	0.131315
+5.88	0.129567
+6	0.12787
+6.12	0.126221
+6.24	0.12462
+6.36	0.123062
+6.48	0.121547
+6.6	0.120073
+6.72	0.118638
+6.84	0.117241
+6.96	0.115879
+7.08	0.114552
+7.2	0.113259
+7.32	0.111997
+7.44	0.110766
+7.56	0.109565
+7.68	0.108392
+7.8	0.107247
+7.92	0.106128
+8.04	0.105037
+8.16	0.10397
+8.28	0.102924
+8.4	0.1019
+8.52	0.100896
+8.64	0.0999119
+8.76	0.0989477
+8.88	0.0980026
+9	0.0970766
+9.12	0.0961686
+9.24	0.0952783
+9.36	0.0942125
+9.48	0.0933637
+9.6	0.092531
+9.72	0.0920727
+9.84	0.0912566
+9.96	0.0904557
+10.08	0.0896695
+10.2	0.0888977
+10.32	0.0881399
+10.44	0.0873957
+10.56	0.0866649
+10.68	0.0859469
+10.8	0.0852416
+10.92	0.0845486
+11.04	0.0838761
+11.16	0.0832164
+11.28	0.0824697
+11.4	0.0818352
+11.52	0.0812108
+11.64	0.0808357
+11.76	0.0802298
+11.88	0.0796336
+12	0.0790469
+12.12	0.0784692
+12.24	0.0779006
+12.36	0.0773406
+12.48	0.0767892
+12.6	0.0762446
+12.72	0.0757095
+12.84	0.0751825
+12.96	0.0746633
+13.08	0.0741517
+13.2	0.0735978
+13.32	0.0731032
+13.44	0.0726157
+13.56	0.0722883
+13.68	0.0718082
+13.8	0.0713349
+13.92	0.0708683
+14.04	0.0704082
+14.16	0.0699546
+14.28	0.0695072
+14.4	0.069066
+14.52	0.0686308
+14.64	0.0683369
+14.76	0.0679157
+14.88	0.0675003
+15	0.0670638
+15.12	0.0666612
+15.24	0.0662639
+15.36	0.0658717
+15.48	0.0654846
+15.6	0.0651025
+15.72	0.0647253
+15.84	0.0643528
+15.96	0.0639851
+16.08	0.063622
+16.2	0.0632634
+16.32	0.0629092
+16.44	0.0625594
+16.56	0.0623445
+16.68	0.0620026
+16.8	0.0616649
+16.92	0.0613312
+17.04	0.0610015
+17.16	0.0606754
+17.28	0.0603517
+17.4	0.0600319
+17.52	0.0597159
+17.64	0.0594036
+17.76	0.059095
+17.88	0.05879
+18	0.0584885
+18.12	0.0581905
+18.24	0.0578959
+18.36	0.0576047
+18.48	0.0573167
+18.6	0.0570319
+18.72	0.0567503
+18.84	0.0564554
+18.96	0.0561809
+19.08	0.0559094
+19.2	0.0556408
+19.32	0.0553751
+19.44	0.0552671
+19.56	0.0550061
+19.68	0.0547479
+19.8	0.0544924
+19.92	0.0542396
+20.04	0.0539894
+20.16	0.0537418
+20.28	0.0534968
+20.4	0.0532542
+20.52	0.0530142
+20.64	0.0527766
+20.76	0.0525414
+20.88	0.0523085
+21	0.052078
+21.12	0.0518498
+21.24	0.0516238
+21.36	0.0514
+21.48	0.0511784
+21.6	0.050959
+21.72	0.0507417
+21.84	0.0505264
+21.96	0.0503133
+22.08	0.0501021
+22.2	0.049893
+22.32	0.0496858
+22.44	0.0494806
+22.56	0.0492812
+22.68	0.0490801
+22.8	0.0488809
+22.92	0.0486834
+23.04	0.0484878
+23.16	0.048294
+23.28	0.0481019
+23.4	0.0479115
+23.52	0.0477228
+23.64	0.0475358
+23.76	0.0473505
+23.88	0.0471669
+24	0.0469849
+24.12	0.0468044
+24.24	0.0466256
+24.36	0.0464483
+24.48	0.0462725
+24.6	0.0460982
+24.72	0.0459254
+24.84	0.045754
+24.96	0.0455841
+25.08	0.0454157
+25.2	0.0452486
+25.32	0.045083
+25.44	0.0449187
+25.56	0.0447558
+25.68	0.0445942
+25.8	0.0444339
+25.92	0.0442749
+26.04	0.0441173
+26.16	0.0439609
+26.28	0.0438057
+26.4	0.0436621
+26.52	0.0435094
+26.64	0.0433579
+26.76	0.0432076
+26.88	0.0430585
+27	0.0429105
+27.12	0.0427637
+27.24	0.0426181
+27.36	0.0424735
+27.48	0.0423301
+27.6	0.0421878
+27.72	0.0420466
+27.84	0.0419064
+27.96	0.0417673
+28.08	0.0416292
+28.2	0.0414922
+28.32	0.0413649
+28.44	0.04123
+28.56	0.0410961
+28.68	0.0409632
+28.8	0.0408313
+28.92	0.0407004
+29.04	0.0405704
+29.16	0.0404413
+29.28	0.0404063
+29.4	0.040278
+29.52	0.0401507
+29.64	0.0400243
+29.76	0.0398988
+29.88	0.0397743
+30	0.0396506
+30.12	0.0395277
+30.24	0.0394058
+30.36	0.0392846
+30.48	0.0391644
+30.6	0.0390449
+30.72	0.0389266
+30.84	0.0388092
+30.96	0.0386926
+31.08	0.0385768
+31.2	0.0384618
+31.32	0.0383476
+31.44	0.0382341
+31.56	0.0381213
+31.68	0.0380094
+31.8	0.0378981
+31.92	0.0377876
+32.04	0.0376778
+32.16	0.0375819
+32.28	0.0374735
+32.4	0.0373658
+32.52	0.0372588
+32.64	0.0371525
+32.76	0.0370469
+32.88	0.036942
+33	0.0368377
+33.12	0.0367341
+33.24	0.0366311
+33.36	0.0365288
+33.48	0.0364271
+33.6	0.0363261
+33.72	0.0362257
+33.84	0.0361259
+33.96	0.0360268
+34.08	0.0359282
+34.2	0.0358303
+34.32	0.035733
+34.44	0.0356362
+34.56	0.0355401
+34.68	0.0354445
+34.8	0.0353495
+34.92	0.0352551
+35.04	0.0351613
+35.16	0.035068
+35.28	0.0349753
+35.4	0.0348831
+35.52	0.0347915
+35.64	0.0347004
+35.76	0.0346098
+35.88	0.0345198
+36	0.0344303
+36.12	0.0343414
+36.24	0.0342529
+36.36	0.034165
+36.48	0.0340775
+36.6	0.0339906
+36.72	0.0339042
+36.84	0.0338183
+36.96	0.0337328
+37.08	0.0336479
+37.2	0.0335634
+37.32	0.0334794
+37.44	0.0333959
+37.56	0.0333129
+37.68	0.0332303
+37.8	0.0331482
+37.92	0.0330851
+38.04	0.0330039
+38.16	0.0329232
+38.28	0.0328429
+38.4	0.032763
+38.52	0.0326836
+38.64	0.0326046
+38.76	0.032526
+38.88	0.0324479
+39	0.0323701
+39.12	0.0322928
+39.24	0.032216
+39.36	0.0321395
+39.48	0.0320634
+39.6	0.0319878
+39.72	0.0319125
+39.84	0.0318377
+39.96	0.0317632
+40.08	0.0316892
+40.2	0.0316155
+40.32	0.0315422
+40.44	0.0314693
+40.56	0.0313968
+40.68	0.0313246
+40.8	0.0312529
+40.92	0.0311815
+41.04	0.0311104
+41.16	0.0310398
+41.28	0.0309694
+41.4	0.0308995
+41.52	0.0308299
+41.64	0.0307607
+41.76	0.0306918
+41.88	0.0306233
+42	0.0305551
+42.12	0.0304872
+42.24	0.0304197
+42.36	0.0303525
+42.48	0.0302857
+42.6	0.0302192
+42.72	0.030153
+42.84	0.0300872
+42.96	0.0300216
+43.08	0.0299564
+43.2	0.0298916
+43.32	0.029827
+43.44	0.0297627
+43.56	0.0296988
+43.68	0.0296352
+43.8	0.0295718
+43.92	0.0295088
+44.04	0.0294461
+44.16	0.0293837
+44.28	0.0293216
+44.4	0.0292598
+44.52	0.0291983
+44.64	0.0291371
+44.76	0.0290762
+44.88	0.0290155
+45	0.0289552
+45.12	0.0288952
+45.24	0.0288354
+45.36	0.0287759
+45.48	0.0287167
+45.6	0.0286577
+45.72	0.028599
+45.84	0.0285407
+45.96	0.0284825
+46.08	0.0284247
+46.2	0.0283671
+46.32	0.0283097
+46.44	0.0282527
+46.56	0.0281959
+46.68	0.0281393
+46.8	0.028083
+46.92	0.028027
+47.04	0.0279712
+47.16	0.0279156
+47.28	0.0278603
+47.4	0.0278053
+47.52	0.0277505
+47.64	0.027696
+47.76	0.0276417
+47.88	0.0275876
+48	0.0275338
+48.12	0.0274802
+48.24	0.0274268
+48.36	0.0273737
+48.48	0.0273208
+48.6	0.0272681
+48.72	0.0272157
+48.84	0.0271635
+48.96	0.0271115
+49.08	0.0270598
+49.2	0.0269207
+49.32	0.0268684
+49.44	0.0268163
+49.56	0.0267645
+49.68	0.0267129
+49.8	0.0266615
+49.92	0.0266103
+50.04	0.0265593
+50.16	0.0265086
+50.28	0.026458
+50.4	0.0264077
+50.52	0.0263576
+50.64	0.0263077
+50.76	0.026258
+50.88	0.0262085
+51	0.0261592
+51.12	0.0261102
+51.24	0.0260613
+51.36	0.0260126
+51.48	0.0259642
+51.6	0.0259159
+51.72	0.0258679
+51.84	0.02582
+51.96	0.0257723
+52.08	0.0257248
+52.2	0.0256776
+52.32	0.0256305
+52.44	0.0255836
+52.56	0.0255369
+52.68	0.0254904
+52.8	0.025444
+52.92	0.0253979
+53.04	0.0253519
+53.16	0.0253062
+53.28	0.0252606
+53.4	0.0252152
+53.52	0.0251699
+53.64	0.0251249
+53.76	0.02508
+53.88	0.0250353
+54	0.0249908
+54.12	0.0249465
+54.24	0.0249023
+54.36	0.0248583
+54.48	0.0248145
+54.6	0.0247708
+54.72	0.0247273
+54.84	0.024684
+54.96	0.0246409
+55.08	0.0245979
+55.2	0.0245551
+55.32	0.0245125
+55.44	0.02447
+55.56	0.0244277
+55.68	0.0243855
+55.8	0.0243435
+55.92	0.0243017
+56.04	0.02426
+56.16	0.0242185
+56.28	0.0241771
+56.4	0.0241359
+56.52	0.0240949
+56.64	0.024054
+56.76	0.0240133
+56.88	0.0239727
+57	0.0239322
+57.12	0.0238919
+57.24	0.0238853
+57.36	0.0238452
+57.48	0.0238052
+57.6	0.0237654
+57.72	0.0237257
+57.84	0.0236862
+57.96	0.0236468
+58.08	0.0236075
+58.2	0.0235684
+58.32	0.0235295
+58.44	0.0234906
+58.56	0.023452
+58.68	0.0234134
+58.8	0.023375
+58.92	0.0233368
+59.04	0.0232987
+59.16	0.0232607
+59.28	0.0232229
+59.4	0.0231852
+59.52	0.0231476
+59.64	0.0231102
+59.76	0.0230729
+59.88	0.0230358
+60	0.0229987
+60.12	0.0229618
+60.24	0.0229251
+60.36	0.0228885
+60.48	0.022852
+60.6	0.0228156
+60.72	0.0227793
+60.84	0.0227432
+60.96	0.0227072
+61.08	0.0226714
+61.2	0.0226356
+61.32	0.0226
+61.44	0.0225645
+61.56	0.0225292
+61.68	0.0224939
+61.8	0.0224588
+61.92	0.0224238
+62.04	0.0223889
+62.16	0.0223542
+62.28	0.0223195
+62.4	0.022285
+62.52	0.0222506
+62.64	0.0222163
+62.76	0.0221821
+62.88	0.0221481
+63	0.0221141
+63.12	0.0220803
+63.24	0.0220466
+63.36	0.022013
+63.48	0.0219795
+63.6	0.0219462
+63.72	0.0219129
+63.84	0.0218798
+63.96	0.0218467
+64.08	0.0218138
+64.2	0.021781
+64.32	0.0217483
+64.44	0.0217157
+64.56	0.0216832
+64.68	0.0216508
+64.8	0.0216186
+64.92	0.0215864
+65.04	0.0215543
+65.16	0.0215224
+65.28	0.0214905
+65.4	0.0214588
+65.52	0.0214271
+65.64	0.0213956
+65.76	0.0213641
+65.88	0.0213328
+66	0.0213016
+66.12	0.0212704
+66.24	0.0212394
+66.36	0.0212085
+66.48	0.0211776
+66.6	0.0211469
+66.72	0.0211163
+66.84	0.0210857
+66.96	0.0210553
+67.08	0.021025
+67.2	0.0209947
+67.32	0.0209646
+67.44	0.0209345
+67.56	0.0209046
+67.68	0.0208747
+67.8	0.0208449
+67.92	0.0208153
+68.04	0.0207857
+68.16	0.0207562
+68.28	0.0207268
+68.4	0.0206975
+68.52	0.0206683
+68.64	0.0206391
+68.76	0.0206101
+68.88	0.0205812
+69	0.0205523
+69.12	0.0205236
+69.24	0.0204949
+69.36	0.0204292
+69.48	0.0204026
+69.6	0.0203761
+69.72	0.0203496
+69.84	0.0203233
+69.96	0.020297
+70.08	0.0202708
+70.2	0.0202447
+70.32	0.0202187
+70.44	0.0201927
+70.56	0.0201668
+70.68	0.020141
+70.8	0.0201152
+70.92	0.0200895
+71.04	0.0200639
+71.16	0.0200384
+71.28	0.0200129
+71.4	0.0199875
+71.52	0.0199622
+71.64	0.0199369
+71.76	0.0199117
+71.88	0.0198866
+72	0.0198616
+72.12	0.0198366
+72.24	0.0198117
+72.36	0.0197868
+72.48	0.019762
+72.6	0.0197373
+72.72	0.0197127
+72.84	0.0196881
+72.96	0.0196636
+73.08	0.0196392
+73.2	0.0196148
+73.32	0.0195905
+73.44	0.0195663
+73.56	0.0195421
+73.68	0.019518
+73.8	0.019494
+73.92	0.01947
+74.04	0.0194461
+74.16	0.0194222
+74.28	0.0193984
+74.4	0.0193747
+74.52	0.0193511
+74.64	0.0193275
+74.76	0.0193039
+74.88	0.0192805
+75	0.0192571
+75.12	0.0192337
+75.24	0.0192104
+75.36	0.0191872
+75.48	0.0191641
+75.6	0.019141
+75.72	0.0191179
+75.84	0.019095
+75.96	0.0190721
+76.08	0.0190492
+76.2	0.0190264
+76.32	0.0190037
+76.44	0.018981
+76.56	0.0189584
+76.68	0.0189359
+76.8	0.0189134
+76.92	0.0188909
+77.04	0.0188686
+77.16	0.0188462
+77.28	0.018824
+77.4	0.0188018
+77.52	0.0187796
+77.64	0.0187576
+77.76	0.0187355
+77.88	0.0187136
+78	0.0186917
+78.12	0.0186698
+78.24	0.018648
+78.36	0.0186262
+78.48	0.0186046
+78.6	0.0185829
+78.72	0.0185613
+78.84	0.0185398
+78.96	0.0185184
+79.08	0.0184969
+79.2	0.0184756
+79.32	0.0184543
+79.44	0.018433
+79.56	0.0184118
+79.68	0.0183907
+79.8	0.0183696
+79.92	0.0183486
+80.04	0.0183276
+80.16	0.0183067
+80.28	0.0182858
+80.4	0.018265
+80.52	0.0182442
+80.64	0.0182235
+80.76	0.0182028
+80.88	0.0181822
+81	0.0181616
+81.12	0.0181411
+81.24	0.0181207
+81.36	0.0181003
+81.48	0.0180799
+81.6	0.0180596
+81.72	0.0180394
+81.84	0.0180191
+81.96	0.017999
+82.08	0.0179789
+82.2	0.0179588
+82.32	0.0179388
+82.44	0.0179189
+82.56	0.017899
+82.68	0.0178791
+82.8	0.0178593
+82.92	0.0178395
+83.04	0.0178198
+83.16	0.0178002
+83.28	0.0177805
+83.4	0.017761
+83.52	0.0177414
+83.64	0.017722
+83.76	0.0177025
+83.88	0.0176832
+84	0.0176638
+84.12	0.0176446
+84.24	0.0176253
+84.36	0.0176061
+84.48	0.017587
+84.6	0.0175679
+84.72	0.0175488
+84.84	0.0175298
+84.96	0.0175109
+85.08	0.0174919
+85.2	0.0174731
+85.32	0.0174542
+85.44	0.0174355
+85.56	0.0174167
+85.68	0.017398
+85.8	0.0173794
+85.92	0.0173608
+86.04	0.0173422
+86.16	0.0173237
+86.28	0.0173053
+86.4	0.0172868
+86.52	0.0172685
+86.64	0.0172501
+86.76	0.0172318
+86.88	0.0172136
+87	0.0171954
+87.12	0.0171772
+87.24	0.0171591
+87.36	0.017141
+87.48	0.017123
+87.6	0.017105
+87.72	0.017087
+87.84	0.0170691
+87.96	0.0170512
+88.08	0.0170334
+88.2	0.0170156
+88.32	0.0169979
+88.44	0.0169802
+88.56	0.0169625
+88.68	0.0169449
+88.8	0.0169273
+88.92	0.0169098
+89.04	0.0168923
+89.16	0.0168748
+89.28	0.0168574
+89.4	0.01684
+89.52	0.0168227
+89.64	0.0168054
+89.76	0.0167882
+89.88	0.0167709
+90	0.0167538
+90.12	0.0167366
+90.24	0.0167195
+90.36	0.0167025
+90.48	0.0166855
+90.6	0.0166685
+90.72	0.0166515
+90.84	0.0166346
+90.96	0.0166178
+91.08	0.016601
+91.2	0.0165842
+91.32	0.0165674
+91.44	0.0165507
+91.56	0.016534
+91.68	0.0165174
+91.8	0.0165008
+91.92	0.0164842
+92.04	0.0164677
+92.16	0.0164512
+92.28	0.0164348
+92.4	0.0164184
+92.52	0.016402
+92.64	0.0163856
+92.76	0.0163693
+92.88	0.0163531
+93	0.0163368
+93.12	0.0163206
+93.24	0.0163045
+93.36	0.0162884
+93.48	0.0162723
+93.6	0.0162562
+93.72	0.0162402
+93.84	0.0162242
+93.96	0.0162083
+94.08	0.0161924
+94.2	0.0161765
+94.32	0.0161606
+94.44	0.0161448
+94.56	0.0161291
+94.68	0.0161133
+94.8	0.0160976
+94.92	0.016082
+95.04	0.0160663
+95.16	0.0160507
+95.28	0.0160352
+95.4	0.0160196
+95.52	0.0160041
+95.64	0.0159887
+95.76	0.0159732
+95.88	0.0159578
+96	0.0159425
+96.12	0.0159271
+96.24	0.0159118
+96.36	0.0158966
+96.48	0.0158813
+96.6	0.0158661
+96.72	0.015851
+96.84	0.0158578
+96.96	0.0158427
+97.08	0.0158275
+97.2	0.0158125
+97.32	0.0157974
+97.44	0.0157824
+97.56	0.0157674
+97.68	0.0157524
+97.8	0.0157375
+97.92	0.0157225
+98.04	0.0157077
+98.16	0.0156928
+98.28	0.015678
+98.4	0.0156632
+98.52	0.0156485
+98.64	0.0156338
+98.76	0.0156191
+98.88	0.0156044
+99	0.0155898
+99.12	0.0155752
+99.24	0.0155607
+99.36	0.0155461
+99.48	0.0155316
+99.6	0.0155172
+99.72	0.0155027
+99.84	0.0154883
+99.96	0.0154739
+100.08	0.0154596
+100.2	0.0154453
+100.32	0.015431
+100.44	0.0154167
+100.56	0.0154025
+100.68	0.0153883
+100.8	0.0153741
+100.92	0.01536
+101.04	0.0153459
+101.16	0.0153318
+101.28	0.0153177
+101.4	0.0153037
+101.52	0.0152897
+101.64	0.0152757
+101.76	0.0152618
+101.88	0.0152479
+102	0.015234
+102.12	0.0152201
+102.24	0.0152063
+102.36	0.0151925
+102.48	0.0151787
+102.6	0.015165
+102.72	0.0151513
+102.84	0.0151376
+102.96	0.0151239
+103.08	0.0151103
+103.2	0.0150967
+103.32	0.0150831
+103.44	0.0150696
+103.56	0.0150561
+103.68	0.0150426
+103.8	0.0150291
+103.92	0.0150157
+104.04	0.0150023
+104.16	0.0149889
+104.28	0.0149755
+104.4	0.0149622
+104.52	0.0149489
+104.64	0.0149356
+104.76	0.0149224
+104.88	0.0149091
+105	0.0148959
+105.12	0.0148828
+105.24	0.0148696
+105.36	0.0148565
+105.48	0.0148434
+105.6	0.0148303
+105.72	0.0148173
+105.84	0.0148043
+105.96	0.0147913
+106.08	0.0147783
+106.2	0.0147654
+106.32	0.0147525
+106.44	0.0147396
+106.56	0.0147267
+106.68	0.0147139
+106.8	0.0147011
+106.92	0.0146883
+107.04	0.0146755
+107.16	0.0146628
+107.28	0.0146501
+107.4	0.0146374
+107.52	0.0146247
+107.64	0.0146121
+107.76	0.0145995
+107.88	0.0145869
+108	0.0145743
+108.12	0.0145618
+108.24	0.0145493
+108.36	0.0145368
+108.48	0.0145243
+108.6	0.0145119
+108.72	0.0144994
+108.84	0.014487
+108.96	0.0144747
+109.08	0.0144623
+109.2	0.01445
+109.32	0.0144377
+109.44	0.0144254
+109.56	0.0144132
+109.68	0.0144009
+109.8	0.0143887
+109.92	0.0143766
+110.04	0.0143644
+110.16	0.0143523
+110.28	0.0143401
+110.4	0.0143281
+110.52	0.014316
+110.64	0.0143039
+110.76	0.0142919
+110.88	0.0142799
+111	0.014268
+111.12	0.014256
+111.24	0.0142441
+111.36	0.0142322
+111.48	0.0142203
+111.6	0.0142084
+111.72	0.0141966
+111.84	0.0141848
+111.96	0.014173
+112.08	0.0141612
+112.2	0.0141494
+112.32	0.0141377
+112.44	0.014126
+112.56	0.0141143
+112.68	0.0141027
+112.8	0.014091
+112.92	0.0140794
+113.04	0.0140678
+113.16	0.0140562
+113.28	0.0140447
+113.4	0.0140331
+113.52	0.0140216
+113.64	0.0140101
+113.76	0.0139987
+113.88	0.0139872
+114	0.0139758
+114.12	0.0139644
+114.24	0.013953
+114.36	0.0139416
+114.48	0.0139303
+114.6	0.013919
+114.72	0.0139077
+114.84	0.0138964
+114.96	0.0138851
+115.08	0.0138739
+115.2	0.0138627
+115.32	0.0138515
+115.44	0.0138403
+115.56	0.0138291
+115.68	0.013818
+115.8	0.0138069
+115.92	0.0137958
+116.04	0.0137847
+116.16	0.0137737
+116.28	0.0137626
+116.4	0.0137516
+116.52	0.0137406
+116.64	0.0137296
+116.76	0.0137187
+116.88	0.0137077
+117	0.0136968
+117.12	0.0136859
+117.24	0.0136751
+117.36	0.0136642
+117.48	0.0136534
+117.6	0.0136425
+117.72	0.0136317
+117.84	0.013621
+117.96	0.0136102
+118.08	0.0135995
+118.2	0.0135887
+118.32	0.013578
+118.44	0.0135674
+118.56	0.0135567
+118.68	0.0135461
+118.8	0.0135354
+118.92	0.0135248
+119.04	0.0135143
+119.16	0.0135037
+119.28	0.0134931
+119.4	0.0134826
+119.52	0.0134721
+119.64	0.0134616
+119.76	0.0134511
+119.88	0.0134407
+120	0.0134302
+120.12	0.0134198
+120.24	0.0134094
+120.36	0.013399
+120.48	0.0133887
+120.6	0.0133783
+120.72	0.013368
+120.84	0.0133577
+120.96	0.0133474
+121.08	0.0133371
+121.2	0.0133269
+121.32	0.0133166
+121.44	0.0133064
+121.56	0.0132962
+121.68	0.013286
+121.8	0.0132759
+121.92	0.0132657
+122.04	0.0132556
+122.16	0.0132455
+122.28	0.0132354
+122.4	0.0132253
+122.52	0.0132153
+122.64	0.0132052
+122.76	0.0131952
+122.88	0.0131852
+123	0.0131752
+123.12	0.0131652
+123.24	0.0131553
+123.36	0.0131453
+123.48	0.0131354
+123.6	0.0131255
+123.72	0.0131156
+123.84	0.0131057
+123.96	0.0130959
+124.08	0.013086
+124.2	0.0130762
+124.32	0.0130664
+124.44	0.0130566
+124.56	0.0130469
+124.68	0.0130371
+124.8	0.0130274
+124.92	0.0130177
+125.04	0.013008
+125.16	0.0129983
+125.28	0.0129886
+125.4	0.0129789
+125.52	0.0129693
+125.64	0.0129597
+125.76	0.0129501
+125.88	0.0129405
+126	0.0129309
+126.12	0.0129214
+126.24	0.0129118
+126.36	0.0129023
+126.48	0.0128928
+126.6	0.0128833
+126.72	0.0128738
+126.84	0.0128643
+126.96	0.0128549
+127.08	0.0128455
+127.2	0.0128361
+127.32	0.0128267
+127.44	0.0128173
+127.56	0.0128079
+127.68	0.0127986
+127.8	0.0127892
+127.92	0.0127799
+128.04	0.0127706
+128.16	0.0127613
+128.28	0.012752
+128.4	0.0127428
+128.52	0.0127335
+128.64	0.0127243
+128.76	0.0127151
+128.88	0.0127059
+129	0.0126967
+129.12	0.0126876
+129.24	0.0126784
+129.36	0.0126693
+129.48	0.0126601
+129.6	0.012651
+129.72	0.0126419
+129.84	0.0126329
+129.96	0.0126238
+130.08	0.0126148
+130.2	0.0126057
+130.32	0.0125967
+130.44	0.0125877
+130.56	0.0125787
+130.68	0.0125697
+130.8	0.0125608
+130.92	0.0125518
+131.04	0.0125429
+131.16	0.012534
+131.28	0.0125251
+131.4	0.0125162
+131.52	0.0125073
+131.64	0.0124985
+131.76	0.0124896
+131.88	0.0124808
+132	0.012472
+132.12	0.0124632
+132.24	0.0124544
+132.36	0.0124456
+132.48	0.0124369
+132.6	0.0124281
+132.72	0.0124194
+132.84	0.0124107
+132.96	0.012402
+133.08	0.0123933
+133.2	0.0123846
+133.32	0.012376
+133.44	0.0123673
+133.56	0.0123587
+133.68	0.0123501
+133.8	0.0123415
+133.92	0.0123329
+134.04	0.0123243
+134.16	0.0123157
+134.28	0.0123072
+134.4	0.0122986
+134.52	0.0122901
+134.64	0.0122816
+134.76	0.0122731
+134.88	0.0122646
+135	0.0122562
+135.12	0.0122477
+135.24	0.0122393
+135.36	0.0122308
+135.48	0.0122224
+135.6	0.012214
+135.72	0.0122056
+135.84	0.0121973
+135.96	0.0121889
+136.08	0.0121805
+136.2	0.0121722
+136.32	0.0121639
+136.44	0.0121556
+136.56	0.0121473
+136.68	0.012139
+136.8	0.0121307
+136.92	0.0121225
+137.04	0.0121142
+137.16	0.012106
+137.28	0.0120978
+137.4	0.0120895
+137.52	0.0120814
+137.64	0.0120732
+137.76	0.0120737
+137.88	0.0120656
+138	0.0120574
+138.12	0.0120492
+138.24	0.0120411
+138.36	0.012033
+138.48	0.0120249
+138.6	0.0120168
+138.72	0.0120087
+138.84	0.0120006
+138.96	0.0119925
+139.08	0.0119845
+139.2	0.0119765
+139.32	0.0119684
+139.44	0.0119604
+139.56	0.0119524
+139.68	0.0119444
+139.8	0.0119365
+139.92	0.0119285
+140.04	0.0119205
+140.16	0.0119126
+140.28	0.0119047
+140.4	0.0118968
+140.52	0.0118889
+140.64	0.011881
+140.76	0.0118731
+140.88	0.0118652
+141	0.0118574
+141.12	0.0118495
+141.24	0.0118417
+141.36	0.0118339
+141.48	0.0118261
+141.6	0.0118183
+141.72	0.0118105
+141.84	0.0118027
+141.96	0.011795
+142.08	0.0117872
+142.2	0.0117795
+142.32	0.0117717
+142.44	0.011764
+142.56	0.0117563
+142.68	0.0117486
+142.8	0.011741
+142.92	0.0117333
+143.04	0.0117256
+143.16	0.011718
+143.28	0.0117104
+143.4	0.0117027
+143.52	0.0116951
+143.64	0.0116875
+143.76	0.0116799
+143.88	0.0116724
+144	0.0116648
+144.12	0.0116572
+144.24	0.0116497
+144.36	0.0116422
+144.48	0.0116347
+144.6	0.0116271
+144.72	0.0116196
+144.84	0.0116122
+144.96	0.0116047
+145.08	0.0115972
+145.2	0.0115898
+145.32	0.0115823
+145.44	0.0115749
+145.56	0.0115675
+145.68	0.0115601
+145.8	0.0115527
+145.92	0.0115453
+146.04	0.0115379
+146.16	0.0115305
+146.28	0.0115232
+146.4	0.0115158
+146.52	0.0115085
+146.64	0.0115012
+146.76	0.0114939
+146.88	0.0114866
+147	0.0114793
+147.12	0.011472
+147.24	0.0114647
+147.36	0.0114575
+147.48	0.0114502
+147.6	0.011443
+147.72	0.0114357
+147.84	0.0114285
+147.96	0.0114213
+148.08	0.0114141
+148.2	0.0114069
+148.32	0.0113998
+148.44	0.0113926
+148.56	0.0113855
+148.68	0.0113783
+148.8	0.0113712
+148.92	0.0113641
+149.04	0.0113569
+149.16	0.0113498
+149.28	0.0113428
+149.4	0.0113357
+149.52	0.0113286
+149.64	0.0113215
+149.76	0.0113145
+149.88	0.0113074
+150	0.0113004
+150.12	0.0112934
+150.24	0.0112864
+150.36	0.0112794
+150.48	0.0112724
+150.6	0.0112654
+150.72	0.0112584
+150.84	0.0112515
+150.96	0.0112445
+151.08	0.0112376
+151.2	0.0112307
+151.32	0.0112237
+151.44	0.0112168
+151.56	0.0112099
+151.68	0.011203
+151.8	0.0111962
+151.92	0.0111893
+152.04	0.0111824
+152.16	0.0111756
+152.28	0.0111687
+152.4	0.0111619
+152.52	0.0111551
+152.64	0.0111483
+152.76	0.0111414
+152.88	0.0111347
+153	0.0111279
+153.12	0.0111211
+153.24	0.0111143
+153.36	0.0111076
+153.48	0.0111008
+153.6	0.0110941
+153.72	0.0110874
+153.84	0.0110806
+153.96	0.0110739
+154.08	0.0110672
+154.2	0.0110605
+154.32	0.0110539
+154.44	0.0110472
+154.56	0.0110405
+154.68	0.0110339
+154.8	0.0110272
+154.92	0.0110206
+155.04	0.011014
+155.16	0.0110073
+155.28	0.0110007
+155.4	0.0109941
+155.52	0.0109875
+155.64	0.010981
+155.76	0.0109744
+155.88	0.0109678
+156	0.0109613
+156.12	0.0109547
+156.24	0.0109482
+156.36	0.0109417
+156.48	0.0109352
+156.6	0.0109286
+156.72	0.0109221
+156.84	0.0109157
+156.96	0.0109092
+157.08	0.0109027
+157.2	0.0108962
+157.32	0.0108898
+157.44	0.0108833
+157.56	0.0108769
+157.68	0.0108705
+157.8	0.0108641
+157.92	0.0108576
+158.04	0.0108512
+158.16	0.0108449
+158.28	0.0108385
+158.4	0.0108321
+158.52	0.0108257
+158.64	0.0108194
+158.76	0.010813
+158.88	0.0108067
+159	0.0108003
+159.12	0.010794
+159.24	0.0107877
+159.36	0.0107814
+159.48	0.0107751
+159.6	0.0107688
+159.72	0.0107625
+159.84	0.0107562
+159.96	0.01075
+160.08	0.0107437
+160.2	0.0107375
+160.32	0.0107312
+160.44	0.010725
+160.56	0.0107188
+160.68	0.0107126
+160.8	0.0107064
+160.92	0.0107002
+161.04	0.010694
+161.16	0.0106878
+161.28	0.0106816
+161.4	0.0106754
+161.52	0.0106693
+161.64	0.0106631
+161.76	0.010657
+161.88	0.0106509
+162	0.0106448
+162.12	0.0106386
+162.24	0.0106325
+162.36	0.0106264
+162.48	0.0106203
+162.6	0.0106143
+162.72	0.0106082
+162.84	0.0106021
+162.96	0.0105961
+163.08	0.01059
+163.2	0.010584
+163.32	0.0105779
+163.44	0.0105719
+163.56	0.0105659
+163.68	0.0105599
+163.8	0.0105539
+163.92	0.0105479
+164.04	0.0105419
+164.16	0.0105359
+164.28	0.0105299
+164.4	0.010524
+164.52	0.010518
+164.64	0.0105121
+164.76	0.0105061
+164.88	0.0105002
+165	0.0104943
+165.12	0.0104884
+165.24	0.0104825
+165.36	0.0104765
+165.48	0.0104707
+165.6	0.0104648
+165.72	0.0104589
+165.84	0.010453
+165.96	0.0104472
+166.08	0.0104413
+166.2	0.0104355
+166.32	0.0104296
+166.44	0.0104238
+166.56	0.010418
+166.68	0.0104121
+166.8	0.0104063
+166.92	0.0104005
+167.04	0.0103947
+167.16	0.0103889
+167.28	0.0103832
+167.4	0.0103774
+167.52	0.0103716
+167.64	0.0103659
+167.76	0.0103601
+167.88	0.0103544
+168	0.0103486
+168.12	0.0103429
+168.24	0.0103372
+168.36	0.0103315
+168.48	0.0103258
+168.6	0.0103201
+168.72	0.0103144
+168.84	0.0103087
+168.96	0.010303
+169.08	0.0102974
+169.2	0.0102917
+169.32	0.010286
+169.44	0.0102804
+169.56	0.0102748
+169.68	0.0102691
+169.8	0.0102635
+169.92	0.0102579
+170.04	0.0102523
+170.16	0.0102467
+170.28	0.0102411
+170.4	0.0102355
+170.52	0.0102299
+170.64	0.0102243
+170.76	0.0102187
+170.88	0.0102132
+171	0.0102076
+171.12	0.0102021
+171.24	0.0101965
+171.36	0.010191
+171.48	0.0101855
+171.6	0.01018
+171.72	0.0101744
+171.84	0.0101689
+171.96	0.0101634
+172.08	0.0101579
+172.2	0.0101525
+172.32	0.010147
+172.44	0.0101415
+172.56	0.010136
+172.68	0.0101306
+172.8	0.0101251
+172.92	0.0101197
+173.04	0.0101143
+173.16	0.0101088
+173.28	0.0101034
+173.4	0.010098
+173.52	0.0100926
+173.64	0.0100872
+173.76	0.0100818
+173.88	0.0100764
+174	0.010071
+174.12	0.0100656
+174.24	0.0100602
+174.36	0.0100549
+174.48	0.0100495
+174.6	0.0100442
+174.72	0.0100388
+174.84	0.0100335
+174.96	0.0100282
+175.08	0.0100228
+175.2	0.0100175
+175.32	0.0100122
+175.44	0.0100069
+175.56	0.0100016
+175.68	0.00999632
+175.8	0.00999104
+175.92	0.00998576
+176.04	0.00998049
+176.16	0.00997522
+176.28	0.00996996
+176.4	0.00996471
+176.52	0.00995947
+176.64	0.00995423
+176.76	0.00994899
+176.88	0.00994377
+177	0.00993855
+177.12	0.00993333
+177.24	0.00992813
+177.36	0.00992293
+177.48	0.00991773
+177.6	0.00991255
+177.72	0.00990736
+177.84	0.00990219
+177.96	0.00989702
+178.08	0.00989186
+178.2	0.0098867
+178.32	0.00988156
+178.44	0.00987641
+178.56	0.00987128
+178.68	0.00986615
+178.8	0.00986102
+178.92	0.0098559
+179.04	0.00985079
+179.16	0.00984569
+179.28	0.00984059
+179.4	0.00983549
+179.52	0.00983041
+179.64	0.00982533
+179.76	0.00982025
+179.88	0.00981518
+180	0.00981012
+180.12	0.00980506
+180.24	0.00980001
+180.36	0.00979497
+180.48	0.00978993
+180.6	0.0097849
+180.72	0.00977987
+180.84	0.00977485
+180.96	0.00976984
+181.08	0.00976483
+181.2	0.00975983
+181.32	0.00975483
+181.44	0.00974984
+181.56	0.00974486
+181.68	0.00973988
+181.8	0.00973491
+181.92	0.00972994
+182.04	0.00972498
+182.16	0.00972002
+182.28	0.00971507
+182.4	0.00971013
+182.52	0.0097052
+182.64	0.00970026
+182.76	0.00969534
+182.88	0.00969042
+183	0.00968551
+183.12	0.0096806
+183.24	0.0096757
+183.36	0.0096708
+183.48	0.00966591
+183.6	0.00966103
+183.72	0.00965615
+183.84	0.00965127
+183.96	0.00964641
+184.08	0.00964154
+184.2	0.00963669
+184.32	0.00963184
+184.44	0.00962699
+184.56	0.00962216
+184.68	0.00961732
+184.8	0.0096125
+184.92	0.00960767
+185.04	0.00960286
+185.16	0.00959805
+185.28	0.00959324
+185.4	0.00958844
+185.52	0.00958365
+185.64	0.00957886
+185.76	0.00957408
+185.88	0.0095693
+186	0.00956453
+186.12	0.00955977
+186.24	0.00955501
+186.36	0.00955025
+186.48	0.0095455
+186.6	0.00954076
+186.72	0.00953602
+186.84	0.00953129
+186.96	0.00952656
+187.08	0.00952184
+187.2	0.00951713
+187.32	0.00951242
+187.44	0.00950771
+187.56	0.00950301
+187.68	0.00949832
+187.8	0.00949363
+187.92	0.00948895
+188.04	0.00948427
+188.16	0.0094796
+188.28	0.00947493
+188.4	0.00947027
+188.52	0.00946561
+188.64	0.00946096
+188.76	0.00945632
+188.88	0.00945168
+189	0.00944704
+189.12	0.00944241
+189.24	0.00943779
+189.36	0.00943317
+189.48	0.00942856
+189.6	0.00942395
+189.72	0.00941934
+189.84	0.00941475
+189.96	0.00941015
+190.08	0.00940557
+190.2	0.00940098
+190.32	0.00939641
+190.44	0.00939184
+190.56	0.00938727
+190.68	0.00938271
+190.8	0.00937815
+190.92	0.0093736
+191.04	0.00936906
+191.16	0.00936452
+191.28	0.00935998
+191.4	0.00935545
+191.52	0.00935093
+191.64	0.00934641
+191.76	0.00934189
+191.88	0.00933738
+192	0.00933288
+192.12	0.00932838
+192.24	0.00932389
+192.36	0.0093194
+192.48	0.00931491
+192.6	0.00931043
+192.72	0.00930596
+192.84	0.00930149
+192.96	0.00929703
+193.08	0.00929257
+193.2	0.00928811
+193.32	0.00928367
+193.44	0.00927922
+193.56	0.00927478
+193.68	0.00927035
+193.8	0.00926592
+193.92	0.0092615
+194.04	0.00925708
+194.16	0.00925266
+194.28	0.00924825
+194.4	0.00924385
+194.52	0.00923945
+194.64	0.00923506
+194.76	0.00923067
+194.88	0.00922628
+195	0.0092219
+195.12	0.00921753
+195.24	0.00921316
+195.36	0.00920879
+195.48	0.00920443
+195.6	0.00920008
+195.72	0.00919573
+195.84	0.00919138
+195.96	0.00918704
+196.08	0.00918271
+196.2	0.00917838
+196.32	0.00917405
+196.44	0.00916973
+196.56	0.00916541
+196.68	0.0091611
+196.8	0.00915679
+196.92	0.00915249
+197.04	0.00914819
+197.16	0.0091439
+197.28	0.00913961
+197.4	0.00913533
+197.52	0.00913105
+197.64	0.00912678
+197.76	0.00912251
+197.88	0.00911824
+198	0.00911398
+198.12	0.00910973
+198.24	0.00910548
+198.36	0.00910123
+198.48	0.00909699
+198.6	0.00909275
+198.72	0.00908852
+198.84	0.00908429
+198.96	0.00908007
+199.08	0.00907585
+199.2	0.00907164
+199.32	0.00906743
+199.44	0.00906323
+199.56	0.00905903
+199.68	0.00905483
+199.8	0.00905064
+199.92	0.00904646
+200.04	0.00904228
+200.16	0.0090381
+200.28	0.00903393
+200.4	0.00902976
+200.52	0.0090256
+200.64	0.00902144
+200.76	0.00901728
+200.88	0.00901313
+201	0.00900899
+201.12	0.00900485
+201.24	0.00900071
+201.36	0.00899658
+201.48	0.00899245
+201.6	0.00899289
+201.72	0.00898878
+201.84	0.00898466
+201.96	0.00898055
+202.08	0.00897645
+202.2	0.00897235
+202.32	0.00896825
+202.44	0.00896416
+202.56	0.00896008
+202.68	0.00895599
+202.8	0.00895191
+202.92	0.00894784
+203.04	0.00894377
+203.16	0.00893971
+203.28	0.00893565
+203.4	0.00893159
+203.52	0.00892754
+203.64	0.00892349
+203.76	0.00891945
+203.88	0.00891541
+204	0.00891137
+204.12	0.00890734
+204.24	0.00890332
+204.36	0.0088993
+204.48	0.00889528
+204.6	0.00889126
+204.72	0.00888726
+204.84	0.00888325
+204.96	0.00887925
+205.08	0.00887525
+205.2	0.00887126
+205.32	0.00886727
+205.44	0.00886329
+205.56	0.00885931
+205.68	0.00885534
+205.8	0.00885137
+205.92	0.0088474
+206.04	0.00884344
+206.16	0.00883948
+206.28	0.00883552
+206.4	0.00883157
+206.52	0.00882763
+206.64	0.00882369
+206.76	0.00881975
+206.88	0.00881582
+207	0.00881189
+207.12	0.00880796
+207.24	0.00880404
+207.36	0.00880012
+207.48	0.00879621
+207.6	0.0087923
+207.72	0.0087884
+207.84	0.0087845
+207.96	0.0087806
+208.08	0.00877671
+208.2	0.00877282
+208.32	0.00876894
+208.44	0.00876506
+208.56	0.00876118
+208.68	0.00875731
+208.8	0.00875344
+208.92	0.00874958
+209.04	0.00874572
+209.16	0.00874186
+209.28	0.00873801
+209.4	0.00873416
+209.52	0.00873032
+209.64	0.00872648
+209.76	0.00872264
+209.88	0.00871881
+210	0.00871498
+210.12	0.00871116
+210.24	0.00870734
+210.36	0.00870352
+210.48	0.00869971
+210.6	0.0086959
+210.72	0.0086921
+210.84	0.0086883
+210.96	0.0086845
+211.08	0.00868071
+211.2	0.00867692
+211.32	0.00867313
+211.44	0.00866935
+211.56	0.00866558
+211.68	0.0086618
+211.8	0.00865804
+211.92	0.00865427
+212.04	0.00865051
+212.16	0.00864675
+212.28	0.008643
+212.4	0.00863925
+212.52	0.0086355
+212.64	0.00863176
+212.76	0.00862802
+212.88	0.00862429
+213	0.00862056
+213.12	0.00861683
+213.24	0.00861311
+213.36	0.00860939
+213.48	0.00860567
+213.6	0.00860196
+213.72	0.00859825
+213.84	0.00859455
+213.96	0.00859085
+214.08	0.00858715
+214.2	0.00858346
+214.32	0.00857977
+214.44	0.00857609
+214.56	0.0085724
+214.68	0.00856873
+214.8	0.00856505
+214.92	0.00856138
+215.04	0.00855772
+215.16	0.00855405
+215.28	0.00855039
+215.4	0.00854674
+215.52	0.00854309
+215.64	0.00853944
+215.76	0.00853579
+215.88	0.00853215
+216	0.00852852
+216.12	0.00852488
+216.24	0.00852125
+216.36	0.00851763
+216.48	0.00851401
+216.6	0.00851039
+216.72	0.00850677
+216.84	0.00850316
+216.96	0.00849955
+217.08	0.00849595
+217.2	0.00849235
+217.32	0.00848875
+217.44	0.00848516
+217.56	0.00848157
+217.68	0.00847798
+217.8	0.0084744
+217.92	0.00847082
+218.04	0.00846724
+218.16	0.00846367
+218.28	0.00846011
+218.4	0.00845654
+218.52	0.00845298
+218.64	0.00844942
+218.76	0.00844587
+218.88	0.00844232
+219	0.00843877
+219.12	0.00843523
+219.24	0.00843169
+219.36	0.00842815
+219.48	0.00842462
+219.6	0.00842109
+219.72	0.00841756
+219.84	0.00841404
+219.96	0.00841052
+220.08	0.00840701
+220.2	0.00840349
+220.32	0.00839999
+220.44	0.00839648
+220.56	0.00839298
+220.68	0.00838948
+220.8	0.00838599
+220.92	0.0083825
+221.04	0.00837901
+221.16	0.00837552
+221.28	0.00837204
+221.4	0.00836857
+221.52	0.00836509
+221.64	0.00836162
+221.76	0.00835816
+221.88	0.00835469
+222	0.00835123
+222.12	0.00834778
+222.24	0.00834432
+222.36	0.00834087
+222.48	0.00833742
+222.6	0.00833398
+222.72	0.00833054
+222.84	0.00832711
+222.96	0.00832367
+223.08	0.00832024
+223.2	0.00831682
+223.32	0.00831339
+223.44	0.00830997
+223.56	0.00830656
+223.68	0.00830314
+223.8	0.00829973
+223.92	0.00829633
+224.04	0.00829292
+224.16	0.00828952
+224.28	0.00828613
+224.4	0.00828274
+224.52	0.00827935
+224.64	0.00827596
+224.76	0.00827258
+224.88	0.0082692
+225	0.00826582
+225.12	0.00826245
+225.24	0.00825908
+225.36	0.00825571
+225.48	0.00825234
+225.6	0.00824898
+225.72	0.00824563
+225.84	0.00824227
+225.96	0.00823892
+226.08	0.00823558
+226.2	0.00823223
+226.32	0.00822889
+226.44	0.00822555
+226.56	0.00822222
+226.68	0.00821889
+226.8	0.00821556
+226.92	0.00821223
+227.04	0.00820891
+227.16	0.00820559
+227.28	0.00820228
+227.4	0.00819897
+227.52	0.00819566
+227.64	0.00819235
+227.76	0.00818905
+227.88	0.00818575
+228	0.00818245
+228.12	0.00817916
+228.24	0.00817587
+228.36	0.00817258
+228.48	0.0081693
+228.6	0.00816602
+228.72	0.00816274
+228.84	0.00815947
+228.96	0.0081562
+229.08	0.00815293
+229.2	0.00814966
+229.32	0.0081464
+229.44	0.00814314
+229.56	0.00813989
+229.68	0.00813664
+229.8	0.00813339
+229.92	0.00813014
+230.04	0.0081269
+230.16	0.00812366
+230.28	0.00812042
+230.4	0.00811719
+230.52	0.00811395
+230.64	0.00811073
+230.76	0.0081075
+230.88	0.00810428
+231	0.00810106
+231.12	0.00809785
+231.24	0.00809463
+231.36	0.00809142
+231.48	0.00808822
+231.6	0.00808501
+231.72	0.00808181
+231.84	0.00807862
+231.96	0.00807542
+232.08	0.00807223
+232.2	0.00806904
+232.32	0.00806586
+232.44	0.00806267
+232.56	0.00805949
+232.68	0.00805632
+232.8	0.00805314
+232.92	0.00804997
+233.04	0.00804681
+233.16	0.00804364
+233.28	0.00804048
+233.4	0.00803732
+233.52	0.00803417
+233.64	0.00803101
+233.76	0.00802786
+233.88	0.00802472
+234	0.00802157
+234.12	0.00801843
+234.24	0.00801529
+234.36	0.00801216
+234.48	0.00800903
+234.6	0.0080059
+234.72	0.00800277
+234.84	0.00799965
+234.96	0.00799653
+235.08	0.00799341
+235.2	0.00799029
+235.32	0.00798718
+235.44	0.00798407
+235.56	0.00798097
+235.68	0.00797786
+235.8	0.00797476
+235.92	0.00797167
+236.04	0.00796857
+236.16	0.00796548
+236.28	0.00796239
+236.4	0.00795931
+236.52	0.00795622
+236.64	0.00795314
+236.76	0.00795007
+236.88	0.00794699
+237	0.00794392
+237.12	0.00794085
+237.24	0.00793779
+237.36	0.00793473
+237.48	0.00793167
+237.6	0.00792861
+237.72	0.00792556
+237.84	0.00792251
+237.96	0.00791946
+238.08	0.00791641
+238.2	0.00791337
+238.32	0.00791033
+238.44	0.00790729
+238.56	0.00790426
+238.68	0.00790123
+238.8	0.0078982
+238.92	0.00789517
+239.04	0.00789215
+239.16	0.00788913
+239.28	0.00788611
+239.4	0.0078831
+239.52	0.00788008
+239.64	0.00787707
+239.76	0.00787407
+239.88	0.00787106
+240	0.00786806
+240.12	0.00786506
+240.24	0.00786207
+240.36	0.00785908
+240.48	0.00785608
+240.6	0.0078531
+240.72	0.00785011
+240.84	0.00784713
+240.96	0.00784415
+241.08	0.00784117
+241.2	0.0078382
+241.32	0.00783523
+241.44	0.00783226
+241.56	0.00782929
+241.68	0.00782633
+241.8	0.00782337
+241.92	0.00782041
+242.04	0.00781746
+242.16	0.00781451
+242.28	0.00781156
+242.4	0.00780861
+242.52	0.00780566
+242.64	0.00780272
+242.76	0.00779978
+242.88	0.00779685
+243	0.00779391
+243.12	0.00779098
+243.24	0.00778805
+243.36	0.00778513
+243.48	0.0077822
+243.6	0.00777928
+243.72	0.00777636
+243.84	0.00777345
+243.96	0.00777054
+244.08	0.00776763
+244.2	0.00776472
+244.32	0.00776181
+244.44	0.00775891
+244.56	0.00775601
+244.68	0.00775311
+244.8	0.00775022
+244.92	0.00774733
+245.04	0.00774444
+245.16	0.00774155
+245.28	0.00773867
+245.4	0.00773579
+245.52	0.00773291
+245.64	0.00773003
+245.76	0.00772716
+245.88	0.00772428
+246	0.00772142
+246.12	0.00771855
+246.24	0.00771569
+246.36	0.00771282
+246.48	0.00770997
+246.6	0.00770711
+246.72	0.00770426
+246.84	0.0077014
+246.96	0.00769856
+247.08	0.00769571
+247.2	0.00769287
+247.32	0.00769003
+247.44	0.00768719
+247.56	0.00768435
+247.68	0.00768152
+247.8	0.00767869
+247.92	0.00767586
+248.04	0.00767303
+248.16	0.00767021
+248.28	0.00766739
+248.4	0.00766457
+248.52	0.00766175
+248.64	0.00765894
+248.76	0.00765613
+248.88	0.00765332
+249	0.00765052
+249.12	0.00764771
+249.24	0.00764491
+249.36	0.00764211
+249.48	0.00763932
+249.6	0.00763652
+249.72	0.00763373
+249.84	0.00763094
+249.96	0.00762816
+250.08	0.00762537
+250.2	0.00762259
+250.32	0.00761981
+250.44	0.00761703
+250.56	0.00761426
+250.68	0.00761149
+250.8	0.00760872
+250.92	0.00760595
+251.04	0.00760319
+251.16	0.00760043
+251.28	0.00759767
+251.4	0.00759491
+251.52	0.00759215
+251.64	0.0075894
+251.76	0.00758665
+251.88	0.0075839
+252	0.00758116
+252.12	0.00757842
+252.24	0.00757568
+252.36	0.00757294
+252.48	0.0075702
+252.6	0.00756747
+252.72	0.00756474
+252.84	0.00756201
+252.96	0.00755928
+253.08	0.00755656
+253.2	0.00755384
+253.32	0.00755112
+253.44	0.0075484
+253.56	0.00754569
+253.68	0.00754297
+253.8	0.00754027
+253.92	0.00753756
+254.04	0.00753485
+254.16	0.00753215
+254.28	0.00752945
+254.4	0.00752675
+254.52	0.00752406
+254.64	0.00752136
+254.76	0.00751867
+254.88	0.00751598
+255	0.0075133
+255.12	0.00751061
+255.24	0.00750793
+255.36	0.00750525
+255.48	0.00750257
+255.6	0.0074999
+255.72	0.00749723
+255.84	0.00749456
+255.96	0.00749189
+256.08	0.00748922
+256.2	0.00748656
+256.32	0.0074839
+256.44	0.00748124
+256.56	0.00747858
+256.68	0.00747593
+256.8	0.00747327
+256.92	0.00747062
+257.04	0.00746798
+257.16	0.00746533
+257.28	0.00746269
+257.4	0.00746005
+257.52	0.00745741
+257.64	0.00745477
+257.76	0.00745214
+257.88	0.00744951
+258	0.00744688
+258.12	0.00744425
+258.24	0.00744162
+258.36	0.007439
+258.48	0.00743638
+258.6	0.00743376
+258.72	0.00743115
+258.84	0.00742853
+258.96	0.00742592
+259.08	0.00742331
+259.2	0.0074207
+259.32	0.0074181
+259.44	0.0074155
+259.56	0.00741289
+259.68	0.0074103
+259.8	0.0074077
+259.92	0.00740511
+260.04	0.00740251
+260.16	0.00739992
+260.28	0.00739734
+260.4	0.00739475
+260.52	0.00739217
+260.64	0.00738959
+260.76	0.00738701
+260.88	0.00738443
+261	0.00738186
+261.12	0.00737928
+261.24	0.00737671
+261.36	0.00737415
+261.48	0.00737158
+261.6	0.00736902
+261.72	0.00736645
+261.84	0.0073639
+261.96	0.00736134
+262.08	0.00735878
+262.2	0.00735623
+262.32	0.00735368
+262.44	0.00735113
+262.56	0.00734858
+262.68	0.00734604
+262.8	0.0073435
+262.92	0.00734096
+263.04	0.00733842
+263.16	0.00733588
+263.28	0.00733335
+263.4	0.00733082
+263.52	0.00732829
+263.64	0.00732576
+263.76	0.00732323
+263.88	0.00732071
+264	0.00731819
+264.12	0.00731567
+264.24	0.00731315
+264.36	0.00731064
+264.48	0.00730813
+264.6	0.00730562
+264.72	0.00730311
+264.84	0.0073006
+264.96	0.0072981
+265.08	0.00729559
+265.2	0.00729309
+265.32	0.00729059
+265.44	0.0072881
+265.56	0.0072856
+265.68	0.00728311
+265.8	0.00728062
+265.92	0.00727813
+266.04	0.00727565
+266.16	0.00727316
+266.28	0.00727068
+266.4	0.0072682
+266.52	0.00726572
+266.64	0.00726325
+266.76	0.00726078
+266.88	0.0072583
+267	0.00725583
+267.12	0.00725337
+267.24	0.0072509
+267.36	0.00724844
+267.48	0.00724598
+267.6	0.00724352
+267.72	0.00724106
+267.84	0.0072386
+267.96	0.00723615
+268.08	0.0072337
+268.2	0.00723125
+268.32	0.0072288
+268.44	0.00722636
+268.56	0.00722391
+268.68	0.00722147
+268.8	0.00721903
+268.92	0.0072166
+269.04	0.00721416
+269.16	0.00721173
+269.28	0.0072093
+269.4	0.00720687
+269.52	0.00720444
+269.64	0.00720201
+269.76	0.00719959
+269.88	0.00719717
+270	0.00719475
+270.12	0.00719233
+270.24	0.00718992
+270.36	0.0071875
+270.48	0.00718509
+270.6	0.00718268
+270.72	0.00718027
+270.84	0.00717787
+270.96	0.00717546
+271.08	0.00717306
+271.2	0.00717066
+271.32	0.00716826
+271.44	0.00716587
+271.56	0.00716347
+271.68	0.00716108
+271.8	0.00715869
+271.92	0.0071563
+272.04	0.00715392
+272.16	0.00715153
+272.28	0.00714915
+272.4	0.00714677
+272.52	0.00714439
+272.64	0.00714201
+272.76	0.00713964
+272.88	0.00713727
+273	0.0071349
+273.12	0.00713253
+273.24	0.00713016
+273.36	0.00712779
+273.48	0.00712543
+273.6	0.00712307
+273.72	0.00712071
+273.84	0.00711835
+273.96	0.007116
+274.08	0.00711364
+274.2	0.00711129
+274.32	0.00710894
+274.44	0.00710659
+274.56	0.00710425
+274.68	0.0071019
+274.8	0.00709956
+274.92	0.00709722
+275.04	0.00709488
+275.16	0.00709254
+275.28	0.00709021
+275.4	0.00708787
+275.52	0.00708554
+275.64	0.00708321
+275.76	0.00708089
+275.88	0.00707856
+276	0.00707624
+276.12	0.00707391
+276.24	0.00707159
+276.36	0.00706927
+276.48	0.00706696
+276.6	0.00706464
+276.72	0.00706233
+276.84	0.00706002
+276.96	0.00705771
+277.08	0.0070554
+277.2	0.0070531
+277.32	0.00705079
+277.44	0.00704849
+277.56	0.00704619
+277.68	0.00704389
+277.8	0.0070416
+277.92	0.0070393
+278.04	0.00703701
+278.16	0.00703472
+278.28	0.00703243
+278.4	0.00703014
+278.52	0.00702786
+278.64	0.00702557
+278.76	0.00702329
+278.88	0.00702101
+279	0.00701873
+279.12	0.00701646
+279.24	0.00701418
+279.36	0.00701191
+279.48	0.00700964
+279.6	0.00700737
+279.72	0.0070051
+279.84	0.00700284
+279.96	0.00700057
+280.08	0.00699831
+280.2	0.00699605
+280.32	0.00699379
+280.44	0.00699153
+280.56	0.00698928
+280.68	0.00698703
+280.8	0.00698477
+280.92	0.00698252
+281.04	0.00698028
+281.16	0.00697803
+281.28	0.00697578
+281.4	0.00697354
+281.52	0.0069713
+281.64	0.00696906
+281.76	0.00696682
+281.88	0.00696459
+282	0.00696235
+282.12	0.00696012
+282.24	0.00695789
+282.36	0.00695566
+282.48	0.00695344
+282.6	0.00695121
+282.72	0.00694899
+282.84	0.00694677
+282.96	0.00694455
+283.08	0.00694233
+283.2	0.00694011
+283.32	0.0069379
+283.44	0.00693568
+283.56	0.00693347
+283.68	0.00693126
+283.8	0.00692905
+283.92	0.00692685
+284.04	0.00692464
+284.16	0.00692244
+284.28	0.00692024
+284.4	0.00691804
+284.52	0.00691584
+284.64	0.00691364
+284.76	0.00691145
+284.88	0.00690926
+285	0.00690707
+285.12	0.00690488
+285.24	0.00690269
+285.36	0.0069005
+285.48	0.00689832
+285.6	0.00689614
+285.72	0.00689396
+285.84	0.00689178
+285.96	0.0068896
+286.08	0.00688742
+286.2	0.00688525
+286.32	0.00688308
+286.44	0.00688091
+286.56	0.00687874
+286.68	0.00687657
+286.8	0.0068744
+286.92	0.00687224
+287.04	0.00687008
+287.16	0.00686792
+287.28	0.00686576
+287.4	0.0068636
+287.52	0.00686144
+287.64	0.00685929
+287.76	0.00685714
+287.88	0.00685499
+288	0.00685284
+288.12	0.00685069
+288.24	0.00684854
+288.36	0.0068464
+288.48	0.00684426
+288.6	0.00684211
+288.72	0.00683998
+288.84	0.00683784
+288.96	0.0068357
+289.08	0.00683357
+289.2	0.00683143
+289.32	0.0068293
+289.44	0.00682717
+289.56	0.00682504
+289.68	0.00682292
+289.8	0.00682079
+289.92	0.00681867
+290.04	0.00681655
+290.16	0.00681443
+290.28	0.00681231
+290.4	0.00681019
+290.52	0.00680808
+290.64	0.00680597
+290.76	0.00680385
+290.88	0.00680174
+291	0.00679963
+291.12	0.00679753
+291.24	0.00679542
+291.36	0.00679332
+291.48	0.00679122
+291.6	0.00678911
+291.72	0.00678702
+291.84	0.00678492
+291.96	0.00678282
+292.08	0.00678073
+292.2	0.00677863
+292.32	0.00677654
+292.44	0.00677445
+292.56	0.00677237
+292.68	0.00677028
+292.8	0.00676819
+292.92	0.00676611
+293.04	0.00676403
+293.16	0.00676195
+293.28	0.00675987
+293.4	0.00675779
+293.52	0.00675572
+293.64	0.00675364
+293.76	0.00675157
+293.88	0.0067495
+294	0.00674743
+294.12	0.00674536
+294.24	0.0067433
+294.36	0.00674123
+294.48	0.00673917
+294.6	0.00673711
+294.72	0.00673505
+294.84	0.00673299
+294.96	0.00673093
+295.08	0.00672888
+295.2	0.00672682
+295.32	0.00672477
+295.44	0.00672272
+295.56	0.00672067
+295.68	0.00671862
+295.8	0.00671658
+295.92	0.00671453
+296.04	0.00671249
+296.16	0.00671045
+296.28	0.00670841
+296.4	0.00670637
+296.52	0.00670433
+296.64	0.0067023
+296.76	0.00670027
+296.88	0.00669823
+297	0.0066962
+297.12	0.00669417
+297.24	0.00669215
+297.36	0.00669012
+297.48	0.0066881
+297.6	0.00668607
+297.72	0.00668405
+297.84	0.00668203
+297.96	0.00668001
+298.08	0.006678
+298.2	0.00667598
+298.32	0.00667397
+298.44	0.00667196
+298.56	0.00666994
+298.68	0.00666793
+298.8	0.00666593
+298.92	0.00666392
+299.04	0.00666192
+299.16	0.00665991
+299.28	0.00665791
+299.4	0.00665591
+299.52	0.00665391
+299.64	0.00665191
+299.76	0.00664992
+299.88	0.00664792
+300	0.00664593
+300.12	0.00664394
+300.24	0.00664195
+300.36	0.00663996
+300.48	0.00663797
+300.6	0.00663598
+300.72	0.006634
+300.84	0.00663202
+300.96	0.00663003
+301.08	0.00662805
+301.2	0.00662608
+301.32	0.0066241
+301.44	0.00662212
+301.56	0.00662015
+301.68	0.00661818
+301.8	0.0066162
+301.92	0.00661423
+302.04	0.00661227
+302.16	0.0066103
+302.28	0.00660833
+302.4	0.00660637
+302.52	0.00660441
+302.64	0.00660244
+302.76	0.00660048
+302.88	0.00659853
+303	0.00659657
+303.12	0.00659461
+303.24	0.00659266
+303.36	0.00659071
+303.48	0.00658875
+303.6	0.0065868
+303.72	0.00658486
+303.84	0.00658291
+303.96	0.00658096
+304.08	0.00657902
+304.2	0.00657708
+304.32	0.00657513
+304.44	0.00657319
+304.56	0.00657126
+304.68	0.00656932
+304.8	0.00656738
+304.92	0.00656545
+305.04	0.00656352
+305.16	0.00656158
+305.28	0.00655965
+305.4	0.00655772
+305.52	0.0065558
+305.64	0.00655387
+305.76	0.00655195
+305.88	0.00655002
+306	0.0065481
+306.12	0.00654618
+306.24	0.00654426
+306.36	0.00654234
+306.48	0.00654043
+306.6	0.00653851
+306.72	0.0065366
+306.84	0.00653469
+306.96	0.00653278
+307.08	0.00653087
+307.2	0.00652896
+307.32	0.00652705
+307.44	0.00652515
+307.56	0.00652324
+307.68	0.00652134
+307.8	0.00651944
+307.92	0.00651754
+308.04	0.00651564
+308.16	0.00651375
+308.28	0.00651185
+308.4	0.00650996
+308.52	0.00650806
+308.64	0.00650617
+308.76	0.00650428
+308.88	0.00650239
+309	0.00650051
+309.12	0.00649862
+309.24	0.00649673
+309.36	0.00649485
+309.48	0.00649297
+309.6	0.00649109
+309.72	0.00648921
+309.84	0.00648733
+309.96	0.00648545
+310.08	0.00648358
+310.2	0.00648171
+310.32	0.00647983
+310.44	0.00647796
+310.56	0.00647609
+310.68	0.00647422
+310.8	0.00647236
+310.92	0.00647049
+311.04	0.00646862
+311.16	0.00646676
+311.28	0.0064649
+311.4	0.00646304
+311.52	0.00646118
+311.64	0.00645932
+311.76	0.00645746
+311.88	0.00645561
+312	0.00645375
+312.12	0.0064519
+312.24	0.00645005
+312.36	0.0064482
+312.48	0.00644635
+312.6	0.0064445
+312.72	0.00644266
+312.84	0.00644081
+312.96	0.00643897
+313.08	0.00643713
+313.2	0.00643528
+313.32	0.00643345
+313.44	0.00643161
+313.56	0.00642977
+313.68	0.00642793
+313.8	0.0064261
+313.92	0.00642427
+314.04	0.00642243
+314.16	0.0064206
+314.28	0.00641877
+314.4	0.00641695
+314.52	0.00641512
+314.64	0.00641329
+314.76	0.00641147
+314.88	0.00640965
+315	0.00640782
+315.12	0.006406
+315.24	0.00640418
+315.36	0.00640237
+315.48	0.00640055
+315.6	0.00639873
+315.72	0.00639692
+315.84	0.00639511
+315.96	0.0063933
+316.08	0.00639149
+316.2	0.00638968
+316.32	0.00638787
+316.44	0.00638606
+316.56	0.00638426
+316.68	0.00638245
+316.8	0.00638065
+316.92	0.00637885
+317.04	0.00637705
+317.16	0.00637525
+317.28	0.00637345
+317.4	0.00637166
+317.52	0.00636986
+317.64	0.00636807
+317.76	0.00636627
+317.88	0.00636448
+318	0.00636269
+318.12	0.0063609
+318.24	0.00635912
+318.36	0.00635733
+318.48	0.00635554
+318.6	0.00635376
+318.72	0.00635198
+318.84	0.0063502
+318.96	0.00634842
+319.08	0.00634664
+319.2	0.00634486
+319.32	0.00634308
+319.44	0.00634131
+319.56	0.00633953
+319.68	0.00633776
+319.8	0.00633599
+319.92	0.00633422
+320.04	0.00633245
+320.16	0.00633068
+320.28	0.00632891
+320.4	0.00632715
+320.52	0.00632538
+320.64	0.00632362
+320.76	0.00632186
+320.88	0.0063201
+321	0.00631834
+321.12	0.00631658
+321.24	0.00631482
+321.36	0.00631307
+321.48	0.00631131
+321.6	0.00630956
+321.72	0.00630781
+321.84	0.00630606
+321.96	0.00630431
+322.08	0.00630256
+322.2	0.00630081
+322.32	0.00629907
+322.44	0.00629732
+322.56	0.00629558
+322.68	0.00629383
+322.8	0.00629209
+322.92	0.00629035
+323.04	0.00628861
+323.16	0.00628688
+323.28	0.00628514
+323.4	0.0062834
+323.52	0.00628167
+323.64	0.00627994
+323.76	0.0062782
+323.88	0.00627647
+324	0.00627474
+324.12	0.00627302
+324.24	0.00627129
+324.36	0.00626956
+324.48	0.00626784
+324.6	0.00626611
+324.72	0.00626439
+324.84	0.00626267
+324.96	0.00626095
+325.08	0.00625923
+325.2	0.00625751
+325.32	0.0062558
+325.44	0.00625408
+325.56	0.00625237
+325.68	0.00625066
+325.8	0.00624894
+325.92	0.00624723
+326.04	0.00624552
+326.16	0.00624381
+326.28	0.00624211
+326.4	0.0062404
+326.52	0.0062387
+326.64	0.00623699
+326.76	0.00623529
+326.88	0.00623359
+327	0.00623189
+327.12	0.00623019
+327.24	0.00622849
+327.36	0.00622679
+327.48	0.0062251
+327.6	0.0062234
+327.72	0.00622171
+327.84	0.00622002
+327.96	0.00621833
+328.08	0.00621664
+328.2	0.00621495
+328.32	0.00621326
+328.44	0.00621157
+328.56	0.00620989
+328.68	0.0062082
+328.8	0.00620652
+328.92	0.00620484
+329.04	0.00620316
+329.16	0.00620148
+329.28	0.0061998
+329.4	0.00619812
+329.52	0.00619645
+329.64	0.00619477
+329.76	0.0061931
+329.88	0.00619142
+330	0.00618975
+330.12	0.00618808
+330.24	0.00618641
+330.36	0.00618474
+330.48	0.00618307
+330.6	0.00618141
+330.72	0.00617974
+330.84	0.00617808
+330.96	0.00617642
+331.08	0.00617475
+331.2	0.00617309
+331.32	0.00617143
+331.44	0.00616978
+331.56	0.00616812
+331.68	0.00616646
+331.8	0.00616481
+331.92	0.00616315
+332.04	0.0061615
+332.16	0.00615985
+332.28	0.0061582
+332.4	0.00615655
+332.52	0.0061549
+332.64	0.00615325
+332.76	0.00615161
+332.88	0.00614996
+333	0.00614832
+333.12	0.00614667
+333.24	0.00614503
+333.36	0.00614339
+333.48	0.00614175
+333.6	0.00614011
+333.72	0.00613847
+333.84	0.00613684
+333.96	0.0061352
+334.08	0.00613357
+334.2	0.00613193
+334.32	0.0061303
+334.44	0.00612867
+334.56	0.00612704
+334.68	0.00612541
+334.8	0.00612378
+334.92	0.00612216
+335.04	0.00612053
+335.16	0.00611891
+335.28	0.00611728
+335.4	0.00611566
+335.52	0.00611404
+335.64	0.00611242
+335.76	0.0061108
+335.88	0.00610918
+336	0.00610756
+336.12	0.00610595
+336.24	0.00610433
+336.36	0.00610272
+336.48	0.00610111
+336.6	0.00609949
+336.72	0.00609788
+336.84	0.00609627
+336.96	0.00609466
+337.08	0.00609306
+337.2	0.00609145
+337.32	0.00608985
+337.44	0.00608824
+337.56	0.00608664
+337.68	0.00608504
+337.8	0.00608343
+337.92	0.00608183
+338.04	0.00608023
+338.16	0.00607864
+338.28	0.00607704
+338.4	0.00607544
+338.52	0.00607385
+338.64	0.00607225
+338.76	0.00607066
+338.88	0.00606907
+339	0.00606748
+339.12	0.00606589
+339.24	0.0060643
+339.36	0.00606271
+339.48	0.00606113
+339.6	0.00605954
+339.72	0.00605796
+339.84	0.00605637
+339.96	0.00605479
+340.08	0.00605321
+340.2	0.00605163
+340.32	0.00605005
+340.44	0.00604847
+340.56	0.00604689
+340.68	0.00604532
+340.8	0.00604374
+340.92	0.00604217
+341.04	0.00604059
+341.16	0.00603902
+341.28	0.00603745
+341.4	0.00603588
+341.52	0.00603431
+341.64	0.00603274
+341.76	0.00603118
+341.88	0.00602961
+342	0.00602804
+342.12	0.00602648
+342.24	0.00602492
+342.36	0.00602335
+342.48	0.00602179
+342.6	0.00602023
+342.72	0.00601867
+342.84	0.00601712
+342.96	0.00601556
+343.08	0.006014
+343.2	0.00601245
+343.32	0.00601089
+343.44	0.00600934
+343.56	0.00600779
+343.68	0.00600624
+343.8	0.00600469
+343.92	0.00600314
+344.04	0.00600159
+344.16	0.00600004
+344.28	0.0059985
+344.4	0.00599695
+344.52	0.00599541
+344.64	0.00599387
+344.76	0.00599232
+344.88	0.00599078
+345	0.00598924
+345.12	0.0059877
+345.24	0.00598617
+345.36	0.00598463
+345.48	0.00598309
+345.6	0.00598156
+345.72	0.00598002
+345.84	0.00597849
+345.96	0.00597696
+346.08	0.00597543
+346.2	0.0059739
+346.32	0.00597237
+346.44	0.00597084
+346.56	0.00596931
+346.68	0.00596779
+346.8	0.00596626
+346.92	0.00596474
+347.04	0.00596321
+347.16	0.00596169
+347.28	0.00596017
+347.4	0.00595865
+347.52	0.00595713
+347.64	0.00595561
+347.76	0.00595409
+347.88	0.00595258
+348	0.00595106
+348.12	0.00594955
+348.24	0.00594803
+348.36	0.00594652
+348.48	0.00594501
+348.6	0.0059435
+348.72	0.00594199
+348.84	0.00594048
+348.96	0.00593897
+349.08	0.00593747
+349.2	0.00593596
+349.32	0.00593445
+349.44	0.00593295
+349.56	0.00593145
+349.68	0.00592995
+349.8	0.00592844
+349.92	0.00592694
+350.04	0.00592545
+350.16	0.00592395
+350.28	0.00592245
+350.4	0.00592095
+350.52	0.00591946
+350.64	0.00591796
+350.76	0.00591647
+350.88	0.00591498
+351	0.00591349
+351.12	0.00591199
+351.24	0.0059105
+351.36	0.00590902
+351.48	0.00590753
+351.6	0.00590604
+351.72	0.00590455
+351.84	0.00590307
+351.96	0.00590159
+352.08	0.0059001
+352.2	0.00589862
+352.32	0.00589714
+352.44	0.00589566
+352.56	0.00589418
+352.68	0.0058927
+352.8	0.00589122
+352.92	0.00588975
+353.04	0.00588827
+353.16	0.0058868
+353.28	0.00588532
+353.4	0.00588385
+353.52	0.00588238
+353.64	0.00588091
+353.76	0.00587944
+353.88	0.00587797
+354	0.0058765
+354.12	0.00587503
+354.24	0.00587356
+354.36	0.0058721
+354.48	0.00587063
+354.6	0.00586917
+354.72	0.00586771
+354.84	0.00586624
+354.96	0.00586478
+355.08	0.00586332
+355.2	0.00586186
+355.32	0.00586041
+355.44	0.00585895
+355.56	0.00585749
+355.68	0.00585604
+355.8	0.00585458
+355.92	0.00585313
+356.04	0.00585168
+356.16	0.00585022
+356.28	0.00584877
+356.4	0.00584732
+356.52	0.00584587
+356.64	0.00584443
+356.76	0.00584298
+356.88	0.00584153
+357	0.00584009
+357.12	0.00583864
+357.24	0.0058372
+357.36	0.00583575
+357.48	0.00583431
+357.6	0.00583287
+357.72	0.00583143
+357.84	0.00582999
+357.96	0.00582855
+358.08	0.00582712
+358.2	0.00582568
+358.32	0.00582424
+358.44	0.00582281
+358.56	0.00582137
+358.68	0.00581994
+358.8	0.00581851
+358.92	0.00581708
+359.04	0.00581565
+359.16	0.00581422
+359.28	0.00581279
+359.4	0.00581136
+359.52	0.00580994
+359.64	0.00580851
+359.76	0.00580708
+359.88	0.00580566
+360	0.00580424
+360.12	0.00580281
+360.24	0.00580139
+360.36	0.00579997
+360.48	0.00579855
+360.6	0.00579713
+360.72	0.00579571
+360.84	0.0057943
+360.96	0.00579288
+361.08	0.00579147
+361.2	0.00579005
+361.32	0.00578864
+361.44	0.00578722
+361.56	0.00578581
+361.68	0.0057844
+361.8	0.00578299
+361.92	0.00578158
+362.04	0.00578017
+362.16	0.00577877
+362.28	0.00577736
+362.4	0.00577595
+362.52	0.00577455
+362.64	0.00577314
+362.76	0.00577174
+362.88	0.00577034
+363	0.00576894
+363.12	0.00576754
+363.24	0.00576614
+363.36	0.00576474
+363.48	0.00576334
+363.6	0.00576194
+363.72	0.00576054
+363.84	0.00575915
+363.96	0.00575775
+364.08	0.00575636
+364.2	0.00575497
+364.32	0.00575357
+364.44	0.00575218
+364.56	0.00575079
+364.68	0.0057494
+364.8	0.00574801
+364.92	0.00574663
+365.04	0.00574524
+365.16	0.00574385
+365.28	0.00574247
+365.4	0.00574108
+365.52	0.0057397
+365.64	0.00573832
+365.76	0.00573693
+365.88	0.00573555
+366	0.00573417
+366.12	0.00573279
+366.24	0.00573141
+366.36	0.00573004
+366.48	0.00572866
+366.6	0.00572728
+366.72	0.00572591
+366.84	0.00572453
+366.96	0.00572316
+367.08	0.00572179
+367.2	0.00572041
+367.32	0.00571904
+367.44	0.00571767
+367.56	0.0057163
+367.68	0.00571493
+367.8	0.00571357
+367.92	0.0057122
+368.04	0.00571083
+368.16	0.00570947
+368.28	0.0057081
+368.4	0.00570674
+368.52	0.00570538
+368.64	0.00570401
+368.76	0.00570265
+368.88	0.00570129
+369	0.00569993
+369.12	0.00569857
+369.24	0.00569722
+369.36	0.00569586
+369.48	0.0056945
+369.6	0.00569315
+369.72	0.00569179
+369.84	0.00569044
+369.96	0.00568908
+370.08	0.00568773
+370.2	0.00568638
+370.32	0.00568503
+370.44	0.00568368
+370.56	0.00568233
+370.68	0.00568098
+370.8	0.00567963
+370.92	0.00567829
+371.04	0.00567694
+371.16	0.0056756
+371.28	0.00567425
+371.4	0.00567291
+371.52	0.00567157
+371.64	0.00567023
+371.76	0.00566888
+371.88	0.00566754
+372	0.0056662
+372.12	0.00566487
+372.24	0.00566353
+372.36	0.00566219
+372.48	0.00566086
+372.6	0.00565952
+372.72	0.00565819
+372.84	0.00565685
+372.96	0.00565552
+373.08	0.00565419
+373.2	0.00565285
+373.32	0.00565152
+373.44	0.00565019
+373.56	0.00564887
+373.68	0.00564754
+373.8	0.00564621
+373.92	0.00564488
+374.04	0.00564356
+374.16	0.00564223
+374.28	0.00564091
+374.4	0.00563958
+374.52	0.00563826
+374.64	0.00563694
+374.76	0.00563562
+374.88	0.0056343
+375	0.00563298
+375.12	0.00563166
+375.24	0.00563034
+375.36	0.00562902
+375.48	0.00562771
+375.6	0.00562639
+375.72	0.00562508
+375.84	0.00562376
+375.96	0.00562245
+376.08	0.00562114
+376.2	0.00561982
+376.32	0.00561851
+376.44	0.0056172
+376.56	0.00561589
+376.68	0.00561459
+376.8	0.00561328
+376.92	0.00561197
+377.04	0.00561066
+377.16	0.00560936
+377.28	0.00560805
+377.4	0.00560675
+377.52	0.00560545
+377.64	0.00560414
+377.76	0.00560284
+377.88	0.00560154
+378	0.00560024
+378.12	0.00559894
+378.24	0.00559764
+378.36	0.00559634
+378.48	0.00559505
+378.6	0.00559375
+378.72	0.00559246
+378.84	0.00559116
+378.96	0.00558987
+379.08	0.00558857
+379.2	0.00558728
+379.32	0.00558599
+379.44	0.0055847
+379.56	0.00558341
+379.68	0.00558212
+379.8	0.00558083
+379.92	0.00557954
+380.04	0.00557825
+380.16	0.00557697
+380.28	0.00557568
+380.4	0.0055744
+380.52	0.00557311
+380.64	0.00557183
+380.76	0.00557055
+380.88	0.00556926
+381	0.00556798
+381.12	0.0055667
+381.24	0.00556542
+381.36	0.00556414
+381.48	0.00556286
+381.6	0.00556159
+381.72	0.00556031
+381.84	0.00555903
+381.96	0.00555776
+382.08	0.00555648
+382.2	0.00555521
+382.32	0.00555394
+382.44	0.00555266
+382.56	0.00555139
+382.68	0.00555012
+382.8	0.00554885
+382.92	0.00554758
+383.04	0.00554631
+383.16	0.00554505
+383.28	0.00554378
+383.4	0.00554251
+383.52	0.00554125
+383.64	0.00553998
+383.76	0.00553872
+383.88	0.00553745
+384	0.00553619
+384.12	0.00553493
+384.24	0.00553367
+384.36	0.00553241
+384.48	0.00553115
+384.6	0.00552989
+384.72	0.00552863
+384.84	0.00552737
+384.96	0.00552612
+385.08	0.00552486
+385.2	0.0055236
+385.32	0.00552235
+385.44	0.0055211
+385.56	0.00551984
+385.68	0.00551859
+385.8	0.00551734
+385.92	0.00551609
+386.04	0.00551484
+386.16	0.00551359
+386.28	0.00551234
+386.4	0.00551109
+386.52	0.00550984
+386.64	0.00550859
+386.76	0.00550735
+386.88	0.0055061
+387	0.00550486
+387.12	0.00550361
+387.24	0.00550237
+387.36	0.00550113
+387.48	0.00549989
+387.6	0.00549865
+387.72	0.00549741
+387.84	0.00549617
+387.96	0.00549493
+388.08	0.00549369
+388.2	0.00549245
+388.32	0.00549121
+388.44	0.00548998
+388.56	0.00548874
+388.68	0.00548751
+388.8	0.00548627
+388.92	0.00548504
+389.04	0.00548381
+389.16	0.00548258
+389.28	0.00548135
+389.4	0.00548012
+389.52	0.00547889
+389.64	0.00547766
+389.76	0.00547643
+389.88	0.0054752
+390	0.00547397
+390.12	0.00547275
+390.24	0.00547152
+390.36	0.0054703
+390.48	0.00546907
+390.6	0.00546785
+390.72	0.00546663
+390.84	0.0054654
+390.96	0.00546418
+391.08	0.00546296
+391.2	0.00546174
+391.32	0.00546052
+391.44	0.00545931
+391.56	0.00545809
+391.68	0.00545687
+391.8	0.00545565
+391.92	0.00545444
+392.04	0.00545322
+392.16	0.00545201
+392.28	0.00545079
+392.4	0.00544958
+392.52	0.00544837
+392.64	0.00544716
+392.76	0.00544595
+392.88	0.00544474
+393	0.00544353
+393.12	0.00544232
+393.24	0.00544111
+393.36	0.0054399
+393.48	0.00543869
+393.6	0.00543749
+393.72	0.00543628
+393.84	0.00543508
+393.96	0.00543387
+394.08	0.00543267
+394.2	0.00543147
+394.32	0.00543027
+394.44	0.00542906
+394.56	0.00542786
+394.68	0.00542666
+394.8	0.00542546
+394.92	0.00542427
+395.04	0.00542307
+395.16	0.00542187
+395.28	0.00542067
+395.4	0.00541948
+395.52	0.00541828
+395.64	0.00541709
+395.76	0.00541589
+395.88	0.0054147
+396	0.00541351
+396.12	0.00541232
+396.24	0.00541112
+396.36	0.00540993
+396.48	0.00540874
+396.6	0.00540755
+396.72	0.00540637
+396.84	0.00540518
+396.96	0.00540399
+397.08	0.0054028
+397.2	0.00540162
+397.32	0.00540043
+397.44	0.00539925
+397.56	0.00539806
+397.68	0.00539688
+397.8	0.0053957
+397.92	0.00539452
+398.04	0.00539334
+398.16	0.00539215
+398.28	0.00539097
+398.4	0.0053898
+398.52	0.00538862
+398.64	0.00538744
+398.76	0.00538626
+398.88	0.00538508
+399	0.00538391
+399.12	0.00538273
+399.24	0.00538156
+399.36	0.00538038
+399.48	0.00537921
+399.6	0.00537804
+399.72	0.00537687
+399.84	0.0053757
+399.96	0.00537452
+400.08	0.00537335
+400.2	0.00537218
+400.32	0.00537102
+400.44	0.00536985
+400.56	0.00536868
+400.68	0.00536751
+400.8	0.00536635
+400.92	0.00536518
+401.04	0.00536402
+401.16	0.00536285
+401.28	0.00536169
+401.4	0.00536053
+401.52	0.00535936
+401.64	0.0053582
+401.76	0.00535704
+401.88	0.00535588
+402	0.00535472
+402.12	0.00535356
+402.24	0.0053524
+402.36	0.00535125
+402.48	0.00535009
+402.6	0.00534893
+402.72	0.00534778
+402.84	0.00534662
+402.96	0.00534547
+403.08	0.00534431
+403.2	0.00534316
+403.32	0.00534201
+403.44	0.00534085
+403.56	0.0053397
+403.68	0.00533855
+403.8	0.0053374
+403.92	0.00533625
+404.04	0.0053351
+404.16	0.00533396
+404.28	0.00533281
+404.4	0.00533166
+404.52	0.00533051
+404.64	0.00532937
+404.76	0.00532822
+404.88	0.00532708
+405	0.00532594
+405.12	0.00532479
+405.24	0.00532365
+405.36	0.00532251
+405.48	0.00532137
+405.6	0.00532023
+405.72	0.00531909
+405.84	0.00531795
+405.96	0.00531681
+406.08	0.00531567
+406.2	0.00531453
+406.32	0.0053134
+406.44	0.00531226
+406.56	0.00531112
+406.68	0.00530999
+406.8	0.00530885
+406.92	0.00530772
+407.04	0.00530659
+407.16	0.00530545
+407.28	0.00530432
+407.4	0.00530319
+407.52	0.00530206
+407.64	0.00530093
+407.76	0.0052998
+407.88	0.00529867
+408	0.00529754
+408.12	0.00529642
+408.24	0.00529529
+408.36	0.00529416
+408.48	0.00529304
+408.6	0.00529191
+408.72	0.00529079
+408.84	0.00528966
+408.96	0.00528854
+409.08	0.00528742
+409.2	0.0052863
+409.32	0.00528517
+409.44	0.00528405
+409.56	0.00528293
+409.68	0.00528181
+409.8	0.0052807
+409.92	0.00527958
+410.04	0.00527846
+410.16	0.00527734
+410.28	0.00527623
+410.4	0.00527511
+410.52	0.00527399
+410.64	0.00527288
+410.76	0.00527177
+410.88	0.00527065
+411	0.00526954
+411.12	0.00526843
+411.24	0.00526731
+411.36	0.0052662
+411.48	0.00526509
+411.6	0.00526398
+411.72	0.00526287
+411.84	0.00526177
+411.96	0.00526066
+412.08	0.00525955
+412.2	0.00525844
+412.32	0.00525734
+412.44	0.00525623
+412.56	0.00525513
+412.68	0.00525402
+412.8	0.00525292
+412.92	0.00525181
+413.04	0.00525071
+413.16	0.00524961
+413.28	0.00524851
+413.4	0.00524741
+413.52	0.00524631
+413.64	0.00524521
+413.76	0.00524411
+413.88	0.00524301
+414	0.00524191
+414.12	0.00524081
+414.24	0.00523972
+414.36	0.00523862
+414.48	0.00523753
+414.6	0.00523643
+414.72	0.00523534
+414.84	0.00523424
+414.96	0.00523315
+415.08	0.00523206
+415.2	0.00523096
+415.32	0.00522987
+415.44	0.00522878
+415.56	0.00522769
+415.68	0.0052266
+415.8	0.00522551
+415.92	0.00522442
+416.04	0.00522334
+416.16	0.00522225
+416.28	0.00522116
+416.4	0.00522008
+416.52	0.00521899
+416.64	0.00521791
+416.76	0.00521682
+416.88	0.00521574
+417	0.00521465
+417.12	0.00521357
+417.24	0.00521249
+417.36	0.00521141
+417.48	0.00521033
+417.6	0.00520925
+417.72	0.00520817
+417.84	0.00520709
+417.96	0.00520601
+418.08	0.00520493
+418.2	0.00520385
+418.32	0.00520278
+418.44	0.0052017
+418.56	0.00520062
+418.68	0.00519955
+418.8	0.00519847
+418.92	0.0051974
+419.04	0.00519633
+419.16	0.00519525
+419.28	0.00519418
+419.4	0.00519311
+419.52	0.00519204
+419.64	0.00519097
+419.76	0.0051899
+419.88	0.00518883
+420	0.00518776
+420.12	0.00518669
+420.24	0.00518562
+420.36	0.00518456
+420.48	0.00518349
+420.6	0.00518242
+420.72	0.00518136
+420.84	0.00518029
+420.96	0.00517923
+421.08	0.00517817
+421.2	0.0051771
+421.32	0.00517604
+421.44	0.00517498
+421.56	0.00517392
+421.68	0.00517286
+421.8	0.00517179
+421.92	0.00517073
+422.04	0.00516968
+422.16	0.00516862
+422.28	0.00516756
+422.4	0.0051665
+422.52	0.00516544
+422.64	0.00516439
+422.76	0.00516333
+422.88	0.00516228
+423	0.00516122
+423.12	0.00516017
+423.24	0.00515911
+423.36	0.00515806
+423.48	0.00515701
+423.6	0.00515596
+423.72	0.0051549
+423.84	0.00515385
+423.96	0.0051528
+424.08	0.00515175
+424.2	0.0051507
+424.32	0.00514966
+424.44	0.00514861
+424.56	0.00514756
+424.68	0.00514651
+424.8	0.00514547
+424.92	0.00514442
+425.04	0.00514337
+425.16	0.00514233
+425.28	0.00514129
+425.4	0.00514024
+425.52	0.0051392
+425.64	0.00513816
+425.76	0.00513711
+425.88	0.00513607
+426	0.00513503
+426.12	0.00513399
+426.24	0.00513295
+426.36	0.00513191
+426.48	0.00513087
+426.6	0.00512983
+426.72	0.0051288
+426.84	0.00512776
+426.96	0.00512672
+427.08	0.00512569
+427.2	0.00512465
+427.32	0.00512362
+427.44	0.00512258
+427.56	0.00512155
+427.68	0.00512051
+427.8	0.00511948
+427.92	0.00511845
+428.04	0.00511742
+428.16	0.00511639
+428.28	0.00511536
+428.4	0.00511433
+428.52	0.0051133
+428.64	0.00511227
+428.76	0.00511124
+428.88	0.00511021
+429	0.00510918
+429.12	0.00510816
+429.24	0.00510713
+429.36	0.0051061
+429.48	0.00510508
+429.6	0.00510405
+429.72	0.00510303
+429.84	0.00510201
+429.96	0.00510098
+430.08	0.00509996
+430.2	0.00509894
+430.32	0.00509792
+430.44	0.0050969
+430.56	0.00509587
+430.68	0.00509485
+430.8	0.00509384
+430.92	0.00509282
+431.04	0.0050918
+431.16	0.00509078
+431.28	0.00508976
+431.4	0.00508875
+431.52	0.00508773
+431.64	0.00508671
+431.76	0.0050857
+431.88	0.00508468
+432	0.00508367
+432.12	0.00508266
+432.24	0.00508164
+432.36	0.00508063
+432.48	0.00507962
+432.6	0.00507861
+432.72	0.0050776
+432.84	0.00507658
+432.96	0.00507557
+433.08	0.00507457
+433.2	0.00507356
+433.32	0.00507255
+433.44	0.00507154
+433.56	0.00507053
+433.68	0.00506953
+433.8	0.00506852
+433.92	0.00506751
+434.04	0.00506651
+434.16	0.0050655
+434.28	0.0050645
+434.4	0.0050635
+434.52	0.00506249
+434.64	0.00506149
+434.76	0.00506049
+434.88	0.00505949
+435	0.00505848
+435.12	0.00505748
+435.24	0.00505648
+435.36	0.00505548
+435.48	0.00505449
+435.6	0.00505349
+435.72	0.00505249
+435.84	0.00505149
+435.96	0.00505049
+436.08	0.0050495
+436.2	0.0050485
+436.32	0.00504751
+436.44	0.00504651
+436.56	0.00504552
+436.68	0.00504452
+436.8	0.00504353
+436.92	0.00504254
+437.04	0.00504154
+437.16	0.00504055
+437.28	0.00503956
+437.4	0.00503857
+437.52	0.00503758
+437.64	0.00503659
+437.76	0.0050356
+437.88	0.00503461
+438	0.00503362
+438.12	0.00503263
+438.24	0.00503165
+438.36	0.00503066
+438.48	0.00502967
+438.6	0.00502869
+438.72	0.0050277
+438.84	0.00502672
+438.96	0.00502573
+439.08	0.00502475
+439.2	0.00502377
+439.32	0.00502278
+439.44	0.0050218
+439.56	0.00502082
+439.68	0.00501984
+439.8	0.00501886
+439.92	0.00501788
+440.04	0.0050169
+440.16	0.00501592
+440.28	0.00501494
+440.4	0.00501396
+440.52	0.00501298
+440.64	0.005012
+440.76	0.00501103
+440.88	0.00501005
+441	0.00500907
+441.12	0.0050081
+441.24	0.00500712
+441.36	0.00500615
+441.48	0.00500518
+441.6	0.0050042
+441.72	0.00500323
+441.84	0.00500226
+441.96	0.00500128
+442.08	0.00500031
+442.2	0.00499934
+442.32	0.00499837
+442.44	0.0049974
+442.56	0.00499643
+442.68	0.00499546
+442.8	0.0049945
+442.92	0.00499353
+443.04	0.00499256
+443.16	0.00499159
+443.28	0.00499063
+443.4	0.00498966
+443.52	0.00498869
+443.64	0.00498773
+443.76	0.00498677
+443.88	0.0049858
+444	0.00498484
+444.12	0.00498388
+444.24	0.00498291
+444.36	0.00498195
+444.48	0.00498099
+444.6	0.00498003
+444.72	0.00497907
+444.84	0.00497811
+444.96	0.00497715
+445.08	0.00497619
+445.2	0.00497523
+445.32	0.00497427
+445.44	0.00497332
+445.56	0.00497236
+445.68	0.0049714
+445.8	0.00497045
+445.92	0.00496949
+446.04	0.00496854
+446.16	0.00496758
+446.28	0.00496663
+446.4	0.00496567
+446.52	0.00496472
+446.64	0.00496377
+446.76	0.00496282
+446.88	0.00496186
+447	0.00496091
+447.12	0.00495996
+447.24	0.00495901
+447.36	0.00495806
+447.48	0.00495711
+447.6	0.00495616
+447.72	0.00495522
+447.84	0.00495427
+447.96	0.00495332
+448.08	0.00495237
+448.2	0.00495143
+448.32	0.00495048
+448.44	0.00494954
+448.56	0.00494859
+448.68	0.00494765
+448.8	0.0049467
+448.92	0.00494576
+449.04	0.00494482
+449.16	0.00494387
+449.28	0.00494293
+449.4	0.00494199
+449.52	0.00494105
+449.64	0.00494011
+449.76	0.00493917
+449.88	0.00493823
+450	0.00493729
+450.12	0.00493635
+450.24	0.00493541
+450.36	0.00493447
+450.48	0.00493353
+450.6	0.0049326
+450.72	0.00493166
+450.84	0.00493072
+450.96	0.00492979
+451.08	0.00492885
+451.2	0.00492792
+451.32	0.00492698
+451.44	0.00492605
+451.56	0.00492512
+451.68	0.00492418
+451.8	0.00492325
+451.92	0.00492232
+452.04	0.00492139
+452.16	0.00492046
+452.28	0.00491953
+452.4	0.0049186
+452.52	0.00491767
+452.64	0.00491674
+452.76	0.00491581
+452.88	0.00491488
+453	0.00491395
+453.12	0.00491303
+453.24	0.0049121
+453.36	0.00491117
+453.48	0.00491025
+453.6	0.00490932
+453.72	0.0049084
+453.84	0.00490747
+453.96	0.00490655
+454.08	0.00490562
+454.2	0.0049047
+454.32	0.00490378
+454.44	0.00490285
+454.56	0.00490193
+454.68	0.00490101
+454.8	0.00490009
+454.92	0.00489917
+455.04	0.00489825
+455.16	0.00489733
+455.28	0.00489641
+455.4	0.00489549
+455.52	0.00489457
+455.64	0.00489366
+455.76	0.00489274
+455.88	0.00489182
+456	0.00489091
+456.12	0.00488999
+456.24	0.00488907
+456.36	0.00488816
+456.48	0.00488724
+456.6	0.00488633
+456.72	0.00488542
+456.84	0.0048845
+456.96	0.00488359
+457.08	0.00488268
+457.2	0.00488177
+457.32	0.00488085
+457.44	0.00487994
+457.56	0.00487903
+457.68	0.00487812
+457.8	0.00487721
+457.92	0.0048763
+458.04	0.0048754
+458.16	0.00487449
+458.28	0.00487358
+458.4	0.00487267
+458.52	0.00487176
+458.64	0.00487086
+458.76	0.00486995
+458.88	0.00486905
+459	0.00486814
+459.12	0.00486724
+459.24	0.00486633
+459.36	0.00486543
+459.48	0.00486452
+459.6	0.00486362
+459.72	0.00486272
+459.84	0.00486182
+459.96	0.00486091
+460.08	0.00486001
+460.2	0.00485911
+460.32	0.00485821
+460.44	0.00485731
+460.56	0.00485641
+460.68	0.00485551
+460.8	0.00485462
+460.92	0.00485372
+461.04	0.00485282
+461.16	0.00485192
+461.28	0.00485102
+461.4	0.00485013
+461.52	0.00484923
+461.64	0.00484834
+461.76	0.00484744
+461.88	0.00484655
+462	0.00484565
+462.12	0.00484476
+462.24	0.00484387
+462.36	0.00484297
+462.48	0.00484208
+462.6	0.00484119
+462.72	0.0048403
+462.84	0.0048394
+462.96	0.00483851
+463.08	0.00483762
+463.2	0.00483673
+463.32	0.00483584
+463.44	0.00483495
+463.56	0.00483407
+463.68	0.00483318
+463.8	0.00483229
+463.92	0.0048314
+464.04	0.00483052
+464.16	0.00482963
+464.28	0.00482874
+464.4	0.00482786
+464.52	0.00482697
+464.64	0.00482609
+464.76	0.0048252
+464.88	0.00482432
+465	0.00482344
+465.12	0.00482255
+465.24	0.00482167
+465.36	0.00482079
+465.48	0.00481991
+465.6	0.00481902
+465.72	0.00481814
+465.84	0.00481726
+465.96	0.00481638
+466.08	0.0048155
+466.2	0.00481462
+466.32	0.00481375
+466.44	0.00481287
+466.56	0.00481199
+466.68	0.00481111
+466.8	0.00481023
+466.92	0.00480936
+467.04	0.00480848
+467.16	0.00480761
+467.28	0.00480673
+467.4	0.00480585
+467.52	0.00480498
+467.64	0.00480411
+467.76	0.00480323
+467.88	0.00480236
+468	0.00480149
+468.12	0.00480061
+468.24	0.00479974
+468.36	0.00479887
+468.48	0.004798
+468.6	0.00479713
+468.72	0.00479626
+468.84	0.00479539
+468.96	0.00479452
+469.08	0.00479365
+469.2	0.00479278
+469.32	0.00479191
+469.44	0.00479104
+469.56	0.00479018
+469.68	0.00478931
+469.8	0.00478844
+469.92	0.00478758
+470.04	0.00478671
+470.16	0.00478584
+470.28	0.00478498
+470.4	0.00478411
+470.52	0.00478325
+470.64	0.00478239
+470.76	0.00478152
+470.88	0.00478066
+471	0.0047798
+471.12	0.00477894
+471.24	0.00477807
+471.36	0.00477721
+471.48	0.00477635
+471.6	0.00477549
+471.72	0.00477463
+471.84	0.00477377
+471.96	0.00477291
+472.08	0.00477205
+472.2	0.00477119
+472.32	0.00477034
+472.44	0.00476948
+472.56	0.00476862
+472.68	0.00476776
+472.8	0.00476691
+472.92	0.00476605
+473.04	0.0047652
+473.16	0.00476434
+473.28	0.00476349
+473.4	0.00476263
+473.52	0.00476178
+473.64	0.00476092
+473.76	0.00476007
+473.88	0.00475922
+474	0.00475837
+474.12	0.00475751
+474.24	0.00475666
+474.36	0.00475581
+474.48	0.00475496
+474.6	0.00475411
+474.72	0.00475326
+474.84	0.00475241
+474.96	0.00475156
+475.08	0.00475071
+475.2	0.00474986
+475.32	0.00474902
+475.44	0.00474817
+475.56	0.00474732
+475.68	0.00474648
+475.8	0.00474563
+475.92	0.00474478
+476.04	0.00474394
+476.16	0.00474309
+476.28	0.00474225
+476.4	0.0047414
+476.52	0.00474056
+476.64	0.00473972
+476.76	0.00473887
+476.88	0.00473803
+477	0.00473719
+477.12	0.00473635
+477.24	0.0047355
+477.36	0.00473466
+477.48	0.00473382
+477.6	0.00473298
+477.72	0.00473214
+477.84	0.0047313
+477.96	0.00473046
+478.08	0.00472962
+478.2	0.00472879
+478.32	0.00472795
+478.44	0.00472711
+478.56	0.00472627
+478.68	0.00472544
+478.8	0.0047246
+478.92	0.00472376
+479.04	0.00472293
+479.16	0.00472209
+479.28	0.00472126
+479.4	0.00472042
+479.52	0.00471959
+479.64	0.00471876
+479.76	0.00471792
+479.88	0.00471709
+480	0.00471626
+480.12	0.00471543
+480.24	0.00471459
+480.36	0.00471376
+480.48	0.00471293
+480.6	0.0047121
+480.72	0.00471127
+480.84	0.00471044
+480.96	0.00470961
+481.08	0.00470878
+481.2	0.00470795
+481.32	0.00470713
+481.44	0.0047063
+481.56	0.00470547
+481.68	0.00470464
+481.8	0.00470382
+481.92	0.00470299
+482.04	0.00470216
+482.16	0.00470134
+482.28	0.00470051
+482.4	0.00469969
+482.52	0.00469886
+482.64	0.00469804
+482.76	0.00469722
+482.88	0.00469639
+483	0.00469557
+483.12	0.00469475
+483.24	0.00469393
+483.36	0.0046931
+483.48	0.00469228
+483.6	0.00469146
+483.72	0.00469064
+483.84	0.00468982
+483.96	0.004689
+484.08	0.00468818
+484.2	0.00468736
+484.32	0.00468654
+484.44	0.00468573
+484.56	0.00468491
+484.68	0.00468409
+484.8	0.00468327
+484.92	0.00468246
+485.04	0.00468164
+485.16	0.00468083
+485.28	0.00468001
+485.4	0.00467919
+485.52	0.00467838
+485.64	0.00467756
+485.76	0.00467675
+485.88	0.00467594
+486	0.00467512
+486.12	0.00467431
+486.24	0.0046735
+486.36	0.00467269
+486.48	0.00467187
+486.6	0.00467106
+486.72	0.00467025
+486.84	0.00466944
+486.96	0.00466863
+487.08	0.00466782
+487.2	0.00466701
+487.32	0.0046662
+487.44	0.00466539
+487.56	0.00466458
+487.68	0.00466378
+487.8	0.00466297
+487.92	0.00466216
+488.04	0.00466135
+488.16	0.00466055
+488.28	0.00465974
+488.4	0.00465894
+488.52	0.00465813
+488.64	0.00465733
+488.76	0.00465652
+488.88	0.00465572
+489	0.00465491
+489.12	0.00465411
+489.24	0.00465331
+489.36	0.0046525
+489.48	0.0046517
+489.6	0.0046509
+489.72	0.0046501
+489.84	0.00464929
+489.96	0.00464849
+490.08	0.00464769
+490.2	0.00464689
+490.32	0.00464609
+490.44	0.00464529
+490.56	0.00464449
+490.68	0.00464369
+490.8	0.0046429
+490.92	0.0046421
+491.04	0.0046413
+491.16	0.0046405
+491.28	0.00463971
+491.4	0.00463891
+491.52	0.00463811
+491.64	0.00463732
+491.76	0.00463652
+491.88	0.00463573
+492	0.00463493
+492.12	0.00463414
+492.24	0.00463334
+492.36	0.00463255
+492.48	0.00463176
+492.6	0.00463096
+492.72	0.00463017
+492.84	0.00462938
+492.96	0.00462859
+493.08	0.00462779
+493.2	0.004627
+493.32	0.00462621
+493.44	0.00462542
+493.56	0.00462463
+493.68	0.00462384
+493.8	0.00462305
+493.92	0.00462226
+494.04	0.00462147
+494.16	0.00462069
+494.28	0.0046199
+494.4	0.00461911
+494.52	0.00461832
+494.64	0.00461754
+494.76	0.00461675
+494.88	0.00461596
+495	0.00461518
+495.12	0.00461439
+495.24	0.00461361
+495.36	0.00461282
+495.48	0.00461204
+495.6	0.00461125
+495.72	0.00461047
+495.84	0.00460969
+495.96	0.0046089
+496.08	0.00460812
+496.2	0.00460734
+496.32	0.00460656
+496.44	0.00460578
+496.56	0.00460499
+496.68	0.00460421
+496.8	0.00460343
+496.92	0.00460265
+497.04	0.00460187
+497.16	0.00460109
+497.28	0.00460032
+497.4	0.00459954
+497.52	0.00459876
+497.64	0.00459798
+497.76	0.0045972
+497.88	0.00459643
+498	0.00459565
+498.12	0.00459487
+498.24	0.0045941
+498.36	0.00459332
+498.48	0.00459254
+498.6	0.00459177
+498.72	0.00459099
+498.84	0.00459022
+498.96	0.00458945
+499.08	0.00458867
+499.2	0.0045879
+499.32	0.00458712
+499.44	0.00458635
+499.56	0.00458558
+499.68	0.00458481
+499.8	0.00458404
+499.92	0.00458326
+500.04	0.00458249
+500.16	0.00458172
+500.28	0.00458095
+500.4	0.00458018
+500.52	0.00457941
+500.64	0.00457864
+500.76	0.00457787
+500.88	0.00457711
+501	0.00457634
+501.12	0.00457557
+501.24	0.0045748
+501.36	0.00457404
+501.48	0.00457327
+501.6	0.0045725
+501.72	0.00457174
+501.84	0.00457097
+501.96	0.0045702
+502.08	0.00456944
+502.2	0.00456867
+502.32	0.00456791
+502.44	0.00456715
+502.56	0.00456638
+502.68	0.00456562
+502.8	0.00456486
+502.92	0.00456409
+503.04	0.00456333
+503.16	0.00456257
+503.28	0.00456181
+503.4	0.00456105
+503.52	0.00456028
+503.64	0.00455952
+503.76	0.00455876
+503.88	0.004558
+504	0.00455724
+504.12	0.00455648
+504.24	0.00455572
+504.36	0.00455497
+504.48	0.00455421
+504.6	0.00455345
+504.72	0.00455269
+504.84	0.00455194
+504.96	0.00455118
+505.08	0.00455042
+505.2	0.00454967
+505.32	0.00454891
+505.44	0.00454815
+505.56	0.0045474
+505.68	0.00454664
+505.8	0.00454589
+505.92	0.00454513
+506.04	0.00454438
+506.16	0.00454363
+506.28	0.00454287
+506.4	0.00454212
+506.52	0.00454137
+506.64	0.00454062
+506.76	0.00453986
+506.88	0.00453911
+507	0.00453836
+507.12	0.00453761
+507.24	0.00453686
+507.36	0.00453611
+507.48	0.00453536
+507.6	0.00453461
+507.72	0.00453386
+507.84	0.00453311
+507.96	0.00453236
+508.08	0.00453161
+508.2	0.00453087
+508.32	0.00453012
+508.44	0.00452937
+508.56	0.00452863
+508.68	0.00452788
+508.8	0.00452713
+508.92	0.00452639
+509.04	0.00452564
+509.16	0.0045249
+509.28	0.00452415
+509.4	0.00452341
+509.52	0.00452266
+509.64	0.00452192
+509.76	0.00452117
+509.88	0.00452043
+510	0.00451969
+510.12	0.00451895
+510.24	0.0045182
+510.36	0.00451746
+510.48	0.00451672
+510.6	0.00451598
+510.72	0.00451524
+510.84	0.0045145
+510.96	0.00451376
+511.08	0.00451302
+511.2	0.00451228
+511.32	0.00451154
+511.44	0.0045108
+511.56	0.00451006
+511.68	0.00450932
+511.8	0.00450858
+511.92	0.00450784
+512.04	0.00450711
+512.16	0.00450637
+512.28	0.00450563
+512.4	0.0045049
+512.52	0.00450416
+512.64	0.00450342
+512.76	0.00450269
+512.88	0.00450195
+513	0.00450122
+513.12	0.00450049
+513.24	0.00449975
+513.36	0.00449902
+513.48	0.00449828
+513.6	0.00449755
+513.72	0.00449682
+513.84	0.00449608
+513.96	0.00449535
+514.08	0.00449462
+514.2	0.00449389
+514.32	0.00449316
+514.44	0.00449243
+514.56	0.0044917
+514.68	0.00449097
+514.8	0.00449024
+514.92	0.00448951
+515.04	0.00448878
+515.16	0.00448805
+515.28	0.00448732
+515.4	0.00448659
+515.52	0.00448586
+515.64	0.00448513
+515.76	0.00448441
+515.88	0.00448368
+516	0.00448295
+516.12	0.00448223
+516.24	0.0044815
+516.36	0.00448077
+516.48	0.00448005
+516.6	0.00447932
+516.72	0.0044786
+516.84	0.00447787
+516.96	0.00447715
+517.08	0.00447643
+517.2	0.0044757
+517.32	0.00447498
+517.44	0.00447426
+517.56	0.00447353
+517.68	0.00447281
+517.8	0.00447209
+517.92	0.00447137
+518.04	0.00447065
+518.16	0.00446992
+518.28	0.0044692
+518.4	0.00446848
+518.52	0.00446776
+518.64	0.00446704
+518.76	0.00446632
+518.88	0.0044656
+519	0.00446489
+519.12	0.00446417
+519.24	0.00446345
+519.36	0.00446273
+519.48	0.00446201
+519.6	0.0044613
+519.72	0.00446058
+519.84	0.00445986
+519.96	0.00445915
+520.08	0.00445843
+520.2	0.00445771
+520.32	0.004457
+520.44	0.00445628
+520.56	0.00445557
+520.68	0.00445485
+520.8	0.00445414
+520.92	0.00445342
+521.04	0.00445271
+521.16	0.004452
+521.28	0.00445128
+521.4	0.00445057
+521.52	0.00444986
+521.64	0.00444915
+521.76	0.00444844
+521.88	0.00444772
+522	0.00444701
+522.12	0.0044463
+522.24	0.00444559
+522.36	0.00444488
+522.48	0.00444417
+522.6	0.00444346
+522.72	0.00444275
+522.84	0.00444204
+522.96	0.00444133
+523.08	0.00444063
+523.2	0.00443992
+523.32	0.00443921
+523.44	0.0044385
+523.56	0.0044378
+523.68	0.00443709
+523.8	0.00443638
+523.92	0.00443568
+524.04	0.00443497
+524.16	0.00443426
+524.28	0.00443356
+524.4	0.00443285
+524.52	0.00443215
+524.64	0.00443144
+524.76	0.00443074
+524.88	0.00443004
+525	0.00442933
+525.12	0.00442863
+525.24	0.00442793
+525.36	0.00442722
+525.48	0.00442652
+525.6	0.00442582
+525.72	0.00442512
+525.84	0.00442442
+525.96	0.00442372
+526.08	0.00442301
+526.2	0.00442231
+526.32	0.00442161
+526.44	0.00442091
+526.56	0.00442021
+526.68	0.00441951
+526.8	0.00441882
+526.92	0.00441812
+527.04	0.00441742
+527.16	0.00441672
+527.28	0.00441602
+527.4	0.00441532
+527.52	0.00441463
+527.64	0.00441393
+527.76	0.00441323
+527.88	0.00441254
+528	0.00441184
+528.12	0.00441115
+528.24	0.00441045
+528.36	0.00440976
+528.48	0.00440906
+528.6	0.00440837
+528.72	0.00440767
+528.84	0.00440698
+528.96	0.00440628
+529.08	0.00440559
+529.2	0.0044049
+529.32	0.0044042
+529.44	0.00440351
+529.56	0.00440282
+529.68	0.00440213
+529.8	0.00440144
+529.92	0.00440075
+530.04	0.00440005
+530.16	0.00439936
+530.28	0.00439867
+530.4	0.00439798
+530.52	0.00439729
+530.64	0.0043966
+530.76	0.00439591
+530.88	0.00439523
+531	0.00439454
+531.12	0.00439385
+531.24	0.00439316
+531.36	0.00439247
+531.48	0.00439178
+531.6	0.0043911
+531.72	0.00439041
+531.84	0.00438972
+531.96	0.00438904
+532.08	0.00438835
+532.2	0.00438767
+532.32	0.00438698
+532.44	0.0043863
+532.56	0.00438561
+532.68	0.00438493
+532.8	0.00438424
+532.92	0.00438356
+533.04	0.00438287
+533.16	0.00438219
+533.28	0.00438151
+533.4	0.00438082
+533.52	0.00438014
+533.64	0.00437946
+533.76	0.00437878
+533.88	0.0043781
+534	0.00437741
+534.12	0.00437673
+534.24	0.00437605
+534.36	0.00437537
+534.48	0.00437469
+534.6	0.00437401
+534.72	0.00437333
+534.84	0.00437265
+534.96	0.00437197
+535.08	0.00437129
+535.2	0.00437062
+535.32	0.00436994
+535.44	0.00436926
+535.56	0.00436858
+535.68	0.0043679
+535.8	0.00436723
+535.92	0.00436655
+536.04	0.00436587
+536.16	0.0043652
+536.28	0.00436452
+536.4	0.00436385
+536.52	0.00436317
+536.64	0.0043625
+536.76	0.00436182
+536.88	0.00436115
+537	0.00436047
+537.12	0.0043598
+537.24	0.00435912
+537.36	0.00435845
+537.48	0.00435778
+537.6	0.00435711
+537.72	0.00435643
+537.84	0.00435576
+537.96	0.00435509
+538.08	0.00435442
+538.2	0.00435375
+538.32	0.00435307
+538.44	0.0043524
+538.56	0.00435173
+538.68	0.00435106
+538.8	0.00435039
+538.92	0.00434972
+539.04	0.00434905
+539.16	0.00434838
+539.28	0.00434772
+539.4	0.00434705
+539.52	0.00434638
+539.64	0.00434571
+539.76	0.00434504
+539.88	0.00434437
+540	0.00434371
+540.12	0.00434304
+540.24	0.00434237
+540.36	0.00434171
+540.48	0.00434104
+540.6	0.00434038
+540.72	0.00433971
+540.84	0.00433905
+540.96	0.00433838
+541.08	0.00433772
+541.2	0.00433705
+541.32	0.00433639
+541.44	0.00433572
+541.56	0.00433506
+541.68	0.0043344
+541.8	0.00433373
+541.92	0.00433307
+542.04	0.00433241
+542.16	0.00433175
+542.28	0.00433108
+542.4	0.00433042
+542.52	0.00432976
+542.64	0.0043291
+542.76	0.00432844
+542.88	0.00432778
+543	0.00432712
+543.12	0.00432646
+543.24	0.0043258
+543.36	0.00432514
+543.48	0.00432448
+543.6	0.00432382
+543.72	0.00432316
+543.84	0.0043225
+543.96	0.00432185
+544.08	0.00432119
+544.2	0.00432053
+544.32	0.00431987
+544.44	0.00431922
+544.56	0.00431856
+544.68	0.0043179
+544.8	0.00431725
+544.92	0.00431659
+545.04	0.00431593
+545.16	0.00431528
+545.28	0.00431462
+545.4	0.00431397
+545.52	0.00431331
+545.64	0.00431266
+545.76	0.00431201
+545.88	0.00431135
+546	0.0043107
+546.12	0.00431005
+546.24	0.00430939
+546.36	0.00430874
+546.48	0.00430809
+546.6	0.00430744
+546.72	0.00430678
+546.84	0.00430613
+546.96	0.00430548
+547.08	0.00430483
+547.2	0.00430418
+547.32	0.00430353
+547.44	0.00430288
+547.56	0.00430223
+547.68	0.00430158
+547.8	0.00430093
+547.92	0.00430028
+548.04	0.00429963
+548.16	0.00429898
+548.28	0.00429833
+548.4	0.00429769
+548.52	0.00429704
+548.64	0.00429639
+548.76	0.00429574
+548.88	0.0042951
+549	0.00429445
+549.12	0.0042938
+549.24	0.00429316
+549.36	0.00429251
+549.48	0.00429187
+549.6	0.00429122
+549.72	0.00429058
+549.84	0.00428993
+549.96	0.00428929
+550.08	0.00428864
+550.2	0.004288
+550.32	0.00428735
+550.44	0.00428671
+550.56	0.00428607
+550.68	0.00428542
+550.8	0.00428478
+550.92	0.00428414
+551.04	0.0042835
+551.16	0.00428285
+551.28	0.00428221
+551.4	0.00428157
+551.52	0.00428093
+551.64	0.00428029
+551.76	0.00427965
+551.88	0.00427901
+552	0.00427837
+552.12	0.00427773
+552.24	0.00427709
+552.36	0.00427645
+552.48	0.00427581
+552.6	0.00427517
+552.72	0.00427453
+552.84	0.00427389
+552.96	0.00427326
+553.08	0.00427262
+553.2	0.00427198
+553.32	0.00427134
+553.44	0.00427071
+553.56	0.00427007
+553.68	0.00426943
+553.8	0.0042688
+553.92	0.00426816
+554.04	0.00426753
+554.16	0.00426689
+554.28	0.00426625
+554.4	0.00426562
+554.52	0.00426498
+554.64	0.00426435
+554.76	0.00426372
+554.88	0.00426308
+555	0.00426245
+555.12	0.00426182
+555.24	0.00426118
+555.36	0.00426055
+555.48	0.00425992
+555.6	0.00425928
+555.72	0.00425865
+555.84	0.00425802
+555.96	0.00425739
+556.08	0.00425676
+556.2	0.00425613
+556.32	0.0042555
+556.44	0.00425487
+556.56	0.00425424
+556.68	0.00425361
+556.8	0.00425298
+556.92	0.00425235
+557.04	0.00425172
+557.16	0.00425109
+557.28	0.00425046
+557.4	0.00424983
+557.52	0.0042492
+557.64	0.00424857
+557.76	0.00424795
+557.88	0.00424732
+558	0.00424669
+558.12	0.00424606
+558.24	0.00424544
+558.36	0.00424481
+558.48	0.00424419
+558.6	0.00424356
+558.72	0.00424293
+558.84	0.00424231
+558.96	0.00424168
+559.08	0.00424106
+559.2	0.00424043
+559.32	0.00423981
+559.44	0.00423918
+559.56	0.00423856
+559.68	0.00423794
+559.8	0.00423731
+559.92	0.00423669
+560.04	0.00423607
+560.16	0.00423545
+560.28	0.00423482
+560.4	0.0042342
+560.52	0.00423358
+560.64	0.00423296
+560.76	0.00423234
+560.88	0.00423171
+561	0.00423109
+561.12	0.00423047
+561.24	0.00422985
+561.36	0.00422923
+561.48	0.00422861
+561.6	0.00422799
+561.72	0.00422737
+561.84	0.00422675
+561.96	0.00422614
+562.08	0.00422552
+562.2	0.0042249
+562.32	0.00422428
+562.44	0.00422366
+562.56	0.00422304
+562.68	0.00422243
+562.8	0.00422181
+562.92	0.00422119
+563.04	0.00422058
+563.16	0.00421996
+563.28	0.00421934
+563.4	0.00421873
+563.52	0.00421811
+563.64	0.0042175
+563.76	0.00421688
+563.88	0.00421627
+564	0.00421565
+564.12	0.00421504
+564.24	0.00421442
+564.36	0.00421381
+564.48	0.0042132
+564.6	0.00421258
+564.72	0.00421197
+564.84	0.00421136
+564.96	0.00421074
+565.08	0.00421013
+565.2	0.00420952
+565.32	0.00420891
+565.44	0.00420829
+565.56	0.00420768
+565.68	0.00420707
+565.8	0.00420646
+565.92	0.00420585
+566.04	0.00420524
+566.16	0.00420463
+566.28	0.00420402
+566.4	0.00420341
+566.52	0.0042028
+566.64	0.00420219
+566.76	0.00420158
+566.88	0.00420097
+567	0.00420036
+567.12	0.00419976
+567.24	0.00419915
+567.36	0.00419854
+567.48	0.00419793
+567.6	0.00419733
+567.72	0.00419672
+567.84	0.00419611
+567.96	0.0041955
+568.08	0.0041949
+568.2	0.00419429
+568.32	0.00419369
+568.44	0.00419308
+568.56	0.00419248
+568.68	0.00419187
+568.8	0.00419127
+568.92	0.00419066
+569.04	0.00419006
+569.16	0.00418945
+569.28	0.00418885
+569.4	0.00418824
+569.52	0.00418764
+569.64	0.00418704
+569.76	0.00418643
+569.88	0.00418583
+570	0.00418523
+570.12	0.00418463
+570.24	0.00418402
+570.36	0.00418342
+570.48	0.00418282
+570.6	0.00418222
+570.72	0.00418162
+570.84	0.00418102
+570.96	0.00418042
+571.08	0.00417982
+571.2	0.00417922
+571.32	0.00417862
+571.44	0.00417802
+571.56	0.00417742
+571.68	0.00417682
+571.8	0.00417622
+571.92	0.00417562
+572.04	0.00417502
+572.16	0.00417442
+572.28	0.00417383
+572.4	0.00417323
+572.52	0.00417263
+572.64	0.00417203
+572.76	0.00417144
+572.88	0.00417084
+573	0.00417024
+573.12	0.00416965
+573.24	0.00416905
+573.36	0.00416846
+573.48	0.00416786
+573.6	0.00416726
+573.72	0.00416667
+573.84	0.00416607
+573.96	0.00416548
+574.08	0.00416488
+574.2	0.00416429
+574.32	0.0041637
+574.44	0.0041631
+574.56	0.00416251
+574.68	0.00416192
+574.8	0.00416132
+574.92	0.00416073
+575.04	0.00416014
+575.16	0.00415955
+575.28	0.00415895
+575.4	0.00415836
+575.52	0.00415777
+575.64	0.00415718
+575.76	0.00415659
+575.88	0.004156
+576	0.00415541
+576.12	0.00415481
+576.24	0.00415422
+576.36	0.00415363
+576.48	0.00415304
+576.6	0.00415246
+576.72	0.00415187
+576.84	0.00415128
+576.96	0.00415069
+577.08	0.0041501
+577.2	0.00414951
+577.32	0.00414892
+577.44	0.00414833
+577.56	0.00414775
+577.68	0.00414716
+577.8	0.00414657
+577.92	0.00414599
+578.04	0.0041454
+578.16	0.00414481
+578.28	0.00414423
+578.4	0.00414364
+578.52	0.00414305
+578.64	0.00414247
+578.76	0.00414188
+578.88	0.0041413
+579	0.00414071
+579.12	0.00414013
+579.24	0.00413954
+579.36	0.00413896
+579.48	0.00413837
+579.6	0.00413779
+579.72	0.00413721
+579.84	0.00413662
+579.96	0.00413604
+580.08	0.00413546
+580.2	0.00413488
+580.32	0.00413429
+580.44	0.00413371
+580.56	0.00413313
+580.68	0.00413255
+580.8	0.00413197
+580.92	0.00413138
+581.04	0.0041308
+581.16	0.00413022
+581.28	0.00412964
+581.4	0.00412906
+581.52	0.00412848
+581.64	0.0041279
+581.76	0.00412732
+581.88	0.00412674
+582	0.00412616
+582.12	0.00412558
+582.24	0.004125
+582.36	0.00412443
+582.48	0.00412385
+582.6	0.00412327
+582.72	0.00412269
+582.84	0.00412211
+582.96	0.00412154
+583.08	0.00412096
+583.2	0.00412038
+583.32	0.00411981
+583.44	0.00411923
+583.56	0.00411865
+583.68	0.00411808
+583.8	0.0041175
+583.92	0.00411692
+584.04	0.00411635
+584.16	0.00411577
+584.28	0.0041152
+584.4	0.00411462
+584.52	0.00411405
+584.64	0.00411348
+584.76	0.0041129
+584.88	0.00411233
+585	0.00411175
+585.12	0.00411118
+585.24	0.00411061
+585.36	0.00411003
+585.48	0.00410946
+585.6	0.00410889
+585.72	0.00410832
+585.84	0.00410774
+585.96	0.00410717
+586.08	0.0041066
+586.2	0.00410603
+586.32	0.00410546
+586.44	0.00410489
+586.56	0.00410432
+586.68	0.00410375
+586.8	0.00410318
+586.92	0.00410261
+587.04	0.00410204
+587.16	0.00410147
+587.28	0.0041009
+587.4	0.00410033
+587.52	0.00409976
+587.64	0.00409919
+587.76	0.00409862
+587.88	0.00409805
+588	0.00409748
+588.12	0.00409692
+588.24	0.00409635
+588.36	0.00409578
+588.48	0.00409521
+588.6	0.00409465
+588.72	0.00409408
+588.84	0.00409351
+588.96	0.00409295
+589.08	0.00409238
+589.2	0.00409181
+589.32	0.00409125
+589.44	0.00409068
+589.56	0.00409012
+589.68	0.00408955
+589.8	0.00408899
+589.92	0.00408842
+590.04	0.00408786
+590.16	0.00408729
+590.28	0.00408673
+590.4	0.00408617
+590.52	0.0040856
+590.64	0.00408504
+590.76	0.00408448
+590.88	0.00408391
+591	0.00408335
+591.12	0.00408279
+591.24	0.00408223
+591.36	0.00408166
+591.48	0.0040811
+591.6	0.00408054
+591.72	0.00407998
+591.84	0.00407942
+591.96	0.00407886
+592.08	0.0040783
+592.2	0.00407774
+592.32	0.00407718
+592.44	0.00407662
+592.56	0.00407606
+592.68	0.0040755
+592.8	0.00407494
+592.92	0.00407438
+593.04	0.00407382
+593.16	0.00407326
+593.28	0.0040727
+593.4	0.00407215
+593.52	0.00407159
+593.64	0.00407103
+593.76	0.00407047
+593.88	0.00406991
+594	0.00406936
+594.12	0.0040688
+594.24	0.00406824
+594.36	0.00406769
+594.48	0.00406713
+594.6	0.00406658
+594.72	0.00406602
+594.84	0.00406546
+594.96	0.00406491
+595.08	0.00406435
+595.2	0.0040638
+595.32	0.00406324
+595.44	0.00406269
+595.56	0.00406213
+595.68	0.00406158
+595.8	0.00406103
+595.92	0.00406047
+596.04	0.00405992
+596.16	0.00405937
+596.28	0.00405881
+596.4	0.00405826
+596.52	0.00405771
+596.64	0.00405715
+596.76	0.0040566
+596.88	0.00405605
+597	0.0040555
+597.12	0.00405495
+597.24	0.00405439
+597.36	0.00405384
+597.48	0.00405329
+597.6	0.00405274
+597.72	0.00405219
+597.84	0.00405164
+597.96	0.00405109
+598.08	0.00405054
+598.2	0.00404999
+598.32	0.00404944
+598.44	0.00404889
+598.56	0.00404834
+598.68	0.00404779
+598.8	0.00404724
+598.92	0.0040467
+599.04	0.00404615
+599.16	0.0040456
+599.28	0.00404505
+599.4	0.0040445
+599.52	0.00404396
+599.64	0.00404341
+599.76	0.00404286
+599.88	0.00404232
+600	0.00404177
+600.12	0.00404122
+600.24	0.00404068
+600.36	0.00404013
+600.48	0.00403958
+600.6	0.00403904
+600.72	0.00403849
+600.84	0.00403795
+600.96	0.0040374
+601.08	0.00403686
+601.2	0.00403631
+601.32	0.00403577
+601.44	0.00403523
+601.56	0.00403468
+601.68	0.00403414
+601.8	0.00403359
+601.92	0.00403305
+602.04	0.00403251
+602.16	0.00403196
+602.28	0.00403142
+602.4	0.00403088
+602.52	0.00403034
+602.64	0.00402979
+602.76	0.00402925
+602.88	0.00402871
+603	0.00402817
+603.12	0.00402763
+603.24	0.00402709
+603.36	0.00402655
+603.48	0.00402601
+603.6	0.00402547
+603.72	0.00402492
+603.84	0.00402438
+603.96	0.00402384
+604.08	0.00402331
+604.2	0.00402277
+604.32	0.00402223
+604.44	0.00402169
+604.56	0.00402115
+604.68	0.00402061
+604.8	0.00402007
+604.92	0.00401953
+605.04	0.00401899
+605.16	0.00401846
+605.28	0.00401792
+605.4	0.00401738
+605.52	0.00401684
+605.64	0.00401631
+605.76	0.00401577
+605.88	0.00401523
+606	0.0040147
+606.12	0.00401416
+606.24	0.00401363
+606.36	0.00401309
+606.48	0.00401255
+606.6	0.00401202
+606.72	0.00401148
+606.84	0.00401095
+606.96	0.00401041
+607.08	0.00400988
+607.2	0.00400934
+607.32	0.00400881
+607.44	0.00400828
+607.56	0.00400774
+607.68	0.00400721
+607.8	0.00400668
+607.92	0.00400614
+608.04	0.00400561
+608.16	0.00400508
+608.28	0.00400454
+608.4	0.00400401
+608.52	0.00400348
+608.64	0.00400295
+608.76	0.00400241
+608.88	0.00400188
+609	0.00400135
+609.12	0.00400082
+609.24	0.00400029
+609.36	0.00399976
+609.48	0.00399923
+609.6	0.0039987
+609.72	0.00399817
+609.84	0.00399764
+609.96	0.00399711
+610.08	0.00399658
+610.2	0.00399605
+610.32	0.00399552
+610.44	0.00399499
+610.56	0.00399446
+610.68	0.00399393
+610.8	0.0039934
+610.92	0.00399288
+611.04	0.00399235
+611.16	0.00399182
+611.28	0.00399129
+611.4	0.00399076
+611.52	0.00399024
+611.64	0.00398971
+611.76	0.00398918
+611.88	0.00398866
+612	0.00398813
+612.12	0.0039876
+612.24	0.00398708
+612.36	0.00398655
+612.48	0.00398603
+612.6	0.0039855
+612.72	0.00398497
+612.84	0.00398445
+612.96	0.00398392
+613.08	0.0039834
+613.2	0.00398287
+613.32	0.00398235
+613.44	0.00398183
+613.56	0.0039813
+613.68	0.00398078
+613.8	0.00398026
+613.92	0.00397973
+614.04	0.00397921
+614.16	0.00397869
+614.28	0.00397816
+614.4	0.00397764
+614.52	0.00397712
+614.64	0.0039766
+614.76	0.00397607
+614.88	0.00397555
+615	0.00397503
+615.12	0.00397451
+615.24	0.00397399
+615.36	0.00397347
+615.48	0.00397294
+615.6	0.00397242
+615.72	0.0039719
+615.84	0.00397138
+615.96	0.00397086
+616.08	0.00397034
+616.2	0.00396982
+616.32	0.0039693
+616.44	0.00396878
+616.56	0.00396827
+616.68	0.00396775
+616.8	0.00396723
+616.92	0.00396671
+617.04	0.00396619
+617.16	0.00396567
+617.28	0.00396515
+617.4	0.00396464
+617.52	0.00396412
+617.64	0.0039636
+617.76	0.00396308
+617.88	0.00396257
+618	0.00396205
+618.12	0.00396153
+618.24	0.00396102
+618.36	0.0039605
+618.48	0.00395998
+618.6	0.00395947
+618.72	0.00395895
+618.84	0.00395844
+618.96	0.00395792
+619.08	0.00395741
+619.2	0.00395689
+619.32	0.00395638
+619.44	0.00395586
+619.56	0.00395535
+619.68	0.00395483
+619.8	0.00395432
+619.92	0.00395381
+620.04	0.00395329
+620.16	0.00395278
+620.28	0.00395227
+620.4	0.00395175
+620.52	0.00395124
+620.64	0.00395073
+620.76	0.00395021
+620.88	0.0039497
+621	0.00394919
+621.12	0.00394868
+621.24	0.00394817
+621.36	0.00394765
+621.48	0.00394714
+621.6	0.00394663
+621.72	0.00394612
+621.84	0.00394561
+621.96	0.0039451
+622.08	0.00394459
+622.2	0.00394408
+622.32	0.00394357
+622.44	0.00394306
+622.56	0.00394255
+622.68	0.00394204
+622.8	0.00394153
+622.92	0.00394102
+623.04	0.00394051
+623.16	0.00394
+623.28	0.00393949
+623.4	0.00393899
+623.52	0.00393848
+623.64	0.00393797
+623.76	0.00393746
+623.88	0.00393695
+624	0.00393645
+624.12	0.00393594
+624.24	0.00393543
+624.36	0.00393493
+624.48	0.00393442
+624.6	0.00393391
+624.72	0.00393341
+624.84	0.0039329
+624.96	0.00393239
+625.08	0.00393189
+625.2	0.00393138
+625.32	0.00393088
+625.44	0.00393037
+625.56	0.00392987
+625.68	0.00392936
+625.8	0.00392886
+625.92	0.00392835
+626.04	0.00392785
+626.16	0.00392734
+626.28	0.00392684
+626.4	0.00392634
+626.52	0.00392583
+626.64	0.00392533
+626.76	0.00392483
+626.88	0.00392432
+627	0.00392382
+627.12	0.00392332
+627.24	0.00392281
+627.36	0.00392231
+627.48	0.00392181
+627.6	0.00392131
+627.72	0.00392081
+627.84	0.0039203
+627.96	0.0039198
+628.08	0.0039193
+628.2	0.0039188
+628.32	0.0039183
+628.44	0.0039178
+628.56	0.0039173
+628.68	0.0039168
+628.8	0.0039163
+628.92	0.0039158
+629.04	0.0039153
+629.16	0.0039148
+629.28	0.0039143
+629.4	0.0039138
+629.52	0.0039133
+629.64	0.0039128
+629.76	0.0039123
+629.88	0.00391181
+630	0.00391131
+630.12	0.00391081
+630.24	0.00391031
+630.36	0.00390981
+630.48	0.00390932
+630.6	0.00390882
+630.72	0.00390832
+630.84	0.00390782
+630.96	0.00390733
+631.08	0.00390683
+631.2	0.00390633
+631.32	0.00390584
+631.44	0.00390534
+631.56	0.00390484
+631.68	0.00390435
+631.8	0.00390385
+631.92	0.00390336
+632.04	0.00390286
+632.16	0.00390237
+632.28	0.00390187
+632.4	0.00390138
+632.52	0.00390088
+632.64	0.00390039
+632.76	0.00389989
+632.88	0.0038994
+633	0.00389891
+633.12	0.00389841
+633.24	0.00389792
+633.36	0.00389743
+633.48	0.00389693
+633.6	0.00389644
+633.72	0.00389595
+633.84	0.00389545
+633.96	0.00389496
+634.08	0.00389447
+634.2	0.00389398
+634.32	0.00389349
+634.44	0.00389299
+634.56	0.0038925
+634.68	0.00389201
+634.8	0.00389152
+634.92	0.00389103
+635.04	0.00389054
+635.16	0.00389005
+635.28	0.00388956
+635.4	0.00388907
+635.52	0.00388858
+635.64	0.00388809
+635.76	0.0038876
+635.88	0.00388711
+636	0.00388662
+636.12	0.00388613
+636.24	0.00388564
+636.36	0.00388515
+636.48	0.00388466
+636.6	0.00388417
+636.72	0.00388368
+636.84	0.0038832
+636.96	0.00388271
+637.08	0.00388222
+637.2	0.00388173
+637.32	0.00388124
+637.44	0.00388076
+637.56	0.00388027
+637.68	0.00387978
+637.8	0.0038793
+637.92	0.00387881
+638.04	0.00387832
+638.16	0.00387784
+638.28	0.00387735
+638.4	0.00387686
+638.52	0.00387638
+638.64	0.00387589
+638.76	0.00387541
+638.88	0.00387492
+639	0.00387444
+639.12	0.00387395
+639.24	0.00387347
+639.36	0.00387298
+639.48	0.0038725
+639.6	0.00387201
+639.72	0.00387153
+639.84	0.00387105
+639.96	0.00387056
+640.08	0.00387008
+640.2	0.0038696
+640.32	0.00386911
+640.44	0.00386863
+640.56	0.00386815
+640.68	0.00386766
+640.8	0.00386718
+640.92	0.0038667
+641.04	0.00386622
+641.16	0.00386573
+641.28	0.00386525
+641.4	0.00386477
+641.52	0.00386429
+641.64	0.00386381
+641.76	0.00386333
+641.88	0.00386285
+642	0.00386237
+642.12	0.00386188
+642.24	0.0038614
+642.36	0.00386092
+642.48	0.00386044
+642.6	0.00385996
+642.72	0.00385948
+642.84	0.003859
+642.96	0.00385852
+643.08	0.00385805
+643.2	0.00385757
+643.32	0.00385709
+643.44	0.00385661
+643.56	0.00385613
+643.68	0.00385565
+643.8	0.00385517
+643.92	0.0038547
+644.04	0.00385422
+644.16	0.00385374
+644.28	0.00385326
+644.4	0.00385278
+644.52	0.00385231
+644.64	0.00385183
+644.76	0.00385135
+644.88	0.00385088
+645	0.0038504
+645.12	0.00384992
+645.24	0.00384945
+645.36	0.00384897
+645.48	0.0038485
+645.6	0.00384802
+645.72	0.00384754
+645.84	0.00384707
+645.96	0.00384659
+646.08	0.00384612
+646.2	0.00384564
+646.32	0.00384517
+646.44	0.00384469
+646.56	0.00384422
+646.68	0.00384375
+646.8	0.00384327
+646.92	0.0038428
+647.04	0.00384232
+647.16	0.00384185
+647.28	0.00384138
+647.4	0.0038409
+647.52	0.00384043
+647.64	0.00383996
+647.76	0.00383949
+647.88	0.00383901
+648	0.00383854
+648.12	0.00383807
+648.24	0.0038376
+648.36	0.00383712
+648.48	0.00383665
+648.6	0.00383618
+648.72	0.00383571
+648.84	0.00383524
+648.96	0.00383477
+649.08	0.0038343
+649.2	0.00383383
+649.32	0.00383335
+649.44	0.00383288
+649.56	0.00383241
+649.68	0.00383194
+649.8	0.00383147
+649.92	0.003831
+650.04	0.00383054
+650.16	0.00383007
+650.28	0.0038296
+650.4	0.00382913
+650.52	0.00382866
+650.64	0.00382819
+650.76	0.00382772
+650.88	0.00382725
+651	0.00382678
+651.12	0.00382632
+651.24	0.00382585
+651.36	0.00382538
+651.48	0.00382491
+651.6	0.00382445
+651.72	0.00382398
+651.84	0.00382351
+651.96	0.00382304
+652.08	0.00382258
+652.2	0.00382211
+652.32	0.00382164
+652.44	0.00382118
+652.56	0.00382071
+652.68	0.00382025
+652.8	0.00381978
+652.92	0.00381931
+653.04	0.00381885
+653.16	0.00381838
+653.28	0.00381792
+653.4	0.00381745
+653.52	0.00381699
+653.64	0.00381652
+653.76	0.00381606
+653.88	0.0038156
+654	0.00381513
+654.12	0.00381467
+654.24	0.0038142
+654.36	0.00381374
+654.48	0.00381328
+654.6	0.00381281
+654.72	0.00381235
+654.84	0.00381189
+654.96	0.00381142
+655.08	0.00381096
+655.2	0.0038105
+655.32	0.00381004
+655.44	0.00380957
+655.56	0.00380911
+655.68	0.00380865
+655.8	0.00380819
+655.92	0.00380773
+656.04	0.00380726
+656.16	0.0038068
+656.28	0.00380634
+656.4	0.00380588
+656.52	0.00380542
+656.64	0.00380496
+656.76	0.0038045
+656.88	0.00380404
+657	0.00380358
+657.12	0.00380312
+657.24	0.00380266
+657.36	0.0038022
+657.48	0.00380174
+657.6	0.00380128
+657.72	0.00380082
+657.84	0.00380036
+657.96	0.0037999
+658.08	0.00379944
+658.2	0.00379899
+658.32	0.00379853
+658.44	0.00379807
+658.56	0.00379761
+658.68	0.00379715
+658.8	0.0037967
+658.92	0.00379624
+659.04	0.00379578
+659.16	0.00379532
+659.28	0.00379487
+659.4	0.00379441
+659.52	0.00379395
+659.64	0.0037935
+659.76	0.00379304
+659.88	0.00379258
+660	0.00379213
+660.12	0.00379167
+660.24	0.00379122
+660.36	0.00379076
+660.48	0.0037903
+660.6	0.00378985
+660.72	0.00378939
+660.84	0.00378894
+660.96	0.00378848
+661.08	0.00378803
+661.2	0.00378757
+661.32	0.00378712
+661.44	0.00378667
+661.56	0.00378621
+661.68	0.00378576
+661.8	0.0037853
+661.92	0.00378485
+662.04	0.0037844
+662.16	0.00378394
+662.28	0.00378349
+662.4	0.00378304
+662.52	0.00378258
+662.64	0.00378213
+662.76	0.00378168
+662.88	0.00378123
+663	0.00378077
+663.12	0.00378032
+663.24	0.00377987
+663.36	0.00377942
+663.48	0.00377897
+663.6	0.00377851
+663.72	0.00377806
+663.84	0.00377761
+663.96	0.00377716
+664.08	0.00377671
+664.2	0.00377626
+664.32	0.00377581
+664.44	0.00377536
+664.56	0.00377491
+664.68	0.00377446
+664.8	0.00377401
+664.92	0.00377356
+665.04	0.00377311
+665.16	0.00377266
+665.28	0.00377221
+665.4	0.00377176
+665.52	0.00377131
+665.64	0.00377086
+665.76	0.00377041
+665.88	0.00376997
+666	0.00376952
+666.12	0.00376907
+666.24	0.00376862
+666.36	0.00376817
+666.48	0.00376773
+666.6	0.00376728
+666.72	0.00376683
+666.84	0.00376638
+666.96	0.00376594
+667.08	0.00376549
+667.2	0.00376504
+667.32	0.0037646
+667.44	0.00376415
+667.56	0.0037637
+667.68	0.00376326
+667.8	0.00376281
+667.92	0.00376236
+668.04	0.00376192
+668.16	0.00376147
+668.28	0.00376103
+668.4	0.00376058
+668.52	0.00376014
+668.64	0.00375969
+668.76	0.00375925
+668.88	0.0037588
+669	0.00375836
+669.12	0.00375791
+669.24	0.00375747
+669.36	0.00375702
+669.48	0.00375658
+669.6	0.00375614
+669.72	0.00375569
+669.84	0.00375525
+669.96	0.00375481
+670.08	0.00375436
+670.2	0.00375392
+670.32	0.00375348
+670.44	0.00375303
+670.56	0.00375259
+670.68	0.00375215
+670.8	0.00375171
+670.92	0.00375126
+671.04	0.00375082
+671.16	0.00375038
+671.28	0.00374994
+671.4	0.0037495
+671.52	0.00374906
+671.64	0.00374861
+671.76	0.00374817
+671.88	0.00374773
+672	0.00374729
+672.12	0.00374685
+672.24	0.00374641
+672.36	0.00374597
+672.48	0.00374553
+672.6	0.00374509
+672.72	0.00374465
+672.84	0.00374421
+672.96	0.00374377
+673.08	0.00374333
+673.2	0.00374289
+673.32	0.00374245
+673.44	0.00374201
+673.56	0.00374158
+673.68	0.00374114
+673.8	0.0037407
+673.92	0.00374026
+674.04	0.00373982
+674.16	0.00373938
+674.28	0.00373895
+674.4	0.00373851
+674.52	0.00373807
+674.64	0.00373763
+674.76	0.00373719
+674.88	0.00373676
+675	0.00373632
+675.12	0.00373588
+675.24	0.00373545
+675.36	0.00373501
+675.48	0.00373457
+675.6	0.00373414
+675.72	0.0037337
+675.84	0.00373327
+675.96	0.00373283
+676.08	0.00373239
+676.2	0.00373196
+676.32	0.00373152
+676.44	0.00373109
+676.56	0.00373065
+676.68	0.00373022
+676.8	0.00372978
+676.92	0.00372935
+677.04	0.00372891
+677.16	0.00372848
+677.28	0.00372804
+677.4	0.00372761
+677.52	0.00372718
+677.64	0.00372674
+677.76	0.00372631
+677.88	0.00372587
+678	0.00372544
+678.12	0.00372501
+678.24	0.00372458
+678.36	0.00372414
+678.48	0.00372371
+678.6	0.00372328
+678.72	0.00372284
+678.84	0.00372241
+678.96	0.00372198
+679.08	0.00372155
+679.2	0.00372112
+679.32	0.00372068
+679.44	0.00372025
+679.56	0.00371982
+679.68	0.00371939
+679.8	0.00371896
+679.92	0.00371853
+680.04	0.0037181
+680.16	0.00371767
+680.28	0.00371723
+680.4	0.0037168
+680.52	0.00371637
+680.64	0.00371594
+680.76	0.00371551
+680.88	0.00371508
+681	0.00371465
+681.12	0.00371422
+681.24	0.00371379
+681.36	0.00371337
+681.48	0.00371294
+681.6	0.00371251
+681.72	0.00371208
+681.84	0.00371165
+681.96	0.00371122
+682.08	0.00371079
+682.2	0.00371036
+682.32	0.00370994
+682.44	0.00370951
+682.56	0.00370908
+682.68	0.00370865
+682.8	0.00370822
+682.92	0.0037078
+683.04	0.00370737
+683.16	0.00370694
+683.28	0.00370652
+683.4	0.00370609
+683.52	0.00370566
+683.64	0.00370524
+683.76	0.00370481
+683.88	0.00370438
+684	0.00370396
+684.12	0.00370353
+684.24	0.0037031
+684.36	0.00370268
+684.48	0.00370225
+684.6	0.00370183
+684.72	0.0037014
+684.84	0.00370098
+684.96	0.00370055
+685.08	0.00370013
+685.2	0.0036997
+685.32	0.00369928
+685.44	0.00369885
+685.56	0.00369843
+685.68	0.003698
+685.8	0.00369758
+685.92	0.00369716
+686.04	0.00369673
+686.16	0.00369631
+686.28	0.00369589
+686.4	0.00369546
+686.52	0.00369504
+686.64	0.00369462
+686.76	0.00369419
+686.88	0.00369377
+687	0.00369335
+687.12	0.00369293
+687.24	0.0036925
+687.36	0.00369208
+687.48	0.00369166
+687.6	0.00369124
+687.72	0.00369082
+687.84	0.00369039
+687.96	0.00368997
+688.08	0.00368955
+688.2	0.00368913
+688.32	0.00368871
+688.44	0.00368829
+688.56	0.00368787
+688.68	0.00368745
+688.8	0.00368703
+688.92	0.0036866
+689.04	0.00368618
+689.16	0.00368576
+689.28	0.00368534
+689.4	0.00368492
+689.52	0.0036845
+689.64	0.00368409
+689.76	0.00368367
+689.88	0.00368325
+690	0.00368283
+690.12	0.00368241
+690.24	0.00368199
+690.36	0.00368157
+690.48	0.00368115
+690.6	0.00368073
+690.72	0.00368032
+690.84	0.0036799
+690.96	0.00367948
+691.08	0.00367906
+691.2	0.00367864
+691.32	0.00367823
+691.44	0.00367781
+691.56	0.00367739
+691.68	0.00367697
+691.8	0.00367656
+691.92	0.00367614
+692.04	0.00367572
+692.16	0.00367531
+692.28	0.00367489
+692.4	0.00367447
+692.52	0.00367406
+692.64	0.00367364
+692.76	0.00367323
+692.88	0.00367281
+693	0.00367239
+693.12	0.00367198
+693.24	0.00367156
+693.36	0.00367115
+693.48	0.00367073
+693.6	0.00367032
+693.72	0.0036699
+693.84	0.00366949
+693.96	0.00366907
+694.08	0.00366866
+694.2	0.00366824
+694.32	0.00366783
+694.44	0.00366742
+694.56	0.003667
+694.68	0.00366659
+694.8	0.00366618
+694.92	0.00366576
+695.04	0.00366535
+695.16	0.00366493
+695.28	0.00366452
+695.4	0.00366411
+695.52	0.0036637
+695.64	0.00366328
+695.76	0.00366287
+695.88	0.00366246
+696	0.00366205
+696.12	0.00366163
+696.24	0.00366122
+696.36	0.00366081
+696.48	0.0036604
+696.6	0.00365999
+696.72	0.00365958
+696.84	0.00365916
+696.96	0.00365875
+697.08	0.00365834
+697.2	0.00365793
+697.32	0.00365752
+697.44	0.00365711
+697.56	0.0036567
+697.68	0.00365629
+697.8	0.00365588
+697.92	0.00365547
+698.04	0.00365506
+698.16	0.00365465
+698.28	0.00365424
+698.4	0.00365383
+698.52	0.00365342
+698.64	0.00365301
+698.76	0.0036526
+698.88	0.00365219
+699	0.00365178
+699.12	0.00365137
+699.24	0.00365097
+699.36	0.00365056
+699.48	0.00365015
+699.6	0.00364974
+699.72	0.00364933
+699.84	0.00364892
+699.96	0.00364852
+700.08	0.00364811
+700.2	0.0036477
+700.32	0.00364729
+700.44	0.00364689
+700.56	0.00364648
+700.68	0.00364607
+700.8	0.00364567
+700.92	0.00364526
+701.04	0.00364485
+701.16	0.00364445
+701.28	0.00364404
+701.4	0.00364363
+701.52	0.00364323
+701.64	0.00364282
+701.76	0.00364242
+701.88	0.00364201
+702	0.0036416
+702.12	0.0036412
+702.24	0.00364079
+702.36	0.00364039
+702.48	0.00363998
+702.6	0.00363958
+702.72	0.00363917
+702.84	0.00363877
+702.96	0.00363836
+703.08	0.00363796
+703.2	0.00363756
+703.32	0.00363715
+703.44	0.00363675
+703.56	0.00363634
+703.68	0.00363594
+703.8	0.00363554
+703.92	0.00363513
+704.04	0.00363473
+704.16	0.00363433
+704.28	0.00363392
+704.4	0.00363352
+704.52	0.00363312
+704.64	0.00363271
+704.76	0.00363231
+704.88	0.00363191
+705	0.00363151
+705.12	0.00363111
+705.24	0.0036307
+705.36	0.0036303
+705.48	0.0036299
+705.6	0.0036295
+705.72	0.0036291
+705.84	0.0036287
+705.96	0.00362829
+706.08	0.00362789
+706.2	0.00362749
+706.32	0.00362709
+706.44	0.00362669
+706.56	0.00362629
+706.68	0.00362589
+706.8	0.00362549
+706.92	0.00362509
+707.04	0.00362469
+707.16	0.00362429
+707.28	0.00362389
+707.4	0.00362349
+707.52	0.00362309
+707.64	0.00362269
+707.76	0.00362229
+707.88	0.00362189
+708	0.00362149
+708.12	0.00362109
+708.24	0.00362069
+708.36	0.0036203
+708.48	0.0036199
+708.6	0.0036195
+708.72	0.0036191
+708.84	0.0036187
+708.96	0.0036183
+709.08	0.00361791
+709.2	0.00361751
+709.32	0.00361711
+709.44	0.00361671
+709.56	0.00361632
+709.68	0.00361592
+709.8	0.00361552
+709.92	0.00361513
+710.04	0.00361473
+710.16	0.00361433
+710.28	0.00361394
+710.4	0.00361354
+710.52	0.00361314
+710.64	0.00361275
+710.76	0.00361235
+710.88	0.00361195
+711	0.00361156
+711.12	0.00361116
+711.24	0.00361077
+711.36	0.00361037
+711.48	0.00360998
+711.6	0.00360958
+711.72	0.00360919
+711.84	0.00360879
+711.96	0.0036084
+712.08	0.003608
+712.2	0.00360761
+712.32	0.00360721
+712.44	0.00360682
+712.56	0.00360642
+712.68	0.00360603
+712.8	0.00360564
+712.92	0.00360524
+713.04	0.00360485
+713.16	0.00360446
+713.28	0.00360406
+713.4	0.00360367
+713.52	0.00360328
+713.64	0.00360288
+713.76	0.00360249
+713.88	0.0036021
+714	0.0036017
+714.12	0.00360131
+714.24	0.00360092
+714.36	0.00360053
+714.48	0.00360013
+714.6	0.00359974
+714.72	0.00359935
+714.84	0.00359896
+714.96	0.00359857
+715.08	0.00359818
+715.2	0.00359778
+715.32	0.00359739
+715.44	0.003597
+715.56	0.00359661
+715.68	0.00359622
+715.8	0.00359583
+715.92	0.00359544
+716.04	0.00359505
+716.16	0.00359466
+716.28	0.00359427
+716.4	0.00359388
+716.52	0.00359349
+716.64	0.0035931
+716.76	0.00359271
+716.88	0.00359232
+717	0.00359193
+717.12	0.00359154
+717.24	0.00359115
+717.36	0.00359076
+717.48	0.00359037
+717.6	0.00358998
+717.72	0.00358959
+717.84	0.00358921
+717.96	0.00358882
+718.08	0.00358843
+718.2	0.00358804
+718.32	0.00358765
+718.44	0.00358726
+718.56	0.00358688
+718.68	0.00358649
+718.8	0.0035861
+718.92	0.00358571
+719.04	0.00358533
+719.16	0.00358494
+719.28	0.00358455
+719.4	0.00358416
+719.52	0.00358378
+719.64	0.00358339
+719.76	0.003583
+719.88	0.00358262
+720	0.00358223
+720.12	0.00358184
+720.24	0.00358146
+720.36	0.00358107
+720.48	0.00358069
+720.6	0.0035803
+720.72	0.00357991
+720.84	0.00357953
+720.96	0.00357914
+721.08	0.00357876
+721.2	0.00357837
+721.32	0.00357799
+721.44	0.0035776
+721.56	0.00357722
+721.68	0.00357683
+721.8	0.00357645
+721.92	0.00357606
+722.04	0.00357568
+722.16	0.0035753
+722.28	0.00357491
+722.4	0.00357453
+722.52	0.00357414
+722.64	0.00357376
+722.76	0.00357338
+722.88	0.00357299
+723	0.00357261
+723.12	0.00357223
+723.24	0.00357184
+723.36	0.00357146
+723.48	0.00357108
+723.6	0.0035707
+723.72	0.00357031
+723.84	0.00356993
+723.96	0.00356955
+724.08	0.00356917
+724.2	0.00356878
+724.32	0.0035684
+724.44	0.00356802
+724.56	0.00356764
+724.68	0.00356726
+724.8	0.00356687
+724.92	0.00356649
+725.04	0.00356611
+725.16	0.00356573
+725.28	0.00356535
+725.4	0.00356497
+725.52	0.00356459
+725.64	0.00356421
+725.76	0.00356383
+725.88	0.00356345
+726	0.00356307
+726.12	0.00356269
+726.24	0.00356231
+726.36	0.00356193
+726.48	0.00356155
+726.6	0.00356117
+726.72	0.00356079
+726.84	0.00356041
+726.96	0.00356003
+727.08	0.00355965
+727.2	0.00355927
+727.32	0.00355889
+727.44	0.00355851
+727.56	0.00355813
+727.68	0.00355775
+727.8	0.00355738
+727.92	0.003557
+728.04	0.00355662
+728.16	0.00355624
+728.28	0.00355586
+728.4	0.00355548
+728.52	0.00355511
+728.64	0.00355473
+728.76	0.00355435
+728.88	0.00355397
+729	0.0035536
+729.12	0.00355322
+729.24	0.00355284
+729.36	0.00355246
+729.48	0.00355209
+729.6	0.00355171
+729.72	0.00355133
+729.84	0.00355096
+729.96	0.00355058
+730.08	0.00355021
+730.2	0.00354983
+730.32	0.00354945
+730.44	0.00354908
+730.56	0.0035487
+730.68	0.00354833
+730.8	0.00354795
+730.92	0.00354757
+731.04	0.0035472
+731.16	0.00354682
+731.28	0.00354645
+731.4	0.00354607
+731.52	0.0035457
+731.64	0.00354532
+731.76	0.00354495
+731.88	0.00354458
+732	0.0035442
+732.12	0.00354383
+732.24	0.00354345
+732.36	0.00354308
+732.48	0.0035427
+732.6	0.00354233
+732.72	0.00354196
+732.84	0.00354158
+732.96	0.00354121
+733.08	0.00354084
+733.2	0.00354046
+733.32	0.00354009
+733.44	0.00353972
+733.56	0.00353934
+733.68	0.00353897
+733.8	0.0035386
+733.92	0.00353823
+734.04	0.00353785
+734.16	0.00353748
+734.28	0.00353711
+734.4	0.00353674
+734.52	0.00353637
+734.64	0.00353599
+734.76	0.00353562
+734.88	0.00353525
+735	0.00353488
+735.12	0.00353451
+735.24	0.00353414
+735.36	0.00353377
+735.48	0.00353339
+735.6	0.00353302
+735.72	0.00353265
+735.84	0.00353228
+735.96	0.00353191
+736.08	0.00353154
+736.2	0.00353117
+736.32	0.0035308
+736.44	0.00353043
+736.56	0.00353006
+736.68	0.00352969
+736.8	0.00352932
+736.92	0.00352895
+737.04	0.00352858
+737.16	0.00352821
+737.28	0.00352784
+737.4	0.00352747
+737.52	0.00352711
+737.64	0.00352674
+737.76	0.00352637
+737.88	0.003526
+738	0.00352563
+738.12	0.00352526
+738.24	0.00352489
+738.36	0.00352453
+738.48	0.00352416
+738.6	0.00352379
+738.72	0.00352342
+738.84	0.00352305
+738.96	0.00352269
+739.08	0.00352232
+739.2	0.00352195
+739.32	0.00352158
+739.44	0.00352122
+739.56	0.00352085
+739.68	0.00352048
+739.8	0.00352012
+739.92	0.00351975
+740.04	0.00351938
+740.16	0.00351902
+740.28	0.00351865
+740.4	0.00351828
+740.52	0.00351792
+740.64	0.00351755
+740.76	0.00351718
+740.88	0.00351682
+741	0.00351645
+741.12	0.00351609
+741.24	0.00351572
+741.36	0.00351536
+741.48	0.00351499
+741.6	0.00351463
+741.72	0.00351426
+741.84	0.0035139
+741.96	0.00351353
+742.08	0.00351317
+742.2	0.0035128
+742.32	0.00351244
+742.44	0.00351207
+742.56	0.00351171
+742.68	0.00351134
+742.8	0.00351098
+742.92	0.00351062
+743.04	0.00351025
+743.16	0.00350989
+743.28	0.00350953
+743.4	0.00350916
+743.52	0.0035088
+743.64	0.00350844
+743.76	0.00350807
+743.88	0.00350771
+744	0.00350735
+744.12	0.00350698
+744.24	0.00350662
+744.36	0.00350626
+744.48	0.0035059
+744.6	0.00350553
+744.72	0.00350517
+744.84	0.00350481
+744.96	0.00350445
+745.08	0.00350408
+745.2	0.00350372
+745.32	0.00350336
+745.44	0.003503
+745.56	0.00350264
+745.68	0.00350228
+745.8	0.00350192
+745.92	0.00350155
+746.04	0.00350119
+746.16	0.00350083
+746.28	0.00350047
+746.4	0.00350011
+746.52	0.00349975
+746.64	0.00349939
+746.76	0.00349903
+746.88	0.00349867
+747	0.00349831
+747.12	0.00349795
+747.24	0.00349759
+747.36	0.00349723
+747.48	0.00349687
+747.6	0.00349651
+747.72	0.00349615
+747.84	0.00349579
+747.96	0.00349543
+748.08	0.00349507
+748.2	0.00349471
+748.32	0.00349436
+748.44	0.003494
+748.56	0.00349364
+748.68	0.00349328
+748.8	0.00349292
+748.92	0.00349256
+749.04	0.0034922
+749.16	0.00349185
+749.28	0.00349149
+749.4	0.00349113
+749.52	0.00349077
+749.64	0.00349041
+749.76	0.00349006
+749.88	0.0034897
+750	0.00348934
+750.12	0.00348899
+750.24	0.00348863
+750.36	0.00348827
+750.48	0.00348791
+750.6	0.00348756
+750.72	0.0034872
+750.84	0.00348684
+750.96	0.00348649
+751.08	0.00348613
+751.2	0.00348577
+751.32	0.00348542
+751.44	0.00348506
+751.56	0.00348471
+751.68	0.00348435
+751.8	0.00348399
+751.92	0.00348364
+752.04	0.00348328
+752.16	0.00348293
+752.28	0.00348257
+752.4	0.00348222
+752.52	0.00348186
+752.64	0.00348151
+752.76	0.00348115
+752.88	0.0034808
+753	0.00348044
+753.12	0.00348009
+753.24	0.00347973
+753.36	0.00347938
+753.48	0.00347903
+753.6	0.00347867
+753.72	0.00347832
+753.84	0.00347796
+753.96	0.00347761
+754.08	0.00347726
+754.2	0.0034769
+754.32	0.00347655
+754.44	0.0034762
+754.56	0.00347584
+754.68	0.00347549
+754.8	0.00347514
+754.92	0.00347478
+755.04	0.00347443
+755.16	0.00347408
+755.28	0.00347373
+755.4	0.00347337
+755.52	0.00347302
+755.64	0.00347267
+755.76	0.00347232
+755.88	0.00347196
+756	0.00347161
+756.12	0.00347126
+756.24	0.00347091
+756.36	0.00347056
+756.48	0.00347021
+756.6	0.00346985
+756.72	0.0034695
+756.84	0.00346915
+756.96	0.0034688
+757.08	0.00346845
+757.2	0.0034681
+757.32	0.00346775
+757.44	0.0034674
+757.56	0.00346705
+757.68	0.0034667
+757.8	0.00346635
+757.92	0.003466
+758.04	0.00346565
+758.16	0.0034653
+758.28	0.00346495
+758.4	0.0034646
+758.52	0.00346425
+758.64	0.0034639
+758.76	0.00346355
+758.88	0.0034632
+759	0.00346285
+759.12	0.0034625
+759.24	0.00346215
+759.36	0.0034618
+759.48	0.00346145
+759.6	0.0034611
+759.72	0.00346075
+759.84	0.00346041
+759.96	0.00346006
+760.08	0.00345971
+760.2	0.00345936
+760.32	0.00345901
+760.44	0.00345866
+760.56	0.00345832
+760.68	0.00345797
+760.8	0.00345762
+760.92	0.00345727
+761.04	0.00345693
+761.16	0.00345658
+761.28	0.00345623
+761.4	0.00345588
+761.52	0.00345554
+761.64	0.00345519
+761.76	0.00345484
+761.88	0.0034545
+762	0.00345415
+762.12	0.0034538
+762.24	0.00345346
+762.36	0.00345311
+762.48	0.00345276
+762.6	0.00345242
+762.72	0.00345207
+762.84	0.00345173
+762.96	0.00345138
+763.08	0.00345103
+763.2	0.00345069
+763.32	0.00345034
+763.44	0.00345
+763.56	0.00344965
+763.68	0.00344931
+763.8	0.00344896
+763.92	0.00344862
+764.04	0.00344827
+764.16	0.00344793
+764.28	0.00344758
+764.4	0.00344724
+764.52	0.00344689
+764.64	0.00344655
+764.76	0.00344621
+764.88	0.00344586
+765	0.00344552
+765.12	0.00344517
+765.24	0.00344483
+765.36	0.00344449
+765.48	0.00344414
+765.6	0.0034438
+765.72	0.00344346
+765.84	0.00344311
+765.96	0.00344277
+766.08	0.00344243
+766.2	0.00344208
+766.32	0.00344174
+766.44	0.0034414
+766.56	0.00344105
+766.68	0.00344071
+766.8	0.00344037
+766.92	0.00344003
+767.04	0.00343968
+767.16	0.00343934
+767.28	0.003439
+767.4	0.00343866
+767.52	0.00343832
+767.64	0.00343797
+767.76	0.00343763
+767.88	0.00343729
+768	0.00343695
+768.12	0.00343661
+768.24	0.00343627
+768.36	0.00343593
+768.48	0.00343558
+768.6	0.00343524
+768.72	0.0034349
+768.84	0.00343456
+768.96	0.00343422
+769.08	0.00343388
+769.2	0.00343354
+769.32	0.0034332
+769.44	0.00343286
+769.56	0.00343252
+769.68	0.00343218
+769.8	0.00343184
+769.92	0.0034315
+770.04	0.00343116
+770.16	0.00343082
+770.28	0.00343048
+770.4	0.00343014
+770.52	0.0034298
+770.64	0.00342946
+770.76	0.00342912
+770.88	0.00342878
+771	0.00342845
+771.12	0.00342811
+771.24	0.00342777
+771.36	0.00342743
+771.48	0.00342709
+771.6	0.00342675
+771.72	0.00342641
+771.84	0.00342608
+771.96	0.00342574
+772.08	0.0034254
+772.2	0.00342506
+772.32	0.00342472
+772.44	0.00342439
+772.56	0.00342405
+772.68	0.00342371
+772.8	0.00342337
+772.92	0.00342304
+773.04	0.0034227
+773.16	0.00342236
+773.28	0.00342203
+773.4	0.00342169
+773.52	0.00342135
+773.64	0.00342101
+773.76	0.00342068
+773.88	0.00342034
+774	0.00342001
+774.12	0.00341967
+774.24	0.00341933
+774.36	0.003419
+774.48	0.00341866
+774.6	0.00341832
+774.72	0.00341799
+774.84	0.00341765
+774.96	0.00341732
+775.08	0.00341698
+775.2	0.00341665
+775.32	0.00341631
+775.44	0.00341598
+775.56	0.00341564
+775.68	0.00341531
+775.8	0.00341497
+775.92	0.00341464
+776.04	0.0034143
+776.16	0.00341397
+776.28	0.00341363
+776.4	0.0034133
+776.52	0.00341296
+776.64	0.00341263
+776.76	0.00341229
+776.88	0.00341196
+777	0.00341163
+777.12	0.00341129
+777.24	0.00341096
+777.36	0.00341063
+777.48	0.00341029
+777.6	0.00340996
+777.72	0.00340963
+777.84	0.00340929
+777.96	0.00340896
+778.08	0.00340863
+778.2	0.00340829
+778.32	0.00340796
+778.44	0.00340763
+778.56	0.00340729
+778.68	0.00340696
+778.8	0.00340663
+778.92	0.0034063
+779.04	0.00340597
+779.16	0.00340563
+779.28	0.0034053
+779.4	0.00340497
+779.52	0.00340464
+779.64	0.00340431
+779.76	0.00340397
+779.88	0.00340364
+780	0.00340331
+780.12	0.00340298
+780.24	0.00340265
+780.36	0.00340232
+780.48	0.00340199
+780.6	0.00340165
+780.72	0.00340132
+780.84	0.00340099
+780.96	0.00340066
+781.08	0.00340033
+781.2	0.0034
+781.32	0.00339967
+781.44	0.00339934
+781.56	0.00339901
+781.68	0.00339868
+781.8	0.00339835
+781.92	0.00339802
+782.04	0.00339769
+782.16	0.00339736
+782.28	0.00339703
+782.4	0.0033967
+782.52	0.00339637
+782.64	0.00339604
+782.76	0.00339571
+782.88	0.00339538
+783	0.00339506
+783.12	0.00339473
+783.24	0.0033944
+783.36	0.00339407
+783.48	0.00339374
+783.6	0.00339341
+783.72	0.00339308
+783.84	0.00339276
+783.96	0.00339243
+784.08	0.0033921
+784.2	0.00339177
+784.32	0.00339144
+784.44	0.00339112
+784.56	0.00339079
+784.68	0.00339046
+784.8	0.00339013
+784.92	0.0033898
+785.04	0.00338948
+785.16	0.00338915
+785.28	0.00338882
+785.4	0.0033885
+785.52	0.00338817
+785.64	0.00338784
+785.76	0.00338751
+785.88	0.00338719
+786	0.00338686
+786.12	0.00338653
+786.24	0.00338621
+786.36	0.00338588
+786.48	0.00338556
+786.6	0.00338523
+786.72	0.0033849
+786.84	0.00338458
+786.96	0.00338425
+787.08	0.00338393
+787.2	0.0033836
+787.32	0.00338327
+787.44	0.00338295
+787.56	0.00338262
+787.68	0.0033823
+787.8	0.00338197
+787.92	0.00338165
+788.04	0.00338132
+788.16	0.003381
+788.28	0.00338067
+788.4	0.00338035
+788.52	0.00338002
+788.64	0.0033797
+788.76	0.00337938
+788.88	0.00337905
+789	0.00337873
+789.12	0.0033784
+789.24	0.00337808
+789.36	0.00337775
+789.48	0.00337743
+789.6	0.00337711
+789.72	0.00337678
+789.84	0.00337646
+789.96	0.00337614
+790.08	0.00337581
+790.2	0.00337549
+790.32	0.00337517
+790.44	0.00337484
+790.56	0.00337452
+790.68	0.0033742
+790.8	0.00337387
+790.92	0.00337355
+791.04	0.00337323
+791.16	0.00337291
+791.28	0.00337258
+791.4	0.00337226
+791.52	0.00337194
+791.64	0.00337162
+791.76	0.0033713
+791.88	0.00337097
+792	0.00337065
+792.12	0.00337033
+792.24	0.00337001
+792.36	0.00336969
+792.48	0.00336937
+792.6	0.00336904
+792.72	0.00336872
+792.84	0.0033684
+792.96	0.00336808
+793.08	0.00336776
+793.2	0.00336744
+793.32	0.00336712
+793.44	0.0033668
+793.56	0.00336648
+793.68	0.00336616
+793.8	0.00336583
+793.92	0.00336551
+794.04	0.00336519
+794.16	0.00336487
+794.28	0.00336455
+794.4	0.00336423
+794.52	0.00336391
+794.64	0.00336359
+794.76	0.00336327
+794.88	0.00336295
+795	0.00336263
+795.12	0.00336232
+795.24	0.003362
+795.36	0.00336168
+795.48	0.00336136
+795.6	0.00336104
+795.72	0.00336072
+795.84	0.0033604
+795.96	0.00336008
+796.08	0.00335976
+796.2	0.00335944
+796.32	0.00335913
+796.44	0.00335881
+796.56	0.00335849
+796.68	0.00335817
+796.8	0.00335785
+796.92	0.00335753
+797.04	0.00335722
+797.16	0.0033569
+797.28	0.00335658
+797.4	0.00335626
+797.52	0.00335595
+797.64	0.00335563
+797.76	0.00335531
+797.88	0.00335499
+798	0.00335468
+798.12	0.00335436
+798.24	0.00335404
+798.36	0.00335372
+798.48	0.00335341
+798.6	0.00335309
+798.72	0.00335277
+798.84	0.00335246
+798.96	0.00335214
+799.08	0.00335183
+799.2	0.00335151
+799.32	0.00335119
+799.44	0.00335088
+799.56	0.00335056
+799.68	0.00335024
+799.8	0.00334993
+799.92	0.00334961
+800.04	0.0033493
+800.16	0.00334898
+800.28	0.00334867
+800.4	0.00334835
+800.52	0.00334804
+800.64	0.00334772
+800.76	0.0033474
+800.88	0.00334709
+801	0.00334677
+801.12	0.00334646
+801.24	0.00334615
+801.36	0.00334583
+801.48	0.00334552
+801.6	0.0033452
+801.72	0.00334489
+801.84	0.00334457
+801.96	0.00334426
+802.08	0.00334394
+802.2	0.00334363
+802.32	0.00334332
+802.44	0.003343
+802.56	0.00334269
+802.68	0.00334237
+802.8	0.00334206
+802.92	0.00334175
+803.04	0.00334143
+803.16	0.00334112
+803.28	0.00334081
+803.4	0.00334049
+803.52	0.00334018
+803.64	0.00333987
+803.76	0.00333956
+803.88	0.00333924
+804	0.00333893
+804.12	0.00333862
+804.24	0.0033383
+804.36	0.00333799
+804.48	0.00333768
+804.6	0.00333737
+804.72	0.00333706
+804.84	0.00333674
+804.96	0.00333643
+805.08	0.00333612
+805.2	0.00333581
+805.32	0.0033355
+805.44	0.00333518
+805.56	0.00333487
+805.68	0.00333456
+805.8	0.00333425
+805.92	0.00333394
+806.04	0.00333363
+806.16	0.00333332
+806.28	0.00333301
+806.4	0.00333269
+806.52	0.00333238
+806.64	0.00333207
+806.76	0.00333176
+806.88	0.00333145
+807	0.00333114
+807.12	0.00333083
+807.24	0.00333052
+807.36	0.00333021
+807.48	0.0033299
+807.6	0.00332959
+807.72	0.00332928
+807.84	0.00332897
+807.96	0.00332866
+808.08	0.00332835
+808.2	0.00332804
+808.32	0.00332773
+808.44	0.00332742
+808.56	0.00332711
+808.68	0.0033268
+808.8	0.0033265
+808.92	0.00332619
+809.04	0.00332588
+809.16	0.00332557
+809.28	0.00332526
+809.4	0.00332495
+809.52	0.00332464
+809.64	0.00332433
+809.76	0.00332403
+809.88	0.00332372
+810	0.00332341
+810.12	0.0033231
+810.24	0.00332279
+810.36	0.00332248
+810.48	0.00332218
+810.6	0.00332187
+810.72	0.00332156
+810.84	0.00332125
+810.96	0.00332095
+811.08	0.00332064
+811.2	0.00332033
+811.32	0.00332002
+811.44	0.00331972
+811.56	0.00331941
+811.68	0.0033191
+811.8	0.0033188
+811.92	0.00331849
+812.04	0.00331818
+812.16	0.00331787
+812.28	0.00331757
+812.4	0.00331726
+812.52	0.00331696
+812.64	0.00331665
+812.76	0.00331634
+812.88	0.00331604
+813	0.00331573
+813.12	0.00331542
+813.24	0.00331512
+813.36	0.00331481
+813.48	0.00331451
+813.6	0.0033142
+813.72	0.0033139
+813.84	0.00331359
+813.96	0.00331328
+814.08	0.00331298
+814.2	0.00331267
+814.32	0.00331237
+814.44	0.00331206
+814.56	0.00331176
+814.68	0.00331145
+814.8	0.00331115
+814.92	0.00331085
+815.04	0.00331054
+815.16	0.00331024
+815.28	0.00330993
+815.4	0.00330963
+815.52	0.00330932
+815.64	0.00330902
+815.76	0.00330871
+815.88	0.00330841
+816	0.00330811
+816.12	0.0033078
+816.24	0.0033075
+816.36	0.0033072
+816.48	0.00330689
+816.6	0.00330659
+816.72	0.00330629
+816.84	0.00330598
+816.96	0.00330568
+817.08	0.00330538
+817.2	0.00330507
+817.32	0.00330477
+817.44	0.00330447
+817.56	0.00330416
+817.68	0.00330386
+817.8	0.00330356
+817.92	0.00330326
+818.04	0.00330295
+818.16	0.00330265
+818.28	0.00330235
+818.4	0.00330205
+818.52	0.00330174
+818.64	0.00330144
+818.76	0.00330114
+818.88	0.00330084
+819	0.00330054
+819.12	0.00330024
+819.24	0.00329993
+819.36	0.00329963
+819.48	0.00329933
+819.6	0.00329903
+819.72	0.00329873
+819.84	0.00329843
+819.96	0.00329813
+820.08	0.00329782
+820.2	0.00329752
+820.32	0.00329722
+820.44	0.00329692
+820.56	0.00329662
+820.68	0.00329632
+820.8	0.00329602
+820.92	0.00329572
+821.04	0.00329542
+821.16	0.00329512
+821.28	0.00329482
+821.4	0.00329452
+821.52	0.00329422
+821.64	0.00329392
+821.76	0.00329362
+821.88	0.00329332
+822	0.00329302
+822.12	0.00329272
+822.24	0.00329242
+822.36	0.00329212
+822.48	0.00329182
+822.6	0.00329152
+822.72	0.00329122
+822.84	0.00329092
+822.96	0.00329063
+823.08	0.00329033
+823.2	0.00329003
+823.32	0.00328973
+823.44	0.00328943
+823.56	0.00328913
+823.68	0.00328883
+823.8	0.00328854
+823.92	0.00328824
+824.04	0.00328794
+824.16	0.00328764
+824.28	0.00328734
+824.4	0.00328704
+824.52	0.00328675
+824.64	0.00328645
+824.76	0.00328615
+824.88	0.00328585
+825	0.00328556
+825.12	0.00328526
+825.24	0.00328496
+825.36	0.00328466
+825.48	0.00328437
+825.6	0.00328407
+825.72	0.00328377
+825.84	0.00328348
+825.96	0.00328318
+826.08	0.00328288
+826.2	0.00328259
+826.32	0.00328229
+826.44	0.00328199
+826.56	0.0032817
+826.68	0.0032814
+826.8	0.0032811
+826.92	0.00328081
+827.04	0.00328051
+827.16	0.00328021
+827.28	0.00327992
+827.4	0.00327962
+827.52	0.00327933
+827.64	0.00327903
+827.76	0.00327874
+827.88	0.00327844
+828	0.00327814
+828.12	0.00327785
+828.24	0.00327755
+828.36	0.00327726
+828.48	0.00327696
+828.6	0.00327667
+828.72	0.00327637
+828.84	0.00327608
+828.96	0.00327578
+829.08	0.00327549
+829.2	0.00327519
+829.32	0.0032749
+829.44	0.0032746
+829.56	0.00327431
+829.68	0.00327402
+829.8	0.00327372
+829.92	0.00327343
+830.04	0.00327313
+830.16	0.00327284
+830.28	0.00327255
+830.4	0.00327225
+830.52	0.00327196
+830.64	0.00327166
+830.76	0.00327137
+830.88	0.00327108
+831	0.00327078
+831.12	0.00327049
+831.24	0.0032702
+831.36	0.0032699
+831.48	0.00326961
+831.6	0.00326932
+831.72	0.00326903
+831.84	0.00326873
+831.96	0.00326844
+832.08	0.00326815
+832.2	0.00326785
+832.32	0.00326756
+832.44	0.00326727
+832.56	0.00326698
+832.68	0.00326668
+832.8	0.00326639
+832.92	0.0032661
+833.04	0.00326581
+833.16	0.00326552
+833.28	0.00326522
+833.4	0.00326493
+833.52	0.00326464
+833.64	0.00326435
+833.76	0.00326406
+833.88	0.00326377
+834	0.00326347
+834.12	0.00326318
+834.24	0.00326289
+834.36	0.0032626
+834.48	0.00326231
+834.6	0.00326202
+834.72	0.00326173
+834.84	0.00326144
+834.96	0.00326115
+835.08	0.00326086
+835.2	0.00326057
+835.32	0.00326027
+835.44	0.00325998
+835.56	0.00325969
+835.68	0.0032594
+835.8	0.00325911
+835.92	0.00325882
+836.04	0.00325853
+836.16	0.00325824
+836.28	0.00325795
+836.4	0.00325766
+836.52	0.00325737
+836.64	0.00325708
+836.76	0.00325679
+836.88	0.00325651
+837	0.00325622
+837.12	0.00325593
+837.24	0.00325564
+837.36	0.00325535
+837.48	0.00325506
+837.6	0.00325477
+837.72	0.00325448
+837.84	0.00325419
+837.96	0.0032539
+838.08	0.00325362
+838.2	0.00325333
+838.32	0.00325304
+838.44	0.00325275
+838.56	0.00325246
+838.68	0.00325217
+838.8	0.00325188
+838.92	0.0032516
+839.04	0.00325131
+839.16	0.00325102
+839.28	0.00325073
+839.4	0.00325045
+839.52	0.00325016
+839.64	0.00324987
+839.76	0.00324958
+839.88	0.00324929
+840	0.00324901
+840.12	0.00324872
+840.24	0.00324843
+840.36	0.00324815
+840.48	0.00324786
+840.6	0.00324757
+840.72	0.00324728
+840.84	0.003247
+840.96	0.00324671
+841.08	0.00324642
+841.2	0.00324614
+841.32	0.00324585
+841.44	0.00324556
+841.56	0.00324528
+841.68	0.00324499
+841.8	0.00324471
+841.92	0.00324442
+842.04	0.00324413
+842.16	0.00324385
+842.28	0.00324356
+842.4	0.00324328
+842.52	0.00324299
+842.64	0.0032427
+842.76	0.00324242
+842.88	0.00324213
+843	0.00324185
+843.12	0.00324156
+843.24	0.00324128
+843.36	0.00324099
+843.48	0.00324071
+843.6	0.00324042
+843.72	0.00324014
+843.84	0.00323985
+843.96	0.00323957
+844.08	0.00323928
+844.2	0.003239
+844.32	0.00323871
+844.44	0.00323843
+844.56	0.00323815
+844.68	0.00323786
+844.8	0.00323758
+844.92	0.00323729
+845.04	0.00323701
+845.16	0.00323672
+845.28	0.00323644
+845.4	0.00323616
+845.52	0.00323587
+845.64	0.00323559
+845.76	0.00323531
+845.88	0.00323502
+846	0.00323474
+846.12	0.00323445
+846.24	0.00323417
+846.36	0.00323389
+846.48	0.00323361
+846.6	0.00323332
+846.72	0.00323304
+846.84	0.00323276
+846.96	0.00323247
+847.08	0.00323219
+847.2	0.00323191
+847.32	0.00323163
+847.44	0.00323134
+847.56	0.00323106
+847.68	0.00323078
+847.8	0.0032305
+847.92	0.00323021
+848.04	0.00322993
+848.16	0.00322965
+848.28	0.00322937
+848.4	0.00322909
+848.52	0.0032288
+848.64	0.00322852
+848.76	0.00322824
+848.88	0.00322796
+849	0.00322768
+849.12	0.0032274
+849.24	0.00322711
+849.36	0.00322683
+849.48	0.00322655
+849.6	0.00322627
+849.72	0.00322599
+849.84	0.00322571
+849.96	0.00322543
+850.08	0.00322515
+850.2	0.00322487
+850.32	0.00322458
+850.44	0.0032243
+850.56	0.00322402
+850.68	0.00322374
+850.8	0.00322346
+850.92	0.00322318
+851.04	0.0032229
+851.16	0.00322262
+851.28	0.00322234
+851.4	0.00322206
+851.52	0.00322178
+851.64	0.0032215
+851.76	0.00322122
+851.88	0.00322094
+852	0.00322066
+852.12	0.00322038
+852.24	0.0032201
+852.36	0.00321982
+852.48	0.00321955
+852.6	0.00321927
+852.72	0.00321899
+852.84	0.00321871
+852.96	0.00321843
+853.08	0.00321815
+853.2	0.00321787
+853.32	0.00321759
+853.44	0.00321731
+853.56	0.00321703
+853.68	0.00321676
+853.8	0.00321648
+853.92	0.0032162
+854.04	0.00321592
+854.16	0.00321564
+854.28	0.00321536
+854.4	0.00321509
+854.52	0.00321481
+854.64	0.00321453
+854.76	0.00321425
+854.88	0.00321397
+855	0.0032137
+855.12	0.00321342
+855.24	0.00321314
+855.36	0.00321286
+855.48	0.00321259
+855.6	0.00321231
+855.72	0.00321203
+855.84	0.00321175
+855.96	0.00321148
+856.08	0.0032112
+856.2	0.00321092
+856.32	0.00321065
+856.44	0.00321037
+856.56	0.00321009
+856.68	0.00320982
+856.8	0.00320954
+856.92	0.00320926
+857.04	0.00320899
+857.16	0.00320871
+857.28	0.00320843
+857.4	0.00320816
+857.52	0.00320788
+857.64	0.00320761
+857.76	0.00320733
+857.88	0.00320705
+858	0.00320678
+858.12	0.0032065
+858.24	0.00320623
+858.36	0.00320595
+858.48	0.00320568
+858.6	0.0032054
+858.72	0.00320512
+858.84	0.00320485
+858.96	0.00320457
+859.08	0.0032043
+859.2	0.00320402
+859.32	0.00320375
+859.44	0.00320347
+859.56	0.0032032
+859.68	0.00320292
+859.8	0.00320265
+859.92	0.00320237
+860.04	0.0032021
+860.16	0.00320183
+860.28	0.00320155
+860.4	0.00320128
+860.52	0.003201
+860.64	0.00320073
+860.76	0.00320045
+860.88	0.00320018
+861	0.00319991
+861.12	0.00319963
+861.24	0.00319936
+861.36	0.00319908
+861.48	0.00319881
+861.6	0.00319854
+861.72	0.00319826
+861.84	0.00319799
+861.96	0.00319772
+862.08	0.00319744
+862.2	0.00319717
+862.32	0.0031969
+862.44	0.00319662
+862.56	0.00319635
+862.68	0.00319608
+862.8	0.0031958
+862.92	0.00319553
+863.04	0.00319526
+863.16	0.00319499
+863.28	0.00319471
+863.4	0.00319444
+863.52	0.00319417
+863.64	0.0031939
+863.76	0.00319362
+863.88	0.00319335
+864	0.00319308
+864.12	0.00319281
+864.24	0.00319254
+864.36	0.00319226
+864.48	0.00319199
+864.6	0.00319172
+864.72	0.00319145
+864.84	0.00319118
+864.96	0.0031909
+865.08	0.00319063
+865.2	0.00319036
+865.32	0.00319009
+865.44	0.00318982
+865.56	0.00318955
+865.68	0.00318928
+865.8	0.00318901
+865.92	0.00318873
+866.04	0.00318846
+866.16	0.00318819
+866.28	0.00318792
+866.4	0.00318765
+866.52	0.00318738
+866.64	0.00318711
+866.76	0.00318684
+866.88	0.00318657
+867	0.0031863
+867.12	0.00318603
+867.24	0.00318576
+867.36	0.00318549
+867.48	0.00318522
+867.6	0.00318495
+867.72	0.00318468
+867.84	0.00318441
+867.96	0.00318414
+868.08	0.00318387
+868.2	0.0031836
+868.32	0.00318333
+868.44	0.00318306
+868.56	0.00318279
+868.68	0.00318252
+868.8	0.00318225
+868.92	0.00318198
+869.04	0.00318171
+869.16	0.00318144
+869.28	0.00318118
+869.4	0.00318091
+869.52	0.00318064
+869.64	0.00318037
+869.76	0.0031801
+869.88	0.00317983
+870	0.00317956
+870.12	0.00317929
+870.24	0.00317903
+870.36	0.00317876
+870.48	0.00317849
+870.6	0.00317822
+870.72	0.00317795
+870.84	0.00317769
+870.96	0.00317742
+871.08	0.00317715
+871.2	0.00317688
+871.32	0.00317661
+871.44	0.00317635
+871.56	0.00317608
+871.68	0.00317581
+871.8	0.00317554
+871.92	0.00317528
+872.04	0.00317501
+872.16	0.00317474
+872.28	0.00317447
+872.4	0.00317421
+872.52	0.00317394
+872.64	0.00317367
+872.76	0.00317341
+872.88	0.00317314
+873	0.00317287
+873.12	0.00317261
+873.24	0.00317234
+873.36	0.00317207
+873.48	0.00317181
+873.6	0.00317154
+873.72	0.00317127
+873.84	0.00317101
+873.96	0.00317074
+874.08	0.00317048
+874.2	0.00317021
+874.32	0.00316994
+874.44	0.00316968
+874.56	0.00316941
+874.68	0.00316915
+874.8	0.00316888
+874.92	0.00316861
+875.04	0.00316835
+875.16	0.00316808
+875.28	0.00316782
+875.4	0.00316755
+875.52	0.00316729
+875.64	0.00316702
+875.76	0.00316676
+875.88	0.00316649
+876	0.00316623
+876.12	0.00316596
+876.24	0.0031657
+876.36	0.00316543
+876.48	0.00316517
+876.6	0.0031649
+876.72	0.00316464
+876.84	0.00316437
+876.96	0.00316411
+877.08	0.00316384
+877.2	0.00316358
+877.32	0.00316332
+877.44	0.00316305
+877.56	0.00316279
+877.68	0.00316252
+877.8	0.00316226
+877.92	0.003162
+878.04	0.00316173
+878.16	0.00316147
+878.28	0.0031612
+878.4	0.00316094
+878.52	0.00316068
+878.64	0.00316041
+878.76	0.00316015
+878.88	0.00315989
+879	0.00315962
+879.12	0.00315936
+879.24	0.0031591
+879.36	0.00315883
+879.48	0.00315857
+879.6	0.00315831
+879.72	0.00315805
+879.84	0.00315778
+879.96	0.00315752
+880.08	0.00315726
+880.2	0.003157
+880.32	0.00315673
+880.44	0.00315647
+880.56	0.00315621
+880.68	0.00315595
+880.8	0.00315568
+880.92	0.00315542
+881.04	0.00315516
+881.16	0.0031549
+881.28	0.00315464
+881.4	0.00315437
+881.52	0.00315411
+881.64	0.00315385
+881.76	0.00315359
+881.88	0.00315333
+882	0.00315307
+882.12	0.0031528
+882.24	0.00315254
+882.36	0.00315228
+882.48	0.00315202
+882.6	0.00315176
+882.72	0.0031515
+882.84	0.00315124
+882.96	0.00315098
+883.08	0.00315071
+883.2	0.00315045
+883.32	0.00315019
+883.44	0.00314993
+883.56	0.00314967
+883.68	0.00314941
+883.8	0.00314915
+883.92	0.00314889
+884.04	0.00314863
+884.16	0.00314837
+884.28	0.00314811
+884.4	0.00314785
+884.52	0.00314759
+884.64	0.00314733
+884.76	0.00314707
+884.88	0.00314681
+885	0.00314655
+885.12	0.00314629
+885.24	0.00314603
+885.36	0.00314577
+885.48	0.00314551
+885.6	0.00314525
+885.72	0.00314499
+885.84	0.00314473
+885.96	0.00314447
+886.08	0.00314421
+886.2	0.00314396
+886.32	0.0031437
+886.44	0.00314344
+886.56	0.00314318
+886.68	0.00314292
+886.8	0.00314266
+886.92	0.0031424
+887.04	0.00314214
+887.16	0.00314188
+887.28	0.00314163
+887.4	0.00314137
+887.52	0.00314111
+887.64	0.00314085
+887.76	0.00314059
+887.88	0.00314034
+888	0.00314008
+888.12	0.00313982
+888.24	0.00313956
+888.36	0.0031393
+888.48	0.00313905
+888.6	0.00313879
+888.72	0.00313853
+888.84	0.00313827
+888.96	0.00313802
+889.08	0.00313776
+889.2	0.0031375
+889.32	0.00313724
+889.44	0.00313699
+889.56	0.00313673
+889.68	0.00313647
+889.8	0.00313621
+889.92	0.00313596
+890.04	0.0031357
+890.16	0.00313544
+890.28	0.00313519
+890.4	0.00313493
+890.52	0.00313467
+890.64	0.00313442
+890.76	0.00313416
+890.88	0.0031339
+891	0.00313365
+891.12	0.00313339
+891.24	0.00313314
+891.36	0.00313288
+891.48	0.00313262
+891.6	0.00313237
+891.72	0.00313211
+891.84	0.00313186
+891.96	0.0031316
+892.08	0.00313134
+892.2	0.00313109
+892.32	0.00313083
+892.44	0.00313058
+892.56	0.00313032
+892.68	0.00313007
+892.8	0.00312981
+892.92	0.00312956
+893.04	0.0031293
+893.16	0.00312905
+893.28	0.00312879
+893.4	0.00312854
+893.52	0.00312828
+893.64	0.00312803
+893.76	0.00312777
+893.88	0.00312752
+894	0.00312726
+894.12	0.00312701
+894.24	0.00312675
+894.36	0.0031265
+894.48	0.00312624
+894.6	0.00312599
+894.72	0.00312573
+894.84	0.00312548
+894.96	0.00312523
+895.08	0.00312497
+895.2	0.00312472
+895.32	0.00312446
+895.44	0.00312421
+895.56	0.00312396
+895.68	0.0031237
+895.8	0.00312345
+895.92	0.0031232
+896.04	0.00312294
+896.16	0.00312269
+896.28	0.00312244
+896.4	0.00312218
+896.52	0.00312193
+896.64	0.00312168
+896.76	0.00312142
+896.88	0.00312117
+897	0.00312092
+897.12	0.00312066
+897.24	0.00312041
+897.36	0.00312016
+897.48	0.0031199
+897.6	0.00311965
+897.72	0.0031194
+897.84	0.00311915
+897.96	0.00311889
+898.08	0.00311864
+898.2	0.00311839
+898.32	0.00311814
+898.44	0.00311788
+898.56	0.00311763
+898.68	0.00311738
+898.8	0.00311713
+898.92	0.00311688
+899.04	0.00311662
+899.16	0.00311637
+899.28	0.00311612
+899.4	0.00311587
+899.52	0.00311562
+899.64	0.00311537
+899.76	0.00311511
+899.88	0.00311486
+900	0.00311461
+900.12	0.00311436
+900.24	0.00311411
+900.36	0.00311386
+900.48	0.00311361
+900.6	0.00311336
+900.72	0.0031131
+900.84	0.00311285
+900.96	0.0031126
+901.08	0.00311235
+901.2	0.0031121
+901.32	0.00311185
+901.44	0.0031116
+901.56	0.00311135
+901.68	0.0031111
+901.8	0.00311085
+901.92	0.0031106
+902.04	0.00311035
+902.16	0.0031101
+902.28	0.00310985
+902.4	0.0031096
+902.52	0.00310935
+902.64	0.0031091
+902.76	0.00310885
+902.88	0.0031086
+903	0.00310835
+903.12	0.0031081
+903.24	0.00310785
+903.36	0.0031076
+903.48	0.00310735
+903.6	0.0031071
+903.72	0.00310685
+903.84	0.0031066
+903.96	0.00310635
+904.08	0.0031061
+904.2	0.00310585
+904.32	0.0031056
+904.44	0.00310536
+904.56	0.00310511
+904.68	0.00310486
+904.8	0.00310461
+904.92	0.00310436
+905.04	0.00310411
+905.16	0.00310386
+905.28	0.00310361
+905.4	0.00310337
+905.52	0.00310312
+905.64	0.00310287
+905.76	0.00310262
+905.88	0.00310237
+906	0.00310212
+906.12	0.00310188
+906.24	0.00310163
+906.36	0.00310138
+906.48	0.00310113
+906.6	0.00310088
+906.72	0.00310064
+906.84	0.00310039
+906.96	0.00310014
+907.08	0.00309989
+907.2	0.00309965
+907.32	0.0030994
+907.44	0.00309915
+907.56	0.0030989
+907.68	0.00309866
+907.8	0.00309841
+907.92	0.00309816
+908.04	0.00309792
+908.16	0.00309767
+908.28	0.00309742
+908.4	0.00309717
+908.52	0.00309693
+908.64	0.00309668
+908.76	0.00309643
+908.88	0.00309619
+909	0.00309594
+909.12	0.00309569
+909.24	0.00309545
+909.36	0.0030952
+909.48	0.00309495
+909.6	0.00309471
+909.72	0.00309446
+909.84	0.00309422
+909.96	0.00309397
+910.08	0.00309372
+910.2	0.00309348
+910.32	0.00309323
+910.44	0.00309299
+910.56	0.00309274
+910.68	0.0030925
+910.8	0.00309225
+910.92	0.003092
+911.04	0.00309176
+911.16	0.00309151
+911.28	0.00309127
+911.4	0.00309102
+911.52	0.00309078
+911.64	0.00309053
+911.76	0.00309029
+911.88	0.00309004
+912	0.0030898
+912.12	0.00308955
+912.24	0.00308931
+912.36	0.00308906
+912.48	0.00308882
+912.6	0.00308857
+912.72	0.00308833
+912.84	0.00308808
+912.96	0.00308784
+913.08	0.00308759
+913.2	0.00308735
+913.32	0.00308711
+913.44	0.00308686
+913.56	0.00308662
+913.68	0.00308637
+913.8	0.00308613
+913.92	0.00308588
+914.04	0.00308564
+914.16	0.0030854
+914.28	0.00308515
+914.4	0.00308491
+914.52	0.00308467
+914.64	0.00308442
+914.76	0.00308418
+914.88	0.00308393
+915	0.00308369
+915.12	0.00308345
+915.24	0.0030832
+915.36	0.00308296
+915.48	0.00308272
+915.6	0.00308248
+915.72	0.00308223
+915.84	0.00308199
+915.96	0.00308175
+916.08	0.0030815
+916.2	0.00308126
+916.32	0.00308102
+916.44	0.00308077
+916.56	0.00308053
+916.68	0.00308029
+916.8	0.00308005
+916.92	0.0030798
+917.04	0.00307956
+917.16	0.00307932
+917.28	0.00307908
+917.4	0.00307884
+917.52	0.00307859
+917.64	0.00307835
+917.76	0.00307811
+917.88	0.00307787
+918	0.00307763
+918.12	0.00307738
+918.24	0.00307714
+918.36	0.0030769
+918.48	0.00307666
+918.6	0.00307642
+918.72	0.00307617
+918.84	0.00307593
+918.96	0.00307569
+919.08	0.00307545
+919.2	0.00307521
+919.32	0.00307497
+919.44	0.00307473
+919.56	0.00307449
+919.68	0.00307424
+919.8	0.003074
+919.92	0.00307376
+920.04	0.00307352
+920.16	0.00307328
+920.28	0.00307304
+920.4	0.0030728
+920.52	0.00307256
+920.64	0.00307232
+920.76	0.00307208
+920.88	0.00307184
+921	0.0030716
+921.12	0.00307136
+921.24	0.00307112
+921.36	0.00307088
+921.48	0.00307064
+921.6	0.0030704
+921.72	0.00307016
+921.84	0.00306992
+921.96	0.00306968
+922.08	0.00306944
+922.2	0.0030692
+922.32	0.00306896
+922.44	0.00306872
+922.56	0.00306848
+922.68	0.00306824
+922.8	0.003068
+922.92	0.00306776
+923.04	0.00306752
+923.16	0.00306728
+923.28	0.00306704
+923.4	0.0030668
+923.52	0.00306656
+923.64	0.00306632
+923.76	0.00306609
+923.88	0.00306585
+924	0.00306561
+924.12	0.00306537
+924.24	0.00306513
+924.36	0.00306489
+924.48	0.00306465
+924.6	0.00306441
+924.72	0.00306418
+924.84	0.00306394
+924.96	0.0030637
+925.08	0.00306346
+925.2	0.00306322
+925.32	0.00306298
+925.44	0.00306275
+925.56	0.00306251
+925.68	0.00306227
+925.8	0.00306203
+925.92	0.00306179
+926.04	0.00306156
+926.16	0.00306132
+926.28	0.00306108
+926.4	0.00306084
+926.52	0.0030606
+926.64	0.00306037
+926.76	0.00306013
+926.88	0.00305989
+927	0.00305966
+927.12	0.00305942
+927.24	0.00305918
+927.36	0.00305894
+927.48	0.00305871
+927.6	0.00305847
+927.72	0.00305823
+927.84	0.003058
+927.96	0.00305776
+928.08	0.00305752
+928.2	0.00305728
+928.32	0.00305705
+928.44	0.00305681
+928.56	0.00305657
+928.68	0.00305634
+928.8	0.0030561
+928.92	0.00305587
+929.04	0.00305563
+929.16	0.00305539
+929.28	0.00305516
+929.4	0.00305492
+929.52	0.00305468
+929.64	0.00305445
+929.76	0.00305421
+929.88	0.00305398
+930	0.00305374
+930.12	0.0030535
+930.24	0.00305327
+930.36	0.00305303
+930.48	0.0030528
+930.6	0.00305256
+930.72	0.00305233
+930.84	0.00305209
+930.96	0.00305186
+931.08	0.00305162
+931.2	0.00305138
+931.32	0.00305115
+931.44	0.00305091
+931.56	0.00305068
+931.68	0.00305044
+931.8	0.00305021
+931.92	0.00304997
+932.04	0.00304974
+932.16	0.0030495
+932.28	0.00304927
+932.4	0.00304903
+932.52	0.0030488
+932.64	0.00304857
+932.76	0.00304833
+932.88	0.0030481
+933	0.00304786
+933.12	0.00304763
+933.24	0.00304739
+933.36	0.00304716
+933.48	0.00304693
+933.6	0.00304669
+933.72	0.00304646
+933.84	0.00304622
+933.96	0.00304599
+934.08	0.00304576
+934.2	0.00304552
+934.32	0.00304529
+934.44	0.00304505
+934.56	0.00304482
+934.68	0.00304459
+934.8	0.00304435
+934.92	0.00304412
+935.04	0.00304389
+935.16	0.00304365
+935.28	0.00304342
+935.4	0.00304319
+935.52	0.00304295
+935.64	0.00304272
+935.76	0.00304249
+935.88	0.00304225
+936	0.00304202
+936.12	0.00304179
+936.24	0.00304156
+936.36	0.00304132
+936.48	0.00304109
+936.6	0.00304086
+936.72	0.00304062
+936.84	0.00304039
+936.96	0.00304016
+937.08	0.00303993
+937.2	0.00303969
+937.32	0.00303946
+937.44	0.00303923
+937.56	0.003039
+937.68	0.00303877
+937.8	0.00303853
+937.92	0.0030383
+938.04	0.00303807
+938.16	0.00303784
+938.28	0.00303761
+938.4	0.00303737
+938.52	0.00303714
+938.64	0.00303691
+938.76	0.00303668
+938.88	0.00303645
+939	0.00303622
+939.12	0.00303598
+939.24	0.00303575
+939.36	0.00303552
+939.48	0.00303529
+939.6	0.00303506
+939.72	0.00303483
+939.84	0.0030346
+939.96	0.00303437
+940.08	0.00303413
+940.2	0.0030339
+940.32	0.00303367
+940.44	0.00303344
+940.56	0.00303321
+940.68	0.00303298
+940.8	0.00303275
+940.92	0.00303252
+941.04	0.00303229
+941.16	0.00303206
+941.28	0.00303183
+941.4	0.0030316
+941.52	0.00303137
+941.64	0.00303114
+941.76	0.00303091
+941.88	0.00303068
+942	0.00303045
+942.12	0.00303022
+942.24	0.00302999
+942.36	0.00302976
+942.48	0.00302953
+942.6	0.0030293
+942.72	0.00302907
+942.84	0.00302884
+942.96	0.00302861
+943.08	0.00302838
+943.2	0.00302815
+943.32	0.00302792
+943.44	0.00302769
+943.56	0.00302746
+943.68	0.00302723
+943.8	0.003027
+943.92	0.00302677
+944.04	0.00302654
+944.16	0.00302632
+944.28	0.00302609
+944.4	0.00302586
+944.52	0.00302563
+944.64	0.0030254
+944.76	0.00302517
+944.88	0.00302494
+945	0.00302471
+945.12	0.00302448
+945.24	0.00302426
+945.36	0.00302403
+945.48	0.0030238
+945.6	0.00302357
+945.72	0.00302334
+945.84	0.00302311
+945.96	0.00302289
+946.08	0.00302266
+946.2	0.00302243
+946.32	0.0030222
+946.44	0.00302197
+946.56	0.00302175
+946.68	0.00302152
+946.8	0.00302129
+946.92	0.00302106
+947.04	0.00302083
+947.16	0.00302061
+947.28	0.00302038
+947.4	0.00302015
+947.52	0.00301992
+947.64	0.0030197
+947.76	0.00301947
+947.88	0.00301924
+948	0.00301902
+948.12	0.00301879
+948.24	0.00301856
+948.36	0.00301833
+948.48	0.00301811
+948.6	0.00301788
+948.72	0.00301765
+948.84	0.00301743
+948.96	0.0030172
+949.08	0.00301697
+949.2	0.00301675
+949.32	0.00301652
+949.44	0.00301629
+949.56	0.00301607
+949.68	0.00301584
+949.8	0.00301561
+949.92	0.00301539
+950.04	0.00301516
+950.16	0.00301493
+950.28	0.00301471
+950.4	0.00301448
+950.52	0.00301426
+950.64	0.00301403
+950.76	0.0030138
+950.88	0.00301358
+951	0.00301335
+951.12	0.00301313
+951.24	0.0030129
+951.36	0.00301268
+951.48	0.00301245
+951.6	0.00301222
+951.72	0.003012
+951.84	0.00301177
+951.96	0.00301155
+952.08	0.00301132
+952.2	0.0030111
+952.32	0.00301087
+952.44	0.00301065
+952.56	0.00301042
+952.68	0.0030102
+952.8	0.00300997
+952.92	0.00300975
+953.04	0.00300952
+953.16	0.0030093
+953.28	0.00300907
+953.4	0.00300885
+953.52	0.00300862
+953.64	0.0030084
+953.76	0.00300817
+953.88	0.00300795
+954	0.00300772
+954.12	0.0030075
+954.24	0.00300728
+954.36	0.00300705
+954.48	0.00300683
+954.6	0.0030066
+954.72	0.00300638
+954.84	0.00300615
+954.96	0.00300593
+955.08	0.00300571
+955.2	0.00300548
+955.32	0.00300526
+955.44	0.00300503
+955.56	0.00300481
+955.68	0.00300459
+955.8	0.00300436
+955.92	0.00300414
+956.04	0.00300392
+956.16	0.00300369
+956.28	0.00300347
+956.4	0.00300325
+956.52	0.00300302
+956.64	0.0030028
+956.76	0.00300258
+956.88	0.00300235
+957	0.00300213
+957.12	0.00300191
+957.24	0.00300168
+957.36	0.00300146
+957.48	0.00300124
+957.6	0.00300102
+957.72	0.00300079
+957.84	0.00300057
+957.96	0.00300035
+958.08	0.00300012
+958.2	0.0029999
+958.32	0.00299968
+958.44	0.00299946
+958.56	0.00299923
+958.68	0.00299901
+958.8	0.00299879
+958.92	0.00299857
+959.04	0.00299835
+959.16	0.00299812
+959.28	0.0029979
+959.4	0.00299768
+959.52	0.00299746
+959.64	0.00299724
+959.76	0.00299701
+959.88	0.00299679
+960	0.00299657
+960.12	0.00299635
+960.24	0.00299613
+960.36	0.00299591
+960.48	0.00299568
+960.6	0.00299546
+960.72	0.00299524
+960.84	0.00299502
+960.96	0.0029948
+961.08	0.00299458
+961.2	0.00299436
+961.32	0.00299413
+961.44	0.00299391
+961.56	0.00299369
+961.68	0.00299347
+961.8	0.00299325
+961.92	0.00299303
+962.04	0.00299281
+962.16	0.00299259
+962.28	0.00299237
+962.4	0.00299215
+962.52	0.00299193
+962.64	0.00299171
+962.76	0.00299148
+962.88	0.00299126
+963	0.00299104
+963.12	0.00299082
+963.24	0.0029906
+963.36	0.00299038
+963.48	0.00299016
+963.6	0.00298994
+963.72	0.00298972
+963.84	0.0029895
+963.96	0.00298928
+964.08	0.00298906
+964.2	0.00298884
+964.32	0.00298862
+964.44	0.0029884
+964.56	0.00298818
+964.68	0.00298796
+964.8	0.00298774
+964.92	0.00298752
+965.04	0.00298731
+965.16	0.00298709
+965.28	0.00298687
+965.4	0.00298665
+965.52	0.00298643
+965.64	0.00298621
+965.76	0.00298599
+965.88	0.00298577
+966	0.00298555
+966.12	0.00298533
+966.24	0.00298511
+966.36	0.00298489
+966.48	0.00298468
+966.6	0.00298446
+966.72	0.00298424
+966.84	0.00298402
+966.96	0.0029838
+967.08	0.00298358
+967.2	0.00298336
+967.32	0.00298314
+967.44	0.00298293
+967.56	0.00298271
+967.68	0.00298249
+967.8	0.00298227
+967.92	0.00298205
+968.04	0.00298184
+968.16	0.00298162
+968.28	0.0029814
+968.4	0.00298118
+968.52	0.00298096
+968.64	0.00298075
+968.76	0.00298053
+968.88	0.00298031
+969	0.00298009
+969.12	0.00297987
+969.24	0.00297966
+969.36	0.00297944
+969.48	0.00297922
+969.6	0.002979
+969.72	0.00297879
+969.84	0.00297857
+969.96	0.00297835
+970.08	0.00297813
+970.2	0.00297792
+970.32	0.0029777
+970.44	0.00297748
+970.56	0.00297727
+970.68	0.00297705
+970.8	0.00297683
+970.92	0.00297661
+971.04	0.0029764
+971.16	0.00297618
+971.28	0.00297596
+971.4	0.00297575
+971.52	0.00297553
+971.64	0.00297531
+971.76	0.0029751
+971.88	0.00297488
+972	0.00297467
+972.12	0.00297445
+972.24	0.00297423
+972.36	0.00297402
+972.48	0.0029738
+972.6	0.00297358
+972.72	0.00297337
+972.84	0.00297315
+972.96	0.00297294
+973.08	0.00297272
+973.2	0.0029725
+973.32	0.00297229
+973.44	0.00297207
+973.56	0.00297186
+973.68	0.00297164
+973.8	0.00297142
+973.92	0.00297121
+974.04	0.00297099
+974.16	0.00297078
+974.28	0.00297056
+974.4	0.00297035
+974.52	0.00297013
+974.64	0.00296992
+974.76	0.0029697
+974.88	0.00296949
+975	0.00296927
+975.12	0.00296906
+975.24	0.00296884
+975.36	0.00296863
+975.48	0.00296841
+975.6	0.0029682
+975.72	0.00296798
+975.84	0.00296777
+975.96	0.00296755
+976.08	0.00296734
+976.2	0.00296712
+976.32	0.00296691
+976.44	0.00296669
+976.56	0.00296648
+976.68	0.00296626
+976.8	0.00296605
+976.92	0.00296584
+977.04	0.00296562
+977.16	0.00296541
+977.28	0.00296519
+977.4	0.00296498
+977.52	0.00296476
+977.64	0.00296455
+977.76	0.00296434
+977.88	0.00296412
+978	0.00296391
+978.12	0.0029637
+978.24	0.00296348
+978.36	0.00296327
+978.48	0.00296305
+978.6	0.00296284
+978.72	0.00296263
+978.84	0.00296241
+978.96	0.0029622
+979.08	0.00296199
+979.2	0.00296177
+979.32	0.00296156
+979.44	0.00296135
+979.56	0.00296113
+979.68	0.00296092
+979.8	0.00296071
+979.92	0.00296049
+980.04	0.00296028
+980.16	0.00296007
+980.28	0.00295986
+980.4	0.00295964
+980.52	0.00295943
+980.64	0.00295922
+980.76	0.002959
+980.88	0.00295879
+981	0.00295858
+981.12	0.00295837
+981.24	0.00295815
+981.36	0.00295794
+981.48	0.00295773
+981.6	0.00295752
+981.72	0.0029573
+981.84	0.00295709
+981.96	0.00295688
+982.08	0.00295667
+982.2	0.00295646
+982.32	0.00295624
+982.44	0.00295603
+982.56	0.00295582
+982.68	0.00295561
+982.8	0.0029554
+982.92	0.00295518
+983.04	0.00295497
+983.16	0.00295476
+983.28	0.00295455
+983.4	0.00295434
+983.52	0.00295413
+983.64	0.00295392
+983.76	0.0029537
+983.88	0.00295349
+984	0.00295328
+984.12	0.00295307
+984.24	0.00295286
+984.36	0.00295265
+984.48	0.00295244
+984.6	0.00295223
+984.72	0.00295201
+984.84	0.0029518
+984.96	0.00295159
+985.08	0.00295138
+985.2	0.00295117
+985.32	0.00295096
+985.44	0.00295075
+985.56	0.00295054
+985.68	0.00295033
+985.8	0.00295012
+985.92	0.00294991
+986.04	0.0029497
+986.16	0.00294949
+986.28	0.00294928
+986.4	0.00294907
+986.52	0.00294886
+986.64	0.00294864
+986.76	0.00294843
+986.88	0.00294822
+987	0.00294801
+987.12	0.0029478
+987.24	0.00294759
+987.36	0.00294738
+987.48	0.00294717
+987.6	0.00294696
+987.72	0.00294676
+987.84	0.00294655
+987.96	0.00294634
+988.08	0.00294613
+988.2	0.00294592
+988.32	0.00294571
+988.44	0.0029455
+988.56	0.00294529
+988.68	0.00294508
+988.8	0.00294487
+988.92	0.00294466
+989.04	0.00294445
+989.16	0.00294424
+989.28	0.00294403
+989.4	0.00294382
+989.52	0.00294361
+989.64	0.00294341
+989.76	0.0029432
+989.88	0.00294299
+990	0.00294278
+990.12	0.00294257
+990.24	0.00294236
+990.36	0.00294215
+990.48	0.00294194
+990.6	0.00294174
+990.72	0.00294153
+990.84	0.00294132
+990.96	0.00294111
+991.08	0.0029409
+991.2	0.00294069
+991.32	0.00294049
+991.44	0.00294028
+991.56	0.00294007
+991.68	0.00293986
+991.8	0.00293965
+991.92	0.00293944
+992.04	0.00293924
+992.16	0.00293903
+992.28	0.00293882
+992.4	0.00293861
+992.52	0.00293841
+992.64	0.0029382
+992.76	0.00293799
+992.88	0.00293778
+993	0.00293757
+993.12	0.00293737
+993.24	0.00293716
+993.36	0.00293695
+993.48	0.00293674
+993.6	0.00293654
+993.72	0.00293633
+993.84	0.00293612
+993.96	0.00293592
+994.08	0.00293571
+994.2	0.0029355
+994.32	0.00293529
+994.44	0.00293509
+994.56	0.00293488
+994.68	0.00293467
+994.8	0.00293447
+994.92	0.00293426
+995.04	0.00293405
+995.16	0.00293385
+995.28	0.00293364
+995.4	0.00293343
+995.52	0.00293323
+995.64	0.00293302
+995.76	0.00293281
+995.88	0.00293261
+996	0.0029324
+996.12	0.00293219
+996.24	0.00293199
+996.36	0.00293178
+996.48	0.00293158
+996.6	0.00293137
+996.72	0.00293116
+996.84	0.00293096
+996.96	0.00293075
+997.08	0.00293055
+997.2	0.00293034
+997.32	0.00293013
+997.44	0.00292993
+997.56	0.00292972
+997.68	0.00292952
+997.8	0.00292931
+997.92	0.00292911
+998.04	0.0029289
+998.16	0.00292869
+998.28	0.00292849
+998.4	0.00292828
+998.52	0.00292808
+998.64	0.00292787
+998.76	0.00292767
+998.88	0.00292746
+999	0.00292726
+999.12	0.00292705
+999.24	0.00292685
+999.36	0.00292664
+999.48	0.00292644
+999.6	0.00292623
+999.72	0.00292603
+999.84	0.00292582
+999.96	0.00292562
+1000.08	0.00292541
+1000.2	0.00292521
+1000.32	0.002925
+1000.44	0.0029248
+1000.56	0.00292459
+1000.68	0.00292439
+1000.8	0.00292419
+1000.92	0.00292398
+1001.04	0.00292378
+1001.16	0.00292357
+1001.28	0.00292337
+1001.4	0.00292316
+1001.52	0.00292296
+1001.64	0.00292276
+1001.76	0.00292255
+1001.88	0.00292235
+1002	0.00292214
+1002.12	0.00292194
+1002.24	0.00292174
+1002.36	0.00292153
+1002.48	0.00292133
+1002.6	0.00292112
+1002.72	0.00292092
+1002.84	0.00292072
+1002.96	0.00292051
+1003.08	0.00292031
+1003.2	0.00292011
+1003.32	0.0029199
+1003.44	0.0029197
+1003.56	0.0029195
+1003.68	0.00291929
+1003.8	0.00291909
+1003.92	0.00291889
+1004.04	0.00291868
+1004.16	0.00291848
+1004.28	0.00291828
+1004.4	0.00291807
+1004.52	0.00291787
+1004.64	0.00291767
+1004.76	0.00291747
+1004.88	0.00291726
+1005	0.00291706
+1005.12	0.00291686
+1005.24	0.00291665
+1005.36	0.00291645
+1005.48	0.00291625
+1005.6	0.00291605
+1005.72	0.00291584
+1005.84	0.00291564
+1005.96	0.00291544
+1006.08	0.00291524
+1006.2	0.00291503
+1006.32	0.00291483
+1006.44	0.00291463
+1006.56	0.00291443
+1006.68	0.00291423
+1006.8	0.00291402
+1006.92	0.00291382
+1007.04	0.00291362
+1007.16	0.00291342
+1007.28	0.00291322
+1007.4	0.00291301
+1007.52	0.00291281
+1007.64	0.00291261
+1007.76	0.00291241
+1007.88	0.00291221
+1008	0.00291201
+1008.12	0.0029118
+1008.24	0.0029116
+1008.36	0.0029114
+1008.48	0.0029112
+1008.6	0.002911
+1008.72	0.0029108
+1008.84	0.0029106
+1008.96	0.00291039
+1009.08	0.00291019
+1009.2	0.00290999
+1009.32	0.00290979
+1009.44	0.00290959
+1009.56	0.00290939
+1009.68	0.00290919
+1009.8	0.00290899
+1009.92	0.00290879
+1010.04	0.00290859
+1010.16	0.00290839
+1010.28	0.00290818
+1010.4	0.00290798
+1010.52	0.00290778
+1010.64	0.00290758
+1010.76	0.00290738
+1010.88	0.00290718
+1011	0.00290698
+1011.12	0.00290678
+1011.24	0.00290658
+1011.36	0.00290638
+1011.48	0.00290618
+1011.6	0.00290598
+1011.72	0.00290578
+1011.84	0.00290558
+1011.96	0.00290538
+1012.08	0.00290518
+1012.2	0.00290498
+1012.32	0.00290478
+1012.44	0.00290458
+1012.56	0.00290438
+1012.68	0.00290418
+1012.8	0.00290398
+1012.92	0.00290378
+1013.04	0.00290358
+1013.16	0.00290338
+1013.28	0.00290318
+1013.4	0.00290298
+1013.52	0.00290278
+1013.64	0.00290258
+1013.76	0.00290238
+1013.88	0.00290219
+1014	0.00290199
+1014.12	0.00290179
+1014.24	0.00290159
+1014.36	0.00290139
+1014.48	0.00290119
+1014.6	0.00290099
+1014.72	0.00290079
+1014.84	0.00290059
+1014.96	0.00290039
+1015.08	0.00290019
+1015.2	0.0029
+1015.32	0.0028998
+1015.44	0.0028996
+1015.56	0.0028994
+1015.68	0.0028992
+1015.8	0.002899
+1015.92	0.0028988
+1016.04	0.00289861
+1016.16	0.00289841
+1016.28	0.00289821
+1016.4	0.00289801
+1016.52	0.00289781
+1016.64	0.00289761
+1016.76	0.00289742
+1016.88	0.00289722
+1017	0.00289702
+1017.12	0.00289682
+1017.24	0.00289662
+1017.36	0.00289642
+1017.48	0.00289623
+1017.6	0.00289603
+1017.72	0.00289583
+1017.84	0.00289563
+1017.96	0.00289544
+1018.08	0.00289524
+1018.2	0.00289504
+1018.32	0.00289484
+1018.44	0.00289465
+1018.56	0.00289445
+1018.68	0.00289425
+1018.8	0.00289405
+1018.92	0.00289386
+1019.04	0.00289366
+1019.16	0.00289346
+1019.28	0.00289326
+1019.4	0.00289307
+1019.52	0.00289287
+1019.64	0.00289267
+1019.76	0.00289247
+1019.88	0.00289228
+1020	0.00289208
+1020.12	0.00289188
+1020.24	0.00289169
+1020.36	0.00289149
+1020.48	0.00289129
+1020.6	0.0028911
+1020.72	0.0028909
+1020.84	0.0028907
+1020.96	0.00289051
+1021.08	0.00289031
+1021.2	0.00289011
+1021.32	0.00288992
+1021.44	0.00288972
+1021.56	0.00288952
+1021.68	0.00288933
+1021.8	0.00288913
+1021.92	0.00288894
+1022.04	0.00288874
+1022.16	0.00288854
+1022.28	0.00288835
+1022.4	0.00288815
+1022.52	0.00288795
+1022.64	0.00288776
+1022.76	0.00288756
+1022.88	0.00288737
+1023	0.00288717
+1023.12	0.00288698
+1023.24	0.00288678
+1023.36	0.00288658
+1023.48	0.00288639
+1023.6	0.00288619
+1023.72	0.002886
+1023.84	0.0028858
+1023.96	0.00288561
+1024.08	0.00288541
+1024.2	0.00288522
+1024.32	0.00288502
+1024.44	0.00288482
+1024.56	0.00288463
+1024.68	0.00288443
+1024.8	0.00288424
+1024.92	0.00288404
+1025.04	0.00288385
+1025.16	0.00288365
+1025.28	0.00288346
+1025.4	0.00288326
+1025.52	0.00288307
+1025.64	0.00288287
+1025.76	0.00288268
+1025.88	0.00288248
+1026	0.00288229
+1026.12	0.00288209
+1026.24	0.0028819
+1026.36	0.00288171
+1026.48	0.00288151
+1026.6	0.00288132
+1026.72	0.00288112
+1026.84	0.00288093
+1026.96	0.00288073
+1027.08	0.00288054
+1027.2	0.00288034
+1027.32	0.00288015
+1027.44	0.00287996
+1027.56	0.00287976
+1027.68	0.00287957
+1027.8	0.00287937
+1027.92	0.00287918
+1028.04	0.00287899
+1028.16	0.00287879
+1028.28	0.0028786
+1028.4	0.0028784
+1028.52	0.00287821
+1028.64	0.00287802
+1028.76	0.00287782
+1028.88	0.00287763
+1029	0.00287744
+1029.12	0.00287724
+1029.24	0.00287705
+1029.36	0.00287686
+1029.48	0.00287666
+1029.6	0.00287647
+1029.72	0.00287628
+1029.84	0.00287608
+1029.96	0.00287589
+1030.08	0.0028757
+1030.2	0.0028755
+1030.32	0.00287531
+1030.44	0.00287512
+1030.56	0.00287492
+1030.68	0.00287473
+1030.8	0.00287454
+1030.92	0.00287434
+1031.04	0.00287415
+1031.16	0.00287396
+1031.28	0.00287377
+1031.4	0.00287357
+1031.52	0.00287338
+1031.64	0.00287319
+1031.76	0.00287299
+1031.88	0.0028728
+1032	0.00287261
+1032.12	0.00287242
+1032.24	0.00287222
+1032.36	0.00287203
+1032.48	0.00287184
+1032.6	0.00287165
+1032.72	0.00287146
+1032.84	0.00287126
+1032.96	0.00287107
+1033.08	0.00287088
+1033.2	0.00287069
+1033.32	0.00287049
+1033.44	0.0028703
+1033.56	0.00287011
+1033.68	0.00286992
+1033.8	0.00286973
+1033.92	0.00286954
+1034.04	0.00286934
+1034.16	0.00286915
+1034.28	0.00286896
+1034.4	0.00286877
+1034.52	0.00286858
+1034.64	0.00286839
+1034.76	0.00286819
+1034.88	0.002868
+1035	0.00286781
+1035.12	0.00286762
+1035.24	0.00286743
+1035.36	0.00286724
+1035.48	0.00286705
+1035.6	0.00286685
+1035.72	0.00286666
+1035.84	0.00286647
+1035.96	0.00286628
+1036.08	0.00286609
+1036.2	0.0028659
+1036.32	0.00286571
+1036.44	0.00286552
+1036.56	0.00286533
+1036.68	0.00286514
+1036.8	0.00286494
+1036.92	0.00286475
+1037.04	0.00286456
+1037.16	0.00286437
+1037.28	0.00286418
+1037.4	0.00286399
+1037.52	0.0028638
+1037.64	0.00286361
+1037.76	0.00286342
+1037.88	0.00286323
+1038	0.00286304
+1038.12	0.00286285
+1038.24	0.00286266
+1038.36	0.00286247
+1038.48	0.00286228
+1038.6	0.00286209
+1038.72	0.0028619
+1038.84	0.00286171
+1038.96	0.00286152
+1039.08	0.00286133
+1039.2	0.00286114
+1039.32	0.00286095
+1039.44	0.00286076
+1039.56	0.00286057
+1039.68	0.00286038
+1039.8	0.00286019
+1039.92	0.00286
+1040.04	0.00285981
+1040.16	0.00285962
+1040.28	0.00285943
+1040.4	0.00285924
+1040.52	0.00285905
+1040.64	0.00285886
+1040.76	0.00285867
+1040.88	0.00285848
+1041	0.0028583
+1041.12	0.00285811
+1041.24	0.00285792
+1041.36	0.00285773
+1041.48	0.00285754
+1041.6	0.00285735
+1041.72	0.00285716
+1041.84	0.00285697
+1041.96	0.00285678
+1042.08	0.00285659
+1042.2	0.0028564
+1042.32	0.00285622
+1042.44	0.00285603
+1042.56	0.00285584
+1042.68	0.00285565
+1042.8	0.00285546
+1042.92	0.00285527
+1043.04	0.00285508
+1043.16	0.0028549
+1043.28	0.00285471
+1043.4	0.00285452
+1043.52	0.00285433
+1043.64	0.00285414
+1043.76	0.00285395
+1043.88	0.00285377
+1044	0.00285358
+1044.12	0.00285339
+1044.24	0.0028532
+1044.36	0.00285301
+1044.48	0.00285282
+1044.6	0.00285264
+1044.72	0.00285245
+1044.84	0.00285226
+1044.96	0.00285207
+1045.08	0.00285189
+1045.2	0.0028517
+1045.32	0.00285151
+1045.44	0.00285132
+1045.56	0.00285113
+1045.68	0.00285095
+1045.8	0.00285076
+1045.92	0.00285057
+1046.04	0.00285038
+1046.16	0.0028502
+1046.28	0.00285001
+1046.4	0.00284982
+1046.52	0.00284963
+1046.64	0.00284945
+1046.76	0.00284926
+1046.88	0.00284907
+1047	0.00284889
+1047.12	0.0028487
+1047.24	0.00284851
+1047.36	0.00284832
+1047.48	0.00284814
+1047.6	0.00284795
+1047.72	0.00284776
+1047.84	0.00284758
+1047.96	0.00284739
+1048.08	0.0028472
+1048.2	0.00284702
+1048.32	0.00284683
+1048.44	0.00284664
+1048.56	0.00284646
+1048.68	0.00284627
+1048.8	0.00284608
+1048.92	0.0028459
+1049.04	0.00284571
+1049.16	0.00284552
+1049.28	0.00284534
+1049.4	0.00284515
+1049.52	0.00284497
+1049.64	0.00284478
+1049.76	0.00284459
+1049.88	0.00284441
+1050	0.00284422
+1050.12	0.00284404
+1050.24	0.00284385
+1050.36	0.00284366
+1050.48	0.00284348
+1050.6	0.00284329
+1050.72	0.00284311
+1050.84	0.00284292
+1050.96	0.00284273
+1051.08	0.00284255
+1051.2	0.00284236
+1051.32	0.00284218
+1051.44	0.00284199
+1051.56	0.00284181
+1051.68	0.00284162
+1051.8	0.00284143
+1051.92	0.00284125
+1052.04	0.00284106
+1052.16	0.00284088
+1052.28	0.00284069
+1052.4	0.00284051
+1052.52	0.00284032
+1052.64	0.00284014
+1052.76	0.00283995
+1052.88	0.00283977
+1053	0.00283958
+1053.12	0.0028394
+1053.24	0.00283921
+1053.36	0.00283903
+1053.48	0.00283884
+1053.6	0.00283866
+1053.72	0.00283847
+1053.84	0.00283829
+1053.96	0.0028381
+1054.08	0.00283792
+1054.2	0.00283773
+1054.32	0.00283755
+1054.44	0.00283736
+1054.56	0.00283718
+1054.68	0.002837
+1054.8	0.00283681
+1054.92	0.00283663
+1055.04	0.00283644
+1055.16	0.00283626
+1055.28	0.00283607
+1055.4	0.00283589
+1055.52	0.00283571
+1055.64	0.00283552
+1055.76	0.00283534
+1055.88	0.00283515
+1056	0.00283497
+1056.12	0.00283479
+1056.24	0.0028346
+1056.36	0.00283442
+1056.48	0.00283423
+1056.6	0.00283405
+1056.72	0.00283387
+1056.84	0.00283368
+1056.96	0.0028335
+1057.08	0.00283332
+1057.2	0.00283313
+1057.32	0.00283295
+1057.44	0.00283276
+1057.56	0.00283258
+1057.68	0.0028324
+1057.8	0.00283221
+1057.92	0.00283203
+1058.04	0.00283185
+1058.16	0.00283166
+1058.28	0.00283148
+1058.4	0.0028313
+1058.52	0.00283111
+1058.64	0.00283093
+1058.76	0.00283075
+1058.88	0.00283057
+1059	0.00283038
+1059.12	0.0028302
+1059.24	0.00283002
+1059.36	0.00282983
+1059.48	0.00282965
+1059.6	0.00282947
+1059.72	0.00282928
+1059.84	0.0028291
+1059.96	0.00282892
+1060.08	0.00282874
+1060.2	0.00282855
+1060.32	0.00282837
+1060.44	0.00282819
+1060.56	0.00282801
+1060.68	0.00282782
+1060.8	0.00282764
+1060.92	0.00282746
+1061.04	0.00282728
+1061.16	0.0028271
+1061.28	0.00282691
+1061.4	0.00282673
+1061.52	0.00282655
+1061.64	0.00282637
+1061.76	0.00282618
+1061.88	0.002826
+1062	0.00282582
+1062.12	0.00282564
+1062.24	0.00282546
+1062.36	0.00282527
+1062.48	0.00282509
+1062.6	0.00282491
+1062.72	0.00282473
+1062.84	0.00282455
+1062.96	0.00282437
+1063.08	0.00282418
+1063.2	0.002824
+1063.32	0.00282382
+1063.44	0.00282364
+1063.56	0.00282346
+1063.68	0.00282328
+1063.8	0.0028231
+1063.92	0.00282291
+1064.04	0.00282273
+1064.16	0.00282255
+1064.28	0.00282237
+1064.4	0.00282219
+1064.52	0.00282201
+1064.64	0.00282183
+1064.76	0.00282165
+1064.88	0.00282146
+1065	0.00282128
+1065.12	0.0028211
+1065.24	0.00282092
+1065.36	0.00282074
+1065.48	0.00282056
+1065.6	0.00282038
+1065.72	0.0028202
+1065.84	0.00282002
+1065.96	0.00281984
+1066.08	0.00281966
+1066.2	0.00281948
+1066.32	0.0028193
+1066.44	0.00281912
+1066.56	0.00281893
+1066.68	0.00281875
+1066.8	0.00281857
+1066.92	0.00281839
+1067.04	0.00281821
+1067.16	0.00281803
+1067.28	0.00281785
+1067.4	0.00281767
+1067.52	0.00281749
+1067.64	0.00281731
+1067.76	0.00281713
+1067.88	0.00281695
+1068	0.00281677
+1068.12	0.00281659
+1068.24	0.00281641
+1068.36	0.00281623
+1068.48	0.00281605
+1068.6	0.00281587
+1068.72	0.00281569
+1068.84	0.00281551
+1068.96	0.00281533
+1069.08	0.00281515
+1069.2	0.00281497
+1069.32	0.00281479
+1069.44	0.00281462
+1069.56	0.00281444
+1069.68	0.00281426
+1069.8	0.00281408
+1069.92	0.0028139
+1070.04	0.00281372
+1070.16	0.00281354
+1070.28	0.00281336
+1070.4	0.00281318
+1070.52	0.002813
+1070.64	0.00281282
+1070.76	0.00281264
+1070.88	0.00281246
+1071	0.00281229
+1071.12	0.00281211
+1071.24	0.00281193
+1071.36	0.00281175
+1071.48	0.00281157
+1071.6	0.00281139
+1071.72	0.00281121
+1071.84	0.00281103
+1071.96	0.00281085
+1072.08	0.00281068
+1072.2	0.0028105
+1072.32	0.00281032
+1072.44	0.00281014
+1072.56	0.00280996
+1072.68	0.00280978
+1072.8	0.00280961
+1072.92	0.00280943
+1073.04	0.00280925
+1073.16	0.00280907
+1073.28	0.00280889
+1073.4	0.00280871
+1073.52	0.00280854
+1073.64	0.00280836
+1073.76	0.00280818
+1073.88	0.002808
+1074	0.00280782
+1074.12	0.00280765
+1074.24	0.00280747
+1074.36	0.00280729
+1074.48	0.00280711
+1074.6	0.00280693
+1074.72	0.00280676
+1074.84	0.00280658
+1074.96	0.0028064
+1075.08	0.00280622
+1075.2	0.00280605
+1075.32	0.00280587
+1075.44	0.00280569
+1075.56	0.00280551
+1075.68	0.00280534
+1075.8	0.00280516
+1075.92	0.00280498
+1076.04	0.0028048
+1076.16	0.00280463
+1076.28	0.00280445
+1076.4	0.00280427
+1076.52	0.00280409
+1076.64	0.00280392
+1076.76	0.00280374
+1076.88	0.00280356
+1077	0.00280339
+1077.12	0.00280321
+1077.24	0.00280303
+1077.36	0.00280285
+1077.48	0.00280268
+1077.6	0.0028025
+1077.72	0.00280232
+1077.84	0.00280215
+1077.96	0.00280197
+1078.08	0.00280179
+1078.2	0.00280162
+1078.32	0.00280144
+1078.44	0.00280126
+1078.56	0.00280109
+1078.68	0.00280091
+1078.8	0.00280073
+1078.92	0.00280056
+1079.04	0.00280038
+1079.16	0.00280021
+1079.28	0.00280003
+1079.4	0.00279985
+1079.52	0.00279968
+1079.64	0.0027995
+1079.76	0.00279932
+1079.88	0.00279915
+1080	0.00279897
+1080.12	0.0027988
+1080.24	0.00279862
+1080.36	0.00279844
+1080.48	0.00279827
+1080.6	0.00279809
+1080.72	0.00279792
+1080.84	0.00279774
+1080.96	0.00279757
+1081.08	0.00279739
+1081.2	0.00279721
+1081.32	0.00279704
+1081.44	0.00279686
+1081.56	0.00279669
+1081.68	0.00279651
+1081.8	0.00279634
+1081.92	0.00279616
+1082.04	0.00279599
+1082.16	0.00279581
+1082.28	0.00279563
+1082.4	0.00279546
+1082.52	0.00279528
+1082.64	0.00279511
+1082.76	0.00279493
+1082.88	0.00279476
+1083	0.00279458
+1083.12	0.00279441
+1083.24	0.00279423
+1083.36	0.00279406
+1083.48	0.00279388
+1083.6	0.00279371
+1083.72	0.00279353
+1083.84	0.00279336
+1083.96	0.00279318
+1084.08	0.00279301
+1084.2	0.00279283
+1084.32	0.00279266
+1084.44	0.00279248
+1084.56	0.00279231
+1084.68	0.00279214
+1084.8	0.00279196
+1084.92	0.00279179
+1085.04	0.00279161
+1085.16	0.00279144
+1085.28	0.00279126
+1085.4	0.00279109
+1085.52	0.00279091
+1085.64	0.00279074
+1085.76	0.00279057
+1085.88	0.00279039
+1086	0.00279022
+1086.12	0.00279004
+1086.24	0.00278987
+1086.36	0.0027897
+1086.48	0.00278952
+1086.6	0.00278935
+1086.72	0.00278917
+1086.84	0.002789
+1086.96	0.00278883
+1087.08	0.00278865
+1087.2	0.00278848
+1087.32	0.0027883
+1087.44	0.00278813
+1087.56	0.00278796
+1087.68	0.00278778
+1087.8	0.00278761
+1087.92	0.00278744
+1088.04	0.00278726
+1088.16	0.00278709
+1088.28	0.00278692
+1088.4	0.00278674
+1088.52	0.00278657
+1088.64	0.0027864
+1088.76	0.00278622
+1088.88	0.00278605
+1089	0.00278588
+1089.12	0.0027857
+1089.24	0.00278553
+1089.36	0.00278536
+1089.48	0.00278518
+1089.6	0.00278501
+1089.72	0.00278484
+1089.84	0.00278466
+1089.96	0.00278449
+1090.08	0.00278432
+1090.2	0.00278415
+1090.32	0.00278397
+1090.44	0.0027838
+1090.56	0.00278363
+1090.68	0.00278346
+1090.8	0.00278328
+1090.92	0.00278311
+1091.04	0.00278294
+1091.16	0.00278276
+1091.28	0.00278259
+1091.4	0.00278242
+1091.52	0.00278225
+1091.64	0.00278207
+1091.76	0.0027819
+1091.88	0.00278173
+1092	0.00278156
+1092.12	0.00278139
+1092.24	0.00278121
+1092.36	0.00278104
+1092.48	0.00278087
+1092.6	0.0027807
+1092.72	0.00278052
+1092.84	0.00278035
+1092.96	0.00278018
+1093.08	0.00278001
+1093.2	0.00277984
+1093.32	0.00277967
+1093.44	0.00277949
+1093.56	0.00277932
+1093.68	0.00277915
+1093.8	0.00277898
+1093.92	0.00277881
+1094.04	0.00277863
+1094.16	0.00277846
+1094.28	0.00277829
+1094.4	0.00277812
+1094.52	0.00277795
+1094.64	0.00277778
+1094.76	0.00277761
+1094.88	0.00277743
+1095	0.00277726
+1095.12	0.00277709
+1095.24	0.00277692
+1095.36	0.00277675
+1095.48	0.00277658
+1095.6	0.00277641
+1095.72	0.00277624
+1095.84	0.00277606
+1095.96	0.00277589
+1096.08	0.00277572
+1096.2	0.00277555
+1096.32	0.00277538
+1096.44	0.00277521
+1096.56	0.00277504
+1096.68	0.00277487
+1096.8	0.0027747
+1096.92	0.00277453
+1097.04	0.00277436
+1097.16	0.00277418
+1097.28	0.00277401
+1097.4	0.00277384
+1097.52	0.00277367
+1097.64	0.0027735
+1097.76	0.00277333
+1097.88	0.00277316
+1098	0.00277299
+1098.12	0.00277282
+1098.24	0.00277265
+1098.36	0.00277248
+1098.48	0.00277231
+1098.6	0.00277214
+1098.72	0.00277197
+1098.84	0.0027718
+1098.96	0.00277163
+1099.08	0.00277146
+1099.2	0.00277129
+1099.32	0.00277112
+1099.44	0.00277095
+1099.56	0.00277078
+1099.68	0.00277061
+1099.8	0.00277044
+1099.92	0.00277027
+1100.04	0.0027701
+1100.16	0.00276993
+1100.28	0.00276976
+1100.4	0.00276959
+1100.52	0.00276942
+1100.64	0.00276925
+1100.76	0.00276908
+1100.88	0.00276891
+1101	0.00276874
+1101.12	0.00276857
+1101.24	0.0027684
+1101.36	0.00276823
+1101.48	0.00276806
+1101.6	0.0027679
+1101.72	0.00276773
+1101.84	0.00276756
+1101.96	0.00276739
+1102.08	0.00276722
+1102.2	0.00276705
+1102.32	0.00276688
+1102.44	0.00276671
+1102.56	0.00276654
+1102.68	0.00276637
+1102.8	0.0027662
+1102.92	0.00276603
+1103.04	0.00276587
+1103.16	0.0027657
+1103.28	0.00276553
+1103.4	0.00276536
+1103.52	0.00276519
+1103.64	0.00276502
+1103.76	0.00276485
+1103.88	0.00276468
+1104	0.00276452
+1104.12	0.00276435
+1104.24	0.00276418
+1104.36	0.00276401
+1104.48	0.00276384
+1104.6	0.00276367
+1104.72	0.00276351
+1104.84	0.00276334
+1104.96	0.00276317
+1105.08	0.002763
+1105.2	0.00276283
+1105.32	0.00276266
+1105.44	0.0027625
+1105.56	0.00276233
+1105.68	0.00276216
+1105.8	0.00276199
+1105.92	0.00276182
+1106.04	0.00276166
+1106.16	0.00276149
+1106.28	0.00276132
+1106.4	0.00276115
+1106.52	0.00276098
+1106.64	0.00276082
+1106.76	0.00276065
+1106.88	0.00276048
+1107	0.00276031
+1107.12	0.00276014
+1107.24	0.00275998
+1107.36	0.00275981
+1107.48	0.00275964
+1107.6	0.00275947
+1107.72	0.00275931
+1107.84	0.00275914
+1107.96	0.00275897
+1108.08	0.0027588
+1108.2	0.00275864
+1108.32	0.00275847
+1108.44	0.0027583
+1108.56	0.00275814
+1108.68	0.00275797
+1108.8	0.0027578
+1108.92	0.00275763
+1109.04	0.00275747
+1109.16	0.0027573
+1109.28	0.00275713
+1109.4	0.00275697
+1109.52	0.0027568
+1109.64	0.00275663
+1109.76	0.00275647
+1109.88	0.0027563
+1110	0.00275613
+1110.12	0.00275596
+1110.24	0.0027558
+1110.36	0.00275563
+1110.48	0.00275546
+1110.6	0.0027553
+1110.72	0.00275513
+1110.84	0.00275496
+1110.96	0.0027548
+1111.08	0.00275463
+1111.2	0.00275447
+1111.32	0.0027543
+1111.44	0.00275413
+1111.56	0.00275397
+1111.68	0.0027538
+1111.8	0.00275363
+1111.92	0.00275347
+1112.04	0.0027533
+1112.16	0.00275313
+1112.28	0.00275297
+1112.4	0.0027528
+1112.52	0.00275264
+1112.64	0.00275247
+1112.76	0.0027523
+1112.88	0.00275214
+1113	0.00275197
+1113.12	0.00275181
+1113.24	0.00275164
+1113.36	0.00275147
+1113.48	0.00275131
+1113.6	0.00275114
+1113.72	0.00275098
+1113.84	0.00275081
+1113.96	0.00275065
+1114.08	0.00275048
+1114.2	0.00275032
+1114.32	0.00275015
+1114.44	0.00274998
+1114.56	0.00274982
+1114.68	0.00274965
+1114.8	0.00274949
+1114.92	0.00274932
+1115.04	0.00274916
+1115.16	0.00274899
+1115.28	0.00274883
+1115.4	0.00274866
+1115.52	0.0027485
+1115.64	0.00274833
+1115.76	0.00274817
+1115.88	0.002748
+1116	0.00274784
+1116.12	0.00274767
+1116.24	0.00274751
+1116.36	0.00274734
+1116.48	0.00274718
+1116.6	0.00274701
+1116.72	0.00274685
+1116.84	0.00274668
+1116.96	0.00274652
+1117.08	0.00274635
+1117.2	0.00274619
+1117.32	0.00274602
+1117.44	0.00274586
+1117.56	0.00274569
+1117.68	0.00274553
+1117.8	0.00274536
+1117.92	0.0027452
+1118.04	0.00274504
+1118.16	0.00274487
+1118.28	0.00274471
+1118.4	0.00274454
+1118.52	0.00274438
+1118.64	0.00274421
+1118.76	0.00274405
+1118.88	0.00274388
+1119	0.00274372
+1119.12	0.00274356
+1119.24	0.00274339
+1119.36	0.00274323
+1119.48	0.00274306
+1119.6	0.0027429
+1119.72	0.00274274
+1119.84	0.00274257
+1119.96	0.00274241
+1120.08	0.00274224
+1120.2	0.00274208
+1120.32	0.00274192
+1120.44	0.00274175
+1120.56	0.00274159
+1120.68	0.00274143
+1120.8	0.00274126
+1120.92	0.0027411
+1121.04	0.00274093
+1121.16	0.00274077
+1121.28	0.00274061
+1121.4	0.00274044
+1121.52	0.00274028
+1121.64	0.00274012
+1121.76	0.00273995
+1121.88	0.00273979
+1122	0.00273963
+1122.12	0.00273946
+1122.24	0.0027393
+1122.36	0.00273914
+1122.48	0.00273897
+1122.6	0.00273881
+1122.72	0.00273865
+1122.84	0.00273849
+1122.96	0.00273832
+1123.08	0.00273816
+1123.2	0.002738
+1123.32	0.00273783
+1123.44	0.00273767
+1123.56	0.00273751
+1123.68	0.00273734
+1123.8	0.00273718
+1123.92	0.00273702
+1124.04	0.00273686
+1124.16	0.00273669
+1124.28	0.00273653
+1124.4	0.00273637
+1124.52	0.00273621
+1124.64	0.00273604
+1124.76	0.00273588
+1124.88	0.00273572
+1125	0.00273556
+1125.12	0.00273539
+1125.24	0.00273523
+1125.36	0.00273507
+1125.48	0.00273491
+1125.6	0.00273474
+1125.72	0.00273458
+1125.84	0.00273442
+1125.96	0.00273426
+1126.08	0.0027341
+1126.2	0.00273393
+1126.32	0.00273377
+1126.44	0.00273361
+1126.56	0.00273345
+1126.68	0.00273328
+1126.8	0.00273312
+1126.92	0.00273296
+1127.04	0.0027328
+1127.16	0.00273264
+1127.28	0.00273248
+1127.4	0.00273231
+1127.52	0.00273215
+1127.64	0.00273199
+1127.76	0.00273183
+1127.88	0.00273167
+1128	0.00273151
+1128.12	0.00273134
+1128.24	0.00273118
+1128.36	0.00273102
+1128.48	0.00273086
+1128.6	0.0027307
+1128.72	0.00273054
+1128.84	0.00273038
+1128.96	0.00273021
+1129.08	0.00273005
+1129.2	0.00272989
+1129.32	0.00272973
+1129.44	0.00272957
+1129.56	0.00272941
+1129.68	0.00272925
+1129.8	0.00272909
+1129.92	0.00272892
+1130.04	0.00272876
+1130.16	0.0027286
+1130.28	0.00272844
+1130.4	0.00272828
+1130.52	0.00272812
+1130.64	0.00272796
+1130.76	0.0027278
+1130.88	0.00272764
+1131	0.00272748
+1131.12	0.00272732
+1131.24	0.00272715
+1131.36	0.00272699
+1131.48	0.00272683
+1131.6	0.00272667
+1131.72	0.00272651
+1131.84	0.00272635
+1131.96	0.00272619
+1132.08	0.00272603
+1132.2	0.00272587
+1132.32	0.00272571
+1132.44	0.00272555
+1132.56	0.00272539
+1132.68	0.00272523
+1132.8	0.00272507
+1132.92	0.00272491
+1133.04	0.00272475
+1133.16	0.00272459
+1133.28	0.00272443
+1133.4	0.00272427
+1133.52	0.00272411
+1133.64	0.00272395
+1133.76	0.00272379
+1133.88	0.00272363
+1134	0.00272347
+1134.12	0.00272331
+1134.24	0.00272315
+1134.36	0.00272299
+1134.48	0.00272283
+1134.6	0.00272267
+1134.72	0.00272251
+1134.84	0.00272235
+1134.96	0.00272219
+1135.08	0.00272203
+1135.2	0.00272187
+1135.32	0.00272171
+1135.44	0.00272155
+1135.56	0.00272139
+1135.68	0.00272123
+1135.8	0.00272107
+1135.92	0.00272091
+1136.04	0.00272075
+1136.16	0.0027206
+1136.28	0.00272044
+1136.4	0.00272028
+1136.52	0.00272012
+1136.64	0.00271996
+1136.76	0.0027198
+1136.88	0.00271964
+1137	0.00271948
+1137.12	0.00271932
+1137.24	0.00271916
+1137.36	0.002719
+1137.48	0.00271885
+1137.6	0.00271869
+1137.72	0.00271853
+1137.84	0.00271837
+1137.96	0.00271821
+1138.08	0.00271805
+1138.2	0.00271789
+1138.32	0.00271773
+1138.44	0.00271757
+1138.56	0.00271742
+1138.68	0.00271726
+1138.8	0.0027171
+1138.92	0.00271694
+1139.04	0.00271678
+1139.16	0.00271662
+1139.28	0.00271646
+1139.4	0.00271631
+1139.52	0.00271615
+1139.64	0.00271599
+1139.76	0.00271583
+1139.88	0.00271567
+1140	0.00271551
+1140.12	0.00271536
+1140.24	0.0027152
+1140.36	0.00271504
+1140.48	0.00271488
+1140.6	0.00271472
+1140.72	0.00271457
+1140.84	0.00271441
+1140.96	0.00271425
+1141.08	0.00271409
+1141.2	0.00271393
+1141.32	0.00271378
+1141.44	0.00271362
+1141.56	0.00271346
+1141.68	0.0027133
+1141.8	0.00271314
+1141.92	0.00271299
+1142.04	0.00271283
+1142.16	0.00271267
+1142.28	0.00271251
+1142.4	0.00271236
+1142.52	0.0027122
+1142.64	0.00271204
+1142.76	0.00271188
+1142.88	0.00271173
+1143	0.00271157
+1143.12	0.00271141
+1143.24	0.00271125
+1143.36	0.0027111
+1143.48	0.00271094
+1143.6	0.00271078
+1143.72	0.00271063
+1143.84	0.00271047
+1143.96	0.00271031
+1144.08	0.00271015
+1144.2	0.00271
+1144.32	0.00270984
+1144.44	0.00270968
+1144.56	0.00270953
+1144.68	0.00270937
+1144.8	0.00270921
+1144.92	0.00270905
+1145.04	0.0027089
+1145.16	0.00270874
+1145.28	0.00270858
+1145.4	0.00270843
+1145.52	0.00270827
+1145.64	0.00270811
+1145.76	0.00270796
+1145.88	0.0027078
+1146	0.00270764
+1146.12	0.00270749
+1146.24	0.00270733
+1146.36	0.00270717
+1146.48	0.00270702
+1146.6	0.00270686
+1146.72	0.0027067
+1146.84	0.00270655
+1146.96	0.00270639
+1147.08	0.00270624
+1147.2	0.00270608
+1147.32	0.00270592
+1147.44	0.00270577
+1147.56	0.00270561
+1147.68	0.00270545
+1147.8	0.0027053
+1147.92	0.00270514
+1148.04	0.00270499
+1148.16	0.00270483
+1148.28	0.00270467
+1148.4	0.00270452
+1148.52	0.00270436
+1148.64	0.00270421
+1148.76	0.00270405
+1148.88	0.00270389
+1149	0.00270374
+1149.12	0.00270358
+1149.24	0.00270343
+1149.36	0.00270327
+1149.48	0.00270312
+1149.6	0.00270296
+1149.72	0.0027028
+1149.84	0.00270265
+1149.96	0.00270249
+1150.08	0.00270234
+1150.2	0.00270218
+1150.32	0.00270203
+1150.44	0.00270187
+1150.56	0.00270172
+1150.68	0.00270156
+1150.8	0.00270141
+1150.92	0.00270125
+1151.04	0.00270109
+1151.16	0.00270094
+1151.28	0.00270078
+1151.4	0.00270063
+1151.52	0.00270047
+1151.64	0.00270032
+1151.76	0.00270016
+1151.88	0.00270001
+1152	0.00269985
+1152.12	0.0026997
+1152.24	0.00269954
+1152.36	0.00269939
+1152.48	0.00269923
+1152.6	0.00269908
+1152.72	0.00269892
+1152.84	0.00269877
+1152.96	0.00269861
+1153.08	0.00269846
+1153.2	0.00269831
+1153.32	0.00269815
+1153.44	0.002698
+1153.56	0.00269784
+1153.68	0.00269769
+1153.8	0.00269753
+1153.92	0.00269738
+1154.04	0.00269722
+1154.16	0.00269707
+1154.28	0.00269691
+1154.4	0.00269676
+1154.52	0.00269661
+1154.64	0.00269645
+1154.76	0.0026963
+1154.88	0.00269614
+1155	0.00269599
+1155.12	0.00269583
+1155.24	0.00269568
+1155.36	0.00269553
+1155.48	0.00269537
+1155.6	0.00269522
+1155.72	0.00269506
+1155.84	0.00269491
+1155.96	0.00269476
+1156.08	0.0026946
+1156.2	0.00269445
+1156.32	0.00269429
+1156.44	0.00269414
+1156.56	0.00269399
+1156.68	0.00269383
+1156.8	0.00269368
+1156.92	0.00269353
+1157.04	0.00269337
+1157.16	0.00269322
+1157.28	0.00269306
+1157.4	0.00269291
+1157.52	0.00269276
+1157.64	0.0026926
+1157.76	0.00269245
+1157.88	0.0026923
+1158	0.00269214
+1158.12	0.00269199
+1158.24	0.00269184
+1158.36	0.00269168
+1158.48	0.00269153
+1158.6	0.00269138
+1158.72	0.00269122
+1158.84	0.00269107
+1158.96	0.00269092
+1159.08	0.00269076
+1159.2	0.00269061
+1159.32	0.00269046
+1159.44	0.0026903
+1159.56	0.00269015
+1159.68	0.00269
+1159.8	0.00268985
+1159.92	0.00268969
+1160.04	0.00268954
+1160.16	0.00268939
+1160.28	0.00268923
+1160.4	0.00268908
+1160.52	0.00268893
+1160.64	0.00268878
+1160.76	0.00268862
+1160.88	0.00268847
+1161	0.00268832
+1161.12	0.00268817
+1161.24	0.00268801
+1161.36	0.00268786
+1161.48	0.00268771
+1161.6	0.00268756
+1161.72	0.0026874
+1161.84	0.00268725
+1161.96	0.0026871
+1162.08	0.00268695
+1162.2	0.00268679
+1162.32	0.00268664
+1162.44	0.00268649
+1162.56	0.00268634
+1162.68	0.00268618
+1162.8	0.00268603
+1162.92	0.00268588
+1163.04	0.00268573
+1163.16	0.00268558
+1163.28	0.00268542
+1163.4	0.00268527
+1163.52	0.00268512
+1163.64	0.00268497
+1163.76	0.00268482
+1163.88	0.00268466
+1164	0.00268451
+1164.12	0.00268436
+1164.24	0.00268421
+1164.36	0.00268406
+1164.48	0.00268391
+1164.6	0.00268375
+1164.72	0.0026836
+1164.84	0.00268345
+1164.96	0.0026833
+1165.08	0.00268315
+1165.2	0.002683
+1165.32	0.00268284
+1165.44	0.00268269
+1165.56	0.00268254
+1165.68	0.00268239
+1165.8	0.00268224
+1165.92	0.00268209
+1166.04	0.00268194
+1166.16	0.00268178
+1166.28	0.00268163
+1166.4	0.00268148
+1166.52	0.00268133
+1166.64	0.00268118
+1166.76	0.00268103
+1166.88	0.00268088
+1167	0.00268073
+1167.12	0.00268057
+1167.24	0.00268042
+1167.36	0.00268027
+1167.48	0.00268012
+1167.6	0.00267997
+1167.72	0.00267982
+1167.84	0.00267967
+1167.96	0.00267952
+1168.08	0.00267937
+1168.2	0.00267922
+1168.32	0.00267907
+1168.44	0.00267891
+1168.56	0.00267876
+1168.68	0.00267861
+1168.8	0.00267846
+1168.92	0.00267831
+1169.04	0.00267816
+1169.16	0.00267801
+1169.28	0.00267786
+1169.4	0.00267771
+1169.52	0.00267756
+1169.64	0.00267741
+1169.76	0.00267726
+1169.88	0.00267711
+1170	0.00267696
+1170.12	0.00267681
+1170.24	0.00267666
+1170.36	0.00267651
+1170.48	0.00267636
+1170.6	0.00267621
+1170.72	0.00267606
+1170.84	0.00267591
+1170.96	0.00267576
+1171.08	0.00267561
+1171.2	0.00267546
+1171.32	0.00267531
+1171.44	0.00267516
+1171.56	0.00267501
+1171.68	0.00267486
+1171.8	0.00267471
+1171.92	0.00267456
+1172.04	0.00267441
+1172.16	0.00267426
+1172.28	0.00267411
+1172.4	0.00267396
+1172.52	0.00267381
+1172.64	0.00267366
+1172.76	0.00267351
+1172.88	0.00267336
+1173	0.00267321
+1173.12	0.00267306
+1173.24	0.00267291
+1173.36	0.00267276
+1173.48	0.00267261
+1173.6	0.00267246
+1173.72	0.00267231
+1173.84	0.00267216
+1173.96	0.00267201
+1174.08	0.00267187
+1174.2	0.00267172
+1174.32	0.00267157
+1174.44	0.00267142
+1174.56	0.00267127
+1174.68	0.00267112
+1174.8	0.00267097
+1174.92	0.00267082
+1175.04	0.00267067
+1175.16	0.00267052
+1175.28	0.00267037
+1175.4	0.00267023
+1175.52	0.00267008
+1175.64	0.00266993
+1175.76	0.00266978
+1175.88	0.00266963
+1176	0.00266948
+1176.12	0.00266933
+1176.24	0.00266918
+1176.36	0.00266903
+1176.48	0.00266889
+1176.6	0.00266874
+1176.72	0.00266859
+1176.84	0.00266844
+1176.96	0.00266829
+1177.08	0.00266814
+1177.2	0.00266799
+1177.32	0.00266785
+1177.44	0.0026677
+1177.56	0.00266755
+1177.68	0.0026674
+1177.8	0.00266725
+1177.92	0.0026671
+1178.04	0.00266696
+1178.16	0.00266681
+1178.28	0.00266666
+1178.4	0.00266651
+1178.52	0.00266636
+1178.64	0.00266621
+1178.76	0.00266607
+1178.88	0.00266592
+1179	0.00266577
+1179.12	0.00266562
+1179.24	0.00266547
+1179.36	0.00266533
+1179.48	0.00266518
+1179.6	0.00266503
+1179.72	0.00266488
+1179.84	0.00266473
+1179.96	0.00266459
+1180.08	0.00266444
+1180.2	0.00266429
+1180.32	0.00266414
+1180.44	0.002664
+1180.56	0.00266385
+1180.68	0.0026637
+1180.8	0.00266355
+1180.92	0.00266341
+1181.04	0.00266326
+1181.16	0.00266311
+1181.28	0.00266296
+1181.4	0.00266282
+1181.52	0.00266267
+1181.64	0.00266252
+1181.76	0.00266237
+1181.88	0.00266223
+1182	0.00266208
+1182.12	0.00266193
+1182.24	0.00266178
+1182.36	0.00266164
+1182.48	0.00266149
+1182.6	0.00266134
+1182.72	0.0026612
+1182.84	0.00266105
+1182.96	0.0026609
+1183.08	0.00266075
+1183.2	0.00266061
+1183.32	0.00266046
+1183.44	0.00266031
+1183.56	0.00266017
+1183.68	0.00266002
+1183.8	0.00265987
+1183.92	0.00265973
+1184.04	0.00265958
+1184.16	0.00265943
+1184.28	0.00265929
+1184.4	0.00265914
+1184.52	0.00265899
+1184.64	0.00265885
+1184.76	0.0026587
+1184.88	0.00265855
+1185	0.00265841
+1185.12	0.00265826
+1185.24	0.00265811
+1185.36	0.00265797
+1185.48	0.00265782
+1185.6	0.00265767
+1185.72	0.00265753
+1185.84	0.00265738
+1185.96	0.00265724
+1186.08	0.00265709
+1186.2	0.00265694
+1186.32	0.0026568
+1186.44	0.00265665
+1186.56	0.0026565
+1186.68	0.00265636
+1186.8	0.00265621
+1186.92	0.00265607
+1187.04	0.00265592
+1187.16	0.00265577
+1187.28	0.00265563
+1187.4	0.00265548
+1187.52	0.00265534
+1187.64	0.00265519
+1187.76	0.00265504
+1187.88	0.0026549
+1188	0.00265475
+1188.12	0.00265461
+1188.24	0.00265446
+1188.36	0.00265432
+1188.48	0.00265417
+1188.6	0.00265402
+1188.72	0.00265388
+1188.84	0.00265373
+1188.96	0.00265359
+1189.08	0.00265344
+1189.2	0.0026533
+1189.32	0.00265315
+1189.44	0.00265301
+1189.56	0.00265286
+1189.68	0.00265271
+1189.8	0.00265257
+1189.92	0.00265242
+1190.04	0.00265228
+1190.16	0.00265213
+1190.28	0.00265199
+1190.4	0.00265184
+1190.52	0.0026517
+1190.64	0.00265155
+1190.76	0.00265141
+1190.88	0.00265126
+1191	0.00265112
+1191.12	0.00265097
+1191.24	0.00265083
+1191.36	0.00265068
+1191.48	0.00265054
+1191.6	0.00265039
+1191.72	0.00265025
+1191.84	0.0026501
+1191.96	0.00264996
+1192.08	0.00264981
+1192.2	0.00264967
+1192.32	0.00264952
+1192.44	0.00264938
+1192.56	0.00264923
+1192.68	0.00264909
+1192.8	0.00264894
+1192.92	0.0026488
+1193.04	0.00264866
+1193.16	0.00264851
+1193.28	0.00264837
+1193.4	0.00264822
+1193.52	0.00264808
+1193.64	0.00264793
+1193.76	0.00264779
+1193.88	0.00264764
+1194	0.0026475
+1194.12	0.00264736
+1194.24	0.00264721
+1194.36	0.00264707
+1194.48	0.00264692
+1194.6	0.00264678
+1194.72	0.00264663
+1194.84	0.00264649
+1194.96	0.00264635
+1195.08	0.0026462
+1195.2	0.00264606
+1195.32	0.00264591
+1195.44	0.00264577
+1195.56	0.00264563
+1195.68	0.00264548
+1195.8	0.00264534
+1195.92	0.00264519
+1196.04	0.00264505
+1196.16	0.00264491
+1196.28	0.00264476
+1196.4	0.00264462
+1196.52	0.00264447
+1196.64	0.00264433
+1196.76	0.00264419
+1196.88	0.00264404
+1197	0.0026439
+1197.12	0.00264376
+1197.24	0.00264361
+1197.36	0.00264347
+1197.48	0.00264333
+1197.6	0.00264318
+1197.72	0.00264304
+1197.84	0.0026429
+1197.96	0.00264275
+1198.08	0.00264261
+1198.2	0.00264247
+1198.32	0.00264232
+1198.44	0.00264218
+1198.56	0.00264204
+1198.68	0.00264189
+1198.8	0.00264175
+1198.92	0.00264161
+1199.04	0.00264146
+1199.16	0.00264132
+1199.28	0.00264118
+1199.4	0.00264103
+1199.52	0.00264089
+1199.64	0.00264075
+1199.76	0.0026406
+1199.88	0.00264046
+1200	0.00264032
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E.C b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E.C
new file mode 100644
index 0000000000000000000000000000000000000000..bc1d6295c31f7e694191e51a6f1f77a3f470e0ae
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E.C
@@ -0,0 +1,135 @@
+////////////////////////////////////////////////////////////////////////////
+// This macro takes a converted ROOT file from the GANIL e569 exp. and    //
+// create an histogram for each strip (X and Y) of the MUST2 array filled //
+// with the energy. The histograms are dumped in an output ROOT file.     //
+//                                                                        //
+// This is especially usefull for calibration purposes when there is no   //
+// need to work directly on the TChain                                     //
+////////////////////////////////////////////////////////////////////////////
+#include <iostream>
+
+#include "TROOT.h"
+#include "TSystem.h"
+#include "TFile.h"
+#include "TString.h"
+#include "TChain.h"
+#include "TBranch.h"
+#include "TH1F.h"
+#include "TMust2Data.h"
+#include "TMugastData.h"
+#include "TMUSETTData.h"
+#include "RootInput.h"
+
+
+#define NBTELESCOPE 4	
+#define	NBSTRIPS	128
+#define NBSILI     0
+
+
+void ExtractRawHistos(const char* fname = "")
+{
+  RootInput* Input = RootInput::getInstance("RunToTreat.txt");
+  TChain* Chain = Input->GetChain();
+
+  // connect the TfDet.c_str()Data branch  
+  Chain->SetBranchStatus("MUSETT",true);
+  Chain->SetBranchStatus("fMM*",true);
+
+  TMUSETTData* rawMUSETT = new TMUSETTData();
+  Chain->SetBranchAddress("MUSETT",&rawMUSETT);
+
+  // open the output ROOT file
+  TString outFileName = "./Histograms/";
+  outFileName += fname;
+  outFileName += "_RawMUSETTHistos.root";
+  std::cout<< outFileName<< std::endl;
+  TFile *outFile = new TFile(outFileName, "recreate");
+
+  // prepare output histograms for Must2
+  TH1F* hStripXEnergy[NBTELESCOPE][NBSTRIPS];
+  TH1F* hStripYEnergy[NBTELESCOPE][NBSTRIPS];
+  //from i=4 because I wanted only the T5,T8
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSTRIPS; j++) {
+      // strips XE
+      TString hnameXE     = Form("hMM%d_STRX_E%d", i, j);
+      TString htitleXE    = Form("MM%d_STRX_E%d", i, j);
+      hStripXEnergy[i][j] = new TH1F(hnameXE, htitleXE, 16384, 0, 16384);
+      // strips YE
+      TString hnameYE     = Form("hMM%d_STRY_E%d", i, j);
+      TString htitleYE    = Form("MM%d_STRY_E%d", i, j);
+      hStripYEnergy[i][j] = new TH1F(hnameYE, htitleYE, 16384, 0, 16384);
+    }
+  }
+  TH1F* hSiLiEnergy[NBTELESCOPE][NBSILI];
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSILI; j++) {
+      TString hnameSiLiE     = Form("hMM%d_SILI_E%d", i, j);
+      TString htitleSiLiE    = Form("MM%d_SILI_E%d", i, j);
+      hSiLiEnergy[i][j] = new TH1F(hnameSiLiE, htitleSiLiE, 16384, 0, 16384);
+    }
+  }
+
+  // read the data
+  Int_t nentries = Chain->GetEntries();
+  std::cout << "TChain contains " << nentries << " events" << std::endl;
+  for (Int_t i = 0; i < nentries; i++) {
+    if (i%1000 == 0) std::cout << "\rEntry " << i << "\t" << i/(double)nentries * 100 << " %" << flush;
+    ///////////////////////
+    // read Must2 branch //
+    ///////////////////////
+    //brMust2->GetEntry(i);
+    Chain->GetEntry(i);
+    // get StripXE multiplicity
+    Int_t multXE = 0; 
+    multXE = rawMUSETT->GetDSSDXEMult();
+    //std::cout<< "multXE" << multXE<< std::endl;
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    //
+    Int_t det = 0;   
+    Int_t stripX = 0;
+    Int_t energy = 0;
+
+    for (Int_t j = 0; j < multXE; j++) {
+      det    = rawMUSETT->GetDSSDXEDetectorNbr(j);
+      stripX = rawMUSETT->GetDSSDXEStripNbr(j);
+      energy = rawMUSETT->GetDSSDXEEnergy(j);
+      if ((det < NBTELESCOPE) && (stripX < NBSTRIPS)) {
+        hStripXEnergy[det][stripX]->Fill(energy);
+      } 
+      else {
+        std::cout << "Error filling histograms: X_E" << std::endl;
+        rawMUSETT->Dump();
+      }
+    }
+    // get StripYE multiplicity
+    Int_t multYE=0;
+    multYE = rawMUSETT->GetDSSDYEMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+
+    det = 0;   
+    Int_t stripY = 0;
+    energy = 0;
+    for (Int_t j = 0; j < multYE; j++) {
+      det    = rawMUSETT->GetDSSDYEDetectorNbr(j);
+      stripY = rawMUSETT->GetDSSDYEStripNbr(j);
+      energy = rawMUSETT->GetDSSDYEEnergy(j);
+
+      if ((det < NBTELESCOPE) && (stripY < NBSTRIPS)) {
+        hStripYEnergy[det][stripY]->Fill(energy);
+      }
+      else {
+        std::cout << "Error filling histograms: Y_E" << std::endl;
+          rawMUSETT->Dump();
+      }
+    }
+
+  }
+  std::cout << '\n';
+
+  // write on disk output file and close it
+  outFile->Write();
+  outFile->Close();
+}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_C.d b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..f73ae0701dbdcd661dae56769450b132008af571
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_C.d
@@ -0,0 +1,118 @@
+
+# DO NOT DELETE
+
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSystem.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInetAddress.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTimer.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSysEvtHandler.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTime.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TChain.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TMust2Data.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TMugastData.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TMUSETTData.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/RootInput.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReader.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReaderUtils.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchProxyDirector.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TLeaf.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClonesArray.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TError.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualCollectionProxy.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClassRef.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNotifyLink.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReaderValue.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTreeReaderArray.h
+./ExtractRawHisto_E_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/NPInputParser.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVector3.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVector2.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrix.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixF.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixT.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixTBase.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFBasefwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixDBasefwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixTUtils.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFUtils.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMatrixFUtilsfwd.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMath.h
+./ExtractRawHisto_E_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+ExtractRawHisto_E_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_Pedestals.C b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_Pedestals.C
new file mode 100644
index 0000000000000000000000000000000000000000..07e08e0c7185b3cab9dbea5f474415b7d893ae8f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_Pedestals.C
@@ -0,0 +1,326 @@
+////////////////////////////////////////////////////////////////////////////
+// This macro takes a converted ROOT file from the GANIL e569 exp. and    //
+// create an histogram for each strip (X and Y) of the MUST2 array filled //
+// with the energy. The histograms are dumped in an output ROOT file.     //
+//                                                                        //
+// This is especially usefull for calibration purposes when there is no   //
+// need to work directly on the TChain                                     //
+////////////////////////////////////////////////////////////////////////////
+#include <iostream>
+#include <fstream>
+#include <map>
+#include <string>
+#include <vector>
+
+#include "TROOT.h"
+#include "TSystem.h"
+#include "TFile.h"
+#include "TString.h"
+#include "TChain.h"
+#include "TBranch.h"
+#include "TH1F.h"
+
+#include "/home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/MUST2/TMust2Data.h"
+#include "/home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/Mugast/TMugastData.h"
+#include "/home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/include/RootInput.h"
+
+#define NBTELESCOPE 4	
+#define	NBSTRIPS	128
+#define NBSILI     0
+
+class pedestal{
+  public:
+    pedestal(){};
+    ~pedestal(){};
+  public: 
+    map<int, vector<int> > pedestalX;
+    map<int, vector<int> > pedestalY;
+  
+    int get_pedestalX(int det,int strip){
+      return pedestalX[det][strip-1];
+      }
+    int get_pedestalY(int det,int strip){
+      return pedestalY[det][strip-1];
+      }
+
+  public:
+    int SubstractX(int det, int strip,pedestal other){
+        return (get_pedestalX(det,strip)-other.get_pedestalX(det,strip));
+      }
+    
+    int SubstractY(int det, int strip,pedestal other){
+        return (get_pedestalY(det,strip)-other.get_pedestalY(det,strip));
+      }
+
+
+    void print(){
+      cout << "X" << endl;
+      for(auto& it: pedestalX){
+        cout << " Telescope: " << it.first << endl;
+        unsigned int size = it.second.size();
+        for(unsigned int i = 0 ; i < size ; i++){
+          std::cout << " strip: " << i+1 << " pedestal: " << it.second[i] << "\n"; 
+        } 
+      }
+
+      cout << "Y" << endl;
+      for(auto& it: pedestalY){
+        cout << " Telescope: " << it.first << endl;
+        unsigned int size = it.second.size();
+        for(unsigned int i = 0 ; i < size ; i++){
+          std::cout << " strip: " << i+1 << " pedestal: " << it.second[i] << "\n"; 
+        } 
+      }
+    }
+
+    void LoadPedestals(const std::string& path, int num){
+      ifstream file(path.c_str());
+      std::string buffer;
+      // ignore the first line of comments
+      getline(file,buffer);
+      int pedestalE,pedestalT;
+      int mate=0;
+      int count=0;
+
+      while (file >> pedestalE >> pedestalT){
+        if(count++%16==0){
+          mate++; 
+        }
+        if(mate<9){ // X
+          pedestalX[num].push_back(pedestalE);
+        } 
+        else if(mate>8&&mate<17){ // Y
+          pedestalY[num].push_back(pedestalE);
+        }
+        else{ // SiLi/CsI
+          break; 
+        }
+      }
+    }
+};
+////////////////////////////////////////////////////////////////////////////////
+void Test(){
+  pedestal q;
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector1",1);
+
+  pedestal p;
+  p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI3_Sector1",1);
+ 
+  for(unsigned int i = 0 ; i < 128 ; i++){
+    cout << p.SubstractX(1,i+1,q) << " " << p.SubstractY(1,i+1,q)  << endl;
+  }
+}
+///////////////////////////////////////////////////////////////////////////////
+void ExtractRawHistos(const char* fname = "run_XXXX_X", std::string fDet="MUST2")
+{
+
+  pedestal p,q;
+  if(fDet=="MUST2"){
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector1.pedestal",1);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector2.pedestal",2);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector3.pedestal",3);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector4.pedestal",4); 
+
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector1.pedestal",1);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector2.pedestal",2);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector3.pedestal",3);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/test2023_sourceON_sector4.pedestal",4); 
+
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector1",1);
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector2",2);
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector3",3);
+   // q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI3_Sector4",4); 
+
+    }
+
+ else if(fDet=="Mugast"){
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector1",1);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector2",3);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector3",4);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI1_Sector4",5); 
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector1",7);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector2",9);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector3",10);
+   p.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/run165/pedestal_das_run165_MUVI2_Sector4",11); 
+
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector1",1);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector2",3);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector3",4);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI1_Sector4",5); 
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector1",7);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector2",9);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector3",10);
+   q.LoadPedestals("/home/mugast/ganacq_manip/mugast/das-save/pedestal-save/pedestal_read_3april_15h18/pedestal_MUVI2_Sector4",11); 
+ 
+    }
+
+  else{
+    cout << "Error in detector name " << fDet << endl;
+    exit(1);
+    }
+
+
+  RootInput* Input = RootInput::getInstance("RunToTreat.txt");
+  TChain* Chain = Input->GetChain();
+  // connect the TfDet.c_str()Data branch  
+  Chain->SetBranchStatus(fDet.c_str(),true);
+  Chain->SetBranchStatus("fMM*",true);
+
+  TMust2Data *rawMust2;
+  TMugastData *rawMugast;
+  if (fDet=="MUST2"){
+    rawMust2 = new TMust2Data();
+    Chain->SetBranchAddress(fDet.c_str(),&rawMust2);
+  }
+  else if (fDet=="Mugast"){
+    rawMugast = new TMugastData();
+    Chain->SetBranchAddress(fDet.c_str(),&rawMugast);
+  }
+
+  // open the output ROOT file
+  TString outFileName = "./Histograms/";
+  outFileName += fname;
+  outFileName += "_Raw" + fDet + "Histos_CorrectionPedestals.root";
+  cout<< outFileName<< endl;
+  TFile *outFile = new TFile(outFileName, "recreate");
+
+  // prepare output histograms for Must2
+  TH1F* hStripXEnergy[NBTELESCOPE][NBSTRIPS];
+  TH1F* hStripYEnergy[NBTELESCOPE][NBSTRIPS];
+  //from i=4 because I wanted only the T5,T8
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSTRIPS; j++) {
+      // strips XE
+      TString hnameXE     = Form("hMM%d_STRX_E%d", i+1, j+1);
+      TString htitleXE    = Form("MM%d_STRX_E%d", i+1, j+1);
+      hStripXEnergy[i][j] = new TH1F(hnameXE, htitleXE, 16384, 0, 16384);
+      // strips YE
+      TString hnameYE     = Form("hMM%d_STRY_E%d", i+1, j+1);
+      TString htitleYE    = Form("MM%d_STRY_E%d", i+1, j+1);
+      hStripYEnergy[i][j] = new TH1F(hnameYE, htitleYE, 16384, 0, 16384);
+    }
+  }
+  TH1F* hSiLiEnergy[NBTELESCOPE][NBSILI];
+  for (Int_t i = 0; i < NBTELESCOPE; i++) {
+    for (Int_t j = 0; j < NBSILI; j++) {
+      TString hnameSiLiE     = Form("hMM%d_SILI_E%d", i+1, j+1);
+      TString htitleSiLiE    = Form("MM%d_SILI_E%d", i+1, j+1);
+      hSiLiEnergy[i][j] = new TH1F(hnameSiLiE, htitleSiLiE, 16384, 0, 16384);
+    }
+  }
+
+  // read the data
+  Int_t nentries = Chain->GetEntries();
+  cout << "TChain contains " << nentries << " events" << endl;
+  for (Int_t i = 0; i < nentries; i++) {
+    if (i%1000 == 0) cout << "\rEntry " << i << "\t" << i/(double)nentries * 100 << " %" << flush;
+    ///////////////////////
+    // read Must2 branch //
+    ///////////////////////
+    //brMust2->GetEntry(i);
+    Chain->GetEntry(i);
+    // get StripXE multiplicity
+    Int_t multXE = 0; 
+    if (fDet=="MUST2"){
+      multXE = rawMust2->GetMMStripXEMult();
+    }else if (fDet=="Mugast"){
+      multXE = rawMugast->GetDSSDXEMult();
+    }
+    //cout<< "multXE" << multXE<< endl;
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    //
+    Int_t det = 0;   
+    Int_t stripX = 0;
+    Int_t energy = 0;
+
+    for (Int_t j = 0; j < multXE; j++) {
+      if (fDet=="MUST2"){
+        det    = rawMust2->GetMMStripXEDetectorNbr(j);
+        stripX = rawMust2->GetMMStripXEStripNbr(j);
+        energy = rawMust2->GetMMStripXEEnergy(j);
+      } else if (fDet=="Mugast"){
+        det    = rawMugast->GetDSSDXEDetectorNbr(j);
+        stripX = rawMugast->GetDSSDXEStripNbr(j);
+        energy = rawMugast->GetDSSDXEEnergy(j);
+      }
+      if ((det < NBTELESCOPE+1) && (stripX < NBSTRIPS+1)) {
+        std::cout << ">>>>>>>>>> DEBUG : " << 0 << std::endl;
+        std::cout << det << " " << stripX << " " << q  << std::endl;
+        hStripXEnergy[det-1][stripX-1]->Fill(energy + p.SubstractX(det, stripX, q));
+        std::cout << ">>>>>>>>>> DEBUG : " << 1 << std::endl;
+      } else {
+        cout << "Error filling histograms: X_E" << endl;
+        if (fDet=="MUST2"){
+          rawMust2->Dump();
+        } else if (fDet=="Mugast"){
+          rawMugast->Dump();
+        }
+      }
+    }
+    std::cout << ">>>>>>>>>> DEBUG : " << 2 << std::endl;
+    // get StripYE multiplicity
+    Int_t multYE=0;
+    if (fDet=="MUST2"){
+      multYE = rawMust2->GetMMStripYEMult();
+    } else if (fDet=="Mugast"){
+      multYE = rawMugast->GetDSSDYEMult();
+    }
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+
+    det = 0;   
+    Int_t stripY = 0;
+    energy = 0;
+    for (Int_t j = 0; j < multYE; j++) {
+      if (fDet=="MUST2"){
+        det    = rawMust2->GetMMStripYEDetectorNbr(j);
+        stripY = rawMust2->GetMMStripYEStripNbr(j);
+        energy = rawMust2->GetMMStripYEEnergy(j);
+      }else if (fDet=="Mugast"){
+        det    = rawMugast->GetDSSDYEDetectorNbr(j);
+        stripY = rawMugast->GetDSSDYEStripNbr(j);
+        energy = rawMugast->GetDSSDYEEnergy(j);
+      }
+
+      if ((det < NBTELESCOPE+1) && (stripY < NBSTRIPS+1)) {
+        hStripYEnergy[det-1][stripY-1]->Fill(energy + p.SubstractY(det, stripY, q));
+      }
+      else {
+        cout << "Error filling histograms: Y_E" << endl;
+        if (fDet=="MUST2"){
+          rawMust2->Dump();
+        }else if (fDet=="Mugast"){
+          rawMugast->Dump();
+        }
+      }
+    }
+    // get SiLiE multiplicity
+
+    //Int_t multSiLiE = rawMust2->GetMMSiLiEMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    /* for (Int_t j = 0; j < multSiLiE; j++) {
+       Int_t det    = rawMust2->GetMMSiLiEDetectorNbr(j);
+       Int_t pad = rawMust2->GetMMSiLiEPadNbr(j);
+       Int_t energy = rawMust2->GetMMSiLiEEnergy(j);
+       if ((det < NBTELESCOPE+1) && (pad < NBSTRIPS+1)) {
+       hSiLiEnergy[det-1][pad-1]->Fill(energy);
+       }
+       else {
+       cout << "Error filling histograms: Must2_SiLi_E" << endl;
+       rawMust2->Dump();
+       }
+       }*/
+
+  }
+  cout << '\n';
+
+  // write on disk output file and close it
+  outFile->Write();
+  outFile->Close();
+}
+
+
+
+
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_Pedestals_C.d b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_Pedestals_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..d138211b1436102725e3c59c452c1132ac2f6696
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/ExtractRawHisto_E_Pedestals_C.d
@@ -0,0 +1,105 @@
+
+# DO NOT DELETE
+
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TROOT.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDirectory.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TNamed.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TObject.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Rtypes.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RtypesCore.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RConfig.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RVersion.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RConfigure.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/DllImport.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/strtok.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/strlcpy.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/snprintf.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TGenericClassInfo.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSchemaHelper.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TIsAProxy.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualIsAProxy.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TStorage.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVersionCheck.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RVersion.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TString.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMathBase.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RStringView.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RWrap_libcpp_string_view.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/libcpp_string_view.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TypeTraits.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TClass.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDictionary.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ESTLType.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TObjArray.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSeqCollection.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TCollection.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TIterator.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualRWMutex.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualMutex.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TUUID.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TList.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBuffer.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDataType.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Bytes.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSystem.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TInetAddress.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TTimer.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TSysEvtHandler.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TQObject.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualQConnection.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TInterpreter.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TInterpreterValue.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TTime.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TFile.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Compression.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDirectoryFile.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TDatime.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TUrl.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/RConcurrentHashColl.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TRWSpinLock.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TSpinMutex.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TChain.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TTree.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/TIOFeatures.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayD.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArray.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayI.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttFill.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttLine.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttMarker.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVirtualTreePlayer.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBranch.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBranchCacheInfo.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TBits.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TH1F.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TH1.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAxis.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TAttAxis.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayC.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayS.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TArrayF.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/Foption.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/ROOT/EExecutionPolicy.hxx
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVectorFfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVectorDfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TFitResultPtr.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/MUST2/TMust2Data.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/Detectors/Mugast/TMugastData.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/include/RootInput.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/mugast/Analysis_MUGAST_LISE_test/nptool/NPLib/include/NPInputParser.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVector3.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TError.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TVector2.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrix.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixF.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixT.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixTBase.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFBasefwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixDBasefwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixTUtils.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFUtils.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMatrixFUtilsfwd.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/TMath.h
+./ExtractRawHisto_E_Pedestals_C.so: /home/global/root/root_v6.24.06_C7_build/include/RVersion.h /home/global/root/root_v6.24.06_C7_build/include/RConfig.h /home/global/root/root_v6.24.06_C7_build/include/TClass.h /home/global/root/root_v6.24.06_C7_build/include/TDictAttributeMap.h /home/global/root/root_v6.24.06_C7_build/include/TInterpreter.h /home/global/root/root_v6.24.06_C7_build/include/TROOT.h /home/global/root/root_v6.24.06_C7_build/include/TBuffer.h /home/global/root/root_v6.24.06_C7_build/include/TMemberInspector.h /home/global/root/root_v6.24.06_C7_build/include/TError.h /home/global/root/root_v6.24.06_C7_build/include/RtypesImp.h /home/global/root/root_v6.24.06_C7_build/include/TIsAProxy.h /home/global/root/root_v6.24.06_C7_build/include/TFileMergeInfo.h /home/global/root/root_v6.24.06_C7_build/include/TCollectionProxyInfo.h /home/global/root/root_v6.24.06_C7_build/bin/rootcling
+ExtractRawHisto_E_Pedestals_C__ROOTBUILDVERSION= 6.24/06
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Histograms/.root_hist b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Histograms/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..6b4b500a7726e9e6c5e7c63a866a6a205d31e8a3
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/Histograms/.root_hist
@@ -0,0 +1,6 @@
+TFile *_file0 = TFile::Open("run_9_RawMUST2Histos.root")
+new TBrowser
+.q
+TFile *_file0 = TFile::Open("run_19_RawMUST2Histos.root")
+new TBrowser
+.q
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/RunToTreat.txt b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/RunToTreat.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d0a124b1b2968d6a7b0be5aea4352f4afd832cb1
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Energy/RunToTreat.txt
@@ -0,0 +1,4 @@
+TTreeName 
+	RD
+RootFileName 
+  ~/npTreeReader/np-tree-reader/Projects/MUSETT/RootR/run_0274.root
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M0_E/Cal_Str_X_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b56df0bbb27f890ca4f6493ba76adaea922fcb94
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E -61.6623 0.00752711
+MUSETT_T0_DSSD_X1_E -61.862300000000005 0.0075515
+MUSETT_T0_DSSD_X2_E -61.786 0.00754225
+MUSETT_T0_DSSD_X3_E -61.4886 0.0075058699999999996
+MUSETT_T0_DSSD_X4_E -61.896800000000006 0.00755579
+MUSETT_T0_DSSD_X5_E -61.6415 0.007524530000000001
+MUSETT_T0_DSSD_X6_E -61.3994 0.00749501
+MUSETT_T0_DSSD_X7_E -61.2364 0.00747509
+MUSETT_T0_DSSD_X8_E -60.9865 0.0074446
+MUSETT_T0_DSSD_X9_E -62.6813 0.0076514800000000004
+MUSETT_T0_DSSD_X10_E -62.3935 0.00761631
+MUSETT_T0_DSSD_X11_E -61.9253 0.00755919
+MUSETT_T0_DSSD_X12_E -62.029900000000005 0.00757195
+MUSETT_T0_DSSD_X13_E -61.7577 0.00753873
+MUSETT_T0_DSSD_X14_E -62.4176 0.00761932
+MUSETT_T0_DSSD_X15_E -61.2753 0.00747982
+MUSETT_T0_DSSD_X16_E -63.0583 0.00769749
+MUSETT_T0_DSSD_X17_E -62.722199999999994 0.00765646
+MUSETT_T0_DSSD_X18_E -62.1349 0.007584769999999999
+MUSETT_T0_DSSD_X19_E -62.4581 0.00762423
+MUSETT_T0_DSSD_X20_E -63.902699999999996 0.00780057
+MUSETT_T0_DSSD_X21_E -62.5199 0.00763181
+MUSETT_T0_DSSD_X22_E -62.2975 0.00760463
+MUSETT_T0_DSSD_X23_E -62.6596 0.00764878
+MUSETT_T0_DSSD_X24_E -62.8523 0.00767238
+MUSETT_T0_DSSD_X25_E -62.9854 0.00768854
+MUSETT_T0_DSSD_X26_E -63.073699999999995 0.00769941
+MUSETT_T0_DSSD_X27_E -62.632 0.00764548
+MUSETT_T0_DSSD_X28_E -63.013400000000004 0.00769203
+MUSETT_T0_DSSD_X29_E -62.579 0.00763901
+MUSETT_T0_DSSD_X30_E -63.4015 0.0077394
+MUSETT_T0_DSSD_X31_E -62.63 0.007645229999999999
+MUSETT_T0_DSSD_X32_E -56.399 0.00688462
+MUSETT_T0_DSSD_X33_E -56.789199999999994 0.00693221
+MUSETT_T0_DSSD_X34_E -55.5642 0.00678269
+MUSETT_T0_DSSD_X35_E -56.333400000000005 0.00687654
+MUSETT_T0_DSSD_X36_E -56.0406 0.00684084
+MUSETT_T0_DSSD_X37_E -10.0 0.0
+MUSETT_T0_DSSD_X38_E -55.909699999999994 0.006824869999999999
+MUSETT_T0_DSSD_X39_E -55.6584 0.006794209999999999
+MUSETT_T0_DSSD_X40_E -56.211800000000004 0.00686172
+MUSETT_T0_DSSD_X41_E -55.874 0.00682053
+MUSETT_T0_DSSD_X42_E -56.1648 0.00685597
+MUSETT_T0_DSSD_X43_E -56.3075 0.00687343
+MUSETT_T0_DSSD_X44_E -56.382 0.00688247
+MUSETT_T0_DSSD_X45_E -10.0 0.0
+MUSETT_T0_DSSD_X46_E -10.0 0.0
+MUSETT_T0_DSSD_X47_E -55.9115 0.00682508
+MUSETT_T0_DSSD_X48_E -57.9275 0.00707116
+MUSETT_T0_DSSD_X49_E -57.924800000000005 0.007070809999999999
+MUSETT_T0_DSSD_X50_E -57.746 0.007049000000000001
+MUSETT_T0_DSSD_X51_E -57.3431 0.00699988
+MUSETT_T0_DSSD_X52_E -58.1722 0.00710106
+MUSETT_T0_DSSD_X53_E -57.2377 0.00698697
+MUSETT_T0_DSSD_X54_E -57.8763 0.00706488
+MUSETT_T0_DSSD_X55_E -57.5235 0.00702188
+MUSETT_T0_DSSD_X56_E -58.500699999999995 0.00714114
+MUSETT_T0_DSSD_X57_E -57.7865 0.00705393
+MUSETT_T0_DSSD_X58_E -57.3004 0.00699465
+MUSETT_T0_DSSD_X59_E -57.7909 0.00705448
+MUSETT_T0_DSSD_X60_E -57.2034 0.0069828
+MUSETT_T0_DSSD_X61_E -57.985 0.0070782
+MUSETT_T0_DSSD_X62_E -57.8887 0.00706644
+MUSETT_T0_DSSD_X63_E -58.1271 0.00709555
+MUSETT_T0_DSSD_X64_E -63.452400000000004 0.00774561
+MUSETT_T0_DSSD_X65_E -63.6121 0.0077651099999999995
+MUSETT_T0_DSSD_X66_E -63.338699999999996 0.00773174
+MUSETT_T0_DSSD_X67_E -64.0218 0.00781515
+MUSETT_T0_DSSD_X68_E -63.1974 0.00771456
+MUSETT_T0_DSSD_X69_E -63.9684 0.0078086399999999995
+MUSETT_T0_DSSD_X70_E -63.8538 0.00779469
+MUSETT_T0_DSSD_X71_E -63.3564 0.007733970000000001
+MUSETT_T0_DSSD_X72_E -64.1177 0.00782683
+MUSETT_T0_DSSD_X73_E -63.242599999999996 0.00772007
+MUSETT_T0_DSSD_X74_E -63.9725 0.00780918
+MUSETT_T0_DSSD_X75_E -63.9414 0.0078053
+MUSETT_T0_DSSD_X76_E -63.6518 0.0077700899999999995
+MUSETT_T0_DSSD_X77_E -63.7543 0.00778255
+MUSETT_T0_DSSD_X78_E -64.2928 0.00784837
+MUSETT_T0_DSSD_X79_E -64.6906 0.00789693
+MUSETT_T0_DSSD_X80_E -61.2158 0.0074727100000000005
+MUSETT_T0_DSSD_X81_E -60.8651 0.007429949999999999
+MUSETT_T0_DSSD_X82_E -61.1473 0.00746434
+MUSETT_T0_DSSD_X83_E -61.4696 0.0075036899999999995
+MUSETT_T0_DSSD_X84_E -61.3791 0.00749269
+MUSETT_T0_DSSD_X85_E -61.8887 0.00755484
+MUSETT_T0_DSSD_X86_E -61.4032 0.00749554
+MUSETT_T0_DSSD_X87_E -62.1665 0.00758877
+MUSETT_T0_DSSD_X88_E -61.8964 0.007555780000000001
+MUSETT_T0_DSSD_X89_E -61.5721 0.00751618
+MUSETT_T0_DSSD_X90_E -61.7205 0.007534239999999999
+MUSETT_T0_DSSD_X91_E -62.7965 0.00766557
+MUSETT_T0_DSSD_X92_E -61.8681 0.00755224
+MUSETT_T0_DSSD_X93_E -60.9991 0.00744621
+MUSETT_T0_DSSD_X94_E -61.368199999999995 0.00749129
+MUSETT_T0_DSSD_X95_E -62.1668 0.00758877
+MUSETT_T0_DSSD_X96_E -57.1697 0.00697872
+MUSETT_T0_DSSD_X97_E -57.564 0.0070268100000000005
+MUSETT_T0_DSSD_X98_E -57.724199999999996 0.00704642
+MUSETT_T0_DSSD_X99_E -57.113099999999996 0.00697176
+MUSETT_T0_DSSD_X100_E -58.1265 0.0070955
+MUSETT_T0_DSSD_X101_E -57.7465 0.00704909
+MUSETT_T0_DSSD_X102_E -57.6654 0.00703921
+MUSETT_T0_DSSD_X103_E -57.244699999999995 0.00698784
+MUSETT_T0_DSSD_X104_E -57.357800000000005 0.00700171
+MUSETT_T0_DSSD_X105_E -57.943599999999996 0.0070732
+MUSETT_T0_DSSD_X106_E -57.2791 0.00699197
+MUSETT_T0_DSSD_X107_E -57.6282 0.00703471
+MUSETT_T0_DSSD_X108_E -58.567699999999995 0.0071494
+MUSETT_T0_DSSD_X109_E -58.0135 0.00708178
+MUSETT_T0_DSSD_X110_E -57.6815 0.00704111
+MUSETT_T0_DSSD_X111_E -57.7954 0.00705508
+MUSETT_T0_DSSD_X112_E -59.002300000000005 0.00720244
+MUSETT_T0_DSSD_X113_E -59.1922 0.00722562
+MUSETT_T0_DSSD_X114_E -58.512800000000006 0.00714267
+MUSETT_T0_DSSD_X115_E -58.6713 0.0071620699999999995
+MUSETT_T0_DSSD_X116_E -58.1716 0.00710101
+MUSETT_T0_DSSD_X117_E -58.3505 0.00712281
+MUSETT_T0_DSSD_X118_E -58.281400000000005 0.00711445
+MUSETT_T0_DSSD_X119_E -58.508199999999995 0.0071421
+MUSETT_T0_DSSD_X120_E -58.5117 0.00714253
+MUSETT_T0_DSSD_X121_E -58.6539 0.0071598899999999995
+MUSETT_T0_DSSD_X122_E -58.5504 0.00714724
+MUSETT_T0_DSSD_X123_E -59.318400000000004 0.00724097
+MUSETT_T0_DSSD_X124_E -57.853 0.007062140000000001
+MUSETT_T0_DSSD_X125_E -58.498400000000004 0.00714087
+MUSETT_T0_DSSD_X126_E -58.4264 0.00713213
+MUSETT_T0_DSSD_X127_E -59.5126 0.00726467
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M0_E/Cal_Str_Y_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..7c5d41b25a59ce5a29553a76ed64aac9acbd191e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_Y0_E -10.0 0.0
+MUSETT_T0_DSSD_Y1_E 60.4435 -0.007378389999999999
+MUSETT_T0_DSSD_Y2_E 60.9085 -0.00743514
+MUSETT_T0_DSSD_Y3_E 61.060199999999995 -0.00745367
+MUSETT_T0_DSSD_Y4_E 59.9844 -0.00732237
+MUSETT_T0_DSSD_Y5_E 60.1295 -0.0073401
+MUSETT_T0_DSSD_Y6_E 60.7831 -0.007419889999999999
+MUSETT_T0_DSSD_Y7_E 60.431 -0.0073769099999999995
+MUSETT_T0_DSSD_Y8_E 60.140699999999995 -0.00734142
+MUSETT_T0_DSSD_Y9_E 59.998400000000004 -0.00732403
+MUSETT_T0_DSSD_Y10_E 60.3957 -0.0073725399999999995
+MUSETT_T0_DSSD_Y11_E 60.0283 -0.00732774
+MUSETT_T0_DSSD_Y12_E 60.887800000000006 -0.00743267
+MUSETT_T0_DSSD_Y13_E 61.0665 -0.00745441
+MUSETT_T0_DSSD_Y14_E 61.164 -0.007466319999999999
+MUSETT_T0_DSSD_Y15_E 60.7398 -0.00741458
+MUSETT_T0_DSSD_Y16_E 60.4435 -0.00737838
+MUSETT_T0_DSSD_Y17_E 60.5444 -0.00739071
+MUSETT_T0_DSSD_Y18_E 60.303 -0.0073612
+MUSETT_T0_DSSD_Y19_E 60.1433 -0.007341739999999999
+MUSETT_T0_DSSD_Y20_E 60.3286 -0.0073644
+MUSETT_T0_DSSD_Y21_E 60.395900000000005 -0.00737256
+MUSETT_T0_DSSD_Y22_E 60.276 -0.00735798
+MUSETT_T0_DSSD_Y23_E 59.6842 -0.007285720000000001
+MUSETT_T0_DSSD_Y24_E 60.1879 -0.00734719
+MUSETT_T0_DSSD_Y25_E 59.7764 -0.00729698
+MUSETT_T0_DSSD_Y26_E 60.1286 -0.00733997
+MUSETT_T0_DSSD_Y27_E 60.4505 -0.00737922
+MUSETT_T0_DSSD_Y28_E 59.8905 -0.00731089
+MUSETT_T0_DSSD_Y29_E 59.6473 -0.0072812
+MUSETT_T0_DSSD_Y30_E 59.834900000000005 -0.00730412
+MUSETT_T0_DSSD_Y31_E 60.9991 -0.007446240000000001
+MUSETT_T0_DSSD_Y32_E 56.5525 -0.0069034100000000004
+MUSETT_T0_DSSD_Y33_E 57.0745 -0.00696718
+MUSETT_T0_DSSD_Y34_E 56.5365 -0.0069015000000000005
+MUSETT_T0_DSSD_Y35_E 57.036300000000004 -0.00696248
+MUSETT_T0_DSSD_Y36_E 57.4051 -0.007007500000000001
+MUSETT_T0_DSSD_Y37_E 57.2592 -0.0069897200000000005
+MUSETT_T0_DSSD_Y38_E 56.419599999999996 -0.00688718
+MUSETT_T0_DSSD_Y39_E 56.4611 -0.00689226
+MUSETT_T0_DSSD_Y40_E 56.9516 -0.00695213
+MUSETT_T0_DSSD_Y41_E 56.8 -0.00693367
+MUSETT_T0_DSSD_Y42_E 56.6005 -0.00690927
+MUSETT_T0_DSSD_Y43_E 56.5115 -0.0068984
+MUSETT_T0_DSSD_Y44_E 56.8705 -0.00694221
+MUSETT_T0_DSSD_Y45_E 56.9936 -0.006957270000000001
+MUSETT_T0_DSSD_Y46_E 57.6797 -0.00704103
+MUSETT_T0_DSSD_Y47_E 56.5606 -0.00690438
+MUSETT_T0_DSSD_Y48_E 57.5466 -0.0070247700000000005
+MUSETT_T0_DSSD_Y49_E 57.0358 -0.006962449999999999
+MUSETT_T0_DSSD_Y50_E 56.800599999999996 -0.00693377
+MUSETT_T0_DSSD_Y51_E 56.5058 -0.00689773
+MUSETT_T0_DSSD_Y52_E 57.1614 -0.006977789999999999
+MUSETT_T0_DSSD_Y53_E 56.855 -0.0069403600000000005
+MUSETT_T0_DSSD_Y54_E 56.619699999999995 -0.00691168
+MUSETT_T0_DSSD_Y55_E 57.6218 -0.00703399
+MUSETT_T0_DSSD_Y56_E 57.3597 -0.00700197
+MUSETT_T0_DSSD_Y57_E 56.825900000000004 -0.006936759999999999
+MUSETT_T0_DSSD_Y58_E 57.0315 -0.00696191
+MUSETT_T0_DSSD_Y59_E 57.2393 -0.00698735
+MUSETT_T0_DSSD_Y60_E 57.2548 -0.00698918
+MUSETT_T0_DSSD_Y61_E 57.074400000000004 -0.00696716
+MUSETT_T0_DSSD_Y62_E 57.5745 -0.00702822
+MUSETT_T0_DSSD_Y63_E 57.9124 -0.00706943
+MUSETT_T0_DSSD_Y64_E 61.0028 -0.00744668
+MUSETT_T0_DSSD_Y65_E 61.155300000000004 -0.0074653
+MUSETT_T0_DSSD_Y66_E 61.0533 -0.00745282
+MUSETT_T0_DSSD_Y67_E 61.373400000000004 -0.0074919
+MUSETT_T0_DSSD_Y68_E 60.4897 -0.00738403
+MUSETT_T0_DSSD_Y69_E 61.5803 -0.007517159999999999
+MUSETT_T0_DSSD_Y70_E 60.8956 -0.0074336
+MUSETT_T0_DSSD_Y71_E 60.4003 -0.0073731
+MUSETT_T0_DSSD_Y72_E 61.676199999999994 -0.00752889
+MUSETT_T0_DSSD_Y73_E 61.1073 -0.0074594399999999995
+MUSETT_T0_DSSD_Y74_E 61.1132 -0.00746014
+MUSETT_T0_DSSD_Y75_E 61.2304 -0.00747441
+MUSETT_T0_DSSD_Y76_E 60.5934 -0.00739669
+MUSETT_T0_DSSD_Y77_E 61.4122 -0.0074966600000000005
+MUSETT_T0_DSSD_Y78_E 61.6767 -0.0075289400000000005
+MUSETT_T0_DSSD_Y79_E 61.1145 -0.00746029
+MUSETT_T0_DSSD_Y80_E 62.3355 -0.00760932
+MUSETT_T0_DSSD_Y81_E 61.110800000000005 -0.00745984
+MUSETT_T0_DSSD_Y82_E 61.5895 -0.00751825
+MUSETT_T0_DSSD_Y83_E 62.0645 -0.007576240000000001
+MUSETT_T0_DSSD_Y84_E 61.0049 -0.00744692
+MUSETT_T0_DSSD_Y85_E 60.9003 -0.00743416
+MUSETT_T0_DSSD_Y86_E 61.8108 -0.00754524
+MUSETT_T0_DSSD_Y87_E 61.4395 -0.00749992
+MUSETT_T0_DSSD_Y88_E 61.153 -0.00746501
+MUSETT_T0_DSSD_Y89_E 61.3099 -0.00748418
+MUSETT_T0_DSSD_Y90_E 61.1603 -0.00746589
+MUSETT_T0_DSSD_Y91_E 61.4705 -0.00750377
+MUSETT_T0_DSSD_Y92_E 61.8625 -0.00755157
+MUSETT_T0_DSSD_Y93_E 61.676 -0.00752886
+MUSETT_T0_DSSD_Y94_E 62.3873 -0.00761565
+MUSETT_T0_DSSD_Y95_E 60.9044 -0.00743464
+MUSETT_T0_DSSD_Y96_E 56.3812 -0.00688248
+MUSETT_T0_DSSD_Y97_E 56.6477 -0.00691501
+MUSETT_T0_DSSD_Y98_E 56.593900000000005 -0.00690848
+MUSETT_T0_DSSD_Y99_E 56.4666 -0.0068929
+MUSETT_T0_DSSD_Y100_E 56.2051 -0.00686097
+MUSETT_T0_DSSD_Y101_E 56.3392 -0.00687735
+MUSETT_T0_DSSD_Y102_E 56.0711 -0.006844630000000001
+MUSETT_T0_DSSD_Y103_E 56.5869 -0.00690762
+MUSETT_T0_DSSD_Y104_E 56.9228 -0.006948579999999999
+MUSETT_T0_DSSD_Y105_E 56.073699999999995 -0.00684493
+MUSETT_T0_DSSD_Y106_E 57.0807 -0.00696791
+MUSETT_T0_DSSD_Y107_E 57.414300000000004 -0.00700859
+MUSETT_T0_DSSD_Y108_E 56.5825 -0.0069071
+MUSETT_T0_DSSD_Y109_E 56.5836 -0.00690725
+MUSETT_T0_DSSD_Y110_E 56.679199999999994 -0.00691888
+MUSETT_T0_DSSD_Y111_E 56.4215 -0.0068874
+MUSETT_T0_DSSD_Y112_E 56.9044 -0.00694638
+MUSETT_T0_DSSD_Y113_E 57.1278 -0.00697364
+MUSETT_T0_DSSD_Y114_E 56.9656 -0.0069538
+MUSETT_T0_DSSD_Y115_E 56.8221 -0.00693632
+MUSETT_T0_DSSD_Y116_E 57.302 -0.00699491
+MUSETT_T0_DSSD_Y117_E 56.554199999999994 -0.00690362
+MUSETT_T0_DSSD_Y118_E 56.421800000000005 -0.006887450000000001
+MUSETT_T0_DSSD_Y119_E 56.6454 -0.00691475
+MUSETT_T0_DSSD_Y120_E 57.3988 -0.00700675
+MUSETT_T0_DSSD_Y121_E 57.237300000000005 -0.0069869599999999995
+MUSETT_T0_DSSD_Y122_E 56.689 -0.0069200699999999995
+MUSETT_T0_DSSD_Y123_E 56.0116 -0.0068374199999999994
+MUSETT_T0_DSSD_Y124_E 56.467699999999994 -0.0068930300000000005
+MUSETT_T0_DSSD_Y125_E 55.9223 -0.0068265
+MUSETT_T0_DSSD_Y126_E 56.9572 -0.00695281
+MUSETT_T0_DSSD_Y127_E 56.5865 -0.00690758
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..5b24d47a3e65b665bfa9316692c46e8b7ebed112
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_T 946.164 -0.114176
+MUSETT_T0_DSSD_X1_T 956.811 -0.115529
+MUSETT_T0_DSSD_X2_T 957.988 -0.115657
+MUSETT_T0_DSSD_X3_T 972.139 -0.117409
+MUSETT_T0_DSSD_X4_T 971.761 -0.117367
+MUSETT_T0_DSSD_X5_T 971.702 -0.117353
+MUSETT_T0_DSSD_X6_T 976.911 -0.117969
+MUSETT_T0_DSSD_X7_T 979.143 -0.118246
+MUSETT_T0_DSSD_X8_T 977.915 -0.118065
+MUSETT_T0_DSSD_X9_T 981.976 -0.118546
+MUSETT_T0_DSSD_X10_T 986.577 -0.119138
+MUSETT_T0_DSSD_X11_T 986.184 -0.119075
+MUSETT_T0_DSSD_X12_T 993.563 -0.119996
+MUSETT_T0_DSSD_X13_T 978.874 -0.118174
+MUSETT_T0_DSSD_X14_T 989.894 -0.119531
+MUSETT_T0_DSSD_X15_T 1318.57 -0.118448
+MUSETT_T0_DSSD_X16_T 955.564 -0.115275
+MUSETT_T0_DSSD_X17_T 965.774 -0.116527
+MUSETT_T0_DSSD_X18_T 978.184 -0.118044
+MUSETT_T0_DSSD_X19_T 978.854 -0.118125
+MUSETT_T0_DSSD_X20_T 987.988 -0.119233
+MUSETT_T0_DSSD_X21_T 982.353 -0.118555
+MUSETT_T0_DSSD_X22_T 992.928 -0.119845
+MUSETT_T0_DSSD_X23_T 994.329 -0.120005
+MUSETT_T0_DSSD_X24_T 989.504 -0.119427
+MUSETT_T0_DSSD_X25_T 1000.62 -0.120777
+MUSETT_T0_DSSD_X26_T 1002.92 -0.121057
+MUSETT_T0_DSSD_X27_T 1006.98 -0.121545
+MUSETT_T0_DSSD_X28_T 1002.57 -0.121021
+MUSETT_T0_DSSD_X29_T 1001.43 -0.120851
+MUSETT_T0_DSSD_X30_T 997.945 -0.12045
+MUSETT_T0_DSSD_X31_T 993.524 -0.119947
+MUSETT_T0_DSSD_X32_T 872.545 -0.105192
+MUSETT_T0_DSSD_X33_T 870.474 -0.104955
+MUSETT_T0_DSSD_X34_T 890.439 -0.107397
+MUSETT_T0_DSSD_X35_T 879.216 -0.106033
+MUSETT_T0_DSSD_X36_T 881.009 -0.106227
+MUSETT_T0_DSSD_X37_T 895.366 -0.108005
+MUSETT_T0_DSSD_X38_T 897.01 -0.108195
+MUSETT_T0_DSSD_X39_T 895.47 -0.107979
+MUSETT_T0_DSSD_X40_T 898.037 -0.108302
+MUSETT_T0_DSSD_X41_T 898.361 -0.108334
+MUSETT_T0_DSSD_X42_T 897.507 -0.108243
+MUSETT_T0_DSSD_X43_T 904.455 -0.109095
+MUSETT_T0_DSSD_X44_T 899.781 -0.108505
+MUSETT_T0_DSSD_X45_T 894.363 -0.107877
+MUSETT_T0_DSSD_X46_T 896.817 -0.108187
+MUSETT_T0_DSSD_X47_T 930.792 -0.10826
+MUSETT_T0_DSSD_X48_T 884.648 -0.106556
+MUSETT_T0_DSSD_X49_T 887.836 -0.106942
+MUSETT_T0_DSSD_X50_T 893.25 -0.107622
+MUSETT_T0_DSSD_X51_T 901.75 -0.109464
+MUSETT_T0_DSSD_X52_T 907.099 -0.109295
+MUSETT_T0_DSSD_X53_T 909.979 -0.109652
+MUSETT_T0_DSSD_X54_T 912.526 -0.109955
+MUSETT_T0_DSSD_X55_T 916.597 -0.110458
+MUSETT_T0_DSSD_X56_T 925.24 -0.111499
+MUSETT_T0_DSSD_X57_T 916.715 -0.110456
+MUSETT_T0_DSSD_X58_T 924.251 -0.111378
+MUSETT_T0_DSSD_X59_T 928.786 -0.111943
+MUSETT_T0_DSSD_X60_T 935.878 -0.112807
+MUSETT_T0_DSSD_X61_T 938.667 -0.11314
+MUSETT_T0_DSSD_X62_T 940.288 -0.113338
+MUSETT_T0_DSSD_X63_T 929.111 -0.111982
+MUSETT_T0_DSSD_X64_T 957.51 -0.115846
+MUSETT_T0_DSSD_X65_T 962.646 -0.11646
+MUSETT_T0_DSSD_X66_T 972.344 -0.117644
+MUSETT_T0_DSSD_X67_T 973.464 -0.117791
+MUSETT_T0_DSSD_X68_T 976.904 -0.118174
+MUSETT_T0_DSSD_X69_T 989.493 -0.119717
+MUSETT_T0_DSSD_X70_T 993.895 -0.120284
+MUSETT_T0_DSSD_X71_T 995.117 -0.120426
+MUSETT_T0_DSSD_X72_T 1006.3 -0.121763
+MUSETT_T0_DSSD_X73_T 987.403 -0.119445
+MUSETT_T0_DSSD_X74_T 1004.54 -0.121535
+MUSETT_T0_DSSD_X75_T 995.118 -0.120381
+MUSETT_T0_DSSD_X76_T 1002.39 -0.121262
+MUSETT_T0_DSSD_X77_T 1006.49 -0.121766
+MUSETT_T0_DSSD_X78_T 997.059 -0.120615
+MUSETT_T0_DSSD_X79_T 1377.74 -0.120952
+MUSETT_T0_DSSD_X80_T 923.114 -0.111515
+MUSETT_T0_DSSD_X81_T 932.866 -0.112746
+MUSETT_T0_DSSD_X82_T 924.928 -0.111774
+MUSETT_T0_DSSD_X83_T 937.265 -0.113281
+MUSETT_T0_DSSD_X84_T 930.752 -0.112468
+MUSETT_T0_DSSD_X85_T 941.628 -0.113819
+MUSETT_T0_DSSD_X86_T 949.998 -0.114818
+MUSETT_T0_DSSD_X87_T 943.027 -0.113978
+MUSETT_T0_DSSD_X88_T 949.721 -0.114813
+MUSETT_T0_DSSD_X89_T 957.242 -0.115728
+MUSETT_T0_DSSD_X90_T 964.815 -0.11664
+MUSETT_T0_DSSD_X91_T 961.466 -0.11625
+MUSETT_T0_DSSD_X92_T 961.749 -0.116299
+MUSETT_T0_DSSD_X93_T 960.655 -0.116152
+MUSETT_T0_DSSD_X94_T 974.674 -0.117868
+MUSETT_T0_DSSD_X95_T 992.705 -0.116744
+MUSETT_T0_DSSD_X96_T 868.269 -0.105013
+MUSETT_T0_DSSD_X97_T 877.648 -0.106169
+MUSETT_T0_DSSD_X98_T 878.241 -0.106212
+MUSETT_T0_DSSD_X99_T 883.994 -0.106905
+MUSETT_T0_DSSD_X100_T 893.321 -0.108043
+MUSETT_T0_DSSD_X101_T 900.56 -0.108935
+MUSETT_T0_DSSD_X102_T 896.766 -0.108442
+MUSETT_T0_DSSD_X103_T 894.903 -0.108194
+MUSETT_T0_DSSD_X104_T 904.239 -0.109336
+MUSETT_T0_DSSD_X105_T 902.018 -0.109053
+MUSETT_T0_DSSD_X106_T 907.673 -0.109771
+MUSETT_T0_DSSD_X107_T 904.96 -0.109449
+MUSETT_T0_DSSD_X108_T 902.795 -0.109128
+MUSETT_T0_DSSD_X109_T 906.335 -0.109641
+MUSETT_T0_DSSD_X110_T 903.029 -0.109177
+MUSETT_T0_DSSD_X111_T 912.908 -0.109478
+MUSETT_T0_DSSD_X112_T 888.694 -0.107364
+MUSETT_T0_DSSD_X113_T 891.736 -0.107748
+MUSETT_T0_DSSD_X114_T 891.957 -0.107782
+MUSETT_T0_DSSD_X115_T 901.87 -0.109007
+MUSETT_T0_DSSD_X116_T 905.48 -0.109423
+MUSETT_T0_DSSD_X117_T 899.196 -0.108648
+MUSETT_T0_DSSD_X118_T 913.782 -0.110413
+MUSETT_T0_DSSD_X119_T 914.779 -0.110579
+MUSETT_T0_DSSD_X120_T 909.004 -0.109898
+MUSETT_T0_DSSD_X121_T 914.282 -0.1105
+MUSETT_T0_DSSD_X122_T 922.657 -0.111529
+MUSETT_T0_DSSD_X123_T 914.822 -0.110604
+MUSETT_T0_DSSD_X124_T 917.977 -0.110972
+MUSETT_T0_DSSD_X125_T 919.687 -0.11118
+MUSETT_T0_DSSD_X126_T 914.922 -0.110613
+MUSETT_T0_DSSD_X127_T 925.329 -0.111151
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..44caa7bd7c0575c1eae4de035fb0398b5e399796
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 942.169 -0.114033
+MUSETT_T0_DSSD_Y2_T 941.094 -0.113921
+MUSETT_T0_DSSD_Y3_T 959.045 -0.116104
+MUSETT_T0_DSSD_Y4_T 954.629 -0.115563
+MUSETT_T0_DSSD_Y5_T 970.443 -0.117481
+MUSETT_T0_DSSD_Y6_T 969.234 -0.117339
+MUSETT_T0_DSSD_Y7_T 966.53 -0.117018
+MUSETT_T0_DSSD_Y8_T 973.409 -0.117842
+MUSETT_T0_DSSD_Y9_T 968.923 -0.117316
+MUSETT_T0_DSSD_Y10_T 971.661 -0.117632
+MUSETT_T0_DSSD_Y11_T 977.841 -0.118398
+MUSETT_T0_DSSD_Y12_T 975.821 -0.11814
+MUSETT_T0_DSSD_Y13_T 971.638 -0.117633
+MUSETT_T0_DSSD_Y14_T 974.225 -0.117944
+MUSETT_T0_DSSD_Y15_T 980.805 -0.118761
+MUSETT_T0_DSSD_Y16_T 935.973 -0.113175
+MUSETT_T0_DSSD_Y17_T 944.972 -0.114309
+MUSETT_T0_DSSD_Y18_T 953.592 -0.115351
+MUSETT_T0_DSSD_Y19_T 945.492 -0.11436
+MUSETT_T0_DSSD_Y20_T 948.066 -0.114686
+MUSETT_T0_DSSD_Y21_T 951.558 -0.115103
+MUSETT_T0_DSSD_Y22_T 957.545 -0.115832
+MUSETT_T0_DSSD_Y23_T 957.576 -0.115841
+MUSETT_T0_DSSD_Y24_T 962.251 -0.116398
+MUSETT_T0_DSSD_Y25_T 960.479 -0.116195
+MUSETT_T0_DSSD_Y26_T 957.007 -0.115516
+MUSETT_T0_DSSD_Y27_T 971.646 -0.117562
+MUSETT_T0_DSSD_Y28_T 974.064 -0.117834
+MUSETT_T0_DSSD_Y29_T 968.974 -0.11722
+MUSETT_T0_DSSD_Y30_T 971.944 -0.11759
+MUSETT_T0_DSSD_Y31_T 966.713 -0.116928
+MUSETT_T0_DSSD_Y32_T 869.43 -0.105131
+MUSETT_T0_DSSD_Y33_T 868.989 -0.105113
+MUSETT_T0_DSSD_Y34_T 886.133 -0.107174
+MUSETT_T0_DSSD_Y35_T 876.002 -0.105955
+MUSETT_T0_DSSD_Y36_T 887.653 -0.107363
+MUSETT_T0_DSSD_Y37_T 886.897 -0.107278
+MUSETT_T0_DSSD_Y38_T 887.559 -0.107347
+MUSETT_T0_DSSD_Y39_T 905.525 -0.109567
+MUSETT_T0_DSSD_Y40_T 903.288 -0.109268
+MUSETT_T0_DSSD_Y41_T 901.488 -0.109045
+MUSETT_T0_DSSD_Y42_T 900.453 -0.108924
+MUSETT_T0_DSSD_Y43_T 911.154 -0.110196
+MUSETT_T0_DSSD_Y44_T 908.4 -0.109895
+MUSETT_T0_DSSD_Y45_T 903.164 -0.10924
+MUSETT_T0_DSSD_Y46_T 913.419 -0.110513
+MUSETT_T0_DSSD_Y47_T 901.371 -0.109056
+MUSETT_T0_DSSD_Y48_T 855.809 -0.103507
+MUSETT_T0_DSSD_Y49_T 866.963 -0.104888
+MUSETT_T0_DSSD_Y50_T 862.301 -0.104347
+MUSETT_T0_DSSD_Y51_T 879.214 -0.106391
+MUSETT_T0_DSSD_Y52_T 881.851 -0.106718
+MUSETT_T0_DSSD_Y53_T 883.115 -0.106878
+MUSETT_T0_DSSD_Y54_T 879.659 -0.106441
+MUSETT_T0_DSSD_Y55_T 887.765 -0.107426
+MUSETT_T0_DSSD_Y56_T 889.179 -0.107608
+MUSETT_T0_DSSD_Y57_T 893.434 -0.108136
+MUSETT_T0_DSSD_Y58_T 900.612 -0.109012
+MUSETT_T0_DSSD_Y59_T 899.41 -0.108611
+MUSETT_T0_DSSD_Y60_T 898.225 -0.108719
+MUSETT_T0_DSSD_Y61_T 905.378 -0.109581
+MUSETT_T0_DSSD_Y62_T 899.576 -0.108895
+MUSETT_T0_DSSD_Y63_T 904.856 -0.109543
+MUSETT_T0_DSSD_Y64_T 964.166 -0.116469
+MUSETT_T0_DSSD_Y65_T 970.821 -0.117302
+MUSETT_T0_DSSD_Y66_T 976.54 -0.118012
+MUSETT_T0_DSSD_Y67_T 976.814 -0.118028
+MUSETT_T0_DSSD_Y68_T 979.621 -0.118378
+MUSETT_T0_DSSD_Y69_T 983.271 -0.118825
+MUSETT_T0_DSSD_Y70_T 982.977 -0.118781
+MUSETT_T0_DSSD_Y71_T 986.021 -0.119156
+MUSETT_T0_DSSD_Y72_T 989.88 -0.119628
+MUSETT_T0_DSSD_Y73_T 981.368 -0.118591
+MUSETT_T0_DSSD_Y74_T 990.1 -0.119656
+MUSETT_T0_DSSD_Y75_T 1000.52 -0.120924
+MUSETT_T0_DSSD_Y76_T 995.667 -0.120327
+MUSETT_T0_DSSD_Y77_T 997.754 -0.120579
+MUSETT_T0_DSSD_Y78_T 994.951 -0.120247
+MUSETT_T0_DSSD_Y79_T 1001.99 -0.121097
+MUSETT_T0_DSSD_Y80_T 970.583 -0.117145
+MUSETT_T0_DSSD_Y81_T 986.462 -0.119118
+MUSETT_T0_DSSD_Y82_T 981.625 -0.118534
+MUSETT_T0_DSSD_Y83_T 996.206 -0.12031
+MUSETT_T0_DSSD_Y84_T 1000.06 -0.120777
+MUSETT_T0_DSSD_Y85_T 1002.53 -0.121085
+MUSETT_T0_DSSD_Y86_T 998.357 -0.120569
+MUSETT_T0_DSSD_Y87_T 1008.76 -0.121839
+MUSETT_T0_DSSD_Y88_T 1004.65 -0.121339
+MUSETT_T0_DSSD_Y89_T 1015.0 -0.122592
+MUSETT_T0_DSSD_Y90_T 1025.62 -0.123897
+MUSETT_T0_DSSD_Y91_T 1025.41 -0.123866
+MUSETT_T0_DSSD_Y92_T 1020.27 -0.123256
+MUSETT_T0_DSSD_Y93_T 1024.71 -0.123786
+MUSETT_T0_DSSD_Y94_T 1021.51 -0.123408
+MUSETT_T0_DSSD_Y95_T 1016.94 -0.122879
+MUSETT_T0_DSSD_Y96_T 882.97 -0.106544
+MUSETT_T0_DSSD_Y97_T 879.326 -0.106139
+MUSETT_T0_DSSD_Y98_T 878.449 -0.106028
+MUSETT_T0_DSSD_Y99_T 894.979 -0.108041
+MUSETT_T0_DSSD_Y100_T 892.203 -0.107707
+MUSETT_T0_DSSD_Y101_T 891.015 -0.10757
+MUSETT_T0_DSSD_Y102_T 895.424 -0.108105
+MUSETT_T0_DSSD_Y103_T 907.578 -0.10959
+MUSETT_T0_DSSD_Y104_T 902.147 -0.108916
+MUSETT_T0_DSSD_Y105_T 915.536 -0.110544
+MUSETT_T0_DSSD_Y106_T 910.897 -0.109981
+MUSETT_T0_DSSD_Y107_T 915.092 -0.11051
+MUSETT_T0_DSSD_Y108_T 914.664 -0.110421
+MUSETT_T0_DSSD_Y109_T 910.113 -0.109894
+MUSETT_T0_DSSD_Y110_T 915.675 -0.110572
+MUSETT_T0_DSSD_Y111_T 917.59 -0.110803
+MUSETT_T0_DSSD_Y112_T 892.441 -0.107535
+MUSETT_T0_DSSD_Y113_T 899.913 -0.108466
+MUSETT_T0_DSSD_Y114_T 899.438 -0.108438
+MUSETT_T0_DSSD_Y115_T 905.439 -0.109158
+MUSETT_T0_DSSD_Y116_T 917.108 -0.110566
+MUSETT_T0_DSSD_Y117_T 910.331 -0.109757
+MUSETT_T0_DSSD_Y118_T 930.135 -0.112167
+MUSETT_T0_DSSD_Y119_T 921.847 -0.111146
+MUSETT_T0_DSSD_Y120_T 932.043 -0.112407
+MUSETT_T0_DSSD_Y121_T 931.497 -0.112337
+MUSETT_T0_DSSD_Y122_T 933.275 -0.112539
+MUSETT_T0_DSSD_Y123_T 936.749 -0.112978
+MUSETT_T0_DSSD_Y124_T 931.392 -0.112316
+MUSETT_T0_DSSD_Y125_T 930.352 -0.112192
+MUSETT_T0_DSSD_Y126_T 927.302 -0.111821
+MUSETT_T0_DSSD_Y127_T 930.24 -0.112162
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..25335e8eb5d450a665765bd0a4d5645c6ba6855e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E -62.3845 0.00761517
+MUSETT_T1_DSSD_X1_E -62.2104 0.00759389
+MUSETT_T1_DSSD_X2_E -62.2735 0.00760161
+MUSETT_T1_DSSD_X3_E -62.0191 0.007570599999999999
+MUSETT_T1_DSSD_X4_E -61.4765 0.00750432
+MUSETT_T1_DSSD_X5_E -61.597 0.00751908
+MUSETT_T1_DSSD_X6_E -62.319300000000005 0.00760717
+MUSETT_T1_DSSD_X7_E -61.4163 0.00749697
+MUSETT_T1_DSSD_X8_E -61.3271 0.00748611
+MUSETT_T1_DSSD_X9_E -61.4865 0.00750558
+MUSETT_T1_DSSD_X10_E -61.6734 0.00752832
+MUSETT_T1_DSSD_X11_E -61.7326 0.00753556
+MUSETT_T1_DSSD_X12_E -61.9632 0.00756376
+MUSETT_T1_DSSD_X13_E -61.4182 0.00749719
+MUSETT_T1_DSSD_X14_E -61.209 0.007471650000000001
+MUSETT_T1_DSSD_X15_E -61.9876 0.00756667
+MUSETT_T1_DSSD_X16_E -62.5544 0.007635919999999999
+MUSETT_T1_DSSD_X17_E -61.756 0.00753848
+MUSETT_T1_DSSD_X18_E -62.2641 0.00760048
+MUSETT_T1_DSSD_X19_E -61.9537 0.007562579999999999
+MUSETT_T1_DSSD_X20_E -62.913199999999996 0.0076796699999999996
+MUSETT_T1_DSSD_X21_E -62.1209 0.007583
+MUSETT_T1_DSSD_X22_E -62.709 0.00765477
+MUSETT_T1_DSSD_X23_E -62.39 0.00761587
+MUSETT_T1_DSSD_X24_E -62.229699999999994 0.0075962899999999995
+MUSETT_T1_DSSD_X25_E -61.997699999999995 0.00756794
+MUSETT_T1_DSSD_X26_E -62.0365 0.0075726199999999995
+MUSETT_T1_DSSD_X27_E -61.752 0.0075379800000000005
+MUSETT_T1_DSSD_X28_E -61.6556 0.00752623
+MUSETT_T1_DSSD_X29_E -62.7675 0.007661940000000001
+MUSETT_T1_DSSD_X30_E -61.803 0.00754422
+MUSETT_T1_DSSD_X31_E -62.7618 0.00766122
+MUSETT_T1_DSSD_X32_E -58.3035 0.00711703
+MUSETT_T1_DSSD_X33_E -58.3725 0.00712549
+MUSETT_T1_DSSD_X34_E -58.3599 0.00712397
+MUSETT_T1_DSSD_X35_E -58.2622 0.00711204
+MUSETT_T1_DSSD_X36_E -58.041 0.0070850900000000005
+MUSETT_T1_DSSD_X37_E -58.261 0.0071116700000000005
+MUSETT_T1_DSSD_X38_E -58.055699999999995 0.0070867000000000005
+MUSETT_T1_DSSD_X39_E -58.647400000000005 0.00715904
+MUSETT_T1_DSSD_X40_E -58.203900000000004 0.00710488
+MUSETT_T1_DSSD_X41_E -58.8939 0.00718895
+MUSETT_T1_DSSD_X42_E -58.0515 0.00708632
+MUSETT_T1_DSSD_X43_E -58.5394 0.0071458599999999995
+MUSETT_T1_DSSD_X44_E -58.5544 0.00714758
+MUSETT_T1_DSSD_X45_E -59.3359 0.00724309
+MUSETT_T1_DSSD_X46_E -58.7258 0.00716875
+MUSETT_T1_DSSD_X47_E -58.4657 0.007136770000000001
+MUSETT_T1_DSSD_X48_E -57.8688 0.0070639399999999995
+MUSETT_T1_DSSD_X49_E -58.5298 0.00714462
+MUSETT_T1_DSSD_X50_E -57.9728 0.00707665
+MUSETT_T1_DSSD_X51_E -57.7251 0.00704637
+MUSETT_T1_DSSD_X52_E -57.9466 0.00707339
+MUSETT_T1_DSSD_X53_E -57.9195 0.00707013
+MUSETT_T1_DSSD_X54_E -57.971 0.00707643
+MUSETT_T1_DSSD_X55_E -57.8129 0.00705708
+MUSETT_T1_DSSD_X56_E -58.0595 0.00708722
+MUSETT_T1_DSSD_X57_E -57.8609 0.00706295
+MUSETT_T1_DSSD_X58_E -58.481199999999994 0.0071386900000000005
+MUSETT_T1_DSSD_X59_E -57.6735 0.00704005
+MUSETT_T1_DSSD_X60_E -57.7339 0.007047469999999999
+MUSETT_T1_DSSD_X61_E -58.243 0.00710961
+MUSETT_T1_DSSD_X62_E -58.1142 0.00709391
+MUSETT_T1_DSSD_X63_E -58.2467 0.0071100700000000005
+MUSETT_T1_DSSD_X64_E -61.0093 0.00744733
+MUSETT_T1_DSSD_X65_E -61.6307 0.00752317
+MUSETT_T1_DSSD_X66_E -61.4718 0.00750372
+MUSETT_T1_DSSD_X67_E -61.7169 0.0075336100000000005
+MUSETT_T1_DSSD_X68_E -61.8935 0.00755524
+MUSETT_T1_DSSD_X69_E -61.3286 0.007486329999999999
+MUSETT_T1_DSSD_X70_E -61.623400000000004 0.0075222100000000005
+MUSETT_T1_DSSD_X71_E -61.9118 0.00755752
+MUSETT_T1_DSSD_X72_E -61.2791 0.007480260000000001
+MUSETT_T1_DSSD_X73_E -62.4381 0.007621749999999999
+MUSETT_T1_DSSD_X74_E -61.9378 0.0075606200000000005
+MUSETT_T1_DSSD_X75_E -62.0787 0.0075778600000000005
+MUSETT_T1_DSSD_X76_E -61.4964 0.00750682
+MUSETT_T1_DSSD_X77_E -61.721199999999996 0.00753417
+MUSETT_T1_DSSD_X78_E -61.3211 0.00748534
+MUSETT_T1_DSSD_X79_E -61.9309 0.00755971
+MUSETT_T1_DSSD_X80_E -63.4259 0.007742300000000001
+MUSETT_T1_DSSD_X81_E -63.726 0.00777898
+MUSETT_T1_DSSD_X82_E -64.2118 0.00783822
+MUSETT_T1_DSSD_X83_E -63.931 0.00780396
+MUSETT_T1_DSSD_X84_E -64.1147 0.007826399999999999
+MUSETT_T1_DSSD_X85_E -63.8814 0.0077979
+MUSETT_T1_DSSD_X86_E -64.0891 0.00782321
+MUSETT_T1_DSSD_X87_E -64.226 0.00783998
+MUSETT_T1_DSSD_X88_E -64.1628 0.00783225
+MUSETT_T1_DSSD_X89_E -64.2273 0.00784014
+MUSETT_T1_DSSD_X90_E -63.3243 0.0077299199999999995
+MUSETT_T1_DSSD_X91_E -63.377900000000004 0.00773646
+MUSETT_T1_DSSD_X92_E -64.5924 0.007884750000000001
+MUSETT_T1_DSSD_X93_E -64.0512 0.00781864
+MUSETT_T1_DSSD_X94_E -63.7853 0.00778625
+MUSETT_T1_DSSD_X95_E -63.4251 0.00774221
+MUSETT_T1_DSSD_X96_E -56.2771 0.00686963
+MUSETT_T1_DSSD_X97_E -56.696400000000004 0.00692087
+MUSETT_T1_DSSD_X98_E -56.5242 0.00689973
+MUSETT_T1_DSSD_X99_E -56.4219 0.00688734
+MUSETT_T1_DSSD_X100_E -56.5169 0.00689896
+MUSETT_T1_DSSD_X101_E -56.9871 0.00695627
+MUSETT_T1_DSSD_X102_E -57.3419 0.00699957
+MUSETT_T1_DSSD_X103_E -56.5904 0.00690785
+MUSETT_T1_DSSD_X104_E -56.8425 0.00693859
+MUSETT_T1_DSSD_X105_E -57.029900000000005 0.00696151
+MUSETT_T1_DSSD_X106_E -57.8401 0.00706034
+MUSETT_T1_DSSD_X107_E -57.7541 0.007049870000000001
+MUSETT_T1_DSSD_X108_E -57.7184 0.00704556
+MUSETT_T1_DSSD_X109_E -57.495 0.00701832
+MUSETT_T1_DSSD_X110_E -57.6737 0.0070401
+MUSETT_T1_DSSD_X111_E -58.035199999999996 0.00708421
+MUSETT_T1_DSSD_X112_E -57.2543 0.00698888
+MUSETT_T1_DSSD_X113_E -57.309599999999996 0.00699565
+MUSETT_T1_DSSD_X114_E -56.8137 0.00693513
+MUSETT_T1_DSSD_X115_E -57.6843 0.00704141
+MUSETT_T1_DSSD_X116_E -57.2736 0.00699128
+MUSETT_T1_DSSD_X117_E -57.2633 0.0069900200000000004
+MUSETT_T1_DSSD_X118_E -56.331199999999995 0.00687626
+MUSETT_T1_DSSD_X119_E -58.331 0.00712035
+MUSETT_T1_DSSD_X120_E -57.4483 0.0070126
+MUSETT_T1_DSSD_X121_E -57.7637 0.00705109
+MUSETT_T1_DSSD_X122_E -57.724199999999996 0.00704628
+MUSETT_T1_DSSD_X123_E -57.4583 0.007013849999999999
+MUSETT_T1_DSSD_X124_E -57.5865 0.0070294699999999995
+MUSETT_T1_DSSD_X125_E -57.6715 0.00703982
+MUSETT_T1_DSSD_X126_E -57.0766 0.0069672
+MUSETT_T1_DSSD_X127_E -57.8189 0.007057839999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..4f2ff00b21e3e2cd35eb213bcf9ddf7431b4902a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_E 59.6282 -0.0072789099999999995
+MUSETT_T1_DSSD_Y1_E 60.484199999999994 -0.0073834
+MUSETT_T1_DSSD_Y2_E 59.719300000000004 -0.00729006
+MUSETT_T1_DSSD_Y3_E 59.358 -0.00724601
+MUSETT_T1_DSSD_Y4_E 60.2094 -0.00734991
+MUSETT_T1_DSSD_Y5_E 60.023900000000005 -0.00732724
+MUSETT_T1_DSSD_Y6_E 59.4274 -0.007254419999999999
+MUSETT_T1_DSSD_Y7_E 59.479800000000004 -0.00726081
+MUSETT_T1_DSSD_Y8_E 59.4726 -0.00725995
+MUSETT_T1_DSSD_Y9_E 59.6615 -0.00728303
+MUSETT_T1_DSSD_Y10_E 59.523 -0.0072661
+MUSETT_T1_DSSD_Y11_E 59.5207 -0.00726582
+MUSETT_T1_DSSD_Y12_E 60.207699999999996 -0.007349700000000001
+MUSETT_T1_DSSD_Y13_E 59.2816 -0.00723662
+MUSETT_T1_DSSD_Y14_E 59.4995 -0.0072632899999999995
+MUSETT_T1_DSSD_Y15_E 59.822199999999995 -0.00730262
+MUSETT_T1_DSSD_Y16_E 62.231 -0.00759672
+MUSETT_T1_DSSD_Y17_E 62.5176 -0.00763166
+MUSETT_T1_DSSD_Y18_E 62.4625 -0.00762493
+MUSETT_T1_DSSD_Y19_E 62.047 -0.00757417
+MUSETT_T1_DSSD_Y20_E 62.207300000000004 -0.00759375
+MUSETT_T1_DSSD_Y21_E 62.3629 -0.0076127700000000005
+MUSETT_T1_DSSD_Y22_E -10.0 0.0
+MUSETT_T1_DSSD_Y23_E 62.0175 -0.00757064
+MUSETT_T1_DSSD_Y24_E 61.7139 -0.00753355
+MUSETT_T1_DSSD_Y25_E 61.4491 -0.007501229999999999
+MUSETT_T1_DSSD_Y26_E 62.0861 -0.00757898
+MUSETT_T1_DSSD_Y27_E 62.0777 -0.00757796
+MUSETT_T1_DSSD_Y28_E 62.2876 -0.00760362
+MUSETT_T1_DSSD_Y29_E 62.0279 -0.0075719
+MUSETT_T1_DSSD_Y30_E 61.6686 -0.00752799
+MUSETT_T1_DSSD_Y31_E 61.8048 -0.00754468
+MUSETT_T1_DSSD_Y32_E 56.1157 -0.006850220000000001
+MUSETT_T1_DSSD_Y33_E 56.2557 -0.00686728
+MUSETT_T1_DSSD_Y34_E 55.6349 -0.00679153
+MUSETT_T1_DSSD_Y35_E 55.6409 -0.00679227
+MUSETT_T1_DSSD_Y36_E 55.3843 -0.006760919999999999
+MUSETT_T1_DSSD_Y37_E 56.4204 -0.006887450000000001
+MUSETT_T1_DSSD_Y38_E 55.380900000000004 -0.00676051
+MUSETT_T1_DSSD_Y39_E 55.9348 -0.00682817
+MUSETT_T1_DSSD_Y40_E 56.0365 -0.00684053
+MUSETT_T1_DSSD_Y41_E 56.1492 -0.0068543399999999996
+MUSETT_T1_DSSD_Y42_E 55.5099 -0.00677625
+MUSETT_T1_DSSD_Y43_E 56.6373 -0.0069139
+MUSETT_T1_DSSD_Y44_E 55.6379 -0.00679188
+MUSETT_T1_DSSD_Y45_E 55.7303 -0.00680315
+MUSETT_T1_DSSD_Y46_E 55.751599999999996 -0.00680582
+MUSETT_T1_DSSD_Y47_E 55.7609 -0.00680693
+MUSETT_T1_DSSD_Y48_E 57.1947 -0.0069819
+MUSETT_T1_DSSD_Y49_E 56.616699999999994 -0.00691132
+MUSETT_T1_DSSD_Y50_E 56.5651 -0.0069050399999999994
+MUSETT_T1_DSSD_Y51_E 56.0075 -0.0068369400000000006
+MUSETT_T1_DSSD_Y52_E 56.8389 -0.0069384600000000005
+MUSETT_T1_DSSD_Y53_E 56.277 -0.00686982
+MUSETT_T1_DSSD_Y54_E 56.4758 -0.00689415
+MUSETT_T1_DSSD_Y55_E 56.3949 -0.00688425
+MUSETT_T1_DSSD_Y56_E 57.2861 -0.0069930700000000005
+MUSETT_T1_DSSD_Y57_E 57.107699999999994 -0.00697128
+MUSETT_T1_DSSD_Y58_E 56.704699999999995 -0.00692209
+MUSETT_T1_DSSD_Y59_E 57.3292 -0.00699832
+MUSETT_T1_DSSD_Y60_E 57.3988 -0.007006770000000001
+MUSETT_T1_DSSD_Y61_E 57.025800000000004 -0.0069612499999999996
+MUSETT_T1_DSSD_Y62_E 56.1794 -0.00685794
+MUSETT_T1_DSSD_Y63_E 57.2945 -0.00699407
+MUSETT_T1_DSSD_Y64_E 61.036 -0.00745079
+MUSETT_T1_DSSD_Y65_E 61.615199999999994 -0.00752147
+MUSETT_T1_DSSD_Y66_E 61.3277 -0.00748646
+MUSETT_T1_DSSD_Y67_E 61.6169 -0.00752169
+MUSETT_T1_DSSD_Y68_E 61.2895 -0.00748175
+MUSETT_T1_DSSD_Y69_E 60.072300000000006 -0.007333129999999999
+MUSETT_T1_DSSD_Y70_E 60.461800000000004 -0.00738072
+MUSETT_T1_DSSD_Y71_E 61.1475 -0.00746439
+MUSETT_T1_DSSD_Y72_E 60.3246 -0.00736394
+MUSETT_T1_DSSD_Y73_E 61.243300000000005 -0.00747609
+MUSETT_T1_DSSD_Y74_E 60.892199999999995 -0.00743321
+MUSETT_T1_DSSD_Y75_E 60.3626 -0.00736861
+MUSETT_T1_DSSD_Y76_E 60.5634 -0.0073931199999999996
+MUSETT_T1_DSSD_Y77_E 60.9695 -0.00744272
+MUSETT_T1_DSSD_Y78_E 60.632 -0.00740146
+MUSETT_T1_DSSD_Y79_E 61.3545 -0.0074896599999999995
+MUSETT_T1_DSSD_Y80_E 61.129 -0.00746218
+MUSETT_T1_DSSD_Y81_E 61.1424 -0.00746376
+MUSETT_T1_DSSD_Y82_E 61.0982 -0.00745836
+MUSETT_T1_DSSD_Y83_E 60.505 -0.00738602
+MUSETT_T1_DSSD_Y84_E 60.4756 -0.00738236
+MUSETT_T1_DSSD_Y85_E 61.1983 -0.00747058
+MUSETT_T1_DSSD_Y86_E 60.653800000000004 -0.00740421
+MUSETT_T1_DSSD_Y87_E 60.6103 -0.007398869999999999
+MUSETT_T1_DSSD_Y88_E 61.0846 -0.00745673
+MUSETT_T1_DSSD_Y89_E 61.2816 -0.00748082
+MUSETT_T1_DSSD_Y90_E 60.7595 -0.00741709
+MUSETT_T1_DSSD_Y91_E 60.908699999999996 -0.00743532
+MUSETT_T1_DSSD_Y92_E 60.5201 -0.00738782
+MUSETT_T1_DSSD_Y93_E 61.3305 -0.00748678
+MUSETT_T1_DSSD_Y94_E 61.6099 -0.00752084
+MUSETT_T1_DSSD_Y95_E 60.752199999999995 -0.00741622
+MUSETT_T1_DSSD_Y96_E 55.8662 -0.0068197200000000005
+MUSETT_T1_DSSD_Y97_E 55.5101 -0.006776290000000001
+MUSETT_T1_DSSD_Y98_E 55.7391 -0.00680422
+MUSETT_T1_DSSD_Y99_E 55.6027 -0.00678757
+MUSETT_T1_DSSD_Y100_E 55.7795 -0.006809160000000001
+MUSETT_T1_DSSD_Y101_E 55.4526 -0.00676931
+MUSETT_T1_DSSD_Y102_E 55.433800000000005 -0.00676695
+MUSETT_T1_DSSD_Y103_E 56.1758 -0.00685753
+MUSETT_T1_DSSD_Y104_E 55.295 -0.00675003
+MUSETT_T1_DSSD_Y105_E 55.2676 -0.00674664
+MUSETT_T1_DSSD_Y106_E 55.9134 -0.00682548
+MUSETT_T1_DSSD_Y107_E 55.219 -0.00674076
+MUSETT_T1_DSSD_Y108_E 55.914699999999996 -0.00682563
+MUSETT_T1_DSSD_Y109_E 56.088300000000004 -0.00684683
+MUSETT_T1_DSSD_Y110_E 56.128699999999995 -0.00685177
+MUSETT_T1_DSSD_Y111_E 56.579699999999995 -0.006906799999999999
+MUSETT_T1_DSSD_Y112_E 54.7919 -0.006688609999999999
+MUSETT_T1_DSSD_Y113_E 55.5735 -0.00678397
+MUSETT_T1_DSSD_Y114_E 55.1773 -0.00673564
+MUSETT_T1_DSSD_Y115_E 55.0659 -0.0067220000000000005
+MUSETT_T1_DSSD_Y116_E 55.2711 -0.00674706
+MUSETT_T1_DSSD_Y117_E 55.4264 -0.00676607
+MUSETT_T1_DSSD_Y118_E 55.3089 -0.006751699999999999
+MUSETT_T1_DSSD_Y119_E 55.5605 -0.00678242
+MUSETT_T1_DSSD_Y120_E 55.8284 -0.0068151
+MUSETT_T1_DSSD_Y121_E 55.4619 -0.00677042
+MUSETT_T1_DSSD_Y122_E 54.836400000000005 -0.00669404
+MUSETT_T1_DSSD_Y123_E 55.154199999999996 -0.006732770000000001
+MUSETT_T1_DSSD_Y124_E 55.2185 -0.00674067
+MUSETT_T1_DSSD_Y125_E 55.1989 -0.00673821
+MUSETT_T1_DSSD_Y126_E 55.347199999999994 -0.00675638
+MUSETT_T1_DSSD_Y127_E 56.2705 -0.00686904
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2dbc58f87a8a21d156c060f3c44a33c496cfccc2
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_T 926.786 -0.11232
+MUSETT_T1_DSSD_X1_T 940.575 -0.114015
+MUSETT_T1_DSSD_X2_T 943.089 -0.114341
+MUSETT_T1_DSSD_X3_T 954.304 -0.115712
+MUSETT_T1_DSSD_X4_T 954.653 -0.115744
+MUSETT_T1_DSSD_X5_T 956.573 -0.115962
+MUSETT_T1_DSSD_X6_T 970.061 -0.117589
+MUSETT_T1_DSSD_X7_T 965.116 -0.116998
+MUSETT_T1_DSSD_X8_T 969.325 -0.117498
+MUSETT_T1_DSSD_X9_T 978.231 -0.118577
+MUSETT_T1_DSSD_X10_T 974.593 -0.118143
+MUSETT_T1_DSSD_X11_T 974.146 -0.118071
+MUSETT_T1_DSSD_X12_T 986.191 -0.11954
+MUSETT_T1_DSSD_X13_T 986.678 -0.119597
+MUSETT_T1_DSSD_X14_T 983.727 -0.119236
+MUSETT_T1_DSSD_X15_T 1371.19 -0.119179
+MUSETT_T1_DSSD_X16_T 922.557 -0.111777
+MUSETT_T1_DSSD_X17_T 945.525 -0.114612
+MUSETT_T1_DSSD_X18_T 946.378 -0.114738
+MUSETT_T1_DSSD_X19_T 943.86 -0.114439
+MUSETT_T1_DSSD_X20_T 952.199 -0.115464
+MUSETT_T1_DSSD_X21_T 965.45 -0.117052
+MUSETT_T1_DSSD_X22_T 954.947 -0.115762
+MUSETT_T1_DSSD_X23_T 971.26 -0.117739
+MUSETT_T1_DSSD_X24_T 969.364 -0.117531
+MUSETT_T1_DSSD_X25_T 972.531 -0.117923
+MUSETT_T1_DSSD_X26_T 971.171 -0.117737
+MUSETT_T1_DSSD_X27_T 974.954 -0.11821
+MUSETT_T1_DSSD_X28_T 978.834 -0.118677
+MUSETT_T1_DSSD_X29_T 975.807 -0.118324
+MUSETT_T1_DSSD_X30_T 974.804 -0.118198
+MUSETT_T1_DSSD_X31_T 984.936 -0.119148
+MUSETT_T1_DSSD_X32_T 875.904 -0.106165
+MUSETT_T1_DSSD_X33_T 875.79 -0.10618
+MUSETT_T1_DSSD_X34_T 891.706 -0.108064
+MUSETT_T1_DSSD_X35_T 873.845 -0.105941
+MUSETT_T1_DSSD_X36_T 891.762 -0.108105
+MUSETT_T1_DSSD_X37_T 897.589 -0.108823
+MUSETT_T1_DSSD_X38_T 889.745 -0.107861
+MUSETT_T1_DSSD_X39_T 894.521 -0.10842
+MUSETT_T1_DSSD_X40_T 897.332 -0.108779
+MUSETT_T1_DSSD_X41_T 897.319 -0.108754
+MUSETT_T1_DSSD_X42_T 905.732 -0.109783
+MUSETT_T1_DSSD_X43_T 897.833 -0.108855
+MUSETT_T1_DSSD_X44_T 907.458 -0.110019
+MUSETT_T1_DSSD_X45_T 905.696 -0.109854
+MUSETT_T1_DSSD_X46_T 903.207 -0.109528
+MUSETT_T1_DSSD_X47_T 918.195 -0.110055
+MUSETT_T1_DSSD_X48_T 865.632 -0.104838
+MUSETT_T1_DSSD_X49_T 871.03 -0.105455
+MUSETT_T1_DSSD_X50_T 883.706 -0.107015
+MUSETT_T1_DSSD_X51_T 886.118 -0.107338
+MUSETT_T1_DSSD_X52_T 888.977 -0.107685
+MUSETT_T1_DSSD_X53_T 889.176 -0.107699
+MUSETT_T1_DSSD_X54_T 893.053 -0.10819
+MUSETT_T1_DSSD_X55_T 898.958 -0.108878
+MUSETT_T1_DSSD_X56_T 905.343 -0.1097
+MUSETT_T1_DSSD_X57_T 901.014 -0.10916
+MUSETT_T1_DSSD_X58_T 909.801 -0.110244
+MUSETT_T1_DSSD_X59_T 902.356 -0.109308
+MUSETT_T1_DSSD_X60_T 915.181 -0.110894
+MUSETT_T1_DSSD_X61_T 906.646 -0.109867
+MUSETT_T1_DSSD_X62_T 906.177 -0.109791
+MUSETT_T1_DSSD_X63_T 917.322 -0.110777
+MUSETT_T1_DSSD_X64_T 947.375 -0.114723
+MUSETT_T1_DSSD_X65_T 949.155 -0.114949
+MUSETT_T1_DSSD_X66_T 962.658 -0.116629
+MUSETT_T1_DSSD_X67_T 962.29 -0.116557
+MUSETT_T1_DSSD_X68_T 964.501 -0.116827
+MUSETT_T1_DSSD_X69_T 972.559 -0.117811
+MUSETT_T1_DSSD_X70_T 972.248 -0.117758
+MUSETT_T1_DSSD_X71_T 977.48 -0.118392
+MUSETT_T1_DSSD_X72_T 974.838 -0.118063
+MUSETT_T1_DSSD_X73_T 989.581 -0.119853
+MUSETT_T1_DSSD_X74_T 985.59 -0.119377
+MUSETT_T1_DSSD_X75_T 983.734 -0.119141
+MUSETT_T1_DSSD_X76_T 990.699 -0.119982
+MUSETT_T1_DSSD_X77_T 992.465 -0.120199
+MUSETT_T1_DSSD_X78_T 992.485 -0.1202
+MUSETT_T1_DSSD_X79_T 1375.52 -0.120722
+MUSETT_T1_DSSD_X80_T 972.687 -0.117775
+MUSETT_T1_DSSD_X81_T 974.84 -0.118024
+MUSETT_T1_DSSD_X82_T 979.911 -0.118652
+MUSETT_T1_DSSD_X83_T 993.406 -0.120307
+MUSETT_T1_DSSD_X84_T 992.814 -0.120215
+MUSETT_T1_DSSD_X85_T 1002.31 -0.121389
+MUSETT_T1_DSSD_X86_T 1003.74 -0.121554
+MUSETT_T1_DSSD_X87_T 995.588 -0.12057
+MUSETT_T1_DSSD_X88_T 1010.12 -0.122345
+MUSETT_T1_DSSD_X89_T 1012.32 -0.12261
+MUSETT_T1_DSSD_X90_T 1007.94 -0.122082
+MUSETT_T1_DSSD_X91_T 1014.03 -0.12282
+MUSETT_T1_DSSD_X92_T 1013.77 -0.12279
+MUSETT_T1_DSSD_X93_T 1016.53 -0.123127
+MUSETT_T1_DSSD_X94_T 1016.3 -0.123096
+MUSETT_T1_DSSD_X95_T 1004.26 -0.12163
+MUSETT_T1_DSSD_X96_T 888.673 -0.107613
+MUSETT_T1_DSSD_X97_T 886.825 -0.107373
+MUSETT_T1_DSSD_X98_T 890.552 -0.107838
+MUSETT_T1_DSSD_X99_T 901.931 -0.109224
+MUSETT_T1_DSSD_X100_T 901.707 -0.1092
+MUSETT_T1_DSSD_X101_T 906.676 -0.109791
+MUSETT_T1_DSSD_X102_T 902.249 -0.109268
+MUSETT_T1_DSSD_X103_T 917.913 -0.111151
+MUSETT_T1_DSSD_X104_T 919.118 -0.11128
+MUSETT_T1_DSSD_X105_T 920.502 -0.111467
+MUSETT_T1_DSSD_X106_T 925.286 -0.112035
+MUSETT_T1_DSSD_X107_T 920.839 -0.111519
+MUSETT_T1_DSSD_X108_T 921.752 -0.111616
+MUSETT_T1_DSSD_X109_T 913.537 -0.110627
+MUSETT_T1_DSSD_X110_T 916.058 -0.110941
+MUSETT_T1_DSSD_X111_T 924.322 -0.11176
+MUSETT_T1_DSSD_X112_T 897.027 -0.108476
+MUSETT_T1_DSSD_X113_T 897.77 -0.108567
+MUSETT_T1_DSSD_X114_T 905.06 -0.10946
+MUSETT_T1_DSSD_X115_T 910.605 -0.110136
+MUSETT_T1_DSSD_X116_T 925.57 -0.111977
+MUSETT_T1_DSSD_X117_T 920.161 -0.111304
+MUSETT_T1_DSSD_X118_T 932.296 -0.112781
+MUSETT_T1_DSSD_X119_T 914.819 -0.110659
+MUSETT_T1_DSSD_X120_T 920.284 -0.111325
+MUSETT_T1_DSSD_X121_T 927.772 -0.112226
+MUSETT_T1_DSSD_X122_T 928.866 -0.11236
+MUSETT_T1_DSSD_X123_T 924.041 -0.111775
+MUSETT_T1_DSSD_X124_T 921.484 -0.111483
+MUSETT_T1_DSSD_X125_T 927.438 -0.112193
+MUSETT_T1_DSSD_X126_T 930.757 -0.112614
+MUSETT_T1_DSSD_X127_T 924.698 -0.111864
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c68402d0ef8eb89f484440e367ee91280c30e12e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_T 930.899 -0.11282
+MUSETT_T1_DSSD_Y1_T 932.297 -0.113022
+MUSETT_T1_DSSD_Y2_T 943.292 -0.114361
+MUSETT_T1_DSSD_Y3_T 947.201 -0.114834
+MUSETT_T1_DSSD_Y4_T 949.524 -0.115122
+MUSETT_T1_DSSD_Y5_T 952.95 -0.115533
+MUSETT_T1_DSSD_Y6_T 956.311 -0.115938
+MUSETT_T1_DSSD_Y7_T 946.369 -0.114726
+MUSETT_T1_DSSD_Y8_T 953.576 -0.11562
+MUSETT_T1_DSSD_Y9_T 964.215 -0.116854
+MUSETT_T1_DSSD_Y10_T 959.98 -0.116368
+MUSETT_T1_DSSD_Y11_T 967.734 -0.117327
+MUSETT_T1_DSSD_Y12_T 967.914 -0.117358
+MUSETT_T1_DSSD_Y13_T 963.677 -0.116827
+MUSETT_T1_DSSD_Y14_T 965.026 -0.116981
+MUSETT_T1_DSSD_Y15_T 962.695 -0.116717
+MUSETT_T1_DSSD_Y16_T 964.683 -0.116883
+MUSETT_T1_DSSD_Y17_T 966.649 -0.117128
+MUSETT_T1_DSSD_Y18_T 971.034 -0.117665
+MUSETT_T1_DSSD_Y19_T 971.558 -0.117743
+MUSETT_T1_DSSD_Y20_T 983.103 -0.119146
+MUSETT_T1_DSSD_Y21_T 979.702 -0.118747
+MUSETT_T1_DSSD_Y22_T 450.0 -0.119189
+MUSETT_T1_DSSD_Y23_T 989.487 -0.119964
+MUSETT_T1_DSSD_Y24_T 991.153 -0.120158
+MUSETT_T1_DSSD_Y25_T 991.247 -0.120176
+MUSETT_T1_DSSD_Y26_T 995.752 -0.120728
+MUSETT_T1_DSSD_Y27_T 990.621 -0.120113
+MUSETT_T1_DSSD_Y28_T 992.588 -0.120339
+MUSETT_T1_DSSD_Y29_T 983.94 -0.119308
+MUSETT_T1_DSSD_Y30_T 990.472 -0.120108
+MUSETT_T1_DSSD_Y31_T 985.366 -0.119515
+MUSETT_T1_DSSD_Y32_T 879.895 -0.106691
+MUSETT_T1_DSSD_Y33_T 885.732 -0.10745
+MUSETT_T1_DSSD_Y34_T 880.947 -0.106848
+MUSETT_T1_DSSD_Y35_T 890.881 -0.108037
+MUSETT_T1_DSSD_Y36_T 850641000000.0 -103827000.0
+MUSETT_T1_DSSD_Y37_T 901.269 -0.109433
+MUSETT_T1_DSSD_Y38_T 900.483 -0.110242
+MUSETT_T1_DSSD_Y39_T 902.133 -0.10944
+MUSETT_T1_DSSD_Y40_T 890.343 -0.107957
+MUSETT_T1_DSSD_Y41_T 902.898 -0.109521
+MUSETT_T1_DSSD_Y42_T 895.657 -0.108623
+MUSETT_T1_DSSD_Y43_T 904.61 -0.10969
+MUSETT_T1_DSSD_Y44_T 907.072 -0.109989
+MUSETT_T1_DSSD_Y45_T 901.222 -0.109312
+MUSETT_T1_DSSD_Y46_T 905.951 -0.109844
+MUSETT_T1_DSSD_Y47_T 901.159 -0.109257
+MUSETT_T1_DSSD_Y48_T 883.344 -0.10696
+MUSETT_T1_DSSD_Y49_T 882.465 -0.106852
+MUSETT_T1_DSSD_Y50_T 878.872 -0.106436
+MUSETT_T1_DSSD_Y51_T 892.099 -0.108049
+MUSETT_T1_DSSD_Y52_T 897.834 -0.108781
+MUSETT_T1_DSSD_Y53_T 899.02 -0.108923
+MUSETT_T1_DSSD_Y54_T 898.979 -0.108922
+MUSETT_T1_DSSD_Y55_T 899.225 -0.108949
+MUSETT_T1_DSSD_Y56_T 911.018 -0.110395
+MUSETT_T1_DSSD_Y57_T 910.225 -0.110294
+MUSETT_T1_DSSD_Y58_T 905.692 -0.109746
+MUSETT_T1_DSSD_Y59_T 908.504 -0.109802
+MUSETT_T1_DSSD_Y60_T 905.665 -0.109742
+MUSETT_T1_DSSD_Y61_T 913.658 -0.11072
+MUSETT_T1_DSSD_Y62_T 915.004 -0.110879
+MUSETT_T1_DSSD_Y63_T 915.999 -0.111037
+MUSETT_T1_DSSD_Y64_T 945.876 -0.115194
+MUSETT_T1_DSSD_Y65_T 952.653 -0.116053
+MUSETT_T1_DSSD_Y66_T 958.599 -0.116788
+MUSETT_T1_DSSD_Y67_T 962.073 -0.117211
+MUSETT_T1_DSSD_Y68_T 965.512 -0.117617
+MUSETT_T1_DSSD_Y69_T 973.646 -0.118609
+MUSETT_T1_DSSD_Y70_T 969.091 -0.118053
+MUSETT_T1_DSSD_Y71_T 977.205 -0.119038
+MUSETT_T1_DSSD_Y72_T 978.244 -0.119163
+MUSETT_T1_DSSD_Y73_T 981.509 -0.119552
+MUSETT_T1_DSSD_Y74_T 983.33 -0.119777
+MUSETT_T1_DSSD_Y75_T 980.28 -0.119391
+MUSETT_T1_DSSD_Y76_T 987.378 -0.11981
+MUSETT_T1_DSSD_Y77_T 981.221 -0.119505
+MUSETT_T1_DSSD_Y78_T 982.019 -0.119601
+MUSETT_T1_DSSD_Y79_T 986.869 -0.120194
+MUSETT_T1_DSSD_Y80_T 942.041 -0.114646
+MUSETT_T1_DSSD_Y81_T 950.256 -0.115676
+MUSETT_T1_DSSD_Y82_T 949.146 -0.115551
+MUSETT_T1_DSSD_Y83_T 956.132 -0.116392
+MUSETT_T1_DSSD_Y84_T 955.603 -0.116344
+MUSETT_T1_DSSD_Y85_T 965.862 -0.117589
+MUSETT_T1_DSSD_Y86_T 966.696 -0.117699
+MUSETT_T1_DSSD_Y87_T 973.856 -0.118567
+MUSETT_T1_DSSD_Y88_T 974.942 -0.118705
+MUSETT_T1_DSSD_Y89_T 967.58 -0.117807
+MUSETT_T1_DSSD_Y90_T 972.217 -0.118376
+MUSETT_T1_DSSD_Y91_T 980.142 -0.119333
+MUSETT_T1_DSSD_Y92_T 980.758 -0.119429
+MUSETT_T1_DSSD_Y93_T 973.754 -0.118576
+MUSETT_T1_DSSD_Y94_T 977.548 -0.119031
+MUSETT_T1_DSSD_Y95_T 988.795 -0.120471
+MUSETT_T1_DSSD_Y96_T 871.404 -0.106136
+MUSETT_T1_DSSD_Y97_T 870.084 -0.106
+MUSETT_T1_DSSD_Y98_T 874.611 -0.106555
+MUSETT_T1_DSSD_Y99_T 888.655 -0.108263
+MUSETT_T1_DSSD_Y100_T 886.461 -0.10801
+MUSETT_T1_DSSD_Y101_T 878.586 -0.107044
+MUSETT_T1_DSSD_Y102_T 886.442 -0.108005
+MUSETT_T1_DSSD_Y103_T 889.81 -0.108406
+MUSETT_T1_DSSD_Y104_T 900.116 -0.109653
+MUSETT_T1_DSSD_Y105_T 896.798 -0.10926
+MUSETT_T1_DSSD_Y106_T 900.214 -0.10967
+MUSETT_T1_DSSD_Y107_T 890.896 -0.108536
+MUSETT_T1_DSSD_Y108_T 898.103 -0.109417
+MUSETT_T1_DSSD_Y109_T 905.123 -0.110268
+MUSETT_T1_DSSD_Y110_T 895.488 -0.109108
+MUSETT_T1_DSSD_Y111_T 901.504 -0.109824
+MUSETT_T1_DSSD_Y112_T 857.767 -0.104291
+MUSETT_T1_DSSD_Y113_T 851.391 -0.103549
+MUSETT_T1_DSSD_Y114_T 861.589 -0.104798
+MUSETT_T1_DSSD_Y115_T 856.553 -0.10419
+MUSETT_T1_DSSD_Y116_T 865.0 -0.105221
+MUSETT_T1_DSSD_Y117_T 874.383 -0.106354
+MUSETT_T1_DSSD_Y118_T 878.744 -0.1069
+MUSETT_T1_DSSD_Y119_T 873.451 -0.106252
+MUSETT_T1_DSSD_Y120_T 890.883 -0.108379
+MUSETT_T1_DSSD_Y121_T 891.802 -0.108492
+MUSETT_T1_DSSD_Y122_T 889.789 -0.108225
+MUSETT_T1_DSSD_Y123_T 888.888 -0.108132
+MUSETT_T1_DSSD_Y124_T 891.161 -0.108412
+MUSETT_T1_DSSD_Y125_T 886.515 -0.10784
+MUSETT_T1_DSSD_Y126_T 883.99 -0.107526
+MUSETT_T1_DSSD_Y127_T 947.91 -0.121191
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..3377583e8617d3622c02ba0a58094591e9dfebac
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E -62.771800000000006 0.00766248
+MUSETT_T2_DSSD_X1_E -62.536199999999994 0.00763367
+MUSETT_T2_DSSD_X2_E -62.923199999999994 0.007680920000000001
+MUSETT_T2_DSSD_X3_E -62.099199999999996 0.0075803
+MUSETT_T2_DSSD_X4_E -62.0716 0.0075769999999999995
+MUSETT_T2_DSSD_X5_E -62.7625 0.00766131
+MUSETT_T2_DSSD_X6_E -62.5366 0.00763372
+MUSETT_T2_DSSD_X7_E -62.8634 0.0076736
+MUSETT_T2_DSSD_X8_E -62.977599999999995 0.00768755
+MUSETT_T2_DSSD_X9_E -62.1692 0.00758889
+MUSETT_T2_DSSD_X10_E -62.4862 0.00762758
+MUSETT_T2_DSSD_X11_E -62.494 0.00762855
+MUSETT_T2_DSSD_X12_E -62.5914 0.0076403999999999994
+MUSETT_T2_DSSD_X13_E -62.5965 0.00764104
+MUSETT_T2_DSSD_X14_E -62.6933 0.00765283
+MUSETT_T2_DSSD_X15_E -63.4319 0.00774304
+MUSETT_T2_DSSD_X16_E -62.2755 0.00760186
+MUSETT_T2_DSSD_X17_E -61.847 0.007549559999999999
+MUSETT_T2_DSSD_X18_E -61.648900000000005 0.0075254200000000005
+MUSETT_T2_DSSD_X19_E -61.472199999999994 0.0075038
+MUSETT_T2_DSSD_X20_E -61.4877 0.0075057299999999995
+MUSETT_T2_DSSD_X21_E -62.3236 0.007607719999999999
+MUSETT_T2_DSSD_X22_E -62.160599999999995 0.00758783
+MUSETT_T2_DSSD_X23_E -61.8015 0.00754404
+MUSETT_T2_DSSD_X24_E -61.589400000000005 0.0075181300000000005
+MUSETT_T2_DSSD_X25_E -61.837900000000005 0.00754843
+MUSETT_T2_DSSD_X26_E -61.9972 0.00756788
+MUSETT_T2_DSSD_X27_E -61.886900000000004 0.00755441
+MUSETT_T2_DSSD_X28_E -61.669599999999996 0.00752787
+MUSETT_T2_DSSD_X29_E -61.3176 0.00748493
+MUSETT_T2_DSSD_X30_E -62.385400000000004 0.0076153
+MUSETT_T2_DSSD_X31_E -61.5448 0.007512710000000001
+MUSETT_T2_DSSD_X32_E -59.0051 0.00720263
+MUSETT_T2_DSSD_X33_E -58.1254 0.0070952
+MUSETT_T2_DSSD_X34_E -58.621 0.0071557700000000005
+MUSETT_T2_DSSD_X35_E -58.4208 0.00713128
+MUSETT_T2_DSSD_X36_E -58.1821 0.00710215
+MUSETT_T2_DSSD_X37_E -58.1795 0.00710183
+MUSETT_T2_DSSD_X38_E -58.3827 0.00712665
+MUSETT_T2_DSSD_X39_E -57.9516 0.0070739999999999996
+MUSETT_T2_DSSD_X40_E -57.6194 0.00703346
+MUSETT_T2_DSSD_X41_E -58.6028 0.007153489999999999
+MUSETT_T2_DSSD_X42_E -58.7636 0.0071731699999999995
+MUSETT_T2_DSSD_X43_E -58.295300000000005 0.00711601
+MUSETT_T2_DSSD_X44_E -58.6115 0.00715458
+MUSETT_T2_DSSD_X45_E -58.5695 0.00714945
+MUSETT_T2_DSSD_X46_E -58.3686 0.00712489
+MUSETT_T2_DSSD_X47_E -58.524699999999996 0.007144
+MUSETT_T2_DSSD_X48_E -57.829699999999995 0.00705919
+MUSETT_T2_DSSD_X49_E -57.177699999999994 0.00697958
+MUSETT_T2_DSSD_X50_E -58.151 0.0070983999999999995
+MUSETT_T2_DSSD_X51_E -57.925 0.00707083
+MUSETT_T2_DSSD_X52_E -57.600199999999994 0.00703119
+MUSETT_T2_DSSD_X53_E -57.219800000000006 0.0069847
+MUSETT_T2_DSSD_X54_E -57.8554 0.007062280000000001
+MUSETT_T2_DSSD_X55_E -57.682199999999995 0.007041159999999999
+MUSETT_T2_DSSD_X56_E -57.9126 0.00706929
+MUSETT_T2_DSSD_X57_E -57.5989 0.00703102
+MUSETT_T2_DSSD_X58_E -57.919599999999996 0.00707016
+MUSETT_T2_DSSD_X59_E -56.9985 0.0069577
+MUSETT_T2_DSSD_X60_E -57.4982 0.007018709999999999
+MUSETT_T2_DSSD_X61_E -56.729099999999995 0.00692483
+MUSETT_T2_DSSD_X62_E -57.5006 0.00701901
+MUSETT_T2_DSSD_X63_E -57.910599999999995 0.00706904
+MUSETT_T2_DSSD_X64_E -63.311 0.007728240000000001
+MUSETT_T2_DSSD_X65_E -64.9918 0.00793347
+MUSETT_T2_DSSD_X66_E -63.9945 0.0078117
+MUSETT_T2_DSSD_X67_E -63.7503 0.00778186
+MUSETT_T2_DSSD_X68_E -10.0 0.0
+MUSETT_T2_DSSD_X69_E -64.4085 0.007862280000000001
+MUSETT_T2_DSSD_X70_E -63.629 0.0077670199999999995
+MUSETT_T2_DSSD_X71_E -63.4388 0.00774388
+MUSETT_T2_DSSD_X72_E -63.3583 0.0077339900000000005
+MUSETT_T2_DSSD_X73_E -63.1446 0.00770793
+MUSETT_T2_DSSD_X74_E -63.8121 0.007789399999999999
+MUSETT_T2_DSSD_X75_E -63.6624 0.00777117
+MUSETT_T2_DSSD_X76_E -63.8769 0.00779733
+MUSETT_T2_DSSD_X77_E -63.7711 0.00778444
+MUSETT_T2_DSSD_X78_E -63.6521 0.0077699
+MUSETT_T2_DSSD_X79_E -63.600300000000004 0.00776358
+MUSETT_T2_DSSD_X80_E -63.2564 0.0077215800000000005
+MUSETT_T2_DSSD_X81_E -63.3337 0.00773107
+MUSETT_T2_DSSD_X82_E -63.15 0.00770859
+MUSETT_T2_DSSD_X83_E -63.2045 0.00771524
+MUSETT_T2_DSSD_X84_E -63.982099999999996 0.00781015
+MUSETT_T2_DSSD_X85_E -63.771300000000004 0.00778446
+MUSETT_T2_DSSD_X86_E -63.6827 0.0077737
+MUSETT_T2_DSSD_X87_E -63.921099999999996 0.00780269
+MUSETT_T2_DSSD_X88_E -63.090300000000006 0.0077012999999999995
+MUSETT_T2_DSSD_X89_E -63.5487 0.00775733
+MUSETT_T2_DSSD_X90_E -63.345699999999994 0.00773257
+MUSETT_T2_DSSD_X91_E -63.537699999999994 0.00775593
+MUSETT_T2_DSSD_X92_E -63.2671 0.00772292
+MUSETT_T2_DSSD_X93_E -64.6143 0.00788733
+MUSETT_T2_DSSD_X94_E -63.737 0.00778019
+MUSETT_T2_DSSD_X95_E -63.6275 0.00776682
+MUSETT_T2_DSSD_X96_E -59.0116 0.00720345
+MUSETT_T2_DSSD_X97_E -58.536300000000004 0.00714543
+MUSETT_T2_DSSD_X98_E -58.2945 0.00711592
+MUSETT_T2_DSSD_X99_E -58.7645 0.00717328
+MUSETT_T2_DSSD_X100_E -59.3882 0.007249380000000001
+MUSETT_T2_DSSD_X101_E -59.3539 0.00724523
+MUSETT_T2_DSSD_X102_E -58.868900000000004 0.00718606
+MUSETT_T2_DSSD_X103_E -59.0204 0.00720454
+MUSETT_T2_DSSD_X104_E -59.051199999999994 0.00720827
+MUSETT_T2_DSSD_X105_E -59.067699999999995 0.00721031
+MUSETT_T2_DSSD_X106_E -58.7806 0.00717527
+MUSETT_T2_DSSD_X107_E -59.0118 0.00720348
+MUSETT_T2_DSSD_X108_E -58.6856 0.0071636899999999995
+MUSETT_T2_DSSD_X109_E -60.3136 0.00736243
+MUSETT_T2_DSSD_X110_E -58.9477 0.0071956
+MUSETT_T2_DSSD_X111_E -58.6406 0.00715819
+MUSETT_T2_DSSD_X112_E -59.2564 0.00723333
+MUSETT_T2_DSSD_X113_E -59.391400000000004 0.00724979
+MUSETT_T2_DSSD_X114_E -59.7415 0.00729254
+MUSETT_T2_DSSD_X115_E -59.153 0.0072207
+MUSETT_T2_DSSD_X116_E -59.6593 0.00728255
+MUSETT_T2_DSSD_X117_E -60.0435 0.007329410000000001
+MUSETT_T2_DSSD_X118_E -59.4929 0.00726218
+MUSETT_T2_DSSD_X119_E -59.3559 0.0072455
+MUSETT_T2_DSSD_X120_E -60.079 0.0073337
+MUSETT_T2_DSSD_X121_E -58.759699999999995 0.00717268
+MUSETT_T2_DSSD_X122_E -59.106300000000005 0.00721501
+MUSETT_T2_DSSD_X123_E -59.3564 0.00724556
+MUSETT_T2_DSSD_X124_E -58.9054 0.00719045
+MUSETT_T2_DSSD_X125_E -58.909 0.00719091
+MUSETT_T2_DSSD_X126_E -59.1398 0.00721905
+MUSETT_T2_DSSD_X127_E -59.2444 0.00723184
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..42f4d2174be61e224ee762c0a61859e525dfc76f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_E 63.1803 -0.0077125399999999995
+MUSETT_T2_DSSD_Y1_E 63.9585 -0.00780757
+MUSETT_T2_DSSD_Y2_E 62.563900000000004 -0.00763734
+MUSETT_T2_DSSD_Y3_E 63.393800000000006 -0.00773864
+MUSETT_T2_DSSD_Y4_E 62.965300000000006 -0.0076863
+MUSETT_T2_DSSD_Y5_E 62.6952 -0.00765332
+MUSETT_T2_DSSD_Y6_E 63.071 -0.007699200000000001
+MUSETT_T2_DSSD_Y7_E 62.6847 -0.00765205
+MUSETT_T2_DSSD_Y8_E 62.8052 -0.00766674
+MUSETT_T2_DSSD_Y9_E 63.4059 -0.00774008
+MUSETT_T2_DSSD_Y10_E 63.006 -0.007691290000000001
+MUSETT_T2_DSSD_Y11_E 62.613800000000005 -0.00764344
+MUSETT_T2_DSSD_Y12_E 62.1358 -0.00758506
+MUSETT_T2_DSSD_Y13_E 62.7978 -0.00766584
+MUSETT_T2_DSSD_Y14_E 63.0039 -0.00769104
+MUSETT_T2_DSSD_Y15_E 63.4515 -0.00774566
+MUSETT_T2_DSSD_Y16_E 61.6804 -0.00752939
+MUSETT_T2_DSSD_Y17_E 60.963699999999996 -0.007442020000000001
+MUSETT_T2_DSSD_Y18_E 60.731300000000005 -0.007413599999999999
+MUSETT_T2_DSSD_Y19_E 62.0444 -0.00757386
+MUSETT_T2_DSSD_Y20_E 61.1209 -0.00746121
+MUSETT_T2_DSSD_Y21_E 60.932 -0.0074381000000000004
+MUSETT_T2_DSSD_Y22_E 62.091800000000006 -0.00757965
+MUSETT_T2_DSSD_Y23_E 61.0425 -0.00745157
+MUSETT_T2_DSSD_Y24_E 61.0802 -0.00745622
+MUSETT_T2_DSSD_Y25_E 61.569 -0.00751583
+MUSETT_T2_DSSD_Y26_E 61.0889 -0.0074572399999999995
+MUSETT_T2_DSSD_Y27_E 61.4018 -0.00749545
+MUSETT_T2_DSSD_Y28_E 61.5908 -0.00751854
+MUSETT_T2_DSSD_Y29_E 61.4567 -0.00750214
+MUSETT_T2_DSSD_Y30_E 61.3482 -0.00748891
+MUSETT_T2_DSSD_Y31_E 61.8146 -0.007545860000000001
+MUSETT_T2_DSSD_Y32_E 56.3104 -0.00687387
+MUSETT_T2_DSSD_Y33_E 56.4756 -0.00689413
+MUSETT_T2_DSSD_Y34_E 56.8437 -0.00693897
+MUSETT_T2_DSSD_Y35_E 56.709900000000005 -0.0069226999999999995
+MUSETT_T2_DSSD_Y36_E 57.0065 -0.00695894
+MUSETT_T2_DSSD_Y37_E 56.9227 -0.00694871
+MUSETT_T2_DSSD_Y38_E 56.395900000000005 -0.00688437
+MUSETT_T2_DSSD_Y39_E 56.4375 -0.00688946
+MUSETT_T2_DSSD_Y40_E 56.168099999999995 -0.006856569999999999
+MUSETT_T2_DSSD_Y41_E 58.1374 -0.0070969100000000005
+MUSETT_T2_DSSD_Y42_E 56.7521 -0.00692786
+MUSETT_T2_DSSD_Y43_E 56.2683 -0.00686879
+MUSETT_T2_DSSD_Y44_E 57.2483 -0.00698843
+MUSETT_T2_DSSD_Y45_E 57.2377 -0.00698715
+MUSETT_T2_DSSD_Y46_E 57.0625 -0.006965740000000001
+MUSETT_T2_DSSD_Y47_E 56.700199999999995 -0.0069215200000000004
+MUSETT_T2_DSSD_Y48_E 57.6094 -0.00703252
+MUSETT_T2_DSSD_Y49_E 57.0451 -0.00696368
+MUSETT_T2_DSSD_Y50_E 57.8934 -0.00706716
+MUSETT_T2_DSSD_Y51_E 57.4321 -0.00701085
+MUSETT_T2_DSSD_Y52_E 57.3273 -0.0069981
+MUSETT_T2_DSSD_Y53_E 58.593599999999995 -0.00715267
+MUSETT_T2_DSSD_Y54_E 57.7132 -0.00704516
+MUSETT_T2_DSSD_Y55_E 57.801 -0.0070558899999999996
+MUSETT_T2_DSSD_Y56_E 57.750099999999996 -0.0070497
+MUSETT_T2_DSSD_Y57_E 57.5646 -0.00702705
+MUSETT_T2_DSSD_Y58_E 57.5132 -0.00702079
+MUSETT_T2_DSSD_Y59_E 58.2986 -0.00711669
+MUSETT_T2_DSSD_Y60_E 57.8836 -0.007066
+MUSETT_T2_DSSD_Y61_E 57.3339 -0.006998890000000001
+MUSETT_T2_DSSD_Y62_E 57.8777 -0.00706529
+MUSETT_T2_DSSD_Y63_E 58.222300000000004 -0.0071073199999999994
+MUSETT_T2_DSSD_Y64_E 59.3524 -0.007245339999999999
+MUSETT_T2_DSSD_Y65_E 59.653 -0.00728202
+MUSETT_T2_DSSD_Y66_E 59.466699999999996 -0.00725926
+MUSETT_T2_DSSD_Y67_E 60.421 -0.00737573
+MUSETT_T2_DSSD_Y68_E 59.563300000000005 -0.00727104
+MUSETT_T2_DSSD_Y69_E 59.865199999999994 -0.00730789
+MUSETT_T2_DSSD_Y70_E 59.5681 -0.0072716099999999995
+MUSETT_T2_DSSD_Y71_E 59.9031 -0.00731254
+MUSETT_T2_DSSD_Y72_E 59.874199999999995 -0.007308950000000001
+MUSETT_T2_DSSD_Y73_E 59.5659 -0.00727135
+MUSETT_T2_DSSD_Y74_E 59.9514 -0.00731844
+MUSETT_T2_DSSD_Y75_E 60.102599999999995 -0.00733689
+MUSETT_T2_DSSD_Y76_E 59.329 -0.00724242
+MUSETT_T2_DSSD_Y77_E 59.9733 -0.00732106
+MUSETT_T2_DSSD_Y78_E 59.3692 -0.0072473400000000006
+MUSETT_T2_DSSD_Y79_E 60.2055 -0.00734945
+MUSETT_T2_DSSD_Y80_E 60.5591 -0.00739262
+MUSETT_T2_DSSD_Y81_E 61.2239 -0.00747379
+MUSETT_T2_DSSD_Y82_E 60.5555 -0.00739217
+MUSETT_T2_DSSD_Y83_E 61.2678 -0.00747916
+MUSETT_T2_DSSD_Y84_E 61.1832 -0.00746879
+MUSETT_T2_DSSD_Y85_E 60.8774 -0.00743143
+MUSETT_T2_DSSD_Y86_E 60.9647 -0.00744213
+MUSETT_T2_DSSD_Y87_E 61.3167 -0.00748517
+MUSETT_T2_DSSD_Y88_E 60.8896 -0.00743289
+MUSETT_T2_DSSD_Y89_E 60.834900000000005 -0.007426230000000001
+MUSETT_T2_DSSD_Y90_E 61.4754 -0.007504520000000001
+MUSETT_T2_DSSD_Y91_E 60.713800000000006 -0.00741149
+MUSETT_T2_DSSD_Y92_E 61.139900000000004 -0.007463490000000001
+MUSETT_T2_DSSD_Y93_E 60.5862 -0.007395850000000001
+MUSETT_T2_DSSD_Y94_E 61.0912 -0.00745753
+MUSETT_T2_DSSD_Y95_E 61.463 -0.00750289
+MUSETT_T2_DSSD_Y96_E 56.8837 -0.00694393
+MUSETT_T2_DSSD_Y97_E 55.9583 -0.0068309600000000005
+MUSETT_T2_DSSD_Y98_E 56.259699999999995 -0.00686775
+MUSETT_T2_DSSD_Y99_E 56.6209 -0.00691184
+MUSETT_T2_DSSD_Y100_E 56.3901 -0.00688368
+MUSETT_T2_DSSD_Y101_E 56.7419 -0.0069266300000000005
+MUSETT_T2_DSSD_Y102_E 55.881699999999995 -0.00682158
+MUSETT_T2_DSSD_Y103_E 57.2425 -0.00698773
+MUSETT_T2_DSSD_Y104_E 56.047599999999996 -0.00684185
+MUSETT_T2_DSSD_Y105_E 56.7064 -0.00692227
+MUSETT_T2_DSSD_Y106_E 56.618300000000005 -0.00691153
+MUSETT_T2_DSSD_Y107_E 57.5163 -0.00702116
+MUSETT_T2_DSSD_Y108_E 57.052699999999994 -0.00696458
+MUSETT_T2_DSSD_Y109_E 56.7013 -0.0069216699999999996
+MUSETT_T2_DSSD_Y110_E 57.023199999999996 -0.0069609500000000005
+MUSETT_T2_DSSD_Y111_E 56.155300000000004 -0.00685506
+MUSETT_T2_DSSD_Y112_E 56.4801 -0.00689468
+MUSETT_T2_DSSD_Y113_E 57.291 -0.00699365
+MUSETT_T2_DSSD_Y114_E 56.601099999999995 -0.00690948
+MUSETT_T2_DSSD_Y115_E 56.8647 -0.0069416700000000005
+MUSETT_T2_DSSD_Y116_E 56.5048 -0.0068977199999999995
+MUSETT_T2_DSSD_Y117_E 56.531 -0.00690085
+MUSETT_T2_DSSD_Y118_E 56.8031 -0.0069340700000000005
+MUSETT_T2_DSSD_Y119_E 56.7446 -0.00692696
+MUSETT_T2_DSSD_Y120_E 56.3396 -0.00687753
+MUSETT_T2_DSSD_Y121_E 57.094699999999996 -0.00696973
+MUSETT_T2_DSSD_Y122_E 57.4718 -0.00701574
+MUSETT_T2_DSSD_Y123_E -10.0 0.0
+MUSETT_T2_DSSD_Y124_E 56.2437 -0.00686585
+MUSETT_T2_DSSD_Y125_E 56.920199999999994 -0.00694841
+MUSETT_T2_DSSD_Y126_E 56.3579 -0.00687972
+MUSETT_T2_DSSD_Y127_E 56.1714 -0.00685698
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1983b41dd0fcbe6248c501b5faac1ca1a7e2d690
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_T 936.808 -0.113282
+MUSETT_T2_DSSD_X1_T 933.588 -0.112935
+MUSETT_T2_DSSD_X2_T 941.562 -0.113903
+MUSETT_T2_DSSD_X3_T 953.784 -0.11541
+MUSETT_T2_DSSD_X4_T 949.078 -0.114834
+MUSETT_T2_DSSD_X5_T 966.718 -0.116968
+MUSETT_T2_DSSD_X6_T 960.214 -0.116144
+MUSETT_T2_DSSD_X7_T 964.987 -0.116738
+MUSETT_T2_DSSD_X8_T 956.88 -0.115736
+MUSETT_T2_DSSD_X9_T 968.81 -0.117191
+MUSETT_T2_DSSD_X10_T 971.337 -0.117505
+MUSETT_T2_DSSD_X11_T 966.1 -0.116868
+MUSETT_T2_DSSD_X12_T 972.053 -0.117596
+MUSETT_T2_DSSD_X13_T 966.078 -0.116864
+MUSETT_T2_DSSD_X14_T 966.541 -0.116934
+MUSETT_T2_DSSD_X15_T 1367.28 -0.118078
+MUSETT_T2_DSSD_X16_T 918.709 -0.111042
+MUSETT_T2_DSSD_X17_T 933.754 -0.1129
+MUSETT_T2_DSSD_X18_T 936.423 -0.113239
+MUSETT_T2_DSSD_X19_T 935.388 -0.11311
+MUSETT_T2_DSSD_X20_T 946.289 -0.114433
+MUSETT_T2_DSSD_X21_T 941.937 -0.113893
+MUSETT_T2_DSSD_X22_T 939.701 -0.113604
+MUSETT_T2_DSSD_X23_T 947.866 -0.114596
+MUSETT_T2_DSSD_X24_T 939.11 -0.113523
+MUSETT_T2_DSSD_X25_T 947.312 -0.114529
+MUSETT_T2_DSSD_X26_T 947.872 -0.114587
+MUSETT_T2_DSSD_X27_T 944.089 -0.114127
+MUSETT_T2_DSSD_X28_T 951.541 -0.115049
+MUSETT_T2_DSSD_X29_T 947.806 -0.114577
+MUSETT_T2_DSSD_X30_T 949.646 -0.114801
+MUSETT_T2_DSSD_X31_T 1101.24 -0.114725
+MUSETT_T2_DSSD_X32_T 883.868 -0.106884
+MUSETT_T2_DSSD_X33_T 881.306 -0.106588
+MUSETT_T2_DSSD_X34_T 890.406 -0.10771
+MUSETT_T2_DSSD_X35_T 887.688 -0.10739
+MUSETT_T2_DSSD_X36_T 901.335 -0.109058
+MUSETT_T2_DSSD_X37_T 898.532 -0.108685
+MUSETT_T2_DSSD_X38_T 906.127 -0.109605
+MUSETT_T2_DSSD_X39_T 903.029 -0.109211
+MUSETT_T2_DSSD_X40_T 902.567 -0.109168
+MUSETT_T2_DSSD_X41_T 906.324 -0.109617
+MUSETT_T2_DSSD_X42_T 912.663 -0.1104
+MUSETT_T2_DSSD_X43_T 911.609 -0.110254
+MUSETT_T2_DSSD_X44_T 919.504 -0.111219
+MUSETT_T2_DSSD_X45_T 918.075 -0.111043
+MUSETT_T2_DSSD_X46_T 920.693 -0.111378
+MUSETT_T2_DSSD_X47_T 1304.08 -0.11089
+MUSETT_T2_DSSD_X48_T 852.901 -0.102956
+MUSETT_T2_DSSD_X49_T 862.836 -0.104191
+MUSETT_T2_DSSD_X50_T 872.425 -0.105362
+MUSETT_T2_DSSD_X51_T 866.551 -0.10464
+MUSETT_T2_DSSD_X52_T 875.507 -0.105723
+MUSETT_T2_DSSD_X53_T 875.722 -0.105755
+MUSETT_T2_DSSD_X54_T 877.794 -0.105984
+MUSETT_T2_DSSD_X55_T 885.59 -0.106931
+MUSETT_T2_DSSD_X56_T 894.535 -0.108024
+MUSETT_T2_DSSD_X57_T 896.983 -0.108307
+MUSETT_T2_DSSD_X58_T 888.442 -0.107279
+MUSETT_T2_DSSD_X59_T 898.855 -0.108543
+MUSETT_T2_DSSD_X60_T 900.217 -0.108721
+MUSETT_T2_DSSD_X61_T 899.805 -0.108665
+MUSETT_T2_DSSD_X62_T 896.358 -0.10824
+MUSETT_T2_DSSD_X63_T 1286.56 -0.107885
+MUSETT_T2_DSSD_X64_T 969.588 -0.117533
+MUSETT_T2_DSSD_X65_T 969.639 -0.117545
+MUSETT_T2_DSSD_X66_T 981.26 -0.118957
+MUSETT_T2_DSSD_X67_T 986.207 -0.119584
+MUSETT_T2_DSSD_X68_T 450.0 -0.119902
+MUSETT_T2_DSSD_X69_T 989.899 -0.12002
+MUSETT_T2_DSSD_X70_T 991.208 -0.120171
+MUSETT_T2_DSSD_X71_T 996.377 -0.120802
+MUSETT_T2_DSSD_X72_T 989.619 -0.119977
+MUSETT_T2_DSSD_X73_T 998.452 -0.12102
+MUSETT_T2_DSSD_X74_T 994.24 -0.12055
+MUSETT_T2_DSSD_X75_T 993.976 -0.12048
+MUSETT_T2_DSSD_X76_T 1003.64 -0.121688
+MUSETT_T2_DSSD_X77_T 1007.3 -0.122136
+MUSETT_T2_DSSD_X78_T 1010.11 -0.122472
+MUSETT_T2_DSSD_X79_T 1318.69 -0.121488
+MUSETT_T2_DSSD_X80_T 950.946 -0.115148
+MUSETT_T2_DSSD_X81_T 961.899 -0.116512
+MUSETT_T2_DSSD_X82_T 963.68 -0.116735
+MUSETT_T2_DSSD_X83_T 967.2 -0.117158
+MUSETT_T2_DSSD_X84_T 967.305 -0.117159
+MUSETT_T2_DSSD_X85_T 968.515 -0.117336
+MUSETT_T2_DSSD_X86_T 982.177 -0.118997
+MUSETT_T2_DSSD_X87_T 981.387 -0.118879
+MUSETT_T2_DSSD_X88_T 991.904 -0.120152
+MUSETT_T2_DSSD_X89_T 991.623 -0.120143
+MUSETT_T2_DSSD_X90_T 990.622 -0.120011
+MUSETT_T2_DSSD_X91_T 980.868 -0.118788
+MUSETT_T2_DSSD_X92_T 995.536 -0.120614
+MUSETT_T2_DSSD_X93_T 999.576 -0.12112
+MUSETT_T2_DSSD_X94_T 1000.5 -0.12123
+MUSETT_T2_DSSD_X95_T 985.324 -0.119394
+MUSETT_T2_DSSD_X96_T 898.921 -0.10895
+MUSETT_T2_DSSD_X97_T 915.715 -0.11099
+MUSETT_T2_DSSD_X98_T 911.411 -0.110483
+MUSETT_T2_DSSD_X99_T 911.648 -0.110494
+MUSETT_T2_DSSD_X100_T 920.871 -0.11163
+MUSETT_T2_DSSD_X101_T 920.388 -0.111573
+MUSETT_T2_DSSD_X102_T 918.664 -0.111368
+MUSETT_T2_DSSD_X103_T 923.174 -0.111888
+MUSETT_T2_DSSD_X104_T 933.198 -0.113122
+MUSETT_T2_DSSD_X105_T 930.187 -0.112764
+MUSETT_T2_DSSD_X106_T 935.147 -0.113373
+MUSETT_T2_DSSD_X107_T 930.349 -0.112797
+MUSETT_T2_DSSD_X108_T 933.561 -0.113176
+MUSETT_T2_DSSD_X109_T 940.135 -0.113973
+MUSETT_T2_DSSD_X110_T 940.914 -0.114066
+MUSETT_T2_DSSD_X111_T 940.163 -0.113973
+MUSETT_T2_DSSD_X112_T 900.272 -0.108961
+MUSETT_T2_DSSD_X113_T 905.007 -0.109531
+MUSETT_T2_DSSD_X114_T 912.464 -0.110461
+MUSETT_T2_DSSD_X115_T 912.22 -0.110414
+MUSETT_T2_DSSD_X116_T 927.733 -0.112323
+MUSETT_T2_DSSD_X117_T 930.691 -0.11267
+MUSETT_T2_DSSD_X118_T 936.077 -0.113333
+MUSETT_T2_DSSD_X119_T 939.108 -0.113698
+MUSETT_T2_DSSD_X120_T 938.924 -0.113666
+MUSETT_T2_DSSD_X121_T 947.571 -0.114745
+MUSETT_T2_DSSD_X122_T 938.938 -0.113673
+MUSETT_T2_DSSD_X123_T 945.07 -0.11443
+MUSETT_T2_DSSD_X124_T 934.733 -0.113174
+MUSETT_T2_DSSD_X125_T 934.595 -0.113143
+MUSETT_T2_DSSD_X126_T 943.044 -0.114176
+MUSETT_T2_DSSD_X127_T 943.184 -0.114186
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..7ff18502dac89c993590306b5479a1f20452d0ee
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_T 987.442 -0.119525
+MUSETT_T2_DSSD_Y1_T 990.37 -0.119903
+MUSETT_T2_DSSD_Y2_T 989.136 -0.119776
+MUSETT_T2_DSSD_Y3_T 995.437 -0.120524
+MUSETT_T2_DSSD_Y4_T 1000.77 -0.121165
+MUSETT_T2_DSSD_Y5_T 998.951 -0.120947
+MUSETT_T2_DSSD_Y6_T 1003.75 -0.121526
+MUSETT_T2_DSSD_Y7_T 1010.87 -0.122366
+MUSETT_T2_DSSD_Y8_T 1012.21 -0.122539
+MUSETT_T2_DSSD_Y9_T 1003.9 -0.121307
+MUSETT_T2_DSSD_Y10_T 1010.24 -0.122275
+MUSETT_T2_DSSD_Y11_T 1015.27 -0.122898
+MUSETT_T2_DSSD_Y12_T 1017.2 -0.12312
+MUSETT_T2_DSSD_Y13_T 1022.23 -0.123746
+MUSETT_T2_DSSD_Y14_T 1021.37 -0.123621
+MUSETT_T2_DSSD_Y15_T 1022.68 -0.123744
+MUSETT_T2_DSSD_Y16_T 939.963 -0.113632
+MUSETT_T2_DSSD_Y17_T 939.308 -0.11359
+MUSETT_T2_DSSD_Y18_T 938.897 -0.113546
+MUSETT_T2_DSSD_Y19_T 938.628 -0.113526
+MUSETT_T2_DSSD_Y20_T 953.606 -0.115367
+MUSETT_T2_DSSD_Y21_T 969.437 -0.117305
+MUSETT_T2_DSSD_Y22_T 965.454 -0.11682
+MUSETT_T2_DSSD_Y23_T 960.44 -0.116216
+MUSETT_T2_DSSD_Y24_T 975.99 -0.118134
+MUSETT_T2_DSSD_Y25_T 978.687 -0.118446
+MUSETT_T2_DSSD_Y26_T 976.083 -0.117858
+MUSETT_T2_DSSD_Y27_T 982.568 -0.11895
+MUSETT_T2_DSSD_Y28_T 976.864 -0.118238
+MUSETT_T2_DSSD_Y29_T 978.515 -0.118468
+MUSETT_T2_DSSD_Y30_T 977.409 -0.118337
+MUSETT_T2_DSSD_Y31_T 965.447 -0.116905
+MUSETT_T2_DSSD_Y32_T 870.181 -0.105393
+MUSETT_T2_DSSD_Y33_T 876.858 -0.106206
+MUSETT_T2_DSSD_Y34_T 889.244 -0.107711
+MUSETT_T2_DSSD_Y35_T 890.519 -0.10786
+MUSETT_T2_DSSD_Y36_T 893.817 -0.108297
+MUSETT_T2_DSSD_Y37_T 888.588 -0.107628
+MUSETT_T2_DSSD_Y38_T 904.701 -0.109574
+MUSETT_T2_DSSD_Y39_T 903.479 -0.109401
+MUSETT_T2_DSSD_Y40_T 906.236 -0.109756
+MUSETT_T2_DSSD_Y41_T 914.382 -0.110304
+MUSETT_T2_DSSD_Y42_T 906.598 -0.10979
+MUSETT_T2_DSSD_Y43_T 910.53 -0.110231
+MUSETT_T2_DSSD_Y44_T 912.933 -0.110532
+MUSETT_T2_DSSD_Y45_T 916.041 -0.110907
+MUSETT_T2_DSSD_Y46_T 919.774 -0.111371
+MUSETT_T2_DSSD_Y47_T 915.148 -0.110791
+MUSETT_T2_DSSD_Y48_T 893.19 -0.108016
+MUSETT_T2_DSSD_Y49_T 902.467 -0.109155
+MUSETT_T2_DSSD_Y50_T 899.946 -0.108834
+MUSETT_T2_DSSD_Y51_T 913.407 -0.110471
+MUSETT_T2_DSSD_Y52_T 905.911 -0.109622
+MUSETT_T2_DSSD_Y53_T 914.887 -0.110708
+MUSETT_T2_DSSD_Y54_T 922.021 -0.111116
+MUSETT_T2_DSSD_Y55_T 914.007 -0.11061
+MUSETT_T2_DSSD_Y56_T 926.973 -0.11216
+MUSETT_T2_DSSD_Y57_T 918.182 -0.111079
+MUSETT_T2_DSSD_Y58_T 920.356 -0.111393
+MUSETT_T2_DSSD_Y59_T 924.322 -0.11168
+MUSETT_T2_DSSD_Y60_T 940.509 -0.11386
+MUSETT_T2_DSSD_Y61_T 925.883 -0.112068
+MUSETT_T2_DSSD_Y62_T 921.861 -0.111623
+MUSETT_T2_DSSD_Y63_T 929.763 -0.112593
+MUSETT_T2_DSSD_Y64_T 924.331 -0.111864
+MUSETT_T2_DSSD_Y65_T 943.62 -0.114242
+MUSETT_T2_DSSD_Y66_T 947.992 -0.114763
+MUSETT_T2_DSSD_Y67_T 945.728 -0.114477
+MUSETT_T2_DSSD_Y68_T 972.019 -0.117701
+MUSETT_T2_DSSD_Y69_T 960.071 -0.116242
+MUSETT_T2_DSSD_Y70_T 967.505 -0.117144
+MUSETT_T2_DSSD_Y71_T 964.472 -0.116783
+MUSETT_T2_DSSD_Y72_T 955.96 -0.115747
+MUSETT_T2_DSSD_Y73_T 958.084 -0.115989
+MUSETT_T2_DSSD_Y74_T 964.33 -0.116762
+MUSETT_T2_DSSD_Y75_T 977.202 -0.118324
+MUSETT_T2_DSSD_Y76_T 973.571 -0.117892
+MUSETT_T2_DSSD_Y77_T 976.2 -0.118194
+MUSETT_T2_DSSD_Y78_T 967.051 -0.117092
+MUSETT_T2_DSSD_Y79_T 968.99 -0.117343
+MUSETT_T2_DSSD_Y80_T 944.542 -0.114246
+MUSETT_T2_DSSD_Y81_T 939.064 -0.113582
+MUSETT_T2_DSSD_Y82_T 951.122 -0.115097
+MUSETT_T2_DSSD_Y83_T 946.764 -0.114574
+MUSETT_T2_DSSD_Y84_T 955.625 -0.115653
+MUSETT_T2_DSSD_Y85_T 966.0 -0.11692
+MUSETT_T2_DSSD_Y86_T 964.199 -0.116695
+MUSETT_T2_DSSD_Y87_T 969.926 -0.117388
+MUSETT_T2_DSSD_Y88_T 972.649 -0.117739
+MUSETT_T2_DSSD_Y89_T 974.635 -0.11797
+MUSETT_T2_DSSD_Y90_T 979.1 -0.118525
+MUSETT_T2_DSSD_Y91_T 969.715 -0.117371
+MUSETT_T2_DSSD_Y92_T 977.475 -0.118331
+MUSETT_T2_DSSD_Y93_T 977.142 -0.118283
+MUSETT_T2_DSSD_Y94_T 984.646 -0.119174
+MUSETT_T2_DSSD_Y95_T 989.259 -0.119806
+MUSETT_T2_DSSD_Y96_T 897.538 -0.108639
+MUSETT_T2_DSSD_Y97_T 893.51 -0.108189
+MUSETT_T2_DSSD_Y98_T 904.052 -0.109474
+MUSETT_T2_DSSD_Y99_T 902.752 -0.109308
+MUSETT_T2_DSSD_Y100_T 916.527 -0.110997
+MUSETT_T2_DSSD_Y101_T 924.175 -0.111938
+MUSETT_T2_DSSD_Y102_T 914.572 -0.110746
+MUSETT_T2_DSSD_Y103_T 930.562 -0.112691
+MUSETT_T2_DSSD_Y104_T 925.104 -0.112025
+MUSETT_T2_DSSD_Y105_T 920.853 -0.111507
+MUSETT_T2_DSSD_Y106_T 922.078 -0.111663
+MUSETT_T2_DSSD_Y107_T 921.772 -0.111623
+MUSETT_T2_DSSD_Y108_T 925.31 -0.112066
+MUSETT_T2_DSSD_Y109_T 926.033 -0.11214
+MUSETT_T2_DSSD_Y110_T 922.391 -0.111703
+MUSETT_T2_DSSD_Y111_T 912.83 -0.110525
+MUSETT_T2_DSSD_Y112_T 852.798 -0.102981
+MUSETT_T2_DSSD_Y113_T 868.843 -0.104976
+MUSETT_T2_DSSD_Y114_T 876.793 -0.105936
+MUSETT_T2_DSSD_Y115_T 875.311 -0.10575
+MUSETT_T2_DSSD_Y116_T 883.331 -0.106741
+MUSETT_T2_DSSD_Y117_T 879.699 -0.10628
+MUSETT_T2_DSSD_Y118_T 891.993 -0.107805
+MUSETT_T2_DSSD_Y119_T 893.52 -0.107966
+MUSETT_T2_DSSD_Y120_T 883.484 -0.106759
+MUSETT_T2_DSSD_Y121_T 896.835 -0.108381
+MUSETT_T2_DSSD_Y122_T 895.32 -0.108195
+MUSETT_T2_DSSD_Y123_T 1336.18 -0.108195
+MUSETT_T2_DSSD_Y124_T 897.921 -0.108519
+MUSETT_T2_DSSD_Y125_T 898.896 -0.10863
+MUSETT_T2_DSSD_Y126_T 900.009 -0.108768
+MUSETT_T2_DSSD_Y127_T 896.14 -0.108297
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..6d44786682807bcd47daac47f87da625c69eae8c
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E -62.432 0.00762115
+MUSETT_T3_DSSD_X1_E -61.8981 0.00755599
+MUSETT_T3_DSSD_X2_E -62.2618 0.00760035
+MUSETT_T3_DSSD_X3_E -62.3777 0.00761452
+MUSETT_T3_DSSD_X4_E -61.9871 0.0075667799999999995
+MUSETT_T3_DSSD_X5_E -61.9253 0.00755922
+MUSETT_T3_DSSD_X6_E -62.100699999999996 0.00758066
+MUSETT_T3_DSSD_X7_E -61.6218 0.0075222
+MUSETT_T3_DSSD_X8_E -61.764300000000006 0.00753956
+MUSETT_T3_DSSD_X9_E -61.9183 0.00755834
+MUSETT_T3_DSSD_X10_E -61.8815 0.007553880000000001
+MUSETT_T3_DSSD_X11_E -62.903 0.00767858
+MUSETT_T3_DSSD_X12_E -61.674099999999996 0.00752859
+MUSETT_T3_DSSD_X13_E -61.812400000000004 0.007545410000000001
+MUSETT_T3_DSSD_X14_E -61.5556 0.00751408
+MUSETT_T3_DSSD_X15_E -62.6274 0.00764492
+MUSETT_T3_DSSD_X16_E -63.6565 0.007770470000000001
+MUSETT_T3_DSSD_X17_E -63.108 0.00770354
+MUSETT_T3_DSSD_X18_E -62.943400000000004 0.0076834600000000005
+MUSETT_T3_DSSD_X19_E -62.8377 0.00767058
+MUSETT_T3_DSSD_X20_E -62.6764 0.0076508900000000005
+MUSETT_T3_DSSD_X21_E -63.119800000000005 0.00770503
+MUSETT_T3_DSSD_X22_E -63.798 0.00778783
+MUSETT_T3_DSSD_X23_E -63.791 0.00778695
+MUSETT_T3_DSSD_X24_E -62.795 0.0076654
+MUSETT_T3_DSSD_X25_E -63.5026 0.00775172
+MUSETT_T3_DSSD_X26_E -63.5321 0.00775542
+MUSETT_T3_DSSD_X27_E -63.3099 0.0077282900000000005
+MUSETT_T3_DSSD_X28_E -63.637800000000006 0.00776831
+MUSETT_T3_DSSD_X29_E -63.587199999999996 0.00776214
+MUSETT_T3_DSSD_X30_E -64.5317 0.00787739
+MUSETT_T3_DSSD_X31_E -63.7428 0.00778111
+MUSETT_T3_DSSD_X32_E -59.4303 0.0072549400000000005
+MUSETT_T3_DSSD_X33_E -59.2202 0.00722924
+MUSETT_T3_DSSD_X34_E -58.1746 0.00710163
+MUSETT_T3_DSSD_X35_E -58.373599999999996 0.007125810000000001
+MUSETT_T3_DSSD_X36_E -58.848099999999995 0.00718369
+MUSETT_T3_DSSD_X37_E -59.0129 0.00720387
+MUSETT_T3_DSSD_X38_E -59.307199999999995 0.00723977
+MUSETT_T3_DSSD_X39_E -58.6779 0.00716294
+MUSETT_T3_DSSD_X40_E -59.2831 0.00723677
+MUSETT_T3_DSSD_X41_E -58.9564 0.0071969
+MUSETT_T3_DSSD_X42_E -59.0435 0.00720751
+MUSETT_T3_DSSD_X43_E -10.0 0.0
+MUSETT_T3_DSSD_X44_E -59.0479 0.00720805
+MUSETT_T3_DSSD_X45_E -59.4141 0.00725268
+MUSETT_T3_DSSD_X46_E -58.832800000000006 0.00718171
+MUSETT_T3_DSSD_X47_E -59.184599999999996 0.00722469
+MUSETT_T3_DSSD_X48_E -57.4104 0.00700817
+MUSETT_T3_DSSD_X49_E -57.223699999999994 0.006985369999999999
+MUSETT_T3_DSSD_X50_E -56.9417 0.00695094
+MUSETT_T3_DSSD_X51_E -57.3063 0.00699545
+MUSETT_T3_DSSD_X52_E -56.9392 0.00695063
+MUSETT_T3_DSSD_X53_E -57.3905 0.00700573
+MUSETT_T3_DSSD_X54_E -56.6383 0.0069139299999999996
+MUSETT_T3_DSSD_X55_E -57.3585 0.00700183
+MUSETT_T3_DSSD_X56_E -57.684400000000004 0.00704165
+MUSETT_T3_DSSD_X57_E -56.591300000000004 0.0069082
+MUSETT_T3_DSSD_X58_E -57.508 0.00702016
+MUSETT_T3_DSSD_X59_E -57.1361 0.00697475
+MUSETT_T3_DSSD_X60_E -56.3804 0.00688251
+MUSETT_T3_DSSD_X61_E -56.9174 0.0069481000000000005
+MUSETT_T3_DSSD_X62_E -56.8245 0.00693679
+MUSETT_T3_DSSD_X63_E -56.577 0.00690664
+MUSETT_T3_DSSD_X64_E -64.14 0.00782956
+MUSETT_T3_DSSD_X65_E -63.8393 0.00779281
+MUSETT_T3_DSSD_X66_E -63.5644 0.0077592699999999995
+MUSETT_T3_DSSD_X67_E -63.7704 0.00778438
+MUSETT_T3_DSSD_X68_E -63.6716 0.00777235
+MUSETT_T3_DSSD_X69_E -63.2723 0.00772359
+MUSETT_T3_DSSD_X70_E -64.307 0.00784993
+MUSETT_T3_DSSD_X71_E -62.530800000000006 0.00763314
+MUSETT_T3_DSSD_X72_E -62.6729 0.00765044
+MUSETT_T3_DSSD_X73_E -63.019 0.007692719999999999
+MUSETT_T3_DSSD_X74_E -63.152800000000006 0.00770897
+MUSETT_T3_DSSD_X75_E -63.441 0.00774419
+MUSETT_T3_DSSD_X76_E -64.1093 0.00782574
+MUSETT_T3_DSSD_X77_E -62.4535 0.007623649999999999
+MUSETT_T3_DSSD_X78_E -62.6222 0.00764425
+MUSETT_T3_DSSD_X79_E -63.017199999999995 0.0076925100000000005
+MUSETT_T3_DSSD_X80_E -62.4534 0.00762363
+MUSETT_T3_DSSD_X81_E -62.780300000000004 0.00766354
+MUSETT_T3_DSSD_X82_E -62.6701 0.00765009
+MUSETT_T3_DSSD_X83_E -62.5547 0.00763598
+MUSETT_T3_DSSD_X84_E -62.062400000000004 0.00757587
+MUSETT_T3_DSSD_X85_E -62.422599999999996 0.0076199399999999995
+MUSETT_T3_DSSD_X86_E -62.402699999999996 0.00761746
+MUSETT_T3_DSSD_X87_E -62.1388 0.00758526
+MUSETT_T3_DSSD_X88_E -62.3516 0.00761123
+MUSETT_T3_DSSD_X89_E -62.791 0.00766488
+MUSETT_T3_DSSD_X90_E -62.302699999999994 0.00760527
+MUSETT_T3_DSSD_X91_E -62.0781 0.00757785
+MUSETT_T3_DSSD_X92_E -62.8293 0.00766952
+MUSETT_T3_DSSD_X93_E -62.5605 0.007636700000000001
+MUSETT_T3_DSSD_X94_E -62.144 0.0075859
+MUSETT_T3_DSSD_X95_E -62.3539 0.007611519999999999
+MUSETT_T3_DSSD_X96_E -56.131099999999996 0.00685191
+MUSETT_T3_DSSD_X97_E -55.920199999999994 0.0068261599999999995
+MUSETT_T3_DSSD_X98_E -55.1787 0.00673562
+MUSETT_T3_DSSD_X99_E -55.7836 0.0068095
+MUSETT_T3_DSSD_X100_E -55.958 0.00683076
+MUSETT_T3_DSSD_X101_E -55.9402 0.00682857
+MUSETT_T3_DSSD_X102_E -55.976 0.00683293
+MUSETT_T3_DSSD_X103_E -55.2555 0.00674498
+MUSETT_T3_DSSD_X104_E -55.479699999999994 0.00677237
+MUSETT_T3_DSSD_X105_E -56.0403 0.00684079
+MUSETT_T3_DSSD_X106_E -55.791199999999996 0.00681044
+MUSETT_T3_DSSD_X107_E -55.7016 0.00679948
+MUSETT_T3_DSSD_X108_E -56.7383 0.00692598
+MUSETT_T3_DSSD_X109_E -56.2939 0.0068717100000000005
+MUSETT_T3_DSSD_X110_E -55.8191 0.00681378
+MUSETT_T3_DSSD_X111_E -55.694199999999995 0.00679856
+MUSETT_T3_DSSD_X112_E -57.5541 0.007025559999999999
+MUSETT_T3_DSSD_X113_E -56.976800000000004 0.00695514
+MUSETT_T3_DSSD_X114_E -57.5184 0.00702123
+MUSETT_T3_DSSD_X115_E -56.9807 0.00695562
+MUSETT_T3_DSSD_X116_E -58.026199999999996 0.00708323
+MUSETT_T3_DSSD_X117_E -57.1911 0.00698127
+MUSETT_T3_DSSD_X118_E -57.432 0.007010710000000001
+MUSETT_T3_DSSD_X119_E -56.2909 0.00687137
+MUSETT_T3_DSSD_X120_E -56.7482 0.00692722
+MUSETT_T3_DSSD_X121_E -57.9017 0.00706808
+MUSETT_T3_DSSD_X122_E -57.5129 0.0070205599999999995
+MUSETT_T3_DSSD_X123_E -57.1124 0.0069717
+MUSETT_T3_DSSD_X124_E -57.6533 0.007037689999999999
+MUSETT_T3_DSSD_X125_E -56.762699999999995 0.00692904
+MUSETT_T3_DSSD_X126_E -57.8419 0.00706073
+MUSETT_T3_DSSD_X127_E -56.524800000000006 0.006899949999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..30bae93039805da11900a9c5c7f47539ad5ceaf8
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_E 60.1947 -0.00734802
+MUSETT_T3_DSSD_Y1_E 58.9879 -0.0072007500000000006
+MUSETT_T3_DSSD_Y2_E 60.1322 -0.00734041
+MUSETT_T3_DSSD_Y3_E 59.9775 -0.00732152
+MUSETT_T3_DSSD_Y4_E 59.7874 -0.007298300000000001
+MUSETT_T3_DSSD_Y5_E 59.8934 -0.007311219999999999
+MUSETT_T3_DSSD_Y6_E 59.7986 -0.00729963
+MUSETT_T3_DSSD_Y7_E 60.2513 -0.0073549
+MUSETT_T3_DSSD_Y8_E 60.5895 -0.007396219999999999
+MUSETT_T3_DSSD_Y9_E 60.4366 -0.00737756
+MUSETT_T3_DSSD_Y10_E 60.189699999999995 -0.0073474000000000005
+MUSETT_T3_DSSD_Y11_E 59.8264 -0.0073031
+MUSETT_T3_DSSD_Y12_E 59.6872 -0.00728606
+MUSETT_T3_DSSD_Y13_E 59.622099999999996 -0.0072781799999999995
+MUSETT_T3_DSSD_Y14_E 60.5748 -0.00739447
+MUSETT_T3_DSSD_Y15_E 59.719199999999994 -0.00729002
+MUSETT_T3_DSSD_Y16_E 62.9631 -0.007686009999999999
+MUSETT_T3_DSSD_Y17_E 63.1869 -0.00771331
+MUSETT_T3_DSSD_Y18_E 62.2623 -0.00760044
+MUSETT_T3_DSSD_Y19_E 62.806 -0.0076668000000000005
+MUSETT_T3_DSSD_Y20_E 63.2468 -0.00772062
+MUSETT_T3_DSSD_Y21_E 63.5503 -0.007757590000000001
+MUSETT_T3_DSSD_Y22_E 63.0168 -0.00769256
+MUSETT_T3_DSSD_Y23_E 62.986599999999996 -0.00768882
+MUSETT_T3_DSSD_Y24_E 63.5222 -0.00775424
+MUSETT_T3_DSSD_Y25_E 63.478699999999996 -0.0077488999999999995
+MUSETT_T3_DSSD_Y26_E 62.6431 -0.00764692
+MUSETT_T3_DSSD_Y27_E 63.4299 -0.0077429199999999995
+MUSETT_T3_DSSD_Y28_E 62.4837 -0.00762745
+MUSETT_T3_DSSD_Y29_E 62.960699999999996 -0.00768572
+MUSETT_T3_DSSD_Y30_E 63.085300000000004 -0.0077009
+MUSETT_T3_DSSD_Y31_E 62.9694 -0.00768675
+MUSETT_T3_DSSD_Y32_E 56.0911 -0.00684715
+MUSETT_T3_DSSD_Y33_E 56.2286 -0.00686391
+MUSETT_T3_DSSD_Y34_E 55.8346 -0.00681583
+MUSETT_T3_DSSD_Y35_E 55.713 -0.00680096
+MUSETT_T3_DSSD_Y36_E 55.757 -0.00680633
+MUSETT_T3_DSSD_Y37_E 56.228 -0.0068638399999999995
+MUSETT_T3_DSSD_Y38_E 55.9259 -0.00682695
+MUSETT_T3_DSSD_Y39_E 55.539699999999996 -0.00677979
+MUSETT_T3_DSSD_Y40_E 55.412099999999995 -0.00676422
+MUSETT_T3_DSSD_Y41_E 56.185 -0.00685859
+MUSETT_T3_DSSD_Y42_E 55.9818 -0.00683375
+MUSETT_T3_DSSD_Y43_E 55.3708 -0.00675918
+MUSETT_T3_DSSD_Y44_E 55.7489 -0.00680537
+MUSETT_T3_DSSD_Y45_E 55.612300000000005 -0.00678871
+MUSETT_T3_DSSD_Y46_E 55.926300000000005 -0.006826990000000001
+MUSETT_T3_DSSD_Y47_E 55.801199999999994 -0.00681172
+MUSETT_T3_DSSD_Y48_E 56.6708 -0.0069179
+MUSETT_T3_DSSD_Y49_E 56.9495 -0.0069519000000000004
+MUSETT_T3_DSSD_Y50_E 57.1471 -0.006975970000000001
+MUSETT_T3_DSSD_Y51_E 56.9604 -0.00695318
+MUSETT_T3_DSSD_Y52_E 56.493900000000004 -0.006896289999999999
+MUSETT_T3_DSSD_Y53_E 56.9632 -0.00695364
+MUSETT_T3_DSSD_Y54_E 56.5816 -0.00690701
+MUSETT_T3_DSSD_Y55_E 57.0507 -0.006964209999999999
+MUSETT_T3_DSSD_Y56_E 57.0769 -0.00696747
+MUSETT_T3_DSSD_Y57_E 56.6238 -0.00691216
+MUSETT_T3_DSSD_Y58_E 57.493199999999995 -0.00701827
+MUSETT_T3_DSSD_Y59_E 57.089400000000005 -0.00696896
+MUSETT_T3_DSSD_Y60_E 57.5863 -0.00702963
+MUSETT_T3_DSSD_Y61_E 57.0447 -0.00696349
+MUSETT_T3_DSSD_Y62_E 56.777699999999996 -0.0069308899999999994
+MUSETT_T3_DSSD_Y63_E 57.4216 -0.00700961
+MUSETT_T3_DSSD_Y64_E 59.437599999999996 -0.007255620000000001
+MUSETT_T3_DSSD_Y65_E 59.994 -0.00732351
+MUSETT_T3_DSSD_Y66_E 59.523900000000005 -0.0072662000000000004
+MUSETT_T3_DSSD_Y67_E 59.3371 -0.00724336
+MUSETT_T3_DSSD_Y68_E 59.498599999999996 -0.007263029999999999
+MUSETT_T3_DSSD_Y69_E 58.818599999999996 -0.00718002
+MUSETT_T3_DSSD_Y70_E 59.3322 -0.00724276
+MUSETT_T3_DSSD_Y71_E 60.018699999999995 -0.00732659
+MUSETT_T3_DSSD_Y72_E 60.1805 -0.0073463
+MUSETT_T3_DSSD_Y73_E 59.4807 -0.00726089
+MUSETT_T3_DSSD_Y74_E 59.527699999999996 -0.0072666399999999996
+MUSETT_T3_DSSD_Y75_E 59.6351 -0.00727972
+MUSETT_T3_DSSD_Y76_E 59.581199999999995 -0.00727315
+MUSETT_T3_DSSD_Y77_E 59.4447 -0.00725647
+MUSETT_T3_DSSD_Y78_E 59.0484 -0.007208109999999999
+MUSETT_T3_DSSD_Y79_E 59.9895 -0.007322980000000001
+MUSETT_T3_DSSD_Y80_E 62.8554 -0.00767285
+MUSETT_T3_DSSD_Y81_E 62.7504 -0.00766003
+MUSETT_T3_DSSD_Y82_E 62.5327 -0.007633460000000001
+MUSETT_T3_DSSD_Y83_E 62.151300000000006 -0.00758691
+MUSETT_T3_DSSD_Y84_E 62.0186 -0.00757075
+MUSETT_T3_DSSD_Y85_E 62.7102 -0.007655090000000001
+MUSETT_T3_DSSD_Y86_E 62.2716 -0.0076015499999999995
+MUSETT_T3_DSSD_Y87_E 62.96 -0.00768565
+MUSETT_T3_DSSD_Y88_E 62.677800000000005 -0.0076512099999999994
+MUSETT_T3_DSSD_Y89_E 62.6261 -0.0076448900000000005
+MUSETT_T3_DSSD_Y90_E 61.8783 -0.00755359
+MUSETT_T3_DSSD_Y91_E 61.999199999999995 -0.00756832
+MUSETT_T3_DSSD_Y92_E 61.924699999999994 -0.00755927
+MUSETT_T3_DSSD_Y93_E 61.995599999999996 -0.00756788
+MUSETT_T3_DSSD_Y94_E 61.9605 -0.00756357
+MUSETT_T3_DSSD_Y95_E 61.8336 -0.00754812
+MUSETT_T3_DSSD_Y96_E 56.7314 -0.00692523
+MUSETT_T3_DSSD_Y97_E 56.9099 -0.00694702
+MUSETT_T3_DSSD_Y98_E 56.3183 -0.00687484
+MUSETT_T3_DSSD_Y99_E 55.9465 -0.006829399999999999
+MUSETT_T3_DSSD_Y100_E 56.299800000000005 -0.00687252
+MUSETT_T3_DSSD_Y101_E 56.3287 -0.00687609
+MUSETT_T3_DSSD_Y102_E 55.9865 -0.0068343
+MUSETT_T3_DSSD_Y103_E 55.996300000000005 -0.006835460000000001
+MUSETT_T3_DSSD_Y104_E 55.8581 -0.006818609999999999
+MUSETT_T3_DSSD_Y105_E 56.336400000000005 -0.006876999999999999
+MUSETT_T3_DSSD_Y106_E 56.504400000000004 -0.00689753
+MUSETT_T3_DSSD_Y107_E 56.2804 -0.00687019
+MUSETT_T3_DSSD_Y108_E 55.8017 -0.006811759999999999
+MUSETT_T3_DSSD_Y109_E 55.903800000000004 -0.00682419
+MUSETT_T3_DSSD_Y110_E 56.6722 -0.00691805
+MUSETT_T3_DSSD_Y111_E 56.6689 -0.00691765
+MUSETT_T3_DSSD_Y112_E 57.102199999999996 -0.0069704699999999994
+MUSETT_T3_DSSD_Y113_E 57.033699999999996 -0.00696222
+MUSETT_T3_DSSD_Y114_E 57.102 -0.00697059
+MUSETT_T3_DSSD_Y115_E 57.0152 -0.0069599399999999995
+MUSETT_T3_DSSD_Y116_E 57.666599999999995 -0.00703944
+MUSETT_T3_DSSD_Y117_E 57.3273 -0.0069980599999999995
+MUSETT_T3_DSSD_Y118_E 56.838800000000006 -0.0069384
+MUSETT_T3_DSSD_Y119_E 57.642300000000006 -0.007036400000000001
+MUSETT_T3_DSSD_Y120_E 57.4724 -0.007015749999999999
+MUSETT_T3_DSSD_Y121_E 57.0092 -0.006959170000000001
+MUSETT_T3_DSSD_Y122_E 57.4276 -0.00701028
+MUSETT_T3_DSSD_Y123_E 57.1051 -0.00697094
+MUSETT_T3_DSSD_Y124_E 57.606 -0.00703198
+MUSETT_T3_DSSD_Y125_E 56.8527 -0.00694013
+MUSETT_T3_DSSD_Y126_E 57.287800000000004 -0.006993109999999999
+MUSETT_T3_DSSD_Y127_E 57.5267 -0.00702236
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0c66d17d1ef2704ec870f95f8fa20b5c6d1f2e47
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_T 936.261 -0.113591
+MUSETT_T3_DSSD_X1_T 949.597 -0.115254
+MUSETT_T3_DSSD_X2_T 954.137 -0.115822
+MUSETT_T3_DSSD_X3_T 956.021 -0.116042
+MUSETT_T3_DSSD_X4_T 948.148 -0.115096
+MUSETT_T3_DSSD_X5_T 962.715 -0.11686
+MUSETT_T3_DSSD_X6_T 967.087 -0.117385
+MUSETT_T3_DSSD_X7_T 972.268 -0.118019
+MUSETT_T3_DSSD_X8_T 970.481 -0.117779
+MUSETT_T3_DSSD_X9_T 968.226 -0.117496
+MUSETT_T3_DSSD_X10_T 970.608 -0.117795
+MUSETT_T3_DSSD_X11_T 982.826 -0.119273
+MUSETT_T3_DSSD_X12_T 972.655 -0.118031
+MUSETT_T3_DSSD_X13_T 978.966 -0.118805
+MUSETT_T3_DSSD_X14_T 976.646 -0.118524
+MUSETT_T3_DSSD_X15_T 1358.4 -0.119127
+MUSETT_T3_DSSD_X16_T 965.022 -0.117029
+MUSETT_T3_DSSD_X17_T 961.069 -0.116582
+MUSETT_T3_DSSD_X18_T 979.729 -0.11886
+MUSETT_T3_DSSD_X19_T 975.886 -0.118386
+MUSETT_T3_DSSD_X20_T 982.811 -0.119229
+MUSETT_T3_DSSD_X21_T 989.956 -0.120114
+MUSETT_T3_DSSD_X22_T 982.322 -0.119177
+MUSETT_T3_DSSD_X23_T 986.837 -0.119693
+MUSETT_T3_DSSD_X24_T 984.553 -0.119405
+MUSETT_T3_DSSD_X25_T 985.367 -0.119523
+MUSETT_T3_DSSD_X26_T 998.436 -0.12115
+MUSETT_T3_DSSD_X27_T 994.592 -0.120628
+MUSETT_T3_DSSD_X28_T 1004.55 -0.121885
+MUSETT_T3_DSSD_X29_T 997.75 -0.121035
+MUSETT_T3_DSSD_X30_T 999.387 -0.121233
+MUSETT_T3_DSSD_X31_T 994.205 -0.120654
+MUSETT_T3_DSSD_X32_T 895.626 -0.108693
+MUSETT_T3_DSSD_X33_T 901.788 -0.109485
+MUSETT_T3_DSSD_X34_T 909.669 -0.110421
+MUSETT_T3_DSSD_X35_T 902.809 -0.109588
+MUSETT_T3_DSSD_X36_T 908.707 -0.110301
+MUSETT_T3_DSSD_X37_T 917.184 -0.111327
+MUSETT_T3_DSSD_X38_T 918.636 -0.111495
+MUSETT_T3_DSSD_X39_T 927.002 -0.112521
+MUSETT_T3_DSSD_X40_T 934.79 -0.11347
+MUSETT_T3_DSSD_X41_T 928.489 -0.112717
+MUSETT_T3_DSSD_X42_T 925.669 -0.112335
+MUSETT_T3_DSSD_X43_T 450.0 -0.112964
+MUSETT_T3_DSSD_X44_T 932.907 -0.113245
+MUSETT_T3_DSSD_X45_T 927.364 -0.11258
+MUSETT_T3_DSSD_X46_T 934.8 -0.113476
+MUSETT_T3_DSSD_X47_T 933.166 -0.113256
+MUSETT_T3_DSSD_X48_T 863.882 -0.104661
+MUSETT_T3_DSSD_X49_T 863.742 -0.104634
+MUSETT_T3_DSSD_X50_T 876.032 -0.106155
+MUSETT_T3_DSSD_X51_T 885.987 -0.107364
+MUSETT_T3_DSSD_X52_T 886.077 -0.107368
+MUSETT_T3_DSSD_X53_T 882.141 -0.106861
+MUSETT_T3_DSSD_X54_T 894.386 -0.108382
+MUSETT_T3_DSSD_X55_T 897.465 -0.108733
+MUSETT_T3_DSSD_X56_T 894.9 -0.10844
+MUSETT_T3_DSSD_X57_T 900.295 -0.10908
+MUSETT_T3_DSSD_X58_T 895.793 -0.108538
+MUSETT_T3_DSSD_X59_T 895.372 -0.10849
+MUSETT_T3_DSSD_X60_T 902.176 -0.109312
+MUSETT_T3_DSSD_X61_T 903.192 -0.109445
+MUSETT_T3_DSSD_X62_T 889.712 -0.107803
+MUSETT_T3_DSSD_X63_T 921.265 -0.108862
+MUSETT_T3_DSSD_X64_T 981.944 -0.119126
+MUSETT_T3_DSSD_X65_T 987.148 -0.119789
+MUSETT_T3_DSSD_X66_T 987.456 -0.119851
+MUSETT_T3_DSSD_X67_T 1003.28 -0.121753
+MUSETT_T3_DSSD_X68_T 1003.82 -0.121824
+MUSETT_T3_DSSD_X69_T 1000.66 -0.121446
+MUSETT_T3_DSSD_X70_T 1004.35 -0.121893
+MUSETT_T3_DSSD_X71_T 1008.06 -0.122347
+MUSETT_T3_DSSD_X72_T 1004.22 -0.121883
+MUSETT_T3_DSSD_X73_T 1011.08 -0.122684
+MUSETT_T3_DSSD_X74_T 1019.46 -0.123722
+MUSETT_T3_DSSD_X75_T 1029.58 -0.124938
+MUSETT_T3_DSSD_X76_T 1011.08 -0.122709
+MUSETT_T3_DSSD_X77_T 1010.81 -0.12265
+MUSETT_T3_DSSD_X78_T 1022.22 -0.124061
+MUSETT_T3_DSSD_X79_T 1391.94 -0.123313
+MUSETT_T3_DSSD_X80_T 939.257 -0.11381
+MUSETT_T3_DSSD_X81_T 945.066 -0.114558
+MUSETT_T3_DSSD_X82_T 948.6 -0.114986
+MUSETT_T3_DSSD_X83_T 947.122 -0.114804
+MUSETT_T3_DSSD_X84_T 961.987 -0.116619
+MUSETT_T3_DSSD_X85_T 964.59 -0.11693
+MUSETT_T3_DSSD_X86_T 959.397 -0.116299
+MUSETT_T3_DSSD_X87_T 964.355 -0.116863
+MUSETT_T3_DSSD_X88_T 975.002 -0.118161
+MUSETT_T3_DSSD_X89_T 971.077 -0.117687
+MUSETT_T3_DSSD_X90_T 976.04 -0.118304
+MUSETT_T3_DSSD_X91_T 983.975 -0.119256
+MUSETT_T3_DSSD_X92_T 983.617 -0.119241
+MUSETT_T3_DSSD_X93_T 983.301 -0.119186
+MUSETT_T3_DSSD_X94_T 980.734 -0.118879
+MUSETT_T3_DSSD_X95_T 975.837 -0.118278
+MUSETT_T3_DSSD_X96_T 858.761 -0.104124
+MUSETT_T3_DSSD_X97_T 863.527 -0.104728
+MUSETT_T3_DSSD_X98_T 863.719 -0.104753
+MUSETT_T3_DSSD_X99_T 869.797 -0.105492
+MUSETT_T3_DSSD_X100_T 879.582 -0.106693
+MUSETT_T3_DSSD_X101_T 874.971 -0.10614
+MUSETT_T3_DSSD_X102_T 879.706 -0.106708
+MUSETT_T3_DSSD_X103_T 878.738 -0.106567
+MUSETT_T3_DSSD_X104_T 887.854 -0.107671
+MUSETT_T3_DSSD_X105_T 892.385 -0.108216
+MUSETT_T3_DSSD_X106_T 884.225 -0.107225
+MUSETT_T3_DSSD_X107_T 894.981 -0.108561
+MUSETT_T3_DSSD_X108_T 895.51 -0.108609
+MUSETT_T3_DSSD_X109_T 891.851 -0.108191
+MUSETT_T3_DSSD_X110_T 901.356 -0.109337
+MUSETT_T3_DSSD_X111_T 900.727 -0.108709
+MUSETT_T3_DSSD_X112_T 855.952 -0.103629
+MUSETT_T3_DSSD_X113_T 865.7 -0.10481
+MUSETT_T3_DSSD_X114_T 866.161 -0.1049
+MUSETT_T3_DSSD_X115_T 872.362 -0.105647
+MUSETT_T3_DSSD_X116_T 1490.13 -0.126949
+MUSETT_T3_DSSD_X117_T 876.561 -0.106145
+MUSETT_T3_DSSD_X118_T 884.075 -0.107055
+MUSETT_T3_DSSD_X119_T 881.54 -0.10675
+MUSETT_T3_DSSD_X120_T 884.679 -0.107137
+MUSETT_T3_DSSD_X121_T 888.637 -0.107599
+MUSETT_T3_DSSD_X122_T 884.493 -0.107093
+MUSETT_T3_DSSD_X123_T 893.964 -0.108252
+MUSETT_T3_DSSD_X124_T 888.064 -0.107522
+MUSETT_T3_DSSD_X125_T 894.536 -0.108336
+MUSETT_T3_DSSD_X126_T 882.088 -0.106793
+MUSETT_T3_DSSD_X127_T 890.98 -0.107896
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..164e1edc8a5c9527382a6866a680275ec137b39a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_T 916.716 -0.11121
+MUSETT_T3_DSSD_Y1_T 924.259 -0.112154
+MUSETT_T3_DSSD_Y2_T 933.256 -0.113241
+MUSETT_T3_DSSD_Y3_T 942.953 -0.114409
+MUSETT_T3_DSSD_Y4_T 939.901 -0.114032
+MUSETT_T3_DSSD_Y5_T 947.878 -0.114994
+MUSETT_T3_DSSD_Y6_T 952.484 -0.115552
+MUSETT_T3_DSSD_Y7_T 952.713 -0.115546
+MUSETT_T3_DSSD_Y8_T 960.463 -0.116506
+MUSETT_T3_DSSD_Y9_T 964.543 -0.117006
+MUSETT_T3_DSSD_Y10_T 966.84 -0.117251
+MUSETT_T3_DSSD_Y11_T 965.68 -0.117093
+MUSETT_T3_DSSD_Y12_T 975.182 -0.118272
+MUSETT_T3_DSSD_Y13_T 981.614 -0.119048
+MUSETT_T3_DSSD_Y14_T 973.869 -0.118075
+MUSETT_T3_DSSD_Y15_T 981.076 -0.118941
+MUSETT_T3_DSSD_Y16_T 967.206 -0.117174
+MUSETT_T3_DSSD_Y17_T 980.188 -0.118815
+MUSETT_T3_DSSD_Y18_T 981.134 -0.118931
+MUSETT_T3_DSSD_Y19_T 986.719 -0.119638
+MUSETT_T3_DSSD_Y20_T 992.386 -0.12034
+MUSETT_T3_DSSD_Y21_T 1002.21 -0.121551
+MUSETT_T3_DSSD_Y22_T 997.474 -0.120998
+MUSETT_T3_DSSD_Y23_T 992.008 -0.120321
+MUSETT_T3_DSSD_Y24_T 998.021 -0.121073
+MUSETT_T3_DSSD_Y25_T 1004.15 -0.121839
+MUSETT_T3_DSSD_Y26_T 1004.31 -0.121856
+MUSETT_T3_DSSD_Y27_T 1010.69 -0.122649
+MUSETT_T3_DSSD_Y28_T 1013.79 -0.12302
+MUSETT_T3_DSSD_Y29_T 1002.56 -0.121668
+MUSETT_T3_DSSD_Y30_T 1011.72 -0.122794
+MUSETT_T3_DSSD_Y31_T 1012.54 -0.122927
+MUSETT_T3_DSSD_Y32_T 868.546 -0.105446
+MUSETT_T3_DSSD_Y33_T 865.415 -0.105092
+MUSETT_T3_DSSD_Y34_T 870.615 -0.10573
+MUSETT_T3_DSSD_Y35_T 867.501 -0.105345
+MUSETT_T3_DSSD_Y36_T 879.085 -0.106744
+MUSETT_T3_DSSD_Y37_T 878.372 -0.106654
+MUSETT_T3_DSSD_Y38_T 883.834 -0.107294
+MUSETT_T3_DSSD_Y39_T 892.468 -0.108361
+MUSETT_T3_DSSD_Y40_T 889.652 -0.10799
+MUSETT_T3_DSSD_Y41_T 893.582 -0.10846
+MUSETT_T3_DSSD_Y42_T 902.982 -0.109593
+MUSETT_T3_DSSD_Y43_T 899.542 -0.109195
+MUSETT_T3_DSSD_Y44_T 894.786 -0.108568
+MUSETT_T3_DSSD_Y45_T 904.997 -0.109804
+MUSETT_T3_DSSD_Y46_T 908.733 -0.110263
+MUSETT_T3_DSSD_Y47_T 901.41 -0.109382
+MUSETT_T3_DSSD_Y48_T 874.853 -0.105997
+MUSETT_T3_DSSD_Y49_T 880.713 -0.106772
+MUSETT_T3_DSSD_Y50_T 892.705 -0.108217
+MUSETT_T3_DSSD_Y51_T 895.218 -0.108527
+MUSETT_T3_DSSD_Y52_T 889.343 -0.107825
+MUSETT_T3_DSSD_Y53_T 897.932 -0.108862
+MUSETT_T3_DSSD_Y54_T 902.448 -0.109456
+MUSETT_T3_DSSD_Y55_T 908.367 -0.110152
+MUSETT_T3_DSSD_Y56_T 912.74 -0.110718
+MUSETT_T3_DSSD_Y57_T 911.519 -0.11056
+MUSETT_T3_DSSD_Y58_T 920.413 -0.111636
+MUSETT_T3_DSSD_Y59_T 906.185 -0.109934
+MUSETT_T3_DSSD_Y60_T 919.759 -0.111581
+MUSETT_T3_DSSD_Y61_T 920.555 -0.111694
+MUSETT_T3_DSSD_Y62_T 915.715 -0.1111
+MUSETT_T3_DSSD_Y63_T 918.454 -0.11144
+MUSETT_T3_DSSD_Y64_T 901.244 -0.109216
+MUSETT_T3_DSSD_Y65_T 907.742 -0.110026
+MUSETT_T3_DSSD_Y66_T 908.334 -0.110106
+MUSETT_T3_DSSD_Y67_T 916.785 -0.11114
+MUSETT_T3_DSSD_Y68_T 928.178 -0.11252
+MUSETT_T3_DSSD_Y69_T 936.612 -0.113544
+MUSETT_T3_DSSD_Y70_T 929.327 -0.112672
+MUSETT_T3_DSSD_Y71_T 927.889 -0.112491
+MUSETT_T3_DSSD_Y72_T 944.015 -0.114462
+MUSETT_T3_DSSD_Y73_T 936.5 -0.11354
+MUSETT_T3_DSSD_Y74_T 952.669 -0.115517
+MUSETT_T3_DSSD_Y75_T 949.121 -0.115086
+MUSETT_T3_DSSD_Y76_T 961.66 -0.116618
+MUSETT_T3_DSSD_Y77_T 950.324 -0.115232
+MUSETT_T3_DSSD_Y78_T 943.005 -0.114343
+MUSETT_T3_DSSD_Y79_T 948.05 -0.114947
+MUSETT_T3_DSSD_Y80_T 967.814 -0.117288
+MUSETT_T3_DSSD_Y81_T 979.35 -0.118727
+MUSETT_T3_DSSD_Y82_T 985.387 -0.119474
+MUSETT_T3_DSSD_Y83_T 988.884 -0.119909
+MUSETT_T3_DSSD_Y84_T 990.688 -0.120116
+MUSETT_T3_DSSD_Y85_T 997.728 -0.120975
+MUSETT_T3_DSSD_Y86_T 994.598 -0.120606
+MUSETT_T3_DSSD_Y87_T 996.045 -0.12076
+MUSETT_T3_DSSD_Y88_T 1000.77 -0.121336
+MUSETT_T3_DSSD_Y89_T 1011.99 -0.122713
+MUSETT_T3_DSSD_Y90_T 1015.05 -0.1231
+MUSETT_T3_DSSD_Y91_T 1003.4 -0.121678
+MUSETT_T3_DSSD_Y92_T 1011.74 -0.122697
+MUSETT_T3_DSSD_Y93_T 1014.96 -0.123087
+MUSETT_T3_DSSD_Y94_T 1007.34 -0.122144
+MUSETT_T3_DSSD_Y95_T 1008.36 -0.122274
+MUSETT_T3_DSSD_Y96_T 871.329 -0.105573
+MUSETT_T3_DSSD_Y97_T 868.142 -0.105224
+MUSETT_T3_DSSD_Y98_T 872.865 -0.105791
+MUSETT_T3_DSSD_Y99_T 882.085 -0.106904
+MUSETT_T3_DSSD_Y100_T 889.159 -0.107789
+MUSETT_T3_DSSD_Y101_T 888.956 -0.107742
+MUSETT_T3_DSSD_Y102_T 899.906 -0.109085
+MUSETT_T3_DSSD_Y103_T 892.033 -0.108126
+MUSETT_T3_DSSD_Y104_T 899.207 -0.108999
+MUSETT_T3_DSSD_Y105_T 891.613 -0.108068
+MUSETT_T3_DSSD_Y106_T 891.136 -0.108006
+MUSETT_T3_DSSD_Y107_T 900.207 -0.109125
+MUSETT_T3_DSSD_Y108_T 902.911 -0.109439
+MUSETT_T3_DSSD_Y109_T 900.692 -0.109168
+MUSETT_T3_DSSD_Y110_T 896.133 -0.108625
+MUSETT_T3_DSSD_Y111_T 902.665 -0.109416
+MUSETT_T3_DSSD_Y112_T 888.587 -0.107554
+MUSETT_T3_DSSD_Y113_T 895.918 -0.108473
+MUSETT_T3_DSSD_Y114_T 898.97 -0.108848
+MUSETT_T3_DSSD_Y115_T 894.394 -0.108292
+MUSETT_T3_DSSD_Y116_T 902.574 -0.109288
+MUSETT_T3_DSSD_Y117_T 907.964 -0.109943
+MUSETT_T3_DSSD_Y118_T 906.564 -0.109765
+MUSETT_T3_DSSD_Y119_T 905.798 -0.109672
+MUSETT_T3_DSSD_Y120_T 912.702 -0.110512
+MUSETT_T3_DSSD_Y121_T 921.335 -0.111588
+MUSETT_T3_DSSD_Y122_T 924.085 -0.111915
+MUSETT_T3_DSSD_Y123_T 906.564 -0.109772
+MUSETT_T3_DSSD_Y124_T 910.838 -0.11029
+MUSETT_T3_DSSD_Y125_T 916.176 -0.110947
+MUSETT_T3_DSSD_Y126_T 917.763 -0.111116
+MUSETT_T3_DSSD_Y127_T 925.891 -0.112131
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..18187193b9adbafae392d0563b75c3ad7c8e4415
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/.root_hist b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..26bba7ed330471cd0bf9199205dbefbd3ba696f7
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/.root_hist
@@ -0,0 +1,35 @@
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0012","MUST2")
+.ls
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0012","MUST2")
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0012","MUST2")
+.q
+.L TimeCalibrator.C+
+TimeCalibrator("r0012","X")
+.q
+.L TimeCalibrator.C+
+TimeCalibrator("r0013","Y")
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0013","MUST2")
+TimeCalibrator("r0013","Y")
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0015","MUST2")
+.L TimeCalibrator.C+
+TimeCalibrator("r0015","X",32,"MUST2",3,3)
+.q
+.L ExtractRawHisto_T.C+
+ExtractMust2Histos("r0016","MUST2")
+.L TimeCalibrator.C+
+TimeCalibrator("r0016","Y",32,"MUST2",3,3)
+ExtractMust2Histos("r0017","MUST2")
+TimeCalibrator("r0017","Y",32,"MUST2",3,3)
+TimeCalibrator("r0017","X",32,"MUST2",4,4)
+ExtractMust2Histos("r0018","MUST2")
+TimeCalibrator("r0018","Y",32,"MUST2",4,4)
+.q
+.q
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2083ac78f5072a59429f6de42a6c88ceec4bc589
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X1_T 926.099 -0.111982
+MUSETT_T0_DSSD_X2_T 869.874 -0.105192
+MUSETT_T0_DSSD_X3_T 867.818 -0.104955
+MUSETT_T0_DSSD_X4_T 937.107 -0.113338
+MUSETT_T0_DSSD_X5_T 887.963 -0.107397
+MUSETT_T0_DSSD_X6_T 935.505 -0.11314
+MUSETT_T0_DSSD_X7_T 876.58 -0.106033
+MUSETT_T0_DSSD_X8_T 932.855 -0.112807
+MUSETT_T0_DSSD_X9_T 878.364 -0.106227
+MUSETT_T0_DSSD_X10_T 925.852 -0.111943
+MUSETT_T0_DSSD_X11_T 892.804 -0.108005
+MUSETT_T0_DSSD_X12_T 921.22 -0.111378
+MUSETT_T0_DSSD_X13_T 894.475 -0.108195
+MUSETT_T0_DSSD_X14_T 913.548 -0.110456
+MUSETT_T0_DSSD_X15_T 892.476 -0.107979
+MUSETT_T0_DSSD_X16_T 922.196 -0.111499
+MUSETT_T0_DSSD_X17_T 895.157 -0.108302
+MUSETT_T0_DSSD_X18_T 913.814 -0.110458
+MUSETT_T0_DSSD_X19_T 895.419 -0.108334
+MUSETT_T0_DSSD_X20_T 909.716 -0.109955
+MUSETT_T0_DSSD_X21_T 894.752 -0.108243
+MUSETT_T0_DSSD_X22_T 907.059 -0.109652
+MUSETT_T0_DSSD_X23_T 901.721 -0.109095
+MUSETT_T0_DSSD_X24_T 903.944 -0.109295
+MUSETT_T0_DSSD_X25_T 896.865 -0.108505
+MUSETT_T0_DSSD_X26_T 903.08 -0.109464
+MUSETT_T0_DSSD_X27_T 891.69 -0.107877
+MUSETT_T0_DSSD_X28_T 890.381 -0.107622
+MUSETT_T0_DSSD_X29_T 894.258 -0.108187
+MUSETT_T0_DSSD_X30_T 884.86 -0.106942
+MUSETT_T0_DSSD_X31_T 881.631 -0.106556
+MUSETT_T0_DSSD_X32_T 894.901 -0.10826
+MUSETT_T0_DSSD_X33_T 991.094 -0.119947
+MUSETT_T0_DSSD_X34_T 943.498 -0.114176
+MUSETT_T0_DSSD_X35_T 954.542 -0.115529
+MUSETT_T0_DSSD_X36_T 995.135 -0.12045
+MUSETT_T0_DSSD_X37_T 955.481 -0.115657
+MUSETT_T0_DSSD_X38_T 998.458 -0.120851
+MUSETT_T0_DSSD_X39_T 969.726 -0.117409
+MUSETT_T0_DSSD_X40_T 1000.07 -0.121021
+MUSETT_T0_DSSD_X41_T 969.528 -0.117367
+MUSETT_T0_DSSD_X42_T 1004.27 -0.121545
+MUSETT_T0_DSSD_X43_T 969.351 -0.117353
+MUSETT_T0_DSSD_X44_T 1000.4 -0.121057
+MUSETT_T0_DSSD_X45_T 974.621 -0.117969
+MUSETT_T0_DSSD_X46_T 998.041 -0.120777
+MUSETT_T0_DSSD_X47_T 976.758 -0.118246
+MUSETT_T0_DSSD_X48_T 987.033 -0.119427
+MUSETT_T0_DSSD_X49_T 975.237 -0.118065
+MUSETT_T0_DSSD_X50_T 991.826 -0.120005
+MUSETT_T0_DSSD_X51_T 979.286 -0.118546
+MUSETT_T0_DSSD_X52_T 990.352 -0.119845
+MUSETT_T0_DSSD_X53_T 984.065 -0.119138
+MUSETT_T0_DSSD_X54_T 979.666 -0.118555
+MUSETT_T0_DSSD_X55_T 983.533 -0.119075
+MUSETT_T0_DSSD_X56_T 985.306 -0.119233
+MUSETT_T0_DSSD_X57_T 991.106 -0.119996
+MUSETT_T0_DSSD_X58_T 976.043 -0.118125
+MUSETT_T0_DSSD_X59_T 976.115 -0.118174
+MUSETT_T0_DSSD_X60_T 975.677 -0.118044
+MUSETT_T0_DSSD_X61_T 987.246 -0.119531
+MUSETT_T0_DSSD_X62_T 963.333 -0.116527
+MUSETT_T0_DSSD_X63_T 952.87 -0.115275
+MUSETT_T0_DSSD_X64_T 978.41 -0.118448
+MUSETT_T0_DSSD_X65_T 919.481 -0.111151
+MUSETT_T0_DSSD_X66_T 868.319 -0.105013
+MUSETT_T0_DSSD_X67_T 877.769 -0.106169
+MUSETT_T0_DSSD_X68_T 914.799 -0.110613
+MUSETT_T0_DSSD_X69_T 878.126 -0.106212
+MUSETT_T0_DSSD_X70_T 919.575 -0.11118
+MUSETT_T0_DSSD_X71_T 883.907 -0.106905
+MUSETT_T0_DSSD_X72_T 917.725 -0.110972
+MUSETT_T0_DSSD_X73_T 893.227 -0.108043
+MUSETT_T0_DSSD_X74_T 914.821 -0.110604
+MUSETT_T0_DSSD_X75_T 900.551 -0.108935
+MUSETT_T0_DSSD_X76_T 922.429 -0.111529
+MUSETT_T0_DSSD_X77_T 896.432 -0.108442
+MUSETT_T0_DSSD_X78_T 914.168 -0.1105
+MUSETT_T0_DSSD_X79_T 894.569 -0.108194
+MUSETT_T0_DSSD_X80_T 908.954 -0.109898
+MUSETT_T0_DSSD_X81_T 903.782 -0.109336
+MUSETT_T0_DSSD_X82_T 914.714 -0.110579
+MUSETT_T0_DSSD_X83_T 901.487 -0.109053
+MUSETT_T0_DSSD_X84_T 913.375 -0.110413
+MUSETT_T0_DSSD_X85_T 907.332 -0.109771
+MUSETT_T0_DSSD_X86_T 898.889 -0.108648
+MUSETT_T0_DSSD_X87_T 904.852 -0.109449
+MUSETT_T0_DSSD_X88_T 905.323 -0.109423
+MUSETT_T0_DSSD_X89_T 902.075 -0.109128
+MUSETT_T0_DSSD_X90_T 901.831 -0.109007
+MUSETT_T0_DSSD_X91_T 906.169 -0.109641
+MUSETT_T0_DSSD_X92_T 891.715 -0.107782
+MUSETT_T0_DSSD_X93_T 902.566 -0.109177
+MUSETT_T0_DSSD_X94_T 891.484 -0.107748
+MUSETT_T0_DSSD_X95_T 888.355 -0.107364
+MUSETT_T0_DSSD_X96_T 904.912 -0.109478
+MUSETT_T0_DSSD_X97_T 965.16 -0.116744
+MUSETT_T0_DSSD_X98_T 957.155 -0.115846
+MUSETT_T0_DSSD_X99_T 962.206 -0.11646
+MUSETT_T0_DSSD_X100_T 974.188 -0.117868
+MUSETT_T0_DSSD_X101_T 971.895 -0.117644
+MUSETT_T0_DSSD_X102_T 960.173 -0.116152
+MUSETT_T0_DSSD_X103_T 973.151 -0.117791
+MUSETT_T0_DSSD_X104_T 961.407 -0.116299
+MUSETT_T0_DSSD_X105_T 976.443 -0.118174
+MUSETT_T0_DSSD_X106_T 961.03 -0.11625
+MUSETT_T0_DSSD_X107_T 989.114 -0.119717
+MUSETT_T0_DSSD_X108_T 964.341 -0.11664
+MUSETT_T0_DSSD_X109_T 993.741 -0.120284
+MUSETT_T0_DSSD_X110_T 956.784 -0.115728
+MUSETT_T0_DSSD_X111_T 994.917 -0.120426
+MUSETT_T0_DSSD_X112_T 949.288 -0.114813
+MUSETT_T0_DSSD_X113_T 1005.69 -0.121763
+MUSETT_T0_DSSD_X114_T 942.586 -0.113978
+MUSETT_T0_DSSD_X115_T 986.82 -0.119445
+MUSETT_T0_DSSD_X116_T 949.396 -0.114818
+MUSETT_T0_DSSD_X117_T 1003.89 -0.121535
+MUSETT_T0_DSSD_X118_T 941.329 -0.113819
+MUSETT_T0_DSSD_X119_T 994.316 -0.120381
+MUSETT_T0_DSSD_X120_T 930.333 -0.112468
+MUSETT_T0_DSSD_X121_T 1001.66 -0.121262
+MUSETT_T0_DSSD_X122_T 936.88 -0.113281
+MUSETT_T0_DSSD_X123_T 1005.75 -0.121766
+MUSETT_T0_DSSD_X124_T 924.498 -0.111774
+MUSETT_T0_DSSD_X125_T 996.228 -0.120615
+MUSETT_T0_DSSD_X126_T 932.405 -0.112746
+MUSETT_T0_DSSD_X127_T 922.493 -0.111515
+MUSETT_T0_DSSD_X128_T 999.032 -0.120952
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..8cffd6b21f7ef333cdd61679eac198de93f58561
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 983.277 -0.118761
+MUSETT_T0_DSSD_Y2_T 938.109 -0.113175
+MUSETT_T0_DSSD_Y3_T 947.448 -0.114309
+MUSETT_T0_DSSD_Y4_T 976.65 -0.117944
+MUSETT_T0_DSSD_Y5_T 956.035 -0.115351
+MUSETT_T0_DSSD_Y6_T 974.115 -0.117633
+MUSETT_T0_DSSD_Y7_T 947.978 -0.11436
+MUSETT_T0_DSSD_Y8_T 978.32 -0.11814
+MUSETT_T0_DSSD_Y9_T 950.631 -0.114686
+MUSETT_T0_DSSD_Y10_T 980.648 -0.118398
+MUSETT_T0_DSSD_Y11_T 953.963 -0.115103
+MUSETT_T0_DSSD_Y12_T 974.23 -0.117632
+MUSETT_T0_DSSD_Y13_T 959.973 -0.115832
+MUSETT_T0_DSSD_Y14_T 971.457 -0.117316
+MUSETT_T0_DSSD_Y15_T 959.848 -0.115841
+MUSETT_T0_DSSD_Y16_T 975.83 -0.117842
+MUSETT_T0_DSSD_Y17_T 964.52 -0.116398
+MUSETT_T0_DSSD_Y18_T 969.183 -0.117018
+MUSETT_T0_DSSD_Y19_T 962.989 -0.116195
+MUSETT_T0_DSSD_Y20_T 971.85 -0.117339
+MUSETT_T0_DSSD_Y21_T 959.157 -0.115516
+MUSETT_T0_DSSD_Y22_T 973.261 -0.117481
+MUSETT_T0_DSSD_Y23_T 973.941 -0.117562
+MUSETT_T0_DSSD_Y24_T 957.491 -0.115563
+MUSETT_T0_DSSD_Y25_T 976.25 -0.117834
+MUSETT_T0_DSSD_Y26_T 962.012 -0.116104
+MUSETT_T0_DSSD_Y27_T 971.294 -0.11722
+MUSETT_T0_DSSD_Y28_T 944.005 -0.113921
+MUSETT_T0_DSSD_Y29_T 974.292 -0.11759
+MUSETT_T0_DSSD_Y30_T 944.925 -0.114033
+MUSETT_T0_DSSD_Y32_T 968.991 -0.116928
+MUSETT_T0_DSSD_Y33_T 903.665 -0.109056
+MUSETT_T0_DSSD_Y34_T 859.176 -0.103507
+MUSETT_T0_DSSD_Y35_T 870.909 -0.104888
+MUSETT_T0_DSSD_Y36_T 915.646 -0.110513
+MUSETT_T0_DSSD_Y37_T 866.307 -0.104347
+MUSETT_T0_DSSD_Y38_T 905.186 -0.10924
+MUSETT_T0_DSSD_Y39_T 883.056 -0.106391
+MUSETT_T0_DSSD_Y40_T 910.71 -0.109895
+MUSETT_T0_DSSD_Y41_T 885.647 -0.106718
+MUSETT_T0_DSSD_Y42_T 913.208 -0.110196
+MUSETT_T0_DSSD_Y43_T 886.974 -0.106878
+MUSETT_T0_DSSD_Y44_T 902.655 -0.108924
+MUSETT_T0_DSSD_Y45_T 883.169 -0.106441
+MUSETT_T0_DSSD_Y46_T 903.864 -0.109045
+MUSETT_T0_DSSD_Y47_T 891.212 -0.107426
+MUSETT_T0_DSSD_Y48_T 905.49 -0.109285
+MUSETT_T0_DSSD_Y49_T 892.785 -0.107608
+MUSETT_T0_DSSD_Y50_T 908.071 -0.109567
+MUSETT_T0_DSSD_Y51_T 897.104 -0.108136
+MUSETT_T0_DSSD_Y52_T 889.86 -0.107347
+MUSETT_T0_DSSD_Y53_T 904.326 -0.109012
+MUSETT_T0_DSSD_Y54_T 889.448 -0.107278
+MUSETT_T0_DSSD_Y55_T 903.135 -0.108611
+MUSETT_T0_DSSD_Y56_T 889.979 -0.107363
+MUSETT_T0_DSSD_Y57_T 901.746 -0.108719
+MUSETT_T0_DSSD_Y58_T 878.496 -0.105955
+MUSETT_T0_DSSD_Y59_T 908.712 -0.109581
+MUSETT_T0_DSSD_Y60_T 888.383 -0.107174
+MUSETT_T0_DSSD_Y61_T 903.269 -0.108895
+MUSETT_T0_DSSD_Y62_T 871.608 -0.105113
+MUSETT_T0_DSSD_Y63_T 871.769 -0.105131
+MUSETT_T0_DSSD_Y64_T 908.687 -0.109543
+MUSETT_T0_DSSD_Y65_T 1001.6 -0.121097
+MUSETT_T0_DSSD_Y66_T 970.056 -0.117145
+MUSETT_T0_DSSD_Y67_T 986.117 -0.119118
+MUSETT_T0_DSSD_Y68_T 994.499 -0.120247
+MUSETT_T0_DSSD_Y69_T 981.373 -0.118534
+MUSETT_T0_DSSD_Y70_T 997.331 -0.120579
+MUSETT_T0_DSSD_Y71_T 995.859 -0.12031
+MUSETT_T0_DSSD_Y72_T 995.389 -0.120327
+MUSETT_T0_DSSD_Y73_T 999.672 -0.120777
+MUSETT_T0_DSSD_Y74_T 1000.31 -0.120924
+MUSETT_T0_DSSD_Y75_T 1002.22 -0.121085
+MUSETT_T0_DSSD_Y76_T 989.884 -0.119656
+MUSETT_T0_DSSD_Y77_T 998.019 -0.120569
+MUSETT_T0_DSSD_Y78_T 981.143 -0.118591
+MUSETT_T0_DSSD_Y79_T 1008.32 -0.121839
+MUSETT_T0_DSSD_Y80_T 989.544 -0.119628
+MUSETT_T0_DSSD_Y81_T 1004.28 -0.121339
+MUSETT_T0_DSSD_Y82_T 985.816 -0.119156
+MUSETT_T0_DSSD_Y83_T 1014.52 -0.122592
+MUSETT_T0_DSSD_Y84_T 982.64 -0.118781
+MUSETT_T0_DSSD_Y85_T 1025.22 -0.123897
+MUSETT_T0_DSSD_Y86_T 983.206 -0.118825
+MUSETT_T0_DSSD_Y87_T 1024.79 -0.123866
+MUSETT_T0_DSSD_Y88_T 979.506 -0.118378
+MUSETT_T0_DSSD_Y89_T 1019.8 -0.123256
+MUSETT_T0_DSSD_Y90_T 976.674 -0.118028
+MUSETT_T0_DSSD_Y91_T 1024.3 -0.123786
+MUSETT_T0_DSSD_Y92_T 976.574 -0.118012
+MUSETT_T0_DSSD_Y93_T 1021.08 -0.123408
+MUSETT_T0_DSSD_Y94_T 970.82 -0.117302
+MUSETT_T0_DSSD_Y95_T 963.864 -0.116469
+MUSETT_T0_DSSD_Y96_T 1016.6 -0.122879
+MUSETT_T0_DSSD_Y97_T 917.078 -0.110803
+MUSETT_T0_DSSD_Y98_T 891.216 -0.107535
+MUSETT_T0_DSSD_Y99_T 899.129 -0.108466
+MUSETT_T0_DSSD_Y100_T 915.137 -0.110572
+MUSETT_T0_DSSD_Y101_T 898.718 -0.108438
+MUSETT_T0_DSSD_Y102_T 909.547 -0.109894
+MUSETT_T0_DSSD_Y103_T 904.591 -0.109158
+MUSETT_T0_DSSD_Y104_T 913.859 -0.110421
+MUSETT_T0_DSSD_Y105_T 916.06 -0.110566
+MUSETT_T0_DSSD_Y106_T 914.704 -0.11051
+MUSETT_T0_DSSD_Y107_T 909.441 -0.109757
+MUSETT_T0_DSSD_Y108_T 910.27 -0.109981
+MUSETT_T0_DSSD_Y109_T 929.211 -0.112167
+MUSETT_T0_DSSD_Y110_T 914.99 -0.110544
+MUSETT_T0_DSSD_Y111_T 920.724 -0.111146
+MUSETT_T0_DSSD_Y112_T 901.739 -0.108916
+MUSETT_T0_DSSD_Y113_T 931.107 -0.112407
+MUSETT_T0_DSSD_Y114_T 907.124 -0.10959
+MUSETT_T0_DSSD_Y115_T 930.357 -0.112337
+MUSETT_T0_DSSD_Y116_T 895.168 -0.108105
+MUSETT_T0_DSSD_Y117_T 932.102 -0.112539
+MUSETT_T0_DSSD_Y118_T 890.686 -0.10757
+MUSETT_T0_DSSD_Y119_T 935.662 -0.112978
+MUSETT_T0_DSSD_Y120_T 891.724 -0.107707
+MUSETT_T0_DSSD_Y121_T 930.191 -0.112316
+MUSETT_T0_DSSD_Y122_T 894.625 -0.108041
+MUSETT_T0_DSSD_Y123_T 929.054 -0.112192
+MUSETT_T0_DSSD_Y124_T 878.021 -0.106028
+MUSETT_T0_DSSD_Y125_T 926.166 -0.111821
+MUSETT_T0_DSSD_Y126_T 878.942 -0.106139
+MUSETT_T0_DSSD_Y127_T 882.25 -0.106544
+MUSETT_T0_DSSD_Y128_T 929.013 -0.112162
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..28ea02313a04318e3f08f995fa2cbcfdb811b04c
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X1_T 916.574 -0.110777
+MUSETT_T1_DSSD_X2_T 878.025 -0.106165
+MUSETT_T1_DSSD_X3_T 877.927 -0.10618
+MUSETT_T1_DSSD_X4_T 908.514 -0.109791
+MUSETT_T1_DSSD_X5_T 893.294 -0.108064
+MUSETT_T1_DSSD_X6_T 909.067 -0.109867
+MUSETT_T1_DSSD_X7_T 876.051 -0.105941
+MUSETT_T1_DSSD_X8_T 917.556 -0.110894
+MUSETT_T1_DSSD_X9_T 893.827 -0.108105
+MUSETT_T1_DSSD_X10_T 904.646 -0.109308
+MUSETT_T1_DSSD_X11_T 899.59 -0.108823
+MUSETT_T1_DSSD_X12_T 912.271 -0.110244
+MUSETT_T1_DSSD_X13_T 891.87 -0.107861
+MUSETT_T1_DSSD_X14_T 903.537 -0.10916
+MUSETT_T1_DSSD_X15_T 896.377 -0.10842
+MUSETT_T1_DSSD_X16_T 907.775 -0.1097
+MUSETT_T1_DSSD_X17_T 899.273 -0.108779
+MUSETT_T1_DSSD_X18_T 901.392 -0.108878
+MUSETT_T1_DSSD_X19_T 898.912 -0.108754
+MUSETT_T1_DSSD_X20_T 895.39 -0.10819
+MUSETT_T1_DSSD_X21_T 907.617 -0.109783
+MUSETT_T1_DSSD_X22_T 891.534 -0.107699
+MUSETT_T1_DSSD_X23_T 899.789 -0.108855
+MUSETT_T1_DSSD_X24_T 891.233 -0.107685
+MUSETT_T1_DSSD_X25_T 909.299 -0.110019
+MUSETT_T1_DSSD_X26_T 888.452 -0.107338
+MUSETT_T1_DSSD_X27_T 907.769 -0.109854
+MUSETT_T1_DSSD_X28_T 885.913 -0.107015
+MUSETT_T1_DSSD_X29_T 905.232 -0.109528
+MUSETT_T1_DSSD_X30_T 873.224 -0.105455
+MUSETT_T1_DSSD_X31_T 868.163 -0.104838
+MUSETT_T1_DSSD_X32_T 909.577 -0.110055
+MUSETT_T1_DSSD_X33_T 984.794 -0.119148
+MUSETT_T1_DSSD_X34_T 928.571 -0.11232
+MUSETT_T1_DSSD_X35_T 942.493 -0.114015
+MUSETT_T1_DSSD_X36_T 977.151 -0.118198
+MUSETT_T1_DSSD_X37_T 944.985 -0.114341
+MUSETT_T1_DSSD_X38_T 978.26 -0.118324
+MUSETT_T1_DSSD_X39_T 956.226 -0.115712
+MUSETT_T1_DSSD_X40_T 981.073 -0.118677
+MUSETT_T1_DSSD_X41_T 956.679 -0.115744
+MUSETT_T1_DSSD_X42_T 977.242 -0.11821
+MUSETT_T1_DSSD_X43_T 958.458 -0.115962
+MUSETT_T1_DSSD_X44_T 973.502 -0.117737
+MUSETT_T1_DSSD_X45_T 971.702 -0.117589
+MUSETT_T1_DSSD_X46_T 974.918 -0.117923
+MUSETT_T1_DSSD_X47_T 966.768 -0.116998
+MUSETT_T1_DSSD_X48_T 971.664 -0.117531
+MUSETT_T1_DSSD_X49_T 970.872 -0.117498
+MUSETT_T1_DSSD_X50_T 973.476 -0.117739
+MUSETT_T1_DSSD_X51_T 979.817 -0.118577
+MUSETT_T1_DSSD_X52_T 957.223 -0.115762
+MUSETT_T1_DSSD_X53_T 976.301 -0.118143
+MUSETT_T1_DSSD_X54_T 967.911 -0.117052
+MUSETT_T1_DSSD_X55_T 975.435 -0.118071
+MUSETT_T1_DSSD_X56_T 954.686 -0.115464
+MUSETT_T1_DSSD_X57_T 987.534 -0.11954
+MUSETT_T1_DSSD_X58_T 946.29 -0.114439
+MUSETT_T1_DSSD_X59_T 988.145 -0.119597
+MUSETT_T1_DSSD_X60_T 948.76 -0.114738
+MUSETT_T1_DSSD_X61_T 985.177 -0.119236
+MUSETT_T1_DSSD_X62_T 947.862 -0.114612
+MUSETT_T1_DSSD_X63_T 924.661 -0.111777
+MUSETT_T1_DSSD_X64_T 984.559 -0.119179
+MUSETT_T1_DSSD_X65_T 928.424 -0.111864
+MUSETT_T1_DSSD_X66_T 892.824 -0.107613
+MUSETT_T1_DSSD_X67_T 890.901 -0.107373
+MUSETT_T1_DSSD_X68_T 934.329 -0.112614
+MUSETT_T1_DSSD_X69_T 894.556 -0.107838
+MUSETT_T1_DSSD_X70_T 931.059 -0.112193
+MUSETT_T1_DSSD_X71_T 905.994 -0.109224
+MUSETT_T1_DSSD_X72_T 925.186 -0.111483
+MUSETT_T1_DSSD_X73_T 905.741 -0.1092
+MUSETT_T1_DSSD_X74_T 927.829 -0.111775
+MUSETT_T1_DSSD_X75_T 910.629 -0.109791
+MUSETT_T1_DSSD_X76_T 932.559 -0.11236
+MUSETT_T1_DSSD_X77_T 906.206 -0.109268
+MUSETT_T1_DSSD_X78_T 931.448 -0.112226
+MUSETT_T1_DSSD_X79_T 921.692 -0.111151
+MUSETT_T1_DSSD_X80_T 923.868 -0.111325
+MUSETT_T1_DSSD_X81_T 922.784 -0.11128
+MUSETT_T1_DSSD_X82_T 918.363 -0.110659
+MUSETT_T1_DSSD_X83_T 924.5 -0.111467
+MUSETT_T1_DSSD_X84_T 935.93 -0.112781
+MUSETT_T1_DSSD_X85_T 928.983 -0.112035
+MUSETT_T1_DSSD_X86_T 923.812 -0.111304
+MUSETT_T1_DSSD_X87_T 924.661 -0.111519
+MUSETT_T1_DSSD_X88_T 929.323 -0.111977
+MUSETT_T1_DSSD_X89_T 925.485 -0.111616
+MUSETT_T1_DSSD_X90_T 914.468 -0.110136
+MUSETT_T1_DSSD_X91_T 917.32 -0.110627
+MUSETT_T1_DSSD_X92_T 908.74 -0.10946
+MUSETT_T1_DSSD_X93_T 920.078 -0.110941
+MUSETT_T1_DSSD_X94_T 901.745 -0.108567
+MUSETT_T1_DSSD_X95_T 900.671 -0.108476
+MUSETT_T1_DSSD_X96_T 926.646 -0.11176
+MUSETT_T1_DSSD_X97_T 1008.1 -0.12163
+MUSETT_T1_DSSD_X98_T 951.079 -0.114723
+MUSETT_T1_DSSD_X99_T 952.897 -0.114949
+MUSETT_T1_DSSD_X100_T 1019.96 -0.123096
+MUSETT_T1_DSSD_X101_T 966.461 -0.116629
+MUSETT_T1_DSSD_X102_T 1020.31 -0.123127
+MUSETT_T1_DSSD_X103_T 965.985 -0.116557
+MUSETT_T1_DSSD_X104_T 1017.49 -0.12279
+MUSETT_T1_DSSD_X105_T 968.322 -0.116827
+MUSETT_T1_DSSD_X106_T 1018.04 -0.12282
+MUSETT_T1_DSSD_X107_T 976.11 -0.117811
+MUSETT_T1_DSSD_X108_T 1011.77 -0.122082
+MUSETT_T1_DSSD_X109_T 975.867 -0.117758
+MUSETT_T1_DSSD_X110_T 1016.22 -0.12261
+MUSETT_T1_DSSD_X111_T 981.064 -0.118392
+MUSETT_T1_DSSD_X112_T 1013.91 -0.122345
+MUSETT_T1_DSSD_X113_T 978.32 -0.118063
+MUSETT_T1_DSSD_X114_T 999.416 -0.12057
+MUSETT_T1_DSSD_X115_T 992.972 -0.119853
+MUSETT_T1_DSSD_X116_T 1007.52 -0.121554
+MUSETT_T1_DSSD_X117_T 989.034 -0.119377
+MUSETT_T1_DSSD_X118_T 1006.21 -0.121389
+MUSETT_T1_DSSD_X119_T 987.234 -0.119141
+MUSETT_T1_DSSD_X120_T 996.925 -0.120215
+MUSETT_T1_DSSD_X121_T 994.058 -0.119982
+MUSETT_T1_DSSD_X122_T 997.371 -0.120307
+MUSETT_T1_DSSD_X123_T 995.957 -0.120199
+MUSETT_T1_DSSD_X124_T 983.919 -0.118652
+MUSETT_T1_DSSD_X125_T 995.79 -0.1202
+MUSETT_T1_DSSD_X126_T 978.841 -0.118024
+MUSETT_T1_DSSD_X127_T 976.704 -0.117775
+MUSETT_T1_DSSD_X128_T 1000.15 -0.120722
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..479452366cadab56b76c2feaf880cbb51e2a6755
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y1_T 966.891 -0.116717
+MUSETT_T1_DSSD_Y2_T 968.928 -0.116883
+MUSETT_T1_DSSD_Y3_T 971.207 -0.117128
+MUSETT_T1_DSSD_Y4_T 969.17 -0.116981
+MUSETT_T1_DSSD_Y5_T 975.423 -0.117665
+MUSETT_T1_DSSD_Y6_T 967.943 -0.116827
+MUSETT_T1_DSSD_Y7_T 976.249 -0.117743
+MUSETT_T1_DSSD_Y8_T 972.184 -0.117358
+MUSETT_T1_DSSD_Y9_T 987.572 -0.119146
+MUSETT_T1_DSSD_Y10_T 972.004 -0.117327
+MUSETT_T1_DSSD_Y11_T 984.536 -0.118747
+MUSETT_T1_DSSD_Y12_T 964.104 -0.116368
+MUSETT_T1_DSSD_Y13_T 987.751 -0.119189
+MUSETT_T1_DSSD_Y14_T 968.288 -0.116854
+MUSETT_T1_DSSD_Y15_T 994.23 -0.119964
+MUSETT_T1_DSSD_Y16_T 958.21 -0.11562
+MUSETT_T1_DSSD_Y17_T 995.905 -0.120158
+MUSETT_T1_DSSD_Y18_T 950.839 -0.114726
+MUSETT_T1_DSSD_Y19_T 995.946 -0.120176
+MUSETT_T1_DSSD_Y20_T 960.868 -0.115938
+MUSETT_T1_DSSD_Y21_T 1000.5 -0.120728
+MUSETT_T1_DSSD_Y22_T 957.621 -0.115533
+MUSETT_T1_DSSD_Y23_T 995.25 -0.120113
+MUSETT_T1_DSSD_Y24_T 954.252 -0.115122
+MUSETT_T1_DSSD_Y25_T 997.145 -0.120339
+MUSETT_T1_DSSD_Y26_T 952.035 -0.114834
+MUSETT_T1_DSSD_Y27_T 988.864 -0.119308
+MUSETT_T1_DSSD_Y28_T 948.029 -0.114361
+MUSETT_T1_DSSD_Y29_T 995.199 -0.120108
+MUSETT_T1_DSSD_Y30_T 937.191 -0.113022
+MUSETT_T1_DSSD_Y31_T 935.35 -0.11282
+MUSETT_T1_DSSD_Y32_T 990.383 -0.119515
+MUSETT_T1_DSSD_Y33_T 905.741 -0.109257
+MUSETT_T1_DSSD_Y34_T 887.986 -0.10696
+MUSETT_T1_DSSD_Y35_T 887.216 -0.106852
+MUSETT_T1_DSSD_Y36_T 910.732 -0.109844
+MUSETT_T1_DSSD_Y37_T 883.77 -0.106436
+MUSETT_T1_DSSD_Y38_T 906.33 -0.109312
+MUSETT_T1_DSSD_Y39_T 896.97 -0.108049
+MUSETT_T1_DSSD_Y40_T 911.966 -0.109989
+MUSETT_T1_DSSD_Y41_T 903.022 -0.108781
+MUSETT_T1_DSSD_Y42_T 909.45 -0.10969
+MUSETT_T1_DSSD_Y43_T 904.319 -0.108923
+MUSETT_T1_DSSD_Y44_T 900.767 -0.108623
+MUSETT_T1_DSSD_Y45_T 904.183 -0.108922
+MUSETT_T1_DSSD_Y46_T 908.035 -0.109521
+MUSETT_T1_DSSD_Y47_T 904.336 -0.108949
+MUSETT_T1_DSSD_Y48_T 895.245 -0.107957
+MUSETT_T1_DSSD_Y49_T 916.034 -0.110395
+MUSETT_T1_DSSD_Y50_T 907.451 -0.10944
+MUSETT_T1_DSSD_Y51_T 915.216 -0.110294
+MUSETT_T1_DSSD_Y52_T 897.171 -0.108164
+MUSETT_T1_DSSD_Y53_T 910.734 -0.109746
+MUSETT_T1_DSSD_Y54_T 907.311 -0.109433
+MUSETT_T1_DSSD_Y55_T 913.293 -0.109802
+MUSETT_T1_DSSD_Y56_T 848677000000.0 -103827000.0
+MUSETT_T1_DSSD_Y57_T 910.448 -0.109742
+MUSETT_T1_DSSD_Y58_T 896.019 -0.108037
+MUSETT_T1_DSSD_Y59_T 918.647 -0.11072
+MUSETT_T1_DSSD_Y60_T 886.581 -0.106848
+MUSETT_T1_DSSD_Y61_T 920.049 -0.110879
+MUSETT_T1_DSSD_Y62_T 884.995 -0.106691
+MUSETT_T1_DSSD_Y63_T 1002.87 -0.141377
+MUSETT_T1_DSSD_Y64_T 921.093 -0.111037
+MUSETT_T1_DSSD_Y65_T 991.793 -0.120194
+MUSETT_T1_DSSD_Y66_T 947.005 -0.114646
+MUSETT_T1_DSSD_Y67_T 955.512 -0.115676
+MUSETT_T1_DSSD_Y68_T 986.667 -0.119601
+MUSETT_T1_DSSD_Y69_T 954.266 -0.115551
+MUSETT_T1_DSSD_Y70_T 985.922 -0.119505
+MUSETT_T1_DSSD_Y71_T 961.213 -0.116392
+MUSETT_T1_DSSD_Y72_T 988.378 -0.11981
+MUSETT_T1_DSSD_Y73_T 960.803 -0.116344
+MUSETT_T1_DSSD_Y74_T 985.147 -0.119391
+MUSETT_T1_DSSD_Y75_T 971.068 -0.117589
+MUSETT_T1_DSSD_Y76_T 988.169 -0.119777
+MUSETT_T1_DSSD_Y77_T 971.908 -0.117699
+MUSETT_T1_DSSD_Y78_T 986.47 -0.119552
+MUSETT_T1_DSSD_Y79_T 978.963 -0.118567
+MUSETT_T1_DSSD_Y80_T 983.419 -0.119163
+MUSETT_T1_DSSD_Y81_T 980.181 -0.118705
+MUSETT_T1_DSSD_Y82_T 982.479 -0.119038
+MUSETT_T1_DSSD_Y83_T 972.849 -0.117807
+MUSETT_T1_DSSD_Y84_T 974.345 -0.118053
+MUSETT_T1_DSSD_Y85_T 977.401 -0.118376
+MUSETT_T1_DSSD_Y86_T 978.784 -0.118609
+MUSETT_T1_DSSD_Y87_T 985.257 -0.119333
+MUSETT_T1_DSSD_Y88_T 970.687 -0.117617
+MUSETT_T1_DSSD_Y89_T 986.001 -0.119429
+MUSETT_T1_DSSD_Y90_T 967.43 -0.117211
+MUSETT_T1_DSSD_Y91_T 978.94 -0.118576
+MUSETT_T1_DSSD_Y92_T 963.945 -0.116788
+MUSETT_T1_DSSD_Y93_T 982.604 -0.119031
+MUSETT_T1_DSSD_Y94_T 958.17 -0.116053
+MUSETT_T1_DSSD_Y95_T 950.903 -0.115194
+MUSETT_T1_DSSD_Y96_T 994.308 -0.120471
+MUSETT_T1_DSSD_Y97_T 906.635 -0.109824
+MUSETT_T1_DSSD_Y98_T 862.399 -0.104291
+MUSETT_T1_DSSD_Y99_T 856.141 -0.103549
+MUSETT_T1_DSSD_Y100_T 900.796 -0.109108
+MUSETT_T1_DSSD_Y101_T 866.517 -0.104798
+MUSETT_T1_DSSD_Y102_T 910.268 -0.110268
+MUSETT_T1_DSSD_Y103_T 861.488 -0.10419
+MUSETT_T1_DSSD_Y104_T 903.241 -0.109417
+MUSETT_T1_DSSD_Y105_T 869.88 -0.105221
+MUSETT_T1_DSSD_Y106_T 896.217 -0.108536
+MUSETT_T1_DSSD_Y107_T 879.073 -0.106354
+MUSETT_T1_DSSD_Y108_T 905.347 -0.10967
+MUSETT_T1_DSSD_Y109_T 883.458 -0.1069
+MUSETT_T1_DSSD_Y110_T 902.144 -0.10926
+MUSETT_T1_DSSD_Y111_T 878.318 -0.106252
+MUSETT_T1_DSSD_Y112_T 905.296 -0.109653
+MUSETT_T1_DSSD_Y113_T 895.691 -0.108379
+MUSETT_T1_DSSD_Y114_T 895.11 -0.108406
+MUSETT_T1_DSSD_Y115_T 896.571 -0.108492
+MUSETT_T1_DSSD_Y116_T 891.891 -0.108005
+MUSETT_T1_DSSD_Y117_T 894.464 -0.108225
+MUSETT_T1_DSSD_Y118_T 884.05 -0.107044
+MUSETT_T1_DSSD_Y119_T 893.509 -0.108132
+MUSETT_T1_DSSD_Y120_T 891.902 -0.10801
+MUSETT_T1_DSSD_Y121_T 895.809 -0.108412
+MUSETT_T1_DSSD_Y122_T 894.071 -0.108263
+MUSETT_T1_DSSD_Y123_T 891.015 -0.10784
+MUSETT_T1_DSSD_Y124_T 880.13 -0.106555
+MUSETT_T1_DSSD_Y125_T 888.724 -0.107526
+MUSETT_T1_DSSD_Y126_T 875.524 -0.106
+MUSETT_T1_DSSD_Y127_T 876.691 -0.106136
+MUSETT_T1_DSSD_Y128_T 899.797 -0.109448
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..eb9e80680ce0a88ba927b74dd75d653adf4c3093
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X1_T 893.403 -0.107885
+MUSETT_T2_DSSD_X2_T 884.424 -0.106884
+MUSETT_T2_DSSD_X3_T 881.912 -0.106588
+MUSETT_T2_DSSD_X4_T 896.224 -0.10824
+MUSETT_T2_DSSD_X5_T 891.212 -0.10771
+MUSETT_T2_DSSD_X6_T 899.711 -0.108665
+MUSETT_T2_DSSD_X7_T 888.472 -0.10739
+MUSETT_T2_DSSD_X8_T 900.163 -0.108721
+MUSETT_T2_DSSD_X9_T 902.325 -0.109058
+MUSETT_T2_DSSD_X10_T 898.738 -0.108543
+MUSETT_T2_DSSD_X11_T 899.193 -0.108685
+MUSETT_T2_DSSD_X12_T 888.44 -0.107279
+MUSETT_T2_DSSD_X13_T 906.762 -0.109605
+MUSETT_T2_DSSD_X14_T 896.907 -0.108307
+MUSETT_T2_DSSD_X15_T 903.506 -0.109211
+MUSETT_T2_DSSD_X16_T 894.49 -0.108024
+MUSETT_T2_DSSD_X17_T 903.2 -0.109168
+MUSETT_T2_DSSD_X18_T 885.543 -0.106931
+MUSETT_T2_DSSD_X19_T 907.04 -0.109617
+MUSETT_T2_DSSD_X20_T 877.811 -0.105984
+MUSETT_T2_DSSD_X21_T 913.192 -0.1104
+MUSETT_T2_DSSD_X22_T 875.93 -0.105755
+MUSETT_T2_DSSD_X23_T 912.001 -0.110254
+MUSETT_T2_DSSD_X24_T 875.67 -0.105723
+MUSETT_T2_DSSD_X25_T 920.039 -0.111219
+MUSETT_T2_DSSD_X26_T 866.918 -0.10464
+MUSETT_T2_DSSD_X27_T 918.464 -0.111043
+MUSETT_T2_DSSD_X28_T 872.886 -0.105362
+MUSETT_T2_DSSD_X29_T 921.268 -0.111378
+MUSETT_T2_DSSD_X30_T 863.294 -0.104191
+MUSETT_T2_DSSD_X31_T 853.022 -0.102956
+MUSETT_T2_DSSD_X32_T 917.17 -0.11089
+MUSETT_T2_DSSD_X33_T 949.489 -0.114725
+MUSETT_T2_DSSD_X34_T 937.316 -0.113282
+MUSETT_T2_DSSD_X35_T 934.385 -0.112935
+MUSETT_T2_DSSD_X36_T 950.078 -0.114801
+MUSETT_T2_DSSD_X37_T 942.34 -0.113903
+MUSETT_T2_DSSD_X38_T 948.307 -0.114577
+MUSETT_T2_DSSD_X39_T 954.458 -0.11541
+MUSETT_T2_DSSD_X40_T 952.149 -0.115049
+MUSETT_T2_DSSD_X41_T 950.139 -0.114834
+MUSETT_T2_DSSD_X42_T 944.632 -0.114127
+MUSETT_T2_DSSD_X43_T 967.561 -0.116968
+MUSETT_T2_DSSD_X44_T 948.456 -0.114587
+MUSETT_T2_DSSD_X45_T 960.77 -0.116144
+MUSETT_T2_DSSD_X46_T 947.97 -0.114529
+MUSETT_T2_DSSD_X47_T 965.567 -0.116738
+MUSETT_T2_DSSD_X48_T 939.674 -0.113523
+MUSETT_T2_DSSD_X49_T 957.421 -0.115736
+MUSETT_T2_DSSD_X50_T 948.676 -0.114596
+MUSETT_T2_DSSD_X51_T 969.399 -0.117191
+MUSETT_T2_DSSD_X52_T 940.462 -0.113604
+MUSETT_T2_DSSD_X53_T 971.909 -0.117505
+MUSETT_T2_DSSD_X54_T 942.935 -0.113893
+MUSETT_T2_DSSD_X55_T 966.623 -0.116868
+MUSETT_T2_DSSD_X56_T 947.225 -0.114433
+MUSETT_T2_DSSD_X57_T 972.522 -0.117596
+MUSETT_T2_DSSD_X58_T 936.381 -0.11311
+MUSETT_T2_DSSD_X59_T 966.551 -0.116864
+MUSETT_T2_DSSD_X60_T 937.478 -0.113239
+MUSETT_T2_DSSD_X61_T 967.053 -0.116934
+MUSETT_T2_DSSD_X62_T 934.725 -0.1129
+MUSETT_T2_DSSD_X63_T 919.521 -0.111042
+MUSETT_T2_DSSD_X64_T 976.535 -0.118078
+MUSETT_T2_DSSD_X65_T 944.971 -0.114186
+MUSETT_T2_DSSD_X66_T 901.312 -0.10895
+MUSETT_T2_DSSD_X67_T 917.986 -0.11099
+MUSETT_T2_DSSD_X68_T 944.748 -0.114176
+MUSETT_T2_DSSD_X69_T 913.934 -0.110483
+MUSETT_T2_DSSD_X70_T 936.181 -0.113143
+MUSETT_T2_DSSD_X71_T 913.949 -0.110494
+MUSETT_T2_DSSD_X72_T 936.518 -0.113174
+MUSETT_T2_DSSD_X73_T 923.435 -0.11163
+MUSETT_T2_DSSD_X74_T 946.851 -0.11443
+MUSETT_T2_DSSD_X75_T 922.621 -0.111573
+MUSETT_T2_DSSD_X76_T 940.75 -0.113673
+MUSETT_T2_DSSD_X77_T 921.076 -0.111368
+MUSETT_T2_DSSD_X78_T 949.44 -0.114745
+MUSETT_T2_DSSD_X79_T 925.346 -0.111888
+MUSETT_T2_DSSD_X80_T 940.564 -0.113666
+MUSETT_T2_DSSD_X81_T 935.581 -0.113122
+MUSETT_T2_DSSD_X82_T 940.971 -0.113698
+MUSETT_T2_DSSD_X83_T 932.485 -0.112764
+MUSETT_T2_DSSD_X84_T 938.012 -0.113333
+MUSETT_T2_DSSD_X85_T 937.5 -0.113373
+MUSETT_T2_DSSD_X86_T 932.582 -0.11267
+MUSETT_T2_DSSD_X87_T 932.715 -0.112797
+MUSETT_T2_DSSD_X88_T 929.709 -0.112323
+MUSETT_T2_DSSD_X89_T 935.979 -0.113176
+MUSETT_T2_DSSD_X90_T 914.139 -0.110414
+MUSETT_T2_DSSD_X91_T 942.445 -0.113973
+MUSETT_T2_DSSD_X92_T 914.61 -0.110461
+MUSETT_T2_DSSD_X93_T 943.181 -0.114066
+MUSETT_T2_DSSD_X94_T 906.889 -0.109531
+MUSETT_T2_DSSD_X95_T 902.2 -0.108961
+MUSETT_T2_DSSD_X96_T 942.414 -0.113973
+MUSETT_T2_DSSD_X97_T 987.604 -0.119394
+MUSETT_T2_DSSD_X98_T 971.844 -0.117533
+MUSETT_T2_DSSD_X99_T 971.845 -0.117545
+MUSETT_T2_DSSD_X100_T 1002.51 -0.12123
+MUSETT_T2_DSSD_X101_T 983.582 -0.118957
+MUSETT_T2_DSSD_X102_T 1001.7 -0.12112
+MUSETT_T2_DSSD_X103_T 988.69 -0.119584
+MUSETT_T2_DSSD_X104_T 997.508 -0.120614
+MUSETT_T2_DSSD_X105_T 990.616 -0.119902
+MUSETT_T2_DSSD_X106_T 982.481 -0.118788
+MUSETT_T2_DSSD_X107_T 992.058 -0.12002
+MUSETT_T2_DSSD_X108_T 992.615 -0.120011
+MUSETT_T2_DSSD_X109_T 993.193 -0.120171
+MUSETT_T2_DSSD_X110_T 993.652 -0.120143
+MUSETT_T2_DSSD_X111_T 998.567 -0.120802
+MUSETT_T2_DSSD_X112_T 993.933 -0.120152
+MUSETT_T2_DSSD_X113_T 991.75 -0.119977
+MUSETT_T2_DSSD_X114_T 983.229 -0.118879
+MUSETT_T2_DSSD_X115_T 1000.28 -0.12102
+MUSETT_T2_DSSD_X116_T 984.429 -0.118997
+MUSETT_T2_DSSD_X117_T 996.389 -0.12055
+MUSETT_T2_DSSD_X118_T 970.748 -0.117336
+MUSETT_T2_DSSD_X119_T 995.946 -0.12048
+MUSETT_T2_DSSD_X120_T 969.333 -0.117159
+MUSETT_T2_DSSD_X121_T 1005.69 -0.121688
+MUSETT_T2_DSSD_X122_T 969.343 -0.117158
+MUSETT_T2_DSSD_X123_T 1009.38 -0.122136
+MUSETT_T2_DSSD_X124_T 965.866 -0.116735
+MUSETT_T2_DSSD_X125_T 1012.08 -0.122472
+MUSETT_T2_DSSD_X126_T 964.034 -0.116512
+MUSETT_T2_DSSD_X127_T 952.869 -0.115148
+MUSETT_T2_DSSD_X128_T 1003.93 -0.121488
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..bff45b74f99cfd7cd75c19c8e9acbe2ea26654c0
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y1_T 1024.2 -0.123744
+MUSETT_T2_DSSD_Y2_T 942.022 -0.113632
+MUSETT_T2_DSSD_Y3_T 941.851 -0.11359
+MUSETT_T2_DSSD_Y4_T 1023.43 -0.123621
+MUSETT_T2_DSSD_Y5_T 941.301 -0.113546
+MUSETT_T2_DSSD_Y6_T 1024.68 -0.123746
+MUSETT_T2_DSSD_Y7_T 941.196 -0.113526
+MUSETT_T2_DSSD_Y8_T 1019.48 -0.12312
+MUSETT_T2_DSSD_Y9_T 956.339 -0.115367
+MUSETT_T2_DSSD_Y10_T 1017.56 -0.122898
+MUSETT_T2_DSSD_Y11_T 972.159 -0.117305
+MUSETT_T2_DSSD_Y12_T 1012.4 -0.122275
+MUSETT_T2_DSSD_Y13_T 968.071 -0.11682
+MUSETT_T2_DSSD_Y14_T 1006.22 -0.121307
+MUSETT_T2_DSSD_Y15_T 963.198 -0.116216
+MUSETT_T2_DSSD_Y16_T 1014.58 -0.122539
+MUSETT_T2_DSSD_Y17_T 978.802 -0.118134
+MUSETT_T2_DSSD_Y18_T 1013.44 -0.122366
+MUSETT_T2_DSSD_Y19_T 981.332 -0.118446
+MUSETT_T2_DSSD_Y20_T 1006.43 -0.121526
+MUSETT_T2_DSSD_Y21_T 978.515 -0.117858
+MUSETT_T2_DSSD_Y22_T 1001.78 -0.120947
+MUSETT_T2_DSSD_Y23_T 985.445 -0.11895
+MUSETT_T2_DSSD_Y24_T 1003.53 -0.121165
+MUSETT_T2_DSSD_Y25_T 979.656 -0.118238
+MUSETT_T2_DSSD_Y26_T 998.524 -0.120524
+MUSETT_T2_DSSD_Y27_T 981.57 -0.118468
+MUSETT_T2_DSSD_Y28_T 992.258 -0.119776
+MUSETT_T2_DSSD_Y29_T 980.383 -0.118337
+MUSETT_T2_DSSD_Y30_T 993.077 -0.119903
+MUSETT_T2_DSSD_Y31_T 989.947 -0.119525
+MUSETT_T2_DSSD_Y32_T 968.968 -0.116905
+MUSETT_T2_DSSD_Y33_T 918.091 -0.110791
+MUSETT_T2_DSSD_Y34_T 896.545 -0.108016
+MUSETT_T2_DSSD_Y35_T 905.921 -0.109155
+MUSETT_T2_DSSD_Y36_T 922.863 -0.111371
+MUSETT_T2_DSSD_Y37_T 903.191 -0.108834
+MUSETT_T2_DSSD_Y38_T 919.243 -0.110907
+MUSETT_T2_DSSD_Y39_T 916.514 -0.110471
+MUSETT_T2_DSSD_Y40_T 915.986 -0.110532
+MUSETT_T2_DSSD_Y41_T 909.698 -0.109622
+MUSETT_T2_DSSD_Y42_T 913.535 -0.110231
+MUSETT_T2_DSSD_Y43_T 918.472 -0.110708
+MUSETT_T2_DSSD_Y44_T 910.049 -0.10979
+MUSETT_T2_DSSD_Y45_T 921.934 -0.111116
+MUSETT_T2_DSSD_Y46_T 914.061 -0.110304
+MUSETT_T2_DSSD_Y47_T 917.791 -0.11061
+MUSETT_T2_DSSD_Y48_T 909.649 -0.109756
+MUSETT_T2_DSSD_Y49_T 930.463 -0.11216
+MUSETT_T2_DSSD_Y50_T 906.817 -0.109401
+MUSETT_T2_DSSD_Y51_T 921.545 -0.111079
+MUSETT_T2_DSSD_Y52_T 908.152 -0.109574
+MUSETT_T2_DSSD_Y53_T 924.357 -0.111393
+MUSETT_T2_DSSD_Y54_T 892.44 -0.107628
+MUSETT_T2_DSSD_Y55_T 928.134 -0.11168
+MUSETT_T2_DSSD_Y56_T 897.82 -0.108297
+MUSETT_T2_DSSD_Y57_T 944.074 -0.11386
+MUSETT_T2_DSSD_Y58_T 894.339 -0.10786
+MUSETT_T2_DSSD_Y59_T 929.497 -0.112068
+MUSETT_T2_DSSD_Y60_T 893.026 -0.107711
+MUSETT_T2_DSSD_Y61_T 925.938 -0.111623
+MUSETT_T2_DSSD_Y62_T 880.638 -0.106206
+MUSETT_T2_DSSD_Y63_T 874.116 -0.105393
+MUSETT_T2_DSSD_Y64_T 933.858 -0.112593
+MUSETT_T2_DSSD_Y65_T 971.01 -0.117343
+MUSETT_T2_DSSD_Y66_T 946.074 -0.114246
+MUSETT_T2_DSSD_Y67_T 940.751 -0.113582
+MUSETT_T2_DSSD_Y68_T 968.878 -0.117092
+MUSETT_T2_DSSD_Y69_T 952.983 -0.115097
+MUSETT_T2_DSSD_Y70_T 977.792 -0.118194
+MUSETT_T2_DSSD_Y71_T 948.889 -0.114574
+MUSETT_T2_DSSD_Y72_T 975.406 -0.117892
+MUSETT_T2_DSSD_Y73_T 957.63 -0.115653
+MUSETT_T2_DSSD_Y74_T 979.2 -0.118324
+MUSETT_T2_DSSD_Y75_T 968.091 -0.11692
+MUSETT_T2_DSSD_Y76_T 966.385 -0.116762
+MUSETT_T2_DSSD_Y77_T 966.176 -0.116695
+MUSETT_T2_DSSD_Y78_T 960.237 -0.115989
+MUSETT_T2_DSSD_Y79_T 971.862 -0.117388
+MUSETT_T2_DSSD_Y80_T 958.107 -0.115747
+MUSETT_T2_DSSD_Y81_T 974.809 -0.117739
+MUSETT_T2_DSSD_Y82_T 966.661 -0.116783
+MUSETT_T2_DSSD_Y83_T 976.466 -0.11797
+MUSETT_T2_DSSD_Y84_T 969.683 -0.117144
+MUSETT_T2_DSSD_Y85_T 981.048 -0.118525
+MUSETT_T2_DSSD_Y86_T 962.11 -0.116242
+MUSETT_T2_DSSD_Y87_T 971.816 -0.117371
+MUSETT_T2_DSSD_Y88_T 974.181 -0.117701
+MUSETT_T2_DSSD_Y89_T 979.537 -0.118331
+MUSETT_T2_DSSD_Y90_T 947.803 -0.114477
+MUSETT_T2_DSSD_Y91_T 979.044 -0.118283
+MUSETT_T2_DSSD_Y92_T 950.053 -0.114763
+MUSETT_T2_DSSD_Y93_T 986.328 -0.119174
+MUSETT_T2_DSSD_Y94_T 945.736 -0.114242
+MUSETT_T2_DSSD_Y95_T 926.3 -0.111864
+MUSETT_T2_DSSD_Y96_T 991.309 -0.119806
+MUSETT_T2_DSSD_Y97_T 914.871 -0.110525
+MUSETT_T2_DSSD_Y98_T 854.155 -0.102981
+MUSETT_T2_DSSD_Y99_T 870.733 -0.104976
+MUSETT_T2_DSSD_Y100_T 924.467 -0.111703
+MUSETT_T2_DSSD_Y101_T 878.476 -0.105936
+MUSETT_T2_DSSD_Y102_T 928.251 -0.11214
+MUSETT_T2_DSSD_Y103_T 876.793 -0.10575
+MUSETT_T2_DSSD_Y104_T 927.531 -0.112066
+MUSETT_T2_DSSD_Y105_T 884.881 -0.106741
+MUSETT_T2_DSSD_Y106_T 924.057 -0.111623
+MUSETT_T2_DSSD_Y107_T 881.171 -0.10628
+MUSETT_T2_DSSD_Y108_T 924.408 -0.111663
+MUSETT_T2_DSSD_Y109_T 893.636 -0.107805
+MUSETT_T2_DSSD_Y110_T 923.243 -0.111507
+MUSETT_T2_DSSD_Y111_T 894.919 -0.107966
+MUSETT_T2_DSSD_Y112_T 927.33 -0.112025
+MUSETT_T2_DSSD_Y113_T 885.067 -0.106759
+MUSETT_T2_DSSD_Y114_T 932.767 -0.112691
+MUSETT_T2_DSSD_Y115_T 898.226 -0.108381
+MUSETT_T2_DSSD_Y116_T 916.909 -0.110746
+MUSETT_T2_DSSD_Y117_T 896.617 -0.108195
+MUSETT_T2_DSSD_Y118_T 926.674 -0.111938
+MUSETT_T2_DSSD_Y119_T 896.617 -0.108195
+MUSETT_T2_DSSD_Y120_T 919.012 -0.110997
+MUSETT_T2_DSSD_Y121_T 899.421 -0.108519
+MUSETT_T2_DSSD_Y122_T 905.068 -0.109308
+MUSETT_T2_DSSD_Y123_T 900.193 -0.10863
+MUSETT_T2_DSSD_Y124_T 906.665 -0.109474
+MUSETT_T2_DSSD_Y125_T 901.229 -0.108768
+MUSETT_T2_DSSD_Y126_T 896.011 -0.108189
+MUSETT_T2_DSSD_Y127_T 899.526 -0.108639
+MUSETT_T2_DSSD_Y128_T 897.311 -0.108297
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..cd7ff8fe4199ae797993f810d8820b5cb2a6c435
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X1_T 900.293 -0.108862
+MUSETT_T3_DSSD_X2_T 898.105 -0.108693
+MUSETT_T3_DSSD_X3_T 904.446 -0.109485
+MUSETT_T3_DSSD_X4_T 891.538 -0.107803
+MUSETT_T3_DSSD_X5_T 912.143 -0.110421
+MUSETT_T3_DSSD_X6_T 905.108 -0.109445
+MUSETT_T3_DSSD_X7_T 905.421 -0.109588
+MUSETT_T3_DSSD_X8_T 903.963 -0.109312
+MUSETT_T3_DSSD_X9_T 911.321 -0.110301
+MUSETT_T3_DSSD_X10_T 897.274 -0.10849
+MUSETT_T3_DSSD_X11_T 919.499 -0.111327
+MUSETT_T3_DSSD_X12_T 897.684 -0.108538
+MUSETT_T3_DSSD_X13_T 921.109 -0.111495
+MUSETT_T3_DSSD_X14_T 902.052 -0.10908
+MUSETT_T3_DSSD_X15_T 929.489 -0.112521
+MUSETT_T3_DSSD_X16_T 896.795 -0.10844
+MUSETT_T3_DSSD_X17_T 937.068 -0.11347
+MUSETT_T3_DSSD_X18_T 899.348 -0.108733
+MUSETT_T3_DSSD_X19_T 930.942 -0.112717
+MUSETT_T3_DSSD_X20_T 896.431 -0.108382
+MUSETT_T3_DSSD_X21_T 927.894 -0.112335
+MUSETT_T3_DSSD_X22_T 884.13 -0.106861
+MUSETT_T3_DSSD_X23_T 932.632 -0.112964
+MUSETT_T3_DSSD_X24_T 888.209 -0.107368
+MUSETT_T3_DSSD_X25_T 935.332 -0.113245
+MUSETT_T3_DSSD_X26_T 888.186 -0.107364
+MUSETT_T3_DSSD_X27_T 929.857 -0.11258
+MUSETT_T3_DSSD_X28_T 878.223 -0.106155
+MUSETT_T3_DSSD_X29_T 937.136 -0.113476
+MUSETT_T3_DSSD_X30_T 865.76 -0.104634
+MUSETT_T3_DSSD_X31_T 866.015 -0.104661
+MUSETT_T3_DSSD_X32_T 935.398 -0.113256
+MUSETT_T3_DSSD_X33_T 996.617 -0.120654
+MUSETT_T3_DSSD_X34_T 938.354 -0.113591
+MUSETT_T3_DSSD_X35_T 952.054 -0.115254
+MUSETT_T3_DSSD_X36_T 1001.37 -0.121233
+MUSETT_T3_DSSD_X37_T 956.534 -0.115822
+MUSETT_T3_DSSD_X38_T 999.766 -0.121035
+MUSETT_T3_DSSD_X39_T 958.488 -0.116042
+MUSETT_T3_DSSD_X40_T 1006.69 -0.121885
+MUSETT_T3_DSSD_X41_T 950.724 -0.115096
+MUSETT_T3_DSSD_X42_T 996.509 -0.120628
+MUSETT_T3_DSSD_X43_T 965.196 -0.11686
+MUSETT_T3_DSSD_X44_T 1000.74 -0.12115
+MUSETT_T3_DSSD_X45_T 969.308 -0.117385
+MUSETT_T3_DSSD_X46_T 987.489 -0.119523
+MUSETT_T3_DSSD_X47_T 974.569 -0.118019
+MUSETT_T3_DSSD_X48_T 986.58 -0.119405
+MUSETT_T3_DSSD_X49_T 972.643 -0.117779
+MUSETT_T3_DSSD_X50_T 988.858 -0.119693
+MUSETT_T3_DSSD_X51_T 970.352 -0.117496
+MUSETT_T3_DSSD_X52_T 984.595 -0.119177
+MUSETT_T3_DSSD_X53_T 972.778 -0.117795
+MUSETT_T3_DSSD_X54_T 992.422 -0.120114
+MUSETT_T3_DSSD_X55_T 984.9 -0.119273
+MUSETT_T3_DSSD_X56_T 985.228 -0.119229
+MUSETT_T3_DSSD_X57_T 974.806 -0.118031
+MUSETT_T3_DSSD_X58_T 978.048 -0.118386
+MUSETT_T3_DSSD_X59_T 981.032 -0.118805
+MUSETT_T3_DSSD_X60_T 982.136 -0.11886
+MUSETT_T3_DSSD_X61_T 978.727 -0.118524
+MUSETT_T3_DSSD_X62_T 963.403 -0.116582
+MUSETT_T3_DSSD_X63_T 967.055 -0.117029
+MUSETT_T3_DSSD_X64_T 983.561 -0.119127
+MUSETT_T3_DSSD_X65_T 894.433 -0.107896
+MUSETT_T3_DSSD_X66_T 862.689 -0.104124
+MUSETT_T3_DSSD_X67_T 867.813 -0.104728
+MUSETT_T3_DSSD_X68_T 885.342 -0.106793
+MUSETT_T3_DSSD_X69_T 867.895 -0.104753
+MUSETT_T3_DSSD_X70_T 898.089 -0.108336
+MUSETT_T3_DSSD_X71_T 873.835 -0.105492
+MUSETT_T3_DSSD_X72_T 891.27 -0.107522
+MUSETT_T3_DSSD_X73_T 883.843 -0.106693
+MUSETT_T3_DSSD_X74_T 897.245 -0.108252
+MUSETT_T3_DSSD_X75_T 879.494 -0.10614
+MUSETT_T3_DSSD_X76_T 887.829 -0.107093
+MUSETT_T3_DSSD_X77_T 883.805 -0.106708
+MUSETT_T3_DSSD_X78_T 892.007 -0.107599
+MUSETT_T3_DSSD_X79_T 882.86 -0.106567
+MUSETT_T3_DSSD_X80_T 888.126 -0.107137
+MUSETT_T3_DSSD_X81_T 891.887 -0.107671
+MUSETT_T3_DSSD_X82_T 884.874 -0.10675
+MUSETT_T3_DSSD_X83_T 896.27 -0.108216
+MUSETT_T3_DSSD_X84_T 887.525 -0.107055
+MUSETT_T3_DSSD_X85_T 888.15 -0.107225
+MUSETT_T3_DSSD_X86_T 880.15 -0.106145
+MUSETT_T3_DSSD_X87_T 899.039 -0.108561
+MUSETT_T3_DSSD_X88_T 788.143 -0.126949
+MUSETT_T3_DSSD_X89_T 899.371 -0.108609
+MUSETT_T3_DSSD_X90_T 876.122 -0.105647
+MUSETT_T3_DSSD_X91_T 896.002 -0.108191
+MUSETT_T3_DSSD_X92_T 869.978 -0.1049
+MUSETT_T3_DSSD_X93_T 905.511 -0.109337
+MUSETT_T3_DSSD_X94_T 869.213 -0.10481
+MUSETT_T3_DSSD_X95_T 859.472 -0.103629
+MUSETT_T3_DSSD_X96_T 900.32 -0.108709
+MUSETT_T3_DSSD_X97_T 979.288 -0.118278
+MUSETT_T3_DSSD_X98_T 985.824 -0.119126
+MUSETT_T3_DSSD_X99_T 991.541 -0.119789
+MUSETT_T3_DSSD_X100_T 984.211 -0.118879
+MUSETT_T3_DSSD_X101_T 991.866 -0.119851
+MUSETT_T3_DSSD_X102_T 986.603 -0.119186
+MUSETT_T3_DSSD_X103_T 1007.5 -0.121753
+MUSETT_T3_DSSD_X104_T 987.195 -0.119241
+MUSETT_T3_DSSD_X105_T 1008.13 -0.121824
+MUSETT_T3_DSSD_X106_T 987.225 -0.119256
+MUSETT_T3_DSSD_X107_T 1004.87 -0.121446
+MUSETT_T3_DSSD_X108_T 979.507 -0.118304
+MUSETT_T3_DSSD_X109_T 1008.48 -0.121893
+MUSETT_T3_DSSD_X110_T 974.374 -0.117687
+MUSETT_T3_DSSD_X111_T 1012.14 -0.122347
+MUSETT_T3_DSSD_X112_T 978.317 -0.118161
+MUSETT_T3_DSSD_X113_T 1008.38 -0.121883
+MUSETT_T3_DSSD_X114_T 967.787 -0.116863
+MUSETT_T3_DSSD_X115_T 1014.86 -0.122684
+MUSETT_T3_DSSD_X116_T 962.99 -0.116299
+MUSETT_T3_DSSD_X117_T 1023.57 -0.123722
+MUSETT_T3_DSSD_X118_T 968.345 -0.11693
+MUSETT_T3_DSSD_X119_T 1033.42 -0.124938
+MUSETT_T3_DSSD_X120_T 965.822 -0.116619
+MUSETT_T3_DSSD_X121_T 1015.34 -0.122709
+MUSETT_T3_DSSD_X122_T 951.022 -0.114804
+MUSETT_T3_DSSD_X123_T 1014.72 -0.12265
+MUSETT_T3_DSSD_X124_T 952.48 -0.114986
+MUSETT_T3_DSSD_X125_T 1026.27 -0.124061
+MUSETT_T3_DSSD_X126_T 949.104 -0.114558
+MUSETT_T3_DSSD_X127_T 942.714 -0.11381
+MUSETT_T3_DSSD_X128_T 1019.9 -0.123313
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a5d1e2b960c0c2e0f6ff362782bcb378748bf1e7
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y1_T 983.985 -0.118941
+MUSETT_T3_DSSD_Y2_T 970.371 -0.117174
+MUSETT_T3_DSSD_Y3_T 984.045 -0.118815
+MUSETT_T3_DSSD_Y4_T 977.123 -0.118075
+MUSETT_T3_DSSD_Y5_T 985.023 -0.118931
+MUSETT_T3_DSSD_Y6_T 985.112 -0.119048
+MUSETT_T3_DSSD_Y7_T 990.894 -0.119638
+MUSETT_T3_DSSD_Y8_T 978.827 -0.118272
+MUSETT_T3_DSSD_Y9_T 996.439 -0.12034
+MUSETT_T3_DSSD_Y10_T 969.011 -0.117093
+MUSETT_T3_DSSD_Y11_T 1006.18 -0.121551
+MUSETT_T3_DSSD_Y12_T 970.24 -0.117251
+MUSETT_T3_DSSD_Y13_T 1001.89 -0.120998
+MUSETT_T3_DSSD_Y14_T 968.513 -0.117006
+MUSETT_T3_DSSD_Y15_T 996.258 -0.120321
+MUSETT_T3_DSSD_Y16_T 964.281 -0.116506
+MUSETT_T3_DSSD_Y17_T 1002.35 -0.121073
+MUSETT_T3_DSSD_Y18_T 956.368 -0.115546
+MUSETT_T3_DSSD_Y19_T 1008.58 -0.121839
+MUSETT_T3_DSSD_Y20_T 956.591 -0.115552
+MUSETT_T3_DSSD_Y21_T 1008.51 -0.121856
+MUSETT_T3_DSSD_Y22_T 951.968 -0.114994
+MUSETT_T3_DSSD_Y23_T 1015.07 -0.122649
+MUSETT_T3_DSSD_Y24_T 944.162 -0.114032
+MUSETT_T3_DSSD_Y25_T 1018.24 -0.12302
+MUSETT_T3_DSSD_Y26_T 947.224 -0.114409
+MUSETT_T3_DSSD_Y27_T 1007.23 -0.121668
+MUSETT_T3_DSSD_Y28_T 937.754 -0.113241
+MUSETT_T3_DSSD_Y29_T 1016.39 -0.122794
+MUSETT_T3_DSSD_Y30_T 928.777 -0.112154
+MUSETT_T3_DSSD_Y31_T 920.954 -0.11121
+MUSETT_T3_DSSD_Y32_T 1017.37 -0.122927
+MUSETT_T3_DSSD_Y33_T 905.69 -0.109382
+MUSETT_T3_DSSD_Y34_T 879.206 -0.105997
+MUSETT_T3_DSSD_Y35_T 885.638 -0.106772
+MUSETT_T3_DSSD_Y36_T 912.926 -0.110263
+MUSETT_T3_DSSD_Y37_T 897.352 -0.108217
+MUSETT_T3_DSSD_Y38_T 909.287 -0.109804
+MUSETT_T3_DSSD_Y39_T 900.017 -0.108527
+MUSETT_T3_DSSD_Y40_T 899.078 -0.108568
+MUSETT_T3_DSSD_Y41_T 894.065 -0.107825
+MUSETT_T3_DSSD_Y42_T 904.332 -0.109195
+MUSETT_T3_DSSD_Y43_T 902.563 -0.108862
+MUSETT_T3_DSSD_Y44_T 907.563 -0.109593
+MUSETT_T3_DSSD_Y45_T 907.447 -0.109456
+MUSETT_T3_DSSD_Y46_T 898.134 -0.10846
+MUSETT_T3_DSSD_Y47_T 913.155 -0.110152
+MUSETT_T3_DSSD_Y48_T 894.272 -0.10799
+MUSETT_T3_DSSD_Y49_T 917.884 -0.110718
+MUSETT_T3_DSSD_Y50_T 897.411 -0.108361
+MUSETT_T3_DSSD_Y51_T 916.39 -0.11056
+MUSETT_T3_DSSD_Y52_T 888.675 -0.107294
+MUSETT_T3_DSSD_Y53_T 925.29 -0.111636
+MUSETT_T3_DSSD_Y54_T 883.52 -0.106654
+MUSETT_T3_DSSD_Y55_T 911.348 -0.109934
+MUSETT_T3_DSSD_Y56_T 884.229 -0.106744
+MUSETT_T3_DSSD_Y57_T 924.685 -0.111581
+MUSETT_T3_DSSD_Y58_T 872.76 -0.105345
+MUSETT_T3_DSSD_Y59_T 925.584 -0.111694
+MUSETT_T3_DSSD_Y60_T 875.902 -0.10573
+MUSETT_T3_DSSD_Y61_T 920.738 -0.1111
+MUSETT_T3_DSSD_Y62_T 870.737 -0.105092
+MUSETT_T3_DSSD_Y63_T 873.601 -0.105446
+MUSETT_T3_DSSD_Y64_T 923.494 -0.11144
+MUSETT_T3_DSSD_Y65_T 951.047 -0.114947
+MUSETT_T3_DSSD_Y66_T 970.943 -0.117288
+MUSETT_T3_DSSD_Y67_T 982.69 -0.118727
+MUSETT_T3_DSSD_Y68_T 945.988 -0.114343
+MUSETT_T3_DSSD_Y69_T 988.906 -0.119474
+MUSETT_T3_DSSD_Y70_T 953.345 -0.115232
+MUSETT_T3_DSSD_Y71_T 992.522 -0.119909
+MUSETT_T3_DSSD_Y72_T 964.745 -0.116618
+MUSETT_T3_DSSD_Y73_T 994.13 -0.120116
+MUSETT_T3_DSSD_Y74_T 952.282 -0.115086
+MUSETT_T3_DSSD_Y75_T 1001.12 -0.120975
+MUSETT_T3_DSSD_Y76_T 955.625 -0.115517
+MUSETT_T3_DSSD_Y77_T 998.108 -0.120606
+MUSETT_T3_DSSD_Y78_T 939.764 -0.11354
+MUSETT_T3_DSSD_Y79_T 999.312 -0.12076
+MUSETT_T3_DSSD_Y80_T 947.183 -0.114462
+MUSETT_T3_DSSD_Y81_T 1004.15 -0.121336
+MUSETT_T3_DSSD_Y82_T 931.288 -0.112491
+MUSETT_T3_DSSD_Y83_T 1015.36 -0.122713
+MUSETT_T3_DSSD_Y84_T 932.714 -0.112672
+MUSETT_T3_DSSD_Y85_T 1018.49 -0.1231
+MUSETT_T3_DSSD_Y86_T 939.668 -0.113544
+MUSETT_T3_DSSD_Y87_T 1006.74 -0.121678
+MUSETT_T3_DSSD_Y88_T 931.355 -0.11252
+MUSETT_T3_DSSD_Y89_T 1015.03 -0.122697
+MUSETT_T3_DSSD_Y90_T 920.222 -0.11114
+MUSETT_T3_DSSD_Y91_T 1018.29 -0.123087
+MUSETT_T3_DSSD_Y92_T 911.599 -0.110106
+MUSETT_T3_DSSD_Y93_T 1010.39 -0.122144
+MUSETT_T3_DSSD_Y94_T 911.098 -0.110026
+MUSETT_T3_DSSD_Y95_T 904.406 -0.109216
+MUSETT_T3_DSSD_Y96_T 1011.64 -0.122274
+MUSETT_T3_DSSD_Y97_T 905.657 -0.109416
+MUSETT_T3_DSSD_Y98_T 891.482 -0.107554
+MUSETT_T3_DSSD_Y99_T 898.972 -0.108473
+MUSETT_T3_DSSD_Y100_T 899.215 -0.108625
+MUSETT_T3_DSSD_Y101_T 902.164 -0.108848
+MUSETT_T3_DSSD_Y102_T 903.69 -0.109168
+MUSETT_T3_DSSD_Y103_T 897.423 -0.108292
+MUSETT_T3_DSSD_Y104_T 905.571 -0.109439
+MUSETT_T3_DSSD_Y105_T 905.477 -0.109288
+MUSETT_T3_DSSD_Y106_T 903.343 -0.109125
+MUSETT_T3_DSSD_Y107_T 910.936 -0.109943
+MUSETT_T3_DSSD_Y108_T 894.177 -0.108006
+MUSETT_T3_DSSD_Y109_T 909.486 -0.109765
+MUSETT_T3_DSSD_Y110_T 894.856 -0.108068
+MUSETT_T3_DSSD_Y111_T 908.693 -0.109672
+MUSETT_T3_DSSD_Y112_T 902.34 -0.108999
+MUSETT_T3_DSSD_Y113_T 915.535 -0.110512
+MUSETT_T3_DSSD_Y114_T 895.161 -0.108126
+MUSETT_T3_DSSD_Y115_T 924.289 -0.111588
+MUSETT_T3_DSSD_Y116_T 903.16 -0.109085
+MUSETT_T3_DSSD_Y117_T 926.875 -0.111915
+MUSETT_T3_DSSD_Y118_T 892.165 -0.107742
+MUSETT_T3_DSSD_Y119_T 909.469 -0.109772
+MUSETT_T3_DSSD_Y120_T 892.528 -0.107789
+MUSETT_T3_DSSD_Y121_T 913.618 -0.11029
+MUSETT_T3_DSSD_Y122_T 885.298 -0.106904
+MUSETT_T3_DSSD_Y123_T 919.137 -0.110947
+MUSETT_T3_DSSD_Y124_T 876.164 -0.105791
+MUSETT_T3_DSSD_Y125_T 920.413 -0.111116
+MUSETT_T3_DSSD_Y126_T 871.593 -0.105224
+MUSETT_T3_DSSD_Y127_T 874.337 -0.105573
+MUSETT_T3_DSSD_Y128_T 928.523 -0.112131
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..123aa411a7c823ee9d78218b42045d68ce15cf07
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/cal_to_NPTOOL.py
@@ -0,0 +1,140 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 0
+Tcal = 1
+clean = 1
+if Ecal :
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]+1
+            else :
+                strip = MapY[int(ch)-1]+1
+
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]+1
+            else :
+                strip = MapY[int(ch)-1]+1
+
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/calibE0.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/calibE0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..5f77c3d04858dd864b1411813497cfbbcbbac345
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/calibE0.cal1
@@ -0,0 +1,1024 @@
+-61662.3 7.52711 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61862.3 7.5515 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61786 7.54225 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61488.6 7.50587 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61896.8 7.55579 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61641.5 7.52453 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61399.4 7.49501 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61236.4 7.47509 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-60986.5 7.4446 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62681.3 7.65148 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62393.5 7.61631 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61925.3 7.55919 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62029.9 7.57195 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62417.6 7.61932 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61275.3 7.47982 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63058.3 7.69749 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62722.2 7.65646 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62134.9 7.58477 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62458.1 7.62423 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63902.7 7.80057 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62519.9 7.63181 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62297.5 7.60463 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62659.6 7.64878 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62852.3 7.67238 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62985.4 7.68854 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63073.7 7.69941 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62632 7.64548 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-63013.4 7.69203 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62579 7.63901 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63401.5 7.7394 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62630 7.64523 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56399 6.88462 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56789.2 6.93221 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55564.2 6.78269 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56333.4 6.87654 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-56040.6 6.84084 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+-10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55909.7 6.82487 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55658.4 6.79421 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56211.8 6.86172 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55874 6.82053 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56164.8 6.85597 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56307.5 6.87343 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56382 6.88247 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+-10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+-10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55911.5 6.82508 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57927.5 7.07116 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57924.8 7.07081 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57746 7.049 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57343.1 6.99988 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58172.2 7.10106 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57237.7 6.98697 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57876.3 7.06488 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57523.5 7.02188 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58500.7 7.14114 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57786.5 7.05393 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57300.4 6.99465 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57790.9 7.05448 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57203.4 6.9828 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57985 7.0782 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57888.7 7.06644 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58127.1 7.09555 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63452.4 7.74561 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63612.1 7.76511 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63338.7 7.73174 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64021.8 7.81515 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63197.4 7.71456 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63968.4 7.80864 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63853.8 7.79469 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63356.4 7.73397 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64117.7 7.82683 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63242.6 7.72007 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63972.5 7.80918 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63941.4 7.8053 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63651.8 7.77009 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63754.3 7.78255 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64292.8 7.84837 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64690.6 7.89693 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61215.8 7.47271 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60865.1 7.42995 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61147.3 7.46434 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61469.6 7.50369 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61379.1 7.49269 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61888.7 7.55484 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61403.2 7.49554 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62166.5 7.58877 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61896.4 7.55578 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61572.1 7.51618 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61720.5 7.53424 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62796.5 7.66557 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61868.1 7.55224 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60999.1 7.44621 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61368.2 7.49129 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62166.8 7.58877 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57169.7 6.97872 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57564 7.02681 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57724.2 7.04642 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57113.1 6.97176 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58126.5 7.0955 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57746.5 7.04909 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57665.4 7.03921 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57244.7 6.98784 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57357.8 7.00171 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57943.6 7.0732 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57279.1 6.99197 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57628.2 7.03471 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58567.7 7.1494 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58013.5 7.08178 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57681.5 7.04111 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57795.4 7.05508 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59002.3 7.20244 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59192.2 7.22562 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58512.8 7.14267 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58671.3 7.16207 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58171.6 7.10101 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58350.5 7.12281 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.4 7.11445 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58508.2 7.1421 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58511.7 7.14253 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58653.9 7.15989 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58550.4 7.14724 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59318.4 7.24097 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57853 7.06214 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58498.4 7.14087 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58426.4 7.13213 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59512.6 7.26467 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60443.5 -7.37839 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60908.5 -7.43514 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61060.2 -7.45367 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59984.4 -7.32237 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60129.5 -7.3401 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60783.1 -7.41989 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60431 -7.37691 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60140.7 -7.34142 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59998.4 -7.32403 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60395.7 -7.37254 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60028.3 -7.32774 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60887.8 -7.43267 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61066.5 -7.45441 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61164 -7.46632 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60739.8 -7.41458 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60443.5 -7.37838 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60544.4 -7.39071 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60303 -7.3612 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60143.3 -7.34174 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60328.6 -7.3644 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60395.9 -7.37256 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60276 -7.35798 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59684.2 -7.28572 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60187.9 -7.34719 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.4 -7.29698 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60128.6 -7.33997 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60450.5 -7.37922 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59890.5 -7.31089 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59647.3 -7.2812 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59834.9 -7.30412 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60999.1 -7.44624 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56552.5 -6.90341 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57074.5 -6.96718 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56536.5 -6.9015 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57036.3 -6.96248 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57405.1 -7.0075 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57259.2 -6.98972 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56419.6 -6.88718 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56461.1 -6.89226 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56951.6 -6.95213 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56800 -6.93367 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56600.5 -6.90927 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56511.5 -6.8984 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56870.5 -6.94221 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56993.6 -6.95727 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57679.7 -7.04103 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56560.6 -6.90438 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57546.6 -7.02477 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57035.8 -6.96245 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56800.6 -6.93377 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56505.8 -6.89773 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57161.4 -6.97779 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56855 -6.94036 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56619.7 -6.91168 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57621.8 -7.03399 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57359.7 -7.00197 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56825.9 -6.93676 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57031.5 -6.96191 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57239.3 -6.98735 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57254.8 -6.98918 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57074.4 -6.96716 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57574.5 -7.02822 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57912.4 -7.06943 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+61002.8 -7.44668 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61155.3 -7.4653 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61053.3 -7.45282 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61373.4 -7.4919 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60489.7 -7.38403 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61580.3 -7.51716 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60895.6 -7.4336 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60400.3 -7.3731 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61676.2 -7.52889 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61107.3 -7.45944 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61113.2 -7.46014 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61230.4 -7.47441 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60593.4 -7.39669 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61412.2 -7.49666 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61676.7 -7.52894 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61114.5 -7.46029 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62335.5 -7.60932 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61110.8 -7.45984 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61589.5 -7.51825 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62064.5 -7.57624 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61004.9 -7.44692 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60900.3 -7.43416 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61810.8 -7.54524 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61439.5 -7.49992 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61153 -7.46501 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61309.9 -7.48418 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61160.3 -7.46589 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61470.5 -7.50377 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61862.5 -7.55157 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61676 -7.52886 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62387.3 -7.61565 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60904.4 -7.43464 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56381.2 -6.88248 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56647.7 -6.91501 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56593.9 -6.90848 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56466.6 -6.8929 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56205.1 -6.86097 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56339.2 -6.87735 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56071.1 -6.84463 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56586.9 -6.90762 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56922.8 -6.94858 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56073.7 -6.84493 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57080.7 -6.96791 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57414.3 -7.00859 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56582.5 -6.9071 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56583.6 -6.90725 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56679.2 -6.91888 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56421.5 -6.8874 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56904.4 -6.94638 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57127.8 -6.97364 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56965.6 -6.9538 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56822.1 -6.93632 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57302 -6.99491 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.2 -6.90362 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56421.8 -6.88745 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56645.4 -6.91475 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57398.8 -7.00675 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57237.3 -6.98696 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56689 -6.92007 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56011.6 -6.83742 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56467.7 -6.89303 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55922.3 -6.8265 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56957.2 -6.95281 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56586.5 -6.90758 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62384.5 7.61517 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62210.4 7.59389 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62273.5 7.60161 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62019.1 7.5706 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61476.5 7.50432 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61597 7.51908 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62319.3 7.60717 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61416.3 7.49697 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61327.1 7.48611 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61486.5 7.50558 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61673.4 7.52832 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61732.6 7.53556 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61963.2 7.56376 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61418.2 7.49719 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61209 7.47165 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61987.6 7.56667 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62554.4 7.63592 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61756 7.53848 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62264.1 7.60048 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61953.7 7.56258 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62913.2 7.67967 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62120.9 7.583 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62709 7.65477 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62390 7.61587 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62229.7 7.59629 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61997.7 7.56794 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-62036.5 7.57262 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61752 7.53798 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61655.6 7.52623 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62767.5 7.66194 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61803 7.54422 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62761.8 7.66122 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58303.5 7.11703 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58372.5 7.12549 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58359.9 7.12397 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58262.2 7.11204 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58041 7.08509 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58261 7.11167 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58055.7 7.0867 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58647.4 7.15904 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58203.9 7.10488 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58893.9 7.18895 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58051.5 7.08632 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58539.4 7.14586 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58554.4 7.14758 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59335.9 7.24309 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58725.8 7.16875 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58465.7 7.13677 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.8 7.06394 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58529.8 7.14462 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-57972.8 7.07665 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57725.1 7.04637 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57946.6 7.07339 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57919.5 7.07013 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57971 7.07643 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57812.9 7.05708 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58059.5 7.08722 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57860.9 7.06295 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58481.2 7.13869 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57673.5 7.04005 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57733.9 7.04747 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58243 7.10961 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.2 7.09391 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58246.7 7.11007 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61009.3 7.44733 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61630.7 7.52317 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61471.8 7.50372 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61716.9 7.53361 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61893.5 7.55524 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.6 7.48633 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61623.4 7.52221 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61911.8 7.55752 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61279.1 7.48026 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62438.1 7.62175 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61937.8 7.56062 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62078.7 7.57786 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61496.4 7.50682 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61721.2 7.53417 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61321.1 7.48534 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61930.9 7.55971 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63425.9 7.7423 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63726 7.77898 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.8 7.83822 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63931 7.80396 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64114.7 7.8264 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63881.4 7.7979 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64089.1 7.82321 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64226 7.83998 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64162.8 7.83225 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64227.3 7.84014 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63324.3 7.72992 0.00 !Mu1ChX91ERaw[C.o2At2Ch11]
+-63377.9 7.73646 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64592.4 7.88475 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64051.2 7.81864 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63785.3 7.78625 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63425.1 7.74221 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56277.1 6.86963 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56696.4 6.92087 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56524.2 6.89973 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56421.9 6.88734 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56516.9 6.89896 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-56987.1 6.95627 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57341.9 6.99957 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56590.4 6.90785 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56842.5 6.93859 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57029.9 6.96151 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57840.1 7.06034 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57754.1 7.04987 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57718.4 7.04556 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57495 7.01832 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57673.7 7.0401 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-58035.2 7.08421 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57254.3 6.98888 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57309.6 6.99565 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56813.7 6.93513 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57684.3 7.04141 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57273.6 6.99128 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57263.3 6.99002 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56331.2 6.87626 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58331 7.12035 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57448.3 7.0126 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57763.7 7.05109 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57724.2 7.04628 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57458.3 7.01385 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57586.5 7.02947 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57671.5 7.03982 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57076.6 6.9672 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57818.9 7.05784 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59628.2 -7.27891 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60484.2 -7.3834 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59719.3 -7.29006 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59358 -7.24601 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60209.4 -7.34991 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60023.9 -7.32724 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59427.4 -7.25442 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59479.8 -7.26081 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.6 -7.25995 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59661.5 -7.28303 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59523 -7.2661 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59520.7 -7.26582 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60207.7 -7.3497 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59281.6 -7.23662 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59499.5 -7.26329 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59822.2 -7.30262 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62231 -7.59672 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62517.6 -7.63166 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62462.5 -7.62493 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62047 -7.57417 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62207.3 -7.59375 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62362.9 -7.61277 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62017.5 -7.57064 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61713.9 -7.53355 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61449.1 -7.50123 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62086.1 -7.57898 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62077.7 -7.57796 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62287.6 -7.60362 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62027.9 -7.5719 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61668.6 -7.52799 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61804.8 -7.54468 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115.7 -6.85022 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56255.7 -6.86728 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55634.9 -6.79153 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55640.9 -6.79227 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55384.3 -6.76092 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56420.4 -6.88745 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55380.9 -6.76051 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55934.8 -6.82817 0.00 !Mu1ChY40ERaw[C.o3At3Ch8]
+56036.5 -6.84053 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56149.2 -6.85434 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55509.9 -6.77625 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56637.3 -6.9139 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55637.9 -6.79188 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55730.3 -6.80315 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55751.6 -6.80582 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55760.9 -6.80693 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.7 -6.9819 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56616.7 -6.91132 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56565.1 -6.90504 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56007.5 -6.83694 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56838.9 -6.93846 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56277 -6.86982 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56475.8 -6.89415 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56394.9 -6.88425 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57286.1 -6.99307 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57107.7 -6.97128 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56704.7 -6.92209 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57329.2 -6.99832 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57398.8 -7.00677 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57025.8 -6.96125 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56179.4 -6.85794 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57294.5 -6.99407 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61036 -7.45079 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61615.2 -7.52147 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61327.7 -7.48646 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61616.9 -7.52169 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61289.5 -7.48175 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60072.3 -7.33313 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60461.8 -7.38072 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61147.5 -7.46439 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60324.6 -7.36394 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61243.3 -7.47609 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60892.2 -7.43321 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60362.6 -7.36861 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60563.4 -7.39312 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60969.5 -7.44272 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60632 -7.40146 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61354.5 -7.48966 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61129 -7.46218 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61142.4 -7.46376 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61098.2 -7.45836 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60505 -7.38602 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60475.6 -7.38236 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61198.3 -7.47058 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60653.8 -7.40421 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60610.3 -7.39887 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61084.6 -7.45673 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61281.6 -7.48082 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60759.5 -7.41709 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60908.7 -7.43532 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60520.1 -7.38782 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61330.5 -7.48678 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61609.9 -7.52084 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60752.2 -7.41622 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55866.2 -6.81972 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55510.1 -6.77629 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55739.1 -6.80422 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55602.7 -6.78757 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55779.5 -6.80916 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55452.6 -6.76931 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55433.8 -6.76695 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56175.8 -6.85753 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55295 -6.75003 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55267.6 -6.74664 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55913.4 -6.82548 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55219 -6.74076 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55914.7 -6.82563 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56088.3 -6.84683 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56128.7 -6.85177 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.7 -6.9068 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54791.9 -6.68861 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55573.5 -6.78397 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55177.3 -6.73564 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.9 -6.722 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55271.1 -6.74706 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55426.4 -6.76607 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55308.9 -6.7517 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55560.5 -6.78242 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55828.4 -6.8151 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55461.9 -6.77042 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.4 -6.69404 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55154.2 -6.73277 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55218.5 -6.74067 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55198.9 -6.73821 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55347.2 -6.75638 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56270.5 -6.86904 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62771.8 7.66248 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62536.2 7.63367 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62923.2 7.68092 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62099.2 7.5803 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62071.6 7.577 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62762.5 7.66131 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62536.6 7.63372 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62863.4 7.6736 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62977.6 7.68755 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62169.2 7.58889 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62486.2 7.62758 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62494 7.62855 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62591.4 7.6404 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62596.5 7.64104 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62693.3 7.65283 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63431.9 7.74304 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62275.5 7.60186 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61847 7.54956 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61648.9 7.52542 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61472.2 7.5038 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61487.7 7.50573 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62323.6 7.60772 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62160.6 7.58783 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61801.5 7.54404 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61589.4 7.51813 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61837.9 7.54843 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61997.2 7.56788 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61886.9 7.55441 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61669.6 7.52787 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61317.6 7.48493 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62385.4 7.6153 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61544.8 7.51271 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59005.1 7.20263 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58125.4 7.0952 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58621 7.15577 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58420.8 7.13128 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58182.1 7.10215 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58179.5 7.10183 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58382.7 7.12665 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57951.6 7.074 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57619.4 7.03346 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58602.8 7.15349 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58763.6 7.17317 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58295.3 7.11601 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58611.5 7.15458 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58569.5 7.14945 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58368.6 7.12489 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58524.7 7.144 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57829.7 7.05919 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57177.7 6.97958 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58151 7.0984 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57925 7.07083 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57600.2 7.03119 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57219.8 6.9847 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57855.4 7.06228 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57682.2 7.04116 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57912.6 7.06929 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57598.9 7.03102 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57919.6 7.07016 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.5 6.9577 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57498.2 7.01871 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56729.1 6.92483 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57500.6 7.01901 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57910.6 7.06904 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63311 7.72824 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64991.8 7.93347 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-63994.5 7.8117 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63750.3 7.78186 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64408.5 7.86228 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63629 7.76702 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63438.8 7.74388 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63358.3 7.73399 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63144.6 7.70793 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63812.1 7.7894 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63662.4 7.77117 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63876.9 7.79733 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63771.1 7.78444 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63652.1 7.7699 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63600.3 7.76358 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63256.4 7.72158 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63333.7 7.73107 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63150 7.70859 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63204.5 7.71524 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63982.1 7.81015 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63771.3 7.78446 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63682.7 7.7737 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63921.1 7.80269 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63090.3 7.7013 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63548.7 7.75733 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63345.7 7.73257 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63537.7 7.75593 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63267.1 7.72292 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64614.3 7.88733 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63737 7.78019 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63627.5 7.76682 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59011.6 7.20345 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58536.3 7.14543 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58294.5 7.11592 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58764.5 7.17328 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59388.2 7.24938 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59353.9 7.24523 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58868.9 7.18606 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59020.4 7.20454 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59051.2 7.20827 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59067.7 7.21031 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58780.6 7.17527 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59011.8 7.20348 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58685.6 7.16369 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60313.6 7.36243 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58947.7 7.1956 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58640.6 7.15819 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59256.4 7.23333 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59391.4 7.24979 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59741.5 7.29254 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59153 7.2207 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59659.3 7.28255 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60043.5 7.32941 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59492.9 7.26218 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59355.9 7.2455 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60079 7.3337 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58759.7 7.17268 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59106.3 7.21501 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59356.4 7.24556 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58905.4 7.19045 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58909 7.19091 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59139.8 7.21905 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59244.4 7.23184 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63180.3 -7.71254 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63958.5 -7.80757 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62563.9 -7.63734 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63393.8 -7.73864 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62965.3 -7.6863 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62695.2 -7.65332 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63071 -7.6992 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62684.7 -7.65205 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62805.2 -7.66674 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63405.9 -7.74008 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+63006 -7.69129 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62613.8 -7.64344 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62135.8 -7.58506 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62797.8 -7.66584 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+63003.9 -7.69104 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63451.5 -7.74566 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61680.4 -7.52939 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60963.7 -7.44202 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60731.3 -7.4136 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62044.4 -7.57386 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.9 -7.46121 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60932 -7.4381 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62091.8 -7.57965 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61042.5 -7.45157 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61080.2 -7.45622 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61569 -7.51583 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61088.9 -7.45724 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61401.8 -7.49545 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61590.8 -7.51854 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61456.7 -7.50214 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61348.2 -7.48891 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61814.6 -7.54586 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56310.4 -6.87387 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56475.6 -6.89413 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56843.7 -6.93897 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56709.9 -6.9227 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+57006.5 -6.95894 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56922.7 -6.94871 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56395.9 -6.88437 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56437.5 -6.88946 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56168.1 -6.85657 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58137.4 -7.09691 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56752.1 -6.92786 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56268.3 -6.86879 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57248.3 -6.98843 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57237.7 -6.98715 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57062.5 -6.96574 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56700.2 -6.92152 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57609.4 -7.03252 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57045.1 -6.96368 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57893.4 -7.06716 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57432.1 -7.01085 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57327.3 -6.9981 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58593.6 -7.15267 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57713.2 -7.04516 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57801 -7.05589 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57750.1 -7.0497 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57564.6 -7.02705 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57513.2 -7.02079 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58298.6 -7.11669 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57883.6 -7.066 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57333.9 -6.99889 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57877.7 -7.06529 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58222.3 -7.10732 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59352.4 -7.24534 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59653 -7.28202 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59466.7 -7.25926 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60421 -7.37573 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59563.3 -7.27104 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59865.2 -7.30789 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59568.1 -7.27161 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59903.1 -7.31254 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59874.2 -7.30895 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59565.9 -7.27135 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59951.4 -7.31844 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60102.6 -7.33689 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59329 -7.24242 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59973.3 -7.32106 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59369.2 -7.24734 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60205.5 -7.34945 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60559.1 -7.39262 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61223.9 -7.47379 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60555.5 -7.39217 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61267.8 -7.47916 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61183.2 -7.46879 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60877.4 -7.43143 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60964.7 -7.44213 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61316.7 -7.48517 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60889.6 -7.43289 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60834.9 -7.42623 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61475.4 -7.50452 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60713.8 -7.41149 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61139.9 -7.46349 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60586.2 -7.39585 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61091.2 -7.45753 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61463 -7.50289 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56883.7 -6.94393 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55958.3 -6.83096 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56259.7 -6.86775 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56620.9 -6.91184 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56390.1 -6.88368 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56741.9 -6.92663 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55881.7 -6.82158 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57242.5 -6.98773 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56047.6 -6.84185 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56706.4 -6.92227 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56618.3 -6.91153 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57516.3 -7.02116 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57052.7 -6.96458 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56701.3 -6.92167 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57023.2 -6.96095 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56155.3 -6.85506 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56480.1 -6.89468 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57291 -6.99365 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56601.1 -6.90948 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56864.7 -6.94167 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56504.8 -6.89772 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56531 -6.90085 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56803.1 -6.93407 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56744.6 -6.92696 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56339.6 -6.87753 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57094.7 -6.96973 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57471.8 -7.01574 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56243.7 -6.86585 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56920.2 -6.94841 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56357.9 -6.87972 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56171.4 -6.85698 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62432 7.62115 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61898.1 7.55599 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62261.8 7.60035 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62377.7 7.61452 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61987.1 7.56678 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61925.3 7.55922 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62100.7 7.58066 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61621.8 7.5222 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61764.3 7.53956 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61918.3 7.55834 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61881.5 7.55388 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62903 7.67858 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61674.1 7.52859 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61812.4 7.54541 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61555.6 7.51408 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62627.4 7.64492 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63656.5 7.77047 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63108 7.70354 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62943.4 7.68346 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62837.7 7.67058 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62676.4 7.65089 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.8 7.70503 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63798 7.78783 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63791 7.78695 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62795 7.6654 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63502.6 7.75172 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63532.1 7.75542 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63309.9 7.72829 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63637.8 7.76831 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63587.2 7.76214 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64531.7 7.87739 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63742.8 7.78111 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59430.3 7.25494 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59220.2 7.22924 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58174.6 7.10163 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58373.6 7.12581 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58848.1 7.18369 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-59012.9 7.20387 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59307.2 7.23977 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58677.9 7.16294 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59283.1 7.23677 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58956.4 7.1969 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-59043.5 7.20751 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59047.9 7.20805 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59414.1 7.25268 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58832.8 7.18171 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59184.6 7.22469 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57410.4 7.00817 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57223.7 6.98537 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56941.7 6.95094 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57306.3 6.99545 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56939.2 6.95063 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57390.5 7.00573 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56638.3 6.91393 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57358.5 7.00183 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57684.4 7.04165 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56591.3 6.9082 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57508 7.02016 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57136.1 6.97475 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56380.4 6.88251 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56917.4 6.9481 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56824.5 6.93679 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56577 6.90664 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64140 7.82956 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63839.3 7.79281 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63564.4 7.75927 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63770.4 7.78438 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63671.6 7.77235 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63272.3 7.72359 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64307 7.84993 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62530.8 7.63314 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62672.9 7.65044 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63019 7.69272 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63152.8 7.70897 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63441 7.74419 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64109.3 7.82574 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62453.5 7.62365 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62622.2 7.64425 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63017.2 7.69251 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62453.4 7.62363 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62780.3 7.66354 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62670.1 7.65009 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62554.7 7.63598 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62062.4 7.57587 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62422.6 7.61994 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62402.7 7.61746 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.8 7.58526 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62351.6 7.61123 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62791 7.66488 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62302.7 7.60527 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62078.1 7.57785 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62829.3 7.66952 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.5 7.6367 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62144 7.5859 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62353.9 7.61152 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56131.1 6.85191 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55920.2 6.82616 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55178.7 6.73562 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55783.6 6.8095 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55958 6.83076 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55940.2 6.82857 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55976 6.83293 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55255.5 6.74498 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55479.7 6.77237 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-56040.3 6.84079 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55791.2 6.81044 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55701.6 6.79948 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56738.3 6.92598 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56293.9 6.87171 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55819.1 6.81378 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55694.2 6.79856 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57554.1 7.02556 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56976.8 6.95514 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57518.4 7.02123 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56980.7 6.95562 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58026.2 7.08323 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57191.1 6.98127 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57432 7.01071 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56290.9 6.87137 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56748.2 6.92722 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57901.7 7.06808 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57512.9 7.02056 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57112.4 6.9717 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57653.3 7.03769 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56762.7 6.92904 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57841.9 7.06073 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56524.8 6.89995 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60194.7 -7.34802 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987.9 -7.20075 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60132.2 -7.34041 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59977.5 -7.32152 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59787.4 -7.2983 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59893.4 -7.31122 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59798.6 -7.29963 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60251.3 -7.3549 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60589.5 -7.39622 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60436.6 -7.37756 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60189.7 -7.3474 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59826.4 -7.3031 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59687.2 -7.28606 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59622.1 -7.27818 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60574.8 -7.39447 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59719.2 -7.29002 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62963.1 -7.68601 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63186.9 -7.71331 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62262.3 -7.60044 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62806 -7.6668 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63246.8 -7.72062 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63550.3 -7.75759 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+63016.8 -7.69256 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62986.6 -7.68882 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63522.2 -7.75424 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63478.7 -7.7489 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62643.1 -7.64692 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63429.9 -7.74292 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62483.7 -7.62745 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62960.7 -7.68572 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63085.3 -7.7009 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62969.4 -7.68675 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84715 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56228.6 -6.86391 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55834.6 -6.81583 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55713 -6.80096 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55757 -6.80633 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56228 -6.86384 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55925.9 -6.82695 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55539.7 -6.77979 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55412.1 -6.76422 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185 -6.85859 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55981.8 -6.83375 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55370.8 -6.75918 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55748.9 -6.80537 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55612.3 -6.78871 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55926.3 -6.82699 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55801.2 -6.81172 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56670.8 -6.9179 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56949.5 -6.9519 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57147.1 -6.97597 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56960.4 -6.95318 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56493.9 -6.89629 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56963.2 -6.95364 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56581.6 -6.90701 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57050.7 -6.96421 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57076.9 -6.96747 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56623.8 -6.91216 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57493.2 -7.01827 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57089.4 -6.96896 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57586.3 -7.02963 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57044.7 -6.96349 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56777.7 -6.93089 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57421.6 -7.00961 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59437.6 -7.25562 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59994 -7.32351 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59523.9 -7.2662 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59337.1 -7.24336 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59498.6 -7.26303 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58818.6 -7.18002 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59332.2 -7.24276 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+60018.7 -7.32659 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60180.5 -7.3463 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59480.7 -7.26089 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59527.7 -7.26664 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59635.1 -7.27972 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59581.2 -7.27315 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59444.7 -7.25647 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59048.4 -7.20811 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59989.5 -7.32298 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62855.4 -7.67285 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62750.4 -7.66003 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62532.7 -7.63346 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62151.3 -7.58691 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.6 -7.57075 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62710.2 -7.65509 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62271.6 -7.60155 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62960 -7.68565 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62677.8 -7.65121 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62626.1 -7.64489 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61878.3 -7.55359 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61999.2 -7.56832 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61924.7 -7.55927 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+61995.6 -7.56788 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61960.5 -7.56357 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61833.6 -7.54812 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56731.4 -6.92523 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56909.9 -6.94702 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56318.3 -6.87484 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55946.5 -6.8294 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56299.8 -6.87252 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56328.7 -6.87609 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55986.5 -6.8343 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55996.3 -6.83546 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55858.1 -6.81861 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56336.4 -6.877 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56504.4 -6.89753 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56280.4 -6.87019 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55801.7 -6.81176 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55903.8 -6.82419 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56672.2 -6.91805 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56668.9 -6.91765 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57102.2 -6.97047 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57033.7 -6.96222 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57102 -6.97059 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+57015.2 -6.95994 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57666.6 -7.03944 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57327.3 -6.99806 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56838.8 -6.9384 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57642.3 -7.0364 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57472.4 -7.01575 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57009.2 -6.95917 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57427.6 -7.01028 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57105.1 -6.97094 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57606 -7.03198 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56852.7 -6.94013 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57287.8 -6.99311 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57526.7 -7.02236 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/calibT0.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/calibT0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..09f74dedd1b793c1b5dd151ef57e7311b3f4476e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Calibration/double_alpha_Ra220/calibT0.cal1
@@ -0,0 +1,1023 @@
+943.498 -0.114176 0.00 !Mu0ChX1TRaw[Co1At1Ch1]
+954.542 -0.115529 0.00 !Mu0ChX2TRaw[Co1At1Ch2]
+955.481 -0.115657 0.00 !Mu0ChX3TRaw[Co1At1Ch3]
+969.726 -0.117409 0.00 !Mu0ChX4TRaw[Co1At1Ch4]
+969.528 -0.117367 0.00 !Mu0ChX5TRaw[Co1At1Ch5]
+969.351 -0.117353 0.00 !Mu0ChX6TRaw[Co1At1Ch6]
+974.621 -0.117969 0.00 !Mu0ChX7TRaw[Co1At1Ch7]
+976.758 -0.118246 0.00 !Mu0ChX8TRaw[Co1At1Ch8]
+975.237 -0.118065 0.00 !Mu0ChX9TRaw[Co1At1Ch9]
+979.286 -0.118546 0.00 !Mu0ChX10TRaw[Co1At1Ch10]
+984.065 -0.119138 0.00 !Mu0ChX11TRaw[Co1At1Ch11]
+983.533 -0.119075 0.00 !Mu0ChX12TRaw[Co1At1Ch12]
+991.106 -0.119996 0.00 !Mu0ChX13TRaw[Co1At1Ch13]
+976.115 -0.118174 0.00 !Mu0ChX14TRaw[Co1At1Ch14]
+987.246 -0.119531 0.00 !Mu0ChX15TRaw[Co1At1Ch15]
+978.41 -0.118448 0.00 !Mu0ChX16TRaw[Co1At1Ch16]
+952.87 -0.115275 0.00 !Mu0ChX17TRaw[Co1At2Ch1]
+963.333 -0.116527 0.00 !Mu0ChX18TRaw[Co1At2Ch2]
+975.677 -0.118044 0.00 !Mu0ChX19TRaw[Co1At2Ch3]
+976.043 -0.118125 0.00 !Mu0ChX20TRaw[Co1At2Ch4]
+985.306 -0.119233 0.00 !Mu0ChX21TRaw[Co1At2Ch5]
+979.666 -0.118555 0.00 !Mu0ChX22TRaw[Co1At2Ch6]
+990.352 -0.119845 0.00 !Mu0ChX23TRaw[Co1At2Ch7]
+991.826 -0.120005 0.00 !Mu0ChX24TRaw[Co1At2Ch8]
+987.033 -0.119427 0.00 !Mu0ChX25TRaw[Co1At2Ch9]
+998.041 -0.120777 0.00 !Mu0ChX26TRaw[Co1At2Ch10]
+1000.4 -0.121057 0.00 !Mu0ChX27TRaw[Co1At2Ch11]
+1004.27 -0.121545 0.00 !Mu0ChX28TRaw[Co1At2Ch12]
+1000.07 -0.121021 0.00 !Mu0ChX29TRaw[Co1At2Ch13]
+998.458 -0.120851 0.00 !Mu0ChX30TRaw[Co1At2Ch14]
+995.135 -0.12045 0.00 !Mu0ChX31TRaw[Co1At2Ch15]
+991.094 -0.119947 0.00 !Mu0ChX32TRaw[Co1At2Ch16]
+869.874 -0.105192 0.00 !Mu0ChX33TRaw[Co1At3Ch1]
+867.818 -0.104955 0.00 !Mu0ChX34TRaw[Co1At3Ch2]
+887.963 -0.107397 0.00 !Mu0ChX35TRaw[Co1At3Ch3]
+876.58 -0.106033 0.00 !Mu0ChX36TRaw[Co1At3Ch4]
+878.364 -0.106227 0.00 !Mu0ChX37TRaw[Co1At3Ch5]
+892.804 -0.108005 0.00 !Mu0ChX38TRaw[Co1At3Ch6]
+894.475 -0.108195 0.00 !Mu0ChX39TRaw[Co1At3Ch7]
+892.476 -0.107979 0.00 !Mu0ChX40TRaw[Co1At3Ch8]
+895.157 -0.108302 0.00 !Mu0ChX41TRaw[Co1At3Ch9]
+895.419 -0.108334 0.00 !Mu0ChX42TRaw[Co1At3Ch10]
+894.752 -0.108243 0.00 !Mu0ChX43TRaw[Co1At3Ch11]
+901.721 -0.109095 0.00 !Mu0ChX44TRaw[Co1At3Ch12]
+896.865 -0.108505 0.00 !Mu0ChX45TRaw[Co1At3Ch13]
+891.69 -0.107877 0.00 !Mu0ChX46TRaw[Co1At3Ch14]
+894.258 -0.108187 0.00 !Mu0ChX47TRaw[Co1At3Ch15]
+894.901 -0.10826 0.00 !Mu0ChX48TRaw[Co1At3Ch16]
+881.631 -0.106556 0.00 !Mu0ChX49TRaw[Co1At4Ch1]
+884.86 -0.106942 0.00 !Mu0ChX50TRaw[Co1At4Ch2]
+890.381 -0.107622 0.00 !Mu0ChX51TRaw[Co1At4Ch3]
+903.08 -0.109464 0.00 !Mu0ChX52TRaw[Co1At4Ch4]
+903.944 -0.109295 0.00 !Mu0ChX53TRaw[Co1At4Ch5]
+907.059 -0.109652 0.00 !Mu0ChX54TRaw[Co1At4Ch6]
+909.716 -0.109955 0.00 !Mu0ChX55TRaw[Co1At4Ch7]
+913.814 -0.110458 0.00 !Mu0ChX56TRaw[Co1At4Ch8]
+922.196 -0.111499 0.00 !Mu0ChX57TRaw[Co1At4Ch9]
+913.548 -0.110456 0.00 !Mu0ChX58TRaw[Co1At4Ch10]
+921.22 -0.111378 0.00 !Mu0ChX59TRaw[Co1At4Ch11]
+925.852 -0.111943 0.00 !Mu0ChX60TRaw[Co1At4Ch12]
+932.855 -0.112807 0.00 !Mu0ChX61TRaw[Co1At4Ch13]
+935.505 -0.11314 0.00 !Mu0ChX62TRaw[Co1At4Ch14]
+937.107 -0.113338 0.00 !Mu0ChX63TRaw[Co1At4Ch15]
+926.099 -0.111982 0.00 !Mu0ChX64TRaw[Co1At4Ch16]
+957.155 -0.115846 0.00 !Mu0ChX65TRaw[Co2At1Ch1]
+962.206 -0.11646 0.00 !Mu0ChX66TRaw[Co2At1Ch2]
+971.895 -0.117644 0.00 !Mu0ChX67TRaw[Co2At1Ch3]
+973.151 -0.117791 0.00 !Mu0ChX68TRaw[Co2At1Ch4]
+976.443 -0.118174 0.00 !Mu0ChX69TRaw[Co2At1Ch5]
+989.114 -0.119717 0.00 !Mu0ChX70TRaw[Co2At1Ch6]
+993.741 -0.120284 0.00 !Mu0ChX71TRaw[Co2At1Ch7]
+994.917 -0.120426 0.00 !Mu0ChX72TRaw[Co2At1Ch8]
+1005.69 -0.121763 0.00 !Mu0ChX73TRaw[Co2At1Ch9]
+986.82 -0.119445 0.00 !Mu0ChX74TRaw[Co2At1Ch10]
+1003.89 -0.121535 0.00 !Mu0ChX75TRaw[Co2At1Ch11]
+994.316 -0.120381 0.00 !Mu0ChX76TRaw[Co2At1Ch12]
+1001.66 -0.121262 0.00 !Mu0ChX77TRaw[Co2At1Ch13]
+1005.75 -0.121766 0.00 !Mu0ChX78TRaw[Co2At1Ch14]
+996.228 -0.120615 0.00 !Mu0ChX79TRaw[Co2At1Ch15]
+999.032 -0.120952 0.00 !Mu0ChX80TRaw[Co2At1Ch16]
+922.493 -0.111515 0.00 !Mu0ChX81TRaw[Co2At2Ch1]
+932.405 -0.112746 0.00 !Mu0ChX82TRaw[Co2At2Ch2]
+924.498 -0.111774 0.00 !Mu0ChX83TRaw[Co2At2Ch3]
+936.88 -0.113281 0.00 !Mu0ChX84TRaw[Co2At2Ch4]
+930.333 -0.112468 0.00 !Mu0ChX85TRaw[Co2At2Ch5]
+941.329 -0.113819 0.00 !Mu0ChX86TRaw[Co2At2Ch6]
+949.396 -0.114818 0.00 !Mu0ChX87TRaw[Co2At2Ch7]
+942.586 -0.113978 0.00 !Mu0ChX88TRaw[Co2At2Ch8]
+949.288 -0.114813 0.00 !Mu0ChX89TRaw[Co2At2Ch9]
+956.784 -0.115728 0.00 !Mu0ChX90TRaw[Co2At2Ch10]
+964.341 -0.11664 0.00 !Mu0ChX91TRaw[Co2At2Ch11]
+961.03 -0.11625 0.00 !Mu0ChX92TRaw[Co2At2Ch12]
+961.407 -0.116299 0.00 !Mu0ChX93TRaw[Co2At2Ch13]
+960.173 -0.116152 0.00 !Mu0ChX94TRaw[Co2At2Ch14]
+974.188 -0.117868 0.00 !Mu0ChX95TRaw[Co2At2Ch15]
+965.16 -0.116744 0.00 !Mu0ChX96TRaw[Co2At2Ch16]
+868.319 -0.105013 0.00 !Mu0ChX97TRaw[Co2At3Ch1]
+877.769 -0.106169 0.00 !Mu0ChX98TRaw[Co2At3Ch2]
+878.126 -0.106212 0.00 !Mu0ChX99TRaw[Co2At3Ch3]
+883.907 -0.106905 0.00 !Mu0ChX100TRaw[Co2At3Ch4]
+893.227 -0.108043 0.00 !Mu0ChX101TRaw[Co2At3Ch5]
+900.551 -0.108935 0.00 !Mu0ChX102TRaw[Co2At3Ch6]
+896.432 -0.108442 0.00 !Mu0ChX103TRaw[Co2At3Ch7]
+894.569 -0.108194 0.00 !Mu0ChX104TRaw[Co2At3Ch8]
+903.782 -0.109336 0.00 !Mu0ChX105TRaw[Co2At3Ch9]
+901.487 -0.109053 0.00 !Mu0ChX106TRaw[Co2At3Ch10]
+907.332 -0.109771 0.00 !Mu0ChX107TRaw[Co2At3Ch11]
+904.852 -0.109449 0.00 !Mu0ChX108TRaw[Co2At3Ch12]
+902.075 -0.109128 0.00 !Mu0ChX109TRaw[Co2At3Ch13]
+906.169 -0.109641 0.00 !Mu0ChX110TRaw[Co2At3Ch14]
+902.566 -0.109177 0.00 !Mu0ChX111TRaw[Co2At3Ch15]
+904.912 -0.109478 0.00 !Mu0ChX112TRaw[Co2At3Ch16]
+888.355 -0.107364 0.00 !Mu0ChX113TRaw[Co2At4Ch1]
+891.484 -0.107748 0.00 !Mu0ChX114TRaw[Co2At4Ch2]
+891.715 -0.107782 0.00 !Mu0ChX115TRaw[Co2At4Ch3]
+901.831 -0.109007 0.00 !Mu0ChX116TRaw[Co2At4Ch4]
+905.323 -0.109423 0.00 !Mu0ChX117TRaw[Co2At4Ch5]
+898.889 -0.108648 0.00 !Mu0ChX118TRaw[Co2At4Ch6]
+913.375 -0.110413 0.00 !Mu0ChX119TRaw[Co2At4Ch7]
+914.714 -0.110579 0.00 !Mu0ChX120TRaw[Co2At4Ch8]
+908.954 -0.109898 0.00 !Mu0ChX121TRaw[Co2At4Ch9]
+914.168 -0.1105 0.00 !Mu0ChX122TRaw[Co2At4Ch10]
+922.429 -0.111529 0.00 !Mu0ChX123TRaw[Co2At4Ch11]
+914.821 -0.110604 0.00 !Mu0ChX124TRaw[Co2At4Ch12]
+917.725 -0.110972 0.00 !Mu0ChX125TRaw[Co2At4Ch13]
+919.575 -0.11118 0.00 !Mu0ChX126TRaw[Co2At4Ch14]
+914.799 -0.110613 0.00 !Mu0ChX127TRaw[Co2At4Ch15]
+919.481 -0.111151 0.00 !Mu0ChX128TRaw[Co2At4Ch16]
+944.925 -0.114033 0.00 !Mu0ChY2TRaw[Co3At1Ch2]
+944.005 -0.113921 0.00 !Mu0ChY3TRaw[Co3At1Ch3]
+962.012 -0.116104 0.00 !Mu0ChY4TRaw[Co3At1Ch4]
+957.491 -0.115563 0.00 !Mu0ChY5TRaw[Co3At1Ch5]
+973.261 -0.117481 0.00 !Mu0ChY6TRaw[Co3At1Ch6]
+971.85 -0.117339 0.00 !Mu0ChY7TRaw[Co3At1Ch7]
+969.183 -0.117018 0.00 !Mu0ChY8TRaw[Co3At1Ch8]
+975.83 -0.117842 0.00 !Mu0ChY9TRaw[Co3At1Ch9]
+971.457 -0.117316 0.00 !Mu0ChY10TRaw[Co3At1Ch10]
+974.23 -0.117632 0.00 !Mu0ChY11TRaw[Co3At1Ch11]
+980.648 -0.118398 0.00 !Mu0ChY12TRaw[Co3At1Ch12]
+978.32 -0.11814 0.00 !Mu0ChY13TRaw[Co3At1Ch13]
+974.115 -0.117633 0.00 !Mu0ChY14TRaw[Co3At1Ch14]
+976.65 -0.117944 0.00 !Mu0ChY15TRaw[Co3At1Ch15]
+983.277 -0.118761 0.00 !Mu0ChY16TRaw[Co3At1Ch16]
+938.109 -0.113175 0.00 !Mu0ChY17TRaw[Co3At2Ch1]
+947.448 -0.114309 0.00 !Mu0ChY18TRaw[Co3At2Ch2]
+956.035 -0.115351 0.00 !Mu0ChY19TRaw[Co3At2Ch3]
+947.978 -0.11436 0.00 !Mu0ChY20TRaw[Co3At2Ch4]
+950.631 -0.114686 0.00 !Mu0ChY21TRaw[Co3At2Ch5]
+953.963 -0.115103 0.00 !Mu0ChY22TRaw[Co3At2Ch6]
+959.973 -0.115832 0.00 !Mu0ChY23TRaw[Co3At2Ch7]
+959.848 -0.115841 0.00 !Mu0ChY24TRaw[Co3At2Ch8]
+964.52 -0.116398 0.00 !Mu0ChY25TRaw[Co3At2Ch9]
+962.989 -0.116195 0.00 !Mu0ChY26TRaw[Co3At2Ch10]
+959.157 -0.115516 0.00 !Mu0ChY27TRaw[Co3At2Ch11]
+973.941 -0.117562 0.00 !Mu0ChY28TRaw[Co3At2Ch12]
+976.25 -0.117834 0.00 !Mu0ChY29TRaw[Co3At2Ch13]
+971.294 -0.11722 0.00 !Mu0ChY30TRaw[Co3At2Ch14]
+974.292 -0.11759 0.00 !Mu0ChY31TRaw[Co3At2Ch15]
+968.991 -0.116928 0.00 !Mu0ChY32TRaw[Co3At2Ch16]
+871.769 -0.105131 0.00 !Mu0ChY33TRaw[Co3At3Ch1]
+871.608 -0.105113 0.00 !Mu0ChY34TRaw[Co3At3Ch2]
+888.383 -0.107174 0.00 !Mu0ChY35TRaw[Co3At3Ch3]
+878.496 -0.105955 0.00 !Mu0ChY36TRaw[Co3At3Ch4]
+889.979 -0.107363 0.00 !Mu0ChY37TRaw[Co3At3Ch5]
+889.448 -0.107278 0.00 !Mu0ChY38TRaw[Co3At3Ch6]
+889.860 -0.107347 0.00 !Mu0ChY39TRaw[Co3At3Ch7]
+908.071 -0.109567 0.00 !Mu0ChY40TRaw[Co3At3Ch8]
+905.490 -0.109285 0.00 !Mu0ChY41TRaw[Co3At3Ch9]
+903.864 -0.109045 0.00 !Mu0ChY42TRaw[Co3At3Ch10]
+902.655 -0.108924 0.00 !Mu0ChY43TRaw[Co3At3Ch11]
+913.208 -0.110196 0.00 !Mu0ChY44TRaw[Co3At3Ch12]
+910.710 -0.109895 0.00 !Mu0ChY45TRaw[Co3At3Ch13]
+905.186 -0.109240 0.00 !Mu0ChY46TRaw[Co3At3Ch14]
+915.646 -0.110513 0.00 !Mu0ChY47TRaw[Co3At3Ch15]
+903.665 -0.109056 0.00 !Mu0ChY48TRaw[Co3At3Ch16]
+859.176 -0.103507 0.00 !Mu0ChY49TRaw[Co3At4Ch1]
+870.909 -0.104888 0.00 !Mu0ChY50TRaw[Co3At4Ch2]
+866.307 -0.104347 0.00 !Mu0ChY51TRaw[Co3At4Ch3]
+883.056 -0.106391 0.00 !Mu0ChY52TRaw[Co3At4Ch4]
+885.647 -0.106718 0.00 !Mu0ChY53TRaw[Co3At4Ch5]
+886.974 -0.106878 0.00 !Mu0ChY54TRaw[Co3At4Ch6]
+883.169 -0.106441 0.00 !Mu0ChY55TRaw[Co3At4Ch7]
+891.212 -0.107426 0.00 !Mu0ChY56TRaw[Co3At4Ch8]
+892.785 -0.107608 0.00 !Mu0ChY57TRaw[Co3At4Ch9]
+897.104 -0.108136 0.00 !Mu0ChY58TRaw[Co3At4Ch10]
+904.326 -0.109012 0.00 !Mu0ChY59TRaw[Co3At4Ch11]
+903.135 -0.108611 0.00 !Mu0ChY60TRaw[Co3At4Ch12]
+901.746 -0.108719 0.00 !Mu0ChY61TRaw[Co3At4Ch13]
+908.712 -0.109581 0.00 !Mu0ChY62TRaw[Co3At4Ch14]
+903.269 -0.108895 0.00 !Mu0ChY63TRaw[Co3At4Ch15]
+908.687 -0.109543 0.00 !Mu0ChY64TRaw[Co3At4Ch16]
+963.864 -0.116469 0.00 !Mu0ChY65TRaw[Co4At1Ch1]
+970.82 -0.117302 0.00 !Mu0ChY66TRaw[Co4At1Ch2]
+976.574 -0.118012 0.00 !Mu0ChY67TRaw[Co4At1Ch3]
+976.674 -0.118028 0.00 !Mu0ChY68TRaw[Co4At1Ch4]
+979.506 -0.118378 0.00 !Mu0ChY69TRaw[Co4At1Ch5]
+983.206 -0.118825 0.00 !Mu0ChY70TRaw[Co4At1Ch6]
+982.64 -0.118781 0.00 !Mu0ChY71TRaw[Co4At1Ch7]
+985.816 -0.119156 0.00 !Mu0ChY72TRaw[Co4At1Ch8]
+989.544 -0.119628 0.00 !Mu0ChY73TRaw[Co4At1Ch9]
+981.143 -0.118591 0.00 !Mu0ChY74TRaw[Co4At1Ch10]
+989.884 -0.119656 0.00 !Mu0ChY75TRaw[Co4At1Ch11]
+1000.31 -0.120924 0.00 !Mu0ChY76TRaw[Co4At1Ch12]
+995.389 -0.120327 0.00 !Mu0ChY77TRaw[Co4At1Ch13]
+997.331 -0.120579 0.00 !Mu0ChY78TRaw[Co4At1Ch14]
+994.499 -0.120247 0.00 !Mu0ChY79TRaw[Co4At1Ch15]
+1001.6 -0.121097 0.00 !Mu0ChY80TRaw[Co4At1Ch16]
+970.056 -0.117145 0.00 !Mu0ChY81TRaw[Co4At2Ch1]
+986.117 -0.119118 0.00 !Mu0ChY82TRaw[Co4At2Ch2]
+981.373 -0.118534 0.00 !Mu0ChY83TRaw[Co4At2Ch3]
+995.859 -0.12031 0.00 !Mu0ChY84TRaw[Co4At2Ch4]
+999.672 -0.120777 0.00 !Mu0ChY85TRaw[Co4At2Ch5]
+1002.22 -0.121085 0.00 !Mu0ChY86TRaw[Co4At2Ch6]
+998.019 -0.120569 0.00 !Mu0ChY87TRaw[Co4At2Ch7]
+1008.32 -0.121839 0.00 !Mu0ChY88TRaw[Co4At2Ch8]
+1004.28 -0.121339 0.00 !Mu0ChY89TRaw[Co4At2Ch9]
+1014.52 -0.122592 0.00 !Mu0ChY90TRaw[Co4At2Ch10]
+1025.22 -0.123897 0.00 !Mu0ChY91TRaw[Co4At2Ch11]
+1024.79 -0.123866 0.00 !Mu0ChY92TRaw[Co4At2Ch12]
+1019.8 -0.123256 0.00 !Mu0ChY93TRaw[Co4At2Ch13]
+1024.3 -0.123786 0.00 !Mu0ChY94TRaw[Co4At2Ch14]
+1021.08 -0.123408 0.00 !Mu0ChY95TRaw[Co4At2Ch15]
+1016.6 -0.122879 0.00 !Mu0ChY96TRaw[Co4At2Ch16]
+882.25 -0.106544 0.00 !Mu0ChY97TRaw[Co4At3Ch1]
+878.942 -0.106139 0.00 !Mu0ChY98TRaw[Co4At3Ch2]
+878.021 -0.106028 0.00 !Mu0ChY99TRaw[Co4At3Ch3]
+894.625 -0.108041 0.00 !Mu0ChY100TRaw[Co4At3Ch4]
+891.724 -0.107707 0.00 !Mu0ChY101TRaw[Co4At3Ch5]
+890.686 -0.10757 0.00 !Mu0ChY102TRaw[Co4At3Ch6]
+895.168 -0.108105 0.00 !Mu0ChY103TRaw[Co4At3Ch7]
+907.124 -0.10959 0.00 !Mu0ChY104TRaw[Co4At3Ch8]
+901.739 -0.108916 0.00 !Mu0ChY105TRaw[Co4At3Ch9]
+914.99 -0.110544 0.00 !Mu0ChY106TRaw[Co4At3Ch10]
+910.27 -0.109981 0.00 !Mu0ChY107TRaw[Co4At3Ch11]
+914.704 -0.11051 0.00 !Mu0ChY108TRaw[Co4At3Ch12]
+913.859 -0.110421 0.00 !Mu0ChY109TRaw[Co4At3Ch13]
+909.547 -0.109894 0.00 !Mu0ChY110TRaw[Co4At3Ch14]
+915.137 -0.110572 0.00 !Mu0ChY111TRaw[Co4At3Ch15]
+917.078 -0.110803 0.00 !Mu0ChY112TRaw[Co4At3Ch16]
+891.216 -0.107535 0.00 !Mu0ChY113TRaw[Co4At4Ch1]
+899.129 -0.108466 0.00 !Mu0ChY114TRaw[Co4At4Ch2]
+898.718 -0.108438 0.00 !Mu0ChY115TRaw[Co4At4Ch3]
+904.591 -0.109158 0.00 !Mu0ChY116TRaw[Co4At4Ch4]
+916.06 -0.110566 0.00 !Mu0ChY117TRaw[Co4At4Ch5]
+909.441 -0.109757 0.00 !Mu0ChY118TRaw[Co4At4Ch6]
+929.211 -0.112167 0.00 !Mu0ChY119TRaw[Co4At4Ch7]
+920.724 -0.111146 0.00 !Mu0ChY120TRaw[Co4At4Ch8]
+931.107 -0.112407 0.00 !Mu0ChY121TRaw[Co4At4Ch9]
+930.357 -0.112337 0.00 !Mu0ChY122TRaw[Co4At4Ch10]
+932.102 -0.112539 0.00 !Mu0ChY123TRaw[Co4At4Ch11]
+935.662 -0.112978 0.00 !Mu0ChY124TRaw[Co4At4Ch12]
+930.191 -0.112316 0.00 !Mu0ChY125TRaw[Co4At4Ch13]
+929.054 -0.112192 0.00 !Mu0ChY126TRaw[Co4At4Ch14]
+926.166 -0.111821 0.00 !Mu0ChY127TRaw[Co4At4Ch15]
+929.013 -0.112162 0.00 !Mu0ChY128TRaw[Co4At4Ch16]
+928.571 -0.11232 0.00 !Mu1ChX1TRaw[Co1At1Ch1]
+942.493 -0.114015 0.00 !Mu1ChX2TRaw[Co1At1Ch2]
+944.985 -0.114341 0.00 !Mu1ChX3TRaw[Co1At1Ch3]
+956.226 -0.115712 0.00 !Mu1ChX4TRaw[Co1At1Ch4]
+956.679 -0.115744 0.00 !Mu1ChX5TRaw[Co1At1Ch5]
+958.458 -0.115962 0.00 !Mu1ChX6TRaw[Co1At1Ch6]
+971.702 -0.117589 0.00 !Mu1ChX7TRaw[Co1At1Ch7]
+966.768 -0.116998 0.00 !Mu1ChX8TRaw[Co1At1Ch8]
+970.872 -0.117498 0.00 !Mu1ChX9TRaw[Co1At1Ch9]
+979.817 -0.118577 0.00 !Mu1ChX10TRaw[Co1At1Ch10]
+976.301 -0.118143 0.00 !Mu1ChX11TRaw[Co1At1Ch11]
+975.435 -0.118071 0.00 !Mu1ChX12TRaw[Co1At1Ch12]
+987.534 -0.11954 0.00 !Mu1ChX13TRaw[Co1At1Ch13]
+988.145 -0.119597 0.00 !Mu1ChX14TRaw[Co1At1Ch14]
+985.177 -0.119236 0.00 !Mu1ChX15TRaw[Co1At1Ch15]
+984.559 -0.119179 0.00 !Mu1ChX16TRaw[Co1At1Ch16]
+924.661 -0.111777 0.00 !Mu1ChX17TRaw[Co1At2Ch1]
+947.862 -0.114612 0.00 !Mu1ChX18TRaw[Co1At2Ch2]
+948.76 -0.114738 0.00 !Mu1ChX19TRaw[Co1At2Ch3]
+946.29 -0.114439 0.00 !Mu1ChX20TRaw[Co1At2Ch4]
+954.686 -0.115464 0.00 !Mu1ChX21TRaw[Co1At2Ch5]
+967.911 -0.117052 0.00 !Mu1ChX22TRaw[Co1At2Ch6]
+957.223 -0.115762 0.00 !Mu1ChX23TRaw[Co1At2Ch7]
+973.476 -0.117739 0.00 !Mu1ChX24TRaw[Co1At2Ch8]
+971.664 -0.117531 0.00 !Mu1ChX25TRaw[Co1At2Ch9]
+974.918 -0.117923 0.00 !Mu1ChX26TRaw[Co1At2Ch10]
+973.502 -0.117737 0.00 !Mu1ChX27TRaw[Co1At2Ch11]
+977.242 -0.11821 0.00 !Mu1ChX28TRaw[Co1At2Ch12]
+981.073 -0.118677 0.00 !Mu1ChX29TRaw[Co1At2Ch13]
+978.26 -0.118324 0.00 !Mu1ChX30TRaw[Co1At2Ch14]
+977.151 -0.118198 0.00 !Mu1ChX31TRaw[Co1At2Ch15]
+984.794 -0.119148 0.00 !Mu1ChX32TRaw[Co1At2Ch16]
+878.025 -0.106165 0.00 !Mu1ChX33TRaw[Co1At3Ch1]
+877.927 -0.10618 0.00 !Mu1ChX34TRaw[Co1At3Ch2]
+893.294 -0.108064 0.00 !Mu1ChX35TRaw[Co1At3Ch3]
+876.051 -0.105941 0.00 !Mu1ChX36TRaw[Co1At3Ch4]
+893.827 -0.108105 0.00 !Mu1ChX37TRaw[Co1At3Ch5]
+899.59 -0.108823 0.00 !Mu1ChX38TRaw[Co1At3Ch6]
+891.87 -0.107861 0.00 !Mu1ChX39TRaw[Co1At3Ch7]
+896.377 -0.10842 0.00 !Mu1ChX40TRaw[Co1At3Ch8]
+899.273 -0.108779 0.00 !Mu1ChX41TRaw[Co1At3Ch9]
+898.912 -0.108754 0.00 !Mu1ChX42TRaw[Co1At3Ch10]
+907.617 -0.109783 0.00 !Mu1ChX43TRaw[Co1At3Ch11]
+899.789 -0.108855 0.00 !Mu1ChX44TRaw[Co1At3Ch12]
+909.299 -0.110019 0.00 !Mu1ChX45TRaw[Co1At3Ch13]
+907.769 -0.109854 0.00 !Mu1ChX46TRaw[Co1At3Ch14]
+905.232 -0.109528 0.00 !Mu1ChX47TRaw[Co1At3Ch15]
+909.577 -0.110055 0.00 !Mu1ChX48TRaw[Co1At3Ch16]
+868.163 -0.104838 0.00 !Mu1ChX49TRaw[Co1At4Ch1]
+873.224 -0.105455 0.00 !Mu1ChX50TRaw[Co1At4Ch2]
+885.913 -0.107015 0.00 !Mu1ChX51TRaw[Co1At4Ch3]
+888.452 -0.107338 0.00 !Mu1ChX52TRaw[Co1At4Ch4]
+891.233 -0.107685 0.00 !Mu1ChX53TRaw[Co1At4Ch5]
+891.534 -0.107699 0.00 !Mu1ChX54TRaw[Co1At4Ch6]
+895.39 -0.10819 0.00 !Mu1ChX55TRaw[Co1At4Ch7]
+901.392 -0.108878 0.00 !Mu1ChX56TRaw[Co1At4Ch8]
+907.775 -0.1097 0.00 !Mu1ChX57TRaw[Co1At4Ch9]
+903.537 -0.10916 0.00 !Mu1ChX58TRaw[Co1At4Ch10]
+912.271 -0.110244 0.00 !Mu1ChX59TRaw[Co1At4Ch11]
+904.646 -0.109308 0.00 !Mu1ChX60TRaw[Co1At4Ch12]
+917.556 -0.110894 0.00 !Mu1ChX61TRaw[Co1At4Ch13]
+909.067 -0.109867 0.00 !Mu1ChX62TRaw[Co1At4Ch14]
+908.514 -0.109791 0.00 !Mu1ChX63TRaw[Co1At4Ch15]
+916.574 -0.110777 0.00 !Mu1ChX64TRaw[Co1At4Ch16]
+951.079 -0.114723 0.00 !Mu1ChX65TRaw[Co2At1Ch1]
+952.897 -0.114949 0.00 !Mu1ChX66TRaw[Co2At1Ch2]
+966.461 -0.116629 0.00 !Mu1ChX67TRaw[Co2At1Ch3]
+965.985 -0.116557 0.00 !Mu1ChX68TRaw[Co2At1Ch4]
+968.322 -0.116827 0.00 !Mu1ChX69TRaw[Co2At1Ch5]
+976.11 -0.117811 0.00 !Mu1ChX70TRaw[Co2At1Ch6]
+975.867 -0.117758 0.00 !Mu1ChX71TRaw[Co2At1Ch7]
+981.064 -0.118392 0.00 !Mu1ChX72TRaw[Co2At1Ch8]
+978.32 -0.118063 0.00 !Mu1ChX73TRaw[Co2At1Ch9]
+992.972 -0.119853 0.00 !Mu1ChX74TRaw[Co2At1Ch10]
+989.034 -0.119377 0.00 !Mu1ChX75TRaw[Co2At1Ch11]
+987.234 -0.119141 0.00 !Mu1ChX76TRaw[Co2At1Ch12]
+994.058 -0.119982 0.00 !Mu1ChX77TRaw[Co2At1Ch13]
+995.957 -0.120199 0.00 !Mu1ChX78TRaw[Co2At1Ch14]
+995.79 -0.1202 0.00 !Mu1ChX79TRaw[Co2At1Ch15]
+1000.15 -0.120722 0.00 !Mu1ChX80TRaw[Co2At1Ch16]
+976.704 -0.117775 0.00 !Mu1ChX81TRaw[Co2At2Ch1]
+978.841 -0.118024 0.00 !Mu1ChX82TRaw[Co2At2Ch2]
+983.919 -0.118652 0.00 !Mu1ChX83TRaw[Co2At2Ch3]
+997.371 -0.120307 0.00 !Mu1ChX84TRaw[Co2At2Ch4]
+996.925 -0.120215 0.00 !Mu1ChX85TRaw[Co2At2Ch5]
+1006.21 -0.121389 0.00 !Mu1ChX86TRaw[Co2At2Ch6]
+1007.52 -0.121554 0.00 !Mu1ChX87TRaw[Co2At2Ch7]
+999.416 -0.12057 0.00 !Mu1ChX88TRaw[Co2At2Ch8]
+1013.91 -0.122345 0.00 !Mu1ChX89TRaw[Co2At2Ch9]
+1016.22 -0.12261 0.00 !Mu1ChX90TRaw[Co2At2Ch10]
+1011.77 -0.122082 0.00 !Mu1ChX91TRaw[Co2At2Ch11]
+1018.04 -0.12282 0.00 !Mu1ChX92TRaw[Co2At2Ch12]
+1017.49 -0.12279 0.00 !Mu1ChX93TRaw[Co2At2Ch13]
+1020.31 -0.123127 0.00 !Mu1ChX94TRaw[Co2At2Ch14]
+1019.96 -0.123096 0.00 !Mu1ChX95TRaw[Co2At2Ch15]
+1008.1 -0.12163 0.00 !Mu1ChX96TRaw[Co2At2Ch16]
+892.824 -0.107613 0.00 !Mu1ChX97TRaw[Co2At3Ch1]
+890.901 -0.107373 0.00 !Mu1ChX98TRaw[Co2At3Ch2]
+894.556 -0.107838 0.00 !Mu1ChX99TRaw[Co2At3Ch3]
+905.994 -0.109224 0.00 !Mu1ChX100TRaw[Co2At3Ch4]
+905.741 -0.1092 0.00 !Mu1ChX101TRaw[Co2At3Ch5]
+910.629 -0.109791 0.00 !Mu1ChX102TRaw[Co2At3Ch6]
+906.206 -0.109268 0.00 !Mu1ChX103TRaw[Co2At3Ch7]
+921.692 -0.111151 0.00 !Mu1ChX104TRaw[Co2At3Ch8]
+922.784 -0.11128 0.00 !Mu1ChX105TRaw[Co2At3Ch9]
+924.5 -0.111467 0.00 !Mu1ChX106TRaw[Co2At3Ch10]
+928.983 -0.112035 0.00 !Mu1ChX107TRaw[Co2At3Ch11]
+924.661 -0.111519 0.00 !Mu1ChX108TRaw[Co2At3Ch12]
+925.485 -0.111616 0.00 !Mu1ChX109TRaw[Co2At3Ch13]
+917.32 -0.110627 0.00 !Mu1ChX110TRaw[Co2At3Ch14]
+920.078 -0.110941 0.00 !Mu1ChX111TRaw[Co2At3Ch15]
+926.646 -0.11176 0.00 !Mu1ChX112TRaw[Co2At3Ch16]
+900.671 -0.108476 0.00 !Mu1ChX113TRaw[Co2At4Ch1]
+901.745 -0.108567 0.00 !Mu1ChX114TRaw[Co2At4Ch2]
+908.74 -0.10946 0.00 !Mu1ChX115TRaw[Co2At4Ch3]
+914.468 -0.110136 0.00 !Mu1ChX116TRaw[Co2At4Ch4]
+929.323 -0.111977 0.00 !Mu1ChX117TRaw[Co2At4Ch5]
+923.812 -0.111304 0.00 !Mu1ChX118TRaw[Co2At4Ch6]
+935.93 -0.112781 0.00 !Mu1ChX119TRaw[Co2At4Ch7]
+918.363 -0.110659 0.00 !Mu1ChX120TRaw[Co2At4Ch8]
+923.868 -0.111325 0.00 !Mu1ChX121TRaw[Co2At4Ch9]
+931.448 -0.112226 0.00 !Mu1ChX122TRaw[Co2At4Ch10]
+932.559 -0.11236 0.00 !Mu1ChX123TRaw[Co2At4Ch11]
+927.829 -0.111775 0.00 !Mu1ChX124TRaw[Co2At4Ch12]
+925.186 -0.111483 0.00 !Mu1ChX125TRaw[Co2At4Ch13]
+931.059 -0.112193 0.00 !Mu1ChX126TRaw[Co2At4Ch14]
+934.329 -0.112614 0.00 !Mu1ChX127TRaw[Co2At4Ch15]
+928.424 -0.111864 0.00 !Mu1ChX128TRaw[Co2At4Ch16]
+935.35 -0.11282 0.00 !Mu1ChY1TRaw[Co3At1Ch1]
+937.191 -0.113022 0.00 !Mu1ChY2TRaw[Co3At1Ch2]
+948.029 -0.114361 0.00 !Mu1ChY3TRaw[Co3At1Ch3]
+952.035 -0.114834 0.00 !Mu1ChY4TRaw[Co3At1Ch4]
+954.252 -0.115122 0.00 !Mu1ChY5TRaw[Co3At1Ch5]
+957.621 -0.115533 0.00 !Mu1ChY6TRaw[Co3At1Ch6]
+960.868 -0.115938 0.00 !Mu1ChY7TRaw[Co3At1Ch7]
+950.839 -0.114726 0.00 !Mu1ChY8TRaw[Co3At1Ch8]
+958.21 -0.11562 0.00 !Mu1ChY9TRaw[Co3At1Ch9]
+968.288 -0.116854 0.00 !Mu1ChY10TRaw[Co3At1Ch10]
+964.104 -0.116368 0.00 !Mu1ChY11TRaw[Co3At1Ch11]
+972.004 -0.117327 0.00 !Mu1ChY12TRaw[Co3At1Ch12]
+972.184 -0.117358 0.00 !Mu1ChY13TRaw[Co3At1Ch13]
+967.943 -0.116827 0.00 !Mu1ChY14TRaw[Co3At1Ch14]
+969.17 -0.116981 0.00 !Mu1ChY15TRaw[Co3At1Ch15]
+966.891 -0.116717 0.00 !Mu1ChY16TRaw[Co3At1Ch16]
+968.928 -0.116883 0.00 !Mu1ChY17TRaw[Co3At2Ch1]
+971.207 -0.117128 0.00 !Mu1ChY18TRaw[Co3At2Ch2]
+975.423 -0.117665 0.00 !Mu1ChY19TRaw[Co3At2Ch3]
+976.249 -0.117743 0.00 !Mu1ChY20TRaw[Co3At2Ch4]
+987.572 -0.119146 0.00 !Mu1ChY21TRaw[Co3At2Ch5]
+984.536 -0.118747 0.00 !Mu1ChY22TRaw[Co3At2Ch6]
+987.751 -0.119189 0.00 !Mu1ChY23TRaw[Co3At2Ch7]
+994.23 -0.119964 0.00 !Mu1ChY24TRaw[Co3At2Ch8]
+995.905 -0.120158 0.00 !Mu1ChY25TRaw[Co3At2Ch9]
+995.946 -0.120176 0.00 !Mu1ChY26TRaw[Co3At2Ch10]
+1000.5 -0.120728 0.00 !Mu1ChY27TRaw[Co3At2Ch11]
+995.25 -0.120113 0.00 !Mu1ChY28TRaw[Co3At2Ch12]
+997.145 -0.120339 0.00 !Mu1ChY29TRaw[Co3At2Ch13]
+988.864 -0.119308 0.00 !Mu1ChY30TRaw[Co3At2Ch14]
+995.199 -0.120108 0.00 !Mu1ChY31TRaw[Co3At2Ch15]
+990.383 -0.119515 0.00 !Mu1ChY32TRaw[Co3At2Ch16]
+1002.87 -0.141377 0.00 !Mu1ChY33TRaw[Co3At3Ch1]
+884.995 -0.106691 0.00 !Mu1ChY34TRaw[Co3At3Ch2]
+886.581 -0.106848 0.00 !Mu1ChY35TRaw[Co3At3Ch3]
+896.019 -0.108037 0.00 !Mu1ChY36TRaw[Co3At3Ch4]
+8.48677e+11 -1.03827e+08 0.00 !Mu1ChY37TRaw[Co3At3Ch5]
+907.311 -0.109433 0.00 !Mu1ChY38TRaw[Co3At3Ch6]
+897.171 -0.108164 0.00 !Mu1ChY39TRaw[Co3At3Ch7]
+907.451 -0.10944 0.00 !Mu1ChY40TRaw[Co3At3Ch8]
+895.245 -0.107957 0.00 !Mu1ChY41TRaw[Co3At3Ch9]
+908.035 -0.109521 0.00 !Mu1ChY42TRaw[Co3At3Ch10]
+900.767 -0.108623 0.00 !Mu1ChY43TRaw[Co3At3Ch11]
+909.45 -0.10969 0.00 !Mu1ChY44TRaw[Co3At3Ch12]
+911.966 -0.109989 0.00 !Mu1ChY45TRaw[Co3At3Ch13]
+906.33 -0.109312 0.00 !Mu1ChY46TRaw[Co3At3Ch14]
+910.732 -0.109844 0.00 !Mu1ChY47TRaw[Co3At3Ch15]
+905.741 -0.109257 0.00 !Mu1ChY48TRaw[Co3At3Ch16]
+887.986 -0.10696 0.00 !Mu1ChY49TRaw[Co3At4Ch1]
+887.216 -0.106852 0.00 !Mu1ChY50TRaw[Co3At4Ch2]
+883.77 -0.106436 0.00 !Mu1ChY51TRaw[Co3At4Ch3]
+896.97 -0.108049 0.00 !Mu1ChY52TRaw[Co3At4Ch4]
+903.022 -0.108781 0.00 !Mu1ChY53TRaw[Co3At4Ch5]
+904.319 -0.108923 0.00 !Mu1ChY54TRaw[Co3At4Ch6]
+904.183 -0.108922 0.00 !Mu1ChY55TRaw[Co3At4Ch7]
+904.336 -0.108949 0.00 !Mu1ChY56TRaw[Co3At4Ch8]
+916.034 -0.110395 0.00 !Mu1ChY57TRaw[Co3At4Ch9]
+915.216 -0.110294 0.00 !Mu1ChY58TRaw[Co3At4Ch10]
+910.734 -0.109746 0.00 !Mu1ChY59TRaw[Co3At4Ch11]
+913.293 -0.109802 0.00 !Mu1ChY60TRaw[Co3At4Ch12]
+910.448 -0.109742 0.00 !Mu1ChY61TRaw[Co3At4Ch13]
+918.647 -0.11072 0.00 !Mu1ChY62TRaw[Co3At4Ch14]
+920.049 -0.110879 0.00 !Mu1ChY63TRaw[Co3At4Ch15]
+921.093 -0.111037 0.00 !Mu1ChY64TRaw[Co3At4Ch16]
+950.903 -0.115194 0.00 !Mu1ChY65TRaw[Co4At1Ch1]
+958.17 -0.116053 0.00 !Mu1ChY66TRaw[Co4At1Ch2]
+963.945 -0.116788 0.00 !Mu1ChY67TRaw[Co4At1Ch3]
+967.43 -0.117211 0.00 !Mu1ChY68TRaw[Co4At1Ch4]
+970.687 -0.117617 0.00 !Mu1ChY69TRaw[Co4At1Ch5]
+978.784 -0.118609 0.00 !Mu1ChY70TRaw[Co4At1Ch6]
+974.345 -0.118053 0.00 !Mu1ChY71TRaw[Co4At1Ch7]
+982.479 -0.119038 0.00 !Mu1ChY72TRaw[Co4At1Ch8]
+983.419 -0.119163 0.00 !Mu1ChY73TRaw[Co4At1Ch9]
+986.47 -0.119552 0.00 !Mu1ChY74TRaw[Co4At1Ch10]
+988.169 -0.119777 0.00 !Mu1ChY75TRaw[Co4At1Ch11]
+985.147 -0.119391 0.00 !Mu1ChY76TRaw[Co4At1Ch12]
+988.378 -0.11981 0.00 !Mu1ChY77TRaw[Co4At1Ch13]
+985.922 -0.119505 0.00 !Mu1ChY78TRaw[Co4At1Ch14]
+986.667 -0.119601 0.00 !Mu1ChY79TRaw[Co4At1Ch15]
+991.793 -0.120194 0.00 !Mu1ChY80TRaw[Co4At1Ch16]
+947.005 -0.114646 0.00 !Mu1ChY81TRaw[Co4At2Ch1]
+955.512 -0.115676 0.00 !Mu1ChY82TRaw[Co4At2Ch2]
+954.266 -0.115551 0.00 !Mu1ChY83TRaw[Co4At2Ch3]
+961.213 -0.116392 0.00 !Mu1ChY84TRaw[Co4At2Ch4]
+960.803 -0.116344 0.00 !Mu1ChY85TRaw[Co4At2Ch5]
+971.068 -0.117589 0.00 !Mu1ChY86TRaw[Co4At2Ch6]
+971.908 -0.117699 0.00 !Mu1ChY87TRaw[Co4At2Ch7]
+978.963 -0.118567 0.00 !Mu1ChY88TRaw[Co4At2Ch8]
+980.181 -0.118705 0.00 !Mu1ChY89TRaw[Co4At2Ch9]
+972.849 -0.117807 0.00 !Mu1ChY90TRaw[Co4At2Ch10]
+977.401 -0.118376 0.00 !Mu1ChY91TRaw[Co4At2Ch11]
+985.257 -0.119333 0.00 !Mu1ChY92TRaw[Co4At2Ch12]
+986.001 -0.119429 0.00 !Mu1ChY93TRaw[Co4At2Ch13]
+978.94 -0.118576 0.00 !Mu1ChY94TRaw[Co4At2Ch14]
+982.604 -0.119031 0.00 !Mu1ChY95TRaw[Co4At2Ch15]
+994.308 -0.120471 0.00 !Mu1ChY96TRaw[Co4At2Ch16]
+876.691 -0.106136 0.00 !Mu1ChY97TRaw[Co4At3Ch1]
+875.524 -0.106 0.00 !Mu1ChY98TRaw[Co4At3Ch2]
+880.13 -0.106555 0.00 !Mu1ChY99TRaw[Co4At3Ch3]
+894.071 -0.108263 0.00 !Mu1ChY100TRaw[Co4At3Ch4]
+891.902 -0.10801 0.00 !Mu1ChY101TRaw[Co4At3Ch5]
+884.05 -0.107044 0.00 !Mu1ChY102TRaw[Co4At3Ch6]
+891.891 -0.108005 0.00 !Mu1ChY103TRaw[Co4At3Ch7]
+895.11 -0.108406 0.00 !Mu1ChY104TRaw[Co4At3Ch8]
+905.296 -0.109653 0.00 !Mu1ChY105TRaw[Co4At3Ch9]
+902.144 -0.10926 0.00 !Mu1ChY106TRaw[Co4At3Ch10]
+905.347 -0.10967 0.00 !Mu1ChY107TRaw[Co4At3Ch11]
+896.217 -0.108536 0.00 !Mu1ChY108TRaw[Co4At3Ch12]
+903.241 -0.109417 0.00 !Mu1ChY109TRaw[Co4At3Ch13]
+910.268 -0.110268 0.00 !Mu1ChY110TRaw[Co4At3Ch14]
+900.796 -0.109108 0.00 !Mu1ChY111TRaw[Co4At3Ch15]
+906.635 -0.109824 0.00 !Mu1ChY112TRaw[Co4At3Ch16]
+862.399 -0.104291 0.00 !Mu1ChY113TRaw[Co4At4Ch1]
+856.141 -0.103549 0.00 !Mu1ChY114TRaw[Co4At4Ch2]
+866.517 -0.104798 0.00 !Mu1ChY115TRaw[Co4At4Ch3]
+861.488 -0.10419 0.00 !Mu1ChY116TRaw[Co4At4Ch4]
+869.88 -0.105221 0.00 !Mu1ChY117TRaw[Co4At4Ch5]
+879.073 -0.106354 0.00 !Mu1ChY118TRaw[Co4At4Ch6]
+883.458 -0.1069 0.00 !Mu1ChY119TRaw[Co4At4Ch7]
+878.318 -0.106252 0.00 !Mu1ChY120TRaw[Co4At4Ch8]
+895.691 -0.108379 0.00 !Mu1ChY121TRaw[Co4At4Ch9]
+896.571 -0.108492 0.00 !Mu1ChY122TRaw[Co4At4Ch10]
+894.464 -0.108225 0.00 !Mu1ChY123TRaw[Co4At4Ch11]
+893.509 -0.108132 0.00 !Mu1ChY124TRaw[Co4At4Ch12]
+895.809 -0.108412 0.00 !Mu1ChY125TRaw[Co4At4Ch13]
+891.015 -0.10784 0.00 !Mu1ChY126TRaw[Co4At4Ch14]
+888.724 -0.107526 0.00 !Mu1ChY127TRaw[Co4At4Ch15]
+899.797 -0.109448 0.00 !Mu1ChY128TRaw[Co4At4Ch16]
+937.316 -0.113282 0.00 !Mu2ChX1TRaw[Co1At1Ch1]
+934.385 -0.112935 0.00 !Mu2ChX2TRaw[Co1At1Ch2]
+942.34 -0.113903 0.00 !Mu2ChX3TRaw[Co1At1Ch3]
+954.458 -0.11541 0.00 !Mu2ChX4TRaw[Co1At1Ch4]
+950.139 -0.114834 0.00 !Mu2ChX5TRaw[Co1At1Ch5]
+967.561 -0.116968 0.00 !Mu2ChX6TRaw[Co1At1Ch6]
+960.77 -0.116144 0.00 !Mu2ChX7TRaw[Co1At1Ch7]
+965.567 -0.116738 0.00 !Mu2ChX8TRaw[Co1At1Ch8]
+957.421 -0.115736 0.00 !Mu2ChX9TRaw[Co1At1Ch9]
+969.399 -0.117191 0.00 !Mu2ChX10TRaw[Co1At1Ch10]
+971.909 -0.117505 0.00 !Mu2ChX11TRaw[Co1At1Ch11]
+966.623 -0.116868 0.00 !Mu2ChX12TRaw[Co1At1Ch12]
+972.522 -0.117596 0.00 !Mu2ChX13TRaw[Co1At1Ch13]
+966.551 -0.116864 0.00 !Mu2ChX14TRaw[Co1At1Ch14]
+967.053 -0.116934 0.00 !Mu2ChX15TRaw[Co1At1Ch15]
+976.535 -0.118078 0.00 !Mu2ChX16TRaw[Co1At1Ch16]
+919.521 -0.111042 0.00 !Mu2ChX17TRaw[Co1At2Ch1]
+934.725 -0.1129 0.00 !Mu2ChX18TRaw[Co1At2Ch2]
+937.478 -0.113239 0.00 !Mu2ChX19TRaw[Co1At2Ch3]
+936.381 -0.11311 0.00 !Mu2ChX20TRaw[Co1At2Ch4]
+947.225 -0.114433 0.00 !Mu2ChX21TRaw[Co1At2Ch5]
+942.935 -0.113893 0.00 !Mu2ChX22TRaw[Co1At2Ch6]
+940.462 -0.113604 0.00 !Mu2ChX23TRaw[Co1At2Ch7]
+948.676 -0.114596 0.00 !Mu2ChX24TRaw[Co1At2Ch8]
+939.674 -0.113523 0.00 !Mu2ChX25TRaw[Co1At2Ch9]
+947.97 -0.114529 0.00 !Mu2ChX26TRaw[Co1At2Ch10]
+948.456 -0.114587 0.00 !Mu2ChX27TRaw[Co1At2Ch11]
+944.632 -0.114127 0.00 !Mu2ChX28TRaw[Co1At2Ch12]
+952.149 -0.115049 0.00 !Mu2ChX29TRaw[Co1At2Ch13]
+948.307 -0.114577 0.00 !Mu2ChX30TRaw[Co1At2Ch14]
+950.078 -0.114801 0.00 !Mu2ChX31TRaw[Co1At2Ch15]
+949.489 -0.114725 0.00 !Mu2ChX32TRaw[Co1At2Ch16]
+884.424 -0.106884 0.00 !Mu2ChX33TRaw[Co1At3Ch1]
+881.912 -0.106588 0.00 !Mu2ChX34TRaw[Co1At3Ch2]
+891.212 -0.10771 0.00 !Mu2ChX35TRaw[Co1At3Ch3]
+888.472 -0.10739 0.00 !Mu2ChX36TRaw[Co1At3Ch4]
+902.325 -0.109058 0.00 !Mu2ChX37TRaw[Co1At3Ch5]
+899.193 -0.108685 0.00 !Mu2ChX38TRaw[Co1At3Ch6]
+906.762 -0.109605 0.00 !Mu2ChX39TRaw[Co1At3Ch7]
+903.506 -0.109211 0.00 !Mu2ChX40TRaw[Co1At3Ch8]
+903.2 -0.109168 0.00 !Mu2ChX41TRaw[Co1At3Ch9]
+907.04 -0.109617 0.00 !Mu2ChX42TRaw[Co1At3Ch10]
+913.192 -0.1104 0.00 !Mu2ChX43TRaw[Co1At3Ch11]
+912.001 -0.110254 0.00 !Mu2ChX44TRaw[Co1At3Ch12]
+920.039 -0.111219 0.00 !Mu2ChX45TRaw[Co1At3Ch13]
+918.464 -0.111043 0.00 !Mu2ChX46TRaw[Co1At3Ch14]
+921.268 -0.111378 0.00 !Mu2ChX47TRaw[Co1At3Ch15]
+917.17 -0.11089 0.00 !Mu2ChX48TRaw[Co1At3Ch16]
+853.022 -0.102956 0.00 !Mu2ChX49TRaw[Co1At4Ch1]
+863.294 -0.104191 0.00 !Mu2ChX50TRaw[Co1At4Ch2]
+872.886 -0.105362 0.00 !Mu2ChX51TRaw[Co1At4Ch3]
+866.918 -0.10464 0.00 !Mu2ChX52TRaw[Co1At4Ch4]
+875.67 -0.105723 0.00 !Mu2ChX53TRaw[Co1At4Ch5]
+875.93 -0.105755 0.00 !Mu2ChX54TRaw[Co1At4Ch6]
+877.811 -0.105984 0.00 !Mu2ChX55TRaw[Co1At4Ch7]
+885.543 -0.106931 0.00 !Mu2ChX56TRaw[Co1At4Ch8]
+894.49 -0.108024 0.00 !Mu2ChX57TRaw[Co1At4Ch9]
+896.907 -0.108307 0.00 !Mu2ChX58TRaw[Co1At4Ch10]
+888.44 -0.107279 0.00 !Mu2ChX59TRaw[Co1At4Ch11]
+898.738 -0.108543 0.00 !Mu2ChX60TRaw[Co1At4Ch12]
+900.163 -0.108721 0.00 !Mu2ChX61TRaw[Co1At4Ch13]
+899.711 -0.108665 0.00 !Mu2ChX62TRaw[Co1At4Ch14]
+896.224 -0.10824 0.00 !Mu2ChX63TRaw[Co1At4Ch15]
+893.403 -0.107885 0.00 !Mu2ChX64TRaw[Co1At4Ch16]
+971.844 -0.117533 0.00 !Mu2ChX65TRaw[Co2At1Ch1]
+971.845 -0.117545 0.00 !Mu2ChX66TRaw[Co2At1Ch2]
+983.582 -0.118957 0.00 !Mu2ChX67TRaw[Co2At1Ch3]
+988.69 -0.119584 0.00 !Mu2ChX68TRaw[Co2At1Ch4]
+990.616 -0.119902 0.00 !Mu2ChX69TRaw[Co2At1Ch5]
+992.058 -0.12002 0.00 !Mu2ChX70TRaw[Co2At1Ch6]
+993.193 -0.120171 0.00 !Mu2ChX71TRaw[Co2At1Ch7]
+998.567 -0.120802 0.00 !Mu2ChX72TRaw[Co2At1Ch8]
+991.75 -0.119977 0.00 !Mu2ChX73TRaw[Co2At1Ch9]
+1000.28 -0.12102 0.00 !Mu2ChX74TRaw[Co2At1Ch10]
+996.389 -0.12055 0.00 !Mu2ChX75TRaw[Co2At1Ch11]
+995.946 -0.12048 0.00 !Mu2ChX76TRaw[Co2At1Ch12]
+1005.69 -0.121688 0.00 !Mu2ChX77TRaw[Co2At1Ch13]
+1009.38 -0.122136 0.00 !Mu2ChX78TRaw[Co2At1Ch14]
+1012.08 -0.122472 0.00 !Mu2ChX79TRaw[Co2At1Ch15]
+1003.93 -0.121488 0.00 !Mu2ChX80TRaw[Co2At1Ch16]
+952.869 -0.115148 0.00 !Mu2ChX81TRaw[Co2At2Ch1]
+964.034 -0.116512 0.00 !Mu2ChX82TRaw[Co2At2Ch2]
+965.866 -0.116735 0.00 !Mu2ChX83TRaw[Co2At2Ch3]
+969.343 -0.117158 0.00 !Mu2ChX84TRaw[Co2At2Ch4]
+969.333 -0.117159 0.00 !Mu2ChX85TRaw[Co2At2Ch5]
+970.748 -0.117336 0.00 !Mu2ChX86TRaw[Co2At2Ch6]
+984.429 -0.118997 0.00 !Mu2ChX87TRaw[Co2At2Ch7]
+983.229 -0.118879 0.00 !Mu2ChX88TRaw[Co2At2Ch8]
+993.933 -0.120152 0.00 !Mu2ChX89TRaw[Co2At2Ch9]
+993.652 -0.120143 0.00 !Mu2ChX90TRaw[Co2At2Ch10]
+992.615 -0.120011 0.00 !Mu2ChX91TRaw[Co2At2Ch11]
+982.481 -0.118788 0.00 !Mu2ChX92TRaw[Co2At2Ch12]
+997.508 -0.120614 0.00 !Mu2ChX93TRaw[Co2At2Ch13]
+1001.7 -0.12112 0.00 !Mu2ChX94TRaw[Co2At2Ch14]
+1002.51 -0.12123 0.00 !Mu2ChX95TRaw[Co2At2Ch15]
+987.604 -0.119394 0.00 !Mu2ChX96TRaw[Co2At2Ch16]
+901.312 -0.10895 0.00 !Mu2ChX97TRaw[Co2At3Ch1]
+917.986 -0.11099 0.00 !Mu2ChX98TRaw[Co2At3Ch2]
+913.934 -0.110483 0.00 !Mu2ChX99TRaw[Co2At3Ch3]
+913.949 -0.110494 0.00 !Mu2ChX100TRaw[Co2At3Ch4]
+923.435 -0.11163 0.00 !Mu2ChX101TRaw[Co2At3Ch5]
+922.621 -0.111573 0.00 !Mu2ChX102TRaw[Co2At3Ch6]
+921.076 -0.111368 0.00 !Mu2ChX103TRaw[Co2At3Ch7]
+925.346 -0.111888 0.00 !Mu2ChX104TRaw[Co2At3Ch8]
+935.581 -0.113122 0.00 !Mu2ChX105TRaw[Co2At3Ch9]
+932.485 -0.112764 0.00 !Mu2ChX106TRaw[Co2At3Ch10]
+937.5 -0.113373 0.00 !Mu2ChX107TRaw[Co2At3Ch11]
+932.715 -0.112797 0.00 !Mu2ChX108TRaw[Co2At3Ch12]
+935.979 -0.113176 0.00 !Mu2ChX109TRaw[Co2At3Ch13]
+942.445 -0.113973 0.00 !Mu2ChX110TRaw[Co2At3Ch14]
+943.181 -0.114066 0.00 !Mu2ChX111TRaw[Co2At3Ch15]
+942.414 -0.113973 0.00 !Mu2ChX112TRaw[Co2At3Ch16]
+902.2 -0.108961 0.00 !Mu2ChX113TRaw[Co2At4Ch1]
+906.889 -0.109531 0.00 !Mu2ChX114TRaw[Co2At4Ch2]
+914.61 -0.110461 0.00 !Mu2ChX115TRaw[Co2At4Ch3]
+914.139 -0.110414 0.00 !Mu2ChX116TRaw[Co2At4Ch4]
+929.709 -0.112323 0.00 !Mu2ChX117TRaw[Co2At4Ch5]
+932.582 -0.11267 0.00 !Mu2ChX118TRaw[Co2At4Ch6]
+938.012 -0.113333 0.00 !Mu2ChX119TRaw[Co2At4Ch7]
+940.971 -0.113698 0.00 !Mu2ChX120TRaw[Co2At4Ch8]
+940.564 -0.113666 0.00 !Mu2ChX121TRaw[Co2At4Ch9]
+949.44 -0.114745 0.00 !Mu2ChX122TRaw[Co2At4Ch10]
+940.75 -0.113673 0.00 !Mu2ChX123TRaw[Co2At4Ch11]
+946.851 -0.11443 0.00 !Mu2ChX124TRaw[Co2At4Ch12]
+936.518 -0.113174 0.00 !Mu2ChX125TRaw[Co2At4Ch13]
+936.181 -0.113143 0.00 !Mu2ChX126TRaw[Co2At4Ch14]
+944.748 -0.114176 0.00 !Mu2ChX127TRaw[Co2At4Ch15]
+944.971 -0.114186 0.00 !Mu2ChX128TRaw[Co2At4Ch16]
+989.947 -0.119525 0.00 !Mu2ChY1TRaw[Co3At1Ch1]
+993.077 -0.119903 0.00 !Mu2ChY2TRaw[Co3At1Ch2]
+992.258 -0.119776 0.00 !Mu2ChY3TRaw[Co3At1Ch3]
+998.524 -0.120524 0.00 !Mu2ChY4TRaw[Co3At1Ch4]
+1003.53 -0.121165 0.00 !Mu2ChY5TRaw[Co3At1Ch5]
+1001.78 -0.120947 0.00 !Mu2ChY6TRaw[Co3At1Ch6]
+1006.43 -0.121526 0.00 !Mu2ChY7TRaw[Co3At1Ch7]
+1013.44 -0.122366 0.00 !Mu2ChY8TRaw[Co3At1Ch8]
+1014.58 -0.122539 0.00 !Mu2ChY9TRaw[Co3At1Ch9]
+1006.22 -0.121307 0.00 !Mu2ChY10TRaw[Co3At1Ch10]
+1012.4 -0.122275 0.00 !Mu2ChY11TRaw[Co3At1Ch11]
+1017.56 -0.122898 0.00 !Mu2ChY12TRaw[Co3At1Ch12]
+1019.48 -0.12312 0.00 !Mu2ChY13TRaw[Co3At1Ch13]
+1024.68 -0.123746 0.00 !Mu2ChY14TRaw[Co3At1Ch14]
+1023.43 -0.123621 0.00 !Mu2ChY15TRaw[Co3At1Ch15]
+1024.2 -0.123744 0.00 !Mu2ChY16TRaw[Co3At1Ch16]
+942.022 -0.113632 0.00 !Mu2ChY17TRaw[Co3At2Ch1]
+941.851 -0.11359 0.00 !Mu2ChY18TRaw[Co3At2Ch2]
+941.301 -0.113546 0.00 !Mu2ChY19TRaw[Co3At2Ch3]
+941.196 -0.113526 0.00 !Mu2ChY20TRaw[Co3At2Ch4]
+956.339 -0.115367 0.00 !Mu2ChY21TRaw[Co3At2Ch5]
+972.159 -0.117305 0.00 !Mu2ChY22TRaw[Co3At2Ch6]
+968.071 -0.11682 0.00 !Mu2ChY23TRaw[Co3At2Ch7]
+963.198 -0.116216 0.00 !Mu2ChY24TRaw[Co3At2Ch8]
+978.802 -0.118134 0.00 !Mu2ChY25TRaw[Co3At2Ch9]
+981.332 -0.118446 0.00 !Mu2ChY26TRaw[Co3At2Ch10]
+978.515 -0.117858 0.00 !Mu2ChY27TRaw[Co3At2Ch11]
+985.445 -0.11895 0.00 !Mu2ChY28TRaw[Co3At2Ch12]
+979.656 -0.118238 0.00 !Mu2ChY29TRaw[Co3At2Ch13]
+981.57 -0.118468 0.00 !Mu2ChY30TRaw[Co3At2Ch14]
+980.383 -0.118337 0.00 !Mu2ChY31TRaw[Co3At2Ch15]
+968.968 -0.116905 0.00 !Mu2ChY32TRaw[Co3At2Ch16]
+874.116 -0.105393 0.00 !Mu2ChY33TRaw[Co3At3Ch1]
+880.638 -0.106206 0.00 !Mu2ChY34TRaw[Co3At3Ch2]
+893.026 -0.107711 0.00 !Mu2ChY35TRaw[Co3At3Ch3]
+894.339 -0.10786 0.00 !Mu2ChY36TRaw[Co3At3Ch4]
+897.82 -0.108297 0.00 !Mu2ChY37TRaw[Co3At3Ch5]
+892.44 -0.107628 0.00 !Mu2ChY38TRaw[Co3At3Ch6]
+908.152 -0.109574 0.00 !Mu2ChY39TRaw[Co3At3Ch7]
+906.817 -0.109401 0.00 !Mu2ChY40TRaw[Co3At3Ch8]
+909.649 -0.109756 0.00 !Mu2ChY41TRaw[Co3At3Ch9]
+914.061 -0.110304 0.00 !Mu2ChY42TRaw[Co3At3Ch10]
+910.049 -0.10979 0.00 !Mu2ChY43TRaw[Co3At3Ch11]
+913.535 -0.110231 0.00 !Mu2ChY44TRaw[Co3At3Ch12]
+915.986 -0.110532 0.00 !Mu2ChY45TRaw[Co3At3Ch13]
+919.243 -0.110907 0.00 !Mu2ChY46TRaw[Co3At3Ch14]
+922.863 -0.111371 0.00 !Mu2ChY47TRaw[Co3At3Ch15]
+918.091 -0.110791 0.00 !Mu2ChY48TRaw[Co3At3Ch16]
+896.545 -0.108016 0.00 !Mu2ChY49TRaw[Co3At4Ch1]
+905.921 -0.109155 0.00 !Mu2ChY50TRaw[Co3At4Ch2]
+903.191 -0.108834 0.00 !Mu2ChY51TRaw[Co3At4Ch3]
+916.514 -0.110471 0.00 !Mu2ChY52TRaw[Co3At4Ch4]
+909.698 -0.109622 0.00 !Mu2ChY53TRaw[Co3At4Ch5]
+918.472 -0.110708 0.00 !Mu2ChY54TRaw[Co3At4Ch6]
+921.934 -0.111116 0.00 !Mu2ChY55TRaw[Co3At4Ch7]
+917.791 -0.11061 0.00 !Mu2ChY56TRaw[Co3At4Ch8]
+930.463 -0.11216 0.00 !Mu2ChY57TRaw[Co3At4Ch9]
+921.545 -0.111079 0.00 !Mu2ChY58TRaw[Co3At4Ch10]
+924.357 -0.111393 0.00 !Mu2ChY59TRaw[Co3At4Ch11]
+928.134 -0.11168 0.00 !Mu2ChY60TRaw[Co3At4Ch12]
+944.074 -0.11386 0.00 !Mu2ChY61TRaw[Co3At4Ch13]
+929.497 -0.112068 0.00 !Mu2ChY62TRaw[Co3At4Ch14]
+925.938 -0.111623 0.00 !Mu2ChY63TRaw[Co3At4Ch15]
+933.858 -0.112593 0.00 !Mu2ChY64TRaw[Co3At4Ch16]
+926.3 -0.111864 0.00 !Mu2ChY65TRaw[Co4At1Ch1]
+945.736 -0.114242 0.00 !Mu2ChY66TRaw[Co4At1Ch2]
+950.053 -0.114763 0.00 !Mu2ChY67TRaw[Co4At1Ch3]
+947.803 -0.114477 0.00 !Mu2ChY68TRaw[Co4At1Ch4]
+974.181 -0.117701 0.00 !Mu2ChY69TRaw[Co4At1Ch5]
+962.11 -0.116242 0.00 !Mu2ChY70TRaw[Co4At1Ch6]
+969.683 -0.117144 0.00 !Mu2ChY71TRaw[Co4At1Ch7]
+966.661 -0.116783 0.00 !Mu2ChY72TRaw[Co4At1Ch8]
+958.107 -0.115747 0.00 !Mu2ChY73TRaw[Co4At1Ch9]
+960.237 -0.115989 0.00 !Mu2ChY74TRaw[Co4At1Ch10]
+966.385 -0.116762 0.00 !Mu2ChY75TRaw[Co4At1Ch11]
+979.2 -0.118324 0.00 !Mu2ChY76TRaw[Co4At1Ch12]
+975.406 -0.117892 0.00 !Mu2ChY77TRaw[Co4At1Ch13]
+977.792 -0.118194 0.00 !Mu2ChY78TRaw[Co4At1Ch14]
+968.878 -0.117092 0.00 !Mu2ChY79TRaw[Co4At1Ch15]
+971.01 -0.117343 0.00 !Mu2ChY80TRaw[Co4At1Ch16]
+946.074 -0.114246 0.00 !Mu2ChY81TRaw[Co4At2Ch1]
+940.751 -0.113582 0.00 !Mu2ChY82TRaw[Co4At2Ch2]
+952.983 -0.115097 0.00 !Mu2ChY83TRaw[Co4At2Ch3]
+948.889 -0.114574 0.00 !Mu2ChY84TRaw[Co4At2Ch4]
+957.63 -0.115653 0.00 !Mu2ChY85TRaw[Co4At2Ch5]
+968.091 -0.11692 0.00 !Mu2ChY86TRaw[Co4At2Ch6]
+966.176 -0.116695 0.00 !Mu2ChY87TRaw[Co4At2Ch7]
+971.862 -0.117388 0.00 !Mu2ChY88TRaw[Co4At2Ch8]
+974.809 -0.117739 0.00 !Mu2ChY89TRaw[Co4At2Ch9]
+976.466 -0.11797 0.00 !Mu2ChY90TRaw[Co4At2Ch10]
+981.048 -0.118525 0.00 !Mu2ChY91TRaw[Co4At2Ch11]
+971.816 -0.117371 0.00 !Mu2ChY92TRaw[Co4At2Ch12]
+979.537 -0.118331 0.00 !Mu2ChY93TRaw[Co4At2Ch13]
+979.044 -0.118283 0.00 !Mu2ChY94TRaw[Co4At2Ch14]
+986.328 -0.119174 0.00 !Mu2ChY95TRaw[Co4At2Ch15]
+991.309 -0.119806 0.00 !Mu2ChY96TRaw[Co4At2Ch16]
+899.526 -0.108639 0.00 !Mu2ChY97TRaw[Co4At3Ch1]
+896.011 -0.108189 0.00 !Mu2ChY98TRaw[Co4At3Ch2]
+906.665 -0.109474 0.00 !Mu2ChY99TRaw[Co4At3Ch3]
+905.068 -0.109308 0.00 !Mu2ChY100TRaw[Co4At3Ch4]
+919.012 -0.110997 0.00 !Mu2ChY101TRaw[Co4At3Ch5]
+926.674 -0.111938 0.00 !Mu2ChY102TRaw[Co4At3Ch6]
+916.909 -0.110746 0.00 !Mu2ChY103TRaw[Co4At3Ch7]
+932.767 -0.112691 0.00 !Mu2ChY104TRaw[Co4At3Ch8]
+927.33 -0.112025 0.00 !Mu2ChY105TRaw[Co4At3Ch9]
+923.243 -0.111507 0.00 !Mu2ChY106TRaw[Co4At3Ch10]
+924.408 -0.111663 0.00 !Mu2ChY107TRaw[Co4At3Ch11]
+924.057 -0.111623 0.00 !Mu2ChY108TRaw[Co4At3Ch12]
+927.531 -0.112066 0.00 !Mu2ChY109TRaw[Co4At3Ch13]
+928.251 -0.11214 0.00 !Mu2ChY110TRaw[Co4At3Ch14]
+924.467 -0.111703 0.00 !Mu2ChY111TRaw[Co4At3Ch15]
+914.871 -0.110525 0.00 !Mu2ChY112TRaw[Co4At3Ch16]
+854.155 -0.102981 0.00 !Mu2ChY113TRaw[Co4At4Ch1]
+870.733 -0.104976 0.00 !Mu2ChY114TRaw[Co4At4Ch2]
+878.476 -0.105936 0.00 !Mu2ChY115TRaw[Co4At4Ch3]
+876.793 -0.10575 0.00 !Mu2ChY116TRaw[Co4At4Ch4]
+884.881 -0.106741 0.00 !Mu2ChY117TRaw[Co4At4Ch5]
+881.171 -0.10628 0.00 !Mu2ChY118TRaw[Co4At4Ch6]
+893.636 -0.107805 0.00 !Mu2ChY119TRaw[Co4At4Ch7]
+894.919 -0.107966 0.00 !Mu2ChY120TRaw[Co4At4Ch8]
+885.067 -0.106759 0.00 !Mu2ChY121TRaw[Co4At4Ch9]
+898.226 -0.108381 0.00 !Mu2ChY122TRaw[Co4At4Ch10]
+896.617 -0.108195 0.00 !Mu2ChY123TRaw[Co4At4Ch11]
+896.617 -0.108195 0.00 !Mu2ChY124TRaw[Co4At4Ch12]
+899.421 -0.108519 0.00 !Mu2ChY125TRaw[Co4At4Ch13]
+900.193 -0.10863 0.00 !Mu2ChY126TRaw[Co4At4Ch14]
+901.229 -0.108768 0.00 !Mu2ChY127TRaw[Co4At4Ch15]
+897.311 -0.108297 0.00 !Mu2ChY128TRaw[Co4At4Ch16]
+938.354 -0.113591 0.00 !Mu3ChX1TRaw[Co1At1Ch1]
+952.054 -0.115254 0.00 !Mu3ChX2TRaw[Co1At1Ch2]
+956.534 -0.115822 0.00 !Mu3ChX3TRaw[Co1At1Ch3]
+958.488 -0.116042 0.00 !Mu3ChX4TRaw[Co1At1Ch4]
+950.724 -0.115096 0.00 !Mu3ChX5TRaw[Co1At1Ch5]
+965.196 -0.11686 0.00 !Mu3ChX6TRaw[Co1At1Ch6]
+969.308 -0.117385 0.00 !Mu3ChX7TRaw[Co1At1Ch7]
+974.569 -0.118019 0.00 !Mu3ChX8TRaw[Co1At1Ch8]
+972.643 -0.117779 0.00 !Mu3ChX9TRaw[Co1At1Ch9]
+970.352 -0.117496 0.00 !Mu3ChX10TRaw[Co1At1Ch10]
+972.778 -0.117795 0.00 !Mu3ChX11TRaw[Co1At1Ch11]
+984.9 -0.119273 0.00 !Mu3ChX12TRaw[Co1At1Ch12]
+974.806 -0.118031 0.00 !Mu3ChX13TRaw[Co1At1Ch13]
+981.032 -0.118805 0.00 !Mu3ChX14TRaw[Co1At1Ch14]
+978.727 -0.118524 0.00 !Mu3ChX15TRaw[Co1At1Ch15]
+983.561 -0.119127 0.00 !Mu3ChX16TRaw[Co1At1Ch16]
+967.055 -0.117029 0.00 !Mu3ChX17TRaw[Co1At2Ch1]
+963.403 -0.116582 0.00 !Mu3ChX18TRaw[Co1At2Ch2]
+982.136 -0.11886 0.00 !Mu3ChX19TRaw[Co1At2Ch3]
+978.048 -0.118386 0.00 !Mu3ChX20TRaw[Co1At2Ch4]
+985.228 -0.119229 0.00 !Mu3ChX21TRaw[Co1At2Ch5]
+992.422 -0.120114 0.00 !Mu3ChX22TRaw[Co1At2Ch6]
+984.595 -0.119177 0.00 !Mu3ChX23TRaw[Co1At2Ch7]
+988.858 -0.119693 0.00 !Mu3ChX24TRaw[Co1At2Ch8]
+986.58 -0.119405 0.00 !Mu3ChX25TRaw[Co1At2Ch9]
+987.489 -0.119523 0.00 !Mu3ChX26TRaw[Co1At2Ch10]
+1000.74 -0.12115 0.00 !Mu3ChX27TRaw[Co1At2Ch11]
+996.509 -0.120628 0.00 !Mu3ChX28TRaw[Co1At2Ch12]
+1006.69 -0.121885 0.00 !Mu3ChX29TRaw[Co1At2Ch13]
+999.766 -0.121035 0.00 !Mu3ChX30TRaw[Co1At2Ch14]
+1001.37 -0.121233 0.00 !Mu3ChX31TRaw[Co1At2Ch15]
+996.617 -0.120654 0.00 !Mu3ChX32TRaw[Co1At2Ch16]
+898.105 -0.108693 0.00 !Mu3ChX33TRaw[Co1At3Ch1]
+904.446 -0.109485 0.00 !Mu3ChX34TRaw[Co1At3Ch2]
+912.143 -0.110421 0.00 !Mu3ChX35TRaw[Co1At3Ch3]
+905.421 -0.109588 0.00 !Mu3ChX36TRaw[Co1At3Ch4]
+911.321 -0.110301 0.00 !Mu3ChX37TRaw[Co1At3Ch5]
+919.499 -0.111327 0.00 !Mu3ChX38TRaw[Co1At3Ch6]
+921.109 -0.111495 0.00 !Mu3ChX39TRaw[Co1At3Ch7]
+929.489 -0.112521 0.00 !Mu3ChX40TRaw[Co1At3Ch8]
+937.068 -0.11347 0.00 !Mu3ChX41TRaw[Co1At3Ch9]
+930.942 -0.112717 0.00 !Mu3ChX42TRaw[Co1At3Ch10]
+927.894 -0.112335 0.00 !Mu3ChX43TRaw[Co1At3Ch11]
+932.632 -0.112964 0.00 !Mu3ChX44TRaw[Co1At3Ch12]
+935.332 -0.113245 0.00 !Mu3ChX45TRaw[Co1At3Ch13]
+929.857 -0.11258 0.00 !Mu3ChX46TRaw[Co1At3Ch14]
+937.136 -0.113476 0.00 !Mu3ChX47TRaw[Co1At3Ch15]
+935.398 -0.113256 0.00 !Mu3ChX48TRaw[Co1At3Ch16]
+866.015 -0.104661 0.00 !Mu3ChX49TRaw[Co1At4Ch1]
+865.76 -0.104634 0.00 !Mu3ChX50TRaw[Co1At4Ch2]
+878.223 -0.106155 0.00 !Mu3ChX51TRaw[Co1At4Ch3]
+888.186 -0.107364 0.00 !Mu3ChX52TRaw[Co1At4Ch4]
+888.209 -0.107368 0.00 !Mu3ChX53TRaw[Co1At4Ch5]
+884.13 -0.106861 0.00 !Mu3ChX54TRaw[Co1At4Ch6]
+896.431 -0.108382 0.00 !Mu3ChX55TRaw[Co1At4Ch7]
+899.348 -0.108733 0.00 !Mu3ChX56TRaw[Co1At4Ch8]
+896.795 -0.10844 0.00 !Mu3ChX57TRaw[Co1At4Ch9]
+902.052 -0.10908 0.00 !Mu3ChX58TRaw[Co1At4Ch10]
+897.684 -0.108538 0.00 !Mu3ChX59TRaw[Co1At4Ch11]
+897.274 -0.10849 0.00 !Mu3ChX60TRaw[Co1At4Ch12]
+903.963 -0.109312 0.00 !Mu3ChX61TRaw[Co1At4Ch13]
+905.108 -0.109445 0.00 !Mu3ChX62TRaw[Co1At4Ch14]
+891.538 -0.107803 0.00 !Mu3ChX63TRaw[Co1At4Ch15]
+900.293 -0.108862 0.00 !Mu3ChX64TRaw[Co1At4Ch16]
+985.824 -0.119126 0.00 !Mu3ChX65TRaw[Co2At1Ch1]
+991.541 -0.119789 0.00 !Mu3ChX66TRaw[Co2At1Ch2]
+991.866 -0.119851 0.00 !Mu3ChX67TRaw[Co2At1Ch3]
+1007.5 -0.121753 0.00 !Mu3ChX68TRaw[Co2At1Ch4]
+1008.13 -0.121824 0.00 !Mu3ChX69TRaw[Co2At1Ch5]
+1004.87 -0.121446 0.00 !Mu3ChX70TRaw[Co2At1Ch6]
+1008.48 -0.121893 0.00 !Mu3ChX71TRaw[Co2At1Ch7]
+1012.14 -0.122347 0.00 !Mu3ChX72TRaw[Co2At1Ch8]
+1008.38 -0.121883 0.00 !Mu3ChX73TRaw[Co2At1Ch9]
+1014.86 -0.122684 0.00 !Mu3ChX74TRaw[Co2At1Ch10]
+1023.57 -0.123722 0.00 !Mu3ChX75TRaw[Co2At1Ch11]
+1033.42 -0.124938 0.00 !Mu3ChX76TRaw[Co2At1Ch12]
+1015.34 -0.122709 0.00 !Mu3ChX77TRaw[Co2At1Ch13]
+1014.72 -0.12265 0.00 !Mu3ChX78TRaw[Co2At1Ch14]
+1026.27 -0.124061 0.00 !Mu3ChX79TRaw[Co2At1Ch15]
+1019.9 -0.123313 0.00 !Mu3ChX80TRaw[Co2At1Ch16]
+942.714 -0.11381 0.00 !Mu3ChX81TRaw[Co2At2Ch1]
+949.104 -0.114558 0.00 !Mu3ChX82TRaw[Co2At2Ch2]
+952.48 -0.114986 0.00 !Mu3ChX83TRaw[Co2At2Ch3]
+951.022 -0.114804 0.00 !Mu3ChX84TRaw[Co2At2Ch4]
+965.822 -0.116619 0.00 !Mu3ChX85TRaw[Co2At2Ch5]
+968.345 -0.11693 0.00 !Mu3ChX86TRaw[Co2At2Ch6]
+962.99 -0.116299 0.00 !Mu3ChX87TRaw[Co2At2Ch7]
+967.787 -0.116863 0.00 !Mu3ChX88TRaw[Co2At2Ch8]
+978.317 -0.118161 0.00 !Mu3ChX89TRaw[Co2At2Ch9]
+974.374 -0.117687 0.00 !Mu3ChX90TRaw[Co2At2Ch10]
+979.507 -0.118304 0.00 !Mu3ChX91TRaw[Co2At2Ch11]
+987.225 -0.119256 0.00 !Mu3ChX92TRaw[Co2At2Ch12]
+987.195 -0.119241 0.00 !Mu3ChX93TRaw[Co2At2Ch13]
+986.603 -0.119186 0.00 !Mu3ChX94TRaw[Co2At2Ch14]
+984.211 -0.118879 0.00 !Mu3ChX95TRaw[Co2At2Ch15]
+979.288 -0.118278 0.00 !Mu3ChX96TRaw[Co2At2Ch16]
+862.689 -0.104124 0.00 !Mu3ChX97TRaw[Co2At3Ch1]
+867.813 -0.104728 0.00 !Mu3ChX98TRaw[Co2At3Ch2]
+867.895 -0.104753 0.00 !Mu3ChX99TRaw[Co2At3Ch3]
+873.835 -0.105492 0.00 !Mu3ChX100TRaw[Co2At3Ch4]
+883.843 -0.106693 0.00 !Mu3ChX101TRaw[Co2At3Ch5]
+879.494 -0.10614 0.00 !Mu3ChX102TRaw[Co2At3Ch6]
+883.805 -0.106708 0.00 !Mu3ChX103TRaw[Co2At3Ch7]
+882.86 -0.106567 0.00 !Mu3ChX104TRaw[Co2At3Ch8]
+891.887 -0.107671 0.00 !Mu3ChX105TRaw[Co2At3Ch9]
+896.27 -0.108216 0.00 !Mu3ChX106TRaw[Co2At3Ch10]
+888.15 -0.107225 0.00 !Mu3ChX107TRaw[Co2At3Ch11]
+899.039 -0.108561 0.00 !Mu3ChX108TRaw[Co2At3Ch12]
+899.371 -0.108609 0.00 !Mu3ChX109TRaw[Co2At3Ch13]
+896.002 -0.108191 0.00 !Mu3ChX110TRaw[Co2At3Ch14]
+905.511 -0.109337 0.00 !Mu3ChX111TRaw[Co2At3Ch15]
+900.32 -0.108709 0.00 !Mu3ChX112TRaw[Co2At3Ch16]
+859.472 -0.103629 0.00 !Mu3ChX113TRaw[Co2At4Ch1]
+869.213 -0.10481 0.00 !Mu3ChX114TRaw[Co2At4Ch2]
+869.978 -0.1049 0.00 !Mu3ChX115TRaw[Co2At4Ch3]
+876.122 -0.105647 0.00 !Mu3ChX116TRaw[Co2At4Ch4]
+788.143 -0.126949 0.00 !Mu3ChX117TRaw[Co2At4Ch5]
+880.15 -0.106145 0.00 !Mu3ChX118TRaw[Co2At4Ch6]
+887.525 -0.107055 0.00 !Mu3ChX119TRaw[Co2At4Ch7]
+884.874 -0.10675 0.00 !Mu3ChX120TRaw[Co2At4Ch8]
+888.126 -0.107137 0.00 !Mu3ChX121TRaw[Co2At4Ch9]
+892.007 -0.107599 0.00 !Mu3ChX122TRaw[Co2At4Ch10]
+887.829 -0.107093 0.00 !Mu3ChX123TRaw[Co2At4Ch11]
+897.245 -0.108252 0.00 !Mu3ChX124TRaw[Co2At4Ch12]
+891.27 -0.107522 0.00 !Mu3ChX125TRaw[Co2At4Ch13]
+898.089 -0.108336 0.00 !Mu3ChX126TRaw[Co2At4Ch14]
+885.342 -0.106793 0.00 !Mu3ChX127TRaw[Co2At4Ch15]
+894.433 -0.107896 0.00 !Mu3ChX128TRaw[Co2At4Ch16]
+920.954 -0.11121 0.00 !Mu3ChY1TRaw[Co3At1Ch1]
+928.777 -0.112154 0.00 !Mu3ChY2TRaw[Co3At1Ch2]
+937.754 -0.113241 0.00 !Mu3ChY3TRaw[Co3At1Ch3]
+947.224 -0.114409 0.00 !Mu3ChY4TRaw[Co3At1Ch4]
+944.162 -0.114032 0.00 !Mu3ChY5TRaw[Co3At1Ch5]
+951.968 -0.114994 0.00 !Mu3ChY6TRaw[Co3At1Ch6]
+956.591 -0.115552 0.00 !Mu3ChY7TRaw[Co3At1Ch7]
+956.368 -0.115546 0.00 !Mu3ChY8TRaw[Co3At1Ch8]
+964.281 -0.116506 0.00 !Mu3ChY9TRaw[Co3At1Ch9]
+968.513 -0.117006 0.00 !Mu3ChY10TRaw[Co3At1Ch10]
+970.24 -0.117251 0.00 !Mu3ChY11TRaw[Co3At1Ch11]
+969.011 -0.117093 0.00 !Mu3ChY12TRaw[Co3At1Ch12]
+978.827 -0.118272 0.00 !Mu3ChY13TRaw[Co3At1Ch13]
+985.112 -0.119048 0.00 !Mu3ChY14TRaw[Co3At1Ch14]
+977.123 -0.118075 0.00 !Mu3ChY15TRaw[Co3At1Ch15]
+983.985 -0.118941 0.00 !Mu3ChY16TRaw[Co3At1Ch16]
+970.371 -0.117174 0.00 !Mu3ChY17TRaw[Co3At2Ch1]
+984.045 -0.118815 0.00 !Mu3ChY18TRaw[Co3At2Ch2]
+985.023 -0.118931 0.00 !Mu3ChY19TRaw[Co3At2Ch3]
+990.894 -0.119638 0.00 !Mu3ChY20TRaw[Co3At2Ch4]
+996.439 -0.12034 0.00 !Mu3ChY21TRaw[Co3At2Ch5]
+1006.18 -0.121551 0.00 !Mu3ChY22TRaw[Co3At2Ch6]
+1001.89 -0.120998 0.00 !Mu3ChY23TRaw[Co3At2Ch7]
+996.258 -0.120321 0.00 !Mu3ChY24TRaw[Co3At2Ch8]
+1002.35 -0.121073 0.00 !Mu3ChY25TRaw[Co3At2Ch9]
+1008.58 -0.121839 0.00 !Mu3ChY26TRaw[Co3At2Ch10]
+1008.51 -0.121856 0.00 !Mu3ChY27TRaw[Co3At2Ch11]
+1015.07 -0.122649 0.00 !Mu3ChY28TRaw[Co3At2Ch12]
+1018.24 -0.12302 0.00 !Mu3ChY29TRaw[Co3At2Ch13]
+1007.23 -0.121668 0.00 !Mu3ChY30TRaw[Co3At2Ch14]
+1016.39 -0.122794 0.00 !Mu3ChY31TRaw[Co3At2Ch15]
+1017.37 -0.122927 0.00 !Mu3ChY32TRaw[Co3At2Ch16]
+873.601 -0.105446 0.00 !Mu3ChY33TRaw[Co3At3Ch1]
+870.737 -0.105092 0.00 !Mu3ChY34TRaw[Co3At3Ch2]
+875.902 -0.10573 0.00 !Mu3ChY35TRaw[Co3At3Ch3]
+872.76 -0.105345 0.00 !Mu3ChY36TRaw[Co3At3Ch4]
+884.229 -0.106744 0.00 !Mu3ChY37TRaw[Co3At3Ch5]
+883.52 -0.106654 0.00 !Mu3ChY38TRaw[Co3At3Ch6]
+888.675 -0.107294 0.00 !Mu3ChY39TRaw[Co3At3Ch7]
+897.411 -0.108361 0.00 !Mu3ChY40TRaw[Co3At3Ch8]
+894.272 -0.10799 0.00 !Mu3ChY41TRaw[Co3At3Ch9]
+898.134 -0.10846 0.00 !Mu3ChY42TRaw[Co3At3Ch10]
+907.563 -0.109593 0.00 !Mu3ChY43TRaw[Co3At3Ch11]
+904.332 -0.109195 0.00 !Mu3ChY44TRaw[Co3At3Ch12]
+899.078 -0.108568 0.00 !Mu3ChY45TRaw[Co3At3Ch13]
+909.287 -0.109804 0.00 !Mu3ChY46TRaw[Co3At3Ch14]
+912.926 -0.110263 0.00 !Mu3ChY47TRaw[Co3At3Ch15]
+905.69 -0.109382 0.00 !Mu3ChY48TRaw[Co3At3Ch16]
+879.206 -0.105997 0.00 !Mu3ChY49TRaw[Co3At4Ch1]
+885.638 -0.106772 0.00 !Mu3ChY50TRaw[Co3At4Ch2]
+897.352 -0.108217 0.00 !Mu3ChY51TRaw[Co3At4Ch3]
+900.017 -0.108527 0.00 !Mu3ChY52TRaw[Co3At4Ch4]
+894.065 -0.107825 0.00 !Mu3ChY53TRaw[Co3At4Ch5]
+902.563 -0.108862 0.00 !Mu3ChY54TRaw[Co3At4Ch6]
+907.447 -0.109456 0.00 !Mu3ChY55TRaw[Co3At4Ch7]
+913.155 -0.110152 0.00 !Mu3ChY56TRaw[Co3At4Ch8]
+917.884 -0.110718 0.00 !Mu3ChY57TRaw[Co3At4Ch9]
+916.39 -0.11056 0.00 !Mu3ChY58TRaw[Co3At4Ch10]
+925.29 -0.111636 0.00 !Mu3ChY59TRaw[Co3At4Ch11]
+911.348 -0.109934 0.00 !Mu3ChY60TRaw[Co3At4Ch12]
+924.685 -0.111581 0.00 !Mu3ChY61TRaw[Co3At4Ch13]
+925.584 -0.111694 0.00 !Mu3ChY62TRaw[Co3At4Ch14]
+920.738 -0.1111 0.00 !Mu3ChY63TRaw[Co3At4Ch15]
+923.494 -0.11144 0.00 !Mu3ChY64TRaw[Co3At4Ch16]
+904.406 -0.109216 0.00 !Mu3ChY65TRaw[Co4At1Ch1]
+911.098 -0.110026 0.00 !Mu3ChY66TRaw[Co4At1Ch2]
+911.599 -0.110106 0.00 !Mu3ChY67TRaw[Co4At1Ch3]
+920.222 -0.11114 0.00 !Mu3ChY68TRaw[Co4At1Ch4]
+931.355 -0.11252 0.00 !Mu3ChY69TRaw[Co4At1Ch5]
+939.668 -0.113544 0.00 !Mu3ChY70TRaw[Co4At1Ch6]
+932.714 -0.112672 0.00 !Mu3ChY71TRaw[Co4At1Ch7]
+931.288 -0.112491 0.00 !Mu3ChY72TRaw[Co4At1Ch8]
+947.183 -0.114462 0.00 !Mu3ChY73TRaw[Co4At1Ch9]
+939.764 -0.11354 0.00 !Mu3ChY74TRaw[Co4At1Ch10]
+955.625 -0.115517 0.00 !Mu3ChY75TRaw[Co4At1Ch11]
+952.282 -0.115086 0.00 !Mu3ChY76TRaw[Co4At1Ch12]
+964.745 -0.116618 0.00 !Mu3ChY77TRaw[Co4At1Ch13]
+953.345 -0.115232 0.00 !Mu3ChY78TRaw[Co4At1Ch14]
+945.988 -0.114343 0.00 !Mu3ChY79TRaw[Co4At1Ch15]
+951.047 -0.114947 0.00 !Mu3ChY80TRaw[Co4At1Ch16]
+970.943 -0.117288 0.00 !Mu3ChY81TRaw[Co4At2Ch1]
+982.69 -0.118727 0.00 !Mu3ChY82TRaw[Co4At2Ch2]
+988.906 -0.119474 0.00 !Mu3ChY83TRaw[Co4At2Ch3]
+992.522 -0.119909 0.00 !Mu3ChY84TRaw[Co4At2Ch4]
+994.13 -0.120116 0.00 !Mu3ChY85TRaw[Co4At2Ch5]
+1001.12 -0.120975 0.00 !Mu3ChY86TRaw[Co4At2Ch6]
+998.108 -0.120606 0.00 !Mu3ChY87TRaw[Co4At2Ch7]
+999.312 -0.12076 0.00 !Mu3ChY88TRaw[Co4At2Ch8]
+1004.15 -0.121336 0.00 !Mu3ChY89TRaw[Co4At2Ch9]
+1015.36 -0.122713 0.00 !Mu3ChY90TRaw[Co4At2Ch10]
+1018.49 -0.1231 0.00 !Mu3ChY91TRaw[Co4At2Ch11]
+1006.74 -0.121678 0.00 !Mu3ChY92TRaw[Co4At2Ch12]
+1015.03 -0.122697 0.00 !Mu3ChY93TRaw[Co4At2Ch13]
+1018.29 -0.123087 0.00 !Mu3ChY94TRaw[Co4At2Ch14]
+1010.39 -0.122144 0.00 !Mu3ChY95TRaw[Co4At2Ch15]
+1011.64 -0.122274 0.00 !Mu3ChY96TRaw[Co4At2Ch16]
+874.337 -0.105573 0.00 !Mu3ChY97TRaw[Co4At3Ch1]
+871.593 -0.105224 0.00 !Mu3ChY98TRaw[Co4At3Ch2]
+876.164 -0.105791 0.00 !Mu3ChY99TRaw[Co4At3Ch3]
+885.298 -0.106904 0.00 !Mu3ChY100TRaw[Co4At3Ch4]
+892.528 -0.107789 0.00 !Mu3ChY101TRaw[Co4At3Ch5]
+892.165 -0.107742 0.00 !Mu3ChY102TRaw[Co4At3Ch6]
+903.16 -0.109085 0.00 !Mu3ChY103TRaw[Co4At3Ch7]
+895.161 -0.108126 0.00 !Mu3ChY104TRaw[Co4At3Ch8]
+902.34 -0.108999 0.00 !Mu3ChY105TRaw[Co4At3Ch9]
+894.856 -0.108068 0.00 !Mu3ChY106TRaw[Co4At3Ch10]
+894.177 -0.108006 0.00 !Mu3ChY107TRaw[Co4At3Ch11]
+903.343 -0.109125 0.00 !Mu3ChY108TRaw[Co4At3Ch12]
+905.571 -0.109439 0.00 !Mu3ChY109TRaw[Co4At3Ch13]
+903.69 -0.109168 0.00 !Mu3ChY110TRaw[Co4At3Ch14]
+899.215 -0.108625 0.00 !Mu3ChY111TRaw[Co4At3Ch15]
+905.657 -0.109416 0.00 !Mu3ChY112TRaw[Co4At3Ch16]
+891.482 -0.107554 0.00 !Mu3ChY113TRaw[Co4At4Ch1]
+898.972 -0.108473 0.00 !Mu3ChY114TRaw[Co4At4Ch2]
+902.164 -0.108848 0.00 !Mu3ChY115TRaw[Co4At4Ch3]
+897.423 -0.108292 0.00 !Mu3ChY116TRaw[Co4At4Ch4]
+905.477 -0.109288 0.00 !Mu3ChY117TRaw[Co4At4Ch5]
+910.936 -0.109943 0.00 !Mu3ChY118TRaw[Co4At4Ch6]
+909.486 -0.109765 0.00 !Mu3ChY119TRaw[Co4At4Ch7]
+908.693 -0.109672 0.00 !Mu3ChY120TRaw[Co4At4Ch8]
+915.535 -0.110512 0.00 !Mu3ChY121TRaw[Co4At4Ch9]
+924.289 -0.111588 0.00 !Mu3ChY122TRaw[Co4At4Ch10]
+926.875 -0.111915 0.00 !Mu3ChY123TRaw[Co4At4Ch11]
+909.469 -0.109772 0.00 !Mu3ChY124TRaw[Co4At4Ch12]
+913.618 -0.11029 0.00 !Mu3ChY125TRaw[Co4At4Ch13]
+919.137 -0.110947 0.00 !Mu3ChY126TRaw[Co4At4Ch14]
+920.413 -0.111116 0.00 !Mu3ChY127TRaw[Co4At4Ch15]
+928.523 -0.112131 0.00 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Coeff/Cal_Str_X_T_MM1_run_0200.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Coeff/Cal_Str_X_T_MM1_run_0200.cal
new file mode 100644
index 0000000000000000000000000000000000000000..75fd18aa4723e482e5d79901e3e272b5f58b002e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Coeff/Cal_Str_X_T_MM1_run_0200.cal
@@ -0,0 +1,64 @@
+MUSETT_T1_DSSD_X1_T 954.599 -0.121763	7.01384e-07
+MUSETT_T1_DSSD_X2_T 967.922 -0.123541	7.26055e-07
+MUSETT_T1_DSSD_X3_T 961.88 -0.122284	6.0757e-07
+MUSETT_T1_DSSD_X4_T 978.032 -0.125354	7.20967e-07
+MUSETT_T1_DSSD_X5_T 986.23 -0.125953	7.65489e-07
+MUSETT_T1_DSSD_X6_T 987.96 -0.126599	8.20619e-07
+MUSETT_T1_DSSD_X7_T 984.219 -0.126018	7.27668e-07
+MUSETT_T1_DSSD_X8_T 985.856 -0.124783	6.08173e-07
+MUSETT_T1_DSSD_X9_T 988.949 -0.126482	7.59745e-07
+MUSETT_T1_DSSD_X10_T 992.701 -0.126472	7.16079e-07
+MUSETT_T1_DSSD_X11_T 992.831 -0.126239	6.55316e-07
+MUSETT_T1_DSSD_X12_T 996.87 -0.126281	6.553e-07
+MUSETT_T1_DSSD_X13_T 1006.36 -0.127949	7.17096e-07
+MUSETT_T1_DSSD_X14_T 987.503 -0.124659	5.90654e-07
+MUSETT_T1_DSSD_X15_T 1000.36 -0.127793	7.46879e-07
+MUSETT_T1_DSSD_X16_T 986.25 -0.12444	5.59837e-07
+MUSETT_T1_DSSD_X17_T 964.954 -0.122665	6.71169e-07
+MUSETT_T1_DSSD_X18_T 963.006 -0.11643	9.6873e-11
+MUSETT_T1_DSSD_X19_T 987.209 -0.124488	5.84763e-07
+MUSETT_T1_DSSD_X20_T 971.846 -0.117514	-5.4511e-08
+MUSETT_T1_DSSD_X21_T 987.621 -0.120137	6.81102e-08
+MUSETT_T1_DSSD_X22_T 976.231 -0.118639	4.23294e-11
+MUSETT_T1_DSSD_X23_T 981.587 -0.118294	-1.32395e-07
+MUSETT_T1_DSSD_X24_T 1006.36 -0.127949	7.17101e-07
+MUSETT_T1_DSSD_X25_T 981.565 -0.118872	-4.11001e-08
+MUSETT_T1_DSSD_X26_T 1004.98 -0.12628	5.06616e-07
+MUSETT_T1_DSSD_X27_T 997.459 -0.120096	-8.3353e-08
+MUSETT_T1_DSSD_X28_T 1003.43 -0.121364	-9.94967e-09
+MUSETT_T1_DSSD_X29_T 995.999 -0.120457	-5.8383e-08
+MUSETT_T1_DSSD_X30_T 995.815 -0.120512	-3.87946e-08
+MUSETT_T1_DSSD_X31_T 1005.12 -0.128179	7.04129e-07
+MUSETT_T1_DSSD_X32_T 992.127 -0.120162	1.69201e-08
+MUSETT_T1_DSSD_X33_T 883.917 -0.114701	8.52186e-07
+MUSETT_T1_DSSD_X34_T 881.153 -0.113932	8.15362e-07
+MUSETT_T1_DSSD_X35_T 896.635 -0.115598	7.58613e-07
+MUSETT_T1_DSSD_X36_T 887.918 -0.11403	7.36313e-07
+MUSETT_T1_DSSD_X37_T 886.863 -0.113974	7.12182e-07
+MUSETT_T1_DSSD_X38_T 904.09 -0.116967	8.13585e-07
+MUSETT_T1_DSSD_X39_T 899.906 -0.115007	6.31382e-07
+MUSETT_T1_DSSD_X40_T 905.286 -0.1165	7.84653e-07
+MUSETT_T1_DSSD_X41_T 892.708 -0.108895	4.19165e-08
+MUSETT_T1_DSSD_X42_T 908.746 -0.116546	7.39379e-07
+MUSETT_T1_DSSD_X43_T 906.086 -0.116933	7.82491e-07
+MUSETT_T1_DSSD_X44_T 915.4 -0.117122	7.33411e-07
+MUSETT_T1_DSSD_X45_T 912.244 -0.117268	7.89631e-07
+MUSETT_T1_DSSD_X46_T 908.165 -0.116835	8.01145e-07
+MUSETT_T1_DSSD_X47_T 903.121 -0.116119	7.29519e-07
+MUSETT_T1_DSSD_X48_T 903.827 -0.116056	7.04315e-07
+MUSETT_T1_DSSD_X49_T 896.544 -0.114638	7.3623e-07
+MUSETT_T1_DSSD_X50_T 895.865 -0.114409	6.78143e-07
+MUSETT_T1_DSSD_X51_T 899.927 -0.1147	6.53573e-07
+MUSETT_T1_DSSD_X52_T 907.668 -0.116135	7.5805e-07
+MUSETT_T1_DSSD_X53_T 915.828 -0.116231	6.31303e-07
+MUSETT_T1_DSSD_X54_T 913.447 -0.115813	5.77349e-07
+MUSETT_T1_DSSD_X55_T 920.745 -0.116359	5.93778e-07
+MUSETT_T1_DSSD_X56_T 920.539 -0.116871	6.04792e-07
+MUSETT_T1_DSSD_X57_T 937.997 -0.119851	7.58037e-07
+MUSETT_T1_DSSD_X58_T 923.581 -0.118299	7.10738e-07
+MUSETT_T1_DSSD_X59_T 936.772 -0.119366	7.14976e-07
+MUSETT_T1_DSSD_X60_T 936.468 -0.119298	6.66735e-07
+MUSETT_T1_DSSD_X61_T 947.735 -0.120999	7.29801e-07
+MUSETT_T1_DSSD_X62_T 952.292 -0.123036	8.82113e-07
+MUSETT_T1_DSSD_X63_T 953.571 -0.121901	7.55376e-07
+MUSETT_T1_DSSD_X64_T 936.886 -0.119031	6.42594e-07
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Coeff/Cal_Str_X_T_MM1_run_0200.peak b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Coeff/Cal_Str_X_T_MM1_run_0200.peak
new file mode 100644
index 0000000000000000000000000000000000000000..572b578455850cfbd5b2ac25ede01f35d6770a13
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Coeff/Cal_Str_X_T_MM1_run_0200.peak
@@ -0,0 +1,1640 @@
+MUSETT_T1_DSSD_X1_T 
+0	3816.18
+1	3992.18
+2	4152.18
+3	4328.18
+4	4504.18
+5	4680.18
+6	4856.18
+7	5032.16
+8	5208.16
+9	5384.18
+10	5560.18
+11	5736.17
+12	5912.18
+13	6088.18
+14	6264.19
+15	6440.18
+16	6616.18
+17	6792.18
+18	6968.18
+19	7144.18
+20	7304.18
+21	7496.18
+22	7656.18
+23	7832.18
+24	8120.16
+MUSETT_T1_DSSD_X2_T 
+0	3864.19
+1	4040.17
+2	4216.2
+3	4392.18
+4	4552.18
+5	4728.18
+6	4904.18
+7	5080.16
+8	5256.18
+9	5416.18
+10	5592.18
+11	5768.18
+12	5944.18
+13	6120.18
+14	6296.18
+15	6456.18
+16	6632.18
+17	6808.18
+18	6984.18
+19	7160.18
+20	7336.18
+21	7496.18
+22	7672.18
+23	7848.18
+24	8120.18
+MUSETT_T1_DSSD_X3_T 
+0	3848.19
+1	4008.18
+2	4184.18
+3	4360.18
+4	4536.18
+5	4712.18
+6	4888.18
+7	5048.16
+8	5224.18
+9	5400.18
+10	5576.18
+11	5752.18
+12	5912.18
+13	6088.18
+14	6264.19
+15	6440.18
+16	6616.18
+17	6776.18
+18	6952.18
+19	7128.18
+20	7304.18
+21	7480.18
+22	7640.18
+23	7816.18
+24	8088.18
+MUSETT_T1_DSSD_X4_T 
+0	3896.19
+1	4056.17
+2	4232.2
+3	4408.18
+4	4568.18
+5	4744.18
+6	4920.18
+7	5080.16
+8	5256.18
+9	5416.18
+10	5592.18
+11	5768.18
+12	5944.18
+13	6104.18
+14	6280.18
+15	6440.18
+16	6616.18
+17	6792.18
+18	6952.18
+19	7128.18
+20	7304.18
+21	7464.18
+22	7640.18
+23	7816.18
+24	8072.18
+MUSETT_T1_DSSD_X5_T 
+0	3944.18
+1	4120.18
+2	4280.2
+3	4456.18
+4	4632.17
+5	4792.18
+6	4968.16
+7	5144.16
+8	5304.18
+9	5480.18
+10	5656.17
+11	5816.18
+12	5992.18
+13	6152.18
+14	6328.18
+15	6504.18
+16	6664.18
+17	6840.18
+18	7016.18
+19	7176.18
+20	7352.18
+21	7528.18
+22	7688.18
+23	7864.18
+24	8136.18
+MUSETT_T1_DSSD_X6_T 
+0	3944.18
+1	4120.18
+2	4280.2
+3	4456.18
+4	4632.17
+5	4792.18
+6	4968.16
+7	5144.16
+8	5304.18
+9	5480.18
+10	5640.17
+11	5816.18
+12	5992.18
+13	6152.18
+14	6328.18
+15	6504.18
+16	6664.18
+17	6840.18
+18	7016.18
+19	7176.18
+20	7352.18
+21	7528.18
+22	7688.18
+23	7864.18
+24	8136.18
+MUSETT_T1_DSSD_X7_T 
+0	3928.18
+1	4088.17
+2	4264.2
+3	4424.18
+4	4600.18
+5	4776.18
+6	4936.18
+7	5112.16
+8	5272.18
+9	5448.18
+10	5624.17
+11	5784.18
+12	5960.18
+13	6120.18
+14	6296.18
+15	6472.18
+16	6632.18
+17	6808.18
+18	6968.18
+19	7144.18
+20	7320.18
+21	7480.18
+22	7656.18
+23	7816.18
+24	8088.18
+MUSETT_T1_DSSD_X8_T 
+0	3800.18
+1	3960.18
+2	4136.18
+3	4296.2
+4	4472.18
+5	4648.17
+6	4808.18
+7	4984.16
+8	5144.16
+9	5320.18
+10	5496.18
+11	5656.17
+12	5832.18
+13	5992.18
+14	6168.18
+15	6328.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7512.18
+23	7688.18
+24	7864.18
+25	8120.18
+MUSETT_T1_DSSD_X9_T 
+0	3944.18
+1	4120.18
+2	4296.2
+3	4456.18
+4	4632.17
+5	4792.18
+6	4968.16
+7	5144.16
+8	5304.18
+9	5480.18
+10	5640.17
+11	5816.18
+12	5976.18
+13	6152.18
+14	6328.18
+15	6488.18
+16	6664.18
+17	6824.18
+18	7000.18
+19	7176.18
+20	7336.18
+21	7512.18
+22	7672.18
+23	7848.18
+24	8120.18
+MUSETT_T1_DSSD_X10_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4488.18
+5	4648.17
+6	4824.18
+7	4984.16
+8	5160.16
+9	5320.18
+10	5496.18
+11	5672.17
+12	5832.18
+13	6008.18
+14	6168.18
+15	6344.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7528.18
+23	7688.18
+24	7864.18
+25	8120.18
+MUSETT_T1_DSSD_X11_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4488.18
+5	4648.17
+6	4824.18
+7	4984.16
+8	5160.16
+9	5320.18
+10	5496.18
+11	5656.17
+12	5832.18
+13	5992.18
+14	6168.18
+15	6328.18
+16	6504.18
+17	6664.18
+18	6840.18
+19	7000.18
+20	7176.18
+21	7336.18
+22	7512.18
+23	7672.18
+24	7848.18
+25	8104.18
+MUSETT_T1_DSSD_X12_T 
+0	3848.19
+1	4008.18
+2	4184.18
+3	4344.18
+4	4520.18
+5	4680.18
+6	4856.18
+7	5016.16
+8	5192.16
+9	5352.18
+10	5528.18
+11	5688.17
+12	5864.18
+13	6024.18
+14	6200.18
+15	6360.18
+16	6536.18
+17	6696.18
+18	6872.18
+19	7032.18
+20	7208.18
+21	7368.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+MUSETT_T1_DSSD_X13_T 
+0	3880.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4536.18
+5	4712.18
+6	4872.18
+7	5048.16
+8	5208.16
+9	5368.18
+10	5544.18
+11	5704.17
+12	5880.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6536.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7208.18
+21	7384.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+MUSETT_T1_DSSD_X14_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4488.18
+5	4664.18
+6	4824.18
+7	5000.16
+8	5160.16
+9	5336.18
+10	5496.18
+11	5672.17
+12	5848.18
+13	6008.18
+14	6184.18
+15	6344.18
+16	6520.18
+17	6696.18
+18	6856.18
+19	7032.18
+20	7192.18
+21	7368.18
+22	7528.18
+23	7704.18
+24	7864.18
+25	8136.18
+MUSETT_T1_DSSD_X15_T 
+0	3832.19
+1	4008.18
+2	4168.18
+3	4344.18
+4	4504.18
+5	4664.18
+6	4840.18
+7	5000.16
+8	5176.16
+9	5336.18
+10	5512.18
+11	5672.17
+12	5848.18
+13	6008.18
+14	6184.18
+15	6344.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7512.18
+23	7688.18
+24	7848.18
+25	8120.18
+MUSETT_T1_DSSD_X16_T 
+0	3800.18
+1	3976.18
+2	4136.18
+3	4312.18
+4	4488.18
+5	4648.17
+6	4824.18
+7	4984.16
+8	5160.16
+9	5320.18
+10	5496.18
+11	5672.17
+12	5832.18
+13	6008.18
+14	6168.18
+15	6344.18
+16	6504.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7528.18
+23	7688.18
+24	7864.18
+25	8120.18
+MUSETT_T1_DSSD_X17_T 
+0	3864.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4552.18
+5	4728.18
+6	4904.18
+7	5080.16
+8	5256.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5944.18
+13	6120.18
+14	6296.18
+15	6472.18
+16	6632.18
+17	6808.18
+18	6984.18
+19	7160.18
+20	7336.18
+21	7512.18
+22	7688.18
+23	7848.18
+24	8120.18
+MUSETT_T1_DSSD_X18_T 
+0	3800.18
+1	3976.18
+2	4152.18
+3	4328.18
+4	4488.18
+5	4664.18
+6	4840.18
+7	5000.16
+8	5176.16
+9	5352.18
+10	5528.18
+11	5688.17
+12	5864.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6552.18
+17	6728.18
+18	6904.18
+19	7064.18
+20	7240.18
+21	7416.18
+22	7576.18
+23	7752.18
+24	7928.18
+25	8104.18
+MUSETT_T1_DSSD_X19_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4328.18
+4	4488.18
+5	4664.18
+6	4824.18
+7	5000.16
+8	5176.16
+9	5336.18
+10	5512.18
+11	5672.17
+12	5848.18
+13	6008.18
+14	6184.18
+15	6360.18
+16	6520.18
+17	6696.18
+18	6856.18
+19	7032.18
+20	7208.18
+21	7368.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+MUSETT_T1_DSSD_X20_T 
+0	3832.19
+1	4008.18
+2	4184.18
+3	4344.18
+4	4520.18
+5	4680.18
+6	4856.18
+7	5032.16
+8	5192.16
+9	5368.18
+10	5528.18
+11	5704.17
+12	5864.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6552.18
+17	6712.18
+18	6888.18
+19	7048.18
+20	7224.18
+21	7400.18
+22	7560.18
+23	7736.18
+24	7896.18
+25	8072.18
+MUSETT_T1_DSSD_X21_T 
+0	3896.19
+1	4072.17
+2	4232.2
+3	4408.18
+4	4568.18
+5	4744.18
+6	4904.18
+7	5064.16
+8	5240.18
+9	5416.18
+10	5576.18
+11	5736.17
+12	5912.18
+13	6072.18
+14	6248.19
+15	6408.18
+16	6584.18
+17	6744.18
+18	6920.18
+19	7080.18
+20	7256.18
+21	7416.18
+22	7592.18
+23	7752.18
+24	7928.18
+25	8088.18
+MUSETT_T1_DSSD_X22_T 
+0	3848.19
+1	4008.18
+2	4184.18
+3	4344.18
+4	4520.18
+5	4696.18
+6	4856.18
+7	5032.16
+8	5192.16
+9	5368.18
+10	5528.18
+11	5704.17
+12	5864.18
+13	6040.18
+14	6200.18
+15	6376.18
+16	6536.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7224.18
+21	7384.18
+22	7560.18
+23	7720.18
+24	7896.18
+25	8056.18
+MUSETT_T1_DSSD_X23_T 
+0	3880.19
+1	4056.17
+2	4216.2
+3	4392.18
+4	4552.18
+5	4728.18
+6	4888.18
+7	5064.16
+8	5224.18
+9	5384.18
+10	5560.18
+11	5720.17
+12	5896.18
+13	6056.18
+14	6232.18
+15	6392.18
+16	6552.18
+17	6728.18
+18	6888.18
+19	7064.18
+20	7224.18
+21	7384.18
+22	7560.18
+23	7720.18
+24	7896.18
+25	8056.18
+MUSETT_T1_DSSD_X24_T 
+0	3880.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4536.18
+5	4712.18
+6	4872.18
+7	5048.16
+8	5208.16
+9	5368.18
+10	5544.18
+11	5704.17
+12	5880.18
+13	6040.18
+14	6216.18
+15	6376.18
+16	6536.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7208.18
+21	7384.18
+22	7544.18
+23	7704.18
+24	7880.18
+25	8136.18
+MUSETT_T1_DSSD_X25_T 
+0	3880.19
+1	4040.17
+2	4216.2
+3	4376.18
+4	4552.18
+5	4712.18
+6	4888.18
+7	5048.16
+8	5224.18
+9	5384.18
+10	5560.18
+11	5720.17
+12	5896.18
+13	6056.18
+14	6232.18
+15	6392.18
+16	6552.18
+17	6728.18
+18	6888.18
+19	7064.18
+20	7224.18
+21	7400.18
+22	7560.18
+23	7736.18
+24	7896.18
+25	8072.18
+MUSETT_T1_DSSD_X26_T 
+0	3896.19
+1	4056.17
+2	4232.2
+3	4392.18
+4	4552.18
+5	4728.18
+6	4888.18
+7	5048.16
+8	5224.18
+9	5384.18
+10	5560.18
+11	5720.17
+12	5880.18
+13	6056.18
+14	6216.18
+15	6376.18
+16	6552.18
+17	6712.18
+18	6872.18
+19	7048.18
+20	7208.18
+21	7368.18
+22	7544.18
+23	7704.18
+24	7864.18
+25	8120.17
+MUSETT_T1_DSSD_X27_T 
+0	3800.18
+1	3960.18
+2	4136.18
+3	4296.2
+4	4456.18
+5	4632.17
+6	4792.18
+7	4952.16
+8	5128.16
+9	5288.18
+10	5448.18
+11	5624.17
+12	5784.18
+13	5944.18
+14	6120.18
+15	6280.18
+16	6440.18
+17	6616.18
+18	6776.18
+19	6936.18
+20	7096.18
+21	7272.18
+22	7432.18
+23	7608.18
+24	7768.18
+25	7928.18
+26	8088.18
+MUSETT_T1_DSSD_X28_T 
+0	3816.18
+1	3976.18
+2	4152.18
+3	4312.18
+4	4472.18
+5	4648.17
+6	4808.18
+7	4968.16
+8	5128.16
+9	5304.18
+10	5464.18
+11	5624.17
+12	5800.18
+13	5960.18
+14	6120.18
+15	6280.18
+16	6456.18
+17	6616.18
+18	6776.18
+19	6952.18
+20	7112.18
+21	7272.18
+22	7432.18
+23	7608.18
+24	7768.18
+25	7928.18
+26	8104.18
+MUSETT_T1_DSSD_X29_T 
+0	3944.18
+1	4104.18
+2	4280.2
+3	4440.18
+4	4600.18
+5	4776.18
+6	4936.18
+7	5096.16
+8	5272.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5928.18
+13	6088.18
+14	6264.19
+15	6424.18
+16	6584.18
+17	6744.18
+18	6920.18
+19	7080.18
+20	7240.18
+21	7416.18
+22	7576.18
+23	7736.18
+24	7912.18
+25	8072.18
+MUSETT_T1_DSSD_X30_T 
+0	3944.18
+1	4104.18
+2	4280.2
+3	4440.18
+4	4600.18
+5	4776.18
+6	4936.18
+7	5096.16
+8	5272.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5928.18
+13	6088.18
+14	6264.19
+15	6424.18
+16	6584.18
+17	6760.18
+18	6920.18
+19	7080.18
+20	7256.18
+21	7416.18
+22	7576.18
+23	7752.18
+24	7912.18
+25	8072.18
+MUSETT_T1_DSSD_X31_T 
+0	3864.19
+1	4024.18
+2	4184.18
+3	4360.18
+4	4520.18
+5	4680.18
+6	4856.18
+7	5016.16
+8	5192.16
+9	5352.18
+10	5512.18
+11	5688.17
+12	5848.18
+13	6024.18
+14	6184.18
+15	6344.18
+16	6520.18
+17	6680.18
+18	6840.18
+19	7016.18
+20	7176.18
+21	7352.18
+22	7512.18
+23	7672.18
+24	7848.18
+25	8104.18
+MUSETT_T1_DSSD_X32_T 
+0	3928.18
+1	4104.18
+2	4264.2
+3	4424.18
+4	4600.18
+5	4760.18
+6	4936.18
+7	5096.16
+8	5272.18
+9	5432.18
+10	5592.18
+11	5768.18
+12	5928.18
+13	6104.18
+14	6264.19
+15	6424.18
+16	6600.18
+17	6760.18
+18	6936.18
+19	7096.18
+20	7272.18
+21	7432.18
+22	7592.18
+23	7768.18
+24	7928.18
+25	8104.18
+MUSETT_T1_DSSD_X33_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4360.18
+4	4552.18
+5	4744.18
+6	4920.18
+7	5112.16
+8	5304.18
+9	5496.18
+10	5688.17
+11	5880.18
+12	6072.18
+13	6264.19
+14	6440.18
+15	6632.18
+16	6824.18
+17	7016.18
+18	7208.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X34_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4360.18
+4	4552.18
+5	4728.18
+6	4920.18
+7	5112.16
+8	5320.18
+9	5496.18
+10	5688.17
+11	5880.18
+12	6072.18
+13	6264.19
+14	6456.18
+15	6648.18
+16	6840.18
+17	7032.18
+18	7224.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8088.18
+MUSETT_T1_DSSD_X35_T 
+0	3864.19
+1	4056.17
+2	4232.2
+3	4424.18
+4	4616.17
+5	4792.18
+6	4984.16
+7	5176.16
+8	5352.18
+9	5544.18
+10	5736.17
+11	5912.18
+12	6104.18
+13	6280.18
+14	6472.18
+15	6664.18
+16	6856.18
+17	7032.18
+18	7224.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X36_T 
+0	3832.19
+1	4024.18
+2	4216.2
+3	4408.18
+4	4600.18
+5	4776.18
+6	4968.16
+7	5160.16
+8	5352.18
+9	5544.18
+10	5720.17
+11	5912.18
+12	6104.18
+13	6296.18
+14	6472.18
+15	6664.18
+16	6856.18
+17	7048.18
+18	7240.18
+19	7416.18
+20	7608.18
+21	7800.18
+22	8104.18
+MUSETT_T1_DSSD_X37_T 
+0	3832.19
+1	4008.18
+2	4200.18
+3	4392.18
+4	4584.18
+5	4776.18
+6	4952.16
+7	5144.16
+8	5336.18
+9	5528.18
+10	5704.17
+11	5896.18
+12	6088.18
+13	6280.18
+14	6456.18
+15	6648.18
+16	6840.18
+17	7032.18
+18	7224.18
+19	7400.18
+20	7592.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X38_T 
+0	3896.19
+1	4072.17
+2	4264.2
+3	4440.18
+4	4632.17
+5	4824.18
+6	5000.16
+7	5192.16
+8	5368.18
+9	5560.18
+10	5736.17
+11	5928.18
+12	6120.18
+13	6296.18
+14	6488.18
+15	6664.18
+16	6856.18
+17	7032.18
+18	7224.18
+19	7416.18
+20	7592.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X39_T 
+0	3896.19
+1	4088.17
+2	4264.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5560.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7224.18
+19	7416.18
+20	7592.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X40_T 
+0	3912.18
+1	4104.18
+2	4280.2
+3	4472.18
+4	4664.18
+5	4840.18
+6	5032.16
+7	5208.16
+8	5400.18
+9	5592.18
+10	5768.18
+11	5960.18
+12	6136.18
+13	6328.18
+14	6504.18
+15	6696.18
+16	6888.18
+17	7064.18
+18	7256.18
+19	7432.18
+20	7624.18
+21	7816.18
+22	8104.18
+MUSETT_T1_DSSD_X41_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4344.18
+4	4536.18
+5	4712.18
+6	4904.18
+7	5080.16
+8	5272.18
+9	5448.18
+10	5640.17
+11	5816.18
+12	6008.18
+13	6200.18
+14	6376.18
+15	6568.18
+16	6744.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7672.18
+22	7848.18
+23	8040.18
+MUSETT_T1_DSSD_X42_T 
+0	3944.18
+1	4120.18
+2	4312.18
+3	4488.18
+4	4680.18
+5	4856.18
+6	5048.16
+7	5224.18
+8	5416.18
+9	5608.17
+10	5784.18
+11	5976.18
+12	6152.18
+13	6344.18
+14	6520.18
+15	6712.18
+16	6888.18
+17	7080.18
+18	7256.18
+19	7448.18
+20	7624.18
+21	7816.18
+22	8104.18
+MUSETT_T1_DSSD_X43_T 
+0	3912.18
+1	4088.17
+2	4280.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5576.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7224.18
+19	7416.18
+20	7608.18
+21	7784.18
+22	8072.18
+MUSETT_T1_DSSD_X44_T 
+0	3800.18
+1	3976.18
+2	4168.18
+3	4344.18
+4	4536.18
+5	4712.18
+6	4904.18
+7	5080.16
+8	5256.18
+9	5448.18
+10	5624.17
+11	5816.18
+12	5992.18
+13	6184.18
+14	6360.18
+15	6552.18
+16	6728.18
+17	6920.18
+18	7096.18
+19	7288.18
+20	7464.18
+21	7640.18
+22	7832.18
+23	8120.18
+MUSETT_T1_DSSD_X45_T 
+0	3944.18
+1	4136.18
+2	4328.18
+3	4504.18
+4	4696.18
+5	4872.18
+6	5048.16
+7	5240.18
+8	5432.18
+9	5608.17
+10	5800.18
+11	5976.18
+12	6168.18
+13	6344.18
+14	6536.18
+15	6712.18
+16	6904.18
+17	7080.18
+18	7272.18
+19	7448.18
+20	7640.18
+21	7816.18
+22	8120.18
+MUSETT_T1_DSSD_X46_T 
+0	3928.18
+1	4120.18
+2	4296.2
+3	4488.18
+4	4680.18
+5	4856.18
+6	5048.16
+7	5224.18
+8	5416.18
+9	5592.18
+10	5784.18
+11	5976.18
+12	6152.18
+13	6344.18
+14	6520.18
+15	6712.18
+16	6888.18
+17	7080.18
+18	7272.18
+19	7448.18
+20	7640.18
+21	7816.18
+22	8120.18
+MUSETT_T1_DSSD_X47_T 
+0	3896.19
+1	4088.17
+2	4280.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5560.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7240.18
+19	7416.18
+20	7608.18
+21	7784.18
+22	8072.17
+MUSETT_T1_DSSD_X48_T 
+0	3912.18
+1	4088.17
+2	4280.2
+3	4456.18
+4	4648.17
+5	4824.18
+6	5016.16
+7	5208.16
+8	5384.18
+9	5576.18
+10	5752.18
+11	5944.18
+12	6120.18
+13	6312.18
+14	6488.18
+15	6680.18
+16	6856.18
+17	7048.18
+18	7240.18
+19	7416.18
+20	7592.18
+21	7784.18
+22	8072.17
+MUSETT_T1_DSSD_X49_T 
+0	3896.19
+1	4088.17
+2	4264.2
+3	4456.18
+4	4648.17
+5	4840.18
+6	5016.16
+7	5208.16
+8	5400.18
+9	5592.18
+10	5768.18
+11	5960.18
+12	6152.18
+13	6344.18
+14	6520.18
+15	6712.18
+16	6904.18
+17	7080.18
+18	7272.18
+19	7464.18
+20	7656.18
+21	7832.18
+22	8136.16
+MUSETT_T1_DSSD_X50_T 
+0	3896.19
+1	4072.17
+2	4264.2
+3	4456.18
+4	4632.17
+5	4824.18
+6	5016.16
+7	5192.16
+8	5384.18
+9	5576.18
+10	5768.18
+11	5944.18
+12	6136.18
+13	6328.18
+14	6504.18
+15	6696.18
+16	6888.18
+17	7064.18
+18	7256.18
+19	7448.18
+20	7624.18
+21	7816.18
+22	8104.18
+MUSETT_T1_DSSD_X51_T 
+0	3912.18
+1	4104.18
+2	4280.2
+3	4472.18
+4	4664.18
+5	4840.18
+6	5032.16
+7	5224.18
+8	5400.18
+9	5592.18
+10	5768.18
+11	5960.18
+12	6152.18
+13	6328.18
+14	6520.18
+15	6712.18
+16	6888.18
+17	7080.18
+18	7256.18
+19	7448.18
+20	7640.18
+21	7816.18
+22	8104.18
+MUSETT_T1_DSSD_X52_T 
+0	3944.18
+1	4136.18
+2	4312.18
+3	4504.18
+4	4696.18
+5	4872.18
+6	5064.16
+7	5240.18
+8	5432.18
+9	5624.17
+10	5800.18
+11	5992.18
+12	6168.18
+13	6360.18
+14	6552.18
+15	6728.18
+16	6920.18
+17	7096.18
+18	7288.18
+19	7480.18
+20	7656.18
+21	7848.18
+22	8136.17
+MUSETT_T1_DSSD_X53_T 
+0	3816.18
+1	4008.18
+2	4184.18
+3	4376.18
+4	4552.18
+5	4728.18
+6	4920.18
+7	5096.16
+8	5288.18
+9	5464.18
+10	5656.17
+11	5832.18
+12	6008.18
+13	6200.18
+14	6376.18
+15	6568.18
+16	6744.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7848.18
+23	8120.18
+MUSETT_T1_DSSD_X54_T 
+0	3800.18
+1	3992.18
+2	4168.18
+3	4360.18
+4	4536.18
+5	4728.18
+6	4904.18
+7	5080.16
+8	5272.18
+9	5448.18
+10	5640.17
+11	5816.18
+12	5992.18
+13	6184.18
+14	6360.18
+15	6552.18
+16	6728.18
+17	6904.18
+18	7096.18
+19	7272.18
+20	7464.18
+21	7640.18
+22	7816.18
+23	8104.18
+MUSETT_T1_DSSD_X55_T 
+0	3848.19
+1	4040.17
+2	4216.2
+3	4408.18
+4	4584.18
+5	4776.18
+6	4952.16
+7	5128.16
+8	5304.18
+9	5496.18
+10	5672.17
+11	5864.18
+12	6040.18
+13	6216.18
+14	6408.18
+15	6584.18
+16	6776.18
+17	6952.18
+18	7128.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7864.18
+23	8136.18
+MUSETT_T1_DSSD_X56_T 
+0	3832.19
+1	4024.18
+2	4200.18
+3	4376.18
+4	4568.18
+5	4744.18
+6	4920.18
+7	5112.16
+8	5288.18
+9	5480.18
+10	5656.17
+11	5832.18
+12	6008.18
+13	6200.18
+14	6376.18
+15	6552.18
+16	6744.18
+17	6920.18
+18	7096.18
+19	7288.18
+20	7464.18
+21	7640.18
+22	7832.18
+23	8104.18
+MUSETT_T1_DSSD_X57_T 
+0	3912.18
+1	4088.17
+2	4264.2
+3	4440.18
+4	4632.17
+5	4808.18
+6	4984.16
+7	5160.16
+8	5336.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6248.19
+14	6424.18
+15	6600.18
+16	6776.18
+17	6952.18
+18	7144.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7864.18
+23	8136.18
+MUSETT_T1_DSSD_X58_T 
+0	3832.19
+1	4008.18
+2	4184.18
+3	4376.18
+4	4552.18
+5	4728.18
+6	4920.18
+7	5096.16
+8	5272.18
+9	5448.18
+10	5640.17
+11	5816.18
+12	6008.18
+13	6184.18
+14	6360.18
+15	6536.18
+16	6728.18
+17	6904.18
+18	7080.18
+19	7272.18
+20	7448.18
+21	7624.18
+22	7816.18
+23	8088.18
+MUSETT_T1_DSSD_X59_T 
+0	3912.18
+1	4088.17
+2	4264.2
+3	4440.18
+4	4632.17
+5	4808.18
+6	4984.16
+7	5160.16
+8	5352.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6248.19
+14	6424.18
+15	6600.18
+16	6776.18
+17	6952.18
+18	7144.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7864.18
+23	8136.18
+MUSETT_T1_DSSD_X60_T 
+0	3896.19
+1	4088.17
+2	4264.2
+3	4440.18
+4	4616.17
+5	4792.18
+6	4968.16
+7	5160.16
+8	5336.18
+9	5512.18
+10	5688.17
+11	5864.18
+12	6040.18
+13	6232.18
+14	6408.18
+15	6584.18
+16	6760.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7832.18
+23	8104.18
+MUSETT_T1_DSSD_X61_T 
+0	3944.18
+1	4120.18
+2	4312.18
+3	4488.18
+4	4664.18
+5	4840.18
+6	5016.16
+7	5192.16
+8	5368.18
+9	5544.18
+10	5720.17
+11	5896.18
+12	6072.18
+13	6248.19
+14	6424.18
+15	6600.18
+16	6792.18
+17	6968.18
+18	7144.18
+19	7320.18
+20	7496.18
+21	7672.18
+22	7848.18
+23	8120.18
+MUSETT_T1_DSSD_X62_T 
+0	3928.18
+1	4120.18
+2	4296.2
+3	4472.18
+4	4648.17
+5	4824.18
+6	5000.16
+7	5176.16
+8	5352.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6232.18
+14	6408.18
+15	6584.18
+16	6760.18
+17	6936.18
+18	7112.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7832.18
+23	8104.18
+MUSETT_T1_DSSD_X63_T 
+0	3800.18
+1	3976.18
+2	4152.18
+3	4328.18
+4	4504.18
+5	4680.18
+6	4856.18
+7	5032.16
+8	5208.16
+9	5384.18
+10	5560.18
+11	5736.17
+12	5912.18
+13	6088.18
+14	6264.19
+15	6440.18
+16	6616.18
+17	6792.18
+18	6968.18
+19	7144.18
+20	7320.18
+21	7496.18
+22	7672.18
+23	7848.18
+24	8136.16
+MUSETT_T1_DSSD_X64_T 
+0	3912.18
+1	4088.17
+2	4264.2
+3	4456.18
+4	4632.17
+5	4808.18
+6	4984.16
+7	5160.16
+8	5336.18
+9	5528.18
+10	5704.17
+11	5880.18
+12	6056.18
+13	6232.18
+14	6408.18
+15	6600.18
+16	6776.18
+17	6952.18
+18	7128.18
+19	7304.18
+20	7480.18
+21	7656.18
+22	7848.18
+23	8120.18
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/ExtractRawHisto_T.C b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/ExtractRawHisto_T.C
new file mode 100644
index 0000000000000000000000000000000000000000..828209dd0ef9c45b64b433e0b0042e6ece30c1bf
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/ExtractRawHisto_T.C
@@ -0,0 +1,113 @@
+////////////////////////////////////////////////////////////////////////////
+// This macro takes a converted ROOT file from the GANIL e569 exp. and    //
+// create an histogram for each strip (X and Y) of the MUST2 array filled //
+// with the energy. The histograms are dumped in an output ROOT file.     //
+//                                                                        //
+// This is especially usefull for calibration purposes when there is no   //
+// need to work directly on the TTree                                     //
+////////////////////////////////////////////////////////////////////////////
+#include <iostream>
+
+#include "TROOT.h"
+#include "TSystem.h"
+#include "TFile.h"
+#include "TString.h"
+#include "TTree.h"
+#include "TBranch.h"
+#include "TH1F.h"
+#include "TMUSETTData.h"
+#include "TChain.h"
+
+
+
+void ExtractMust2Histos(const char* fname = "run_0040", int NBTELESCOPE = 4, int NBSTRIPS = 128, int FIRSTSTRIP = 0, int FIRSTELESCOPE = 0)
+{
+
+  TString path  = "~/npTreeReader/np-tree-reader/Projects/MUSETT/RootR/";
+  TChain* tree = new TChain("RD");
+  tree->Add(path + fname + ".root");
+  //tree->Add(path + fname + "_1.root");
+  //tree->Add(path + fname + "_2.root");
+
+  tree->SetBranchStatus("*",false);
+
+  // connect the TMust2Data branch  
+  tree->SetBranchStatus("MUSETT",true);
+  tree->SetBranchStatus("fMM*",true);
+  TMUSETTData *rawMUSETT; 
+
+  std::cout << tree->GetEntries() << std::endl;
+
+  rawMUSETT = new TMUSETTData();
+  tree->SetBranchAddress("MUSETT", &rawMUSETT);
+
+
+
+  // open the output ROOT file
+  TString outFileName = "~/npTreeReader/np-tree-reader/Projects/MUSETT/calibration/Time/Histograms/";
+  outFileName += fname;
+  outFileName += "_RawMUSETTHistos.root";
+  std::cout<< outFileName<< std::endl;
+  TFile *outFile = new TFile(outFileName, "recreate");
+
+  // prepare output histograms for Must2
+  TH1F* hStripXTime[NBTELESCOPE-FIRSTELESCOPE][NBSTRIPS-FIRSTSTRIP];
+  TH1F* hStripYTime[NBTELESCOPE-FIRSTELESCOPE][NBSTRIPS-FIRSTSTRIP];
+  for (Int_t i = FIRSTELESCOPE; i < NBTELESCOPE; i++) {
+    for (Int_t j = FIRSTSTRIP; j < NBSTRIPS; j++) {
+      // strips XE
+      TString hnameXT     = Form("hMM%d_STRX_T%d", i, j);
+      TString htitleXT    = Form("MM%d_STRX_T%d", i, j);
+      hStripXTime[i][j] = new TH1F(hnameXT, htitleXT, 16384, 0, 16384);
+      // strips YE
+      TString hnameYT     = Form("hMM%d_STRY_T%d", i, j);
+      TString htitleYT    = Form("MM%d_STRY_T%d", i, j);
+      hStripYTime[i][j] = new TH1F(hnameYT, htitleYT, 16384, 0, 16384);
+    }
+  }
+
+  // read the data
+  Int_t nentries = tree->GetEntries();
+  //   nentries = 21000;
+  std::cout << "TTree contains " << nentries << " events" << std::endl;
+  for (Int_t i = 0; i < nentries; i++) {
+    if (i%10000 == 0) std::cout << "Entry " << i << std::endl;
+    
+    tree->GetEntry(i);
+    Int_t multXT = 0;
+    multXT = rawMUSETT->GetDSSDXTMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    for (Int_t j = 0; j < multXT; j++) {
+      Int_t det    = rawMUSETT->GetDSSDXTDetectorNbr(j);
+      Int_t stripX = rawMUSETT->GetDSSDXTStripNbr(j);
+      Int_t Time_ = rawMUSETT->GetDSSDXTTime(j);
+      if ((det < NBTELESCOPE) && (stripX < NBSTRIPS)) {
+        std::cout << det << " " << stripX << " " << Time_<< std::endl;
+        hStripXTime[det][stripX]->Fill(Time_);
+      }
+      else {
+        //std::cout << "Error filling histograms: MUSETT_X_T" << std::endl;
+      }
+    }
+    // get StripYE multiplicity
+    Int_t multYT = rawMUSETT->GetDSSDYTMult();
+    // loop on StripXE multiplicity and get information concerning the event
+    // fill histograms
+    for (Int_t j = 0; j < multYT; j++) {
+      Int_t det    = rawMUSETT->GetDSSDYTDetectorNbr(j);
+      Int_t stripY = rawMUSETT->GetDSSDYTStripNbr(j);
+      Int_t Time_ = rawMUSETT->GetDSSDYTTime(j);
+      if ((det < NBTELESCOPE) && (stripY < NBSTRIPS)) {
+        hStripYTime[det][stripY]->Fill(Time_);
+      }
+      else {
+        //std::cout << "Error filling histograms: MUSETT_Y_T" << std::endl;
+      }
+    }
+  }
+
+  // write on disk output file and close it
+  outFile->Write();
+  outFile->Close();
+}
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/ExtractRawHisto_T_C.d b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/ExtractRawHisto_T_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..8b366a233c98e6a83f3d1c61a31cf5d3e8878b57
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/ExtractRawHisto_T_C.d
@@ -0,0 +1,89 @@
+
+# DO NOT DELETE
+
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSystem.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInetAddress.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTimer.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSysEvtHandler.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTime.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./ExtractRawHisto_T_C.so: /home/jacob-l/npTreeReader/np-tree-reader/NPLib/include/TMUSETTData.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TChain.h
+./ExtractRawHisto_T_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+ExtractRawHisto_T_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Histograms/.root_hist b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Histograms/.root_hist
new file mode 100644
index 0000000000000000000000000000000000000000..5d9de7637d13de4b12d1cf83318c5f3560ec847e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/Histograms/.root_hist
@@ -0,0 +1,3 @@
+TFile *_file0 = TFile::Open("r0012_RawMUST2Histos.root")
+new TBrowser
+.q
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/RunToTreat.txt b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/RunToTreat.txt
new file mode 100644
index 0000000000000000000000000000000000000000..9c24dd33c012ad104f203bbc89f0ada9cac3f8ed
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/RunToTreat.txt
@@ -0,0 +1,4 @@
+TTreeName 
+	AutoTree
+RootFileName 
+  /data/mugastX/mugast/acquisition/root/run_0627.root 
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/TimeCalibrator.C b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/TimeCalibrator.C
new file mode 100644
index 0000000000000000000000000000000000000000..485707f949397cc44cbb16e2f4b0a69ba928584a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/TimeCalibrator.C
@@ -0,0 +1,331 @@
+#include<stdlib.h>
+#include<stdio.h>
+#include <time.h>
+#include <iostream>
+#include <fstream>
+#include <sstream>
+#include "TString.h"
+#include "TSpectrum.h"
+#include "TGraphErrors.h"
+#include "TCanvas.h"
+#include "TFile.h"
+#include "TTree.h"
+#include "TH1F.h"
+#include "TF1.h"
+
+using namespace std;
+// #define TELESCOPE_START 1	
+// #define TELESCOPE_END 4
+#define STRIP_START	1
+#define STRIP_END 	64
+
+
+Int_t CurrentTelescope = 0 ;
+Int_t CurrentStrip     = 0 ;
+
+
+void TimeGene(TH1F*, TString, Int_t, int);
+Int_t Finder(TH1F*, Double_t*, Double_t*, Int_t);
+TF1* Calib(TGraphErrors*,Double_t*, Double_t*, Int_t);
+Double_t pol2 (Double_t *,Double_t *);
+		
+ofstream peaks_file, calib_file, dispersion_file,calib_online_file; 
+	
+void TimeCalibrator(const char* frun = "run_XXXX", TString xy = "X",Int_t npeak= 32, int TELESCOPE_START=1, int TELESCOPE_END=4)//49
+{
+	// open the ROOT file to process
+	TString path  = "./Histograms/";
+	TString inFileName = frun;
+  TFile *inFile;
+
+  inFile = new TFile(path + inFileName +"_RawMUSETTHistos.root");
+
+  TString str;
+  TString str1;
+  TString str2;
+  TString strbuff;
+  TString strbuff2;
+  TString fname;
+  TString fname2;
+
+	TString hname;
+	
+	TCanvas *c1 = new TCanvas("c1","c1",1200,900);
+  c1->cd();
+	//c1->Divide(16,8);
+
+	for (int det = TELESCOPE_START-1; det < TELESCOPE_END ; det++){
+			ostringstream number ;
+			number << det+1  ;
+			CurrentTelescope = det+1 ;
+		if (xy == "X"){ 
+			//////// Input Files ///////////
+			str = "hMM"+number.str()+"_STRX_T";
+			/////// Output Files ///////////
+        str1 = "Cal_Str_X_T_MM"+number.str()+"_"+frun;
+    
+    }	 
+		
+    else if (xy == "Y"){ 	
+			//////// Input Files ///////////
+			str = "hMM"+number.str()+"_STRY_T";
+			/////// Output Files ///////////
+        str1 = "Cal_Str_Y_T_MM"+number.str()+"_"+frun;
+	}	 
+		else {cout<< "ERROR FOR X or Y PARAMETER"<< endl;}
+
+		fname =  "./Coeff/" + str1 + ".peak";
+		peaks_file.open(( (string)fname ).c_str());
+
+		fname2 = "./Coeff/"+ str1 + ".cal";
+		calib_file.open( ( (string)fname2 ).c_str() );
+		
+		for (Int_t j = STRIP_START-1; j < STRIP_END; j++)
+		{
+			///// Get the histogram of det i and strip j /////
+			CurrentStrip=j+1;
+			number.seekp(0);
+			number << j+1;
+			hname = str+number.str().c_str();
+			TH1F *hist = (TH1F*) inFile->Get(((string)hname).c_str());
+		
+			TimeGene(	hist,
+								xy,
+								npeak, det);
+		}
+	peaks_file.close();
+	calib_file.close();
+	dispersion_file.close();
+	
+	}
+	
+}
+
+
+
+void TimeGene(TH1F *hist, TString xy, Int_t npeak, int DetNbr)
+	{
+	
+  // hist->GetXaxis()->SetRangeUser(0,16384);
+//  hist->GetXaxis()->SetRangeUser(0,8150);
+  TH1F* hist_clone = (TH1F*)hist->Clone();
+  //hist_clone->GetXaxis()->SetRangeUser(0,8150);
+
+ // int Nbins1 = hist_clone->GetNbinsX();
+ // cout<<"Nbins before "<<Nbins1<<endl;
+	
+//	std::cout << "est" << std::endl;
+  hist_clone->Rebin(16);
+  int Nbins = hist_clone->GetNbinsX();
+ // cout<<"Nbins after "<<Nbins<<endl;
+  for(int i =0; i<Nbins; i++){
+      if(hist_clone->GetBinCenter(i) > 8150 ) hist_clone->SetBinContent(i,0);
+     // if (DetNbr!=10){//range change for the anular telescope 11
+      if(hist_clone->GetBinCenter(i) < 3800 ) hist_clone->SetBinContent(i,0);
+     // }
+     // else {
+      //   if(hist_clone->GetBinCenter(i) < 100 ) hist_clone->SetBinContent(i,0);
+     // }  
+ } 
+//  hist_clone->Smooth(10);
+
+  
+  double Ecut = 0;
+  int maxbin = hist_clone->GetMaximumBin(); 
+  while(hist_clone->GetBinContent(maxbin) != 0){
+      maxbin++;
+  }
+  double maxE =  hist_clone->GetBinCenter(maxbin);
+  //cout << "maxbin : "<< maxbin << endl;
+  //cout << "maxE : "<< maxE << endl;
+/*
+  Nbins = hist->GetNbinsX();
+  for(int i =0; i<Nbins; i++){
+      if(hist->GetBinCenter(i) < maxE ) hist->SetBinContent(i,0);
+      if(hist->GetBinCenter(i) > 8180 ) hist->SetBinContent(i,0);
+  } 
+  */
+	Double_t *mean = new Double_t[npeak];
+  Double_t *sigma = new Double_t[npeak];
+
+	Int_t nfound = Finder(hist_clone, mean, sigma, npeak);
+
+	if (xy == "X"){
+	  peaks_file << "MUSETT_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_T " << endl;
+	  for(int i=0; i<nfound; i++) {
+	    peaks_file << i<< "\t" << mean[i] <<  endl;
+	  }
+	}
+	else if (xy == "Y"){
+	  peaks_file << "MUSETT_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_T " << endl;
+	  for(int i=0; i<nfound; i++) {
+	    peaks_file << i<< "\t" << mean[i] <<  endl;
+	  }
+  }
+
+	if(nfound<npeak) cout << "On "<< hist->GetName() << endl ;
+	
+	// Fit npeak
+	TGraphErrors* gr_MM= new TGraphErrors(nfound);
+	TF1* f = Calib(gr_MM, mean, sigma, nfound);
+	
+	Double_t a = f->GetParameter(0);
+	Double_t b = f->GetParameter(1);
+	Double_t c = f->GetParameter(2);
+  
+    if (xy == "X")
+      calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_X" << CurrentStrip << "_T " << a << " " << b << "	" << c <<endl ;
+
+    else if (xy == "Y")
+      calib_file << "MUSETT_T" << CurrentTelescope << "_DSSD_Y" << CurrentStrip << "_T " << a << " " << b << " " << c << endl ;
+
+
+
+}
+
+Int_t Finder(TH1F *h, Double_t *mean, Double_t *sigma, Int_t npeak)
+{
+
+	/////////////////////////////////////////////////
+	//																						 //
+	//	           	PEAK  FINDER									 //
+	//																					 	 //
+	/////////////////////////////////////////////////
+
+
+	for(int k=0; k<npeak; k++)
+			{
+		    	mean[k]=0;
+		        sigma[k]=0;
+			}
+
+	//Double_t resolsig=5;
+	Double_t resolsig=2;
+	Float_t  resolsigTSpec=1;
+	Double_t seuil=0.00001;
+	Int_t nmax=npeak+1;   // nombre de pics maximum a prendre
+
+	//////// Peak finder
+
+	TSpectrum *s = new TSpectrum(nmax,resolsigTSpec);
+
+	Int_t nfound = s->Search(h,resolsig,"new",seuil);
+ 	
+  Double_t *xpeaks = s->GetPositionX();
+  cout << "NUMBER OF PEAKS" << " " << nfound << endl;
+	/// remise dans l ordre du tableau ordre croissant
+
+	if(nfound>1)
+	{
+		for(Int_t p=0;p<nfound;p++)
+		{
+			for(Int_t i=0;i<nfound-1;i++)
+			{
+				if(xpeaks[i]>xpeaks[i+1])
+				{
+					Double_t varia=xpeaks[i];
+					xpeaks[i]=xpeaks[i+1];
+					xpeaks[i+1]=varia;
+					cout <<"XPeak: " << xpeaks[i]<<endl;
+				}	  
+			}
+		}
+	}
+
+	
+	Float_t linf=0, lsup=0; 
+	
+	// if(nfound == npeak || nfound > npeak)
+	// {
+  	//struct FitResult{
+	//	double mean;
+	//	double sigma;
+	//};
+	//map<int, FitResult> results;
+
+		for (Int_t p=0;p<nfound;p++)
+		{   
+		linf = xpeaks[p]-5;
+		lsup = xpeaks[p]+5;
+
+		TF1 *gauss = new TF1("gauss","gaus",linf,lsup);
+		h->Fit(gauss,"RQ");
+		mean[p] = gauss->GetParameter(1);
+		sigma[p]= gauss->GetParameter(2);
+		//if (gauss->GetParameter(2)<10) {
+		//	results[p].mean = gauss->GetParameter(1); 
+		//	results[p].sigma = gauss->GetParameter(2);
+		//}
+    // std::cout <<  gauss->GetParameter(1) << std::endl;
+    // std::cout <<  gauss->GetParameter(2)<< std::endl;
+		 }
+	// }
+	//nfound=results.size();
+	//int cnt = 0;
+	//for (const auto & result: results){
+	//	mean[cnt]=result.second.mean;
+	//	sigma[cnt]=result.second.sigma;
+	//	cnt++;	
+	//	cout <<"Mean: " << mean[cnt]<<endl;
+	//}
+	
+	
+
+
+	if(nfound<npeak)
+	{
+	 cout << "attention, nombre de pics ("<<nfound<<") different de "<<npeak<<" !!!" ;
+		/*
+		for (Int_t p=0;p<npeak;p++)
+		{
+			mean[p]=-1;
+			sigma[p]=-1;
+			//return false ;
+		}
+		*/
+	 
+	}
+	
+	return nfound ;
+}
+
+TF1* Calib(TGraphErrors *gr, Double_t *mean, Double_t *sigma, Int_t npeak)
+{  
+	Double_t energy[npeak];
+  //Double_t errors[npeak];
+  
+	
+	for(int i = 0 ; i < npeak ; i ++)
+	{
+	energy[i] = (npeak-i)*20;
+	}
+			
+	
+	for (Int_t p = 0; p < npeak; p++) {
+		gr->SetPoint(p, mean[p], energy[p]);
+		gr->SetPointError(p, 0, 0);
+		//gr->SetPointError(p, sigma[p], errors[p]);    
+	}
+	
+	TF1 *f1 = new TF1("f1",pol2,mean[0],mean[npeak-1], npeak);
+	//TF1 *f1 = new TF1("f1",Form("[0]*(x-%f)",Pedestal));
+	gr->Fit("f1", "Q" );
+	// TCanvas*c2 = new TCanvas();
+	// c2->cd();
+	gr->Draw("AP");
+  // gPad->WaitPrimitive();
+
+	//Double_t a = f1 -> GetParameter(0);
+	
+	return f1 ;
+}
+
+Double_t pol2 (Double_t *x,Double_t *par){
+
+	Double_t result = 0;
+	result = par[0]+ x[0]*par[1]+ x[0]*x[0]*par[2];
+	return result;
+}
+
+
+	
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/TimeCalibrator_C.d b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/TimeCalibrator_C.d
new file mode 100644
index 0000000000000000000000000000000000000000..4978c4faf18f3c915c363eca8b7c6979be99f1b1
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/Time/TimeCalibrator_C.d
@@ -0,0 +1,100 @@
+
+# DO NOT DELETE
+
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TString.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Rtypes.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RtypesCore.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConfig.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RConfigure.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/DllImport.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strtok.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/strlcpy.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/snprintf.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGenericClassInfo.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSchemaHelper.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualIsAProxy.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMathBase.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RStringView.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TypeTraits.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSpectrum.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TNamed.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObject.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TStorage.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVersionCheck.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraphErrors.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TGraph.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttLine.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttFill.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttMarker.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorFfwd.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVectorDfwd.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFitResultPtr.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCanvas.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TPad.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualPad.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttPad.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TQObject.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TList.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TSeqCollection.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TCollection.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TIterator.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualRWMutex.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualMutex.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RRangeCast.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RSpan.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/span.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualQConnection.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDataType.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDictionary.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ESTLType.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TInterpreterValue.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/GuiTypes.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Buttons.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttBBox2D.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttCanvas.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFile.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Compression.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectoryFile.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDirectory.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TClass.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TObjArray.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUUID.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Bytes.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TDatime.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TUrl.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/RConcurrentHashColl.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TRWSpinLock.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TSpinMutex.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TTree.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/TIOFeatures.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayD.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArray.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayI.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TVirtualTreePlayer.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranch.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBranchCacheInfo.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TBits.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1F.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TH1.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAxis.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TAttAxis.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayC.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayS.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TArrayF.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Foption.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/ROOT/EExecutionPolicy.hxx
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TFormula.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/Types.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMethodCall.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TF1AbsComposition.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TMath.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/TError.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/Math/ParamFunctor.h
+./TimeCalibrator_C.so: /usr/physics/root/root_v6.26.10/root_install/include/RVersion.h /usr/physics/root/root_v6.26.10/root_install/include/RConfig.h /usr/physics/root/root_v6.26.10/root_install/include/TClass.h /usr/physics/root/root_v6.26.10/root_install/include/TDictAttributeMap.h /usr/physics/root/root_v6.26.10/root_install/include/TInterpreter.h /usr/physics/root/root_v6.26.10/root_install/include/TROOT.h /usr/physics/root/root_v6.26.10/root_install/include/TBuffer.h /usr/physics/root/root_v6.26.10/root_install/include/TMemberInspector.h /usr/physics/root/root_v6.26.10/root_install/include/TError.h /usr/physics/root/root_v6.26.10/root_install/include/RtypesImp.h /usr/physics/root/root_v6.26.10/root_install/include/TIsAProxy.h /usr/physics/root/root_v6.26.10/root_install/include/TFileMergeInfo.h /usr/physics/root/root_v6.26.10/root_install/include/TCollectionProxyInfo.h /usr/physics/root/root_v6.26.10/root_install/bin/rootcling
+TimeCalibrator_C__ROOTBUILDVERSION= 6.26/10
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..59533f1c2519edd5aac99e291c7b1ce2b6b0e9a5
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/cal_to_NPTOOL.py
@@ -0,0 +1,147 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 1
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calibE0.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calibE0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..5f77c3d04858dd864b1411813497cfbbcbbac345
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calibE0.cal1
@@ -0,0 +1,1024 @@
+-61662.3 7.52711 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61862.3 7.5515 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61786 7.54225 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61488.6 7.50587 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61896.8 7.55579 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61641.5 7.52453 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61399.4 7.49501 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61236.4 7.47509 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-60986.5 7.4446 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62681.3 7.65148 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62393.5 7.61631 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61925.3 7.55919 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62029.9 7.57195 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62417.6 7.61932 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61275.3 7.47982 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63058.3 7.69749 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62722.2 7.65646 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62134.9 7.58477 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62458.1 7.62423 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63902.7 7.80057 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62519.9 7.63181 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62297.5 7.60463 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62659.6 7.64878 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62852.3 7.67238 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62985.4 7.68854 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63073.7 7.69941 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62632 7.64548 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-63013.4 7.69203 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62579 7.63901 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63401.5 7.7394 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62630 7.64523 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56399 6.88462 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56789.2 6.93221 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55564.2 6.78269 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56333.4 6.87654 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-56040.6 6.84084 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+-10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55909.7 6.82487 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55658.4 6.79421 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56211.8 6.86172 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55874 6.82053 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56164.8 6.85597 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56307.5 6.87343 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56382 6.88247 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+-10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+-10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55911.5 6.82508 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57927.5 7.07116 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57924.8 7.07081 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57746 7.049 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57343.1 6.99988 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58172.2 7.10106 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57237.7 6.98697 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57876.3 7.06488 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57523.5 7.02188 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58500.7 7.14114 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57786.5 7.05393 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57300.4 6.99465 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57790.9 7.05448 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57203.4 6.9828 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57985 7.0782 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57888.7 7.06644 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58127.1 7.09555 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63452.4 7.74561 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63612.1 7.76511 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63338.7 7.73174 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64021.8 7.81515 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63197.4 7.71456 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63968.4 7.80864 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63853.8 7.79469 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63356.4 7.73397 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64117.7 7.82683 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63242.6 7.72007 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63972.5 7.80918 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63941.4 7.8053 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63651.8 7.77009 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63754.3 7.78255 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64292.8 7.84837 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64690.6 7.89693 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61215.8 7.47271 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60865.1 7.42995 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61147.3 7.46434 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61469.6 7.50369 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61379.1 7.49269 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61888.7 7.55484 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61403.2 7.49554 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62166.5 7.58877 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61896.4 7.55578 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61572.1 7.51618 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61720.5 7.53424 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62796.5 7.66557 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61868.1 7.55224 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60999.1 7.44621 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61368.2 7.49129 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62166.8 7.58877 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57169.7 6.97872 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57564 7.02681 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57724.2 7.04642 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57113.1 6.97176 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58126.5 7.0955 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57746.5 7.04909 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57665.4 7.03921 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57244.7 6.98784 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57357.8 7.00171 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57943.6 7.0732 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57279.1 6.99197 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57628.2 7.03471 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58567.7 7.1494 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58013.5 7.08178 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57681.5 7.04111 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57795.4 7.05508 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59002.3 7.20244 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59192.2 7.22562 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58512.8 7.14267 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58671.3 7.16207 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58171.6 7.10101 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58350.5 7.12281 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.4 7.11445 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58508.2 7.1421 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58511.7 7.14253 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58653.9 7.15989 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58550.4 7.14724 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59318.4 7.24097 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57853 7.06214 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58498.4 7.14087 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58426.4 7.13213 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59512.6 7.26467 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60443.5 -7.37839 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60908.5 -7.43514 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61060.2 -7.45367 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59984.4 -7.32237 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60129.5 -7.3401 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60783.1 -7.41989 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60431 -7.37691 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60140.7 -7.34142 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59998.4 -7.32403 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60395.7 -7.37254 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60028.3 -7.32774 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60887.8 -7.43267 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61066.5 -7.45441 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61164 -7.46632 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60739.8 -7.41458 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60443.5 -7.37838 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60544.4 -7.39071 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60303 -7.3612 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60143.3 -7.34174 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60328.6 -7.3644 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60395.9 -7.37256 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60276 -7.35798 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59684.2 -7.28572 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60187.9 -7.34719 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.4 -7.29698 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60128.6 -7.33997 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60450.5 -7.37922 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59890.5 -7.31089 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59647.3 -7.2812 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59834.9 -7.30412 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60999.1 -7.44624 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56552.5 -6.90341 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57074.5 -6.96718 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56536.5 -6.9015 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57036.3 -6.96248 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57405.1 -7.0075 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57259.2 -6.98972 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56419.6 -6.88718 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56461.1 -6.89226 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56951.6 -6.95213 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56800 -6.93367 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56600.5 -6.90927 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56511.5 -6.8984 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56870.5 -6.94221 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56993.6 -6.95727 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57679.7 -7.04103 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56560.6 -6.90438 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57546.6 -7.02477 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57035.8 -6.96245 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56800.6 -6.93377 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56505.8 -6.89773 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57161.4 -6.97779 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56855 -6.94036 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56619.7 -6.91168 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57621.8 -7.03399 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57359.7 -7.00197 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56825.9 -6.93676 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57031.5 -6.96191 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57239.3 -6.98735 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57254.8 -6.98918 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57074.4 -6.96716 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57574.5 -7.02822 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57912.4 -7.06943 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+61002.8 -7.44668 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61155.3 -7.4653 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61053.3 -7.45282 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61373.4 -7.4919 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60489.7 -7.38403 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61580.3 -7.51716 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60895.6 -7.4336 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60400.3 -7.3731 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61676.2 -7.52889 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61107.3 -7.45944 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61113.2 -7.46014 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61230.4 -7.47441 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60593.4 -7.39669 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61412.2 -7.49666 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61676.7 -7.52894 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61114.5 -7.46029 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62335.5 -7.60932 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61110.8 -7.45984 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61589.5 -7.51825 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62064.5 -7.57624 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61004.9 -7.44692 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60900.3 -7.43416 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61810.8 -7.54524 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61439.5 -7.49992 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61153 -7.46501 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61309.9 -7.48418 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61160.3 -7.46589 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61470.5 -7.50377 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61862.5 -7.55157 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61676 -7.52886 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62387.3 -7.61565 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60904.4 -7.43464 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56381.2 -6.88248 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56647.7 -6.91501 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56593.9 -6.90848 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56466.6 -6.8929 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56205.1 -6.86097 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56339.2 -6.87735 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56071.1 -6.84463 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56586.9 -6.90762 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56922.8 -6.94858 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56073.7 -6.84493 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57080.7 -6.96791 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57414.3 -7.00859 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56582.5 -6.9071 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56583.6 -6.90725 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56679.2 -6.91888 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56421.5 -6.8874 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56904.4 -6.94638 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57127.8 -6.97364 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56965.6 -6.9538 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56822.1 -6.93632 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57302 -6.99491 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.2 -6.90362 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56421.8 -6.88745 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56645.4 -6.91475 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57398.8 -7.00675 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57237.3 -6.98696 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56689 -6.92007 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56011.6 -6.83742 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56467.7 -6.89303 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55922.3 -6.8265 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56957.2 -6.95281 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56586.5 -6.90758 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62384.5 7.61517 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62210.4 7.59389 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62273.5 7.60161 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62019.1 7.5706 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61476.5 7.50432 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61597 7.51908 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62319.3 7.60717 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61416.3 7.49697 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61327.1 7.48611 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61486.5 7.50558 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61673.4 7.52832 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61732.6 7.53556 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61963.2 7.56376 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61418.2 7.49719 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61209 7.47165 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61987.6 7.56667 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62554.4 7.63592 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61756 7.53848 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62264.1 7.60048 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61953.7 7.56258 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62913.2 7.67967 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62120.9 7.583 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62709 7.65477 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62390 7.61587 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62229.7 7.59629 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61997.7 7.56794 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-62036.5 7.57262 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61752 7.53798 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61655.6 7.52623 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62767.5 7.66194 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61803 7.54422 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62761.8 7.66122 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58303.5 7.11703 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58372.5 7.12549 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58359.9 7.12397 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58262.2 7.11204 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58041 7.08509 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58261 7.11167 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58055.7 7.0867 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58647.4 7.15904 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58203.9 7.10488 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58893.9 7.18895 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58051.5 7.08632 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58539.4 7.14586 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58554.4 7.14758 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59335.9 7.24309 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58725.8 7.16875 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58465.7 7.13677 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.8 7.06394 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58529.8 7.14462 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-57972.8 7.07665 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57725.1 7.04637 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57946.6 7.07339 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57919.5 7.07013 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57971 7.07643 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57812.9 7.05708 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58059.5 7.08722 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57860.9 7.06295 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58481.2 7.13869 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57673.5 7.04005 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57733.9 7.04747 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58243 7.10961 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.2 7.09391 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58246.7 7.11007 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61009.3 7.44733 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61630.7 7.52317 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61471.8 7.50372 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61716.9 7.53361 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61893.5 7.55524 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.6 7.48633 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61623.4 7.52221 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61911.8 7.55752 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61279.1 7.48026 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62438.1 7.62175 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61937.8 7.56062 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62078.7 7.57786 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61496.4 7.50682 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61721.2 7.53417 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61321.1 7.48534 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61930.9 7.55971 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63425.9 7.7423 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63726 7.77898 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.8 7.83822 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63931 7.80396 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64114.7 7.8264 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63881.4 7.7979 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64089.1 7.82321 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64226 7.83998 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64162.8 7.83225 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64227.3 7.84014 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63324.3 7.72992 0.00 !Mu1ChX91ERaw[C.o2At2Ch11]
+-63377.9 7.73646 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64592.4 7.88475 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64051.2 7.81864 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63785.3 7.78625 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63425.1 7.74221 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56277.1 6.86963 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56696.4 6.92087 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56524.2 6.89973 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56421.9 6.88734 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56516.9 6.89896 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-56987.1 6.95627 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57341.9 6.99957 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56590.4 6.90785 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56842.5 6.93859 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57029.9 6.96151 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57840.1 7.06034 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57754.1 7.04987 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57718.4 7.04556 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57495 7.01832 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57673.7 7.0401 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-58035.2 7.08421 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57254.3 6.98888 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57309.6 6.99565 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56813.7 6.93513 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57684.3 7.04141 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57273.6 6.99128 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57263.3 6.99002 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56331.2 6.87626 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58331 7.12035 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57448.3 7.0126 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57763.7 7.05109 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57724.2 7.04628 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57458.3 7.01385 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57586.5 7.02947 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57671.5 7.03982 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57076.6 6.9672 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57818.9 7.05784 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59628.2 -7.27891 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60484.2 -7.3834 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59719.3 -7.29006 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59358 -7.24601 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60209.4 -7.34991 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60023.9 -7.32724 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59427.4 -7.25442 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59479.8 -7.26081 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.6 -7.25995 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59661.5 -7.28303 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59523 -7.2661 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59520.7 -7.26582 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60207.7 -7.3497 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59281.6 -7.23662 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59499.5 -7.26329 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59822.2 -7.30262 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62231 -7.59672 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62517.6 -7.63166 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62462.5 -7.62493 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62047 -7.57417 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62207.3 -7.59375 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62362.9 -7.61277 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62017.5 -7.57064 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61713.9 -7.53355 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61449.1 -7.50123 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62086.1 -7.57898 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62077.7 -7.57796 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62287.6 -7.60362 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62027.9 -7.5719 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61668.6 -7.52799 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61804.8 -7.54468 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115.7 -6.85022 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56255.7 -6.86728 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55634.9 -6.79153 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55640.9 -6.79227 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55384.3 -6.76092 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56420.4 -6.88745 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55380.9 -6.76051 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55934.8 -6.82817 0.00 !Mu1ChY40ERaw[C.o3At3Ch8]
+56036.5 -6.84053 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56149.2 -6.85434 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55509.9 -6.77625 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56637.3 -6.9139 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55637.9 -6.79188 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55730.3 -6.80315 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55751.6 -6.80582 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55760.9 -6.80693 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.7 -6.9819 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56616.7 -6.91132 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56565.1 -6.90504 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56007.5 -6.83694 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56838.9 -6.93846 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56277 -6.86982 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56475.8 -6.89415 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56394.9 -6.88425 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57286.1 -6.99307 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57107.7 -6.97128 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56704.7 -6.92209 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57329.2 -6.99832 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57398.8 -7.00677 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57025.8 -6.96125 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56179.4 -6.85794 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57294.5 -6.99407 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61036 -7.45079 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61615.2 -7.52147 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61327.7 -7.48646 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61616.9 -7.52169 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61289.5 -7.48175 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60072.3 -7.33313 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60461.8 -7.38072 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61147.5 -7.46439 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60324.6 -7.36394 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61243.3 -7.47609 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60892.2 -7.43321 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60362.6 -7.36861 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60563.4 -7.39312 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60969.5 -7.44272 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60632 -7.40146 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61354.5 -7.48966 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61129 -7.46218 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61142.4 -7.46376 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61098.2 -7.45836 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60505 -7.38602 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60475.6 -7.38236 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61198.3 -7.47058 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60653.8 -7.40421 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60610.3 -7.39887 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61084.6 -7.45673 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61281.6 -7.48082 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60759.5 -7.41709 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60908.7 -7.43532 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60520.1 -7.38782 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61330.5 -7.48678 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61609.9 -7.52084 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60752.2 -7.41622 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55866.2 -6.81972 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55510.1 -6.77629 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55739.1 -6.80422 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55602.7 -6.78757 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55779.5 -6.80916 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55452.6 -6.76931 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55433.8 -6.76695 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56175.8 -6.85753 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55295 -6.75003 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55267.6 -6.74664 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55913.4 -6.82548 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55219 -6.74076 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55914.7 -6.82563 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56088.3 -6.84683 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56128.7 -6.85177 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.7 -6.9068 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54791.9 -6.68861 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55573.5 -6.78397 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55177.3 -6.73564 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.9 -6.722 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55271.1 -6.74706 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55426.4 -6.76607 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55308.9 -6.7517 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55560.5 -6.78242 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55828.4 -6.8151 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55461.9 -6.77042 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.4 -6.69404 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55154.2 -6.73277 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55218.5 -6.74067 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55198.9 -6.73821 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55347.2 -6.75638 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56270.5 -6.86904 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62771.8 7.66248 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62536.2 7.63367 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62923.2 7.68092 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62099.2 7.5803 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62071.6 7.577 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62762.5 7.66131 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62536.6 7.63372 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62863.4 7.6736 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62977.6 7.68755 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62169.2 7.58889 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62486.2 7.62758 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62494 7.62855 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62591.4 7.6404 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62596.5 7.64104 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62693.3 7.65283 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63431.9 7.74304 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62275.5 7.60186 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61847 7.54956 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61648.9 7.52542 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61472.2 7.5038 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61487.7 7.50573 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62323.6 7.60772 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62160.6 7.58783 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61801.5 7.54404 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61589.4 7.51813 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61837.9 7.54843 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61997.2 7.56788 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61886.9 7.55441 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61669.6 7.52787 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61317.6 7.48493 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62385.4 7.6153 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61544.8 7.51271 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59005.1 7.20263 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58125.4 7.0952 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58621 7.15577 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58420.8 7.13128 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58182.1 7.10215 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58179.5 7.10183 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58382.7 7.12665 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57951.6 7.074 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57619.4 7.03346 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58602.8 7.15349 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58763.6 7.17317 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58295.3 7.11601 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58611.5 7.15458 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58569.5 7.14945 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58368.6 7.12489 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58524.7 7.144 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57829.7 7.05919 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57177.7 6.97958 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58151 7.0984 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57925 7.07083 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57600.2 7.03119 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57219.8 6.9847 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57855.4 7.06228 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57682.2 7.04116 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57912.6 7.06929 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57598.9 7.03102 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57919.6 7.07016 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.5 6.9577 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57498.2 7.01871 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56729.1 6.92483 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57500.6 7.01901 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57910.6 7.06904 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63311 7.72824 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64991.8 7.93347 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-63994.5 7.8117 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63750.3 7.78186 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64408.5 7.86228 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63629 7.76702 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63438.8 7.74388 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63358.3 7.73399 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63144.6 7.70793 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63812.1 7.7894 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63662.4 7.77117 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63876.9 7.79733 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63771.1 7.78444 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63652.1 7.7699 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63600.3 7.76358 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63256.4 7.72158 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63333.7 7.73107 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63150 7.70859 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63204.5 7.71524 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63982.1 7.81015 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63771.3 7.78446 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63682.7 7.7737 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63921.1 7.80269 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63090.3 7.7013 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63548.7 7.75733 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63345.7 7.73257 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63537.7 7.75593 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63267.1 7.72292 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64614.3 7.88733 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63737 7.78019 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63627.5 7.76682 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59011.6 7.20345 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58536.3 7.14543 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58294.5 7.11592 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58764.5 7.17328 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59388.2 7.24938 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59353.9 7.24523 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58868.9 7.18606 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59020.4 7.20454 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59051.2 7.20827 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59067.7 7.21031 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58780.6 7.17527 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59011.8 7.20348 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58685.6 7.16369 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60313.6 7.36243 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58947.7 7.1956 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58640.6 7.15819 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59256.4 7.23333 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59391.4 7.24979 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59741.5 7.29254 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59153 7.2207 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59659.3 7.28255 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60043.5 7.32941 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59492.9 7.26218 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59355.9 7.2455 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60079 7.3337 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58759.7 7.17268 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59106.3 7.21501 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59356.4 7.24556 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58905.4 7.19045 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58909 7.19091 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59139.8 7.21905 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59244.4 7.23184 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63180.3 -7.71254 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63958.5 -7.80757 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62563.9 -7.63734 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63393.8 -7.73864 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62965.3 -7.6863 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62695.2 -7.65332 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63071 -7.6992 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62684.7 -7.65205 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62805.2 -7.66674 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63405.9 -7.74008 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+63006 -7.69129 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62613.8 -7.64344 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62135.8 -7.58506 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62797.8 -7.66584 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+63003.9 -7.69104 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63451.5 -7.74566 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61680.4 -7.52939 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60963.7 -7.44202 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60731.3 -7.4136 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62044.4 -7.57386 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.9 -7.46121 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60932 -7.4381 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62091.8 -7.57965 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61042.5 -7.45157 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61080.2 -7.45622 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61569 -7.51583 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61088.9 -7.45724 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61401.8 -7.49545 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61590.8 -7.51854 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61456.7 -7.50214 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61348.2 -7.48891 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61814.6 -7.54586 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56310.4 -6.87387 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56475.6 -6.89413 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56843.7 -6.93897 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56709.9 -6.9227 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+57006.5 -6.95894 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56922.7 -6.94871 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56395.9 -6.88437 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56437.5 -6.88946 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56168.1 -6.85657 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58137.4 -7.09691 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56752.1 -6.92786 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56268.3 -6.86879 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57248.3 -6.98843 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57237.7 -6.98715 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57062.5 -6.96574 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56700.2 -6.92152 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57609.4 -7.03252 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57045.1 -6.96368 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57893.4 -7.06716 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57432.1 -7.01085 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57327.3 -6.9981 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58593.6 -7.15267 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57713.2 -7.04516 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57801 -7.05589 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57750.1 -7.0497 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57564.6 -7.02705 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57513.2 -7.02079 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58298.6 -7.11669 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57883.6 -7.066 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57333.9 -6.99889 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57877.7 -7.06529 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58222.3 -7.10732 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59352.4 -7.24534 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59653 -7.28202 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59466.7 -7.25926 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60421 -7.37573 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59563.3 -7.27104 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59865.2 -7.30789 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59568.1 -7.27161 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59903.1 -7.31254 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59874.2 -7.30895 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59565.9 -7.27135 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59951.4 -7.31844 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60102.6 -7.33689 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59329 -7.24242 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59973.3 -7.32106 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59369.2 -7.24734 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60205.5 -7.34945 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60559.1 -7.39262 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61223.9 -7.47379 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60555.5 -7.39217 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61267.8 -7.47916 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61183.2 -7.46879 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60877.4 -7.43143 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60964.7 -7.44213 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61316.7 -7.48517 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60889.6 -7.43289 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60834.9 -7.42623 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61475.4 -7.50452 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60713.8 -7.41149 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61139.9 -7.46349 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60586.2 -7.39585 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61091.2 -7.45753 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61463 -7.50289 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56883.7 -6.94393 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55958.3 -6.83096 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56259.7 -6.86775 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56620.9 -6.91184 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56390.1 -6.88368 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56741.9 -6.92663 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55881.7 -6.82158 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57242.5 -6.98773 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56047.6 -6.84185 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56706.4 -6.92227 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56618.3 -6.91153 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57516.3 -7.02116 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57052.7 -6.96458 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56701.3 -6.92167 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57023.2 -6.96095 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56155.3 -6.85506 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56480.1 -6.89468 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57291 -6.99365 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56601.1 -6.90948 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56864.7 -6.94167 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56504.8 -6.89772 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56531 -6.90085 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56803.1 -6.93407 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56744.6 -6.92696 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56339.6 -6.87753 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57094.7 -6.96973 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57471.8 -7.01574 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56243.7 -6.86585 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56920.2 -6.94841 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56357.9 -6.87972 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56171.4 -6.85698 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62432 7.62115 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61898.1 7.55599 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62261.8 7.60035 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62377.7 7.61452 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61987.1 7.56678 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61925.3 7.55922 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62100.7 7.58066 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61621.8 7.5222 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61764.3 7.53956 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61918.3 7.55834 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61881.5 7.55388 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62903 7.67858 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61674.1 7.52859 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61812.4 7.54541 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61555.6 7.51408 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62627.4 7.64492 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63656.5 7.77047 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63108 7.70354 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62943.4 7.68346 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62837.7 7.67058 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62676.4 7.65089 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.8 7.70503 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63798 7.78783 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63791 7.78695 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62795 7.6654 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63502.6 7.75172 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63532.1 7.75542 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63309.9 7.72829 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63637.8 7.76831 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63587.2 7.76214 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64531.7 7.87739 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63742.8 7.78111 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59430.3 7.25494 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59220.2 7.22924 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58174.6 7.10163 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58373.6 7.12581 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58848.1 7.18369 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-59012.9 7.20387 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59307.2 7.23977 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58677.9 7.16294 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59283.1 7.23677 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58956.4 7.1969 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-59043.5 7.20751 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59047.9 7.20805 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59414.1 7.25268 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58832.8 7.18171 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59184.6 7.22469 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57410.4 7.00817 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57223.7 6.98537 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56941.7 6.95094 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57306.3 6.99545 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56939.2 6.95063 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57390.5 7.00573 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56638.3 6.91393 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57358.5 7.00183 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57684.4 7.04165 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56591.3 6.9082 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57508 7.02016 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57136.1 6.97475 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56380.4 6.88251 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56917.4 6.9481 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56824.5 6.93679 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56577 6.90664 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64140 7.82956 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63839.3 7.79281 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63564.4 7.75927 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63770.4 7.78438 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63671.6 7.77235 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63272.3 7.72359 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64307 7.84993 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62530.8 7.63314 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62672.9 7.65044 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63019 7.69272 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63152.8 7.70897 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63441 7.74419 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64109.3 7.82574 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62453.5 7.62365 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62622.2 7.64425 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63017.2 7.69251 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62453.4 7.62363 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62780.3 7.66354 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62670.1 7.65009 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62554.7 7.63598 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62062.4 7.57587 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62422.6 7.61994 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62402.7 7.61746 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.8 7.58526 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62351.6 7.61123 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62791 7.66488 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62302.7 7.60527 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62078.1 7.57785 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62829.3 7.66952 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.5 7.6367 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62144 7.5859 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62353.9 7.61152 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56131.1 6.85191 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55920.2 6.82616 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55178.7 6.73562 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55783.6 6.8095 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55958 6.83076 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55940.2 6.82857 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55976 6.83293 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55255.5 6.74498 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55479.7 6.77237 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-56040.3 6.84079 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55791.2 6.81044 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55701.6 6.79948 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56738.3 6.92598 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56293.9 6.87171 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55819.1 6.81378 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55694.2 6.79856 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57554.1 7.02556 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56976.8 6.95514 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57518.4 7.02123 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56980.7 6.95562 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58026.2 7.08323 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57191.1 6.98127 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57432 7.01071 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56290.9 6.87137 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56748.2 6.92722 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57901.7 7.06808 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57512.9 7.02056 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57112.4 6.9717 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57653.3 7.03769 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56762.7 6.92904 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57841.9 7.06073 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56524.8 6.89995 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60194.7 -7.34802 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987.9 -7.20075 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60132.2 -7.34041 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59977.5 -7.32152 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59787.4 -7.2983 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59893.4 -7.31122 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59798.6 -7.29963 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60251.3 -7.3549 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60589.5 -7.39622 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60436.6 -7.37756 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60189.7 -7.3474 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59826.4 -7.3031 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59687.2 -7.28606 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59622.1 -7.27818 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60574.8 -7.39447 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59719.2 -7.29002 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62963.1 -7.68601 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63186.9 -7.71331 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62262.3 -7.60044 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62806 -7.6668 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63246.8 -7.72062 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63550.3 -7.75759 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+63016.8 -7.69256 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62986.6 -7.68882 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63522.2 -7.75424 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63478.7 -7.7489 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62643.1 -7.64692 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63429.9 -7.74292 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62483.7 -7.62745 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62960.7 -7.68572 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63085.3 -7.7009 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62969.4 -7.68675 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84715 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56228.6 -6.86391 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55834.6 -6.81583 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55713 -6.80096 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55757 -6.80633 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56228 -6.86384 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55925.9 -6.82695 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55539.7 -6.77979 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55412.1 -6.76422 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185 -6.85859 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55981.8 -6.83375 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55370.8 -6.75918 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55748.9 -6.80537 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55612.3 -6.78871 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55926.3 -6.82699 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55801.2 -6.81172 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56670.8 -6.9179 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56949.5 -6.9519 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57147.1 -6.97597 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56960.4 -6.95318 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56493.9 -6.89629 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56963.2 -6.95364 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56581.6 -6.90701 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57050.7 -6.96421 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57076.9 -6.96747 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56623.8 -6.91216 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57493.2 -7.01827 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57089.4 -6.96896 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57586.3 -7.02963 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57044.7 -6.96349 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56777.7 -6.93089 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57421.6 -7.00961 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59437.6 -7.25562 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59994 -7.32351 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59523.9 -7.2662 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59337.1 -7.24336 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59498.6 -7.26303 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58818.6 -7.18002 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59332.2 -7.24276 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+60018.7 -7.32659 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60180.5 -7.3463 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59480.7 -7.26089 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59527.7 -7.26664 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59635.1 -7.27972 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59581.2 -7.27315 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59444.7 -7.25647 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59048.4 -7.20811 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59989.5 -7.32298 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62855.4 -7.67285 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62750.4 -7.66003 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62532.7 -7.63346 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62151.3 -7.58691 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.6 -7.57075 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62710.2 -7.65509 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62271.6 -7.60155 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62960 -7.68565 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62677.8 -7.65121 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62626.1 -7.64489 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61878.3 -7.55359 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61999.2 -7.56832 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61924.7 -7.55927 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+61995.6 -7.56788 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61960.5 -7.56357 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61833.6 -7.54812 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56731.4 -6.92523 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56909.9 -6.94702 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56318.3 -6.87484 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55946.5 -6.8294 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56299.8 -6.87252 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56328.7 -6.87609 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55986.5 -6.8343 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55996.3 -6.83546 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55858.1 -6.81861 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56336.4 -6.877 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56504.4 -6.89753 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56280.4 -6.87019 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55801.7 -6.81176 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55903.8 -6.82419 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56672.2 -6.91805 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56668.9 -6.91765 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57102.2 -6.97047 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57033.7 -6.96222 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57102 -6.97059 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+57015.2 -6.95994 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57666.6 -7.03944 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57327.3 -6.99806 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56838.8 -6.9384 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57642.3 -7.0364 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57472.4 -7.01575 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57009.2 -6.95917 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57427.6 -7.01028 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57105.1 -6.97094 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57606 -7.03198 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56852.7 -6.94013 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57287.8 -6.99311 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57526.7 -7.02236 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calibT0.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calibT0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..99605ef63058dd281004c7ed8c90ec17435b8b21
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calibT0.cal1
@@ -0,0 +1,1023 @@
+946.164 -0.114176 0.00 !Mu0ChX1TRaw[Co1At1Ch1]
+956.811 -0.115529 0.00 !Mu0ChX2TRaw[Co1At1Ch2]
+957.988 -0.115657 0.00 !Mu0ChX3TRaw[Co1At1Ch3]
+972.139 -0.117409 0.00 !Mu0ChX4TRaw[Co1At1Ch4]
+971.761 -0.117367 0.00 !Mu0ChX5TRaw[Co1At1Ch5]
+971.702 -0.117353 0.00 !Mu0ChX6TRaw[Co1At1Ch6]
+976.911 -0.117969 0.00 !Mu0ChX7TRaw[Co1At1Ch7]
+979.143 -0.118246 0.00 !Mu0ChX8TRaw[Co1At1Ch8]
+977.915 -0.118065 0.00 !Mu0ChX9TRaw[Co1At1Ch9]
+981.976 -0.118546 0.00 !Mu0ChX10TRaw[Co1At1Ch10]
+986.577 -0.119138 0.00 !Mu0ChX11TRaw[Co1At1Ch11]
+986.184 -0.119075 0.00 !Mu0ChX12TRaw[Co1At1Ch12]
+993.563 -0.119996 0.00 !Mu0ChX13TRaw[Co1At1Ch13]
+978.874 -0.118174 0.00 !Mu0ChX14TRaw[Co1At1Ch14]
+989.894 -0.119531 0.00 !Mu0ChX15TRaw[Co1At1Ch15]
+1318.57 -0.118448 0.00 !Mu0ChX16TRaw[Co1At1Ch16]
+955.564 -0.115275 0.00 !Mu0ChX17TRaw[Co1At2Ch1]
+965.774 -0.116527 0.00 !Mu0ChX18TRaw[Co1At2Ch2]
+978.184 -0.118044 0.00 !Mu0ChX19TRaw[Co1At2Ch3]
+978.854 -0.118125 0.00 !Mu0ChX20TRaw[Co1At2Ch4]
+987.988 -0.119233 0.00 !Mu0ChX21TRaw[Co1At2Ch5]
+982.353 -0.118555 0.00 !Mu0ChX22TRaw[Co1At2Ch6]
+992.928 -0.119845 0.00 !Mu0ChX23TRaw[Co1At2Ch7]
+994.329 -0.120005 0.00 !Mu0ChX24TRaw[Co1At2Ch8]
+989.504 -0.119427 0.00 !Mu0ChX25TRaw[Co1At2Ch9]
+1000.62 -0.120777 0.00 !Mu0ChX26TRaw[Co1At2Ch10]
+1002.92 -0.121057 0.00 !Mu0ChX27TRaw[Co1At2Ch11]
+1006.98 -0.121545 0.00 !Mu0ChX28TRaw[Co1At2Ch12]
+1002.57 -0.121021 0.00 !Mu0ChX29TRaw[Co1At2Ch13]
+1001.43 -0.120851 0.00 !Mu0ChX30TRaw[Co1At2Ch14]
+997.945 -0.12045 0.00 !Mu0ChX31TRaw[Co1At2Ch15]
+993.524 -0.119947 0.00 !Mu0ChX32TRaw[Co1At2Ch16]
+872.545 -0.105192 0.00 !Mu0ChX33TRaw[Co1At3Ch1]
+870.474 -0.104955 0.00 !Mu0ChX34TRaw[Co1At3Ch2]
+890.439 -0.107397 0.00 !Mu0ChX35TRaw[Co1At3Ch3]
+879.216 -0.106033 0.00 !Mu0ChX36TRaw[Co1At3Ch4]
+881.009 -0.106227 0.00 !Mu0ChX37TRaw[Co1At3Ch5]
+895.366 -0.108005 0.00 !Mu0ChX38TRaw[Co1At3Ch6]
+897.01 -0.108195 0.00 !Mu0ChX39TRaw[Co1At3Ch7]
+895.47 -0.107979 0.00 !Mu0ChX40TRaw[Co1At3Ch8]
+898.037 -0.108302 0.00 !Mu0ChX41TRaw[Co1At3Ch9]
+898.361 -0.108334 0.00 !Mu0ChX42TRaw[Co1At3Ch10]
+897.507 -0.108243 0.00 !Mu0ChX43TRaw[Co1At3Ch11]
+904.455 -0.109095 0.00 !Mu0ChX44TRaw[Co1At3Ch12]
+899.781 -0.108505 0.00 !Mu0ChX45TRaw[Co1At3Ch13]
+894.363 -0.107877 0.00 !Mu0ChX46TRaw[Co1At3Ch14]
+896.817 -0.108187 0.00 !Mu0ChX47TRaw[Co1At3Ch15]
+930.792 -0.10826 0.00 !Mu0ChX48TRaw[Co1At3Ch16]
+884.648 -0.106556 0.00 !Mu0ChX49TRaw[Co1At4Ch1]
+887.836 -0.106942 0.00 !Mu0ChX50TRaw[Co1At4Ch2]
+893.25 -0.107622 0.00 !Mu0ChX51TRaw[Co1At4Ch3]
+901.75 -0.109464 0.00 !Mu0ChX52TRaw[Co1At4Ch4]
+907.099 -0.109295 0.00 !Mu0ChX53TRaw[Co1At4Ch5]
+909.979 -0.109652 0.00 !Mu0ChX54TRaw[Co1At4Ch6]
+912.526 -0.109955 0.00 !Mu0ChX55TRaw[Co1At4Ch7]
+916.597 -0.110458 0.00 !Mu0ChX56TRaw[Co1At4Ch8]
+925.24 -0.111499 0.00 !Mu0ChX57TRaw[Co1At4Ch9]
+916.715 -0.110456 0.00 !Mu0ChX58TRaw[Co1At4Ch10]
+924.251 -0.111378 0.00 !Mu0ChX59TRaw[Co1At4Ch11]
+928.786 -0.111943 0.00 !Mu0ChX60TRaw[Co1At4Ch12]
+935.878 -0.112807 0.00 !Mu0ChX61TRaw[Co1At4Ch13]
+938.667 -0.11314 0.00 !Mu0ChX62TRaw[Co1At4Ch14]
+940.288 -0.113338 0.00 !Mu0ChX63TRaw[Co1At4Ch15]
+929.111 -0.111982 0.00 !Mu0ChX64TRaw[Co1At4Ch16]
+957.51 -0.115846 0.00 !Mu0ChX65TRaw[Co2At1Ch1]
+962.646 -0.11646 0.00 !Mu0ChX66TRaw[Co2At1Ch2]
+972.344 -0.117644 0.00 !Mu0ChX67TRaw[Co2At1Ch3]
+973.464 -0.117791 0.00 !Mu0ChX68TRaw[Co2At1Ch4]
+976.904 -0.118174 0.00 !Mu0ChX69TRaw[Co2At1Ch5]
+989.493 -0.119717 0.00 !Mu0ChX70TRaw[Co2At1Ch6]
+993.895 -0.120284 0.00 !Mu0ChX71TRaw[Co2At1Ch7]
+995.117 -0.120426 0.00 !Mu0ChX72TRaw[Co2At1Ch8]
+1006.3 -0.121763 0.00 !Mu0ChX73TRaw[Co2At1Ch9]
+987.403 -0.119445 0.00 !Mu0ChX74TRaw[Co2At1Ch10]
+1004.54 -0.121535 0.00 !Mu0ChX75TRaw[Co2At1Ch11]
+995.118 -0.120381 0.00 !Mu0ChX76TRaw[Co2At1Ch12]
+1002.39 -0.121262 0.00 !Mu0ChX77TRaw[Co2At1Ch13]
+1006.49 -0.121766 0.00 !Mu0ChX78TRaw[Co2At1Ch14]
+997.059 -0.120615 0.00 !Mu0ChX79TRaw[Co2At1Ch15]
+1377.74 -0.120952 0.00 !Mu0ChX80TRaw[Co2At1Ch16]
+923.114 -0.111515 0.00 !Mu0ChX81TRaw[Co2At2Ch1]
+932.866 -0.112746 0.00 !Mu0ChX82TRaw[Co2At2Ch2]
+924.928 -0.111774 0.00 !Mu0ChX83TRaw[Co2At2Ch3]
+937.265 -0.113281 0.00 !Mu0ChX84TRaw[Co2At2Ch4]
+930.752 -0.112468 0.00 !Mu0ChX85TRaw[Co2At2Ch5]
+941.628 -0.113819 0.00 !Mu0ChX86TRaw[Co2At2Ch6]
+949.998 -0.114818 0.00 !Mu0ChX87TRaw[Co2At2Ch7]
+943.027 -0.113978 0.00 !Mu0ChX88TRaw[Co2At2Ch8]
+949.721 -0.114813 0.00 !Mu0ChX89TRaw[Co2At2Ch9]
+957.242 -0.115728 0.00 !Mu0ChX90TRaw[Co2At2Ch10]
+964.815 -0.11664 0.00 !Mu0ChX91TRaw[Co2At2Ch11]
+961.466 -0.11625 0.00 !Mu0ChX92TRaw[Co2At2Ch12]
+961.749 -0.116299 0.00 !Mu0ChX93TRaw[Co2At2Ch13]
+960.655 -0.116152 0.00 !Mu0ChX94TRaw[Co2At2Ch14]
+974.674 -0.117868 0.00 !Mu0ChX95TRaw[Co2At2Ch15]
+992.705 -0.116744 0.00 !Mu0ChX96TRaw[Co2At2Ch16]
+868.269 -0.105013 0.00 !Mu0ChX97TRaw[Co2At3Ch1]
+877.648 -0.106169 0.00 !Mu0ChX98TRaw[Co2At3Ch2]
+878.241 -0.106212 0.00 !Mu0ChX99TRaw[Co2At3Ch3]
+883.994 -0.106905 0.00 !Mu0ChX100TRaw[Co2At3Ch4]
+893.321 -0.108043 0.00 !Mu0ChX101TRaw[Co2At3Ch5]
+900.56 -0.108935 0.00 !Mu0ChX102TRaw[Co2At3Ch6]
+896.766 -0.108442 0.00 !Mu0ChX103TRaw[Co2At3Ch7]
+894.903 -0.108194 0.00 !Mu0ChX104TRaw[Co2At3Ch8]
+904.239 -0.109336 0.00 !Mu0ChX105TRaw[Co2At3Ch9]
+902.018 -0.109053 0.00 !Mu0ChX106TRaw[Co2At3Ch10]
+907.673 -0.109771 0.00 !Mu0ChX107TRaw[Co2At3Ch11]
+904.96 -0.109449 0.00 !Mu0ChX108TRaw[Co2At3Ch12]
+902.795 -0.109128 0.00 !Mu0ChX109TRaw[Co2At3Ch13]
+906.335 -0.109641 0.00 !Mu0ChX110TRaw[Co2At3Ch14]
+903.029 -0.109177 0.00 !Mu0ChX111TRaw[Co2At3Ch15]
+912.908 -0.109478 0.00 !Mu0ChX112TRaw[Co2At3Ch16]
+888.694 -0.107364 0.00 !Mu0ChX113TRaw[Co2At4Ch1]
+891.736 -0.107748 0.00 !Mu0ChX114TRaw[Co2At4Ch2]
+891.957 -0.107782 0.00 !Mu0ChX115TRaw[Co2At4Ch3]
+901.87 -0.109007 0.00 !Mu0ChX116TRaw[Co2At4Ch4]
+905.48 -0.109423 0.00 !Mu0ChX117TRaw[Co2At4Ch5]
+899.196 -0.108648 0.00 !Mu0ChX118TRaw[Co2At4Ch6]
+913.782 -0.110413 0.00 !Mu0ChX119TRaw[Co2At4Ch7]
+914.779 -0.110579 0.00 !Mu0ChX120TRaw[Co2At4Ch8]
+909.004 -0.109898 0.00 !Mu0ChX121TRaw[Co2At4Ch9]
+914.282 -0.1105 0.00 !Mu0ChX122TRaw[Co2At4Ch10]
+922.657 -0.111529 0.00 !Mu0ChX123TRaw[Co2At4Ch11]
+914.822 -0.110604 0.00 !Mu0ChX124TRaw[Co2At4Ch12]
+917.977 -0.110972 0.00 !Mu0ChX125TRaw[Co2At4Ch13]
+919.687 -0.11118 0.00 !Mu0ChX126TRaw[Co2At4Ch14]
+914.922 -0.110613 0.00 !Mu0ChX127TRaw[Co2At4Ch15]
+925.329 -0.111151 0.00 !Mu0ChX128TRaw[Co2At4Ch16]
+942.169 -0.114033 0.00 !Mu0ChY2TRaw[Co3At1Ch2]
+941.094 -0.113921 0.00 !Mu0ChY3TRaw[Co3At1Ch3]
+959.045 -0.116104 0.00 !Mu0ChY4TRaw[Co3At1Ch4]
+954.629 -0.115563 0.00 !Mu0ChY5TRaw[Co3At1Ch5]
+970.443 -0.117481 0.00 !Mu0ChY6TRaw[Co3At1Ch6]
+969.234 -0.117339 0.00 !Mu0ChY7TRaw[Co3At1Ch7]
+966.53 -0.117018 0.00 !Mu0ChY8TRaw[Co3At1Ch8]
+973.409 -0.117842 0.00 !Mu0ChY9TRaw[Co3At1Ch9]
+968.923 -0.117316 0.00 !Mu0ChY10TRaw[Co3At1Ch10]
+971.661 -0.117632 0.00 !Mu0ChY11TRaw[Co3At1Ch11]
+977.841 -0.118398 0.00 !Mu0ChY12TRaw[Co3At1Ch12]
+975.821 -0.11814 0.00 !Mu0ChY13TRaw[Co3At1Ch13]
+971.638 -0.117633 0.00 !Mu0ChY14TRaw[Co3At1Ch14]
+974.225 -0.117944 0.00 !Mu0ChY15TRaw[Co3At1Ch15]
+980.805 -0.118761 0.00 !Mu0ChY16TRaw[Co3At1Ch16]
+935.973 -0.113175 0.00 !Mu0ChY17TRaw[Co3At2Ch1]
+944.972 -0.114309 0.00 !Mu0ChY18TRaw[Co3At2Ch2]
+953.592 -0.115351 0.00 !Mu0ChY19TRaw[Co3At2Ch3]
+945.492 -0.11436 0.00 !Mu0ChY20TRaw[Co3At2Ch4]
+948.066 -0.114686 0.00 !Mu0ChY21TRaw[Co3At2Ch5]
+951.558 -0.115103 0.00 !Mu0ChY22TRaw[Co3At2Ch6]
+957.545 -0.115832 0.00 !Mu0ChY23TRaw[Co3At2Ch7]
+957.576 -0.115841 0.00 !Mu0ChY24TRaw[Co3At2Ch8]
+962.251 -0.116398 0.00 !Mu0ChY25TRaw[Co3At2Ch9]
+960.479 -0.116195 0.00 !Mu0ChY26TRaw[Co3At2Ch10]
+957.007 -0.115516 0.00 !Mu0ChY27TRaw[Co3At2Ch11]
+971.646 -0.117562 0.00 !Mu0ChY28TRaw[Co3At2Ch12]
+974.064 -0.117834 0.00 !Mu0ChY29TRaw[Co3At2Ch13]
+968.974 -0.11722 0.00 !Mu0ChY30TRaw[Co3At2Ch14]
+971.944 -0.11759 0.00 !Mu0ChY31TRaw[Co3At2Ch15]
+966.713 -0.116928 0.00 !Mu0ChY32TRaw[Co3At2Ch16]
+869.43 -0.105131 0.00 !Mu0ChY33TRaw[Co3At3Ch1]
+868.989 -0.105113 0.00 !Mu0ChY34TRaw[Co3At3Ch2]
+886.133 -0.107174 0.00 !Mu0ChY35TRaw[Co3At3Ch3]
+876.002 -0.105955 0.00 !Mu0ChY36TRaw[Co3At3Ch4]
+887.653 -0.107363 0.00 !Mu0ChY37TRaw[Co3At3Ch5]
+886.897 -0.107278 0.00 !Mu0ChY38TRaw[Co3At3Ch6]
+887.559 -0.107347 0.00 !Mu0ChY39TRaw[Co3At3Ch7]
+905.525 -0.109567 0.00 !Mu0ChY40TRaw[Co3At3Ch8]
+903.288 -0.109268 0.00 !Mu0ChY41TRaw[Co3At3Ch9]
+901.488 -0.109045 0.00 !Mu0ChY42TRaw[Co3At3Ch10]
+900.453 -0.108924 0.00 !Mu0ChY43TRaw[Co3At3Ch11]
+911.154 -0.110196 0.00 !Mu0ChY44TRaw[Co3At3Ch12]
+908.4 -0.109895 0.00 !Mu0ChY45TRaw[Co3At3Ch13]
+903.164 -0.10924 0.00 !Mu0ChY46TRaw[Co3At3Ch14]
+913.419 -0.110513 0.00 !Mu0ChY47TRaw[Co3At3Ch15]
+901.371 -0.109056 0.00 !Mu0ChY48TRaw[Co3At3Ch16]
+855.809 -0.103507 0.00 !Mu0ChY49TRaw[Co3At4Ch1]
+866.963 -0.104888 0.00 !Mu0ChY50TRaw[Co3At4Ch2]
+862.301 -0.104347 0.00 !Mu0ChY51TRaw[Co3At4Ch3]
+879.214 -0.106391 0.00 !Mu0ChY52TRaw[Co3At4Ch4]
+881.851 -0.106718 0.00 !Mu0ChY53TRaw[Co3At4Ch5]
+883.115 -0.106878 0.00 !Mu0ChY54TRaw[Co3At4Ch6]
+879.659 -0.106441 0.00 !Mu0ChY55TRaw[Co3At4Ch7]
+887.765 -0.107426 0.00 !Mu0ChY56TRaw[Co3At4Ch8]
+889.179 -0.107608 0.00 !Mu0ChY57TRaw[Co3At4Ch9]
+893.434 -0.108136 0.00 !Mu0ChY58TRaw[Co3At4Ch10]
+900.612 -0.109012 0.00 !Mu0ChY59TRaw[Co3At4Ch11]
+899.41 -0.108611 0.00 !Mu0ChY60TRaw[Co3At4Ch12]
+898.225 -0.108719 0.00 !Mu0ChY61TRaw[Co3At4Ch13]
+905.378 -0.109581 0.00 !Mu0ChY62TRaw[Co3At4Ch14]
+899.576 -0.108895 0.00 !Mu0ChY63TRaw[Co3At4Ch15]
+904.856 -0.109543 0.00 !Mu0ChY64TRaw[Co3At4Ch16]
+964.166 -0.116469 0.00 !Mu0ChY65TRaw[Co4At1Ch1]
+970.821 -0.117302 0.00 !Mu0ChY66TRaw[Co4At1Ch2]
+976.54 -0.118012 0.00 !Mu0ChY67TRaw[Co4At1Ch3]
+976.814 -0.118028 0.00 !Mu0ChY68TRaw[Co4At1Ch4]
+979.621 -0.118378 0.00 !Mu0ChY69TRaw[Co4At1Ch5]
+983.271 -0.118825 0.00 !Mu0ChY70TRaw[Co4At1Ch6]
+982.977 -0.118781 0.00 !Mu0ChY71TRaw[Co4At1Ch7]
+986.021 -0.119156 0.00 !Mu0ChY72TRaw[Co4At1Ch8]
+989.88 -0.119628 0.00 !Mu0ChY73TRaw[Co4At1Ch9]
+981.368 -0.118591 0.00 !Mu0ChY74TRaw[Co4At1Ch10]
+990.1 -0.119656 0.00 !Mu0ChY75TRaw[Co4At1Ch11]
+1000.52 -0.120924 0.00 !Mu0ChY76TRaw[Co4At1Ch12]
+995.667 -0.120327 0.00 !Mu0ChY77TRaw[Co4At1Ch13]
+997.754 -0.120579 0.00 !Mu0ChY78TRaw[Co4At1Ch14]
+994.951 -0.120247 0.00 !Mu0ChY79TRaw[Co4At1Ch15]
+1001.99 -0.121097 0.00 !Mu0ChY80TRaw[Co4At1Ch16]
+970.583 -0.117145 0.00 !Mu0ChY81TRaw[Co4At2Ch1]
+986.462 -0.119118 0.00 !Mu0ChY82TRaw[Co4At2Ch2]
+981.625 -0.118534 0.00 !Mu0ChY83TRaw[Co4At2Ch3]
+996.206 -0.12031 0.00 !Mu0ChY84TRaw[Co4At2Ch4]
+1000.06 -0.120777 0.00 !Mu0ChY85TRaw[Co4At2Ch5]
+1002.53 -0.121085 0.00 !Mu0ChY86TRaw[Co4At2Ch6]
+998.357 -0.120569 0.00 !Mu0ChY87TRaw[Co4At2Ch7]
+1008.76 -0.121839 0.00 !Mu0ChY88TRaw[Co4At2Ch8]
+1004.65 -0.121339 0.00 !Mu0ChY89TRaw[Co4At2Ch9]
+1015 -0.122592 0.00 !Mu0ChY90TRaw[Co4At2Ch10]
+1025.62 -0.123897 0.00 !Mu0ChY91TRaw[Co4At2Ch11]
+1025.41 -0.123866 0.00 !Mu0ChY92TRaw[Co4At2Ch12]
+1020.27 -0.123256 0.00 !Mu0ChY93TRaw[Co4At2Ch13]
+1024.71 -0.123786 0.00 !Mu0ChY94TRaw[Co4At2Ch14]
+1021.51 -0.123408 0.00 !Mu0ChY95TRaw[Co4At2Ch15]
+1016.94 -0.122879 0.00 !Mu0ChY96TRaw[Co4At2Ch16]
+882.97 -0.106544 0.00 !Mu0ChY97TRaw[Co4At3Ch1]
+879.326 -0.106139 0.00 !Mu0ChY98TRaw[Co4At3Ch2]
+878.449 -0.106028 0.00 !Mu0ChY99TRaw[Co4At3Ch3]
+894.979 -0.108041 0.00 !Mu0ChY100TRaw[Co4At3Ch4]
+892.203 -0.107707 0.00 !Mu0ChY101TRaw[Co4At3Ch5]
+891.015 -0.10757 0.00 !Mu0ChY102TRaw[Co4At3Ch6]
+895.424 -0.108105 0.00 !Mu0ChY103TRaw[Co4At3Ch7]
+907.578 -0.10959 0.00 !Mu0ChY104TRaw[Co4At3Ch8]
+902.147 -0.108916 0.00 !Mu0ChY105TRaw[Co4At3Ch9]
+915.536 -0.110544 0.00 !Mu0ChY106TRaw[Co4At3Ch10]
+910.897 -0.109981 0.00 !Mu0ChY107TRaw[Co4At3Ch11]
+915.092 -0.11051 0.00 !Mu0ChY108TRaw[Co4At3Ch12]
+914.664 -0.110421 0.00 !Mu0ChY109TRaw[Co4At3Ch13]
+910.113 -0.109894 0.00 !Mu0ChY110TRaw[Co4At3Ch14]
+915.675 -0.110572 0.00 !Mu0ChY111TRaw[Co4At3Ch15]
+917.59 -0.110803 0.00 !Mu0ChY112TRaw[Co4At3Ch16]
+892.441 -0.107535 0.00 !Mu0ChY113TRaw[Co4At4Ch1]
+899.913 -0.108466 0.00 !Mu0ChY114TRaw[Co4At4Ch2]
+899.438 -0.108438 0.00 !Mu0ChY115TRaw[Co4At4Ch3]
+905.439 -0.109158 0.00 !Mu0ChY116TRaw[Co4At4Ch4]
+917.108 -0.110566 0.00 !Mu0ChY117TRaw[Co4At4Ch5]
+910.331 -0.109757 0.00 !Mu0ChY118TRaw[Co4At4Ch6]
+930.135 -0.112167 0.00 !Mu0ChY119TRaw[Co4At4Ch7]
+921.847 -0.111146 0.00 !Mu0ChY120TRaw[Co4At4Ch8]
+932.043 -0.112407 0.00 !Mu0ChY121TRaw[Co4At4Ch9]
+931.497 -0.112337 0.00 !Mu0ChY122TRaw[Co4At4Ch10]
+933.275 -0.112539 0.00 !Mu0ChY123TRaw[Co4At4Ch11]
+936.749 -0.112978 0.00 !Mu0ChY124TRaw[Co4At4Ch12]
+931.392 -0.112316 0.00 !Mu0ChY125TRaw[Co4At4Ch13]
+930.352 -0.112192 0.00 !Mu0ChY126TRaw[Co4At4Ch14]
+927.302 -0.111821 0.00 !Mu0ChY127TRaw[Co4At4Ch15]
+930.24 -0.112162 0.00 !Mu0ChY128TRaw[Co4At4Ch16]
+926.786 -0.11232 0.00 !Mu1ChX1TRaw[Co1At1Ch1]
+940.575 -0.114015 0.00 !Mu1ChX2TRaw[Co1At1Ch2]
+943.089 -0.114341 0.00 !Mu1ChX3TRaw[Co1At1Ch3]
+954.304 -0.115712 0.00 !Mu1ChX4TRaw[Co1At1Ch4]
+954.653 -0.115744 0.00 !Mu1ChX5TRaw[Co1At1Ch5]
+956.573 -0.115962 0.00 !Mu1ChX6TRaw[Co1At1Ch6]
+970.061 -0.117589 0.00 !Mu1ChX7TRaw[Co1At1Ch7]
+965.116 -0.116998 0.00 !Mu1ChX8TRaw[Co1At1Ch8]
+969.325 -0.117498 0.00 !Mu1ChX9TRaw[Co1At1Ch9]
+978.231 -0.118577 0.00 !Mu1ChX10TRaw[Co1At1Ch10]
+974.593 -0.118143 0.00 !Mu1ChX11TRaw[Co1At1Ch11]
+974.146 -0.118071 0.00 !Mu1ChX12TRaw[Co1At1Ch12]
+986.191 -0.11954 0.00 !Mu1ChX13TRaw[Co1At1Ch13]
+986.678 -0.119597 0.00 !Mu1ChX14TRaw[Co1At1Ch14]
+983.727 -0.119236 0.00 !Mu1ChX15TRaw[Co1At1Ch15]
+1371.19 -0.119179 0.00 !Mu1ChX16TRaw[Co1At1Ch16]
+922.557 -0.111777 0.00 !Mu1ChX17TRaw[Co1At2Ch1]
+945.525 -0.114612 0.00 !Mu1ChX18TRaw[Co1At2Ch2]
+946.378 -0.114738 0.00 !Mu1ChX19TRaw[Co1At2Ch3]
+943.86 -0.114439 0.00 !Mu1ChX20TRaw[Co1At2Ch4]
+952.199 -0.115464 0.00 !Mu1ChX21TRaw[Co1At2Ch5]
+965.45 -0.117052 0.00 !Mu1ChX22TRaw[Co1At2Ch6]
+954.947 -0.115762 0.00 !Mu1ChX23TRaw[Co1At2Ch7]
+971.26 -0.117739 0.00 !Mu1ChX24TRaw[Co1At2Ch8]
+969.364 -0.117531 0.00 !Mu1ChX25TRaw[Co1At2Ch9]
+972.531 -0.117923 0.00 !Mu1ChX26TRaw[Co1At2Ch10]
+971.171 -0.117737 0.00 !Mu1ChX27TRaw[Co1At2Ch11]
+974.954 -0.11821 0.00 !Mu1ChX28TRaw[Co1At2Ch12]
+978.834 -0.118677 0.00 !Mu1ChX29TRaw[Co1At2Ch13]
+975.807 -0.118324 0.00 !Mu1ChX30TRaw[Co1At2Ch14]
+974.804 -0.118198 0.00 !Mu1ChX31TRaw[Co1At2Ch15]
+984.936 -0.119148 0.00 !Mu1ChX32TRaw[Co1At2Ch16]
+875.904 -0.106165 0.00 !Mu1ChX33TRaw[Co1At3Ch1]
+875.79 -0.10618 0.00 !Mu1ChX34TRaw[Co1At3Ch2]
+891.706 -0.108064 0.00 !Mu1ChX35TRaw[Co1At3Ch3]
+873.845 -0.105941 0.00 !Mu1ChX36TRaw[Co1At3Ch4]
+891.762 -0.108105 0.00 !Mu1ChX37TRaw[Co1At3Ch5]
+897.589 -0.108823 0.00 !Mu1ChX38TRaw[Co1At3Ch6]
+889.745 -0.107861 0.00 !Mu1ChX39TRaw[Co1At3Ch7]
+894.521 -0.10842 0.00 !Mu1ChX40TRaw[Co1At3Ch8]
+897.332 -0.108779 0.00 !Mu1ChX41TRaw[Co1At3Ch9]
+897.319 -0.108754 0.00 !Mu1ChX42TRaw[Co1At3Ch10]
+905.732 -0.109783 0.00 !Mu1ChX43TRaw[Co1At3Ch11]
+897.833 -0.108855 0.00 !Mu1ChX44TRaw[Co1At3Ch12]
+907.458 -0.110019 0.00 !Mu1ChX45TRaw[Co1At3Ch13]
+905.696 -0.109854 0.00 !Mu1ChX46TRaw[Co1At3Ch14]
+903.207 -0.109528 0.00 !Mu1ChX47TRaw[Co1At3Ch15]
+918.195 -0.110055 0.00 !Mu1ChX48TRaw[Co1At3Ch16]
+865.632 -0.104838 0.00 !Mu1ChX49TRaw[Co1At4Ch1]
+871.03 -0.105455 0.00 !Mu1ChX50TRaw[Co1At4Ch2]
+883.706 -0.107015 0.00 !Mu1ChX51TRaw[Co1At4Ch3]
+886.118 -0.107338 0.00 !Mu1ChX52TRaw[Co1At4Ch4]
+888.977 -0.107685 0.00 !Mu1ChX53TRaw[Co1At4Ch5]
+889.176 -0.107699 0.00 !Mu1ChX54TRaw[Co1At4Ch6]
+893.053 -0.10819 0.00 !Mu1ChX55TRaw[Co1At4Ch7]
+898.958 -0.108878 0.00 !Mu1ChX56TRaw[Co1At4Ch8]
+905.343 -0.1097 0.00 !Mu1ChX57TRaw[Co1At4Ch9]
+901.014 -0.10916 0.00 !Mu1ChX58TRaw[Co1At4Ch10]
+909.801 -0.110244 0.00 !Mu1ChX59TRaw[Co1At4Ch11]
+902.356 -0.109308 0.00 !Mu1ChX60TRaw[Co1At4Ch12]
+915.181 -0.110894 0.00 !Mu1ChX61TRaw[Co1At4Ch13]
+906.646 -0.109867 0.00 !Mu1ChX62TRaw[Co1At4Ch14]
+906.177 -0.109791 0.00 !Mu1ChX63TRaw[Co1At4Ch15]
+917.322 -0.110777 0.00 !Mu1ChX64TRaw[Co1At4Ch16]
+947.375 -0.114723 0.00 !Mu1ChX65TRaw[Co2At1Ch1]
+949.155 -0.114949 0.00 !Mu1ChX66TRaw[Co2At1Ch2]
+962.658 -0.116629 0.00 !Mu1ChX67TRaw[Co2At1Ch3]
+962.29 -0.116557 0.00 !Mu1ChX68TRaw[Co2At1Ch4]
+964.501 -0.116827 0.00 !Mu1ChX69TRaw[Co2At1Ch5]
+972.559 -0.117811 0.00 !Mu1ChX70TRaw[Co2At1Ch6]
+972.248 -0.117758 0.00 !Mu1ChX71TRaw[Co2At1Ch7]
+977.48 -0.118392 0.00 !Mu1ChX72TRaw[Co2At1Ch8]
+974.838 -0.118063 0.00 !Mu1ChX73TRaw[Co2At1Ch9]
+989.581 -0.119853 0.00 !Mu1ChX74TRaw[Co2At1Ch10]
+985.59 -0.119377 0.00 !Mu1ChX75TRaw[Co2At1Ch11]
+983.734 -0.119141 0.00 !Mu1ChX76TRaw[Co2At1Ch12]
+990.699 -0.119982 0.00 !Mu1ChX77TRaw[Co2At1Ch13]
+992.465 -0.120199 0.00 !Mu1ChX78TRaw[Co2At1Ch14]
+992.485 -0.1202 0.00 !Mu1ChX79TRaw[Co2At1Ch15]
+1375.52 -0.120722 0.00 !Mu1ChX80TRaw[Co2At1Ch16]
+972.687 -0.117775 0.00 !Mu1ChX81TRaw[Co2At2Ch1]
+974.84 -0.118024 0.00 !Mu1ChX82TRaw[Co2At2Ch2]
+979.911 -0.118652 0.00 !Mu1ChX83TRaw[Co2At2Ch3]
+993.406 -0.120307 0.00 !Mu1ChX84TRaw[Co2At2Ch4]
+992.814 -0.120215 0.00 !Mu1ChX85TRaw[Co2At2Ch5]
+1002.31 -0.121389 0.00 !Mu1ChX86TRaw[Co2At2Ch6]
+1003.74 -0.121554 0.00 !Mu1ChX87TRaw[Co2At2Ch7]
+995.588 -0.12057 0.00 !Mu1ChX88TRaw[Co2At2Ch8]
+1010.12 -0.122345 0.00 !Mu1ChX89TRaw[Co2At2Ch9]
+1012.32 -0.12261 0.00 !Mu1ChX90TRaw[Co2At2Ch10]
+1007.94 -0.122082 0.00 !Mu1ChX91TRaw[Co2At2Ch11]
+1014.03 -0.12282 0.00 !Mu1ChX92TRaw[Co2At2Ch12]
+1013.77 -0.12279 0.00 !Mu1ChX93TRaw[Co2At2Ch13]
+1016.53 -0.123127 0.00 !Mu1ChX94TRaw[Co2At2Ch14]
+1016.3 -0.123096 0.00 !Mu1ChX95TRaw[Co2At2Ch15]
+1004.26 -0.12163 0.00 !Mu1ChX96TRaw[Co2At2Ch16]
+888.673 -0.107613 0.00 !Mu1ChX97TRaw[Co2At3Ch1]
+886.825 -0.107373 0.00 !Mu1ChX98TRaw[Co2At3Ch2]
+890.552 -0.107838 0.00 !Mu1ChX99TRaw[Co2At3Ch3]
+901.931 -0.109224 0.00 !Mu1ChX100TRaw[Co2At3Ch4]
+901.707 -0.1092 0.00 !Mu1ChX101TRaw[Co2At3Ch5]
+906.676 -0.109791 0.00 !Mu1ChX102TRaw[Co2At3Ch6]
+902.249 -0.109268 0.00 !Mu1ChX103TRaw[Co2At3Ch7]
+917.913 -0.111151 0.00 !Mu1ChX104TRaw[Co2At3Ch8]
+919.118 -0.11128 0.00 !Mu1ChX105TRaw[Co2At3Ch9]
+920.502 -0.111467 0.00 !Mu1ChX106TRaw[Co2At3Ch10]
+925.286 -0.112035 0.00 !Mu1ChX107TRaw[Co2At3Ch11]
+920.839 -0.111519 0.00 !Mu1ChX108TRaw[Co2At3Ch12]
+921.752 -0.111616 0.00 !Mu1ChX109TRaw[Co2At3Ch13]
+913.537 -0.110627 0.00 !Mu1ChX110TRaw[Co2At3Ch14]
+916.058 -0.110941 0.00 !Mu1ChX111TRaw[Co2At3Ch15]
+924.322 -0.11176 0.00 !Mu1ChX112TRaw[Co2At3Ch16]
+897.027 -0.108476 0.00 !Mu1ChX113TRaw[Co2At4Ch1]
+897.77 -0.108567 0.00 !Mu1ChX114TRaw[Co2At4Ch2]
+905.06 -0.10946 0.00 !Mu1ChX115TRaw[Co2At4Ch3]
+910.605 -0.110136 0.00 !Mu1ChX116TRaw[Co2At4Ch4]
+925.57 -0.111977 0.00 !Mu1ChX117TRaw[Co2At4Ch5]
+920.161 -0.111304 0.00 !Mu1ChX118TRaw[Co2At4Ch6]
+932.296 -0.112781 0.00 !Mu1ChX119TRaw[Co2At4Ch7]
+914.819 -0.110659 0.00 !Mu1ChX120TRaw[Co2At4Ch8]
+920.284 -0.111325 0.00 !Mu1ChX121TRaw[Co2At4Ch9]
+927.772 -0.112226 0.00 !Mu1ChX122TRaw[Co2At4Ch10]
+928.866 -0.11236 0.00 !Mu1ChX123TRaw[Co2At4Ch11]
+924.041 -0.111775 0.00 !Mu1ChX124TRaw[Co2At4Ch12]
+921.484 -0.111483 0.00 !Mu1ChX125TRaw[Co2At4Ch13]
+927.438 -0.112193 0.00 !Mu1ChX126TRaw[Co2At4Ch14]
+930.757 -0.112614 0.00 !Mu1ChX127TRaw[Co2At4Ch15]
+924.698 -0.111864 0.00 !Mu1ChX128TRaw[Co2At4Ch16]
+930.899 -0.11282 0.00 !Mu1ChY1TRaw[Co3At1Ch1]
+932.297 -0.113022 0.00 !Mu1ChY2TRaw[Co3At1Ch2]
+943.292 -0.114361 0.00 !Mu1ChY3TRaw[Co3At1Ch3]
+947.201 -0.114834 0.00 !Mu1ChY4TRaw[Co3At1Ch4]
+949.524 -0.115122 0.00 !Mu1ChY5TRaw[Co3At1Ch5]
+952.95 -0.115533 0.00 !Mu1ChY6TRaw[Co3At1Ch6]
+956.311 -0.115938 0.00 !Mu1ChY7TRaw[Co3At1Ch7]
+946.369 -0.114726 0.00 !Mu1ChY8TRaw[Co3At1Ch8]
+953.576 -0.11562 0.00 !Mu1ChY9TRaw[Co3At1Ch9]
+964.215 -0.116854 0.00 !Mu1ChY10TRaw[Co3At1Ch10]
+959.98 -0.116368 0.00 !Mu1ChY11TRaw[Co3At1Ch11]
+967.734 -0.117327 0.00 !Mu1ChY12TRaw[Co3At1Ch12]
+967.914 -0.117358 0.00 !Mu1ChY13TRaw[Co3At1Ch13]
+963.677 -0.116827 0.00 !Mu1ChY14TRaw[Co3At1Ch14]
+965.026 -0.116981 0.00 !Mu1ChY15TRaw[Co3At1Ch15]
+962.695 -0.116717 0.00 !Mu1ChY16TRaw[Co3At1Ch16]
+964.683 -0.116883 0.00 !Mu1ChY17TRaw[Co3At2Ch1]
+966.649 -0.117128 0.00 !Mu1ChY18TRaw[Co3At2Ch2]
+971.034 -0.117665 0.00 !Mu1ChY19TRaw[Co3At2Ch3]
+971.558 -0.117743 0.00 !Mu1ChY20TRaw[Co3At2Ch4]
+983.103 -0.119146 0.00 !Mu1ChY21TRaw[Co3At2Ch5]
+979.702 -0.118747 0.00 !Mu1ChY22TRaw[Co3At2Ch6]
+450 -0.119189 0.00 !Mu1ChY23TRaw[Co3At2Ch7]
+989.487 -0.119964 0.00 !Mu1ChY24TRaw[Co3At2Ch8]
+991.153 -0.120158 0.00 !Mu1ChY25TRaw[Co3At2Ch9]
+991.247 -0.120176 0.00 !Mu1ChY26TRaw[Co3At2Ch10]
+995.752 -0.120728 0.00 !Mu1ChY27TRaw[Co3At2Ch11]
+990.621 -0.120113 0.00 !Mu1ChY28TRaw[Co3At2Ch12]
+992.588 -0.120339 0.00 !Mu1ChY29TRaw[Co3At2Ch13]
+983.94 -0.119308 0.00 !Mu1ChY30TRaw[Co3At2Ch14]
+990.472 -0.120108 0.00 !Mu1ChY31TRaw[Co3At2Ch15]
+985.366 -0.119515 0.00 !Mu1ChY32TRaw[Co3At2Ch16]
+879.895 -0.106691 0.00 !Mu1ChY33TRaw[Co3At3Ch1]
+885.732 -0.10745 0.00 !Mu1ChY34TRaw[Co3At3Ch2]
+880.947 -0.106848 0.00 !Mu1ChY35TRaw[Co3At3Ch3]
+890.881 -0.108037 0.00 !Mu1ChY36TRaw[Co3At3Ch4]
+8.50641e+11 -1.03827e+08 0.00 !Mu1ChY37TRaw[Co3At3Ch5]
+901.269 -0.109433 0.00 !Mu1ChY38TRaw[Co3At3Ch6]
+900.483 -0.110242 0.00 !Mu1ChY39TRaw[Co3At3Ch7]
+902.133 -0.10944 0.00 !Mu1ChY40TRaw[Co3At3Ch8]
+890.343 -0.107957 0.00 !Mu1ChY41TRaw[Co3At3Ch9]
+902.898 -0.109521 0.00 !Mu1ChY42TRaw[Co3At3Ch10]
+895.657 -0.108623 0.00 !Mu1ChY43TRaw[Co3At3Ch11]
+904.61 -0.10969 0.00 !Mu1ChY44TRaw[Co3At3Ch12]
+907.072 -0.109989 0.00 !Mu1ChY45TRaw[Co3At3Ch13]
+901.222 -0.109312 0.00 !Mu1ChY46TRaw[Co3At3Ch14]
+905.951 -0.109844 0.00 !Mu1ChY47TRaw[Co3At3Ch15]
+901.159 -0.109257 0.00 !Mu1ChY48TRaw[Co3At3Ch16]
+883.344 -0.10696 0.00 !Mu1ChY49TRaw[Co3At4Ch1]
+882.465 -0.106852 0.00 !Mu1ChY50TRaw[Co3At4Ch2]
+878.872 -0.106436 0.00 !Mu1ChY51TRaw[Co3At4Ch3]
+892.099 -0.108049 0.00 !Mu1ChY52TRaw[Co3At4Ch4]
+897.834 -0.108781 0.00 !Mu1ChY53TRaw[Co3At4Ch5]
+899.02 -0.108923 0.00 !Mu1ChY54TRaw[Co3At4Ch6]
+898.979 -0.108922 0.00 !Mu1ChY55TRaw[Co3At4Ch7]
+899.225 -0.108949 0.00 !Mu1ChY56TRaw[Co3At4Ch8]
+911.018 -0.110395 0.00 !Mu1ChY57TRaw[Co3At4Ch9]
+910.225 -0.110294 0.00 !Mu1ChY58TRaw[Co3At4Ch10]
+905.692 -0.109746 0.00 !Mu1ChY59TRaw[Co3At4Ch11]
+908.504 -0.109802 0.00 !Mu1ChY60TRaw[Co3At4Ch12]
+905.665 -0.109742 0.00 !Mu1ChY61TRaw[Co3At4Ch13]
+913.658 -0.11072 0.00 !Mu1ChY62TRaw[Co3At4Ch14]
+915.004 -0.110879 0.00 !Mu1ChY63TRaw[Co3At4Ch15]
+915.999 -0.111037 0.00 !Mu1ChY64TRaw[Co3At4Ch16]
+945.876 -0.115194 0.00 !Mu1ChY65TRaw[Co4At1Ch1]
+952.653 -0.116053 0.00 !Mu1ChY66TRaw[Co4At1Ch2]
+958.599 -0.116788 0.00 !Mu1ChY67TRaw[Co4At1Ch3]
+962.073 -0.117211 0.00 !Mu1ChY68TRaw[Co4At1Ch4]
+965.512 -0.117617 0.00 !Mu1ChY69TRaw[Co4At1Ch5]
+973.646 -0.118609 0.00 !Mu1ChY70TRaw[Co4At1Ch6]
+969.091 -0.118053 0.00 !Mu1ChY71TRaw[Co4At1Ch7]
+977.205 -0.119038 0.00 !Mu1ChY72TRaw[Co4At1Ch8]
+978.244 -0.119163 0.00 !Mu1ChY73TRaw[Co4At1Ch9]
+981.509 -0.119552 0.00 !Mu1ChY74TRaw[Co4At1Ch10]
+983.33 -0.119777 0.00 !Mu1ChY75TRaw[Co4At1Ch11]
+980.28 -0.119391 0.00 !Mu1ChY76TRaw[Co4At1Ch12]
+987.378 -0.11981 0.00 !Mu1ChY77TRaw[Co4At1Ch13]
+981.221 -0.119505 0.00 !Mu1ChY78TRaw[Co4At1Ch14]
+982.019 -0.119601 0.00 !Mu1ChY79TRaw[Co4At1Ch15]
+986.869 -0.120194 0.00 !Mu1ChY80TRaw[Co4At1Ch16]
+942.041 -0.114646 0.00 !Mu1ChY81TRaw[Co4At2Ch1]
+950.256 -0.115676 0.00 !Mu1ChY82TRaw[Co4At2Ch2]
+949.146 -0.115551 0.00 !Mu1ChY83TRaw[Co4At2Ch3]
+956.132 -0.116392 0.00 !Mu1ChY84TRaw[Co4At2Ch4]
+955.603 -0.116344 0.00 !Mu1ChY85TRaw[Co4At2Ch5]
+965.862 -0.117589 0.00 !Mu1ChY86TRaw[Co4At2Ch6]
+966.696 -0.117699 0.00 !Mu1ChY87TRaw[Co4At2Ch7]
+973.856 -0.118567 0.00 !Mu1ChY88TRaw[Co4At2Ch8]
+974.942 -0.118705 0.00 !Mu1ChY89TRaw[Co4At2Ch9]
+967.58 -0.117807 0.00 !Mu1ChY90TRaw[Co4At2Ch10]
+972.217 -0.118376 0.00 !Mu1ChY91TRaw[Co4At2Ch11]
+980.142 -0.119333 0.00 !Mu1ChY92TRaw[Co4At2Ch12]
+980.758 -0.119429 0.00 !Mu1ChY93TRaw[Co4At2Ch13]
+973.754 -0.118576 0.00 !Mu1ChY94TRaw[Co4At2Ch14]
+977.548 -0.119031 0.00 !Mu1ChY95TRaw[Co4At2Ch15]
+988.795 -0.120471 0.00 !Mu1ChY96TRaw[Co4At2Ch16]
+871.404 -0.106136 0.00 !Mu1ChY97TRaw[Co4At3Ch1]
+870.084 -0.106 0.00 !Mu1ChY98TRaw[Co4At3Ch2]
+874.611 -0.106555 0.00 !Mu1ChY99TRaw[Co4At3Ch3]
+888.655 -0.108263 0.00 !Mu1ChY100TRaw[Co4At3Ch4]
+886.461 -0.10801 0.00 !Mu1ChY101TRaw[Co4At3Ch5]
+878.586 -0.107044 0.00 !Mu1ChY102TRaw[Co4At3Ch6]
+886.442 -0.108005 0.00 !Mu1ChY103TRaw[Co4At3Ch7]
+889.81 -0.108406 0.00 !Mu1ChY104TRaw[Co4At3Ch8]
+900.116 -0.109653 0.00 !Mu1ChY105TRaw[Co4At3Ch9]
+896.798 -0.10926 0.00 !Mu1ChY106TRaw[Co4At3Ch10]
+900.214 -0.10967 0.00 !Mu1ChY107TRaw[Co4At3Ch11]
+890.896 -0.108536 0.00 !Mu1ChY108TRaw[Co4At3Ch12]
+898.103 -0.109417 0.00 !Mu1ChY109TRaw[Co4At3Ch13]
+905.123 -0.110268 0.00 !Mu1ChY110TRaw[Co4At3Ch14]
+895.488 -0.109108 0.00 !Mu1ChY111TRaw[Co4At3Ch15]
+901.504 -0.109824 0.00 !Mu1ChY112TRaw[Co4At3Ch16]
+857.767 -0.104291 0.00 !Mu1ChY113TRaw[Co4At4Ch1]
+851.391 -0.103549 0.00 !Mu1ChY114TRaw[Co4At4Ch2]
+861.589 -0.104798 0.00 !Mu1ChY115TRaw[Co4At4Ch3]
+856.553 -0.10419 0.00 !Mu1ChY116TRaw[Co4At4Ch4]
+865 -0.105221 0.00 !Mu1ChY117TRaw[Co4At4Ch5]
+874.383 -0.106354 0.00 !Mu1ChY118TRaw[Co4At4Ch6]
+878.744 -0.1069 0.00 !Mu1ChY119TRaw[Co4At4Ch7]
+873.451 -0.106252 0.00 !Mu1ChY120TRaw[Co4At4Ch8]
+890.883 -0.108379 0.00 !Mu1ChY121TRaw[Co4At4Ch9]
+891.802 -0.108492 0.00 !Mu1ChY122TRaw[Co4At4Ch10]
+889.789 -0.108225 0.00 !Mu1ChY123TRaw[Co4At4Ch11]
+888.888 -0.108132 0.00 !Mu1ChY124TRaw[Co4At4Ch12]
+891.161 -0.108412 0.00 !Mu1ChY125TRaw[Co4At4Ch13]
+886.515 -0.10784 0.00 !Mu1ChY126TRaw[Co4At4Ch14]
+883.99 -0.107526 0.00 !Mu1ChY127TRaw[Co4At4Ch15]
+947.91 -0.121191 0.00 !Mu1ChY128TRaw[Co4At4Ch16]
+936.808 -0.113282 0.00 !Mu2ChX1TRaw[Co1At1Ch1]
+933.588 -0.112935 0.00 !Mu2ChX2TRaw[Co1At1Ch2]
+941.562 -0.113903 0.00 !Mu2ChX3TRaw[Co1At1Ch3]
+953.784 -0.11541 0.00 !Mu2ChX4TRaw[Co1At1Ch4]
+949.078 -0.114834 0.00 !Mu2ChX5TRaw[Co1At1Ch5]
+966.718 -0.116968 0.00 !Mu2ChX6TRaw[Co1At1Ch6]
+960.214 -0.116144 0.00 !Mu2ChX7TRaw[Co1At1Ch7]
+964.987 -0.116738 0.00 !Mu2ChX8TRaw[Co1At1Ch8]
+956.88 -0.115736 0.00 !Mu2ChX9TRaw[Co1At1Ch9]
+968.81 -0.117191 0.00 !Mu2ChX10TRaw[Co1At1Ch10]
+971.337 -0.117505 0.00 !Mu2ChX11TRaw[Co1At1Ch11]
+966.1 -0.116868 0.00 !Mu2ChX12TRaw[Co1At1Ch12]
+972.053 -0.117596 0.00 !Mu2ChX13TRaw[Co1At1Ch13]
+966.078 -0.116864 0.00 !Mu2ChX14TRaw[Co1At1Ch14]
+966.541 -0.116934 0.00 !Mu2ChX15TRaw[Co1At1Ch15]
+1367.28 -0.118078 0.00 !Mu2ChX16TRaw[Co1At1Ch16]
+918.709 -0.111042 0.00 !Mu2ChX17TRaw[Co1At2Ch1]
+933.754 -0.1129 0.00 !Mu2ChX18TRaw[Co1At2Ch2]
+936.423 -0.113239 0.00 !Mu2ChX19TRaw[Co1At2Ch3]
+935.388 -0.11311 0.00 !Mu2ChX20TRaw[Co1At2Ch4]
+946.289 -0.114433 0.00 !Mu2ChX21TRaw[Co1At2Ch5]
+941.937 -0.113893 0.00 !Mu2ChX22TRaw[Co1At2Ch6]
+939.701 -0.113604 0.00 !Mu2ChX23TRaw[Co1At2Ch7]
+947.866 -0.114596 0.00 !Mu2ChX24TRaw[Co1At2Ch8]
+939.11 -0.113523 0.00 !Mu2ChX25TRaw[Co1At2Ch9]
+947.312 -0.114529 0.00 !Mu2ChX26TRaw[Co1At2Ch10]
+947.872 -0.114587 0.00 !Mu2ChX27TRaw[Co1At2Ch11]
+944.089 -0.114127 0.00 !Mu2ChX28TRaw[Co1At2Ch12]
+951.541 -0.115049 0.00 !Mu2ChX29TRaw[Co1At2Ch13]
+947.806 -0.114577 0.00 !Mu2ChX30TRaw[Co1At2Ch14]
+949.646 -0.114801 0.00 !Mu2ChX31TRaw[Co1At2Ch15]
+1101.24 -0.114725 0.00 !Mu2ChX32TRaw[Co1At2Ch16]
+883.868 -0.106884 0.00 !Mu2ChX33TRaw[Co1At3Ch1]
+881.306 -0.106588 0.00 !Mu2ChX34TRaw[Co1At3Ch2]
+890.406 -0.10771 0.00 !Mu2ChX35TRaw[Co1At3Ch3]
+887.688 -0.10739 0.00 !Mu2ChX36TRaw[Co1At3Ch4]
+901.335 -0.109058 0.00 !Mu2ChX37TRaw[Co1At3Ch5]
+898.532 -0.108685 0.00 !Mu2ChX38TRaw[Co1At3Ch6]
+906.127 -0.109605 0.00 !Mu2ChX39TRaw[Co1At3Ch7]
+903.029 -0.109211 0.00 !Mu2ChX40TRaw[Co1At3Ch8]
+902.567 -0.109168 0.00 !Mu2ChX41TRaw[Co1At3Ch9]
+906.324 -0.109617 0.00 !Mu2ChX42TRaw[Co1At3Ch10]
+912.663 -0.1104 0.00 !Mu2ChX43TRaw[Co1At3Ch11]
+911.609 -0.110254 0.00 !Mu2ChX44TRaw[Co1At3Ch12]
+919.504 -0.111219 0.00 !Mu2ChX45TRaw[Co1At3Ch13]
+918.075 -0.111043 0.00 !Mu2ChX46TRaw[Co1At3Ch14]
+920.693 -0.111378 0.00 !Mu2ChX47TRaw[Co1At3Ch15]
+1304.08 -0.11089 0.00 !Mu2ChX48TRaw[Co1At3Ch16]
+852.901 -0.102956 0.00 !Mu2ChX49TRaw[Co1At4Ch1]
+862.836 -0.104191 0.00 !Mu2ChX50TRaw[Co1At4Ch2]
+872.425 -0.105362 0.00 !Mu2ChX51TRaw[Co1At4Ch3]
+866.551 -0.10464 0.00 !Mu2ChX52TRaw[Co1At4Ch4]
+875.507 -0.105723 0.00 !Mu2ChX53TRaw[Co1At4Ch5]
+875.722 -0.105755 0.00 !Mu2ChX54TRaw[Co1At4Ch6]
+877.794 -0.105984 0.00 !Mu2ChX55TRaw[Co1At4Ch7]
+885.59 -0.106931 0.00 !Mu2ChX56TRaw[Co1At4Ch8]
+894.535 -0.108024 0.00 !Mu2ChX57TRaw[Co1At4Ch9]
+896.983 -0.108307 0.00 !Mu2ChX58TRaw[Co1At4Ch10]
+888.442 -0.107279 0.00 !Mu2ChX59TRaw[Co1At4Ch11]
+898.855 -0.108543 0.00 !Mu2ChX60TRaw[Co1At4Ch12]
+900.217 -0.108721 0.00 !Mu2ChX61TRaw[Co1At4Ch13]
+899.805 -0.108665 0.00 !Mu2ChX62TRaw[Co1At4Ch14]
+896.358 -0.10824 0.00 !Mu2ChX63TRaw[Co1At4Ch15]
+1286.56 -0.107885 0.00 !Mu2ChX64TRaw[Co1At4Ch16]
+969.588 -0.117533 0.00 !Mu2ChX65TRaw[Co2At1Ch1]
+969.639 -0.117545 0.00 !Mu2ChX66TRaw[Co2At1Ch2]
+981.26 -0.118957 0.00 !Mu2ChX67TRaw[Co2At1Ch3]
+986.207 -0.119584 0.00 !Mu2ChX68TRaw[Co2At1Ch4]
+450 -0.119902 0.00 !Mu2ChX69TRaw[Co2At1Ch5]
+989.899 -0.12002 0.00 !Mu2ChX70TRaw[Co2At1Ch6]
+991.208 -0.120171 0.00 !Mu2ChX71TRaw[Co2At1Ch7]
+996.377 -0.120802 0.00 !Mu2ChX72TRaw[Co2At1Ch8]
+989.619 -0.119977 0.00 !Mu2ChX73TRaw[Co2At1Ch9]
+998.452 -0.12102 0.00 !Mu2ChX74TRaw[Co2At1Ch10]
+994.24 -0.12055 0.00 !Mu2ChX75TRaw[Co2At1Ch11]
+993.976 -0.12048 0.00 !Mu2ChX76TRaw[Co2At1Ch12]
+1003.64 -0.121688 0.00 !Mu2ChX77TRaw[Co2At1Ch13]
+1007.3 -0.122136 0.00 !Mu2ChX78TRaw[Co2At1Ch14]
+1010.11 -0.122472 0.00 !Mu2ChX79TRaw[Co2At1Ch15]
+1318.69 -0.121488 0.00 !Mu2ChX80TRaw[Co2At1Ch16]
+950.946 -0.115148 0.00 !Mu2ChX81TRaw[Co2At2Ch1]
+961.899 -0.116512 0.00 !Mu2ChX82TRaw[Co2At2Ch2]
+963.68 -0.116735 0.00 !Mu2ChX83TRaw[Co2At2Ch3]
+967.2 -0.117158 0.00 !Mu2ChX84TRaw[Co2At2Ch4]
+967.305 -0.117159 0.00 !Mu2ChX85TRaw[Co2At2Ch5]
+968.515 -0.117336 0.00 !Mu2ChX86TRaw[Co2At2Ch6]
+982.177 -0.118997 0.00 !Mu2ChX87TRaw[Co2At2Ch7]
+981.387 -0.118879 0.00 !Mu2ChX88TRaw[Co2At2Ch8]
+991.904 -0.120152 0.00 !Mu2ChX89TRaw[Co2At2Ch9]
+991.623 -0.120143 0.00 !Mu2ChX90TRaw[Co2At2Ch10]
+990.622 -0.120011 0.00 !Mu2ChX91TRaw[Co2At2Ch11]
+980.868 -0.118788 0.00 !Mu2ChX92TRaw[Co2At2Ch12]
+995.536 -0.120614 0.00 !Mu2ChX93TRaw[Co2At2Ch13]
+999.576 -0.12112 0.00 !Mu2ChX94TRaw[Co2At2Ch14]
+1000.5 -0.12123 0.00 !Mu2ChX95TRaw[Co2At2Ch15]
+985.324 -0.119394 0.00 !Mu2ChX96TRaw[Co2At2Ch16]
+898.921 -0.10895 0.00 !Mu2ChX97TRaw[Co2At3Ch1]
+915.715 -0.11099 0.00 !Mu2ChX98TRaw[Co2At3Ch2]
+911.411 -0.110483 0.00 !Mu2ChX99TRaw[Co2At3Ch3]
+911.648 -0.110494 0.00 !Mu2ChX100TRaw[Co2At3Ch4]
+920.871 -0.11163 0.00 !Mu2ChX101TRaw[Co2At3Ch5]
+920.388 -0.111573 0.00 !Mu2ChX102TRaw[Co2At3Ch6]
+918.664 -0.111368 0.00 !Mu2ChX103TRaw[Co2At3Ch7]
+923.174 -0.111888 0.00 !Mu2ChX104TRaw[Co2At3Ch8]
+933.198 -0.113122 0.00 !Mu2ChX105TRaw[Co2At3Ch9]
+930.187 -0.112764 0.00 !Mu2ChX106TRaw[Co2At3Ch10]
+935.147 -0.113373 0.00 !Mu2ChX107TRaw[Co2At3Ch11]
+930.349 -0.112797 0.00 !Mu2ChX108TRaw[Co2At3Ch12]
+933.561 -0.113176 0.00 !Mu2ChX109TRaw[Co2At3Ch13]
+940.135 -0.113973 0.00 !Mu2ChX110TRaw[Co2At3Ch14]
+940.914 -0.114066 0.00 !Mu2ChX111TRaw[Co2At3Ch15]
+940.163 -0.113973 0.00 !Mu2ChX112TRaw[Co2At3Ch16]
+900.272 -0.108961 0.00 !Mu2ChX113TRaw[Co2At4Ch1]
+905.007 -0.109531 0.00 !Mu2ChX114TRaw[Co2At4Ch2]
+912.464 -0.110461 0.00 !Mu2ChX115TRaw[Co2At4Ch3]
+912.22 -0.110414 0.00 !Mu2ChX116TRaw[Co2At4Ch4]
+927.733 -0.112323 0.00 !Mu2ChX117TRaw[Co2At4Ch5]
+930.691 -0.11267 0.00 !Mu2ChX118TRaw[Co2At4Ch6]
+936.077 -0.113333 0.00 !Mu2ChX119TRaw[Co2At4Ch7]
+939.108 -0.113698 0.00 !Mu2ChX120TRaw[Co2At4Ch8]
+938.924 -0.113666 0.00 !Mu2ChX121TRaw[Co2At4Ch9]
+947.571 -0.114745 0.00 !Mu2ChX122TRaw[Co2At4Ch10]
+938.938 -0.113673 0.00 !Mu2ChX123TRaw[Co2At4Ch11]
+945.07 -0.11443 0.00 !Mu2ChX124TRaw[Co2At4Ch12]
+934.733 -0.113174 0.00 !Mu2ChX125TRaw[Co2At4Ch13]
+934.595 -0.113143 0.00 !Mu2ChX126TRaw[Co2At4Ch14]
+943.044 -0.114176 0.00 !Mu2ChX127TRaw[Co2At4Ch15]
+943.184 -0.114186 0.00 !Mu2ChX128TRaw[Co2At4Ch16]
+987.442 -0.119525 0.00 !Mu2ChY1TRaw[Co3At1Ch1]
+990.37 -0.119903 0.00 !Mu2ChY2TRaw[Co3At1Ch2]
+989.136 -0.119776 0.00 !Mu2ChY3TRaw[Co3At1Ch3]
+995.437 -0.120524 0.00 !Mu2ChY4TRaw[Co3At1Ch4]
+1000.77 -0.121165 0.00 !Mu2ChY5TRaw[Co3At1Ch5]
+998.951 -0.120947 0.00 !Mu2ChY6TRaw[Co3At1Ch6]
+1003.75 -0.121526 0.00 !Mu2ChY7TRaw[Co3At1Ch7]
+1010.87 -0.122366 0.00 !Mu2ChY8TRaw[Co3At1Ch8]
+1012.21 -0.122539 0.00 !Mu2ChY9TRaw[Co3At1Ch9]
+1003.9 -0.121307 0.00 !Mu2ChY10TRaw[Co3At1Ch10]
+1010.24 -0.122275 0.00 !Mu2ChY11TRaw[Co3At1Ch11]
+1015.27 -0.122898 0.00 !Mu2ChY12TRaw[Co3At1Ch12]
+1017.2 -0.12312 0.00 !Mu2ChY13TRaw[Co3At1Ch13]
+1022.23 -0.123746 0.00 !Mu2ChY14TRaw[Co3At1Ch14]
+1021.37 -0.123621 0.00 !Mu2ChY15TRaw[Co3At1Ch15]
+1022.68 -0.123744 0.00 !Mu2ChY16TRaw[Co3At1Ch16]
+939.963 -0.113632 0.00 !Mu2ChY17TRaw[Co3At2Ch1]
+939.308 -0.11359 0.00 !Mu2ChY18TRaw[Co3At2Ch2]
+938.897 -0.113546 0.00 !Mu2ChY19TRaw[Co3At2Ch3]
+938.628 -0.113526 0.00 !Mu2ChY20TRaw[Co3At2Ch4]
+953.606 -0.115367 0.00 !Mu2ChY21TRaw[Co3At2Ch5]
+969.437 -0.117305 0.00 !Mu2ChY22TRaw[Co3At2Ch6]
+965.454 -0.11682 0.00 !Mu2ChY23TRaw[Co3At2Ch7]
+960.44 -0.116216 0.00 !Mu2ChY24TRaw[Co3At2Ch8]
+975.99 -0.118134 0.00 !Mu2ChY25TRaw[Co3At2Ch9]
+978.687 -0.118446 0.00 !Mu2ChY26TRaw[Co3At2Ch10]
+976.083 -0.117858 0.00 !Mu2ChY27TRaw[Co3At2Ch11]
+982.568 -0.11895 0.00 !Mu2ChY28TRaw[Co3At2Ch12]
+976.864 -0.118238 0.00 !Mu2ChY29TRaw[Co3At2Ch13]
+978.515 -0.118468 0.00 !Mu2ChY30TRaw[Co3At2Ch14]
+977.409 -0.118337 0.00 !Mu2ChY31TRaw[Co3At2Ch15]
+965.447 -0.116905 0.00 !Mu2ChY32TRaw[Co3At2Ch16]
+870.181 -0.105393 0.00 !Mu2ChY33TRaw[Co3At3Ch1]
+876.858 -0.106206 0.00 !Mu2ChY34TRaw[Co3At3Ch2]
+889.244 -0.107711 0.00 !Mu2ChY35TRaw[Co3At3Ch3]
+890.519 -0.10786 0.00 !Mu2ChY36TRaw[Co3At3Ch4]
+893.817 -0.108297 0.00 !Mu2ChY37TRaw[Co3At3Ch5]
+888.588 -0.107628 0.00 !Mu2ChY38TRaw[Co3At3Ch6]
+904.701 -0.109574 0.00 !Mu2ChY39TRaw[Co3At3Ch7]
+903.479 -0.109401 0.00 !Mu2ChY40TRaw[Co3At3Ch8]
+906.236 -0.109756 0.00 !Mu2ChY41TRaw[Co3At3Ch9]
+914.382 -0.110304 0.00 !Mu2ChY42TRaw[Co3At3Ch10]
+906.598 -0.10979 0.00 !Mu2ChY43TRaw[Co3At3Ch11]
+910.53 -0.110231 0.00 !Mu2ChY44TRaw[Co3At3Ch12]
+912.933 -0.110532 0.00 !Mu2ChY45TRaw[Co3At3Ch13]
+916.041 -0.110907 0.00 !Mu2ChY46TRaw[Co3At3Ch14]
+919.774 -0.111371 0.00 !Mu2ChY47TRaw[Co3At3Ch15]
+915.148 -0.110791 0.00 !Mu2ChY48TRaw[Co3At3Ch16]
+893.19 -0.108016 0.00 !Mu2ChY49TRaw[Co3At4Ch1]
+902.467 -0.109155 0.00 !Mu2ChY50TRaw[Co3At4Ch2]
+899.946 -0.108834 0.00 !Mu2ChY51TRaw[Co3At4Ch3]
+913.407 -0.110471 0.00 !Mu2ChY52TRaw[Co3At4Ch4]
+905.911 -0.109622 0.00 !Mu2ChY53TRaw[Co3At4Ch5]
+914.887 -0.110708 0.00 !Mu2ChY54TRaw[Co3At4Ch6]
+922.021 -0.111116 0.00 !Mu2ChY55TRaw[Co3At4Ch7]
+914.007 -0.11061 0.00 !Mu2ChY56TRaw[Co3At4Ch8]
+926.973 -0.11216 0.00 !Mu2ChY57TRaw[Co3At4Ch9]
+918.182 -0.111079 0.00 !Mu2ChY58TRaw[Co3At4Ch10]
+920.356 -0.111393 0.00 !Mu2ChY59TRaw[Co3At4Ch11]
+924.322 -0.11168 0.00 !Mu2ChY60TRaw[Co3At4Ch12]
+940.509 -0.11386 0.00 !Mu2ChY61TRaw[Co3At4Ch13]
+925.883 -0.112068 0.00 !Mu2ChY62TRaw[Co3At4Ch14]
+921.861 -0.111623 0.00 !Mu2ChY63TRaw[Co3At4Ch15]
+929.763 -0.112593 0.00 !Mu2ChY64TRaw[Co3At4Ch16]
+924.331 -0.111864 0.00 !Mu2ChY65TRaw[Co4At1Ch1]
+943.62 -0.114242 0.00 !Mu2ChY66TRaw[Co4At1Ch2]
+947.992 -0.114763 0.00 !Mu2ChY67TRaw[Co4At1Ch3]
+945.728 -0.114477 0.00 !Mu2ChY68TRaw[Co4At1Ch4]
+972.019 -0.117701 0.00 !Mu2ChY69TRaw[Co4At1Ch5]
+960.071 -0.116242 0.00 !Mu2ChY70TRaw[Co4At1Ch6]
+967.505 -0.117144 0.00 !Mu2ChY71TRaw[Co4At1Ch7]
+964.472 -0.116783 0.00 !Mu2ChY72TRaw[Co4At1Ch8]
+955.96 -0.115747 0.00 !Mu2ChY73TRaw[Co4At1Ch9]
+958.084 -0.115989 0.00 !Mu2ChY74TRaw[Co4At1Ch10]
+964.33 -0.116762 0.00 !Mu2ChY75TRaw[Co4At1Ch11]
+977.202 -0.118324 0.00 !Mu2ChY76TRaw[Co4At1Ch12]
+973.571 -0.117892 0.00 !Mu2ChY77TRaw[Co4At1Ch13]
+976.2 -0.118194 0.00 !Mu2ChY78TRaw[Co4At1Ch14]
+967.051 -0.117092 0.00 !Mu2ChY79TRaw[Co4At1Ch15]
+968.99 -0.117343 0.00 !Mu2ChY80TRaw[Co4At1Ch16]
+944.542 -0.114246 0.00 !Mu2ChY81TRaw[Co4At2Ch1]
+939.064 -0.113582 0.00 !Mu2ChY82TRaw[Co4At2Ch2]
+951.122 -0.115097 0.00 !Mu2ChY83TRaw[Co4At2Ch3]
+946.764 -0.114574 0.00 !Mu2ChY84TRaw[Co4At2Ch4]
+955.625 -0.115653 0.00 !Mu2ChY85TRaw[Co4At2Ch5]
+966 -0.11692 0.00 !Mu2ChY86TRaw[Co4At2Ch6]
+964.199 -0.116695 0.00 !Mu2ChY87TRaw[Co4At2Ch7]
+969.926 -0.117388 0.00 !Mu2ChY88TRaw[Co4At2Ch8]
+972.649 -0.117739 0.00 !Mu2ChY89TRaw[Co4At2Ch9]
+974.635 -0.11797 0.00 !Mu2ChY90TRaw[Co4At2Ch10]
+979.1 -0.118525 0.00 !Mu2ChY91TRaw[Co4At2Ch11]
+969.715 -0.117371 0.00 !Mu2ChY92TRaw[Co4At2Ch12]
+977.475 -0.118331 0.00 !Mu2ChY93TRaw[Co4At2Ch13]
+977.142 -0.118283 0.00 !Mu2ChY94TRaw[Co4At2Ch14]
+984.646 -0.119174 0.00 !Mu2ChY95TRaw[Co4At2Ch15]
+989.259 -0.119806 0.00 !Mu2ChY96TRaw[Co4At2Ch16]
+897.538 -0.108639 0.00 !Mu2ChY97TRaw[Co4At3Ch1]
+893.51 -0.108189 0.00 !Mu2ChY98TRaw[Co4At3Ch2]
+904.052 -0.109474 0.00 !Mu2ChY99TRaw[Co4At3Ch3]
+902.752 -0.109308 0.00 !Mu2ChY100TRaw[Co4At3Ch4]
+916.527 -0.110997 0.00 !Mu2ChY101TRaw[Co4At3Ch5]
+924.175 -0.111938 0.00 !Mu2ChY102TRaw[Co4At3Ch6]
+914.572 -0.110746 0.00 !Mu2ChY103TRaw[Co4At3Ch7]
+930.562 -0.112691 0.00 !Mu2ChY104TRaw[Co4At3Ch8]
+925.104 -0.112025 0.00 !Mu2ChY105TRaw[Co4At3Ch9]
+920.853 -0.111507 0.00 !Mu2ChY106TRaw[Co4At3Ch10]
+922.078 -0.111663 0.00 !Mu2ChY107TRaw[Co4At3Ch11]
+921.772 -0.111623 0.00 !Mu2ChY108TRaw[Co4At3Ch12]
+925.31 -0.112066 0.00 !Mu2ChY109TRaw[Co4At3Ch13]
+926.033 -0.11214 0.00 !Mu2ChY110TRaw[Co4At3Ch14]
+922.391 -0.111703 0.00 !Mu2ChY111TRaw[Co4At3Ch15]
+912.83 -0.110525 0.00 !Mu2ChY112TRaw[Co4At3Ch16]
+852.798 -0.102981 0.00 !Mu2ChY113TRaw[Co4At4Ch1]
+868.843 -0.104976 0.00 !Mu2ChY114TRaw[Co4At4Ch2]
+876.793 -0.105936 0.00 !Mu2ChY115TRaw[Co4At4Ch3]
+875.311 -0.10575 0.00 !Mu2ChY116TRaw[Co4At4Ch4]
+883.331 -0.106741 0.00 !Mu2ChY117TRaw[Co4At4Ch5]
+879.699 -0.10628 0.00 !Mu2ChY118TRaw[Co4At4Ch6]
+891.993 -0.107805 0.00 !Mu2ChY119TRaw[Co4At4Ch7]
+893.52 -0.107966 0.00 !Mu2ChY120TRaw[Co4At4Ch8]
+883.484 -0.106759 0.00 !Mu2ChY121TRaw[Co4At4Ch9]
+896.835 -0.108381 0.00 !Mu2ChY122TRaw[Co4At4Ch10]
+895.32 -0.108195 0.00 !Mu2ChY123TRaw[Co4At4Ch11]
+1336.18 -0.108195 0.00 !Mu2ChY124TRaw[Co4At4Ch12]
+897.921 -0.108519 0.00 !Mu2ChY125TRaw[Co4At4Ch13]
+898.896 -0.10863 0.00 !Mu2ChY126TRaw[Co4At4Ch14]
+900.009 -0.108768 0.00 !Mu2ChY127TRaw[Co4At4Ch15]
+896.14 -0.108297 0.00 !Mu2ChY128TRaw[Co4At4Ch16]
+936.261 -0.113591 0.00 !Mu3ChX1TRaw[Co1At1Ch1]
+949.597 -0.115254 0.00 !Mu3ChX2TRaw[Co1At1Ch2]
+954.137 -0.115822 0.00 !Mu3ChX3TRaw[Co1At1Ch3]
+956.021 -0.116042 0.00 !Mu3ChX4TRaw[Co1At1Ch4]
+948.148 -0.115096 0.00 !Mu3ChX5TRaw[Co1At1Ch5]
+962.715 -0.11686 0.00 !Mu3ChX6TRaw[Co1At1Ch6]
+967.087 -0.117385 0.00 !Mu3ChX7TRaw[Co1At1Ch7]
+972.268 -0.118019 0.00 !Mu3ChX8TRaw[Co1At1Ch8]
+970.481 -0.117779 0.00 !Mu3ChX9TRaw[Co1At1Ch9]
+968.226 -0.117496 0.00 !Mu3ChX10TRaw[Co1At1Ch10]
+970.608 -0.117795 0.00 !Mu3ChX11TRaw[Co1At1Ch11]
+982.826 -0.119273 0.00 !Mu3ChX12TRaw[Co1At1Ch12]
+972.655 -0.118031 0.00 !Mu3ChX13TRaw[Co1At1Ch13]
+978.966 -0.118805 0.00 !Mu3ChX14TRaw[Co1At1Ch14]
+976.646 -0.118524 0.00 !Mu3ChX15TRaw[Co1At1Ch15]
+1358.4 -0.119127 0.00 !Mu3ChX16TRaw[Co1At1Ch16]
+965.022 -0.117029 0.00 !Mu3ChX17TRaw[Co1At2Ch1]
+961.069 -0.116582 0.00 !Mu3ChX18TRaw[Co1At2Ch2]
+979.729 -0.11886 0.00 !Mu3ChX19TRaw[Co1At2Ch3]
+975.886 -0.118386 0.00 !Mu3ChX20TRaw[Co1At2Ch4]
+982.811 -0.119229 0.00 !Mu3ChX21TRaw[Co1At2Ch5]
+989.956 -0.120114 0.00 !Mu3ChX22TRaw[Co1At2Ch6]
+982.322 -0.119177 0.00 !Mu3ChX23TRaw[Co1At2Ch7]
+986.837 -0.119693 0.00 !Mu3ChX24TRaw[Co1At2Ch8]
+984.553 -0.119405 0.00 !Mu3ChX25TRaw[Co1At2Ch9]
+985.367 -0.119523 0.00 !Mu3ChX26TRaw[Co1At2Ch10]
+998.436 -0.12115 0.00 !Mu3ChX27TRaw[Co1At2Ch11]
+994.592 -0.120628 0.00 !Mu3ChX28TRaw[Co1At2Ch12]
+1004.55 -0.121885 0.00 !Mu3ChX29TRaw[Co1At2Ch13]
+997.75 -0.121035 0.00 !Mu3ChX30TRaw[Co1At2Ch14]
+999.387 -0.121233 0.00 !Mu3ChX31TRaw[Co1At2Ch15]
+994.205 -0.120654 0.00 !Mu3ChX32TRaw[Co1At2Ch16]
+895.626 -0.108693 0.00 !Mu3ChX33TRaw[Co1At3Ch1]
+901.788 -0.109485 0.00 !Mu3ChX34TRaw[Co1At3Ch2]
+909.669 -0.110421 0.00 !Mu3ChX35TRaw[Co1At3Ch3]
+902.809 -0.109588 0.00 !Mu3ChX36TRaw[Co1At3Ch4]
+908.707 -0.110301 0.00 !Mu3ChX37TRaw[Co1At3Ch5]
+917.184 -0.111327 0.00 !Mu3ChX38TRaw[Co1At3Ch6]
+918.636 -0.111495 0.00 !Mu3ChX39TRaw[Co1At3Ch7]
+927.002 -0.112521 0.00 !Mu3ChX40TRaw[Co1At3Ch8]
+934.79 -0.11347 0.00 !Mu3ChX41TRaw[Co1At3Ch9]
+928.489 -0.112717 0.00 !Mu3ChX42TRaw[Co1At3Ch10]
+925.669 -0.112335 0.00 !Mu3ChX43TRaw[Co1At3Ch11]
+450 -0.112964 0.00 !Mu3ChX44TRaw[Co1At3Ch12]
+932.907 -0.113245 0.00 !Mu3ChX45TRaw[Co1At3Ch13]
+927.364 -0.11258 0.00 !Mu3ChX46TRaw[Co1At3Ch14]
+934.8 -0.113476 0.00 !Mu3ChX47TRaw[Co1At3Ch15]
+933.166 -0.113256 0.00 !Mu3ChX48TRaw[Co1At3Ch16]
+863.882 -0.104661 0.00 !Mu3ChX49TRaw[Co1At4Ch1]
+863.742 -0.104634 0.00 !Mu3ChX50TRaw[Co1At4Ch2]
+876.032 -0.106155 0.00 !Mu3ChX51TRaw[Co1At4Ch3]
+885.987 -0.107364 0.00 !Mu3ChX52TRaw[Co1At4Ch4]
+886.077 -0.107368 0.00 !Mu3ChX53TRaw[Co1At4Ch5]
+882.141 -0.106861 0.00 !Mu3ChX54TRaw[Co1At4Ch6]
+894.386 -0.108382 0.00 !Mu3ChX55TRaw[Co1At4Ch7]
+897.465 -0.108733 0.00 !Mu3ChX56TRaw[Co1At4Ch8]
+894.9 -0.10844 0.00 !Mu3ChX57TRaw[Co1At4Ch9]
+900.295 -0.10908 0.00 !Mu3ChX58TRaw[Co1At4Ch10]
+895.793 -0.108538 0.00 !Mu3ChX59TRaw[Co1At4Ch11]
+895.372 -0.10849 0.00 !Mu3ChX60TRaw[Co1At4Ch12]
+902.176 -0.109312 0.00 !Mu3ChX61TRaw[Co1At4Ch13]
+903.192 -0.109445 0.00 !Mu3ChX62TRaw[Co1At4Ch14]
+889.712 -0.107803 0.00 !Mu3ChX63TRaw[Co1At4Ch15]
+921.265 -0.108862 0.00 !Mu3ChX64TRaw[Co1At4Ch16]
+981.944 -0.119126 0.00 !Mu3ChX65TRaw[Co2At1Ch1]
+987.148 -0.119789 0.00 !Mu3ChX66TRaw[Co2At1Ch2]
+987.456 -0.119851 0.00 !Mu3ChX67TRaw[Co2At1Ch3]
+1003.28 -0.121753 0.00 !Mu3ChX68TRaw[Co2At1Ch4]
+1003.82 -0.121824 0.00 !Mu3ChX69TRaw[Co2At1Ch5]
+1000.66 -0.121446 0.00 !Mu3ChX70TRaw[Co2At1Ch6]
+1004.35 -0.121893 0.00 !Mu3ChX71TRaw[Co2At1Ch7]
+1008.06 -0.122347 0.00 !Mu3ChX72TRaw[Co2At1Ch8]
+1004.22 -0.121883 0.00 !Mu3ChX73TRaw[Co2At1Ch9]
+1011.08 -0.122684 0.00 !Mu3ChX74TRaw[Co2At1Ch10]
+1019.46 -0.123722 0.00 !Mu3ChX75TRaw[Co2At1Ch11]
+1029.58 -0.124938 0.00 !Mu3ChX76TRaw[Co2At1Ch12]
+1011.08 -0.122709 0.00 !Mu3ChX77TRaw[Co2At1Ch13]
+1010.81 -0.12265 0.00 !Mu3ChX78TRaw[Co2At1Ch14]
+1022.22 -0.124061 0.00 !Mu3ChX79TRaw[Co2At1Ch15]
+1391.94 -0.123313 0.00 !Mu3ChX80TRaw[Co2At1Ch16]
+939.257 -0.11381 0.00 !Mu3ChX81TRaw[Co2At2Ch1]
+945.066 -0.114558 0.00 !Mu3ChX82TRaw[Co2At2Ch2]
+948.6 -0.114986 0.00 !Mu3ChX83TRaw[Co2At2Ch3]
+947.122 -0.114804 0.00 !Mu3ChX84TRaw[Co2At2Ch4]
+961.987 -0.116619 0.00 !Mu3ChX85TRaw[Co2At2Ch5]
+964.59 -0.11693 0.00 !Mu3ChX86TRaw[Co2At2Ch6]
+959.397 -0.116299 0.00 !Mu3ChX87TRaw[Co2At2Ch7]
+964.355 -0.116863 0.00 !Mu3ChX88TRaw[Co2At2Ch8]
+975.002 -0.118161 0.00 !Mu3ChX89TRaw[Co2At2Ch9]
+971.077 -0.117687 0.00 !Mu3ChX90TRaw[Co2At2Ch10]
+976.04 -0.118304 0.00 !Mu3ChX91TRaw[Co2At2Ch11]
+983.975 -0.119256 0.00 !Mu3ChX92TRaw[Co2At2Ch12]
+983.617 -0.119241 0.00 !Mu3ChX93TRaw[Co2At2Ch13]
+983.301 -0.119186 0.00 !Mu3ChX94TRaw[Co2At2Ch14]
+980.734 -0.118879 0.00 !Mu3ChX95TRaw[Co2At2Ch15]
+975.837 -0.118278 0.00 !Mu3ChX96TRaw[Co2At2Ch16]
+858.761 -0.104124 0.00 !Mu3ChX97TRaw[Co2At3Ch1]
+863.527 -0.104728 0.00 !Mu3ChX98TRaw[Co2At3Ch2]
+863.719 -0.104753 0.00 !Mu3ChX99TRaw[Co2At3Ch3]
+869.797 -0.105492 0.00 !Mu3ChX100TRaw[Co2At3Ch4]
+879.582 -0.106693 0.00 !Mu3ChX101TRaw[Co2At3Ch5]
+874.971 -0.10614 0.00 !Mu3ChX102TRaw[Co2At3Ch6]
+879.706 -0.106708 0.00 !Mu3ChX103TRaw[Co2At3Ch7]
+878.738 -0.106567 0.00 !Mu3ChX104TRaw[Co2At3Ch8]
+887.854 -0.107671 0.00 !Mu3ChX105TRaw[Co2At3Ch9]
+892.385 -0.108216 0.00 !Mu3ChX106TRaw[Co2At3Ch10]
+884.225 -0.107225 0.00 !Mu3ChX107TRaw[Co2At3Ch11]
+894.981 -0.108561 0.00 !Mu3ChX108TRaw[Co2At3Ch12]
+895.51 -0.108609 0.00 !Mu3ChX109TRaw[Co2At3Ch13]
+891.851 -0.108191 0.00 !Mu3ChX110TRaw[Co2At3Ch14]
+901.356 -0.109337 0.00 !Mu3ChX111TRaw[Co2At3Ch15]
+900.727 -0.108709 0.00 !Mu3ChX112TRaw[Co2At3Ch16]
+855.952 -0.103629 0.00 !Mu3ChX113TRaw[Co2At4Ch1]
+865.7 -0.10481 0.00 !Mu3ChX114TRaw[Co2At4Ch2]
+866.161 -0.1049 0.00 !Mu3ChX115TRaw[Co2At4Ch3]
+872.362 -0.105647 0.00 !Mu3ChX116TRaw[Co2At4Ch4]
+1490.13 -0.126949 0.00 !Mu3ChX117TRaw[Co2At4Ch5]
+876.561 -0.106145 0.00 !Mu3ChX118TRaw[Co2At4Ch6]
+884.075 -0.107055 0.00 !Mu3ChX119TRaw[Co2At4Ch7]
+881.54 -0.10675 0.00 !Mu3ChX120TRaw[Co2At4Ch8]
+884.679 -0.107137 0.00 !Mu3ChX121TRaw[Co2At4Ch9]
+888.637 -0.107599 0.00 !Mu3ChX122TRaw[Co2At4Ch10]
+884.493 -0.107093 0.00 !Mu3ChX123TRaw[Co2At4Ch11]
+893.964 -0.108252 0.00 !Mu3ChX124TRaw[Co2At4Ch12]
+888.064 -0.107522 0.00 !Mu3ChX125TRaw[Co2At4Ch13]
+894.536 -0.108336 0.00 !Mu3ChX126TRaw[Co2At4Ch14]
+882.088 -0.106793 0.00 !Mu3ChX127TRaw[Co2At4Ch15]
+890.98 -0.107896 0.00 !Mu3ChX128TRaw[Co2At4Ch16]
+916.716 -0.11121 0.00 !Mu3ChY1TRaw[Co3At1Ch1]
+924.259 -0.112154 0.00 !Mu3ChY2TRaw[Co3At1Ch2]
+933.256 -0.113241 0.00 !Mu3ChY3TRaw[Co3At1Ch3]
+942.953 -0.114409 0.00 !Mu3ChY4TRaw[Co3At1Ch4]
+939.901 -0.114032 0.00 !Mu3ChY5TRaw[Co3At1Ch5]
+947.878 -0.114994 0.00 !Mu3ChY6TRaw[Co3At1Ch6]
+952.484 -0.115552 0.00 !Mu3ChY7TRaw[Co3At1Ch7]
+952.713 -0.115546 0.00 !Mu3ChY8TRaw[Co3At1Ch8]
+960.463 -0.116506 0.00 !Mu3ChY9TRaw[Co3At1Ch9]
+964.543 -0.117006 0.00 !Mu3ChY10TRaw[Co3At1Ch10]
+966.84 -0.117251 0.00 !Mu3ChY11TRaw[Co3At1Ch11]
+965.68 -0.117093 0.00 !Mu3ChY12TRaw[Co3At1Ch12]
+975.182 -0.118272 0.00 !Mu3ChY13TRaw[Co3At1Ch13]
+981.614 -0.119048 0.00 !Mu3ChY14TRaw[Co3At1Ch14]
+973.869 -0.118075 0.00 !Mu3ChY15TRaw[Co3At1Ch15]
+981.076 -0.118941 0.00 !Mu3ChY16TRaw[Co3At1Ch16]
+967.206 -0.117174 0.00 !Mu3ChY17TRaw[Co3At2Ch1]
+980.188 -0.118815 0.00 !Mu3ChY18TRaw[Co3At2Ch2]
+981.134 -0.118931 0.00 !Mu3ChY19TRaw[Co3At2Ch3]
+986.719 -0.119638 0.00 !Mu3ChY20TRaw[Co3At2Ch4]
+992.386 -0.12034 0.00 !Mu3ChY21TRaw[Co3At2Ch5]
+1002.21 -0.121551 0.00 !Mu3ChY22TRaw[Co3At2Ch6]
+997.474 -0.120998 0.00 !Mu3ChY23TRaw[Co3At2Ch7]
+992.008 -0.120321 0.00 !Mu3ChY24TRaw[Co3At2Ch8]
+998.021 -0.121073 0.00 !Mu3ChY25TRaw[Co3At2Ch9]
+1004.15 -0.121839 0.00 !Mu3ChY26TRaw[Co3At2Ch10]
+1004.31 -0.121856 0.00 !Mu3ChY27TRaw[Co3At2Ch11]
+1010.69 -0.122649 0.00 !Mu3ChY28TRaw[Co3At2Ch12]
+1013.79 -0.12302 0.00 !Mu3ChY29TRaw[Co3At2Ch13]
+1002.56 -0.121668 0.00 !Mu3ChY30TRaw[Co3At2Ch14]
+1011.72 -0.122794 0.00 !Mu3ChY31TRaw[Co3At2Ch15]
+1012.54 -0.122927 0.00 !Mu3ChY32TRaw[Co3At2Ch16]
+868.546 -0.105446 0.00 !Mu3ChY33TRaw[Co3At3Ch1]
+865.415 -0.105092 0.00 !Mu3ChY34TRaw[Co3At3Ch2]
+870.615 -0.10573 0.00 !Mu3ChY35TRaw[Co3At3Ch3]
+867.501 -0.105345 0.00 !Mu3ChY36TRaw[Co3At3Ch4]
+879.085 -0.106744 0.00 !Mu3ChY37TRaw[Co3At3Ch5]
+878.372 -0.106654 0.00 !Mu3ChY38TRaw[Co3At3Ch6]
+883.834 -0.107294 0.00 !Mu3ChY39TRaw[Co3At3Ch7]
+892.468 -0.108361 0.00 !Mu3ChY40TRaw[Co3At3Ch8]
+889.652 -0.10799 0.00 !Mu3ChY41TRaw[Co3At3Ch9]
+893.582 -0.10846 0.00 !Mu3ChY42TRaw[Co3At3Ch10]
+902.982 -0.109593 0.00 !Mu3ChY43TRaw[Co3At3Ch11]
+899.542 -0.109195 0.00 !Mu3ChY44TRaw[Co3At3Ch12]
+894.786 -0.108568 0.00 !Mu3ChY45TRaw[Co3At3Ch13]
+904.997 -0.109804 0.00 !Mu3ChY46TRaw[Co3At3Ch14]
+908.733 -0.110263 0.00 !Mu3ChY47TRaw[Co3At3Ch15]
+901.41 -0.109382 0.00 !Mu3ChY48TRaw[Co3At3Ch16]
+874.853 -0.105997 0.00 !Mu3ChY49TRaw[Co3At4Ch1]
+880.713 -0.106772 0.00 !Mu3ChY50TRaw[Co3At4Ch2]
+892.705 -0.108217 0.00 !Mu3ChY51TRaw[Co3At4Ch3]
+895.218 -0.108527 0.00 !Mu3ChY52TRaw[Co3At4Ch4]
+889.343 -0.107825 0.00 !Mu3ChY53TRaw[Co3At4Ch5]
+897.932 -0.108862 0.00 !Mu3ChY54TRaw[Co3At4Ch6]
+902.448 -0.109456 0.00 !Mu3ChY55TRaw[Co3At4Ch7]
+908.367 -0.110152 0.00 !Mu3ChY56TRaw[Co3At4Ch8]
+912.74 -0.110718 0.00 !Mu3ChY57TRaw[Co3At4Ch9]
+911.519 -0.11056 0.00 !Mu3ChY58TRaw[Co3At4Ch10]
+920.413 -0.111636 0.00 !Mu3ChY59TRaw[Co3At4Ch11]
+906.185 -0.109934 0.00 !Mu3ChY60TRaw[Co3At4Ch12]
+919.759 -0.111581 0.00 !Mu3ChY61TRaw[Co3At4Ch13]
+920.555 -0.111694 0.00 !Mu3ChY62TRaw[Co3At4Ch14]
+915.715 -0.1111 0.00 !Mu3ChY63TRaw[Co3At4Ch15]
+918.454 -0.11144 0.00 !Mu3ChY64TRaw[Co3At4Ch16]
+901.244 -0.109216 0.00 !Mu3ChY65TRaw[Co4At1Ch1]
+907.742 -0.110026 0.00 !Mu3ChY66TRaw[Co4At1Ch2]
+908.334 -0.110106 0.00 !Mu3ChY67TRaw[Co4At1Ch3]
+916.785 -0.11114 0.00 !Mu3ChY68TRaw[Co4At1Ch4]
+928.178 -0.11252 0.00 !Mu3ChY69TRaw[Co4At1Ch5]
+936.612 -0.113544 0.00 !Mu3ChY70TRaw[Co4At1Ch6]
+929.327 -0.112672 0.00 !Mu3ChY71TRaw[Co4At1Ch7]
+927.889 -0.112491 0.00 !Mu3ChY72TRaw[Co4At1Ch8]
+944.015 -0.114462 0.00 !Mu3ChY73TRaw[Co4At1Ch9]
+936.5 -0.11354 0.00 !Mu3ChY74TRaw[Co4At1Ch10]
+952.669 -0.115517 0.00 !Mu3ChY75TRaw[Co4At1Ch11]
+949.121 -0.115086 0.00 !Mu3ChY76TRaw[Co4At1Ch12]
+961.66 -0.116618 0.00 !Mu3ChY77TRaw[Co4At1Ch13]
+950.324 -0.115232 0.00 !Mu3ChY78TRaw[Co4At1Ch14]
+943.005 -0.114343 0.00 !Mu3ChY79TRaw[Co4At1Ch15]
+948.05 -0.114947 0.00 !Mu3ChY80TRaw[Co4At1Ch16]
+967.814 -0.117288 0.00 !Mu3ChY81TRaw[Co4At2Ch1]
+979.35 -0.118727 0.00 !Mu3ChY82TRaw[Co4At2Ch2]
+985.387 -0.119474 0.00 !Mu3ChY83TRaw[Co4At2Ch3]
+988.884 -0.119909 0.00 !Mu3ChY84TRaw[Co4At2Ch4]
+990.688 -0.120116 0.00 !Mu3ChY85TRaw[Co4At2Ch5]
+997.728 -0.120975 0.00 !Mu3ChY86TRaw[Co4At2Ch6]
+994.598 -0.120606 0.00 !Mu3ChY87TRaw[Co4At2Ch7]
+996.045 -0.12076 0.00 !Mu3ChY88TRaw[Co4At2Ch8]
+1000.77 -0.121336 0.00 !Mu3ChY89TRaw[Co4At2Ch9]
+1011.99 -0.122713 0.00 !Mu3ChY90TRaw[Co4At2Ch10]
+1015.05 -0.1231 0.00 !Mu3ChY91TRaw[Co4At2Ch11]
+1003.4 -0.121678 0.00 !Mu3ChY92TRaw[Co4At2Ch12]
+1011.74 -0.122697 0.00 !Mu3ChY93TRaw[Co4At2Ch13]
+1014.96 -0.123087 0.00 !Mu3ChY94TRaw[Co4At2Ch14]
+1007.34 -0.122144 0.00 !Mu3ChY95TRaw[Co4At2Ch15]
+1008.36 -0.122274 0.00 !Mu3ChY96TRaw[Co4At2Ch16]
+871.329 -0.105573 0.00 !Mu3ChY97TRaw[Co4At3Ch1]
+868.142 -0.105224 0.00 !Mu3ChY98TRaw[Co4At3Ch2]
+872.865 -0.105791 0.00 !Mu3ChY99TRaw[Co4At3Ch3]
+882.085 -0.106904 0.00 !Mu3ChY100TRaw[Co4At3Ch4]
+889.159 -0.107789 0.00 !Mu3ChY101TRaw[Co4At3Ch5]
+888.956 -0.107742 0.00 !Mu3ChY102TRaw[Co4At3Ch6]
+899.906 -0.109085 0.00 !Mu3ChY103TRaw[Co4At3Ch7]
+892.033 -0.108126 0.00 !Mu3ChY104TRaw[Co4At3Ch8]
+899.207 -0.108999 0.00 !Mu3ChY105TRaw[Co4At3Ch9]
+891.613 -0.108068 0.00 !Mu3ChY106TRaw[Co4At3Ch10]
+891.136 -0.108006 0.00 !Mu3ChY107TRaw[Co4At3Ch11]
+900.207 -0.109125 0.00 !Mu3ChY108TRaw[Co4At3Ch12]
+902.911 -0.109439 0.00 !Mu3ChY109TRaw[Co4At3Ch13]
+900.692 -0.109168 0.00 !Mu3ChY110TRaw[Co4At3Ch14]
+896.133 -0.108625 0.00 !Mu3ChY111TRaw[Co4At3Ch15]
+902.665 -0.109416 0.00 !Mu3ChY112TRaw[Co4At3Ch16]
+888.587 -0.107554 0.00 !Mu3ChY113TRaw[Co4At4Ch1]
+895.918 -0.108473 0.00 !Mu3ChY114TRaw[Co4At4Ch2]
+898.97 -0.108848 0.00 !Mu3ChY115TRaw[Co4At4Ch3]
+894.394 -0.108292 0.00 !Mu3ChY116TRaw[Co4At4Ch4]
+902.574 -0.109288 0.00 !Mu3ChY117TRaw[Co4At4Ch5]
+907.964 -0.109943 0.00 !Mu3ChY118TRaw[Co4At4Ch6]
+906.564 -0.109765 0.00 !Mu3ChY119TRaw[Co4At4Ch7]
+905.798 -0.109672 0.00 !Mu3ChY120TRaw[Co4At4Ch8]
+912.702 -0.110512 0.00 !Mu3ChY121TRaw[Co4At4Ch9]
+921.335 -0.111588 0.00 !Mu3ChY122TRaw[Co4At4Ch10]
+924.085 -0.111915 0.00 !Mu3ChY123TRaw[Co4At4Ch11]
+906.564 -0.109772 0.00 !Mu3ChY124TRaw[Co4At4Ch12]
+910.838 -0.11029 0.00 !Mu3ChY125TRaw[Co4At4Ch13]
+916.176 -0.110947 0.00 !Mu3ChY126TRaw[Co4At4Ch14]
+917.763 -0.111116 0.00 !Mu3ChY127TRaw[Co4At4Ch15]
+925.891 -0.112131 0.00 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calibTV0_R326-327.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calibTV0_R326-327.cal
new file mode 100644
index 0000000000000000000000000000000000000000..bb7554e8b893ad967a1c59a580b86ec16ce88171
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calibTV0_R326-327.cal
@@ -0,0 +1,1023 @@
+947.402 -0.114176 0.0!Mu0ChX1TRaw[Co1At1Ch1] 
+958.132 -0.115529 0.0!Mu0ChX2TRaw[Co1At1Ch2] 
+959.289 -0.115657 0.0!Mu0ChX3TRaw[Co1At1Ch3] 
+973.445 -0.117409 0.0!Mu0ChX4TRaw[Co1At1Ch4] 
+973.097 -0.117367 0.0!Mu0ChX5TRaw[Co1At1Ch5] 
+973.027 -0.117353 0.0!Mu0ChX6TRaw[Co1At1Ch6] 
+978.311 -0.117969 0.0!Mu0ChX7TRaw[Co1At1Ch7] 
+980.44 -0.118246 0.0!Mu0ChX8TRaw[Co1At1Ch8] 
+979.197 -0.118065 0.0!Mu0ChX9TRaw[Co1At1Ch9] 
+983.093 -0.118546 0.0!Mu0ChX10TRaw[Co1At1Ch10] 
+987.843 -0.119138 0.0!Mu0ChX11TRaw[Co1At1Ch11] 
+987.466 -0.119075 0.0!Mu0ChX12TRaw[Co1At1Ch12] 
+994.957 -0.119996 0.0!Mu0ChX13TRaw[Co1At1Ch13] 
+980.198 -0.118174 0.0!Mu0ChX14TRaw[Co1At1Ch14] 
+991.208 -0.119531 0.0!Mu0ChX15TRaw[Co1At1Ch15] 
+1327.419 -0.118448 0.0!Mu0ChX16TRaw[Co1At1Ch16] 
+957.045 -0.115275 0.0!Mu0ChX17TRaw[Co1At2Ch1] 
+967.151 -0.116527 0.0!Mu0ChX18TRaw[Co1At2Ch2] 
+979.671 -0.118044 0.0!Mu0ChX19TRaw[Co1At2Ch3] 
+980.319 -0.118125 0.0!Mu0ChX20TRaw[Co1At2Ch4] 
+989.453 -0.119233 0.0!Mu0ChX21TRaw[Co1At2Ch5] 
+983.819 -0.118555 0.0!Mu0ChX22TRaw[Co1At2Ch6] 
+994.391 -0.119845 0.0!Mu0ChX23TRaw[Co1At2Ch7] 
+995.696 -0.120005 0.0!Mu0ChX24TRaw[Co1At2Ch8] 
+991.078 -0.119427 0.0!Mu0ChX25TRaw[Co1At2Ch9] 
+1002.131 -0.120777 0.0!Mu0ChX26TRaw[Co1At2Ch10] 
+1004.435 -0.121057 0.0!Mu0ChX27TRaw[Co1At2Ch11] 
+1008.403 -0.121545 0.0!Mu0ChX28TRaw[Co1At2Ch12] 
+1003.939 -0.121021 0.0!Mu0ChX29TRaw[Co1At2Ch13] 
+1002.74 -0.120851 0.0!Mu0ChX30TRaw[Co1At2Ch14] 
+999.377 -0.12045 0.0!Mu0ChX31TRaw[Co1At2Ch15] 
+995.027 -0.119947 0.0!Mu0ChX32TRaw[Co1At2Ch16] 
+874.004 -0.105192 0.0!Mu0ChX33TRaw[Co1At3Ch1] 
+871.776 -0.104955 0.0!Mu0ChX34TRaw[Co1At3Ch2] 
+891.807 -0.107397 0.0!Mu0ChX35TRaw[Co1At3Ch3] 
+880.562 -0.106033 0.0!Mu0ChX36TRaw[Co1At3Ch4] 
+882.297 -0.106227 0.0!Mu0ChX37TRaw[Co1At3Ch5] 
+896.75 -0.108005 0.0!Mu0ChX38TRaw[Co1At3Ch6] 
+898.223 -0.108195 0.0!Mu0ChX39TRaw[Co1At3Ch7] 
+896.786 -0.107979 0.0!Mu0ChX40TRaw[Co1At3Ch8] 
+899.624 -0.108302 0.0!Mu0ChX41TRaw[Co1At3Ch9] 
+899.765 -0.108334 0.0!Mu0ChX42TRaw[Co1At3Ch10] 
+899.028 -0.108243 0.0!Mu0ChX43TRaw[Co1At3Ch11] 
+905.872 -0.109095 0.0!Mu0ChX44TRaw[Co1At3Ch12] 
+901.13 -0.108505 0.0!Mu0ChX45TRaw[Co1At3Ch13] 
+899.439 -0.107877 0.0!Mu0ChX46TRaw[Co1At3Ch14] 
+898.066 -0.108187 0.0!Mu0ChX47TRaw[Co1At3Ch15] 
+920.142 -0.10826 0.0!Mu0ChX48TRaw[Co1At3Ch16] 
+885.877 -0.106556 0.0!Mu0ChX49TRaw[Co1At4Ch1] 
+889.054 -0.106942 0.0!Mu0ChX50TRaw[Co1At4Ch2] 
+894.673 -0.107622 0.0!Mu0ChX51TRaw[Co1At4Ch3] 
+903.218 -0.109464 0.0!Mu0ChX52TRaw[Co1At4Ch4] 
+908.402 -0.109295 0.0!Mu0ChX53TRaw[Co1At4Ch5] 
+911.389 -0.109652 0.0!Mu0ChX54TRaw[Co1At4Ch6] 
+913.908 -0.109955 0.0!Mu0ChX55TRaw[Co1At4Ch7] 
+917.897 -0.110458 0.0!Mu0ChX56TRaw[Co1At4Ch8] 
+926.464 -0.111499 0.0!Mu0ChX57TRaw[Co1At4Ch9] 
+918.072 -0.110456 0.0!Mu0ChX58TRaw[Co1At4Ch10] 
+925.456 -0.111378 0.0!Mu0ChX59TRaw[Co1At4Ch11] 
+930.204 -0.111943 0.0!Mu0ChX60TRaw[Co1At4Ch12] 
+937.287 -0.112807 0.0!Mu0ChX61TRaw[Co1At4Ch13] 
+940.01 -0.11314 0.0!Mu0ChX62TRaw[Co1At4Ch14] 
+941.711 -0.113338 0.0!Mu0ChX63TRaw[Co1At4Ch15] 
+930.49 -0.111982 0.0!Mu0ChX64TRaw[Co1At4Ch16] 
+958.733 -0.115846 0.0!Mu0ChX65TRaw[Co2At1Ch1] 
+963.634 -0.11646 0.0!Mu0ChX66TRaw[Co2At1Ch2] 
+973.382 -0.117644 0.0!Mu0ChX67TRaw[Co2At1Ch3] 
+974.652 -0.117791 0.0!Mu0ChX68TRaw[Co2At1Ch4] 
+977.949 -0.118174 0.0!Mu0ChX69TRaw[Co2At1Ch5] 
+990.649 -0.119717 0.0!Mu0ChX70TRaw[Co2At1Ch6] 
+995.246 -0.120284 0.0!Mu0ChX71TRaw[Co2At1Ch7] 
+996.388 -0.120426 0.0!Mu0ChX72TRaw[Co2At1Ch8] 
+1007.342 -0.121763 0.0!Mu0ChX73TRaw[Co2At1Ch9] 
+988.546 -0.119445 0.0!Mu0ChX74TRaw[Co2At1Ch10] 
+1005.453 -0.121535 0.0!Mu0ChX75TRaw[Co2At1Ch11] 
+996.341 -0.120381 0.0!Mu0ChX76TRaw[Co2At1Ch12] 
+1007.215 -0.121262 0.0!Mu0ChX77TRaw[Co2At1Ch13] 
+1011.503 -0.121766 0.0!Mu0ChX78TRaw[Co2At1Ch14] 
+998.245 -0.120615 0.0!Mu0ChX79TRaw[Co2At1Ch15] 
+1381.85 -0.120952 0.0!Mu0ChX80TRaw[Co2At1Ch16] 
+924.325 -0.111515 0.0!Mu0ChX81TRaw[Co2At2Ch1] 
+933.986 -0.112746 0.0!Mu0ChX82TRaw[Co2At2Ch2] 
+926.081 -0.111774 0.0!Mu0ChX83TRaw[Co2At2Ch3] 
+942.039 -0.113281 0.0!Mu0ChX84TRaw[Co2At2Ch4] 
+931.74 -0.112468 0.0!Mu0ChX85TRaw[Co2At2Ch5] 
+942.885 -0.113819 0.0!Mu0ChX86TRaw[Co2At2Ch6] 
+951.107 -0.114818 0.0!Mu0ChX87TRaw[Co2At2Ch7] 
+944.193 -0.113978 0.0!Mu0ChX88TRaw[Co2At2Ch8] 
+950.881 -0.114813 0.0!Mu0ChX89TRaw[Co2At2Ch9] 
+958.38 -0.115728 0.0!Mu0ChX90TRaw[Co2At2Ch10] 
+965.991 -0.11664 0.0!Mu0ChX91TRaw[Co2At2Ch11] 
+962.675 -0.11625 0.0!Mu0ChX92TRaw[Co2At2Ch12] 
+962.975 -0.116299 0.0!Mu0ChX93TRaw[Co2At2Ch13] 
+961.838 -0.116152 0.0!Mu0ChX94TRaw[Co2At2Ch14] 
+975.767 -0.117868 0.0!Mu0ChX95TRaw[Co2At2Ch15] 
+987.869 -0.116744 0.0!Mu0ChX96TRaw[Co2At2Ch16] 
+869.374 -0.105013 0.0!Mu0ChX97TRaw[Co2At3Ch1] 
+878.873 -0.106169 0.0!Mu0ChX98TRaw[Co2At3Ch2] 
+879.124 -0.106212 0.0!Mu0ChX99TRaw[Co2At3Ch3] 
+885.082 -0.106905 0.0!Mu0ChX100TRaw[Co2At3Ch4] 
+894.377 -0.108043 0.0!Mu0ChX101TRaw[Co2At3Ch5] 
+901.707 -0.108935 0.0!Mu0ChX102TRaw[Co2At3Ch6] 
+897.889 -0.108442 0.0!Mu0ChX103TRaw[Co2At3Ch7] 
+895.995 -0.108194 0.0!Mu0ChX104TRaw[Co2At3Ch8] 
+905.254 -0.109336 0.0!Mu0ChX105TRaw[Co2At3Ch9] 
+903.109 -0.109053 0.0!Mu0ChX106TRaw[Co2At3Ch10] 
+908.799 -0.109771 0.0!Mu0ChX107TRaw[Co2At3Ch11] 
+906.422 -0.109449 0.0!Mu0ChX108TRaw[Co2At3Ch12] 
+903.683 -0.109128 0.0!Mu0ChX109TRaw[Co2At3Ch13] 
+907.658 -0.109641 0.0!Mu0ChX110TRaw[Co2At3Ch14] 
+903.934 -0.109177 0.0!Mu0ChX111TRaw[Co2At3Ch15] 
+917.004 -0.109478 0.0!Mu0ChX112TRaw[Co2At3Ch16] 
+889.763 -0.107364 0.0!Mu0ChX113TRaw[Co2At4Ch1] 
+892.874 -0.107748 0.0!Mu0ChX114TRaw[Co2At4Ch2] 
+893.086 -0.107782 0.0!Mu0ChX115TRaw[Co2At4Ch3] 
+903.173 -0.109007 0.0!Mu0ChX116TRaw[Co2At4Ch4] 
+906.71 -0.109423 0.0!Mu0ChX117TRaw[Co2At4Ch5] 
+900.172 -0.108648 0.0!Mu0ChX118TRaw[Co2At4Ch6] 
+914.738 -0.110413 0.0!Mu0ChX119TRaw[Co2At4Ch7] 
+915.95 -0.110579 0.0!Mu0ChX120TRaw[Co2At4Ch8] 
+910.273 -0.109898 0.0!Mu0ChX121TRaw[Co2At4Ch9] 
+915.371 -0.1105 0.0!Mu0ChX122TRaw[Co2At4Ch10] 
+923.843 -0.111529 0.0!Mu0ChX123TRaw[Co2At4Ch11] 
+916.0 -0.110604 0.0!Mu0ChX124TRaw[Co2At4Ch12] 
+919.085 -0.110972 0.0!Mu0ChX125TRaw[Co2At4Ch13] 
+920.758 -0.11118 0.0!Mu0ChX126TRaw[Co2At4Ch14] 
+916.079 -0.110613 0.0!Mu0ChX127TRaw[Co2At4Ch15] 
+927.913 -0.111151 0.0!Mu0ChX128TRaw[Co2At4Ch16] 
+943.871 -0.114033 0.0!Mu0ChY2TRaw[Co3At1Ch2] 
+942.541 -0.113921 0.0!Mu0ChY3TRaw[Co3At1Ch3] 
+960.736 -0.116104 0.0!Mu0ChY4TRaw[Co3At1Ch4] 
+956.194 -0.115563 0.0!Mu0ChY5TRaw[Co3At1Ch5] 
+971.901 -0.117481 0.0!Mu0ChY6TRaw[Co3At1Ch6] 
+970.47 -0.117339 0.0!Mu0ChY7TRaw[Co3At1Ch7] 
+967.899 -0.117018 0.0!Mu0ChY8TRaw[Co3At1Ch8] 
+974.549 -0.117842 0.0!Mu0ChY9TRaw[Co3At1Ch9] 
+970.321 -0.117316 0.0!Mu0ChY10TRaw[Co3At1Ch10] 
+972.871 -0.117632 0.0!Mu0ChY11TRaw[Co3At1Ch11] 
+979.225 -0.118398 0.0!Mu0ChY12TRaw[Co3At1Ch12] 
+977.059 -0.11814 0.0!Mu0ChY13TRaw[Co3At1Ch13] 
+972.932 -0.117633 0.0!Mu0ChY14TRaw[Co3At1Ch14] 
+975.541 -0.117944 0.0!Mu0ChY15TRaw[Co3At1Ch15] 
+981.99 -0.118761 0.0!Mu0ChY16TRaw[Co3At1Ch16] 
+937.345 -0.113175 0.0!Mu0ChY17TRaw[Co3At2Ch1] 
+946.398 -0.114309 0.0!Mu0ChY18TRaw[Co3At2Ch2] 
+954.917 -0.115351 0.0!Mu0ChY19TRaw[Co3At2Ch3] 
+946.68 -0.11436 0.0!Mu0ChY20TRaw[Co3At2Ch4] 
+949.495 -0.114686 0.0!Mu0ChY21TRaw[Co3At2Ch5] 
+952.893 -0.115103 0.0!Mu0ChY22TRaw[Co3At2Ch6] 
+958.913 -0.115832 0.0!Mu0ChY23TRaw[Co3At2Ch7] 
+959.053 -0.115841 0.0!Mu0ChY24TRaw[Co3At2Ch8] 
+963.718 -0.116398 0.0!Mu0ChY25TRaw[Co3At2Ch9] 
+961.896 -0.116195 0.0!Mu0ChY26TRaw[Co3At2Ch10] 
+958.661 -0.115516 0.0!Mu0ChY27TRaw[Co3At2Ch11] 
+973.339 -0.117562 0.0!Mu0ChY28TRaw[Co3At2Ch12] 
+975.575 -0.117834 0.0!Mu0ChY29TRaw[Co3At2Ch13] 
+970.444 -0.11722 0.0!Mu0ChY30TRaw[Co3At2Ch14] 
+973.574 -0.11759 0.0!Mu0ChY31TRaw[Co3At2Ch15] 
+968.228 -0.116928 0.0!Mu0ChY32TRaw[Co3At2Ch16] 
+870.562 -0.105131 0.0!Mu0ChY33TRaw[Co3At3Ch1] 
+870.284 -0.105113 0.0!Mu0ChY34TRaw[Co3At3Ch2] 
+887.363 -0.107174 0.0!Mu0ChY35TRaw[Co3At3Ch3] 
+877.314 -0.105955 0.0!Mu0ChY36TRaw[Co3At3Ch4] 
+888.861 -0.107363 0.0!Mu0ChY37TRaw[Co3At3Ch5] 
+888.241 -0.107278 0.0!Mu0ChY38TRaw[Co3At3Ch6] 
+888.889 -0.107347 0.0!Mu0ChY39TRaw[Co3At3Ch7] 
+906.968 -0.109567 0.0!Mu0ChY40TRaw[Co3At3Ch8] 
+904.625 -0.109268 0.0!Mu0ChY41TRaw[Co3At3Ch9] 
+902.798 -0.109045 0.0!Mu0ChY42TRaw[Co3At3Ch10] 
+901.927 -0.108924 0.0!Mu0ChY43TRaw[Co3At3Ch11] 
+912.591 -0.110196 0.0!Mu0ChY44TRaw[Co3At3Ch12] 
+909.812 -0.109895 0.0!Mu0ChY45TRaw[Co3At3Ch13] 
+904.379 -0.10924 0.0!Mu0ChY46TRaw[Co3At3Ch14] 
+914.951 -0.110513 0.0!Mu0ChY47TRaw[Co3At3Ch15] 
+903.001 -0.109056 0.0!Mu0ChY48TRaw[Co3At3Ch16] 
+857.208 -0.103507 0.0!Mu0ChY49TRaw[Co3At4Ch1] 
+868.319 -0.104888 0.0!Mu0ChY50TRaw[Co3At4Ch2] 
+863.685 -0.104347 0.0!Mu0ChY51TRaw[Co3At4Ch3] 
+880.511 -0.106391 0.0!Mu0ChY52TRaw[Co3At4Ch4] 
+883.206 -0.106718 0.0!Mu0ChY53TRaw[Co3At4Ch5] 
+884.379 -0.106878 0.0!Mu0ChY54TRaw[Co3At4Ch6] 
+881.016 -0.106441 0.0!Mu0ChY55TRaw[Co3At4Ch7] 
+888.95 -0.107426 0.0!Mu0ChY56TRaw[Co3At4Ch8] 
+890.519 -0.107608 0.0!Mu0ChY57TRaw[Co3At4Ch9] 
+894.751 -0.108136 0.0!Mu0ChY58TRaw[Co3At4Ch10] 
+901.921 -0.109012 0.0!Mu0ChY59TRaw[Co3At4Ch11] 
+900.736 -0.108611 0.0!Mu0ChY60TRaw[Co3At4Ch12] 
+899.581 -0.108719 0.0!Mu0ChY61TRaw[Co3At4Ch13] 
+906.688 -0.109581 0.0!Mu0ChY62TRaw[Co3At4Ch14] 
+900.81 -0.108895 0.0!Mu0ChY63TRaw[Co3At4Ch15] 
+906.101 -0.109543 0.0!Mu0ChY64TRaw[Co3At4Ch16] 
+965.38 -0.116469 0.0!Mu0ChY65TRaw[Co4At1Ch1] 
+971.898 -0.117302 0.0!Mu0ChY66TRaw[Co4At1Ch2] 
+977.707 -0.118012 0.0!Mu0ChY67TRaw[Co4At1Ch3] 
+977.945 -0.118028 0.0!Mu0ChY68TRaw[Co4At1Ch4] 
+980.831 -0.118378 0.0!Mu0ChY69TRaw[Co4At1Ch5] 
+984.514 -0.118825 0.0!Mu0ChY70TRaw[Co4At1Ch6] 
+984.139 -0.118781 0.0!Mu0ChY71TRaw[Co4At1Ch7] 
+987.235 -0.119156 0.0!Mu0ChY72TRaw[Co4At1Ch8] 
+991.116 -0.119628 0.0!Mu0ChY73TRaw[Co4At1Ch9] 
+982.578 -0.118591 0.0!Mu0ChY74TRaw[Co4At1Ch10] 
+991.199 -0.119656 0.0!Mu0ChY75TRaw[Co4At1Ch11] 
+1001.66 -0.120924 0.0!Mu0ChY76TRaw[Co4At1Ch12] 
+996.91 -0.120327 0.0!Mu0ChY77TRaw[Co4At1Ch13] 
+998.977 -0.120579 0.0!Mu0ChY78TRaw[Co4At1Ch14] 
+996.138 -0.120247 0.0!Mu0ChY79TRaw[Co4At1Ch15] 
+1003.186 -0.121097 0.0!Mu0ChY80TRaw[Co4At1Ch16] 
+971.772 -0.117145 0.0!Mu0ChY81TRaw[Co4At2Ch1] 
+987.56 -0.119118 0.0!Mu0ChY82TRaw[Co4At2Ch2] 
+982.693 -0.118534 0.0!Mu0ChY83TRaw[Co4At2Ch3] 
+997.382 -0.12031 0.0!Mu0ChY84TRaw[Co4At2Ch4] 
+1001.12 -0.120777 0.0!Mu0ChY85TRaw[Co4At2Ch5] 
+1003.628 -0.121085 0.0!Mu0ChY86TRaw[Co4At2Ch6] 
+999.525 -0.120569 0.0!Mu0ChY87TRaw[Co4At2Ch7] 
+1009.866 -0.121839 0.0!Mu0ChY88TRaw[Co4At2Ch8] 
+1005.699 -0.121339 0.0!Mu0ChY89TRaw[Co4At2Ch9] 
+1016.19 -0.122592 0.0!Mu0ChY90TRaw[Co4At2Ch10] 
+1026.692 -0.123897 0.0!Mu0ChY91TRaw[Co4At2Ch11] 
+1026.458 -0.123866 0.0!Mu0ChY92TRaw[Co4At2Ch12] 
+1021.303 -0.123256 0.0!Mu0ChY93TRaw[Co4At2Ch13] 
+1025.779 -0.123786 0.0!Mu0ChY94TRaw[Co4At2Ch14] 
+1022.572 -0.123408 0.0!Mu0ChY95TRaw[Co4At2Ch15] 
+1018.35 -0.122879 0.0!Mu0ChY96TRaw[Co4At2Ch16] 
+884.199 -0.106544 0.0!Mu0ChY97TRaw[Co4At3Ch1] 
+880.563 -0.106139 0.0!Mu0ChY98TRaw[Co4At3Ch2] 
+879.514 -0.106028 0.0!Mu0ChY99TRaw[Co4At3Ch3] 
+896.148 -0.108041 0.0!Mu0ChY100TRaw[Co4At3Ch4] 
+893.439 -0.107707 0.0!Mu0ChY101TRaw[Co4At3Ch5] 
+892.231 -0.10757 0.0!Mu0ChY102TRaw[Co4At3Ch6] 
+896.756 -0.108105 0.0!Mu0ChY103TRaw[Co4At3Ch7] 
+908.766 -0.10959 0.0!Mu0ChY104TRaw[Co4At3Ch8] 
+903.356 -0.108916 0.0!Mu0ChY105TRaw[Co4At3Ch9] 
+916.719 -0.110544 0.0!Mu0ChY106TRaw[Co4At3Ch10] 
+912.113 -0.109981 0.0!Mu0ChY107TRaw[Co4At3Ch11] 
+916.451 -0.11051 0.0!Mu0ChY108TRaw[Co4At3Ch12] 
+915.868 -0.110421 0.0!Mu0ChY109TRaw[Co4At3Ch13] 
+911.388 -0.109894 0.0!Mu0ChY110TRaw[Co4At3Ch14] 
+916.911 -0.110572 0.0!Mu0ChY111TRaw[Co4At3Ch15] 
+918.844 -0.110803 0.0!Mu0ChY112TRaw[Co4At3Ch16] 
+893.651 -0.107535 0.0!Mu0ChY113TRaw[Co4At4Ch1] 
+901.081 -0.108466 0.0!Mu0ChY114TRaw[Co4At4Ch2] 
+900.586 -0.108438 0.0!Mu0ChY115TRaw[Co4At4Ch3] 
+906.547 -0.109158 0.0!Mu0ChY116TRaw[Co4At4Ch4] 
+918.22 -0.110566 0.0!Mu0ChY117TRaw[Co4At4Ch5] 
+911.401 -0.109757 0.0!Mu0ChY118TRaw[Co4At4Ch6] 
+931.26 -0.112167 0.0!Mu0ChY119TRaw[Co4At4Ch7] 
+923.034 -0.111146 0.0!Mu0ChY120TRaw[Co4At4Ch8] 
+933.197 -0.112407 0.0!Mu0ChY121TRaw[Co4At4Ch9] 
+932.718 -0.112337 0.0!Mu0ChY122TRaw[Co4At4Ch10] 
+934.415 -0.112539 0.0!Mu0ChY123TRaw[Co4At4Ch11] 
+937.954 -0.112978 0.0!Mu0ChY124TRaw[Co4At4Ch12] 
+932.468 -0.112316 0.0!Mu0ChY125TRaw[Co4At4Ch13] 
+931.414 -0.112192 0.0!Mu0ChY126TRaw[Co4At4Ch14] 
+928.457 -0.111821 0.0!Mu0ChY127TRaw[Co4At4Ch15] 
+931.38 -0.112162 0.0!Mu0ChY128TRaw[Co4At4Ch16] 
+931.243 -0.11232 0.0!Mu1ChX1TRaw[Co1At1Ch1] 
+945.084 -0.114015 0.0!Mu1ChX2TRaw[Co1At1Ch2] 
+947.562 -0.114341 0.0!Mu1ChX3TRaw[Co1At1Ch3] 
+958.911 -0.115712 0.0!Mu1ChX4TRaw[Co1At1Ch4] 
+959.274 -0.115744 0.0!Mu1ChX5TRaw[Co1At1Ch5] 
+961.121 -0.115962 0.0!Mu1ChX6TRaw[Co1At1Ch6] 
+974.613 -0.117589 0.0!Mu1ChX7TRaw[Co1At1Ch7] 
+969.703 -0.116998 0.0!Mu1ChX8TRaw[Co1At1Ch8] 
+973.909 -0.117498 0.0!Mu1ChX9TRaw[Co1At1Ch9] 
+982.972 -0.118577 0.0!Mu1ChX10TRaw[Co1At1Ch10] 
+979.25 -0.118143 0.0!Mu1ChX11TRaw[Co1At1Ch11] 
+978.727 -0.118071 0.0!Mu1ChX12TRaw[Co1At1Ch12] 
+990.788 -0.11954 0.0!Mu1ChX13TRaw[Co1At1Ch13] 
+991.407 -0.119597 0.0!Mu1ChX14TRaw[Co1At1Ch14] 
+988.337 -0.119236 0.0!Mu1ChX15TRaw[Co1At1Ch15] 
+1375.029 -0.119179 0.0!Mu1ChX16TRaw[Co1At1Ch16] 
+927.042 -0.111777 0.0!Mu1ChX17TRaw[Co1At2Ch1] 
+950.021 -0.114612 0.0!Mu1ChX18TRaw[Co1At2Ch2] 
+950.947 -0.114738 0.0!Mu1ChX19TRaw[Co1At2Ch3] 
+948.537 -0.114439 0.0!Mu1ChX20TRaw[Co1At2Ch4] 
+956.835 -0.115464 0.0!Mu1ChX21TRaw[Co1At2Ch5] 
+969.98 -0.117052 0.0!Mu1ChX22TRaw[Co1At2Ch6] 
+959.253 -0.115762 0.0!Mu1ChX23TRaw[Co1At2Ch7] 
+975.846 -0.117739 0.0!Mu1ChX24TRaw[Co1At2Ch8] 
+974.071 -0.117531 0.0!Mu1ChX25TRaw[Co1At2Ch9] 
+977.168 -0.117923 0.0!Mu1ChX26TRaw[Co1At2Ch10] 
+975.805 -0.117737 0.0!Mu1ChX27TRaw[Co1At2Ch11] 
+979.545 -0.11821 0.0!Mu1ChX28TRaw[Co1At2Ch12] 
+983.428 -0.118677 0.0!Mu1ChX29TRaw[Co1At2Ch13] 
+980.499 -0.118324 0.0!Mu1ChX30TRaw[Co1At2Ch14] 
+979.469 -0.118198 0.0!Mu1ChX31TRaw[Co1At2Ch15] 
+988.102 -0.119148 0.0!Mu1ChX32TRaw[Co1At2Ch16] 
+880.379 -0.106165 0.0!Mu1ChX33TRaw[Co1At3Ch1] 
+880.08 -0.10618 0.0!Mu1ChX34TRaw[Co1At3Ch2] 
+895.406 -0.108064 0.0!Mu1ChX35TRaw[Co1At3Ch3] 
+878.12 -0.105941 0.0!Mu1ChX36TRaw[Co1At3Ch4] 
+895.881 -0.108105 0.0!Mu1ChX37TRaw[Co1At3Ch5] 
+901.785 -0.108823 0.0!Mu1ChX38TRaw[Co1At3Ch6] 
+894.137 -0.107861 0.0!Mu1ChX39TRaw[Co1At3Ch7] 
+898.782 -0.10842 0.0!Mu1ChX40TRaw[Co1At3Ch8] 
+901.632 -0.108779 0.0!Mu1ChX41TRaw[Co1At3Ch9] 
+904.878 -0.108754 0.0!Mu1ChX42TRaw[Co1At3Ch10] 
+910.193 -0.109783 0.0!Mu1ChX43TRaw[Co1At3Ch11] 
+902.054 -0.108855 0.0!Mu1ChX44TRaw[Co1At3Ch12] 
+911.528 -0.110019 0.0!Mu1ChX45TRaw[Co1At3Ch13] 
+909.985 -0.109854 0.0!Mu1ChX46TRaw[Co1At3Ch14] 
+907.601 -0.109528 0.0!Mu1ChX47TRaw[Co1At3Ch15] 
+922.228 -0.110055 0.0!Mu1ChX48TRaw[Co1At3Ch16] 
+869.923 -0.104838 0.0!Mu1ChX49TRaw[Co1At4Ch1] 
+875.125 -0.105455 0.0!Mu1ChX50TRaw[Co1At4Ch2] 
+887.868 -0.107015 0.0!Mu1ChX51TRaw[Co1At4Ch3] 
+890.27 -0.107338 0.0!Mu1ChX52TRaw[Co1At4Ch4] 
+893.359 -0.107685 0.0!Mu1ChX53TRaw[Co1At4Ch5] 
+893.348 -0.107699 0.0!Mu1ChX54TRaw[Co1At4Ch6] 
+900.729 -0.10819 0.0!Mu1ChX55TRaw[Co1At4Ch7] 
+906.65 -0.108878 0.0!Mu1ChX56TRaw[Co1At4Ch8] 
+909.8 -0.1097 0.0!Mu1ChX57TRaw[Co1At4Ch9] 
+905.423 -0.10916 0.0!Mu1ChX58TRaw[Co1At4Ch10] 
+914.17 -0.110244 0.0!Mu1ChX59TRaw[Co1At4Ch11] 
+906.586 -0.109308 0.0!Mu1ChX60TRaw[Co1At4Ch12] 
+919.705 -0.110894 0.0!Mu1ChX61TRaw[Co1At4Ch13] 
+911.009 -0.109867 0.0!Mu1ChX62TRaw[Co1At4Ch14] 
+910.69 -0.109791 0.0!Mu1ChX63TRaw[Co1At4Ch15] 
+919.963 -0.110777 0.0!Mu1ChX64TRaw[Co1At4Ch16] 
+952.039 -0.114723 0.0!Mu1ChX65TRaw[Co2At1Ch1] 
+953.727 -0.114949 0.0!Mu1ChX66TRaw[Co2At1Ch2] 
+967.402 -0.116629 0.0!Mu1ChX67TRaw[Co2At1Ch3] 
+963.242 -0.116557 0.0!Mu1ChX68TRaw[Co2At1Ch4] 
+969.139 -0.116827 0.0!Mu1ChX69TRaw[Co2At1Ch5] 
+973.545 -0.117811 0.0!Mu1ChX70TRaw[Co2At1Ch6] 
+973.3 -0.117758 0.0!Mu1ChX71TRaw[Co2At1Ch7] 
+978.421 -0.118392 0.0!Mu1ChX72TRaw[Co2At1Ch8] 
+975.853 -0.118063 0.0!Mu1ChX73TRaw[Co2At1Ch9] 
+990.602 -0.119853 0.0!Mu1ChX74TRaw[Co2At1Ch10] 
+986.683 -0.119377 0.0!Mu1ChX75TRaw[Co2At1Ch11] 
+984.808 -0.119141 0.0!Mu1ChX76TRaw[Co2At1Ch12] 
+991.649 -0.119982 0.0!Mu1ChX77TRaw[Co2At1Ch13] 
+997.413 -0.120199 0.0!Mu1ChX78TRaw[Co2At1Ch14] 
+993.522 -0.1202 0.0!Mu1ChX79TRaw[Co2At1Ch15] 
+1382.854 -0.120722 0.0!Mu1ChX80TRaw[Co2At1Ch16] 
+973.769 -0.117775 0.0!Mu1ChX81TRaw[Co2At2Ch1] 
+975.739 -0.118024 0.0!Mu1ChX82TRaw[Co2At2Ch2] 
+984.702 -0.118652 0.0!Mu1ChX83TRaw[Co2At2Ch3] 
+998.209 -0.120307 0.0!Mu1ChX84TRaw[Co2At2Ch4] 
+993.886 -0.120215 0.0!Mu1ChX85TRaw[Co2At2Ch5] 
+1003.201 -0.121389 0.0!Mu1ChX86TRaw[Co2At2Ch6] 
+1004.641 -0.121554 0.0!Mu1ChX87TRaw[Co2At2Ch7] 
+996.555 -0.12057 0.0!Mu1ChX88TRaw[Co2At2Ch8] 
+1011.012 -0.122345 0.0!Mu1ChX89TRaw[Co2At2Ch9] 
+1013.335 -0.12261 0.0!Mu1ChX90TRaw[Co2At2Ch10] 
+1008.829 -0.122082 0.0!Mu1ChX91TRaw[Co2At2Ch11] 
+1015.054 -0.12282 0.0!Mu1ChX92TRaw[Co2At2Ch12] 
+1014.579 -0.12279 0.0!Mu1ChX93TRaw[Co2At2Ch13] 
+1017.346 -0.123127 0.0!Mu1ChX94TRaw[Co2At2Ch14] 
+1021.088 -0.123096 0.0!Mu1ChX95TRaw[Co2At2Ch15] 
+1005.091 -0.12163 0.0!Mu1ChX96TRaw[Co2At2Ch16] 
+889.567 -0.107613 0.0!Mu1ChX97TRaw[Co2At3Ch1] 
+887.661 -0.107373 0.0!Mu1ChX98TRaw[Co2At3Ch2] 
+891.391 -0.107838 0.0!Mu1ChX99TRaw[Co2At3Ch3] 
+902.766 -0.109224 0.0!Mu1ChX100TRaw[Co2At3Ch4] 
+902.54 -0.1092 0.0!Mu1ChX101TRaw[Co2At3Ch5] 
+907.648 -0.109791 0.0!Mu1ChX102TRaw[Co2At3Ch6] 
+903.145 -0.109268 0.0!Mu1ChX103TRaw[Co2At3Ch7] 
+918.818 -0.111151 0.0!Mu1ChX104TRaw[Co2At3Ch8] 
+920.016 -0.11128 0.0!Mu1ChX105TRaw[Co2At3Ch9] 
+921.413 -0.111467 0.0!Mu1ChX106TRaw[Co2At3Ch10] 
+926.201 -0.112035 0.0!Mu1ChX107TRaw[Co2At3Ch11] 
+921.77 -0.111519 0.0!Mu1ChX108TRaw[Co2At3Ch12] 
+922.63 -0.111616 0.0!Mu1ChX109TRaw[Co2At3Ch13] 
+914.413 -0.110627 0.0!Mu1ChX110TRaw[Co2At3Ch14] 
+916.972 -0.110941 0.0!Mu1ChX111TRaw[Co2At3Ch15] 
+923.713 -0.11176 0.0!Mu1ChX112TRaw[Co2At3Ch16] 
+897.837 -0.108476 0.0!Mu1ChX113TRaw[Co2At4Ch1] 
+898.652 -0.108567 0.0!Mu1ChX114TRaw[Co2At4Ch2] 
+905.902 -0.10946 0.0!Mu1ChX115TRaw[Co2At4Ch3] 
+911.452 -0.110136 0.0!Mu1ChX116TRaw[Co2At4Ch4] 
+926.396 -0.111977 0.0!Mu1ChX117TRaw[Co2At4Ch5] 
+920.897 -0.111304 0.0!Mu1ChX118TRaw[Co2At4Ch6] 
+933.101 -0.112781 0.0!Mu1ChX119TRaw[Co2At4Ch7] 
+915.617 -0.110659 0.0!Mu1ChX120TRaw[Co2At4Ch8] 
+921.125 -0.111325 0.0!Mu1ChX121TRaw[Co2At4Ch9] 
+928.617 -0.112226 0.0!Mu1ChX122TRaw[Co2At4Ch10] 
+929.597 -0.11236 0.0!Mu1ChX123TRaw[Co2At4Ch11] 
+924.845 -0.111775 0.0!Mu1ChX124TRaw[Co2At4Ch12] 
+922.311 -0.111483 0.0!Mu1ChX125TRaw[Co2At4Ch13] 
+928.291 -0.112193 0.0!Mu1ChX126TRaw[Co2At4Ch14] 
+931.58 -0.112614 0.0!Mu1ChX127TRaw[Co2At4Ch15] 
+925.581 -0.111864 0.0!Mu1ChX128TRaw[Co2At4Ch16] 
+932.035 -0.11282 0.0!Mu1ChY1TRaw[Co3At1Ch1] 
+933.495 -0.113022 0.0!Mu1ChY2TRaw[Co3At1Ch2] 
+944.411 -0.114361 0.0!Mu1ChY3TRaw[Co3At1Ch3] 
+948.375 -0.114834 0.0!Mu1ChY4TRaw[Co3At1Ch4] 
+950.778 -0.115122 0.0!Mu1ChY5TRaw[Co3At1Ch5] 
+954.172 -0.115533 0.0!Mu1ChY6TRaw[Co3At1Ch6] 
+957.549 -0.115938 0.0!Mu1ChY7TRaw[Co3At1Ch7] 
+947.562 -0.114726 0.0!Mu1ChY8TRaw[Co3At1Ch8] 
+954.965 -0.11562 0.0!Mu1ChY9TRaw[Co3At1Ch9] 
+965.207 -0.116854 0.0!Mu1ChY10TRaw[Co3At1Ch10] 
+961.189 -0.116368 0.0!Mu1ChY11TRaw[Co3At1Ch11] 
+968.97 -0.117327 0.0!Mu1ChY12TRaw[Co3At1Ch12] 
+969.302 -0.117358 0.0!Mu1ChY13TRaw[Co3At1Ch13] 
+964.945 -0.116827 0.0!Mu1ChY14TRaw[Co3At1Ch14] 
+966.214 -0.116981 0.0!Mu1ChY15TRaw[Co3At1Ch15] 
+963.966 -0.116717 0.0!Mu1ChY16TRaw[Co3At1Ch16] 
+965.888 -0.116883 0.0!Mu1ChY17TRaw[Co3At2Ch1] 
+967.684 -0.117128 0.0!Mu1ChY18TRaw[Co3At2Ch2] 
+972.15 -0.117665 0.0!Mu1ChY19TRaw[Co3At2Ch3] 
+972.745 -0.117743 0.0!Mu1ChY20TRaw[Co3At2Ch4] 
+984.112 -0.119146 0.0!Mu1ChY21TRaw[Co3At2Ch5] 
+980.877 -0.118747 0.0!Mu1ChY22TRaw[Co3At2Ch6] 
+450.0 -0.119189 0.0!Mu1ChY23TRaw[Co3At2Ch7] 
+990.666 -0.119964 0.0!Mu1ChY24TRaw[Co3At2Ch8] 
+992.259 -0.120158 0.0!Mu1ChY25TRaw[Co3At2Ch9] 
+992.41 -0.120176 0.0!Mu1ChY26TRaw[Co3At2Ch10] 
+996.766 -0.120728 0.0!Mu1ChY27TRaw[Co3At2Ch11] 
+991.746 -0.120113 0.0!Mu1ChY28TRaw[Co3At2Ch12] 
+993.587 -0.120339 0.0!Mu1ChY29TRaw[Co3At2Ch13] 
+985.064 -0.119308 0.0!Mu1ChY30TRaw[Co3At2Ch14] 
+991.596 -0.120108 0.0!Mu1ChY31TRaw[Co3At2Ch15] 
+986.445 -0.119515 0.0!Mu1ChY32TRaw[Co3At2Ch16] 
+881.012 -0.106691 0.0!Mu1ChY33TRaw[Co3At3Ch1] 
+886.766 -0.10745 0.0!Mu1ChY34TRaw[Co3At3Ch2] 
+882.204 -0.106848 0.0!Mu1ChY35TRaw[Co3At3Ch3] 
+891.854 -0.108037 0.0!Mu1ChY36TRaw[Co3At3Ch4] 
+850619310270.0 -103827000.0 0.0!Mu1ChY37TRaw[Co3At3Ch5] 
+902.417 -0.109433 0.0!Mu1ChY38TRaw[Co3At3Ch6] 
+901.585 -0.110242 0.0!Mu1ChY39TRaw[Co3At3Ch7] 
+903.595 -0.10944 0.0!Mu1ChY40TRaw[Co3At3Ch8] 
+891.657 -0.107957 0.0!Mu1ChY41TRaw[Co3At3Ch9] 
+903.952 -0.109521 0.0!Mu1ChY42TRaw[Co3At3Ch10] 
+896.803 -0.108623 0.0!Mu1ChY43TRaw[Co3At3Ch11] 
+905.625 -0.10969 0.0!Mu1ChY44TRaw[Co3At3Ch12] 
+908.281 -0.109989 0.0!Mu1ChY45TRaw[Co3At3Ch13] 
+902.33 -0.109312 0.0!Mu1ChY46TRaw[Co3At3Ch14] 
+907.41 -0.109844 0.0!Mu1ChY47TRaw[Co3At3Ch15] 
+902.089 -0.109257 0.0!Mu1ChY48TRaw[Co3At3Ch16] 
+884.479 -0.10696 0.0!Mu1ChY49TRaw[Co3At4Ch1] 
+883.474 -0.106852 0.0!Mu1ChY50TRaw[Co3At4Ch2] 
+879.998 -0.106436 0.0!Mu1ChY51TRaw[Co3At4Ch3] 
+893.146 -0.108049 0.0!Mu1ChY52TRaw[Co3At4Ch4] 
+898.884 -0.108781 0.0!Mu1ChY53TRaw[Co3At4Ch5] 
+900.108 -0.108923 0.0!Mu1ChY54TRaw[Co3At4Ch6] 
+900.099 -0.108922 0.0!Mu1ChY55TRaw[Co3At4Ch7] 
+900.287 -0.108949 0.0!Mu1ChY56TRaw[Co3At4Ch8] 
+912.19 -0.110395 0.0!Mu1ChY57TRaw[Co3At4Ch9] 
+911.3 -0.110294 0.0!Mu1ChY58TRaw[Co3At4Ch10] 
+906.773 -0.109746 0.0!Mu1ChY59TRaw[Co3At4Ch11] 
+909.678 -0.109802 0.0!Mu1ChY60TRaw[Co3At4Ch12] 
+906.734 -0.109742 0.0!Mu1ChY61TRaw[Co3At4Ch13] 
+914.732 -0.11072 0.0!Mu1ChY62TRaw[Co3At4Ch14] 
+916.102 -0.110879 0.0!Mu1ChY63TRaw[Co3At4Ch15] 
+917.148 -0.111037 0.0!Mu1ChY64TRaw[Co3At4Ch16] 
+946.855 -0.115194 0.0!Mu1ChY65TRaw[Co4At1Ch1] 
+953.644 -0.116053 0.0!Mu1ChY66TRaw[Co4At1Ch2] 
+959.75 -0.116788 0.0!Mu1ChY67TRaw[Co4At1Ch3] 
+963.24 -0.117211 0.0!Mu1ChY68TRaw[Co4At1Ch4] 
+966.608 -0.117617 0.0!Mu1ChY69TRaw[Co4At1Ch5] 
+974.806 -0.118609 0.0!Mu1ChY70TRaw[Co4At1Ch6] 
+970.229 -0.118053 0.0!Mu1ChY71TRaw[Co4At1Ch7] 
+978.318 -0.119038 0.0!Mu1ChY72TRaw[Co4At1Ch8] 
+979.408 -0.119163 0.0!Mu1ChY73TRaw[Co4At1Ch9] 
+982.639 -0.119552 0.0!Mu1ChY74TRaw[Co4At1Ch10] 
+984.456 -0.119777 0.0!Mu1ChY75TRaw[Co4At1Ch11] 
+981.379 -0.119391 0.0!Mu1ChY76TRaw[Co4At1Ch12] 
+984.651 -0.11981 0.0!Mu1ChY77TRaw[Co4At1Ch13] 
+982.31 -0.119505 0.0!Mu1ChY78TRaw[Co4At1Ch14] 
+983.007 -0.119601 0.0!Mu1ChY79TRaw[Co4At1Ch15] 
+988.01 -0.120194 0.0!Mu1ChY80TRaw[Co4At1Ch16] 
+943.199 -0.114646 0.0!Mu1ChY81TRaw[Co4At2Ch1] 
+951.261 -0.115676 0.0!Mu1ChY82TRaw[Co4At2Ch2] 
+950.217 -0.115551 0.0!Mu1ChY83TRaw[Co4At2Ch3] 
+957.193 -0.116392 0.0!Mu1ChY84TRaw[Co4At2Ch4] 
+956.711 -0.116344 0.0!Mu1ChY85TRaw[Co4At2Ch5] 
+966.907 -0.117589 0.0!Mu1ChY86TRaw[Co4At2Ch6] 
+967.784 -0.117699 0.0!Mu1ChY87TRaw[Co4At2Ch7] 
+974.973 -0.118567 0.0!Mu1ChY88TRaw[Co4At2Ch8] 
+975.931 -0.118705 0.0!Mu1ChY89TRaw[Co4At2Ch9] 
+968.629 -0.117807 0.0!Mu1ChY90TRaw[Co4At2Ch10] 
+973.17 -0.118376 0.0!Mu1ChY91TRaw[Co4At2Ch11] 
+981.206 -0.119333 0.0!Mu1ChY92TRaw[Co4At2Ch12] 
+981.863 -0.119429 0.0!Mu1ChY93TRaw[Co4At2Ch13] 
+974.832 -0.118576 0.0!Mu1ChY94TRaw[Co4At2Ch14] 
+978.651 -0.119031 0.0!Mu1ChY95TRaw[Co4At2Ch15] 
+989.899 -0.120471 0.0!Mu1ChY96TRaw[Co4At2Ch16] 
+872.47 -0.106136 0.0!Mu1ChY97TRaw[Co4At3Ch1] 
+871.244 -0.106 0.0!Mu1ChY98TRaw[Co4At3Ch2] 
+875.764 -0.106555 0.0!Mu1ChY99TRaw[Co4At3Ch3] 
+889.841 -0.108263 0.0!Mu1ChY100TRaw[Co4At3Ch4] 
+887.593 -0.10801 0.0!Mu1ChY101TRaw[Co4At3Ch5] 
+879.757 -0.107044 0.0!Mu1ChY102TRaw[Co4At3Ch6] 
+887.54 -0.108005 0.0!Mu1ChY103TRaw[Co4At3Ch7] 
+890.884 -0.108406 0.0!Mu1ChY104TRaw[Co4At3Ch8] 
+901.255 -0.109653 0.0!Mu1ChY105TRaw[Co4At3Ch9] 
+897.946 -0.10926 0.0!Mu1ChY106TRaw[Co4At3Ch10] 
+901.33 -0.10967 0.0!Mu1ChY107TRaw[Co4At3Ch11] 
+891.982 -0.108536 0.0!Mu1ChY108TRaw[Co4At3Ch12] 
+899.178 -0.109417 0.0!Mu1ChY109TRaw[Co4At3Ch13] 
+906.416 -0.110268 0.0!Mu1ChY110TRaw[Co4At3Ch14] 
+903.498 -0.109108 0.0!Mu1ChY111TRaw[Co4At3Ch15] 
+902.622 -0.109824 0.0!Mu1ChY112TRaw[Co4At3Ch16] 
+858.806 -0.104291 0.0!Mu1ChY113TRaw[Co4At4Ch1] 
+855.722 -0.103549 0.0!Mu1ChY114TRaw[Co4At4Ch2] 
+862.565 -0.104798 0.0!Mu1ChY115TRaw[Co4At4Ch3] 
+857.566 -0.10419 0.0!Mu1ChY116TRaw[Co4At4Ch4] 
+866.024 -0.105221 0.0!Mu1ChY117TRaw[Co4At4Ch5] 
+875.42 -0.106354 0.0!Mu1ChY118TRaw[Co4At4Ch6] 
+879.769 -0.1069 0.0!Mu1ChY119TRaw[Co4At4Ch7] 
+874.481 -0.106252 0.0!Mu1ChY120TRaw[Co4At4Ch8] 
+891.89 -0.108379 0.0!Mu1ChY121TRaw[Co4At4Ch9] 
+892.881 -0.108492 0.0!Mu1ChY122TRaw[Co4At4Ch10] 
+890.673 -0.108225 0.0!Mu1ChY123TRaw[Co4At4Ch11] 
+889.841 -0.108132 0.0!Mu1ChY124TRaw[Co4At4Ch12] 
+892.159 -0.108412 0.0!Mu1ChY125TRaw[Co4At4Ch13] 
+887.553 -0.10784 0.0!Mu1ChY126TRaw[Co4At4Ch14] 
+884.907 -0.107526 0.0!Mu1ChY127TRaw[Co4At4Ch15] 
+949.092 -0.121191 0.0!Mu1ChY128TRaw[Co4At4Ch16] 
+961.969 -0.113282 0.0!Mu2ChX1TRaw[Co1At1Ch1] 
+958.383 -0.112935 0.0!Mu2ChX2TRaw[Co1At1Ch2] 
+959.323 -0.113903 0.0!Mu2ChX3TRaw[Co1At1Ch3] 
+971.546 -0.11541 0.0!Mu2ChX4TRaw[Co1At1Ch4] 
+974.655 -0.114834 0.0!Mu2ChX5TRaw[Co1At1Ch5] 
+1003.683 -0.116968 0.0!Mu2ChX6TRaw[Co1At1Ch6] 
+989.279 -0.116144 0.0!Mu2ChX7TRaw[Co1At1Ch7] 
+1005.564 -0.116738 0.0!Mu2ChX8TRaw[Co1At1Ch8] 
+997.02 -0.115736 0.0!Mu2ChX9TRaw[Co1At1Ch9] 
+1009.567 -0.117191 0.0!Mu2ChX10TRaw[Co1At1Ch10] 
+1016.097 -0.117505 0.0!Mu2ChX11TRaw[Co1At1Ch11] 
+1010.396 -0.116868 0.0!Mu2ChX12TRaw[Co1At1Ch12] 
+1023.961 -0.117596 0.0!Mu2ChX13TRaw[Co1At1Ch13] 
+1021.425 -0.116864 0.0!Mu2ChX14TRaw[Co1At1Ch14] 
+1022.087 -0.116934 0.0!Mu2ChX15TRaw[Co1At1Ch15] 
+1404.789 -0.118078 0.0!Mu2ChX16TRaw[Co1At1Ch16] 
+967.642 -0.111042 0.0!Mu2ChX17TRaw[Co1At2Ch1] 
+983.495 -0.1129 0.0!Mu2ChX18TRaw[Co1At2Ch2] 
+979.424 -0.113239 0.0!Mu2ChX19TRaw[Co1At2Ch3] 
+977.956 -0.11311 0.0!Mu2ChX20TRaw[Co1At2Ch4] 
+985.742 -0.114433 0.0!Mu2ChX21TRaw[Co1At2Ch5] 
+984.648 -0.113893 0.0!Mu2ChX22TRaw[Co1At2Ch6] 
+982.48 -0.113604 0.0!Mu2ChX23TRaw[Co1At2Ch7] 
+987.397 -0.114596 0.0!Mu2ChX24TRaw[Co1At2Ch8] 
+970.925 -0.113523 0.0!Mu2ChX25TRaw[Co1At2Ch9] 
+975.832 -0.114529 0.0!Mu2ChX26TRaw[Co1At2Ch10] 
+976.316 -0.114587 0.0!Mu2ChX27TRaw[Co1At2Ch11] 
+968.817 -0.114127 0.0!Mu2ChX28TRaw[Co1At2Ch12] 
+972.791 -0.115049 0.0!Mu2ChX29TRaw[Co1At2Ch13] 
+976.306 -0.114577 0.0!Mu2ChX30TRaw[Co1At2Ch14] 
+967.35 -0.114801 0.0!Mu2ChX31TRaw[Co1At2Ch15] 
+1112.794 -0.114725 0.0!Mu2ChX32TRaw[Co1At2Ch16] 
+886.943 -0.106884 0.0!Mu2ChX33TRaw[Co1At3Ch1] 
+884.583 -0.106588 0.0!Mu2ChX34TRaw[Co1At3Ch2] 
+893.29 -0.10771 0.0!Mu2ChX35TRaw[Co1At3Ch3] 
+890.797 -0.10739 0.0!Mu2ChX36TRaw[Co1At3Ch4] 
+904.52 -0.109058 0.0!Mu2ChX37TRaw[Co1At3Ch5] 
+901.6 -0.108685 0.0!Mu2ChX38TRaw[Co1At3Ch6] 
+912.776 -0.109605 0.0!Mu2ChX39TRaw[Co1At3Ch7] 
+909.538 -0.109211 0.0!Mu2ChX40TRaw[Co1At3Ch8] 
+905.616 -0.109168 0.0!Mu2ChX41TRaw[Co1At3Ch9] 
+909.953 -0.109617 0.0!Mu2ChX42TRaw[Co1At3Ch10] 
+915.691 -0.1104 0.0!Mu2ChX43TRaw[Co1At3Ch11] 
+914.614 -0.110254 0.0!Mu2ChX44TRaw[Co1At3Ch12] 
+922.657 -0.111219 0.0!Mu2ChX45TRaw[Co1At3Ch13] 
+921.084 -0.111043 0.0!Mu2ChX46TRaw[Co1At3Ch14] 
+924.127 -0.111378 0.0!Mu2ChX47TRaw[Co1At3Ch15] 
+1314.501 -0.11089 0.0!Mu2ChX48TRaw[Co1At3Ch16] 
+855.885 -0.102956 0.0!Mu2ChX49TRaw[Co1At4Ch1] 
+865.811 -0.104191 0.0!Mu2ChX50TRaw[Co1At4Ch2] 
+875.413 -0.105362 0.0!Mu2ChX51TRaw[Co1At4Ch3] 
+869.6 -0.10464 0.0!Mu2ChX52TRaw[Co1At4Ch4] 
+878.692 -0.105723 0.0!Mu2ChX53TRaw[Co1At4Ch5] 
+878.801 -0.105755 0.0!Mu2ChX54TRaw[Co1At4Ch6] 
+880.829 -0.105984 0.0!Mu2ChX55TRaw[Co1At4Ch7] 
+888.51 -0.106931 0.0!Mu2ChX56TRaw[Co1At4Ch8] 
+897.44 -0.108024 0.0!Mu2ChX57TRaw[Co1At4Ch9] 
+903.488 -0.108307 0.0!Mu2ChX58TRaw[Co1At4Ch10] 
+891.54 -0.107279 0.0!Mu2ChX59TRaw[Co1At4Ch11] 
+901.749 -0.108543 0.0!Mu2ChX60TRaw[Co1At4Ch12] 
+903.111 -0.108721 0.0!Mu2ChX61TRaw[Co1At4Ch13] 
+902.871 -0.108665 0.0!Mu2ChX62TRaw[Co1At4Ch14] 
+899.187 -0.10824 0.0!Mu2ChX63TRaw[Co1At4Ch15] 
+1290.423 -0.107885 0.0!Mu2ChX64TRaw[Co1At4Ch16] 
+974.417 -0.117533 0.0!Mu2ChX65TRaw[Co2At1Ch1] 
+974.467 -0.117545 0.0!Mu2ChX66TRaw[Co2At1Ch2] 
+982.266 -0.118957 0.0!Mu2ChX67TRaw[Co2At1Ch3] 
+987.279 -0.119584 0.0!Mu2ChX68TRaw[Co2At1Ch4] 
+450.0 -0.119902 0.0!Mu2ChX69TRaw[Co2At1Ch5] 
+994.768 -0.12002 0.0!Mu2ChX70TRaw[Co2At1Ch6] 
+996.07 -0.120171 0.0!Mu2ChX71TRaw[Co2At1Ch7] 
+1001.148 -0.120802 0.0!Mu2ChX72TRaw[Co2At1Ch8] 
+990.627 -0.119977 0.0!Mu2ChX73TRaw[Co2At1Ch9] 
+1007.159 -0.12102 0.0!Mu2ChX74TRaw[Co2At1Ch10] 
+995.316 -0.12055 0.0!Mu2ChX75TRaw[Co2At1Ch11] 
+995.021 -0.12048 0.0!Mu2ChX76TRaw[Co2At1Ch12] 
+1004.692 -0.121688 0.0!Mu2ChX77TRaw[Co2At1Ch13] 
+1008.471 -0.122136 0.0!Mu2ChX78TRaw[Co2At1Ch14] 
+1011.105 -0.122472 0.0!Mu2ChX79TRaw[Co2At1Ch15] 
+1326.05 -0.121488 0.0!Mu2ChX80TRaw[Co2At1Ch16] 
+951.951 -0.115148 0.0!Mu2ChX81TRaw[Co2At2Ch1] 
+962.967 -0.116512 0.0!Mu2ChX82TRaw[Co2At2Ch2] 
+964.814 -0.116735 0.0!Mu2ChX83TRaw[Co2At2Ch3] 
+968.296 -0.117158 0.0!Mu2ChX84TRaw[Co2At2Ch4] 
+968.369 -0.117159 0.0!Mu2ChX85TRaw[Co2At2Ch5] 
+969.781 -0.117336 0.0!Mu2ChX86TRaw[Co2At2Ch6] 
+990.877 -0.118997 0.0!Mu2ChX87TRaw[Co2At2Ch7] 
+986.288 -0.118879 0.0!Mu2ChX88TRaw[Co2At2Ch8] 
+992.984 -0.120152 0.0!Mu2ChX89TRaw[Co2At2Ch9] 
+996.567 -0.120143 0.0!Mu2ChX90TRaw[Co2At2Ch10] 
+995.578 -0.120011 0.0!Mu2ChX91TRaw[Co2At2Ch11] 
+989.666 -0.118788 0.0!Mu2ChX92TRaw[Co2At2Ch12] 
+1002.901 -0.120614 0.0!Mu2ChX93TRaw[Co2At2Ch13] 
+1000.682 -0.12112 0.0!Mu2ChX94TRaw[Co2At2Ch14] 
+1005.506 -0.12123 0.0!Mu2ChX95TRaw[Co2At2Ch15] 
+994.062 -0.119394 0.0!Mu2ChX96TRaw[Co2At2Ch16] 
+903.468 -0.10895 0.0!Mu2ChX97TRaw[Co2At3Ch1] 
+920.18 -0.11099 0.0!Mu2ChX98TRaw[Co2At3Ch2] 
+919.46 -0.110483 0.0!Mu2ChX99TRaw[Co2At3Ch3] 
+916.305 -0.110494 0.0!Mu2ChX100TRaw[Co2At3Ch4] 
+925.516 -0.11163 0.0!Mu2ChX101TRaw[Co2At3Ch5] 
+924.994 -0.111573 0.0!Mu2ChX102TRaw[Co2At3Ch6] 
+926.844 -0.111368 0.0!Mu2ChX103TRaw[Co2At3Ch7] 
+927.713 -0.111888 0.0!Mu2ChX104TRaw[Co2At3Ch8] 
+934.246 -0.113122 0.0!Mu2ChX105TRaw[Co2At3Ch9] 
+942.1 -0.112764 0.0!Mu2ChX106TRaw[Co2At3Ch10] 
+939.807 -0.113373 0.0!Mu2ChX107TRaw[Co2At3Ch11] 
+938.544 -0.112797 0.0!Mu2ChX108TRaw[Co2At3Ch12] 
+938.298 -0.113176 0.0!Mu2ChX109TRaw[Co2At3Ch13] 
+941.18 -0.113973 0.0!Mu2ChX110TRaw[Co2At3Ch14] 
+941.929 -0.114066 0.0!Mu2ChX111TRaw[Co2At3Ch15] 
+948.461 -0.113973 0.0!Mu2ChX112TRaw[Co2At3Ch16] 
+911.72 -0.108961 0.0!Mu2ChX113TRaw[Co2At4Ch1] 
+916.448 -0.109531 0.0!Mu2ChX114TRaw[Co2At4Ch2] 
+913.525 -0.110461 0.0!Mu2ChX115TRaw[Co2At4Ch3] 
+916.767 -0.110414 0.0!Mu2ChX116TRaw[Co2At4Ch4] 
+932.449 -0.112323 0.0!Mu2ChX117TRaw[Co2At4Ch5] 
+935.405 -0.11267 0.0!Mu2ChX118TRaw[Co2At4Ch6] 
+951.71 -0.113333 0.0!Mu2ChX119TRaw[Co2At4Ch7] 
+947.484 -0.113698 0.0!Mu2ChX120TRaw[Co2At4Ch8] 
+940.04 -0.113666 0.0!Mu2ChX121TRaw[Co2At4Ch9] 
+955.99 -0.114745 0.0!Mu2ChX122TRaw[Co2At4Ch10] 
+950.863 -0.113673 0.0!Mu2ChX123TRaw[Co2At4Ch11] 
+957.151 -0.11443 0.0!Mu2ChX124TRaw[Co2At4Ch12] 
+939.375 -0.113174 0.0!Mu2ChX125TRaw[Co2At4Ch13] 
+935.68 -0.113143 0.0!Mu2ChX126TRaw[Co2At4Ch14] 
+947.829 -0.114176 0.0!Mu2ChX127TRaw[Co2At4Ch15] 
+954.772 -0.114186 0.0!Mu2ChX128TRaw[Co2At4Ch16] 
+986.809 -0.119525 0.0!Mu2ChY1TRaw[Co3At1Ch1] 
+989.707 -0.119903 0.0!Mu2ChY2TRaw[Co3At1Ch2] 
+988.424 -0.119776 0.0!Mu2ChY3TRaw[Co3At1Ch3] 
+994.772 -0.120524 0.0!Mu2ChY4TRaw[Co3At1Ch4] 
+1000.112 -0.121165 0.0!Mu2ChY5TRaw[Co3At1Ch5] 
+998.216 -0.120947 0.0!Mu2ChY6TRaw[Co3At1Ch6] 
+1003.137 -0.121526 0.0!Mu2ChY7TRaw[Co3At1Ch7] 
+1010.151 -0.122366 0.0!Mu2ChY8TRaw[Co3At1Ch8] 
+1011.59 -0.122539 0.0!Mu2ChY9TRaw[Co3At1Ch9] 
+1003.181 -0.121307 0.0!Mu2ChY10TRaw[Co3At1Ch10] 
+1009.494 -0.122275 0.0!Mu2ChY11TRaw[Co3At1Ch11] 
+1014.568 -0.122898 0.0!Mu2ChY12TRaw[Co3At1Ch12] 
+1016.416 -0.12312 0.0!Mu2ChY13TRaw[Co3At1Ch13] 
+1021.48 -0.123746 0.0!Mu2ChY14TRaw[Co3At1Ch14] 
+1020.595 -0.123621 0.0!Mu2ChY15TRaw[Co3At1Ch15] 
+1025.592 -0.123744 0.0!Mu2ChY16TRaw[Co3At1Ch16] 
+939.197 -0.113632 0.0!Mu2ChY17TRaw[Co3At2Ch1] 
+938.486 -0.11359 0.0!Mu2ChY18TRaw[Co3At2Ch2] 
+938.117 -0.113546 0.0!Mu2ChY19TRaw[Co3At2Ch3] 
+937.753 -0.113526 0.0!Mu2ChY20TRaw[Co3At2Ch4] 
+952.829 -0.115367 0.0!Mu2ChY21TRaw[Co3At2Ch5] 
+968.723 -0.117305 0.0!Mu2ChY22TRaw[Co3At2Ch6] 
+964.707 -0.11682 0.0!Mu2ChY23TRaw[Co3At2Ch7] 
+959.632 -0.116216 0.0!Mu2ChY24TRaw[Co3At2Ch8] 
+975.259 -0.118134 0.0!Mu2ChY25TRaw[Co3At2Ch9] 
+977.951 -0.118446 0.0!Mu2ChY26TRaw[Co3At2Ch10] 
+975.198 -0.117858 0.0!Mu2ChY27TRaw[Co3At2Ch11] 
+981.828 -0.11895 0.0!Mu2ChY28TRaw[Co3At2Ch12] 
+976.046 -0.118238 0.0!Mu2ChY29TRaw[Co3At2Ch13] 
+977.812 -0.118468 0.0!Mu2ChY30TRaw[Co3At2Ch14] 
+976.59 -0.118337 0.0!Mu2ChY31TRaw[Co3At2Ch15] 
+964.767 -0.116905 0.0!Mu2ChY32TRaw[Co3At2Ch16] 
+869.429 -0.105393 0.0!Mu2ChY33TRaw[Co3At3Ch1] 
+876.222 -0.106206 0.0!Mu2ChY34TRaw[Co3At3Ch2] 
+892.019 -0.107711 0.0!Mu2ChY35TRaw[Co3At3Ch3] 
+893.32 -0.10786 0.0!Mu2ChY36TRaw[Co3At3Ch4] 
+893.254 -0.108297 0.0!Mu2ChY37TRaw[Co3At3Ch5] 
+887.737 -0.107628 0.0!Mu2ChY38TRaw[Co3At3Ch6] 
+903.996 -0.109574 0.0!Mu2ChY39TRaw[Co3At3Ch7] 
+902.76 -0.109401 0.0!Mu2ChY40TRaw[Co3At3Ch8] 
+905.554 -0.109756 0.0!Mu2ChY41TRaw[Co3At3Ch9] 
+910.354 -0.110304 0.0!Mu2ChY42TRaw[Co3At3Ch10] 
+906.017 -0.10979 0.0!Mu2ChY43TRaw[Co3At3Ch11] 
+909.731 -0.110231 0.0!Mu2ChY44TRaw[Co3At3Ch12] 
+912.223 -0.110532 0.0!Mu2ChY45TRaw[Co3At3Ch13] 
+915.291 -0.110907 0.0!Mu2ChY46TRaw[Co3At3Ch14] 
+919.13 -0.111371 0.0!Mu2ChY47TRaw[Co3At3Ch15] 
+914.361 -0.110791 0.0!Mu2ChY48TRaw[Co3At3Ch16] 
+892.707 -0.108016 0.0!Mu2ChY49TRaw[Co3At4Ch1] 
+901.908 -0.109155 0.0!Mu2ChY50TRaw[Co3At4Ch2] 
+899.294 -0.108834 0.0!Mu2ChY51TRaw[Co3At4Ch3] 
+912.773 -0.110471 0.0!Mu2ChY52TRaw[Co3At4Ch4] 
+905.427 -0.109622 0.0!Mu2ChY53TRaw[Co3At4Ch5] 
+914.293 -0.110708 0.0!Mu2ChY54TRaw[Co3At4Ch6] 
+917.644 -0.111116 0.0!Mu2ChY55TRaw[Co3At4Ch7] 
+913.315 -0.11061 0.0!Mu2ChY56TRaw[Co3At4Ch8] 
+926.108 -0.11216 0.0!Mu2ChY57TRaw[Co3At4Ch9] 
+917.422 -0.111079 0.0!Mu2ChY58TRaw[Co3At4Ch10] 
+919.823 -0.111393 0.0!Mu2ChY59TRaw[Co3At4Ch11] 
+923.686 -0.11168 0.0!Mu2ChY60TRaw[Co3At4Ch12] 
+939.831 -0.11386 0.0!Mu2ChY61TRaw[Co3At4Ch13] 
+928.854 -0.112068 0.0!Mu2ChY62TRaw[Co3At4Ch14] 
+921.381 -0.111623 0.0!Mu2ChY63TRaw[Co3At4Ch15] 
+929.377 -0.112593 0.0!Mu2ChY64TRaw[Co3At4Ch16] 
+925.209 -0.111864 0.0!Mu2ChY65TRaw[Co4At1Ch1] 
+944.461 -0.114242 0.0!Mu2ChY66TRaw[Co4At1Ch2] 
+948.829 -0.114763 0.0!Mu2ChY67TRaw[Co4At1Ch3] 
+946.46 -0.114477 0.0!Mu2ChY68TRaw[Co4At1Ch4] 
+972.881 -0.117701 0.0!Mu2ChY69TRaw[Co4At1Ch5] 
+960.964 -0.116242 0.0!Mu2ChY70TRaw[Co4At1Ch6] 
+968.396 -0.117144 0.0!Mu2ChY71TRaw[Co4At1Ch7] 
+965.324 -0.116783 0.0!Mu2ChY72TRaw[Co4At1Ch8] 
+956.836 -0.115747 0.0!Mu2ChY73TRaw[Co4At1Ch9] 
+958.888 -0.115989 0.0!Mu2ChY74TRaw[Co4At1Ch10] 
+965.259 -0.116762 0.0!Mu2ChY75TRaw[Co4At1Ch11] 
+978.071 -0.118324 0.0!Mu2ChY76TRaw[Co4At1Ch12] 
+974.474 -0.117892 0.0!Mu2ChY77TRaw[Co4At1Ch13] 
+977.064 -0.118194 0.0!Mu2ChY78TRaw[Co4At1Ch14] 
+967.826 -0.117092 0.0!Mu2ChY79TRaw[Co4At1Ch15] 
+969.895 -0.117343 0.0!Mu2ChY80TRaw[Co4At1Ch16] 
+945.396 -0.114246 0.0!Mu2ChY81TRaw[Co4At2Ch1] 
+939.845 -0.113582 0.0!Mu2ChY82TRaw[Co4At2Ch2] 
+951.951 -0.115097 0.0!Mu2ChY83TRaw[Co4At2Ch3] 
+947.601 -0.114574 0.0!Mu2ChY84TRaw[Co4At2Ch4] 
+956.462 -0.115653 0.0!Mu2ChY85TRaw[Co4At2Ch5] 
+966.795 -0.11692 0.0!Mu2ChY86TRaw[Co4At2Ch6] 
+965.068 -0.116695 0.0!Mu2ChY87TRaw[Co4At2Ch7] 
+970.746 -0.117388 0.0!Mu2ChY88TRaw[Co4At2Ch8] 
+973.531 -0.117739 0.0!Mu2ChY89TRaw[Co4At2Ch9] 
+975.469 -0.11797 0.0!Mu2ChY90TRaw[Co4At2Ch10] 
+979.918 -0.118525 0.0!Mu2ChY91TRaw[Co4At2Ch11] 
+970.565 -0.117371 0.0!Mu2ChY92TRaw[Co4At2Ch12] 
+978.32 -0.118331 0.0!Mu2ChY93TRaw[Co4At2Ch13] 
+977.975 -0.118283 0.0!Mu2ChY94TRaw[Co4At2Ch14] 
+985.51 -0.119174 0.0!Mu2ChY95TRaw[Co4At2Ch15] 
+990.075 -0.119806 0.0!Mu2ChY96TRaw[Co4At2Ch16] 
+898.373 -0.108639 0.0!Mu2ChY97TRaw[Co4At3Ch1] 
+894.37 -0.108189 0.0!Mu2ChY98TRaw[Co4At3Ch2] 
+904.896 -0.109474 0.0!Mu2ChY99TRaw[Co4At3Ch3] 
+903.57 -0.109308 0.0!Mu2ChY100TRaw[Co4At3Ch4] 
+917.463 -0.110997 0.0!Mu2ChY101TRaw[Co4At3Ch5] 
+925.187 -0.111938 0.0!Mu2ChY102TRaw[Co4At3Ch6] 
+915.403 -0.110746 0.0!Mu2ChY103TRaw[Co4At3Ch7] 
+931.348 -0.112691 0.0!Mu2ChY104TRaw[Co4At3Ch8] 
+925.85 -0.112025 0.0!Mu2ChY105TRaw[Co4At3Ch9] 
+921.698 -0.111507 0.0!Mu2ChY106TRaw[Co4At3Ch10] 
+922.879 -0.111663 0.0!Mu2ChY107TRaw[Co4At3Ch11] 
+922.629 -0.111623 0.0!Mu2ChY108TRaw[Co4At3Ch12] 
+926.153 -0.112066 0.0!Mu2ChY109TRaw[Co4At3Ch13] 
+926.883 -0.11214 0.0!Mu2ChY110TRaw[Co4At3Ch14] 
+923.148 -0.111703 0.0!Mu2ChY111TRaw[Co4At3Ch15] 
+913.683 -0.110525 0.0!Mu2ChY112TRaw[Co4At3Ch16] 
+853.746 -0.102981 0.0!Mu2ChY113TRaw[Co4At4Ch1] 
+869.715 -0.104976 0.0!Mu2ChY114TRaw[Co4At4Ch2] 
+877.625 -0.105936 0.0!Mu2ChY115TRaw[Co4At4Ch3] 
+876.055 -0.10575 0.0!Mu2ChY116TRaw[Co4At4Ch4] 
+884.136 -0.106741 0.0!Mu2ChY117TRaw[Co4At4Ch5] 
+880.455 -0.10628 0.0!Mu2ChY118TRaw[Co4At4Ch6] 
+892.866 -0.107805 0.0!Mu2ChY119TRaw[Co4At4Ch7] 
+894.388 -0.107966 0.0!Mu2ChY120TRaw[Co4At4Ch8] 
+884.377 -0.106759 0.0!Mu2ChY121TRaw[Co4At4Ch9] 
+897.709 -0.108381 0.0!Mu2ChY122TRaw[Co4At4Ch10] 
+896.178 -0.108195 0.0!Mu2ChY123TRaw[Co4At4Ch11] 
+1336.153 -0.108195 0.0!Mu2ChY124TRaw[Co4At4Ch12] 
+898.806 -0.108519 0.0!Mu2ChY125TRaw[Co4At4Ch13] 
+899.754 -0.10863 0.0!Mu2ChY126TRaw[Co4At4Ch14] 
+900.898 -0.108768 0.0!Mu2ChY127TRaw[Co4At4Ch15] 
+897.019 -0.108297 0.0!Mu2ChY128TRaw[Co4At4Ch16] 
+937.706 -0.113591 0.0!Mu3ChX1TRaw[Co1At1Ch1] 
+951.022 -0.115254 0.0!Mu3ChX2TRaw[Co1At1Ch2] 
+955.557 -0.115822 0.0!Mu3ChX3TRaw[Co1At1Ch3] 
+957.459 -0.116042 0.0!Mu3ChX4TRaw[Co1At1Ch4] 
+949.588 -0.115096 0.0!Mu3ChX5TRaw[Co1At1Ch5] 
+964.137 -0.11686 0.0!Mu3ChX6TRaw[Co1At1Ch6] 
+968.553 -0.117385 0.0!Mu3ChX7TRaw[Co1At1Ch7] 
+973.749 -0.118019 0.0!Mu3ChX8TRaw[Co1At1Ch8] 
+971.88 -0.117779 0.0!Mu3ChX9TRaw[Co1At1Ch9] 
+969.707 -0.117496 0.0!Mu3ChX10TRaw[Co1At1Ch10] 
+972.087 -0.117795 0.0!Mu3ChX11TRaw[Co1At1Ch11] 
+984.307 -0.119273 0.0!Mu3ChX12TRaw[Co1At1Ch12] 
+974.064 -0.118031 0.0!Mu3ChX13TRaw[Co1At1Ch13] 
+984.118 -0.118805 0.0!Mu3ChX14TRaw[Co1At1Ch14] 
+981.761 -0.118524 0.0!Mu3ChX15TRaw[Co1At1Ch15] 
+1355.602 -0.119127 0.0!Mu3ChX16TRaw[Co1At1Ch16] 
+966.58 -0.117029 0.0!Mu3ChX17TRaw[Co1At2Ch1] 
+962.788 -0.116582 0.0!Mu3ChX18TRaw[Co1At2Ch2] 
+981.303 -0.11886 0.0!Mu3ChX19TRaw[Co1At2Ch3] 
+977.619 -0.118386 0.0!Mu3ChX20TRaw[Co1At2Ch4] 
+984.275 -0.119229 0.0!Mu3ChX21TRaw[Co1At2Ch5] 
+991.6 -0.120114 0.0!Mu3ChX22TRaw[Co1At2Ch6] 
+984.029 -0.119177 0.0!Mu3ChX23TRaw[Co1At2Ch7] 
+988.571 -0.119693 0.0!Mu3ChX24TRaw[Co1At2Ch8] 
+986.236 -0.119405 0.0!Mu3ChX25TRaw[Co1At2Ch9] 
+987.105 -0.119523 0.0!Mu3ChX26TRaw[Co1At2Ch10] 
+1000.177 -0.12115 0.0!Mu3ChX27TRaw[Co1At2Ch11] 
+996.481 -0.120628 0.0!Mu3ChX28TRaw[Co1At2Ch12] 
+1006.483 -0.121885 0.0!Mu3ChX29TRaw[Co1At2Ch13] 
+999.637 -0.121035 0.0!Mu3ChX30TRaw[Co1At2Ch14] 
+1001.415 -0.121233 0.0!Mu3ChX31TRaw[Co1At2Ch15] 
+996.052 -0.120654 0.0!Mu3ChX32TRaw[Co1At2Ch16] 
+897.362 -0.108693 0.0!Mu3ChX33TRaw[Co1At3Ch1] 
+903.544 -0.109485 0.0!Mu3ChX34TRaw[Co1At3Ch2] 
+911.3 -0.110421 0.0!Mu3ChX35TRaw[Co1At3Ch3] 
+904.196 -0.109588 0.0!Mu3ChX36TRaw[Co1At3Ch4] 
+910.234 -0.110301 0.0!Mu3ChX37TRaw[Co1At3Ch5] 
+918.604 -0.111327 0.0!Mu3ChX38TRaw[Co1At3Ch6] 
+920.229 -0.111495 0.0!Mu3ChX39TRaw[Co1At3Ch7] 
+928.519 -0.112521 0.0!Mu3ChX40TRaw[Co1At3Ch8] 
+939.957 -0.11347 0.0!Mu3ChX41TRaw[Co1At3Ch9] 
+930.046 -0.112717 0.0!Mu3ChX42TRaw[Co1At3Ch10] 
+927.244 -0.112335 0.0!Mu3ChX43TRaw[Co1At3Ch11] 
+450.0 -0.112964 0.0!Mu3ChX44TRaw[Co1At3Ch12] 
+934.478 -0.113245 0.0!Mu3ChX45TRaw[Co1At3Ch13] 
+928.905 -0.11258 0.0!Mu3ChX46TRaw[Co1At3Ch14] 
+936.312 -0.113476 0.0!Mu3ChX47TRaw[Co1At3Ch15] 
+939.273 -0.113256 0.0!Mu3ChX48TRaw[Co1At3Ch16] 
+865.36 -0.104661 0.0!Mu3ChX49TRaw[Co1At4Ch1] 
+865.371 -0.104634 0.0!Mu3ChX50TRaw[Co1At4Ch2] 
+877.555 -0.106155 0.0!Mu3ChX51TRaw[Co1At4Ch3] 
+887.444 -0.107364 0.0!Mu3ChX52TRaw[Co1At4Ch4] 
+887.74 -0.107368 0.0!Mu3ChX53TRaw[Co1At4Ch5] 
+883.821 -0.106861 0.0!Mu3ChX54TRaw[Co1At4Ch6] 
+896.087 -0.108382 0.0!Mu3ChX55TRaw[Co1At4Ch7] 
+902.558 -0.108733 0.0!Mu3ChX56TRaw[Co1At4Ch8] 
+896.518 -0.10844 0.0!Mu3ChX57TRaw[Co1At4Ch9] 
+902.089 -0.10908 0.0!Mu3ChX58TRaw[Co1At4Ch10] 
+897.546 -0.108538 0.0!Mu3ChX59TRaw[Co1At4Ch11] 
+897.158 -0.10849 0.0!Mu3ChX60TRaw[Co1At4Ch12] 
+903.89 -0.109312 0.0!Mu3ChX61TRaw[Co1At4Ch13] 
+904.833 -0.109445 0.0!Mu3ChX62TRaw[Co1At4Ch14] 
+891.475 -0.107803 0.0!Mu3ChX63TRaw[Co1At4Ch15] 
+913.702 -0.108862 0.0!Mu3ChX64TRaw[Co1At4Ch16] 
+983.39 -0.119126 0.0!Mu3ChX65TRaw[Co2At1Ch1] 
+988.575 -0.119789 0.0!Mu3ChX66TRaw[Co2At1Ch2] 
+988.908 -0.119851 0.0!Mu3ChX67TRaw[Co2At1Ch3] 
+1004.692 -0.121753 0.0!Mu3ChX68TRaw[Co2At1Ch4] 
+1005.147 -0.121824 0.0!Mu3ChX69TRaw[Co2At1Ch5] 
+1002.098 -0.121446 0.0!Mu3ChX70TRaw[Co2At1Ch6] 
+1005.767 -0.121893 0.0!Mu3ChX71TRaw[Co2At1Ch7] 
+1009.556 -0.122347 0.0!Mu3ChX72TRaw[Co2At1Ch8] 
+1005.62 -0.121883 0.0!Mu3ChX73TRaw[Co2At1Ch9] 
+1012.529 -0.122684 0.0!Mu3ChX74TRaw[Co2At1Ch10] 
+1020.904 -0.123722 0.0!Mu3ChX75TRaw[Co2At1Ch11] 
+1030.908 -0.124938 0.0!Mu3ChX76TRaw[Co2At1Ch12] 
+1012.471 -0.122709 0.0!Mu3ChX77TRaw[Co2At1Ch13] 
+1012.229 -0.12265 0.0!Mu3ChX78TRaw[Co2At1Ch14] 
+1023.673 -0.124061 0.0!Mu3ChX79TRaw[Co2At1Ch15] 
+1391.931 -0.123313 0.0!Mu3ChX80TRaw[Co2At1Ch16] 
+940.841 -0.11381 0.0!Mu3ChX81TRaw[Co2At2Ch1] 
+946.588 -0.114558 0.0!Mu3ChX82TRaw[Co2At2Ch2] 
+950.194 -0.114986 0.0!Mu3ChX83TRaw[Co2At2Ch3] 
+948.521 -0.114804 0.0!Mu3ChX84TRaw[Co2At2Ch4] 
+963.462 -0.116619 0.0!Mu3ChX85TRaw[Co2At2Ch5] 
+966.195 -0.11693 0.0!Mu3ChX86TRaw[Co2At2Ch6] 
+960.94 -0.116299 0.0!Mu3ChX87TRaw[Co2At2Ch7] 
+965.913 -0.116863 0.0!Mu3ChX88TRaw[Co2At2Ch8] 
+976.593 -0.118161 0.0!Mu3ChX89TRaw[Co2At2Ch9] 
+973.009 -0.117687 0.0!Mu3ChX90TRaw[Co2At2Ch10] 
+977.734 -0.118304 0.0!Mu3ChX91TRaw[Co2At2Ch11] 
+985.665 -0.119256 0.0!Mu3ChX92TRaw[Co2At2Ch12] 
+985.146 -0.119241 0.0!Mu3ChX93TRaw[Co2At2Ch13] 
+985.012 -0.119186 0.0!Mu3ChX94TRaw[Co2At2Ch14] 
+982.369 -0.118879 0.0!Mu3ChX95TRaw[Co2At2Ch15] 
+979.215 -0.118278 0.0!Mu3ChX96TRaw[Co2At2Ch16] 
+860.4 -0.104124 0.0!Mu3ChX97TRaw[Co2At3Ch1] 
+865.127 -0.104728 0.0!Mu3ChX98TRaw[Co2At3Ch2] 
+865.22 -0.104753 0.0!Mu3ChX99TRaw[Co2At3Ch3] 
+871.419 -0.105492 0.0!Mu3ChX100TRaw[Co2At3Ch4] 
+881.125 -0.106693 0.0!Mu3ChX101TRaw[Co2At3Ch5] 
+876.452 -0.10614 0.0!Mu3ChX102TRaw[Co2At3Ch6] 
+881.321 -0.106708 0.0!Mu3ChX103TRaw[Co2At3Ch7] 
+880.324 -0.106567 0.0!Mu3ChX104TRaw[Co2At3Ch8] 
+889.289 -0.107671 0.0!Mu3ChX105TRaw[Co2At3Ch9] 
+893.959 -0.108216 0.0!Mu3ChX106TRaw[Co2At3Ch10] 
+885.863 -0.107225 0.0!Mu3ChX107TRaw[Co2At3Ch11] 
+896.508 -0.108561 0.0!Mu3ChX108TRaw[Co2At3Ch12] 
+899.197 -0.108609 0.0!Mu3ChX109TRaw[Co2At3Ch13] 
+893.469 -0.108191 0.0!Mu3ChX110TRaw[Co2At3Ch14] 
+902.937 -0.109337 0.0!Mu3ChX111TRaw[Co2At3Ch15] 
+903.612 -0.108709 0.0!Mu3ChX112TRaw[Co2At3Ch16] 
+857.827 -0.103629 0.0!Mu3ChX113TRaw[Co2At4Ch1] 
+867.282 -0.10481 0.0!Mu3ChX114TRaw[Co2At4Ch2] 
+867.634 -0.1049 0.0!Mu3ChX115TRaw[Co2At4Ch3] 
+874.129 -0.105647 0.0!Mu3ChX116TRaw[Co2At4Ch4] 
+1490.122 -0.126949 0.0!Mu3ChX117TRaw[Co2At4Ch5] 
+878.327 -0.106145 0.0!Mu3ChX118TRaw[Co2At4Ch6] 
+885.367 -0.107055 0.0!Mu3ChX119TRaw[Co2At4Ch7] 
+883.353 -0.10675 0.0!Mu3ChX120TRaw[Co2At4Ch8] 
+886.421 -0.107137 0.0!Mu3ChX121TRaw[Co2At4Ch9] 
+890.231 -0.107599 0.0!Mu3ChX122TRaw[Co2At4Ch10] 
+886.118 -0.107093 0.0!Mu3ChX123TRaw[Co2At4Ch11] 
+895.704 -0.108252 0.0!Mu3ChX124TRaw[Co2At4Ch12] 
+889.898 -0.107522 0.0!Mu3ChX125TRaw[Co2At4Ch13] 
+896.281 -0.108336 0.0!Mu3ChX126TRaw[Co2At4Ch14] 
+883.682 -0.106793 0.0!Mu3ChX127TRaw[Co2At4Ch15] 
+895.669 -0.107896 0.0!Mu3ChX128TRaw[Co2At4Ch16] 
+918.076 -0.11121 0.0!Mu3ChY1TRaw[Co3At1Ch1] 
+925.701 -0.112154 0.0!Mu3ChY2TRaw[Co3At1Ch2] 
+934.638 -0.113241 0.0!Mu3ChY3TRaw[Co3At1Ch3] 
+944.313 -0.114409 0.0!Mu3ChY4TRaw[Co3At1Ch4] 
+941.286 -0.114032 0.0!Mu3ChY5TRaw[Co3At1Ch5] 
+949.429 -0.114994 0.0!Mu3ChY6TRaw[Co3At1Ch6] 
+953.873 -0.115552 0.0!Mu3ChY7TRaw[Co3At1Ch7] 
+954.095 -0.115546 0.0!Mu3ChY8TRaw[Co3At1Ch8] 
+961.819 -0.116506 0.0!Mu3ChY9TRaw[Co3At1Ch9] 
+966.084 -0.117006 0.0!Mu3ChY10TRaw[Co3At1Ch10] 
+968.231 -0.117251 0.0!Mu3ChY11TRaw[Co3At1Ch11] 
+967.098 -0.117093 0.0!Mu3ChY12TRaw[Co3At1Ch12] 
+976.51 -0.118272 0.0!Mu3ChY13TRaw[Co3At1Ch13] 
+982.999 -0.119048 0.0!Mu3ChY14TRaw[Co3At1Ch14] 
+975.2 -0.118075 0.0!Mu3ChY15TRaw[Co3At1Ch15] 
+982.438 -0.118941 0.0!Mu3ChY16TRaw[Co3At1Ch16] 
+968.582 -0.117174 0.0!Mu3ChY17TRaw[Co3At2Ch1] 
+981.596 -0.118815 0.0!Mu3ChY18TRaw[Co3At2Ch2] 
+982.535 -0.118931 0.0!Mu3ChY19TRaw[Co3At2Ch3] 
+988.071 -0.119638 0.0!Mu3ChY20TRaw[Co3At2Ch4] 
+993.73 -0.12034 0.0!Mu3ChY21TRaw[Co3At2Ch5] 
+1003.541 -0.121551 0.0!Mu3ChY22TRaw[Co3At2Ch6] 
+998.968 -0.120998 0.0!Mu3ChY23TRaw[Co3At2Ch7] 
+993.315 -0.120321 0.0!Mu3ChY24TRaw[Co3At2Ch8] 
+999.364 -0.121073 0.0!Mu3ChY25TRaw[Co3At2Ch9] 
+1005.572 -0.121839 0.0!Mu3ChY26TRaw[Co3At2Ch10] 
+1005.81 -0.121856 0.0!Mu3ChY27TRaw[Co3At2Ch11] 
+1012.089 -0.122649 0.0!Mu3ChY28TRaw[Co3At2Ch12] 
+1015.153 -0.12302 0.0!Mu3ChY29TRaw[Co3At2Ch13] 
+1003.98 -0.121668 0.0!Mu3ChY30TRaw[Co3At2Ch14] 
+1013.163 -0.122794 0.0!Mu3ChY31TRaw[Co3At2Ch15] 
+1013.882 -0.122927 0.0!Mu3ChY32TRaw[Co3At2Ch16] 
+869.852 -0.105446 0.0!Mu3ChY33TRaw[Co3At3Ch1] 
+866.645 -0.105092 0.0!Mu3ChY34TRaw[Co3At3Ch2] 
+871.811 -0.10573 0.0!Mu3ChY35TRaw[Co3At3Ch3] 
+868.809 -0.105345 0.0!Mu3ChY36TRaw[Co3At3Ch4] 
+880.462 -0.106744 0.0!Mu3ChY37TRaw[Co3At3Ch5] 
+879.67 -0.106654 0.0!Mu3ChY38TRaw[Co3At3Ch6] 
+885.22 -0.107294 0.0!Mu3ChY39TRaw[Co3At3Ch7] 
+893.863 -0.108361 0.0!Mu3ChY40TRaw[Co3At3Ch8] 
+891.003 -0.10799 0.0!Mu3ChY41TRaw[Co3At3Ch9] 
+895.002 -0.10846 0.0!Mu3ChY42TRaw[Co3At3Ch10] 
+904.382 -0.109593 0.0!Mu3ChY43TRaw[Co3At3Ch11] 
+900.904 -0.109195 0.0!Mu3ChY44TRaw[Co3At3Ch12] 
+896.146 -0.108568 0.0!Mu3ChY45TRaw[Co3At3Ch13] 
+906.325 -0.109804 0.0!Mu3ChY46TRaw[Co3At3Ch14] 
+910.104 -0.110263 0.0!Mu3ChY47TRaw[Co3At3Ch15] 
+902.797 -0.109382 0.0!Mu3ChY48TRaw[Co3At3Ch16] 
+876.215 -0.105997 0.0!Mu3ChY49TRaw[Co3At4Ch1] 
+882.251 -0.106772 0.0!Mu3ChY50TRaw[Co3At4Ch2] 
+893.929 -0.108217 0.0!Mu3ChY51TRaw[Co3At4Ch3] 
+896.657 -0.108527 0.0!Mu3ChY52TRaw[Co3At4Ch4] 
+890.731 -0.107825 0.0!Mu3ChY53TRaw[Co3At4Ch5] 
+899.266 -0.108862 0.0!Mu3ChY54TRaw[Co3At4Ch6] 
+903.981 -0.109456 0.0!Mu3ChY55TRaw[Co3At4Ch7] 
+909.889 -0.110152 0.0!Mu3ChY56TRaw[Co3At4Ch8] 
+914.156 -0.110718 0.0!Mu3ChY57TRaw[Co3At4Ch9] 
+912.878 -0.11056 0.0!Mu3ChY58TRaw[Co3At4Ch10] 
+921.772 -0.111636 0.0!Mu3ChY59TRaw[Co3At4Ch11] 
+907.641 -0.109934 0.0!Mu3ChY60TRaw[Co3At4Ch12] 
+921.134 -0.111581 0.0!Mu3ChY61TRaw[Co3At4Ch13] 
+921.864 -0.111694 0.0!Mu3ChY62TRaw[Co3At4Ch14] 
+917.054 -0.1111 0.0!Mu3ChY63TRaw[Co3At4Ch15] 
+919.795 -0.11144 0.0!Mu3ChY64TRaw[Co3At4Ch16] 
+909.45 -0.109216 0.0!Mu3ChY65TRaw[Co4At1Ch1] 
+919.5 -0.110026 0.0!Mu3ChY66TRaw[Co4At1Ch2] 
+909.57 -0.110106 0.0!Mu3ChY67TRaw[Co4At1Ch3] 
+921.73 -0.11114 0.0!Mu3ChY68TRaw[Co4At1Ch4] 
+933.144 -0.11252 0.0!Mu3ChY69TRaw[Co4At1Ch5] 
+937.937 -0.113544 0.0!Mu3ChY70TRaw[Co4At1Ch6] 
+941.407 -0.112672 0.0!Mu3ChY71TRaw[Co4At1Ch7] 
+929.175 -0.112491 0.0!Mu3ChY72TRaw[Co4At1Ch8] 
+949.055 -0.114462 0.0!Mu3ChY73TRaw[Co4At1Ch9] 
+941.527 -0.11354 0.0!Mu3ChY74TRaw[Co4At1Ch10] 
+954.075 -0.115517 0.0!Mu3ChY75TRaw[Co4At1Ch11] 
+957.81 -0.115086 0.0!Mu3ChY76TRaw[Co4At1Ch12] 
+963.019 -0.116618 0.0!Mu3ChY77TRaw[Co4At1Ch13] 
+955.382 -0.115232 0.0!Mu3ChY78TRaw[Co4At1Ch14] 
+944.365 -0.114343 0.0!Mu3ChY79TRaw[Co4At1Ch15] 
+952.964 -0.114947 0.0!Mu3ChY80TRaw[Co4At1Ch16] 
+969.317 -0.117288 0.0!Mu3ChY81TRaw[Co4At2Ch1] 
+980.742 -0.118727 0.0!Mu3ChY82TRaw[Co4At2Ch2] 
+990.702 -0.119474 0.0!Mu3ChY83TRaw[Co4At2Ch3] 
+994.094 -0.119909 0.0!Mu3ChY84TRaw[Co4At2Ch4] 
+1003.58 -0.120116 0.0!Mu3ChY85TRaw[Co4At2Ch5] 
+999.143 -0.120975 0.0!Mu3ChY86TRaw[Co4At2Ch6] 
+996.11 -0.120606 0.0!Mu3ChY87TRaw[Co4At2Ch7] 
+1005.134 -0.12076 0.0!Mu3ChY88TRaw[Co4At2Ch8] 
+1002.139 -0.121336 0.0!Mu3ChY89TRaw[Co4At2Ch9] 
+1025.133 -0.122713 0.0!Mu3ChY90TRaw[Co4At2Ch10] 
+1016.547 -0.1231 0.0!Mu3ChY91TRaw[Co4At2Ch11] 
+1008.733 -0.121678 0.0!Mu3ChY92TRaw[Co4At2Ch12] 
+1017.167 -0.122697 0.0!Mu3ChY93TRaw[Co4At2Ch13] 
+1016.429 -0.123087 0.0!Mu3ChY94TRaw[Co4At2Ch14] 
+1008.727 -0.122144 0.0!Mu3ChY95TRaw[Co4At2Ch15] 
+1013.668 -0.122274 0.0!Mu3ChY96TRaw[Co4At2Ch16] 
+872.659 -0.105573 0.0!Mu3ChY97TRaw[Co4At3Ch1] 
+869.574 -0.105224 0.0!Mu3ChY98TRaw[Co4At3Ch2] 
+874.267 -0.105791 0.0!Mu3ChY99TRaw[Co4At3Ch3] 
+883.417 -0.106904 0.0!Mu3ChY100TRaw[Co4At3Ch4] 
+893.981 -0.107789 0.0!Mu3ChY101TRaw[Co4At3Ch5] 
+890.232 -0.107742 0.0!Mu3ChY102TRaw[Co4At3Ch6] 
+901.26 -0.109085 0.0!Mu3ChY103TRaw[Co4At3Ch7] 
+900.219 -0.108126 0.0!Mu3ChY104TRaw[Co4At3Ch8] 
+900.643 -0.108999 0.0!Mu3ChY105TRaw[Co4At3Ch9] 
+892.987 -0.108068 0.0!Mu3ChY106TRaw[Co4At3Ch10] 
+892.534 -0.108006 0.0!Mu3ChY107TRaw[Co4At3Ch11] 
+901.564 -0.109125 0.0!Mu3ChY108TRaw[Co4At3Ch12] 
+911.227 -0.109439 0.0!Mu3ChY109TRaw[Co4At3Ch13] 
+905.426 -0.109168 0.0!Mu3ChY110TRaw[Co4At3Ch14] 
+904.499 -0.108625 0.0!Mu3ChY111TRaw[Co4At3Ch15] 
+907.559 -0.109416 0.0!Mu3ChY112TRaw[Co4At3Ch16] 
+896.812 -0.107554 0.0!Mu3ChY113TRaw[Co4At4Ch1] 
+897.309 -0.108473 0.0!Mu3ChY114TRaw[Co4At4Ch2] 
+907.137 -0.108848 0.0!Mu3ChY115TRaw[Co4At4Ch3] 
+902.563 -0.108292 0.0!Mu3ChY116TRaw[Co4At4Ch4] 
+907.303 -0.109288 0.0!Mu3ChY117TRaw[Co4At4Ch5] 
+909.347 -0.109943 0.0!Mu3ChY118TRaw[Co4At4Ch6] 
+907.931 -0.109765 0.0!Mu3ChY119TRaw[Co4At4Ch7] 
+907.16 -0.109672 0.0!Mu3ChY120TRaw[Co4At4Ch8] 
+917.59 -0.110512 0.0!Mu3ChY121TRaw[Co4At4Ch9] 
+922.724 -0.111588 0.0!Mu3ChY122TRaw[Co4At4Ch10] 
+925.473 -0.111915 0.0!Mu3ChY123TRaw[Co4At4Ch11] 
+911.405 -0.109772 0.0!Mu3ChY124TRaw[Co4At4Ch12] 
+912.177 -0.11029 0.0!Mu3ChY125TRaw[Co4At4Ch13] 
+917.613 -0.110947 0.0!Mu3ChY126TRaw[Co4At4Ch14] 
+919.037 -0.111116 0.0!Mu3ChY127TRaw[Co4At4Ch15] 
+927.237 -0.112131 0.0!Mu3ChY128TRaw[Co4At4Ch16] 
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_E/Cal_Str_X_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b56df0bbb27f890ca4f6493ba76adaea922fcb94
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E -61.6623 0.00752711
+MUSETT_T0_DSSD_X1_E -61.862300000000005 0.0075515
+MUSETT_T0_DSSD_X2_E -61.786 0.00754225
+MUSETT_T0_DSSD_X3_E -61.4886 0.0075058699999999996
+MUSETT_T0_DSSD_X4_E -61.896800000000006 0.00755579
+MUSETT_T0_DSSD_X5_E -61.6415 0.007524530000000001
+MUSETT_T0_DSSD_X6_E -61.3994 0.00749501
+MUSETT_T0_DSSD_X7_E -61.2364 0.00747509
+MUSETT_T0_DSSD_X8_E -60.9865 0.0074446
+MUSETT_T0_DSSD_X9_E -62.6813 0.0076514800000000004
+MUSETT_T0_DSSD_X10_E -62.3935 0.00761631
+MUSETT_T0_DSSD_X11_E -61.9253 0.00755919
+MUSETT_T0_DSSD_X12_E -62.029900000000005 0.00757195
+MUSETT_T0_DSSD_X13_E -61.7577 0.00753873
+MUSETT_T0_DSSD_X14_E -62.4176 0.00761932
+MUSETT_T0_DSSD_X15_E -61.2753 0.00747982
+MUSETT_T0_DSSD_X16_E -63.0583 0.00769749
+MUSETT_T0_DSSD_X17_E -62.722199999999994 0.00765646
+MUSETT_T0_DSSD_X18_E -62.1349 0.007584769999999999
+MUSETT_T0_DSSD_X19_E -62.4581 0.00762423
+MUSETT_T0_DSSD_X20_E -63.902699999999996 0.00780057
+MUSETT_T0_DSSD_X21_E -62.5199 0.00763181
+MUSETT_T0_DSSD_X22_E -62.2975 0.00760463
+MUSETT_T0_DSSD_X23_E -62.6596 0.00764878
+MUSETT_T0_DSSD_X24_E -62.8523 0.00767238
+MUSETT_T0_DSSD_X25_E -62.9854 0.00768854
+MUSETT_T0_DSSD_X26_E -63.073699999999995 0.00769941
+MUSETT_T0_DSSD_X27_E -62.632 0.00764548
+MUSETT_T0_DSSD_X28_E -63.013400000000004 0.00769203
+MUSETT_T0_DSSD_X29_E -62.579 0.00763901
+MUSETT_T0_DSSD_X30_E -63.4015 0.0077394
+MUSETT_T0_DSSD_X31_E -62.63 0.007645229999999999
+MUSETT_T0_DSSD_X32_E -56.399 0.00688462
+MUSETT_T0_DSSD_X33_E -56.789199999999994 0.00693221
+MUSETT_T0_DSSD_X34_E -55.5642 0.00678269
+MUSETT_T0_DSSD_X35_E -56.333400000000005 0.00687654
+MUSETT_T0_DSSD_X36_E -56.0406 0.00684084
+MUSETT_T0_DSSD_X37_E -10.0 0.0
+MUSETT_T0_DSSD_X38_E -55.909699999999994 0.006824869999999999
+MUSETT_T0_DSSD_X39_E -55.6584 0.006794209999999999
+MUSETT_T0_DSSD_X40_E -56.211800000000004 0.00686172
+MUSETT_T0_DSSD_X41_E -55.874 0.00682053
+MUSETT_T0_DSSD_X42_E -56.1648 0.00685597
+MUSETT_T0_DSSD_X43_E -56.3075 0.00687343
+MUSETT_T0_DSSD_X44_E -56.382 0.00688247
+MUSETT_T0_DSSD_X45_E -10.0 0.0
+MUSETT_T0_DSSD_X46_E -10.0 0.0
+MUSETT_T0_DSSD_X47_E -55.9115 0.00682508
+MUSETT_T0_DSSD_X48_E -57.9275 0.00707116
+MUSETT_T0_DSSD_X49_E -57.924800000000005 0.007070809999999999
+MUSETT_T0_DSSD_X50_E -57.746 0.007049000000000001
+MUSETT_T0_DSSD_X51_E -57.3431 0.00699988
+MUSETT_T0_DSSD_X52_E -58.1722 0.00710106
+MUSETT_T0_DSSD_X53_E -57.2377 0.00698697
+MUSETT_T0_DSSD_X54_E -57.8763 0.00706488
+MUSETT_T0_DSSD_X55_E -57.5235 0.00702188
+MUSETT_T0_DSSD_X56_E -58.500699999999995 0.00714114
+MUSETT_T0_DSSD_X57_E -57.7865 0.00705393
+MUSETT_T0_DSSD_X58_E -57.3004 0.00699465
+MUSETT_T0_DSSD_X59_E -57.7909 0.00705448
+MUSETT_T0_DSSD_X60_E -57.2034 0.0069828
+MUSETT_T0_DSSD_X61_E -57.985 0.0070782
+MUSETT_T0_DSSD_X62_E -57.8887 0.00706644
+MUSETT_T0_DSSD_X63_E -58.1271 0.00709555
+MUSETT_T0_DSSD_X64_E -63.452400000000004 0.00774561
+MUSETT_T0_DSSD_X65_E -63.6121 0.0077651099999999995
+MUSETT_T0_DSSD_X66_E -63.338699999999996 0.00773174
+MUSETT_T0_DSSD_X67_E -64.0218 0.00781515
+MUSETT_T0_DSSD_X68_E -63.1974 0.00771456
+MUSETT_T0_DSSD_X69_E -63.9684 0.0078086399999999995
+MUSETT_T0_DSSD_X70_E -63.8538 0.00779469
+MUSETT_T0_DSSD_X71_E -63.3564 0.007733970000000001
+MUSETT_T0_DSSD_X72_E -64.1177 0.00782683
+MUSETT_T0_DSSD_X73_E -63.242599999999996 0.00772007
+MUSETT_T0_DSSD_X74_E -63.9725 0.00780918
+MUSETT_T0_DSSD_X75_E -63.9414 0.0078053
+MUSETT_T0_DSSD_X76_E -63.6518 0.0077700899999999995
+MUSETT_T0_DSSD_X77_E -63.7543 0.00778255
+MUSETT_T0_DSSD_X78_E -64.2928 0.00784837
+MUSETT_T0_DSSD_X79_E -64.6906 0.00789693
+MUSETT_T0_DSSD_X80_E -61.2158 0.0074727100000000005
+MUSETT_T0_DSSD_X81_E -60.8651 0.007429949999999999
+MUSETT_T0_DSSD_X82_E -61.1473 0.00746434
+MUSETT_T0_DSSD_X83_E -61.4696 0.0075036899999999995
+MUSETT_T0_DSSD_X84_E -61.3791 0.00749269
+MUSETT_T0_DSSD_X85_E -61.8887 0.00755484
+MUSETT_T0_DSSD_X86_E -61.4032 0.00749554
+MUSETT_T0_DSSD_X87_E -62.1665 0.00758877
+MUSETT_T0_DSSD_X88_E -61.8964 0.007555780000000001
+MUSETT_T0_DSSD_X89_E -61.5721 0.00751618
+MUSETT_T0_DSSD_X90_E -61.7205 0.007534239999999999
+MUSETT_T0_DSSD_X91_E -62.7965 0.00766557
+MUSETT_T0_DSSD_X92_E -61.8681 0.00755224
+MUSETT_T0_DSSD_X93_E -60.9991 0.00744621
+MUSETT_T0_DSSD_X94_E -61.368199999999995 0.00749129
+MUSETT_T0_DSSD_X95_E -62.1668 0.00758877
+MUSETT_T0_DSSD_X96_E -57.1697 0.00697872
+MUSETT_T0_DSSD_X97_E -57.564 0.0070268100000000005
+MUSETT_T0_DSSD_X98_E -57.724199999999996 0.00704642
+MUSETT_T0_DSSD_X99_E -57.113099999999996 0.00697176
+MUSETT_T0_DSSD_X100_E -58.1265 0.0070955
+MUSETT_T0_DSSD_X101_E -57.7465 0.00704909
+MUSETT_T0_DSSD_X102_E -57.6654 0.00703921
+MUSETT_T0_DSSD_X103_E -57.244699999999995 0.00698784
+MUSETT_T0_DSSD_X104_E -57.357800000000005 0.00700171
+MUSETT_T0_DSSD_X105_E -57.943599999999996 0.0070732
+MUSETT_T0_DSSD_X106_E -57.2791 0.00699197
+MUSETT_T0_DSSD_X107_E -57.6282 0.00703471
+MUSETT_T0_DSSD_X108_E -58.567699999999995 0.0071494
+MUSETT_T0_DSSD_X109_E -58.0135 0.00708178
+MUSETT_T0_DSSD_X110_E -57.6815 0.00704111
+MUSETT_T0_DSSD_X111_E -57.7954 0.00705508
+MUSETT_T0_DSSD_X112_E -59.002300000000005 0.00720244
+MUSETT_T0_DSSD_X113_E -59.1922 0.00722562
+MUSETT_T0_DSSD_X114_E -58.512800000000006 0.00714267
+MUSETT_T0_DSSD_X115_E -58.6713 0.0071620699999999995
+MUSETT_T0_DSSD_X116_E -58.1716 0.00710101
+MUSETT_T0_DSSD_X117_E -58.3505 0.00712281
+MUSETT_T0_DSSD_X118_E -58.281400000000005 0.00711445
+MUSETT_T0_DSSD_X119_E -58.508199999999995 0.0071421
+MUSETT_T0_DSSD_X120_E -58.5117 0.00714253
+MUSETT_T0_DSSD_X121_E -58.6539 0.0071598899999999995
+MUSETT_T0_DSSD_X122_E -58.5504 0.00714724
+MUSETT_T0_DSSD_X123_E -59.318400000000004 0.00724097
+MUSETT_T0_DSSD_X124_E -57.853 0.007062140000000001
+MUSETT_T0_DSSD_X125_E -58.498400000000004 0.00714087
+MUSETT_T0_DSSD_X126_E -58.4264 0.00713213
+MUSETT_T0_DSSD_X127_E -59.5126 0.00726467
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_E/Cal_Str_Y_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..7c5d41b25a59ce5a29553a76ed64aac9acbd191e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_Y0_E -10.0 0.0
+MUSETT_T0_DSSD_Y1_E 60.4435 -0.007378389999999999
+MUSETT_T0_DSSD_Y2_E 60.9085 -0.00743514
+MUSETT_T0_DSSD_Y3_E 61.060199999999995 -0.00745367
+MUSETT_T0_DSSD_Y4_E 59.9844 -0.00732237
+MUSETT_T0_DSSD_Y5_E 60.1295 -0.0073401
+MUSETT_T0_DSSD_Y6_E 60.7831 -0.007419889999999999
+MUSETT_T0_DSSD_Y7_E 60.431 -0.0073769099999999995
+MUSETT_T0_DSSD_Y8_E 60.140699999999995 -0.00734142
+MUSETT_T0_DSSD_Y9_E 59.998400000000004 -0.00732403
+MUSETT_T0_DSSD_Y10_E 60.3957 -0.0073725399999999995
+MUSETT_T0_DSSD_Y11_E 60.0283 -0.00732774
+MUSETT_T0_DSSD_Y12_E 60.887800000000006 -0.00743267
+MUSETT_T0_DSSD_Y13_E 61.0665 -0.00745441
+MUSETT_T0_DSSD_Y14_E 61.164 -0.007466319999999999
+MUSETT_T0_DSSD_Y15_E 60.7398 -0.00741458
+MUSETT_T0_DSSD_Y16_E 60.4435 -0.00737838
+MUSETT_T0_DSSD_Y17_E 60.5444 -0.00739071
+MUSETT_T0_DSSD_Y18_E 60.303 -0.0073612
+MUSETT_T0_DSSD_Y19_E 60.1433 -0.007341739999999999
+MUSETT_T0_DSSD_Y20_E 60.3286 -0.0073644
+MUSETT_T0_DSSD_Y21_E 60.395900000000005 -0.00737256
+MUSETT_T0_DSSD_Y22_E 60.276 -0.00735798
+MUSETT_T0_DSSD_Y23_E 59.6842 -0.007285720000000001
+MUSETT_T0_DSSD_Y24_E 60.1879 -0.00734719
+MUSETT_T0_DSSD_Y25_E 59.7764 -0.00729698
+MUSETT_T0_DSSD_Y26_E 60.1286 -0.00733997
+MUSETT_T0_DSSD_Y27_E 60.4505 -0.00737922
+MUSETT_T0_DSSD_Y28_E 59.8905 -0.00731089
+MUSETT_T0_DSSD_Y29_E 59.6473 -0.0072812
+MUSETT_T0_DSSD_Y30_E 59.834900000000005 -0.00730412
+MUSETT_T0_DSSD_Y31_E 60.9991 -0.007446240000000001
+MUSETT_T0_DSSD_Y32_E 56.5525 -0.0069034100000000004
+MUSETT_T0_DSSD_Y33_E 57.0745 -0.00696718
+MUSETT_T0_DSSD_Y34_E 56.5365 -0.0069015000000000005
+MUSETT_T0_DSSD_Y35_E 57.036300000000004 -0.00696248
+MUSETT_T0_DSSD_Y36_E 57.4051 -0.007007500000000001
+MUSETT_T0_DSSD_Y37_E 57.2592 -0.0069897200000000005
+MUSETT_T0_DSSD_Y38_E 56.419599999999996 -0.00688718
+MUSETT_T0_DSSD_Y39_E 56.4611 -0.00689226
+MUSETT_T0_DSSD_Y40_E 56.9516 -0.00695213
+MUSETT_T0_DSSD_Y41_E 56.8 -0.00693367
+MUSETT_T0_DSSD_Y42_E 56.6005 -0.00690927
+MUSETT_T0_DSSD_Y43_E 56.5115 -0.0068984
+MUSETT_T0_DSSD_Y44_E 56.8705 -0.00694221
+MUSETT_T0_DSSD_Y45_E 56.9936 -0.006957270000000001
+MUSETT_T0_DSSD_Y46_E 57.6797 -0.00704103
+MUSETT_T0_DSSD_Y47_E 56.5606 -0.00690438
+MUSETT_T0_DSSD_Y48_E 57.5466 -0.0070247700000000005
+MUSETT_T0_DSSD_Y49_E 57.0358 -0.006962449999999999
+MUSETT_T0_DSSD_Y50_E 56.800599999999996 -0.00693377
+MUSETT_T0_DSSD_Y51_E 56.5058 -0.00689773
+MUSETT_T0_DSSD_Y52_E 57.1614 -0.006977789999999999
+MUSETT_T0_DSSD_Y53_E 56.855 -0.0069403600000000005
+MUSETT_T0_DSSD_Y54_E 56.619699999999995 -0.00691168
+MUSETT_T0_DSSD_Y55_E 57.6218 -0.00703399
+MUSETT_T0_DSSD_Y56_E 57.3597 -0.00700197
+MUSETT_T0_DSSD_Y57_E 56.825900000000004 -0.006936759999999999
+MUSETT_T0_DSSD_Y58_E 57.0315 -0.00696191
+MUSETT_T0_DSSD_Y59_E 57.2393 -0.00698735
+MUSETT_T0_DSSD_Y60_E 57.2548 -0.00698918
+MUSETT_T0_DSSD_Y61_E 57.074400000000004 -0.00696716
+MUSETT_T0_DSSD_Y62_E 57.5745 -0.00702822
+MUSETT_T0_DSSD_Y63_E 57.9124 -0.00706943
+MUSETT_T0_DSSD_Y64_E 61.0028 -0.00744668
+MUSETT_T0_DSSD_Y65_E 61.155300000000004 -0.0074653
+MUSETT_T0_DSSD_Y66_E 61.0533 -0.00745282
+MUSETT_T0_DSSD_Y67_E 61.373400000000004 -0.0074919
+MUSETT_T0_DSSD_Y68_E 60.4897 -0.00738403
+MUSETT_T0_DSSD_Y69_E 61.5803 -0.007517159999999999
+MUSETT_T0_DSSD_Y70_E 60.8956 -0.0074336
+MUSETT_T0_DSSD_Y71_E 60.4003 -0.0073731
+MUSETT_T0_DSSD_Y72_E 61.676199999999994 -0.00752889
+MUSETT_T0_DSSD_Y73_E 61.1073 -0.0074594399999999995
+MUSETT_T0_DSSD_Y74_E 61.1132 -0.00746014
+MUSETT_T0_DSSD_Y75_E 61.2304 -0.00747441
+MUSETT_T0_DSSD_Y76_E 60.5934 -0.00739669
+MUSETT_T0_DSSD_Y77_E 61.4122 -0.0074966600000000005
+MUSETT_T0_DSSD_Y78_E 61.6767 -0.0075289400000000005
+MUSETT_T0_DSSD_Y79_E 61.1145 -0.00746029
+MUSETT_T0_DSSD_Y80_E 62.3355 -0.00760932
+MUSETT_T0_DSSD_Y81_E 61.110800000000005 -0.00745984
+MUSETT_T0_DSSD_Y82_E 61.5895 -0.00751825
+MUSETT_T0_DSSD_Y83_E 62.0645 -0.007576240000000001
+MUSETT_T0_DSSD_Y84_E 61.0049 -0.00744692
+MUSETT_T0_DSSD_Y85_E 60.9003 -0.00743416
+MUSETT_T0_DSSD_Y86_E 61.8108 -0.00754524
+MUSETT_T0_DSSD_Y87_E 61.4395 -0.00749992
+MUSETT_T0_DSSD_Y88_E 61.153 -0.00746501
+MUSETT_T0_DSSD_Y89_E 61.3099 -0.00748418
+MUSETT_T0_DSSD_Y90_E 61.1603 -0.00746589
+MUSETT_T0_DSSD_Y91_E 61.4705 -0.00750377
+MUSETT_T0_DSSD_Y92_E 61.8625 -0.00755157
+MUSETT_T0_DSSD_Y93_E 61.676 -0.00752886
+MUSETT_T0_DSSD_Y94_E 62.3873 -0.00761565
+MUSETT_T0_DSSD_Y95_E 60.9044 -0.00743464
+MUSETT_T0_DSSD_Y96_E 56.3812 -0.00688248
+MUSETT_T0_DSSD_Y97_E 56.6477 -0.00691501
+MUSETT_T0_DSSD_Y98_E 56.593900000000005 -0.00690848
+MUSETT_T0_DSSD_Y99_E 56.4666 -0.0068929
+MUSETT_T0_DSSD_Y100_E 56.2051 -0.00686097
+MUSETT_T0_DSSD_Y101_E 56.3392 -0.00687735
+MUSETT_T0_DSSD_Y102_E 56.0711 -0.006844630000000001
+MUSETT_T0_DSSD_Y103_E 56.5869 -0.00690762
+MUSETT_T0_DSSD_Y104_E 56.9228 -0.006948579999999999
+MUSETT_T0_DSSD_Y105_E 56.073699999999995 -0.00684493
+MUSETT_T0_DSSD_Y106_E 57.0807 -0.00696791
+MUSETT_T0_DSSD_Y107_E 57.414300000000004 -0.00700859
+MUSETT_T0_DSSD_Y108_E 56.5825 -0.0069071
+MUSETT_T0_DSSD_Y109_E 56.5836 -0.00690725
+MUSETT_T0_DSSD_Y110_E 56.679199999999994 -0.00691888
+MUSETT_T0_DSSD_Y111_E 56.4215 -0.0068874
+MUSETT_T0_DSSD_Y112_E 56.9044 -0.00694638
+MUSETT_T0_DSSD_Y113_E 57.1278 -0.00697364
+MUSETT_T0_DSSD_Y114_E 56.9656 -0.0069538
+MUSETT_T0_DSSD_Y115_E 56.8221 -0.00693632
+MUSETT_T0_DSSD_Y116_E 57.302 -0.00699491
+MUSETT_T0_DSSD_Y117_E 56.554199999999994 -0.00690362
+MUSETT_T0_DSSD_Y118_E 56.421800000000005 -0.006887450000000001
+MUSETT_T0_DSSD_Y119_E 56.6454 -0.00691475
+MUSETT_T0_DSSD_Y120_E 57.3988 -0.00700675
+MUSETT_T0_DSSD_Y121_E 57.237300000000005 -0.0069869599999999995
+MUSETT_T0_DSSD_Y122_E 56.689 -0.0069200699999999995
+MUSETT_T0_DSSD_Y123_E 56.0116 -0.0068374199999999994
+MUSETT_T0_DSSD_Y124_E 56.467699999999994 -0.0068930300000000005
+MUSETT_T0_DSSD_Y125_E 55.9223 -0.0068265
+MUSETT_T0_DSSD_Y126_E 56.9572 -0.00695281
+MUSETT_T0_DSSD_Y127_E 56.5865 -0.00690758
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..5b24d47a3e65b665bfa9316692c46e8b7ebed112
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_T 946.164 -0.114176
+MUSETT_T0_DSSD_X1_T 956.811 -0.115529
+MUSETT_T0_DSSD_X2_T 957.988 -0.115657
+MUSETT_T0_DSSD_X3_T 972.139 -0.117409
+MUSETT_T0_DSSD_X4_T 971.761 -0.117367
+MUSETT_T0_DSSD_X5_T 971.702 -0.117353
+MUSETT_T0_DSSD_X6_T 976.911 -0.117969
+MUSETT_T0_DSSD_X7_T 979.143 -0.118246
+MUSETT_T0_DSSD_X8_T 977.915 -0.118065
+MUSETT_T0_DSSD_X9_T 981.976 -0.118546
+MUSETT_T0_DSSD_X10_T 986.577 -0.119138
+MUSETT_T0_DSSD_X11_T 986.184 -0.119075
+MUSETT_T0_DSSD_X12_T 993.563 -0.119996
+MUSETT_T0_DSSD_X13_T 978.874 -0.118174
+MUSETT_T0_DSSD_X14_T 989.894 -0.119531
+MUSETT_T0_DSSD_X15_T 1318.57 -0.118448
+MUSETT_T0_DSSD_X16_T 955.564 -0.115275
+MUSETT_T0_DSSD_X17_T 965.774 -0.116527
+MUSETT_T0_DSSD_X18_T 978.184 -0.118044
+MUSETT_T0_DSSD_X19_T 978.854 -0.118125
+MUSETT_T0_DSSD_X20_T 987.988 -0.119233
+MUSETT_T0_DSSD_X21_T 982.353 -0.118555
+MUSETT_T0_DSSD_X22_T 992.928 -0.119845
+MUSETT_T0_DSSD_X23_T 994.329 -0.120005
+MUSETT_T0_DSSD_X24_T 989.504 -0.119427
+MUSETT_T0_DSSD_X25_T 1000.62 -0.120777
+MUSETT_T0_DSSD_X26_T 1002.92 -0.121057
+MUSETT_T0_DSSD_X27_T 1006.98 -0.121545
+MUSETT_T0_DSSD_X28_T 1002.57 -0.121021
+MUSETT_T0_DSSD_X29_T 1001.43 -0.120851
+MUSETT_T0_DSSD_X30_T 997.945 -0.12045
+MUSETT_T0_DSSD_X31_T 993.524 -0.119947
+MUSETT_T0_DSSD_X32_T 872.545 -0.105192
+MUSETT_T0_DSSD_X33_T 870.474 -0.104955
+MUSETT_T0_DSSD_X34_T 890.439 -0.107397
+MUSETT_T0_DSSD_X35_T 879.216 -0.106033
+MUSETT_T0_DSSD_X36_T 881.009 -0.106227
+MUSETT_T0_DSSD_X37_T 895.366 -0.108005
+MUSETT_T0_DSSD_X38_T 897.01 -0.108195
+MUSETT_T0_DSSD_X39_T 895.47 -0.107979
+MUSETT_T0_DSSD_X40_T 898.037 -0.108302
+MUSETT_T0_DSSD_X41_T 898.361 -0.108334
+MUSETT_T0_DSSD_X42_T 897.507 -0.108243
+MUSETT_T0_DSSD_X43_T 904.455 -0.109095
+MUSETT_T0_DSSD_X44_T 899.781 -0.108505
+MUSETT_T0_DSSD_X45_T 894.363 -0.107877
+MUSETT_T0_DSSD_X46_T 896.817 -0.108187
+MUSETT_T0_DSSD_X47_T 930.792 -0.10826
+MUSETT_T0_DSSD_X48_T 884.648 -0.106556
+MUSETT_T0_DSSD_X49_T 887.836 -0.106942
+MUSETT_T0_DSSD_X50_T 893.25 -0.107622
+MUSETT_T0_DSSD_X51_T 901.75 -0.109464
+MUSETT_T0_DSSD_X52_T 907.099 -0.109295
+MUSETT_T0_DSSD_X53_T 909.979 -0.109652
+MUSETT_T0_DSSD_X54_T 912.526 -0.109955
+MUSETT_T0_DSSD_X55_T 916.597 -0.110458
+MUSETT_T0_DSSD_X56_T 925.24 -0.111499
+MUSETT_T0_DSSD_X57_T 916.715 -0.110456
+MUSETT_T0_DSSD_X58_T 924.251 -0.111378
+MUSETT_T0_DSSD_X59_T 928.786 -0.111943
+MUSETT_T0_DSSD_X60_T 935.878 -0.112807
+MUSETT_T0_DSSD_X61_T 938.667 -0.11314
+MUSETT_T0_DSSD_X62_T 940.288 -0.113338
+MUSETT_T0_DSSD_X63_T 929.111 -0.111982
+MUSETT_T0_DSSD_X64_T 957.51 -0.115846
+MUSETT_T0_DSSD_X65_T 962.646 -0.11646
+MUSETT_T0_DSSD_X66_T 972.344 -0.117644
+MUSETT_T0_DSSD_X67_T 973.464 -0.117791
+MUSETT_T0_DSSD_X68_T 976.904 -0.118174
+MUSETT_T0_DSSD_X69_T 989.493 -0.119717
+MUSETT_T0_DSSD_X70_T 993.895 -0.120284
+MUSETT_T0_DSSD_X71_T 995.117 -0.120426
+MUSETT_T0_DSSD_X72_T 1006.3 -0.121763
+MUSETT_T0_DSSD_X73_T 987.403 -0.119445
+MUSETT_T0_DSSD_X74_T 1004.54 -0.121535
+MUSETT_T0_DSSD_X75_T 995.118 -0.120381
+MUSETT_T0_DSSD_X76_T 1002.39 -0.121262
+MUSETT_T0_DSSD_X77_T 1006.49 -0.121766
+MUSETT_T0_DSSD_X78_T 997.059 -0.120615
+MUSETT_T0_DSSD_X79_T 1377.74 -0.120952
+MUSETT_T0_DSSD_X80_T 923.114 -0.111515
+MUSETT_T0_DSSD_X81_T 932.866 -0.112746
+MUSETT_T0_DSSD_X82_T 924.928 -0.111774
+MUSETT_T0_DSSD_X83_T 937.265 -0.113281
+MUSETT_T0_DSSD_X84_T 930.752 -0.112468
+MUSETT_T0_DSSD_X85_T 941.628 -0.113819
+MUSETT_T0_DSSD_X86_T 949.998 -0.114818
+MUSETT_T0_DSSD_X87_T 943.027 -0.113978
+MUSETT_T0_DSSD_X88_T 949.721 -0.114813
+MUSETT_T0_DSSD_X89_T 957.242 -0.115728
+MUSETT_T0_DSSD_X90_T 964.815 -0.11664
+MUSETT_T0_DSSD_X91_T 961.466 -0.11625
+MUSETT_T0_DSSD_X92_T 961.749 -0.116299
+MUSETT_T0_DSSD_X93_T 960.655 -0.116152
+MUSETT_T0_DSSD_X94_T 974.674 -0.117868
+MUSETT_T0_DSSD_X95_T 992.705 -0.116744
+MUSETT_T0_DSSD_X96_T 868.269 -0.105013
+MUSETT_T0_DSSD_X97_T 877.648 -0.106169
+MUSETT_T0_DSSD_X98_T 878.241 -0.106212
+MUSETT_T0_DSSD_X99_T 883.994 -0.106905
+MUSETT_T0_DSSD_X100_T 893.321 -0.108043
+MUSETT_T0_DSSD_X101_T 900.56 -0.108935
+MUSETT_T0_DSSD_X102_T 896.766 -0.108442
+MUSETT_T0_DSSD_X103_T 894.903 -0.108194
+MUSETT_T0_DSSD_X104_T 904.239 -0.109336
+MUSETT_T0_DSSD_X105_T 902.018 -0.109053
+MUSETT_T0_DSSD_X106_T 907.673 -0.109771
+MUSETT_T0_DSSD_X107_T 904.96 -0.109449
+MUSETT_T0_DSSD_X108_T 902.795 -0.109128
+MUSETT_T0_DSSD_X109_T 906.335 -0.109641
+MUSETT_T0_DSSD_X110_T 903.029 -0.109177
+MUSETT_T0_DSSD_X111_T 912.908 -0.109478
+MUSETT_T0_DSSD_X112_T 888.694 -0.107364
+MUSETT_T0_DSSD_X113_T 891.736 -0.107748
+MUSETT_T0_DSSD_X114_T 891.957 -0.107782
+MUSETT_T0_DSSD_X115_T 901.87 -0.109007
+MUSETT_T0_DSSD_X116_T 905.48 -0.109423
+MUSETT_T0_DSSD_X117_T 899.196 -0.108648
+MUSETT_T0_DSSD_X118_T 913.782 -0.110413
+MUSETT_T0_DSSD_X119_T 914.779 -0.110579
+MUSETT_T0_DSSD_X120_T 909.004 -0.109898
+MUSETT_T0_DSSD_X121_T 914.282 -0.1105
+MUSETT_T0_DSSD_X122_T 922.657 -0.111529
+MUSETT_T0_DSSD_X123_T 914.822 -0.110604
+MUSETT_T0_DSSD_X124_T 917.977 -0.110972
+MUSETT_T0_DSSD_X125_T 919.687 -0.11118
+MUSETT_T0_DSSD_X126_T 914.922 -0.110613
+MUSETT_T0_DSSD_X127_T 925.329 -0.111151
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..44caa7bd7c0575c1eae4de035fb0398b5e399796
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 942.169 -0.114033
+MUSETT_T0_DSSD_Y2_T 941.094 -0.113921
+MUSETT_T0_DSSD_Y3_T 959.045 -0.116104
+MUSETT_T0_DSSD_Y4_T 954.629 -0.115563
+MUSETT_T0_DSSD_Y5_T 970.443 -0.117481
+MUSETT_T0_DSSD_Y6_T 969.234 -0.117339
+MUSETT_T0_DSSD_Y7_T 966.53 -0.117018
+MUSETT_T0_DSSD_Y8_T 973.409 -0.117842
+MUSETT_T0_DSSD_Y9_T 968.923 -0.117316
+MUSETT_T0_DSSD_Y10_T 971.661 -0.117632
+MUSETT_T0_DSSD_Y11_T 977.841 -0.118398
+MUSETT_T0_DSSD_Y12_T 975.821 -0.11814
+MUSETT_T0_DSSD_Y13_T 971.638 -0.117633
+MUSETT_T0_DSSD_Y14_T 974.225 -0.117944
+MUSETT_T0_DSSD_Y15_T 980.805 -0.118761
+MUSETT_T0_DSSD_Y16_T 935.973 -0.113175
+MUSETT_T0_DSSD_Y17_T 944.972 -0.114309
+MUSETT_T0_DSSD_Y18_T 953.592 -0.115351
+MUSETT_T0_DSSD_Y19_T 945.492 -0.11436
+MUSETT_T0_DSSD_Y20_T 948.066 -0.114686
+MUSETT_T0_DSSD_Y21_T 951.558 -0.115103
+MUSETT_T0_DSSD_Y22_T 957.545 -0.115832
+MUSETT_T0_DSSD_Y23_T 957.576 -0.115841
+MUSETT_T0_DSSD_Y24_T 962.251 -0.116398
+MUSETT_T0_DSSD_Y25_T 960.479 -0.116195
+MUSETT_T0_DSSD_Y26_T 957.007 -0.115516
+MUSETT_T0_DSSD_Y27_T 971.646 -0.117562
+MUSETT_T0_DSSD_Y28_T 974.064 -0.117834
+MUSETT_T0_DSSD_Y29_T 968.974 -0.11722
+MUSETT_T0_DSSD_Y30_T 971.944 -0.11759
+MUSETT_T0_DSSD_Y31_T 966.713 -0.116928
+MUSETT_T0_DSSD_Y32_T 869.43 -0.105131
+MUSETT_T0_DSSD_Y33_T 868.989 -0.105113
+MUSETT_T0_DSSD_Y34_T 886.133 -0.107174
+MUSETT_T0_DSSD_Y35_T 876.002 -0.105955
+MUSETT_T0_DSSD_Y36_T 887.653 -0.107363
+MUSETT_T0_DSSD_Y37_T 886.897 -0.107278
+MUSETT_T0_DSSD_Y38_T 887.559 -0.107347
+MUSETT_T0_DSSD_Y39_T 905.525 -0.109567
+MUSETT_T0_DSSD_Y40_T 903.288 -0.109268
+MUSETT_T0_DSSD_Y41_T 901.488 -0.109045
+MUSETT_T0_DSSD_Y42_T 900.453 -0.108924
+MUSETT_T0_DSSD_Y43_T 911.154 -0.110196
+MUSETT_T0_DSSD_Y44_T 908.4 -0.109895
+MUSETT_T0_DSSD_Y45_T 903.164 -0.10924
+MUSETT_T0_DSSD_Y46_T 913.419 -0.110513
+MUSETT_T0_DSSD_Y47_T 901.371 -0.109056
+MUSETT_T0_DSSD_Y48_T 855.809 -0.103507
+MUSETT_T0_DSSD_Y49_T 866.963 -0.104888
+MUSETT_T0_DSSD_Y50_T 862.301 -0.104347
+MUSETT_T0_DSSD_Y51_T 879.214 -0.106391
+MUSETT_T0_DSSD_Y52_T 881.851 -0.106718
+MUSETT_T0_DSSD_Y53_T 883.115 -0.106878
+MUSETT_T0_DSSD_Y54_T 879.659 -0.106441
+MUSETT_T0_DSSD_Y55_T 887.765 -0.107426
+MUSETT_T0_DSSD_Y56_T 889.179 -0.107608
+MUSETT_T0_DSSD_Y57_T 893.434 -0.108136
+MUSETT_T0_DSSD_Y58_T 900.612 -0.109012
+MUSETT_T0_DSSD_Y59_T 899.41 -0.108611
+MUSETT_T0_DSSD_Y60_T 898.225 -0.108719
+MUSETT_T0_DSSD_Y61_T 905.378 -0.109581
+MUSETT_T0_DSSD_Y62_T 899.576 -0.108895
+MUSETT_T0_DSSD_Y63_T 904.856 -0.109543
+MUSETT_T0_DSSD_Y64_T 964.166 -0.116469
+MUSETT_T0_DSSD_Y65_T 970.821 -0.117302
+MUSETT_T0_DSSD_Y66_T 976.54 -0.118012
+MUSETT_T0_DSSD_Y67_T 976.814 -0.118028
+MUSETT_T0_DSSD_Y68_T 979.621 -0.118378
+MUSETT_T0_DSSD_Y69_T 983.271 -0.118825
+MUSETT_T0_DSSD_Y70_T 982.977 -0.118781
+MUSETT_T0_DSSD_Y71_T 986.021 -0.119156
+MUSETT_T0_DSSD_Y72_T 989.88 -0.119628
+MUSETT_T0_DSSD_Y73_T 981.368 -0.118591
+MUSETT_T0_DSSD_Y74_T 990.1 -0.119656
+MUSETT_T0_DSSD_Y75_T 1000.52 -0.120924
+MUSETT_T0_DSSD_Y76_T 995.667 -0.120327
+MUSETT_T0_DSSD_Y77_T 997.754 -0.120579
+MUSETT_T0_DSSD_Y78_T 994.951 -0.120247
+MUSETT_T0_DSSD_Y79_T 1001.99 -0.121097
+MUSETT_T0_DSSD_Y80_T 970.583 -0.117145
+MUSETT_T0_DSSD_Y81_T 986.462 -0.119118
+MUSETT_T0_DSSD_Y82_T 981.625 -0.118534
+MUSETT_T0_DSSD_Y83_T 996.206 -0.12031
+MUSETT_T0_DSSD_Y84_T 1000.06 -0.120777
+MUSETT_T0_DSSD_Y85_T 1002.53 -0.121085
+MUSETT_T0_DSSD_Y86_T 998.357 -0.120569
+MUSETT_T0_DSSD_Y87_T 1008.76 -0.121839
+MUSETT_T0_DSSD_Y88_T 1004.65 -0.121339
+MUSETT_T0_DSSD_Y89_T 1015.0 -0.122592
+MUSETT_T0_DSSD_Y90_T 1025.62 -0.123897
+MUSETT_T0_DSSD_Y91_T 1025.41 -0.123866
+MUSETT_T0_DSSD_Y92_T 1020.27 -0.123256
+MUSETT_T0_DSSD_Y93_T 1024.71 -0.123786
+MUSETT_T0_DSSD_Y94_T 1021.51 -0.123408
+MUSETT_T0_DSSD_Y95_T 1016.94 -0.122879
+MUSETT_T0_DSSD_Y96_T 882.97 -0.106544
+MUSETT_T0_DSSD_Y97_T 879.326 -0.106139
+MUSETT_T0_DSSD_Y98_T 878.449 -0.106028
+MUSETT_T0_DSSD_Y99_T 894.979 -0.108041
+MUSETT_T0_DSSD_Y100_T 892.203 -0.107707
+MUSETT_T0_DSSD_Y101_T 891.015 -0.10757
+MUSETT_T0_DSSD_Y102_T 895.424 -0.108105
+MUSETT_T0_DSSD_Y103_T 907.578 -0.10959
+MUSETT_T0_DSSD_Y104_T 902.147 -0.108916
+MUSETT_T0_DSSD_Y105_T 915.536 -0.110544
+MUSETT_T0_DSSD_Y106_T 910.897 -0.109981
+MUSETT_T0_DSSD_Y107_T 915.092 -0.11051
+MUSETT_T0_DSSD_Y108_T 914.664 -0.110421
+MUSETT_T0_DSSD_Y109_T 910.113 -0.109894
+MUSETT_T0_DSSD_Y110_T 915.675 -0.110572
+MUSETT_T0_DSSD_Y111_T 917.59 -0.110803
+MUSETT_T0_DSSD_Y112_T 892.441 -0.107535
+MUSETT_T0_DSSD_Y113_T 899.913 -0.108466
+MUSETT_T0_DSSD_Y114_T 899.438 -0.108438
+MUSETT_T0_DSSD_Y115_T 905.439 -0.109158
+MUSETT_T0_DSSD_Y116_T 917.108 -0.110566
+MUSETT_T0_DSSD_Y117_T 910.331 -0.109757
+MUSETT_T0_DSSD_Y118_T 930.135 -0.112167
+MUSETT_T0_DSSD_Y119_T 921.847 -0.111146
+MUSETT_T0_DSSD_Y120_T 932.043 -0.112407
+MUSETT_T0_DSSD_Y121_T 931.497 -0.112337
+MUSETT_T0_DSSD_Y122_T 933.275 -0.112539
+MUSETT_T0_DSSD_Y123_T 936.749 -0.112978
+MUSETT_T0_DSSD_Y124_T 931.392 -0.112316
+MUSETT_T0_DSSD_Y125_T 930.352 -0.112192
+MUSETT_T0_DSSD_Y126_T 927.302 -0.111821
+MUSETT_T0_DSSD_Y127_T 930.24 -0.112162
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..25335e8eb5d450a665765bd0a4d5645c6ba6855e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E -62.3845 0.00761517
+MUSETT_T1_DSSD_X1_E -62.2104 0.00759389
+MUSETT_T1_DSSD_X2_E -62.2735 0.00760161
+MUSETT_T1_DSSD_X3_E -62.0191 0.007570599999999999
+MUSETT_T1_DSSD_X4_E -61.4765 0.00750432
+MUSETT_T1_DSSD_X5_E -61.597 0.00751908
+MUSETT_T1_DSSD_X6_E -62.319300000000005 0.00760717
+MUSETT_T1_DSSD_X7_E -61.4163 0.00749697
+MUSETT_T1_DSSD_X8_E -61.3271 0.00748611
+MUSETT_T1_DSSD_X9_E -61.4865 0.00750558
+MUSETT_T1_DSSD_X10_E -61.6734 0.00752832
+MUSETT_T1_DSSD_X11_E -61.7326 0.00753556
+MUSETT_T1_DSSD_X12_E -61.9632 0.00756376
+MUSETT_T1_DSSD_X13_E -61.4182 0.00749719
+MUSETT_T1_DSSD_X14_E -61.209 0.007471650000000001
+MUSETT_T1_DSSD_X15_E -61.9876 0.00756667
+MUSETT_T1_DSSD_X16_E -62.5544 0.007635919999999999
+MUSETT_T1_DSSD_X17_E -61.756 0.00753848
+MUSETT_T1_DSSD_X18_E -62.2641 0.00760048
+MUSETT_T1_DSSD_X19_E -61.9537 0.007562579999999999
+MUSETT_T1_DSSD_X20_E -62.913199999999996 0.0076796699999999996
+MUSETT_T1_DSSD_X21_E -62.1209 0.007583
+MUSETT_T1_DSSD_X22_E -62.709 0.00765477
+MUSETT_T1_DSSD_X23_E -62.39 0.00761587
+MUSETT_T1_DSSD_X24_E -62.229699999999994 0.0075962899999999995
+MUSETT_T1_DSSD_X25_E -61.997699999999995 0.00756794
+MUSETT_T1_DSSD_X26_E -62.0365 0.0075726199999999995
+MUSETT_T1_DSSD_X27_E -61.752 0.0075379800000000005
+MUSETT_T1_DSSD_X28_E -61.6556 0.00752623
+MUSETT_T1_DSSD_X29_E -62.7675 0.007661940000000001
+MUSETT_T1_DSSD_X30_E -61.803 0.00754422
+MUSETT_T1_DSSD_X31_E -62.7618 0.00766122
+MUSETT_T1_DSSD_X32_E -58.3035 0.00711703
+MUSETT_T1_DSSD_X33_E -58.3725 0.00712549
+MUSETT_T1_DSSD_X34_E -58.3599 0.00712397
+MUSETT_T1_DSSD_X35_E -58.2622 0.00711204
+MUSETT_T1_DSSD_X36_E -58.041 0.0070850900000000005
+MUSETT_T1_DSSD_X37_E -58.261 0.0071116700000000005
+MUSETT_T1_DSSD_X38_E -58.055699999999995 0.0070867000000000005
+MUSETT_T1_DSSD_X39_E -58.647400000000005 0.00715904
+MUSETT_T1_DSSD_X40_E -58.203900000000004 0.00710488
+MUSETT_T1_DSSD_X41_E -58.8939 0.00718895
+MUSETT_T1_DSSD_X42_E -58.0515 0.00708632
+MUSETT_T1_DSSD_X43_E -58.5394 0.0071458599999999995
+MUSETT_T1_DSSD_X44_E -58.5544 0.00714758
+MUSETT_T1_DSSD_X45_E -59.3359 0.00724309
+MUSETT_T1_DSSD_X46_E -58.7258 0.00716875
+MUSETT_T1_DSSD_X47_E -58.4657 0.007136770000000001
+MUSETT_T1_DSSD_X48_E -57.8688 0.0070639399999999995
+MUSETT_T1_DSSD_X49_E -58.5298 0.00714462
+MUSETT_T1_DSSD_X50_E -57.9728 0.00707665
+MUSETT_T1_DSSD_X51_E -57.7251 0.00704637
+MUSETT_T1_DSSD_X52_E -57.9466 0.00707339
+MUSETT_T1_DSSD_X53_E -57.9195 0.00707013
+MUSETT_T1_DSSD_X54_E -57.971 0.00707643
+MUSETT_T1_DSSD_X55_E -57.8129 0.00705708
+MUSETT_T1_DSSD_X56_E -58.0595 0.00708722
+MUSETT_T1_DSSD_X57_E -57.8609 0.00706295
+MUSETT_T1_DSSD_X58_E -58.481199999999994 0.0071386900000000005
+MUSETT_T1_DSSD_X59_E -57.6735 0.00704005
+MUSETT_T1_DSSD_X60_E -57.7339 0.007047469999999999
+MUSETT_T1_DSSD_X61_E -58.243 0.00710961
+MUSETT_T1_DSSD_X62_E -58.1142 0.00709391
+MUSETT_T1_DSSD_X63_E -58.2467 0.0071100700000000005
+MUSETT_T1_DSSD_X64_E -61.0093 0.00744733
+MUSETT_T1_DSSD_X65_E -61.6307 0.00752317
+MUSETT_T1_DSSD_X66_E -61.4718 0.00750372
+MUSETT_T1_DSSD_X67_E -61.7169 0.0075336100000000005
+MUSETT_T1_DSSD_X68_E -61.8935 0.00755524
+MUSETT_T1_DSSD_X69_E -61.3286 0.007486329999999999
+MUSETT_T1_DSSD_X70_E -61.623400000000004 0.0075222100000000005
+MUSETT_T1_DSSD_X71_E -61.9118 0.00755752
+MUSETT_T1_DSSD_X72_E -61.2791 0.007480260000000001
+MUSETT_T1_DSSD_X73_E -62.4381 0.007621749999999999
+MUSETT_T1_DSSD_X74_E -61.9378 0.0075606200000000005
+MUSETT_T1_DSSD_X75_E -62.0787 0.0075778600000000005
+MUSETT_T1_DSSD_X76_E -61.4964 0.00750682
+MUSETT_T1_DSSD_X77_E -61.721199999999996 0.00753417
+MUSETT_T1_DSSD_X78_E -61.3211 0.00748534
+MUSETT_T1_DSSD_X79_E -61.9309 0.00755971
+MUSETT_T1_DSSD_X80_E -63.4259 0.007742300000000001
+MUSETT_T1_DSSD_X81_E -63.726 0.00777898
+MUSETT_T1_DSSD_X82_E -64.2118 0.00783822
+MUSETT_T1_DSSD_X83_E -63.931 0.00780396
+MUSETT_T1_DSSD_X84_E -64.1147 0.007826399999999999
+MUSETT_T1_DSSD_X85_E -63.8814 0.0077979
+MUSETT_T1_DSSD_X86_E -64.0891 0.00782321
+MUSETT_T1_DSSD_X87_E -64.226 0.00783998
+MUSETT_T1_DSSD_X88_E -64.1628 0.00783225
+MUSETT_T1_DSSD_X89_E -64.2273 0.00784014
+MUSETT_T1_DSSD_X90_E -63.3243 0.0077299199999999995
+MUSETT_T1_DSSD_X91_E -63.377900000000004 0.00773646
+MUSETT_T1_DSSD_X92_E -64.5924 0.007884750000000001
+MUSETT_T1_DSSD_X93_E -64.0512 0.00781864
+MUSETT_T1_DSSD_X94_E -63.7853 0.00778625
+MUSETT_T1_DSSD_X95_E -63.4251 0.00774221
+MUSETT_T1_DSSD_X96_E -56.2771 0.00686963
+MUSETT_T1_DSSD_X97_E -56.696400000000004 0.00692087
+MUSETT_T1_DSSD_X98_E -56.5242 0.00689973
+MUSETT_T1_DSSD_X99_E -56.4219 0.00688734
+MUSETT_T1_DSSD_X100_E -56.5169 0.00689896
+MUSETT_T1_DSSD_X101_E -56.9871 0.00695627
+MUSETT_T1_DSSD_X102_E -57.3419 0.00699957
+MUSETT_T1_DSSD_X103_E -56.5904 0.00690785
+MUSETT_T1_DSSD_X104_E -56.8425 0.00693859
+MUSETT_T1_DSSD_X105_E -57.029900000000005 0.00696151
+MUSETT_T1_DSSD_X106_E -57.8401 0.00706034
+MUSETT_T1_DSSD_X107_E -57.7541 0.007049870000000001
+MUSETT_T1_DSSD_X108_E -57.7184 0.00704556
+MUSETT_T1_DSSD_X109_E -57.495 0.00701832
+MUSETT_T1_DSSD_X110_E -57.6737 0.0070401
+MUSETT_T1_DSSD_X111_E -58.035199999999996 0.00708421
+MUSETT_T1_DSSD_X112_E -57.2543 0.00698888
+MUSETT_T1_DSSD_X113_E -57.309599999999996 0.00699565
+MUSETT_T1_DSSD_X114_E -56.8137 0.00693513
+MUSETT_T1_DSSD_X115_E -57.6843 0.00704141
+MUSETT_T1_DSSD_X116_E -57.2736 0.00699128
+MUSETT_T1_DSSD_X117_E -57.2633 0.0069900200000000004
+MUSETT_T1_DSSD_X118_E -56.331199999999995 0.00687626
+MUSETT_T1_DSSD_X119_E -58.331 0.00712035
+MUSETT_T1_DSSD_X120_E -57.4483 0.0070126
+MUSETT_T1_DSSD_X121_E -57.7637 0.00705109
+MUSETT_T1_DSSD_X122_E -57.724199999999996 0.00704628
+MUSETT_T1_DSSD_X123_E -57.4583 0.007013849999999999
+MUSETT_T1_DSSD_X124_E -57.5865 0.0070294699999999995
+MUSETT_T1_DSSD_X125_E -57.6715 0.00703982
+MUSETT_T1_DSSD_X126_E -57.0766 0.0069672
+MUSETT_T1_DSSD_X127_E -57.8189 0.007057839999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..4f2ff00b21e3e2cd35eb213bcf9ddf7431b4902a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_E 59.6282 -0.0072789099999999995
+MUSETT_T1_DSSD_Y1_E 60.484199999999994 -0.0073834
+MUSETT_T1_DSSD_Y2_E 59.719300000000004 -0.00729006
+MUSETT_T1_DSSD_Y3_E 59.358 -0.00724601
+MUSETT_T1_DSSD_Y4_E 60.2094 -0.00734991
+MUSETT_T1_DSSD_Y5_E 60.023900000000005 -0.00732724
+MUSETT_T1_DSSD_Y6_E 59.4274 -0.007254419999999999
+MUSETT_T1_DSSD_Y7_E 59.479800000000004 -0.00726081
+MUSETT_T1_DSSD_Y8_E 59.4726 -0.00725995
+MUSETT_T1_DSSD_Y9_E 59.6615 -0.00728303
+MUSETT_T1_DSSD_Y10_E 59.523 -0.0072661
+MUSETT_T1_DSSD_Y11_E 59.5207 -0.00726582
+MUSETT_T1_DSSD_Y12_E 60.207699999999996 -0.007349700000000001
+MUSETT_T1_DSSD_Y13_E 59.2816 -0.00723662
+MUSETT_T1_DSSD_Y14_E 59.4995 -0.0072632899999999995
+MUSETT_T1_DSSD_Y15_E 59.822199999999995 -0.00730262
+MUSETT_T1_DSSD_Y16_E 62.231 -0.00759672
+MUSETT_T1_DSSD_Y17_E 62.5176 -0.00763166
+MUSETT_T1_DSSD_Y18_E 62.4625 -0.00762493
+MUSETT_T1_DSSD_Y19_E 62.047 -0.00757417
+MUSETT_T1_DSSD_Y20_E 62.207300000000004 -0.00759375
+MUSETT_T1_DSSD_Y21_E 62.3629 -0.0076127700000000005
+MUSETT_T1_DSSD_Y22_E -10.0 0.0
+MUSETT_T1_DSSD_Y23_E 62.0175 -0.00757064
+MUSETT_T1_DSSD_Y24_E 61.7139 -0.00753355
+MUSETT_T1_DSSD_Y25_E 61.4491 -0.007501229999999999
+MUSETT_T1_DSSD_Y26_E 62.0861 -0.00757898
+MUSETT_T1_DSSD_Y27_E 62.0777 -0.00757796
+MUSETT_T1_DSSD_Y28_E 62.2876 -0.00760362
+MUSETT_T1_DSSD_Y29_E 62.0279 -0.0075719
+MUSETT_T1_DSSD_Y30_E 61.6686 -0.00752799
+MUSETT_T1_DSSD_Y31_E 61.8048 -0.00754468
+MUSETT_T1_DSSD_Y32_E 56.1157 -0.006850220000000001
+MUSETT_T1_DSSD_Y33_E 56.2557 -0.00686728
+MUSETT_T1_DSSD_Y34_E 55.6349 -0.00679153
+MUSETT_T1_DSSD_Y35_E 55.6409 -0.00679227
+MUSETT_T1_DSSD_Y36_E 55.3843 -0.006760919999999999
+MUSETT_T1_DSSD_Y37_E 56.4204 -0.006887450000000001
+MUSETT_T1_DSSD_Y38_E 55.380900000000004 -0.00676051
+MUSETT_T1_DSSD_Y39_E 55.9348 -0.00682817
+MUSETT_T1_DSSD_Y40_E 56.0365 -0.00684053
+MUSETT_T1_DSSD_Y41_E 56.1492 -0.0068543399999999996
+MUSETT_T1_DSSD_Y42_E 55.5099 -0.00677625
+MUSETT_T1_DSSD_Y43_E 56.6373 -0.0069139
+MUSETT_T1_DSSD_Y44_E 55.6379 -0.00679188
+MUSETT_T1_DSSD_Y45_E 55.7303 -0.00680315
+MUSETT_T1_DSSD_Y46_E 55.751599999999996 -0.00680582
+MUSETT_T1_DSSD_Y47_E 55.7609 -0.00680693
+MUSETT_T1_DSSD_Y48_E 57.1947 -0.0069819
+MUSETT_T1_DSSD_Y49_E 56.616699999999994 -0.00691132
+MUSETT_T1_DSSD_Y50_E 56.5651 -0.0069050399999999994
+MUSETT_T1_DSSD_Y51_E 56.0075 -0.0068369400000000006
+MUSETT_T1_DSSD_Y52_E 56.8389 -0.0069384600000000005
+MUSETT_T1_DSSD_Y53_E 56.277 -0.00686982
+MUSETT_T1_DSSD_Y54_E 56.4758 -0.00689415
+MUSETT_T1_DSSD_Y55_E 56.3949 -0.00688425
+MUSETT_T1_DSSD_Y56_E 57.2861 -0.0069930700000000005
+MUSETT_T1_DSSD_Y57_E 57.107699999999994 -0.00697128
+MUSETT_T1_DSSD_Y58_E 56.704699999999995 -0.00692209
+MUSETT_T1_DSSD_Y59_E 57.3292 -0.00699832
+MUSETT_T1_DSSD_Y60_E 57.3988 -0.007006770000000001
+MUSETT_T1_DSSD_Y61_E 57.025800000000004 -0.0069612499999999996
+MUSETT_T1_DSSD_Y62_E 56.1794 -0.00685794
+MUSETT_T1_DSSD_Y63_E 57.2945 -0.00699407
+MUSETT_T1_DSSD_Y64_E 61.036 -0.00745079
+MUSETT_T1_DSSD_Y65_E 61.615199999999994 -0.00752147
+MUSETT_T1_DSSD_Y66_E 61.3277 -0.00748646
+MUSETT_T1_DSSD_Y67_E 61.6169 -0.00752169
+MUSETT_T1_DSSD_Y68_E 61.2895 -0.00748175
+MUSETT_T1_DSSD_Y69_E 60.072300000000006 -0.007333129999999999
+MUSETT_T1_DSSD_Y70_E 60.461800000000004 -0.00738072
+MUSETT_T1_DSSD_Y71_E 61.1475 -0.00746439
+MUSETT_T1_DSSD_Y72_E 60.3246 -0.00736394
+MUSETT_T1_DSSD_Y73_E 61.243300000000005 -0.00747609
+MUSETT_T1_DSSD_Y74_E 60.892199999999995 -0.00743321
+MUSETT_T1_DSSD_Y75_E 60.3626 -0.00736861
+MUSETT_T1_DSSD_Y76_E 60.5634 -0.0073931199999999996
+MUSETT_T1_DSSD_Y77_E 60.9695 -0.00744272
+MUSETT_T1_DSSD_Y78_E 60.632 -0.00740146
+MUSETT_T1_DSSD_Y79_E 61.3545 -0.0074896599999999995
+MUSETT_T1_DSSD_Y80_E 61.129 -0.00746218
+MUSETT_T1_DSSD_Y81_E 61.1424 -0.00746376
+MUSETT_T1_DSSD_Y82_E 61.0982 -0.00745836
+MUSETT_T1_DSSD_Y83_E 60.505 -0.00738602
+MUSETT_T1_DSSD_Y84_E 60.4756 -0.00738236
+MUSETT_T1_DSSD_Y85_E 61.1983 -0.00747058
+MUSETT_T1_DSSD_Y86_E 60.653800000000004 -0.00740421
+MUSETT_T1_DSSD_Y87_E 60.6103 -0.007398869999999999
+MUSETT_T1_DSSD_Y88_E 61.0846 -0.00745673
+MUSETT_T1_DSSD_Y89_E 61.2816 -0.00748082
+MUSETT_T1_DSSD_Y90_E 60.7595 -0.00741709
+MUSETT_T1_DSSD_Y91_E 60.908699999999996 -0.00743532
+MUSETT_T1_DSSD_Y92_E 60.5201 -0.00738782
+MUSETT_T1_DSSD_Y93_E 61.3305 -0.00748678
+MUSETT_T1_DSSD_Y94_E 61.6099 -0.00752084
+MUSETT_T1_DSSD_Y95_E 60.752199999999995 -0.00741622
+MUSETT_T1_DSSD_Y96_E 55.8662 -0.0068197200000000005
+MUSETT_T1_DSSD_Y97_E 55.5101 -0.006776290000000001
+MUSETT_T1_DSSD_Y98_E 55.7391 -0.00680422
+MUSETT_T1_DSSD_Y99_E 55.6027 -0.00678757
+MUSETT_T1_DSSD_Y100_E 55.7795 -0.006809160000000001
+MUSETT_T1_DSSD_Y101_E 55.4526 -0.00676931
+MUSETT_T1_DSSD_Y102_E 55.433800000000005 -0.00676695
+MUSETT_T1_DSSD_Y103_E 56.1758 -0.00685753
+MUSETT_T1_DSSD_Y104_E 55.295 -0.00675003
+MUSETT_T1_DSSD_Y105_E 55.2676 -0.00674664
+MUSETT_T1_DSSD_Y106_E 55.9134 -0.00682548
+MUSETT_T1_DSSD_Y107_E 55.219 -0.00674076
+MUSETT_T1_DSSD_Y108_E 55.914699999999996 -0.00682563
+MUSETT_T1_DSSD_Y109_E 56.088300000000004 -0.00684683
+MUSETT_T1_DSSD_Y110_E 56.128699999999995 -0.00685177
+MUSETT_T1_DSSD_Y111_E 56.579699999999995 -0.006906799999999999
+MUSETT_T1_DSSD_Y112_E 54.7919 -0.006688609999999999
+MUSETT_T1_DSSD_Y113_E 55.5735 -0.00678397
+MUSETT_T1_DSSD_Y114_E 55.1773 -0.00673564
+MUSETT_T1_DSSD_Y115_E 55.0659 -0.0067220000000000005
+MUSETT_T1_DSSD_Y116_E 55.2711 -0.00674706
+MUSETT_T1_DSSD_Y117_E 55.4264 -0.00676607
+MUSETT_T1_DSSD_Y118_E 55.3089 -0.006751699999999999
+MUSETT_T1_DSSD_Y119_E 55.5605 -0.00678242
+MUSETT_T1_DSSD_Y120_E 55.8284 -0.0068151
+MUSETT_T1_DSSD_Y121_E 55.4619 -0.00677042
+MUSETT_T1_DSSD_Y122_E 54.836400000000005 -0.00669404
+MUSETT_T1_DSSD_Y123_E 55.154199999999996 -0.006732770000000001
+MUSETT_T1_DSSD_Y124_E 55.2185 -0.00674067
+MUSETT_T1_DSSD_Y125_E 55.1989 -0.00673821
+MUSETT_T1_DSSD_Y126_E 55.347199999999994 -0.00675638
+MUSETT_T1_DSSD_Y127_E 56.2705 -0.00686904
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2dbc58f87a8a21d156c060f3c44a33c496cfccc2
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_T 926.786 -0.11232
+MUSETT_T1_DSSD_X1_T 940.575 -0.114015
+MUSETT_T1_DSSD_X2_T 943.089 -0.114341
+MUSETT_T1_DSSD_X3_T 954.304 -0.115712
+MUSETT_T1_DSSD_X4_T 954.653 -0.115744
+MUSETT_T1_DSSD_X5_T 956.573 -0.115962
+MUSETT_T1_DSSD_X6_T 970.061 -0.117589
+MUSETT_T1_DSSD_X7_T 965.116 -0.116998
+MUSETT_T1_DSSD_X8_T 969.325 -0.117498
+MUSETT_T1_DSSD_X9_T 978.231 -0.118577
+MUSETT_T1_DSSD_X10_T 974.593 -0.118143
+MUSETT_T1_DSSD_X11_T 974.146 -0.118071
+MUSETT_T1_DSSD_X12_T 986.191 -0.11954
+MUSETT_T1_DSSD_X13_T 986.678 -0.119597
+MUSETT_T1_DSSD_X14_T 983.727 -0.119236
+MUSETT_T1_DSSD_X15_T 1371.19 -0.119179
+MUSETT_T1_DSSD_X16_T 922.557 -0.111777
+MUSETT_T1_DSSD_X17_T 945.525 -0.114612
+MUSETT_T1_DSSD_X18_T 946.378 -0.114738
+MUSETT_T1_DSSD_X19_T 943.86 -0.114439
+MUSETT_T1_DSSD_X20_T 952.199 -0.115464
+MUSETT_T1_DSSD_X21_T 965.45 -0.117052
+MUSETT_T1_DSSD_X22_T 954.947 -0.115762
+MUSETT_T1_DSSD_X23_T 971.26 -0.117739
+MUSETT_T1_DSSD_X24_T 969.364 -0.117531
+MUSETT_T1_DSSD_X25_T 972.531 -0.117923
+MUSETT_T1_DSSD_X26_T 971.171 -0.117737
+MUSETT_T1_DSSD_X27_T 974.954 -0.11821
+MUSETT_T1_DSSD_X28_T 978.834 -0.118677
+MUSETT_T1_DSSD_X29_T 975.807 -0.118324
+MUSETT_T1_DSSD_X30_T 974.804 -0.118198
+MUSETT_T1_DSSD_X31_T 984.936 -0.119148
+MUSETT_T1_DSSD_X32_T 875.904 -0.106165
+MUSETT_T1_DSSD_X33_T 875.79 -0.10618
+MUSETT_T1_DSSD_X34_T 891.706 -0.108064
+MUSETT_T1_DSSD_X35_T 873.845 -0.105941
+MUSETT_T1_DSSD_X36_T 891.762 -0.108105
+MUSETT_T1_DSSD_X37_T 897.589 -0.108823
+MUSETT_T1_DSSD_X38_T 889.745 -0.107861
+MUSETT_T1_DSSD_X39_T 894.521 -0.10842
+MUSETT_T1_DSSD_X40_T 897.332 -0.108779
+MUSETT_T1_DSSD_X41_T 897.319 -0.108754
+MUSETT_T1_DSSD_X42_T 905.732 -0.109783
+MUSETT_T1_DSSD_X43_T 897.833 -0.108855
+MUSETT_T1_DSSD_X44_T 907.458 -0.110019
+MUSETT_T1_DSSD_X45_T 905.696 -0.109854
+MUSETT_T1_DSSD_X46_T 903.207 -0.109528
+MUSETT_T1_DSSD_X47_T 918.195 -0.110055
+MUSETT_T1_DSSD_X48_T 865.632 -0.104838
+MUSETT_T1_DSSD_X49_T 871.03 -0.105455
+MUSETT_T1_DSSD_X50_T 883.706 -0.107015
+MUSETT_T1_DSSD_X51_T 886.118 -0.107338
+MUSETT_T1_DSSD_X52_T 888.977 -0.107685
+MUSETT_T1_DSSD_X53_T 889.176 -0.107699
+MUSETT_T1_DSSD_X54_T 893.053 -0.10819
+MUSETT_T1_DSSD_X55_T 898.958 -0.108878
+MUSETT_T1_DSSD_X56_T 905.343 -0.1097
+MUSETT_T1_DSSD_X57_T 901.014 -0.10916
+MUSETT_T1_DSSD_X58_T 909.801 -0.110244
+MUSETT_T1_DSSD_X59_T 902.356 -0.109308
+MUSETT_T1_DSSD_X60_T 915.181 -0.110894
+MUSETT_T1_DSSD_X61_T 906.646 -0.109867
+MUSETT_T1_DSSD_X62_T 906.177 -0.109791
+MUSETT_T1_DSSD_X63_T 917.322 -0.110777
+MUSETT_T1_DSSD_X64_T 947.375 -0.114723
+MUSETT_T1_DSSD_X65_T 949.155 -0.114949
+MUSETT_T1_DSSD_X66_T 962.658 -0.116629
+MUSETT_T1_DSSD_X67_T 962.29 -0.116557
+MUSETT_T1_DSSD_X68_T 964.501 -0.116827
+MUSETT_T1_DSSD_X69_T 972.559 -0.117811
+MUSETT_T1_DSSD_X70_T 972.248 -0.117758
+MUSETT_T1_DSSD_X71_T 977.48 -0.118392
+MUSETT_T1_DSSD_X72_T 974.838 -0.118063
+MUSETT_T1_DSSD_X73_T 989.581 -0.119853
+MUSETT_T1_DSSD_X74_T 985.59 -0.119377
+MUSETT_T1_DSSD_X75_T 983.734 -0.119141
+MUSETT_T1_DSSD_X76_T 990.699 -0.119982
+MUSETT_T1_DSSD_X77_T 992.465 -0.120199
+MUSETT_T1_DSSD_X78_T 992.485 -0.1202
+MUSETT_T1_DSSD_X79_T 1375.52 -0.120722
+MUSETT_T1_DSSD_X80_T 972.687 -0.117775
+MUSETT_T1_DSSD_X81_T 974.84 -0.118024
+MUSETT_T1_DSSD_X82_T 979.911 -0.118652
+MUSETT_T1_DSSD_X83_T 993.406 -0.120307
+MUSETT_T1_DSSD_X84_T 992.814 -0.120215
+MUSETT_T1_DSSD_X85_T 1002.31 -0.121389
+MUSETT_T1_DSSD_X86_T 1003.74 -0.121554
+MUSETT_T1_DSSD_X87_T 995.588 -0.12057
+MUSETT_T1_DSSD_X88_T 1010.12 -0.122345
+MUSETT_T1_DSSD_X89_T 1012.32 -0.12261
+MUSETT_T1_DSSD_X90_T 1007.94 -0.122082
+MUSETT_T1_DSSD_X91_T 1014.03 -0.12282
+MUSETT_T1_DSSD_X92_T 1013.77 -0.12279
+MUSETT_T1_DSSD_X93_T 1016.53 -0.123127
+MUSETT_T1_DSSD_X94_T 1016.3 -0.123096
+MUSETT_T1_DSSD_X95_T 1004.26 -0.12163
+MUSETT_T1_DSSD_X96_T 888.673 -0.107613
+MUSETT_T1_DSSD_X97_T 886.825 -0.107373
+MUSETT_T1_DSSD_X98_T 890.552 -0.107838
+MUSETT_T1_DSSD_X99_T 901.931 -0.109224
+MUSETT_T1_DSSD_X100_T 901.707 -0.1092
+MUSETT_T1_DSSD_X101_T 906.676 -0.109791
+MUSETT_T1_DSSD_X102_T 902.249 -0.109268
+MUSETT_T1_DSSD_X103_T 917.913 -0.111151
+MUSETT_T1_DSSD_X104_T 919.118 -0.11128
+MUSETT_T1_DSSD_X105_T 920.502 -0.111467
+MUSETT_T1_DSSD_X106_T 925.286 -0.112035
+MUSETT_T1_DSSD_X107_T 920.839 -0.111519
+MUSETT_T1_DSSD_X108_T 921.752 -0.111616
+MUSETT_T1_DSSD_X109_T 913.537 -0.110627
+MUSETT_T1_DSSD_X110_T 916.058 -0.110941
+MUSETT_T1_DSSD_X111_T 924.322 -0.11176
+MUSETT_T1_DSSD_X112_T 897.027 -0.108476
+MUSETT_T1_DSSD_X113_T 897.77 -0.108567
+MUSETT_T1_DSSD_X114_T 905.06 -0.10946
+MUSETT_T1_DSSD_X115_T 910.605 -0.110136
+MUSETT_T1_DSSD_X116_T 925.57 -0.111977
+MUSETT_T1_DSSD_X117_T 920.161 -0.111304
+MUSETT_T1_DSSD_X118_T 932.296 -0.112781
+MUSETT_T1_DSSD_X119_T 914.819 -0.110659
+MUSETT_T1_DSSD_X120_T 920.284 -0.111325
+MUSETT_T1_DSSD_X121_T 927.772 -0.112226
+MUSETT_T1_DSSD_X122_T 928.866 -0.11236
+MUSETT_T1_DSSD_X123_T 924.041 -0.111775
+MUSETT_T1_DSSD_X124_T 921.484 -0.111483
+MUSETT_T1_DSSD_X125_T 927.438 -0.112193
+MUSETT_T1_DSSD_X126_T 930.757 -0.112614
+MUSETT_T1_DSSD_X127_T 924.698 -0.111864
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c68402d0ef8eb89f484440e367ee91280c30e12e
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_T 930.899 -0.11282
+MUSETT_T1_DSSD_Y1_T 932.297 -0.113022
+MUSETT_T1_DSSD_Y2_T 943.292 -0.114361
+MUSETT_T1_DSSD_Y3_T 947.201 -0.114834
+MUSETT_T1_DSSD_Y4_T 949.524 -0.115122
+MUSETT_T1_DSSD_Y5_T 952.95 -0.115533
+MUSETT_T1_DSSD_Y6_T 956.311 -0.115938
+MUSETT_T1_DSSD_Y7_T 946.369 -0.114726
+MUSETT_T1_DSSD_Y8_T 953.576 -0.11562
+MUSETT_T1_DSSD_Y9_T 964.215 -0.116854
+MUSETT_T1_DSSD_Y10_T 959.98 -0.116368
+MUSETT_T1_DSSD_Y11_T 967.734 -0.117327
+MUSETT_T1_DSSD_Y12_T 967.914 -0.117358
+MUSETT_T1_DSSD_Y13_T 963.677 -0.116827
+MUSETT_T1_DSSD_Y14_T 965.026 -0.116981
+MUSETT_T1_DSSD_Y15_T 962.695 -0.116717
+MUSETT_T1_DSSD_Y16_T 964.683 -0.116883
+MUSETT_T1_DSSD_Y17_T 966.649 -0.117128
+MUSETT_T1_DSSD_Y18_T 971.034 -0.117665
+MUSETT_T1_DSSD_Y19_T 971.558 -0.117743
+MUSETT_T1_DSSD_Y20_T 983.103 -0.119146
+MUSETT_T1_DSSD_Y21_T 979.702 -0.118747
+MUSETT_T1_DSSD_Y22_T 450.0 -0.119189
+MUSETT_T1_DSSD_Y23_T 989.487 -0.119964
+MUSETT_T1_DSSD_Y24_T 991.153 -0.120158
+MUSETT_T1_DSSD_Y25_T 991.247 -0.120176
+MUSETT_T1_DSSD_Y26_T 995.752 -0.120728
+MUSETT_T1_DSSD_Y27_T 990.621 -0.120113
+MUSETT_T1_DSSD_Y28_T 992.588 -0.120339
+MUSETT_T1_DSSD_Y29_T 983.94 -0.119308
+MUSETT_T1_DSSD_Y30_T 990.472 -0.120108
+MUSETT_T1_DSSD_Y31_T 985.366 -0.119515
+MUSETT_T1_DSSD_Y32_T 879.895 -0.106691
+MUSETT_T1_DSSD_Y33_T 885.732 -0.10745
+MUSETT_T1_DSSD_Y34_T 880.947 -0.106848
+MUSETT_T1_DSSD_Y35_T 890.881 -0.108037
+MUSETT_T1_DSSD_Y36_T 850641000000.0 -103827000.0
+MUSETT_T1_DSSD_Y37_T 901.269 -0.109433
+MUSETT_T1_DSSD_Y38_T 900.483 -0.110242
+MUSETT_T1_DSSD_Y39_T 902.133 -0.10944
+MUSETT_T1_DSSD_Y40_T 890.343 -0.107957
+MUSETT_T1_DSSD_Y41_T 902.898 -0.109521
+MUSETT_T1_DSSD_Y42_T 895.657 -0.108623
+MUSETT_T1_DSSD_Y43_T 904.61 -0.10969
+MUSETT_T1_DSSD_Y44_T 907.072 -0.109989
+MUSETT_T1_DSSD_Y45_T 901.222 -0.109312
+MUSETT_T1_DSSD_Y46_T 905.951 -0.109844
+MUSETT_T1_DSSD_Y47_T 901.159 -0.109257
+MUSETT_T1_DSSD_Y48_T 883.344 -0.10696
+MUSETT_T1_DSSD_Y49_T 882.465 -0.106852
+MUSETT_T1_DSSD_Y50_T 878.872 -0.106436
+MUSETT_T1_DSSD_Y51_T 892.099 -0.108049
+MUSETT_T1_DSSD_Y52_T 897.834 -0.108781
+MUSETT_T1_DSSD_Y53_T 899.02 -0.108923
+MUSETT_T1_DSSD_Y54_T 898.979 -0.108922
+MUSETT_T1_DSSD_Y55_T 899.225 -0.108949
+MUSETT_T1_DSSD_Y56_T 911.018 -0.110395
+MUSETT_T1_DSSD_Y57_T 910.225 -0.110294
+MUSETT_T1_DSSD_Y58_T 905.692 -0.109746
+MUSETT_T1_DSSD_Y59_T 908.504 -0.109802
+MUSETT_T1_DSSD_Y60_T 905.665 -0.109742
+MUSETT_T1_DSSD_Y61_T 913.658 -0.11072
+MUSETT_T1_DSSD_Y62_T 915.004 -0.110879
+MUSETT_T1_DSSD_Y63_T 915.999 -0.111037
+MUSETT_T1_DSSD_Y64_T 945.876 -0.115194
+MUSETT_T1_DSSD_Y65_T 952.653 -0.116053
+MUSETT_T1_DSSD_Y66_T 958.599 -0.116788
+MUSETT_T1_DSSD_Y67_T 962.073 -0.117211
+MUSETT_T1_DSSD_Y68_T 965.512 -0.117617
+MUSETT_T1_DSSD_Y69_T 973.646 -0.118609
+MUSETT_T1_DSSD_Y70_T 969.091 -0.118053
+MUSETT_T1_DSSD_Y71_T 977.205 -0.119038
+MUSETT_T1_DSSD_Y72_T 978.244 -0.119163
+MUSETT_T1_DSSD_Y73_T 981.509 -0.119552
+MUSETT_T1_DSSD_Y74_T 983.33 -0.119777
+MUSETT_T1_DSSD_Y75_T 980.28 -0.119391
+MUSETT_T1_DSSD_Y76_T 987.378 -0.11981
+MUSETT_T1_DSSD_Y77_T 981.221 -0.119505
+MUSETT_T1_DSSD_Y78_T 982.019 -0.119601
+MUSETT_T1_DSSD_Y79_T 986.869 -0.120194
+MUSETT_T1_DSSD_Y80_T 942.041 -0.114646
+MUSETT_T1_DSSD_Y81_T 950.256 -0.115676
+MUSETT_T1_DSSD_Y82_T 949.146 -0.115551
+MUSETT_T1_DSSD_Y83_T 956.132 -0.116392
+MUSETT_T1_DSSD_Y84_T 955.603 -0.116344
+MUSETT_T1_DSSD_Y85_T 965.862 -0.117589
+MUSETT_T1_DSSD_Y86_T 966.696 -0.117699
+MUSETT_T1_DSSD_Y87_T 973.856 -0.118567
+MUSETT_T1_DSSD_Y88_T 974.942 -0.118705
+MUSETT_T1_DSSD_Y89_T 967.58 -0.117807
+MUSETT_T1_DSSD_Y90_T 972.217 -0.118376
+MUSETT_T1_DSSD_Y91_T 980.142 -0.119333
+MUSETT_T1_DSSD_Y92_T 980.758 -0.119429
+MUSETT_T1_DSSD_Y93_T 973.754 -0.118576
+MUSETT_T1_DSSD_Y94_T 977.548 -0.119031
+MUSETT_T1_DSSD_Y95_T 988.795 -0.120471
+MUSETT_T1_DSSD_Y96_T 871.404 -0.106136
+MUSETT_T1_DSSD_Y97_T 870.084 -0.106
+MUSETT_T1_DSSD_Y98_T 874.611 -0.106555
+MUSETT_T1_DSSD_Y99_T 888.655 -0.108263
+MUSETT_T1_DSSD_Y100_T 886.461 -0.10801
+MUSETT_T1_DSSD_Y101_T 878.586 -0.107044
+MUSETT_T1_DSSD_Y102_T 886.442 -0.108005
+MUSETT_T1_DSSD_Y103_T 889.81 -0.108406
+MUSETT_T1_DSSD_Y104_T 900.116 -0.109653
+MUSETT_T1_DSSD_Y105_T 896.798 -0.10926
+MUSETT_T1_DSSD_Y106_T 900.214 -0.10967
+MUSETT_T1_DSSD_Y107_T 890.896 -0.108536
+MUSETT_T1_DSSD_Y108_T 898.103 -0.109417
+MUSETT_T1_DSSD_Y109_T 905.123 -0.110268
+MUSETT_T1_DSSD_Y110_T 895.488 -0.109108
+MUSETT_T1_DSSD_Y111_T 901.504 -0.109824
+MUSETT_T1_DSSD_Y112_T 857.767 -0.104291
+MUSETT_T1_DSSD_Y113_T 851.391 -0.103549
+MUSETT_T1_DSSD_Y114_T 861.589 -0.104798
+MUSETT_T1_DSSD_Y115_T 856.553 -0.10419
+MUSETT_T1_DSSD_Y116_T 865.0 -0.105221
+MUSETT_T1_DSSD_Y117_T 874.383 -0.106354
+MUSETT_T1_DSSD_Y118_T 878.744 -0.1069
+MUSETT_T1_DSSD_Y119_T 873.451 -0.106252
+MUSETT_T1_DSSD_Y120_T 890.883 -0.108379
+MUSETT_T1_DSSD_Y121_T 891.802 -0.108492
+MUSETT_T1_DSSD_Y122_T 889.789 -0.108225
+MUSETT_T1_DSSD_Y123_T 888.888 -0.108132
+MUSETT_T1_DSSD_Y124_T 891.161 -0.108412
+MUSETT_T1_DSSD_Y125_T 886.515 -0.10784
+MUSETT_T1_DSSD_Y126_T 883.99 -0.107526
+MUSETT_T1_DSSD_Y127_T 947.91 -0.121191
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..3377583e8617d3622c02ba0a58094591e9dfebac
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E -62.771800000000006 0.00766248
+MUSETT_T2_DSSD_X1_E -62.536199999999994 0.00763367
+MUSETT_T2_DSSD_X2_E -62.923199999999994 0.007680920000000001
+MUSETT_T2_DSSD_X3_E -62.099199999999996 0.0075803
+MUSETT_T2_DSSD_X4_E -62.0716 0.0075769999999999995
+MUSETT_T2_DSSD_X5_E -62.7625 0.00766131
+MUSETT_T2_DSSD_X6_E -62.5366 0.00763372
+MUSETT_T2_DSSD_X7_E -62.8634 0.0076736
+MUSETT_T2_DSSD_X8_E -62.977599999999995 0.00768755
+MUSETT_T2_DSSD_X9_E -62.1692 0.00758889
+MUSETT_T2_DSSD_X10_E -62.4862 0.00762758
+MUSETT_T2_DSSD_X11_E -62.494 0.00762855
+MUSETT_T2_DSSD_X12_E -62.5914 0.0076403999999999994
+MUSETT_T2_DSSD_X13_E -62.5965 0.00764104
+MUSETT_T2_DSSD_X14_E -62.6933 0.00765283
+MUSETT_T2_DSSD_X15_E -63.4319 0.00774304
+MUSETT_T2_DSSD_X16_E -62.2755 0.00760186
+MUSETT_T2_DSSD_X17_E -61.847 0.007549559999999999
+MUSETT_T2_DSSD_X18_E -61.648900000000005 0.0075254200000000005
+MUSETT_T2_DSSD_X19_E -61.472199999999994 0.0075038
+MUSETT_T2_DSSD_X20_E -61.4877 0.0075057299999999995
+MUSETT_T2_DSSD_X21_E -62.3236 0.007607719999999999
+MUSETT_T2_DSSD_X22_E -62.160599999999995 0.00758783
+MUSETT_T2_DSSD_X23_E -61.8015 0.00754404
+MUSETT_T2_DSSD_X24_E -61.589400000000005 0.0075181300000000005
+MUSETT_T2_DSSD_X25_E -61.837900000000005 0.00754843
+MUSETT_T2_DSSD_X26_E -61.9972 0.00756788
+MUSETT_T2_DSSD_X27_E -61.886900000000004 0.00755441
+MUSETT_T2_DSSD_X28_E -61.669599999999996 0.00752787
+MUSETT_T2_DSSD_X29_E -61.3176 0.00748493
+MUSETT_T2_DSSD_X30_E -62.385400000000004 0.0076153
+MUSETT_T2_DSSD_X31_E -61.5448 0.007512710000000001
+MUSETT_T2_DSSD_X32_E -59.0051 0.00720263
+MUSETT_T2_DSSD_X33_E -58.1254 0.0070952
+MUSETT_T2_DSSD_X34_E -58.621 0.0071557700000000005
+MUSETT_T2_DSSD_X35_E -58.4208 0.00713128
+MUSETT_T2_DSSD_X36_E -58.1821 0.00710215
+MUSETT_T2_DSSD_X37_E -58.1795 0.00710183
+MUSETT_T2_DSSD_X38_E -58.3827 0.00712665
+MUSETT_T2_DSSD_X39_E -57.9516 0.0070739999999999996
+MUSETT_T2_DSSD_X40_E -57.6194 0.00703346
+MUSETT_T2_DSSD_X41_E -58.6028 0.007153489999999999
+MUSETT_T2_DSSD_X42_E -58.7636 0.0071731699999999995
+MUSETT_T2_DSSD_X43_E -58.295300000000005 0.00711601
+MUSETT_T2_DSSD_X44_E -58.6115 0.00715458
+MUSETT_T2_DSSD_X45_E -58.5695 0.00714945
+MUSETT_T2_DSSD_X46_E -58.3686 0.00712489
+MUSETT_T2_DSSD_X47_E -58.524699999999996 0.007144
+MUSETT_T2_DSSD_X48_E -57.829699999999995 0.00705919
+MUSETT_T2_DSSD_X49_E -57.177699999999994 0.00697958
+MUSETT_T2_DSSD_X50_E -58.151 0.0070983999999999995
+MUSETT_T2_DSSD_X51_E -57.925 0.00707083
+MUSETT_T2_DSSD_X52_E -57.600199999999994 0.00703119
+MUSETT_T2_DSSD_X53_E -57.219800000000006 0.0069847
+MUSETT_T2_DSSD_X54_E -57.8554 0.007062280000000001
+MUSETT_T2_DSSD_X55_E -57.682199999999995 0.007041159999999999
+MUSETT_T2_DSSD_X56_E -57.9126 0.00706929
+MUSETT_T2_DSSD_X57_E -57.5989 0.00703102
+MUSETT_T2_DSSD_X58_E -57.919599999999996 0.00707016
+MUSETT_T2_DSSD_X59_E -56.9985 0.0069577
+MUSETT_T2_DSSD_X60_E -57.4982 0.007018709999999999
+MUSETT_T2_DSSD_X61_E -56.729099999999995 0.00692483
+MUSETT_T2_DSSD_X62_E -57.5006 0.00701901
+MUSETT_T2_DSSD_X63_E -57.910599999999995 0.00706904
+MUSETT_T2_DSSD_X64_E -63.311 0.007728240000000001
+MUSETT_T2_DSSD_X65_E -64.9918 0.00793347
+MUSETT_T2_DSSD_X66_E -63.9945 0.0078117
+MUSETT_T2_DSSD_X67_E -63.7503 0.00778186
+MUSETT_T2_DSSD_X68_E -10.0 0.0
+MUSETT_T2_DSSD_X69_E -64.4085 0.007862280000000001
+MUSETT_T2_DSSD_X70_E -63.629 0.0077670199999999995
+MUSETT_T2_DSSD_X71_E -63.4388 0.00774388
+MUSETT_T2_DSSD_X72_E -63.3583 0.0077339900000000005
+MUSETT_T2_DSSD_X73_E -63.1446 0.00770793
+MUSETT_T2_DSSD_X74_E -63.8121 0.007789399999999999
+MUSETT_T2_DSSD_X75_E -63.6624 0.00777117
+MUSETT_T2_DSSD_X76_E -63.8769 0.00779733
+MUSETT_T2_DSSD_X77_E -63.7711 0.00778444
+MUSETT_T2_DSSD_X78_E -63.6521 0.0077699
+MUSETT_T2_DSSD_X79_E -63.600300000000004 0.00776358
+MUSETT_T2_DSSD_X80_E -63.2564 0.0077215800000000005
+MUSETT_T2_DSSD_X81_E -63.3337 0.00773107
+MUSETT_T2_DSSD_X82_E -63.15 0.00770859
+MUSETT_T2_DSSD_X83_E -63.2045 0.00771524
+MUSETT_T2_DSSD_X84_E -63.982099999999996 0.00781015
+MUSETT_T2_DSSD_X85_E -63.771300000000004 0.00778446
+MUSETT_T2_DSSD_X86_E -63.6827 0.0077737
+MUSETT_T2_DSSD_X87_E -63.921099999999996 0.00780269
+MUSETT_T2_DSSD_X88_E -63.090300000000006 0.0077012999999999995
+MUSETT_T2_DSSD_X89_E -63.5487 0.00775733
+MUSETT_T2_DSSD_X90_E -63.345699999999994 0.00773257
+MUSETT_T2_DSSD_X91_E -63.537699999999994 0.00775593
+MUSETT_T2_DSSD_X92_E -63.2671 0.00772292
+MUSETT_T2_DSSD_X93_E -64.6143 0.00788733
+MUSETT_T2_DSSD_X94_E -63.737 0.00778019
+MUSETT_T2_DSSD_X95_E -63.6275 0.00776682
+MUSETT_T2_DSSD_X96_E -59.0116 0.00720345
+MUSETT_T2_DSSD_X97_E -58.536300000000004 0.00714543
+MUSETT_T2_DSSD_X98_E -58.2945 0.00711592
+MUSETT_T2_DSSD_X99_E -58.7645 0.00717328
+MUSETT_T2_DSSD_X100_E -59.3882 0.007249380000000001
+MUSETT_T2_DSSD_X101_E -59.3539 0.00724523
+MUSETT_T2_DSSD_X102_E -58.868900000000004 0.00718606
+MUSETT_T2_DSSD_X103_E -59.0204 0.00720454
+MUSETT_T2_DSSD_X104_E -59.051199999999994 0.00720827
+MUSETT_T2_DSSD_X105_E -59.067699999999995 0.00721031
+MUSETT_T2_DSSD_X106_E -58.7806 0.00717527
+MUSETT_T2_DSSD_X107_E -59.0118 0.00720348
+MUSETT_T2_DSSD_X108_E -58.6856 0.0071636899999999995
+MUSETT_T2_DSSD_X109_E -60.3136 0.00736243
+MUSETT_T2_DSSD_X110_E -58.9477 0.0071956
+MUSETT_T2_DSSD_X111_E -58.6406 0.00715819
+MUSETT_T2_DSSD_X112_E -59.2564 0.00723333
+MUSETT_T2_DSSD_X113_E -59.391400000000004 0.00724979
+MUSETT_T2_DSSD_X114_E -59.7415 0.00729254
+MUSETT_T2_DSSD_X115_E -59.153 0.0072207
+MUSETT_T2_DSSD_X116_E -59.6593 0.00728255
+MUSETT_T2_DSSD_X117_E -60.0435 0.007329410000000001
+MUSETT_T2_DSSD_X118_E -59.4929 0.00726218
+MUSETT_T2_DSSD_X119_E -59.3559 0.0072455
+MUSETT_T2_DSSD_X120_E -60.079 0.0073337
+MUSETT_T2_DSSD_X121_E -58.759699999999995 0.00717268
+MUSETT_T2_DSSD_X122_E -59.106300000000005 0.00721501
+MUSETT_T2_DSSD_X123_E -59.3564 0.00724556
+MUSETT_T2_DSSD_X124_E -58.9054 0.00719045
+MUSETT_T2_DSSD_X125_E -58.909 0.00719091
+MUSETT_T2_DSSD_X126_E -59.1398 0.00721905
+MUSETT_T2_DSSD_X127_E -59.2444 0.00723184
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..42f4d2174be61e224ee762c0a61859e525dfc76f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_E 63.1803 -0.0077125399999999995
+MUSETT_T2_DSSD_Y1_E 63.9585 -0.00780757
+MUSETT_T2_DSSD_Y2_E 62.563900000000004 -0.00763734
+MUSETT_T2_DSSD_Y3_E 63.393800000000006 -0.00773864
+MUSETT_T2_DSSD_Y4_E 62.965300000000006 -0.0076863
+MUSETT_T2_DSSD_Y5_E 62.6952 -0.00765332
+MUSETT_T2_DSSD_Y6_E 63.071 -0.007699200000000001
+MUSETT_T2_DSSD_Y7_E 62.6847 -0.00765205
+MUSETT_T2_DSSD_Y8_E 62.8052 -0.00766674
+MUSETT_T2_DSSD_Y9_E 63.4059 -0.00774008
+MUSETT_T2_DSSD_Y10_E 63.006 -0.007691290000000001
+MUSETT_T2_DSSD_Y11_E 62.613800000000005 -0.00764344
+MUSETT_T2_DSSD_Y12_E 62.1358 -0.00758506
+MUSETT_T2_DSSD_Y13_E 62.7978 -0.00766584
+MUSETT_T2_DSSD_Y14_E 63.0039 -0.00769104
+MUSETT_T2_DSSD_Y15_E 63.4515 -0.00774566
+MUSETT_T2_DSSD_Y16_E 61.6804 -0.00752939
+MUSETT_T2_DSSD_Y17_E 60.963699999999996 -0.007442020000000001
+MUSETT_T2_DSSD_Y18_E 60.731300000000005 -0.007413599999999999
+MUSETT_T2_DSSD_Y19_E 62.0444 -0.00757386
+MUSETT_T2_DSSD_Y20_E 61.1209 -0.00746121
+MUSETT_T2_DSSD_Y21_E 60.932 -0.0074381000000000004
+MUSETT_T2_DSSD_Y22_E 62.091800000000006 -0.00757965
+MUSETT_T2_DSSD_Y23_E 61.0425 -0.00745157
+MUSETT_T2_DSSD_Y24_E 61.0802 -0.00745622
+MUSETT_T2_DSSD_Y25_E 61.569 -0.00751583
+MUSETT_T2_DSSD_Y26_E 61.0889 -0.0074572399999999995
+MUSETT_T2_DSSD_Y27_E 61.4018 -0.00749545
+MUSETT_T2_DSSD_Y28_E 61.5908 -0.00751854
+MUSETT_T2_DSSD_Y29_E 61.4567 -0.00750214
+MUSETT_T2_DSSD_Y30_E 61.3482 -0.00748891
+MUSETT_T2_DSSD_Y31_E 61.8146 -0.007545860000000001
+MUSETT_T2_DSSD_Y32_E 56.3104 -0.00687387
+MUSETT_T2_DSSD_Y33_E 56.4756 -0.00689413
+MUSETT_T2_DSSD_Y34_E 56.8437 -0.00693897
+MUSETT_T2_DSSD_Y35_E 56.709900000000005 -0.0069226999999999995
+MUSETT_T2_DSSD_Y36_E 57.0065 -0.00695894
+MUSETT_T2_DSSD_Y37_E 56.9227 -0.00694871
+MUSETT_T2_DSSD_Y38_E 56.395900000000005 -0.00688437
+MUSETT_T2_DSSD_Y39_E 56.4375 -0.00688946
+MUSETT_T2_DSSD_Y40_E 56.168099999999995 -0.006856569999999999
+MUSETT_T2_DSSD_Y41_E 58.1374 -0.0070969100000000005
+MUSETT_T2_DSSD_Y42_E 56.7521 -0.00692786
+MUSETT_T2_DSSD_Y43_E 56.2683 -0.00686879
+MUSETT_T2_DSSD_Y44_E 57.2483 -0.00698843
+MUSETT_T2_DSSD_Y45_E 57.2377 -0.00698715
+MUSETT_T2_DSSD_Y46_E 57.0625 -0.006965740000000001
+MUSETT_T2_DSSD_Y47_E 56.700199999999995 -0.0069215200000000004
+MUSETT_T2_DSSD_Y48_E 57.6094 -0.00703252
+MUSETT_T2_DSSD_Y49_E 57.0451 -0.00696368
+MUSETT_T2_DSSD_Y50_E 57.8934 -0.00706716
+MUSETT_T2_DSSD_Y51_E 57.4321 -0.00701085
+MUSETT_T2_DSSD_Y52_E 57.3273 -0.0069981
+MUSETT_T2_DSSD_Y53_E 58.593599999999995 -0.00715267
+MUSETT_T2_DSSD_Y54_E 57.7132 -0.00704516
+MUSETT_T2_DSSD_Y55_E 57.801 -0.0070558899999999996
+MUSETT_T2_DSSD_Y56_E 57.750099999999996 -0.0070497
+MUSETT_T2_DSSD_Y57_E 57.5646 -0.00702705
+MUSETT_T2_DSSD_Y58_E 57.5132 -0.00702079
+MUSETT_T2_DSSD_Y59_E 58.2986 -0.00711669
+MUSETT_T2_DSSD_Y60_E 57.8836 -0.007066
+MUSETT_T2_DSSD_Y61_E 57.3339 -0.006998890000000001
+MUSETT_T2_DSSD_Y62_E 57.8777 -0.00706529
+MUSETT_T2_DSSD_Y63_E 58.222300000000004 -0.0071073199999999994
+MUSETT_T2_DSSD_Y64_E 59.3524 -0.007245339999999999
+MUSETT_T2_DSSD_Y65_E 59.653 -0.00728202
+MUSETT_T2_DSSD_Y66_E 59.466699999999996 -0.00725926
+MUSETT_T2_DSSD_Y67_E 60.421 -0.00737573
+MUSETT_T2_DSSD_Y68_E 59.563300000000005 -0.00727104
+MUSETT_T2_DSSD_Y69_E 59.865199999999994 -0.00730789
+MUSETT_T2_DSSD_Y70_E 59.5681 -0.0072716099999999995
+MUSETT_T2_DSSD_Y71_E 59.9031 -0.00731254
+MUSETT_T2_DSSD_Y72_E 59.874199999999995 -0.007308950000000001
+MUSETT_T2_DSSD_Y73_E 59.5659 -0.00727135
+MUSETT_T2_DSSD_Y74_E 59.9514 -0.00731844
+MUSETT_T2_DSSD_Y75_E 60.102599999999995 -0.00733689
+MUSETT_T2_DSSD_Y76_E 59.329 -0.00724242
+MUSETT_T2_DSSD_Y77_E 59.9733 -0.00732106
+MUSETT_T2_DSSD_Y78_E 59.3692 -0.0072473400000000006
+MUSETT_T2_DSSD_Y79_E 60.2055 -0.00734945
+MUSETT_T2_DSSD_Y80_E 60.5591 -0.00739262
+MUSETT_T2_DSSD_Y81_E 61.2239 -0.00747379
+MUSETT_T2_DSSD_Y82_E 60.5555 -0.00739217
+MUSETT_T2_DSSD_Y83_E 61.2678 -0.00747916
+MUSETT_T2_DSSD_Y84_E 61.1832 -0.00746879
+MUSETT_T2_DSSD_Y85_E 60.8774 -0.00743143
+MUSETT_T2_DSSD_Y86_E 60.9647 -0.00744213
+MUSETT_T2_DSSD_Y87_E 61.3167 -0.00748517
+MUSETT_T2_DSSD_Y88_E 60.8896 -0.00743289
+MUSETT_T2_DSSD_Y89_E 60.834900000000005 -0.007426230000000001
+MUSETT_T2_DSSD_Y90_E 61.4754 -0.007504520000000001
+MUSETT_T2_DSSD_Y91_E 60.713800000000006 -0.00741149
+MUSETT_T2_DSSD_Y92_E 61.139900000000004 -0.007463490000000001
+MUSETT_T2_DSSD_Y93_E 60.5862 -0.007395850000000001
+MUSETT_T2_DSSD_Y94_E 61.0912 -0.00745753
+MUSETT_T2_DSSD_Y95_E 61.463 -0.00750289
+MUSETT_T2_DSSD_Y96_E 56.8837 -0.00694393
+MUSETT_T2_DSSD_Y97_E 55.9583 -0.0068309600000000005
+MUSETT_T2_DSSD_Y98_E 56.259699999999995 -0.00686775
+MUSETT_T2_DSSD_Y99_E 56.6209 -0.00691184
+MUSETT_T2_DSSD_Y100_E 56.3901 -0.00688368
+MUSETT_T2_DSSD_Y101_E 56.7419 -0.0069266300000000005
+MUSETT_T2_DSSD_Y102_E 55.881699999999995 -0.00682158
+MUSETT_T2_DSSD_Y103_E 57.2425 -0.00698773
+MUSETT_T2_DSSD_Y104_E 56.047599999999996 -0.00684185
+MUSETT_T2_DSSD_Y105_E 56.7064 -0.00692227
+MUSETT_T2_DSSD_Y106_E 56.618300000000005 -0.00691153
+MUSETT_T2_DSSD_Y107_E 57.5163 -0.00702116
+MUSETT_T2_DSSD_Y108_E 57.052699999999994 -0.00696458
+MUSETT_T2_DSSD_Y109_E 56.7013 -0.0069216699999999996
+MUSETT_T2_DSSD_Y110_E 57.023199999999996 -0.0069609500000000005
+MUSETT_T2_DSSD_Y111_E 56.155300000000004 -0.00685506
+MUSETT_T2_DSSD_Y112_E 56.4801 -0.00689468
+MUSETT_T2_DSSD_Y113_E 57.291 -0.00699365
+MUSETT_T2_DSSD_Y114_E 56.601099999999995 -0.00690948
+MUSETT_T2_DSSD_Y115_E 56.8647 -0.0069416700000000005
+MUSETT_T2_DSSD_Y116_E 56.5048 -0.0068977199999999995
+MUSETT_T2_DSSD_Y117_E 56.531 -0.00690085
+MUSETT_T2_DSSD_Y118_E 56.8031 -0.0069340700000000005
+MUSETT_T2_DSSD_Y119_E 56.7446 -0.00692696
+MUSETT_T2_DSSD_Y120_E 56.3396 -0.00687753
+MUSETT_T2_DSSD_Y121_E 57.094699999999996 -0.00696973
+MUSETT_T2_DSSD_Y122_E 57.4718 -0.00701574
+MUSETT_T2_DSSD_Y123_E -10.0 0.0
+MUSETT_T2_DSSD_Y124_E 56.2437 -0.00686585
+MUSETT_T2_DSSD_Y125_E 56.920199999999994 -0.00694841
+MUSETT_T2_DSSD_Y126_E 56.3579 -0.00687972
+MUSETT_T2_DSSD_Y127_E 56.1714 -0.00685698
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1983b41dd0fcbe6248c501b5faac1ca1a7e2d690
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_T 936.808 -0.113282
+MUSETT_T2_DSSD_X1_T 933.588 -0.112935
+MUSETT_T2_DSSD_X2_T 941.562 -0.113903
+MUSETT_T2_DSSD_X3_T 953.784 -0.11541
+MUSETT_T2_DSSD_X4_T 949.078 -0.114834
+MUSETT_T2_DSSD_X5_T 966.718 -0.116968
+MUSETT_T2_DSSD_X6_T 960.214 -0.116144
+MUSETT_T2_DSSD_X7_T 964.987 -0.116738
+MUSETT_T2_DSSD_X8_T 956.88 -0.115736
+MUSETT_T2_DSSD_X9_T 968.81 -0.117191
+MUSETT_T2_DSSD_X10_T 971.337 -0.117505
+MUSETT_T2_DSSD_X11_T 966.1 -0.116868
+MUSETT_T2_DSSD_X12_T 972.053 -0.117596
+MUSETT_T2_DSSD_X13_T 966.078 -0.116864
+MUSETT_T2_DSSD_X14_T 966.541 -0.116934
+MUSETT_T2_DSSD_X15_T 1367.28 -0.118078
+MUSETT_T2_DSSD_X16_T 918.709 -0.111042
+MUSETT_T2_DSSD_X17_T 933.754 -0.1129
+MUSETT_T2_DSSD_X18_T 936.423 -0.113239
+MUSETT_T2_DSSD_X19_T 935.388 -0.11311
+MUSETT_T2_DSSD_X20_T 946.289 -0.114433
+MUSETT_T2_DSSD_X21_T 941.937 -0.113893
+MUSETT_T2_DSSD_X22_T 939.701 -0.113604
+MUSETT_T2_DSSD_X23_T 947.866 -0.114596
+MUSETT_T2_DSSD_X24_T 939.11 -0.113523
+MUSETT_T2_DSSD_X25_T 947.312 -0.114529
+MUSETT_T2_DSSD_X26_T 947.872 -0.114587
+MUSETT_T2_DSSD_X27_T 944.089 -0.114127
+MUSETT_T2_DSSD_X28_T 951.541 -0.115049
+MUSETT_T2_DSSD_X29_T 947.806 -0.114577
+MUSETT_T2_DSSD_X30_T 949.646 -0.114801
+MUSETT_T2_DSSD_X31_T 1101.24 -0.114725
+MUSETT_T2_DSSD_X32_T 883.868 -0.106884
+MUSETT_T2_DSSD_X33_T 881.306 -0.106588
+MUSETT_T2_DSSD_X34_T 890.406 -0.10771
+MUSETT_T2_DSSD_X35_T 887.688 -0.10739
+MUSETT_T2_DSSD_X36_T 901.335 -0.109058
+MUSETT_T2_DSSD_X37_T 898.532 -0.108685
+MUSETT_T2_DSSD_X38_T 906.127 -0.109605
+MUSETT_T2_DSSD_X39_T 903.029 -0.109211
+MUSETT_T2_DSSD_X40_T 902.567 -0.109168
+MUSETT_T2_DSSD_X41_T 906.324 -0.109617
+MUSETT_T2_DSSD_X42_T 912.663 -0.1104
+MUSETT_T2_DSSD_X43_T 911.609 -0.110254
+MUSETT_T2_DSSD_X44_T 919.504 -0.111219
+MUSETT_T2_DSSD_X45_T 918.075 -0.111043
+MUSETT_T2_DSSD_X46_T 920.693 -0.111378
+MUSETT_T2_DSSD_X47_T 1304.08 -0.11089
+MUSETT_T2_DSSD_X48_T 852.901 -0.102956
+MUSETT_T2_DSSD_X49_T 862.836 -0.104191
+MUSETT_T2_DSSD_X50_T 872.425 -0.105362
+MUSETT_T2_DSSD_X51_T 866.551 -0.10464
+MUSETT_T2_DSSD_X52_T 875.507 -0.105723
+MUSETT_T2_DSSD_X53_T 875.722 -0.105755
+MUSETT_T2_DSSD_X54_T 877.794 -0.105984
+MUSETT_T2_DSSD_X55_T 885.59 -0.106931
+MUSETT_T2_DSSD_X56_T 894.535 -0.108024
+MUSETT_T2_DSSD_X57_T 896.983 -0.108307
+MUSETT_T2_DSSD_X58_T 888.442 -0.107279
+MUSETT_T2_DSSD_X59_T 898.855 -0.108543
+MUSETT_T2_DSSD_X60_T 900.217 -0.108721
+MUSETT_T2_DSSD_X61_T 899.805 -0.108665
+MUSETT_T2_DSSD_X62_T 896.358 -0.10824
+MUSETT_T2_DSSD_X63_T 1286.56 -0.107885
+MUSETT_T2_DSSD_X64_T 969.588 -0.117533
+MUSETT_T2_DSSD_X65_T 969.639 -0.117545
+MUSETT_T2_DSSD_X66_T 981.26 -0.118957
+MUSETT_T2_DSSD_X67_T 986.207 -0.119584
+MUSETT_T2_DSSD_X68_T 450.0 -0.119902
+MUSETT_T2_DSSD_X69_T 989.899 -0.12002
+MUSETT_T2_DSSD_X70_T 991.208 -0.120171
+MUSETT_T2_DSSD_X71_T 996.377 -0.120802
+MUSETT_T2_DSSD_X72_T 989.619 -0.119977
+MUSETT_T2_DSSD_X73_T 998.452 -0.12102
+MUSETT_T2_DSSD_X74_T 994.24 -0.12055
+MUSETT_T2_DSSD_X75_T 993.976 -0.12048
+MUSETT_T2_DSSD_X76_T 1003.64 -0.121688
+MUSETT_T2_DSSD_X77_T 1007.3 -0.122136
+MUSETT_T2_DSSD_X78_T 1010.11 -0.122472
+MUSETT_T2_DSSD_X79_T 1318.69 -0.121488
+MUSETT_T2_DSSD_X80_T 950.946 -0.115148
+MUSETT_T2_DSSD_X81_T 961.899 -0.116512
+MUSETT_T2_DSSD_X82_T 963.68 -0.116735
+MUSETT_T2_DSSD_X83_T 967.2 -0.117158
+MUSETT_T2_DSSD_X84_T 967.305 -0.117159
+MUSETT_T2_DSSD_X85_T 968.515 -0.117336
+MUSETT_T2_DSSD_X86_T 982.177 -0.118997
+MUSETT_T2_DSSD_X87_T 981.387 -0.118879
+MUSETT_T2_DSSD_X88_T 991.904 -0.120152
+MUSETT_T2_DSSD_X89_T 991.623 -0.120143
+MUSETT_T2_DSSD_X90_T 990.622 -0.120011
+MUSETT_T2_DSSD_X91_T 980.868 -0.118788
+MUSETT_T2_DSSD_X92_T 995.536 -0.120614
+MUSETT_T2_DSSD_X93_T 999.576 -0.12112
+MUSETT_T2_DSSD_X94_T 1000.5 -0.12123
+MUSETT_T2_DSSD_X95_T 985.324 -0.119394
+MUSETT_T2_DSSD_X96_T 898.921 -0.10895
+MUSETT_T2_DSSD_X97_T 915.715 -0.11099
+MUSETT_T2_DSSD_X98_T 911.411 -0.110483
+MUSETT_T2_DSSD_X99_T 911.648 -0.110494
+MUSETT_T2_DSSD_X100_T 920.871 -0.11163
+MUSETT_T2_DSSD_X101_T 920.388 -0.111573
+MUSETT_T2_DSSD_X102_T 918.664 -0.111368
+MUSETT_T2_DSSD_X103_T 923.174 -0.111888
+MUSETT_T2_DSSD_X104_T 933.198 -0.113122
+MUSETT_T2_DSSD_X105_T 930.187 -0.112764
+MUSETT_T2_DSSD_X106_T 935.147 -0.113373
+MUSETT_T2_DSSD_X107_T 930.349 -0.112797
+MUSETT_T2_DSSD_X108_T 933.561 -0.113176
+MUSETT_T2_DSSD_X109_T 940.135 -0.113973
+MUSETT_T2_DSSD_X110_T 940.914 -0.114066
+MUSETT_T2_DSSD_X111_T 940.163 -0.113973
+MUSETT_T2_DSSD_X112_T 900.272 -0.108961
+MUSETT_T2_DSSD_X113_T 905.007 -0.109531
+MUSETT_T2_DSSD_X114_T 912.464 -0.110461
+MUSETT_T2_DSSD_X115_T 912.22 -0.110414
+MUSETT_T2_DSSD_X116_T 927.733 -0.112323
+MUSETT_T2_DSSD_X117_T 930.691 -0.11267
+MUSETT_T2_DSSD_X118_T 936.077 -0.113333
+MUSETT_T2_DSSD_X119_T 939.108 -0.113698
+MUSETT_T2_DSSD_X120_T 938.924 -0.113666
+MUSETT_T2_DSSD_X121_T 947.571 -0.114745
+MUSETT_T2_DSSD_X122_T 938.938 -0.113673
+MUSETT_T2_DSSD_X123_T 945.07 -0.11443
+MUSETT_T2_DSSD_X124_T 934.733 -0.113174
+MUSETT_T2_DSSD_X125_T 934.595 -0.113143
+MUSETT_T2_DSSD_X126_T 943.044 -0.114176
+MUSETT_T2_DSSD_X127_T 943.184 -0.114186
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..7ff18502dac89c993590306b5479a1f20452d0ee
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_T 987.442 -0.119525
+MUSETT_T2_DSSD_Y1_T 990.37 -0.119903
+MUSETT_T2_DSSD_Y2_T 989.136 -0.119776
+MUSETT_T2_DSSD_Y3_T 995.437 -0.120524
+MUSETT_T2_DSSD_Y4_T 1000.77 -0.121165
+MUSETT_T2_DSSD_Y5_T 998.951 -0.120947
+MUSETT_T2_DSSD_Y6_T 1003.75 -0.121526
+MUSETT_T2_DSSD_Y7_T 1010.87 -0.122366
+MUSETT_T2_DSSD_Y8_T 1012.21 -0.122539
+MUSETT_T2_DSSD_Y9_T 1003.9 -0.121307
+MUSETT_T2_DSSD_Y10_T 1010.24 -0.122275
+MUSETT_T2_DSSD_Y11_T 1015.27 -0.122898
+MUSETT_T2_DSSD_Y12_T 1017.2 -0.12312
+MUSETT_T2_DSSD_Y13_T 1022.23 -0.123746
+MUSETT_T2_DSSD_Y14_T 1021.37 -0.123621
+MUSETT_T2_DSSD_Y15_T 1022.68 -0.123744
+MUSETT_T2_DSSD_Y16_T 939.963 -0.113632
+MUSETT_T2_DSSD_Y17_T 939.308 -0.11359
+MUSETT_T2_DSSD_Y18_T 938.897 -0.113546
+MUSETT_T2_DSSD_Y19_T 938.628 -0.113526
+MUSETT_T2_DSSD_Y20_T 953.606 -0.115367
+MUSETT_T2_DSSD_Y21_T 969.437 -0.117305
+MUSETT_T2_DSSD_Y22_T 965.454 -0.11682
+MUSETT_T2_DSSD_Y23_T 960.44 -0.116216
+MUSETT_T2_DSSD_Y24_T 975.99 -0.118134
+MUSETT_T2_DSSD_Y25_T 978.687 -0.118446
+MUSETT_T2_DSSD_Y26_T 976.083 -0.117858
+MUSETT_T2_DSSD_Y27_T 982.568 -0.11895
+MUSETT_T2_DSSD_Y28_T 976.864 -0.118238
+MUSETT_T2_DSSD_Y29_T 978.515 -0.118468
+MUSETT_T2_DSSD_Y30_T 977.409 -0.118337
+MUSETT_T2_DSSD_Y31_T 965.447 -0.116905
+MUSETT_T2_DSSD_Y32_T 870.181 -0.105393
+MUSETT_T2_DSSD_Y33_T 876.858 -0.106206
+MUSETT_T2_DSSD_Y34_T 889.244 -0.107711
+MUSETT_T2_DSSD_Y35_T 890.519 -0.10786
+MUSETT_T2_DSSD_Y36_T 893.817 -0.108297
+MUSETT_T2_DSSD_Y37_T 888.588 -0.107628
+MUSETT_T2_DSSD_Y38_T 904.701 -0.109574
+MUSETT_T2_DSSD_Y39_T 903.479 -0.109401
+MUSETT_T2_DSSD_Y40_T 906.236 -0.109756
+MUSETT_T2_DSSD_Y41_T 914.382 -0.110304
+MUSETT_T2_DSSD_Y42_T 906.598 -0.10979
+MUSETT_T2_DSSD_Y43_T 910.53 -0.110231
+MUSETT_T2_DSSD_Y44_T 912.933 -0.110532
+MUSETT_T2_DSSD_Y45_T 916.041 -0.110907
+MUSETT_T2_DSSD_Y46_T 919.774 -0.111371
+MUSETT_T2_DSSD_Y47_T 915.148 -0.110791
+MUSETT_T2_DSSD_Y48_T 893.19 -0.108016
+MUSETT_T2_DSSD_Y49_T 902.467 -0.109155
+MUSETT_T2_DSSD_Y50_T 899.946 -0.108834
+MUSETT_T2_DSSD_Y51_T 913.407 -0.110471
+MUSETT_T2_DSSD_Y52_T 905.911 -0.109622
+MUSETT_T2_DSSD_Y53_T 914.887 -0.110708
+MUSETT_T2_DSSD_Y54_T 922.021 -0.111116
+MUSETT_T2_DSSD_Y55_T 914.007 -0.11061
+MUSETT_T2_DSSD_Y56_T 926.973 -0.11216
+MUSETT_T2_DSSD_Y57_T 918.182 -0.111079
+MUSETT_T2_DSSD_Y58_T 920.356 -0.111393
+MUSETT_T2_DSSD_Y59_T 924.322 -0.11168
+MUSETT_T2_DSSD_Y60_T 940.509 -0.11386
+MUSETT_T2_DSSD_Y61_T 925.883 -0.112068
+MUSETT_T2_DSSD_Y62_T 921.861 -0.111623
+MUSETT_T2_DSSD_Y63_T 929.763 -0.112593
+MUSETT_T2_DSSD_Y64_T 924.331 -0.111864
+MUSETT_T2_DSSD_Y65_T 943.62 -0.114242
+MUSETT_T2_DSSD_Y66_T 947.992 -0.114763
+MUSETT_T2_DSSD_Y67_T 945.728 -0.114477
+MUSETT_T2_DSSD_Y68_T 972.019 -0.117701
+MUSETT_T2_DSSD_Y69_T 960.071 -0.116242
+MUSETT_T2_DSSD_Y70_T 967.505 -0.117144
+MUSETT_T2_DSSD_Y71_T 964.472 -0.116783
+MUSETT_T2_DSSD_Y72_T 955.96 -0.115747
+MUSETT_T2_DSSD_Y73_T 958.084 -0.115989
+MUSETT_T2_DSSD_Y74_T 964.33 -0.116762
+MUSETT_T2_DSSD_Y75_T 977.202 -0.118324
+MUSETT_T2_DSSD_Y76_T 973.571 -0.117892
+MUSETT_T2_DSSD_Y77_T 976.2 -0.118194
+MUSETT_T2_DSSD_Y78_T 967.051 -0.117092
+MUSETT_T2_DSSD_Y79_T 968.99 -0.117343
+MUSETT_T2_DSSD_Y80_T 944.542 -0.114246
+MUSETT_T2_DSSD_Y81_T 939.064 -0.113582
+MUSETT_T2_DSSD_Y82_T 951.122 -0.115097
+MUSETT_T2_DSSD_Y83_T 946.764 -0.114574
+MUSETT_T2_DSSD_Y84_T 955.625 -0.115653
+MUSETT_T2_DSSD_Y85_T 966.0 -0.11692
+MUSETT_T2_DSSD_Y86_T 964.199 -0.116695
+MUSETT_T2_DSSD_Y87_T 969.926 -0.117388
+MUSETT_T2_DSSD_Y88_T 972.649 -0.117739
+MUSETT_T2_DSSD_Y89_T 974.635 -0.11797
+MUSETT_T2_DSSD_Y90_T 979.1 -0.118525
+MUSETT_T2_DSSD_Y91_T 969.715 -0.117371
+MUSETT_T2_DSSD_Y92_T 977.475 -0.118331
+MUSETT_T2_DSSD_Y93_T 977.142 -0.118283
+MUSETT_T2_DSSD_Y94_T 984.646 -0.119174
+MUSETT_T2_DSSD_Y95_T 989.259 -0.119806
+MUSETT_T2_DSSD_Y96_T 897.538 -0.108639
+MUSETT_T2_DSSD_Y97_T 893.51 -0.108189
+MUSETT_T2_DSSD_Y98_T 904.052 -0.109474
+MUSETT_T2_DSSD_Y99_T 902.752 -0.109308
+MUSETT_T2_DSSD_Y100_T 916.527 -0.110997
+MUSETT_T2_DSSD_Y101_T 924.175 -0.111938
+MUSETT_T2_DSSD_Y102_T 914.572 -0.110746
+MUSETT_T2_DSSD_Y103_T 930.562 -0.112691
+MUSETT_T2_DSSD_Y104_T 925.104 -0.112025
+MUSETT_T2_DSSD_Y105_T 920.853 -0.111507
+MUSETT_T2_DSSD_Y106_T 922.078 -0.111663
+MUSETT_T2_DSSD_Y107_T 921.772 -0.111623
+MUSETT_T2_DSSD_Y108_T 925.31 -0.112066
+MUSETT_T2_DSSD_Y109_T 926.033 -0.11214
+MUSETT_T2_DSSD_Y110_T 922.391 -0.111703
+MUSETT_T2_DSSD_Y111_T 912.83 -0.110525
+MUSETT_T2_DSSD_Y112_T 852.798 -0.102981
+MUSETT_T2_DSSD_Y113_T 868.843 -0.104976
+MUSETT_T2_DSSD_Y114_T 876.793 -0.105936
+MUSETT_T2_DSSD_Y115_T 875.311 -0.10575
+MUSETT_T2_DSSD_Y116_T 883.331 -0.106741
+MUSETT_T2_DSSD_Y117_T 879.699 -0.10628
+MUSETT_T2_DSSD_Y118_T 891.993 -0.107805
+MUSETT_T2_DSSD_Y119_T 893.52 -0.107966
+MUSETT_T2_DSSD_Y120_T 883.484 -0.106759
+MUSETT_T2_DSSD_Y121_T 896.835 -0.108381
+MUSETT_T2_DSSD_Y122_T 895.32 -0.108195
+MUSETT_T2_DSSD_Y123_T 1336.18 -0.108195
+MUSETT_T2_DSSD_Y124_T 897.921 -0.108519
+MUSETT_T2_DSSD_Y125_T 898.896 -0.10863
+MUSETT_T2_DSSD_Y126_T 900.009 -0.108768
+MUSETT_T2_DSSD_Y127_T 896.14 -0.108297
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..6d44786682807bcd47daac47f87da625c69eae8c
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E -62.432 0.00762115
+MUSETT_T3_DSSD_X1_E -61.8981 0.00755599
+MUSETT_T3_DSSD_X2_E -62.2618 0.00760035
+MUSETT_T3_DSSD_X3_E -62.3777 0.00761452
+MUSETT_T3_DSSD_X4_E -61.9871 0.0075667799999999995
+MUSETT_T3_DSSD_X5_E -61.9253 0.00755922
+MUSETT_T3_DSSD_X6_E -62.100699999999996 0.00758066
+MUSETT_T3_DSSD_X7_E -61.6218 0.0075222
+MUSETT_T3_DSSD_X8_E -61.764300000000006 0.00753956
+MUSETT_T3_DSSD_X9_E -61.9183 0.00755834
+MUSETT_T3_DSSD_X10_E -61.8815 0.007553880000000001
+MUSETT_T3_DSSD_X11_E -62.903 0.00767858
+MUSETT_T3_DSSD_X12_E -61.674099999999996 0.00752859
+MUSETT_T3_DSSD_X13_E -61.812400000000004 0.007545410000000001
+MUSETT_T3_DSSD_X14_E -61.5556 0.00751408
+MUSETT_T3_DSSD_X15_E -62.6274 0.00764492
+MUSETT_T3_DSSD_X16_E -63.6565 0.007770470000000001
+MUSETT_T3_DSSD_X17_E -63.108 0.00770354
+MUSETT_T3_DSSD_X18_E -62.943400000000004 0.0076834600000000005
+MUSETT_T3_DSSD_X19_E -62.8377 0.00767058
+MUSETT_T3_DSSD_X20_E -62.6764 0.0076508900000000005
+MUSETT_T3_DSSD_X21_E -63.119800000000005 0.00770503
+MUSETT_T3_DSSD_X22_E -63.798 0.00778783
+MUSETT_T3_DSSD_X23_E -63.791 0.00778695
+MUSETT_T3_DSSD_X24_E -62.795 0.0076654
+MUSETT_T3_DSSD_X25_E -63.5026 0.00775172
+MUSETT_T3_DSSD_X26_E -63.5321 0.00775542
+MUSETT_T3_DSSD_X27_E -63.3099 0.0077282900000000005
+MUSETT_T3_DSSD_X28_E -63.637800000000006 0.00776831
+MUSETT_T3_DSSD_X29_E -63.587199999999996 0.00776214
+MUSETT_T3_DSSD_X30_E -64.5317 0.00787739
+MUSETT_T3_DSSD_X31_E -63.7428 0.00778111
+MUSETT_T3_DSSD_X32_E -59.4303 0.0072549400000000005
+MUSETT_T3_DSSD_X33_E -59.2202 0.00722924
+MUSETT_T3_DSSD_X34_E -58.1746 0.00710163
+MUSETT_T3_DSSD_X35_E -58.373599999999996 0.007125810000000001
+MUSETT_T3_DSSD_X36_E -58.848099999999995 0.00718369
+MUSETT_T3_DSSD_X37_E -59.0129 0.00720387
+MUSETT_T3_DSSD_X38_E -59.307199999999995 0.00723977
+MUSETT_T3_DSSD_X39_E -58.6779 0.00716294
+MUSETT_T3_DSSD_X40_E -59.2831 0.00723677
+MUSETT_T3_DSSD_X41_E -58.9564 0.0071969
+MUSETT_T3_DSSD_X42_E -59.0435 0.00720751
+MUSETT_T3_DSSD_X43_E -10.0 0.0
+MUSETT_T3_DSSD_X44_E -59.0479 0.00720805
+MUSETT_T3_DSSD_X45_E -59.4141 0.00725268
+MUSETT_T3_DSSD_X46_E -58.832800000000006 0.00718171
+MUSETT_T3_DSSD_X47_E -59.184599999999996 0.00722469
+MUSETT_T3_DSSD_X48_E -57.4104 0.00700817
+MUSETT_T3_DSSD_X49_E -57.223699999999994 0.006985369999999999
+MUSETT_T3_DSSD_X50_E -56.9417 0.00695094
+MUSETT_T3_DSSD_X51_E -57.3063 0.00699545
+MUSETT_T3_DSSD_X52_E -56.9392 0.00695063
+MUSETT_T3_DSSD_X53_E -57.3905 0.00700573
+MUSETT_T3_DSSD_X54_E -56.6383 0.0069139299999999996
+MUSETT_T3_DSSD_X55_E -57.3585 0.00700183
+MUSETT_T3_DSSD_X56_E -57.684400000000004 0.00704165
+MUSETT_T3_DSSD_X57_E -56.591300000000004 0.0069082
+MUSETT_T3_DSSD_X58_E -57.508 0.00702016
+MUSETT_T3_DSSD_X59_E -57.1361 0.00697475
+MUSETT_T3_DSSD_X60_E -56.3804 0.00688251
+MUSETT_T3_DSSD_X61_E -56.9174 0.0069481000000000005
+MUSETT_T3_DSSD_X62_E -56.8245 0.00693679
+MUSETT_T3_DSSD_X63_E -56.577 0.00690664
+MUSETT_T3_DSSD_X64_E -64.14 0.00782956
+MUSETT_T3_DSSD_X65_E -63.8393 0.00779281
+MUSETT_T3_DSSD_X66_E -63.5644 0.0077592699999999995
+MUSETT_T3_DSSD_X67_E -63.7704 0.00778438
+MUSETT_T3_DSSD_X68_E -63.6716 0.00777235
+MUSETT_T3_DSSD_X69_E -63.2723 0.00772359
+MUSETT_T3_DSSD_X70_E -64.307 0.00784993
+MUSETT_T3_DSSD_X71_E -62.530800000000006 0.00763314
+MUSETT_T3_DSSD_X72_E -62.6729 0.00765044
+MUSETT_T3_DSSD_X73_E -63.019 0.007692719999999999
+MUSETT_T3_DSSD_X74_E -63.152800000000006 0.00770897
+MUSETT_T3_DSSD_X75_E -63.441 0.00774419
+MUSETT_T3_DSSD_X76_E -64.1093 0.00782574
+MUSETT_T3_DSSD_X77_E -62.4535 0.007623649999999999
+MUSETT_T3_DSSD_X78_E -62.6222 0.00764425
+MUSETT_T3_DSSD_X79_E -63.017199999999995 0.0076925100000000005
+MUSETT_T3_DSSD_X80_E -62.4534 0.00762363
+MUSETT_T3_DSSD_X81_E -62.780300000000004 0.00766354
+MUSETT_T3_DSSD_X82_E -62.6701 0.00765009
+MUSETT_T3_DSSD_X83_E -62.5547 0.00763598
+MUSETT_T3_DSSD_X84_E -62.062400000000004 0.00757587
+MUSETT_T3_DSSD_X85_E -62.422599999999996 0.0076199399999999995
+MUSETT_T3_DSSD_X86_E -62.402699999999996 0.00761746
+MUSETT_T3_DSSD_X87_E -62.1388 0.00758526
+MUSETT_T3_DSSD_X88_E -62.3516 0.00761123
+MUSETT_T3_DSSD_X89_E -62.791 0.00766488
+MUSETT_T3_DSSD_X90_E -62.302699999999994 0.00760527
+MUSETT_T3_DSSD_X91_E -62.0781 0.00757785
+MUSETT_T3_DSSD_X92_E -62.8293 0.00766952
+MUSETT_T3_DSSD_X93_E -62.5605 0.007636700000000001
+MUSETT_T3_DSSD_X94_E -62.144 0.0075859
+MUSETT_T3_DSSD_X95_E -62.3539 0.007611519999999999
+MUSETT_T3_DSSD_X96_E -56.131099999999996 0.00685191
+MUSETT_T3_DSSD_X97_E -55.920199999999994 0.0068261599999999995
+MUSETT_T3_DSSD_X98_E -55.1787 0.00673562
+MUSETT_T3_DSSD_X99_E -55.7836 0.0068095
+MUSETT_T3_DSSD_X100_E -55.958 0.00683076
+MUSETT_T3_DSSD_X101_E -55.9402 0.00682857
+MUSETT_T3_DSSD_X102_E -55.976 0.00683293
+MUSETT_T3_DSSD_X103_E -55.2555 0.00674498
+MUSETT_T3_DSSD_X104_E -55.479699999999994 0.00677237
+MUSETT_T3_DSSD_X105_E -56.0403 0.00684079
+MUSETT_T3_DSSD_X106_E -55.791199999999996 0.00681044
+MUSETT_T3_DSSD_X107_E -55.7016 0.00679948
+MUSETT_T3_DSSD_X108_E -56.7383 0.00692598
+MUSETT_T3_DSSD_X109_E -56.2939 0.0068717100000000005
+MUSETT_T3_DSSD_X110_E -55.8191 0.00681378
+MUSETT_T3_DSSD_X111_E -55.694199999999995 0.00679856
+MUSETT_T3_DSSD_X112_E -57.5541 0.007025559999999999
+MUSETT_T3_DSSD_X113_E -56.976800000000004 0.00695514
+MUSETT_T3_DSSD_X114_E -57.5184 0.00702123
+MUSETT_T3_DSSD_X115_E -56.9807 0.00695562
+MUSETT_T3_DSSD_X116_E -58.026199999999996 0.00708323
+MUSETT_T3_DSSD_X117_E -57.1911 0.00698127
+MUSETT_T3_DSSD_X118_E -57.432 0.007010710000000001
+MUSETT_T3_DSSD_X119_E -56.2909 0.00687137
+MUSETT_T3_DSSD_X120_E -56.7482 0.00692722
+MUSETT_T3_DSSD_X121_E -57.9017 0.00706808
+MUSETT_T3_DSSD_X122_E -57.5129 0.0070205599999999995
+MUSETT_T3_DSSD_X123_E -57.1124 0.0069717
+MUSETT_T3_DSSD_X124_E -57.6533 0.007037689999999999
+MUSETT_T3_DSSD_X125_E -56.762699999999995 0.00692904
+MUSETT_T3_DSSD_X126_E -57.8419 0.00706073
+MUSETT_T3_DSSD_X127_E -56.524800000000006 0.006899949999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..30bae93039805da11900a9c5c7f47539ad5ceaf8
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_E 60.1947 -0.00734802
+MUSETT_T3_DSSD_Y1_E 58.9879 -0.0072007500000000006
+MUSETT_T3_DSSD_Y2_E 60.1322 -0.00734041
+MUSETT_T3_DSSD_Y3_E 59.9775 -0.00732152
+MUSETT_T3_DSSD_Y4_E 59.7874 -0.007298300000000001
+MUSETT_T3_DSSD_Y5_E 59.8934 -0.007311219999999999
+MUSETT_T3_DSSD_Y6_E 59.7986 -0.00729963
+MUSETT_T3_DSSD_Y7_E 60.2513 -0.0073549
+MUSETT_T3_DSSD_Y8_E 60.5895 -0.007396219999999999
+MUSETT_T3_DSSD_Y9_E 60.4366 -0.00737756
+MUSETT_T3_DSSD_Y10_E 60.189699999999995 -0.0073474000000000005
+MUSETT_T3_DSSD_Y11_E 59.8264 -0.0073031
+MUSETT_T3_DSSD_Y12_E 59.6872 -0.00728606
+MUSETT_T3_DSSD_Y13_E 59.622099999999996 -0.0072781799999999995
+MUSETT_T3_DSSD_Y14_E 60.5748 -0.00739447
+MUSETT_T3_DSSD_Y15_E 59.719199999999994 -0.00729002
+MUSETT_T3_DSSD_Y16_E 62.9631 -0.007686009999999999
+MUSETT_T3_DSSD_Y17_E 63.1869 -0.00771331
+MUSETT_T3_DSSD_Y18_E 62.2623 -0.00760044
+MUSETT_T3_DSSD_Y19_E 62.806 -0.0076668000000000005
+MUSETT_T3_DSSD_Y20_E 63.2468 -0.00772062
+MUSETT_T3_DSSD_Y21_E 63.5503 -0.007757590000000001
+MUSETT_T3_DSSD_Y22_E 63.0168 -0.00769256
+MUSETT_T3_DSSD_Y23_E 62.986599999999996 -0.00768882
+MUSETT_T3_DSSD_Y24_E 63.5222 -0.00775424
+MUSETT_T3_DSSD_Y25_E 63.478699999999996 -0.0077488999999999995
+MUSETT_T3_DSSD_Y26_E 62.6431 -0.00764692
+MUSETT_T3_DSSD_Y27_E 63.4299 -0.0077429199999999995
+MUSETT_T3_DSSD_Y28_E 62.4837 -0.00762745
+MUSETT_T3_DSSD_Y29_E 62.960699999999996 -0.00768572
+MUSETT_T3_DSSD_Y30_E 63.085300000000004 -0.0077009
+MUSETT_T3_DSSD_Y31_E 62.9694 -0.00768675
+MUSETT_T3_DSSD_Y32_E 56.0911 -0.00684715
+MUSETT_T3_DSSD_Y33_E 56.2286 -0.00686391
+MUSETT_T3_DSSD_Y34_E 55.8346 -0.00681583
+MUSETT_T3_DSSD_Y35_E 55.713 -0.00680096
+MUSETT_T3_DSSD_Y36_E 55.757 -0.00680633
+MUSETT_T3_DSSD_Y37_E 56.228 -0.0068638399999999995
+MUSETT_T3_DSSD_Y38_E 55.9259 -0.00682695
+MUSETT_T3_DSSD_Y39_E 55.539699999999996 -0.00677979
+MUSETT_T3_DSSD_Y40_E 55.412099999999995 -0.00676422
+MUSETT_T3_DSSD_Y41_E 56.185 -0.00685859
+MUSETT_T3_DSSD_Y42_E 55.9818 -0.00683375
+MUSETT_T3_DSSD_Y43_E 55.3708 -0.00675918
+MUSETT_T3_DSSD_Y44_E 55.7489 -0.00680537
+MUSETT_T3_DSSD_Y45_E 55.612300000000005 -0.00678871
+MUSETT_T3_DSSD_Y46_E 55.926300000000005 -0.006826990000000001
+MUSETT_T3_DSSD_Y47_E 55.801199999999994 -0.00681172
+MUSETT_T3_DSSD_Y48_E 56.6708 -0.0069179
+MUSETT_T3_DSSD_Y49_E 56.9495 -0.0069519000000000004
+MUSETT_T3_DSSD_Y50_E 57.1471 -0.006975970000000001
+MUSETT_T3_DSSD_Y51_E 56.9604 -0.00695318
+MUSETT_T3_DSSD_Y52_E 56.493900000000004 -0.006896289999999999
+MUSETT_T3_DSSD_Y53_E 56.9632 -0.00695364
+MUSETT_T3_DSSD_Y54_E 56.5816 -0.00690701
+MUSETT_T3_DSSD_Y55_E 57.0507 -0.006964209999999999
+MUSETT_T3_DSSD_Y56_E 57.0769 -0.00696747
+MUSETT_T3_DSSD_Y57_E 56.6238 -0.00691216
+MUSETT_T3_DSSD_Y58_E 57.493199999999995 -0.00701827
+MUSETT_T3_DSSD_Y59_E 57.089400000000005 -0.00696896
+MUSETT_T3_DSSD_Y60_E 57.5863 -0.00702963
+MUSETT_T3_DSSD_Y61_E 57.0447 -0.00696349
+MUSETT_T3_DSSD_Y62_E 56.777699999999996 -0.0069308899999999994
+MUSETT_T3_DSSD_Y63_E 57.4216 -0.00700961
+MUSETT_T3_DSSD_Y64_E 59.437599999999996 -0.007255620000000001
+MUSETT_T3_DSSD_Y65_E 59.994 -0.00732351
+MUSETT_T3_DSSD_Y66_E 59.523900000000005 -0.0072662000000000004
+MUSETT_T3_DSSD_Y67_E 59.3371 -0.00724336
+MUSETT_T3_DSSD_Y68_E 59.498599999999996 -0.007263029999999999
+MUSETT_T3_DSSD_Y69_E 58.818599999999996 -0.00718002
+MUSETT_T3_DSSD_Y70_E 59.3322 -0.00724276
+MUSETT_T3_DSSD_Y71_E 60.018699999999995 -0.00732659
+MUSETT_T3_DSSD_Y72_E 60.1805 -0.0073463
+MUSETT_T3_DSSD_Y73_E 59.4807 -0.00726089
+MUSETT_T3_DSSD_Y74_E 59.527699999999996 -0.0072666399999999996
+MUSETT_T3_DSSD_Y75_E 59.6351 -0.00727972
+MUSETT_T3_DSSD_Y76_E 59.581199999999995 -0.00727315
+MUSETT_T3_DSSD_Y77_E 59.4447 -0.00725647
+MUSETT_T3_DSSD_Y78_E 59.0484 -0.007208109999999999
+MUSETT_T3_DSSD_Y79_E 59.9895 -0.007322980000000001
+MUSETT_T3_DSSD_Y80_E 62.8554 -0.00767285
+MUSETT_T3_DSSD_Y81_E 62.7504 -0.00766003
+MUSETT_T3_DSSD_Y82_E 62.5327 -0.007633460000000001
+MUSETT_T3_DSSD_Y83_E 62.151300000000006 -0.00758691
+MUSETT_T3_DSSD_Y84_E 62.0186 -0.00757075
+MUSETT_T3_DSSD_Y85_E 62.7102 -0.007655090000000001
+MUSETT_T3_DSSD_Y86_E 62.2716 -0.0076015499999999995
+MUSETT_T3_DSSD_Y87_E 62.96 -0.00768565
+MUSETT_T3_DSSD_Y88_E 62.677800000000005 -0.0076512099999999994
+MUSETT_T3_DSSD_Y89_E 62.6261 -0.0076448900000000005
+MUSETT_T3_DSSD_Y90_E 61.8783 -0.00755359
+MUSETT_T3_DSSD_Y91_E 61.999199999999995 -0.00756832
+MUSETT_T3_DSSD_Y92_E 61.924699999999994 -0.00755927
+MUSETT_T3_DSSD_Y93_E 61.995599999999996 -0.00756788
+MUSETT_T3_DSSD_Y94_E 61.9605 -0.00756357
+MUSETT_T3_DSSD_Y95_E 61.8336 -0.00754812
+MUSETT_T3_DSSD_Y96_E 56.7314 -0.00692523
+MUSETT_T3_DSSD_Y97_E 56.9099 -0.00694702
+MUSETT_T3_DSSD_Y98_E 56.3183 -0.00687484
+MUSETT_T3_DSSD_Y99_E 55.9465 -0.006829399999999999
+MUSETT_T3_DSSD_Y100_E 56.299800000000005 -0.00687252
+MUSETT_T3_DSSD_Y101_E 56.3287 -0.00687609
+MUSETT_T3_DSSD_Y102_E 55.9865 -0.0068343
+MUSETT_T3_DSSD_Y103_E 55.996300000000005 -0.006835460000000001
+MUSETT_T3_DSSD_Y104_E 55.8581 -0.006818609999999999
+MUSETT_T3_DSSD_Y105_E 56.336400000000005 -0.006876999999999999
+MUSETT_T3_DSSD_Y106_E 56.504400000000004 -0.00689753
+MUSETT_T3_DSSD_Y107_E 56.2804 -0.00687019
+MUSETT_T3_DSSD_Y108_E 55.8017 -0.006811759999999999
+MUSETT_T3_DSSD_Y109_E 55.903800000000004 -0.00682419
+MUSETT_T3_DSSD_Y110_E 56.6722 -0.00691805
+MUSETT_T3_DSSD_Y111_E 56.6689 -0.00691765
+MUSETT_T3_DSSD_Y112_E 57.102199999999996 -0.0069704699999999994
+MUSETT_T3_DSSD_Y113_E 57.033699999999996 -0.00696222
+MUSETT_T3_DSSD_Y114_E 57.102 -0.00697059
+MUSETT_T3_DSSD_Y115_E 57.0152 -0.0069599399999999995
+MUSETT_T3_DSSD_Y116_E 57.666599999999995 -0.00703944
+MUSETT_T3_DSSD_Y117_E 57.3273 -0.0069980599999999995
+MUSETT_T3_DSSD_Y118_E 56.838800000000006 -0.0069384
+MUSETT_T3_DSSD_Y119_E 57.642300000000006 -0.007036400000000001
+MUSETT_T3_DSSD_Y120_E 57.4724 -0.007015749999999999
+MUSETT_T3_DSSD_Y121_E 57.0092 -0.006959170000000001
+MUSETT_T3_DSSD_Y122_E 57.4276 -0.00701028
+MUSETT_T3_DSSD_Y123_E 57.1051 -0.00697094
+MUSETT_T3_DSSD_Y124_E 57.606 -0.00703198
+MUSETT_T3_DSSD_Y125_E 56.8527 -0.00694013
+MUSETT_T3_DSSD_Y126_E 57.287800000000004 -0.006993109999999999
+MUSETT_T3_DSSD_Y127_E 57.5267 -0.00702236
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0c66d17d1ef2704ec870f95f8fa20b5c6d1f2e47
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_T 936.261 -0.113591
+MUSETT_T3_DSSD_X1_T 949.597 -0.115254
+MUSETT_T3_DSSD_X2_T 954.137 -0.115822
+MUSETT_T3_DSSD_X3_T 956.021 -0.116042
+MUSETT_T3_DSSD_X4_T 948.148 -0.115096
+MUSETT_T3_DSSD_X5_T 962.715 -0.11686
+MUSETT_T3_DSSD_X6_T 967.087 -0.117385
+MUSETT_T3_DSSD_X7_T 972.268 -0.118019
+MUSETT_T3_DSSD_X8_T 970.481 -0.117779
+MUSETT_T3_DSSD_X9_T 968.226 -0.117496
+MUSETT_T3_DSSD_X10_T 970.608 -0.117795
+MUSETT_T3_DSSD_X11_T 982.826 -0.119273
+MUSETT_T3_DSSD_X12_T 972.655 -0.118031
+MUSETT_T3_DSSD_X13_T 978.966 -0.118805
+MUSETT_T3_DSSD_X14_T 976.646 -0.118524
+MUSETT_T3_DSSD_X15_T 1358.4 -0.119127
+MUSETT_T3_DSSD_X16_T 965.022 -0.117029
+MUSETT_T3_DSSD_X17_T 961.069 -0.116582
+MUSETT_T3_DSSD_X18_T 979.729 -0.11886
+MUSETT_T3_DSSD_X19_T 975.886 -0.118386
+MUSETT_T3_DSSD_X20_T 982.811 -0.119229
+MUSETT_T3_DSSD_X21_T 989.956 -0.120114
+MUSETT_T3_DSSD_X22_T 982.322 -0.119177
+MUSETT_T3_DSSD_X23_T 986.837 -0.119693
+MUSETT_T3_DSSD_X24_T 984.553 -0.119405
+MUSETT_T3_DSSD_X25_T 985.367 -0.119523
+MUSETT_T3_DSSD_X26_T 998.436 -0.12115
+MUSETT_T3_DSSD_X27_T 994.592 -0.120628
+MUSETT_T3_DSSD_X28_T 1004.55 -0.121885
+MUSETT_T3_DSSD_X29_T 997.75 -0.121035
+MUSETT_T3_DSSD_X30_T 999.387 -0.121233
+MUSETT_T3_DSSD_X31_T 994.205 -0.120654
+MUSETT_T3_DSSD_X32_T 895.626 -0.108693
+MUSETT_T3_DSSD_X33_T 901.788 -0.109485
+MUSETT_T3_DSSD_X34_T 909.669 -0.110421
+MUSETT_T3_DSSD_X35_T 902.809 -0.109588
+MUSETT_T3_DSSD_X36_T 908.707 -0.110301
+MUSETT_T3_DSSD_X37_T 917.184 -0.111327
+MUSETT_T3_DSSD_X38_T 918.636 -0.111495
+MUSETT_T3_DSSD_X39_T 927.002 -0.112521
+MUSETT_T3_DSSD_X40_T 934.79 -0.11347
+MUSETT_T3_DSSD_X41_T 928.489 -0.112717
+MUSETT_T3_DSSD_X42_T 925.669 -0.112335
+MUSETT_T3_DSSD_X43_T 450.0 -0.112964
+MUSETT_T3_DSSD_X44_T 932.907 -0.113245
+MUSETT_T3_DSSD_X45_T 927.364 -0.11258
+MUSETT_T3_DSSD_X46_T 934.8 -0.113476
+MUSETT_T3_DSSD_X47_T 933.166 -0.113256
+MUSETT_T3_DSSD_X48_T 863.882 -0.104661
+MUSETT_T3_DSSD_X49_T 863.742 -0.104634
+MUSETT_T3_DSSD_X50_T 876.032 -0.106155
+MUSETT_T3_DSSD_X51_T 885.987 -0.107364
+MUSETT_T3_DSSD_X52_T 886.077 -0.107368
+MUSETT_T3_DSSD_X53_T 882.141 -0.106861
+MUSETT_T3_DSSD_X54_T 894.386 -0.108382
+MUSETT_T3_DSSD_X55_T 897.465 -0.108733
+MUSETT_T3_DSSD_X56_T 894.9 -0.10844
+MUSETT_T3_DSSD_X57_T 900.295 -0.10908
+MUSETT_T3_DSSD_X58_T 895.793 -0.108538
+MUSETT_T3_DSSD_X59_T 895.372 -0.10849
+MUSETT_T3_DSSD_X60_T 902.176 -0.109312
+MUSETT_T3_DSSD_X61_T 903.192 -0.109445
+MUSETT_T3_DSSD_X62_T 889.712 -0.107803
+MUSETT_T3_DSSD_X63_T 921.265 -0.108862
+MUSETT_T3_DSSD_X64_T 981.944 -0.119126
+MUSETT_T3_DSSD_X65_T 987.148 -0.119789
+MUSETT_T3_DSSD_X66_T 987.456 -0.119851
+MUSETT_T3_DSSD_X67_T 1003.28 -0.121753
+MUSETT_T3_DSSD_X68_T 1003.82 -0.121824
+MUSETT_T3_DSSD_X69_T 1000.66 -0.121446
+MUSETT_T3_DSSD_X70_T 1004.35 -0.121893
+MUSETT_T3_DSSD_X71_T 1008.06 -0.122347
+MUSETT_T3_DSSD_X72_T 1004.22 -0.121883
+MUSETT_T3_DSSD_X73_T 1011.08 -0.122684
+MUSETT_T3_DSSD_X74_T 1019.46 -0.123722
+MUSETT_T3_DSSD_X75_T 1029.58 -0.124938
+MUSETT_T3_DSSD_X76_T 1011.08 -0.122709
+MUSETT_T3_DSSD_X77_T 1010.81 -0.12265
+MUSETT_T3_DSSD_X78_T 1022.22 -0.124061
+MUSETT_T3_DSSD_X79_T 1391.94 -0.123313
+MUSETT_T3_DSSD_X80_T 939.257 -0.11381
+MUSETT_T3_DSSD_X81_T 945.066 -0.114558
+MUSETT_T3_DSSD_X82_T 948.6 -0.114986
+MUSETT_T3_DSSD_X83_T 947.122 -0.114804
+MUSETT_T3_DSSD_X84_T 961.987 -0.116619
+MUSETT_T3_DSSD_X85_T 964.59 -0.11693
+MUSETT_T3_DSSD_X86_T 959.397 -0.116299
+MUSETT_T3_DSSD_X87_T 964.355 -0.116863
+MUSETT_T3_DSSD_X88_T 975.002 -0.118161
+MUSETT_T3_DSSD_X89_T 971.077 -0.117687
+MUSETT_T3_DSSD_X90_T 976.04 -0.118304
+MUSETT_T3_DSSD_X91_T 983.975 -0.119256
+MUSETT_T3_DSSD_X92_T 983.617 -0.119241
+MUSETT_T3_DSSD_X93_T 983.301 -0.119186
+MUSETT_T3_DSSD_X94_T 980.734 -0.118879
+MUSETT_T3_DSSD_X95_T 975.837 -0.118278
+MUSETT_T3_DSSD_X96_T 858.761 -0.104124
+MUSETT_T3_DSSD_X97_T 863.527 -0.104728
+MUSETT_T3_DSSD_X98_T 863.719 -0.104753
+MUSETT_T3_DSSD_X99_T 869.797 -0.105492
+MUSETT_T3_DSSD_X100_T 879.582 -0.106693
+MUSETT_T3_DSSD_X101_T 874.971 -0.10614
+MUSETT_T3_DSSD_X102_T 879.706 -0.106708
+MUSETT_T3_DSSD_X103_T 878.738 -0.106567
+MUSETT_T3_DSSD_X104_T 887.854 -0.107671
+MUSETT_T3_DSSD_X105_T 892.385 -0.108216
+MUSETT_T3_DSSD_X106_T 884.225 -0.107225
+MUSETT_T3_DSSD_X107_T 894.981 -0.108561
+MUSETT_T3_DSSD_X108_T 895.51 -0.108609
+MUSETT_T3_DSSD_X109_T 891.851 -0.108191
+MUSETT_T3_DSSD_X110_T 901.356 -0.109337
+MUSETT_T3_DSSD_X111_T 900.727 -0.108709
+MUSETT_T3_DSSD_X112_T 855.952 -0.103629
+MUSETT_T3_DSSD_X113_T 865.7 -0.10481
+MUSETT_T3_DSSD_X114_T 866.161 -0.1049
+MUSETT_T3_DSSD_X115_T 872.362 -0.105647
+MUSETT_T3_DSSD_X116_T 1490.13 -0.126949
+MUSETT_T3_DSSD_X117_T 876.561 -0.106145
+MUSETT_T3_DSSD_X118_T 884.075 -0.107055
+MUSETT_T3_DSSD_X119_T 881.54 -0.10675
+MUSETT_T3_DSSD_X120_T 884.679 -0.107137
+MUSETT_T3_DSSD_X121_T 888.637 -0.107599
+MUSETT_T3_DSSD_X122_T 884.493 -0.107093
+MUSETT_T3_DSSD_X123_T 893.964 -0.108252
+MUSETT_T3_DSSD_X124_T 888.064 -0.107522
+MUSETT_T3_DSSD_X125_T 894.536 -0.108336
+MUSETT_T3_DSSD_X126_T 882.088 -0.106793
+MUSETT_T3_DSSD_X127_T 890.98 -0.107896
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..164e1edc8a5c9527382a6866a680275ec137b39a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_T 916.716 -0.11121
+MUSETT_T3_DSSD_Y1_T 924.259 -0.112154
+MUSETT_T3_DSSD_Y2_T 933.256 -0.113241
+MUSETT_T3_DSSD_Y3_T 942.953 -0.114409
+MUSETT_T3_DSSD_Y4_T 939.901 -0.114032
+MUSETT_T3_DSSD_Y5_T 947.878 -0.114994
+MUSETT_T3_DSSD_Y6_T 952.484 -0.115552
+MUSETT_T3_DSSD_Y7_T 952.713 -0.115546
+MUSETT_T3_DSSD_Y8_T 960.463 -0.116506
+MUSETT_T3_DSSD_Y9_T 964.543 -0.117006
+MUSETT_T3_DSSD_Y10_T 966.84 -0.117251
+MUSETT_T3_DSSD_Y11_T 965.68 -0.117093
+MUSETT_T3_DSSD_Y12_T 975.182 -0.118272
+MUSETT_T3_DSSD_Y13_T 981.614 -0.119048
+MUSETT_T3_DSSD_Y14_T 973.869 -0.118075
+MUSETT_T3_DSSD_Y15_T 981.076 -0.118941
+MUSETT_T3_DSSD_Y16_T 967.206 -0.117174
+MUSETT_T3_DSSD_Y17_T 980.188 -0.118815
+MUSETT_T3_DSSD_Y18_T 981.134 -0.118931
+MUSETT_T3_DSSD_Y19_T 986.719 -0.119638
+MUSETT_T3_DSSD_Y20_T 992.386 -0.12034
+MUSETT_T3_DSSD_Y21_T 1002.21 -0.121551
+MUSETT_T3_DSSD_Y22_T 997.474 -0.120998
+MUSETT_T3_DSSD_Y23_T 992.008 -0.120321
+MUSETT_T3_DSSD_Y24_T 998.021 -0.121073
+MUSETT_T3_DSSD_Y25_T 1004.15 -0.121839
+MUSETT_T3_DSSD_Y26_T 1004.31 -0.121856
+MUSETT_T3_DSSD_Y27_T 1010.69 -0.122649
+MUSETT_T3_DSSD_Y28_T 1013.79 -0.12302
+MUSETT_T3_DSSD_Y29_T 1002.56 -0.121668
+MUSETT_T3_DSSD_Y30_T 1011.72 -0.122794
+MUSETT_T3_DSSD_Y31_T 1012.54 -0.122927
+MUSETT_T3_DSSD_Y32_T 868.546 -0.105446
+MUSETT_T3_DSSD_Y33_T 865.415 -0.105092
+MUSETT_T3_DSSD_Y34_T 870.615 -0.10573
+MUSETT_T3_DSSD_Y35_T 867.501 -0.105345
+MUSETT_T3_DSSD_Y36_T 879.085 -0.106744
+MUSETT_T3_DSSD_Y37_T 878.372 -0.106654
+MUSETT_T3_DSSD_Y38_T 883.834 -0.107294
+MUSETT_T3_DSSD_Y39_T 892.468 -0.108361
+MUSETT_T3_DSSD_Y40_T 889.652 -0.10799
+MUSETT_T3_DSSD_Y41_T 893.582 -0.10846
+MUSETT_T3_DSSD_Y42_T 902.982 -0.109593
+MUSETT_T3_DSSD_Y43_T 899.542 -0.109195
+MUSETT_T3_DSSD_Y44_T 894.786 -0.108568
+MUSETT_T3_DSSD_Y45_T 904.997 -0.109804
+MUSETT_T3_DSSD_Y46_T 908.733 -0.110263
+MUSETT_T3_DSSD_Y47_T 901.41 -0.109382
+MUSETT_T3_DSSD_Y48_T 874.853 -0.105997
+MUSETT_T3_DSSD_Y49_T 880.713 -0.106772
+MUSETT_T3_DSSD_Y50_T 892.705 -0.108217
+MUSETT_T3_DSSD_Y51_T 895.218 -0.108527
+MUSETT_T3_DSSD_Y52_T 889.343 -0.107825
+MUSETT_T3_DSSD_Y53_T 897.932 -0.108862
+MUSETT_T3_DSSD_Y54_T 902.448 -0.109456
+MUSETT_T3_DSSD_Y55_T 908.367 -0.110152
+MUSETT_T3_DSSD_Y56_T 912.74 -0.110718
+MUSETT_T3_DSSD_Y57_T 911.519 -0.11056
+MUSETT_T3_DSSD_Y58_T 920.413 -0.111636
+MUSETT_T3_DSSD_Y59_T 906.185 -0.109934
+MUSETT_T3_DSSD_Y60_T 919.759 -0.111581
+MUSETT_T3_DSSD_Y61_T 920.555 -0.111694
+MUSETT_T3_DSSD_Y62_T 915.715 -0.1111
+MUSETT_T3_DSSD_Y63_T 918.454 -0.11144
+MUSETT_T3_DSSD_Y64_T 901.244 -0.109216
+MUSETT_T3_DSSD_Y65_T 907.742 -0.110026
+MUSETT_T3_DSSD_Y66_T 908.334 -0.110106
+MUSETT_T3_DSSD_Y67_T 916.785 -0.11114
+MUSETT_T3_DSSD_Y68_T 928.178 -0.11252
+MUSETT_T3_DSSD_Y69_T 936.612 -0.113544
+MUSETT_T3_DSSD_Y70_T 929.327 -0.112672
+MUSETT_T3_DSSD_Y71_T 927.889 -0.112491
+MUSETT_T3_DSSD_Y72_T 944.015 -0.114462
+MUSETT_T3_DSSD_Y73_T 936.5 -0.11354
+MUSETT_T3_DSSD_Y74_T 952.669 -0.115517
+MUSETT_T3_DSSD_Y75_T 949.121 -0.115086
+MUSETT_T3_DSSD_Y76_T 961.66 -0.116618
+MUSETT_T3_DSSD_Y77_T 950.324 -0.115232
+MUSETT_T3_DSSD_Y78_T 943.005 -0.114343
+MUSETT_T3_DSSD_Y79_T 948.05 -0.114947
+MUSETT_T3_DSSD_Y80_T 967.814 -0.117288
+MUSETT_T3_DSSD_Y81_T 979.35 -0.118727
+MUSETT_T3_DSSD_Y82_T 985.387 -0.119474
+MUSETT_T3_DSSD_Y83_T 988.884 -0.119909
+MUSETT_T3_DSSD_Y84_T 990.688 -0.120116
+MUSETT_T3_DSSD_Y85_T 997.728 -0.120975
+MUSETT_T3_DSSD_Y86_T 994.598 -0.120606
+MUSETT_T3_DSSD_Y87_T 996.045 -0.12076
+MUSETT_T3_DSSD_Y88_T 1000.77 -0.121336
+MUSETT_T3_DSSD_Y89_T 1011.99 -0.122713
+MUSETT_T3_DSSD_Y90_T 1015.05 -0.1231
+MUSETT_T3_DSSD_Y91_T 1003.4 -0.121678
+MUSETT_T3_DSSD_Y92_T 1011.74 -0.122697
+MUSETT_T3_DSSD_Y93_T 1014.96 -0.123087
+MUSETT_T3_DSSD_Y94_T 1007.34 -0.122144
+MUSETT_T3_DSSD_Y95_T 1008.36 -0.122274
+MUSETT_T3_DSSD_Y96_T 871.329 -0.105573
+MUSETT_T3_DSSD_Y97_T 868.142 -0.105224
+MUSETT_T3_DSSD_Y98_T 872.865 -0.105791
+MUSETT_T3_DSSD_Y99_T 882.085 -0.106904
+MUSETT_T3_DSSD_Y100_T 889.159 -0.107789
+MUSETT_T3_DSSD_Y101_T 888.956 -0.107742
+MUSETT_T3_DSSD_Y102_T 899.906 -0.109085
+MUSETT_T3_DSSD_Y103_T 892.033 -0.108126
+MUSETT_T3_DSSD_Y104_T 899.207 -0.108999
+MUSETT_T3_DSSD_Y105_T 891.613 -0.108068
+MUSETT_T3_DSSD_Y106_T 891.136 -0.108006
+MUSETT_T3_DSSD_Y107_T 900.207 -0.109125
+MUSETT_T3_DSSD_Y108_T 902.911 -0.109439
+MUSETT_T3_DSSD_Y109_T 900.692 -0.109168
+MUSETT_T3_DSSD_Y110_T 896.133 -0.108625
+MUSETT_T3_DSSD_Y111_T 902.665 -0.109416
+MUSETT_T3_DSSD_Y112_T 888.587 -0.107554
+MUSETT_T3_DSSD_Y113_T 895.918 -0.108473
+MUSETT_T3_DSSD_Y114_T 898.97 -0.108848
+MUSETT_T3_DSSD_Y115_T 894.394 -0.108292
+MUSETT_T3_DSSD_Y116_T 902.574 -0.109288
+MUSETT_T3_DSSD_Y117_T 907.964 -0.109943
+MUSETT_T3_DSSD_Y118_T 906.564 -0.109765
+MUSETT_T3_DSSD_Y119_T 905.798 -0.109672
+MUSETT_T3_DSSD_Y120_T 912.702 -0.110512
+MUSETT_T3_DSSD_Y121_T 921.335 -0.111588
+MUSETT_T3_DSSD_Y122_T 924.085 -0.111915
+MUSETT_T3_DSSD_Y123_T 906.564 -0.109772
+MUSETT_T3_DSSD_Y124_T 910.838 -0.11029
+MUSETT_T3_DSSD_Y125_T 916.176 -0.110947
+MUSETT_T3_DSSD_Y126_T 917.763 -0.111116
+MUSETT_T3_DSSD_Y127_T 925.891 -0.112131
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..9ad991c7e68cfa35cdedb80af41fe8229c43e950
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/cal_to_NPTOOL.py
@@ -0,0 +1,147 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 0
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/calibE0.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/calibE0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..5f77c3d04858dd864b1411813497cfbbcbbac345
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/calibE0.cal1
@@ -0,0 +1,1024 @@
+-61662.3 7.52711 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61862.3 7.5515 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61786 7.54225 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61488.6 7.50587 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61896.8 7.55579 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61641.5 7.52453 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61399.4 7.49501 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61236.4 7.47509 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-60986.5 7.4446 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62681.3 7.65148 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62393.5 7.61631 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61925.3 7.55919 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62029.9 7.57195 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62417.6 7.61932 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61275.3 7.47982 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63058.3 7.69749 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62722.2 7.65646 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62134.9 7.58477 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62458.1 7.62423 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63902.7 7.80057 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62519.9 7.63181 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62297.5 7.60463 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62659.6 7.64878 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62852.3 7.67238 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62985.4 7.68854 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63073.7 7.69941 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62632 7.64548 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-63013.4 7.69203 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62579 7.63901 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63401.5 7.7394 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62630 7.64523 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56399 6.88462 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56789.2 6.93221 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55564.2 6.78269 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56333.4 6.87654 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-56040.6 6.84084 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+-10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55909.7 6.82487 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55658.4 6.79421 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56211.8 6.86172 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55874 6.82053 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56164.8 6.85597 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56307.5 6.87343 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56382 6.88247 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+-10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+-10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55911.5 6.82508 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57927.5 7.07116 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57924.8 7.07081 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57746 7.049 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57343.1 6.99988 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58172.2 7.10106 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57237.7 6.98697 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57876.3 7.06488 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57523.5 7.02188 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58500.7 7.14114 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57786.5 7.05393 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57300.4 6.99465 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57790.9 7.05448 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57203.4 6.9828 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57985 7.0782 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57888.7 7.06644 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58127.1 7.09555 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63452.4 7.74561 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63612.1 7.76511 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63338.7 7.73174 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64021.8 7.81515 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63197.4 7.71456 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63968.4 7.80864 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63853.8 7.79469 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63356.4 7.73397 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64117.7 7.82683 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63242.6 7.72007 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63972.5 7.80918 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63941.4 7.8053 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63651.8 7.77009 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63754.3 7.78255 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64292.8 7.84837 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64690.6 7.89693 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61215.8 7.47271 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60865.1 7.42995 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61147.3 7.46434 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61469.6 7.50369 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61379.1 7.49269 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61888.7 7.55484 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61403.2 7.49554 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62166.5 7.58877 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61896.4 7.55578 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61572.1 7.51618 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61720.5 7.53424 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62796.5 7.66557 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61868.1 7.55224 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60999.1 7.44621 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61368.2 7.49129 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62166.8 7.58877 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57169.7 6.97872 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57564 7.02681 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57724.2 7.04642 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57113.1 6.97176 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58126.5 7.0955 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57746.5 7.04909 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57665.4 7.03921 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57244.7 6.98784 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57357.8 7.00171 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57943.6 7.0732 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57279.1 6.99197 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57628.2 7.03471 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58567.7 7.1494 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58013.5 7.08178 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57681.5 7.04111 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57795.4 7.05508 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59002.3 7.20244 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59192.2 7.22562 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58512.8 7.14267 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58671.3 7.16207 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58171.6 7.10101 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58350.5 7.12281 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.4 7.11445 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58508.2 7.1421 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58511.7 7.14253 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58653.9 7.15989 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58550.4 7.14724 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59318.4 7.24097 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57853 7.06214 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58498.4 7.14087 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58426.4 7.13213 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59512.6 7.26467 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60443.5 -7.37839 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60908.5 -7.43514 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61060.2 -7.45367 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59984.4 -7.32237 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60129.5 -7.3401 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60783.1 -7.41989 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60431 -7.37691 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60140.7 -7.34142 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59998.4 -7.32403 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60395.7 -7.37254 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60028.3 -7.32774 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60887.8 -7.43267 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61066.5 -7.45441 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61164 -7.46632 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60739.8 -7.41458 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60443.5 -7.37838 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60544.4 -7.39071 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60303 -7.3612 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60143.3 -7.34174 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60328.6 -7.3644 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60395.9 -7.37256 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60276 -7.35798 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59684.2 -7.28572 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60187.9 -7.34719 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.4 -7.29698 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60128.6 -7.33997 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60450.5 -7.37922 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59890.5 -7.31089 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59647.3 -7.2812 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59834.9 -7.30412 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60999.1 -7.44624 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56552.5 -6.90341 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57074.5 -6.96718 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56536.5 -6.9015 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57036.3 -6.96248 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57405.1 -7.0075 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57259.2 -6.98972 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56419.6 -6.88718 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56461.1 -6.89226 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56951.6 -6.95213 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56800 -6.93367 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56600.5 -6.90927 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56511.5 -6.8984 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56870.5 -6.94221 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56993.6 -6.95727 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57679.7 -7.04103 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56560.6 -6.90438 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57546.6 -7.02477 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57035.8 -6.96245 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56800.6 -6.93377 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56505.8 -6.89773 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57161.4 -6.97779 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56855 -6.94036 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56619.7 -6.91168 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57621.8 -7.03399 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57359.7 -7.00197 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56825.9 -6.93676 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57031.5 -6.96191 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57239.3 -6.98735 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57254.8 -6.98918 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57074.4 -6.96716 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57574.5 -7.02822 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57912.4 -7.06943 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+61002.8 -7.44668 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61155.3 -7.4653 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61053.3 -7.45282 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61373.4 -7.4919 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60489.7 -7.38403 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61580.3 -7.51716 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60895.6 -7.4336 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60400.3 -7.3731 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61676.2 -7.52889 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61107.3 -7.45944 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61113.2 -7.46014 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61230.4 -7.47441 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60593.4 -7.39669 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61412.2 -7.49666 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61676.7 -7.52894 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61114.5 -7.46029 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62335.5 -7.60932 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61110.8 -7.45984 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61589.5 -7.51825 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62064.5 -7.57624 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61004.9 -7.44692 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60900.3 -7.43416 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61810.8 -7.54524 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61439.5 -7.49992 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61153 -7.46501 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61309.9 -7.48418 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61160.3 -7.46589 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61470.5 -7.50377 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61862.5 -7.55157 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61676 -7.52886 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62387.3 -7.61565 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60904.4 -7.43464 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56381.2 -6.88248 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56647.7 -6.91501 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56593.9 -6.90848 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56466.6 -6.8929 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56205.1 -6.86097 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56339.2 -6.87735 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56071.1 -6.84463 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56586.9 -6.90762 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56922.8 -6.94858 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56073.7 -6.84493 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57080.7 -6.96791 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57414.3 -7.00859 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56582.5 -6.9071 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56583.6 -6.90725 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56679.2 -6.91888 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56421.5 -6.8874 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56904.4 -6.94638 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57127.8 -6.97364 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56965.6 -6.9538 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56822.1 -6.93632 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57302 -6.99491 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.2 -6.90362 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56421.8 -6.88745 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56645.4 -6.91475 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57398.8 -7.00675 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57237.3 -6.98696 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56689 -6.92007 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56011.6 -6.83742 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56467.7 -6.89303 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55922.3 -6.8265 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56957.2 -6.95281 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56586.5 -6.90758 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62384.5 7.61517 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62210.4 7.59389 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62273.5 7.60161 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62019.1 7.5706 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61476.5 7.50432 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61597 7.51908 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62319.3 7.60717 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61416.3 7.49697 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61327.1 7.48611 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61486.5 7.50558 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61673.4 7.52832 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61732.6 7.53556 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61963.2 7.56376 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61418.2 7.49719 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61209 7.47165 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61987.6 7.56667 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62554.4 7.63592 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61756 7.53848 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62264.1 7.60048 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61953.7 7.56258 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62913.2 7.67967 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62120.9 7.583 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62709 7.65477 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62390 7.61587 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62229.7 7.59629 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61997.7 7.56794 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-62036.5 7.57262 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61752 7.53798 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61655.6 7.52623 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62767.5 7.66194 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61803 7.54422 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62761.8 7.66122 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58303.5 7.11703 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58372.5 7.12549 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58359.9 7.12397 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58262.2 7.11204 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58041 7.08509 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58261 7.11167 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58055.7 7.0867 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58647.4 7.15904 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58203.9 7.10488 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58893.9 7.18895 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58051.5 7.08632 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58539.4 7.14586 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58554.4 7.14758 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59335.9 7.24309 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58725.8 7.16875 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58465.7 7.13677 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.8 7.06394 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58529.8 7.14462 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-57972.8 7.07665 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57725.1 7.04637 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57946.6 7.07339 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57919.5 7.07013 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57971 7.07643 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57812.9 7.05708 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58059.5 7.08722 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57860.9 7.06295 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58481.2 7.13869 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57673.5 7.04005 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57733.9 7.04747 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58243 7.10961 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.2 7.09391 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58246.7 7.11007 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61009.3 7.44733 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61630.7 7.52317 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61471.8 7.50372 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61716.9 7.53361 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61893.5 7.55524 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.6 7.48633 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61623.4 7.52221 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61911.8 7.55752 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61279.1 7.48026 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62438.1 7.62175 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61937.8 7.56062 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62078.7 7.57786 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61496.4 7.50682 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61721.2 7.53417 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61321.1 7.48534 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61930.9 7.55971 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63425.9 7.7423 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63726 7.77898 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.8 7.83822 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63931 7.80396 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64114.7 7.8264 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63881.4 7.7979 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64089.1 7.82321 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64226 7.83998 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64162.8 7.83225 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64227.3 7.84014 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63324.3 7.72992 0.00 !Mu1ChX91ERaw[C.o2At2Ch11]
+-63377.9 7.73646 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64592.4 7.88475 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64051.2 7.81864 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63785.3 7.78625 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63425.1 7.74221 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56277.1 6.86963 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56696.4 6.92087 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56524.2 6.89973 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56421.9 6.88734 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56516.9 6.89896 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-56987.1 6.95627 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57341.9 6.99957 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56590.4 6.90785 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56842.5 6.93859 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57029.9 6.96151 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57840.1 7.06034 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57754.1 7.04987 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57718.4 7.04556 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57495 7.01832 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57673.7 7.0401 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-58035.2 7.08421 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57254.3 6.98888 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57309.6 6.99565 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56813.7 6.93513 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57684.3 7.04141 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57273.6 6.99128 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57263.3 6.99002 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56331.2 6.87626 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58331 7.12035 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57448.3 7.0126 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57763.7 7.05109 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57724.2 7.04628 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57458.3 7.01385 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57586.5 7.02947 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57671.5 7.03982 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57076.6 6.9672 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57818.9 7.05784 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59628.2 -7.27891 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60484.2 -7.3834 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59719.3 -7.29006 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59358 -7.24601 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60209.4 -7.34991 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60023.9 -7.32724 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59427.4 -7.25442 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59479.8 -7.26081 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.6 -7.25995 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59661.5 -7.28303 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59523 -7.2661 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59520.7 -7.26582 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60207.7 -7.3497 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59281.6 -7.23662 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59499.5 -7.26329 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59822.2 -7.30262 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62231 -7.59672 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62517.6 -7.63166 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62462.5 -7.62493 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62047 -7.57417 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62207.3 -7.59375 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62362.9 -7.61277 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62017.5 -7.57064 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61713.9 -7.53355 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61449.1 -7.50123 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62086.1 -7.57898 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62077.7 -7.57796 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62287.6 -7.60362 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62027.9 -7.5719 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61668.6 -7.52799 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61804.8 -7.54468 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115.7 -6.85022 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56255.7 -6.86728 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55634.9 -6.79153 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55640.9 -6.79227 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55384.3 -6.76092 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56420.4 -6.88745 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55380.9 -6.76051 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55934.8 -6.82817 0.00 !Mu1ChY40ERaw[C.o3At3Ch8]
+56036.5 -6.84053 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56149.2 -6.85434 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55509.9 -6.77625 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56637.3 -6.9139 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55637.9 -6.79188 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55730.3 -6.80315 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55751.6 -6.80582 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55760.9 -6.80693 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.7 -6.9819 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56616.7 -6.91132 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56565.1 -6.90504 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56007.5 -6.83694 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56838.9 -6.93846 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56277 -6.86982 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56475.8 -6.89415 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56394.9 -6.88425 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57286.1 -6.99307 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57107.7 -6.97128 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56704.7 -6.92209 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57329.2 -6.99832 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57398.8 -7.00677 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57025.8 -6.96125 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56179.4 -6.85794 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57294.5 -6.99407 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61036 -7.45079 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61615.2 -7.52147 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61327.7 -7.48646 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61616.9 -7.52169 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61289.5 -7.48175 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60072.3 -7.33313 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60461.8 -7.38072 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61147.5 -7.46439 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60324.6 -7.36394 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61243.3 -7.47609 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60892.2 -7.43321 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60362.6 -7.36861 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60563.4 -7.39312 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60969.5 -7.44272 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60632 -7.40146 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61354.5 -7.48966 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61129 -7.46218 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61142.4 -7.46376 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61098.2 -7.45836 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60505 -7.38602 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60475.6 -7.38236 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61198.3 -7.47058 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60653.8 -7.40421 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60610.3 -7.39887 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61084.6 -7.45673 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61281.6 -7.48082 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60759.5 -7.41709 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60908.7 -7.43532 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60520.1 -7.38782 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61330.5 -7.48678 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61609.9 -7.52084 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60752.2 -7.41622 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55866.2 -6.81972 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55510.1 -6.77629 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55739.1 -6.80422 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55602.7 -6.78757 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55779.5 -6.80916 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55452.6 -6.76931 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55433.8 -6.76695 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56175.8 -6.85753 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55295 -6.75003 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55267.6 -6.74664 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55913.4 -6.82548 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55219 -6.74076 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55914.7 -6.82563 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56088.3 -6.84683 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56128.7 -6.85177 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.7 -6.9068 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54791.9 -6.68861 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55573.5 -6.78397 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55177.3 -6.73564 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.9 -6.722 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55271.1 -6.74706 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55426.4 -6.76607 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55308.9 -6.7517 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55560.5 -6.78242 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55828.4 -6.8151 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55461.9 -6.77042 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.4 -6.69404 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55154.2 -6.73277 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55218.5 -6.74067 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55198.9 -6.73821 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55347.2 -6.75638 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56270.5 -6.86904 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62771.8 7.66248 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62536.2 7.63367 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62923.2 7.68092 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62099.2 7.5803 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62071.6 7.577 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62762.5 7.66131 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62536.6 7.63372 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62863.4 7.6736 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62977.6 7.68755 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62169.2 7.58889 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62486.2 7.62758 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62494 7.62855 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62591.4 7.6404 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62596.5 7.64104 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62693.3 7.65283 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63431.9 7.74304 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62275.5 7.60186 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61847 7.54956 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61648.9 7.52542 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61472.2 7.5038 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61487.7 7.50573 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62323.6 7.60772 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62160.6 7.58783 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61801.5 7.54404 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61589.4 7.51813 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61837.9 7.54843 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61997.2 7.56788 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61886.9 7.55441 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61669.6 7.52787 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61317.6 7.48493 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62385.4 7.6153 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61544.8 7.51271 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59005.1 7.20263 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58125.4 7.0952 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58621 7.15577 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58420.8 7.13128 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58182.1 7.10215 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58179.5 7.10183 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58382.7 7.12665 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57951.6 7.074 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57619.4 7.03346 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58602.8 7.15349 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58763.6 7.17317 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58295.3 7.11601 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58611.5 7.15458 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58569.5 7.14945 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58368.6 7.12489 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58524.7 7.144 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57829.7 7.05919 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57177.7 6.97958 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58151 7.0984 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57925 7.07083 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57600.2 7.03119 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57219.8 6.9847 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57855.4 7.06228 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57682.2 7.04116 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57912.6 7.06929 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57598.9 7.03102 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57919.6 7.07016 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.5 6.9577 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57498.2 7.01871 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56729.1 6.92483 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57500.6 7.01901 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57910.6 7.06904 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63311 7.72824 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64991.8 7.93347 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-63994.5 7.8117 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63750.3 7.78186 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64408.5 7.86228 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63629 7.76702 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63438.8 7.74388 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63358.3 7.73399 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63144.6 7.70793 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63812.1 7.7894 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63662.4 7.77117 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63876.9 7.79733 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63771.1 7.78444 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63652.1 7.7699 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63600.3 7.76358 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63256.4 7.72158 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63333.7 7.73107 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63150 7.70859 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63204.5 7.71524 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63982.1 7.81015 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63771.3 7.78446 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63682.7 7.7737 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63921.1 7.80269 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63090.3 7.7013 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63548.7 7.75733 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63345.7 7.73257 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63537.7 7.75593 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63267.1 7.72292 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64614.3 7.88733 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63737 7.78019 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63627.5 7.76682 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59011.6 7.20345 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58536.3 7.14543 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58294.5 7.11592 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58764.5 7.17328 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59388.2 7.24938 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59353.9 7.24523 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58868.9 7.18606 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59020.4 7.20454 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59051.2 7.20827 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59067.7 7.21031 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58780.6 7.17527 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59011.8 7.20348 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58685.6 7.16369 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60313.6 7.36243 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58947.7 7.1956 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58640.6 7.15819 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59256.4 7.23333 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59391.4 7.24979 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59741.5 7.29254 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59153 7.2207 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59659.3 7.28255 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60043.5 7.32941 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59492.9 7.26218 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59355.9 7.2455 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60079 7.3337 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58759.7 7.17268 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59106.3 7.21501 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59356.4 7.24556 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58905.4 7.19045 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58909 7.19091 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59139.8 7.21905 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59244.4 7.23184 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63180.3 -7.71254 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63958.5 -7.80757 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62563.9 -7.63734 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63393.8 -7.73864 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62965.3 -7.6863 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62695.2 -7.65332 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63071 -7.6992 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62684.7 -7.65205 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62805.2 -7.66674 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63405.9 -7.74008 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+63006 -7.69129 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62613.8 -7.64344 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62135.8 -7.58506 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62797.8 -7.66584 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+63003.9 -7.69104 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63451.5 -7.74566 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61680.4 -7.52939 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60963.7 -7.44202 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60731.3 -7.4136 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62044.4 -7.57386 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.9 -7.46121 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60932 -7.4381 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62091.8 -7.57965 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61042.5 -7.45157 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61080.2 -7.45622 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61569 -7.51583 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61088.9 -7.45724 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61401.8 -7.49545 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61590.8 -7.51854 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61456.7 -7.50214 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61348.2 -7.48891 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61814.6 -7.54586 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56310.4 -6.87387 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56475.6 -6.89413 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56843.7 -6.93897 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56709.9 -6.9227 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+57006.5 -6.95894 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56922.7 -6.94871 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56395.9 -6.88437 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56437.5 -6.88946 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56168.1 -6.85657 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58137.4 -7.09691 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56752.1 -6.92786 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56268.3 -6.86879 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57248.3 -6.98843 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57237.7 -6.98715 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57062.5 -6.96574 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56700.2 -6.92152 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57609.4 -7.03252 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57045.1 -6.96368 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57893.4 -7.06716 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57432.1 -7.01085 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57327.3 -6.9981 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58593.6 -7.15267 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57713.2 -7.04516 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57801 -7.05589 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57750.1 -7.0497 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57564.6 -7.02705 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57513.2 -7.02079 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58298.6 -7.11669 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57883.6 -7.066 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57333.9 -6.99889 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57877.7 -7.06529 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58222.3 -7.10732 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59352.4 -7.24534 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59653 -7.28202 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59466.7 -7.25926 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60421 -7.37573 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59563.3 -7.27104 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59865.2 -7.30789 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59568.1 -7.27161 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59903.1 -7.31254 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59874.2 -7.30895 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59565.9 -7.27135 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59951.4 -7.31844 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60102.6 -7.33689 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59329 -7.24242 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59973.3 -7.32106 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59369.2 -7.24734 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60205.5 -7.34945 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60559.1 -7.39262 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61223.9 -7.47379 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60555.5 -7.39217 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61267.8 -7.47916 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61183.2 -7.46879 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60877.4 -7.43143 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60964.7 -7.44213 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61316.7 -7.48517 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60889.6 -7.43289 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60834.9 -7.42623 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61475.4 -7.50452 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60713.8 -7.41149 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61139.9 -7.46349 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60586.2 -7.39585 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61091.2 -7.45753 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61463 -7.50289 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56883.7 -6.94393 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55958.3 -6.83096 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56259.7 -6.86775 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56620.9 -6.91184 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56390.1 -6.88368 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56741.9 -6.92663 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55881.7 -6.82158 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57242.5 -6.98773 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56047.6 -6.84185 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56706.4 -6.92227 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56618.3 -6.91153 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57516.3 -7.02116 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57052.7 -6.96458 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56701.3 -6.92167 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57023.2 -6.96095 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56155.3 -6.85506 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56480.1 -6.89468 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57291 -6.99365 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56601.1 -6.90948 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56864.7 -6.94167 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56504.8 -6.89772 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56531 -6.90085 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56803.1 -6.93407 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56744.6 -6.92696 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56339.6 -6.87753 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57094.7 -6.96973 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57471.8 -7.01574 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56243.7 -6.86585 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56920.2 -6.94841 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56357.9 -6.87972 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56171.4 -6.85698 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62432 7.62115 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61898.1 7.55599 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62261.8 7.60035 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62377.7 7.61452 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61987.1 7.56678 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61925.3 7.55922 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62100.7 7.58066 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61621.8 7.5222 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61764.3 7.53956 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61918.3 7.55834 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61881.5 7.55388 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62903 7.67858 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61674.1 7.52859 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61812.4 7.54541 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61555.6 7.51408 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62627.4 7.64492 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63656.5 7.77047 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63108 7.70354 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62943.4 7.68346 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62837.7 7.67058 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62676.4 7.65089 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.8 7.70503 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63798 7.78783 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63791 7.78695 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62795 7.6654 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63502.6 7.75172 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63532.1 7.75542 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63309.9 7.72829 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63637.8 7.76831 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63587.2 7.76214 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64531.7 7.87739 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63742.8 7.78111 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59430.3 7.25494 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59220.2 7.22924 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58174.6 7.10163 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58373.6 7.12581 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58848.1 7.18369 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-59012.9 7.20387 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59307.2 7.23977 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58677.9 7.16294 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59283.1 7.23677 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58956.4 7.1969 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-59043.5 7.20751 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59047.9 7.20805 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59414.1 7.25268 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58832.8 7.18171 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59184.6 7.22469 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57410.4 7.00817 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57223.7 6.98537 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56941.7 6.95094 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57306.3 6.99545 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56939.2 6.95063 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57390.5 7.00573 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56638.3 6.91393 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57358.5 7.00183 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57684.4 7.04165 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56591.3 6.9082 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57508 7.02016 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57136.1 6.97475 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56380.4 6.88251 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56917.4 6.9481 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56824.5 6.93679 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56577 6.90664 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64140 7.82956 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63839.3 7.79281 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63564.4 7.75927 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63770.4 7.78438 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63671.6 7.77235 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63272.3 7.72359 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64307 7.84993 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62530.8 7.63314 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62672.9 7.65044 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63019 7.69272 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63152.8 7.70897 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63441 7.74419 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64109.3 7.82574 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62453.5 7.62365 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62622.2 7.64425 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63017.2 7.69251 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62453.4 7.62363 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62780.3 7.66354 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62670.1 7.65009 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62554.7 7.63598 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62062.4 7.57587 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62422.6 7.61994 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62402.7 7.61746 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.8 7.58526 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62351.6 7.61123 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62791 7.66488 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62302.7 7.60527 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62078.1 7.57785 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62829.3 7.66952 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.5 7.6367 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62144 7.5859 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62353.9 7.61152 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56131.1 6.85191 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55920.2 6.82616 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55178.7 6.73562 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55783.6 6.8095 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55958 6.83076 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55940.2 6.82857 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55976 6.83293 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55255.5 6.74498 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55479.7 6.77237 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-56040.3 6.84079 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55791.2 6.81044 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55701.6 6.79948 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56738.3 6.92598 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56293.9 6.87171 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55819.1 6.81378 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55694.2 6.79856 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57554.1 7.02556 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56976.8 6.95514 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57518.4 7.02123 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56980.7 6.95562 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58026.2 7.08323 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57191.1 6.98127 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57432 7.01071 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56290.9 6.87137 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56748.2 6.92722 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57901.7 7.06808 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57512.9 7.02056 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57112.4 6.9717 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57653.3 7.03769 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56762.7 6.92904 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57841.9 7.06073 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56524.8 6.89995 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60194.7 -7.34802 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987.9 -7.20075 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60132.2 -7.34041 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59977.5 -7.32152 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59787.4 -7.2983 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59893.4 -7.31122 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59798.6 -7.29963 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60251.3 -7.3549 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60589.5 -7.39622 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60436.6 -7.37756 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60189.7 -7.3474 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59826.4 -7.3031 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59687.2 -7.28606 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59622.1 -7.27818 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60574.8 -7.39447 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59719.2 -7.29002 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62963.1 -7.68601 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63186.9 -7.71331 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62262.3 -7.60044 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62806 -7.6668 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63246.8 -7.72062 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63550.3 -7.75759 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+63016.8 -7.69256 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62986.6 -7.68882 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63522.2 -7.75424 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63478.7 -7.7489 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62643.1 -7.64692 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63429.9 -7.74292 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62483.7 -7.62745 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62960.7 -7.68572 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63085.3 -7.7009 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62969.4 -7.68675 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84715 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56228.6 -6.86391 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55834.6 -6.81583 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55713 -6.80096 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55757 -6.80633 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56228 -6.86384 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55925.9 -6.82695 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55539.7 -6.77979 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55412.1 -6.76422 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185 -6.85859 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55981.8 -6.83375 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55370.8 -6.75918 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55748.9 -6.80537 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55612.3 -6.78871 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55926.3 -6.82699 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55801.2 -6.81172 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56670.8 -6.9179 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56949.5 -6.9519 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57147.1 -6.97597 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56960.4 -6.95318 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56493.9 -6.89629 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56963.2 -6.95364 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56581.6 -6.90701 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57050.7 -6.96421 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57076.9 -6.96747 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56623.8 -6.91216 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57493.2 -7.01827 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57089.4 -6.96896 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57586.3 -7.02963 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57044.7 -6.96349 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56777.7 -6.93089 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57421.6 -7.00961 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59437.6 -7.25562 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59994 -7.32351 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59523.9 -7.2662 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59337.1 -7.24336 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59498.6 -7.26303 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58818.6 -7.18002 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59332.2 -7.24276 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+60018.7 -7.32659 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60180.5 -7.3463 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59480.7 -7.26089 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59527.7 -7.26664 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59635.1 -7.27972 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59581.2 -7.27315 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59444.7 -7.25647 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59048.4 -7.20811 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59989.5 -7.32298 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62855.4 -7.67285 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62750.4 -7.66003 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62532.7 -7.63346 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62151.3 -7.58691 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.6 -7.57075 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62710.2 -7.65509 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62271.6 -7.60155 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62960 -7.68565 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62677.8 -7.65121 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62626.1 -7.64489 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61878.3 -7.55359 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61999.2 -7.56832 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61924.7 -7.55927 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+61995.6 -7.56788 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61960.5 -7.56357 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61833.6 -7.54812 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56731.4 -6.92523 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56909.9 -6.94702 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56318.3 -6.87484 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55946.5 -6.8294 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56299.8 -6.87252 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56328.7 -6.87609 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55986.5 -6.8343 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55996.3 -6.83546 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55858.1 -6.81861 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56336.4 -6.877 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56504.4 -6.89753 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56280.4 -6.87019 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55801.7 -6.81176 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55903.8 -6.82419 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56672.2 -6.91805 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56668.9 -6.91765 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57102.2 -6.97047 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57033.7 -6.96222 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57102 -6.97059 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+57015.2 -6.95994 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57666.6 -7.03944 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57327.3 -6.99806 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56838.8 -6.9384 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57642.3 -7.0364 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57472.4 -7.01575 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57009.2 -6.95917 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57427.6 -7.01028 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57105.1 -6.97094 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57606 -7.03198 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56852.7 -6.94013 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57287.8 -6.99311 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57526.7 -7.02236 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/calibT0.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/calibT0.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..99605ef63058dd281004c7ed8c90ec17435b8b21
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R305-310/calib_SanityCheck_R308/calibT0.cal1
@@ -0,0 +1,1023 @@
+946.164 -0.114176 0.00 !Mu0ChX1TRaw[Co1At1Ch1]
+956.811 -0.115529 0.00 !Mu0ChX2TRaw[Co1At1Ch2]
+957.988 -0.115657 0.00 !Mu0ChX3TRaw[Co1At1Ch3]
+972.139 -0.117409 0.00 !Mu0ChX4TRaw[Co1At1Ch4]
+971.761 -0.117367 0.00 !Mu0ChX5TRaw[Co1At1Ch5]
+971.702 -0.117353 0.00 !Mu0ChX6TRaw[Co1At1Ch6]
+976.911 -0.117969 0.00 !Mu0ChX7TRaw[Co1At1Ch7]
+979.143 -0.118246 0.00 !Mu0ChX8TRaw[Co1At1Ch8]
+977.915 -0.118065 0.00 !Mu0ChX9TRaw[Co1At1Ch9]
+981.976 -0.118546 0.00 !Mu0ChX10TRaw[Co1At1Ch10]
+986.577 -0.119138 0.00 !Mu0ChX11TRaw[Co1At1Ch11]
+986.184 -0.119075 0.00 !Mu0ChX12TRaw[Co1At1Ch12]
+993.563 -0.119996 0.00 !Mu0ChX13TRaw[Co1At1Ch13]
+978.874 -0.118174 0.00 !Mu0ChX14TRaw[Co1At1Ch14]
+989.894 -0.119531 0.00 !Mu0ChX15TRaw[Co1At1Ch15]
+1318.57 -0.118448 0.00 !Mu0ChX16TRaw[Co1At1Ch16]
+955.564 -0.115275 0.00 !Mu0ChX17TRaw[Co1At2Ch1]
+965.774 -0.116527 0.00 !Mu0ChX18TRaw[Co1At2Ch2]
+978.184 -0.118044 0.00 !Mu0ChX19TRaw[Co1At2Ch3]
+978.854 -0.118125 0.00 !Mu0ChX20TRaw[Co1At2Ch4]
+987.988 -0.119233 0.00 !Mu0ChX21TRaw[Co1At2Ch5]
+982.353 -0.118555 0.00 !Mu0ChX22TRaw[Co1At2Ch6]
+992.928 -0.119845 0.00 !Mu0ChX23TRaw[Co1At2Ch7]
+994.329 -0.120005 0.00 !Mu0ChX24TRaw[Co1At2Ch8]
+989.504 -0.119427 0.00 !Mu0ChX25TRaw[Co1At2Ch9]
+1000.62 -0.120777 0.00 !Mu0ChX26TRaw[Co1At2Ch10]
+1002.92 -0.121057 0.00 !Mu0ChX27TRaw[Co1At2Ch11]
+1006.98 -0.121545 0.00 !Mu0ChX28TRaw[Co1At2Ch12]
+1002.57 -0.121021 0.00 !Mu0ChX29TRaw[Co1At2Ch13]
+1001.43 -0.120851 0.00 !Mu0ChX30TRaw[Co1At2Ch14]
+997.945 -0.12045 0.00 !Mu0ChX31TRaw[Co1At2Ch15]
+993.524 -0.119947 0.00 !Mu0ChX32TRaw[Co1At2Ch16]
+872.545 -0.105192 0.00 !Mu0ChX33TRaw[Co1At3Ch1]
+870.474 -0.104955 0.00 !Mu0ChX34TRaw[Co1At3Ch2]
+890.439 -0.107397 0.00 !Mu0ChX35TRaw[Co1At3Ch3]
+879.216 -0.106033 0.00 !Mu0ChX36TRaw[Co1At3Ch4]
+881.009 -0.106227 0.00 !Mu0ChX37TRaw[Co1At3Ch5]
+895.366 -0.108005 0.00 !Mu0ChX38TRaw[Co1At3Ch6]
+897.01 -0.108195 0.00 !Mu0ChX39TRaw[Co1At3Ch7]
+895.47 -0.107979 0.00 !Mu0ChX40TRaw[Co1At3Ch8]
+898.037 -0.108302 0.00 !Mu0ChX41TRaw[Co1At3Ch9]
+898.361 -0.108334 0.00 !Mu0ChX42TRaw[Co1At3Ch10]
+897.507 -0.108243 0.00 !Mu0ChX43TRaw[Co1At3Ch11]
+904.455 -0.109095 0.00 !Mu0ChX44TRaw[Co1At3Ch12]
+899.781 -0.108505 0.00 !Mu0ChX45TRaw[Co1At3Ch13]
+894.363 -0.107877 0.00 !Mu0ChX46TRaw[Co1At3Ch14]
+896.817 -0.108187 0.00 !Mu0ChX47TRaw[Co1At3Ch15]
+930.792 -0.10826 0.00 !Mu0ChX48TRaw[Co1At3Ch16]
+884.648 -0.106556 0.00 !Mu0ChX49TRaw[Co1At4Ch1]
+887.836 -0.106942 0.00 !Mu0ChX50TRaw[Co1At4Ch2]
+893.25 -0.107622 0.00 !Mu0ChX51TRaw[Co1At4Ch3]
+901.75 -0.109464 0.00 !Mu0ChX52TRaw[Co1At4Ch4]
+907.099 -0.109295 0.00 !Mu0ChX53TRaw[Co1At4Ch5]
+909.979 -0.109652 0.00 !Mu0ChX54TRaw[Co1At4Ch6]
+912.526 -0.109955 0.00 !Mu0ChX55TRaw[Co1At4Ch7]
+916.597 -0.110458 0.00 !Mu0ChX56TRaw[Co1At4Ch8]
+925.24 -0.111499 0.00 !Mu0ChX57TRaw[Co1At4Ch9]
+916.715 -0.110456 0.00 !Mu0ChX58TRaw[Co1At4Ch10]
+924.251 -0.111378 0.00 !Mu0ChX59TRaw[Co1At4Ch11]
+928.786 -0.111943 0.00 !Mu0ChX60TRaw[Co1At4Ch12]
+935.878 -0.112807 0.00 !Mu0ChX61TRaw[Co1At4Ch13]
+938.667 -0.11314 0.00 !Mu0ChX62TRaw[Co1At4Ch14]
+940.288 -0.113338 0.00 !Mu0ChX63TRaw[Co1At4Ch15]
+929.111 -0.111982 0.00 !Mu0ChX64TRaw[Co1At4Ch16]
+957.51 -0.115846 0.00 !Mu0ChX65TRaw[Co2At1Ch1]
+962.646 -0.11646 0.00 !Mu0ChX66TRaw[Co2At1Ch2]
+972.344 -0.117644 0.00 !Mu0ChX67TRaw[Co2At1Ch3]
+973.464 -0.117791 0.00 !Mu0ChX68TRaw[Co2At1Ch4]
+976.904 -0.118174 0.00 !Mu0ChX69TRaw[Co2At1Ch5]
+989.493 -0.119717 0.00 !Mu0ChX70TRaw[Co2At1Ch6]
+993.895 -0.120284 0.00 !Mu0ChX71TRaw[Co2At1Ch7]
+995.117 -0.120426 0.00 !Mu0ChX72TRaw[Co2At1Ch8]
+1006.3 -0.121763 0.00 !Mu0ChX73TRaw[Co2At1Ch9]
+987.403 -0.119445 0.00 !Mu0ChX74TRaw[Co2At1Ch10]
+1004.54 -0.121535 0.00 !Mu0ChX75TRaw[Co2At1Ch11]
+995.118 -0.120381 0.00 !Mu0ChX76TRaw[Co2At1Ch12]
+1002.39 -0.121262 0.00 !Mu0ChX77TRaw[Co2At1Ch13]
+1006.49 -0.121766 0.00 !Mu0ChX78TRaw[Co2At1Ch14]
+997.059 -0.120615 0.00 !Mu0ChX79TRaw[Co2At1Ch15]
+1377.74 -0.120952 0.00 !Mu0ChX80TRaw[Co2At1Ch16]
+923.114 -0.111515 0.00 !Mu0ChX81TRaw[Co2At2Ch1]
+932.866 -0.112746 0.00 !Mu0ChX82TRaw[Co2At2Ch2]
+924.928 -0.111774 0.00 !Mu0ChX83TRaw[Co2At2Ch3]
+937.265 -0.113281 0.00 !Mu0ChX84TRaw[Co2At2Ch4]
+930.752 -0.112468 0.00 !Mu0ChX85TRaw[Co2At2Ch5]
+941.628 -0.113819 0.00 !Mu0ChX86TRaw[Co2At2Ch6]
+949.998 -0.114818 0.00 !Mu0ChX87TRaw[Co2At2Ch7]
+943.027 -0.113978 0.00 !Mu0ChX88TRaw[Co2At2Ch8]
+949.721 -0.114813 0.00 !Mu0ChX89TRaw[Co2At2Ch9]
+957.242 -0.115728 0.00 !Mu0ChX90TRaw[Co2At2Ch10]
+964.815 -0.11664 0.00 !Mu0ChX91TRaw[Co2At2Ch11]
+961.466 -0.11625 0.00 !Mu0ChX92TRaw[Co2At2Ch12]
+961.749 -0.116299 0.00 !Mu0ChX93TRaw[Co2At2Ch13]
+960.655 -0.116152 0.00 !Mu0ChX94TRaw[Co2At2Ch14]
+974.674 -0.117868 0.00 !Mu0ChX95TRaw[Co2At2Ch15]
+992.705 -0.116744 0.00 !Mu0ChX96TRaw[Co2At2Ch16]
+868.269 -0.105013 0.00 !Mu0ChX97TRaw[Co2At3Ch1]
+877.648 -0.106169 0.00 !Mu0ChX98TRaw[Co2At3Ch2]
+878.241 -0.106212 0.00 !Mu0ChX99TRaw[Co2At3Ch3]
+883.994 -0.106905 0.00 !Mu0ChX100TRaw[Co2At3Ch4]
+893.321 -0.108043 0.00 !Mu0ChX101TRaw[Co2At3Ch5]
+900.56 -0.108935 0.00 !Mu0ChX102TRaw[Co2At3Ch6]
+896.766 -0.108442 0.00 !Mu0ChX103TRaw[Co2At3Ch7]
+894.903 -0.108194 0.00 !Mu0ChX104TRaw[Co2At3Ch8]
+904.239 -0.109336 0.00 !Mu0ChX105TRaw[Co2At3Ch9]
+902.018 -0.109053 0.00 !Mu0ChX106TRaw[Co2At3Ch10]
+907.673 -0.109771 0.00 !Mu0ChX107TRaw[Co2At3Ch11]
+904.96 -0.109449 0.00 !Mu0ChX108TRaw[Co2At3Ch12]
+902.795 -0.109128 0.00 !Mu0ChX109TRaw[Co2At3Ch13]
+906.335 -0.109641 0.00 !Mu0ChX110TRaw[Co2At3Ch14]
+903.029 -0.109177 0.00 !Mu0ChX111TRaw[Co2At3Ch15]
+912.908 -0.109478 0.00 !Mu0ChX112TRaw[Co2At3Ch16]
+888.694 -0.107364 0.00 !Mu0ChX113TRaw[Co2At4Ch1]
+891.736 -0.107748 0.00 !Mu0ChX114TRaw[Co2At4Ch2]
+891.957 -0.107782 0.00 !Mu0ChX115TRaw[Co2At4Ch3]
+901.87 -0.109007 0.00 !Mu0ChX116TRaw[Co2At4Ch4]
+905.48 -0.109423 0.00 !Mu0ChX117TRaw[Co2At4Ch5]
+899.196 -0.108648 0.00 !Mu0ChX118TRaw[Co2At4Ch6]
+913.782 -0.110413 0.00 !Mu0ChX119TRaw[Co2At4Ch7]
+914.779 -0.110579 0.00 !Mu0ChX120TRaw[Co2At4Ch8]
+909.004 -0.109898 0.00 !Mu0ChX121TRaw[Co2At4Ch9]
+914.282 -0.1105 0.00 !Mu0ChX122TRaw[Co2At4Ch10]
+922.657 -0.111529 0.00 !Mu0ChX123TRaw[Co2At4Ch11]
+914.822 -0.110604 0.00 !Mu0ChX124TRaw[Co2At4Ch12]
+917.977 -0.110972 0.00 !Mu0ChX125TRaw[Co2At4Ch13]
+919.687 -0.11118 0.00 !Mu0ChX126TRaw[Co2At4Ch14]
+914.922 -0.110613 0.00 !Mu0ChX127TRaw[Co2At4Ch15]
+925.329 -0.111151 0.00 !Mu0ChX128TRaw[Co2At4Ch16]
+942.169 -0.114033 0.00 !Mu0ChY2TRaw[Co3At1Ch2]
+941.094 -0.113921 0.00 !Mu0ChY3TRaw[Co3At1Ch3]
+959.045 -0.116104 0.00 !Mu0ChY4TRaw[Co3At1Ch4]
+954.629 -0.115563 0.00 !Mu0ChY5TRaw[Co3At1Ch5]
+970.443 -0.117481 0.00 !Mu0ChY6TRaw[Co3At1Ch6]
+969.234 -0.117339 0.00 !Mu0ChY7TRaw[Co3At1Ch7]
+966.53 -0.117018 0.00 !Mu0ChY8TRaw[Co3At1Ch8]
+973.409 -0.117842 0.00 !Mu0ChY9TRaw[Co3At1Ch9]
+968.923 -0.117316 0.00 !Mu0ChY10TRaw[Co3At1Ch10]
+971.661 -0.117632 0.00 !Mu0ChY11TRaw[Co3At1Ch11]
+977.841 -0.118398 0.00 !Mu0ChY12TRaw[Co3At1Ch12]
+975.821 -0.11814 0.00 !Mu0ChY13TRaw[Co3At1Ch13]
+971.638 -0.117633 0.00 !Mu0ChY14TRaw[Co3At1Ch14]
+974.225 -0.117944 0.00 !Mu0ChY15TRaw[Co3At1Ch15]
+980.805 -0.118761 0.00 !Mu0ChY16TRaw[Co3At1Ch16]
+935.973 -0.113175 0.00 !Mu0ChY17TRaw[Co3At2Ch1]
+944.972 -0.114309 0.00 !Mu0ChY18TRaw[Co3At2Ch2]
+953.592 -0.115351 0.00 !Mu0ChY19TRaw[Co3At2Ch3]
+945.492 -0.11436 0.00 !Mu0ChY20TRaw[Co3At2Ch4]
+948.066 -0.114686 0.00 !Mu0ChY21TRaw[Co3At2Ch5]
+951.558 -0.115103 0.00 !Mu0ChY22TRaw[Co3At2Ch6]
+957.545 -0.115832 0.00 !Mu0ChY23TRaw[Co3At2Ch7]
+957.576 -0.115841 0.00 !Mu0ChY24TRaw[Co3At2Ch8]
+962.251 -0.116398 0.00 !Mu0ChY25TRaw[Co3At2Ch9]
+960.479 -0.116195 0.00 !Mu0ChY26TRaw[Co3At2Ch10]
+957.007 -0.115516 0.00 !Mu0ChY27TRaw[Co3At2Ch11]
+971.646 -0.117562 0.00 !Mu0ChY28TRaw[Co3At2Ch12]
+974.064 -0.117834 0.00 !Mu0ChY29TRaw[Co3At2Ch13]
+968.974 -0.11722 0.00 !Mu0ChY30TRaw[Co3At2Ch14]
+971.944 -0.11759 0.00 !Mu0ChY31TRaw[Co3At2Ch15]
+966.713 -0.116928 0.00 !Mu0ChY32TRaw[Co3At2Ch16]
+869.43 -0.105131 0.00 !Mu0ChY33TRaw[Co3At3Ch1]
+868.989 -0.105113 0.00 !Mu0ChY34TRaw[Co3At3Ch2]
+886.133 -0.107174 0.00 !Mu0ChY35TRaw[Co3At3Ch3]
+876.002 -0.105955 0.00 !Mu0ChY36TRaw[Co3At3Ch4]
+887.653 -0.107363 0.00 !Mu0ChY37TRaw[Co3At3Ch5]
+886.897 -0.107278 0.00 !Mu0ChY38TRaw[Co3At3Ch6]
+887.559 -0.107347 0.00 !Mu0ChY39TRaw[Co3At3Ch7]
+905.525 -0.109567 0.00 !Mu0ChY40TRaw[Co3At3Ch8]
+903.288 -0.109268 0.00 !Mu0ChY41TRaw[Co3At3Ch9]
+901.488 -0.109045 0.00 !Mu0ChY42TRaw[Co3At3Ch10]
+900.453 -0.108924 0.00 !Mu0ChY43TRaw[Co3At3Ch11]
+911.154 -0.110196 0.00 !Mu0ChY44TRaw[Co3At3Ch12]
+908.4 -0.109895 0.00 !Mu0ChY45TRaw[Co3At3Ch13]
+903.164 -0.10924 0.00 !Mu0ChY46TRaw[Co3At3Ch14]
+913.419 -0.110513 0.00 !Mu0ChY47TRaw[Co3At3Ch15]
+901.371 -0.109056 0.00 !Mu0ChY48TRaw[Co3At3Ch16]
+855.809 -0.103507 0.00 !Mu0ChY49TRaw[Co3At4Ch1]
+866.963 -0.104888 0.00 !Mu0ChY50TRaw[Co3At4Ch2]
+862.301 -0.104347 0.00 !Mu0ChY51TRaw[Co3At4Ch3]
+879.214 -0.106391 0.00 !Mu0ChY52TRaw[Co3At4Ch4]
+881.851 -0.106718 0.00 !Mu0ChY53TRaw[Co3At4Ch5]
+883.115 -0.106878 0.00 !Mu0ChY54TRaw[Co3At4Ch6]
+879.659 -0.106441 0.00 !Mu0ChY55TRaw[Co3At4Ch7]
+887.765 -0.107426 0.00 !Mu0ChY56TRaw[Co3At4Ch8]
+889.179 -0.107608 0.00 !Mu0ChY57TRaw[Co3At4Ch9]
+893.434 -0.108136 0.00 !Mu0ChY58TRaw[Co3At4Ch10]
+900.612 -0.109012 0.00 !Mu0ChY59TRaw[Co3At4Ch11]
+899.41 -0.108611 0.00 !Mu0ChY60TRaw[Co3At4Ch12]
+898.225 -0.108719 0.00 !Mu0ChY61TRaw[Co3At4Ch13]
+905.378 -0.109581 0.00 !Mu0ChY62TRaw[Co3At4Ch14]
+899.576 -0.108895 0.00 !Mu0ChY63TRaw[Co3At4Ch15]
+904.856 -0.109543 0.00 !Mu0ChY64TRaw[Co3At4Ch16]
+964.166 -0.116469 0.00 !Mu0ChY65TRaw[Co4At1Ch1]
+970.821 -0.117302 0.00 !Mu0ChY66TRaw[Co4At1Ch2]
+976.54 -0.118012 0.00 !Mu0ChY67TRaw[Co4At1Ch3]
+976.814 -0.118028 0.00 !Mu0ChY68TRaw[Co4At1Ch4]
+979.621 -0.118378 0.00 !Mu0ChY69TRaw[Co4At1Ch5]
+983.271 -0.118825 0.00 !Mu0ChY70TRaw[Co4At1Ch6]
+982.977 -0.118781 0.00 !Mu0ChY71TRaw[Co4At1Ch7]
+986.021 -0.119156 0.00 !Mu0ChY72TRaw[Co4At1Ch8]
+989.88 -0.119628 0.00 !Mu0ChY73TRaw[Co4At1Ch9]
+981.368 -0.118591 0.00 !Mu0ChY74TRaw[Co4At1Ch10]
+990.1 -0.119656 0.00 !Mu0ChY75TRaw[Co4At1Ch11]
+1000.52 -0.120924 0.00 !Mu0ChY76TRaw[Co4At1Ch12]
+995.667 -0.120327 0.00 !Mu0ChY77TRaw[Co4At1Ch13]
+997.754 -0.120579 0.00 !Mu0ChY78TRaw[Co4At1Ch14]
+994.951 -0.120247 0.00 !Mu0ChY79TRaw[Co4At1Ch15]
+1001.99 -0.121097 0.00 !Mu0ChY80TRaw[Co4At1Ch16]
+970.583 -0.117145 0.00 !Mu0ChY81TRaw[Co4At2Ch1]
+986.462 -0.119118 0.00 !Mu0ChY82TRaw[Co4At2Ch2]
+981.625 -0.118534 0.00 !Mu0ChY83TRaw[Co4At2Ch3]
+996.206 -0.12031 0.00 !Mu0ChY84TRaw[Co4At2Ch4]
+1000.06 -0.120777 0.00 !Mu0ChY85TRaw[Co4At2Ch5]
+1002.53 -0.121085 0.00 !Mu0ChY86TRaw[Co4At2Ch6]
+998.357 -0.120569 0.00 !Mu0ChY87TRaw[Co4At2Ch7]
+1008.76 -0.121839 0.00 !Mu0ChY88TRaw[Co4At2Ch8]
+1004.65 -0.121339 0.00 !Mu0ChY89TRaw[Co4At2Ch9]
+1015 -0.122592 0.00 !Mu0ChY90TRaw[Co4At2Ch10]
+1025.62 -0.123897 0.00 !Mu0ChY91TRaw[Co4At2Ch11]
+1025.41 -0.123866 0.00 !Mu0ChY92TRaw[Co4At2Ch12]
+1020.27 -0.123256 0.00 !Mu0ChY93TRaw[Co4At2Ch13]
+1024.71 -0.123786 0.00 !Mu0ChY94TRaw[Co4At2Ch14]
+1021.51 -0.123408 0.00 !Mu0ChY95TRaw[Co4At2Ch15]
+1016.94 -0.122879 0.00 !Mu0ChY96TRaw[Co4At2Ch16]
+882.97 -0.106544 0.00 !Mu0ChY97TRaw[Co4At3Ch1]
+879.326 -0.106139 0.00 !Mu0ChY98TRaw[Co4At3Ch2]
+878.449 -0.106028 0.00 !Mu0ChY99TRaw[Co4At3Ch3]
+894.979 -0.108041 0.00 !Mu0ChY100TRaw[Co4At3Ch4]
+892.203 -0.107707 0.00 !Mu0ChY101TRaw[Co4At3Ch5]
+891.015 -0.10757 0.00 !Mu0ChY102TRaw[Co4At3Ch6]
+895.424 -0.108105 0.00 !Mu0ChY103TRaw[Co4At3Ch7]
+907.578 -0.10959 0.00 !Mu0ChY104TRaw[Co4At3Ch8]
+902.147 -0.108916 0.00 !Mu0ChY105TRaw[Co4At3Ch9]
+915.536 -0.110544 0.00 !Mu0ChY106TRaw[Co4At3Ch10]
+910.897 -0.109981 0.00 !Mu0ChY107TRaw[Co4At3Ch11]
+915.092 -0.11051 0.00 !Mu0ChY108TRaw[Co4At3Ch12]
+914.664 -0.110421 0.00 !Mu0ChY109TRaw[Co4At3Ch13]
+910.113 -0.109894 0.00 !Mu0ChY110TRaw[Co4At3Ch14]
+915.675 -0.110572 0.00 !Mu0ChY111TRaw[Co4At3Ch15]
+917.59 -0.110803 0.00 !Mu0ChY112TRaw[Co4At3Ch16]
+892.441 -0.107535 0.00 !Mu0ChY113TRaw[Co4At4Ch1]
+899.913 -0.108466 0.00 !Mu0ChY114TRaw[Co4At4Ch2]
+899.438 -0.108438 0.00 !Mu0ChY115TRaw[Co4At4Ch3]
+905.439 -0.109158 0.00 !Mu0ChY116TRaw[Co4At4Ch4]
+917.108 -0.110566 0.00 !Mu0ChY117TRaw[Co4At4Ch5]
+910.331 -0.109757 0.00 !Mu0ChY118TRaw[Co4At4Ch6]
+930.135 -0.112167 0.00 !Mu0ChY119TRaw[Co4At4Ch7]
+921.847 -0.111146 0.00 !Mu0ChY120TRaw[Co4At4Ch8]
+932.043 -0.112407 0.00 !Mu0ChY121TRaw[Co4At4Ch9]
+931.497 -0.112337 0.00 !Mu0ChY122TRaw[Co4At4Ch10]
+933.275 -0.112539 0.00 !Mu0ChY123TRaw[Co4At4Ch11]
+936.749 -0.112978 0.00 !Mu0ChY124TRaw[Co4At4Ch12]
+931.392 -0.112316 0.00 !Mu0ChY125TRaw[Co4At4Ch13]
+930.352 -0.112192 0.00 !Mu0ChY126TRaw[Co4At4Ch14]
+927.302 -0.111821 0.00 !Mu0ChY127TRaw[Co4At4Ch15]
+930.24 -0.112162 0.00 !Mu0ChY128TRaw[Co4At4Ch16]
+926.786 -0.11232 0.00 !Mu1ChX1TRaw[Co1At1Ch1]
+940.575 -0.114015 0.00 !Mu1ChX2TRaw[Co1At1Ch2]
+943.089 -0.114341 0.00 !Mu1ChX3TRaw[Co1At1Ch3]
+954.304 -0.115712 0.00 !Mu1ChX4TRaw[Co1At1Ch4]
+954.653 -0.115744 0.00 !Mu1ChX5TRaw[Co1At1Ch5]
+956.573 -0.115962 0.00 !Mu1ChX6TRaw[Co1At1Ch6]
+970.061 -0.117589 0.00 !Mu1ChX7TRaw[Co1At1Ch7]
+965.116 -0.116998 0.00 !Mu1ChX8TRaw[Co1At1Ch8]
+969.325 -0.117498 0.00 !Mu1ChX9TRaw[Co1At1Ch9]
+978.231 -0.118577 0.00 !Mu1ChX10TRaw[Co1At1Ch10]
+974.593 -0.118143 0.00 !Mu1ChX11TRaw[Co1At1Ch11]
+974.146 -0.118071 0.00 !Mu1ChX12TRaw[Co1At1Ch12]
+986.191 -0.11954 0.00 !Mu1ChX13TRaw[Co1At1Ch13]
+986.678 -0.119597 0.00 !Mu1ChX14TRaw[Co1At1Ch14]
+983.727 -0.119236 0.00 !Mu1ChX15TRaw[Co1At1Ch15]
+1371.19 -0.119179 0.00 !Mu1ChX16TRaw[Co1At1Ch16]
+922.557 -0.111777 0.00 !Mu1ChX17TRaw[Co1At2Ch1]
+945.525 -0.114612 0.00 !Mu1ChX18TRaw[Co1At2Ch2]
+946.378 -0.114738 0.00 !Mu1ChX19TRaw[Co1At2Ch3]
+943.86 -0.114439 0.00 !Mu1ChX20TRaw[Co1At2Ch4]
+952.199 -0.115464 0.00 !Mu1ChX21TRaw[Co1At2Ch5]
+965.45 -0.117052 0.00 !Mu1ChX22TRaw[Co1At2Ch6]
+954.947 -0.115762 0.00 !Mu1ChX23TRaw[Co1At2Ch7]
+971.26 -0.117739 0.00 !Mu1ChX24TRaw[Co1At2Ch8]
+969.364 -0.117531 0.00 !Mu1ChX25TRaw[Co1At2Ch9]
+972.531 -0.117923 0.00 !Mu1ChX26TRaw[Co1At2Ch10]
+971.171 -0.117737 0.00 !Mu1ChX27TRaw[Co1At2Ch11]
+974.954 -0.11821 0.00 !Mu1ChX28TRaw[Co1At2Ch12]
+978.834 -0.118677 0.00 !Mu1ChX29TRaw[Co1At2Ch13]
+975.807 -0.118324 0.00 !Mu1ChX30TRaw[Co1At2Ch14]
+974.804 -0.118198 0.00 !Mu1ChX31TRaw[Co1At2Ch15]
+984.936 -0.119148 0.00 !Mu1ChX32TRaw[Co1At2Ch16]
+875.904 -0.106165 0.00 !Mu1ChX33TRaw[Co1At3Ch1]
+875.79 -0.10618 0.00 !Mu1ChX34TRaw[Co1At3Ch2]
+891.706 -0.108064 0.00 !Mu1ChX35TRaw[Co1At3Ch3]
+873.845 -0.105941 0.00 !Mu1ChX36TRaw[Co1At3Ch4]
+891.762 -0.108105 0.00 !Mu1ChX37TRaw[Co1At3Ch5]
+897.589 -0.108823 0.00 !Mu1ChX38TRaw[Co1At3Ch6]
+889.745 -0.107861 0.00 !Mu1ChX39TRaw[Co1At3Ch7]
+894.521 -0.10842 0.00 !Mu1ChX40TRaw[Co1At3Ch8]
+897.332 -0.108779 0.00 !Mu1ChX41TRaw[Co1At3Ch9]
+897.319 -0.108754 0.00 !Mu1ChX42TRaw[Co1At3Ch10]
+905.732 -0.109783 0.00 !Mu1ChX43TRaw[Co1At3Ch11]
+897.833 -0.108855 0.00 !Mu1ChX44TRaw[Co1At3Ch12]
+907.458 -0.110019 0.00 !Mu1ChX45TRaw[Co1At3Ch13]
+905.696 -0.109854 0.00 !Mu1ChX46TRaw[Co1At3Ch14]
+903.207 -0.109528 0.00 !Mu1ChX47TRaw[Co1At3Ch15]
+918.195 -0.110055 0.00 !Mu1ChX48TRaw[Co1At3Ch16]
+865.632 -0.104838 0.00 !Mu1ChX49TRaw[Co1At4Ch1]
+871.03 -0.105455 0.00 !Mu1ChX50TRaw[Co1At4Ch2]
+883.706 -0.107015 0.00 !Mu1ChX51TRaw[Co1At4Ch3]
+886.118 -0.107338 0.00 !Mu1ChX52TRaw[Co1At4Ch4]
+888.977 -0.107685 0.00 !Mu1ChX53TRaw[Co1At4Ch5]
+889.176 -0.107699 0.00 !Mu1ChX54TRaw[Co1At4Ch6]
+893.053 -0.10819 0.00 !Mu1ChX55TRaw[Co1At4Ch7]
+898.958 -0.108878 0.00 !Mu1ChX56TRaw[Co1At4Ch8]
+905.343 -0.1097 0.00 !Mu1ChX57TRaw[Co1At4Ch9]
+901.014 -0.10916 0.00 !Mu1ChX58TRaw[Co1At4Ch10]
+909.801 -0.110244 0.00 !Mu1ChX59TRaw[Co1At4Ch11]
+902.356 -0.109308 0.00 !Mu1ChX60TRaw[Co1At4Ch12]
+915.181 -0.110894 0.00 !Mu1ChX61TRaw[Co1At4Ch13]
+906.646 -0.109867 0.00 !Mu1ChX62TRaw[Co1At4Ch14]
+906.177 -0.109791 0.00 !Mu1ChX63TRaw[Co1At4Ch15]
+917.322 -0.110777 0.00 !Mu1ChX64TRaw[Co1At4Ch16]
+947.375 -0.114723 0.00 !Mu1ChX65TRaw[Co2At1Ch1]
+949.155 -0.114949 0.00 !Mu1ChX66TRaw[Co2At1Ch2]
+962.658 -0.116629 0.00 !Mu1ChX67TRaw[Co2At1Ch3]
+962.29 -0.116557 0.00 !Mu1ChX68TRaw[Co2At1Ch4]
+964.501 -0.116827 0.00 !Mu1ChX69TRaw[Co2At1Ch5]
+972.559 -0.117811 0.00 !Mu1ChX70TRaw[Co2At1Ch6]
+972.248 -0.117758 0.00 !Mu1ChX71TRaw[Co2At1Ch7]
+977.48 -0.118392 0.00 !Mu1ChX72TRaw[Co2At1Ch8]
+974.838 -0.118063 0.00 !Mu1ChX73TRaw[Co2At1Ch9]
+989.581 -0.119853 0.00 !Mu1ChX74TRaw[Co2At1Ch10]
+985.59 -0.119377 0.00 !Mu1ChX75TRaw[Co2At1Ch11]
+983.734 -0.119141 0.00 !Mu1ChX76TRaw[Co2At1Ch12]
+990.699 -0.119982 0.00 !Mu1ChX77TRaw[Co2At1Ch13]
+992.465 -0.120199 0.00 !Mu1ChX78TRaw[Co2At1Ch14]
+992.485 -0.1202 0.00 !Mu1ChX79TRaw[Co2At1Ch15]
+1375.52 -0.120722 0.00 !Mu1ChX80TRaw[Co2At1Ch16]
+972.687 -0.117775 0.00 !Mu1ChX81TRaw[Co2At2Ch1]
+974.84 -0.118024 0.00 !Mu1ChX82TRaw[Co2At2Ch2]
+979.911 -0.118652 0.00 !Mu1ChX83TRaw[Co2At2Ch3]
+993.406 -0.120307 0.00 !Mu1ChX84TRaw[Co2At2Ch4]
+992.814 -0.120215 0.00 !Mu1ChX85TRaw[Co2At2Ch5]
+1002.31 -0.121389 0.00 !Mu1ChX86TRaw[Co2At2Ch6]
+1003.74 -0.121554 0.00 !Mu1ChX87TRaw[Co2At2Ch7]
+995.588 -0.12057 0.00 !Mu1ChX88TRaw[Co2At2Ch8]
+1010.12 -0.122345 0.00 !Mu1ChX89TRaw[Co2At2Ch9]
+1012.32 -0.12261 0.00 !Mu1ChX90TRaw[Co2At2Ch10]
+1007.94 -0.122082 0.00 !Mu1ChX91TRaw[Co2At2Ch11]
+1014.03 -0.12282 0.00 !Mu1ChX92TRaw[Co2At2Ch12]
+1013.77 -0.12279 0.00 !Mu1ChX93TRaw[Co2At2Ch13]
+1016.53 -0.123127 0.00 !Mu1ChX94TRaw[Co2At2Ch14]
+1016.3 -0.123096 0.00 !Mu1ChX95TRaw[Co2At2Ch15]
+1004.26 -0.12163 0.00 !Mu1ChX96TRaw[Co2At2Ch16]
+888.673 -0.107613 0.00 !Mu1ChX97TRaw[Co2At3Ch1]
+886.825 -0.107373 0.00 !Mu1ChX98TRaw[Co2At3Ch2]
+890.552 -0.107838 0.00 !Mu1ChX99TRaw[Co2At3Ch3]
+901.931 -0.109224 0.00 !Mu1ChX100TRaw[Co2At3Ch4]
+901.707 -0.1092 0.00 !Mu1ChX101TRaw[Co2At3Ch5]
+906.676 -0.109791 0.00 !Mu1ChX102TRaw[Co2At3Ch6]
+902.249 -0.109268 0.00 !Mu1ChX103TRaw[Co2At3Ch7]
+917.913 -0.111151 0.00 !Mu1ChX104TRaw[Co2At3Ch8]
+919.118 -0.11128 0.00 !Mu1ChX105TRaw[Co2At3Ch9]
+920.502 -0.111467 0.00 !Mu1ChX106TRaw[Co2At3Ch10]
+925.286 -0.112035 0.00 !Mu1ChX107TRaw[Co2At3Ch11]
+920.839 -0.111519 0.00 !Mu1ChX108TRaw[Co2At3Ch12]
+921.752 -0.111616 0.00 !Mu1ChX109TRaw[Co2At3Ch13]
+913.537 -0.110627 0.00 !Mu1ChX110TRaw[Co2At3Ch14]
+916.058 -0.110941 0.00 !Mu1ChX111TRaw[Co2At3Ch15]
+924.322 -0.11176 0.00 !Mu1ChX112TRaw[Co2At3Ch16]
+897.027 -0.108476 0.00 !Mu1ChX113TRaw[Co2At4Ch1]
+897.77 -0.108567 0.00 !Mu1ChX114TRaw[Co2At4Ch2]
+905.06 -0.10946 0.00 !Mu1ChX115TRaw[Co2At4Ch3]
+910.605 -0.110136 0.00 !Mu1ChX116TRaw[Co2At4Ch4]
+925.57 -0.111977 0.00 !Mu1ChX117TRaw[Co2At4Ch5]
+920.161 -0.111304 0.00 !Mu1ChX118TRaw[Co2At4Ch6]
+932.296 -0.112781 0.00 !Mu1ChX119TRaw[Co2At4Ch7]
+914.819 -0.110659 0.00 !Mu1ChX120TRaw[Co2At4Ch8]
+920.284 -0.111325 0.00 !Mu1ChX121TRaw[Co2At4Ch9]
+927.772 -0.112226 0.00 !Mu1ChX122TRaw[Co2At4Ch10]
+928.866 -0.11236 0.00 !Mu1ChX123TRaw[Co2At4Ch11]
+924.041 -0.111775 0.00 !Mu1ChX124TRaw[Co2At4Ch12]
+921.484 -0.111483 0.00 !Mu1ChX125TRaw[Co2At4Ch13]
+927.438 -0.112193 0.00 !Mu1ChX126TRaw[Co2At4Ch14]
+930.757 -0.112614 0.00 !Mu1ChX127TRaw[Co2At4Ch15]
+924.698 -0.111864 0.00 !Mu1ChX128TRaw[Co2At4Ch16]
+930.899 -0.11282 0.00 !Mu1ChY1TRaw[Co3At1Ch1]
+932.297 -0.113022 0.00 !Mu1ChY2TRaw[Co3At1Ch2]
+943.292 -0.114361 0.00 !Mu1ChY3TRaw[Co3At1Ch3]
+947.201 -0.114834 0.00 !Mu1ChY4TRaw[Co3At1Ch4]
+949.524 -0.115122 0.00 !Mu1ChY5TRaw[Co3At1Ch5]
+952.95 -0.115533 0.00 !Mu1ChY6TRaw[Co3At1Ch6]
+956.311 -0.115938 0.00 !Mu1ChY7TRaw[Co3At1Ch7]
+946.369 -0.114726 0.00 !Mu1ChY8TRaw[Co3At1Ch8]
+953.576 -0.11562 0.00 !Mu1ChY9TRaw[Co3At1Ch9]
+964.215 -0.116854 0.00 !Mu1ChY10TRaw[Co3At1Ch10]
+959.98 -0.116368 0.00 !Mu1ChY11TRaw[Co3At1Ch11]
+967.734 -0.117327 0.00 !Mu1ChY12TRaw[Co3At1Ch12]
+967.914 -0.117358 0.00 !Mu1ChY13TRaw[Co3At1Ch13]
+963.677 -0.116827 0.00 !Mu1ChY14TRaw[Co3At1Ch14]
+965.026 -0.116981 0.00 !Mu1ChY15TRaw[Co3At1Ch15]
+962.695 -0.116717 0.00 !Mu1ChY16TRaw[Co3At1Ch16]
+964.683 -0.116883 0.00 !Mu1ChY17TRaw[Co3At2Ch1]
+966.649 -0.117128 0.00 !Mu1ChY18TRaw[Co3At2Ch2]
+971.034 -0.117665 0.00 !Mu1ChY19TRaw[Co3At2Ch3]
+971.558 -0.117743 0.00 !Mu1ChY20TRaw[Co3At2Ch4]
+983.103 -0.119146 0.00 !Mu1ChY21TRaw[Co3At2Ch5]
+979.702 -0.118747 0.00 !Mu1ChY22TRaw[Co3At2Ch6]
+450 -0.119189 0.00 !Mu1ChY23TRaw[Co3At2Ch7]
+989.487 -0.119964 0.00 !Mu1ChY24TRaw[Co3At2Ch8]
+991.153 -0.120158 0.00 !Mu1ChY25TRaw[Co3At2Ch9]
+991.247 -0.120176 0.00 !Mu1ChY26TRaw[Co3At2Ch10]
+995.752 -0.120728 0.00 !Mu1ChY27TRaw[Co3At2Ch11]
+990.621 -0.120113 0.00 !Mu1ChY28TRaw[Co3At2Ch12]
+992.588 -0.120339 0.00 !Mu1ChY29TRaw[Co3At2Ch13]
+983.94 -0.119308 0.00 !Mu1ChY30TRaw[Co3At2Ch14]
+990.472 -0.120108 0.00 !Mu1ChY31TRaw[Co3At2Ch15]
+985.366 -0.119515 0.00 !Mu1ChY32TRaw[Co3At2Ch16]
+879.895 -0.106691 0.00 !Mu1ChY33TRaw[Co3At3Ch1]
+885.732 -0.10745 0.00 !Mu1ChY34TRaw[Co3At3Ch2]
+880.947 -0.106848 0.00 !Mu1ChY35TRaw[Co3At3Ch3]
+890.881 -0.108037 0.00 !Mu1ChY36TRaw[Co3At3Ch4]
+8.50641e+11 -1.03827e+08 0.00 !Mu1ChY37TRaw[Co3At3Ch5]
+901.269 -0.109433 0.00 !Mu1ChY38TRaw[Co3At3Ch6]
+900.483 -0.110242 0.00 !Mu1ChY39TRaw[Co3At3Ch7]
+902.133 -0.10944 0.00 !Mu1ChY40TRaw[Co3At3Ch8]
+890.343 -0.107957 0.00 !Mu1ChY41TRaw[Co3At3Ch9]
+902.898 -0.109521 0.00 !Mu1ChY42TRaw[Co3At3Ch10]
+895.657 -0.108623 0.00 !Mu1ChY43TRaw[Co3At3Ch11]
+904.61 -0.10969 0.00 !Mu1ChY44TRaw[Co3At3Ch12]
+907.072 -0.109989 0.00 !Mu1ChY45TRaw[Co3At3Ch13]
+901.222 -0.109312 0.00 !Mu1ChY46TRaw[Co3At3Ch14]
+905.951 -0.109844 0.00 !Mu1ChY47TRaw[Co3At3Ch15]
+901.159 -0.109257 0.00 !Mu1ChY48TRaw[Co3At3Ch16]
+883.344 -0.10696 0.00 !Mu1ChY49TRaw[Co3At4Ch1]
+882.465 -0.106852 0.00 !Mu1ChY50TRaw[Co3At4Ch2]
+878.872 -0.106436 0.00 !Mu1ChY51TRaw[Co3At4Ch3]
+892.099 -0.108049 0.00 !Mu1ChY52TRaw[Co3At4Ch4]
+897.834 -0.108781 0.00 !Mu1ChY53TRaw[Co3At4Ch5]
+899.02 -0.108923 0.00 !Mu1ChY54TRaw[Co3At4Ch6]
+898.979 -0.108922 0.00 !Mu1ChY55TRaw[Co3At4Ch7]
+899.225 -0.108949 0.00 !Mu1ChY56TRaw[Co3At4Ch8]
+911.018 -0.110395 0.00 !Mu1ChY57TRaw[Co3At4Ch9]
+910.225 -0.110294 0.00 !Mu1ChY58TRaw[Co3At4Ch10]
+905.692 -0.109746 0.00 !Mu1ChY59TRaw[Co3At4Ch11]
+908.504 -0.109802 0.00 !Mu1ChY60TRaw[Co3At4Ch12]
+905.665 -0.109742 0.00 !Mu1ChY61TRaw[Co3At4Ch13]
+913.658 -0.11072 0.00 !Mu1ChY62TRaw[Co3At4Ch14]
+915.004 -0.110879 0.00 !Mu1ChY63TRaw[Co3At4Ch15]
+915.999 -0.111037 0.00 !Mu1ChY64TRaw[Co3At4Ch16]
+945.876 -0.115194 0.00 !Mu1ChY65TRaw[Co4At1Ch1]
+952.653 -0.116053 0.00 !Mu1ChY66TRaw[Co4At1Ch2]
+958.599 -0.116788 0.00 !Mu1ChY67TRaw[Co4At1Ch3]
+962.073 -0.117211 0.00 !Mu1ChY68TRaw[Co4At1Ch4]
+965.512 -0.117617 0.00 !Mu1ChY69TRaw[Co4At1Ch5]
+973.646 -0.118609 0.00 !Mu1ChY70TRaw[Co4At1Ch6]
+969.091 -0.118053 0.00 !Mu1ChY71TRaw[Co4At1Ch7]
+977.205 -0.119038 0.00 !Mu1ChY72TRaw[Co4At1Ch8]
+978.244 -0.119163 0.00 !Mu1ChY73TRaw[Co4At1Ch9]
+981.509 -0.119552 0.00 !Mu1ChY74TRaw[Co4At1Ch10]
+983.33 -0.119777 0.00 !Mu1ChY75TRaw[Co4At1Ch11]
+980.28 -0.119391 0.00 !Mu1ChY76TRaw[Co4At1Ch12]
+987.378 -0.11981 0.00 !Mu1ChY77TRaw[Co4At1Ch13]
+981.221 -0.119505 0.00 !Mu1ChY78TRaw[Co4At1Ch14]
+982.019 -0.119601 0.00 !Mu1ChY79TRaw[Co4At1Ch15]
+986.869 -0.120194 0.00 !Mu1ChY80TRaw[Co4At1Ch16]
+942.041 -0.114646 0.00 !Mu1ChY81TRaw[Co4At2Ch1]
+950.256 -0.115676 0.00 !Mu1ChY82TRaw[Co4At2Ch2]
+949.146 -0.115551 0.00 !Mu1ChY83TRaw[Co4At2Ch3]
+956.132 -0.116392 0.00 !Mu1ChY84TRaw[Co4At2Ch4]
+955.603 -0.116344 0.00 !Mu1ChY85TRaw[Co4At2Ch5]
+965.862 -0.117589 0.00 !Mu1ChY86TRaw[Co4At2Ch6]
+966.696 -0.117699 0.00 !Mu1ChY87TRaw[Co4At2Ch7]
+973.856 -0.118567 0.00 !Mu1ChY88TRaw[Co4At2Ch8]
+974.942 -0.118705 0.00 !Mu1ChY89TRaw[Co4At2Ch9]
+967.58 -0.117807 0.00 !Mu1ChY90TRaw[Co4At2Ch10]
+972.217 -0.118376 0.00 !Mu1ChY91TRaw[Co4At2Ch11]
+980.142 -0.119333 0.00 !Mu1ChY92TRaw[Co4At2Ch12]
+980.758 -0.119429 0.00 !Mu1ChY93TRaw[Co4At2Ch13]
+973.754 -0.118576 0.00 !Mu1ChY94TRaw[Co4At2Ch14]
+977.548 -0.119031 0.00 !Mu1ChY95TRaw[Co4At2Ch15]
+988.795 -0.120471 0.00 !Mu1ChY96TRaw[Co4At2Ch16]
+871.404 -0.106136 0.00 !Mu1ChY97TRaw[Co4At3Ch1]
+870.084 -0.106 0.00 !Mu1ChY98TRaw[Co4At3Ch2]
+874.611 -0.106555 0.00 !Mu1ChY99TRaw[Co4At3Ch3]
+888.655 -0.108263 0.00 !Mu1ChY100TRaw[Co4At3Ch4]
+886.461 -0.10801 0.00 !Mu1ChY101TRaw[Co4At3Ch5]
+878.586 -0.107044 0.00 !Mu1ChY102TRaw[Co4At3Ch6]
+886.442 -0.108005 0.00 !Mu1ChY103TRaw[Co4At3Ch7]
+889.81 -0.108406 0.00 !Mu1ChY104TRaw[Co4At3Ch8]
+900.116 -0.109653 0.00 !Mu1ChY105TRaw[Co4At3Ch9]
+896.798 -0.10926 0.00 !Mu1ChY106TRaw[Co4At3Ch10]
+900.214 -0.10967 0.00 !Mu1ChY107TRaw[Co4At3Ch11]
+890.896 -0.108536 0.00 !Mu1ChY108TRaw[Co4At3Ch12]
+898.103 -0.109417 0.00 !Mu1ChY109TRaw[Co4At3Ch13]
+905.123 -0.110268 0.00 !Mu1ChY110TRaw[Co4At3Ch14]
+895.488 -0.109108 0.00 !Mu1ChY111TRaw[Co4At3Ch15]
+901.504 -0.109824 0.00 !Mu1ChY112TRaw[Co4At3Ch16]
+857.767 -0.104291 0.00 !Mu1ChY113TRaw[Co4At4Ch1]
+851.391 -0.103549 0.00 !Mu1ChY114TRaw[Co4At4Ch2]
+861.589 -0.104798 0.00 !Mu1ChY115TRaw[Co4At4Ch3]
+856.553 -0.10419 0.00 !Mu1ChY116TRaw[Co4At4Ch4]
+865 -0.105221 0.00 !Mu1ChY117TRaw[Co4At4Ch5]
+874.383 -0.106354 0.00 !Mu1ChY118TRaw[Co4At4Ch6]
+878.744 -0.1069 0.00 !Mu1ChY119TRaw[Co4At4Ch7]
+873.451 -0.106252 0.00 !Mu1ChY120TRaw[Co4At4Ch8]
+890.883 -0.108379 0.00 !Mu1ChY121TRaw[Co4At4Ch9]
+891.802 -0.108492 0.00 !Mu1ChY122TRaw[Co4At4Ch10]
+889.789 -0.108225 0.00 !Mu1ChY123TRaw[Co4At4Ch11]
+888.888 -0.108132 0.00 !Mu1ChY124TRaw[Co4At4Ch12]
+891.161 -0.108412 0.00 !Mu1ChY125TRaw[Co4At4Ch13]
+886.515 -0.10784 0.00 !Mu1ChY126TRaw[Co4At4Ch14]
+883.99 -0.107526 0.00 !Mu1ChY127TRaw[Co4At4Ch15]
+947.91 -0.121191 0.00 !Mu1ChY128TRaw[Co4At4Ch16]
+936.808 -0.113282 0.00 !Mu2ChX1TRaw[Co1At1Ch1]
+933.588 -0.112935 0.00 !Mu2ChX2TRaw[Co1At1Ch2]
+941.562 -0.113903 0.00 !Mu2ChX3TRaw[Co1At1Ch3]
+953.784 -0.11541 0.00 !Mu2ChX4TRaw[Co1At1Ch4]
+949.078 -0.114834 0.00 !Mu2ChX5TRaw[Co1At1Ch5]
+966.718 -0.116968 0.00 !Mu2ChX6TRaw[Co1At1Ch6]
+960.214 -0.116144 0.00 !Mu2ChX7TRaw[Co1At1Ch7]
+964.987 -0.116738 0.00 !Mu2ChX8TRaw[Co1At1Ch8]
+956.88 -0.115736 0.00 !Mu2ChX9TRaw[Co1At1Ch9]
+968.81 -0.117191 0.00 !Mu2ChX10TRaw[Co1At1Ch10]
+971.337 -0.117505 0.00 !Mu2ChX11TRaw[Co1At1Ch11]
+966.1 -0.116868 0.00 !Mu2ChX12TRaw[Co1At1Ch12]
+972.053 -0.117596 0.00 !Mu2ChX13TRaw[Co1At1Ch13]
+966.078 -0.116864 0.00 !Mu2ChX14TRaw[Co1At1Ch14]
+966.541 -0.116934 0.00 !Mu2ChX15TRaw[Co1At1Ch15]
+1367.28 -0.118078 0.00 !Mu2ChX16TRaw[Co1At1Ch16]
+918.709 -0.111042 0.00 !Mu2ChX17TRaw[Co1At2Ch1]
+933.754 -0.1129 0.00 !Mu2ChX18TRaw[Co1At2Ch2]
+936.423 -0.113239 0.00 !Mu2ChX19TRaw[Co1At2Ch3]
+935.388 -0.11311 0.00 !Mu2ChX20TRaw[Co1At2Ch4]
+946.289 -0.114433 0.00 !Mu2ChX21TRaw[Co1At2Ch5]
+941.937 -0.113893 0.00 !Mu2ChX22TRaw[Co1At2Ch6]
+939.701 -0.113604 0.00 !Mu2ChX23TRaw[Co1At2Ch7]
+947.866 -0.114596 0.00 !Mu2ChX24TRaw[Co1At2Ch8]
+939.11 -0.113523 0.00 !Mu2ChX25TRaw[Co1At2Ch9]
+947.312 -0.114529 0.00 !Mu2ChX26TRaw[Co1At2Ch10]
+947.872 -0.114587 0.00 !Mu2ChX27TRaw[Co1At2Ch11]
+944.089 -0.114127 0.00 !Mu2ChX28TRaw[Co1At2Ch12]
+951.541 -0.115049 0.00 !Mu2ChX29TRaw[Co1At2Ch13]
+947.806 -0.114577 0.00 !Mu2ChX30TRaw[Co1At2Ch14]
+949.646 -0.114801 0.00 !Mu2ChX31TRaw[Co1At2Ch15]
+1101.24 -0.114725 0.00 !Mu2ChX32TRaw[Co1At2Ch16]
+883.868 -0.106884 0.00 !Mu2ChX33TRaw[Co1At3Ch1]
+881.306 -0.106588 0.00 !Mu2ChX34TRaw[Co1At3Ch2]
+890.406 -0.10771 0.00 !Mu2ChX35TRaw[Co1At3Ch3]
+887.688 -0.10739 0.00 !Mu2ChX36TRaw[Co1At3Ch4]
+901.335 -0.109058 0.00 !Mu2ChX37TRaw[Co1At3Ch5]
+898.532 -0.108685 0.00 !Mu2ChX38TRaw[Co1At3Ch6]
+906.127 -0.109605 0.00 !Mu2ChX39TRaw[Co1At3Ch7]
+903.029 -0.109211 0.00 !Mu2ChX40TRaw[Co1At3Ch8]
+902.567 -0.109168 0.00 !Mu2ChX41TRaw[Co1At3Ch9]
+906.324 -0.109617 0.00 !Mu2ChX42TRaw[Co1At3Ch10]
+912.663 -0.1104 0.00 !Mu2ChX43TRaw[Co1At3Ch11]
+911.609 -0.110254 0.00 !Mu2ChX44TRaw[Co1At3Ch12]
+919.504 -0.111219 0.00 !Mu2ChX45TRaw[Co1At3Ch13]
+918.075 -0.111043 0.00 !Mu2ChX46TRaw[Co1At3Ch14]
+920.693 -0.111378 0.00 !Mu2ChX47TRaw[Co1At3Ch15]
+1304.08 -0.11089 0.00 !Mu2ChX48TRaw[Co1At3Ch16]
+852.901 -0.102956 0.00 !Mu2ChX49TRaw[Co1At4Ch1]
+862.836 -0.104191 0.00 !Mu2ChX50TRaw[Co1At4Ch2]
+872.425 -0.105362 0.00 !Mu2ChX51TRaw[Co1At4Ch3]
+866.551 -0.10464 0.00 !Mu2ChX52TRaw[Co1At4Ch4]
+875.507 -0.105723 0.00 !Mu2ChX53TRaw[Co1At4Ch5]
+875.722 -0.105755 0.00 !Mu2ChX54TRaw[Co1At4Ch6]
+877.794 -0.105984 0.00 !Mu2ChX55TRaw[Co1At4Ch7]
+885.59 -0.106931 0.00 !Mu2ChX56TRaw[Co1At4Ch8]
+894.535 -0.108024 0.00 !Mu2ChX57TRaw[Co1At4Ch9]
+896.983 -0.108307 0.00 !Mu2ChX58TRaw[Co1At4Ch10]
+888.442 -0.107279 0.00 !Mu2ChX59TRaw[Co1At4Ch11]
+898.855 -0.108543 0.00 !Mu2ChX60TRaw[Co1At4Ch12]
+900.217 -0.108721 0.00 !Mu2ChX61TRaw[Co1At4Ch13]
+899.805 -0.108665 0.00 !Mu2ChX62TRaw[Co1At4Ch14]
+896.358 -0.10824 0.00 !Mu2ChX63TRaw[Co1At4Ch15]
+1286.56 -0.107885 0.00 !Mu2ChX64TRaw[Co1At4Ch16]
+969.588 -0.117533 0.00 !Mu2ChX65TRaw[Co2At1Ch1]
+969.639 -0.117545 0.00 !Mu2ChX66TRaw[Co2At1Ch2]
+981.26 -0.118957 0.00 !Mu2ChX67TRaw[Co2At1Ch3]
+986.207 -0.119584 0.00 !Mu2ChX68TRaw[Co2At1Ch4]
+450 -0.119902 0.00 !Mu2ChX69TRaw[Co2At1Ch5]
+989.899 -0.12002 0.00 !Mu2ChX70TRaw[Co2At1Ch6]
+991.208 -0.120171 0.00 !Mu2ChX71TRaw[Co2At1Ch7]
+996.377 -0.120802 0.00 !Mu2ChX72TRaw[Co2At1Ch8]
+989.619 -0.119977 0.00 !Mu2ChX73TRaw[Co2At1Ch9]
+998.452 -0.12102 0.00 !Mu2ChX74TRaw[Co2At1Ch10]
+994.24 -0.12055 0.00 !Mu2ChX75TRaw[Co2At1Ch11]
+993.976 -0.12048 0.00 !Mu2ChX76TRaw[Co2At1Ch12]
+1003.64 -0.121688 0.00 !Mu2ChX77TRaw[Co2At1Ch13]
+1007.3 -0.122136 0.00 !Mu2ChX78TRaw[Co2At1Ch14]
+1010.11 -0.122472 0.00 !Mu2ChX79TRaw[Co2At1Ch15]
+1318.69 -0.121488 0.00 !Mu2ChX80TRaw[Co2At1Ch16]
+950.946 -0.115148 0.00 !Mu2ChX81TRaw[Co2At2Ch1]
+961.899 -0.116512 0.00 !Mu2ChX82TRaw[Co2At2Ch2]
+963.68 -0.116735 0.00 !Mu2ChX83TRaw[Co2At2Ch3]
+967.2 -0.117158 0.00 !Mu2ChX84TRaw[Co2At2Ch4]
+967.305 -0.117159 0.00 !Mu2ChX85TRaw[Co2At2Ch5]
+968.515 -0.117336 0.00 !Mu2ChX86TRaw[Co2At2Ch6]
+982.177 -0.118997 0.00 !Mu2ChX87TRaw[Co2At2Ch7]
+981.387 -0.118879 0.00 !Mu2ChX88TRaw[Co2At2Ch8]
+991.904 -0.120152 0.00 !Mu2ChX89TRaw[Co2At2Ch9]
+991.623 -0.120143 0.00 !Mu2ChX90TRaw[Co2At2Ch10]
+990.622 -0.120011 0.00 !Mu2ChX91TRaw[Co2At2Ch11]
+980.868 -0.118788 0.00 !Mu2ChX92TRaw[Co2At2Ch12]
+995.536 -0.120614 0.00 !Mu2ChX93TRaw[Co2At2Ch13]
+999.576 -0.12112 0.00 !Mu2ChX94TRaw[Co2At2Ch14]
+1000.5 -0.12123 0.00 !Mu2ChX95TRaw[Co2At2Ch15]
+985.324 -0.119394 0.00 !Mu2ChX96TRaw[Co2At2Ch16]
+898.921 -0.10895 0.00 !Mu2ChX97TRaw[Co2At3Ch1]
+915.715 -0.11099 0.00 !Mu2ChX98TRaw[Co2At3Ch2]
+911.411 -0.110483 0.00 !Mu2ChX99TRaw[Co2At3Ch3]
+911.648 -0.110494 0.00 !Mu2ChX100TRaw[Co2At3Ch4]
+920.871 -0.11163 0.00 !Mu2ChX101TRaw[Co2At3Ch5]
+920.388 -0.111573 0.00 !Mu2ChX102TRaw[Co2At3Ch6]
+918.664 -0.111368 0.00 !Mu2ChX103TRaw[Co2At3Ch7]
+923.174 -0.111888 0.00 !Mu2ChX104TRaw[Co2At3Ch8]
+933.198 -0.113122 0.00 !Mu2ChX105TRaw[Co2At3Ch9]
+930.187 -0.112764 0.00 !Mu2ChX106TRaw[Co2At3Ch10]
+935.147 -0.113373 0.00 !Mu2ChX107TRaw[Co2At3Ch11]
+930.349 -0.112797 0.00 !Mu2ChX108TRaw[Co2At3Ch12]
+933.561 -0.113176 0.00 !Mu2ChX109TRaw[Co2At3Ch13]
+940.135 -0.113973 0.00 !Mu2ChX110TRaw[Co2At3Ch14]
+940.914 -0.114066 0.00 !Mu2ChX111TRaw[Co2At3Ch15]
+940.163 -0.113973 0.00 !Mu2ChX112TRaw[Co2At3Ch16]
+900.272 -0.108961 0.00 !Mu2ChX113TRaw[Co2At4Ch1]
+905.007 -0.109531 0.00 !Mu2ChX114TRaw[Co2At4Ch2]
+912.464 -0.110461 0.00 !Mu2ChX115TRaw[Co2At4Ch3]
+912.22 -0.110414 0.00 !Mu2ChX116TRaw[Co2At4Ch4]
+927.733 -0.112323 0.00 !Mu2ChX117TRaw[Co2At4Ch5]
+930.691 -0.11267 0.00 !Mu2ChX118TRaw[Co2At4Ch6]
+936.077 -0.113333 0.00 !Mu2ChX119TRaw[Co2At4Ch7]
+939.108 -0.113698 0.00 !Mu2ChX120TRaw[Co2At4Ch8]
+938.924 -0.113666 0.00 !Mu2ChX121TRaw[Co2At4Ch9]
+947.571 -0.114745 0.00 !Mu2ChX122TRaw[Co2At4Ch10]
+938.938 -0.113673 0.00 !Mu2ChX123TRaw[Co2At4Ch11]
+945.07 -0.11443 0.00 !Mu2ChX124TRaw[Co2At4Ch12]
+934.733 -0.113174 0.00 !Mu2ChX125TRaw[Co2At4Ch13]
+934.595 -0.113143 0.00 !Mu2ChX126TRaw[Co2At4Ch14]
+943.044 -0.114176 0.00 !Mu2ChX127TRaw[Co2At4Ch15]
+943.184 -0.114186 0.00 !Mu2ChX128TRaw[Co2At4Ch16]
+987.442 -0.119525 0.00 !Mu2ChY1TRaw[Co3At1Ch1]
+990.37 -0.119903 0.00 !Mu2ChY2TRaw[Co3At1Ch2]
+989.136 -0.119776 0.00 !Mu2ChY3TRaw[Co3At1Ch3]
+995.437 -0.120524 0.00 !Mu2ChY4TRaw[Co3At1Ch4]
+1000.77 -0.121165 0.00 !Mu2ChY5TRaw[Co3At1Ch5]
+998.951 -0.120947 0.00 !Mu2ChY6TRaw[Co3At1Ch6]
+1003.75 -0.121526 0.00 !Mu2ChY7TRaw[Co3At1Ch7]
+1010.87 -0.122366 0.00 !Mu2ChY8TRaw[Co3At1Ch8]
+1012.21 -0.122539 0.00 !Mu2ChY9TRaw[Co3At1Ch9]
+1003.9 -0.121307 0.00 !Mu2ChY10TRaw[Co3At1Ch10]
+1010.24 -0.122275 0.00 !Mu2ChY11TRaw[Co3At1Ch11]
+1015.27 -0.122898 0.00 !Mu2ChY12TRaw[Co3At1Ch12]
+1017.2 -0.12312 0.00 !Mu2ChY13TRaw[Co3At1Ch13]
+1022.23 -0.123746 0.00 !Mu2ChY14TRaw[Co3At1Ch14]
+1021.37 -0.123621 0.00 !Mu2ChY15TRaw[Co3At1Ch15]
+1022.68 -0.123744 0.00 !Mu2ChY16TRaw[Co3At1Ch16]
+939.963 -0.113632 0.00 !Mu2ChY17TRaw[Co3At2Ch1]
+939.308 -0.11359 0.00 !Mu2ChY18TRaw[Co3At2Ch2]
+938.897 -0.113546 0.00 !Mu2ChY19TRaw[Co3At2Ch3]
+938.628 -0.113526 0.00 !Mu2ChY20TRaw[Co3At2Ch4]
+953.606 -0.115367 0.00 !Mu2ChY21TRaw[Co3At2Ch5]
+969.437 -0.117305 0.00 !Mu2ChY22TRaw[Co3At2Ch6]
+965.454 -0.11682 0.00 !Mu2ChY23TRaw[Co3At2Ch7]
+960.44 -0.116216 0.00 !Mu2ChY24TRaw[Co3At2Ch8]
+975.99 -0.118134 0.00 !Mu2ChY25TRaw[Co3At2Ch9]
+978.687 -0.118446 0.00 !Mu2ChY26TRaw[Co3At2Ch10]
+976.083 -0.117858 0.00 !Mu2ChY27TRaw[Co3At2Ch11]
+982.568 -0.11895 0.00 !Mu2ChY28TRaw[Co3At2Ch12]
+976.864 -0.118238 0.00 !Mu2ChY29TRaw[Co3At2Ch13]
+978.515 -0.118468 0.00 !Mu2ChY30TRaw[Co3At2Ch14]
+977.409 -0.118337 0.00 !Mu2ChY31TRaw[Co3At2Ch15]
+965.447 -0.116905 0.00 !Mu2ChY32TRaw[Co3At2Ch16]
+870.181 -0.105393 0.00 !Mu2ChY33TRaw[Co3At3Ch1]
+876.858 -0.106206 0.00 !Mu2ChY34TRaw[Co3At3Ch2]
+889.244 -0.107711 0.00 !Mu2ChY35TRaw[Co3At3Ch3]
+890.519 -0.10786 0.00 !Mu2ChY36TRaw[Co3At3Ch4]
+893.817 -0.108297 0.00 !Mu2ChY37TRaw[Co3At3Ch5]
+888.588 -0.107628 0.00 !Mu2ChY38TRaw[Co3At3Ch6]
+904.701 -0.109574 0.00 !Mu2ChY39TRaw[Co3At3Ch7]
+903.479 -0.109401 0.00 !Mu2ChY40TRaw[Co3At3Ch8]
+906.236 -0.109756 0.00 !Mu2ChY41TRaw[Co3At3Ch9]
+914.382 -0.110304 0.00 !Mu2ChY42TRaw[Co3At3Ch10]
+906.598 -0.10979 0.00 !Mu2ChY43TRaw[Co3At3Ch11]
+910.53 -0.110231 0.00 !Mu2ChY44TRaw[Co3At3Ch12]
+912.933 -0.110532 0.00 !Mu2ChY45TRaw[Co3At3Ch13]
+916.041 -0.110907 0.00 !Mu2ChY46TRaw[Co3At3Ch14]
+919.774 -0.111371 0.00 !Mu2ChY47TRaw[Co3At3Ch15]
+915.148 -0.110791 0.00 !Mu2ChY48TRaw[Co3At3Ch16]
+893.19 -0.108016 0.00 !Mu2ChY49TRaw[Co3At4Ch1]
+902.467 -0.109155 0.00 !Mu2ChY50TRaw[Co3At4Ch2]
+899.946 -0.108834 0.00 !Mu2ChY51TRaw[Co3At4Ch3]
+913.407 -0.110471 0.00 !Mu2ChY52TRaw[Co3At4Ch4]
+905.911 -0.109622 0.00 !Mu2ChY53TRaw[Co3At4Ch5]
+914.887 -0.110708 0.00 !Mu2ChY54TRaw[Co3At4Ch6]
+922.021 -0.111116 0.00 !Mu2ChY55TRaw[Co3At4Ch7]
+914.007 -0.11061 0.00 !Mu2ChY56TRaw[Co3At4Ch8]
+926.973 -0.11216 0.00 !Mu2ChY57TRaw[Co3At4Ch9]
+918.182 -0.111079 0.00 !Mu2ChY58TRaw[Co3At4Ch10]
+920.356 -0.111393 0.00 !Mu2ChY59TRaw[Co3At4Ch11]
+924.322 -0.11168 0.00 !Mu2ChY60TRaw[Co3At4Ch12]
+940.509 -0.11386 0.00 !Mu2ChY61TRaw[Co3At4Ch13]
+925.883 -0.112068 0.00 !Mu2ChY62TRaw[Co3At4Ch14]
+921.861 -0.111623 0.00 !Mu2ChY63TRaw[Co3At4Ch15]
+929.763 -0.112593 0.00 !Mu2ChY64TRaw[Co3At4Ch16]
+924.331 -0.111864 0.00 !Mu2ChY65TRaw[Co4At1Ch1]
+943.62 -0.114242 0.00 !Mu2ChY66TRaw[Co4At1Ch2]
+947.992 -0.114763 0.00 !Mu2ChY67TRaw[Co4At1Ch3]
+945.728 -0.114477 0.00 !Mu2ChY68TRaw[Co4At1Ch4]
+972.019 -0.117701 0.00 !Mu2ChY69TRaw[Co4At1Ch5]
+960.071 -0.116242 0.00 !Mu2ChY70TRaw[Co4At1Ch6]
+967.505 -0.117144 0.00 !Mu2ChY71TRaw[Co4At1Ch7]
+964.472 -0.116783 0.00 !Mu2ChY72TRaw[Co4At1Ch8]
+955.96 -0.115747 0.00 !Mu2ChY73TRaw[Co4At1Ch9]
+958.084 -0.115989 0.00 !Mu2ChY74TRaw[Co4At1Ch10]
+964.33 -0.116762 0.00 !Mu2ChY75TRaw[Co4At1Ch11]
+977.202 -0.118324 0.00 !Mu2ChY76TRaw[Co4At1Ch12]
+973.571 -0.117892 0.00 !Mu2ChY77TRaw[Co4At1Ch13]
+976.2 -0.118194 0.00 !Mu2ChY78TRaw[Co4At1Ch14]
+967.051 -0.117092 0.00 !Mu2ChY79TRaw[Co4At1Ch15]
+968.99 -0.117343 0.00 !Mu2ChY80TRaw[Co4At1Ch16]
+944.542 -0.114246 0.00 !Mu2ChY81TRaw[Co4At2Ch1]
+939.064 -0.113582 0.00 !Mu2ChY82TRaw[Co4At2Ch2]
+951.122 -0.115097 0.00 !Mu2ChY83TRaw[Co4At2Ch3]
+946.764 -0.114574 0.00 !Mu2ChY84TRaw[Co4At2Ch4]
+955.625 -0.115653 0.00 !Mu2ChY85TRaw[Co4At2Ch5]
+966 -0.11692 0.00 !Mu2ChY86TRaw[Co4At2Ch6]
+964.199 -0.116695 0.00 !Mu2ChY87TRaw[Co4At2Ch7]
+969.926 -0.117388 0.00 !Mu2ChY88TRaw[Co4At2Ch8]
+972.649 -0.117739 0.00 !Mu2ChY89TRaw[Co4At2Ch9]
+974.635 -0.11797 0.00 !Mu2ChY90TRaw[Co4At2Ch10]
+979.1 -0.118525 0.00 !Mu2ChY91TRaw[Co4At2Ch11]
+969.715 -0.117371 0.00 !Mu2ChY92TRaw[Co4At2Ch12]
+977.475 -0.118331 0.00 !Mu2ChY93TRaw[Co4At2Ch13]
+977.142 -0.118283 0.00 !Mu2ChY94TRaw[Co4At2Ch14]
+984.646 -0.119174 0.00 !Mu2ChY95TRaw[Co4At2Ch15]
+989.259 -0.119806 0.00 !Mu2ChY96TRaw[Co4At2Ch16]
+897.538 -0.108639 0.00 !Mu2ChY97TRaw[Co4At3Ch1]
+893.51 -0.108189 0.00 !Mu2ChY98TRaw[Co4At3Ch2]
+904.052 -0.109474 0.00 !Mu2ChY99TRaw[Co4At3Ch3]
+902.752 -0.109308 0.00 !Mu2ChY100TRaw[Co4At3Ch4]
+916.527 -0.110997 0.00 !Mu2ChY101TRaw[Co4At3Ch5]
+924.175 -0.111938 0.00 !Mu2ChY102TRaw[Co4At3Ch6]
+914.572 -0.110746 0.00 !Mu2ChY103TRaw[Co4At3Ch7]
+930.562 -0.112691 0.00 !Mu2ChY104TRaw[Co4At3Ch8]
+925.104 -0.112025 0.00 !Mu2ChY105TRaw[Co4At3Ch9]
+920.853 -0.111507 0.00 !Mu2ChY106TRaw[Co4At3Ch10]
+922.078 -0.111663 0.00 !Mu2ChY107TRaw[Co4At3Ch11]
+921.772 -0.111623 0.00 !Mu2ChY108TRaw[Co4At3Ch12]
+925.31 -0.112066 0.00 !Mu2ChY109TRaw[Co4At3Ch13]
+926.033 -0.11214 0.00 !Mu2ChY110TRaw[Co4At3Ch14]
+922.391 -0.111703 0.00 !Mu2ChY111TRaw[Co4At3Ch15]
+912.83 -0.110525 0.00 !Mu2ChY112TRaw[Co4At3Ch16]
+852.798 -0.102981 0.00 !Mu2ChY113TRaw[Co4At4Ch1]
+868.843 -0.104976 0.00 !Mu2ChY114TRaw[Co4At4Ch2]
+876.793 -0.105936 0.00 !Mu2ChY115TRaw[Co4At4Ch3]
+875.311 -0.10575 0.00 !Mu2ChY116TRaw[Co4At4Ch4]
+883.331 -0.106741 0.00 !Mu2ChY117TRaw[Co4At4Ch5]
+879.699 -0.10628 0.00 !Mu2ChY118TRaw[Co4At4Ch6]
+891.993 -0.107805 0.00 !Mu2ChY119TRaw[Co4At4Ch7]
+893.52 -0.107966 0.00 !Mu2ChY120TRaw[Co4At4Ch8]
+883.484 -0.106759 0.00 !Mu2ChY121TRaw[Co4At4Ch9]
+896.835 -0.108381 0.00 !Mu2ChY122TRaw[Co4At4Ch10]
+895.32 -0.108195 0.00 !Mu2ChY123TRaw[Co4At4Ch11]
+1336.18 -0.108195 0.00 !Mu2ChY124TRaw[Co4At4Ch12]
+897.921 -0.108519 0.00 !Mu2ChY125TRaw[Co4At4Ch13]
+898.896 -0.10863 0.00 !Mu2ChY126TRaw[Co4At4Ch14]
+900.009 -0.108768 0.00 !Mu2ChY127TRaw[Co4At4Ch15]
+896.14 -0.108297 0.00 !Mu2ChY128TRaw[Co4At4Ch16]
+936.261 -0.113591 0.00 !Mu3ChX1TRaw[Co1At1Ch1]
+949.597 -0.115254 0.00 !Mu3ChX2TRaw[Co1At1Ch2]
+954.137 -0.115822 0.00 !Mu3ChX3TRaw[Co1At1Ch3]
+956.021 -0.116042 0.00 !Mu3ChX4TRaw[Co1At1Ch4]
+948.148 -0.115096 0.00 !Mu3ChX5TRaw[Co1At1Ch5]
+962.715 -0.11686 0.00 !Mu3ChX6TRaw[Co1At1Ch6]
+967.087 -0.117385 0.00 !Mu3ChX7TRaw[Co1At1Ch7]
+972.268 -0.118019 0.00 !Mu3ChX8TRaw[Co1At1Ch8]
+970.481 -0.117779 0.00 !Mu3ChX9TRaw[Co1At1Ch9]
+968.226 -0.117496 0.00 !Mu3ChX10TRaw[Co1At1Ch10]
+970.608 -0.117795 0.00 !Mu3ChX11TRaw[Co1At1Ch11]
+982.826 -0.119273 0.00 !Mu3ChX12TRaw[Co1At1Ch12]
+972.655 -0.118031 0.00 !Mu3ChX13TRaw[Co1At1Ch13]
+978.966 -0.118805 0.00 !Mu3ChX14TRaw[Co1At1Ch14]
+976.646 -0.118524 0.00 !Mu3ChX15TRaw[Co1At1Ch15]
+1358.4 -0.119127 0.00 !Mu3ChX16TRaw[Co1At1Ch16]
+965.022 -0.117029 0.00 !Mu3ChX17TRaw[Co1At2Ch1]
+961.069 -0.116582 0.00 !Mu3ChX18TRaw[Co1At2Ch2]
+979.729 -0.11886 0.00 !Mu3ChX19TRaw[Co1At2Ch3]
+975.886 -0.118386 0.00 !Mu3ChX20TRaw[Co1At2Ch4]
+982.811 -0.119229 0.00 !Mu3ChX21TRaw[Co1At2Ch5]
+989.956 -0.120114 0.00 !Mu3ChX22TRaw[Co1At2Ch6]
+982.322 -0.119177 0.00 !Mu3ChX23TRaw[Co1At2Ch7]
+986.837 -0.119693 0.00 !Mu3ChX24TRaw[Co1At2Ch8]
+984.553 -0.119405 0.00 !Mu3ChX25TRaw[Co1At2Ch9]
+985.367 -0.119523 0.00 !Mu3ChX26TRaw[Co1At2Ch10]
+998.436 -0.12115 0.00 !Mu3ChX27TRaw[Co1At2Ch11]
+994.592 -0.120628 0.00 !Mu3ChX28TRaw[Co1At2Ch12]
+1004.55 -0.121885 0.00 !Mu3ChX29TRaw[Co1At2Ch13]
+997.75 -0.121035 0.00 !Mu3ChX30TRaw[Co1At2Ch14]
+999.387 -0.121233 0.00 !Mu3ChX31TRaw[Co1At2Ch15]
+994.205 -0.120654 0.00 !Mu3ChX32TRaw[Co1At2Ch16]
+895.626 -0.108693 0.00 !Mu3ChX33TRaw[Co1At3Ch1]
+901.788 -0.109485 0.00 !Mu3ChX34TRaw[Co1At3Ch2]
+909.669 -0.110421 0.00 !Mu3ChX35TRaw[Co1At3Ch3]
+902.809 -0.109588 0.00 !Mu3ChX36TRaw[Co1At3Ch4]
+908.707 -0.110301 0.00 !Mu3ChX37TRaw[Co1At3Ch5]
+917.184 -0.111327 0.00 !Mu3ChX38TRaw[Co1At3Ch6]
+918.636 -0.111495 0.00 !Mu3ChX39TRaw[Co1At3Ch7]
+927.002 -0.112521 0.00 !Mu3ChX40TRaw[Co1At3Ch8]
+934.79 -0.11347 0.00 !Mu3ChX41TRaw[Co1At3Ch9]
+928.489 -0.112717 0.00 !Mu3ChX42TRaw[Co1At3Ch10]
+925.669 -0.112335 0.00 !Mu3ChX43TRaw[Co1At3Ch11]
+450 -0.112964 0.00 !Mu3ChX44TRaw[Co1At3Ch12]
+932.907 -0.113245 0.00 !Mu3ChX45TRaw[Co1At3Ch13]
+927.364 -0.11258 0.00 !Mu3ChX46TRaw[Co1At3Ch14]
+934.8 -0.113476 0.00 !Mu3ChX47TRaw[Co1At3Ch15]
+933.166 -0.113256 0.00 !Mu3ChX48TRaw[Co1At3Ch16]
+863.882 -0.104661 0.00 !Mu3ChX49TRaw[Co1At4Ch1]
+863.742 -0.104634 0.00 !Mu3ChX50TRaw[Co1At4Ch2]
+876.032 -0.106155 0.00 !Mu3ChX51TRaw[Co1At4Ch3]
+885.987 -0.107364 0.00 !Mu3ChX52TRaw[Co1At4Ch4]
+886.077 -0.107368 0.00 !Mu3ChX53TRaw[Co1At4Ch5]
+882.141 -0.106861 0.00 !Mu3ChX54TRaw[Co1At4Ch6]
+894.386 -0.108382 0.00 !Mu3ChX55TRaw[Co1At4Ch7]
+897.465 -0.108733 0.00 !Mu3ChX56TRaw[Co1At4Ch8]
+894.9 -0.10844 0.00 !Mu3ChX57TRaw[Co1At4Ch9]
+900.295 -0.10908 0.00 !Mu3ChX58TRaw[Co1At4Ch10]
+895.793 -0.108538 0.00 !Mu3ChX59TRaw[Co1At4Ch11]
+895.372 -0.10849 0.00 !Mu3ChX60TRaw[Co1At4Ch12]
+902.176 -0.109312 0.00 !Mu3ChX61TRaw[Co1At4Ch13]
+903.192 -0.109445 0.00 !Mu3ChX62TRaw[Co1At4Ch14]
+889.712 -0.107803 0.00 !Mu3ChX63TRaw[Co1At4Ch15]
+921.265 -0.108862 0.00 !Mu3ChX64TRaw[Co1At4Ch16]
+981.944 -0.119126 0.00 !Mu3ChX65TRaw[Co2At1Ch1]
+987.148 -0.119789 0.00 !Mu3ChX66TRaw[Co2At1Ch2]
+987.456 -0.119851 0.00 !Mu3ChX67TRaw[Co2At1Ch3]
+1003.28 -0.121753 0.00 !Mu3ChX68TRaw[Co2At1Ch4]
+1003.82 -0.121824 0.00 !Mu3ChX69TRaw[Co2At1Ch5]
+1000.66 -0.121446 0.00 !Mu3ChX70TRaw[Co2At1Ch6]
+1004.35 -0.121893 0.00 !Mu3ChX71TRaw[Co2At1Ch7]
+1008.06 -0.122347 0.00 !Mu3ChX72TRaw[Co2At1Ch8]
+1004.22 -0.121883 0.00 !Mu3ChX73TRaw[Co2At1Ch9]
+1011.08 -0.122684 0.00 !Mu3ChX74TRaw[Co2At1Ch10]
+1019.46 -0.123722 0.00 !Mu3ChX75TRaw[Co2At1Ch11]
+1029.58 -0.124938 0.00 !Mu3ChX76TRaw[Co2At1Ch12]
+1011.08 -0.122709 0.00 !Mu3ChX77TRaw[Co2At1Ch13]
+1010.81 -0.12265 0.00 !Mu3ChX78TRaw[Co2At1Ch14]
+1022.22 -0.124061 0.00 !Mu3ChX79TRaw[Co2At1Ch15]
+1391.94 -0.123313 0.00 !Mu3ChX80TRaw[Co2At1Ch16]
+939.257 -0.11381 0.00 !Mu3ChX81TRaw[Co2At2Ch1]
+945.066 -0.114558 0.00 !Mu3ChX82TRaw[Co2At2Ch2]
+948.6 -0.114986 0.00 !Mu3ChX83TRaw[Co2At2Ch3]
+947.122 -0.114804 0.00 !Mu3ChX84TRaw[Co2At2Ch4]
+961.987 -0.116619 0.00 !Mu3ChX85TRaw[Co2At2Ch5]
+964.59 -0.11693 0.00 !Mu3ChX86TRaw[Co2At2Ch6]
+959.397 -0.116299 0.00 !Mu3ChX87TRaw[Co2At2Ch7]
+964.355 -0.116863 0.00 !Mu3ChX88TRaw[Co2At2Ch8]
+975.002 -0.118161 0.00 !Mu3ChX89TRaw[Co2At2Ch9]
+971.077 -0.117687 0.00 !Mu3ChX90TRaw[Co2At2Ch10]
+976.04 -0.118304 0.00 !Mu3ChX91TRaw[Co2At2Ch11]
+983.975 -0.119256 0.00 !Mu3ChX92TRaw[Co2At2Ch12]
+983.617 -0.119241 0.00 !Mu3ChX93TRaw[Co2At2Ch13]
+983.301 -0.119186 0.00 !Mu3ChX94TRaw[Co2At2Ch14]
+980.734 -0.118879 0.00 !Mu3ChX95TRaw[Co2At2Ch15]
+975.837 -0.118278 0.00 !Mu3ChX96TRaw[Co2At2Ch16]
+858.761 -0.104124 0.00 !Mu3ChX97TRaw[Co2At3Ch1]
+863.527 -0.104728 0.00 !Mu3ChX98TRaw[Co2At3Ch2]
+863.719 -0.104753 0.00 !Mu3ChX99TRaw[Co2At3Ch3]
+869.797 -0.105492 0.00 !Mu3ChX100TRaw[Co2At3Ch4]
+879.582 -0.106693 0.00 !Mu3ChX101TRaw[Co2At3Ch5]
+874.971 -0.10614 0.00 !Mu3ChX102TRaw[Co2At3Ch6]
+879.706 -0.106708 0.00 !Mu3ChX103TRaw[Co2At3Ch7]
+878.738 -0.106567 0.00 !Mu3ChX104TRaw[Co2At3Ch8]
+887.854 -0.107671 0.00 !Mu3ChX105TRaw[Co2At3Ch9]
+892.385 -0.108216 0.00 !Mu3ChX106TRaw[Co2At3Ch10]
+884.225 -0.107225 0.00 !Mu3ChX107TRaw[Co2At3Ch11]
+894.981 -0.108561 0.00 !Mu3ChX108TRaw[Co2At3Ch12]
+895.51 -0.108609 0.00 !Mu3ChX109TRaw[Co2At3Ch13]
+891.851 -0.108191 0.00 !Mu3ChX110TRaw[Co2At3Ch14]
+901.356 -0.109337 0.00 !Mu3ChX111TRaw[Co2At3Ch15]
+900.727 -0.108709 0.00 !Mu3ChX112TRaw[Co2At3Ch16]
+855.952 -0.103629 0.00 !Mu3ChX113TRaw[Co2At4Ch1]
+865.7 -0.10481 0.00 !Mu3ChX114TRaw[Co2At4Ch2]
+866.161 -0.1049 0.00 !Mu3ChX115TRaw[Co2At4Ch3]
+872.362 -0.105647 0.00 !Mu3ChX116TRaw[Co2At4Ch4]
+1490.13 -0.126949 0.00 !Mu3ChX117TRaw[Co2At4Ch5]
+876.561 -0.106145 0.00 !Mu3ChX118TRaw[Co2At4Ch6]
+884.075 -0.107055 0.00 !Mu3ChX119TRaw[Co2At4Ch7]
+881.54 -0.10675 0.00 !Mu3ChX120TRaw[Co2At4Ch8]
+884.679 -0.107137 0.00 !Mu3ChX121TRaw[Co2At4Ch9]
+888.637 -0.107599 0.00 !Mu3ChX122TRaw[Co2At4Ch10]
+884.493 -0.107093 0.00 !Mu3ChX123TRaw[Co2At4Ch11]
+893.964 -0.108252 0.00 !Mu3ChX124TRaw[Co2At4Ch12]
+888.064 -0.107522 0.00 !Mu3ChX125TRaw[Co2At4Ch13]
+894.536 -0.108336 0.00 !Mu3ChX126TRaw[Co2At4Ch14]
+882.088 -0.106793 0.00 !Mu3ChX127TRaw[Co2At4Ch15]
+890.98 -0.107896 0.00 !Mu3ChX128TRaw[Co2At4Ch16]
+916.716 -0.11121 0.00 !Mu3ChY1TRaw[Co3At1Ch1]
+924.259 -0.112154 0.00 !Mu3ChY2TRaw[Co3At1Ch2]
+933.256 -0.113241 0.00 !Mu3ChY3TRaw[Co3At1Ch3]
+942.953 -0.114409 0.00 !Mu3ChY4TRaw[Co3At1Ch4]
+939.901 -0.114032 0.00 !Mu3ChY5TRaw[Co3At1Ch5]
+947.878 -0.114994 0.00 !Mu3ChY6TRaw[Co3At1Ch6]
+952.484 -0.115552 0.00 !Mu3ChY7TRaw[Co3At1Ch7]
+952.713 -0.115546 0.00 !Mu3ChY8TRaw[Co3At1Ch8]
+960.463 -0.116506 0.00 !Mu3ChY9TRaw[Co3At1Ch9]
+964.543 -0.117006 0.00 !Mu3ChY10TRaw[Co3At1Ch10]
+966.84 -0.117251 0.00 !Mu3ChY11TRaw[Co3At1Ch11]
+965.68 -0.117093 0.00 !Mu3ChY12TRaw[Co3At1Ch12]
+975.182 -0.118272 0.00 !Mu3ChY13TRaw[Co3At1Ch13]
+981.614 -0.119048 0.00 !Mu3ChY14TRaw[Co3At1Ch14]
+973.869 -0.118075 0.00 !Mu3ChY15TRaw[Co3At1Ch15]
+981.076 -0.118941 0.00 !Mu3ChY16TRaw[Co3At1Ch16]
+967.206 -0.117174 0.00 !Mu3ChY17TRaw[Co3At2Ch1]
+980.188 -0.118815 0.00 !Mu3ChY18TRaw[Co3At2Ch2]
+981.134 -0.118931 0.00 !Mu3ChY19TRaw[Co3At2Ch3]
+986.719 -0.119638 0.00 !Mu3ChY20TRaw[Co3At2Ch4]
+992.386 -0.12034 0.00 !Mu3ChY21TRaw[Co3At2Ch5]
+1002.21 -0.121551 0.00 !Mu3ChY22TRaw[Co3At2Ch6]
+997.474 -0.120998 0.00 !Mu3ChY23TRaw[Co3At2Ch7]
+992.008 -0.120321 0.00 !Mu3ChY24TRaw[Co3At2Ch8]
+998.021 -0.121073 0.00 !Mu3ChY25TRaw[Co3At2Ch9]
+1004.15 -0.121839 0.00 !Mu3ChY26TRaw[Co3At2Ch10]
+1004.31 -0.121856 0.00 !Mu3ChY27TRaw[Co3At2Ch11]
+1010.69 -0.122649 0.00 !Mu3ChY28TRaw[Co3At2Ch12]
+1013.79 -0.12302 0.00 !Mu3ChY29TRaw[Co3At2Ch13]
+1002.56 -0.121668 0.00 !Mu3ChY30TRaw[Co3At2Ch14]
+1011.72 -0.122794 0.00 !Mu3ChY31TRaw[Co3At2Ch15]
+1012.54 -0.122927 0.00 !Mu3ChY32TRaw[Co3At2Ch16]
+868.546 -0.105446 0.00 !Mu3ChY33TRaw[Co3At3Ch1]
+865.415 -0.105092 0.00 !Mu3ChY34TRaw[Co3At3Ch2]
+870.615 -0.10573 0.00 !Mu3ChY35TRaw[Co3At3Ch3]
+867.501 -0.105345 0.00 !Mu3ChY36TRaw[Co3At3Ch4]
+879.085 -0.106744 0.00 !Mu3ChY37TRaw[Co3At3Ch5]
+878.372 -0.106654 0.00 !Mu3ChY38TRaw[Co3At3Ch6]
+883.834 -0.107294 0.00 !Mu3ChY39TRaw[Co3At3Ch7]
+892.468 -0.108361 0.00 !Mu3ChY40TRaw[Co3At3Ch8]
+889.652 -0.10799 0.00 !Mu3ChY41TRaw[Co3At3Ch9]
+893.582 -0.10846 0.00 !Mu3ChY42TRaw[Co3At3Ch10]
+902.982 -0.109593 0.00 !Mu3ChY43TRaw[Co3At3Ch11]
+899.542 -0.109195 0.00 !Mu3ChY44TRaw[Co3At3Ch12]
+894.786 -0.108568 0.00 !Mu3ChY45TRaw[Co3At3Ch13]
+904.997 -0.109804 0.00 !Mu3ChY46TRaw[Co3At3Ch14]
+908.733 -0.110263 0.00 !Mu3ChY47TRaw[Co3At3Ch15]
+901.41 -0.109382 0.00 !Mu3ChY48TRaw[Co3At3Ch16]
+874.853 -0.105997 0.00 !Mu3ChY49TRaw[Co3At4Ch1]
+880.713 -0.106772 0.00 !Mu3ChY50TRaw[Co3At4Ch2]
+892.705 -0.108217 0.00 !Mu3ChY51TRaw[Co3At4Ch3]
+895.218 -0.108527 0.00 !Mu3ChY52TRaw[Co3At4Ch4]
+889.343 -0.107825 0.00 !Mu3ChY53TRaw[Co3At4Ch5]
+897.932 -0.108862 0.00 !Mu3ChY54TRaw[Co3At4Ch6]
+902.448 -0.109456 0.00 !Mu3ChY55TRaw[Co3At4Ch7]
+908.367 -0.110152 0.00 !Mu3ChY56TRaw[Co3At4Ch8]
+912.74 -0.110718 0.00 !Mu3ChY57TRaw[Co3At4Ch9]
+911.519 -0.11056 0.00 !Mu3ChY58TRaw[Co3At4Ch10]
+920.413 -0.111636 0.00 !Mu3ChY59TRaw[Co3At4Ch11]
+906.185 -0.109934 0.00 !Mu3ChY60TRaw[Co3At4Ch12]
+919.759 -0.111581 0.00 !Mu3ChY61TRaw[Co3At4Ch13]
+920.555 -0.111694 0.00 !Mu3ChY62TRaw[Co3At4Ch14]
+915.715 -0.1111 0.00 !Mu3ChY63TRaw[Co3At4Ch15]
+918.454 -0.11144 0.00 !Mu3ChY64TRaw[Co3At4Ch16]
+901.244 -0.109216 0.00 !Mu3ChY65TRaw[Co4At1Ch1]
+907.742 -0.110026 0.00 !Mu3ChY66TRaw[Co4At1Ch2]
+908.334 -0.110106 0.00 !Mu3ChY67TRaw[Co4At1Ch3]
+916.785 -0.11114 0.00 !Mu3ChY68TRaw[Co4At1Ch4]
+928.178 -0.11252 0.00 !Mu3ChY69TRaw[Co4At1Ch5]
+936.612 -0.113544 0.00 !Mu3ChY70TRaw[Co4At1Ch6]
+929.327 -0.112672 0.00 !Mu3ChY71TRaw[Co4At1Ch7]
+927.889 -0.112491 0.00 !Mu3ChY72TRaw[Co4At1Ch8]
+944.015 -0.114462 0.00 !Mu3ChY73TRaw[Co4At1Ch9]
+936.5 -0.11354 0.00 !Mu3ChY74TRaw[Co4At1Ch10]
+952.669 -0.115517 0.00 !Mu3ChY75TRaw[Co4At1Ch11]
+949.121 -0.115086 0.00 !Mu3ChY76TRaw[Co4At1Ch12]
+961.66 -0.116618 0.00 !Mu3ChY77TRaw[Co4At1Ch13]
+950.324 -0.115232 0.00 !Mu3ChY78TRaw[Co4At1Ch14]
+943.005 -0.114343 0.00 !Mu3ChY79TRaw[Co4At1Ch15]
+948.05 -0.114947 0.00 !Mu3ChY80TRaw[Co4At1Ch16]
+967.814 -0.117288 0.00 !Mu3ChY81TRaw[Co4At2Ch1]
+979.35 -0.118727 0.00 !Mu3ChY82TRaw[Co4At2Ch2]
+985.387 -0.119474 0.00 !Mu3ChY83TRaw[Co4At2Ch3]
+988.884 -0.119909 0.00 !Mu3ChY84TRaw[Co4At2Ch4]
+990.688 -0.120116 0.00 !Mu3ChY85TRaw[Co4At2Ch5]
+997.728 -0.120975 0.00 !Mu3ChY86TRaw[Co4At2Ch6]
+994.598 -0.120606 0.00 !Mu3ChY87TRaw[Co4At2Ch7]
+996.045 -0.12076 0.00 !Mu3ChY88TRaw[Co4At2Ch8]
+1000.77 -0.121336 0.00 !Mu3ChY89TRaw[Co4At2Ch9]
+1011.99 -0.122713 0.00 !Mu3ChY90TRaw[Co4At2Ch10]
+1015.05 -0.1231 0.00 !Mu3ChY91TRaw[Co4At2Ch11]
+1003.4 -0.121678 0.00 !Mu3ChY92TRaw[Co4At2Ch12]
+1011.74 -0.122697 0.00 !Mu3ChY93TRaw[Co4At2Ch13]
+1014.96 -0.123087 0.00 !Mu3ChY94TRaw[Co4At2Ch14]
+1007.34 -0.122144 0.00 !Mu3ChY95TRaw[Co4At2Ch15]
+1008.36 -0.122274 0.00 !Mu3ChY96TRaw[Co4At2Ch16]
+871.329 -0.105573 0.00 !Mu3ChY97TRaw[Co4At3Ch1]
+868.142 -0.105224 0.00 !Mu3ChY98TRaw[Co4At3Ch2]
+872.865 -0.105791 0.00 !Mu3ChY99TRaw[Co4At3Ch3]
+882.085 -0.106904 0.00 !Mu3ChY100TRaw[Co4At3Ch4]
+889.159 -0.107789 0.00 !Mu3ChY101TRaw[Co4At3Ch5]
+888.956 -0.107742 0.00 !Mu3ChY102TRaw[Co4At3Ch6]
+899.906 -0.109085 0.00 !Mu3ChY103TRaw[Co4At3Ch7]
+892.033 -0.108126 0.00 !Mu3ChY104TRaw[Co4At3Ch8]
+899.207 -0.108999 0.00 !Mu3ChY105TRaw[Co4At3Ch9]
+891.613 -0.108068 0.00 !Mu3ChY106TRaw[Co4At3Ch10]
+891.136 -0.108006 0.00 !Mu3ChY107TRaw[Co4At3Ch11]
+900.207 -0.109125 0.00 !Mu3ChY108TRaw[Co4At3Ch12]
+902.911 -0.109439 0.00 !Mu3ChY109TRaw[Co4At3Ch13]
+900.692 -0.109168 0.00 !Mu3ChY110TRaw[Co4At3Ch14]
+896.133 -0.108625 0.00 !Mu3ChY111TRaw[Co4At3Ch15]
+902.665 -0.109416 0.00 !Mu3ChY112TRaw[Co4At3Ch16]
+888.587 -0.107554 0.00 !Mu3ChY113TRaw[Co4At4Ch1]
+895.918 -0.108473 0.00 !Mu3ChY114TRaw[Co4At4Ch2]
+898.97 -0.108848 0.00 !Mu3ChY115TRaw[Co4At4Ch3]
+894.394 -0.108292 0.00 !Mu3ChY116TRaw[Co4At4Ch4]
+902.574 -0.109288 0.00 !Mu3ChY117TRaw[Co4At4Ch5]
+907.964 -0.109943 0.00 !Mu3ChY118TRaw[Co4At4Ch6]
+906.564 -0.109765 0.00 !Mu3ChY119TRaw[Co4At4Ch7]
+905.798 -0.109672 0.00 !Mu3ChY120TRaw[Co4At4Ch8]
+912.702 -0.110512 0.00 !Mu3ChY121TRaw[Co4At4Ch9]
+921.335 -0.111588 0.00 !Mu3ChY122TRaw[Co4At4Ch10]
+924.085 -0.111915 0.00 !Mu3ChY123TRaw[Co4At4Ch11]
+906.564 -0.109772 0.00 !Mu3ChY124TRaw[Co4At4Ch12]
+910.838 -0.11029 0.00 !Mu3ChY125TRaw[Co4At4Ch13]
+916.176 -0.110947 0.00 !Mu3ChY126TRaw[Co4At4Ch14]
+917.763 -0.111116 0.00 !Mu3ChY127TRaw[Co4At4Ch15]
+925.891 -0.112131 0.00 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5feaa2202afafc93486d14fb2cbda1bfca16dba4
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M0_E/Cal_Str_X_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0eb48b351149457ba1c4f89d88bd91df547fa886
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E -61.7106 0.00753299
+MUSETT_T0_DSSD_X1_E -61.9105 0.00755737
+MUSETT_T0_DSSD_X2_E -61.7824 0.0075418099999999995
+MUSETT_T0_DSSD_X3_E -61.5101 0.00750856
+MUSETT_T0_DSSD_X4_E -61.8399 0.007548829999999999
+MUSETT_T0_DSSD_X5_E -61.6113 0.00752091
+MUSETT_T0_DSSD_X6_E -61.398 0.00749483
+MUSETT_T0_DSSD_X7_E -61.1841 0.0074687
+MUSETT_T0_DSSD_X8_E -61.0465 0.00745195
+MUSETT_T0_DSSD_X9_E -62.6826 0.00765164
+MUSETT_T0_DSSD_X10_E -62.3583 0.00761207
+MUSETT_T0_DSSD_X11_E -61.942 0.00756128
+MUSETT_T0_DSSD_X12_E -62.0878 0.00757904
+MUSETT_T0_DSSD_X13_E -61.755300000000005 0.00753843
+MUSETT_T0_DSSD_X14_E -62.4126 0.0076187
+MUSETT_T0_DSSD_X15_E -61.2939 0.00748215
+MUSETT_T0_DSSD_X16_E -63.052699999999994 0.007696799999999999
+MUSETT_T0_DSSD_X17_E -62.6907 0.0076526699999999994
+MUSETT_T0_DSSD_X18_E -62.1905 0.0075915800000000005
+MUSETT_T0_DSSD_X19_E -62.4109 0.0076185
+MUSETT_T0_DSSD_X20_E -63.893699999999995 0.00779946
+MUSETT_T0_DSSD_X21_E -62.6129 0.007643130000000001
+MUSETT_T0_DSSD_X22_E -62.337199999999996 0.00760945
+MUSETT_T0_DSSD_X23_E -62.6744 0.00765062
+MUSETT_T0_DSSD_X24_E -62.899300000000004 0.00767809
+MUSETT_T0_DSSD_X25_E -62.9523 0.00768455
+MUSETT_T0_DSSD_X26_E -63.0533 0.00769687
+MUSETT_T0_DSSD_X27_E -62.674699999999994 0.00765067
+MUSETT_T0_DSSD_X28_E -62.9974 0.0076900399999999995
+MUSETT_T0_DSSD_X29_E -62.6271 0.00764487
+MUSETT_T0_DSSD_X30_E -63.448800000000006 0.00774516
+MUSETT_T0_DSSD_X31_E -62.603 0.00764186
+MUSETT_T0_DSSD_X32_E -56.4302 0.0068883799999999995
+MUSETT_T0_DSSD_X33_E -56.7999 0.00693354
+MUSETT_T0_DSSD_X34_E -55.532 0.00677879
+MUSETT_T0_DSSD_X35_E -56.348800000000004 0.00687847
+MUSETT_T0_DSSD_X36_E -55.9945 0.00683521
+MUSETT_T0_DSSD_X37_E -10.0 0.0
+MUSETT_T0_DSSD_X38_E -55.914699999999996 0.0068255
+MUSETT_T0_DSSD_X39_E -55.6938 0.00679852
+MUSETT_T0_DSSD_X40_E -56.2171 0.00686239
+MUSETT_T0_DSSD_X41_E -55.8635 0.00681922
+MUSETT_T0_DSSD_X42_E -56.201699999999995 0.00686046
+MUSETT_T0_DSSD_X43_E -56.3099 0.00687373
+MUSETT_T0_DSSD_X44_E -56.346599999999995 0.00687818
+MUSETT_T0_DSSD_X45_E -10.0 0.0
+MUSETT_T0_DSSD_X46_E -10.0 0.0
+MUSETT_T0_DSSD_X47_E -55.9131 0.0068252899999999995
+MUSETT_T0_DSSD_X48_E -57.8332 0.007059650000000001
+MUSETT_T0_DSSD_X49_E -57.967800000000004 0.00707605
+MUSETT_T0_DSSD_X50_E -57.7573 0.00705042
+MUSETT_T0_DSSD_X51_E -57.3263 0.0069977799999999995
+MUSETT_T0_DSSD_X52_E -58.2072 0.0071053
+MUSETT_T0_DSSD_X53_E -57.200300000000006 0.0069824200000000005
+MUSETT_T0_DSSD_X54_E -57.8344 0.00705977
+MUSETT_T0_DSSD_X55_E -57.512800000000006 0.00702054
+MUSETT_T0_DSSD_X56_E -58.4845 0.0071391200000000005
+MUSETT_T0_DSSD_X57_E -57.751 0.00704962
+MUSETT_T0_DSSD_X58_E -57.3322 0.0069984900000000004
+MUSETT_T0_DSSD_X59_E -57.8001 0.00705564
+MUSETT_T0_DSSD_X60_E -57.1654 0.00697819
+MUSETT_T0_DSSD_X61_E -57.9703 0.00707636
+MUSETT_T0_DSSD_X62_E -57.8846 0.00706593
+MUSETT_T0_DSSD_X63_E -58.159800000000004 0.007099510000000001
+MUSETT_T0_DSSD_X64_E -63.4461 0.00774486
+MUSETT_T0_DSSD_X65_E -63.6099 0.00776484
+MUSETT_T0_DSSD_X66_E -63.3471 0.007732770000000001
+MUSETT_T0_DSSD_X67_E -64.08319999999999 0.00782268
+MUSETT_T0_DSSD_X68_E -63.2105 0.00771623
+MUSETT_T0_DSSD_X69_E -63.9794 0.00781003
+MUSETT_T0_DSSD_X70_E -63.860800000000005 0.00779555
+MUSETT_T0_DSSD_X71_E -63.3581 0.00773418
+MUSETT_T0_DSSD_X72_E -64.2157 0.007838949999999999
+MUSETT_T0_DSSD_X73_E -63.3016 0.00772725
+MUSETT_T0_DSSD_X74_E -64.05069999999999 0.00781888
+MUSETT_T0_DSSD_X75_E -64.0167 0.00781467
+MUSETT_T0_DSSD_X76_E -63.688900000000004 0.00777478
+MUSETT_T0_DSSD_X77_E -63.7891 0.0077870100000000005
+MUSETT_T0_DSSD_X78_E -64.2832 0.00784737
+MUSETT_T0_DSSD_X79_E -64.9143 0.007924398000000001
+MUSETT_T0_DSSD_X80_E -61.2394 0.007475819999999999
+MUSETT_T0_DSSD_X81_E -60.9385 0.00743906
+MUSETT_T0_DSSD_X82_E -61.1397 0.0074636599999999996
+MUSETT_T0_DSSD_X83_E -61.4974 0.00750726
+MUSETT_T0_DSSD_X84_E -61.3987 0.00749521
+MUSETT_T0_DSSD_X85_E -61.8996 0.00755626
+MUSETT_T0_DSSD_X86_E -61.451800000000006 0.00750166
+MUSETT_T0_DSSD_X87_E -62.196400000000004 0.00759254
+MUSETT_T0_DSSD_X88_E -61.9481 0.00756212
+MUSETT_T0_DSSD_X89_E -61.6171 0.00752168
+MUSETT_T0_DSSD_X90_E -61.7374 0.00753637
+MUSETT_T0_DSSD_X91_E -62.8236 0.00766899
+MUSETT_T0_DSSD_X92_E -61.8858 0.00755448
+MUSETT_T0_DSSD_X93_E -61.049699999999994 0.00745242
+MUSETT_T0_DSSD_X94_E -61.4595 0.00750241
+MUSETT_T0_DSSD_X95_E -62.2011 0.00759292
+MUSETT_T0_DSSD_X96_E -57.166199999999996 0.00697828
+MUSETT_T0_DSSD_X97_E -57.5553 0.00702572
+MUSETT_T0_DSSD_X98_E -57.8035 0.007056079999999999
+MUSETT_T0_DSSD_X99_E -57.0676 0.0069662199999999995
+MUSETT_T0_DSSD_X100_E -58.132400000000004 0.00709623
+MUSETT_T0_DSSD_X101_E -57.744699999999995 0.00704887
+MUSETT_T0_DSSD_X102_E -57.713300000000004 0.00704507
+MUSETT_T0_DSSD_X103_E -57.296699999999994 0.00699421
+MUSETT_T0_DSSD_X104_E -57.401199999999996 0.00700701
+MUSETT_T0_DSSD_X105_E -57.9542 0.00707453
+MUSETT_T0_DSSD_X106_E -57.3056 0.00699532
+MUSETT_T0_DSSD_X107_E -57.5897 0.00703005
+MUSETT_T0_DSSD_X108_E -58.5998 0.007153260000000001
+MUSETT_T0_DSSD_X109_E -58.011 0.007081489999999999
+MUSETT_T0_DSSD_X110_E -57.7019 0.00704369
+MUSETT_T0_DSSD_X111_E -57.802 0.0070558899999999996
+MUSETT_T0_DSSD_X112_E -59.0131 0.00720381
+MUSETT_T0_DSSD_X113_E -59.1996 0.00722655
+MUSETT_T0_DSSD_X114_E -58.5257 0.0071443
+MUSETT_T0_DSSD_X115_E -58.674800000000005 0.00716253
+MUSETT_T0_DSSD_X116_E -58.1328 0.00709631
+MUSETT_T0_DSSD_X117_E -58.328300000000006 0.00712018
+MUSETT_T0_DSSD_X118_E -58.2819 0.00711452
+MUSETT_T0_DSSD_X119_E -58.5673 0.00714936
+MUSETT_T0_DSSD_X120_E -58.5649 0.00714905
+MUSETT_T0_DSSD_X121_E -58.7344 0.00716969
+MUSETT_T0_DSSD_X122_E -58.596199999999996 0.007152840000000001
+MUSETT_T0_DSSD_X123_E -59.320800000000006 0.00724127
+MUSETT_T0_DSSD_X124_E -57.9063 0.00706867
+MUSETT_T0_DSSD_X125_E -58.5027 0.00714141
+MUSETT_T0_DSSD_X126_E -58.429300000000005 0.0071325
+MUSETT_T0_DSSD_X127_E -59.5614 0.007270629999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M0_E/Cal_Str_Y_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..728b3e6a460711d06638382cddfccfbba2fee9d7
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_Y0_E -10.0 0.0
+MUSETT_T0_DSSD_Y1_E 60.4299 -0.0073767699999999995
+MUSETT_T0_DSSD_Y2_E 60.9525 -0.00744053
+MUSETT_T0_DSSD_Y3_E 61.1136 -0.00746018
+MUSETT_T0_DSSD_Y4_E 60.0338 -0.00732839
+MUSETT_T0_DSSD_Y5_E 60.1789 -0.00734611
+MUSETT_T0_DSSD_Y6_E 60.8017 -0.00742211
+MUSETT_T0_DSSD_Y7_E 60.445 -0.00737857
+MUSETT_T0_DSSD_Y8_E 60.092 -0.007335479999999999
+MUSETT_T0_DSSD_Y9_E 59.987 -0.00732266
+MUSETT_T0_DSSD_Y10_E 60.401300000000006 -0.00737321
+MUSETT_T0_DSSD_Y11_E 60.0485 -0.00733015
+MUSETT_T0_DSSD_Y12_E 60.8881 -0.00743271
+MUSETT_T0_DSSD_Y13_E 61.0137 -0.00744798
+MUSETT_T0_DSSD_Y14_E 61.158 -0.00746561
+MUSETT_T0_DSSD_Y15_E 60.7384 -0.00741441
+MUSETT_T0_DSSD_Y16_E 60.3853 -0.00737129
+MUSETT_T0_DSSD_Y17_E 60.5455 -0.00739083
+MUSETT_T0_DSSD_Y18_E 60.330400000000004 -0.00736461
+MUSETT_T0_DSSD_Y19_E 60.139300000000006 -0.00734125
+MUSETT_T0_DSSD_Y20_E 60.389199999999995 -0.00737176
+MUSETT_T0_DSSD_Y21_E 60.3961 -0.00737259
+MUSETT_T0_DSSD_Y22_E 60.279900000000005 -0.00735844
+MUSETT_T0_DSSD_Y23_E 59.7309 -0.00729143
+MUSETT_T0_DSSD_Y24_E 60.2169 -0.00735079
+MUSETT_T0_DSSD_Y25_E 59.7766 -0.007297
+MUSETT_T0_DSSD_Y26_E 60.0731 -0.007333210000000001
+MUSETT_T0_DSSD_Y27_E 60.4447 -0.0073785299999999995
+MUSETT_T0_DSSD_Y28_E 59.887699999999995 -0.00731055
+MUSETT_T0_DSSD_Y29_E 59.6366 -0.00727991
+MUSETT_T0_DSSD_Y30_E 59.8233 -0.00730273
+MUSETT_T0_DSSD_Y31_E 61.045199999999994 -0.00745187
+MUSETT_T0_DSSD_Y32_E 56.5754 -0.00690626
+MUSETT_T0_DSSD_Y33_E 57.0856 -0.00696849
+MUSETT_T0_DSSD_Y34_E 56.5049 -0.00689761
+MUSETT_T0_DSSD_Y35_E 57.0727 -0.0069669499999999995
+MUSETT_T0_DSSD_Y36_E 57.4 -0.00700688
+MUSETT_T0_DSSD_Y37_E 57.2639 -0.00699027
+MUSETT_T0_DSSD_Y38_E 56.45 -0.00689094
+MUSETT_T0_DSSD_Y39_E 56.455400000000004 -0.0068915899999999995
+MUSETT_T0_DSSD_Y40_E 56.954 -0.00695243
+MUSETT_T0_DSSD_Y41_E 56.8438 -0.006939020000000001
+MUSETT_T0_DSSD_Y42_E 56.6301 -0.00691291
+MUSETT_T0_DSSD_Y43_E 56.4975 -0.00689672
+MUSETT_T0_DSSD_Y44_E 56.8091 -0.00693476
+MUSETT_T0_DSSD_Y45_E 56.946400000000004 -0.00695152
+MUSETT_T0_DSSD_Y46_E 57.7258 -0.00704665
+MUSETT_T0_DSSD_Y47_E 56.552699999999994 -0.006903439999999999
+MUSETT_T0_DSSD_Y48_E 57.5922 -0.00703033
+MUSETT_T0_DSSD_Y49_E 57.040099999999995 -0.00696295
+MUSETT_T0_DSSD_Y50_E 56.8125 -0.00693518
+MUSETT_T0_DSSD_Y51_E 56.466800000000006 -0.00689296
+MUSETT_T0_DSSD_Y52_E 57.1237 -0.00697317
+MUSETT_T0_DSSD_Y53_E 56.8535 -0.00694018
+MUSETT_T0_DSSD_Y54_E 56.671800000000005 -0.00691801
+MUSETT_T0_DSSD_Y55_E 57.626 -0.00703448
+MUSETT_T0_DSSD_Y56_E 57.3861 -0.007005239999999999
+MUSETT_T0_DSSD_Y57_E 56.822 -0.0069363
+MUSETT_T0_DSSD_Y58_E 57.017 -0.00696019
+MUSETT_T0_DSSD_Y59_E 57.2442 -0.006987930000000001
+MUSETT_T0_DSSD_Y60_E 57.2985 -0.00699452
+MUSETT_T0_DSSD_Y61_E 57.094 -0.0069695
+MUSETT_T0_DSSD_Y62_E 57.5846 -0.007029410000000001
+MUSETT_T0_DSSD_Y63_E 57.9394 -0.00707277
+MUSETT_T0_DSSD_Y64_E 60.9985 -0.00744617
+MUSETT_T0_DSSD_Y65_E 61.1544 -0.00746519
+MUSETT_T0_DSSD_Y66_E 61.0383 -0.00745104
+MUSETT_T0_DSSD_Y67_E 61.3127 -0.00748452
+MUSETT_T0_DSSD_Y68_E 60.431400000000004 -0.00737695
+MUSETT_T0_DSSD_Y69_E 61.541599999999995 -0.00751241
+MUSETT_T0_DSSD_Y70_E 60.896 -0.007433639999999999
+MUSETT_T0_DSSD_Y71_E 60.3984 -0.00737288
+MUSETT_T0_DSSD_Y72_E 61.6674 -0.00752784
+MUSETT_T0_DSSD_Y73_E 61.151 -0.00746479
+MUSETT_T0_DSSD_Y74_E 61.1035 -0.0074589800000000005
+MUSETT_T0_DSSD_Y75_E 61.219800000000006 -0.0074731500000000005
+MUSETT_T0_DSSD_Y76_E 60.596199999999996 -0.007397020000000001
+MUSETT_T0_DSSD_Y77_E 61.4086 -0.0074962299999999996
+MUSETT_T0_DSSD_Y78_E 61.6292 -0.0075231199999999995
+MUSETT_T0_DSSD_Y79_E 61.0151 -0.00744816
+MUSETT_T0_DSSD_Y80_E 62.3301 -0.00760868
+MUSETT_T0_DSSD_Y81_E 61.0485 -0.00745227
+MUSETT_T0_DSSD_Y82_E 61.567 -0.00751556
+MUSETT_T0_DSSD_Y83_E 62.052800000000005 -0.00757484
+MUSETT_T0_DSSD_Y84_E 61.001400000000004 -0.0074465
+MUSETT_T0_DSSD_Y85_E 60.8965 -0.0074337
+MUSETT_T0_DSSD_Y86_E 61.7489 -0.0075377000000000005
+MUSETT_T0_DSSD_Y87_E 61.3807 -0.00749277
+MUSETT_T0_DSSD_Y88_E 61.1458 -0.00746415
+MUSETT_T0_DSSD_Y89_E 61.2699 -0.00747926
+MUSETT_T0_DSSD_Y90_E 61.1205 -0.00746101
+MUSETT_T0_DSSD_Y91_E 61.476800000000004 -0.007504520000000001
+MUSETT_T0_DSSD_Y92_E 61.8576 -0.00755098
+MUSETT_T0_DSSD_Y93_E 61.681599999999996 -0.0075295399999999995
+MUSETT_T0_DSSD_Y94_E 62.3232 -0.007607859999999999
+MUSETT_T0_DSSD_Y95_E 60.8927 -0.00743324
+MUSETT_T0_DSSD_Y96_E 56.372 -0.00688138
+MUSETT_T0_DSSD_Y97_E 56.6412 -0.0069142299999999995
+MUSETT_T0_DSSD_Y98_E 56.555800000000005 -0.00690381
+MUSETT_T0_DSSD_Y99_E 56.451699999999995 -0.0068911300000000005
+MUSETT_T0_DSSD_Y100_E 56.187 -0.00685881
+MUSETT_T0_DSSD_Y101_E 56.3228 -0.0068754
+MUSETT_T0_DSSD_Y102_E 56.0736 -0.00684493
+MUSETT_T0_DSSD_Y103_E 56.5751 -0.006906209999999999
+MUSETT_T0_DSSD_Y104_E 56.8741 -0.00694264
+MUSETT_T0_DSSD_Y105_E 56.0264 -0.0068391599999999995
+MUSETT_T0_DSSD_Y106_E 57.0374 -0.00696262
+MUSETT_T0_DSSD_Y107_E 57.3595 -0.00700194
+MUSETT_T0_DSSD_Y108_E 56.5524 -0.00690339
+MUSETT_T0_DSSD_Y109_E 56.5855 -0.006907460000000001
+MUSETT_T0_DSSD_Y110_E 56.6668 -0.006917410000000001
+MUSETT_T0_DSSD_Y111_E 56.4009 -0.00688495
+MUSETT_T0_DSSD_Y112_E 56.8996 -0.0069458
+MUSETT_T0_DSSD_Y113_E 57.124300000000005 -0.00697323
+MUSETT_T0_DSSD_Y114_E 56.9552 -0.00695256
+MUSETT_T0_DSSD_Y115_E 56.8211 -0.00693619
+MUSETT_T0_DSSD_Y116_E 57.2948 -0.00699405
+MUSETT_T0_DSSD_Y117_E 56.5544 -0.00690363
+MUSETT_T0_DSSD_Y118_E 56.4159 -0.0068867500000000005
+MUSETT_T0_DSSD_Y119_E 56.5919 -0.0069082499999999995
+MUSETT_T0_DSSD_Y120_E 57.4048 -0.00700746
+MUSETT_T0_DSSD_Y121_E 57.2319 -0.00698632
+MUSETT_T0_DSSD_Y122_E 56.6849 -0.00691957
+MUSETT_T0_DSSD_Y123_E 56.016400000000004 -0.0068379899999999995
+MUSETT_T0_DSSD_Y124_E 56.4575 -0.006891810000000001
+MUSETT_T0_DSSD_Y125_E 55.921699999999994 -0.00682642
+MUSETT_T0_DSSD_Y126_E 56.947 -0.0069515900000000005
+MUSETT_T0_DSSD_Y127_E 56.581 -0.00690693
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e0e1c3f6bbdb099a64449f881aa09ed5881ca812
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_T 947.337 -0.114176
+MUSETT_T0_DSSD_X1_T 958.191 -0.115529
+MUSETT_T0_DSSD_X2_T 959.141 -0.115657
+MUSETT_T0_DSSD_X3_T 973.263 -0.117409
+MUSETT_T0_DSSD_X4_T 973.079 -0.117367
+MUSETT_T0_DSSD_X5_T 972.893 -0.117353
+MUSETT_T0_DSSD_X6_T 978.231 -0.117969
+MUSETT_T0_DSSD_X7_T 980.496 -0.118246
+MUSETT_T0_DSSD_X8_T 979.094 -0.118065
+MUSETT_T0_DSSD_X9_T 983.012 -0.118546
+MUSETT_T0_DSSD_X10_T 987.665 -0.119138
+MUSETT_T0_DSSD_X11_T 987.344 -0.119075
+MUSETT_T0_DSSD_X12_T 994.919 -0.119996
+MUSETT_T0_DSSD_X13_T 980.069 -0.118174
+MUSETT_T0_DSSD_X14_T 991.136 -0.119531
+MUSETT_T0_DSSD_X15_T 1325.763 -0.118448
+MUSETT_T0_DSSD_X16_T 956.943 -0.115275
+MUSETT_T0_DSSD_X17_T 967.056 -0.116527
+MUSETT_T0_DSSD_X18_T 979.486 -0.118044
+MUSETT_T0_DSSD_X19_T 980.171 -0.118125
+MUSETT_T0_DSSD_X20_T 989.203 -0.119233
+MUSETT_T0_DSSD_X21_T 983.63 -0.118555
+MUSETT_T0_DSSD_X22_T 994.257 -0.119845
+MUSETT_T0_DSSD_X23_T 995.64 -0.120005
+MUSETT_T0_DSSD_X24_T 990.898 -0.119427
+MUSETT_T0_DSSD_X25_T 1002.054 -0.120777
+MUSETT_T0_DSSD_X26_T 1004.297 -0.121057
+MUSETT_T0_DSSD_X27_T 1008.353 -0.121545
+MUSETT_T0_DSSD_X28_T 1003.834 -0.121021
+MUSETT_T0_DSSD_X29_T 1002.641 -0.120851
+MUSETT_T0_DSSD_X30_T 999.274 -0.12045
+MUSETT_T0_DSSD_X31_T 994.884 -0.119947
+MUSETT_T0_DSSD_X32_T 873.942 -0.105192
+MUSETT_T0_DSSD_X33_T 871.682 -0.104955
+MUSETT_T0_DSSD_X34_T 891.642 -0.107397
+MUSETT_T0_DSSD_X35_T 880.321 -0.106033
+MUSETT_T0_DSSD_X36_T 882.156 -0.106227
+MUSETT_T0_DSSD_X37_T 896.607 -0.108005
+MUSETT_T0_DSSD_X38_T 898.13 -0.108195
+MUSETT_T0_DSSD_X39_T 896.691 -0.107979
+MUSETT_T0_DSSD_X40_T 899.622 -0.108302
+MUSETT_T0_DSSD_X41_T 899.64 -0.108334
+MUSETT_T0_DSSD_X42_T 898.696 -0.108243
+MUSETT_T0_DSSD_X43_T 905.705 -0.109095
+MUSETT_T0_DSSD_X44_T 901.026 -0.108505
+MUSETT_T0_DSSD_X45_T 895.522 -0.107877
+MUSETT_T0_DSSD_X46_T 897.868 -0.108187
+MUSETT_T0_DSSD_X47_T 930.136 -0.10826
+MUSETT_T0_DSSD_X48_T 885.768 -0.106556
+MUSETT_T0_DSSD_X49_T 888.974 -0.106942
+MUSETT_T0_DSSD_X50_T 894.597 -0.107622
+MUSETT_T0_DSSD_X51_T 903.027 -0.109464
+MUSETT_T0_DSSD_X52_T 908.335 -0.109295
+MUSETT_T0_DSSD_X53_T 911.216 -0.109652
+MUSETT_T0_DSSD_X54_T 913.763 -0.109955
+MUSETT_T0_DSSD_X55_T 917.724 -0.110458
+MUSETT_T0_DSSD_X56_T 926.424 -0.111499
+MUSETT_T0_DSSD_X57_T 917.91 -0.110456
+MUSETT_T0_DSSD_X58_T 925.431 -0.111378
+MUSETT_T0_DSSD_X59_T 930.046 -0.111943
+MUSETT_T0_DSSD_X60_T 937.211 -0.112807
+MUSETT_T0_DSSD_X61_T 939.875 -0.11314
+MUSETT_T0_DSSD_X62_T 941.523 -0.113338
+MUSETT_T0_DSSD_X63_T 929.926 -0.111982
+MUSETT_T0_DSSD_X64_T 958.682 -0.115846
+MUSETT_T0_DSSD_X65_T 963.509 -0.11646
+MUSETT_T0_DSSD_X66_T 973.199 -0.117644
+MUSETT_T0_DSSD_X67_T 974.497 -0.117791
+MUSETT_T0_DSSD_X68_T 977.927 -0.118174
+MUSETT_T0_DSSD_X69_T 990.533 -0.119717
+MUSETT_T0_DSSD_X70_T 995.149 -0.120284
+MUSETT_T0_DSSD_X71_T 996.285 -0.120426
+MUSETT_T0_DSSD_X72_T 1007.301 -0.121763
+MUSETT_T0_DSSD_X73_T 988.471 -0.119445
+MUSETT_T0_DSSD_X74_T 1005.426 -0.121535
+MUSETT_T0_DSSD_X75_T 996.264 -0.120381
+MUSETT_T0_DSSD_X76_T 1003.43 -0.121262
+MUSETT_T0_DSSD_X77_T 1007.423 -0.121766
+MUSETT_T0_DSSD_X78_T 998.247 -0.120615
+MUSETT_T0_DSSD_X79_T 1387.089 -0.120952
+MUSETT_T0_DSSD_X80_T 924.296 -0.111515
+MUSETT_T0_DSSD_X81_T 933.864 -0.112746
+MUSETT_T0_DSSD_X82_T 926.031 -0.111774
+MUSETT_T0_DSSD_X83_T 938.356 -0.113281
+MUSETT_T0_DSSD_X84_T 931.605 -0.112468
+MUSETT_T0_DSSD_X85_T 942.766 -0.113819
+MUSETT_T0_DSSD_X86_T 950.91 -0.114818
+MUSETT_T0_DSSD_X87_T 944.087 -0.113978
+MUSETT_T0_DSSD_X88_T 950.899 -0.114813
+MUSETT_T0_DSSD_X89_T 958.325 -0.115728
+MUSETT_T0_DSSD_X90_T 965.901 -0.11664
+MUSETT_T0_DSSD_X91_T 962.574 -0.11625
+MUSETT_T0_DSSD_X92_T 962.901 -0.116299
+MUSETT_T0_DSSD_X93_T 961.67 -0.116152
+MUSETT_T0_DSSD_X94_T 975.645 -0.117868
+MUSETT_T0_DSSD_X95_T 1001.622 -0.116744
+MUSETT_T0_DSSD_X96_T 869.411 -0.105013
+MUSETT_T0_DSSD_X97_T 878.779 -0.106169
+MUSETT_T0_DSSD_X98_T 879.022 -0.106212
+MUSETT_T0_DSSD_X99_T 884.843 -0.106905
+MUSETT_T0_DSSD_X100_T 894.415 -0.108043
+MUSETT_T0_DSSD_X101_T 901.76 -0.108935
+MUSETT_T0_DSSD_X102_T 897.652 -0.108442
+MUSETT_T0_DSSD_X103_T 895.989 -0.108194
+MUSETT_T0_DSSD_X104_T 905.204 -0.109336
+MUSETT_T0_DSSD_X105_T 902.911 -0.109053
+MUSETT_T0_DSSD_X106_T 908.729 -0.109771
+MUSETT_T0_DSSD_X107_T 906.302 -0.109449
+MUSETT_T0_DSSD_X108_T 903.456 -0.109128
+MUSETT_T0_DSSD_X109_T 907.613 -0.109641
+MUSETT_T0_DSSD_X110_T 903.804 -0.109177
+MUSETT_T0_DSSD_X111_T 915.521 -0.109478
+MUSETT_T0_DSSD_X112_T 889.665 -0.107364
+MUSETT_T0_DSSD_X113_T 892.8 -0.107748
+MUSETT_T0_DSSD_X114_T 893.081 -0.107782
+MUSETT_T0_DSSD_X115_T 903.018 -0.109007
+MUSETT_T0_DSSD_X116_T 906.731 -0.109423
+MUSETT_T0_DSSD_X117_T 900.058 -0.108648
+MUSETT_T0_DSSD_X118_T 914.646 -0.110413
+MUSETT_T0_DSSD_X119_T 915.898 -0.110579
+MUSETT_T0_DSSD_X120_T 910.258 -0.109898
+MUSETT_T0_DSSD_X121_T 915.289 -0.1105
+MUSETT_T0_DSSD_X122_T 923.76 -0.111529
+MUSETT_T0_DSSD_X123_T 915.924 -0.110604
+MUSETT_T0_DSSD_X124_T 919.022 -0.110972
+MUSETT_T0_DSSD_X125_T 920.708 -0.11118
+MUSETT_T0_DSSD_X126_T 915.998 -0.110613
+MUSETT_T0_DSSD_X127_T 928.024 -0.111151
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c67efc4a9f340e6a808f745eb05b3bbccbfadeda
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 943.522 -0.114033
+MUSETT_T0_DSSD_Y2_T 942.377 -0.113921
+MUSETT_T0_DSSD_Y3_T 960.366 -0.116104
+MUSETT_T0_DSSD_Y4_T 955.945 -0.115563
+MUSETT_T0_DSSD_Y5_T 971.627 -0.117481
+MUSETT_T0_DSSD_Y6_T 970.47 -0.117339
+MUSETT_T0_DSSD_Y7_T 967.757 -0.117018
+MUSETT_T0_DSSD_Y8_T 974.517 -0.117842
+MUSETT_T0_DSSD_Y9_T 970.194 -0.117316
+MUSETT_T0_DSSD_Y10_T 972.805 -0.117632
+MUSETT_T0_DSSD_Y11_T 979.06 -0.118398
+MUSETT_T0_DSSD_Y12_T 977.036 -0.11814
+MUSETT_T0_DSSD_Y13_T 972.887 -0.117633
+MUSETT_T0_DSSD_Y14_T 975.479 -0.117944
+MUSETT_T0_DSSD_Y15_T 981.973 -0.118761
+MUSETT_T0_DSSD_Y16_T 937.311 -0.113175
+MUSETT_T0_DSSD_Y17_T 946.334 -0.114309
+MUSETT_T0_DSSD_Y18_T 954.832 -0.115351
+MUSETT_T0_DSSD_Y19_T 946.608 -0.11436
+MUSETT_T0_DSSD_Y20_T 949.338 -0.114686
+MUSETT_T0_DSSD_Y21_T 952.78 -0.115103
+MUSETT_T0_DSSD_Y22_T 958.755 -0.115832
+MUSETT_T0_DSSD_Y23_T 958.899 -0.115841
+MUSETT_T0_DSSD_Y24_T 963.461 -0.116398
+MUSETT_T0_DSSD_Y25_T 961.768 -0.116195
+MUSETT_T0_DSSD_Y26_T 958.433 -0.115516
+MUSETT_T0_DSSD_Y27_T 973.022 -0.117562
+MUSETT_T0_DSSD_Y28_T 975.364 -0.117834
+MUSETT_T0_DSSD_Y29_T 970.379 -0.11722
+MUSETT_T0_DSSD_Y30_T 973.404 -0.11759
+MUSETT_T0_DSSD_Y31_T 968.163 -0.116928
+MUSETT_T0_DSSD_Y32_T 870.503 -0.105131
+MUSETT_T0_DSSD_Y33_T 870.134 -0.105113
+MUSETT_T0_DSSD_Y34_T 887.309 -0.107174
+MUSETT_T0_DSSD_Y35_T 877.246 -0.105955
+MUSETT_T0_DSSD_Y36_T 888.914 -0.107363
+MUSETT_T0_DSSD_Y37_T 888.196 -0.107278
+MUSETT_T0_DSSD_Y38_T 888.904 -0.107347
+MUSETT_T0_DSSD_Y39_T 906.99 -0.109567
+MUSETT_T0_DSSD_Y40_T 904.639 -0.109268
+MUSETT_T0_DSSD_Y41_T 902.704 -0.109045
+MUSETT_T0_DSSD_Y42_T 901.823 -0.108924
+MUSETT_T0_DSSD_Y43_T 912.525 -0.110196
+MUSETT_T0_DSSD_Y44_T 909.706 -0.109895
+MUSETT_T0_DSSD_Y45_T 904.431 -0.10924
+MUSETT_T0_DSSD_Y46_T 914.842 -0.110513
+MUSETT_T0_DSSD_Y47_T 902.82 -0.109056
+MUSETT_T0_DSSD_Y48_T 857.097 -0.103507
+MUSETT_T0_DSSD_Y49_T 868.238 -0.104888
+MUSETT_T0_DSSD_Y50_T 863.632 -0.104347
+MUSETT_T0_DSSD_Y51_T 880.418 -0.106391
+MUSETT_T0_DSSD_Y52_T 883.153 -0.106718
+MUSETT_T0_DSSD_Y53_T 884.327 -0.106878
+MUSETT_T0_DSSD_Y54_T 880.924 -0.106441
+MUSETT_T0_DSSD_Y55_T 888.89 -0.107426
+MUSETT_T0_DSSD_Y56_T 890.451 -0.107608
+MUSETT_T0_DSSD_Y57_T 894.679 -0.108136
+MUSETT_T0_DSSD_Y58_T 901.833 -0.109012
+MUSETT_T0_DSSD_Y59_T 900.642 -0.108611
+MUSETT_T0_DSSD_Y60_T 899.493 -0.108719
+MUSETT_T0_DSSD_Y61_T 906.616 -0.109581
+MUSETT_T0_DSSD_Y62_T 900.751 -0.108895
+MUSETT_T0_DSSD_Y63_T 906.031 -0.109543
+MUSETT_T0_DSSD_Y64_T 965.315 -0.116469
+MUSETT_T0_DSSD_Y65_T 971.839 -0.117302
+MUSETT_T0_DSSD_Y66_T 977.636 -0.118012
+MUSETT_T0_DSSD_Y67_T 977.842 -0.118028
+MUSETT_T0_DSSD_Y68_T 980.742 -0.118378
+MUSETT_T0_DSSD_Y69_T 984.432 -0.118825
+MUSETT_T0_DSSD_Y70_T 984.043 -0.118781
+MUSETT_T0_DSSD_Y71_T 987.06 -0.119156
+MUSETT_T0_DSSD_Y72_T 991.031 -0.119628
+MUSETT_T0_DSSD_Y73_T 982.516 -0.118591
+MUSETT_T0_DSSD_Y74_T 991.101 -0.119656
+MUSETT_T0_DSSD_Y75_T 1001.573 -0.120924
+MUSETT_T0_DSSD_Y76_T 996.82 -0.120327
+MUSETT_T0_DSSD_Y77_T 998.874 -0.120579
+MUSETT_T0_DSSD_Y78_T 996.07 -0.120247
+MUSETT_T0_DSSD_Y79_T 1003.012 -0.121097
+MUSETT_T0_DSSD_Y80_T 971.708 -0.117145
+MUSETT_T0_DSSD_Y81_T 987.463 -0.119118
+MUSETT_T0_DSSD_Y82_T 982.727 -0.118534
+MUSETT_T0_DSSD_Y83_T 997.311 -0.12031
+MUSETT_T0_DSSD_Y84_T 1001.041 -0.120777
+MUSETT_T0_DSSD_Y85_T 1003.673 -0.121085
+MUSETT_T0_DSSD_Y86_T 999.447 -0.120569
+MUSETT_T0_DSSD_Y87_T 1009.884 -0.121839
+MUSETT_T0_DSSD_Y88_T 1005.634 -0.121339
+MUSETT_T0_DSSD_Y89_T 1016.116 -0.122592
+MUSETT_T0_DSSD_Y90_T 1026.636 -0.123897
+MUSETT_T0_DSSD_Y91_T 1026.388 -0.123866
+MUSETT_T0_DSSD_Y92_T 1021.347 -0.123256
+MUSETT_T0_DSSD_Y93_T 1025.69 -0.123786
+MUSETT_T0_DSSD_Y94_T 1022.609 -0.123408
+MUSETT_T0_DSSD_Y95_T 1018.382 -0.122879
+MUSETT_T0_DSSD_Y96_T 884.114 -0.106544
+MUSETT_T0_DSSD_Y97_T 880.476 -0.106139
+MUSETT_T0_DSSD_Y98_T 879.465 -0.106028
+MUSETT_T0_DSSD_Y99_T 896.068 -0.108041
+MUSETT_T0_DSSD_Y100_T 893.327 -0.107707
+MUSETT_T0_DSSD_Y101_T 892.176 -0.10757
+MUSETT_T0_DSSD_Y102_T 896.58 -0.108105
+MUSETT_T0_DSSD_Y103_T 908.687 -0.10959
+MUSETT_T0_DSSD_Y104_T 903.256 -0.108916
+MUSETT_T0_DSSD_Y105_T 916.636 -0.110544
+MUSETT_T0_DSSD_Y106_T 912.014 -0.109981
+MUSETT_T0_DSSD_Y107_T 916.38 -0.11051
+MUSETT_T0_DSSD_Y108_T 915.761 -0.110421
+MUSETT_T0_DSSD_Y109_T 911.291 -0.109894
+MUSETT_T0_DSSD_Y110_T 916.811 -0.110572
+MUSETT_T0_DSSD_Y111_T 918.69 -0.110803
+MUSETT_T0_DSSD_Y112_T 893.594 -0.107535
+MUSETT_T0_DSSD_Y113_T 901.025 -0.108466
+MUSETT_T0_DSSD_Y114_T 900.629 -0.108438
+MUSETT_T0_DSSD_Y115_T 906.59 -0.109158
+MUSETT_T0_DSSD_Y116_T 918.16 -0.110566
+MUSETT_T0_DSSD_Y117_T 911.388 -0.109757
+MUSETT_T0_DSSD_Y118_T 931.217 -0.112167
+MUSETT_T0_DSSD_Y119_T 922.953 -0.111146
+MUSETT_T0_DSSD_Y120_T 933.135 -0.112407
+MUSETT_T0_DSSD_Y121_T 932.64 -0.112337
+MUSETT_T0_DSSD_Y122_T 934.384 -0.112539
+MUSETT_T0_DSSD_Y123_T 937.88 -0.112978
+MUSETT_T0_DSSD_Y124_T 932.437 -0.112316
+MUSETT_T0_DSSD_Y125_T 931.451 -0.112192
+MUSETT_T0_DSSD_Y126_T 928.409 -0.111821
+MUSETT_T0_DSSD_Y127_T 931.268 -0.112162
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..21a339ff19565b30923199ce42cf71781b462958
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E -62.318 0.00760703
+MUSETT_T1_DSSD_X1_E -62.174800000000005 0.00758959
+MUSETT_T1_DSSD_X2_E -62.2697 0.00760114
+MUSETT_T1_DSSD_X3_E -61.9672 0.00756426
+MUSETT_T1_DSSD_X4_E -61.415099999999995 0.00749681
+MUSETT_T1_DSSD_X5_E -61.526 0.00751035
+MUSETT_T1_DSSD_X6_E -62.3097 0.00760599
+MUSETT_T1_DSSD_X7_E -61.376 0.00749208
+MUSETT_T1_DSSD_X8_E -61.309599999999996 0.00748393
+MUSETT_T1_DSSD_X9_E -61.415699999999994 0.00749688
+MUSETT_T1_DSSD_X10_E -61.636300000000006 0.0075238399999999995
+MUSETT_T1_DSSD_X11_E -61.6995 0.0075315799999999995
+MUSETT_T1_DSSD_X12_E -61.9036 0.00755648
+MUSETT_T1_DSSD_X13_E -61.3858 0.00749329
+MUSETT_T1_DSSD_X14_E -61.149699999999996 0.00746439
+MUSETT_T1_DSSD_X15_E -61.9483 0.00756191
+MUSETT_T1_DSSD_X16_E -62.532300000000006 0.00763317
+MUSETT_T1_DSSD_X17_E -61.741800000000005 0.0075366999999999995
+MUSETT_T1_DSSD_X18_E -62.152699999999996 0.00758685
+MUSETT_T1_DSSD_X19_E -61.8945 0.00755534
+MUSETT_T1_DSSD_X20_E -62.9018 0.007678239999999999
+MUSETT_T1_DSSD_X21_E -62.1592 0.0075876400000000005
+MUSETT_T1_DSSD_X22_E -62.66 0.0076488
+MUSETT_T1_DSSD_X23_E -62.320699999999995 0.0076073700000000005
+MUSETT_T1_DSSD_X24_E -62.2217 0.007595279999999999
+MUSETT_T1_DSSD_X25_E -61.9343 0.00756018
+MUSETT_T1_DSSD_X26_E -61.9471 0.00756175
+MUSETT_T1_DSSD_X27_E -61.6952 0.00753103
+MUSETT_T1_DSSD_X28_E -61.588300000000004 0.00751797
+MUSETT_T1_DSSD_X29_E -62.694 0.00765292
+MUSETT_T1_DSSD_X30_E -61.7341 0.007535770000000001
+MUSETT_T1_DSSD_X31_E -62.7765 0.00766307
+MUSETT_T1_DSSD_X32_E -58.260400000000004 0.00711179
+MUSETT_T1_DSSD_X33_E -58.264 0.00711219
+MUSETT_T1_DSSD_X34_E -58.3149 0.00711847
+MUSETT_T1_DSSD_X35_E -58.24 0.00710926
+MUSETT_T1_DSSD_X36_E -57.977 0.0070772199999999995
+MUSETT_T1_DSSD_X37_E -58.1817 0.0071020300000000005
+MUSETT_T1_DSSD_X38_E -58.0364 0.00708428
+MUSETT_T1_DSSD_X39_E -58.6261 0.007156419
+MUSETT_T1_DSSD_X40_E -58.167300000000004 0.00710045
+MUSETT_T1_DSSD_X41_E -58.8056 0.00717818
+MUSETT_T1_DSSD_X42_E -58.0404 0.00708493
+MUSETT_T1_DSSD_X43_E -58.445 0.00713434
+MUSETT_T1_DSSD_X44_E -58.5769 0.00715027
+MUSETT_T1_DSSD_X45_E -59.255 0.00723324
+MUSETT_T1_DSSD_X46_E -58.6541 0.00715993
+MUSETT_T1_DSSD_X47_E -58.523199999999996 0.0071438
+MUSETT_T1_DSSD_X48_E -57.8625 0.007063150000000001
+MUSETT_T1_DSSD_X49_E -58.4892 0.00713967
+MUSETT_T1_DSSD_X50_E -58.005300000000005 0.00708058
+MUSETT_T1_DSSD_X51_E -57.7392 0.0070481400000000005
+MUSETT_T1_DSSD_X52_E -57.926199999999994 0.00707097
+MUSETT_T1_DSSD_X53_E -57.9129 0.00706931
+MUSETT_T1_DSSD_X54_E -57.9565 0.00707461
+MUSETT_T1_DSSD_X55_E -57.767900000000004 0.00705159
+MUSETT_T1_DSSD_X56_E -58.0156 0.0070818700000000005
+MUSETT_T1_DSSD_X57_E -57.8056 0.00705617
+MUSETT_T1_DSSD_X58_E -58.416599999999995 0.00713075
+MUSETT_T1_DSSD_X59_E -57.624 0.0070339999999999995
+MUSETT_T1_DSSD_X60_E -57.6878 0.00704184
+MUSETT_T1_DSSD_X61_E -58.237300000000005 0.0071089000000000005
+MUSETT_T1_DSSD_X62_E -58.058699999999995 0.00708712
+MUSETT_T1_DSSD_X63_E -58.244699999999995 0.00710981
+MUSETT_T1_DSSD_X64_E -60.994699999999995 0.0074455
+MUSETT_T1_DSSD_X65_E -61.603 0.007519860000000001
+MUSETT_T1_DSSD_X66_E -61.459900000000005 0.00750223
+MUSETT_T1_DSSD_X67_E -61.665099999999995 0.00752729
+MUSETT_T1_DSSD_X68_E -61.8745 0.00755286
+MUSETT_T1_DSSD_X69_E -61.3285 0.0074863099999999995
+MUSETT_T1_DSSD_X70_E -61.63 0.00752303
+MUSETT_T1_DSSD_X71_E -61.904199999999996 0.00755658
+MUSETT_T1_DSSD_X72_E -61.2324 0.00747458
+MUSETT_T1_DSSD_X73_E -62.3412 0.00760994
+MUSETT_T1_DSSD_X74_E -61.9259 0.00755913
+MUSETT_T1_DSSD_X75_E -62.067099999999996 0.0075764199999999995
+MUSETT_T1_DSSD_X76_E -61.4845 0.00750533
+MUSETT_T1_DSSD_X77_E -61.7427 0.00753686
+MUSETT_T1_DSSD_X78_E -61.352599999999995 0.00748913
+MUSETT_T1_DSSD_X79_E -61.942099999999996 0.00756111
+MUSETT_T1_DSSD_X80_E -63.429 0.00774268
+MUSETT_T1_DSSD_X81_E -63.7221 0.00777849
+MUSETT_T1_DSSD_X82_E -64.2115 0.00783819
+MUSETT_T1_DSSD_X83_E -63.8677 0.0077962
+MUSETT_T1_DSSD_X84_E -64.1279 0.00782805
+MUSETT_T1_DSSD_X85_E -63.8404 0.00779293
+MUSETT_T1_DSSD_X86_E -64.0504 0.00781853
+MUSETT_T1_DSSD_X87_E -64.1609 0.00783201
+MUSETT_T1_DSSD_X88_E -64.18090000000001 0.007834520000000001
+MUSETT_T1_DSSD_X89_E -64.214 0.00783849
+MUSETT_T1_DSSD_X90_E -63.2804 0.00772459
+MUSETT_T1_DSSD_X91_E -63.366800000000005 0.00773508
+MUSETT_T1_DSSD_X92_E -64.5209 0.00787598
+MUSETT_T1_DSSD_X93_E -63.9818 0.007810139999999999
+MUSETT_T1_DSSD_X94_E -63.7755 0.00778503
+MUSETT_T1_DSSD_X95_E -63.4339 0.00774331
+MUSETT_T1_DSSD_X96_E -56.2588 0.00686734
+MUSETT_T1_DSSD_X97_E -56.6455 0.0069146400000000005
+MUSETT_T1_DSSD_X98_E -56.4879 0.00689532
+MUSETT_T1_DSSD_X99_E -56.3827 0.00688258
+MUSETT_T1_DSSD_X100_E -56.5553 0.00690363
+MUSETT_T1_DSSD_X101_E -57.0229 0.00696061
+MUSETT_T1_DSSD_X102_E -57.3332 0.0069984700000000006
+MUSETT_T1_DSSD_X103_E -56.5807 0.00690664
+MUSETT_T1_DSSD_X104_E -56.7668 0.00692938
+MUSETT_T1_DSSD_X105_E -56.9893 0.00695655
+MUSETT_T1_DSSD_X106_E -57.8513 0.00706174
+MUSETT_T1_DSSD_X107_E -57.756099999999996 0.00705012
+MUSETT_T1_DSSD_X108_E -57.728300000000004 0.0070468
+MUSETT_T1_DSSD_X109_E -57.5027 0.00701928
+MUSETT_T1_DSSD_X110_E -57.6809 0.00704099
+MUSETT_T1_DSSD_X111_E -57.9952 0.00707934
+MUSETT_T1_DSSD_X112_E -57.221599999999995 0.0069849199999999995
+MUSETT_T1_DSSD_X113_E -57.3068 0.0069953
+MUSETT_T1_DSSD_X114_E -56.767199999999995 0.006929439999999999
+MUSETT_T1_DSSD_X115_E -57.714800000000004 0.00704509
+MUSETT_T1_DSSD_X116_E -57.2578 0.0069893099999999994
+MUSETT_T1_DSSD_X117_E -57.2509 0.00698847
+MUSETT_T1_DSSD_X118_E -56.3284 0.00687591
+MUSETT_T1_DSSD_X119_E -58.2885 0.007115160000000001
+MUSETT_T1_DSSD_X120_E -57.413199999999996 0.007008339999999999
+MUSETT_T1_DSSD_X121_E -57.776199999999996 0.007052640000000001
+MUSETT_T1_DSSD_X122_E -57.731 0.00704713
+MUSETT_T1_DSSD_X123_E -57.410599999999995 0.00700802
+MUSETT_T1_DSSD_X124_E -57.5907 0.00702999
+MUSETT_T1_DSSD_X125_E -57.6383 0.00703579
+MUSETT_T1_DSSD_X126_E -57.0384 0.0069625500000000005
+MUSETT_T1_DSSD_X127_E -57.8549 0.007062199999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..99017db9824f0dde76826e27acab80c7781b2162
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_E 59.619099999999996 -0.00727783
+MUSETT_T1_DSSD_Y1_E 60.465300000000006 -0.0073811499999999995
+MUSETT_T1_DSSD_Y2_E 59.712 -0.007289189999999999
+MUSETT_T1_DSSD_Y3_E 59.326699999999995 -0.00724213
+MUSETT_T1_DSSD_Y4_E 60.1976 -0.0073485
+MUSETT_T1_DSSD_Y5_E 60.005199999999995 -0.00732501
+MUSETT_T1_DSSD_Y6_E 59.3762 -0.00724818
+MUSETT_T1_DSSD_Y7_E 59.4559 -0.00725795
+MUSETT_T1_DSSD_Y8_E 59.4729 -0.00725998
+MUSETT_T1_DSSD_Y9_E 59.7076 -0.00728867
+MUSETT_T1_DSSD_Y10_E 59.520199999999996 -0.0072657699999999995
+MUSETT_T1_DSSD_Y11_E 59.5565 -0.00727023
+MUSETT_T1_DSSD_Y12_E 60.2104 -0.0073500300000000005
+MUSETT_T1_DSSD_Y13_E 59.2734 -0.00723565
+MUSETT_T1_DSSD_Y14_E 59.5118 -0.00726475
+MUSETT_T1_DSSD_Y15_E 59.8161 -0.00730189
+MUSETT_T1_DSSD_Y16_E 62.145199999999996 -0.0075861999999999995
+MUSETT_T1_DSSD_Y17_E 62.468300000000006 -0.0076256399999999995
+MUSETT_T1_DSSD_Y18_E 62.4021 -0.00761759
+MUSETT_T1_DSSD_Y19_E 62.0316 -0.0075723399999999995
+MUSETT_T1_DSSD_Y20_E 62.1982 -0.00759266
+MUSETT_T1_DSSD_Y21_E 62.3574 -0.00761211
+MUSETT_T1_DSSD_Y22_E -10.0 0.0
+MUSETT_T1_DSSD_Y23_E 62.0064 -0.00756931
+MUSETT_T1_DSSD_Y24_E 61.7119 -0.00753332
+MUSETT_T1_DSSD_Y25_E 61.4477 -0.00750107
+MUSETT_T1_DSSD_Y26_E 62.078 -0.00757801
+MUSETT_T1_DSSD_Y27_E 62.0599 -0.00757584
+MUSETT_T1_DSSD_Y28_E 62.251599999999996 -0.00759918
+MUSETT_T1_DSSD_Y29_E 62.034 -0.00757263
+MUSETT_T1_DSSD_Y30_E 61.6533 -0.0075261699999999996
+MUSETT_T1_DSSD_Y31_E 61.7974 -0.0075438
+MUSETT_T1_DSSD_Y32_E 56.115 -0.00685013
+MUSETT_T1_DSSD_Y33_E 56.290099999999995 -0.00687151
+MUSETT_T1_DSSD_Y34_E 55.6312 -0.00679109
+MUSETT_T1_DSSD_Y35_E 55.6539 -0.00679382
+MUSETT_T1_DSSD_Y36_E 55.4171 -0.00676495
+MUSETT_T1_DSSD_Y37_E 56.4182 -0.0068871900000000005
+MUSETT_T1_DSSD_Y38_E 55.3814 -0.0067605700000000005
+MUSETT_T1_DSSD_Y39_E 55.9099 -0.00682508
+MUSETT_T1_DSSD_Y40_E 56.0294 -0.00683969
+MUSETT_T1_DSSD_Y41_E 56.120400000000004 -0.00685079
+MUSETT_T1_DSSD_Y42_E 55.5034 -0.0067754799999999995
+MUSETT_T1_DSSD_Y43_E 56.587300000000006 -0.00690782
+MUSETT_T1_DSSD_Y44_E 55.6325 -0.0067912499999999995
+MUSETT_T1_DSSD_Y45_E 55.719199999999994 -0.00680184
+MUSETT_T1_DSSD_Y46_E 55.7592 -0.0068067200000000005
+MUSETT_T1_DSSD_Y47_E 55.7233 -0.0068023300000000005
+MUSETT_T1_DSSD_Y48_E 57.1945 -0.00698188
+MUSETT_T1_DSSD_Y49_E 56.6218 -0.00691194
+MUSETT_T1_DSSD_Y50_E 56.5589 -0.0069043
+MUSETT_T1_DSSD_Y51_E 56.037099999999995 -0.00684059
+MUSETT_T1_DSSD_Y52_E 56.7933 -0.006932890000000001
+MUSETT_T1_DSSD_Y53_E 56.263 -0.00686816
+MUSETT_T1_DSSD_Y54_E 56.4425 -0.00689006
+MUSETT_T1_DSSD_Y55_E 56.437 -0.0068894
+MUSETT_T1_DSSD_Y56_E 57.3308 -0.00699852
+MUSETT_T1_DSSD_Y57_E 57.023 -0.00696092
+MUSETT_T1_DSSD_Y58_E 56.6276 -0.006912639999999999
+MUSETT_T1_DSSD_Y59_E 57.287800000000004 -0.00699327
+MUSETT_T1_DSSD_Y60_E 57.3784 -0.0070043300000000005
+MUSETT_T1_DSSD_Y61_E 57.0121 -0.0069596200000000006
+MUSETT_T1_DSSD_Y62_E 56.174 -0.0068573
+MUSETT_T1_DSSD_Y63_E 57.2921 -0.00699379
+MUSETT_T1_DSSD_Y64_E 61.0871 -0.00745703
+MUSETT_T1_DSSD_Y65_E 61.6184 -0.00752186
+MUSETT_T1_DSSD_Y66_E 61.2911 -0.00748195
+MUSETT_T1_DSSD_Y67_E 61.562599999999996 -0.0075150600000000005
+MUSETT_T1_DSSD_Y68_E 61.2043 -0.00747131
+MUSETT_T1_DSSD_Y69_E 60.0103 -0.0073256
+MUSETT_T1_DSSD_Y70_E 60.457 -0.00738015
+MUSETT_T1_DSSD_Y71_E 61.0999 -0.00745857
+MUSETT_T1_DSSD_Y72_E 60.2656 -0.00735676
+MUSETT_T1_DSSD_Y73_E 61.237300000000005 -0.00747538
+MUSETT_T1_DSSD_Y74_E 60.8875 -0.00743265
+MUSETT_T1_DSSD_Y75_E 60.371300000000005 -0.007369659999999999
+MUSETT_T1_DSSD_Y76_E 60.5195 -0.00738776
+MUSETT_T1_DSSD_Y77_E 60.9741 -0.00744327
+MUSETT_T1_DSSD_Y78_E 60.660599999999995 -0.00740501
+MUSETT_T1_DSSD_Y79_E 61.3305 -0.0074868
+MUSETT_T1_DSSD_Y80_E 61.1626 -0.00746633
+MUSETT_T1_DSSD_Y81_E 61.126400000000004 -0.00746184
+MUSETT_T1_DSSD_Y82_E 61.091300000000004 -0.0074575399999999995
+MUSETT_T1_DSSD_Y83_E 60.509 -0.007386510000000001
+MUSETT_T1_DSSD_Y84_E 60.4234 -0.007376000000000001
+MUSETT_T1_DSSD_Y85_E 61.1413 -0.00746364
+MUSETT_T1_DSSD_Y86_E 60.6746 -0.0074066900000000005
+MUSETT_T1_DSSD_Y87_E 60.5731 -0.0073943
+MUSETT_T1_DSSD_Y88_E 61.027300000000004 -0.007449760000000001
+MUSETT_T1_DSSD_Y89_E 61.279199999999996 -0.00748052
+MUSETT_T1_DSSD_Y90_E 60.7255 -0.00741289
+MUSETT_T1_DSSD_Y91_E 60.8688 -0.00743041
+MUSETT_T1_DSSD_Y92_E 60.5108 -0.0073867099999999995
+MUSETT_T1_DSSD_Y93_E 61.2806 -0.00748069
+MUSETT_T1_DSSD_Y94_E 61.6085 -0.007520679999999999
+MUSETT_T1_DSSD_Y95_E 60.746900000000004 -0.0074156000000000005
+MUSETT_T1_DSSD_Y96_E 55.8579 -0.00681873
+MUSETT_T1_DSSD_Y97_E 55.481300000000005 -0.00677275
+MUSETT_T1_DSSD_Y98_E 55.6901 -0.0067982500000000005
+MUSETT_T1_DSSD_Y99_E 55.5546 -0.00678172
+MUSETT_T1_DSSD_Y100_E 55.8138 -0.00681337
+MUSETT_T1_DSSD_Y101_E 55.4669 -0.00677101
+MUSETT_T1_DSSD_Y102_E 55.4251 -0.00676591
+MUSETT_T1_DSSD_Y103_E 56.1674 -0.00685651
+MUSETT_T1_DSSD_Y104_E 55.270199999999996 -0.00674696
+MUSETT_T1_DSSD_Y105_E 55.3054 -0.00675128
+MUSETT_T1_DSSD_Y106_E 55.865300000000005 -0.006819619999999999
+MUSETT_T1_DSSD_Y107_E 55.2296 -0.0067420200000000005
+MUSETT_T1_DSSD_Y108_E 55.8628 -0.00681933
+MUSETT_T1_DSSD_Y109_E 56.1111 -0.0068496699999999995
+MUSETT_T1_DSSD_Y110_E 56.1356 -0.0068525999999999995
+MUSETT_T1_DSSD_Y111_E 56.5726 -0.00690596
+MUSETT_T1_DSSD_Y112_E 54.7644 -0.0066852299999999995
+MUSETT_T1_DSSD_Y113_E 55.5593 -0.00678228
+MUSETT_T1_DSSD_Y114_E 55.1522 -0.00673254
+MUSETT_T1_DSSD_Y115_E 55.065599999999996 -0.00672196
+MUSETT_T1_DSSD_Y116_E 55.234300000000005 -0.00674255
+MUSETT_T1_DSSD_Y117_E 55.399300000000004 -0.00676272
+MUSETT_T1_DSSD_Y118_E 55.2609 -0.00674585
+MUSETT_T1_DSSD_Y119_E 55.568 -0.00678332
+MUSETT_T1_DSSD_Y120_E 55.8639 -0.00681946
+MUSETT_T1_DSSD_Y121_E 55.4788 -0.006772439999999999
+MUSETT_T1_DSSD_Y122_E 54.8367 -0.00669408
+MUSETT_T1_DSSD_Y123_E 55.1383 -0.006730870000000001
+MUSETT_T1_DSSD_Y124_E 55.2217 -0.00674106
+MUSETT_T1_DSSD_Y125_E 55.183 -0.0067363200000000005
+MUSETT_T1_DSSD_Y126_E 55.346 -0.00675624
+MUSETT_T1_DSSD_Y127_E 56.263 -0.00686815
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a77bb5f514cfaea8500f1cdb4877419d999206c1
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_T 927.653 -0.11232
+MUSETT_T1_DSSD_X1_T 941.47 -0.114015
+MUSETT_T1_DSSD_X2_T 943.919 -0.114341
+MUSETT_T1_DSSD_X3_T 955.204 -0.115712
+MUSETT_T1_DSSD_X4_T 955.698 -0.115744
+MUSETT_T1_DSSD_X5_T 957.389 -0.115962
+MUSETT_T1_DSSD_X6_T 970.882 -0.117589
+MUSETT_T1_DSSD_X7_T 966.082 -0.116998
+MUSETT_T1_DSSD_X8_T 970.157 -0.117498
+MUSETT_T1_DSSD_X9_T 979.189 -0.118577
+MUSETT_T1_DSSD_X10_T 975.579 -0.118143
+MUSETT_T1_DSSD_X11_T 974.976 -0.118071
+MUSETT_T1_DSSD_X12_T 986.971 -0.11954
+MUSETT_T1_DSSD_X13_T 987.598 -0.119597
+MUSETT_T1_DSSD_X14_T 984.568 -0.119236
+MUSETT_T1_DSSD_X15_T 1372.973 -0.119179
+MUSETT_T1_DSSD_X16_T 923.467 -0.111777
+MUSETT_T1_DSSD_X17_T 946.364 -0.114612
+MUSETT_T1_DSSD_X18_T 947.332 -0.114738
+MUSETT_T1_DSSD_X19_T 944.888 -0.114439
+MUSETT_T1_DSSD_X20_T 953.159 -0.115464
+MUSETT_T1_DSSD_X21_T 966.344 -0.117052
+MUSETT_T1_DSSD_X22_T 955.696 -0.115762
+MUSETT_T1_DSSD_X23_T 972.037 -0.117739
+MUSETT_T1_DSSD_X24_T 970.293 -0.117531
+MUSETT_T1_DSSD_X25_T 973.488 -0.117923
+MUSETT_T1_DSSD_X26_T 972.127 -0.117737
+MUSETT_T1_DSSD_X27_T 975.787 -0.11821
+MUSETT_T1_DSSD_X28_T 979.747 -0.118677
+MUSETT_T1_DSSD_X29_T 976.712 -0.118324
+MUSETT_T1_DSSD_X30_T 975.597 -0.118198
+MUSETT_T1_DSSD_X31_T 985.963 -0.119148
+MUSETT_T1_DSSD_X32_T 876.811 -0.106165
+MUSETT_T1_DSSD_X33_T 876.545 -0.10618
+MUSETT_T1_DSSD_X34_T 892.001 -0.108064
+MUSETT_T1_DSSD_X35_T 874.616 -0.105941
+MUSETT_T1_DSSD_X36_T 892.416 -0.108105
+MUSETT_T1_DSSD_X37_T 898.265 -0.108823
+MUSETT_T1_DSSD_X38_T 890.792 -0.107861
+MUSETT_T1_DSSD_X39_T 895.216 -0.10842
+MUSETT_T1_DSSD_X40_T 898.199 -0.108779
+MUSETT_T1_DSSD_X41_T 897.973 -0.108754
+MUSETT_T1_DSSD_X42_T 906.608 -0.109783
+MUSETT_T1_DSSD_X43_T 898.647 -0.108855
+MUSETT_T1_DSSD_X44_T 908.198 -0.110019
+MUSETT_T1_DSSD_X45_T 906.575 -0.109854
+MUSETT_T1_DSSD_X46_T 904.122 -0.109528
+MUSETT_T1_DSSD_X47_T 914.575 -0.110055
+MUSETT_T1_DSSD_X48_T 866.597 -0.104838
+MUSETT_T1_DSSD_X49_T 871.749 -0.105455
+MUSETT_T1_DSSD_X50_T 884.4 -0.107015
+MUSETT_T1_DSSD_X51_T 886.929 -0.107338
+MUSETT_T1_DSSD_X52_T 889.876 -0.107685
+MUSETT_T1_DSSD_X53_T 889.99 -0.107699
+MUSETT_T1_DSSD_X54_T 893.89 -0.10819
+MUSETT_T1_DSSD_X55_T 899.669 -0.108878
+MUSETT_T1_DSSD_X56_T 906.305 -0.1097
+MUSETT_T1_DSSD_X57_T 901.881 -0.10916
+MUSETT_T1_DSSD_X58_T 910.66 -0.110244
+MUSETT_T1_DSSD_X59_T 903.129 -0.109308
+MUSETT_T1_DSSD_X60_T 916.043 -0.110894
+MUSETT_T1_DSSD_X61_T 907.46 -0.109867
+MUSETT_T1_DSSD_X62_T 906.967 -0.109791
+MUSETT_T1_DSSD_X63_T 914.934 -0.110777
+MUSETT_T1_DSSD_X64_T 948.25 -0.114723
+MUSETT_T1_DSSD_X65_T 949.924 -0.114949
+MUSETT_T1_DSSD_X66_T 963.54 -0.116629
+MUSETT_T1_DSSD_X67_T 963.146 -0.116557
+MUSETT_T1_DSSD_X68_T 965.288 -0.116827
+MUSETT_T1_DSSD_X69_T 973.464 -0.117811
+MUSETT_T1_DSSD_X70_T 973.072 -0.117758
+MUSETT_T1_DSSD_X71_T 978.285 -0.118392
+MUSETT_T1_DSSD_X72_T 975.7 -0.118063
+MUSETT_T1_DSSD_X73_T 990.499 -0.119853
+MUSETT_T1_DSSD_X74_T 986.492 -0.119377
+MUSETT_T1_DSSD_X75_T 984.574 -0.119141
+MUSETT_T1_DSSD_X76_T 991.565 -0.119982
+MUSETT_T1_DSSD_X77_T 993.409 -0.120199
+MUSETT_T1_DSSD_X78_T 993.405 -0.1202
+MUSETT_T1_DSSD_X79_T 1375.093 -0.120722
+MUSETT_T1_DSSD_X80_T 973.672 -0.117775
+MUSETT_T1_DSSD_X81_T 975.656 -0.118024
+MUSETT_T1_DSSD_X82_T 980.777 -0.118652
+MUSETT_T1_DSSD_X83_T 994.253 -0.120307
+MUSETT_T1_DSSD_X84_T 993.689 -0.120215
+MUSETT_T1_DSSD_X85_T 1003.133 -0.121389
+MUSETT_T1_DSSD_X86_T 1004.549 -0.121554
+MUSETT_T1_DSSD_X87_T 996.426 -0.12057
+MUSETT_T1_DSSD_X88_T 1010.914 -0.122345
+MUSETT_T1_DSSD_X89_T 1013.245 -0.12261
+MUSETT_T1_DSSD_X90_T 1008.761 -0.122082
+MUSETT_T1_DSSD_X91_T 1014.832 -0.12282
+MUSETT_T1_DSSD_X92_T 1014.498 -0.12279
+MUSETT_T1_DSSD_X93_T 1017.247 -0.123127
+MUSETT_T1_DSSD_X94_T 1017.053 -0.123096
+MUSETT_T1_DSSD_X95_T 1005.005 -0.12163
+MUSETT_T1_DSSD_X96_T 889.381 -0.107613
+MUSETT_T1_DSSD_X97_T 887.557 -0.107373
+MUSETT_T1_DSSD_X98_T 891.215 -0.107838
+MUSETT_T1_DSSD_X99_T 902.575 -0.109224
+MUSETT_T1_DSSD_X100_T 902.42 -0.1092
+MUSETT_T1_DSSD_X101_T 907.423 -0.109791
+MUSETT_T1_DSSD_X102_T 903.057 -0.109268
+MUSETT_T1_DSSD_X103_T 918.716 -0.111151
+MUSETT_T1_DSSD_X104_T 919.908 -0.11128
+MUSETT_T1_DSSD_X105_T 921.318 -0.111467
+MUSETT_T1_DSSD_X106_T 926.071 -0.112035
+MUSETT_T1_DSSD_X107_T 921.56 -0.111519
+MUSETT_T1_DSSD_X108_T 922.52 -0.111616
+MUSETT_T1_DSSD_X109_T 914.214 -0.110627
+MUSETT_T1_DSSD_X110_T 916.863 -0.110941
+MUSETT_T1_DSSD_X111_T 923.589 -0.11176
+MUSETT_T1_DSSD_X112_T 897.734 -0.108476
+MUSETT_T1_DSSD_X113_T 898.559 -0.108567
+MUSETT_T1_DSSD_X114_T 905.814 -0.10946
+MUSETT_T1_DSSD_X115_T 911.34 -0.110136
+MUSETT_T1_DSSD_X116_T 926.296 -0.111977
+MUSETT_T1_DSSD_X117_T 920.798 -0.111304
+MUSETT_T1_DSSD_X118_T 933.021 -0.112781
+MUSETT_T1_DSSD_X119_T 915.505 -0.110659
+MUSETT_T1_DSSD_X120_T 921.016 -0.111325
+MUSETT_T1_DSSD_X121_T 928.534 -0.112226
+MUSETT_T1_DSSD_X122_T 929.497 -0.11236
+MUSETT_T1_DSSD_X123_T 924.762 -0.111775
+MUSETT_T1_DSSD_X124_T 922.227 -0.111483
+MUSETT_T1_DSSD_X125_T 928.191 -0.112193
+MUSETT_T1_DSSD_X126_T 931.474 -0.112614
+MUSETT_T1_DSSD_X127_T 925.471 -0.111864
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c6e42f75336fd57d7217d0942339e11c75d0261f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_T 931.94 -0.11282
+MUSETT_T1_DSSD_Y1_T 933.419 -0.113022
+MUSETT_T1_DSSD_Y2_T 944.335 -0.114361
+MUSETT_T1_DSSD_Y3_T 948.282 -0.114834
+MUSETT_T1_DSSD_Y4_T 950.668 -0.115122
+MUSETT_T1_DSSD_Y5_T 954.097 -0.115533
+MUSETT_T1_DSSD_Y6_T 957.465 -0.115938
+MUSETT_T1_DSSD_Y7_T 947.485 -0.114726
+MUSETT_T1_DSSD_Y8_T 954.773 -0.11562
+MUSETT_T1_DSSD_Y9_T 965.117 -0.116854
+MUSETT_T1_DSSD_Y10_T 960.979 -0.116368
+MUSETT_T1_DSSD_Y11_T 968.885 -0.117327
+MUSETT_T1_DSSD_Y12_T 969.205 -0.117358
+MUSETT_T1_DSSD_Y13_T 964.875 -0.116827
+MUSETT_T1_DSSD_Y14_T 966.13 -0.116981
+MUSETT_T1_DSSD_Y15_T 963.905 -0.116717
+MUSETT_T1_DSSD_Y16_T 965.786 -0.116883
+MUSETT_T1_DSSD_Y17_T 967.594 -0.117128
+MUSETT_T1_DSSD_Y18_T 972.057 -0.117665
+MUSETT_T1_DSSD_Y19_T 972.548 -0.117743
+MUSETT_T1_DSSD_Y20_T 984.011 -0.119146
+MUSETT_T1_DSSD_Y21_T 980.785 -0.118747
+MUSETT_T1_DSSD_Y22_T 1411.968 -0.119189
+MUSETT_T1_DSSD_Y23_T 990.581 -0.119964
+MUSETT_T1_DSSD_Y24_T 992.06 -0.120158
+MUSETT_T1_DSSD_Y25_T 992.298 -0.120176
+MUSETT_T1_DSSD_Y26_T 996.629 -0.120728
+MUSETT_T1_DSSD_Y27_T 991.657 -0.120113
+MUSETT_T1_DSSD_Y28_T 993.497 -0.120339
+MUSETT_T1_DSSD_Y29_T 984.983 -0.119308
+MUSETT_T1_DSSD_Y30_T 991.5 -0.120108
+MUSETT_T1_DSSD_Y31_T 986.361 -0.119515
+MUSETT_T1_DSSD_Y32_T 880.913 -0.106691
+MUSETT_T1_DSSD_Y33_T 886.95 -0.10745
+MUSETT_T1_DSSD_Y34_T 882.111 -0.106848
+MUSETT_T1_DSSD_Y35_T 892.446 -0.108037
+MUSETT_T1_DSSD_Y36_T 850617233730.0 -103827000.0
+MUSETT_T1_DSSD_Y37_T 901.892 -0.109433
+MUSETT_T1_DSSD_Y38_T 901.618 -0.110242
+MUSETT_T1_DSSD_Y39_T 903.618 -0.10944
+MUSETT_T1_DSSD_Y40_T 891.626 -0.107957
+MUSETT_T1_DSSD_Y41_T 904.118 -0.109521
+MUSETT_T1_DSSD_Y42_T 896.877 -0.108623
+MUSETT_T1_DSSD_Y43_T 905.223 -0.10969
+MUSETT_T1_DSSD_Y44_T 908.248 -0.109989
+MUSETT_T1_DSSD_Y45_T 901.992 -0.109312
+MUSETT_T1_DSSD_Y46_T 907.207 -0.109844
+MUSETT_T1_DSSD_Y47_T 902.152 -0.109257
+MUSETT_T1_DSSD_Y48_T 884.358 -0.10696
+MUSETT_T1_DSSD_Y49_T 883.358 -0.106852
+MUSETT_T1_DSSD_Y50_T 879.778 -0.106436
+MUSETT_T1_DSSD_Y51_T 893.05 -0.108049
+MUSETT_T1_DSSD_Y52_T 898.719 -0.108781
+MUSETT_T1_DSSD_Y53_T 900.02 -0.108923
+MUSETT_T1_DSSD_Y54_T 899.923 -0.108922
+MUSETT_T1_DSSD_Y55_T 900.202 -0.108949
+MUSETT_T1_DSSD_Y56_T 912.083 -0.110395
+MUSETT_T1_DSSD_Y57_T 911.216 -0.110294
+MUSETT_T1_DSSD_Y58_T 906.57 -0.109746
+MUSETT_T1_DSSD_Y59_T 909.553 -0.109802
+MUSETT_T1_DSSD_Y60_T 906.64 -0.109742
+MUSETT_T1_DSSD_Y61_T 914.633 -0.11072
+MUSETT_T1_DSSD_Y62_T 915.986 -0.110879
+MUSETT_T1_DSSD_Y63_T 916.947 -0.111037
+MUSETT_T1_DSSD_Y64_T 946.849 -0.115194
+MUSETT_T1_DSSD_Y65_T 953.538 -0.116053
+MUSETT_T1_DSSD_Y66_T 959.656 -0.116788
+MUSETT_T1_DSSD_Y67_T 963.122 -0.117211
+MUSETT_T1_DSSD_Y68_T 966.506 -0.117617
+MUSETT_T1_DSSD_Y69_T 974.682 -0.118609
+MUSETT_T1_DSSD_Y70_T 970.103 -0.118053
+MUSETT_T1_DSSD_Y71_T 978.236 -0.119038
+MUSETT_T1_DSSD_Y72_T 979.284 -0.119163
+MUSETT_T1_DSSD_Y73_T 982.439 -0.119552
+MUSETT_T1_DSSD_Y74_T 984.361 -0.119777
+MUSETT_T1_DSSD_Y75_T 981.175 -0.119391
+MUSETT_T1_DSSD_Y76_T 984.681 -0.11981
+MUSETT_T1_DSSD_Y77_T 982.229 -0.119505
+MUSETT_T1_DSSD_Y78_T 982.9 -0.119601
+MUSETT_T1_DSSD_Y79_T 987.91 -0.120194
+MUSETT_T1_DSSD_Y80_T 942.987 -0.114646
+MUSETT_T1_DSSD_Y81_T 951.145 -0.115676
+MUSETT_T1_DSSD_Y82_T 950.113 -0.115551
+MUSETT_T1_DSSD_Y83_T 957.084 -0.116392
+MUSETT_T1_DSSD_Y84_T 956.602 -0.116344
+MUSETT_T1_DSSD_Y85_T 966.808 -0.117589
+MUSETT_T1_DSSD_Y86_T 967.686 -0.117699
+MUSETT_T1_DSSD_Y87_T 974.856 -0.118567
+MUSETT_T1_DSSD_Y88_T 975.823 -0.118705
+MUSETT_T1_DSSD_Y89_T 968.52 -0.117807
+MUSETT_T1_DSSD_Y90_T 973.055 -0.118376
+MUSETT_T1_DSSD_Y91_T 981.007 -0.119333
+MUSETT_T1_DSSD_Y92_T 981.756 -0.119429
+MUSETT_T1_DSSD_Y93_T 974.712 -0.118576
+MUSETT_T1_DSSD_Y94_T 978.546 -0.119031
+MUSETT_T1_DSSD_Y95_T 989.774 -0.120471
+MUSETT_T1_DSSD_Y96_T 872.467 -0.106136
+MUSETT_T1_DSSD_Y97_T 871.126 -0.106
+MUSETT_T1_DSSD_Y98_T 879.223 -0.106555
+MUSETT_T1_DSSD_Y99_T 889.621 -0.108263
+MUSETT_T1_DSSD_Y100_T 887.477 -0.10801
+MUSETT_T1_DSSD_Y101_T 879.614 -0.107044
+MUSETT_T1_DSSD_Y102_T 887.412 -0.108005
+MUSETT_T1_DSSD_Y103_T 890.772 -0.108406
+MUSETT_T1_DSSD_Y104_T 901.139 -0.109653
+MUSETT_T1_DSSD_Y105_T 897.74 -0.10926
+MUSETT_T1_DSSD_Y106_T 901.141 -0.10967
+MUSETT_T1_DSSD_Y107_T 891.801 -0.108536
+MUSETT_T1_DSSD_Y108_T 899.055 -0.109417
+MUSETT_T1_DSSD_Y109_T 906.215 -0.110268
+MUSETT_T1_DSSD_Y110_T 896.475 -0.109108
+MUSETT_T1_DSSD_Y111_T 902.411 -0.109824
+MUSETT_T1_DSSD_Y112_T 858.672 -0.104291
+MUSETT_T1_DSSD_Y113_T 852.315 -0.103549
+MUSETT_T1_DSSD_Y114_T 862.508 -0.104798
+MUSETT_T1_DSSD_Y115_T 857.467 -0.10419
+MUSETT_T1_DSSD_Y116_T 865.939 -0.105221
+MUSETT_T1_DSSD_Y117_T 875.287 -0.106354
+MUSETT_T1_DSSD_Y118_T 879.686 -0.1069
+MUSETT_T1_DSSD_Y119_T 874.387 -0.106252
+MUSETT_T1_DSSD_Y120_T 891.804 -0.108379
+MUSETT_T1_DSSD_Y121_T 892.804 -0.108492
+MUSETT_T1_DSSD_Y122_T 890.606 -0.108225
+MUSETT_T1_DSSD_Y123_T 889.753 -0.108132
+MUSETT_T1_DSSD_Y124_T 892.005 -0.108412
+MUSETT_T1_DSSD_Y125_T 887.457 -0.10784
+MUSETT_T1_DSSD_Y126_T 888.428 -0.107526
+MUSETT_T1_DSSD_Y127_T 948.968 -0.121191
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..17930f9a4e4b5c6c066722fc2a2e491d00ca3d70
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E -62.7421 0.00765877
+MUSETT_T2_DSSD_X1_E -62.4792 0.00762671
+MUSETT_T2_DSSD_X2_E -62.865 0.00767381
+MUSETT_T2_DSSD_X3_E -62.0985 0.0075802199999999995
+MUSETT_T2_DSSD_X4_E -62.0571 0.0075752
+MUSETT_T2_DSSD_X5_E -62.707699999999996 0.00765462
+MUSETT_T2_DSSD_X6_E -62.4305 0.00762076
+MUSETT_T2_DSSD_X7_E -62.8149 0.0076677
+MUSETT_T2_DSSD_X8_E -62.9251 0.00768116
+MUSETT_T2_DSSD_X9_E -62.1225 0.00758321
+MUSETT_T2_DSSD_X10_E -62.473800000000004 0.00762602
+MUSETT_T2_DSSD_X11_E -62.4904 0.0076280900000000006
+MUSETT_T2_DSSD_X12_E -62.594199999999994 0.00764074
+MUSETT_T2_DSSD_X13_E -62.536699999999996 0.00763373
+MUSETT_T2_DSSD_X14_E -62.6456 0.00764703
+MUSETT_T2_DSSD_X15_E -63.3752 0.00773612
+MUSETT_T2_DSSD_X16_E -62.167199999999994 0.00758864
+MUSETT_T2_DSSD_X17_E -61.8033 0.007544240000000001
+MUSETT_T2_DSSD_X18_E -61.5785 0.00751678
+MUSETT_T2_DSSD_X19_E -61.470800000000004 0.00750362
+MUSETT_T2_DSSD_X20_E -61.4837 0.00750523
+MUSETT_T2_DSSD_X21_E -62.3158 0.007606760000000001
+MUSETT_T2_DSSD_X22_E -62.1547 0.0075870899999999995
+MUSETT_T2_DSSD_X23_E -61.7911 0.00754274
+MUSETT_T2_DSSD_X24_E -61.6316 0.0075232599999999995
+MUSETT_T2_DSSD_X25_E -61.8242 0.00754673
+MUSETT_T2_DSSD_X26_E -61.9627 0.00756372
+MUSETT_T2_DSSD_X27_E -61.7744 0.00754065
+MUSETT_T2_DSSD_X28_E -61.6645 0.00752723
+MUSETT_T2_DSSD_X29_E -61.257400000000004 0.00747756
+MUSETT_T2_DSSD_X30_E -62.372099999999996 0.0076136400000000005
+MUSETT_T2_DSSD_X31_E -61.5182 0.0075094
+MUSETT_T2_DSSD_X32_E -58.9973 0.0072016499999999995
+MUSETT_T2_DSSD_X33_E -58.122699999999995 0.0070948700000000005
+MUSETT_T2_DSSD_X34_E -58.5748 0.00715013
+MUSETT_T2_DSSD_X35_E -58.3687 0.0071249
+MUSETT_T2_DSSD_X36_E -58.173300000000005 0.00710106
+MUSETT_T2_DSSD_X37_E -58.1415 0.0070972200000000004
+MUSETT_T2_DSSD_X38_E -58.3248 0.00711956
+MUSETT_T2_DSSD_X39_E -57.915800000000004 0.00706966
+MUSETT_T2_DSSD_X40_E -57.571400000000004 0.007027599999999999
+MUSETT_T2_DSSD_X41_E -58.5635 0.00714871
+MUSETT_T2_DSSD_X42_E -58.788599999999995 0.00717615
+MUSETT_T2_DSSD_X43_E -58.273900000000005 0.00711334
+MUSETT_T2_DSSD_X44_E -58.563900000000004 0.00714877
+MUSETT_T2_DSSD_X45_E -58.527 0.00714428
+MUSETT_T2_DSSD_X46_E -58.3393 0.00712137
+MUSETT_T2_DSSD_X47_E -58.469699999999996 0.0071372499999999995
+MUSETT_T2_DSSD_X48_E -57.7795 0.00705305
+MUSETT_T2_DSSD_X49_E -57.166 0.00697811
+MUSETT_T2_DSSD_X50_E -58.1299 0.0070957699999999995
+MUSETT_T2_DSSD_X51_E -57.864599999999996 0.00706342
+MUSETT_T2_DSSD_X52_E -57.5373 0.0070234600000000005
+MUSETT_T2_DSSD_X53_E -57.137 0.00697462
+MUSETT_T2_DSSD_X54_E -57.8198 0.007057959999999999
+MUSETT_T2_DSSD_X55_E -57.621199999999995 0.00703367
+MUSETT_T2_DSSD_X56_E -57.914 0.0070694600000000005
+MUSETT_T2_DSSD_X57_E -57.5076 0.00701987
+MUSETT_T2_DSSD_X58_E -57.9231 0.007070610000000001
+MUSETT_T2_DSSD_X59_E -56.9989 0.00695776
+MUSETT_T2_DSSD_X60_E -57.486599999999996 0.00701726
+MUSETT_T2_DSSD_X61_E -56.6863 0.00691961
+MUSETT_T2_DSSD_X62_E -57.4581 0.0070138299999999995
+MUSETT_T2_DSSD_X63_E -57.8619 0.00706309
+MUSETT_T2_DSSD_X64_E -63.3158 0.00772883
+MUSETT_T2_DSSD_X65_E -64.9944 0.0079338
+MUSETT_T2_DSSD_X66_E -64.0256 0.00781543
+MUSETT_T2_DSSD_X67_E -63.7104 0.00777703
+MUSETT_T2_DSSD_X68_E -10.0 0.0
+MUSETT_T2_DSSD_X69_E -64.3822 0.007859
+MUSETT_T2_DSSD_X70_E -63.647800000000004 0.0077693599999999995
+MUSETT_T2_DSSD_X71_E -63.4446 0.0077446
+MUSETT_T2_DSSD_X72_E -63.3618 0.00773443
+MUSETT_T2_DSSD_X73_E -63.093900000000005 0.00770176
+MUSETT_T2_DSSD_X74_E -63.8269 0.0077912499999999996
+MUSETT_T2_DSSD_X75_E -63.664199999999994 0.00777139
+MUSETT_T2_DSSD_X76_E -63.8841 0.00779822
+MUSETT_T2_DSSD_X77_E -63.7164 0.00777776
+MUSETT_T2_DSSD_X78_E -63.6246 0.007766619999999999
+MUSETT_T2_DSSD_X79_E -63.5937 0.00776277
+MUSETT_T2_DSSD_X80_E -63.2476 0.00772049
+MUSETT_T2_DSSD_X81_E -63.2975 0.0077267099999999995
+MUSETT_T2_DSSD_X82_E -63.1009 0.00770261
+MUSETT_T2_DSSD_X83_E -63.149800000000006 0.00770857
+MUSETT_T2_DSSD_X84_E -63.9192 0.007802450000000001
+MUSETT_T2_DSSD_X85_E -63.8105 0.0077892000000000005
+MUSETT_T2_DSSD_X86_E -63.724599999999995 0.00777877
+MUSETT_T2_DSSD_X87_E -63.9231 0.00780293
+MUSETT_T2_DSSD_X88_E -63.0451 0.0076958
+MUSETT_T2_DSSD_X89_E -63.491800000000005 0.007750379999999999
+MUSETT_T2_DSSD_X90_E -63.3429 0.00773222
+MUSETT_T2_DSSD_X91_E -63.540699999999994 0.007756300000000001
+MUSETT_T2_DSSD_X92_E -63.268 0.00772303
+MUSETT_T2_DSSD_X93_E -64.611 0.00788691
+MUSETT_T2_DSSD_X94_E -63.699 0.0077756
+MUSETT_T2_DSSD_X95_E -63.6235 0.00776632
+MUSETT_T2_DSSD_X96_E -59.026199999999996 0.00720527
+MUSETT_T2_DSSD_X97_E -58.5406 0.00714597
+MUSETT_T2_DSSD_X98_E -58.3044 0.00711715
+MUSETT_T2_DSSD_X99_E -58.710800000000006 0.00716671
+MUSETT_T2_DSSD_X100_E -59.397800000000004 0.00725058
+MUSETT_T2_DSSD_X101_E -59.3529 0.0072451
+MUSETT_T2_DSSD_X102_E -58.824 0.00718059
+MUSETT_T2_DSSD_X103_E -59.0216 0.0072047
+MUSETT_T2_DSSD_X104_E -59.011199999999995 0.0072034
+MUSETT_T2_DSSD_X105_E -59.098800000000004 0.00721406
+MUSETT_T2_DSSD_X106_E -58.7173 0.0071675
+MUSETT_T2_DSSD_X107_E -58.9915 0.00720094
+MUSETT_T2_DSSD_X108_E -58.718900000000005 0.00716772
+MUSETT_T2_DSSD_X109_E -60.3408 0.00736568
+MUSETT_T2_DSSD_X110_E -58.9501 0.0071959
+MUSETT_T2_DSSD_X111_E -58.6752 0.00716237
+MUSETT_T2_DSSD_X112_E -59.2957 0.0072381
+MUSETT_T2_DSSD_X113_E -59.3395 0.00724343
+MUSETT_T2_DSSD_X114_E -59.702 0.00728774
+MUSETT_T2_DSSD_X115_E -59.145300000000006 0.00721974
+MUSETT_T2_DSSD_X116_E -59.642 0.00728038
+MUSETT_T2_DSSD_X117_E -59.9957 0.00732358
+MUSETT_T2_DSSD_X118_E -59.4429 0.00725607
+MUSETT_T2_DSSD_X119_E -59.354800000000004 0.00724536
+MUSETT_T2_DSSD_X120_E -60.0831 0.00733422
+MUSETT_T2_DSSD_X121_E -58.758900000000004 0.00717258
+MUSETT_T2_DSSD_X122_E -59.087300000000006 0.00721264
+MUSETT_T2_DSSD_X123_E -59.302 0.0072389
+MUSETT_T2_DSSD_X124_E -58.9116 0.00719123
+MUSETT_T2_DSSD_X125_E -58.940599999999996 0.00719471
+MUSETT_T2_DSSD_X126_E -59.1426 0.0072194
+MUSETT_T2_DSSD_X127_E -59.2913 0.0072375600000000005
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..db568f8d67c8f9e13b39457ae43502806b6fcbdd
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_E 63.2211 -0.00771756
+MUSETT_T2_DSSD_Y1_E 64.033 -0.00781661
+MUSETT_T2_DSSD_Y2_E 62.573 -0.00763842
+MUSETT_T2_DSSD_Y3_E 63.453199999999995 -0.007745879999999999
+MUSETT_T2_DSSD_Y4_E 63.0084 -0.00769158
+MUSETT_T2_DSSD_Y5_E 62.742 -0.00765904
+MUSETT_T2_DSSD_Y6_E 63.0508 -0.00769679
+MUSETT_T2_DSSD_Y7_E 62.6824 -0.0076517600000000005
+MUSETT_T2_DSSD_Y8_E 62.844300000000004 -0.00767155
+MUSETT_T2_DSSD_Y9_E 63.462900000000005 -0.007747029999999999
+MUSETT_T2_DSSD_Y10_E 62.9966 -0.00769016
+MUSETT_T2_DSSD_Y11_E 62.575 -0.00763867
+MUSETT_T2_DSSD_Y12_E 62.1312 -0.00758453
+MUSETT_T2_DSSD_Y13_E 62.781800000000004 -0.00766392
+MUSETT_T2_DSSD_Y14_E 62.9937 -0.00768982
+MUSETT_T2_DSSD_Y15_E 63.488800000000005 -0.00775026
+MUSETT_T2_DSSD_Y16_E 61.669599999999996 -0.0075280899999999994
+MUSETT_T2_DSSD_Y17_E 60.961400000000005 -0.0074417400000000005
+MUSETT_T2_DSSD_Y18_E 60.7264 -0.00741301
+MUSETT_T2_DSSD_Y19_E 62.0874 -0.00757914
+MUSETT_T2_DSSD_Y20_E 61.094300000000004 -0.00745789
+MUSETT_T2_DSSD_Y21_E 60.9275 -0.00743756
+MUSETT_T2_DSSD_Y22_E 62.1491 -0.00758664
+MUSETT_T2_DSSD_Y23_E 61.087900000000005 -0.00745714
+MUSETT_T2_DSSD_Y24_E 61.0724 -0.00745528
+MUSETT_T2_DSSD_Y25_E 61.6042 -0.0075201700000000005
+MUSETT_T2_DSSD_Y26_E 61.1313 -0.00746243
+MUSETT_T2_DSSD_Y27_E 61.442 -0.00750039
+MUSETT_T2_DSSD_Y28_E 61.55 -0.00751354
+MUSETT_T2_DSSD_Y29_E 61.5135 -0.00750906
+MUSETT_T2_DSSD_Y30_E 61.3444 -0.00748846
+MUSETT_T2_DSSD_Y31_E 61.7721 -0.00754065
+MUSETT_T2_DSSD_Y32_E 56.3053 -0.00687326
+MUSETT_T2_DSSD_Y33_E 56.4975 -0.00689675
+MUSETT_T2_DSSD_Y34_E 56.8346 -0.00693796
+MUSETT_T2_DSSD_Y35_E 56.7034 -0.00692192
+MUSETT_T2_DSSD_Y36_E 56.977 -0.0069553
+MUSETT_T2_DSSD_Y37_E 56.8891 -0.00694457
+MUSETT_T2_DSSD_Y38_E 56.450300000000006 -0.0068909900000000005
+MUSETT_T2_DSSD_Y39_E 56.4039 -0.006885329999999999
+MUSETT_T2_DSSD_Y40_E 56.2056 -0.00686116
+MUSETT_T2_DSSD_Y41_E 58.1252 -0.0070954600000000005
+MUSETT_T2_DSSD_Y42_E 56.7624 -0.00692908
+MUSETT_T2_DSSD_Y43_E 56.2999 -0.006872690000000001
+MUSETT_T2_DSSD_Y44_E 57.261300000000006 -0.00698997
+MUSETT_T2_DSSD_Y45_E 57.2476 -0.00698834
+MUSETT_T2_DSSD_Y46_E 57.0309 -0.00696185
+MUSETT_T2_DSSD_Y47_E 56.7446 -0.006926949999999999
+MUSETT_T2_DSSD_Y48_E 57.601800000000004 -0.007031620000000001
+MUSETT_T2_DSSD_Y49_E 57.0171 -0.00696022
+MUSETT_T2_DSSD_Y50_E 57.9334 -0.00707206
+MUSETT_T2_DSSD_Y51_E 57.4264 -0.00701017
+MUSETT_T2_DSSD_Y52_E 57.2978 -0.00699446
+MUSETT_T2_DSSD_Y53_E 58.6368 -0.00715795
+MUSETT_T2_DSSD_Y54_E 57.7444 -0.007049000000000001
+MUSETT_T2_DSSD_Y55_E 57.8392 -0.00706057
+MUSETT_T2_DSSD_Y56_E 57.708800000000004 -0.0070446499999999995
+MUSETT_T2_DSSD_Y57_E 57.5585 -0.00702632
+MUSETT_T2_DSSD_Y58_E 57.4748 -0.00701608
+MUSETT_T2_DSSD_Y59_E 58.2609 -0.00711207
+MUSETT_T2_DSSD_Y60_E 57.892199999999995 -0.00706703
+MUSETT_T2_DSSD_Y61_E 57.33 -0.00699845
+MUSETT_T2_DSSD_Y62_E 57.835699999999996 -0.00706015
+MUSETT_T2_DSSD_Y63_E 58.1845 -0.00710268
+MUSETT_T2_DSSD_Y64_E 59.348099999999995 -0.007244830000000001
+MUSETT_T2_DSSD_Y65_E 59.6057 -0.00727624
+MUSETT_T2_DSSD_Y66_E 59.4559 -0.00725797
+MUSETT_T2_DSSD_Y67_E 60.4295 -0.0073767500000000005
+MUSETT_T2_DSSD_Y68_E 59.568599999999996 -0.00727167
+MUSETT_T2_DSSD_Y69_E 59.821400000000004 -0.00730253
+MUSETT_T2_DSSD_Y70_E 59.558 -0.00727041
+MUSETT_T2_DSSD_Y71_E 59.8926 -0.0073113
+MUSETT_T2_DSSD_Y72_E 59.8765 -0.007309230000000001
+MUSETT_T2_DSSD_Y73_E 59.5571 -0.0072702999999999995
+MUSETT_T2_DSSD_Y74_E 59.902699999999996 -0.0073124900000000005
+MUSETT_T2_DSSD_Y75_E 60.0592 -0.00733158
+MUSETT_T2_DSSD_Y76_E 59.3142 -0.0072406499999999995
+MUSETT_T2_DSSD_Y77_E 59.977199999999996 -0.00732152
+MUSETT_T2_DSSD_Y78_E 59.375699999999995 -0.00724812
+MUSETT_T2_DSSD_Y79_E 60.1625 -0.00734418
+MUSETT_T2_DSSD_Y80_E 60.553599999999996 -0.0073919699999999994
+MUSETT_T2_DSSD_Y81_E 61.2375 -0.00747541
+MUSETT_T2_DSSD_Y82_E 60.562599999999996 -0.00739303
+MUSETT_T2_DSSD_Y83_E 61.2245 -0.00747385
+MUSETT_T2_DSSD_Y84_E 61.126400000000004 -0.00746188
+MUSETT_T2_DSSD_Y85_E 60.9095 -0.0074354
+MUSETT_T2_DSSD_Y86_E 60.9575 -0.00744128
+MUSETT_T2_DSSD_Y87_E 61.286199999999994 -0.00748137
+MUSETT_T2_DSSD_Y88_E 60.884699999999995 -0.007432299999999999
+MUSETT_T2_DSSD_Y89_E 60.871 -0.007430679999999999
+MUSETT_T2_DSSD_Y90_E 61.4437 -0.00750059
+MUSETT_T2_DSSD_Y91_E 60.6586 -0.00740476
+MUSETT_T2_DSSD_Y92_E 61.0976 -0.00745829
+MUSETT_T2_DSSD_Y93_E 60.6141 -0.00739932
+MUSETT_T2_DSSD_Y94_E 61.0445 -0.00745181
+MUSETT_T2_DSSD_Y95_E 61.4704 -0.00750378
+MUSETT_T2_DSSD_Y96_E 56.8785 -0.00694331
+MUSETT_T2_DSSD_Y97_E 55.9619 -0.006831380000000001
+MUSETT_T2_DSSD_Y98_E 56.2188 -0.00686276
+MUSETT_T2_DSSD_Y99_E 56.6425 -0.00691453
+MUSETT_T2_DSSD_Y100_E 56.348 -0.00687854
+MUSETT_T2_DSSD_Y101_E 56.7474 -0.0069273
+MUSETT_T2_DSSD_Y102_E 55.9048 -0.00682446
+MUSETT_T2_DSSD_Y103_E 57.240300000000005 -0.00698747
+MUSETT_T2_DSSD_Y104_E 56.0874 -0.006846720000000001
+MUSETT_T2_DSSD_Y105_E 56.732099999999996 -0.0069254600000000005
+MUSETT_T2_DSSD_Y106_E 56.6237 -0.00691218
+MUSETT_T2_DSSD_Y107_E 57.520300000000006 -0.00702164
+MUSETT_T2_DSSD_Y108_E 57.0144 -0.0069599
+MUSETT_T2_DSSD_Y109_E 56.700300000000006 -0.00692155
+MUSETT_T2_DSSD_Y110_E 57.019800000000004 -0.006960549999999999
+MUSETT_T2_DSSD_Y111_E 56.158699999999996 -0.00685546
+MUSETT_T2_DSSD_Y112_E 56.4865 -0.00689543
+MUSETT_T2_DSSD_Y113_E 57.289300000000004 -0.00699345
+MUSETT_T2_DSSD_Y114_E 56.5979 -0.00690909
+MUSETT_T2_DSSD_Y115_E 56.8241 -0.00693669
+MUSETT_T2_DSSD_Y116_E 56.51 -0.00689835
+MUSETT_T2_DSSD_Y117_E 56.5638 -0.00690489
+MUSETT_T2_DSSD_Y118_E 56.834900000000005 -0.00693798
+MUSETT_T2_DSSD_Y119_E 56.738099999999996 -0.0069261999999999995
+MUSETT_T2_DSSD_Y120_E 56.3376 -0.00687729
+MUSETT_T2_DSSD_Y121_E 57.0592 -0.00696537
+MUSETT_T2_DSSD_Y122_E 57.4198 -0.007009400000000001
+MUSETT_T2_DSSD_Y123_E -10.0 0.0
+MUSETT_T2_DSSD_Y124_E 56.2087 -0.00686156
+MUSETT_T2_DSSD_Y125_E 56.914199999999994 -0.0069477
+MUSETT_T2_DSSD_Y126_E 56.3399 -0.00687758
+MUSETT_T2_DSSD_Y127_E 56.1682 -0.0068566
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..075f01a142f12c51a5678d211882fc38144d98b9
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_T 937.964 -0.113282
+MUSETT_T2_DSSD_X1_T 934.802 -0.112935
+MUSETT_T2_DSSD_X2_T 942.616 -0.113903
+MUSETT_T2_DSSD_X3_T 955.004 -0.11541
+MUSETT_T2_DSSD_X4_T 950.266 -0.114834
+MUSETT_T2_DSSD_X5_T 967.873 -0.116968
+MUSETT_T2_DSSD_X6_T 961.34 -0.116144
+MUSETT_T2_DSSD_X7_T 966.227 -0.116738
+MUSETT_T2_DSSD_X8_T 958.079 -0.115736
+MUSETT_T2_DSSD_X9_T 969.979 -0.117191
+MUSETT_T2_DSSD_X10_T 977.513 -0.117505
+MUSETT_T2_DSSD_X11_T 967.3 -0.116868
+MUSETT_T2_DSSD_X12_T 973.198 -0.117596
+MUSETT_T2_DSSD_X13_T 967.359 -0.116864
+MUSETT_T2_DSSD_X14_T 967.676 -0.116934
+MUSETT_T2_DSSD_X15_T 1368.197 -0.118078
+MUSETT_T2_DSSD_X16_T 919.75 -0.111042
+MUSETT_T2_DSSD_X17_T 934.845 -0.1129
+MUSETT_T2_DSSD_X18_T 937.652 -0.113239
+MUSETT_T2_DSSD_X19_T 936.647 -0.11311
+MUSETT_T2_DSSD_X20_T 947.463 -0.114433
+MUSETT_T2_DSSD_X21_T 947.515 -0.113893
+MUSETT_T2_DSSD_X22_T 945.354 -0.113604
+MUSETT_T2_DSSD_X23_T 949.129 -0.114596
+MUSETT_T2_DSSD_X24_T 940.238 -0.113523
+MUSETT_T2_DSSD_X25_T 948.581 -0.114529
+MUSETT_T2_DSSD_X26_T 949.163 -0.114587
+MUSETT_T2_DSSD_X27_T 945.26 -0.114127
+MUSETT_T2_DSSD_X28_T 952.83 -0.115049
+MUSETT_T2_DSSD_X29_T 949.046 -0.114577
+MUSETT_T2_DSSD_X30_T 950.717 -0.114801
+MUSETT_T2_DSSD_X31_T 1130.766 -0.114725
+MUSETT_T2_DSSD_X32_T 885.102 -0.106884
+MUSETT_T2_DSSD_X33_T 882.432 -0.106588
+MUSETT_T2_DSSD_X34_T 891.72 -0.10771
+MUSETT_T2_DSSD_X35_T 889.058 -0.10739
+MUSETT_T2_DSSD_X36_T 902.436 -0.109058
+MUSETT_T2_DSSD_X37_T 899.526 -0.108685
+MUSETT_T2_DSSD_X38_T 907.458 -0.109605
+MUSETT_T2_DSSD_X39_T 904.064 -0.109211
+MUSETT_T2_DSSD_X40_T 903.964 -0.109168
+MUSETT_T2_DSSD_X41_T 907.259 -0.109617
+MUSETT_T2_DSSD_X42_T 914.019 -0.1104
+MUSETT_T2_DSSD_X43_T 912.823 -0.110254
+MUSETT_T2_DSSD_X44_T 920.768 -0.111219
+MUSETT_T2_DSSD_X45_T 919.333 -0.111043
+MUSETT_T2_DSSD_X46_T 921.925 -0.111378
+MUSETT_T2_DSSD_X47_T 1304.594 -0.11089
+MUSETT_T2_DSSD_X48_T 854.163 -0.102956
+MUSETT_T2_DSSD_X49_T 864.061 -0.104191
+MUSETT_T2_DSSD_X50_T 873.658 -0.105362
+MUSETT_T2_DSSD_X51_T 867.698 -0.10464
+MUSETT_T2_DSSD_X52_T 876.619 -0.105723
+MUSETT_T2_DSSD_X53_T 876.856 -0.105755
+MUSETT_T2_DSSD_X54_T 879.033 -0.105984
+MUSETT_T2_DSSD_X55_T 886.677 -0.106931
+MUSETT_T2_DSSD_X56_T 895.667 -0.108024
+MUSETT_T2_DSSD_X57_T 898.221 -0.108307
+MUSETT_T2_DSSD_X58_T 889.656 -0.107279
+MUSETT_T2_DSSD_X59_T 900.043 -0.108543
+MUSETT_T2_DSSD_X60_T 901.375 -0.108721
+MUSETT_T2_DSSD_X61_T 900.963 -0.108665
+MUSETT_T2_DSSD_X62_T 897.506 -0.10824
+MUSETT_T2_DSSD_X63_T 1288.067 -0.107885
+MUSETT_T2_DSSD_X64_T 970.625 -0.117533
+MUSETT_T2_DSSD_X65_T 970.595 -0.117545
+MUSETT_T2_DSSD_X66_T 982.177 -0.118957
+MUSETT_T2_DSSD_X67_T 987.216 -0.119584
+MUSETT_T2_DSSD_X68_T 450.0 -0.119902
+MUSETT_T2_DSSD_X69_T 990.894 -0.12002
+MUSETT_T2_DSSD_X70_T 992.154 -0.120171
+MUSETT_T2_DSSD_X71_T 997.339 -0.120802
+MUSETT_T2_DSSD_X72_T 990.584 -0.119977
+MUSETT_T2_DSSD_X73_T 999.436 -0.12102
+MUSETT_T2_DSSD_X74_T 995.246 -0.12055
+MUSETT_T2_DSSD_X75_T 994.968 -0.12048
+MUSETT_T2_DSSD_X76_T 1004.63 -0.121688
+MUSETT_T2_DSSD_X77_T 1008.287 -0.122136
+MUSETT_T2_DSSD_X78_T 1011.093 -0.122472
+MUSETT_T2_DSSD_X79_T 1313.045 -0.121488
+MUSETT_T2_DSSD_X80_T 951.945 -0.115148
+MUSETT_T2_DSSD_X81_T 962.843 -0.116512
+MUSETT_T2_DSSD_X82_T 964.811 -0.116735
+MUSETT_T2_DSSD_X83_T 968.199 -0.117158
+MUSETT_T2_DSSD_X84_T 968.188 -0.117159
+MUSETT_T2_DSSD_X85_T 969.593 -0.117336
+MUSETT_T2_DSSD_X86_T 983.185 -0.118997
+MUSETT_T2_DSSD_X87_T 982.502 -0.118879
+MUSETT_T2_DSSD_X88_T 992.909 -0.120152
+MUSETT_T2_DSSD_X89_T 992.748 -0.120143
+MUSETT_T2_DSSD_X90_T 991.638 -0.120011
+MUSETT_T2_DSSD_X91_T 982.075 -0.118788
+MUSETT_T2_DSSD_X92_T 996.694 -0.120614
+MUSETT_T2_DSSD_X93_T 1000.609 -0.12112
+MUSETT_T2_DSSD_X94_T 1001.537 -0.12123
+MUSETT_T2_DSSD_X95_T 986.471 -0.119394
+MUSETT_T2_DSSD_X96_T 899.901 -0.10895
+MUSETT_T2_DSSD_X97_T 916.701 -0.11099
+MUSETT_T2_DSSD_X98_T 912.456 -0.110483
+MUSETT_T2_DSSD_X99_T 912.701 -0.110494
+MUSETT_T2_DSSD_X100_T 921.872 -0.11163
+MUSETT_T2_DSSD_X101_T 921.335 -0.111573
+MUSETT_T2_DSSD_X102_T 919.772 -0.111368
+MUSETT_T2_DSSD_X103_T 924.049 -0.111888
+MUSETT_T2_DSSD_X104_T 934.177 -0.113122
+MUSETT_T2_DSSD_X105_T 931.202 -0.112764
+MUSETT_T2_DSSD_X106_T 936.118 -0.113373
+MUSETT_T2_DSSD_X107_T 931.356 -0.112797
+MUSETT_T2_DSSD_X108_T 934.62 -0.113176
+MUSETT_T2_DSSD_X109_T 941.116 -0.113973
+MUSETT_T2_DSSD_X110_T 941.858 -0.114066
+MUSETT_T2_DSSD_X111_T 941.193 -0.113973
+MUSETT_T2_DSSD_X112_T 901.356 -0.108961
+MUSETT_T2_DSSD_X113_T 905.904 -0.109531
+MUSETT_T2_DSSD_X114_T 913.578 -0.110461
+MUSETT_T2_DSSD_X115_T 913.318 -0.110414
+MUSETT_T2_DSSD_X116_T 928.72 -0.112323
+MUSETT_T2_DSSD_X117_T 931.683 -0.11267
+MUSETT_T2_DSSD_X118_T 937.114 -0.113333
+MUSETT_T2_DSSD_X119_T 940.124 -0.113698
+MUSETT_T2_DSSD_X120_T 939.916 -0.113666
+MUSETT_T2_DSSD_X121_T 948.657 -0.114745
+MUSETT_T2_DSSD_X122_T 939.964 -0.113673
+MUSETT_T2_DSSD_X123_T 946.195 -0.11443
+MUSETT_T2_DSSD_X124_T 935.769 -0.113174
+MUSETT_T2_DSSD_X125_T 935.549 -0.113143
+MUSETT_T2_DSSD_X126_T 944.149 -0.114176
+MUSETT_T2_DSSD_X127_T 944.397 -0.114186
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..ff8b414dff7cd96b197c045d670dd45b19ff310a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_T 988.419 -0.119525
+MUSETT_T2_DSSD_Y1_T 991.309 -0.119903
+MUSETT_T2_DSSD_Y2_T 990.03 -0.119776
+MUSETT_T2_DSSD_Y3_T 996.324 -0.120524
+MUSETT_T2_DSSD_Y4_T 1001.697 -0.121165
+MUSETT_T2_DSSD_Y5_T 999.789 -0.120947
+MUSETT_T2_DSSD_Y6_T 1004.703 -0.121526
+MUSETT_T2_DSSD_Y7_T 1011.722 -0.122366
+MUSETT_T2_DSSD_Y8_T 1013.114 -0.122539
+MUSETT_T2_DSSD_Y9_T 1004.782 -0.121307
+MUSETT_T2_DSSD_Y10_T 1011.11 -0.122275
+MUSETT_T2_DSSD_Y11_T 1016.173 -0.122898
+MUSETT_T2_DSSD_Y12_T 1018.106 -0.12312
+MUSETT_T2_DSSD_Y13_T 1023.198 -0.123746
+MUSETT_T2_DSSD_Y14_T 1022.258 -0.123621
+MUSETT_T2_DSSD_Y15_T 1023.505 -0.123744
+MUSETT_T2_DSSD_Y16_T 940.868 -0.113632
+MUSETT_T2_DSSD_Y17_T 940.208 -0.11359
+MUSETT_T2_DSSD_Y18_T 939.802 -0.113546
+MUSETT_T2_DSSD_Y19_T 939.415 -0.113526
+MUSETT_T2_DSSD_Y20_T 954.508 -0.115367
+MUSETT_T2_DSSD_Y21_T 970.22 -0.117305
+MUSETT_T2_DSSD_Y22_T 966.365 -0.11682
+MUSETT_T2_DSSD_Y23_T 961.254 -0.116216
+MUSETT_T2_DSSD_Y24_T 976.91 -0.118134
+MUSETT_T2_DSSD_Y25_T 979.589 -0.118446
+MUSETT_T2_DSSD_Y26_T 976.797 -0.117858
+MUSETT_T2_DSSD_Y27_T 983.447 -0.11895
+MUSETT_T2_DSSD_Y28_T 977.618 -0.118238
+MUSETT_T2_DSSD_Y29_T 979.391 -0.118468
+MUSETT_T2_DSSD_Y30_T 978.252 -0.118337
+MUSETT_T2_DSSD_Y31_T 966.295 -0.116905
+MUSETT_T2_DSSD_Y32_T 870.957 -0.105393
+MUSETT_T2_DSSD_Y33_T 877.667 -0.106206
+MUSETT_T2_DSSD_Y34_T 890.089 -0.107711
+MUSETT_T2_DSSD_Y35_T 891.541 -0.10786
+MUSETT_T2_DSSD_Y36_T 894.923 -0.108297
+MUSETT_T2_DSSD_Y37_T 889.591 -0.107628
+MUSETT_T2_DSSD_Y38_T 905.752 -0.109574
+MUSETT_T2_DSSD_Y39_T 904.406 -0.109401
+MUSETT_T2_DSSD_Y40_T 907.053 -0.109756
+MUSETT_T2_DSSD_Y41_T 911.851 -0.110304
+MUSETT_T2_DSSD_Y42_T 907.651 -0.10979
+MUSETT_T2_DSSD_Y43_T 911.108 -0.110231
+MUSETT_T2_DSSD_Y44_T 913.761 -0.110532
+MUSETT_T2_DSSD_Y45_T 916.948 -0.110907
+MUSETT_T2_DSSD_Y46_T 920.785 -0.111371
+MUSETT_T2_DSSD_Y47_T 915.98 -0.110791
+MUSETT_T2_DSSD_Y48_T 894.218 -0.108016
+MUSETT_T2_DSSD_Y49_T 903.46 -0.109155
+MUSETT_T2_DSSD_Y50_T 900.687 -0.108834
+MUSETT_T2_DSSD_Y51_T 914.194 -0.110471
+MUSETT_T2_DSSD_Y52_T 906.942 -0.109622
+MUSETT_T2_DSSD_Y53_T 915.734 -0.110708
+MUSETT_T2_DSSD_Y54_T 919.347 -0.111116
+MUSETT_T2_DSSD_Y55_T 914.796 -0.11061
+MUSETT_T2_DSSD_Y56_T 927.679 -0.11216
+MUSETT_T2_DSSD_Y57_T 918.908 -0.111079
+MUSETT_T2_DSSD_Y58_T 921.274 -0.111393
+MUSETT_T2_DSSD_Y59_T 925.153 -0.11168
+MUSETT_T2_DSSD_Y60_T 941.38 -0.11386
+MUSETT_T2_DSSD_Y61_T 926.865 -0.112068
+MUSETT_T2_DSSD_Y62_T 922.781 -0.111623
+MUSETT_T2_DSSD_Y63_T 930.67 -0.112593
+MUSETT_T2_DSSD_Y64_T 925.368 -0.111864
+MUSETT_T2_DSSD_Y65_T 944.623 -0.114242
+MUSETT_T2_DSSD_Y66_T 948.999 -0.114763
+MUSETT_T2_DSSD_Y67_T 946.624 -0.114477
+MUSETT_T2_DSSD_Y68_T 973.069 -0.117701
+MUSETT_T2_DSSD_Y69_T 961.117 -0.116242
+MUSETT_T2_DSSD_Y70_T 968.585 -0.117144
+MUSETT_T2_DSSD_Y71_T 965.491 -0.116783
+MUSETT_T2_DSSD_Y72_T 956.995 -0.115747
+MUSETT_T2_DSSD_Y73_T 959.056 -0.115989
+MUSETT_T2_DSSD_Y74_T 965.378 -0.116762
+MUSETT_T2_DSSD_Y75_T 978.201 -0.118324
+MUSETT_T2_DSSD_Y76_T 974.601 -0.117892
+MUSETT_T2_DSSD_Y77_T 977.184 -0.118194
+MUSETT_T2_DSSD_Y78_T 967.932 -0.117092
+MUSETT_T2_DSSD_Y79_T 969.982 -0.117343
+MUSETT_T2_DSSD_Y80_T 945.503 -0.114246
+MUSETT_T2_DSSD_Y81_T 940.008 -0.113582
+MUSETT_T2_DSSD_Y82_T 952.084 -0.115097
+MUSETT_T2_DSSD_Y83_T 947.747 -0.114574
+MUSETT_T2_DSSD_Y84_T 956.608 -0.115653
+MUSETT_T2_DSSD_Y85_T 966.982 -0.11692
+MUSETT_T2_DSSD_Y86_T 965.2 -0.116695
+MUSETT_T2_DSSD_Y87_T 970.896 -0.117388
+MUSETT_T2_DSSD_Y88_T 973.644 -0.117739
+MUSETT_T2_DSSD_Y89_T 975.622 -0.11797
+MUSETT_T2_DSSD_Y90_T 980.078 -0.118525
+MUSETT_T2_DSSD_Y91_T 970.722 -0.117371
+MUSETT_T2_DSSD_Y92_T 978.458 -0.118331
+MUSETT_T2_DSSD_Y93_T 978.121 -0.118283
+MUSETT_T2_DSSD_Y94_T 985.632 -0.119174
+MUSETT_T2_DSSD_Y95_T 990.218 -0.119806
+MUSETT_T2_DSSD_Y96_T 898.57 -0.108639
+MUSETT_T2_DSSD_Y97_T 894.551 -0.108189
+MUSETT_T2_DSSD_Y98_T 905.095 -0.109474
+MUSETT_T2_DSSD_Y99_T 903.758 -0.109308
+MUSETT_T2_DSSD_Y100_T 917.519 -0.110997
+MUSETT_T2_DSSD_Y101_T 925.257 -0.111938
+MUSETT_T2_DSSD_Y102_T 915.614 -0.110746
+MUSETT_T2_DSSD_Y103_T 931.547 -0.112691
+MUSETT_T2_DSSD_Y104_T 926.069 -0.112025
+MUSETT_T2_DSSD_Y105_T 921.881 -0.111507
+MUSETT_T2_DSSD_Y106_T 923.086 -0.111663
+MUSETT_T2_DSSD_Y107_T 922.824 -0.111623
+MUSETT_T2_DSSD_Y108_T 926.335 -0.112066
+MUSETT_T2_DSSD_Y109_T 927.082 -0.11214
+MUSETT_T2_DSSD_Y110_T 923.411 -0.111703
+MUSETT_T2_DSSD_Y111_T 913.854 -0.110525
+MUSETT_T2_DSSD_Y112_T 853.851 -0.102981
+MUSETT_T2_DSSD_Y113_T 869.801 -0.104976
+MUSETT_T2_DSSD_Y114_T 877.724 -0.105936
+MUSETT_T2_DSSD_Y115_T 876.167 -0.10575
+MUSETT_T2_DSSD_Y116_T 884.266 -0.106741
+MUSETT_T2_DSSD_Y117_T 880.545 -0.10628
+MUSETT_T2_DSSD_Y118_T 893.039 -0.107805
+MUSETT_T2_DSSD_Y119_T 894.497 -0.107966
+MUSETT_T2_DSSD_Y120_T 884.424 -0.106759
+MUSETT_T2_DSSD_Y121_T 897.829 -0.108381
+MUSETT_T2_DSSD_Y122_T 896.269 -0.108195
+MUSETT_T2_DSSD_Y123_T 450.0 -0.108195
+MUSETT_T2_DSSD_Y124_T 898.903 -0.108519
+MUSETT_T2_DSSD_Y125_T 899.839 -0.10863
+MUSETT_T2_DSSD_Y126_T 900.97 -0.108768
+MUSETT_T2_DSSD_Y127_T 897.094 -0.108297
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..36cee699c7a580265f9b036820552f9932026657
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E -62.298199999999994 0.007604720000000001
+MUSETT_T3_DSSD_X1_E -61.861599999999996 0.00755141
+MUSETT_T3_DSSD_X2_E -62.1569 0.00758753
+MUSETT_T3_DSSD_X3_E -62.2596 0.00760006
+MUSETT_T3_DSSD_X4_E -61.881699999999995 0.0075539100000000005
+MUSETT_T3_DSSD_X5_E -61.8174 0.0075460399999999995
+MUSETT_T3_DSSD_X6_E -62.0389 0.007573089999999999
+MUSETT_T3_DSSD_X7_E -61.5586 0.00751446
+MUSETT_T3_DSSD_X8_E -61.705 0.00753228
+MUSETT_T3_DSSD_X9_E -61.812 0.007545359999999999
+MUSETT_T3_DSSD_X10_E -61.801300000000005 0.007544019999999999
+MUSETT_T3_DSSD_X11_E -62.828 0.00766936
+MUSETT_T3_DSSD_X12_E -61.5993 0.00751937
+MUSETT_T3_DSSD_X13_E -61.7577 0.00753873
+MUSETT_T3_DSSD_X14_E -61.494699999999995 0.0075066199999999994
+MUSETT_T3_DSSD_X15_E -62.5182 0.00763157
+MUSETT_T3_DSSD_X16_E -63.590900000000005 0.00776244
+MUSETT_T3_DSSD_X17_E -63.0171 0.007692490000000001
+MUSETT_T3_DSSD_X18_E -62.878699999999995 0.00767552
+MUSETT_T3_DSSD_X19_E -62.791 0.00766488
+MUSETT_T3_DSSD_X20_E -62.5592 0.00763654
+MUSETT_T3_DSSD_X21_E -63.1133 0.0077042099999999995
+MUSETT_T3_DSSD_X22_E -63.6998 0.00777586
+MUSETT_T3_DSSD_X23_E -63.781099999999995 0.0077857
+MUSETT_T3_DSSD_X24_E -62.7205 0.007656240000000001
+MUSETT_T3_DSSD_X25_E -63.4567 0.0077461399999999994
+MUSETT_T3_DSSD_X26_E -63.4691 0.007747690000000001
+MUSETT_T3_DSSD_X27_E -63.2955 0.00772649
+MUSETT_T3_DSSD_X28_E -63.5076 0.00775235
+MUSETT_T3_DSSD_X29_E -63.5629 0.0077591
+MUSETT_T3_DSSD_X30_E -64.4644 0.00786912
+MUSETT_T3_DSSD_X31_E -63.6907 0.00777475
+MUSETT_T3_DSSD_X32_E -59.3003 0.0072388899999999996
+MUSETT_T3_DSSD_X33_E -59.122800000000005 0.0072171200000000005
+MUSETT_T3_DSSD_X34_E -58.098 0.00709209
+MUSETT_T3_DSSD_X35_E -58.3114 0.00711809
+MUSETT_T3_DSSD_X36_E -58.7781 0.007175010000000001
+MUSETT_T3_DSSD_X37_E -58.990300000000005 0.00720099
+MUSETT_T3_DSSD_X38_E -59.2329 0.0072305799999999995
+MUSETT_T3_DSSD_X39_E -58.6159 0.00715528
+MUSETT_T3_DSSD_X40_E -59.221599999999995 0.00722918
+MUSETT_T3_DSSD_X41_E -58.8815 0.007187649999999999
+MUSETT_T3_DSSD_X42_E -58.9773 0.00719934
+MUSETT_T3_DSSD_X43_E -10.0 0.0
+MUSETT_T3_DSSD_X44_E -58.9833 0.00720009
+MUSETT_T3_DSSD_X45_E -59.359300000000005 0.00724594
+MUSETT_T3_DSSD_X46_E -58.7775 0.0071749299999999995
+MUSETT_T3_DSSD_X47_E -59.126 0.00721749
+MUSETT_T3_DSSD_X48_E -57.3041 0.00699513
+MUSETT_T3_DSSD_X49_E -57.151199999999996 0.00697642
+MUSETT_T3_DSSD_X50_E -56.849199999999996 0.00693961
+MUSETT_T3_DSSD_X51_E -57.2057 0.00698311
+MUSETT_T3_DSSD_X52_E -56.8352 0.00693786
+MUSETT_T3_DSSD_X53_E -57.3401 0.00699951
+MUSETT_T3_DSSD_X54_E -56.5908 0.0069080899999999995
+MUSETT_T3_DSSD_X55_E -57.2623 0.00699005
+MUSETT_T3_DSSD_X56_E -57.574400000000004 0.0070281200000000005
+MUSETT_T3_DSSD_X57_E -56.496900000000004 0.00689662
+MUSETT_T3_DSSD_X58_E -57.4715 0.00701554
+MUSETT_T3_DSSD_X59_E -57.0619 0.00696556
+MUSETT_T3_DSSD_X60_E -56.3165 0.006874590000000001
+MUSETT_T3_DSSD_X61_E -56.8499 0.0069397
+MUSETT_T3_DSSD_X62_E -56.7607 0.00692884
+MUSETT_T3_DSSD_X63_E -56.499300000000005 0.006896950000000001
+MUSETT_T3_DSSD_X64_E -64.1702 0.00783318
+MUSETT_T3_DSSD_X65_E -63.8415 0.00779309
+MUSETT_T3_DSSD_X66_E -63.555699999999995 0.00775819
+MUSETT_T3_DSSD_X67_E -63.7677 0.00778403
+MUSETT_T3_DSSD_X68_E -63.6042 0.00776408
+MUSETT_T3_DSSD_X69_E -63.26 0.00772205
+MUSETT_T3_DSSD_X70_E -64.3055 0.00784974
+MUSETT_T3_DSSD_X71_E -62.501599999999996 0.0076295
+MUSETT_T3_DSSD_X72_E -62.6625 0.0076491400000000005
+MUSETT_T3_DSSD_X73_E -63.0105 0.00769167
+MUSETT_T3_DSSD_X74_E -63.1484 0.0077084200000000005
+MUSETT_T3_DSSD_X75_E -63.3793 0.00773664
+MUSETT_T3_DSSD_X76_E -64.06869999999999 0.007820820000000001
+MUSETT_T3_DSSD_X77_E -62.4702 0.00762573
+MUSETT_T3_DSSD_X78_E -62.5574 0.00763631
+MUSETT_T3_DSSD_X79_E -63.009699999999995 0.00769157
+MUSETT_T3_DSSD_X80_E -62.457800000000006 0.00762418
+MUSETT_T3_DSSD_X81_E -62.7791 0.00766339
+MUSETT_T3_DSSD_X82_E -62.621 0.007644110000000001
+MUSETT_T3_DSSD_X83_E -62.5784 0.0076389399999999994
+MUSETT_T3_DSSD_X84_E -62.005900000000004 0.00756897
+MUSETT_T3_DSSD_X85_E -62.4575 0.00762414
+MUSETT_T3_DSSD_X86_E -62.4031 0.00761752
+MUSETT_T3_DSSD_X87_E -62.1713 0.00758918
+MUSETT_T3_DSSD_X88_E -62.335300000000004 0.0076092
+MUSETT_T3_DSSD_X89_E -62.7474 0.0076596
+MUSETT_T3_DSSD_X90_E -62.3396 0.00760973
+MUSETT_T3_DSSD_X91_E -62.021300000000004 0.00757089
+MUSETT_T3_DSSD_X92_E -62.8345 0.00767017
+MUSETT_T3_DSSD_X93_E -62.5608 0.00763673
+MUSETT_T3_DSSD_X94_E -62.1409 0.00758552
+MUSETT_T3_DSSD_X95_E -62.3587 0.00761211
+MUSETT_T3_DSSD_X96_E -56.1256 0.00685121
+MUSETT_T3_DSSD_X97_E -55.9505 0.0068298199999999995
+MUSETT_T3_DSSD_X98_E -55.1796 0.00673572
+MUSETT_T3_DSSD_X99_E -55.7828 0.0068094
+MUSETT_T3_DSSD_X100_E -55.9559 0.0068305
+MUSETT_T3_DSSD_X101_E -55.934400000000004 0.00682783
+MUSETT_T3_DSSD_X102_E -55.9745 0.0068327200000000005
+MUSETT_T3_DSSD_X103_E -55.2549 0.00674491
+MUSETT_T3_DSSD_X104_E -55.4875 0.00677335
+MUSETT_T3_DSSD_X105_E -55.9893 0.00683453
+MUSETT_T3_DSSD_X106_E -55.8236 0.00681435
+MUSETT_T3_DSSD_X107_E -55.6815 0.0067969499999999995
+MUSETT_T3_DSSD_X108_E -56.7434 0.00692662
+MUSETT_T3_DSSD_X109_E -56.3005 0.00687254
+MUSETT_T3_DSSD_X110_E -55.822300000000006 0.00681419
+MUSETT_T3_DSSD_X111_E -55.6951 0.006798670000000001
+MUSETT_T3_DSSD_X112_E -57.5622 0.00702657
+MUSETT_T3_DSSD_X113_E -57.0135 0.0069596
+MUSETT_T3_DSSD_X114_E -57.5211 0.00702156
+MUSETT_T3_DSSD_X115_E -56.981 0.00695566
+MUSETT_T3_DSSD_X116_E -57.9725 0.00707666
+MUSETT_T3_DSSD_X117_E -57.2339 0.006986480000000001
+MUSETT_T3_DSSD_X118_E -57.4342 0.00701098
+MUSETT_T3_DSSD_X119_E -56.2134 0.0068619300000000005
+MUSETT_T3_DSSD_X120_E -56.7474 0.00692711
+MUSETT_T3_DSSD_X121_E -57.8891 0.0070665
+MUSETT_T3_DSSD_X122_E -57.5049 0.007019549999999999
+MUSETT_T3_DSSD_X123_E -57.096599999999995 0.00696973
+MUSETT_T3_DSSD_X124_E -57.651 0.0070374
+MUSETT_T3_DSSD_X125_E -56.7164 0.00692338
+MUSETT_T3_DSSD_X126_E -57.789699999999996 0.00705434
+MUSETT_T3_DSSD_X127_E -56.522 0.00689959
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e07fba05cb0d81bc362f99fb65163dd1f9bcd9aa
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_E 60.097199999999994 -0.00733611
+MUSETT_T3_DSSD_Y1_E 58.987 -0.00720065
+MUSETT_T3_DSSD_Y2_E 60.08 -0.00733404
+MUSETT_T3_DSSD_Y3_E 59.9365 -0.007316499999999999
+MUSETT_T3_DSSD_Y4_E 59.7695 -0.00729617
+MUSETT_T3_DSSD_Y5_E 59.8746 -0.00730898
+MUSETT_T3_DSSD_Y6_E 59.7753 -0.00729686
+MUSETT_T3_DSSD_Y7_E 60.1862 -0.007347
+MUSETT_T3_DSSD_Y8_E 60.4958 -0.00738477
+MUSETT_T3_DSSD_Y9_E 60.4393 -0.00737789
+MUSETT_T3_DSSD_Y10_E 60.1456 -0.00734201
+MUSETT_T3_DSSD_Y11_E 59.7911 -0.00729875
+MUSETT_T3_DSSD_Y12_E 59.6773 -0.0072848800000000005
+MUSETT_T3_DSSD_Y13_E 59.5835 -0.00727344
+MUSETT_T3_DSSD_Y14_E 60.5331 -0.00738936
+MUSETT_T3_DSSD_Y15_E 59.7249 -0.00729071
+MUSETT_T3_DSSD_Y16_E 62.9214 -0.00768089
+MUSETT_T3_DSSD_Y17_E 63.205400000000004 -0.00771552
+MUSETT_T3_DSSD_Y18_E 62.2674 -0.00760105
+MUSETT_T3_DSSD_Y19_E 62.6967 -0.007653470000000001
+MUSETT_T3_DSSD_Y20_E 63.193 -0.00771405
+MUSETT_T3_DSSD_Y21_E 63.5336 -0.00775561
+MUSETT_T3_DSSD_Y22_E 62.9808 -0.00768812
+MUSETT_T3_DSSD_Y23_E 62.964 -0.007686119999999999
+MUSETT_T3_DSSD_Y24_E 63.469300000000004 -0.00774779
+MUSETT_T3_DSSD_Y25_E 63.461 -0.00774678
+MUSETT_T3_DSSD_Y26_E 62.6 -0.00764164
+MUSETT_T3_DSSD_Y27_E 63.414 -0.0077410199999999995
+MUSETT_T3_DSSD_Y28_E 62.4672 -0.00762548
+MUSETT_T3_DSSD_Y29_E 62.971599999999995 -0.00768703
+MUSETT_T3_DSSD_Y30_E 63.0667 -0.0076986699999999995
+MUSETT_T3_DSSD_Y31_E 62.9483 -0.00768424
+MUSETT_T3_DSSD_Y32_E 56.0911 -0.00684714
+MUSETT_T3_DSSD_Y33_E 56.1939 -0.00685965
+MUSETT_T3_DSSD_Y34_E 55.8251 -0.0068147
+MUSETT_T3_DSSD_Y35_E 55.6744 -0.00679624
+MUSETT_T3_DSSD_Y36_E 55.7435 -0.00680473
+MUSETT_T3_DSSD_Y37_E 56.2304 -0.00686412
+MUSETT_T3_DSSD_Y38_E 55.9267 -0.0068270499999999994
+MUSETT_T3_DSSD_Y39_E 55.575199999999995 -0.00678415
+MUSETT_T3_DSSD_Y40_E 55.4219 -0.00676539
+MUSETT_T3_DSSD_Y41_E 56.1854 -0.00685863
+MUSETT_T3_DSSD_Y42_E 56.0069 -0.006836859999999999
+MUSETT_T3_DSSD_Y43_E 55.331199999999995 -0.00675434
+MUSETT_T3_DSSD_Y44_E 55.7624 -0.00680697
+MUSETT_T3_DSSD_Y45_E 55.6164 -0.0067892099999999995
+MUSETT_T3_DSSD_Y46_E 55.888 -0.006822320000000001
+MUSETT_T3_DSSD_Y47_E 55.807900000000004 -0.00681252
+MUSETT_T3_DSSD_Y48_E 56.633199999999995 -0.0069133
+MUSETT_T3_DSSD_Y49_E 56.902300000000004 -0.00694613
+MUSETT_T3_DSSD_Y50_E 57.1285 -0.00697375
+MUSETT_T3_DSSD_Y51_E 56.942800000000005 -0.00695109
+MUSETT_T3_DSSD_Y52_E 56.488800000000005 -0.00689569
+MUSETT_T3_DSSD_Y53_E 56.9381 -0.00695052
+MUSETT_T3_DSSD_Y54_E 56.6308 -0.00691301
+MUSETT_T3_DSSD_Y55_E 57.0191 -0.00696044
+MUSETT_T3_DSSD_Y56_E 57.0456 -0.0069635899999999995
+MUSETT_T3_DSSD_Y57_E 56.6141 -0.0069110199999999995
+MUSETT_T3_DSSD_Y58_E 57.4998 -0.00701906
+MUSETT_T3_DSSD_Y59_E 57.046800000000005 -0.00696375
+MUSETT_T3_DSSD_Y60_E 57.594 -0.00703054
+MUSETT_T3_DSSD_Y61_E 57.0305 -0.00696179
+MUSETT_T3_DSSD_Y62_E 56.7624 -0.00692908
+MUSETT_T3_DSSD_Y63_E 57.433699999999995 -0.0070110400000000005
+MUSETT_T3_DSSD_Y64_E 59.389300000000006 -0.007249729999999999
+MUSETT_T3_DSSD_Y65_E 59.9401 -0.00731694
+MUSETT_T3_DSSD_Y66_E 59.5251 -0.00726633
+MUSETT_T3_DSSD_Y67_E 59.3495 -0.00724484
+MUSETT_T3_DSSD_Y68_E 59.4437 -0.00725635
+MUSETT_T3_DSSD_Y69_E 58.7651 -0.00717351
+MUSETT_T3_DSSD_Y70_E 59.2969 -0.00723842
+MUSETT_T3_DSSD_Y71_E 59.9651 -0.00732006
+MUSETT_T3_DSSD_Y72_E 60.172599999999996 -0.00734537
+MUSETT_T3_DSSD_Y73_E 59.4516 -0.0072572999999999995
+MUSETT_T3_DSSD_Y74_E 59.5309 -0.00726702
+MUSETT_T3_DSSD_Y75_E 59.5826 -0.00727333
+MUSETT_T3_DSSD_Y76_E 59.590900000000005 -0.00727432
+MUSETT_T3_DSSD_Y77_E 59.3965 -0.00725058
+MUSETT_T3_DSSD_Y78_E 59.0289 -0.00720579
+MUSETT_T3_DSSD_Y79_E 59.962300000000006 -0.00731973
+MUSETT_T3_DSSD_Y80_E 62.810900000000004 -0.0076673900000000005
+MUSETT_T3_DSSD_Y81_E 62.7117 -0.00765528
+MUSETT_T3_DSSD_Y82_E 62.530699999999996 -0.00763323
+MUSETT_T3_DSSD_Y83_E 62.1472 -0.00758643
+MUSETT_T3_DSSD_Y84_E 62.024800000000006 -0.00757151
+MUSETT_T3_DSSD_Y85_E 62.6965 -0.00765345
+MUSETT_T3_DSSD_Y86_E 62.2624 -0.00760046
+MUSETT_T3_DSSD_Y87_E 62.9551 -0.00768508
+MUSETT_T3_DSSD_Y88_E 62.655 -0.00764835
+MUSETT_T3_DSSD_Y89_E 62.5921 -0.00764069
+MUSETT_T3_DSSD_Y90_E 61.832699999999996 -0.00754801
+MUSETT_T3_DSSD_Y91_E 61.9879 -0.00756697
+MUSETT_T3_DSSD_Y92_E 61.948 -0.00756205
+MUSETT_T3_DSSD_Y93_E 62.025800000000004 -0.00757163
+MUSETT_T3_DSSD_Y94_E 61.996 -0.0075679499999999995
+MUSETT_T3_DSSD_Y95_E 61.777699999999996 -0.0075413
+MUSETT_T3_DSSD_Y96_E 56.732699999999994 -0.00692539
+MUSETT_T3_DSSD_Y97_E 56.8633 -0.00694135
+MUSETT_T3_DSSD_Y98_E 56.282599999999995 -0.006870459999999999
+MUSETT_T3_DSSD_Y99_E 55.9378 -0.006828369999999999
+MUSETT_T3_DSSD_Y100_E 56.2782 -0.0068699500000000005
+MUSETT_T3_DSSD_Y101_E 56.282 -0.0068704000000000005
+MUSETT_T3_DSSD_Y102_E 55.9311 -0.006827580000000001
+MUSETT_T3_DSSD_Y103_E 55.9754 -0.00683298
+MUSETT_T3_DSSD_Y104_E 55.8431 -0.00681683
+MUSETT_T3_DSSD_Y105_E 56.2934 -0.00687176
+MUSETT_T3_DSSD_Y106_E 56.467699999999994 -0.0068930400000000005
+MUSETT_T3_DSSD_Y107_E 56.254599999999996 -0.006867
+MUSETT_T3_DSSD_Y108_E 55.7557 -0.0068061499999999995
+MUSETT_T3_DSSD_Y109_E 55.8956 -0.0068232100000000006
+MUSETT_T3_DSSD_Y110_E 56.6694 -0.0069177200000000005
+MUSETT_T3_DSSD_Y111_E 56.671699999999994 -0.00691799
+MUSETT_T3_DSSD_Y112_E 57.139 -0.00697499
+MUSETT_T3_DSSD_Y113_E 57.000099999999996 -0.00695808
+MUSETT_T3_DSSD_Y114_E 57.098699999999994 -0.006970189999999999
+MUSETT_T3_DSSD_Y115_E 56.9762 -0.00695517
+MUSETT_T3_DSSD_Y116_E 57.6053 -0.00703199
+MUSETT_T3_DSSD_Y117_E 57.2828 -0.00699264
+MUSETT_T3_DSSD_Y118_E 56.8406 -0.00693862
+MUSETT_T3_DSSD_Y119_E 57.6496 -0.00703728
+MUSETT_T3_DSSD_Y120_E 57.438300000000005 -0.00701157
+MUSETT_T3_DSSD_Y121_E 57.0848 -0.00696844
+MUSETT_T3_DSSD_Y122_E 57.433800000000005 -0.007011020000000001
+MUSETT_T3_DSSD_Y123_E 57.070800000000006 -0.00696674
+MUSETT_T3_DSSD_Y124_E 57.543699999999994 -0.00702442
+MUSETT_T3_DSSD_Y125_E 56.819900000000004 -0.00693609
+MUSETT_T3_DSSD_Y126_E 57.2394 -0.00698722
+MUSETT_T3_DSSD_Y127_E 57.5489 -0.00702512
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d1c8debd92e4ef0e3781515cf1687e2bd5688c30
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_T 937.544 -0.113591
+MUSETT_T3_DSSD_X1_T 950.827 -0.115254
+MUSETT_T3_DSSD_X2_T 955.415 -0.115822
+MUSETT_T3_DSSD_X3_T 957.318 -0.116042
+MUSETT_T3_DSSD_X4_T 949.438 -0.115096
+MUSETT_T3_DSSD_X5_T 963.979 -0.11686
+MUSETT_T3_DSSD_X6_T 968.338 -0.117385
+MUSETT_T3_DSSD_X7_T 973.664 -0.118019
+MUSETT_T3_DSSD_X8_T 971.735 -0.117779
+MUSETT_T3_DSSD_X9_T 969.438 -0.117496
+MUSETT_T3_DSSD_X10_T 971.944 -0.117795
+MUSETT_T3_DSSD_X11_T 984.038 -0.119273
+MUSETT_T3_DSSD_X12_T 973.915 -0.118031
+MUSETT_T3_DSSD_X13_T 980.183 -0.118805
+MUSETT_T3_DSSD_X14_T 977.813 -0.118524
+MUSETT_T3_DSSD_X15_T 1361.597 -0.119127
+MUSETT_T3_DSSD_X16_T 966.423 -0.117029
+MUSETT_T3_DSSD_X17_T 962.587 -0.116582
+MUSETT_T3_DSSD_X18_T 981.068 -0.11886
+MUSETT_T3_DSSD_X19_T 977.201 -0.118386
+MUSETT_T3_DSSD_X20_T 984.141 -0.119229
+MUSETT_T3_DSSD_X21_T 991.42 -0.120114
+MUSETT_T3_DSSD_X22_T 983.826 -0.119177
+MUSETT_T3_DSSD_X23_T 988.252 -0.119693
+MUSETT_T3_DSSD_X24_T 985.873 -0.119405
+MUSETT_T3_DSSD_X25_T 986.801 -0.119523
+MUSETT_T3_DSSD_X26_T 999.981 -0.12115
+MUSETT_T3_DSSD_X27_T 995.921 -0.120628
+MUSETT_T3_DSSD_X28_T 1006.034 -0.121885
+MUSETT_T3_DSSD_X29_T 999.176 -0.121035
+MUSETT_T3_DSSD_X30_T 1000.906 -0.121233
+MUSETT_T3_DSSD_X31_T 995.607 -0.120654
+MUSETT_T3_DSSD_X32_T 897.267 -0.108693
+MUSETT_T3_DSSD_X33_T 903.501 -0.109485
+MUSETT_T3_DSSD_X34_T 911.065 -0.110421
+MUSETT_T3_DSSD_X35_T 903.943 -0.109588
+MUSETT_T3_DSSD_X36_T 910.097 -0.110301
+MUSETT_T3_DSSD_X37_T 918.51 -0.111327
+MUSETT_T3_DSSD_X38_T 920.085 -0.111495
+MUSETT_T3_DSSD_X39_T 928.491 -0.112521
+MUSETT_T3_DSSD_X40_T 936.133 -0.11347
+MUSETT_T3_DSSD_X41_T 929.814 -0.112717
+MUSETT_T3_DSSD_X42_T 927.026 -0.112335
+MUSETT_T3_DSSD_X43_T 450.0 -0.112964
+MUSETT_T3_DSSD_X44_T 934.299 -0.113245
+MUSETT_T3_DSSD_X45_T 928.812 -0.11258
+MUSETT_T3_DSSD_X46_T 936.207 -0.113476
+MUSETT_T3_DSSD_X47_T 935.925 -0.113256
+MUSETT_T3_DSSD_X48_T 865.26 -0.104661
+MUSETT_T3_DSSD_X49_T 865.057 -0.104634
+MUSETT_T3_DSSD_X50_T 877.397 -0.106155
+MUSETT_T3_DSSD_X51_T 887.378 -0.107364
+MUSETT_T3_DSSD_X52_T 887.486 -0.107368
+MUSETT_T3_DSSD_X53_T 883.578 -0.106861
+MUSETT_T3_DSSD_X54_T 895.873 -0.108382
+MUSETT_T3_DSSD_X55_T 898.793 -0.108733
+MUSETT_T3_DSSD_X56_T 896.274 -0.10844
+MUSETT_T3_DSSD_X57_T 901.884 -0.10908
+MUSETT_T3_DSSD_X58_T 897.291 -0.108538
+MUSETT_T3_DSSD_X59_T 896.985 -0.10849
+MUSETT_T3_DSSD_X60_T 903.664 -0.109312
+MUSETT_T3_DSSD_X61_T 904.71 -0.109445
+MUSETT_T3_DSSD_X62_T 891.201 -0.107803
+MUSETT_T3_DSSD_X63_T 922.72 -0.108862
+MUSETT_T3_DSSD_X64_T 983.287 -0.119126
+MUSETT_T3_DSSD_X65_T 988.478 -0.119789
+MUSETT_T3_DSSD_X66_T 988.801 -0.119851
+MUSETT_T3_DSSD_X67_T 1004.624 -0.121753
+MUSETT_T3_DSSD_X68_T 1005.136 -0.121824
+MUSETT_T3_DSSD_X69_T 1002.009 -0.121446
+MUSETT_T3_DSSD_X70_T 1005.682 -0.121893
+MUSETT_T3_DSSD_X71_T 1009.441 -0.122347
+MUSETT_T3_DSSD_X72_T 1005.561 -0.121883
+MUSETT_T3_DSSD_X73_T 1012.386 -0.122684
+MUSETT_T3_DSSD_X74_T 1020.795 -0.123722
+MUSETT_T3_DSSD_X75_T 1030.928 -0.124938
+MUSETT_T3_DSSD_X76_T 1012.528 -0.122709
+MUSETT_T3_DSSD_X77_T 1012.161 -0.12265
+MUSETT_T3_DSSD_X78_T 1023.605 -0.124061
+MUSETT_T3_DSSD_X79_T 1392.417 -0.123313
+MUSETT_T3_DSSD_X80_T 940.696 -0.11381
+MUSETT_T3_DSSD_X81_T 946.536 -0.114558
+MUSETT_T3_DSSD_X82_T 950.101 -0.114986
+MUSETT_T3_DSSD_X83_T 948.44 -0.114804
+MUSETT_T3_DSSD_X84_T 963.396 -0.116619
+MUSETT_T3_DSSD_X85_T 965.983 -0.11693
+MUSETT_T3_DSSD_X86_T 960.815 -0.116299
+MUSETT_T3_DSSD_X87_T 965.812 -0.116863
+MUSETT_T3_DSSD_X88_T 976.455 -0.118161
+MUSETT_T3_DSSD_X89_T 972.683 -0.117687
+MUSETT_T3_DSSD_X90_T 977.648 -0.118304
+MUSETT_T3_DSSD_X91_T 985.535 -0.119256
+MUSETT_T3_DSSD_X92_T 985.189 -0.119241
+MUSETT_T3_DSSD_X93_T 984.904 -0.119186
+MUSETT_T3_DSSD_X94_T 982.3 -0.118879
+MUSETT_T3_DSSD_X95_T 977.482 -0.118278
+MUSETT_T3_DSSD_X96_T 860.29 -0.104124
+MUSETT_T3_DSSD_X97_T 865.042 -0.104728
+MUSETT_T3_DSSD_X98_T 865.096 -0.104753
+MUSETT_T3_DSSD_X99_T 871.257 -0.105492
+MUSETT_T3_DSSD_X100_T 881.122 -0.106693
+MUSETT_T3_DSSD_X101_T 876.465 -0.10614
+MUSETT_T3_DSSD_X102_T 881.211 -0.106708
+MUSETT_T3_DSSD_X103_T 880.166 -0.106567
+MUSETT_T3_DSSD_X104_T 889.358 -0.107671
+MUSETT_T3_DSSD_X105_T 893.917 -0.108216
+MUSETT_T3_DSSD_X106_T 885.756 -0.107225
+MUSETT_T3_DSSD_X107_T 896.457 -0.108561
+MUSETT_T3_DSSD_X108_T 896.971 -0.108609
+MUSETT_T3_DSSD_X109_T 893.394 -0.108191
+MUSETT_T3_DSSD_X110_T 902.834 -0.109337
+MUSETT_T3_DSSD_X111_T 900.551 -0.108709
+MUSETT_T3_DSSD_X112_T 857.647 -0.103629
+MUSETT_T3_DSSD_X113_T 867.192 -0.10481
+MUSETT_T3_DSSD_X114_T 867.635 -0.1049
+MUSETT_T3_DSSD_X115_T 874.016 -0.105647
+MUSETT_T3_DSSD_X116_T 450.0 -0.126949
+MUSETT_T3_DSSD_X117_T 878.204 -0.106145
+MUSETT_T3_DSSD_X118_T 885.379 -0.107055
+MUSETT_T3_DSSD_X119_T 883.36 -0.10675
+MUSETT_T3_DSSD_X120_T 886.263 -0.107137
+MUSETT_T3_DSSD_X121_T 890.004 -0.107599
+MUSETT_T3_DSSD_X122_T 886.105 -0.107093
+MUSETT_T3_DSSD_X123_T 895.691 -0.108252
+MUSETT_T3_DSSD_X124_T 889.843 -0.107522
+MUSETT_T3_DSSD_X125_T 896.157 -0.108336
+MUSETT_T3_DSSD_X126_T 883.628 -0.106793
+MUSETT_T3_DSSD_X127_T 894.234 -0.107896
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0019a7424992370dc0993147876bcc551b537ba3
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_T 917.946 -0.11121
+MUSETT_T3_DSSD_Y1_T 925.607 -0.112154
+MUSETT_T3_DSSD_Y2_T 934.525 -0.113241
+MUSETT_T3_DSSD_Y3_T 944.195 -0.114409
+MUSETT_T3_DSSD_Y4_T 941.165 -0.114032
+MUSETT_T3_DSSD_Y5_T 949.297 -0.114994
+MUSETT_T3_DSSD_Y6_T 953.74 -0.115552
+MUSETT_T3_DSSD_Y7_T 953.991 -0.115546
+MUSETT_T3_DSSD_Y8_T 961.72 -0.116506
+MUSETT_T3_DSSD_Y9_T 965.956 -0.117006
+MUSETT_T3_DSSD_Y10_T 968.137 -0.117251
+MUSETT_T3_DSSD_Y11_T 966.978 -0.117093
+MUSETT_T3_DSSD_Y12_T 976.42 -0.118272
+MUSETT_T3_DSSD_Y13_T 982.89 -0.119048
+MUSETT_T3_DSSD_Y14_T 975.1 -0.118075
+MUSETT_T3_DSSD_Y15_T 982.356 -0.118941
+MUSETT_T3_DSSD_Y16_T 968.384 -0.117174
+MUSETT_T3_DSSD_Y17_T 981.477 -0.118815
+MUSETT_T3_DSSD_Y18_T 982.408 -0.118931
+MUSETT_T3_DSSD_Y19_T 987.964 -0.119638
+MUSETT_T3_DSSD_Y20_T 993.613 -0.12034
+MUSETT_T3_DSSD_Y21_T 1003.439 -0.121551
+MUSETT_T3_DSSD_Y22_T 998.76 -0.120998
+MUSETT_T3_DSSD_Y23_T 993.205 -0.120321
+MUSETT_T3_DSSD_Y24_T 999.257 -0.121073
+MUSETT_T3_DSSD_Y25_T 1005.451 -0.121839
+MUSETT_T3_DSSD_Y26_T 1005.606 -0.121856
+MUSETT_T3_DSSD_Y27_T 1011.99 -0.122649
+MUSETT_T3_DSSD_Y28_T 1015.011 -0.12302
+MUSETT_T3_DSSD_Y29_T 1003.879 -0.121668
+MUSETT_T3_DSSD_Y30_T 1013.019 -0.122794
+MUSETT_T3_DSSD_Y31_T 1013.687 -0.122927
+MUSETT_T3_DSSD_Y32_T 869.813 -0.105446
+MUSETT_T3_DSSD_Y33_T 866.542 -0.105092
+MUSETT_T3_DSSD_Y34_T 871.705 -0.10573
+MUSETT_T3_DSSD_Y35_T 868.741 -0.105345
+MUSETT_T3_DSSD_Y36_T 880.227 -0.106744
+MUSETT_T3_DSSD_Y37_T 879.546 -0.106654
+MUSETT_T3_DSSD_Y38_T 885.08 -0.107294
+MUSETT_T3_DSSD_Y39_T 893.736 -0.108361
+MUSETT_T3_DSSD_Y40_T 890.782 -0.10799
+MUSETT_T3_DSSD_Y41_T 894.881 -0.10846
+MUSETT_T3_DSSD_Y42_T 904.234 -0.109593
+MUSETT_T3_DSSD_Y43_T 900.794 -0.109195
+MUSETT_T3_DSSD_Y44_T 895.989 -0.108568
+MUSETT_T3_DSSD_Y45_T 906.161 -0.109804
+MUSETT_T3_DSSD_Y46_T 909.978 -0.110263
+MUSETT_T3_DSSD_Y47_T 902.668 -0.109382
+MUSETT_T3_DSSD_Y48_T 876.095 -0.105997
+MUSETT_T3_DSSD_Y49_T 882.164 -0.106772
+MUSETT_T3_DSSD_Y50_T 893.829 -0.108217
+MUSETT_T3_DSSD_Y51_T 896.423 -0.108527
+MUSETT_T3_DSSD_Y52_T 890.601 -0.107825
+MUSETT_T3_DSSD_Y53_T 899.134 -0.108862
+MUSETT_T3_DSSD_Y54_T 903.962 -0.109456
+MUSETT_T3_DSSD_Y55_T 909.776 -0.110152
+MUSETT_T3_DSSD_Y56_T 914.077 -0.110718
+MUSETT_T3_DSSD_Y57_T 912.813 -0.11056
+MUSETT_T3_DSSD_Y58_T 921.655 -0.111636
+MUSETT_T3_DSSD_Y59_T 907.554 -0.109934
+MUSETT_T3_DSSD_Y60_T 921.006 -0.111581
+MUSETT_T3_DSSD_Y61_T 921.705 -0.111694
+MUSETT_T3_DSSD_Y62_T 916.94 -0.1111
+MUSETT_T3_DSSD_Y63_T 919.695 -0.11144
+MUSETT_T3_DSSD_Y64_T 902.544 -0.109216
+MUSETT_T3_DSSD_Y65_T 908.915 -0.110026
+MUSETT_T3_DSSD_Y66_T 909.56 -0.110106
+MUSETT_T3_DSSD_Y67_T 918.028 -0.11114
+MUSETT_T3_DSSD_Y68_T 929.408 -0.11252
+MUSETT_T3_DSSD_Y69_T 937.82 -0.113544
+MUSETT_T3_DSSD_Y70_T 930.573 -0.112672
+MUSETT_T3_DSSD_Y71_T 929.18 -0.112491
+MUSETT_T3_DSSD_Y72_T 945.251 -0.114462
+MUSETT_T3_DSSD_Y73_T 937.76 -0.11354
+MUSETT_T3_DSSD_Y74_T 953.926 -0.115517
+MUSETT_T3_DSSD_Y75_T 950.321 -0.115086
+MUSETT_T3_DSSD_Y76_T 962.882 -0.116618
+MUSETT_T3_DSSD_Y77_T 951.559 -0.115232
+MUSETT_T3_DSSD_Y78_T 944.24 -0.114343
+MUSETT_T3_DSSD_Y79_T 949.269 -0.114947
+MUSETT_T3_DSSD_Y80_T 969.213 -0.117288
+MUSETT_T3_DSSD_Y81_T 980.623 -0.118727
+MUSETT_T3_DSSD_Y82_T 986.747 -0.119474
+MUSETT_T3_DSSD_Y83_T 990.256 -0.119909
+MUSETT_T3_DSSD_Y84_T 992.055 -0.120116
+MUSETT_T3_DSSD_Y85_T 999.047 -0.120975
+MUSETT_T3_DSSD_Y86_T 995.992 -0.120606
+MUSETT_T3_DSSD_Y87_T 997.417 -0.12076
+MUSETT_T3_DSSD_Y88_T 1002.04 -0.121336
+MUSETT_T3_DSSD_Y89_T 1013.247 -0.122713
+MUSETT_T3_DSSD_Y90_T 1016.426 -0.1231
+MUSETT_T3_DSSD_Y91_T 1004.734 -0.121678
+MUSETT_T3_DSSD_Y92_T 1013.118 -0.122697
+MUSETT_T3_DSSD_Y93_T 1016.325 -0.123087
+MUSETT_T3_DSSD_Y94_T 1008.607 -0.122144
+MUSETT_T3_DSSD_Y95_T 1009.63 -0.122274
+MUSETT_T3_DSSD_Y96_T 872.56 -0.105573
+MUSETT_T3_DSSD_Y97_T 869.392 -0.105224
+MUSETT_T3_DSSD_Y98_T 874.15 -0.105791
+MUSETT_T3_DSSD_Y99_T 883.33 -0.106904
+MUSETT_T3_DSSD_Y100_T 890.403 -0.107789
+MUSETT_T3_DSSD_Y101_T 890.223 -0.107742
+MUSETT_T3_DSSD_Y102_T 901.174 -0.109085
+MUSETT_T3_DSSD_Y103_T 893.31 -0.108126
+MUSETT_T3_DSSD_Y104_T 900.562 -0.108999
+MUSETT_T3_DSSD_Y105_T 892.986 -0.108068
+MUSETT_T3_DSSD_Y106_T 892.398 -0.108006
+MUSETT_T3_DSSD_Y107_T 901.475 -0.109125
+MUSETT_T3_DSSD_Y108_T 904.207 -0.109439
+MUSETT_T3_DSSD_Y109_T 901.95 -0.109168
+MUSETT_T3_DSSD_Y110_T 897.548 -0.108625
+MUSETT_T3_DSSD_Y111_T 903.933 -0.109416
+MUSETT_T3_DSSD_Y112_T 889.942 -0.107554
+MUSETT_T3_DSSD_Y113_T 897.252 -0.108473
+MUSETT_T3_DSSD_Y114_T 900.207 -0.108848
+MUSETT_T3_DSSD_Y115_T 895.641 -0.108292
+MUSETT_T3_DSSD_Y116_T 903.842 -0.109288
+MUSETT_T3_DSSD_Y117_T 909.27 -0.109943
+MUSETT_T3_DSSD_Y118_T 907.84 -0.109765
+MUSETT_T3_DSSD_Y119_T 907.053 -0.109672
+MUSETT_T3_DSSD_Y120_T 914.069 -0.110512
+MUSETT_T3_DSSD_Y121_T 922.641 -0.111588
+MUSETT_T3_DSSD_Y122_T 925.361 -0.111915
+MUSETT_T3_DSSD_Y123_T 907.828 -0.109772
+MUSETT_T3_DSSD_Y124_T 912.093 -0.11029
+MUSETT_T3_DSSD_Y125_T 917.412 -0.110947
+MUSETT_T3_DSSD_Y126_T 918.908 -0.111116
+MUSETT_T3_DSSD_Y127_T 927.125 -0.112131
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..10ca6c4c9502b63c10d0e6b2bd7a870f66c51345
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/cal_to_NPTOOL.py
@@ -0,0 +1,147 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 1
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0_R318-327.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0_R318-327.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/calibE0_R318-327.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/calibE0_R318-327.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..35bf8b5641ad2768f94bc55760aec6b956fdd3a7
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/calibE0_R318-327.cal1
@@ -0,0 +1,1024 @@
+-61710.6 7.53299 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61910.5 7.55737 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61782.4 7.54181 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61510.1 7.50856 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61839.9 7.54883 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61611.3 7.52091 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61398 7.49483 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61184.1 7.4687 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-61046.5 7.45195 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62682.6 7.65164 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62358.3 7.61207 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61942 7.56128 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62087.8 7.57904 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61755.3 7.53843 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62412.6 7.6187 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61293.9 7.48215 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63052.7 7.6968 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62690.7 7.65267 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62190.5 7.59158 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62410.9 7.6185 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63893.7 7.79946 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62612.9 7.64313 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62337.2 7.60945 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62674.4 7.65062 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62899.3 7.67809 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62952.3 7.68455 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63053.3 7.69687 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62674.7 7.65067 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-62997.4 7.69004 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62627.1 7.64487 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63448.8 7.74516 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62603 7.64186 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56430.2 6.88838 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56799.9 6.93354 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55532 6.77879 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56348.8 6.87847 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-55994.5 6.83521 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+ -10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55914.7 6.8255 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55693.8 6.79852 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56217.1 6.86239 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55863.5 6.81922 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56201.7 6.86046 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56309.9 6.87373 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56346.6 6.87818 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+ -10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+ -10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55913.1 6.82529 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57833.2 7.05965 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57967.8 7.07605 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57757.3 7.05042 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57326.3 6.99778 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58207.2 7.1053 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57200.3 6.98242 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57834.4 7.05977 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57512.8 7.02054 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58484.5 7.13912 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57751 7.04962 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57332.2 6.99849 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57800.1 7.05564 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57165.4 6.97819 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57970.3 7.07636 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57884.6 7.06593 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58159.8 7.09951 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63446.1 7.74486 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63609.9 7.76484 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63347.1 7.73277 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64083.2 7.82268 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63210.5 7.71623 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63979.4 7.81003 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63860.8 7.79555 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63358.1 7.73418 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64215.7 7.83895 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63301.6 7.72725 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-64050.7 7.81888 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-64016.7 7.81467 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63688.9 7.77478 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63789.1 7.78701 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64283.2 7.84737 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64914.3 7.924398 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61239.4 7.47582 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60938.5 7.43906 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61139.7 7.46366 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61497.4 7.50726 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61398.7 7.49521 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61899.6 7.55626 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61451.8 7.50166 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62196.4 7.59254 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61948.1 7.56212 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61617.1 7.52168 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61737.4 7.53637 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62823.6 7.66899 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61885.8 7.55448 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-61049.7 7.45242 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61459.5 7.50241 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62201.1 7.59292 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57166.2 6.97828 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57555.3 7.02572 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57803.5 7.05608 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57067.6 6.96622 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58132.4 7.09623 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57744.7 7.04887 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57713.3 7.04507 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57296.7 6.99421 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57401.2 7.00701 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57954.2 7.07453 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57305.6 6.99532 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57589.7 7.03005 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58599.8 7.15326 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58011 7.08149 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57701.9 7.04369 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57802 7.05589 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59013.1 7.20381 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59199.6 7.22655 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58525.7 7.1443 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58674.8 7.16253 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58132.8 7.09631 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58328.3 7.12018 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.9 7.11452 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58567.3 7.14936 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58564.9 7.14905 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58734.4 7.16969 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58596.2 7.15284 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59320.8 7.24127 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57906.3 7.06867 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58502.7 7.14141 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58429.3 7.1325 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59561.4 7.27063 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60429.9 -7.37677 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60952.5 -7.44053 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61113.6 -7.46018 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+60033.8 -7.32839 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60178.9 -7.34611 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60801.7 -7.42211 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60445 -7.37857 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60092 -7.33548 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59987 -7.32266 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60401.3 -7.37321 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60048.5 -7.33015 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60888.1 -7.43271 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61013.7 -7.44798 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61158 -7.46561 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60738.4 -7.41441 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60385.3 -7.37129 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60545.5 -7.39083 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60330.4 -7.36461 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60139.3 -7.34125 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60389.2 -7.37176 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60396.1 -7.37259 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60279.9 -7.35844 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59730.9 -7.29143 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60216.9 -7.35079 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.6 -7.297 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60073.1 -7.33321 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60444.7 -7.37853 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59887.7 -7.31055 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59636.6 -7.27991 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59823.3 -7.30273 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+61045.2 -7.45187 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56575.4 -6.90626 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57085.6 -6.96849 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56504.9 -6.89761 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57072.7 -6.96695 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57400 -7.00688 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57263.9 -6.99027 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56450 -6.89094 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56455.4 -6.89159 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56954 -6.95243 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56843.8 -6.93902 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56630.1 -6.91291 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56497.5 -6.89672 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56809.1 -6.93476 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56946.4 -6.95152 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57725.8 -7.04665 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56552.7 -6.90344 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57592.2 -7.03033 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57040.1 -6.96295 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56812.5 -6.93518 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56466.8 -6.89296 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57123.7 -6.97317 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56853.5 -6.94018 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56671.8 -6.91801 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57626 -7.03448 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57386.1 -7.00524 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56822 -6.9363 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57017 -6.96019 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57244.2 -6.98793 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57298.5 -6.99452 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57094 -6.9695 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57584.6 -7.02941 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57939.4 -7.07277 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+60998.5 -7.44617 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61154.4 -7.46519 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61038.3 -7.45104 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61312.7 -7.48452 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60431.4 -7.37695 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61541.6 -7.51241 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60896 -7.43364 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60398.4 -7.37288 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61667.4 -7.52784 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61151 -7.46479 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61103.5 -7.45898 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61219.8 -7.47315 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60596.2 -7.39702 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61408.6 -7.49623 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61629.2 -7.52312 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61015.1 -7.44816 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62330.1 -7.60868 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61048.5 -7.45227 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61567 -7.51556 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62052.8 -7.57484 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61001.4 -7.4465 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60896.5 -7.4337 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61748.9 -7.5377 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61380.7 -7.49277 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61145.8 -7.46415 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61269.9 -7.47926 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61120.5 -7.46101 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61476.8 -7.50452 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61857.6 -7.55098 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61681.6 -7.52954 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62323.2 -7.60786 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60892.7 -7.43324 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56372 -6.88138 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56641.2 -6.91423 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56555.8 -6.90381 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56451.7 -6.89113 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56187 -6.85881 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56322.8 -6.8754 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56073.6 -6.84493 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56575.1 -6.90621 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56874.1 -6.94264 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56026.4 -6.83916 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57037.4 -6.96262 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57359.5 -7.00194 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56552.4 -6.90339 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56585.5 -6.90746 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56666.8 -6.91741 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56400.9 -6.88495 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56899.6 -6.9458 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57124.3 -6.97323 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56955.2 -6.95256 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56821.1 -6.93619 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57294.8 -6.99405 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.4 -6.90363 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56415.9 -6.88675 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56591.9 -6.90825 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57404.8 -7.00746 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57231.9 -6.98632 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56684.9 -6.91957 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56016.4 -6.83799 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56457.5 -6.89181 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55921.7 -6.82642 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56947 -6.95159 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56581 -6.90693 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62318 7.60703 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62174.8 7.58959 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62269.7 7.60114 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-61967.2 7.56426 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61415.1 7.49681 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61526 7.51035 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62309.7 7.60599 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61376 7.49208 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61309.6 7.48393 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61415.7 7.49688 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61636.3 7.52384 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61699.5 7.53158 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61903.6 7.55648 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61385.8 7.49329 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61149.7 7.46439 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61948.3 7.56191 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62532.3 7.63317 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61741.8 7.5367 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62152.7 7.58685 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61894.5 7.55534 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62901.8 7.67824 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62159.2 7.58764 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62660 7.6488 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62320.7 7.60737 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62221.7 7.59528 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61934.3 7.56018 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-61947.1 7.56175 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61695.2 7.53103 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61588.3 7.51797 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62694 7.65292 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61734.1 7.53577 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62776.5 7.66307 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58260.4 7.11179 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58264 7.11219 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58314.9 7.11847 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58240 7.10926 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-57977 7.07722 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58181.7 7.10203 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58036.4 7.08428 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58626.1 7.156419 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58167.3 7.10045 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58805.6 7.17818 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58040.4 7.08493 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58445 7.13434 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58576.9 7.15027 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59255 7.23324 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58654.1 7.15993 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58523.2 7.1438 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57862.5 7.06315 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58489.2 7.13967 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-58005.3 7.08058 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57739.2 7.04814 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57926.2 7.07097 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57912.9 7.06931 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57956.5 7.07461 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57767.9 7.05159 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58015.6 7.08187 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57805.6 7.05617 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58416.6 7.13075 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57624 7.034 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57687.8 7.04184 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58237.3 7.1089 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58058.7 7.08712 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58244.7 7.10981 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-60994.7 7.4455 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61603 7.51986 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61459.9 7.50223 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61665.1 7.52729 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61874.5 7.55286 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.5 7.48631 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61630 7.52303 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61904.2 7.55658 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61232.4 7.47458 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62341.2 7.60994 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61925.9 7.55913 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62067.1 7.57642 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61484.5 7.50533 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61742.7 7.53686 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61352.6 7.48913 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61942.1 7.56111 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63429 7.74268 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63722.1 7.77849 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.5 7.83819 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63867.7 7.7962 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64127.9 7.82805 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63840.4 7.79293 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64050.4 7.81853 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64160.9 7.83201 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64180.9 7.83452 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64214 7.83849 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63280.4 7.72459 0.00 !Mu1ChX91ERaw[Co2At2Ch11]
+-63366.8 7.73508 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64520.9 7.87598 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-63981.8 7.81014 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63775.5 7.78503 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63433.9 7.74331 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56258.8 6.86734 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56645.5 6.91464 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56487.9 6.89532 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56382.7 6.88258 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56555.3 6.90363 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-57022.9 6.96061 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57333.2 6.99847 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56580.7 6.90664 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56766.8 6.92938 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-56989.3 6.95655 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57851.3 7.06174 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57756.1 7.05012 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57728.3 7.0468 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57502.7 7.01928 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57680.9 7.04099 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-57995.2 7.07934 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57221.6 6.98492 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57306.8 6.9953 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56767.2 6.92944 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57714.8 7.04509 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57257.8 6.98931 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57250.9 6.98847 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56328.4 6.87591 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58288.5 7.11516 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57413.2 7.00834 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57776.2 7.05264 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57731 7.04713 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57410.6 7.00802 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57590.7 7.02999 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57638.3 7.03579 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57038.4 6.96255 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57854.9 7.0622 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59619.1 -7.27783 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60465.3 -7.38115 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59712 -7.28919 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59326.7 -7.24213 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60197.6 -7.3485 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60005.2 -7.32501 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59376.2 -7.24818 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59455.9 -7.25795 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.9 -7.25998 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59707.6 -7.28867 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59520.2 -7.26577 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59556.5 -7.27023 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60210.4 -7.35003 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59273.4 -7.23565 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59511.8 -7.26475 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59816.1 -7.30189 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62145.2 -7.5862 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62468.3 -7.62564 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62402.1 -7.61759 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62031.6 -7.57234 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62198.2 -7.59266 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62357.4 -7.61211 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62006.4 -7.56931 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61711.9 -7.53332 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61447.7 -7.50107 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62078 -7.57801 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62059.9 -7.57584 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62251.6 -7.59918 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62034 -7.57263 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61653.3 -7.52617 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61797.4 -7.5438 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115 -6.85013 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56290.1 -6.87151 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55631.2 -6.79109 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55653.9 -6.79382 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55417.1 -6.76495 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56418.2 -6.88719 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55381.4 -6.76057 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55909.9 -6.82508 0.00 !Mu1ChY40ERaw[Co3At3Ch8]
+56029.4 -6.83969 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56120.4 -6.85079 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55503.4 -6.77548 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56587.3 -6.90782 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55632.5 -6.79125 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55719.2 -6.80184 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55759.2 -6.80672 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55723.3 -6.80233 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.5 -6.98188 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56621.8 -6.91194 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56558.9 -6.9043 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56037.1 -6.84059 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56793.3 -6.93289 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56263 -6.86816 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56442.5 -6.89006 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56437 -6.8894 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57330.8 -6.99852 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57023 -6.96092 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56627.6 -6.91264 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57287.8 -6.99327 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57378.4 -7.00433 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57012.1 -6.95962 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56174 -6.8573 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57292.1 -6.99379 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61087.1 -7.45703 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61618.4 -7.52186 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61291.1 -7.48195 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61562.6 -7.51506 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61204.3 -7.47131 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60010.3 -7.3256 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60457 -7.38015 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61099.9 -7.45857 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60265.6 -7.35676 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61237.3 -7.47538 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60887.5 -7.43265 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60371.3 -7.36966 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60519.5 -7.38776 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60974.1 -7.44327 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60660.6 -7.40501 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61330.5 -7.4868 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61162.6 -7.46633 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61126.4 -7.46184 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61091.3 -7.45754 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60509 -7.38651 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60423.4 -7.376 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61141.3 -7.46364 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60674.6 -7.40669 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60573.1 -7.3943 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61027.3 -7.44976 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61279.2 -7.48052 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60725.5 -7.41289 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60868.8 -7.43041 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60510.8 -7.38671 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61280.6 -7.48069 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61608.5 -7.52068 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60746.9 -7.4156 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55857.9 -6.81873 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55481.3 -6.77275 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55690.1 -6.79825 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55554.6 -6.78172 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55813.8 -6.81337 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55466.9 -6.77101 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55425.1 -6.76591 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56167.4 -6.85651 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55270.2 -6.74696 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55305.4 -6.75128 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55865.3 -6.81962 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55229.6 -6.74202 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55862.8 -6.81933 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56111.1 -6.84967 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56135.6 -6.8526 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56572.6 -6.90596 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54764.4 -6.68523 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55559.3 -6.78228 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55152.2 -6.73254 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.6 -6.72196 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55234.3 -6.74255 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55399.3 -6.76272 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55260.9 -6.74585 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55568 -6.78332 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55863.9 -6.81946 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55478.8 -6.77244 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.7 -6.69408 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55138.3 -6.73087 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55221.7 -6.74106 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55183 -6.73632 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55346 -6.75624 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56263 -6.86815 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62742.1 7.65877 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62479.2 7.62671 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62865 7.67381 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62098.5 7.58022 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62057.1 7.5752 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62707.7 7.65462 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62430.5 7.62076 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62814.9 7.6677 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62925.1 7.68116 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62122.5 7.58321 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62473.8 7.62602 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62490.4 7.62809 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62594.2 7.64074 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62536.7 7.63373 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62645.6 7.64703 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63375.2 7.73612 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62167.2 7.58864 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61803.3 7.54424 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61578.5 7.51678 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61470.8 7.50362 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61483.7 7.50523 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62315.8 7.60676 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62154.7 7.58709 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61791.1 7.54274 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61631.6 7.52326 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61824.2 7.54673 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61962.7 7.56372 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61774.4 7.54065 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61664.5 7.52723 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61257.4 7.47756 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62372.1 7.61364 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61518.2 7.5094 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-58997.3 7.20165 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58122.7 7.09487 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58574.8 7.15013 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58368.7 7.1249 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58173.3 7.10106 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58141.5 7.09722 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58324.8 7.11956 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57915.8 7.06966 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57571.4 7.0276 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58563.5 7.14871 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58788.6 7.17615 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58273.9 7.11334 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58563.9 7.14877 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58527 7.14428 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58339.3 7.12137 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58469.7 7.13725 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57779.5 7.05305 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57166 6.97811 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58129.9 7.09577 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57864.6 7.06342 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57537.3 7.02346 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57137 6.97462 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57819.8 7.05796 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57621.2 7.03367 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57914 7.06946 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57507.6 7.01987 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57923.1 7.07061 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.9 6.95776 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57486.6 7.01726 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56686.3 6.91961 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57458.1 7.01383 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57861.9 7.06309 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63315.8 7.72883 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64994.4 7.9338 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-64025.6 7.81543 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63710.4 7.77703 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64382.2 7.859 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63647.8 7.76936 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63444.6 7.7446 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63361.8 7.73443 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63093.9 7.70176 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63826.9 7.79125 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63664.2 7.77139 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63884.1 7.79822 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63716.4 7.77776 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63624.6 7.76662 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63593.7 7.76277 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63247.6 7.72049 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63297.5 7.72671 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63100.9 7.70261 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63149.8 7.70857 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63919.2 7.80245 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63810.5 7.7892 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63724.6 7.77877 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63923.1 7.80293 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63045.1 7.6958 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63491.8 7.75038 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63342.9 7.73222 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63540.7 7.7563 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63268 7.72303 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64611 7.88691 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63699 7.7756 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63623.5 7.76632 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59026.2 7.20527 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58540.6 7.14597 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58304.4 7.11715 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58710.8 7.16671 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59397.8 7.25058 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59352.9 7.2451 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58824 7.18059 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59021.6 7.2047 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59011.2 7.2034 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59098.8 7.21406 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58717.3 7.1675 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-58991.5 7.20094 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58718.9 7.16772 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60340.8 7.36568 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58950.1 7.1959 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58675.2 7.16237 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59295.7 7.2381 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59339.5 7.24343 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59702 7.28774 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59145.3 7.21974 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59642 7.28038 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-59995.7 7.32358 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59442.9 7.25607 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59354.8 7.24536 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60083.1 7.33422 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58758.9 7.17258 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59087.3 7.21264 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59302 7.2389 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58911.6 7.19123 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58940.6 7.19471 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59142.6 7.2194 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59291.3 7.23756 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63221.1 -7.71756 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+64033 -7.81661 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62573 -7.63842 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63453.2 -7.74588 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+63008.4 -7.69158 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62742 -7.65904 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63050.8 -7.69679 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62682.4 -7.65176 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62844.3 -7.67155 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63462.9 -7.74703 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+62996.6 -7.69016 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62575 -7.63867 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62131.2 -7.58453 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62781.8 -7.66392 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+62993.7 -7.68982 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63488.8 -7.75026 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61669.6 -7.52809 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60961.4 -7.44174 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60726.4 -7.41301 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62087.4 -7.57914 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61094.3 -7.45789 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60927.5 -7.43756 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62149.1 -7.58664 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61087.9 -7.45714 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61072.4 -7.45528 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61604.2 -7.52017 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61131.3 -7.46243 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61442 -7.50039 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61550 -7.51354 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61513.5 -7.50906 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61344.4 -7.48846 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61772.1 -7.54065 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56305.3 -6.87326 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56497.5 -6.89675 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56834.6 -6.93796 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56703.4 -6.92192 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+56977 -6.9553 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56889.1 -6.94457 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56450.3 -6.89099 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56403.9 -6.88533 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56205.6 -6.86116 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58125.2 -7.09546 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56762.4 -6.92908 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56299.9 -6.87269 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57261.3 -6.98997 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57247.6 -6.98834 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57030.9 -6.96185 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56744.6 -6.92695 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57601.8 -7.03162 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57017.1 -6.96022 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57933.4 -7.07206 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57426.4 -7.01017 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57297.8 -6.99446 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58636.8 -7.15795 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57744.4 -7.049 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57839.2 -7.06057 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57708.8 -7.04465 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57558.5 -7.02632 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57474.8 -7.01608 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58260.9 -7.11207 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57892.2 -7.06703 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57330 -6.99845 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57835.7 -7.06015 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58184.5 -7.10268 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59348.1 -7.24483 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59605.7 -7.27624 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59455.9 -7.25797 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60429.5 -7.37675 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59568.6 -7.27167 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59821.4 -7.30253 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59558 -7.27041 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59892.6 -7.3113 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59876.5 -7.30923 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59557.1 -7.2703 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59902.7 -7.31249 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60059.2 -7.33158 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59314.2 -7.24065 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59977.2 -7.32152 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59375.7 -7.24812 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60162.5 -7.34418 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60553.6 -7.39197 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61237.5 -7.47541 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60562.6 -7.39303 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61224.5 -7.47385 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61126.4 -7.46188 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60909.5 -7.4354 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60957.5 -7.44128 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61286.2 -7.48137 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60884.7 -7.4323 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60871 -7.43068 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61443.7 -7.50059 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60658.6 -7.40476 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61097.6 -7.45829 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60614.1 -7.39932 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61044.5 -7.45181 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61470.4 -7.50378 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56878.5 -6.94331 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55961.9 -6.83138 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56218.8 -6.86276 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56642.5 -6.91453 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56348 -6.87854 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56747.4 -6.9273 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55904.8 -6.82446 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57240.3 -6.98747 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56087.4 -6.84672 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56732.1 -6.92546 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56623.7 -6.91218 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57520.3 -7.02164 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57014.4 -6.9599 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56700.3 -6.92155 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57019.8 -6.96055 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56158.7 -6.85546 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56486.5 -6.89543 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57289.3 -6.99345 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56597.9 -6.90909 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56824.1 -6.93669 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56510 -6.89835 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56563.8 -6.90489 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56834.9 -6.93798 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56738.1 -6.9262 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56337.6 -6.87729 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57059.2 -6.96537 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57419.8 -7.0094 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56208.7 -6.86156 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56914.2 -6.9477 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56339.9 -6.87758 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56168.2 -6.8566 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62298.2 7.60472 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61861.6 7.55141 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62156.9 7.58753 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62259.6 7.60006 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61881.7 7.55391 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61817.4 7.54604 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62038.9 7.57309 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61558.6 7.51446 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61705 7.53228 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61812 7.54536 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61801.3 7.54402 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62828 7.66936 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61599.3 7.51937 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61494.7 7.50662 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62518.2 7.63157 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63590.9 7.76244 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63017.1 7.69249 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62878.7 7.67552 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62791 7.66488 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62559.2 7.63654 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63113.3 7.70421 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63699.8 7.77586 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63781.1 7.7857 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62720.5 7.65624 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63456.7 7.74614 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63469.1 7.74769 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63295.5 7.72649 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63507.6 7.75235 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63562.9 7.7591 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64464.4 7.86912 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63690.7 7.77475 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59300.3 7.23889 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59122.8 7.21712 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58098 7.09209 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58311.4 7.11809 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58778.1 7.17501 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-58990.3 7.20099 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59232.9 7.23058 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58615.9 7.15528 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59221.6 7.22918 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58881.5 7.18765 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-58977.3 7.19934 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-58983.3 7.20009 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59359.3 7.24594 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58777.5 7.17493 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59126 7.21749 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57304.1 6.99513 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57151.2 6.97642 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56849.2 6.93961 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57205.7 6.98311 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56835.2 6.93786 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57340.1 6.99951 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56590.8 6.90809 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57262.3 6.99005 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57574.4 7.02812 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56496.9 6.89662 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57471.5 7.01554 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57061.9 6.96556 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56316.5 6.87459 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56849.9 6.9397 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56760.7 6.92884 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56499.3 6.89695 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64170.2 7.83318 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63841.5 7.79309 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63555.7 7.75819 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63767.7 7.78403 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63604.2 7.76408 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63260 7.72205 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64305.5 7.84974 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62501.6 7.6295 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62662.5 7.64914 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63010.5 7.69167 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63148.4 7.70842 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63379.3 7.73664 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64068.7 7.82082 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62470.2 7.62573 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62557.4 7.63631 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63009.7 7.69157 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62457.8 7.62418 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62779.1 7.66339 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62621 7.64411 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62578.4 7.63894 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62005.9 7.56897 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62457.5 7.62414 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62403.1 7.61752 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62171.3 7.58918 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62335.3 7.6092 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62747.4 7.6596 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62339.6 7.60973 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62021.3 7.57089 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62834.5 7.67017 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.8 7.63673 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62140.9 7.58552 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62358.7 7.61211 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56125.6 6.85121 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55950.5 6.82982 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55179.6 6.73572 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55782.8 6.8094 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55955.9 6.8305 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55934.4 6.82783 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55974.5 6.83272 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55254.9 6.74491 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55487.5 6.77335 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-55989.3 6.83453 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55823.6 6.81435 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55681.5 6.79695 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56743.4 6.92662 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56300.5 6.87254 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55822.3 6.81419 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55695.1 6.79867 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57562.2 7.02657 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-57013.5 6.9596 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57521.1 7.02156 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56981 6.95566 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-57972.5 7.07666 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57233.9 6.98648 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57434.2 7.01098 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56213.4 6.86193 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56747.4 6.92711 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57889.1 7.0665 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57504.9 7.01955 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57096.6 6.96973 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57651 7.0374 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56716.4 6.92338 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57789.7 7.05434 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56522 6.89959 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60097.2 -7.33611 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987 -7.20065 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60080 -7.33404 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59936.5 -7.3165 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59769.5 -7.29617 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59874.6 -7.30898 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59775.3 -7.29686 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60186.2 -7.347 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60495.8 -7.38477 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60439.3 -7.37789 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60145.6 -7.34201 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59791.1 -7.29875 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59677.3 -7.28488 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59583.5 -7.27344 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60533.1 -7.38936 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59724.9 -7.29071 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62921.4 -7.68089 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63205.4 -7.71552 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62267.4 -7.60105 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62696.7 -7.65347 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63193 -7.71405 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63533.6 -7.75561 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+62980.8 -7.68812 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62964 -7.68612 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63469.3 -7.74779 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63461 -7.74678 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62600 -7.64164 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63414 -7.74102 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62467.2 -7.62548 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62971.6 -7.68703 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63066.7 -7.69867 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62948.3 -7.68424 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84714 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56193.9 -6.85965 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55825.1 -6.8147 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55674.4 -6.79624 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55743.5 -6.80473 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56230.4 -6.86412 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55926.7 -6.82705 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55575.2 -6.78415 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55421.9 -6.76539 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185.4 -6.85863 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+56006.9 -6.83686 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55331.2 -6.75434 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55762.4 -6.80697 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55616.4 -6.78921 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55888 -6.82232 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55807.9 -6.81252 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56633.2 -6.9133 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56902.3 -6.94613 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57128.5 -6.97375 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56942.8 -6.95109 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56488.8 -6.89569 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56938.1 -6.95052 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56630.8 -6.91301 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57019.1 -6.96044 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57045.6 -6.96359 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56614.1 -6.91102 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57499.8 -7.01906 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57046.8 -6.96375 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57594 -7.03054 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57030.5 -6.96179 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56762.4 -6.92908 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57433.7 -7.01104 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59389.3 -7.24973 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59940.1 -7.31694 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59525.1 -7.26633 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59349.5 -7.24484 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59443.7 -7.25635 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58765.1 -7.17351 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59296.9 -7.23842 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+59965.1 -7.32006 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60172.6 -7.34537 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59451.6 -7.2573 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59530.9 -7.26702 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59582.6 -7.27333 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59590.9 -7.27432 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59396.5 -7.25058 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59028.9 -7.20579 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59962.3 -7.31973 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62810.9 -7.66739 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62711.7 -7.65528 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62530.7 -7.63323 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62147.2 -7.58643 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62024.8 -7.57151 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62696.5 -7.65345 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62262.4 -7.60046 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62955.1 -7.68508 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62655 -7.64835 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62592.1 -7.64069 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61832.7 -7.54801 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61987.9 -7.56697 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61948 -7.56205 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+62025.8 -7.57163 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61996 -7.56795 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61777.7 -7.5413 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56732.7 -6.92539 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56863.3 -6.94135 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56282.6 -6.87046 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55937.8 -6.82837 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56278.2 -6.86995 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56282 -6.8704 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55931.1 -6.82758 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55975.4 -6.83298 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55843.1 -6.81683 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56293.4 -6.87176 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56467.7 -6.89304 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56254.6 -6.867 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55755.7 -6.80615 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55895.6 -6.82321 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56669.4 -6.91772 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56671.7 -6.91799 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57139 -6.97499 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57000.1 -6.95808 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57098.7 -6.97019 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+56976.2 -6.95517 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57605.3 -7.03199 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57282.8 -6.99264 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56840.6 -6.93862 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57649.6 -7.03728 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57438.3 -7.01157 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57084.8 -6.96844 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57433.8 -7.01102 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57070.8 -6.96674 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57543.7 -7.02442 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56819.9 -6.93609 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57239.4 -6.98722 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57548.9 -7.02512 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/calibT0_R318-327.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/calibT0_R318-327.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..667f55f12c33a6b4a0cb37616b540739c4ead9c3
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/calibT0_R318-327.cal1
@@ -0,0 +1,1023 @@
+947.337 -0.114176 0.0 !Mu0ChX1TRaw[Co1At1Ch1]
+958.191 -0.115529 0.0 !Mu0ChX2TRaw[Co1At1Ch2]
+959.141 -0.115657 0.0 !Mu0ChX3TRaw[Co1At1Ch3]
+973.263 -0.117409 0.0 !Mu0ChX4TRaw[Co1At1Ch4]
+973.079 -0.117367 0.0 !Mu0ChX5TRaw[Co1At1Ch5]
+972.893 -0.117353 0.0 !Mu0ChX6TRaw[Co1At1Ch6]
+978.231 -0.117969 0.0 !Mu0ChX7TRaw[Co1At1Ch7]
+980.496 -0.118246 0.0 !Mu0ChX8TRaw[Co1At1Ch8]
+979.094 -0.118065 0.0 !Mu0ChX9TRaw[Co1At1Ch9]
+983.012 -0.118546 0.0 !Mu0ChX10TRaw[Co1At1Ch10]
+987.665 -0.119138 0.0 !Mu0ChX11TRaw[Co1At1Ch11]
+987.344 -0.119075 0.0 !Mu0ChX12TRaw[Co1At1Ch12]
+994.919 -0.119996 0.0 !Mu0ChX13TRaw[Co1At1Ch13]
+980.069 -0.118174 0.0 !Mu0ChX14TRaw[Co1At1Ch14]
+991.136 -0.119531 0.0 !Mu0ChX15TRaw[Co1At1Ch15]
+1325.763 -0.118448 0.0 !Mu0ChX16TRaw[Co1At1Ch16]
+956.943 -0.115275 0.0 !Mu0ChX17TRaw[Co1At2Ch1]
+967.056 -0.116527 0.0 !Mu0ChX18TRaw[Co1At2Ch2]
+979.486 -0.118044 0.0 !Mu0ChX19TRaw[Co1At2Ch3]
+980.171 -0.118125 0.0 !Mu0ChX20TRaw[Co1At2Ch4]
+989.203 -0.119233 0.0 !Mu0ChX21TRaw[Co1At2Ch5]
+983.63 -0.118555 0.0 !Mu0ChX22TRaw[Co1At2Ch6]
+994.257 -0.119845 0.0 !Mu0ChX23TRaw[Co1At2Ch7]
+995.64 -0.120005 0.0 !Mu0ChX24TRaw[Co1At2Ch8]
+990.898 -0.119427 0.0 !Mu0ChX25TRaw[Co1At2Ch9]
+1002.054 -0.120777 0.0 !Mu0ChX26TRaw[Co1At2Ch10]
+1004.297 -0.121057 0.0 !Mu0ChX27TRaw[Co1At2Ch11]
+1008.353 -0.121545 0.0 !Mu0ChX28TRaw[Co1At2Ch12]
+1003.834 -0.121021 0.0 !Mu0ChX29TRaw[Co1At2Ch13]
+1002.641 -0.120851 0.0 !Mu0ChX30TRaw[Co1At2Ch14]
+999.274 -0.12045 0.0 !Mu0ChX31TRaw[Co1At2Ch15]
+994.884 -0.119947 0.0 !Mu0ChX32TRaw[Co1At2Ch16]
+873.942 -0.105192 0.0 !Mu0ChX33TRaw[Co1At3Ch1]
+871.682 -0.104955 0.0 !Mu0ChX34TRaw[Co1At3Ch2]
+891.642 -0.107397 0.0 !Mu0ChX35TRaw[Co1At3Ch3]
+880.321 -0.106033 0.0 !Mu0ChX36TRaw[Co1At3Ch4]
+882.156 -0.106227 0.0 !Mu0ChX37TRaw[Co1At3Ch5]
+896.607 -0.108005 0.0 !Mu0ChX38TRaw[Co1At3Ch6]
+898.13 -0.108195 0.0 !Mu0ChX39TRaw[Co1At3Ch7]
+896.691 -0.107979 0.0 !Mu0ChX40TRaw[Co1At3Ch8]
+899.622 -0.108302 0.0 !Mu0ChX41TRaw[Co1At3Ch9]
+899.64 -0.108334 0.0 !Mu0ChX42TRaw[Co1At3Ch10]
+898.696 -0.108243 0.0 !Mu0ChX43TRaw[Co1At3Ch11]
+905.705 -0.109095 0.0 !Mu0ChX44TRaw[Co1At3Ch12]
+901.026 -0.108505 0.0 !Mu0ChX45TRaw[Co1At3Ch13]
+895.522 -0.107877 0.0 !Mu0ChX46TRaw[Co1At3Ch14]
+897.868 -0.108187 0.0 !Mu0ChX47TRaw[Co1At3Ch15]
+930.136 -0.10826 0.0 !Mu0ChX48TRaw[Co1At3Ch16]
+885.768 -0.106556 0.0 !Mu0ChX49TRaw[Co1At4Ch1]
+888.974 -0.106942 0.0 !Mu0ChX50TRaw[Co1At4Ch2]
+894.597 -0.107622 0.0 !Mu0ChX51TRaw[Co1At4Ch3]
+903.027 -0.109464 0.0 !Mu0ChX52TRaw[Co1At4Ch4]
+908.335 -0.109295 0.0 !Mu0ChX53TRaw[Co1At4Ch5]
+911.216 -0.109652 0.0 !Mu0ChX54TRaw[Co1At4Ch6]
+913.763 -0.109955 0.0 !Mu0ChX55TRaw[Co1At4Ch7]
+917.724 -0.110458 0.0 !Mu0ChX56TRaw[Co1At4Ch8]
+926.424 -0.111499 0.0 !Mu0ChX57TRaw[Co1At4Ch9]
+917.91 -0.110456 0.0 !Mu0ChX58TRaw[Co1At4Ch10]
+925.431 -0.111378 0.0 !Mu0ChX59TRaw[Co1At4Ch11]
+930.046 -0.111943 0.0 !Mu0ChX60TRaw[Co1At4Ch12]
+937.211 -0.112807 0.0 !Mu0ChX61TRaw[Co1At4Ch13]
+939.875 -0.11314 0.0 !Mu0ChX62TRaw[Co1At4Ch14]
+941.523 -0.113338 0.0 !Mu0ChX63TRaw[Co1At4Ch15]
+929.926 -0.111982 0.0 !Mu0ChX64TRaw[Co1At4Ch16]
+958.682 -0.115846 0.0 !Mu0ChX65TRaw[Co2At1Ch1]
+963.509 -0.11646 0.0 !Mu0ChX66TRaw[Co2At1Ch2]
+973.199 -0.117644 0.0 !Mu0ChX67TRaw[Co2At1Ch3]
+974.497 -0.117791 0.0 !Mu0ChX68TRaw[Co2At1Ch4]
+977.927 -0.118174 0.0 !Mu0ChX69TRaw[Co2At1Ch5]
+990.533 -0.119717 0.0 !Mu0ChX70TRaw[Co2At1Ch6]
+995.149 -0.120284 0.0 !Mu0ChX71TRaw[Co2At1Ch7]
+996.285 -0.120426 0.0 !Mu0ChX72TRaw[Co2At1Ch8]
+1007.301 -0.121763 0.0 !Mu0ChX73TRaw[Co2At1Ch9]
+988.471 -0.119445 0.0 !Mu0ChX74TRaw[Co2At1Ch10]
+1005.426 -0.121535 0.0 !Mu0ChX75TRaw[Co2At1Ch11]
+996.264 -0.120381 0.0 !Mu0ChX76TRaw[Co2At1Ch12]
+1003.43 -0.121262 0.0 !Mu0ChX77TRaw[Co2At1Ch13]
+1007.423 -0.121766 0.0 !Mu0ChX78TRaw[Co2At1Ch14]
+998.247 -0.120615 0.0 !Mu0ChX79TRaw[Co2At1Ch15]
+1387.089 -0.120952 0.0 !Mu0ChX80TRaw[Co2At1Ch16]
+924.296 -0.111515 0.0 !Mu0ChX81TRaw[Co2At2Ch1]
+933.864 -0.112746 0.0 !Mu0ChX82TRaw[Co2At2Ch2]
+926.031 -0.111774 0.0 !Mu0ChX83TRaw[Co2At2Ch3]
+938.356 -0.113281 0.0 !Mu0ChX84TRaw[Co2At2Ch4]
+931.605 -0.112468 0.0 !Mu0ChX85TRaw[Co2At2Ch5]
+942.766 -0.113819 0.0 !Mu0ChX86TRaw[Co2At2Ch6]
+950.91 -0.114818 0.0 !Mu0ChX87TRaw[Co2At2Ch7]
+944.087 -0.113978 0.0 !Mu0ChX88TRaw[Co2At2Ch8]
+950.899 -0.114813 0.0 !Mu0ChX89TRaw[Co2At2Ch9]
+958.325 -0.115728 0.0 !Mu0ChX90TRaw[Co2At2Ch10]
+965.901 -0.11664 0.0 !Mu0ChX91TRaw[Co2At2Ch11]
+962.574 -0.11625 0.0 !Mu0ChX92TRaw[Co2At2Ch12]
+962.901 -0.116299 0.0 !Mu0ChX93TRaw[Co2At2Ch13]
+961.67 -0.116152 0.0 !Mu0ChX94TRaw[Co2At2Ch14]
+975.645 -0.117868 0.0 !Mu0ChX95TRaw[Co2At2Ch15]
+1001.622 -0.116744 0.0 !Mu0ChX96TRaw[Co2At2Ch16]
+869.411 -0.105013 0.0 !Mu0ChX97TRaw[Co2At3Ch1]
+878.779 -0.106169 0.0 !Mu0ChX98TRaw[Co2At3Ch2]
+879.022 -0.106212 0.0 !Mu0ChX99TRaw[Co2At3Ch3]
+884.843 -0.106905 0.0 !Mu0ChX100TRaw[Co2At3Ch4]
+894.415 -0.108043 0.0 !Mu0ChX101TRaw[Co2At3Ch5]
+901.76 -0.108935 0.0 !Mu0ChX102TRaw[Co2At3Ch6]
+897.652 -0.108442 0.0 !Mu0ChX103TRaw[Co2At3Ch7]
+895.989 -0.108194 0.0 !Mu0ChX104TRaw[Co2At3Ch8]
+905.204 -0.109336 0.0 !Mu0ChX105TRaw[Co2At3Ch9]
+902.911 -0.109053 0.0 !Mu0ChX106TRaw[Co2At3Ch10]
+908.729 -0.109771 0.0 !Mu0ChX107TRaw[Co2At3Ch11]
+906.302 -0.109449 0.0 !Mu0ChX108TRaw[Co2At3Ch12]
+903.456 -0.109128 0.0 !Mu0ChX109TRaw[Co2At3Ch13]
+907.613 -0.109641 0.0 !Mu0ChX110TRaw[Co2At3Ch14]
+903.804 -0.109177 0.0 !Mu0ChX111TRaw[Co2At3Ch15]
+915.521 -0.109478 0.0 !Mu0ChX112TRaw[Co2At3Ch16]
+889.665 -0.107364 0.0 !Mu0ChX113TRaw[Co2At4Ch1]
+892.8 -0.107748 0.0 !Mu0ChX114TRaw[Co2At4Ch2]
+893.081 -0.107782 0.0 !Mu0ChX115TRaw[Co2At4Ch3]
+903.018 -0.109007 0.0 !Mu0ChX116TRaw[Co2At4Ch4]
+906.731 -0.109423 0.0 !Mu0ChX117TRaw[Co2At4Ch5]
+900.058 -0.108648 0.0 !Mu0ChX118TRaw[Co2At4Ch6]
+914.646 -0.110413 0.0 !Mu0ChX119TRaw[Co2At4Ch7]
+915.898 -0.110579 0.0 !Mu0ChX120TRaw[Co2At4Ch8]
+910.258 -0.109898 0.0 !Mu0ChX121TRaw[Co2At4Ch9]
+915.289 -0.1105 0.0 !Mu0ChX122TRaw[Co2At4Ch10]
+923.76 -0.111529 0.0 !Mu0ChX123TRaw[Co2At4Ch11]
+915.924 -0.110604 0.0 !Mu0ChX124TRaw[Co2At4Ch12]
+919.022 -0.110972 0.0 !Mu0ChX125TRaw[Co2At4Ch13]
+920.708 -0.11118 0.0 !Mu0ChX126TRaw[Co2At4Ch14]
+915.998 -0.110613 0.0 !Mu0ChX127TRaw[Co2At4Ch15]
+928.024 -0.111151 0.0 !Mu0ChX128TRaw[Co2At4Ch16]
+943.522 -0.114033 0.0 !Mu0ChY2TRaw[Co3At1Ch2]
+942.377 -0.113921 0.0 !Mu0ChY3TRaw[Co3At1Ch3]
+960.366 -0.116104 0.0 !Mu0ChY4TRaw[Co3At1Ch4]
+955.945 -0.115563 0.0 !Mu0ChY5TRaw[Co3At1Ch5]
+971.627 -0.117481 0.0 !Mu0ChY6TRaw[Co3At1Ch6]
+970.47 -0.117339 0.0 !Mu0ChY7TRaw[Co3At1Ch7]
+967.757 -0.117018 0.0 !Mu0ChY8TRaw[Co3At1Ch8]
+974.517 -0.117842 0.0 !Mu0ChY9TRaw[Co3At1Ch9]
+970.194 -0.117316 0.0 !Mu0ChY10TRaw[Co3At1Ch10]
+972.805 -0.117632 0.0 !Mu0ChY11TRaw[Co3At1Ch11]
+979.06 -0.118398 0.0 !Mu0ChY12TRaw[Co3At1Ch12]
+977.036 -0.11814 0.0 !Mu0ChY13TRaw[Co3At1Ch13]
+972.887 -0.117633 0.0 !Mu0ChY14TRaw[Co3At1Ch14]
+975.479 -0.117944 0.0 !Mu0ChY15TRaw[Co3At1Ch15]
+981.973 -0.118761 0.0 !Mu0ChY16TRaw[Co3At1Ch16]
+937.311 -0.113175 0.0 !Mu0ChY17TRaw[Co3At2Ch1]
+946.334 -0.114309 0.0 !Mu0ChY18TRaw[Co3At2Ch2]
+954.832 -0.115351 0.0 !Mu0ChY19TRaw[Co3At2Ch3]
+946.608 -0.11436 0.0 !Mu0ChY20TRaw[Co3At2Ch4]
+949.338 -0.114686 0.0 !Mu0ChY21TRaw[Co3At2Ch5]
+952.78 -0.115103 0.0 !Mu0ChY22TRaw[Co3At2Ch6]
+958.755 -0.115832 0.0 !Mu0ChY23TRaw[Co3At2Ch7]
+958.899 -0.115841 0.0 !Mu0ChY24TRaw[Co3At2Ch8]
+963.461 -0.116398 0.0 !Mu0ChY25TRaw[Co3At2Ch9]
+961.768 -0.116195 0.0 !Mu0ChY26TRaw[Co3At2Ch10]
+958.433 -0.115516 0.0 !Mu0ChY27TRaw[Co3At2Ch11]
+973.022 -0.117562 0.0 !Mu0ChY28TRaw[Co3At2Ch12]
+975.364 -0.117834 0.0 !Mu0ChY29TRaw[Co3At2Ch13]
+970.379 -0.11722 0.0 !Mu0ChY30TRaw[Co3At2Ch14]
+973.404 -0.11759 0.0 !Mu0ChY31TRaw[Co3At2Ch15]
+968.163 -0.116928 0.0 !Mu0ChY32TRaw[Co3At2Ch16]
+870.503 -0.105131 0.0 !Mu0ChY33TRaw[Co3At3Ch1]
+870.134 -0.105113 0.0 !Mu0ChY34TRaw[Co3At3Ch2]
+887.309 -0.107174 0.0 !Mu0ChY35TRaw[Co3At3Ch3]
+877.246 -0.105955 0.0 !Mu0ChY36TRaw[Co3At3Ch4]
+888.914 -0.107363 0.0 !Mu0ChY37TRaw[Co3At3Ch5]
+888.196 -0.107278 0.0 !Mu0ChY38TRaw[Co3At3Ch6]
+888.904 -0.107347 0.0 !Mu0ChY39TRaw[Co3At3Ch7]
+906.99 -0.109567 0.0 !Mu0ChY40TRaw[Co3At3Ch8]
+904.639 -0.109268 0.0 !Mu0ChY41TRaw[Co3At3Ch9]
+902.704 -0.109045 0.0 !Mu0ChY42TRaw[Co3At3Ch10]
+901.823 -0.108924 0.0 !Mu0ChY43TRaw[Co3At3Ch11]
+912.525 -0.110196 0.0 !Mu0ChY44TRaw[Co3At3Ch12]
+909.706 -0.109895 0.0 !Mu0ChY45TRaw[Co3At3Ch13]
+904.431 -0.10924 0.0 !Mu0ChY46TRaw[Co3At3Ch14]
+914.842 -0.110513 0.0 !Mu0ChY47TRaw[Co3At3Ch15]
+902.82 -0.109056 0.0 !Mu0ChY48TRaw[Co3At3Ch16]
+857.097 -0.103507 0.0 !Mu0ChY49TRaw[Co3At4Ch1]
+868.238 -0.104888 0.0 !Mu0ChY50TRaw[Co3At4Ch2]
+863.632 -0.104347 0.0 !Mu0ChY51TRaw[Co3At4Ch3]
+880.418 -0.106391 0.0 !Mu0ChY52TRaw[Co3At4Ch4]
+883.153 -0.106718 0.0 !Mu0ChY53TRaw[Co3At4Ch5]
+884.327 -0.106878 0.0 !Mu0ChY54TRaw[Co3At4Ch6]
+880.924 -0.106441 0.0 !Mu0ChY55TRaw[Co3At4Ch7]
+888.89 -0.107426 0.0 !Mu0ChY56TRaw[Co3At4Ch8]
+890.451 -0.107608 0.0 !Mu0ChY57TRaw[Co3At4Ch9]
+894.679 -0.108136 0.0 !Mu0ChY58TRaw[Co3At4Ch10]
+901.833 -0.109012 0.0 !Mu0ChY59TRaw[Co3At4Ch11]
+900.642 -0.108611 0.0 !Mu0ChY60TRaw[Co3At4Ch12]
+899.493 -0.108719 0.0 !Mu0ChY61TRaw[Co3At4Ch13]
+906.616 -0.109581 0.0 !Mu0ChY62TRaw[Co3At4Ch14]
+900.751 -0.108895 0.0 !Mu0ChY63TRaw[Co3At4Ch15]
+906.031 -0.109543 0.0 !Mu0ChY64TRaw[Co3At4Ch16]
+965.315 -0.116469 0.0 !Mu0ChY65TRaw[Co4At1Ch1]
+971.839 -0.117302 0.0 !Mu0ChY66TRaw[Co4At1Ch2]
+977.636 -0.118012 0.0 !Mu0ChY67TRaw[Co4At1Ch3]
+977.842 -0.118028 0.0 !Mu0ChY68TRaw[Co4At1Ch4]
+980.742 -0.118378 0.0 !Mu0ChY69TRaw[Co4At1Ch5]
+984.432 -0.118825 0.0 !Mu0ChY70TRaw[Co4At1Ch6]
+984.043 -0.118781 0.0 !Mu0ChY71TRaw[Co4At1Ch7]
+987.06 -0.119156 0.0 !Mu0ChY72TRaw[Co4At1Ch8]
+991.031 -0.119628 0.0 !Mu0ChY73TRaw[Co4At1Ch9]
+982.516 -0.118591 0.0 !Mu0ChY74TRaw[Co4At1Ch10]
+991.101 -0.119656 0.0 !Mu0ChY75TRaw[Co4At1Ch11]
+1001.573 -0.120924 0.0 !Mu0ChY76TRaw[Co4At1Ch12]
+996.82 -0.120327 0.0 !Mu0ChY77TRaw[Co4At1Ch13]
+998.874 -0.120579 0.0 !Mu0ChY78TRaw[Co4At1Ch14]
+996.07 -0.120247 0.0 !Mu0ChY79TRaw[Co4At1Ch15]
+1003.012 -0.121097 0.0 !Mu0ChY80TRaw[Co4At1Ch16]
+971.708 -0.117145 0.0 !Mu0ChY81TRaw[Co4At2Ch1]
+987.463 -0.119118 0.0 !Mu0ChY82TRaw[Co4At2Ch2]
+982.727 -0.118534 0.0 !Mu0ChY83TRaw[Co4At2Ch3]
+997.311 -0.12031 0.0 !Mu0ChY84TRaw[Co4At2Ch4]
+1001.041 -0.120777 0.0 !Mu0ChY85TRaw[Co4At2Ch5]
+1003.673 -0.121085 0.0 !Mu0ChY86TRaw[Co4At2Ch6]
+999.447 -0.120569 0.0 !Mu0ChY87TRaw[Co4At2Ch7]
+1009.884 -0.121839 0.0 !Mu0ChY88TRaw[Co4At2Ch8]
+1005.634 -0.121339 0.0 !Mu0ChY89TRaw[Co4At2Ch9]
+1016.116 -0.122592 0.0 !Mu0ChY90TRaw[Co4At2Ch10]
+1026.636 -0.123897 0.0 !Mu0ChY91TRaw[Co4At2Ch11]
+1026.388 -0.123866 0.0 !Mu0ChY92TRaw[Co4At2Ch12]
+1021.347 -0.123256 0.0 !Mu0ChY93TRaw[Co4At2Ch13]
+1025.69 -0.123786 0.0 !Mu0ChY94TRaw[Co4At2Ch14]
+1022.609 -0.123408 0.0 !Mu0ChY95TRaw[Co4At2Ch15]
+1018.382 -0.122879 0.0 !Mu0ChY96TRaw[Co4At2Ch16]
+884.114 -0.106544 0.0 !Mu0ChY97TRaw[Co4At3Ch1]
+880.476 -0.106139 0.0 !Mu0ChY98TRaw[Co4At3Ch2]
+879.465 -0.106028 0.0 !Mu0ChY99TRaw[Co4At3Ch3]
+896.068 -0.108041 0.0 !Mu0ChY100TRaw[Co4At3Ch4]
+893.327 -0.107707 0.0 !Mu0ChY101TRaw[Co4At3Ch5]
+892.176 -0.10757 0.0 !Mu0ChY102TRaw[Co4At3Ch6]
+896.58 -0.108105 0.0 !Mu0ChY103TRaw[Co4At3Ch7]
+908.687 -0.10959 0.0 !Mu0ChY104TRaw[Co4At3Ch8]
+903.256 -0.108916 0.0 !Mu0ChY105TRaw[Co4At3Ch9]
+916.636 -0.110544 0.0 !Mu0ChY106TRaw[Co4At3Ch10]
+912.014 -0.109981 0.0 !Mu0ChY107TRaw[Co4At3Ch11]
+916.38 -0.11051 0.0 !Mu0ChY108TRaw[Co4At3Ch12]
+915.761 -0.110421 0.0 !Mu0ChY109TRaw[Co4At3Ch13]
+911.291 -0.109894 0.0 !Mu0ChY110TRaw[Co4At3Ch14]
+916.811 -0.110572 0.0 !Mu0ChY111TRaw[Co4At3Ch15]
+918.69 -0.110803 0.0 !Mu0ChY112TRaw[Co4At3Ch16]
+893.594 -0.107535 0.0 !Mu0ChY113TRaw[Co4At4Ch1]
+901.025 -0.108466 0.0 !Mu0ChY114TRaw[Co4At4Ch2]
+900.629 -0.108438 0.0 !Mu0ChY115TRaw[Co4At4Ch3]
+906.59 -0.109158 0.0 !Mu0ChY116TRaw[Co4At4Ch4]
+918.16 -0.110566 0.0 !Mu0ChY117TRaw[Co4At4Ch5]
+911.388 -0.109757 0.0 !Mu0ChY118TRaw[Co4At4Ch6]
+931.217 -0.112167 0.0 !Mu0ChY119TRaw[Co4At4Ch7]
+922.953 -0.111146 0.0 !Mu0ChY120TRaw[Co4At4Ch8]
+933.135 -0.112407 0.0 !Mu0ChY121TRaw[Co4At4Ch9]
+932.64 -0.112337 0.0 !Mu0ChY122TRaw[Co4At4Ch10]
+934.384 -0.112539 0.0 !Mu0ChY123TRaw[Co4At4Ch11]
+937.88 -0.112978 0.0 !Mu0ChY124TRaw[Co4At4Ch12]
+932.437 -0.112316 0.0 !Mu0ChY125TRaw[Co4At4Ch13]
+931.451 -0.112192 0.0 !Mu0ChY126TRaw[Co4At4Ch14]
+928.409 -0.111821 0.0 !Mu0ChY127TRaw[Co4At4Ch15]
+931.268 -0.112162 0.0 !Mu0ChY128TRaw[Co4At4Ch16]
+927.653 -0.11232 0.0 !Mu1ChX1TRaw[Co1At1Ch1]
+941.47 -0.114015 0.0 !Mu1ChX2TRaw[Co1At1Ch2]
+943.919 -0.114341 0.0 !Mu1ChX3TRaw[Co1At1Ch3]
+955.204 -0.115712 0.0 !Mu1ChX4TRaw[Co1At1Ch4]
+955.698 -0.115744 0.0 !Mu1ChX5TRaw[Co1At1Ch5]
+957.389 -0.115962 0.0 !Mu1ChX6TRaw[Co1At1Ch6]
+970.882 -0.117589 0.0 !Mu1ChX7TRaw[Co1At1Ch7]
+966.082 -0.116998 0.0 !Mu1ChX8TRaw[Co1At1Ch8]
+970.157 -0.117498 0.0 !Mu1ChX9TRaw[Co1At1Ch9]
+979.189 -0.118577 0.0 !Mu1ChX10TRaw[Co1At1Ch10]
+975.579 -0.118143 0.0 !Mu1ChX11TRaw[Co1At1Ch11]
+974.976 -0.118071 0.0 !Mu1ChX12TRaw[Co1At1Ch12]
+986.971 -0.11954 0.0 !Mu1ChX13TRaw[Co1At1Ch13]
+987.598 -0.119597 0.0 !Mu1ChX14TRaw[Co1At1Ch14]
+984.568 -0.119236 0.0 !Mu1ChX15TRaw[Co1At1Ch15]
+1372.973 -0.119179 0.0 !Mu1ChX16TRaw[Co1At1Ch16]
+923.467 -0.111777 0.0 !Mu1ChX17TRaw[Co1At2Ch1]
+946.364 -0.114612 0.0 !Mu1ChX18TRaw[Co1At2Ch2]
+947.332 -0.114738 0.0 !Mu1ChX19TRaw[Co1At2Ch3]
+944.888 -0.114439 0.0 !Mu1ChX20TRaw[Co1At2Ch4]
+953.159 -0.115464 0.0 !Mu1ChX21TRaw[Co1At2Ch5]
+966.344 -0.117052 0.0 !Mu1ChX22TRaw[Co1At2Ch6]
+955.696 -0.115762 0.0 !Mu1ChX23TRaw[Co1At2Ch7]
+972.037 -0.117739 0.0 !Mu1ChX24TRaw[Co1At2Ch8]
+970.293 -0.117531 0.0 !Mu1ChX25TRaw[Co1At2Ch9]
+973.488 -0.117923 0.0 !Mu1ChX26TRaw[Co1At2Ch10]
+972.127 -0.117737 0.0 !Mu1ChX27TRaw[Co1At2Ch11]
+975.787 -0.11821 0.0 !Mu1ChX28TRaw[Co1At2Ch12]
+979.747 -0.118677 0.0 !Mu1ChX29TRaw[Co1At2Ch13]
+976.712 -0.118324 0.0 !Mu1ChX30TRaw[Co1At2Ch14]
+975.597 -0.118198 0.0 !Mu1ChX31TRaw[Co1At2Ch15]
+985.963 -0.119148 0.0 !Mu1ChX32TRaw[Co1At2Ch16]
+876.811 -0.106165 0.0 !Mu1ChX33TRaw[Co1At3Ch1]
+876.545 -0.10618 0.0 !Mu1ChX34TRaw[Co1At3Ch2]
+892.001 -0.108064 0.0 !Mu1ChX35TRaw[Co1At3Ch3]
+874.616 -0.105941 0.0 !Mu1ChX36TRaw[Co1At3Ch4]
+892.416 -0.108105 0.0 !Mu1ChX37TRaw[Co1At3Ch5]
+898.265 -0.108823 0.0 !Mu1ChX38TRaw[Co1At3Ch6]
+890.792 -0.107861 0.0 !Mu1ChX39TRaw[Co1At3Ch7]
+895.216 -0.10842 0.0 !Mu1ChX40TRaw[Co1At3Ch8]
+898.199 -0.108779 0.0 !Mu1ChX41TRaw[Co1At3Ch9]
+897.973 -0.108754 0.0 !Mu1ChX42TRaw[Co1At3Ch10]
+906.608 -0.109783 0.0 !Mu1ChX43TRaw[Co1At3Ch11]
+898.647 -0.108855 0.0 !Mu1ChX44TRaw[Co1At3Ch12]
+908.198 -0.110019 0.0 !Mu1ChX45TRaw[Co1At3Ch13]
+906.575 -0.109854 0.0 !Mu1ChX46TRaw[Co1At3Ch14]
+904.122 -0.109528 0.0 !Mu1ChX47TRaw[Co1At3Ch15]
+914.575 -0.110055 0.0 !Mu1ChX48TRaw[Co1At3Ch16]
+866.597 -0.104838 0.0 !Mu1ChX49TRaw[Co1At4Ch1]
+871.749 -0.105455 0.0 !Mu1ChX50TRaw[Co1At4Ch2]
+884.4 -0.107015 0.0 !Mu1ChX51TRaw[Co1At4Ch3]
+886.929 -0.107338 0.0 !Mu1ChX52TRaw[Co1At4Ch4]
+889.876 -0.107685 0.0 !Mu1ChX53TRaw[Co1At4Ch5]
+889.99 -0.107699 0.0 !Mu1ChX54TRaw[Co1At4Ch6]
+893.89 -0.10819 0.0 !Mu1ChX55TRaw[Co1At4Ch7]
+899.669 -0.108878 0.0 !Mu1ChX56TRaw[Co1At4Ch8]
+906.305 -0.1097 0.0 !Mu1ChX57TRaw[Co1At4Ch9]
+901.881 -0.10916 0.0 !Mu1ChX58TRaw[Co1At4Ch10]
+910.66 -0.110244 0.0 !Mu1ChX59TRaw[Co1At4Ch11]
+903.129 -0.109308 0.0 !Mu1ChX60TRaw[Co1At4Ch12]
+916.043 -0.110894 0.0 !Mu1ChX61TRaw[Co1At4Ch13]
+907.46 -0.109867 0.0 !Mu1ChX62TRaw[Co1At4Ch14]
+906.967 -0.109791 0.0 !Mu1ChX63TRaw[Co1At4Ch15]
+914.934 -0.110777 0.0 !Mu1ChX64TRaw[Co1At4Ch16]
+948.25 -0.114723 0.0 !Mu1ChX65TRaw[Co2At1Ch1]
+949.924 -0.114949 0.0 !Mu1ChX66TRaw[Co2At1Ch2]
+963.54 -0.116629 0.0 !Mu1ChX67TRaw[Co2At1Ch3]
+963.146 -0.116557 0.0 !Mu1ChX68TRaw[Co2At1Ch4]
+965.288 -0.116827 0.0 !Mu1ChX69TRaw[Co2At1Ch5]
+973.464 -0.117811 0.0 !Mu1ChX70TRaw[Co2At1Ch6]
+973.072 -0.117758 0.0 !Mu1ChX71TRaw[Co2At1Ch7]
+978.285 -0.118392 0.0 !Mu1ChX72TRaw[Co2At1Ch8]
+975.7 -0.118063 0.0 !Mu1ChX73TRaw[Co2At1Ch9]
+990.499 -0.119853 0.0 !Mu1ChX74TRaw[Co2At1Ch10]
+986.492 -0.119377 0.0 !Mu1ChX75TRaw[Co2At1Ch11]
+984.574 -0.119141 0.0 !Mu1ChX76TRaw[Co2At1Ch12]
+991.565 -0.119982 0.0 !Mu1ChX77TRaw[Co2At1Ch13]
+993.409 -0.120199 0.0 !Mu1ChX78TRaw[Co2At1Ch14]
+993.405 -0.1202 0.0 !Mu1ChX79TRaw[Co2At1Ch15]
+1375.093 -0.120722 0.0 !Mu1ChX80TRaw[Co2At1Ch16]
+973.672 -0.117775 0.0 !Mu1ChX81TRaw[Co2At2Ch1]
+975.656 -0.118024 0.0 !Mu1ChX82TRaw[Co2At2Ch2]
+980.777 -0.118652 0.0 !Mu1ChX83TRaw[Co2At2Ch3]
+994.253 -0.120307 0.0 !Mu1ChX84TRaw[Co2At2Ch4]
+993.689 -0.120215 0.0 !Mu1ChX85TRaw[Co2At2Ch5]
+1003.133 -0.121389 0.0 !Mu1ChX86TRaw[Co2At2Ch6]
+1004.549 -0.121554 0.0 !Mu1ChX87TRaw[Co2At2Ch7]
+996.426 -0.12057 0.0 !Mu1ChX88TRaw[Co2At2Ch8]
+1010.914 -0.122345 0.0 !Mu1ChX89TRaw[Co2At2Ch9]
+1013.245 -0.12261 0.0 !Mu1ChX90TRaw[Co2At2Ch10]
+1008.761 -0.122082 0.0 !Mu1ChX91TRaw[Co2At2Ch11]
+1014.832 -0.12282 0.0 !Mu1ChX92TRaw[Co2At2Ch12]
+1014.498 -0.12279 0.0 !Mu1ChX93TRaw[Co2At2Ch13]
+1017.247 -0.123127 0.0 !Mu1ChX94TRaw[Co2At2Ch14]
+1017.053 -0.123096 0.0 !Mu1ChX95TRaw[Co2At2Ch15]
+1005.005 -0.12163 0.0 !Mu1ChX96TRaw[Co2At2Ch16]
+889.381 -0.107613 0.0 !Mu1ChX97TRaw[Co2At3Ch1]
+887.557 -0.107373 0.0 !Mu1ChX98TRaw[Co2At3Ch2]
+891.215 -0.107838 0.0 !Mu1ChX99TRaw[Co2At3Ch3]
+902.575 -0.109224 0.0 !Mu1ChX100TRaw[Co2At3Ch4]
+902.42 -0.1092 0.0 !Mu1ChX101TRaw[Co2At3Ch5]
+907.423 -0.109791 0.0 !Mu1ChX102TRaw[Co2At3Ch6]
+903.057 -0.109268 0.0 !Mu1ChX103TRaw[Co2At3Ch7]
+918.716 -0.111151 0.0 !Mu1ChX104TRaw[Co2At3Ch8]
+919.908 -0.11128 0.0 !Mu1ChX105TRaw[Co2At3Ch9]
+921.318 -0.111467 0.0 !Mu1ChX106TRaw[Co2At3Ch10]
+926.071 -0.112035 0.0 !Mu1ChX107TRaw[Co2At3Ch11]
+921.56 -0.111519 0.0 !Mu1ChX108TRaw[Co2At3Ch12]
+922.52 -0.111616 0.0 !Mu1ChX109TRaw[Co2At3Ch13]
+914.214 -0.110627 0.0 !Mu1ChX110TRaw[Co2At3Ch14]
+916.863 -0.110941 0.0 !Mu1ChX111TRaw[Co2At3Ch15]
+923.589 -0.11176 0.0 !Mu1ChX112TRaw[Co2At3Ch16]
+897.734 -0.108476 0.0 !Mu1ChX113TRaw[Co2At4Ch1]
+898.559 -0.108567 0.0 !Mu1ChX114TRaw[Co2At4Ch2]
+905.814 -0.10946 0.0 !Mu1ChX115TRaw[Co2At4Ch3]
+911.34 -0.110136 0.0 !Mu1ChX116TRaw[Co2At4Ch4]
+926.296 -0.111977 0.0 !Mu1ChX117TRaw[Co2At4Ch5]
+920.798 -0.111304 0.0 !Mu1ChX118TRaw[Co2At4Ch6]
+933.021 -0.112781 0.0 !Mu1ChX119TRaw[Co2At4Ch7]
+915.505 -0.110659 0.0 !Mu1ChX120TRaw[Co2At4Ch8]
+921.016 -0.111325 0.0 !Mu1ChX121TRaw[Co2At4Ch9]
+928.534 -0.112226 0.0 !Mu1ChX122TRaw[Co2At4Ch10]
+929.497 -0.11236 0.0 !Mu1ChX123TRaw[Co2At4Ch11]
+924.762 -0.111775 0.0 !Mu1ChX124TRaw[Co2At4Ch12]
+922.227 -0.111483 0.0 !Mu1ChX125TRaw[Co2At4Ch13]
+928.191 -0.112193 0.0 !Mu1ChX126TRaw[Co2At4Ch14]
+931.474 -0.112614 0.0 !Mu1ChX127TRaw[Co2At4Ch15]
+925.471 -0.111864 0.0 !Mu1ChX128TRaw[Co2At4Ch16]
+931.94 -0.11282 0.0 !Mu1ChY1TRaw[Co3At1Ch1]
+933.419 -0.113022 0.0 !Mu1ChY2TRaw[Co3At1Ch2]
+944.335 -0.114361 0.0 !Mu1ChY3TRaw[Co3At1Ch3]
+948.282 -0.114834 0.0 !Mu1ChY4TRaw[Co3At1Ch4]
+950.668 -0.115122 0.0 !Mu1ChY5TRaw[Co3At1Ch5]
+954.097 -0.115533 0.0 !Mu1ChY6TRaw[Co3At1Ch6]
+957.465 -0.115938 0.0 !Mu1ChY7TRaw[Co3At1Ch7]
+947.485 -0.114726 0.0 !Mu1ChY8TRaw[Co3At1Ch8]
+954.773 -0.11562 0.0 !Mu1ChY9TRaw[Co3At1Ch9]
+965.117 -0.116854 0.0 !Mu1ChY10TRaw[Co3At1Ch10]
+960.979 -0.116368 0.0 !Mu1ChY11TRaw[Co3At1Ch11]
+968.885 -0.117327 0.0 !Mu1ChY12TRaw[Co3At1Ch12]
+969.205 -0.117358 0.0 !Mu1ChY13TRaw[Co3At1Ch13]
+964.875 -0.116827 0.0 !Mu1ChY14TRaw[Co3At1Ch14]
+966.13 -0.116981 0.0 !Mu1ChY15TRaw[Co3At1Ch15]
+963.905 -0.116717 0.0 !Mu1ChY16TRaw[Co3At1Ch16]
+965.786 -0.116883 0.0 !Mu1ChY17TRaw[Co3At2Ch1]
+967.594 -0.117128 0.0 !Mu1ChY18TRaw[Co3At2Ch2]
+972.057 -0.117665 0.0 !Mu1ChY19TRaw[Co3At2Ch3]
+972.548 -0.117743 0.0 !Mu1ChY20TRaw[Co3At2Ch4]
+984.011 -0.119146 0.0 !Mu1ChY21TRaw[Co3At2Ch5]
+980.785 -0.118747 0.0 !Mu1ChY22TRaw[Co3At2Ch6]
+1411.968 -0.119189 0.0 !Mu1ChY23TRaw[Co3At2Ch7]
+990.581 -0.119964 0.0 !Mu1ChY24TRaw[Co3At2Ch8]
+992.06 -0.120158 0.0 !Mu1ChY25TRaw[Co3At2Ch9]
+992.298 -0.120176 0.0 !Mu1ChY26TRaw[Co3At2Ch10]
+996.629 -0.120728 0.0 !Mu1ChY27TRaw[Co3At2Ch11]
+991.657 -0.120113 0.0 !Mu1ChY28TRaw[Co3At2Ch12]
+993.497 -0.120339 0.0 !Mu1ChY29TRaw[Co3At2Ch13]
+984.983 -0.119308 0.0 !Mu1ChY30TRaw[Co3At2Ch14]
+991.5 -0.120108 0.0 !Mu1ChY31TRaw[Co3At2Ch15]
+986.361 -0.119515 0.0 !Mu1ChY32TRaw[Co3At2Ch16]
+880.913 -0.106691 0.0 !Mu1ChY33TRaw[Co3At3Ch1]
+886.95 -0.10745 0.0 !Mu1ChY34TRaw[Co3At3Ch2]
+882.111 -0.106848 0.0 !Mu1ChY35TRaw[Co3At3Ch3]
+892.446 -0.108037 0.0 !Mu1ChY36TRaw[Co3At3Ch4]
+850617233730.0 -103827000.0 0.0 !Mu1ChY37TRaw[Co3At3Ch5]
+901.892 -0.109433 0.0 !Mu1ChY38TRaw[Co3At3Ch6]
+901.618 -0.110242 0.0 !Mu1ChY39TRaw[Co3At3Ch7]
+903.618 -0.10944 0.0 !Mu1ChY40TRaw[Co3At3Ch8]
+891.626 -0.107957 0.0 !Mu1ChY41TRaw[Co3At3Ch9]
+904.118 -0.109521 0.0 !Mu1ChY42TRaw[Co3At3Ch10]
+896.877 -0.108623 0.0 !Mu1ChY43TRaw[Co3At3Ch11]
+905.223 -0.10969 0.0 !Mu1ChY44TRaw[Co3At3Ch12]
+908.248 -0.109989 0.0 !Mu1ChY45TRaw[Co3At3Ch13]
+901.992 -0.109312 0.0 !Mu1ChY46TRaw[Co3At3Ch14]
+907.207 -0.109844 0.0 !Mu1ChY47TRaw[Co3At3Ch15]
+902.152 -0.109257 0.0 !Mu1ChY48TRaw[Co3At3Ch16]
+884.358 -0.10696 0.0 !Mu1ChY49TRaw[Co3At4Ch1]
+883.358 -0.106852 0.0 !Mu1ChY50TRaw[Co3At4Ch2]
+879.778 -0.106436 0.0 !Mu1ChY51TRaw[Co3At4Ch3]
+893.05 -0.108049 0.0 !Mu1ChY52TRaw[Co3At4Ch4]
+898.719 -0.108781 0.0 !Mu1ChY53TRaw[Co3At4Ch5]
+900.02 -0.108923 0.0 !Mu1ChY54TRaw[Co3At4Ch6]
+899.923 -0.108922 0.0 !Mu1ChY55TRaw[Co3At4Ch7]
+900.202 -0.108949 0.0 !Mu1ChY56TRaw[Co3At4Ch8]
+912.083 -0.110395 0.0 !Mu1ChY57TRaw[Co3At4Ch9]
+911.216 -0.110294 0.0 !Mu1ChY58TRaw[Co3At4Ch10]
+906.57 -0.109746 0.0 !Mu1ChY59TRaw[Co3At4Ch11]
+909.553 -0.109802 0.0 !Mu1ChY60TRaw[Co3At4Ch12]
+906.64 -0.109742 0.0 !Mu1ChY61TRaw[Co3At4Ch13]
+914.633 -0.11072 0.0 !Mu1ChY62TRaw[Co3At4Ch14]
+915.986 -0.110879 0.0 !Mu1ChY63TRaw[Co3At4Ch15]
+916.947 -0.111037 0.0 !Mu1ChY64TRaw[Co3At4Ch16]
+946.849 -0.115194 0.0 !Mu1ChY65TRaw[Co4At1Ch1]
+953.538 -0.116053 0.0 !Mu1ChY66TRaw[Co4At1Ch2]
+959.656 -0.116788 0.0 !Mu1ChY67TRaw[Co4At1Ch3]
+963.122 -0.117211 0.0 !Mu1ChY68TRaw[Co4At1Ch4]
+966.506 -0.117617 0.0 !Mu1ChY69TRaw[Co4At1Ch5]
+974.682 -0.118609 0.0 !Mu1ChY70TRaw[Co4At1Ch6]
+970.103 -0.118053 0.0 !Mu1ChY71TRaw[Co4At1Ch7]
+978.236 -0.119038 0.0 !Mu1ChY72TRaw[Co4At1Ch8]
+979.284 -0.119163 0.0 !Mu1ChY73TRaw[Co4At1Ch9]
+982.439 -0.119552 0.0 !Mu1ChY74TRaw[Co4At1Ch10]
+984.361 -0.119777 0.0 !Mu1ChY75TRaw[Co4At1Ch11]
+981.175 -0.119391 0.0 !Mu1ChY76TRaw[Co4At1Ch12]
+984.681 -0.11981 0.0 !Mu1ChY77TRaw[Co4At1Ch13]
+982.229 -0.119505 0.0 !Mu1ChY78TRaw[Co4At1Ch14]
+982.9 -0.119601 0.0 !Mu1ChY79TRaw[Co4At1Ch15]
+987.91 -0.120194 0.0 !Mu1ChY80TRaw[Co4At1Ch16]
+942.987 -0.114646 0.0 !Mu1ChY81TRaw[Co4At2Ch1]
+951.145 -0.115676 0.0 !Mu1ChY82TRaw[Co4At2Ch2]
+950.113 -0.115551 0.0 !Mu1ChY83TRaw[Co4At2Ch3]
+957.084 -0.116392 0.0 !Mu1ChY84TRaw[Co4At2Ch4]
+956.602 -0.116344 0.0 !Mu1ChY85TRaw[Co4At2Ch5]
+966.808 -0.117589 0.0 !Mu1ChY86TRaw[Co4At2Ch6]
+967.686 -0.117699 0.0 !Mu1ChY87TRaw[Co4At2Ch7]
+974.856 -0.118567 0.0 !Mu1ChY88TRaw[Co4At2Ch8]
+975.823 -0.118705 0.0 !Mu1ChY89TRaw[Co4At2Ch9]
+968.52 -0.117807 0.0 !Mu1ChY90TRaw[Co4At2Ch10]
+973.055 -0.118376 0.0 !Mu1ChY91TRaw[Co4At2Ch11]
+981.007 -0.119333 0.0 !Mu1ChY92TRaw[Co4At2Ch12]
+981.756 -0.119429 0.0 !Mu1ChY93TRaw[Co4At2Ch13]
+974.712 -0.118576 0.0 !Mu1ChY94TRaw[Co4At2Ch14]
+978.546 -0.119031 0.0 !Mu1ChY95TRaw[Co4At2Ch15]
+989.774 -0.120471 0.0 !Mu1ChY96TRaw[Co4At2Ch16]
+872.467 -0.106136 0.0 !Mu1ChY97TRaw[Co4At3Ch1]
+871.126 -0.106 0.0 !Mu1ChY98TRaw[Co4At3Ch2]
+879.223 -0.106555 0.0 !Mu1ChY99TRaw[Co4At3Ch3]
+889.621 -0.108263 0.0 !Mu1ChY100TRaw[Co4At3Ch4]
+887.477 -0.10801 0.0 !Mu1ChY101TRaw[Co4At3Ch5]
+879.614 -0.107044 0.0 !Mu1ChY102TRaw[Co4At3Ch6]
+887.412 -0.108005 0.0 !Mu1ChY103TRaw[Co4At3Ch7]
+890.772 -0.108406 0.0 !Mu1ChY104TRaw[Co4At3Ch8]
+901.139 -0.109653 0.0 !Mu1ChY105TRaw[Co4At3Ch9]
+897.74 -0.10926 0.0 !Mu1ChY106TRaw[Co4At3Ch10]
+901.141 -0.10967 0.0 !Mu1ChY107TRaw[Co4At3Ch11]
+891.801 -0.108536 0.0 !Mu1ChY108TRaw[Co4At3Ch12]
+899.055 -0.109417 0.0 !Mu1ChY109TRaw[Co4At3Ch13]
+906.215 -0.110268 0.0 !Mu1ChY110TRaw[Co4At3Ch14]
+896.475 -0.109108 0.0 !Mu1ChY111TRaw[Co4At3Ch15]
+902.411 -0.109824 0.0 !Mu1ChY112TRaw[Co4At3Ch16]
+858.672 -0.104291 0.0 !Mu1ChY113TRaw[Co4At4Ch1]
+852.315 -0.103549 0.0 !Mu1ChY114TRaw[Co4At4Ch2]
+862.508 -0.104798 0.0 !Mu1ChY115TRaw[Co4At4Ch3]
+857.467 -0.10419 0.0 !Mu1ChY116TRaw[Co4At4Ch4]
+865.939 -0.105221 0.0 !Mu1ChY117TRaw[Co4At4Ch5]
+875.287 -0.106354 0.0 !Mu1ChY118TRaw[Co4At4Ch6]
+879.686 -0.1069 0.0 !Mu1ChY119TRaw[Co4At4Ch7]
+874.387 -0.106252 0.0 !Mu1ChY120TRaw[Co4At4Ch8]
+891.804 -0.108379 0.0 !Mu1ChY121TRaw[Co4At4Ch9]
+892.804 -0.108492 0.0 !Mu1ChY122TRaw[Co4At4Ch10]
+890.606 -0.108225 0.0 !Mu1ChY123TRaw[Co4At4Ch11]
+889.753 -0.108132 0.0 !Mu1ChY124TRaw[Co4At4Ch12]
+892.005 -0.108412 0.0 !Mu1ChY125TRaw[Co4At4Ch13]
+887.457 -0.10784 0.0 !Mu1ChY126TRaw[Co4At4Ch14]
+888.428 -0.107526 0.0 !Mu1ChY127TRaw[Co4At4Ch15]
+948.968 -0.121191 0.0 !Mu1ChY128TRaw[Co4At4Ch16]
+937.964 -0.113282 0.0 !Mu2ChX1TRaw[Co1At1Ch1]
+934.802 -0.112935 0.0 !Mu2ChX2TRaw[Co1At1Ch2]
+942.616 -0.113903 0.0 !Mu2ChX3TRaw[Co1At1Ch3]
+955.004 -0.11541 0.0 !Mu2ChX4TRaw[Co1At1Ch4]
+950.266 -0.114834 0.0 !Mu2ChX5TRaw[Co1At1Ch5]
+967.873 -0.116968 0.0 !Mu2ChX6TRaw[Co1At1Ch6]
+961.34 -0.116144 0.0 !Mu2ChX7TRaw[Co1At1Ch7]
+966.227 -0.116738 0.0 !Mu2ChX8TRaw[Co1At1Ch8]
+958.079 -0.115736 0.0 !Mu2ChX9TRaw[Co1At1Ch9]
+969.979 -0.117191 0.0 !Mu2ChX10TRaw[Co1At1Ch10]
+977.513 -0.117505 0.0 !Mu2ChX11TRaw[Co1At1Ch11]
+967.3 -0.116868 0.0 !Mu2ChX12TRaw[Co1At1Ch12]
+973.198 -0.117596 0.0 !Mu2ChX13TRaw[Co1At1Ch13]
+967.359 -0.116864 0.0 !Mu2ChX14TRaw[Co1At1Ch14]
+967.676 -0.116934 0.0 !Mu2ChX15TRaw[Co1At1Ch15]
+1368.197 -0.118078 0.0 !Mu2ChX16TRaw[Co1At1Ch16]
+919.75 -0.111042 0.0 !Mu2ChX17TRaw[Co1At2Ch1]
+934.845 -0.1129 0.0 !Mu2ChX18TRaw[Co1At2Ch2]
+937.652 -0.113239 0.0 !Mu2ChX19TRaw[Co1At2Ch3]
+936.647 -0.11311 0.0 !Mu2ChX20TRaw[Co1At2Ch4]
+947.463 -0.114433 0.0 !Mu2ChX21TRaw[Co1At2Ch5]
+947.515 -0.113893 0.0 !Mu2ChX22TRaw[Co1At2Ch6]
+945.354 -0.113604 0.0 !Mu2ChX23TRaw[Co1At2Ch7]
+949.129 -0.114596 0.0 !Mu2ChX24TRaw[Co1At2Ch8]
+940.238 -0.113523 0.0 !Mu2ChX25TRaw[Co1At2Ch9]
+948.581 -0.114529 0.0 !Mu2ChX26TRaw[Co1At2Ch10]
+949.163 -0.114587 0.0 !Mu2ChX27TRaw[Co1At2Ch11]
+945.26 -0.114127 0.0 !Mu2ChX28TRaw[Co1At2Ch12]
+952.83 -0.115049 0.0 !Mu2ChX29TRaw[Co1At2Ch13]
+949.046 -0.114577 0.0 !Mu2ChX30TRaw[Co1At2Ch14]
+950.717 -0.114801 0.0 !Mu2ChX31TRaw[Co1At2Ch15]
+1130.766 -0.114725 0.0 !Mu2ChX32TRaw[Co1At2Ch16]
+885.102 -0.106884 0.0 !Mu2ChX33TRaw[Co1At3Ch1]
+882.432 -0.106588 0.0 !Mu2ChX34TRaw[Co1At3Ch2]
+891.72 -0.10771 0.0 !Mu2ChX35TRaw[Co1At3Ch3]
+889.058 -0.10739 0.0 !Mu2ChX36TRaw[Co1At3Ch4]
+902.436 -0.109058 0.0 !Mu2ChX37TRaw[Co1At3Ch5]
+899.526 -0.108685 0.0 !Mu2ChX38TRaw[Co1At3Ch6]
+907.458 -0.109605 0.0 !Mu2ChX39TRaw[Co1At3Ch7]
+904.064 -0.109211 0.0 !Mu2ChX40TRaw[Co1At3Ch8]
+903.964 -0.109168 0.0 !Mu2ChX41TRaw[Co1At3Ch9]
+907.259 -0.109617 0.0 !Mu2ChX42TRaw[Co1At3Ch10]
+914.019 -0.1104 0.0 !Mu2ChX43TRaw[Co1At3Ch11]
+912.823 -0.110254 0.0 !Mu2ChX44TRaw[Co1At3Ch12]
+920.768 -0.111219 0.0 !Mu2ChX45TRaw[Co1At3Ch13]
+919.333 -0.111043 0.0 !Mu2ChX46TRaw[Co1At3Ch14]
+921.925 -0.111378 0.0 !Mu2ChX47TRaw[Co1At3Ch15]
+1304.594 -0.11089 0.0 !Mu2ChX48TRaw[Co1At3Ch16]
+854.163 -0.102956 0.0 !Mu2ChX49TRaw[Co1At4Ch1]
+864.061 -0.104191 0.0 !Mu2ChX50TRaw[Co1At4Ch2]
+873.658 -0.105362 0.0 !Mu2ChX51TRaw[Co1At4Ch3]
+867.698 -0.10464 0.0 !Mu2ChX52TRaw[Co1At4Ch4]
+876.619 -0.105723 0.0 !Mu2ChX53TRaw[Co1At4Ch5]
+876.856 -0.105755 0.0 !Mu2ChX54TRaw[Co1At4Ch6]
+879.033 -0.105984 0.0 !Mu2ChX55TRaw[Co1At4Ch7]
+886.677 -0.106931 0.0 !Mu2ChX56TRaw[Co1At4Ch8]
+895.667 -0.108024 0.0 !Mu2ChX57TRaw[Co1At4Ch9]
+898.221 -0.108307 0.0 !Mu2ChX58TRaw[Co1At4Ch10]
+889.656 -0.107279 0.0 !Mu2ChX59TRaw[Co1At4Ch11]
+900.043 -0.108543 0.0 !Mu2ChX60TRaw[Co1At4Ch12]
+901.375 -0.108721 0.0 !Mu2ChX61TRaw[Co1At4Ch13]
+900.963 -0.108665 0.0 !Mu2ChX62TRaw[Co1At4Ch14]
+897.506 -0.10824 0.0 !Mu2ChX63TRaw[Co1At4Ch15]
+1288.067 -0.107885 0.0 !Mu2ChX64TRaw[Co1At4Ch16]
+970.625 -0.117533 0.0 !Mu2ChX65TRaw[Co2At1Ch1]
+970.595 -0.117545 0.0 !Mu2ChX66TRaw[Co2At1Ch2]
+982.177 -0.118957 0.0 !Mu2ChX67TRaw[Co2At1Ch3]
+987.216 -0.119584 0.0 !Mu2ChX68TRaw[Co2At1Ch4]
+450.0 -0.119902 0.0 !Mu2ChX69TRaw[Co2At1Ch5]
+990.894 -0.12002 0.0 !Mu2ChX70TRaw[Co2At1Ch6]
+992.154 -0.120171 0.0 !Mu2ChX71TRaw[Co2At1Ch7]
+997.339 -0.120802 0.0 !Mu2ChX72TRaw[Co2At1Ch8]
+990.584 -0.119977 0.0 !Mu2ChX73TRaw[Co2At1Ch9]
+999.436 -0.12102 0.0 !Mu2ChX74TRaw[Co2At1Ch10]
+995.246 -0.12055 0.0 !Mu2ChX75TRaw[Co2At1Ch11]
+994.968 -0.12048 0.0 !Mu2ChX76TRaw[Co2At1Ch12]
+1004.63 -0.121688 0.0 !Mu2ChX77TRaw[Co2At1Ch13]
+1008.287 -0.122136 0.0 !Mu2ChX78TRaw[Co2At1Ch14]
+1011.093 -0.122472 0.0 !Mu2ChX79TRaw[Co2At1Ch15]
+1313.045 -0.121488 0.0 !Mu2ChX80TRaw[Co2At1Ch16]
+951.945 -0.115148 0.0 !Mu2ChX81TRaw[Co2At2Ch1]
+962.843 -0.116512 0.0 !Mu2ChX82TRaw[Co2At2Ch2]
+964.811 -0.116735 0.0 !Mu2ChX83TRaw[Co2At2Ch3]
+968.199 -0.117158 0.0 !Mu2ChX84TRaw[Co2At2Ch4]
+968.188 -0.117159 0.0 !Mu2ChX85TRaw[Co2At2Ch5]
+969.593 -0.117336 0.0 !Mu2ChX86TRaw[Co2At2Ch6]
+983.185 -0.118997 0.0 !Mu2ChX87TRaw[Co2At2Ch7]
+982.502 -0.118879 0.0 !Mu2ChX88TRaw[Co2At2Ch8]
+992.909 -0.120152 0.0 !Mu2ChX89TRaw[Co2At2Ch9]
+992.748 -0.120143 0.0 !Mu2ChX90TRaw[Co2At2Ch10]
+991.638 -0.120011 0.0 !Mu2ChX91TRaw[Co2At2Ch11]
+982.075 -0.118788 0.0 !Mu2ChX92TRaw[Co2At2Ch12]
+996.694 -0.120614 0.0 !Mu2ChX93TRaw[Co2At2Ch13]
+1000.609 -0.12112 0.0 !Mu2ChX94TRaw[Co2At2Ch14]
+1001.537 -0.12123 0.0 !Mu2ChX95TRaw[Co2At2Ch15]
+986.471 -0.119394 0.0 !Mu2ChX96TRaw[Co2At2Ch16]
+899.901 -0.10895 0.0 !Mu2ChX97TRaw[Co2At3Ch1]
+916.701 -0.11099 0.0 !Mu2ChX98TRaw[Co2At3Ch2]
+912.456 -0.110483 0.0 !Mu2ChX99TRaw[Co2At3Ch3]
+912.701 -0.110494 0.0 !Mu2ChX100TRaw[Co2At3Ch4]
+921.872 -0.11163 0.0 !Mu2ChX101TRaw[Co2At3Ch5]
+921.335 -0.111573 0.0 !Mu2ChX102TRaw[Co2At3Ch6]
+919.772 -0.111368 0.0 !Mu2ChX103TRaw[Co2At3Ch7]
+924.049 -0.111888 0.0 !Mu2ChX104TRaw[Co2At3Ch8]
+934.177 -0.113122 0.0 !Mu2ChX105TRaw[Co2At3Ch9]
+931.202 -0.112764 0.0 !Mu2ChX106TRaw[Co2At3Ch10]
+936.118 -0.113373 0.0 !Mu2ChX107TRaw[Co2At3Ch11]
+931.356 -0.112797 0.0 !Mu2ChX108TRaw[Co2At3Ch12]
+934.62 -0.113176 0.0 !Mu2ChX109TRaw[Co2At3Ch13]
+941.116 -0.113973 0.0 !Mu2ChX110TRaw[Co2At3Ch14]
+941.858 -0.114066 0.0 !Mu2ChX111TRaw[Co2At3Ch15]
+941.193 -0.113973 0.0 !Mu2ChX112TRaw[Co2At3Ch16]
+901.356 -0.108961 0.0 !Mu2ChX113TRaw[Co2At4Ch1]
+905.904 -0.109531 0.0 !Mu2ChX114TRaw[Co2At4Ch2]
+913.578 -0.110461 0.0 !Mu2ChX115TRaw[Co2At4Ch3]
+913.318 -0.110414 0.0 !Mu2ChX116TRaw[Co2At4Ch4]
+928.72 -0.112323 0.0 !Mu2ChX117TRaw[Co2At4Ch5]
+931.683 -0.11267 0.0 !Mu2ChX118TRaw[Co2At4Ch6]
+937.114 -0.113333 0.0 !Mu2ChX119TRaw[Co2At4Ch7]
+940.124 -0.113698 0.0 !Mu2ChX120TRaw[Co2At4Ch8]
+939.916 -0.113666 0.0 !Mu2ChX121TRaw[Co2At4Ch9]
+948.657 -0.114745 0.0 !Mu2ChX122TRaw[Co2At4Ch10]
+939.964 -0.113673 0.0 !Mu2ChX123TRaw[Co2At4Ch11]
+946.195 -0.11443 0.0 !Mu2ChX124TRaw[Co2At4Ch12]
+935.769 -0.113174 0.0 !Mu2ChX125TRaw[Co2At4Ch13]
+935.549 -0.113143 0.0 !Mu2ChX126TRaw[Co2At4Ch14]
+944.149 -0.114176 0.0 !Mu2ChX127TRaw[Co2At4Ch15]
+944.397 -0.114186 0.0 !Mu2ChX128TRaw[Co2At4Ch16]
+988.419 -0.119525 0.0 !Mu2ChY1TRaw[Co3At1Ch1]
+991.309 -0.119903 0.0 !Mu2ChY2TRaw[Co3At1Ch2]
+990.03 -0.119776 0.0 !Mu2ChY3TRaw[Co3At1Ch3]
+996.324 -0.120524 0.0 !Mu2ChY4TRaw[Co3At1Ch4]
+1001.697 -0.121165 0.0 !Mu2ChY5TRaw[Co3At1Ch5]
+999.789 -0.120947 0.0 !Mu2ChY6TRaw[Co3At1Ch6]
+1004.703 -0.121526 0.0 !Mu2ChY7TRaw[Co3At1Ch7]
+1011.722 -0.122366 0.0 !Mu2ChY8TRaw[Co3At1Ch8]
+1013.114 -0.122539 0.0 !Mu2ChY9TRaw[Co3At1Ch9]
+1004.782 -0.121307 0.0 !Mu2ChY10TRaw[Co3At1Ch10]
+1011.11 -0.122275 0.0 !Mu2ChY11TRaw[Co3At1Ch11]
+1016.173 -0.122898 0.0 !Mu2ChY12TRaw[Co3At1Ch12]
+1018.106 -0.12312 0.0 !Mu2ChY13TRaw[Co3At1Ch13]
+1023.198 -0.123746 0.0 !Mu2ChY14TRaw[Co3At1Ch14]
+1022.258 -0.123621 0.0 !Mu2ChY15TRaw[Co3At1Ch15]
+1023.505 -0.123744 0.0 !Mu2ChY16TRaw[Co3At1Ch16]
+940.868 -0.113632 0.0 !Mu2ChY17TRaw[Co3At2Ch1]
+940.208 -0.11359 0.0 !Mu2ChY18TRaw[Co3At2Ch2]
+939.802 -0.113546 0.0 !Mu2ChY19TRaw[Co3At2Ch3]
+939.415 -0.113526 0.0 !Mu2ChY20TRaw[Co3At2Ch4]
+954.508 -0.115367 0.0 !Mu2ChY21TRaw[Co3At2Ch5]
+970.22 -0.117305 0.0 !Mu2ChY22TRaw[Co3At2Ch6]
+966.365 -0.11682 0.0 !Mu2ChY23TRaw[Co3At2Ch7]
+961.254 -0.116216 0.0 !Mu2ChY24TRaw[Co3At2Ch8]
+976.91 -0.118134 0.0 !Mu2ChY25TRaw[Co3At2Ch9]
+979.589 -0.118446 0.0 !Mu2ChY26TRaw[Co3At2Ch10]
+976.797 -0.117858 0.0 !Mu2ChY27TRaw[Co3At2Ch11]
+983.447 -0.11895 0.0 !Mu2ChY28TRaw[Co3At2Ch12]
+977.618 -0.118238 0.0 !Mu2ChY29TRaw[Co3At2Ch13]
+979.391 -0.118468 0.0 !Mu2ChY30TRaw[Co3At2Ch14]
+978.252 -0.118337 0.0 !Mu2ChY31TRaw[Co3At2Ch15]
+966.295 -0.116905 0.0 !Mu2ChY32TRaw[Co3At2Ch16]
+870.957 -0.105393 0.0 !Mu2ChY33TRaw[Co3At3Ch1]
+877.667 -0.106206 0.0 !Mu2ChY34TRaw[Co3At3Ch2]
+890.089 -0.107711 0.0 !Mu2ChY35TRaw[Co3At3Ch3]
+891.541 -0.10786 0.0 !Mu2ChY36TRaw[Co3At3Ch4]
+894.923 -0.108297 0.0 !Mu2ChY37TRaw[Co3At3Ch5]
+889.591 -0.107628 0.0 !Mu2ChY38TRaw[Co3At3Ch6]
+905.752 -0.109574 0.0 !Mu2ChY39TRaw[Co3At3Ch7]
+904.406 -0.109401 0.0 !Mu2ChY40TRaw[Co3At3Ch8]
+907.053 -0.109756 0.0 !Mu2ChY41TRaw[Co3At3Ch9]
+911.851 -0.110304 0.0 !Mu2ChY42TRaw[Co3At3Ch10]
+907.651 -0.10979 0.0 !Mu2ChY43TRaw[Co3At3Ch11]
+911.108 -0.110231 0.0 !Mu2ChY44TRaw[Co3At3Ch12]
+913.761 -0.110532 0.0 !Mu2ChY45TRaw[Co3At3Ch13]
+916.948 -0.110907 0.0 !Mu2ChY46TRaw[Co3At3Ch14]
+920.785 -0.111371 0.0 !Mu2ChY47TRaw[Co3At3Ch15]
+915.98 -0.110791 0.0 !Mu2ChY48TRaw[Co3At3Ch16]
+894.218 -0.108016 0.0 !Mu2ChY49TRaw[Co3At4Ch1]
+903.46 -0.109155 0.0 !Mu2ChY50TRaw[Co3At4Ch2]
+900.687 -0.108834 0.0 !Mu2ChY51TRaw[Co3At4Ch3]
+914.194 -0.110471 0.0 !Mu2ChY52TRaw[Co3At4Ch4]
+906.942 -0.109622 0.0 !Mu2ChY53TRaw[Co3At4Ch5]
+915.734 -0.110708 0.0 !Mu2ChY54TRaw[Co3At4Ch6]
+919.347 -0.111116 0.0 !Mu2ChY55TRaw[Co3At4Ch7]
+914.796 -0.11061 0.0 !Mu2ChY56TRaw[Co3At4Ch8]
+927.679 -0.11216 0.0 !Mu2ChY57TRaw[Co3At4Ch9]
+918.908 -0.111079 0.0 !Mu2ChY58TRaw[Co3At4Ch10]
+921.274 -0.111393 0.0 !Mu2ChY59TRaw[Co3At4Ch11]
+925.153 -0.11168 0.0 !Mu2ChY60TRaw[Co3At4Ch12]
+941.38 -0.11386 0.0 !Mu2ChY61TRaw[Co3At4Ch13]
+926.865 -0.112068 0.0 !Mu2ChY62TRaw[Co3At4Ch14]
+922.781 -0.111623 0.0 !Mu2ChY63TRaw[Co3At4Ch15]
+930.67 -0.112593 0.0 !Mu2ChY64TRaw[Co3At4Ch16]
+925.368 -0.111864 0.0 !Mu2ChY65TRaw[Co4At1Ch1]
+944.623 -0.114242 0.0 !Mu2ChY66TRaw[Co4At1Ch2]
+948.999 -0.114763 0.0 !Mu2ChY67TRaw[Co4At1Ch3]
+946.624 -0.114477 0.0 !Mu2ChY68TRaw[Co4At1Ch4]
+973.069 -0.117701 0.0 !Mu2ChY69TRaw[Co4At1Ch5]
+961.117 -0.116242 0.0 !Mu2ChY70TRaw[Co4At1Ch6]
+968.585 -0.117144 0.0 !Mu2ChY71TRaw[Co4At1Ch7]
+965.491 -0.116783 0.0 !Mu2ChY72TRaw[Co4At1Ch8]
+956.995 -0.115747 0.0 !Mu2ChY73TRaw[Co4At1Ch9]
+959.056 -0.115989 0.0 !Mu2ChY74TRaw[Co4At1Ch10]
+965.378 -0.116762 0.0 !Mu2ChY75TRaw[Co4At1Ch11]
+978.201 -0.118324 0.0 !Mu2ChY76TRaw[Co4At1Ch12]
+974.601 -0.117892 0.0 !Mu2ChY77TRaw[Co4At1Ch13]
+977.184 -0.118194 0.0 !Mu2ChY78TRaw[Co4At1Ch14]
+967.932 -0.117092 0.0 !Mu2ChY79TRaw[Co4At1Ch15]
+969.982 -0.117343 0.0 !Mu2ChY80TRaw[Co4At1Ch16]
+945.503 -0.114246 0.0 !Mu2ChY81TRaw[Co4At2Ch1]
+940.008 -0.113582 0.0 !Mu2ChY82TRaw[Co4At2Ch2]
+952.084 -0.115097 0.0 !Mu2ChY83TRaw[Co4At2Ch3]
+947.747 -0.114574 0.0 !Mu2ChY84TRaw[Co4At2Ch4]
+956.608 -0.115653 0.0 !Mu2ChY85TRaw[Co4At2Ch5]
+966.982 -0.11692 0.0 !Mu2ChY86TRaw[Co4At2Ch6]
+965.2 -0.116695 0.0 !Mu2ChY87TRaw[Co4At2Ch7]
+970.896 -0.117388 0.0 !Mu2ChY88TRaw[Co4At2Ch8]
+973.644 -0.117739 0.0 !Mu2ChY89TRaw[Co4At2Ch9]
+975.622 -0.11797 0.0 !Mu2ChY90TRaw[Co4At2Ch10]
+980.078 -0.118525 0.0 !Mu2ChY91TRaw[Co4At2Ch11]
+970.722 -0.117371 0.0 !Mu2ChY92TRaw[Co4At2Ch12]
+978.458 -0.118331 0.0 !Mu2ChY93TRaw[Co4At2Ch13]
+978.121 -0.118283 0.0 !Mu2ChY94TRaw[Co4At2Ch14]
+985.632 -0.119174 0.0 !Mu2ChY95TRaw[Co4At2Ch15]
+990.218 -0.119806 0.0 !Mu2ChY96TRaw[Co4At2Ch16]
+898.57 -0.108639 0.0 !Mu2ChY97TRaw[Co4At3Ch1]
+894.551 -0.108189 0.0 !Mu2ChY98TRaw[Co4At3Ch2]
+905.095 -0.109474 0.0 !Mu2ChY99TRaw[Co4At3Ch3]
+903.758 -0.109308 0.0 !Mu2ChY100TRaw[Co4At3Ch4]
+917.519 -0.110997 0.0 !Mu2ChY101TRaw[Co4At3Ch5]
+925.257 -0.111938 0.0 !Mu2ChY102TRaw[Co4At3Ch6]
+915.614 -0.110746 0.0 !Mu2ChY103TRaw[Co4At3Ch7]
+931.547 -0.112691 0.0 !Mu2ChY104TRaw[Co4At3Ch8]
+926.069 -0.112025 0.0 !Mu2ChY105TRaw[Co4At3Ch9]
+921.881 -0.111507 0.0 !Mu2ChY106TRaw[Co4At3Ch10]
+923.086 -0.111663 0.0 !Mu2ChY107TRaw[Co4At3Ch11]
+922.824 -0.111623 0.0 !Mu2ChY108TRaw[Co4At3Ch12]
+926.335 -0.112066 0.0 !Mu2ChY109TRaw[Co4At3Ch13]
+927.082 -0.11214 0.0 !Mu2ChY110TRaw[Co4At3Ch14]
+923.411 -0.111703 0.0 !Mu2ChY111TRaw[Co4At3Ch15]
+913.854 -0.110525 0.0 !Mu2ChY112TRaw[Co4At3Ch16]
+853.851 -0.102981 0.0 !Mu2ChY113TRaw[Co4At4Ch1]
+869.801 -0.104976 0.0 !Mu2ChY114TRaw[Co4At4Ch2]
+877.724 -0.105936 0.0 !Mu2ChY115TRaw[Co4At4Ch3]
+876.167 -0.10575 0.0 !Mu2ChY116TRaw[Co4At4Ch4]
+884.266 -0.106741 0.0 !Mu2ChY117TRaw[Co4At4Ch5]
+880.545 -0.10628 0.0 !Mu2ChY118TRaw[Co4At4Ch6]
+893.039 -0.107805 0.0 !Mu2ChY119TRaw[Co4At4Ch7]
+894.497 -0.107966 0.0 !Mu2ChY120TRaw[Co4At4Ch8]
+884.424 -0.106759 0.0 !Mu2ChY121TRaw[Co4At4Ch9]
+897.829 -0.108381 0.0 !Mu2ChY122TRaw[Co4At4Ch10]
+896.269 -0.108195 0.0 !Mu2ChY123TRaw[Co4At4Ch11]
+450.0 -0.108195 0.0 !Mu2ChY124TRaw[Co4At4Ch12]
+898.903 -0.108519 0.0 !Mu2ChY125TRaw[Co4At4Ch13]
+899.839 -0.10863 0.0 !Mu2ChY126TRaw[Co4At4Ch14]
+900.97 -0.108768 0.0 !Mu2ChY127TRaw[Co4At4Ch15]
+897.094 -0.108297 0.0 !Mu2ChY128TRaw[Co4At4Ch16]
+937.544 -0.113591 0.0 !Mu3ChX1TRaw[Co1At1Ch1]
+950.827 -0.115254 0.0 !Mu3ChX2TRaw[Co1At1Ch2]
+955.415 -0.115822 0.0 !Mu3ChX3TRaw[Co1At1Ch3]
+957.318 -0.116042 0.0 !Mu3ChX4TRaw[Co1At1Ch4]
+949.438 -0.115096 0.0 !Mu3ChX5TRaw[Co1At1Ch5]
+963.979 -0.11686 0.0 !Mu3ChX6TRaw[Co1At1Ch6]
+968.338 -0.117385 0.0 !Mu3ChX7TRaw[Co1At1Ch7]
+973.664 -0.118019 0.0 !Mu3ChX8TRaw[Co1At1Ch8]
+971.735 -0.117779 0.0 !Mu3ChX9TRaw[Co1At1Ch9]
+969.438 -0.117496 0.0 !Mu3ChX10TRaw[Co1At1Ch10]
+971.944 -0.117795 0.0 !Mu3ChX11TRaw[Co1At1Ch11]
+984.038 -0.119273 0.0 !Mu3ChX12TRaw[Co1At1Ch12]
+973.915 -0.118031 0.0 !Mu3ChX13TRaw[Co1At1Ch13]
+980.183 -0.118805 0.0 !Mu3ChX14TRaw[Co1At1Ch14]
+977.813 -0.118524 0.0 !Mu3ChX15TRaw[Co1At1Ch15]
+1361.597 -0.119127 0.0 !Mu3ChX16TRaw[Co1At1Ch16]
+966.423 -0.117029 0.0 !Mu3ChX17TRaw[Co1At2Ch1]
+962.587 -0.116582 0.0 !Mu3ChX18TRaw[Co1At2Ch2]
+981.068 -0.11886 0.0 !Mu3ChX19TRaw[Co1At2Ch3]
+977.201 -0.118386 0.0 !Mu3ChX20TRaw[Co1At2Ch4]
+984.141 -0.119229 0.0 !Mu3ChX21TRaw[Co1At2Ch5]
+991.42 -0.120114 0.0 !Mu3ChX22TRaw[Co1At2Ch6]
+983.826 -0.119177 0.0 !Mu3ChX23TRaw[Co1At2Ch7]
+988.252 -0.119693 0.0 !Mu3ChX24TRaw[Co1At2Ch8]
+985.873 -0.119405 0.0 !Mu3ChX25TRaw[Co1At2Ch9]
+986.801 -0.119523 0.0 !Mu3ChX26TRaw[Co1At2Ch10]
+999.981 -0.12115 0.0 !Mu3ChX27TRaw[Co1At2Ch11]
+995.921 -0.120628 0.0 !Mu3ChX28TRaw[Co1At2Ch12]
+1006.034 -0.121885 0.0 !Mu3ChX29TRaw[Co1At2Ch13]
+999.176 -0.121035 0.0 !Mu3ChX30TRaw[Co1At2Ch14]
+1000.906 -0.121233 0.0 !Mu3ChX31TRaw[Co1At2Ch15]
+995.607 -0.120654 0.0 !Mu3ChX32TRaw[Co1At2Ch16]
+897.267 -0.108693 0.0 !Mu3ChX33TRaw[Co1At3Ch1]
+903.501 -0.109485 0.0 !Mu3ChX34TRaw[Co1At3Ch2]
+911.065 -0.110421 0.0 !Mu3ChX35TRaw[Co1At3Ch3]
+903.943 -0.109588 0.0 !Mu3ChX36TRaw[Co1At3Ch4]
+910.097 -0.110301 0.0 !Mu3ChX37TRaw[Co1At3Ch5]
+918.51 -0.111327 0.0 !Mu3ChX38TRaw[Co1At3Ch6]
+920.085 -0.111495 0.0 !Mu3ChX39TRaw[Co1At3Ch7]
+928.491 -0.112521 0.0 !Mu3ChX40TRaw[Co1At3Ch8]
+936.133 -0.11347 0.0 !Mu3ChX41TRaw[Co1At3Ch9]
+929.814 -0.112717 0.0 !Mu3ChX42TRaw[Co1At3Ch10]
+927.026 -0.112335 0.0 !Mu3ChX43TRaw[Co1At3Ch11]
+450.0 -0.112964 0.0 !Mu3ChX44TRaw[Co1At3Ch12]
+934.299 -0.113245 0.0 !Mu3ChX45TRaw[Co1At3Ch13]
+928.812 -0.11258 0.0 !Mu3ChX46TRaw[Co1At3Ch14]
+936.207 -0.113476 0.0 !Mu3ChX47TRaw[Co1At3Ch15]
+935.925 -0.113256 0.0 !Mu3ChX48TRaw[Co1At3Ch16]
+865.26 -0.104661 0.0 !Mu3ChX49TRaw[Co1At4Ch1]
+865.057 -0.104634 0.0 !Mu3ChX50TRaw[Co1At4Ch2]
+877.397 -0.106155 0.0 !Mu3ChX51TRaw[Co1At4Ch3]
+887.378 -0.107364 0.0 !Mu3ChX52TRaw[Co1At4Ch4]
+887.486 -0.107368 0.0 !Mu3ChX53TRaw[Co1At4Ch5]
+883.578 -0.106861 0.0 !Mu3ChX54TRaw[Co1At4Ch6]
+895.873 -0.108382 0.0 !Mu3ChX55TRaw[Co1At4Ch7]
+898.793 -0.108733 0.0 !Mu3ChX56TRaw[Co1At4Ch8]
+896.274 -0.10844 0.0 !Mu3ChX57TRaw[Co1At4Ch9]
+901.884 -0.10908 0.0 !Mu3ChX58TRaw[Co1At4Ch10]
+897.291 -0.108538 0.0 !Mu3ChX59TRaw[Co1At4Ch11]
+896.985 -0.10849 0.0 !Mu3ChX60TRaw[Co1At4Ch12]
+903.664 -0.109312 0.0 !Mu3ChX61TRaw[Co1At4Ch13]
+904.71 -0.109445 0.0 !Mu3ChX62TRaw[Co1At4Ch14]
+891.201 -0.107803 0.0 !Mu3ChX63TRaw[Co1At4Ch15]
+922.72 -0.108862 0.0 !Mu3ChX64TRaw[Co1At4Ch16]
+983.287 -0.119126 0.0 !Mu3ChX65TRaw[Co2At1Ch1]
+988.478 -0.119789 0.0 !Mu3ChX66TRaw[Co2At1Ch2]
+988.801 -0.119851 0.0 !Mu3ChX67TRaw[Co2At1Ch3]
+1004.624 -0.121753 0.0 !Mu3ChX68TRaw[Co2At1Ch4]
+1005.136 -0.121824 0.0 !Mu3ChX69TRaw[Co2At1Ch5]
+1002.009 -0.121446 0.0 !Mu3ChX70TRaw[Co2At1Ch6]
+1005.682 -0.121893 0.0 !Mu3ChX71TRaw[Co2At1Ch7]
+1009.441 -0.122347 0.0 !Mu3ChX72TRaw[Co2At1Ch8]
+1005.561 -0.121883 0.0 !Mu3ChX73TRaw[Co2At1Ch9]
+1012.386 -0.122684 0.0 !Mu3ChX74TRaw[Co2At1Ch10]
+1020.795 -0.123722 0.0 !Mu3ChX75TRaw[Co2At1Ch11]
+1030.928 -0.124938 0.0 !Mu3ChX76TRaw[Co2At1Ch12]
+1012.528 -0.122709 0.0 !Mu3ChX77TRaw[Co2At1Ch13]
+1012.161 -0.12265 0.0 !Mu3ChX78TRaw[Co2At1Ch14]
+1023.605 -0.124061 0.0 !Mu3ChX79TRaw[Co2At1Ch15]
+1392.417 -0.123313 0.0 !Mu3ChX80TRaw[Co2At1Ch16]
+940.696 -0.11381 0.0 !Mu3ChX81TRaw[Co2At2Ch1]
+946.536 -0.114558 0.0 !Mu3ChX82TRaw[Co2At2Ch2]
+950.101 -0.114986 0.0 !Mu3ChX83TRaw[Co2At2Ch3]
+948.44 -0.114804 0.0 !Mu3ChX84TRaw[Co2At2Ch4]
+963.396 -0.116619 0.0 !Mu3ChX85TRaw[Co2At2Ch5]
+965.983 -0.11693 0.0 !Mu3ChX86TRaw[Co2At2Ch6]
+960.815 -0.116299 0.0 !Mu3ChX87TRaw[Co2At2Ch7]
+965.812 -0.116863 0.0 !Mu3ChX88TRaw[Co2At2Ch8]
+976.455 -0.118161 0.0 !Mu3ChX89TRaw[Co2At2Ch9]
+972.683 -0.117687 0.0 !Mu3ChX90TRaw[Co2At2Ch10]
+977.648 -0.118304 0.0 !Mu3ChX91TRaw[Co2At2Ch11]
+985.535 -0.119256 0.0 !Mu3ChX92TRaw[Co2At2Ch12]
+985.189 -0.119241 0.0 !Mu3ChX93TRaw[Co2At2Ch13]
+984.904 -0.119186 0.0 !Mu3ChX94TRaw[Co2At2Ch14]
+982.3 -0.118879 0.0 !Mu3ChX95TRaw[Co2At2Ch15]
+977.482 -0.118278 0.0 !Mu3ChX96TRaw[Co2At2Ch16]
+860.29 -0.104124 0.0 !Mu3ChX97TRaw[Co2At3Ch1]
+865.042 -0.104728 0.0 !Mu3ChX98TRaw[Co2At3Ch2]
+865.096 -0.104753 0.0 !Mu3ChX99TRaw[Co2At3Ch3]
+871.257 -0.105492 0.0 !Mu3ChX100TRaw[Co2At3Ch4]
+881.122 -0.106693 0.0 !Mu3ChX101TRaw[Co2At3Ch5]
+876.465 -0.10614 0.0 !Mu3ChX102TRaw[Co2At3Ch6]
+881.211 -0.106708 0.0 !Mu3ChX103TRaw[Co2At3Ch7]
+880.166 -0.106567 0.0 !Mu3ChX104TRaw[Co2At3Ch8]
+889.358 -0.107671 0.0 !Mu3ChX105TRaw[Co2At3Ch9]
+893.917 -0.108216 0.0 !Mu3ChX106TRaw[Co2At3Ch10]
+885.756 -0.107225 0.0 !Mu3ChX107TRaw[Co2At3Ch11]
+896.457 -0.108561 0.0 !Mu3ChX108TRaw[Co2At3Ch12]
+896.971 -0.108609 0.0 !Mu3ChX109TRaw[Co2At3Ch13]
+893.394 -0.108191 0.0 !Mu3ChX110TRaw[Co2At3Ch14]
+902.834 -0.109337 0.0 !Mu3ChX111TRaw[Co2At3Ch15]
+900.551 -0.108709 0.0 !Mu3ChX112TRaw[Co2At3Ch16]
+857.647 -0.103629 0.0 !Mu3ChX113TRaw[Co2At4Ch1]
+867.192 -0.10481 0.0 !Mu3ChX114TRaw[Co2At4Ch2]
+867.635 -0.1049 0.0 !Mu3ChX115TRaw[Co2At4Ch3]
+874.016 -0.105647 0.0 !Mu3ChX116TRaw[Co2At4Ch4]
+450.0 -0.126949 0.0 !Mu3ChX117TRaw[Co2At4Ch5]
+878.204 -0.106145 0.0 !Mu3ChX118TRaw[Co2At4Ch6]
+885.379 -0.107055 0.0 !Mu3ChX119TRaw[Co2At4Ch7]
+883.36 -0.10675 0.0 !Mu3ChX120TRaw[Co2At4Ch8]
+886.263 -0.107137 0.0 !Mu3ChX121TRaw[Co2At4Ch9]
+890.004 -0.107599 0.0 !Mu3ChX122TRaw[Co2At4Ch10]
+886.105 -0.107093 0.0 !Mu3ChX123TRaw[Co2At4Ch11]
+895.691 -0.108252 0.0 !Mu3ChX124TRaw[Co2At4Ch12]
+889.843 -0.107522 0.0 !Mu3ChX125TRaw[Co2At4Ch13]
+896.157 -0.108336 0.0 !Mu3ChX126TRaw[Co2At4Ch14]
+883.628 -0.106793 0.0 !Mu3ChX127TRaw[Co2At4Ch15]
+894.234 -0.107896 0.0 !Mu3ChX128TRaw[Co2At4Ch16]
+917.946 -0.11121 0.0 !Mu3ChY1TRaw[Co3At1Ch1]
+925.607 -0.112154 0.0 !Mu3ChY2TRaw[Co3At1Ch2]
+934.525 -0.113241 0.0 !Mu3ChY3TRaw[Co3At1Ch3]
+944.195 -0.114409 0.0 !Mu3ChY4TRaw[Co3At1Ch4]
+941.165 -0.114032 0.0 !Mu3ChY5TRaw[Co3At1Ch5]
+949.297 -0.114994 0.0 !Mu3ChY6TRaw[Co3At1Ch6]
+953.74 -0.115552 0.0 !Mu3ChY7TRaw[Co3At1Ch7]
+953.991 -0.115546 0.0 !Mu3ChY8TRaw[Co3At1Ch8]
+961.72 -0.116506 0.0 !Mu3ChY9TRaw[Co3At1Ch9]
+965.956 -0.117006 0.0 !Mu3ChY10TRaw[Co3At1Ch10]
+968.137 -0.117251 0.0 !Mu3ChY11TRaw[Co3At1Ch11]
+966.978 -0.117093 0.0 !Mu3ChY12TRaw[Co3At1Ch12]
+976.42 -0.118272 0.0 !Mu3ChY13TRaw[Co3At1Ch13]
+982.89 -0.119048 0.0 !Mu3ChY14TRaw[Co3At1Ch14]
+975.1 -0.118075 0.0 !Mu3ChY15TRaw[Co3At1Ch15]
+982.356 -0.118941 0.0 !Mu3ChY16TRaw[Co3At1Ch16]
+968.384 -0.117174 0.0 !Mu3ChY17TRaw[Co3At2Ch1]
+981.477 -0.118815 0.0 !Mu3ChY18TRaw[Co3At2Ch2]
+982.408 -0.118931 0.0 !Mu3ChY19TRaw[Co3At2Ch3]
+987.964 -0.119638 0.0 !Mu3ChY20TRaw[Co3At2Ch4]
+993.613 -0.12034 0.0 !Mu3ChY21TRaw[Co3At2Ch5]
+1003.439 -0.121551 0.0 !Mu3ChY22TRaw[Co3At2Ch6]
+998.76 -0.120998 0.0 !Mu3ChY23TRaw[Co3At2Ch7]
+993.205 -0.120321 0.0 !Mu3ChY24TRaw[Co3At2Ch8]
+999.257 -0.121073 0.0 !Mu3ChY25TRaw[Co3At2Ch9]
+1005.451 -0.121839 0.0 !Mu3ChY26TRaw[Co3At2Ch10]
+1005.606 -0.121856 0.0 !Mu3ChY27TRaw[Co3At2Ch11]
+1011.99 -0.122649 0.0 !Mu3ChY28TRaw[Co3At2Ch12]
+1015.011 -0.12302 0.0 !Mu3ChY29TRaw[Co3At2Ch13]
+1003.879 -0.121668 0.0 !Mu3ChY30TRaw[Co3At2Ch14]
+1013.019 -0.122794 0.0 !Mu3ChY31TRaw[Co3At2Ch15]
+1013.687 -0.122927 0.0 !Mu3ChY32TRaw[Co3At2Ch16]
+869.813 -0.105446 0.0 !Mu3ChY33TRaw[Co3At3Ch1]
+866.542 -0.105092 0.0 !Mu3ChY34TRaw[Co3At3Ch2]
+871.705 -0.10573 0.0 !Mu3ChY35TRaw[Co3At3Ch3]
+868.741 -0.105345 0.0 !Mu3ChY36TRaw[Co3At3Ch4]
+880.227 -0.106744 0.0 !Mu3ChY37TRaw[Co3At3Ch5]
+879.546 -0.106654 0.0 !Mu3ChY38TRaw[Co3At3Ch6]
+885.08 -0.107294 0.0 !Mu3ChY39TRaw[Co3At3Ch7]
+893.736 -0.108361 0.0 !Mu3ChY40TRaw[Co3At3Ch8]
+890.782 -0.10799 0.0 !Mu3ChY41TRaw[Co3At3Ch9]
+894.881 -0.10846 0.0 !Mu3ChY42TRaw[Co3At3Ch10]
+904.234 -0.109593 0.0 !Mu3ChY43TRaw[Co3At3Ch11]
+900.794 -0.109195 0.0 !Mu3ChY44TRaw[Co3At3Ch12]
+895.989 -0.108568 0.0 !Mu3ChY45TRaw[Co3At3Ch13]
+906.161 -0.109804 0.0 !Mu3ChY46TRaw[Co3At3Ch14]
+909.978 -0.110263 0.0 !Mu3ChY47TRaw[Co3At3Ch15]
+902.668 -0.109382 0.0 !Mu3ChY48TRaw[Co3At3Ch16]
+876.095 -0.105997 0.0 !Mu3ChY49TRaw[Co3At4Ch1]
+882.164 -0.106772 0.0 !Mu3ChY50TRaw[Co3At4Ch2]
+893.829 -0.108217 0.0 !Mu3ChY51TRaw[Co3At4Ch3]
+896.423 -0.108527 0.0 !Mu3ChY52TRaw[Co3At4Ch4]
+890.601 -0.107825 0.0 !Mu3ChY53TRaw[Co3At4Ch5]
+899.134 -0.108862 0.0 !Mu3ChY54TRaw[Co3At4Ch6]
+903.962 -0.109456 0.0 !Mu3ChY55TRaw[Co3At4Ch7]
+909.776 -0.110152 0.0 !Mu3ChY56TRaw[Co3At4Ch8]
+914.077 -0.110718 0.0 !Mu3ChY57TRaw[Co3At4Ch9]
+912.813 -0.11056 0.0 !Mu3ChY58TRaw[Co3At4Ch10]
+921.655 -0.111636 0.0 !Mu3ChY59TRaw[Co3At4Ch11]
+907.554 -0.109934 0.0 !Mu3ChY60TRaw[Co3At4Ch12]
+921.006 -0.111581 0.0 !Mu3ChY61TRaw[Co3At4Ch13]
+921.705 -0.111694 0.0 !Mu3ChY62TRaw[Co3At4Ch14]
+916.94 -0.1111 0.0 !Mu3ChY63TRaw[Co3At4Ch15]
+919.695 -0.11144 0.0 !Mu3ChY64TRaw[Co3At4Ch16]
+902.544 -0.109216 0.0 !Mu3ChY65TRaw[Co4At1Ch1]
+908.915 -0.110026 0.0 !Mu3ChY66TRaw[Co4At1Ch2]
+909.56 -0.110106 0.0 !Mu3ChY67TRaw[Co4At1Ch3]
+918.028 -0.11114 0.0 !Mu3ChY68TRaw[Co4At1Ch4]
+929.408 -0.11252 0.0 !Mu3ChY69TRaw[Co4At1Ch5]
+937.82 -0.113544 0.0 !Mu3ChY70TRaw[Co4At1Ch6]
+930.573 -0.112672 0.0 !Mu3ChY71TRaw[Co4At1Ch7]
+929.18 -0.112491 0.0 !Mu3ChY72TRaw[Co4At1Ch8]
+945.251 -0.114462 0.0 !Mu3ChY73TRaw[Co4At1Ch9]
+937.76 -0.11354 0.0 !Mu3ChY74TRaw[Co4At1Ch10]
+953.926 -0.115517 0.0 !Mu3ChY75TRaw[Co4At1Ch11]
+950.321 -0.115086 0.0 !Mu3ChY76TRaw[Co4At1Ch12]
+962.882 -0.116618 0.0 !Mu3ChY77TRaw[Co4At1Ch13]
+951.559 -0.115232 0.0 !Mu3ChY78TRaw[Co4At1Ch14]
+944.24 -0.114343 0.0 !Mu3ChY79TRaw[Co4At1Ch15]
+949.269 -0.114947 0.0 !Mu3ChY80TRaw[Co4At1Ch16]
+969.213 -0.117288 0.0 !Mu3ChY81TRaw[Co4At2Ch1]
+980.623 -0.118727 0.0 !Mu3ChY82TRaw[Co4At2Ch2]
+986.747 -0.119474 0.0 !Mu3ChY83TRaw[Co4At2Ch3]
+990.256 -0.119909 0.0 !Mu3ChY84TRaw[Co4At2Ch4]
+992.055 -0.120116 0.0 !Mu3ChY85TRaw[Co4At2Ch5]
+999.047 -0.120975 0.0 !Mu3ChY86TRaw[Co4At2Ch6]
+995.992 -0.120606 0.0 !Mu3ChY87TRaw[Co4At2Ch7]
+997.417 -0.12076 0.0 !Mu3ChY88TRaw[Co4At2Ch8]
+1002.04 -0.121336 0.0 !Mu3ChY89TRaw[Co4At2Ch9]
+1013.247 -0.122713 0.0 !Mu3ChY90TRaw[Co4At2Ch10]
+1016.426 -0.1231 0.0 !Mu3ChY91TRaw[Co4At2Ch11]
+1004.734 -0.121678 0.0 !Mu3ChY92TRaw[Co4At2Ch12]
+1013.118 -0.122697 0.0 !Mu3ChY93TRaw[Co4At2Ch13]
+1016.325 -0.123087 0.0 !Mu3ChY94TRaw[Co4At2Ch14]
+1008.607 -0.122144 0.0 !Mu3ChY95TRaw[Co4At2Ch15]
+1009.63 -0.122274 0.0 !Mu3ChY96TRaw[Co4At2Ch16]
+872.56 -0.105573 0.0 !Mu3ChY97TRaw[Co4At3Ch1]
+869.392 -0.105224 0.0 !Mu3ChY98TRaw[Co4At3Ch2]
+874.15 -0.105791 0.0 !Mu3ChY99TRaw[Co4At3Ch3]
+883.33 -0.106904 0.0 !Mu3ChY100TRaw[Co4At3Ch4]
+890.403 -0.107789 0.0 !Mu3ChY101TRaw[Co4At3Ch5]
+890.223 -0.107742 0.0 !Mu3ChY102TRaw[Co4At3Ch6]
+901.174 -0.109085 0.0 !Mu3ChY103TRaw[Co4At3Ch7]
+893.31 -0.108126 0.0 !Mu3ChY104TRaw[Co4At3Ch8]
+900.562 -0.108999 0.0 !Mu3ChY105TRaw[Co4At3Ch9]
+892.986 -0.108068 0.0 !Mu3ChY106TRaw[Co4At3Ch10]
+892.398 -0.108006 0.0 !Mu3ChY107TRaw[Co4At3Ch11]
+901.475 -0.109125 0.0 !Mu3ChY108TRaw[Co4At3Ch12]
+904.207 -0.109439 0.0 !Mu3ChY109TRaw[Co4At3Ch13]
+901.95 -0.109168 0.0 !Mu3ChY110TRaw[Co4At3Ch14]
+897.548 -0.108625 0.0 !Mu3ChY111TRaw[Co4At3Ch15]
+903.933 -0.109416 0.0 !Mu3ChY112TRaw[Co4At3Ch16]
+889.942 -0.107554 0.0 !Mu3ChY113TRaw[Co4At4Ch1]
+897.252 -0.108473 0.0 !Mu3ChY114TRaw[Co4At4Ch2]
+900.207 -0.108848 0.0 !Mu3ChY115TRaw[Co4At4Ch3]
+895.641 -0.108292 0.0 !Mu3ChY116TRaw[Co4At4Ch4]
+903.842 -0.109288 0.0 !Mu3ChY117TRaw[Co4At4Ch5]
+909.27 -0.109943 0.0 !Mu3ChY118TRaw[Co4At4Ch6]
+907.84 -0.109765 0.0 !Mu3ChY119TRaw[Co4At4Ch7]
+907.053 -0.109672 0.0 !Mu3ChY120TRaw[Co4At4Ch8]
+914.069 -0.110512 0.0 !Mu3ChY121TRaw[Co4At4Ch9]
+922.641 -0.111588 0.0 !Mu3ChY122TRaw[Co4At4Ch10]
+925.361 -0.111915 0.0 !Mu3ChY123TRaw[Co4At4Ch11]
+907.828 -0.109772 0.0 !Mu3ChY124TRaw[Co4At4Ch12]
+912.093 -0.11029 0.0 !Mu3ChY125TRaw[Co4At4Ch13]
+917.412 -0.110947 0.0 !Mu3ChY126TRaw[Co4At4Ch14]
+918.908 -0.111116 0.0 !Mu3ChY127TRaw[Co4At4Ch15]
+927.125 -0.112131 0.0 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/info.txt b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/info.txt
new file mode 100644
index 0000000000000000000000000000000000000000..cca06db6c14d1d4ac04f9243ea55f77f43f186fd
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R318-327/info.txt
@@ -0,0 +1 @@
+Calibration en temps pour les runs 318-325. pour 326-327 voir autre dossier
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..0410c348a72dd1494b2d7a9e20311561781231a9
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M0_E/Cal_Str_X_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0eb48b351149457ba1c4f89d88bd91df547fa886
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E -61.7106 0.00753299
+MUSETT_T0_DSSD_X1_E -61.9105 0.00755737
+MUSETT_T0_DSSD_X2_E -61.7824 0.0075418099999999995
+MUSETT_T0_DSSD_X3_E -61.5101 0.00750856
+MUSETT_T0_DSSD_X4_E -61.8399 0.007548829999999999
+MUSETT_T0_DSSD_X5_E -61.6113 0.00752091
+MUSETT_T0_DSSD_X6_E -61.398 0.00749483
+MUSETT_T0_DSSD_X7_E -61.1841 0.0074687
+MUSETT_T0_DSSD_X8_E -61.0465 0.00745195
+MUSETT_T0_DSSD_X9_E -62.6826 0.00765164
+MUSETT_T0_DSSD_X10_E -62.3583 0.00761207
+MUSETT_T0_DSSD_X11_E -61.942 0.00756128
+MUSETT_T0_DSSD_X12_E -62.0878 0.00757904
+MUSETT_T0_DSSD_X13_E -61.755300000000005 0.00753843
+MUSETT_T0_DSSD_X14_E -62.4126 0.0076187
+MUSETT_T0_DSSD_X15_E -61.2939 0.00748215
+MUSETT_T0_DSSD_X16_E -63.052699999999994 0.007696799999999999
+MUSETT_T0_DSSD_X17_E -62.6907 0.0076526699999999994
+MUSETT_T0_DSSD_X18_E -62.1905 0.0075915800000000005
+MUSETT_T0_DSSD_X19_E -62.4109 0.0076185
+MUSETT_T0_DSSD_X20_E -63.893699999999995 0.00779946
+MUSETT_T0_DSSD_X21_E -62.6129 0.007643130000000001
+MUSETT_T0_DSSD_X22_E -62.337199999999996 0.00760945
+MUSETT_T0_DSSD_X23_E -62.6744 0.00765062
+MUSETT_T0_DSSD_X24_E -62.899300000000004 0.00767809
+MUSETT_T0_DSSD_X25_E -62.9523 0.00768455
+MUSETT_T0_DSSD_X26_E -63.0533 0.00769687
+MUSETT_T0_DSSD_X27_E -62.674699999999994 0.00765067
+MUSETT_T0_DSSD_X28_E -62.9974 0.0076900399999999995
+MUSETT_T0_DSSD_X29_E -62.6271 0.00764487
+MUSETT_T0_DSSD_X30_E -63.448800000000006 0.00774516
+MUSETT_T0_DSSD_X31_E -62.603 0.00764186
+MUSETT_T0_DSSD_X32_E -56.4302 0.0068883799999999995
+MUSETT_T0_DSSD_X33_E -56.7999 0.00693354
+MUSETT_T0_DSSD_X34_E -55.532 0.00677879
+MUSETT_T0_DSSD_X35_E -56.348800000000004 0.00687847
+MUSETT_T0_DSSD_X36_E -55.9945 0.00683521
+MUSETT_T0_DSSD_X37_E -10.0 0.0
+MUSETT_T0_DSSD_X38_E -55.914699999999996 0.0068255
+MUSETT_T0_DSSD_X39_E -55.6938 0.00679852
+MUSETT_T0_DSSD_X40_E -56.2171 0.00686239
+MUSETT_T0_DSSD_X41_E -55.8635 0.00681922
+MUSETT_T0_DSSD_X42_E -56.201699999999995 0.00686046
+MUSETT_T0_DSSD_X43_E -56.3099 0.00687373
+MUSETT_T0_DSSD_X44_E -56.346599999999995 0.00687818
+MUSETT_T0_DSSD_X45_E -10.0 0.0
+MUSETT_T0_DSSD_X46_E -10.0 0.0
+MUSETT_T0_DSSD_X47_E -55.9131 0.0068252899999999995
+MUSETT_T0_DSSD_X48_E -57.8332 0.007059650000000001
+MUSETT_T0_DSSD_X49_E -57.967800000000004 0.00707605
+MUSETT_T0_DSSD_X50_E -57.7573 0.00705042
+MUSETT_T0_DSSD_X51_E -57.3263 0.0069977799999999995
+MUSETT_T0_DSSD_X52_E -58.2072 0.0071053
+MUSETT_T0_DSSD_X53_E -57.200300000000006 0.0069824200000000005
+MUSETT_T0_DSSD_X54_E -57.8344 0.00705977
+MUSETT_T0_DSSD_X55_E -57.512800000000006 0.00702054
+MUSETT_T0_DSSD_X56_E -58.4845 0.0071391200000000005
+MUSETT_T0_DSSD_X57_E -57.751 0.00704962
+MUSETT_T0_DSSD_X58_E -57.3322 0.0069984900000000004
+MUSETT_T0_DSSD_X59_E -57.8001 0.00705564
+MUSETT_T0_DSSD_X60_E -57.1654 0.00697819
+MUSETT_T0_DSSD_X61_E -57.9703 0.00707636
+MUSETT_T0_DSSD_X62_E -57.8846 0.00706593
+MUSETT_T0_DSSD_X63_E -58.159800000000004 0.007099510000000001
+MUSETT_T0_DSSD_X64_E -63.4461 0.00774486
+MUSETT_T0_DSSD_X65_E -63.6099 0.00776484
+MUSETT_T0_DSSD_X66_E -63.3471 0.007732770000000001
+MUSETT_T0_DSSD_X67_E -64.08319999999999 0.00782268
+MUSETT_T0_DSSD_X68_E -63.2105 0.00771623
+MUSETT_T0_DSSD_X69_E -63.9794 0.00781003
+MUSETT_T0_DSSD_X70_E -63.860800000000005 0.00779555
+MUSETT_T0_DSSD_X71_E -63.3581 0.00773418
+MUSETT_T0_DSSD_X72_E -64.2157 0.007838949999999999
+MUSETT_T0_DSSD_X73_E -63.3016 0.00772725
+MUSETT_T0_DSSD_X74_E -64.05069999999999 0.00781888
+MUSETT_T0_DSSD_X75_E -64.0167 0.00781467
+MUSETT_T0_DSSD_X76_E -63.688900000000004 0.00777478
+MUSETT_T0_DSSD_X77_E -63.7891 0.0077870100000000005
+MUSETT_T0_DSSD_X78_E -64.2832 0.00784737
+MUSETT_T0_DSSD_X79_E -64.9143 0.007924398000000001
+MUSETT_T0_DSSD_X80_E -61.2394 0.007475819999999999
+MUSETT_T0_DSSD_X81_E -60.9385 0.00743906
+MUSETT_T0_DSSD_X82_E -61.1397 0.0074636599999999996
+MUSETT_T0_DSSD_X83_E -61.4974 0.00750726
+MUSETT_T0_DSSD_X84_E -61.3987 0.00749521
+MUSETT_T0_DSSD_X85_E -61.8996 0.00755626
+MUSETT_T0_DSSD_X86_E -61.451800000000006 0.00750166
+MUSETT_T0_DSSD_X87_E -62.196400000000004 0.00759254
+MUSETT_T0_DSSD_X88_E -61.9481 0.00756212
+MUSETT_T0_DSSD_X89_E -61.6171 0.00752168
+MUSETT_T0_DSSD_X90_E -61.7374 0.00753637
+MUSETT_T0_DSSD_X91_E -62.8236 0.00766899
+MUSETT_T0_DSSD_X92_E -61.8858 0.00755448
+MUSETT_T0_DSSD_X93_E -61.049699999999994 0.00745242
+MUSETT_T0_DSSD_X94_E -61.4595 0.00750241
+MUSETT_T0_DSSD_X95_E -62.2011 0.00759292
+MUSETT_T0_DSSD_X96_E -57.166199999999996 0.00697828
+MUSETT_T0_DSSD_X97_E -57.5553 0.00702572
+MUSETT_T0_DSSD_X98_E -57.8035 0.007056079999999999
+MUSETT_T0_DSSD_X99_E -57.0676 0.0069662199999999995
+MUSETT_T0_DSSD_X100_E -58.132400000000004 0.00709623
+MUSETT_T0_DSSD_X101_E -57.744699999999995 0.00704887
+MUSETT_T0_DSSD_X102_E -57.713300000000004 0.00704507
+MUSETT_T0_DSSD_X103_E -57.296699999999994 0.00699421
+MUSETT_T0_DSSD_X104_E -57.401199999999996 0.00700701
+MUSETT_T0_DSSD_X105_E -57.9542 0.00707453
+MUSETT_T0_DSSD_X106_E -57.3056 0.00699532
+MUSETT_T0_DSSD_X107_E -57.5897 0.00703005
+MUSETT_T0_DSSD_X108_E -58.5998 0.007153260000000001
+MUSETT_T0_DSSD_X109_E -58.011 0.007081489999999999
+MUSETT_T0_DSSD_X110_E -57.7019 0.00704369
+MUSETT_T0_DSSD_X111_E -57.802 0.0070558899999999996
+MUSETT_T0_DSSD_X112_E -59.0131 0.00720381
+MUSETT_T0_DSSD_X113_E -59.1996 0.00722655
+MUSETT_T0_DSSD_X114_E -58.5257 0.0071443
+MUSETT_T0_DSSD_X115_E -58.674800000000005 0.00716253
+MUSETT_T0_DSSD_X116_E -58.1328 0.00709631
+MUSETT_T0_DSSD_X117_E -58.328300000000006 0.00712018
+MUSETT_T0_DSSD_X118_E -58.2819 0.00711452
+MUSETT_T0_DSSD_X119_E -58.5673 0.00714936
+MUSETT_T0_DSSD_X120_E -58.5649 0.00714905
+MUSETT_T0_DSSD_X121_E -58.7344 0.00716969
+MUSETT_T0_DSSD_X122_E -58.596199999999996 0.007152840000000001
+MUSETT_T0_DSSD_X123_E -59.320800000000006 0.00724127
+MUSETT_T0_DSSD_X124_E -57.9063 0.00706867
+MUSETT_T0_DSSD_X125_E -58.5027 0.00714141
+MUSETT_T0_DSSD_X126_E -58.429300000000005 0.0071325
+MUSETT_T0_DSSD_X127_E -59.5614 0.007270629999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M0_E/Cal_Str_Y_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..728b3e6a460711d06638382cddfccfbba2fee9d7
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_Y0_E -10.0 0.0
+MUSETT_T0_DSSD_Y1_E 60.4299 -0.0073767699999999995
+MUSETT_T0_DSSD_Y2_E 60.9525 -0.00744053
+MUSETT_T0_DSSD_Y3_E 61.1136 -0.00746018
+MUSETT_T0_DSSD_Y4_E 60.0338 -0.00732839
+MUSETT_T0_DSSD_Y5_E 60.1789 -0.00734611
+MUSETT_T0_DSSD_Y6_E 60.8017 -0.00742211
+MUSETT_T0_DSSD_Y7_E 60.445 -0.00737857
+MUSETT_T0_DSSD_Y8_E 60.092 -0.007335479999999999
+MUSETT_T0_DSSD_Y9_E 59.987 -0.00732266
+MUSETT_T0_DSSD_Y10_E 60.401300000000006 -0.00737321
+MUSETT_T0_DSSD_Y11_E 60.0485 -0.00733015
+MUSETT_T0_DSSD_Y12_E 60.8881 -0.00743271
+MUSETT_T0_DSSD_Y13_E 61.0137 -0.00744798
+MUSETT_T0_DSSD_Y14_E 61.158 -0.00746561
+MUSETT_T0_DSSD_Y15_E 60.7384 -0.00741441
+MUSETT_T0_DSSD_Y16_E 60.3853 -0.00737129
+MUSETT_T0_DSSD_Y17_E 60.5455 -0.00739083
+MUSETT_T0_DSSD_Y18_E 60.330400000000004 -0.00736461
+MUSETT_T0_DSSD_Y19_E 60.139300000000006 -0.00734125
+MUSETT_T0_DSSD_Y20_E 60.389199999999995 -0.00737176
+MUSETT_T0_DSSD_Y21_E 60.3961 -0.00737259
+MUSETT_T0_DSSD_Y22_E 60.279900000000005 -0.00735844
+MUSETT_T0_DSSD_Y23_E 59.7309 -0.00729143
+MUSETT_T0_DSSD_Y24_E 60.2169 -0.00735079
+MUSETT_T0_DSSD_Y25_E 59.7766 -0.007297
+MUSETT_T0_DSSD_Y26_E 60.0731 -0.007333210000000001
+MUSETT_T0_DSSD_Y27_E 60.4447 -0.0073785299999999995
+MUSETT_T0_DSSD_Y28_E 59.887699999999995 -0.00731055
+MUSETT_T0_DSSD_Y29_E 59.6366 -0.00727991
+MUSETT_T0_DSSD_Y30_E 59.8233 -0.00730273
+MUSETT_T0_DSSD_Y31_E 61.045199999999994 -0.00745187
+MUSETT_T0_DSSD_Y32_E 56.5754 -0.00690626
+MUSETT_T0_DSSD_Y33_E 57.0856 -0.00696849
+MUSETT_T0_DSSD_Y34_E 56.5049 -0.00689761
+MUSETT_T0_DSSD_Y35_E 57.0727 -0.0069669499999999995
+MUSETT_T0_DSSD_Y36_E 57.4 -0.00700688
+MUSETT_T0_DSSD_Y37_E 57.2639 -0.00699027
+MUSETT_T0_DSSD_Y38_E 56.45 -0.00689094
+MUSETT_T0_DSSD_Y39_E 56.455400000000004 -0.0068915899999999995
+MUSETT_T0_DSSD_Y40_E 56.954 -0.00695243
+MUSETT_T0_DSSD_Y41_E 56.8438 -0.006939020000000001
+MUSETT_T0_DSSD_Y42_E 56.6301 -0.00691291
+MUSETT_T0_DSSD_Y43_E 56.4975 -0.00689672
+MUSETT_T0_DSSD_Y44_E 56.8091 -0.00693476
+MUSETT_T0_DSSD_Y45_E 56.946400000000004 -0.00695152
+MUSETT_T0_DSSD_Y46_E 57.7258 -0.00704665
+MUSETT_T0_DSSD_Y47_E 56.552699999999994 -0.006903439999999999
+MUSETT_T0_DSSD_Y48_E 57.5922 -0.00703033
+MUSETT_T0_DSSD_Y49_E 57.040099999999995 -0.00696295
+MUSETT_T0_DSSD_Y50_E 56.8125 -0.00693518
+MUSETT_T0_DSSD_Y51_E 56.466800000000006 -0.00689296
+MUSETT_T0_DSSD_Y52_E 57.1237 -0.00697317
+MUSETT_T0_DSSD_Y53_E 56.8535 -0.00694018
+MUSETT_T0_DSSD_Y54_E 56.671800000000005 -0.00691801
+MUSETT_T0_DSSD_Y55_E 57.626 -0.00703448
+MUSETT_T0_DSSD_Y56_E 57.3861 -0.007005239999999999
+MUSETT_T0_DSSD_Y57_E 56.822 -0.0069363
+MUSETT_T0_DSSD_Y58_E 57.017 -0.00696019
+MUSETT_T0_DSSD_Y59_E 57.2442 -0.006987930000000001
+MUSETT_T0_DSSD_Y60_E 57.2985 -0.00699452
+MUSETT_T0_DSSD_Y61_E 57.094 -0.0069695
+MUSETT_T0_DSSD_Y62_E 57.5846 -0.007029410000000001
+MUSETT_T0_DSSD_Y63_E 57.9394 -0.00707277
+MUSETT_T0_DSSD_Y64_E 60.9985 -0.00744617
+MUSETT_T0_DSSD_Y65_E 61.1544 -0.00746519
+MUSETT_T0_DSSD_Y66_E 61.0383 -0.00745104
+MUSETT_T0_DSSD_Y67_E 61.3127 -0.00748452
+MUSETT_T0_DSSD_Y68_E 60.431400000000004 -0.00737695
+MUSETT_T0_DSSD_Y69_E 61.541599999999995 -0.00751241
+MUSETT_T0_DSSD_Y70_E 60.896 -0.007433639999999999
+MUSETT_T0_DSSD_Y71_E 60.3984 -0.00737288
+MUSETT_T0_DSSD_Y72_E 61.6674 -0.00752784
+MUSETT_T0_DSSD_Y73_E 61.151 -0.00746479
+MUSETT_T0_DSSD_Y74_E 61.1035 -0.0074589800000000005
+MUSETT_T0_DSSD_Y75_E 61.219800000000006 -0.0074731500000000005
+MUSETT_T0_DSSD_Y76_E 60.596199999999996 -0.007397020000000001
+MUSETT_T0_DSSD_Y77_E 61.4086 -0.0074962299999999996
+MUSETT_T0_DSSD_Y78_E 61.6292 -0.0075231199999999995
+MUSETT_T0_DSSD_Y79_E 61.0151 -0.00744816
+MUSETT_T0_DSSD_Y80_E 62.3301 -0.00760868
+MUSETT_T0_DSSD_Y81_E 61.0485 -0.00745227
+MUSETT_T0_DSSD_Y82_E 61.567 -0.00751556
+MUSETT_T0_DSSD_Y83_E 62.052800000000005 -0.00757484
+MUSETT_T0_DSSD_Y84_E 61.001400000000004 -0.0074465
+MUSETT_T0_DSSD_Y85_E 60.8965 -0.0074337
+MUSETT_T0_DSSD_Y86_E 61.7489 -0.0075377000000000005
+MUSETT_T0_DSSD_Y87_E 61.3807 -0.00749277
+MUSETT_T0_DSSD_Y88_E 61.1458 -0.00746415
+MUSETT_T0_DSSD_Y89_E 61.2699 -0.00747926
+MUSETT_T0_DSSD_Y90_E 61.1205 -0.00746101
+MUSETT_T0_DSSD_Y91_E 61.476800000000004 -0.007504520000000001
+MUSETT_T0_DSSD_Y92_E 61.8576 -0.00755098
+MUSETT_T0_DSSD_Y93_E 61.681599999999996 -0.0075295399999999995
+MUSETT_T0_DSSD_Y94_E 62.3232 -0.007607859999999999
+MUSETT_T0_DSSD_Y95_E 60.8927 -0.00743324
+MUSETT_T0_DSSD_Y96_E 56.372 -0.00688138
+MUSETT_T0_DSSD_Y97_E 56.6412 -0.0069142299999999995
+MUSETT_T0_DSSD_Y98_E 56.555800000000005 -0.00690381
+MUSETT_T0_DSSD_Y99_E 56.451699999999995 -0.0068911300000000005
+MUSETT_T0_DSSD_Y100_E 56.187 -0.00685881
+MUSETT_T0_DSSD_Y101_E 56.3228 -0.0068754
+MUSETT_T0_DSSD_Y102_E 56.0736 -0.00684493
+MUSETT_T0_DSSD_Y103_E 56.5751 -0.006906209999999999
+MUSETT_T0_DSSD_Y104_E 56.8741 -0.00694264
+MUSETT_T0_DSSD_Y105_E 56.0264 -0.0068391599999999995
+MUSETT_T0_DSSD_Y106_E 57.0374 -0.00696262
+MUSETT_T0_DSSD_Y107_E 57.3595 -0.00700194
+MUSETT_T0_DSSD_Y108_E 56.5524 -0.00690339
+MUSETT_T0_DSSD_Y109_E 56.5855 -0.006907460000000001
+MUSETT_T0_DSSD_Y110_E 56.6668 -0.006917410000000001
+MUSETT_T0_DSSD_Y111_E 56.4009 -0.00688495
+MUSETT_T0_DSSD_Y112_E 56.8996 -0.0069458
+MUSETT_T0_DSSD_Y113_E 57.124300000000005 -0.00697323
+MUSETT_T0_DSSD_Y114_E 56.9552 -0.00695256
+MUSETT_T0_DSSD_Y115_E 56.8211 -0.00693619
+MUSETT_T0_DSSD_Y116_E 57.2948 -0.00699405
+MUSETT_T0_DSSD_Y117_E 56.5544 -0.00690363
+MUSETT_T0_DSSD_Y118_E 56.4159 -0.0068867500000000005
+MUSETT_T0_DSSD_Y119_E 56.5919 -0.0069082499999999995
+MUSETT_T0_DSSD_Y120_E 57.4048 -0.00700746
+MUSETT_T0_DSSD_Y121_E 57.2319 -0.00698632
+MUSETT_T0_DSSD_Y122_E 56.6849 -0.00691957
+MUSETT_T0_DSSD_Y123_E 56.016400000000004 -0.0068379899999999995
+MUSETT_T0_DSSD_Y124_E 56.4575 -0.006891810000000001
+MUSETT_T0_DSSD_Y125_E 55.921699999999994 -0.00682642
+MUSETT_T0_DSSD_Y126_E 56.947 -0.0069515900000000005
+MUSETT_T0_DSSD_Y127_E 56.581 -0.00690693
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..11c7c3fef2296f10326e3ad7677f8bebd5452993
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_T 947.402 -0.114176
+MUSETT_T0_DSSD_X1_T 958.132 -0.115529
+MUSETT_T0_DSSD_X2_T 959.289 -0.115657
+MUSETT_T0_DSSD_X3_T 973.445 -0.117409
+MUSETT_T0_DSSD_X4_T 973.097 -0.117367
+MUSETT_T0_DSSD_X5_T 973.027 -0.117353
+MUSETT_T0_DSSD_X6_T 978.311 -0.117969
+MUSETT_T0_DSSD_X7_T 980.44 -0.118246
+MUSETT_T0_DSSD_X8_T 979.197 -0.118065
+MUSETT_T0_DSSD_X9_T 983.093 -0.118546
+MUSETT_T0_DSSD_X10_T 987.843 -0.119138
+MUSETT_T0_DSSD_X11_T 987.466 -0.119075
+MUSETT_T0_DSSD_X12_T 994.957 -0.119996
+MUSETT_T0_DSSD_X13_T 980.198 -0.118174
+MUSETT_T0_DSSD_X14_T 991.208 -0.119531
+MUSETT_T0_DSSD_X15_T 1327.419 -0.118448
+MUSETT_T0_DSSD_X16_T 957.045 -0.115275
+MUSETT_T0_DSSD_X17_T 967.151 -0.116527
+MUSETT_T0_DSSD_X18_T 979.671 -0.118044
+MUSETT_T0_DSSD_X19_T 980.319 -0.118125
+MUSETT_T0_DSSD_X20_T 989.453 -0.119233
+MUSETT_T0_DSSD_X21_T 983.819 -0.118555
+MUSETT_T0_DSSD_X22_T 994.391 -0.119845
+MUSETT_T0_DSSD_X23_T 995.696 -0.120005
+MUSETT_T0_DSSD_X24_T 991.078 -0.119427
+MUSETT_T0_DSSD_X25_T 1002.131 -0.120777
+MUSETT_T0_DSSD_X26_T 1004.435 -0.121057
+MUSETT_T0_DSSD_X27_T 1008.403 -0.121545
+MUSETT_T0_DSSD_X28_T 1003.939 -0.121021
+MUSETT_T0_DSSD_X29_T 1002.74 -0.120851
+MUSETT_T0_DSSD_X30_T 999.377 -0.12045
+MUSETT_T0_DSSD_X31_T 995.027 -0.119947
+MUSETT_T0_DSSD_X32_T 874.004 -0.105192
+MUSETT_T0_DSSD_X33_T 871.776 -0.104955
+MUSETT_T0_DSSD_X34_T 891.807 -0.107397
+MUSETT_T0_DSSD_X35_T 880.562 -0.106033
+MUSETT_T0_DSSD_X36_T 882.297 -0.106227
+MUSETT_T0_DSSD_X37_T 896.75 -0.108005
+MUSETT_T0_DSSD_X38_T 898.223 -0.108195
+MUSETT_T0_DSSD_X39_T 896.786 -0.107979
+MUSETT_T0_DSSD_X40_T 899.624 -0.108302
+MUSETT_T0_DSSD_X41_T 899.765 -0.108334
+MUSETT_T0_DSSD_X42_T 899.028 -0.108243
+MUSETT_T0_DSSD_X43_T 905.872 -0.109095
+MUSETT_T0_DSSD_X44_T 901.13 -0.108505
+MUSETT_T0_DSSD_X45_T 899.439 -0.107877
+MUSETT_T0_DSSD_X46_T 898.066 -0.108187
+MUSETT_T0_DSSD_X47_T 920.142 -0.10826
+MUSETT_T0_DSSD_X48_T 885.877 -0.106556
+MUSETT_T0_DSSD_X49_T 889.054 -0.106942
+MUSETT_T0_DSSD_X50_T 894.673 -0.107622
+MUSETT_T0_DSSD_X51_T 903.218 -0.109464
+MUSETT_T0_DSSD_X52_T 908.402 -0.109295
+MUSETT_T0_DSSD_X53_T 911.389 -0.109652
+MUSETT_T0_DSSD_X54_T 913.908 -0.109955
+MUSETT_T0_DSSD_X55_T 917.897 -0.110458
+MUSETT_T0_DSSD_X56_T 926.464 -0.111499
+MUSETT_T0_DSSD_X57_T 918.072 -0.110456
+MUSETT_T0_DSSD_X58_T 925.456 -0.111378
+MUSETT_T0_DSSD_X59_T 930.204 -0.111943
+MUSETT_T0_DSSD_X60_T 937.287 -0.112807
+MUSETT_T0_DSSD_X61_T 940.01 -0.11314
+MUSETT_T0_DSSD_X62_T 941.711 -0.113338
+MUSETT_T0_DSSD_X63_T 930.49 -0.111982
+MUSETT_T0_DSSD_X64_T 958.733 -0.115846
+MUSETT_T0_DSSD_X65_T 963.634 -0.11646
+MUSETT_T0_DSSD_X66_T 973.382 -0.117644
+MUSETT_T0_DSSD_X67_T 974.652 -0.117791
+MUSETT_T0_DSSD_X68_T 977.949 -0.118174
+MUSETT_T0_DSSD_X69_T 990.649 -0.119717
+MUSETT_T0_DSSD_X70_T 995.246 -0.120284
+MUSETT_T0_DSSD_X71_T 996.388 -0.120426
+MUSETT_T0_DSSD_X72_T 1007.342 -0.121763
+MUSETT_T0_DSSD_X73_T 988.546 -0.119445
+MUSETT_T0_DSSD_X74_T 1005.453 -0.121535
+MUSETT_T0_DSSD_X75_T 996.341 -0.120381
+MUSETT_T0_DSSD_X76_T 1007.215 -0.121262
+MUSETT_T0_DSSD_X77_T 1011.503 -0.121766
+MUSETT_T0_DSSD_X78_T 998.245 -0.120615
+MUSETT_T0_DSSD_X79_T 1381.85 -0.120952
+MUSETT_T0_DSSD_X80_T 924.325 -0.111515
+MUSETT_T0_DSSD_X81_T 933.986 -0.112746
+MUSETT_T0_DSSD_X82_T 926.081 -0.111774
+MUSETT_T0_DSSD_X83_T 942.039 -0.113281
+MUSETT_T0_DSSD_X84_T 931.74 -0.112468
+MUSETT_T0_DSSD_X85_T 942.885 -0.113819
+MUSETT_T0_DSSD_X86_T 951.107 -0.114818
+MUSETT_T0_DSSD_X87_T 944.193 -0.113978
+MUSETT_T0_DSSD_X88_T 950.881 -0.114813
+MUSETT_T0_DSSD_X89_T 958.38 -0.115728
+MUSETT_T0_DSSD_X90_T 965.991 -0.11664
+MUSETT_T0_DSSD_X91_T 962.675 -0.11625
+MUSETT_T0_DSSD_X92_T 962.975 -0.116299
+MUSETT_T0_DSSD_X93_T 961.838 -0.116152
+MUSETT_T0_DSSD_X94_T 975.767 -0.117868
+MUSETT_T0_DSSD_X95_T 987.869 -0.116744
+MUSETT_T0_DSSD_X96_T 869.374 -0.105013
+MUSETT_T0_DSSD_X97_T 878.873 -0.106169
+MUSETT_T0_DSSD_X98_T 879.124 -0.106212
+MUSETT_T0_DSSD_X99_T 885.082 -0.106905
+MUSETT_T0_DSSD_X100_T 894.377 -0.108043
+MUSETT_T0_DSSD_X101_T 901.707 -0.108935
+MUSETT_T0_DSSD_X102_T 897.889 -0.108442
+MUSETT_T0_DSSD_X103_T 895.995 -0.108194
+MUSETT_T0_DSSD_X104_T 905.254 -0.109336
+MUSETT_T0_DSSD_X105_T 903.109 -0.109053
+MUSETT_T0_DSSD_X106_T 908.799 -0.109771
+MUSETT_T0_DSSD_X107_T 906.422 -0.109449
+MUSETT_T0_DSSD_X108_T 903.683 -0.109128
+MUSETT_T0_DSSD_X109_T 907.658 -0.109641
+MUSETT_T0_DSSD_X110_T 903.934 -0.109177
+MUSETT_T0_DSSD_X111_T 917.004 -0.109478
+MUSETT_T0_DSSD_X112_T 889.763 -0.107364
+MUSETT_T0_DSSD_X113_T 892.874 -0.107748
+MUSETT_T0_DSSD_X114_T 893.086 -0.107782
+MUSETT_T0_DSSD_X115_T 903.173 -0.109007
+MUSETT_T0_DSSD_X116_T 906.71 -0.109423
+MUSETT_T0_DSSD_X117_T 900.172 -0.108648
+MUSETT_T0_DSSD_X118_T 914.738 -0.110413
+MUSETT_T0_DSSD_X119_T 915.95 -0.110579
+MUSETT_T0_DSSD_X120_T 910.273 -0.109898
+MUSETT_T0_DSSD_X121_T 915.371 -0.1105
+MUSETT_T0_DSSD_X122_T 923.843 -0.111529
+MUSETT_T0_DSSD_X123_T 916.0 -0.110604
+MUSETT_T0_DSSD_X124_T 919.085 -0.110972
+MUSETT_T0_DSSD_X125_T 920.758 -0.11118
+MUSETT_T0_DSSD_X126_T 916.079 -0.110613
+MUSETT_T0_DSSD_X127_T 927.913 -0.111151
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..21b980d964ad6fc6dad20fe05813b699dee44414
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 943.871 -0.114033
+MUSETT_T0_DSSD_Y2_T 942.541 -0.113921
+MUSETT_T0_DSSD_Y3_T 960.736 -0.116104
+MUSETT_T0_DSSD_Y4_T 956.194 -0.115563
+MUSETT_T0_DSSD_Y5_T 971.901 -0.117481
+MUSETT_T0_DSSD_Y6_T 970.47 -0.117339
+MUSETT_T0_DSSD_Y7_T 967.899 -0.117018
+MUSETT_T0_DSSD_Y8_T 974.549 -0.117842
+MUSETT_T0_DSSD_Y9_T 970.321 -0.117316
+MUSETT_T0_DSSD_Y10_T 972.871 -0.117632
+MUSETT_T0_DSSD_Y11_T 979.225 -0.118398
+MUSETT_T0_DSSD_Y12_T 977.059 -0.11814
+MUSETT_T0_DSSD_Y13_T 972.932 -0.117633
+MUSETT_T0_DSSD_Y14_T 975.541 -0.117944
+MUSETT_T0_DSSD_Y15_T 981.99 -0.118761
+MUSETT_T0_DSSD_Y16_T 937.345 -0.113175
+MUSETT_T0_DSSD_Y17_T 946.398 -0.114309
+MUSETT_T0_DSSD_Y18_T 954.917 -0.115351
+MUSETT_T0_DSSD_Y19_T 946.68 -0.11436
+MUSETT_T0_DSSD_Y20_T 949.495 -0.114686
+MUSETT_T0_DSSD_Y21_T 952.893 -0.115103
+MUSETT_T0_DSSD_Y22_T 958.913 -0.115832
+MUSETT_T0_DSSD_Y23_T 959.053 -0.115841
+MUSETT_T0_DSSD_Y24_T 963.718 -0.116398
+MUSETT_T0_DSSD_Y25_T 961.896 -0.116195
+MUSETT_T0_DSSD_Y26_T 958.661 -0.115516
+MUSETT_T0_DSSD_Y27_T 973.339 -0.117562
+MUSETT_T0_DSSD_Y28_T 975.575 -0.117834
+MUSETT_T0_DSSD_Y29_T 970.444 -0.11722
+MUSETT_T0_DSSD_Y30_T 973.574 -0.11759
+MUSETT_T0_DSSD_Y31_T 968.228 -0.116928
+MUSETT_T0_DSSD_Y32_T 870.562 -0.105131
+MUSETT_T0_DSSD_Y33_T 870.284 -0.105113
+MUSETT_T0_DSSD_Y34_T 887.363 -0.107174
+MUSETT_T0_DSSD_Y35_T 877.314 -0.105955
+MUSETT_T0_DSSD_Y36_T 888.861 -0.107363
+MUSETT_T0_DSSD_Y37_T 888.241 -0.107278
+MUSETT_T0_DSSD_Y38_T 888.889 -0.107347
+MUSETT_T0_DSSD_Y39_T 906.968 -0.109567
+MUSETT_T0_DSSD_Y40_T 904.625 -0.109268
+MUSETT_T0_DSSD_Y41_T 902.798 -0.109045
+MUSETT_T0_DSSD_Y42_T 901.927 -0.108924
+MUSETT_T0_DSSD_Y43_T 912.591 -0.110196
+MUSETT_T0_DSSD_Y44_T 909.812 -0.109895
+MUSETT_T0_DSSD_Y45_T 904.379 -0.10924
+MUSETT_T0_DSSD_Y46_T 914.951 -0.110513
+MUSETT_T0_DSSD_Y47_T 903.001 -0.109056
+MUSETT_T0_DSSD_Y48_T 857.208 -0.103507
+MUSETT_T0_DSSD_Y49_T 868.319 -0.104888
+MUSETT_T0_DSSD_Y50_T 863.685 -0.104347
+MUSETT_T0_DSSD_Y51_T 880.511 -0.106391
+MUSETT_T0_DSSD_Y52_T 883.206 -0.106718
+MUSETT_T0_DSSD_Y53_T 884.379 -0.106878
+MUSETT_T0_DSSD_Y54_T 881.016 -0.106441
+MUSETT_T0_DSSD_Y55_T 888.95 -0.107426
+MUSETT_T0_DSSD_Y56_T 890.519 -0.107608
+MUSETT_T0_DSSD_Y57_T 894.751 -0.108136
+MUSETT_T0_DSSD_Y58_T 901.921 -0.109012
+MUSETT_T0_DSSD_Y59_T 900.736 -0.108611
+MUSETT_T0_DSSD_Y60_T 899.581 -0.108719
+MUSETT_T0_DSSD_Y61_T 906.688 -0.109581
+MUSETT_T0_DSSD_Y62_T 900.81 -0.108895
+MUSETT_T0_DSSD_Y63_T 906.101 -0.109543
+MUSETT_T0_DSSD_Y64_T 965.38 -0.116469
+MUSETT_T0_DSSD_Y65_T 971.898 -0.117302
+MUSETT_T0_DSSD_Y66_T 977.707 -0.118012
+MUSETT_T0_DSSD_Y67_T 977.945 -0.118028
+MUSETT_T0_DSSD_Y68_T 980.831 -0.118378
+MUSETT_T0_DSSD_Y69_T 984.514 -0.118825
+MUSETT_T0_DSSD_Y70_T 984.139 -0.118781
+MUSETT_T0_DSSD_Y71_T 987.235 -0.119156
+MUSETT_T0_DSSD_Y72_T 991.116 -0.119628
+MUSETT_T0_DSSD_Y73_T 982.578 -0.118591
+MUSETT_T0_DSSD_Y74_T 991.199 -0.119656
+MUSETT_T0_DSSD_Y75_T 1001.66 -0.120924
+MUSETT_T0_DSSD_Y76_T 996.91 -0.120327
+MUSETT_T0_DSSD_Y77_T 998.977 -0.120579
+MUSETT_T0_DSSD_Y78_T 996.138 -0.120247
+MUSETT_T0_DSSD_Y79_T 1003.186 -0.121097
+MUSETT_T0_DSSD_Y80_T 971.772 -0.117145
+MUSETT_T0_DSSD_Y81_T 987.56 -0.119118
+MUSETT_T0_DSSD_Y82_T 982.693 -0.118534
+MUSETT_T0_DSSD_Y83_T 997.382 -0.12031
+MUSETT_T0_DSSD_Y84_T 1001.12 -0.120777
+MUSETT_T0_DSSD_Y85_T 1003.628 -0.121085
+MUSETT_T0_DSSD_Y86_T 999.525 -0.120569
+MUSETT_T0_DSSD_Y87_T 1009.866 -0.121839
+MUSETT_T0_DSSD_Y88_T 1005.699 -0.121339
+MUSETT_T0_DSSD_Y89_T 1016.19 -0.122592
+MUSETT_T0_DSSD_Y90_T 1026.692 -0.123897
+MUSETT_T0_DSSD_Y91_T 1026.458 -0.123866
+MUSETT_T0_DSSD_Y92_T 1021.303 -0.123256
+MUSETT_T0_DSSD_Y93_T 1025.779 -0.123786
+MUSETT_T0_DSSD_Y94_T 1022.572 -0.123408
+MUSETT_T0_DSSD_Y95_T 1018.35 -0.122879
+MUSETT_T0_DSSD_Y96_T 884.199 -0.106544
+MUSETT_T0_DSSD_Y97_T 880.563 -0.106139
+MUSETT_T0_DSSD_Y98_T 879.514 -0.106028
+MUSETT_T0_DSSD_Y99_T 896.148 -0.108041
+MUSETT_T0_DSSD_Y100_T 893.439 -0.107707
+MUSETT_T0_DSSD_Y101_T 892.231 -0.10757
+MUSETT_T0_DSSD_Y102_T 896.756 -0.108105
+MUSETT_T0_DSSD_Y103_T 908.766 -0.10959
+MUSETT_T0_DSSD_Y104_T 903.356 -0.108916
+MUSETT_T0_DSSD_Y105_T 916.719 -0.110544
+MUSETT_T0_DSSD_Y106_T 912.113 -0.109981
+MUSETT_T0_DSSD_Y107_T 916.451 -0.11051
+MUSETT_T0_DSSD_Y108_T 915.868 -0.110421
+MUSETT_T0_DSSD_Y109_T 911.388 -0.109894
+MUSETT_T0_DSSD_Y110_T 916.911 -0.110572
+MUSETT_T0_DSSD_Y111_T 918.844 -0.110803
+MUSETT_T0_DSSD_Y112_T 893.651 -0.107535
+MUSETT_T0_DSSD_Y113_T 901.081 -0.108466
+MUSETT_T0_DSSD_Y114_T 900.586 -0.108438
+MUSETT_T0_DSSD_Y115_T 906.547 -0.109158
+MUSETT_T0_DSSD_Y116_T 918.22 -0.110566
+MUSETT_T0_DSSD_Y117_T 911.401 -0.109757
+MUSETT_T0_DSSD_Y118_T 931.26 -0.112167
+MUSETT_T0_DSSD_Y119_T 923.034 -0.111146
+MUSETT_T0_DSSD_Y120_T 933.197 -0.112407
+MUSETT_T0_DSSD_Y121_T 932.718 -0.112337
+MUSETT_T0_DSSD_Y122_T 934.415 -0.112539
+MUSETT_T0_DSSD_Y123_T 937.954 -0.112978
+MUSETT_T0_DSSD_Y124_T 932.468 -0.112316
+MUSETT_T0_DSSD_Y125_T 931.414 -0.112192
+MUSETT_T0_DSSD_Y126_T 928.457 -0.111821
+MUSETT_T0_DSSD_Y127_T 931.38 -0.112162
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..21a339ff19565b30923199ce42cf71781b462958
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E -62.318 0.00760703
+MUSETT_T1_DSSD_X1_E -62.174800000000005 0.00758959
+MUSETT_T1_DSSD_X2_E -62.2697 0.00760114
+MUSETT_T1_DSSD_X3_E -61.9672 0.00756426
+MUSETT_T1_DSSD_X4_E -61.415099999999995 0.00749681
+MUSETT_T1_DSSD_X5_E -61.526 0.00751035
+MUSETT_T1_DSSD_X6_E -62.3097 0.00760599
+MUSETT_T1_DSSD_X7_E -61.376 0.00749208
+MUSETT_T1_DSSD_X8_E -61.309599999999996 0.00748393
+MUSETT_T1_DSSD_X9_E -61.415699999999994 0.00749688
+MUSETT_T1_DSSD_X10_E -61.636300000000006 0.0075238399999999995
+MUSETT_T1_DSSD_X11_E -61.6995 0.0075315799999999995
+MUSETT_T1_DSSD_X12_E -61.9036 0.00755648
+MUSETT_T1_DSSD_X13_E -61.3858 0.00749329
+MUSETT_T1_DSSD_X14_E -61.149699999999996 0.00746439
+MUSETT_T1_DSSD_X15_E -61.9483 0.00756191
+MUSETT_T1_DSSD_X16_E -62.532300000000006 0.00763317
+MUSETT_T1_DSSD_X17_E -61.741800000000005 0.0075366999999999995
+MUSETT_T1_DSSD_X18_E -62.152699999999996 0.00758685
+MUSETT_T1_DSSD_X19_E -61.8945 0.00755534
+MUSETT_T1_DSSD_X20_E -62.9018 0.007678239999999999
+MUSETT_T1_DSSD_X21_E -62.1592 0.0075876400000000005
+MUSETT_T1_DSSD_X22_E -62.66 0.0076488
+MUSETT_T1_DSSD_X23_E -62.320699999999995 0.0076073700000000005
+MUSETT_T1_DSSD_X24_E -62.2217 0.007595279999999999
+MUSETT_T1_DSSD_X25_E -61.9343 0.00756018
+MUSETT_T1_DSSD_X26_E -61.9471 0.00756175
+MUSETT_T1_DSSD_X27_E -61.6952 0.00753103
+MUSETT_T1_DSSD_X28_E -61.588300000000004 0.00751797
+MUSETT_T1_DSSD_X29_E -62.694 0.00765292
+MUSETT_T1_DSSD_X30_E -61.7341 0.007535770000000001
+MUSETT_T1_DSSD_X31_E -62.7765 0.00766307
+MUSETT_T1_DSSD_X32_E -58.260400000000004 0.00711179
+MUSETT_T1_DSSD_X33_E -58.264 0.00711219
+MUSETT_T1_DSSD_X34_E -58.3149 0.00711847
+MUSETT_T1_DSSD_X35_E -58.24 0.00710926
+MUSETT_T1_DSSD_X36_E -57.977 0.0070772199999999995
+MUSETT_T1_DSSD_X37_E -58.1817 0.0071020300000000005
+MUSETT_T1_DSSD_X38_E -58.0364 0.00708428
+MUSETT_T1_DSSD_X39_E -58.6261 0.007156419
+MUSETT_T1_DSSD_X40_E -58.167300000000004 0.00710045
+MUSETT_T1_DSSD_X41_E -58.8056 0.00717818
+MUSETT_T1_DSSD_X42_E -58.0404 0.00708493
+MUSETT_T1_DSSD_X43_E -58.445 0.00713434
+MUSETT_T1_DSSD_X44_E -58.5769 0.00715027
+MUSETT_T1_DSSD_X45_E -59.255 0.00723324
+MUSETT_T1_DSSD_X46_E -58.6541 0.00715993
+MUSETT_T1_DSSD_X47_E -58.523199999999996 0.0071438
+MUSETT_T1_DSSD_X48_E -57.8625 0.007063150000000001
+MUSETT_T1_DSSD_X49_E -58.4892 0.00713967
+MUSETT_T1_DSSD_X50_E -58.005300000000005 0.00708058
+MUSETT_T1_DSSD_X51_E -57.7392 0.0070481400000000005
+MUSETT_T1_DSSD_X52_E -57.926199999999994 0.00707097
+MUSETT_T1_DSSD_X53_E -57.9129 0.00706931
+MUSETT_T1_DSSD_X54_E -57.9565 0.00707461
+MUSETT_T1_DSSD_X55_E -57.767900000000004 0.00705159
+MUSETT_T1_DSSD_X56_E -58.0156 0.0070818700000000005
+MUSETT_T1_DSSD_X57_E -57.8056 0.00705617
+MUSETT_T1_DSSD_X58_E -58.416599999999995 0.00713075
+MUSETT_T1_DSSD_X59_E -57.624 0.0070339999999999995
+MUSETT_T1_DSSD_X60_E -57.6878 0.00704184
+MUSETT_T1_DSSD_X61_E -58.237300000000005 0.0071089000000000005
+MUSETT_T1_DSSD_X62_E -58.058699999999995 0.00708712
+MUSETT_T1_DSSD_X63_E -58.244699999999995 0.00710981
+MUSETT_T1_DSSD_X64_E -60.994699999999995 0.0074455
+MUSETT_T1_DSSD_X65_E -61.603 0.007519860000000001
+MUSETT_T1_DSSD_X66_E -61.459900000000005 0.00750223
+MUSETT_T1_DSSD_X67_E -61.665099999999995 0.00752729
+MUSETT_T1_DSSD_X68_E -61.8745 0.00755286
+MUSETT_T1_DSSD_X69_E -61.3285 0.0074863099999999995
+MUSETT_T1_DSSD_X70_E -61.63 0.00752303
+MUSETT_T1_DSSD_X71_E -61.904199999999996 0.00755658
+MUSETT_T1_DSSD_X72_E -61.2324 0.00747458
+MUSETT_T1_DSSD_X73_E -62.3412 0.00760994
+MUSETT_T1_DSSD_X74_E -61.9259 0.00755913
+MUSETT_T1_DSSD_X75_E -62.067099999999996 0.0075764199999999995
+MUSETT_T1_DSSD_X76_E -61.4845 0.00750533
+MUSETT_T1_DSSD_X77_E -61.7427 0.00753686
+MUSETT_T1_DSSD_X78_E -61.352599999999995 0.00748913
+MUSETT_T1_DSSD_X79_E -61.942099999999996 0.00756111
+MUSETT_T1_DSSD_X80_E -63.429 0.00774268
+MUSETT_T1_DSSD_X81_E -63.7221 0.00777849
+MUSETT_T1_DSSD_X82_E -64.2115 0.00783819
+MUSETT_T1_DSSD_X83_E -63.8677 0.0077962
+MUSETT_T1_DSSD_X84_E -64.1279 0.00782805
+MUSETT_T1_DSSD_X85_E -63.8404 0.00779293
+MUSETT_T1_DSSD_X86_E -64.0504 0.00781853
+MUSETT_T1_DSSD_X87_E -64.1609 0.00783201
+MUSETT_T1_DSSD_X88_E -64.18090000000001 0.007834520000000001
+MUSETT_T1_DSSD_X89_E -64.214 0.00783849
+MUSETT_T1_DSSD_X90_E -63.2804 0.00772459
+MUSETT_T1_DSSD_X91_E -63.366800000000005 0.00773508
+MUSETT_T1_DSSD_X92_E -64.5209 0.00787598
+MUSETT_T1_DSSD_X93_E -63.9818 0.007810139999999999
+MUSETT_T1_DSSD_X94_E -63.7755 0.00778503
+MUSETT_T1_DSSD_X95_E -63.4339 0.00774331
+MUSETT_T1_DSSD_X96_E -56.2588 0.00686734
+MUSETT_T1_DSSD_X97_E -56.6455 0.0069146400000000005
+MUSETT_T1_DSSD_X98_E -56.4879 0.00689532
+MUSETT_T1_DSSD_X99_E -56.3827 0.00688258
+MUSETT_T1_DSSD_X100_E -56.5553 0.00690363
+MUSETT_T1_DSSD_X101_E -57.0229 0.00696061
+MUSETT_T1_DSSD_X102_E -57.3332 0.0069984700000000006
+MUSETT_T1_DSSD_X103_E -56.5807 0.00690664
+MUSETT_T1_DSSD_X104_E -56.7668 0.00692938
+MUSETT_T1_DSSD_X105_E -56.9893 0.00695655
+MUSETT_T1_DSSD_X106_E -57.8513 0.00706174
+MUSETT_T1_DSSD_X107_E -57.756099999999996 0.00705012
+MUSETT_T1_DSSD_X108_E -57.728300000000004 0.0070468
+MUSETT_T1_DSSD_X109_E -57.5027 0.00701928
+MUSETT_T1_DSSD_X110_E -57.6809 0.00704099
+MUSETT_T1_DSSD_X111_E -57.9952 0.00707934
+MUSETT_T1_DSSD_X112_E -57.221599999999995 0.0069849199999999995
+MUSETT_T1_DSSD_X113_E -57.3068 0.0069953
+MUSETT_T1_DSSD_X114_E -56.767199999999995 0.006929439999999999
+MUSETT_T1_DSSD_X115_E -57.714800000000004 0.00704509
+MUSETT_T1_DSSD_X116_E -57.2578 0.0069893099999999994
+MUSETT_T1_DSSD_X117_E -57.2509 0.00698847
+MUSETT_T1_DSSD_X118_E -56.3284 0.00687591
+MUSETT_T1_DSSD_X119_E -58.2885 0.007115160000000001
+MUSETT_T1_DSSD_X120_E -57.413199999999996 0.007008339999999999
+MUSETT_T1_DSSD_X121_E -57.776199999999996 0.007052640000000001
+MUSETT_T1_DSSD_X122_E -57.731 0.00704713
+MUSETT_T1_DSSD_X123_E -57.410599999999995 0.00700802
+MUSETT_T1_DSSD_X124_E -57.5907 0.00702999
+MUSETT_T1_DSSD_X125_E -57.6383 0.00703579
+MUSETT_T1_DSSD_X126_E -57.0384 0.0069625500000000005
+MUSETT_T1_DSSD_X127_E -57.8549 0.007062199999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..99017db9824f0dde76826e27acab80c7781b2162
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_E 59.619099999999996 -0.00727783
+MUSETT_T1_DSSD_Y1_E 60.465300000000006 -0.0073811499999999995
+MUSETT_T1_DSSD_Y2_E 59.712 -0.007289189999999999
+MUSETT_T1_DSSD_Y3_E 59.326699999999995 -0.00724213
+MUSETT_T1_DSSD_Y4_E 60.1976 -0.0073485
+MUSETT_T1_DSSD_Y5_E 60.005199999999995 -0.00732501
+MUSETT_T1_DSSD_Y6_E 59.3762 -0.00724818
+MUSETT_T1_DSSD_Y7_E 59.4559 -0.00725795
+MUSETT_T1_DSSD_Y8_E 59.4729 -0.00725998
+MUSETT_T1_DSSD_Y9_E 59.7076 -0.00728867
+MUSETT_T1_DSSD_Y10_E 59.520199999999996 -0.0072657699999999995
+MUSETT_T1_DSSD_Y11_E 59.5565 -0.00727023
+MUSETT_T1_DSSD_Y12_E 60.2104 -0.0073500300000000005
+MUSETT_T1_DSSD_Y13_E 59.2734 -0.00723565
+MUSETT_T1_DSSD_Y14_E 59.5118 -0.00726475
+MUSETT_T1_DSSD_Y15_E 59.8161 -0.00730189
+MUSETT_T1_DSSD_Y16_E 62.145199999999996 -0.0075861999999999995
+MUSETT_T1_DSSD_Y17_E 62.468300000000006 -0.0076256399999999995
+MUSETT_T1_DSSD_Y18_E 62.4021 -0.00761759
+MUSETT_T1_DSSD_Y19_E 62.0316 -0.0075723399999999995
+MUSETT_T1_DSSD_Y20_E 62.1982 -0.00759266
+MUSETT_T1_DSSD_Y21_E 62.3574 -0.00761211
+MUSETT_T1_DSSD_Y22_E -10.0 0.0
+MUSETT_T1_DSSD_Y23_E 62.0064 -0.00756931
+MUSETT_T1_DSSD_Y24_E 61.7119 -0.00753332
+MUSETT_T1_DSSD_Y25_E 61.4477 -0.00750107
+MUSETT_T1_DSSD_Y26_E 62.078 -0.00757801
+MUSETT_T1_DSSD_Y27_E 62.0599 -0.00757584
+MUSETT_T1_DSSD_Y28_E 62.251599999999996 -0.00759918
+MUSETT_T1_DSSD_Y29_E 62.034 -0.00757263
+MUSETT_T1_DSSD_Y30_E 61.6533 -0.0075261699999999996
+MUSETT_T1_DSSD_Y31_E 61.7974 -0.0075438
+MUSETT_T1_DSSD_Y32_E 56.115 -0.00685013
+MUSETT_T1_DSSD_Y33_E 56.290099999999995 -0.00687151
+MUSETT_T1_DSSD_Y34_E 55.6312 -0.00679109
+MUSETT_T1_DSSD_Y35_E 55.6539 -0.00679382
+MUSETT_T1_DSSD_Y36_E 55.4171 -0.00676495
+MUSETT_T1_DSSD_Y37_E 56.4182 -0.0068871900000000005
+MUSETT_T1_DSSD_Y38_E 55.3814 -0.0067605700000000005
+MUSETT_T1_DSSD_Y39_E 55.9099 -0.00682508
+MUSETT_T1_DSSD_Y40_E 56.0294 -0.00683969
+MUSETT_T1_DSSD_Y41_E 56.120400000000004 -0.00685079
+MUSETT_T1_DSSD_Y42_E 55.5034 -0.0067754799999999995
+MUSETT_T1_DSSD_Y43_E 56.587300000000006 -0.00690782
+MUSETT_T1_DSSD_Y44_E 55.6325 -0.0067912499999999995
+MUSETT_T1_DSSD_Y45_E 55.719199999999994 -0.00680184
+MUSETT_T1_DSSD_Y46_E 55.7592 -0.0068067200000000005
+MUSETT_T1_DSSD_Y47_E 55.7233 -0.0068023300000000005
+MUSETT_T1_DSSD_Y48_E 57.1945 -0.00698188
+MUSETT_T1_DSSD_Y49_E 56.6218 -0.00691194
+MUSETT_T1_DSSD_Y50_E 56.5589 -0.0069043
+MUSETT_T1_DSSD_Y51_E 56.037099999999995 -0.00684059
+MUSETT_T1_DSSD_Y52_E 56.7933 -0.006932890000000001
+MUSETT_T1_DSSD_Y53_E 56.263 -0.00686816
+MUSETT_T1_DSSD_Y54_E 56.4425 -0.00689006
+MUSETT_T1_DSSD_Y55_E 56.437 -0.0068894
+MUSETT_T1_DSSD_Y56_E 57.3308 -0.00699852
+MUSETT_T1_DSSD_Y57_E 57.023 -0.00696092
+MUSETT_T1_DSSD_Y58_E 56.6276 -0.006912639999999999
+MUSETT_T1_DSSD_Y59_E 57.287800000000004 -0.00699327
+MUSETT_T1_DSSD_Y60_E 57.3784 -0.0070043300000000005
+MUSETT_T1_DSSD_Y61_E 57.0121 -0.0069596200000000006
+MUSETT_T1_DSSD_Y62_E 56.174 -0.0068573
+MUSETT_T1_DSSD_Y63_E 57.2921 -0.00699379
+MUSETT_T1_DSSD_Y64_E 61.0871 -0.00745703
+MUSETT_T1_DSSD_Y65_E 61.6184 -0.00752186
+MUSETT_T1_DSSD_Y66_E 61.2911 -0.00748195
+MUSETT_T1_DSSD_Y67_E 61.562599999999996 -0.0075150600000000005
+MUSETT_T1_DSSD_Y68_E 61.2043 -0.00747131
+MUSETT_T1_DSSD_Y69_E 60.0103 -0.0073256
+MUSETT_T1_DSSD_Y70_E 60.457 -0.00738015
+MUSETT_T1_DSSD_Y71_E 61.0999 -0.00745857
+MUSETT_T1_DSSD_Y72_E 60.2656 -0.00735676
+MUSETT_T1_DSSD_Y73_E 61.237300000000005 -0.00747538
+MUSETT_T1_DSSD_Y74_E 60.8875 -0.00743265
+MUSETT_T1_DSSD_Y75_E 60.371300000000005 -0.007369659999999999
+MUSETT_T1_DSSD_Y76_E 60.5195 -0.00738776
+MUSETT_T1_DSSD_Y77_E 60.9741 -0.00744327
+MUSETT_T1_DSSD_Y78_E 60.660599999999995 -0.00740501
+MUSETT_T1_DSSD_Y79_E 61.3305 -0.0074868
+MUSETT_T1_DSSD_Y80_E 61.1626 -0.00746633
+MUSETT_T1_DSSD_Y81_E 61.126400000000004 -0.00746184
+MUSETT_T1_DSSD_Y82_E 61.091300000000004 -0.0074575399999999995
+MUSETT_T1_DSSD_Y83_E 60.509 -0.007386510000000001
+MUSETT_T1_DSSD_Y84_E 60.4234 -0.007376000000000001
+MUSETT_T1_DSSD_Y85_E 61.1413 -0.00746364
+MUSETT_T1_DSSD_Y86_E 60.6746 -0.0074066900000000005
+MUSETT_T1_DSSD_Y87_E 60.5731 -0.0073943
+MUSETT_T1_DSSD_Y88_E 61.027300000000004 -0.007449760000000001
+MUSETT_T1_DSSD_Y89_E 61.279199999999996 -0.00748052
+MUSETT_T1_DSSD_Y90_E 60.7255 -0.00741289
+MUSETT_T1_DSSD_Y91_E 60.8688 -0.00743041
+MUSETT_T1_DSSD_Y92_E 60.5108 -0.0073867099999999995
+MUSETT_T1_DSSD_Y93_E 61.2806 -0.00748069
+MUSETT_T1_DSSD_Y94_E 61.6085 -0.007520679999999999
+MUSETT_T1_DSSD_Y95_E 60.746900000000004 -0.0074156000000000005
+MUSETT_T1_DSSD_Y96_E 55.8579 -0.00681873
+MUSETT_T1_DSSD_Y97_E 55.481300000000005 -0.00677275
+MUSETT_T1_DSSD_Y98_E 55.6901 -0.0067982500000000005
+MUSETT_T1_DSSD_Y99_E 55.5546 -0.00678172
+MUSETT_T1_DSSD_Y100_E 55.8138 -0.00681337
+MUSETT_T1_DSSD_Y101_E 55.4669 -0.00677101
+MUSETT_T1_DSSD_Y102_E 55.4251 -0.00676591
+MUSETT_T1_DSSD_Y103_E 56.1674 -0.00685651
+MUSETT_T1_DSSD_Y104_E 55.270199999999996 -0.00674696
+MUSETT_T1_DSSD_Y105_E 55.3054 -0.00675128
+MUSETT_T1_DSSD_Y106_E 55.865300000000005 -0.006819619999999999
+MUSETT_T1_DSSD_Y107_E 55.2296 -0.0067420200000000005
+MUSETT_T1_DSSD_Y108_E 55.8628 -0.00681933
+MUSETT_T1_DSSD_Y109_E 56.1111 -0.0068496699999999995
+MUSETT_T1_DSSD_Y110_E 56.1356 -0.0068525999999999995
+MUSETT_T1_DSSD_Y111_E 56.5726 -0.00690596
+MUSETT_T1_DSSD_Y112_E 54.7644 -0.0066852299999999995
+MUSETT_T1_DSSD_Y113_E 55.5593 -0.00678228
+MUSETT_T1_DSSD_Y114_E 55.1522 -0.00673254
+MUSETT_T1_DSSD_Y115_E 55.065599999999996 -0.00672196
+MUSETT_T1_DSSD_Y116_E 55.234300000000005 -0.00674255
+MUSETT_T1_DSSD_Y117_E 55.399300000000004 -0.00676272
+MUSETT_T1_DSSD_Y118_E 55.2609 -0.00674585
+MUSETT_T1_DSSD_Y119_E 55.568 -0.00678332
+MUSETT_T1_DSSD_Y120_E 55.8639 -0.00681946
+MUSETT_T1_DSSD_Y121_E 55.4788 -0.006772439999999999
+MUSETT_T1_DSSD_Y122_E 54.8367 -0.00669408
+MUSETT_T1_DSSD_Y123_E 55.1383 -0.006730870000000001
+MUSETT_T1_DSSD_Y124_E 55.2217 -0.00674106
+MUSETT_T1_DSSD_Y125_E 55.183 -0.0067363200000000005
+MUSETT_T1_DSSD_Y126_E 55.346 -0.00675624
+MUSETT_T1_DSSD_Y127_E 56.263 -0.00686815
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..019dd537572546826c8282fbb86a95cad1dcf54c
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_T 931.243 -0.11232
+MUSETT_T1_DSSD_X1_T 945.084 -0.114015
+MUSETT_T1_DSSD_X2_T 947.562 -0.114341
+MUSETT_T1_DSSD_X3_T 958.911 -0.115712
+MUSETT_T1_DSSD_X4_T 959.274 -0.115744
+MUSETT_T1_DSSD_X5_T 961.121 -0.115962
+MUSETT_T1_DSSD_X6_T 974.613 -0.117589
+MUSETT_T1_DSSD_X7_T 969.703 -0.116998
+MUSETT_T1_DSSD_X8_T 973.909 -0.117498
+MUSETT_T1_DSSD_X9_T 982.972 -0.118577
+MUSETT_T1_DSSD_X10_T 979.25 -0.118143
+MUSETT_T1_DSSD_X11_T 978.727 -0.118071
+MUSETT_T1_DSSD_X12_T 990.788 -0.11954
+MUSETT_T1_DSSD_X13_T 991.407 -0.119597
+MUSETT_T1_DSSD_X14_T 988.337 -0.119236
+MUSETT_T1_DSSD_X15_T 1375.029 -0.119179
+MUSETT_T1_DSSD_X16_T 927.042 -0.111777
+MUSETT_T1_DSSD_X17_T 950.021 -0.114612
+MUSETT_T1_DSSD_X18_T 950.947 -0.114738
+MUSETT_T1_DSSD_X19_T 948.537 -0.114439
+MUSETT_T1_DSSD_X20_T 956.835 -0.115464
+MUSETT_T1_DSSD_X21_T 969.98 -0.117052
+MUSETT_T1_DSSD_X22_T 959.253 -0.115762
+MUSETT_T1_DSSD_X23_T 975.846 -0.117739
+MUSETT_T1_DSSD_X24_T 974.071 -0.117531
+MUSETT_T1_DSSD_X25_T 977.168 -0.117923
+MUSETT_T1_DSSD_X26_T 975.805 -0.117737
+MUSETT_T1_DSSD_X27_T 979.545 -0.11821
+MUSETT_T1_DSSD_X28_T 983.428 -0.118677
+MUSETT_T1_DSSD_X29_T 980.499 -0.118324
+MUSETT_T1_DSSD_X30_T 979.469 -0.118198
+MUSETT_T1_DSSD_X31_T 988.102 -0.119148
+MUSETT_T1_DSSD_X32_T 880.379 -0.106165
+MUSETT_T1_DSSD_X33_T 880.08 -0.10618
+MUSETT_T1_DSSD_X34_T 895.406 -0.108064
+MUSETT_T1_DSSD_X35_T 878.12 -0.105941
+MUSETT_T1_DSSD_X36_T 895.881 -0.108105
+MUSETT_T1_DSSD_X37_T 901.785 -0.108823
+MUSETT_T1_DSSD_X38_T 894.137 -0.107861
+MUSETT_T1_DSSD_X39_T 898.782 -0.10842
+MUSETT_T1_DSSD_X40_T 901.632 -0.108779
+MUSETT_T1_DSSD_X41_T 904.878 -0.108754
+MUSETT_T1_DSSD_X42_T 910.193 -0.109783
+MUSETT_T1_DSSD_X43_T 902.054 -0.108855
+MUSETT_T1_DSSD_X44_T 911.528 -0.110019
+MUSETT_T1_DSSD_X45_T 909.985 -0.109854
+MUSETT_T1_DSSD_X46_T 907.601 -0.109528
+MUSETT_T1_DSSD_X47_T 922.228 -0.110055
+MUSETT_T1_DSSD_X48_T 869.923 -0.104838
+MUSETT_T1_DSSD_X49_T 875.125 -0.105455
+MUSETT_T1_DSSD_X50_T 887.868 -0.107015
+MUSETT_T1_DSSD_X51_T 890.27 -0.107338
+MUSETT_T1_DSSD_X52_T 893.359 -0.107685
+MUSETT_T1_DSSD_X53_T 893.348 -0.107699
+MUSETT_T1_DSSD_X54_T 900.729 -0.10819
+MUSETT_T1_DSSD_X55_T 906.65 -0.108878
+MUSETT_T1_DSSD_X56_T 909.8 -0.1097
+MUSETT_T1_DSSD_X57_T 905.423 -0.10916
+MUSETT_T1_DSSD_X58_T 914.17 -0.110244
+MUSETT_T1_DSSD_X59_T 906.586 -0.109308
+MUSETT_T1_DSSD_X60_T 919.705 -0.110894
+MUSETT_T1_DSSD_X61_T 911.009 -0.109867
+MUSETT_T1_DSSD_X62_T 910.69 -0.109791
+MUSETT_T1_DSSD_X63_T 919.963 -0.110777
+MUSETT_T1_DSSD_X64_T 952.039 -0.114723
+MUSETT_T1_DSSD_X65_T 953.727 -0.114949
+MUSETT_T1_DSSD_X66_T 967.402 -0.116629
+MUSETT_T1_DSSD_X67_T 963.242 -0.116557
+MUSETT_T1_DSSD_X68_T 969.139 -0.116827
+MUSETT_T1_DSSD_X69_T 973.545 -0.117811
+MUSETT_T1_DSSD_X70_T 973.3 -0.117758
+MUSETT_T1_DSSD_X71_T 978.421 -0.118392
+MUSETT_T1_DSSD_X72_T 975.853 -0.118063
+MUSETT_T1_DSSD_X73_T 990.602 -0.119853
+MUSETT_T1_DSSD_X74_T 986.683 -0.119377
+MUSETT_T1_DSSD_X75_T 984.808 -0.119141
+MUSETT_T1_DSSD_X76_T 991.649 -0.119982
+MUSETT_T1_DSSD_X77_T 997.413 -0.120199
+MUSETT_T1_DSSD_X78_T 993.522 -0.1202
+MUSETT_T1_DSSD_X79_T 1382.854 -0.120722
+MUSETT_T1_DSSD_X80_T 973.769 -0.117775
+MUSETT_T1_DSSD_X81_T 975.739 -0.118024
+MUSETT_T1_DSSD_X82_T 984.702 -0.118652
+MUSETT_T1_DSSD_X83_T 998.209 -0.120307
+MUSETT_T1_DSSD_X84_T 993.886 -0.120215
+MUSETT_T1_DSSD_X85_T 1003.201 -0.121389
+MUSETT_T1_DSSD_X86_T 1004.641 -0.121554
+MUSETT_T1_DSSD_X87_T 996.555 -0.12057
+MUSETT_T1_DSSD_X88_T 1011.012 -0.122345
+MUSETT_T1_DSSD_X89_T 1013.335 -0.12261
+MUSETT_T1_DSSD_X90_T 1008.829 -0.122082
+MUSETT_T1_DSSD_X91_T 1015.054 -0.12282
+MUSETT_T1_DSSD_X92_T 1014.579 -0.12279
+MUSETT_T1_DSSD_X93_T 1017.346 -0.123127
+MUSETT_T1_DSSD_X94_T 1021.088 -0.123096
+MUSETT_T1_DSSD_X95_T 1005.091 -0.12163
+MUSETT_T1_DSSD_X96_T 889.567 -0.107613
+MUSETT_T1_DSSD_X97_T 887.661 -0.107373
+MUSETT_T1_DSSD_X98_T 891.391 -0.107838
+MUSETT_T1_DSSD_X99_T 902.766 -0.109224
+MUSETT_T1_DSSD_X100_T 902.54 -0.1092
+MUSETT_T1_DSSD_X101_T 907.648 -0.109791
+MUSETT_T1_DSSD_X102_T 903.145 -0.109268
+MUSETT_T1_DSSD_X103_T 918.818 -0.111151
+MUSETT_T1_DSSD_X104_T 920.016 -0.11128
+MUSETT_T1_DSSD_X105_T 921.413 -0.111467
+MUSETT_T1_DSSD_X106_T 926.201 -0.112035
+MUSETT_T1_DSSD_X107_T 921.77 -0.111519
+MUSETT_T1_DSSD_X108_T 922.63 -0.111616
+MUSETT_T1_DSSD_X109_T 914.413 -0.110627
+MUSETT_T1_DSSD_X110_T 916.972 -0.110941
+MUSETT_T1_DSSD_X111_T 923.713 -0.11176
+MUSETT_T1_DSSD_X112_T 897.837 -0.108476
+MUSETT_T1_DSSD_X113_T 898.652 -0.108567
+MUSETT_T1_DSSD_X114_T 905.902 -0.10946
+MUSETT_T1_DSSD_X115_T 911.452 -0.110136
+MUSETT_T1_DSSD_X116_T 926.396 -0.111977
+MUSETT_T1_DSSD_X117_T 920.897 -0.111304
+MUSETT_T1_DSSD_X118_T 933.101 -0.112781
+MUSETT_T1_DSSD_X119_T 915.617 -0.110659
+MUSETT_T1_DSSD_X120_T 921.125 -0.111325
+MUSETT_T1_DSSD_X121_T 928.617 -0.112226
+MUSETT_T1_DSSD_X122_T 929.597 -0.11236
+MUSETT_T1_DSSD_X123_T 924.845 -0.111775
+MUSETT_T1_DSSD_X124_T 922.311 -0.111483
+MUSETT_T1_DSSD_X125_T 928.291 -0.112193
+MUSETT_T1_DSSD_X126_T 931.58 -0.112614
+MUSETT_T1_DSSD_X127_T 925.581 -0.111864
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..057fc9eca6e5f37767d36685518135611d46ad35
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_T 932.035 -0.11282
+MUSETT_T1_DSSD_Y1_T 933.495 -0.113022
+MUSETT_T1_DSSD_Y2_T 944.411 -0.114361
+MUSETT_T1_DSSD_Y3_T 948.375 -0.114834
+MUSETT_T1_DSSD_Y4_T 950.778 -0.115122
+MUSETT_T1_DSSD_Y5_T 954.172 -0.115533
+MUSETT_T1_DSSD_Y6_T 957.549 -0.115938
+MUSETT_T1_DSSD_Y7_T 947.562 -0.114726
+MUSETT_T1_DSSD_Y8_T 954.965 -0.11562
+MUSETT_T1_DSSD_Y9_T 965.207 -0.116854
+MUSETT_T1_DSSD_Y10_T 961.189 -0.116368
+MUSETT_T1_DSSD_Y11_T 968.97 -0.117327
+MUSETT_T1_DSSD_Y12_T 969.302 -0.117358
+MUSETT_T1_DSSD_Y13_T 964.945 -0.116827
+MUSETT_T1_DSSD_Y14_T 966.214 -0.116981
+MUSETT_T1_DSSD_Y15_T 963.966 -0.116717
+MUSETT_T1_DSSD_Y16_T 965.888 -0.116883
+MUSETT_T1_DSSD_Y17_T 967.684 -0.117128
+MUSETT_T1_DSSD_Y18_T 972.15 -0.117665
+MUSETT_T1_DSSD_Y19_T 972.745 -0.117743
+MUSETT_T1_DSSD_Y20_T 984.112 -0.119146
+MUSETT_T1_DSSD_Y21_T 980.877 -0.118747
+MUSETT_T1_DSSD_Y22_T 450.0 -0.119189
+MUSETT_T1_DSSD_Y23_T 990.666 -0.119964
+MUSETT_T1_DSSD_Y24_T 992.259 -0.120158
+MUSETT_T1_DSSD_Y25_T 992.41 -0.120176
+MUSETT_T1_DSSD_Y26_T 996.766 -0.120728
+MUSETT_T1_DSSD_Y27_T 991.746 -0.120113
+MUSETT_T1_DSSD_Y28_T 993.587 -0.120339
+MUSETT_T1_DSSD_Y29_T 985.064 -0.119308
+MUSETT_T1_DSSD_Y30_T 991.596 -0.120108
+MUSETT_T1_DSSD_Y31_T 986.445 -0.119515
+MUSETT_T1_DSSD_Y32_T 881.012 -0.106691
+MUSETT_T1_DSSD_Y33_T 886.766 -0.10745
+MUSETT_T1_DSSD_Y34_T 882.204 -0.106848
+MUSETT_T1_DSSD_Y35_T 891.854 -0.108037
+MUSETT_T1_DSSD_Y36_T 850619310270.0 -103827000.0
+MUSETT_T1_DSSD_Y37_T 902.417 -0.109433
+MUSETT_T1_DSSD_Y38_T 901.585 -0.110242
+MUSETT_T1_DSSD_Y39_T 903.595 -0.10944
+MUSETT_T1_DSSD_Y40_T 891.657 -0.107957
+MUSETT_T1_DSSD_Y41_T 903.952 -0.109521
+MUSETT_T1_DSSD_Y42_T 896.803 -0.108623
+MUSETT_T1_DSSD_Y43_T 905.625 -0.10969
+MUSETT_T1_DSSD_Y44_T 908.281 -0.109989
+MUSETT_T1_DSSD_Y45_T 902.33 -0.109312
+MUSETT_T1_DSSD_Y46_T 907.41 -0.109844
+MUSETT_T1_DSSD_Y47_T 902.089 -0.109257
+MUSETT_T1_DSSD_Y48_T 884.479 -0.10696
+MUSETT_T1_DSSD_Y49_T 883.474 -0.106852
+MUSETT_T1_DSSD_Y50_T 879.998 -0.106436
+MUSETT_T1_DSSD_Y51_T 893.146 -0.108049
+MUSETT_T1_DSSD_Y52_T 898.884 -0.108781
+MUSETT_T1_DSSD_Y53_T 900.108 -0.108923
+MUSETT_T1_DSSD_Y54_T 900.099 -0.108922
+MUSETT_T1_DSSD_Y55_T 900.287 -0.108949
+MUSETT_T1_DSSD_Y56_T 912.19 -0.110395
+MUSETT_T1_DSSD_Y57_T 911.3 -0.110294
+MUSETT_T1_DSSD_Y58_T 906.773 -0.109746
+MUSETT_T1_DSSD_Y59_T 909.678 -0.109802
+MUSETT_T1_DSSD_Y60_T 906.734 -0.109742
+MUSETT_T1_DSSD_Y61_T 914.732 -0.11072
+MUSETT_T1_DSSD_Y62_T 916.102 -0.110879
+MUSETT_T1_DSSD_Y63_T 917.148 -0.111037
+MUSETT_T1_DSSD_Y64_T 946.855 -0.115194
+MUSETT_T1_DSSD_Y65_T 953.644 -0.116053
+MUSETT_T1_DSSD_Y66_T 959.75 -0.116788
+MUSETT_T1_DSSD_Y67_T 963.24 -0.117211
+MUSETT_T1_DSSD_Y68_T 966.608 -0.117617
+MUSETT_T1_DSSD_Y69_T 974.806 -0.118609
+MUSETT_T1_DSSD_Y70_T 970.229 -0.118053
+MUSETT_T1_DSSD_Y71_T 978.318 -0.119038
+MUSETT_T1_DSSD_Y72_T 979.408 -0.119163
+MUSETT_T1_DSSD_Y73_T 982.639 -0.119552
+MUSETT_T1_DSSD_Y74_T 984.456 -0.119777
+MUSETT_T1_DSSD_Y75_T 981.379 -0.119391
+MUSETT_T1_DSSD_Y76_T 984.651 -0.11981
+MUSETT_T1_DSSD_Y77_T 982.31 -0.119505
+MUSETT_T1_DSSD_Y78_T 983.007 -0.119601
+MUSETT_T1_DSSD_Y79_T 988.01 -0.120194
+MUSETT_T1_DSSD_Y80_T 943.199 -0.114646
+MUSETT_T1_DSSD_Y81_T 951.261 -0.115676
+MUSETT_T1_DSSD_Y82_T 950.217 -0.115551
+MUSETT_T1_DSSD_Y83_T 957.193 -0.116392
+MUSETT_T1_DSSD_Y84_T 956.711 -0.116344
+MUSETT_T1_DSSD_Y85_T 966.907 -0.117589
+MUSETT_T1_DSSD_Y86_T 967.784 -0.117699
+MUSETT_T1_DSSD_Y87_T 974.973 -0.118567
+MUSETT_T1_DSSD_Y88_T 975.931 -0.118705
+MUSETT_T1_DSSD_Y89_T 968.629 -0.117807
+MUSETT_T1_DSSD_Y90_T 973.17 -0.118376
+MUSETT_T1_DSSD_Y91_T 981.206 -0.119333
+MUSETT_T1_DSSD_Y92_T 981.863 -0.119429
+MUSETT_T1_DSSD_Y93_T 974.832 -0.118576
+MUSETT_T1_DSSD_Y94_T 978.651 -0.119031
+MUSETT_T1_DSSD_Y95_T 989.899 -0.120471
+MUSETT_T1_DSSD_Y96_T 872.47 -0.106136
+MUSETT_T1_DSSD_Y97_T 871.244 -0.106
+MUSETT_T1_DSSD_Y98_T 875.764 -0.106555
+MUSETT_T1_DSSD_Y99_T 889.841 -0.108263
+MUSETT_T1_DSSD_Y100_T 887.593 -0.10801
+MUSETT_T1_DSSD_Y101_T 879.757 -0.107044
+MUSETT_T1_DSSD_Y102_T 887.54 -0.108005
+MUSETT_T1_DSSD_Y103_T 890.884 -0.108406
+MUSETT_T1_DSSD_Y104_T 901.255 -0.109653
+MUSETT_T1_DSSD_Y105_T 897.946 -0.10926
+MUSETT_T1_DSSD_Y106_T 901.33 -0.10967
+MUSETT_T1_DSSD_Y107_T 891.982 -0.108536
+MUSETT_T1_DSSD_Y108_T 899.178 -0.109417
+MUSETT_T1_DSSD_Y109_T 906.416 -0.110268
+MUSETT_T1_DSSD_Y110_T 903.498 -0.109108
+MUSETT_T1_DSSD_Y111_T 902.622 -0.109824
+MUSETT_T1_DSSD_Y112_T 858.806 -0.104291
+MUSETT_T1_DSSD_Y113_T 855.722 -0.103549
+MUSETT_T1_DSSD_Y114_T 862.565 -0.104798
+MUSETT_T1_DSSD_Y115_T 857.566 -0.10419
+MUSETT_T1_DSSD_Y116_T 866.024 -0.105221
+MUSETT_T1_DSSD_Y117_T 875.42 -0.106354
+MUSETT_T1_DSSD_Y118_T 879.769 -0.1069
+MUSETT_T1_DSSD_Y119_T 874.481 -0.106252
+MUSETT_T1_DSSD_Y120_T 891.89 -0.108379
+MUSETT_T1_DSSD_Y121_T 892.881 -0.108492
+MUSETT_T1_DSSD_Y122_T 890.673 -0.108225
+MUSETT_T1_DSSD_Y123_T 889.841 -0.108132
+MUSETT_T1_DSSD_Y124_T 892.159 -0.108412
+MUSETT_T1_DSSD_Y125_T 887.553 -0.10784
+MUSETT_T1_DSSD_Y126_T 884.907 -0.107526
+MUSETT_T1_DSSD_Y127_T 949.092 -0.121191
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..17930f9a4e4b5c6c066722fc2a2e491d00ca3d70
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E -62.7421 0.00765877
+MUSETT_T2_DSSD_X1_E -62.4792 0.00762671
+MUSETT_T2_DSSD_X2_E -62.865 0.00767381
+MUSETT_T2_DSSD_X3_E -62.0985 0.0075802199999999995
+MUSETT_T2_DSSD_X4_E -62.0571 0.0075752
+MUSETT_T2_DSSD_X5_E -62.707699999999996 0.00765462
+MUSETT_T2_DSSD_X6_E -62.4305 0.00762076
+MUSETT_T2_DSSD_X7_E -62.8149 0.0076677
+MUSETT_T2_DSSD_X8_E -62.9251 0.00768116
+MUSETT_T2_DSSD_X9_E -62.1225 0.00758321
+MUSETT_T2_DSSD_X10_E -62.473800000000004 0.00762602
+MUSETT_T2_DSSD_X11_E -62.4904 0.0076280900000000006
+MUSETT_T2_DSSD_X12_E -62.594199999999994 0.00764074
+MUSETT_T2_DSSD_X13_E -62.536699999999996 0.00763373
+MUSETT_T2_DSSD_X14_E -62.6456 0.00764703
+MUSETT_T2_DSSD_X15_E -63.3752 0.00773612
+MUSETT_T2_DSSD_X16_E -62.167199999999994 0.00758864
+MUSETT_T2_DSSD_X17_E -61.8033 0.007544240000000001
+MUSETT_T2_DSSD_X18_E -61.5785 0.00751678
+MUSETT_T2_DSSD_X19_E -61.470800000000004 0.00750362
+MUSETT_T2_DSSD_X20_E -61.4837 0.00750523
+MUSETT_T2_DSSD_X21_E -62.3158 0.007606760000000001
+MUSETT_T2_DSSD_X22_E -62.1547 0.0075870899999999995
+MUSETT_T2_DSSD_X23_E -61.7911 0.00754274
+MUSETT_T2_DSSD_X24_E -61.6316 0.0075232599999999995
+MUSETT_T2_DSSD_X25_E -61.8242 0.00754673
+MUSETT_T2_DSSD_X26_E -61.9627 0.00756372
+MUSETT_T2_DSSD_X27_E -61.7744 0.00754065
+MUSETT_T2_DSSD_X28_E -61.6645 0.00752723
+MUSETT_T2_DSSD_X29_E -61.257400000000004 0.00747756
+MUSETT_T2_DSSD_X30_E -62.372099999999996 0.0076136400000000005
+MUSETT_T2_DSSD_X31_E -61.5182 0.0075094
+MUSETT_T2_DSSD_X32_E -58.9973 0.0072016499999999995
+MUSETT_T2_DSSD_X33_E -58.122699999999995 0.0070948700000000005
+MUSETT_T2_DSSD_X34_E -58.5748 0.00715013
+MUSETT_T2_DSSD_X35_E -58.3687 0.0071249
+MUSETT_T2_DSSD_X36_E -58.173300000000005 0.00710106
+MUSETT_T2_DSSD_X37_E -58.1415 0.0070972200000000004
+MUSETT_T2_DSSD_X38_E -58.3248 0.00711956
+MUSETT_T2_DSSD_X39_E -57.915800000000004 0.00706966
+MUSETT_T2_DSSD_X40_E -57.571400000000004 0.007027599999999999
+MUSETT_T2_DSSD_X41_E -58.5635 0.00714871
+MUSETT_T2_DSSD_X42_E -58.788599999999995 0.00717615
+MUSETT_T2_DSSD_X43_E -58.273900000000005 0.00711334
+MUSETT_T2_DSSD_X44_E -58.563900000000004 0.00714877
+MUSETT_T2_DSSD_X45_E -58.527 0.00714428
+MUSETT_T2_DSSD_X46_E -58.3393 0.00712137
+MUSETT_T2_DSSD_X47_E -58.469699999999996 0.0071372499999999995
+MUSETT_T2_DSSD_X48_E -57.7795 0.00705305
+MUSETT_T2_DSSD_X49_E -57.166 0.00697811
+MUSETT_T2_DSSD_X50_E -58.1299 0.0070957699999999995
+MUSETT_T2_DSSD_X51_E -57.864599999999996 0.00706342
+MUSETT_T2_DSSD_X52_E -57.5373 0.0070234600000000005
+MUSETT_T2_DSSD_X53_E -57.137 0.00697462
+MUSETT_T2_DSSD_X54_E -57.8198 0.007057959999999999
+MUSETT_T2_DSSD_X55_E -57.621199999999995 0.00703367
+MUSETT_T2_DSSD_X56_E -57.914 0.0070694600000000005
+MUSETT_T2_DSSD_X57_E -57.5076 0.00701987
+MUSETT_T2_DSSD_X58_E -57.9231 0.007070610000000001
+MUSETT_T2_DSSD_X59_E -56.9989 0.00695776
+MUSETT_T2_DSSD_X60_E -57.486599999999996 0.00701726
+MUSETT_T2_DSSD_X61_E -56.6863 0.00691961
+MUSETT_T2_DSSD_X62_E -57.4581 0.0070138299999999995
+MUSETT_T2_DSSD_X63_E -57.8619 0.00706309
+MUSETT_T2_DSSD_X64_E -63.3158 0.00772883
+MUSETT_T2_DSSD_X65_E -64.9944 0.0079338
+MUSETT_T2_DSSD_X66_E -64.0256 0.00781543
+MUSETT_T2_DSSD_X67_E -63.7104 0.00777703
+MUSETT_T2_DSSD_X68_E -10.0 0.0
+MUSETT_T2_DSSD_X69_E -64.3822 0.007859
+MUSETT_T2_DSSD_X70_E -63.647800000000004 0.0077693599999999995
+MUSETT_T2_DSSD_X71_E -63.4446 0.0077446
+MUSETT_T2_DSSD_X72_E -63.3618 0.00773443
+MUSETT_T2_DSSD_X73_E -63.093900000000005 0.00770176
+MUSETT_T2_DSSD_X74_E -63.8269 0.0077912499999999996
+MUSETT_T2_DSSD_X75_E -63.664199999999994 0.00777139
+MUSETT_T2_DSSD_X76_E -63.8841 0.00779822
+MUSETT_T2_DSSD_X77_E -63.7164 0.00777776
+MUSETT_T2_DSSD_X78_E -63.6246 0.007766619999999999
+MUSETT_T2_DSSD_X79_E -63.5937 0.00776277
+MUSETT_T2_DSSD_X80_E -63.2476 0.00772049
+MUSETT_T2_DSSD_X81_E -63.2975 0.0077267099999999995
+MUSETT_T2_DSSD_X82_E -63.1009 0.00770261
+MUSETT_T2_DSSD_X83_E -63.149800000000006 0.00770857
+MUSETT_T2_DSSD_X84_E -63.9192 0.007802450000000001
+MUSETT_T2_DSSD_X85_E -63.8105 0.0077892000000000005
+MUSETT_T2_DSSD_X86_E -63.724599999999995 0.00777877
+MUSETT_T2_DSSD_X87_E -63.9231 0.00780293
+MUSETT_T2_DSSD_X88_E -63.0451 0.0076958
+MUSETT_T2_DSSD_X89_E -63.491800000000005 0.007750379999999999
+MUSETT_T2_DSSD_X90_E -63.3429 0.00773222
+MUSETT_T2_DSSD_X91_E -63.540699999999994 0.007756300000000001
+MUSETT_T2_DSSD_X92_E -63.268 0.00772303
+MUSETT_T2_DSSD_X93_E -64.611 0.00788691
+MUSETT_T2_DSSD_X94_E -63.699 0.0077756
+MUSETT_T2_DSSD_X95_E -63.6235 0.00776632
+MUSETT_T2_DSSD_X96_E -59.026199999999996 0.00720527
+MUSETT_T2_DSSD_X97_E -58.5406 0.00714597
+MUSETT_T2_DSSD_X98_E -58.3044 0.00711715
+MUSETT_T2_DSSD_X99_E -58.710800000000006 0.00716671
+MUSETT_T2_DSSD_X100_E -59.397800000000004 0.00725058
+MUSETT_T2_DSSD_X101_E -59.3529 0.0072451
+MUSETT_T2_DSSD_X102_E -58.824 0.00718059
+MUSETT_T2_DSSD_X103_E -59.0216 0.0072047
+MUSETT_T2_DSSD_X104_E -59.011199999999995 0.0072034
+MUSETT_T2_DSSD_X105_E -59.098800000000004 0.00721406
+MUSETT_T2_DSSD_X106_E -58.7173 0.0071675
+MUSETT_T2_DSSD_X107_E -58.9915 0.00720094
+MUSETT_T2_DSSD_X108_E -58.718900000000005 0.00716772
+MUSETT_T2_DSSD_X109_E -60.3408 0.00736568
+MUSETT_T2_DSSD_X110_E -58.9501 0.0071959
+MUSETT_T2_DSSD_X111_E -58.6752 0.00716237
+MUSETT_T2_DSSD_X112_E -59.2957 0.0072381
+MUSETT_T2_DSSD_X113_E -59.3395 0.00724343
+MUSETT_T2_DSSD_X114_E -59.702 0.00728774
+MUSETT_T2_DSSD_X115_E -59.145300000000006 0.00721974
+MUSETT_T2_DSSD_X116_E -59.642 0.00728038
+MUSETT_T2_DSSD_X117_E -59.9957 0.00732358
+MUSETT_T2_DSSD_X118_E -59.4429 0.00725607
+MUSETT_T2_DSSD_X119_E -59.354800000000004 0.00724536
+MUSETT_T2_DSSD_X120_E -60.0831 0.00733422
+MUSETT_T2_DSSD_X121_E -58.758900000000004 0.00717258
+MUSETT_T2_DSSD_X122_E -59.087300000000006 0.00721264
+MUSETT_T2_DSSD_X123_E -59.302 0.0072389
+MUSETT_T2_DSSD_X124_E -58.9116 0.00719123
+MUSETT_T2_DSSD_X125_E -58.940599999999996 0.00719471
+MUSETT_T2_DSSD_X126_E -59.1426 0.0072194
+MUSETT_T2_DSSD_X127_E -59.2913 0.0072375600000000005
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..db568f8d67c8f9e13b39457ae43502806b6fcbdd
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_E 63.2211 -0.00771756
+MUSETT_T2_DSSD_Y1_E 64.033 -0.00781661
+MUSETT_T2_DSSD_Y2_E 62.573 -0.00763842
+MUSETT_T2_DSSD_Y3_E 63.453199999999995 -0.007745879999999999
+MUSETT_T2_DSSD_Y4_E 63.0084 -0.00769158
+MUSETT_T2_DSSD_Y5_E 62.742 -0.00765904
+MUSETT_T2_DSSD_Y6_E 63.0508 -0.00769679
+MUSETT_T2_DSSD_Y7_E 62.6824 -0.0076517600000000005
+MUSETT_T2_DSSD_Y8_E 62.844300000000004 -0.00767155
+MUSETT_T2_DSSD_Y9_E 63.462900000000005 -0.007747029999999999
+MUSETT_T2_DSSD_Y10_E 62.9966 -0.00769016
+MUSETT_T2_DSSD_Y11_E 62.575 -0.00763867
+MUSETT_T2_DSSD_Y12_E 62.1312 -0.00758453
+MUSETT_T2_DSSD_Y13_E 62.781800000000004 -0.00766392
+MUSETT_T2_DSSD_Y14_E 62.9937 -0.00768982
+MUSETT_T2_DSSD_Y15_E 63.488800000000005 -0.00775026
+MUSETT_T2_DSSD_Y16_E 61.669599999999996 -0.0075280899999999994
+MUSETT_T2_DSSD_Y17_E 60.961400000000005 -0.0074417400000000005
+MUSETT_T2_DSSD_Y18_E 60.7264 -0.00741301
+MUSETT_T2_DSSD_Y19_E 62.0874 -0.00757914
+MUSETT_T2_DSSD_Y20_E 61.094300000000004 -0.00745789
+MUSETT_T2_DSSD_Y21_E 60.9275 -0.00743756
+MUSETT_T2_DSSD_Y22_E 62.1491 -0.00758664
+MUSETT_T2_DSSD_Y23_E 61.087900000000005 -0.00745714
+MUSETT_T2_DSSD_Y24_E 61.0724 -0.00745528
+MUSETT_T2_DSSD_Y25_E 61.6042 -0.0075201700000000005
+MUSETT_T2_DSSD_Y26_E 61.1313 -0.00746243
+MUSETT_T2_DSSD_Y27_E 61.442 -0.00750039
+MUSETT_T2_DSSD_Y28_E 61.55 -0.00751354
+MUSETT_T2_DSSD_Y29_E 61.5135 -0.00750906
+MUSETT_T2_DSSD_Y30_E 61.3444 -0.00748846
+MUSETT_T2_DSSD_Y31_E 61.7721 -0.00754065
+MUSETT_T2_DSSD_Y32_E 56.3053 -0.00687326
+MUSETT_T2_DSSD_Y33_E 56.4975 -0.00689675
+MUSETT_T2_DSSD_Y34_E 56.8346 -0.00693796
+MUSETT_T2_DSSD_Y35_E 56.7034 -0.00692192
+MUSETT_T2_DSSD_Y36_E 56.977 -0.0069553
+MUSETT_T2_DSSD_Y37_E 56.8891 -0.00694457
+MUSETT_T2_DSSD_Y38_E 56.450300000000006 -0.0068909900000000005
+MUSETT_T2_DSSD_Y39_E 56.4039 -0.006885329999999999
+MUSETT_T2_DSSD_Y40_E 56.2056 -0.00686116
+MUSETT_T2_DSSD_Y41_E 58.1252 -0.0070954600000000005
+MUSETT_T2_DSSD_Y42_E 56.7624 -0.00692908
+MUSETT_T2_DSSD_Y43_E 56.2999 -0.006872690000000001
+MUSETT_T2_DSSD_Y44_E 57.261300000000006 -0.00698997
+MUSETT_T2_DSSD_Y45_E 57.2476 -0.00698834
+MUSETT_T2_DSSD_Y46_E 57.0309 -0.00696185
+MUSETT_T2_DSSD_Y47_E 56.7446 -0.006926949999999999
+MUSETT_T2_DSSD_Y48_E 57.601800000000004 -0.007031620000000001
+MUSETT_T2_DSSD_Y49_E 57.0171 -0.00696022
+MUSETT_T2_DSSD_Y50_E 57.9334 -0.00707206
+MUSETT_T2_DSSD_Y51_E 57.4264 -0.00701017
+MUSETT_T2_DSSD_Y52_E 57.2978 -0.00699446
+MUSETT_T2_DSSD_Y53_E 58.6368 -0.00715795
+MUSETT_T2_DSSD_Y54_E 57.7444 -0.007049000000000001
+MUSETT_T2_DSSD_Y55_E 57.8392 -0.00706057
+MUSETT_T2_DSSD_Y56_E 57.708800000000004 -0.0070446499999999995
+MUSETT_T2_DSSD_Y57_E 57.5585 -0.00702632
+MUSETT_T2_DSSD_Y58_E 57.4748 -0.00701608
+MUSETT_T2_DSSD_Y59_E 58.2609 -0.00711207
+MUSETT_T2_DSSD_Y60_E 57.892199999999995 -0.00706703
+MUSETT_T2_DSSD_Y61_E 57.33 -0.00699845
+MUSETT_T2_DSSD_Y62_E 57.835699999999996 -0.00706015
+MUSETT_T2_DSSD_Y63_E 58.1845 -0.00710268
+MUSETT_T2_DSSD_Y64_E 59.348099999999995 -0.007244830000000001
+MUSETT_T2_DSSD_Y65_E 59.6057 -0.00727624
+MUSETT_T2_DSSD_Y66_E 59.4559 -0.00725797
+MUSETT_T2_DSSD_Y67_E 60.4295 -0.0073767500000000005
+MUSETT_T2_DSSD_Y68_E 59.568599999999996 -0.00727167
+MUSETT_T2_DSSD_Y69_E 59.821400000000004 -0.00730253
+MUSETT_T2_DSSD_Y70_E 59.558 -0.00727041
+MUSETT_T2_DSSD_Y71_E 59.8926 -0.0073113
+MUSETT_T2_DSSD_Y72_E 59.8765 -0.007309230000000001
+MUSETT_T2_DSSD_Y73_E 59.5571 -0.0072702999999999995
+MUSETT_T2_DSSD_Y74_E 59.902699999999996 -0.0073124900000000005
+MUSETT_T2_DSSD_Y75_E 60.0592 -0.00733158
+MUSETT_T2_DSSD_Y76_E 59.3142 -0.0072406499999999995
+MUSETT_T2_DSSD_Y77_E 59.977199999999996 -0.00732152
+MUSETT_T2_DSSD_Y78_E 59.375699999999995 -0.00724812
+MUSETT_T2_DSSD_Y79_E 60.1625 -0.00734418
+MUSETT_T2_DSSD_Y80_E 60.553599999999996 -0.0073919699999999994
+MUSETT_T2_DSSD_Y81_E 61.2375 -0.00747541
+MUSETT_T2_DSSD_Y82_E 60.562599999999996 -0.00739303
+MUSETT_T2_DSSD_Y83_E 61.2245 -0.00747385
+MUSETT_T2_DSSD_Y84_E 61.126400000000004 -0.00746188
+MUSETT_T2_DSSD_Y85_E 60.9095 -0.0074354
+MUSETT_T2_DSSD_Y86_E 60.9575 -0.00744128
+MUSETT_T2_DSSD_Y87_E 61.286199999999994 -0.00748137
+MUSETT_T2_DSSD_Y88_E 60.884699999999995 -0.007432299999999999
+MUSETT_T2_DSSD_Y89_E 60.871 -0.007430679999999999
+MUSETT_T2_DSSD_Y90_E 61.4437 -0.00750059
+MUSETT_T2_DSSD_Y91_E 60.6586 -0.00740476
+MUSETT_T2_DSSD_Y92_E 61.0976 -0.00745829
+MUSETT_T2_DSSD_Y93_E 60.6141 -0.00739932
+MUSETT_T2_DSSD_Y94_E 61.0445 -0.00745181
+MUSETT_T2_DSSD_Y95_E 61.4704 -0.00750378
+MUSETT_T2_DSSD_Y96_E 56.8785 -0.00694331
+MUSETT_T2_DSSD_Y97_E 55.9619 -0.006831380000000001
+MUSETT_T2_DSSD_Y98_E 56.2188 -0.00686276
+MUSETT_T2_DSSD_Y99_E 56.6425 -0.00691453
+MUSETT_T2_DSSD_Y100_E 56.348 -0.00687854
+MUSETT_T2_DSSD_Y101_E 56.7474 -0.0069273
+MUSETT_T2_DSSD_Y102_E 55.9048 -0.00682446
+MUSETT_T2_DSSD_Y103_E 57.240300000000005 -0.00698747
+MUSETT_T2_DSSD_Y104_E 56.0874 -0.006846720000000001
+MUSETT_T2_DSSD_Y105_E 56.732099999999996 -0.0069254600000000005
+MUSETT_T2_DSSD_Y106_E 56.6237 -0.00691218
+MUSETT_T2_DSSD_Y107_E 57.520300000000006 -0.00702164
+MUSETT_T2_DSSD_Y108_E 57.0144 -0.0069599
+MUSETT_T2_DSSD_Y109_E 56.700300000000006 -0.00692155
+MUSETT_T2_DSSD_Y110_E 57.019800000000004 -0.006960549999999999
+MUSETT_T2_DSSD_Y111_E 56.158699999999996 -0.00685546
+MUSETT_T2_DSSD_Y112_E 56.4865 -0.00689543
+MUSETT_T2_DSSD_Y113_E 57.289300000000004 -0.00699345
+MUSETT_T2_DSSD_Y114_E 56.5979 -0.00690909
+MUSETT_T2_DSSD_Y115_E 56.8241 -0.00693669
+MUSETT_T2_DSSD_Y116_E 56.51 -0.00689835
+MUSETT_T2_DSSD_Y117_E 56.5638 -0.00690489
+MUSETT_T2_DSSD_Y118_E 56.834900000000005 -0.00693798
+MUSETT_T2_DSSD_Y119_E 56.738099999999996 -0.0069261999999999995
+MUSETT_T2_DSSD_Y120_E 56.3376 -0.00687729
+MUSETT_T2_DSSD_Y121_E 57.0592 -0.00696537
+MUSETT_T2_DSSD_Y122_E 57.4198 -0.007009400000000001
+MUSETT_T2_DSSD_Y123_E -10.0 0.0
+MUSETT_T2_DSSD_Y124_E 56.2087 -0.00686156
+MUSETT_T2_DSSD_Y125_E 56.914199999999994 -0.0069477
+MUSETT_T2_DSSD_Y126_E 56.3399 -0.00687758
+MUSETT_T2_DSSD_Y127_E 56.1682 -0.0068566
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..5df18adba5b9e7607717279d1e66bc626b9ccc17
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_T 961.969 -0.113282
+MUSETT_T2_DSSD_X1_T 958.383 -0.112935
+MUSETT_T2_DSSD_X2_T 959.323 -0.113903
+MUSETT_T2_DSSD_X3_T 971.546 -0.11541
+MUSETT_T2_DSSD_X4_T 974.655 -0.114834
+MUSETT_T2_DSSD_X5_T 1003.683 -0.116968
+MUSETT_T2_DSSD_X6_T 989.279 -0.116144
+MUSETT_T2_DSSD_X7_T 1005.564 -0.116738
+MUSETT_T2_DSSD_X8_T 997.02 -0.115736
+MUSETT_T2_DSSD_X9_T 1009.567 -0.117191
+MUSETT_T2_DSSD_X10_T 1016.097 -0.117505
+MUSETT_T2_DSSD_X11_T 1010.396 -0.116868
+MUSETT_T2_DSSD_X12_T 1023.961 -0.117596
+MUSETT_T2_DSSD_X13_T 1021.425 -0.116864
+MUSETT_T2_DSSD_X14_T 1022.087 -0.116934
+MUSETT_T2_DSSD_X15_T 1404.789 -0.118078
+MUSETT_T2_DSSD_X16_T 967.642 -0.111042
+MUSETT_T2_DSSD_X17_T 983.495 -0.1129
+MUSETT_T2_DSSD_X18_T 979.424 -0.113239
+MUSETT_T2_DSSD_X19_T 977.956 -0.11311
+MUSETT_T2_DSSD_X20_T 985.742 -0.114433
+MUSETT_T2_DSSD_X21_T 984.648 -0.113893
+MUSETT_T2_DSSD_X22_T 982.48 -0.113604
+MUSETT_T2_DSSD_X23_T 987.397 -0.114596
+MUSETT_T2_DSSD_X24_T 970.925 -0.113523
+MUSETT_T2_DSSD_X25_T 975.832 -0.114529
+MUSETT_T2_DSSD_X26_T 976.316 -0.114587
+MUSETT_T2_DSSD_X27_T 968.817 -0.114127
+MUSETT_T2_DSSD_X28_T 972.791 -0.115049
+MUSETT_T2_DSSD_X29_T 976.306 -0.114577
+MUSETT_T2_DSSD_X30_T 967.35 -0.114801
+MUSETT_T2_DSSD_X31_T 1112.794 -0.114725
+MUSETT_T2_DSSD_X32_T 886.943 -0.106884
+MUSETT_T2_DSSD_X33_T 884.583 -0.106588
+MUSETT_T2_DSSD_X34_T 893.29 -0.10771
+MUSETT_T2_DSSD_X35_T 890.797 -0.10739
+MUSETT_T2_DSSD_X36_T 904.52 -0.109058
+MUSETT_T2_DSSD_X37_T 901.6 -0.108685
+MUSETT_T2_DSSD_X38_T 912.776 -0.109605
+MUSETT_T2_DSSD_X39_T 909.538 -0.109211
+MUSETT_T2_DSSD_X40_T 905.616 -0.109168
+MUSETT_T2_DSSD_X41_T 909.953 -0.109617
+MUSETT_T2_DSSD_X42_T 915.691 -0.1104
+MUSETT_T2_DSSD_X43_T 914.614 -0.110254
+MUSETT_T2_DSSD_X44_T 922.657 -0.111219
+MUSETT_T2_DSSD_X45_T 921.084 -0.111043
+MUSETT_T2_DSSD_X46_T 924.127 -0.111378
+MUSETT_T2_DSSD_X47_T 1314.501 -0.11089
+MUSETT_T2_DSSD_X48_T 855.885 -0.102956
+MUSETT_T2_DSSD_X49_T 865.811 -0.104191
+MUSETT_T2_DSSD_X50_T 875.413 -0.105362
+MUSETT_T2_DSSD_X51_T 869.6 -0.10464
+MUSETT_T2_DSSD_X52_T 878.692 -0.105723
+MUSETT_T2_DSSD_X53_T 878.801 -0.105755
+MUSETT_T2_DSSD_X54_T 880.829 -0.105984
+MUSETT_T2_DSSD_X55_T 888.51 -0.106931
+MUSETT_T2_DSSD_X56_T 897.44 -0.108024
+MUSETT_T2_DSSD_X57_T 903.488 -0.108307
+MUSETT_T2_DSSD_X58_T 891.54 -0.107279
+MUSETT_T2_DSSD_X59_T 901.749 -0.108543
+MUSETT_T2_DSSD_X60_T 903.111 -0.108721
+MUSETT_T2_DSSD_X61_T 902.871 -0.108665
+MUSETT_T2_DSSD_X62_T 899.187 -0.10824
+MUSETT_T2_DSSD_X63_T 1290.423 -0.107885
+MUSETT_T2_DSSD_X64_T 974.417 -0.117533
+MUSETT_T2_DSSD_X65_T 974.467 -0.117545
+MUSETT_T2_DSSD_X66_T 982.266 -0.118957
+MUSETT_T2_DSSD_X67_T 987.279 -0.119584
+MUSETT_T2_DSSD_X68_T 450.0 -0.119902
+MUSETT_T2_DSSD_X69_T 994.768 -0.12002
+MUSETT_T2_DSSD_X70_T 996.07 -0.120171
+MUSETT_T2_DSSD_X71_T 1001.148 -0.120802
+MUSETT_T2_DSSD_X72_T 990.627 -0.119977
+MUSETT_T2_DSSD_X73_T 1007.159 -0.12102
+MUSETT_T2_DSSD_X74_T 995.316 -0.12055
+MUSETT_T2_DSSD_X75_T 995.021 -0.12048
+MUSETT_T2_DSSD_X76_T 1004.692 -0.121688
+MUSETT_T2_DSSD_X77_T 1008.471 -0.122136
+MUSETT_T2_DSSD_X78_T 1011.105 -0.122472
+MUSETT_T2_DSSD_X79_T 1326.05 -0.121488
+MUSETT_T2_DSSD_X80_T 951.951 -0.115148
+MUSETT_T2_DSSD_X81_T 962.967 -0.116512
+MUSETT_T2_DSSD_X82_T 964.814 -0.116735
+MUSETT_T2_DSSD_X83_T 968.296 -0.117158
+MUSETT_T2_DSSD_X84_T 968.369 -0.117159
+MUSETT_T2_DSSD_X85_T 969.781 -0.117336
+MUSETT_T2_DSSD_X86_T 990.877 -0.118997
+MUSETT_T2_DSSD_X87_T 986.288 -0.118879
+MUSETT_T2_DSSD_X88_T 992.984 -0.120152
+MUSETT_T2_DSSD_X89_T 996.567 -0.120143
+MUSETT_T2_DSSD_X90_T 995.578 -0.120011
+MUSETT_T2_DSSD_X91_T 989.666 -0.118788
+MUSETT_T2_DSSD_X92_T 1002.901 -0.120614
+MUSETT_T2_DSSD_X93_T 1000.682 -0.12112
+MUSETT_T2_DSSD_X94_T 1005.506 -0.12123
+MUSETT_T2_DSSD_X95_T 994.062 -0.119394
+MUSETT_T2_DSSD_X96_T 903.468 -0.10895
+MUSETT_T2_DSSD_X97_T 920.18 -0.11099
+MUSETT_T2_DSSD_X98_T 919.46 -0.110483
+MUSETT_T2_DSSD_X99_T 916.305 -0.110494
+MUSETT_T2_DSSD_X100_T 925.516 -0.11163
+MUSETT_T2_DSSD_X101_T 924.994 -0.111573
+MUSETT_T2_DSSD_X102_T 926.844 -0.111368
+MUSETT_T2_DSSD_X103_T 927.713 -0.111888
+MUSETT_T2_DSSD_X104_T 934.246 -0.113122
+MUSETT_T2_DSSD_X105_T 942.1 -0.112764
+MUSETT_T2_DSSD_X106_T 939.807 -0.113373
+MUSETT_T2_DSSD_X107_T 938.544 -0.112797
+MUSETT_T2_DSSD_X108_T 938.298 -0.113176
+MUSETT_T2_DSSD_X109_T 941.18 -0.113973
+MUSETT_T2_DSSD_X110_T 941.929 -0.114066
+MUSETT_T2_DSSD_X111_T 948.461 -0.113973
+MUSETT_T2_DSSD_X112_T 911.72 -0.108961
+MUSETT_T2_DSSD_X113_T 916.448 -0.109531
+MUSETT_T2_DSSD_X114_T 913.525 -0.110461
+MUSETT_T2_DSSD_X115_T 916.767 -0.110414
+MUSETT_T2_DSSD_X116_T 932.449 -0.112323
+MUSETT_T2_DSSD_X117_T 935.405 -0.11267
+MUSETT_T2_DSSD_X118_T 951.71 -0.113333
+MUSETT_T2_DSSD_X119_T 947.484 -0.113698
+MUSETT_T2_DSSD_X120_T 940.04 -0.113666
+MUSETT_T2_DSSD_X121_T 955.99 -0.114745
+MUSETT_T2_DSSD_X122_T 950.863 -0.113673
+MUSETT_T2_DSSD_X123_T 957.151 -0.11443
+MUSETT_T2_DSSD_X124_T 939.375 -0.113174
+MUSETT_T2_DSSD_X125_T 935.68 -0.113143
+MUSETT_T2_DSSD_X126_T 947.829 -0.114176
+MUSETT_T2_DSSD_X127_T 954.772 -0.114186
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..21f5654504ae9c5acbe796aa23daa7bea234d885
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_T 986.809 -0.119525
+MUSETT_T2_DSSD_Y1_T 989.707 -0.119903
+MUSETT_T2_DSSD_Y2_T 988.424 -0.119776
+MUSETT_T2_DSSD_Y3_T 994.772 -0.120524
+MUSETT_T2_DSSD_Y4_T 1000.112 -0.121165
+MUSETT_T2_DSSD_Y5_T 998.216 -0.120947
+MUSETT_T2_DSSD_Y6_T 1003.137 -0.121526
+MUSETT_T2_DSSD_Y7_T 1010.151 -0.122366
+MUSETT_T2_DSSD_Y8_T 1011.59 -0.122539
+MUSETT_T2_DSSD_Y9_T 1003.181 -0.121307
+MUSETT_T2_DSSD_Y10_T 1009.494 -0.122275
+MUSETT_T2_DSSD_Y11_T 1014.568 -0.122898
+MUSETT_T2_DSSD_Y12_T 1016.416 -0.12312
+MUSETT_T2_DSSD_Y13_T 1021.48 -0.123746
+MUSETT_T2_DSSD_Y14_T 1020.595 -0.123621
+MUSETT_T2_DSSD_Y15_T 1025.592 -0.123744
+MUSETT_T2_DSSD_Y16_T 939.197 -0.113632
+MUSETT_T2_DSSD_Y17_T 938.486 -0.11359
+MUSETT_T2_DSSD_Y18_T 938.117 -0.113546
+MUSETT_T2_DSSD_Y19_T 937.753 -0.113526
+MUSETT_T2_DSSD_Y20_T 952.829 -0.115367
+MUSETT_T2_DSSD_Y21_T 968.723 -0.117305
+MUSETT_T2_DSSD_Y22_T 964.707 -0.11682
+MUSETT_T2_DSSD_Y23_T 959.632 -0.116216
+MUSETT_T2_DSSD_Y24_T 975.259 -0.118134
+MUSETT_T2_DSSD_Y25_T 977.951 -0.118446
+MUSETT_T2_DSSD_Y26_T 975.198 -0.117858
+MUSETT_T2_DSSD_Y27_T 981.828 -0.11895
+MUSETT_T2_DSSD_Y28_T 976.046 -0.118238
+MUSETT_T2_DSSD_Y29_T 977.812 -0.118468
+MUSETT_T2_DSSD_Y30_T 976.59 -0.118337
+MUSETT_T2_DSSD_Y31_T 964.767 -0.116905
+MUSETT_T2_DSSD_Y32_T 869.429 -0.105393
+MUSETT_T2_DSSD_Y33_T 876.222 -0.106206
+MUSETT_T2_DSSD_Y34_T 892.019 -0.107711
+MUSETT_T2_DSSD_Y35_T 893.32 -0.10786
+MUSETT_T2_DSSD_Y36_T 893.254 -0.108297
+MUSETT_T2_DSSD_Y37_T 887.737 -0.107628
+MUSETT_T2_DSSD_Y38_T 903.996 -0.109574
+MUSETT_T2_DSSD_Y39_T 902.76 -0.109401
+MUSETT_T2_DSSD_Y40_T 905.554 -0.109756
+MUSETT_T2_DSSD_Y41_T 910.354 -0.110304
+MUSETT_T2_DSSD_Y42_T 906.017 -0.10979
+MUSETT_T2_DSSD_Y43_T 909.731 -0.110231
+MUSETT_T2_DSSD_Y44_T 912.223 -0.110532
+MUSETT_T2_DSSD_Y45_T 915.291 -0.110907
+MUSETT_T2_DSSD_Y46_T 919.13 -0.111371
+MUSETT_T2_DSSD_Y47_T 914.361 -0.110791
+MUSETT_T2_DSSD_Y48_T 892.707 -0.108016
+MUSETT_T2_DSSD_Y49_T 901.908 -0.109155
+MUSETT_T2_DSSD_Y50_T 899.294 -0.108834
+MUSETT_T2_DSSD_Y51_T 912.773 -0.110471
+MUSETT_T2_DSSD_Y52_T 905.427 -0.109622
+MUSETT_T2_DSSD_Y53_T 914.293 -0.110708
+MUSETT_T2_DSSD_Y54_T 917.644 -0.111116
+MUSETT_T2_DSSD_Y55_T 913.315 -0.11061
+MUSETT_T2_DSSD_Y56_T 926.108 -0.11216
+MUSETT_T2_DSSD_Y57_T 917.422 -0.111079
+MUSETT_T2_DSSD_Y58_T 919.823 -0.111393
+MUSETT_T2_DSSD_Y59_T 923.686 -0.11168
+MUSETT_T2_DSSD_Y60_T 939.831 -0.11386
+MUSETT_T2_DSSD_Y61_T 928.854 -0.112068
+MUSETT_T2_DSSD_Y62_T 921.381 -0.111623
+MUSETT_T2_DSSD_Y63_T 929.377 -0.112593
+MUSETT_T2_DSSD_Y64_T 925.209 -0.111864
+MUSETT_T2_DSSD_Y65_T 944.461 -0.114242
+MUSETT_T2_DSSD_Y66_T 948.829 -0.114763
+MUSETT_T2_DSSD_Y67_T 946.46 -0.114477
+MUSETT_T2_DSSD_Y68_T 972.881 -0.117701
+MUSETT_T2_DSSD_Y69_T 960.964 -0.116242
+MUSETT_T2_DSSD_Y70_T 968.396 -0.117144
+MUSETT_T2_DSSD_Y71_T 965.324 -0.116783
+MUSETT_T2_DSSD_Y72_T 956.836 -0.115747
+MUSETT_T2_DSSD_Y73_T 958.888 -0.115989
+MUSETT_T2_DSSD_Y74_T 965.259 -0.116762
+MUSETT_T2_DSSD_Y75_T 978.071 -0.118324
+MUSETT_T2_DSSD_Y76_T 974.474 -0.117892
+MUSETT_T2_DSSD_Y77_T 977.064 -0.118194
+MUSETT_T2_DSSD_Y78_T 967.826 -0.117092
+MUSETT_T2_DSSD_Y79_T 969.895 -0.117343
+MUSETT_T2_DSSD_Y80_T 945.396 -0.114246
+MUSETT_T2_DSSD_Y81_T 939.845 -0.113582
+MUSETT_T2_DSSD_Y82_T 951.951 -0.115097
+MUSETT_T2_DSSD_Y83_T 947.601 -0.114574
+MUSETT_T2_DSSD_Y84_T 956.462 -0.115653
+MUSETT_T2_DSSD_Y85_T 966.795 -0.11692
+MUSETT_T2_DSSD_Y86_T 965.068 -0.116695
+MUSETT_T2_DSSD_Y87_T 970.746 -0.117388
+MUSETT_T2_DSSD_Y88_T 973.531 -0.117739
+MUSETT_T2_DSSD_Y89_T 975.469 -0.11797
+MUSETT_T2_DSSD_Y90_T 979.918 -0.118525
+MUSETT_T2_DSSD_Y91_T 970.565 -0.117371
+MUSETT_T2_DSSD_Y92_T 978.32 -0.118331
+MUSETT_T2_DSSD_Y93_T 977.975 -0.118283
+MUSETT_T2_DSSD_Y94_T 985.51 -0.119174
+MUSETT_T2_DSSD_Y95_T 990.075 -0.119806
+MUSETT_T2_DSSD_Y96_T 898.373 -0.108639
+MUSETT_T2_DSSD_Y97_T 894.37 -0.108189
+MUSETT_T2_DSSD_Y98_T 904.896 -0.109474
+MUSETT_T2_DSSD_Y99_T 903.57 -0.109308
+MUSETT_T2_DSSD_Y100_T 917.463 -0.110997
+MUSETT_T2_DSSD_Y101_T 925.187 -0.111938
+MUSETT_T2_DSSD_Y102_T 915.403 -0.110746
+MUSETT_T2_DSSD_Y103_T 931.348 -0.112691
+MUSETT_T2_DSSD_Y104_T 925.85 -0.112025
+MUSETT_T2_DSSD_Y105_T 921.698 -0.111507
+MUSETT_T2_DSSD_Y106_T 922.879 -0.111663
+MUSETT_T2_DSSD_Y107_T 922.629 -0.111623
+MUSETT_T2_DSSD_Y108_T 926.153 -0.112066
+MUSETT_T2_DSSD_Y109_T 926.883 -0.11214
+MUSETT_T2_DSSD_Y110_T 923.148 -0.111703
+MUSETT_T2_DSSD_Y111_T 913.683 -0.110525
+MUSETT_T2_DSSD_Y112_T 853.746 -0.102981
+MUSETT_T2_DSSD_Y113_T 869.715 -0.104976
+MUSETT_T2_DSSD_Y114_T 877.625 -0.105936
+MUSETT_T2_DSSD_Y115_T 876.055 -0.10575
+MUSETT_T2_DSSD_Y116_T 884.136 -0.106741
+MUSETT_T2_DSSD_Y117_T 880.455 -0.10628
+MUSETT_T2_DSSD_Y118_T 892.866 -0.107805
+MUSETT_T2_DSSD_Y119_T 894.388 -0.107966
+MUSETT_T2_DSSD_Y120_T 884.377 -0.106759
+MUSETT_T2_DSSD_Y121_T 897.709 -0.108381
+MUSETT_T2_DSSD_Y122_T 896.178 -0.108195
+MUSETT_T2_DSSD_Y123_T 1336.153 -0.108195
+MUSETT_T2_DSSD_Y124_T 898.806 -0.108519
+MUSETT_T2_DSSD_Y125_T 899.754 -0.10863
+MUSETT_T2_DSSD_Y126_T 900.898 -0.108768
+MUSETT_T2_DSSD_Y127_T 897.019 -0.108297
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..36cee699c7a580265f9b036820552f9932026657
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E -62.298199999999994 0.007604720000000001
+MUSETT_T3_DSSD_X1_E -61.861599999999996 0.00755141
+MUSETT_T3_DSSD_X2_E -62.1569 0.00758753
+MUSETT_T3_DSSD_X3_E -62.2596 0.00760006
+MUSETT_T3_DSSD_X4_E -61.881699999999995 0.0075539100000000005
+MUSETT_T3_DSSD_X5_E -61.8174 0.0075460399999999995
+MUSETT_T3_DSSD_X6_E -62.0389 0.007573089999999999
+MUSETT_T3_DSSD_X7_E -61.5586 0.00751446
+MUSETT_T3_DSSD_X8_E -61.705 0.00753228
+MUSETT_T3_DSSD_X9_E -61.812 0.007545359999999999
+MUSETT_T3_DSSD_X10_E -61.801300000000005 0.007544019999999999
+MUSETT_T3_DSSD_X11_E -62.828 0.00766936
+MUSETT_T3_DSSD_X12_E -61.5993 0.00751937
+MUSETT_T3_DSSD_X13_E -61.7577 0.00753873
+MUSETT_T3_DSSD_X14_E -61.494699999999995 0.0075066199999999994
+MUSETT_T3_DSSD_X15_E -62.5182 0.00763157
+MUSETT_T3_DSSD_X16_E -63.590900000000005 0.00776244
+MUSETT_T3_DSSD_X17_E -63.0171 0.007692490000000001
+MUSETT_T3_DSSD_X18_E -62.878699999999995 0.00767552
+MUSETT_T3_DSSD_X19_E -62.791 0.00766488
+MUSETT_T3_DSSD_X20_E -62.5592 0.00763654
+MUSETT_T3_DSSD_X21_E -63.1133 0.0077042099999999995
+MUSETT_T3_DSSD_X22_E -63.6998 0.00777586
+MUSETT_T3_DSSD_X23_E -63.781099999999995 0.0077857
+MUSETT_T3_DSSD_X24_E -62.7205 0.007656240000000001
+MUSETT_T3_DSSD_X25_E -63.4567 0.0077461399999999994
+MUSETT_T3_DSSD_X26_E -63.4691 0.007747690000000001
+MUSETT_T3_DSSD_X27_E -63.2955 0.00772649
+MUSETT_T3_DSSD_X28_E -63.5076 0.00775235
+MUSETT_T3_DSSD_X29_E -63.5629 0.0077591
+MUSETT_T3_DSSD_X30_E -64.4644 0.00786912
+MUSETT_T3_DSSD_X31_E -63.6907 0.00777475
+MUSETT_T3_DSSD_X32_E -59.3003 0.0072388899999999996
+MUSETT_T3_DSSD_X33_E -59.122800000000005 0.0072171200000000005
+MUSETT_T3_DSSD_X34_E -58.098 0.00709209
+MUSETT_T3_DSSD_X35_E -58.3114 0.00711809
+MUSETT_T3_DSSD_X36_E -58.7781 0.007175010000000001
+MUSETT_T3_DSSD_X37_E -58.990300000000005 0.00720099
+MUSETT_T3_DSSD_X38_E -59.2329 0.0072305799999999995
+MUSETT_T3_DSSD_X39_E -58.6159 0.00715528
+MUSETT_T3_DSSD_X40_E -59.221599999999995 0.00722918
+MUSETT_T3_DSSD_X41_E -58.8815 0.007187649999999999
+MUSETT_T3_DSSD_X42_E -58.9773 0.00719934
+MUSETT_T3_DSSD_X43_E -10.0 0.0
+MUSETT_T3_DSSD_X44_E -58.9833 0.00720009
+MUSETT_T3_DSSD_X45_E -59.359300000000005 0.00724594
+MUSETT_T3_DSSD_X46_E -58.7775 0.0071749299999999995
+MUSETT_T3_DSSD_X47_E -59.126 0.00721749
+MUSETT_T3_DSSD_X48_E -57.3041 0.00699513
+MUSETT_T3_DSSD_X49_E -57.151199999999996 0.00697642
+MUSETT_T3_DSSD_X50_E -56.849199999999996 0.00693961
+MUSETT_T3_DSSD_X51_E -57.2057 0.00698311
+MUSETT_T3_DSSD_X52_E -56.8352 0.00693786
+MUSETT_T3_DSSD_X53_E -57.3401 0.00699951
+MUSETT_T3_DSSD_X54_E -56.5908 0.0069080899999999995
+MUSETT_T3_DSSD_X55_E -57.2623 0.00699005
+MUSETT_T3_DSSD_X56_E -57.574400000000004 0.0070281200000000005
+MUSETT_T3_DSSD_X57_E -56.496900000000004 0.00689662
+MUSETT_T3_DSSD_X58_E -57.4715 0.00701554
+MUSETT_T3_DSSD_X59_E -57.0619 0.00696556
+MUSETT_T3_DSSD_X60_E -56.3165 0.006874590000000001
+MUSETT_T3_DSSD_X61_E -56.8499 0.0069397
+MUSETT_T3_DSSD_X62_E -56.7607 0.00692884
+MUSETT_T3_DSSD_X63_E -56.499300000000005 0.006896950000000001
+MUSETT_T3_DSSD_X64_E -64.1702 0.00783318
+MUSETT_T3_DSSD_X65_E -63.8415 0.00779309
+MUSETT_T3_DSSD_X66_E -63.555699999999995 0.00775819
+MUSETT_T3_DSSD_X67_E -63.7677 0.00778403
+MUSETT_T3_DSSD_X68_E -63.6042 0.00776408
+MUSETT_T3_DSSD_X69_E -63.26 0.00772205
+MUSETT_T3_DSSD_X70_E -64.3055 0.00784974
+MUSETT_T3_DSSD_X71_E -62.501599999999996 0.0076295
+MUSETT_T3_DSSD_X72_E -62.6625 0.0076491400000000005
+MUSETT_T3_DSSD_X73_E -63.0105 0.00769167
+MUSETT_T3_DSSD_X74_E -63.1484 0.0077084200000000005
+MUSETT_T3_DSSD_X75_E -63.3793 0.00773664
+MUSETT_T3_DSSD_X76_E -64.06869999999999 0.007820820000000001
+MUSETT_T3_DSSD_X77_E -62.4702 0.00762573
+MUSETT_T3_DSSD_X78_E -62.5574 0.00763631
+MUSETT_T3_DSSD_X79_E -63.009699999999995 0.00769157
+MUSETT_T3_DSSD_X80_E -62.457800000000006 0.00762418
+MUSETT_T3_DSSD_X81_E -62.7791 0.00766339
+MUSETT_T3_DSSD_X82_E -62.621 0.007644110000000001
+MUSETT_T3_DSSD_X83_E -62.5784 0.0076389399999999994
+MUSETT_T3_DSSD_X84_E -62.005900000000004 0.00756897
+MUSETT_T3_DSSD_X85_E -62.4575 0.00762414
+MUSETT_T3_DSSD_X86_E -62.4031 0.00761752
+MUSETT_T3_DSSD_X87_E -62.1713 0.00758918
+MUSETT_T3_DSSD_X88_E -62.335300000000004 0.0076092
+MUSETT_T3_DSSD_X89_E -62.7474 0.0076596
+MUSETT_T3_DSSD_X90_E -62.3396 0.00760973
+MUSETT_T3_DSSD_X91_E -62.021300000000004 0.00757089
+MUSETT_T3_DSSD_X92_E -62.8345 0.00767017
+MUSETT_T3_DSSD_X93_E -62.5608 0.00763673
+MUSETT_T3_DSSD_X94_E -62.1409 0.00758552
+MUSETT_T3_DSSD_X95_E -62.3587 0.00761211
+MUSETT_T3_DSSD_X96_E -56.1256 0.00685121
+MUSETT_T3_DSSD_X97_E -55.9505 0.0068298199999999995
+MUSETT_T3_DSSD_X98_E -55.1796 0.00673572
+MUSETT_T3_DSSD_X99_E -55.7828 0.0068094
+MUSETT_T3_DSSD_X100_E -55.9559 0.0068305
+MUSETT_T3_DSSD_X101_E -55.934400000000004 0.00682783
+MUSETT_T3_DSSD_X102_E -55.9745 0.0068327200000000005
+MUSETT_T3_DSSD_X103_E -55.2549 0.00674491
+MUSETT_T3_DSSD_X104_E -55.4875 0.00677335
+MUSETT_T3_DSSD_X105_E -55.9893 0.00683453
+MUSETT_T3_DSSD_X106_E -55.8236 0.00681435
+MUSETT_T3_DSSD_X107_E -55.6815 0.0067969499999999995
+MUSETT_T3_DSSD_X108_E -56.7434 0.00692662
+MUSETT_T3_DSSD_X109_E -56.3005 0.00687254
+MUSETT_T3_DSSD_X110_E -55.822300000000006 0.00681419
+MUSETT_T3_DSSD_X111_E -55.6951 0.006798670000000001
+MUSETT_T3_DSSD_X112_E -57.5622 0.00702657
+MUSETT_T3_DSSD_X113_E -57.0135 0.0069596
+MUSETT_T3_DSSD_X114_E -57.5211 0.00702156
+MUSETT_T3_DSSD_X115_E -56.981 0.00695566
+MUSETT_T3_DSSD_X116_E -57.9725 0.00707666
+MUSETT_T3_DSSD_X117_E -57.2339 0.006986480000000001
+MUSETT_T3_DSSD_X118_E -57.4342 0.00701098
+MUSETT_T3_DSSD_X119_E -56.2134 0.0068619300000000005
+MUSETT_T3_DSSD_X120_E -56.7474 0.00692711
+MUSETT_T3_DSSD_X121_E -57.8891 0.0070665
+MUSETT_T3_DSSD_X122_E -57.5049 0.007019549999999999
+MUSETT_T3_DSSD_X123_E -57.096599999999995 0.00696973
+MUSETT_T3_DSSD_X124_E -57.651 0.0070374
+MUSETT_T3_DSSD_X125_E -56.7164 0.00692338
+MUSETT_T3_DSSD_X126_E -57.789699999999996 0.00705434
+MUSETT_T3_DSSD_X127_E -56.522 0.00689959
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e07fba05cb0d81bc362f99fb65163dd1f9bcd9aa
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_E 60.097199999999994 -0.00733611
+MUSETT_T3_DSSD_Y1_E 58.987 -0.00720065
+MUSETT_T3_DSSD_Y2_E 60.08 -0.00733404
+MUSETT_T3_DSSD_Y3_E 59.9365 -0.007316499999999999
+MUSETT_T3_DSSD_Y4_E 59.7695 -0.00729617
+MUSETT_T3_DSSD_Y5_E 59.8746 -0.00730898
+MUSETT_T3_DSSD_Y6_E 59.7753 -0.00729686
+MUSETT_T3_DSSD_Y7_E 60.1862 -0.007347
+MUSETT_T3_DSSD_Y8_E 60.4958 -0.00738477
+MUSETT_T3_DSSD_Y9_E 60.4393 -0.00737789
+MUSETT_T3_DSSD_Y10_E 60.1456 -0.00734201
+MUSETT_T3_DSSD_Y11_E 59.7911 -0.00729875
+MUSETT_T3_DSSD_Y12_E 59.6773 -0.0072848800000000005
+MUSETT_T3_DSSD_Y13_E 59.5835 -0.00727344
+MUSETT_T3_DSSD_Y14_E 60.5331 -0.00738936
+MUSETT_T3_DSSD_Y15_E 59.7249 -0.00729071
+MUSETT_T3_DSSD_Y16_E 62.9214 -0.00768089
+MUSETT_T3_DSSD_Y17_E 63.205400000000004 -0.00771552
+MUSETT_T3_DSSD_Y18_E 62.2674 -0.00760105
+MUSETT_T3_DSSD_Y19_E 62.6967 -0.007653470000000001
+MUSETT_T3_DSSD_Y20_E 63.193 -0.00771405
+MUSETT_T3_DSSD_Y21_E 63.5336 -0.00775561
+MUSETT_T3_DSSD_Y22_E 62.9808 -0.00768812
+MUSETT_T3_DSSD_Y23_E 62.964 -0.007686119999999999
+MUSETT_T3_DSSD_Y24_E 63.469300000000004 -0.00774779
+MUSETT_T3_DSSD_Y25_E 63.461 -0.00774678
+MUSETT_T3_DSSD_Y26_E 62.6 -0.00764164
+MUSETT_T3_DSSD_Y27_E 63.414 -0.0077410199999999995
+MUSETT_T3_DSSD_Y28_E 62.4672 -0.00762548
+MUSETT_T3_DSSD_Y29_E 62.971599999999995 -0.00768703
+MUSETT_T3_DSSD_Y30_E 63.0667 -0.0076986699999999995
+MUSETT_T3_DSSD_Y31_E 62.9483 -0.00768424
+MUSETT_T3_DSSD_Y32_E 56.0911 -0.00684714
+MUSETT_T3_DSSD_Y33_E 56.1939 -0.00685965
+MUSETT_T3_DSSD_Y34_E 55.8251 -0.0068147
+MUSETT_T3_DSSD_Y35_E 55.6744 -0.00679624
+MUSETT_T3_DSSD_Y36_E 55.7435 -0.00680473
+MUSETT_T3_DSSD_Y37_E 56.2304 -0.00686412
+MUSETT_T3_DSSD_Y38_E 55.9267 -0.0068270499999999994
+MUSETT_T3_DSSD_Y39_E 55.575199999999995 -0.00678415
+MUSETT_T3_DSSD_Y40_E 55.4219 -0.00676539
+MUSETT_T3_DSSD_Y41_E 56.1854 -0.00685863
+MUSETT_T3_DSSD_Y42_E 56.0069 -0.006836859999999999
+MUSETT_T3_DSSD_Y43_E 55.331199999999995 -0.00675434
+MUSETT_T3_DSSD_Y44_E 55.7624 -0.00680697
+MUSETT_T3_DSSD_Y45_E 55.6164 -0.0067892099999999995
+MUSETT_T3_DSSD_Y46_E 55.888 -0.006822320000000001
+MUSETT_T3_DSSD_Y47_E 55.807900000000004 -0.00681252
+MUSETT_T3_DSSD_Y48_E 56.633199999999995 -0.0069133
+MUSETT_T3_DSSD_Y49_E 56.902300000000004 -0.00694613
+MUSETT_T3_DSSD_Y50_E 57.1285 -0.00697375
+MUSETT_T3_DSSD_Y51_E 56.942800000000005 -0.00695109
+MUSETT_T3_DSSD_Y52_E 56.488800000000005 -0.00689569
+MUSETT_T3_DSSD_Y53_E 56.9381 -0.00695052
+MUSETT_T3_DSSD_Y54_E 56.6308 -0.00691301
+MUSETT_T3_DSSD_Y55_E 57.0191 -0.00696044
+MUSETT_T3_DSSD_Y56_E 57.0456 -0.0069635899999999995
+MUSETT_T3_DSSD_Y57_E 56.6141 -0.0069110199999999995
+MUSETT_T3_DSSD_Y58_E 57.4998 -0.00701906
+MUSETT_T3_DSSD_Y59_E 57.046800000000005 -0.00696375
+MUSETT_T3_DSSD_Y60_E 57.594 -0.00703054
+MUSETT_T3_DSSD_Y61_E 57.0305 -0.00696179
+MUSETT_T3_DSSD_Y62_E 56.7624 -0.00692908
+MUSETT_T3_DSSD_Y63_E 57.433699999999995 -0.0070110400000000005
+MUSETT_T3_DSSD_Y64_E 59.389300000000006 -0.007249729999999999
+MUSETT_T3_DSSD_Y65_E 59.9401 -0.00731694
+MUSETT_T3_DSSD_Y66_E 59.5251 -0.00726633
+MUSETT_T3_DSSD_Y67_E 59.3495 -0.00724484
+MUSETT_T3_DSSD_Y68_E 59.4437 -0.00725635
+MUSETT_T3_DSSD_Y69_E 58.7651 -0.00717351
+MUSETT_T3_DSSD_Y70_E 59.2969 -0.00723842
+MUSETT_T3_DSSD_Y71_E 59.9651 -0.00732006
+MUSETT_T3_DSSD_Y72_E 60.172599999999996 -0.00734537
+MUSETT_T3_DSSD_Y73_E 59.4516 -0.0072572999999999995
+MUSETT_T3_DSSD_Y74_E 59.5309 -0.00726702
+MUSETT_T3_DSSD_Y75_E 59.5826 -0.00727333
+MUSETT_T3_DSSD_Y76_E 59.590900000000005 -0.00727432
+MUSETT_T3_DSSD_Y77_E 59.3965 -0.00725058
+MUSETT_T3_DSSD_Y78_E 59.0289 -0.00720579
+MUSETT_T3_DSSD_Y79_E 59.962300000000006 -0.00731973
+MUSETT_T3_DSSD_Y80_E 62.810900000000004 -0.0076673900000000005
+MUSETT_T3_DSSD_Y81_E 62.7117 -0.00765528
+MUSETT_T3_DSSD_Y82_E 62.530699999999996 -0.00763323
+MUSETT_T3_DSSD_Y83_E 62.1472 -0.00758643
+MUSETT_T3_DSSD_Y84_E 62.024800000000006 -0.00757151
+MUSETT_T3_DSSD_Y85_E 62.6965 -0.00765345
+MUSETT_T3_DSSD_Y86_E 62.2624 -0.00760046
+MUSETT_T3_DSSD_Y87_E 62.9551 -0.00768508
+MUSETT_T3_DSSD_Y88_E 62.655 -0.00764835
+MUSETT_T3_DSSD_Y89_E 62.5921 -0.00764069
+MUSETT_T3_DSSD_Y90_E 61.832699999999996 -0.00754801
+MUSETT_T3_DSSD_Y91_E 61.9879 -0.00756697
+MUSETT_T3_DSSD_Y92_E 61.948 -0.00756205
+MUSETT_T3_DSSD_Y93_E 62.025800000000004 -0.00757163
+MUSETT_T3_DSSD_Y94_E 61.996 -0.0075679499999999995
+MUSETT_T3_DSSD_Y95_E 61.777699999999996 -0.0075413
+MUSETT_T3_DSSD_Y96_E 56.732699999999994 -0.00692539
+MUSETT_T3_DSSD_Y97_E 56.8633 -0.00694135
+MUSETT_T3_DSSD_Y98_E 56.282599999999995 -0.006870459999999999
+MUSETT_T3_DSSD_Y99_E 55.9378 -0.006828369999999999
+MUSETT_T3_DSSD_Y100_E 56.2782 -0.0068699500000000005
+MUSETT_T3_DSSD_Y101_E 56.282 -0.0068704000000000005
+MUSETT_T3_DSSD_Y102_E 55.9311 -0.006827580000000001
+MUSETT_T3_DSSD_Y103_E 55.9754 -0.00683298
+MUSETT_T3_DSSD_Y104_E 55.8431 -0.00681683
+MUSETT_T3_DSSD_Y105_E 56.2934 -0.00687176
+MUSETT_T3_DSSD_Y106_E 56.467699999999994 -0.0068930400000000005
+MUSETT_T3_DSSD_Y107_E 56.254599999999996 -0.006867
+MUSETT_T3_DSSD_Y108_E 55.7557 -0.0068061499999999995
+MUSETT_T3_DSSD_Y109_E 55.8956 -0.0068232100000000006
+MUSETT_T3_DSSD_Y110_E 56.6694 -0.0069177200000000005
+MUSETT_T3_DSSD_Y111_E 56.671699999999994 -0.00691799
+MUSETT_T3_DSSD_Y112_E 57.139 -0.00697499
+MUSETT_T3_DSSD_Y113_E 57.000099999999996 -0.00695808
+MUSETT_T3_DSSD_Y114_E 57.098699999999994 -0.006970189999999999
+MUSETT_T3_DSSD_Y115_E 56.9762 -0.00695517
+MUSETT_T3_DSSD_Y116_E 57.6053 -0.00703199
+MUSETT_T3_DSSD_Y117_E 57.2828 -0.00699264
+MUSETT_T3_DSSD_Y118_E 56.8406 -0.00693862
+MUSETT_T3_DSSD_Y119_E 57.6496 -0.00703728
+MUSETT_T3_DSSD_Y120_E 57.438300000000005 -0.00701157
+MUSETT_T3_DSSD_Y121_E 57.0848 -0.00696844
+MUSETT_T3_DSSD_Y122_E 57.433800000000005 -0.007011020000000001
+MUSETT_T3_DSSD_Y123_E 57.070800000000006 -0.00696674
+MUSETT_T3_DSSD_Y124_E 57.543699999999994 -0.00702442
+MUSETT_T3_DSSD_Y125_E 56.819900000000004 -0.00693609
+MUSETT_T3_DSSD_Y126_E 57.2394 -0.00698722
+MUSETT_T3_DSSD_Y127_E 57.5489 -0.00702512
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..89837b110354d53f0bdc471f95f2c50b5ac733b3
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_T 937.706 -0.113591
+MUSETT_T3_DSSD_X1_T 951.022 -0.115254
+MUSETT_T3_DSSD_X2_T 955.557 -0.115822
+MUSETT_T3_DSSD_X3_T 957.459 -0.116042
+MUSETT_T3_DSSD_X4_T 949.588 -0.115096
+MUSETT_T3_DSSD_X5_T 964.137 -0.11686
+MUSETT_T3_DSSD_X6_T 968.553 -0.117385
+MUSETT_T3_DSSD_X7_T 973.749 -0.118019
+MUSETT_T3_DSSD_X8_T 971.88 -0.117779
+MUSETT_T3_DSSD_X9_T 969.707 -0.117496
+MUSETT_T3_DSSD_X10_T 972.087 -0.117795
+MUSETT_T3_DSSD_X11_T 984.307 -0.119273
+MUSETT_T3_DSSD_X12_T 974.064 -0.118031
+MUSETT_T3_DSSD_X13_T 984.118 -0.118805
+MUSETT_T3_DSSD_X14_T 981.761 -0.118524
+MUSETT_T3_DSSD_X15_T 1355.602 -0.119127
+MUSETT_T3_DSSD_X16_T 966.58 -0.117029
+MUSETT_T3_DSSD_X17_T 962.788 -0.116582
+MUSETT_T3_DSSD_X18_T 981.303 -0.11886
+MUSETT_T3_DSSD_X19_T 977.619 -0.118386
+MUSETT_T3_DSSD_X20_T 984.275 -0.119229
+MUSETT_T3_DSSD_X21_T 991.6 -0.120114
+MUSETT_T3_DSSD_X22_T 984.029 -0.119177
+MUSETT_T3_DSSD_X23_T 988.571 -0.119693
+MUSETT_T3_DSSD_X24_T 986.236 -0.119405
+MUSETT_T3_DSSD_X25_T 987.105 -0.119523
+MUSETT_T3_DSSD_X26_T 1000.177 -0.12115
+MUSETT_T3_DSSD_X27_T 996.481 -0.120628
+MUSETT_T3_DSSD_X28_T 1006.483 -0.121885
+MUSETT_T3_DSSD_X29_T 999.637 -0.121035
+MUSETT_T3_DSSD_X30_T 1001.415 -0.121233
+MUSETT_T3_DSSD_X31_T 996.052 -0.120654
+MUSETT_T3_DSSD_X32_T 897.362 -0.108693
+MUSETT_T3_DSSD_X33_T 903.544 -0.109485
+MUSETT_T3_DSSD_X34_T 911.3 -0.110421
+MUSETT_T3_DSSD_X35_T 904.196 -0.109588
+MUSETT_T3_DSSD_X36_T 910.234 -0.110301
+MUSETT_T3_DSSD_X37_T 918.604 -0.111327
+MUSETT_T3_DSSD_X38_T 920.229 -0.111495
+MUSETT_T3_DSSD_X39_T 928.519 -0.112521
+MUSETT_T3_DSSD_X40_T 939.957 -0.11347
+MUSETT_T3_DSSD_X41_T 930.046 -0.112717
+MUSETT_T3_DSSD_X42_T 927.244 -0.112335
+MUSETT_T3_DSSD_X43_T 450.0 -0.112964
+MUSETT_T3_DSSD_X44_T 934.478 -0.113245
+MUSETT_T3_DSSD_X45_T 928.905 -0.11258
+MUSETT_T3_DSSD_X46_T 936.312 -0.113476
+MUSETT_T3_DSSD_X47_T 939.273 -0.113256
+MUSETT_T3_DSSD_X48_T 865.36 -0.104661
+MUSETT_T3_DSSD_X49_T 865.371 -0.104634
+MUSETT_T3_DSSD_X50_T 877.555 -0.106155
+MUSETT_T3_DSSD_X51_T 887.444 -0.107364
+MUSETT_T3_DSSD_X52_T 887.74 -0.107368
+MUSETT_T3_DSSD_X53_T 883.821 -0.106861
+MUSETT_T3_DSSD_X54_T 896.087 -0.108382
+MUSETT_T3_DSSD_X55_T 902.558 -0.108733
+MUSETT_T3_DSSD_X56_T 896.518 -0.10844
+MUSETT_T3_DSSD_X57_T 902.089 -0.10908
+MUSETT_T3_DSSD_X58_T 897.546 -0.108538
+MUSETT_T3_DSSD_X59_T 897.158 -0.10849
+MUSETT_T3_DSSD_X60_T 903.89 -0.109312
+MUSETT_T3_DSSD_X61_T 904.833 -0.109445
+MUSETT_T3_DSSD_X62_T 891.475 -0.107803
+MUSETT_T3_DSSD_X63_T 913.702 -0.108862
+MUSETT_T3_DSSD_X64_T 983.39 -0.119126
+MUSETT_T3_DSSD_X65_T 988.575 -0.119789
+MUSETT_T3_DSSD_X66_T 988.908 -0.119851
+MUSETT_T3_DSSD_X67_T 1004.692 -0.121753
+MUSETT_T3_DSSD_X68_T 1005.147 -0.121824
+MUSETT_T3_DSSD_X69_T 1002.098 -0.121446
+MUSETT_T3_DSSD_X70_T 1005.767 -0.121893
+MUSETT_T3_DSSD_X71_T 1009.556 -0.122347
+MUSETT_T3_DSSD_X72_T 1005.62 -0.121883
+MUSETT_T3_DSSD_X73_T 1012.529 -0.122684
+MUSETT_T3_DSSD_X74_T 1020.904 -0.123722
+MUSETT_T3_DSSD_X75_T 1030.908 -0.124938
+MUSETT_T3_DSSD_X76_T 1012.471 -0.122709
+MUSETT_T3_DSSD_X77_T 1012.229 -0.12265
+MUSETT_T3_DSSD_X78_T 1023.673 -0.124061
+MUSETT_T3_DSSD_X79_T 1391.931 -0.123313
+MUSETT_T3_DSSD_X80_T 940.841 -0.11381
+MUSETT_T3_DSSD_X81_T 946.588 -0.114558
+MUSETT_T3_DSSD_X82_T 950.194 -0.114986
+MUSETT_T3_DSSD_X83_T 948.521 -0.114804
+MUSETT_T3_DSSD_X84_T 963.462 -0.116619
+MUSETT_T3_DSSD_X85_T 966.195 -0.11693
+MUSETT_T3_DSSD_X86_T 960.94 -0.116299
+MUSETT_T3_DSSD_X87_T 965.913 -0.116863
+MUSETT_T3_DSSD_X88_T 976.593 -0.118161
+MUSETT_T3_DSSD_X89_T 973.009 -0.117687
+MUSETT_T3_DSSD_X90_T 977.734 -0.118304
+MUSETT_T3_DSSD_X91_T 985.665 -0.119256
+MUSETT_T3_DSSD_X92_T 985.146 -0.119241
+MUSETT_T3_DSSD_X93_T 985.012 -0.119186
+MUSETT_T3_DSSD_X94_T 982.369 -0.118879
+MUSETT_T3_DSSD_X95_T 979.215 -0.118278
+MUSETT_T3_DSSD_X96_T 860.4 -0.104124
+MUSETT_T3_DSSD_X97_T 865.127 -0.104728
+MUSETT_T3_DSSD_X98_T 865.22 -0.104753
+MUSETT_T3_DSSD_X99_T 871.419 -0.105492
+MUSETT_T3_DSSD_X100_T 881.125 -0.106693
+MUSETT_T3_DSSD_X101_T 876.452 -0.10614
+MUSETT_T3_DSSD_X102_T 881.321 -0.106708
+MUSETT_T3_DSSD_X103_T 880.324 -0.106567
+MUSETT_T3_DSSD_X104_T 889.289 -0.107671
+MUSETT_T3_DSSD_X105_T 893.959 -0.108216
+MUSETT_T3_DSSD_X106_T 885.863 -0.107225
+MUSETT_T3_DSSD_X107_T 896.508 -0.108561
+MUSETT_T3_DSSD_X108_T 899.197 -0.108609
+MUSETT_T3_DSSD_X109_T 893.469 -0.108191
+MUSETT_T3_DSSD_X110_T 902.937 -0.109337
+MUSETT_T3_DSSD_X111_T 903.612 -0.108709
+MUSETT_T3_DSSD_X112_T 857.827 -0.103629
+MUSETT_T3_DSSD_X113_T 867.282 -0.10481
+MUSETT_T3_DSSD_X114_T 867.634 -0.1049
+MUSETT_T3_DSSD_X115_T 874.129 -0.105647
+MUSETT_T3_DSSD_X116_T 1490.122 -0.126949
+MUSETT_T3_DSSD_X117_T 878.327 -0.106145
+MUSETT_T3_DSSD_X118_T 885.367 -0.107055
+MUSETT_T3_DSSD_X119_T 883.353 -0.10675
+MUSETT_T3_DSSD_X120_T 886.421 -0.107137
+MUSETT_T3_DSSD_X121_T 890.231 -0.107599
+MUSETT_T3_DSSD_X122_T 886.118 -0.107093
+MUSETT_T3_DSSD_X123_T 895.704 -0.108252
+MUSETT_T3_DSSD_X124_T 889.898 -0.107522
+MUSETT_T3_DSSD_X125_T 896.281 -0.108336
+MUSETT_T3_DSSD_X126_T 883.682 -0.106793
+MUSETT_T3_DSSD_X127_T 895.669 -0.107896
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..11ac5314c04c8ea77e64b538d2f271a4cff0659f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_T 918.076 -0.11121
+MUSETT_T3_DSSD_Y1_T 925.701 -0.112154
+MUSETT_T3_DSSD_Y2_T 934.638 -0.113241
+MUSETT_T3_DSSD_Y3_T 944.313 -0.114409
+MUSETT_T3_DSSD_Y4_T 941.286 -0.114032
+MUSETT_T3_DSSD_Y5_T 949.429 -0.114994
+MUSETT_T3_DSSD_Y6_T 953.873 -0.115552
+MUSETT_T3_DSSD_Y7_T 954.095 -0.115546
+MUSETT_T3_DSSD_Y8_T 961.819 -0.116506
+MUSETT_T3_DSSD_Y9_T 966.084 -0.117006
+MUSETT_T3_DSSD_Y10_T 968.231 -0.117251
+MUSETT_T3_DSSD_Y11_T 967.098 -0.117093
+MUSETT_T3_DSSD_Y12_T 976.51 -0.118272
+MUSETT_T3_DSSD_Y13_T 982.999 -0.119048
+MUSETT_T3_DSSD_Y14_T 975.2 -0.118075
+MUSETT_T3_DSSD_Y15_T 982.438 -0.118941
+MUSETT_T3_DSSD_Y16_T 968.582 -0.117174
+MUSETT_T3_DSSD_Y17_T 981.596 -0.118815
+MUSETT_T3_DSSD_Y18_T 982.535 -0.118931
+MUSETT_T3_DSSD_Y19_T 988.071 -0.119638
+MUSETT_T3_DSSD_Y20_T 993.73 -0.12034
+MUSETT_T3_DSSD_Y21_T 1003.541 -0.121551
+MUSETT_T3_DSSD_Y22_T 998.968 -0.120998
+MUSETT_T3_DSSD_Y23_T 993.315 -0.120321
+MUSETT_T3_DSSD_Y24_T 999.364 -0.121073
+MUSETT_T3_DSSD_Y25_T 1005.572 -0.121839
+MUSETT_T3_DSSD_Y26_T 1005.81 -0.121856
+MUSETT_T3_DSSD_Y27_T 1012.089 -0.122649
+MUSETT_T3_DSSD_Y28_T 1015.153 -0.12302
+MUSETT_T3_DSSD_Y29_T 1003.98 -0.121668
+MUSETT_T3_DSSD_Y30_T 1013.163 -0.122794
+MUSETT_T3_DSSD_Y31_T 1013.882 -0.122927
+MUSETT_T3_DSSD_Y32_T 869.852 -0.105446
+MUSETT_T3_DSSD_Y33_T 866.645 -0.105092
+MUSETT_T3_DSSD_Y34_T 871.811 -0.10573
+MUSETT_T3_DSSD_Y35_T 868.809 -0.105345
+MUSETT_T3_DSSD_Y36_T 880.462 -0.106744
+MUSETT_T3_DSSD_Y37_T 879.67 -0.106654
+MUSETT_T3_DSSD_Y38_T 885.22 -0.107294
+MUSETT_T3_DSSD_Y39_T 893.863 -0.108361
+MUSETT_T3_DSSD_Y40_T 891.003 -0.10799
+MUSETT_T3_DSSD_Y41_T 895.002 -0.10846
+MUSETT_T3_DSSD_Y42_T 904.382 -0.109593
+MUSETT_T3_DSSD_Y43_T 900.904 -0.109195
+MUSETT_T3_DSSD_Y44_T 896.146 -0.108568
+MUSETT_T3_DSSD_Y45_T 906.325 -0.109804
+MUSETT_T3_DSSD_Y46_T 910.104 -0.110263
+MUSETT_T3_DSSD_Y47_T 902.797 -0.109382
+MUSETT_T3_DSSD_Y48_T 876.215 -0.105997
+MUSETT_T3_DSSD_Y49_T 882.251 -0.106772
+MUSETT_T3_DSSD_Y50_T 893.929 -0.108217
+MUSETT_T3_DSSD_Y51_T 896.657 -0.108527
+MUSETT_T3_DSSD_Y52_T 890.731 -0.107825
+MUSETT_T3_DSSD_Y53_T 899.266 -0.108862
+MUSETT_T3_DSSD_Y54_T 903.981 -0.109456
+MUSETT_T3_DSSD_Y55_T 909.889 -0.110152
+MUSETT_T3_DSSD_Y56_T 914.156 -0.110718
+MUSETT_T3_DSSD_Y57_T 912.878 -0.11056
+MUSETT_T3_DSSD_Y58_T 921.772 -0.111636
+MUSETT_T3_DSSD_Y59_T 907.641 -0.109934
+MUSETT_T3_DSSD_Y60_T 921.134 -0.111581
+MUSETT_T3_DSSD_Y61_T 921.864 -0.111694
+MUSETT_T3_DSSD_Y62_T 917.054 -0.1111
+MUSETT_T3_DSSD_Y63_T 919.795 -0.11144
+MUSETT_T3_DSSD_Y64_T 909.45 -0.109216
+MUSETT_T3_DSSD_Y65_T 919.5 -0.110026
+MUSETT_T3_DSSD_Y66_T 909.57 -0.110106
+MUSETT_T3_DSSD_Y67_T 921.73 -0.11114
+MUSETT_T3_DSSD_Y68_T 933.144 -0.11252
+MUSETT_T3_DSSD_Y69_T 937.937 -0.113544
+MUSETT_T3_DSSD_Y70_T 941.407 -0.112672
+MUSETT_T3_DSSD_Y71_T 929.175 -0.112491
+MUSETT_T3_DSSD_Y72_T 949.055 -0.114462
+MUSETT_T3_DSSD_Y73_T 941.527 -0.11354
+MUSETT_T3_DSSD_Y74_T 954.075 -0.115517
+MUSETT_T3_DSSD_Y75_T 957.81 -0.115086
+MUSETT_T3_DSSD_Y76_T 963.019 -0.116618
+MUSETT_T3_DSSD_Y77_T 955.382 -0.115232
+MUSETT_T3_DSSD_Y78_T 944.365 -0.114343
+MUSETT_T3_DSSD_Y79_T 952.964 -0.114947
+MUSETT_T3_DSSD_Y80_T 969.317 -0.117288
+MUSETT_T3_DSSD_Y81_T 980.742 -0.118727
+MUSETT_T3_DSSD_Y82_T 990.702 -0.119474
+MUSETT_T3_DSSD_Y83_T 994.094 -0.119909
+MUSETT_T3_DSSD_Y84_T 1003.58 -0.120116
+MUSETT_T3_DSSD_Y85_T 999.143 -0.120975
+MUSETT_T3_DSSD_Y86_T 996.11 -0.120606
+MUSETT_T3_DSSD_Y87_T 1005.134 -0.12076
+MUSETT_T3_DSSD_Y88_T 1002.139 -0.121336
+MUSETT_T3_DSSD_Y89_T 1025.133 -0.122713
+MUSETT_T3_DSSD_Y90_T 1016.547 -0.1231
+MUSETT_T3_DSSD_Y91_T 1008.733 -0.121678
+MUSETT_T3_DSSD_Y92_T 1017.167 -0.122697
+MUSETT_T3_DSSD_Y93_T 1016.429 -0.123087
+MUSETT_T3_DSSD_Y94_T 1008.727 -0.122144
+MUSETT_T3_DSSD_Y95_T 1013.668 -0.122274
+MUSETT_T3_DSSD_Y96_T 872.659 -0.105573
+MUSETT_T3_DSSD_Y97_T 869.574 -0.105224
+MUSETT_T3_DSSD_Y98_T 874.267 -0.105791
+MUSETT_T3_DSSD_Y99_T 883.417 -0.106904
+MUSETT_T3_DSSD_Y100_T 893.981 -0.107789
+MUSETT_T3_DSSD_Y101_T 890.232 -0.107742
+MUSETT_T3_DSSD_Y102_T 901.26 -0.109085
+MUSETT_T3_DSSD_Y103_T 900.219 -0.108126
+MUSETT_T3_DSSD_Y104_T 900.643 -0.108999
+MUSETT_T3_DSSD_Y105_T 892.987 -0.108068
+MUSETT_T3_DSSD_Y106_T 892.534 -0.108006
+MUSETT_T3_DSSD_Y107_T 901.564 -0.109125
+MUSETT_T3_DSSD_Y108_T 911.227 -0.109439
+MUSETT_T3_DSSD_Y109_T 905.426 -0.109168
+MUSETT_T3_DSSD_Y110_T 904.499 -0.108625
+MUSETT_T3_DSSD_Y111_T 907.559 -0.109416
+MUSETT_T3_DSSD_Y112_T 896.812 -0.107554
+MUSETT_T3_DSSD_Y113_T 897.309 -0.108473
+MUSETT_T3_DSSD_Y114_T 907.137 -0.108848
+MUSETT_T3_DSSD_Y115_T 902.563 -0.108292
+MUSETT_T3_DSSD_Y116_T 907.303 -0.109288
+MUSETT_T3_DSSD_Y117_T 909.347 -0.109943
+MUSETT_T3_DSSD_Y118_T 907.931 -0.109765
+MUSETT_T3_DSSD_Y119_T 907.16 -0.109672
+MUSETT_T3_DSSD_Y120_T 917.59 -0.110512
+MUSETT_T3_DSSD_Y121_T 922.724 -0.111588
+MUSETT_T3_DSSD_Y122_T 925.473 -0.111915
+MUSETT_T3_DSSD_Y123_T 911.405 -0.109772
+MUSETT_T3_DSSD_Y124_T 912.177 -0.11029
+MUSETT_T3_DSSD_Y125_T 917.613 -0.110947
+MUSETT_T3_DSSD_Y126_T 919.037 -0.111116
+MUSETT_T3_DSSD_Y127_T 927.237 -0.112131
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..c2e76e331d7e4dfc4d9b7ea883f5dda6b241b36c
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/cal_to_NPTOOL.py
@@ -0,0 +1,147 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 1
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0_R318-327.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0_R326-327.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/calibE0_R318-327.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/calibE0_R318-327.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..35bf8b5641ad2768f94bc55760aec6b956fdd3a7
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/calibE0_R318-327.cal1
@@ -0,0 +1,1024 @@
+-61710.6 7.53299 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61910.5 7.55737 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61782.4 7.54181 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61510.1 7.50856 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61839.9 7.54883 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61611.3 7.52091 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61398 7.49483 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61184.1 7.4687 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-61046.5 7.45195 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62682.6 7.65164 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62358.3 7.61207 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61942 7.56128 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62087.8 7.57904 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61755.3 7.53843 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62412.6 7.6187 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61293.9 7.48215 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63052.7 7.6968 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62690.7 7.65267 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62190.5 7.59158 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62410.9 7.6185 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63893.7 7.79946 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62612.9 7.64313 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62337.2 7.60945 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62674.4 7.65062 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62899.3 7.67809 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62952.3 7.68455 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63053.3 7.69687 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62674.7 7.65067 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-62997.4 7.69004 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62627.1 7.64487 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63448.8 7.74516 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62603 7.64186 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56430.2 6.88838 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56799.9 6.93354 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55532 6.77879 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56348.8 6.87847 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-55994.5 6.83521 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+ -10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55914.7 6.8255 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55693.8 6.79852 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56217.1 6.86239 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55863.5 6.81922 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56201.7 6.86046 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56309.9 6.87373 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56346.6 6.87818 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+ -10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+ -10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55913.1 6.82529 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57833.2 7.05965 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57967.8 7.07605 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57757.3 7.05042 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57326.3 6.99778 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58207.2 7.1053 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57200.3 6.98242 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57834.4 7.05977 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57512.8 7.02054 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58484.5 7.13912 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57751 7.04962 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57332.2 6.99849 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57800.1 7.05564 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57165.4 6.97819 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57970.3 7.07636 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57884.6 7.06593 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58159.8 7.09951 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63446.1 7.74486 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63609.9 7.76484 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63347.1 7.73277 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64083.2 7.82268 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63210.5 7.71623 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63979.4 7.81003 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63860.8 7.79555 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63358.1 7.73418 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64215.7 7.83895 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63301.6 7.72725 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-64050.7 7.81888 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-64016.7 7.81467 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63688.9 7.77478 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63789.1 7.78701 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64283.2 7.84737 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64914.3 7.924398 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61239.4 7.47582 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60938.5 7.43906 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61139.7 7.46366 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61497.4 7.50726 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61398.7 7.49521 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61899.6 7.55626 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61451.8 7.50166 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62196.4 7.59254 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61948.1 7.56212 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61617.1 7.52168 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61737.4 7.53637 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62823.6 7.66899 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61885.8 7.55448 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-61049.7 7.45242 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61459.5 7.50241 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62201.1 7.59292 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57166.2 6.97828 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57555.3 7.02572 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57803.5 7.05608 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57067.6 6.96622 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58132.4 7.09623 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57744.7 7.04887 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57713.3 7.04507 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57296.7 6.99421 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57401.2 7.00701 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57954.2 7.07453 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57305.6 6.99532 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57589.7 7.03005 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58599.8 7.15326 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58011 7.08149 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57701.9 7.04369 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57802 7.05589 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59013.1 7.20381 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59199.6 7.22655 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58525.7 7.1443 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58674.8 7.16253 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58132.8 7.09631 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58328.3 7.12018 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.9 7.11452 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58567.3 7.14936 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58564.9 7.14905 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58734.4 7.16969 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58596.2 7.15284 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59320.8 7.24127 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57906.3 7.06867 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58502.7 7.14141 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58429.3 7.1325 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59561.4 7.27063 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60429.9 -7.37677 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60952.5 -7.44053 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61113.6 -7.46018 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+60033.8 -7.32839 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60178.9 -7.34611 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60801.7 -7.42211 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60445 -7.37857 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60092 -7.33548 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59987 -7.32266 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60401.3 -7.37321 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60048.5 -7.33015 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60888.1 -7.43271 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61013.7 -7.44798 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61158 -7.46561 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60738.4 -7.41441 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60385.3 -7.37129 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60545.5 -7.39083 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60330.4 -7.36461 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60139.3 -7.34125 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60389.2 -7.37176 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60396.1 -7.37259 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60279.9 -7.35844 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59730.9 -7.29143 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60216.9 -7.35079 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.6 -7.297 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60073.1 -7.33321 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60444.7 -7.37853 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59887.7 -7.31055 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59636.6 -7.27991 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59823.3 -7.30273 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+61045.2 -7.45187 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56575.4 -6.90626 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57085.6 -6.96849 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56504.9 -6.89761 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57072.7 -6.96695 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57400 -7.00688 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57263.9 -6.99027 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56450 -6.89094 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56455.4 -6.89159 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56954 -6.95243 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56843.8 -6.93902 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56630.1 -6.91291 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56497.5 -6.89672 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56809.1 -6.93476 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56946.4 -6.95152 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57725.8 -7.04665 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56552.7 -6.90344 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57592.2 -7.03033 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57040.1 -6.96295 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56812.5 -6.93518 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56466.8 -6.89296 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57123.7 -6.97317 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56853.5 -6.94018 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56671.8 -6.91801 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57626 -7.03448 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57386.1 -7.00524 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56822 -6.9363 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57017 -6.96019 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57244.2 -6.98793 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57298.5 -6.99452 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57094 -6.9695 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57584.6 -7.02941 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57939.4 -7.07277 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+60998.5 -7.44617 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61154.4 -7.46519 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61038.3 -7.45104 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61312.7 -7.48452 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60431.4 -7.37695 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61541.6 -7.51241 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60896 -7.43364 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60398.4 -7.37288 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61667.4 -7.52784 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61151 -7.46479 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61103.5 -7.45898 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61219.8 -7.47315 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60596.2 -7.39702 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61408.6 -7.49623 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61629.2 -7.52312 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61015.1 -7.44816 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62330.1 -7.60868 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61048.5 -7.45227 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61567 -7.51556 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62052.8 -7.57484 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61001.4 -7.4465 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60896.5 -7.4337 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61748.9 -7.5377 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61380.7 -7.49277 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61145.8 -7.46415 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61269.9 -7.47926 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61120.5 -7.46101 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61476.8 -7.50452 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61857.6 -7.55098 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61681.6 -7.52954 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62323.2 -7.60786 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60892.7 -7.43324 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56372 -6.88138 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56641.2 -6.91423 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56555.8 -6.90381 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56451.7 -6.89113 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56187 -6.85881 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56322.8 -6.8754 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56073.6 -6.84493 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56575.1 -6.90621 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56874.1 -6.94264 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56026.4 -6.83916 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57037.4 -6.96262 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57359.5 -7.00194 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56552.4 -6.90339 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56585.5 -6.90746 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56666.8 -6.91741 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56400.9 -6.88495 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56899.6 -6.9458 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57124.3 -6.97323 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56955.2 -6.95256 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56821.1 -6.93619 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57294.8 -6.99405 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.4 -6.90363 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56415.9 -6.88675 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56591.9 -6.90825 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57404.8 -7.00746 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57231.9 -6.98632 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56684.9 -6.91957 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56016.4 -6.83799 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56457.5 -6.89181 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55921.7 -6.82642 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56947 -6.95159 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56581 -6.90693 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62318 7.60703 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62174.8 7.58959 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62269.7 7.60114 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-61967.2 7.56426 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61415.1 7.49681 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61526 7.51035 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62309.7 7.60599 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61376 7.49208 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61309.6 7.48393 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61415.7 7.49688 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61636.3 7.52384 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61699.5 7.53158 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61903.6 7.55648 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61385.8 7.49329 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61149.7 7.46439 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61948.3 7.56191 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62532.3 7.63317 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61741.8 7.5367 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62152.7 7.58685 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61894.5 7.55534 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62901.8 7.67824 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62159.2 7.58764 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62660 7.6488 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62320.7 7.60737 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62221.7 7.59528 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61934.3 7.56018 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-61947.1 7.56175 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61695.2 7.53103 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61588.3 7.51797 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62694 7.65292 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61734.1 7.53577 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62776.5 7.66307 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58260.4 7.11179 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58264 7.11219 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58314.9 7.11847 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58240 7.10926 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-57977 7.07722 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58181.7 7.10203 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58036.4 7.08428 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58626.1 7.156419 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58167.3 7.10045 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58805.6 7.17818 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58040.4 7.08493 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58445 7.13434 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58576.9 7.15027 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59255 7.23324 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58654.1 7.15993 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58523.2 7.1438 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57862.5 7.06315 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58489.2 7.13967 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-58005.3 7.08058 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57739.2 7.04814 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57926.2 7.07097 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57912.9 7.06931 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57956.5 7.07461 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57767.9 7.05159 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58015.6 7.08187 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57805.6 7.05617 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58416.6 7.13075 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57624 7.034 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57687.8 7.04184 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58237.3 7.1089 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58058.7 7.08712 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58244.7 7.10981 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-60994.7 7.4455 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61603 7.51986 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61459.9 7.50223 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61665.1 7.52729 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61874.5 7.55286 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.5 7.48631 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61630 7.52303 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61904.2 7.55658 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61232.4 7.47458 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62341.2 7.60994 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61925.9 7.55913 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62067.1 7.57642 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61484.5 7.50533 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61742.7 7.53686 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61352.6 7.48913 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61942.1 7.56111 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63429 7.74268 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63722.1 7.77849 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.5 7.83819 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63867.7 7.7962 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64127.9 7.82805 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63840.4 7.79293 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64050.4 7.81853 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64160.9 7.83201 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64180.9 7.83452 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64214 7.83849 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63280.4 7.72459 0.00 !Mu1ChX91ERaw[Co2At2Ch11]
+-63366.8 7.73508 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64520.9 7.87598 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-63981.8 7.81014 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63775.5 7.78503 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63433.9 7.74331 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56258.8 6.86734 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56645.5 6.91464 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56487.9 6.89532 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56382.7 6.88258 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56555.3 6.90363 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-57022.9 6.96061 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57333.2 6.99847 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56580.7 6.90664 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56766.8 6.92938 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-56989.3 6.95655 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57851.3 7.06174 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57756.1 7.05012 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57728.3 7.0468 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57502.7 7.01928 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57680.9 7.04099 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-57995.2 7.07934 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57221.6 6.98492 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57306.8 6.9953 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56767.2 6.92944 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57714.8 7.04509 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57257.8 6.98931 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57250.9 6.98847 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56328.4 6.87591 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58288.5 7.11516 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57413.2 7.00834 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57776.2 7.05264 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57731 7.04713 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57410.6 7.00802 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57590.7 7.02999 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57638.3 7.03579 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57038.4 6.96255 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57854.9 7.0622 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59619.1 -7.27783 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60465.3 -7.38115 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59712 -7.28919 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59326.7 -7.24213 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60197.6 -7.3485 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60005.2 -7.32501 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59376.2 -7.24818 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59455.9 -7.25795 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.9 -7.25998 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59707.6 -7.28867 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59520.2 -7.26577 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59556.5 -7.27023 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60210.4 -7.35003 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59273.4 -7.23565 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59511.8 -7.26475 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59816.1 -7.30189 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62145.2 -7.5862 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62468.3 -7.62564 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62402.1 -7.61759 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62031.6 -7.57234 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62198.2 -7.59266 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62357.4 -7.61211 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62006.4 -7.56931 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61711.9 -7.53332 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61447.7 -7.50107 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62078 -7.57801 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62059.9 -7.57584 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62251.6 -7.59918 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62034 -7.57263 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61653.3 -7.52617 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61797.4 -7.5438 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115 -6.85013 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56290.1 -6.87151 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55631.2 -6.79109 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55653.9 -6.79382 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55417.1 -6.76495 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56418.2 -6.88719 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55381.4 -6.76057 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55909.9 -6.82508 0.00 !Mu1ChY40ERaw[Co3At3Ch8]
+56029.4 -6.83969 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56120.4 -6.85079 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55503.4 -6.77548 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56587.3 -6.90782 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55632.5 -6.79125 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55719.2 -6.80184 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55759.2 -6.80672 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55723.3 -6.80233 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.5 -6.98188 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56621.8 -6.91194 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56558.9 -6.9043 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56037.1 -6.84059 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56793.3 -6.93289 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56263 -6.86816 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56442.5 -6.89006 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56437 -6.8894 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57330.8 -6.99852 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57023 -6.96092 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56627.6 -6.91264 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57287.8 -6.99327 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57378.4 -7.00433 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57012.1 -6.95962 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56174 -6.8573 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57292.1 -6.99379 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61087.1 -7.45703 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61618.4 -7.52186 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61291.1 -7.48195 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61562.6 -7.51506 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61204.3 -7.47131 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60010.3 -7.3256 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60457 -7.38015 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61099.9 -7.45857 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60265.6 -7.35676 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61237.3 -7.47538 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60887.5 -7.43265 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60371.3 -7.36966 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60519.5 -7.38776 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60974.1 -7.44327 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60660.6 -7.40501 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61330.5 -7.4868 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61162.6 -7.46633 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61126.4 -7.46184 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61091.3 -7.45754 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60509 -7.38651 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60423.4 -7.376 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61141.3 -7.46364 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60674.6 -7.40669 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60573.1 -7.3943 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61027.3 -7.44976 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61279.2 -7.48052 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60725.5 -7.41289 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60868.8 -7.43041 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60510.8 -7.38671 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61280.6 -7.48069 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61608.5 -7.52068 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60746.9 -7.4156 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55857.9 -6.81873 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55481.3 -6.77275 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55690.1 -6.79825 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55554.6 -6.78172 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55813.8 -6.81337 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55466.9 -6.77101 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55425.1 -6.76591 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56167.4 -6.85651 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55270.2 -6.74696 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55305.4 -6.75128 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55865.3 -6.81962 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55229.6 -6.74202 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55862.8 -6.81933 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56111.1 -6.84967 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56135.6 -6.8526 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56572.6 -6.90596 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54764.4 -6.68523 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55559.3 -6.78228 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55152.2 -6.73254 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.6 -6.72196 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55234.3 -6.74255 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55399.3 -6.76272 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55260.9 -6.74585 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55568 -6.78332 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55863.9 -6.81946 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55478.8 -6.77244 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.7 -6.69408 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55138.3 -6.73087 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55221.7 -6.74106 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55183 -6.73632 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55346 -6.75624 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56263 -6.86815 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62742.1 7.65877 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62479.2 7.62671 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62865 7.67381 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62098.5 7.58022 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62057.1 7.5752 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62707.7 7.65462 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62430.5 7.62076 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62814.9 7.6677 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62925.1 7.68116 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62122.5 7.58321 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62473.8 7.62602 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62490.4 7.62809 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62594.2 7.64074 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62536.7 7.63373 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62645.6 7.64703 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63375.2 7.73612 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62167.2 7.58864 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61803.3 7.54424 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61578.5 7.51678 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61470.8 7.50362 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61483.7 7.50523 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62315.8 7.60676 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62154.7 7.58709 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61791.1 7.54274 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61631.6 7.52326 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61824.2 7.54673 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61962.7 7.56372 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61774.4 7.54065 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61664.5 7.52723 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61257.4 7.47756 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62372.1 7.61364 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61518.2 7.5094 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-58997.3 7.20165 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58122.7 7.09487 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58574.8 7.15013 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58368.7 7.1249 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58173.3 7.10106 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58141.5 7.09722 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58324.8 7.11956 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57915.8 7.06966 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57571.4 7.0276 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58563.5 7.14871 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58788.6 7.17615 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58273.9 7.11334 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58563.9 7.14877 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58527 7.14428 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58339.3 7.12137 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58469.7 7.13725 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57779.5 7.05305 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57166 6.97811 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58129.9 7.09577 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57864.6 7.06342 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57537.3 7.02346 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57137 6.97462 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57819.8 7.05796 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57621.2 7.03367 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57914 7.06946 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57507.6 7.01987 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57923.1 7.07061 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.9 6.95776 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57486.6 7.01726 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56686.3 6.91961 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57458.1 7.01383 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57861.9 7.06309 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63315.8 7.72883 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64994.4 7.9338 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-64025.6 7.81543 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63710.4 7.77703 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64382.2 7.859 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63647.8 7.76936 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63444.6 7.7446 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63361.8 7.73443 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63093.9 7.70176 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63826.9 7.79125 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63664.2 7.77139 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63884.1 7.79822 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63716.4 7.77776 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63624.6 7.76662 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63593.7 7.76277 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63247.6 7.72049 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63297.5 7.72671 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63100.9 7.70261 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63149.8 7.70857 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63919.2 7.80245 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63810.5 7.7892 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63724.6 7.77877 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63923.1 7.80293 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63045.1 7.6958 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63491.8 7.75038 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63342.9 7.73222 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63540.7 7.7563 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63268 7.72303 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64611 7.88691 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63699 7.7756 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63623.5 7.76632 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59026.2 7.20527 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58540.6 7.14597 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58304.4 7.11715 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58710.8 7.16671 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59397.8 7.25058 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59352.9 7.2451 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58824 7.18059 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59021.6 7.2047 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59011.2 7.2034 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59098.8 7.21406 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58717.3 7.1675 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-58991.5 7.20094 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58718.9 7.16772 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60340.8 7.36568 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58950.1 7.1959 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58675.2 7.16237 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59295.7 7.2381 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59339.5 7.24343 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59702 7.28774 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59145.3 7.21974 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59642 7.28038 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-59995.7 7.32358 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59442.9 7.25607 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59354.8 7.24536 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60083.1 7.33422 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58758.9 7.17258 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59087.3 7.21264 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59302 7.2389 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58911.6 7.19123 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58940.6 7.19471 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59142.6 7.2194 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59291.3 7.23756 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63221.1 -7.71756 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+64033 -7.81661 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62573 -7.63842 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63453.2 -7.74588 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+63008.4 -7.69158 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62742 -7.65904 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63050.8 -7.69679 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62682.4 -7.65176 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62844.3 -7.67155 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63462.9 -7.74703 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+62996.6 -7.69016 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62575 -7.63867 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62131.2 -7.58453 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62781.8 -7.66392 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+62993.7 -7.68982 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63488.8 -7.75026 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61669.6 -7.52809 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60961.4 -7.44174 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60726.4 -7.41301 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62087.4 -7.57914 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61094.3 -7.45789 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60927.5 -7.43756 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62149.1 -7.58664 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61087.9 -7.45714 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61072.4 -7.45528 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61604.2 -7.52017 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61131.3 -7.46243 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61442 -7.50039 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61550 -7.51354 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61513.5 -7.50906 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61344.4 -7.48846 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61772.1 -7.54065 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56305.3 -6.87326 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56497.5 -6.89675 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56834.6 -6.93796 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56703.4 -6.92192 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+56977 -6.9553 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56889.1 -6.94457 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56450.3 -6.89099 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56403.9 -6.88533 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56205.6 -6.86116 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58125.2 -7.09546 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56762.4 -6.92908 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56299.9 -6.87269 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57261.3 -6.98997 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57247.6 -6.98834 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57030.9 -6.96185 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56744.6 -6.92695 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57601.8 -7.03162 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57017.1 -6.96022 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57933.4 -7.07206 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57426.4 -7.01017 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57297.8 -6.99446 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58636.8 -7.15795 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57744.4 -7.049 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57839.2 -7.06057 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57708.8 -7.04465 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57558.5 -7.02632 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57474.8 -7.01608 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58260.9 -7.11207 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57892.2 -7.06703 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57330 -6.99845 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57835.7 -7.06015 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58184.5 -7.10268 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59348.1 -7.24483 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59605.7 -7.27624 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59455.9 -7.25797 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60429.5 -7.37675 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59568.6 -7.27167 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59821.4 -7.30253 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59558 -7.27041 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59892.6 -7.3113 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59876.5 -7.30923 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59557.1 -7.2703 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59902.7 -7.31249 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60059.2 -7.33158 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59314.2 -7.24065 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59977.2 -7.32152 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59375.7 -7.24812 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60162.5 -7.34418 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60553.6 -7.39197 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61237.5 -7.47541 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60562.6 -7.39303 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61224.5 -7.47385 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61126.4 -7.46188 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60909.5 -7.4354 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60957.5 -7.44128 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61286.2 -7.48137 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60884.7 -7.4323 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60871 -7.43068 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61443.7 -7.50059 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60658.6 -7.40476 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61097.6 -7.45829 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60614.1 -7.39932 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61044.5 -7.45181 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61470.4 -7.50378 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56878.5 -6.94331 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55961.9 -6.83138 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56218.8 -6.86276 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56642.5 -6.91453 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56348 -6.87854 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56747.4 -6.9273 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55904.8 -6.82446 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57240.3 -6.98747 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56087.4 -6.84672 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56732.1 -6.92546 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56623.7 -6.91218 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57520.3 -7.02164 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57014.4 -6.9599 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56700.3 -6.92155 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57019.8 -6.96055 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56158.7 -6.85546 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56486.5 -6.89543 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57289.3 -6.99345 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56597.9 -6.90909 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56824.1 -6.93669 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56510 -6.89835 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56563.8 -6.90489 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56834.9 -6.93798 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56738.1 -6.9262 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56337.6 -6.87729 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57059.2 -6.96537 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57419.8 -7.0094 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56208.7 -6.86156 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56914.2 -6.9477 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56339.9 -6.87758 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56168.2 -6.8566 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62298.2 7.60472 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61861.6 7.55141 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62156.9 7.58753 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62259.6 7.60006 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61881.7 7.55391 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61817.4 7.54604 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62038.9 7.57309 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61558.6 7.51446 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61705 7.53228 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61812 7.54536 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61801.3 7.54402 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62828 7.66936 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61599.3 7.51937 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61494.7 7.50662 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62518.2 7.63157 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63590.9 7.76244 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63017.1 7.69249 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62878.7 7.67552 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62791 7.66488 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62559.2 7.63654 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63113.3 7.70421 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63699.8 7.77586 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63781.1 7.7857 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62720.5 7.65624 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63456.7 7.74614 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63469.1 7.74769 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63295.5 7.72649 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63507.6 7.75235 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63562.9 7.7591 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64464.4 7.86912 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63690.7 7.77475 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59300.3 7.23889 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59122.8 7.21712 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58098 7.09209 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58311.4 7.11809 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58778.1 7.17501 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-58990.3 7.20099 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59232.9 7.23058 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58615.9 7.15528 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59221.6 7.22918 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58881.5 7.18765 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-58977.3 7.19934 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-58983.3 7.20009 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59359.3 7.24594 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58777.5 7.17493 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59126 7.21749 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57304.1 6.99513 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57151.2 6.97642 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56849.2 6.93961 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57205.7 6.98311 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56835.2 6.93786 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57340.1 6.99951 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56590.8 6.90809 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57262.3 6.99005 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57574.4 7.02812 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56496.9 6.89662 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57471.5 7.01554 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57061.9 6.96556 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56316.5 6.87459 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56849.9 6.9397 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56760.7 6.92884 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56499.3 6.89695 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64170.2 7.83318 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63841.5 7.79309 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63555.7 7.75819 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63767.7 7.78403 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63604.2 7.76408 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63260 7.72205 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64305.5 7.84974 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62501.6 7.6295 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62662.5 7.64914 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63010.5 7.69167 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63148.4 7.70842 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63379.3 7.73664 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64068.7 7.82082 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62470.2 7.62573 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62557.4 7.63631 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63009.7 7.69157 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62457.8 7.62418 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62779.1 7.66339 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62621 7.64411 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62578.4 7.63894 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62005.9 7.56897 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62457.5 7.62414 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62403.1 7.61752 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62171.3 7.58918 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62335.3 7.6092 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62747.4 7.6596 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62339.6 7.60973 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62021.3 7.57089 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62834.5 7.67017 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.8 7.63673 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62140.9 7.58552 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62358.7 7.61211 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56125.6 6.85121 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55950.5 6.82982 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55179.6 6.73572 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55782.8 6.8094 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55955.9 6.8305 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55934.4 6.82783 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55974.5 6.83272 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55254.9 6.74491 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55487.5 6.77335 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-55989.3 6.83453 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55823.6 6.81435 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55681.5 6.79695 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56743.4 6.92662 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56300.5 6.87254 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55822.3 6.81419 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55695.1 6.79867 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57562.2 7.02657 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-57013.5 6.9596 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57521.1 7.02156 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56981 6.95566 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-57972.5 7.07666 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57233.9 6.98648 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57434.2 7.01098 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56213.4 6.86193 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56747.4 6.92711 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57889.1 7.0665 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57504.9 7.01955 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57096.6 6.96973 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57651 7.0374 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56716.4 6.92338 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57789.7 7.05434 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56522 6.89959 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60097.2 -7.33611 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987 -7.20065 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60080 -7.33404 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59936.5 -7.3165 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59769.5 -7.29617 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59874.6 -7.30898 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59775.3 -7.29686 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60186.2 -7.347 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60495.8 -7.38477 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60439.3 -7.37789 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60145.6 -7.34201 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59791.1 -7.29875 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59677.3 -7.28488 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59583.5 -7.27344 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60533.1 -7.38936 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59724.9 -7.29071 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62921.4 -7.68089 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63205.4 -7.71552 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62267.4 -7.60105 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62696.7 -7.65347 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63193 -7.71405 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63533.6 -7.75561 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+62980.8 -7.68812 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62964 -7.68612 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63469.3 -7.74779 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63461 -7.74678 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62600 -7.64164 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63414 -7.74102 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62467.2 -7.62548 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62971.6 -7.68703 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63066.7 -7.69867 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62948.3 -7.68424 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84714 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56193.9 -6.85965 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55825.1 -6.8147 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55674.4 -6.79624 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55743.5 -6.80473 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56230.4 -6.86412 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55926.7 -6.82705 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55575.2 -6.78415 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55421.9 -6.76539 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185.4 -6.85863 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+56006.9 -6.83686 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55331.2 -6.75434 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55762.4 -6.80697 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55616.4 -6.78921 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55888 -6.82232 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55807.9 -6.81252 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56633.2 -6.9133 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56902.3 -6.94613 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57128.5 -6.97375 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56942.8 -6.95109 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56488.8 -6.89569 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56938.1 -6.95052 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56630.8 -6.91301 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57019.1 -6.96044 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57045.6 -6.96359 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56614.1 -6.91102 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57499.8 -7.01906 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57046.8 -6.96375 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57594 -7.03054 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57030.5 -6.96179 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56762.4 -6.92908 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57433.7 -7.01104 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59389.3 -7.24973 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59940.1 -7.31694 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59525.1 -7.26633 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59349.5 -7.24484 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59443.7 -7.25635 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58765.1 -7.17351 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59296.9 -7.23842 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+59965.1 -7.32006 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60172.6 -7.34537 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59451.6 -7.2573 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59530.9 -7.26702 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59582.6 -7.27333 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59590.9 -7.27432 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59396.5 -7.25058 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59028.9 -7.20579 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59962.3 -7.31973 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62810.9 -7.66739 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62711.7 -7.65528 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62530.7 -7.63323 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62147.2 -7.58643 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62024.8 -7.57151 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62696.5 -7.65345 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62262.4 -7.60046 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62955.1 -7.68508 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62655 -7.64835 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62592.1 -7.64069 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61832.7 -7.54801 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61987.9 -7.56697 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61948 -7.56205 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+62025.8 -7.57163 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61996 -7.56795 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61777.7 -7.5413 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56732.7 -6.92539 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56863.3 -6.94135 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56282.6 -6.87046 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55937.8 -6.82837 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56278.2 -6.86995 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56282 -6.8704 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55931.1 -6.82758 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55975.4 -6.83298 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55843.1 -6.81683 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56293.4 -6.87176 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56467.7 -6.89304 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56254.6 -6.867 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55755.7 -6.80615 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55895.6 -6.82321 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56669.4 -6.91772 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56671.7 -6.91799 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57139 -6.97499 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57000.1 -6.95808 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57098.7 -6.97019 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+56976.2 -6.95517 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57605.3 -7.03199 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57282.8 -6.99264 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56840.6 -6.93862 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57649.6 -7.03728 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57438.3 -7.01157 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57084.8 -6.96844 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57433.8 -7.01102 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57070.8 -6.96674 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57543.7 -7.02442 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56819.9 -6.93609 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57239.4 -6.98722 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57548.9 -7.02512 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/calibT0_R326-327.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/calibT0_R326-327.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..9e56c5f06f404fcdaf6419f27f47ad64d842812c
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra220_R326-327/calibT0_R326-327.cal1
@@ -0,0 +1,1023 @@
+947.402 -0.114176 0.0 !Mu0ChX1TRaw[Co1At1Ch1]
+958.132 -0.115529 0.0 !Mu0ChX2TRaw[Co1At1Ch2]
+959.289 -0.115657 0.0 !Mu0ChX3TRaw[Co1At1Ch3]
+973.445 -0.117409 0.0 !Mu0ChX4TRaw[Co1At1Ch4]
+973.097 -0.117367 0.0 !Mu0ChX5TRaw[Co1At1Ch5]
+973.027 -0.117353 0.0 !Mu0ChX6TRaw[Co1At1Ch6]
+978.311 -0.117969 0.0 !Mu0ChX7TRaw[Co1At1Ch7]
+980.44 -0.118246 0.0 !Mu0ChX8TRaw[Co1At1Ch8]
+979.197 -0.118065 0.0 !Mu0ChX9TRaw[Co1At1Ch9]
+983.093 -0.118546 0.0 !Mu0ChX10TRaw[Co1At1Ch10]
+987.843 -0.119138 0.0 !Mu0ChX11TRaw[Co1At1Ch11]
+987.466 -0.119075 0.0 !Mu0ChX12TRaw[Co1At1Ch12]
+994.957 -0.119996 0.0 !Mu0ChX13TRaw[Co1At1Ch13]
+980.198 -0.118174 0.0 !Mu0ChX14TRaw[Co1At1Ch14]
+991.208 -0.119531 0.0 !Mu0ChX15TRaw[Co1At1Ch15]
+1327.419 -0.118448 0.0 !Mu0ChX16TRaw[Co1At1Ch16]
+957.045 -0.115275 0.0 !Mu0ChX17TRaw[Co1At2Ch1]
+967.151 -0.116527 0.0 !Mu0ChX18TRaw[Co1At2Ch2]
+979.671 -0.118044 0.0 !Mu0ChX19TRaw[Co1At2Ch3]
+980.319 -0.118125 0.0 !Mu0ChX20TRaw[Co1At2Ch4]
+989.453 -0.119233 0.0 !Mu0ChX21TRaw[Co1At2Ch5]
+983.819 -0.118555 0.0 !Mu0ChX22TRaw[Co1At2Ch6]
+994.391 -0.119845 0.0 !Mu0ChX23TRaw[Co1At2Ch7]
+995.696 -0.120005 0.0 !Mu0ChX24TRaw[Co1At2Ch8]
+991.078 -0.119427 0.0 !Mu0ChX25TRaw[Co1At2Ch9]
+1002.131 -0.120777 0.0 !Mu0ChX26TRaw[Co1At2Ch10]
+1004.435 -0.121057 0.0 !Mu0ChX27TRaw[Co1At2Ch11]
+1008.403 -0.121545 0.0 !Mu0ChX28TRaw[Co1At2Ch12]
+1003.939 -0.121021 0.0 !Mu0ChX29TRaw[Co1At2Ch13]
+1002.74 -0.120851 0.0 !Mu0ChX30TRaw[Co1At2Ch14]
+999.377 -0.12045 0.0 !Mu0ChX31TRaw[Co1At2Ch15]
+995.027 -0.119947 0.0 !Mu0ChX32TRaw[Co1At2Ch16]
+874.004 -0.105192 0.0 !Mu0ChX33TRaw[Co1At3Ch1]
+871.776 -0.104955 0.0 !Mu0ChX34TRaw[Co1At3Ch2]
+891.807 -0.107397 0.0 !Mu0ChX35TRaw[Co1At3Ch3]
+880.562 -0.106033 0.0 !Mu0ChX36TRaw[Co1At3Ch4]
+882.297 -0.106227 0.0 !Mu0ChX37TRaw[Co1At3Ch5]
+896.75 -0.108005 0.0 !Mu0ChX38TRaw[Co1At3Ch6]
+898.223 -0.108195 0.0 !Mu0ChX39TRaw[Co1At3Ch7]
+896.786 -0.107979 0.0 !Mu0ChX40TRaw[Co1At3Ch8]
+899.624 -0.108302 0.0 !Mu0ChX41TRaw[Co1At3Ch9]
+899.765 -0.108334 0.0 !Mu0ChX42TRaw[Co1At3Ch10]
+899.028 -0.108243 0.0 !Mu0ChX43TRaw[Co1At3Ch11]
+905.872 -0.109095 0.0 !Mu0ChX44TRaw[Co1At3Ch12]
+901.13 -0.108505 0.0 !Mu0ChX45TRaw[Co1At3Ch13]
+899.439 -0.107877 0.0 !Mu0ChX46TRaw[Co1At3Ch14]
+898.066 -0.108187 0.0 !Mu0ChX47TRaw[Co1At3Ch15]
+920.142 -0.10826 0.0 !Mu0ChX48TRaw[Co1At3Ch16]
+885.877 -0.106556 0.0 !Mu0ChX49TRaw[Co1At4Ch1]
+889.054 -0.106942 0.0 !Mu0ChX50TRaw[Co1At4Ch2]
+894.673 -0.107622 0.0 !Mu0ChX51TRaw[Co1At4Ch3]
+903.218 -0.109464 0.0 !Mu0ChX52TRaw[Co1At4Ch4]
+908.402 -0.109295 0.0 !Mu0ChX53TRaw[Co1At4Ch5]
+911.389 -0.109652 0.0 !Mu0ChX54TRaw[Co1At4Ch6]
+913.908 -0.109955 0.0 !Mu0ChX55TRaw[Co1At4Ch7]
+917.897 -0.110458 0.0 !Mu0ChX56TRaw[Co1At4Ch8]
+926.464 -0.111499 0.0 !Mu0ChX57TRaw[Co1At4Ch9]
+918.072 -0.110456 0.0 !Mu0ChX58TRaw[Co1At4Ch10]
+925.456 -0.111378 0.0 !Mu0ChX59TRaw[Co1At4Ch11]
+930.204 -0.111943 0.0 !Mu0ChX60TRaw[Co1At4Ch12]
+937.287 -0.112807 0.0 !Mu0ChX61TRaw[Co1At4Ch13]
+940.01 -0.11314 0.0 !Mu0ChX62TRaw[Co1At4Ch14]
+941.711 -0.113338 0.0 !Mu0ChX63TRaw[Co1At4Ch15]
+930.49 -0.111982 0.0 !Mu0ChX64TRaw[Co1At4Ch16]
+958.733 -0.115846 0.0 !Mu0ChX65TRaw[Co2At1Ch1]
+963.634 -0.11646 0.0 !Mu0ChX66TRaw[Co2At1Ch2]
+973.382 -0.117644 0.0 !Mu0ChX67TRaw[Co2At1Ch3]
+974.652 -0.117791 0.0 !Mu0ChX68TRaw[Co2At1Ch4]
+977.949 -0.118174 0.0 !Mu0ChX69TRaw[Co2At1Ch5]
+990.649 -0.119717 0.0 !Mu0ChX70TRaw[Co2At1Ch6]
+995.246 -0.120284 0.0 !Mu0ChX71TRaw[Co2At1Ch7]
+996.388 -0.120426 0.0 !Mu0ChX72TRaw[Co2At1Ch8]
+1007.342 -0.121763 0.0 !Mu0ChX73TRaw[Co2At1Ch9]
+988.546 -0.119445 0.0 !Mu0ChX74TRaw[Co2At1Ch10]
+1005.453 -0.121535 0.0 !Mu0ChX75TRaw[Co2At1Ch11]
+996.341 -0.120381 0.0 !Mu0ChX76TRaw[Co2At1Ch12]
+1007.215 -0.121262 0.0 !Mu0ChX77TRaw[Co2At1Ch13]
+1011.503 -0.121766 0.0 !Mu0ChX78TRaw[Co2At1Ch14]
+998.245 -0.120615 0.0 !Mu0ChX79TRaw[Co2At1Ch15]
+1381.85 -0.120952 0.0 !Mu0ChX80TRaw[Co2At1Ch16]
+924.325 -0.111515 0.0 !Mu0ChX81TRaw[Co2At2Ch1]
+933.986 -0.112746 0.0 !Mu0ChX82TRaw[Co2At2Ch2]
+926.081 -0.111774 0.0 !Mu0ChX83TRaw[Co2At2Ch3]
+942.039 -0.113281 0.0 !Mu0ChX84TRaw[Co2At2Ch4]
+931.74 -0.112468 0.0 !Mu0ChX85TRaw[Co2At2Ch5]
+942.885 -0.113819 0.0 !Mu0ChX86TRaw[Co2At2Ch6]
+951.107 -0.114818 0.0 !Mu0ChX87TRaw[Co2At2Ch7]
+944.193 -0.113978 0.0 !Mu0ChX88TRaw[Co2At2Ch8]
+950.881 -0.114813 0.0 !Mu0ChX89TRaw[Co2At2Ch9]
+958.38 -0.115728 0.0 !Mu0ChX90TRaw[Co2At2Ch10]
+965.991 -0.11664 0.0 !Mu0ChX91TRaw[Co2At2Ch11]
+962.675 -0.11625 0.0 !Mu0ChX92TRaw[Co2At2Ch12]
+962.975 -0.116299 0.0 !Mu0ChX93TRaw[Co2At2Ch13]
+961.838 -0.116152 0.0 !Mu0ChX94TRaw[Co2At2Ch14]
+975.767 -0.117868 0.0 !Mu0ChX95TRaw[Co2At2Ch15]
+987.869 -0.116744 0.0 !Mu0ChX96TRaw[Co2At2Ch16]
+869.374 -0.105013 0.0 !Mu0ChX97TRaw[Co2At3Ch1]
+878.873 -0.106169 0.0 !Mu0ChX98TRaw[Co2At3Ch2]
+879.124 -0.106212 0.0 !Mu0ChX99TRaw[Co2At3Ch3]
+885.082 -0.106905 0.0 !Mu0ChX100TRaw[Co2At3Ch4]
+894.377 -0.108043 0.0 !Mu0ChX101TRaw[Co2At3Ch5]
+901.707 -0.108935 0.0 !Mu0ChX102TRaw[Co2At3Ch6]
+897.889 -0.108442 0.0 !Mu0ChX103TRaw[Co2At3Ch7]
+895.995 -0.108194 0.0 !Mu0ChX104TRaw[Co2At3Ch8]
+905.254 -0.109336 0.0 !Mu0ChX105TRaw[Co2At3Ch9]
+903.109 -0.109053 0.0 !Mu0ChX106TRaw[Co2At3Ch10]
+908.799 -0.109771 0.0 !Mu0ChX107TRaw[Co2At3Ch11]
+906.422 -0.109449 0.0 !Mu0ChX108TRaw[Co2At3Ch12]
+903.683 -0.109128 0.0 !Mu0ChX109TRaw[Co2At3Ch13]
+907.658 -0.109641 0.0 !Mu0ChX110TRaw[Co2At3Ch14]
+903.934 -0.109177 0.0 !Mu0ChX111TRaw[Co2At3Ch15]
+917.004 -0.109478 0.0 !Mu0ChX112TRaw[Co2At3Ch16]
+889.763 -0.107364 0.0 !Mu0ChX113TRaw[Co2At4Ch1]
+892.874 -0.107748 0.0 !Mu0ChX114TRaw[Co2At4Ch2]
+893.086 -0.107782 0.0 !Mu0ChX115TRaw[Co2At4Ch3]
+903.173 -0.109007 0.0 !Mu0ChX116TRaw[Co2At4Ch4]
+906.71 -0.109423 0.0 !Mu0ChX117TRaw[Co2At4Ch5]
+900.172 -0.108648 0.0 !Mu0ChX118TRaw[Co2At4Ch6]
+914.738 -0.110413 0.0 !Mu0ChX119TRaw[Co2At4Ch7]
+915.95 -0.110579 0.0 !Mu0ChX120TRaw[Co2At4Ch8]
+910.273 -0.109898 0.0 !Mu0ChX121TRaw[Co2At4Ch9]
+915.371 -0.1105 0.0 !Mu0ChX122TRaw[Co2At4Ch10]
+923.843 -0.111529 0.0 !Mu0ChX123TRaw[Co2At4Ch11]
+916.0 -0.110604 0.0 !Mu0ChX124TRaw[Co2At4Ch12]
+919.085 -0.110972 0.0 !Mu0ChX125TRaw[Co2At4Ch13]
+920.758 -0.11118 0.0 !Mu0ChX126TRaw[Co2At4Ch14]
+916.079 -0.110613 0.0 !Mu0ChX127TRaw[Co2At4Ch15]
+927.913 -0.111151 0.0 !Mu0ChX128TRaw[Co2At4Ch16]
+943.871 -0.114033 0.0 !Mu0ChY2TRaw[Co3At1Ch2]
+942.541 -0.113921 0.0 !Mu0ChY3TRaw[Co3At1Ch3]
+960.736 -0.116104 0.0 !Mu0ChY4TRaw[Co3At1Ch4]
+956.194 -0.115563 0.0 !Mu0ChY5TRaw[Co3At1Ch5]
+971.901 -0.117481 0.0 !Mu0ChY6TRaw[Co3At1Ch6]
+970.47 -0.117339 0.0 !Mu0ChY7TRaw[Co3At1Ch7]
+967.899 -0.117018 0.0 !Mu0ChY8TRaw[Co3At1Ch8]
+974.549 -0.117842 0.0 !Mu0ChY9TRaw[Co3At1Ch9]
+970.321 -0.117316 0.0 !Mu0ChY10TRaw[Co3At1Ch10]
+972.871 -0.117632 0.0 !Mu0ChY11TRaw[Co3At1Ch11]
+979.225 -0.118398 0.0 !Mu0ChY12TRaw[Co3At1Ch12]
+977.059 -0.11814 0.0 !Mu0ChY13TRaw[Co3At1Ch13]
+972.932 -0.117633 0.0 !Mu0ChY14TRaw[Co3At1Ch14]
+975.541 -0.117944 0.0 !Mu0ChY15TRaw[Co3At1Ch15]
+981.99 -0.118761 0.0 !Mu0ChY16TRaw[Co3At1Ch16]
+937.345 -0.113175 0.0 !Mu0ChY17TRaw[Co3At2Ch1]
+946.398 -0.114309 0.0 !Mu0ChY18TRaw[Co3At2Ch2]
+954.917 -0.115351 0.0 !Mu0ChY19TRaw[Co3At2Ch3]
+946.68 -0.11436 0.0 !Mu0ChY20TRaw[Co3At2Ch4]
+949.495 -0.114686 0.0 !Mu0ChY21TRaw[Co3At2Ch5]
+952.893 -0.115103 0.0 !Mu0ChY22TRaw[Co3At2Ch6]
+958.913 -0.115832 0.0 !Mu0ChY23TRaw[Co3At2Ch7]
+959.053 -0.115841 0.0 !Mu0ChY24TRaw[Co3At2Ch8]
+963.718 -0.116398 0.0 !Mu0ChY25TRaw[Co3At2Ch9]
+961.896 -0.116195 0.0 !Mu0ChY26TRaw[Co3At2Ch10]
+958.661 -0.115516 0.0 !Mu0ChY27TRaw[Co3At2Ch11]
+973.339 -0.117562 0.0 !Mu0ChY28TRaw[Co3At2Ch12]
+975.575 -0.117834 0.0 !Mu0ChY29TRaw[Co3At2Ch13]
+970.444 -0.11722 0.0 !Mu0ChY30TRaw[Co3At2Ch14]
+973.574 -0.11759 0.0 !Mu0ChY31TRaw[Co3At2Ch15]
+968.228 -0.116928 0.0 !Mu0ChY32TRaw[Co3At2Ch16]
+870.562 -0.105131 0.0 !Mu0ChY33TRaw[Co3At3Ch1]
+870.284 -0.105113 0.0 !Mu0ChY34TRaw[Co3At3Ch2]
+887.363 -0.107174 0.0 !Mu0ChY35TRaw[Co3At3Ch3]
+877.314 -0.105955 0.0 !Mu0ChY36TRaw[Co3At3Ch4]
+888.861 -0.107363 0.0 !Mu0ChY37TRaw[Co3At3Ch5]
+888.241 -0.107278 0.0 !Mu0ChY38TRaw[Co3At3Ch6]
+888.889 -0.107347 0.0 !Mu0ChY39TRaw[Co3At3Ch7]
+906.968 -0.109567 0.0 !Mu0ChY40TRaw[Co3At3Ch8]
+904.625 -0.109268 0.0 !Mu0ChY41TRaw[Co3At3Ch9]
+902.798 -0.109045 0.0 !Mu0ChY42TRaw[Co3At3Ch10]
+901.927 -0.108924 0.0 !Mu0ChY43TRaw[Co3At3Ch11]
+912.591 -0.110196 0.0 !Mu0ChY44TRaw[Co3At3Ch12]
+909.812 -0.109895 0.0 !Mu0ChY45TRaw[Co3At3Ch13]
+904.379 -0.10924 0.0 !Mu0ChY46TRaw[Co3At3Ch14]
+914.951 -0.110513 0.0 !Mu0ChY47TRaw[Co3At3Ch15]
+903.001 -0.109056 0.0 !Mu0ChY48TRaw[Co3At3Ch16]
+857.208 -0.103507 0.0 !Mu0ChY49TRaw[Co3At4Ch1]
+868.319 -0.104888 0.0 !Mu0ChY50TRaw[Co3At4Ch2]
+863.685 -0.104347 0.0 !Mu0ChY51TRaw[Co3At4Ch3]
+880.511 -0.106391 0.0 !Mu0ChY52TRaw[Co3At4Ch4]
+883.206 -0.106718 0.0 !Mu0ChY53TRaw[Co3At4Ch5]
+884.379 -0.106878 0.0 !Mu0ChY54TRaw[Co3At4Ch6]
+881.016 -0.106441 0.0 !Mu0ChY55TRaw[Co3At4Ch7]
+888.95 -0.107426 0.0 !Mu0ChY56TRaw[Co3At4Ch8]
+890.519 -0.107608 0.0 !Mu0ChY57TRaw[Co3At4Ch9]
+894.751 -0.108136 0.0 !Mu0ChY58TRaw[Co3At4Ch10]
+901.921 -0.109012 0.0 !Mu0ChY59TRaw[Co3At4Ch11]
+900.736 -0.108611 0.0 !Mu0ChY60TRaw[Co3At4Ch12]
+899.581 -0.108719 0.0 !Mu0ChY61TRaw[Co3At4Ch13]
+906.688 -0.109581 0.0 !Mu0ChY62TRaw[Co3At4Ch14]
+900.81 -0.108895 0.0 !Mu0ChY63TRaw[Co3At4Ch15]
+906.101 -0.109543 0.0 !Mu0ChY64TRaw[Co3At4Ch16]
+965.38 -0.116469 0.0 !Mu0ChY65TRaw[Co4At1Ch1]
+971.898 -0.117302 0.0 !Mu0ChY66TRaw[Co4At1Ch2]
+977.707 -0.118012 0.0 !Mu0ChY67TRaw[Co4At1Ch3]
+977.945 -0.118028 0.0 !Mu0ChY68TRaw[Co4At1Ch4]
+980.831 -0.118378 0.0 !Mu0ChY69TRaw[Co4At1Ch5]
+984.514 -0.118825 0.0 !Mu0ChY70TRaw[Co4At1Ch6]
+984.139 -0.118781 0.0 !Mu0ChY71TRaw[Co4At1Ch7]
+987.235 -0.119156 0.0 !Mu0ChY72TRaw[Co4At1Ch8]
+991.116 -0.119628 0.0 !Mu0ChY73TRaw[Co4At1Ch9]
+982.578 -0.118591 0.0 !Mu0ChY74TRaw[Co4At1Ch10]
+991.199 -0.119656 0.0 !Mu0ChY75TRaw[Co4At1Ch11]
+1001.66 -0.120924 0.0 !Mu0ChY76TRaw[Co4At1Ch12]
+996.91 -0.120327 0.0 !Mu0ChY77TRaw[Co4At1Ch13]
+998.977 -0.120579 0.0 !Mu0ChY78TRaw[Co4At1Ch14]
+996.138 -0.120247 0.0 !Mu0ChY79TRaw[Co4At1Ch15]
+1003.186 -0.121097 0.0 !Mu0ChY80TRaw[Co4At1Ch16]
+971.772 -0.117145 0.0 !Mu0ChY81TRaw[Co4At2Ch1]
+987.56 -0.119118 0.0 !Mu0ChY82TRaw[Co4At2Ch2]
+982.693 -0.118534 0.0 !Mu0ChY83TRaw[Co4At2Ch3]
+997.382 -0.12031 0.0 !Mu0ChY84TRaw[Co4At2Ch4]
+1001.12 -0.120777 0.0 !Mu0ChY85TRaw[Co4At2Ch5]
+1003.628 -0.121085 0.0 !Mu0ChY86TRaw[Co4At2Ch6]
+999.525 -0.120569 0.0 !Mu0ChY87TRaw[Co4At2Ch7]
+1009.866 -0.121839 0.0 !Mu0ChY88TRaw[Co4At2Ch8]
+1005.699 -0.121339 0.0 !Mu0ChY89TRaw[Co4At2Ch9]
+1016.19 -0.122592 0.0 !Mu0ChY90TRaw[Co4At2Ch10]
+1026.692 -0.123897 0.0 !Mu0ChY91TRaw[Co4At2Ch11]
+1026.458 -0.123866 0.0 !Mu0ChY92TRaw[Co4At2Ch12]
+1021.303 -0.123256 0.0 !Mu0ChY93TRaw[Co4At2Ch13]
+1025.779 -0.123786 0.0 !Mu0ChY94TRaw[Co4At2Ch14]
+1022.572 -0.123408 0.0 !Mu0ChY95TRaw[Co4At2Ch15]
+1018.35 -0.122879 0.0 !Mu0ChY96TRaw[Co4At2Ch16]
+884.199 -0.106544 0.0 !Mu0ChY97TRaw[Co4At3Ch1]
+880.563 -0.106139 0.0 !Mu0ChY98TRaw[Co4At3Ch2]
+879.514 -0.106028 0.0 !Mu0ChY99TRaw[Co4At3Ch3]
+896.148 -0.108041 0.0 !Mu0ChY100TRaw[Co4At3Ch4]
+893.439 -0.107707 0.0 !Mu0ChY101TRaw[Co4At3Ch5]
+892.231 -0.10757 0.0 !Mu0ChY102TRaw[Co4At3Ch6]
+896.756 -0.108105 0.0 !Mu0ChY103TRaw[Co4At3Ch7]
+908.766 -0.10959 0.0 !Mu0ChY104TRaw[Co4At3Ch8]
+903.356 -0.108916 0.0 !Mu0ChY105TRaw[Co4At3Ch9]
+916.719 -0.110544 0.0 !Mu0ChY106TRaw[Co4At3Ch10]
+912.113 -0.109981 0.0 !Mu0ChY107TRaw[Co4At3Ch11]
+916.451 -0.11051 0.0 !Mu0ChY108TRaw[Co4At3Ch12]
+915.868 -0.110421 0.0 !Mu0ChY109TRaw[Co4At3Ch13]
+911.388 -0.109894 0.0 !Mu0ChY110TRaw[Co4At3Ch14]
+916.911 -0.110572 0.0 !Mu0ChY111TRaw[Co4At3Ch15]
+918.844 -0.110803 0.0 !Mu0ChY112TRaw[Co4At3Ch16]
+893.651 -0.107535 0.0 !Mu0ChY113TRaw[Co4At4Ch1]
+901.081 -0.108466 0.0 !Mu0ChY114TRaw[Co4At4Ch2]
+900.586 -0.108438 0.0 !Mu0ChY115TRaw[Co4At4Ch3]
+906.547 -0.109158 0.0 !Mu0ChY116TRaw[Co4At4Ch4]
+918.22 -0.110566 0.0 !Mu0ChY117TRaw[Co4At4Ch5]
+911.401 -0.109757 0.0 !Mu0ChY118TRaw[Co4At4Ch6]
+931.26 -0.112167 0.0 !Mu0ChY119TRaw[Co4At4Ch7]
+923.034 -0.111146 0.0 !Mu0ChY120TRaw[Co4At4Ch8]
+933.197 -0.112407 0.0 !Mu0ChY121TRaw[Co4At4Ch9]
+932.718 -0.112337 0.0 !Mu0ChY122TRaw[Co4At4Ch10]
+934.415 -0.112539 0.0 !Mu0ChY123TRaw[Co4At4Ch11]
+937.954 -0.112978 0.0 !Mu0ChY124TRaw[Co4At4Ch12]
+932.468 -0.112316 0.0 !Mu0ChY125TRaw[Co4At4Ch13]
+931.414 -0.112192 0.0 !Mu0ChY126TRaw[Co4At4Ch14]
+928.457 -0.111821 0.0 !Mu0ChY127TRaw[Co4At4Ch15]
+931.38 -0.112162 0.0 !Mu0ChY128TRaw[Co4At4Ch16]
+931.243 -0.11232 0.0 !Mu1ChX1TRaw[Co1At1Ch1]
+945.084 -0.114015 0.0 !Mu1ChX2TRaw[Co1At1Ch2]
+947.562 -0.114341 0.0 !Mu1ChX3TRaw[Co1At1Ch3]
+958.911 -0.115712 0.0 !Mu1ChX4TRaw[Co1At1Ch4]
+959.274 -0.115744 0.0 !Mu1ChX5TRaw[Co1At1Ch5]
+961.121 -0.115962 0.0 !Mu1ChX6TRaw[Co1At1Ch6]
+974.613 -0.117589 0.0 !Mu1ChX7TRaw[Co1At1Ch7]
+969.703 -0.116998 0.0 !Mu1ChX8TRaw[Co1At1Ch8]
+973.909 -0.117498 0.0 !Mu1ChX9TRaw[Co1At1Ch9]
+982.972 -0.118577 0.0 !Mu1ChX10TRaw[Co1At1Ch10]
+979.25 -0.118143 0.0 !Mu1ChX11TRaw[Co1At1Ch11]
+978.727 -0.118071 0.0 !Mu1ChX12TRaw[Co1At1Ch12]
+990.788 -0.11954 0.0 !Mu1ChX13TRaw[Co1At1Ch13]
+991.407 -0.119597 0.0 !Mu1ChX14TRaw[Co1At1Ch14]
+988.337 -0.119236 0.0 !Mu1ChX15TRaw[Co1At1Ch15]
+1375.029 -0.119179 0.0 !Mu1ChX16TRaw[Co1At1Ch16]
+927.042 -0.111777 0.0 !Mu1ChX17TRaw[Co1At2Ch1]
+950.021 -0.114612 0.0 !Mu1ChX18TRaw[Co1At2Ch2]
+950.947 -0.114738 0.0 !Mu1ChX19TRaw[Co1At2Ch3]
+948.537 -0.114439 0.0 !Mu1ChX20TRaw[Co1At2Ch4]
+956.835 -0.115464 0.0 !Mu1ChX21TRaw[Co1At2Ch5]
+969.98 -0.117052 0.0 !Mu1ChX22TRaw[Co1At2Ch6]
+959.253 -0.115762 0.0 !Mu1ChX23TRaw[Co1At2Ch7]
+975.846 -0.117739 0.0 !Mu1ChX24TRaw[Co1At2Ch8]
+974.071 -0.117531 0.0 !Mu1ChX25TRaw[Co1At2Ch9]
+977.168 -0.117923 0.0 !Mu1ChX26TRaw[Co1At2Ch10]
+975.805 -0.117737 0.0 !Mu1ChX27TRaw[Co1At2Ch11]
+979.545 -0.11821 0.0 !Mu1ChX28TRaw[Co1At2Ch12]
+983.428 -0.118677 0.0 !Mu1ChX29TRaw[Co1At2Ch13]
+980.499 -0.118324 0.0 !Mu1ChX30TRaw[Co1At2Ch14]
+979.469 -0.118198 0.0 !Mu1ChX31TRaw[Co1At2Ch15]
+988.102 -0.119148 0.0 !Mu1ChX32TRaw[Co1At2Ch16]
+880.379 -0.106165 0.0 !Mu1ChX33TRaw[Co1At3Ch1]
+880.08 -0.10618 0.0 !Mu1ChX34TRaw[Co1At3Ch2]
+895.406 -0.108064 0.0 !Mu1ChX35TRaw[Co1At3Ch3]
+878.12 -0.105941 0.0 !Mu1ChX36TRaw[Co1At3Ch4]
+895.881 -0.108105 0.0 !Mu1ChX37TRaw[Co1At3Ch5]
+901.785 -0.108823 0.0 !Mu1ChX38TRaw[Co1At3Ch6]
+894.137 -0.107861 0.0 !Mu1ChX39TRaw[Co1At3Ch7]
+898.782 -0.10842 0.0 !Mu1ChX40TRaw[Co1At3Ch8]
+901.632 -0.108779 0.0 !Mu1ChX41TRaw[Co1At3Ch9]
+904.878 -0.108754 0.0 !Mu1ChX42TRaw[Co1At3Ch10]
+910.193 -0.109783 0.0 !Mu1ChX43TRaw[Co1At3Ch11]
+902.054 -0.108855 0.0 !Mu1ChX44TRaw[Co1At3Ch12]
+911.528 -0.110019 0.0 !Mu1ChX45TRaw[Co1At3Ch13]
+909.985 -0.109854 0.0 !Mu1ChX46TRaw[Co1At3Ch14]
+907.601 -0.109528 0.0 !Mu1ChX47TRaw[Co1At3Ch15]
+922.228 -0.110055 0.0 !Mu1ChX48TRaw[Co1At3Ch16]
+869.923 -0.104838 0.0 !Mu1ChX49TRaw[Co1At4Ch1]
+875.125 -0.105455 0.0 !Mu1ChX50TRaw[Co1At4Ch2]
+887.868 -0.107015 0.0 !Mu1ChX51TRaw[Co1At4Ch3]
+890.27 -0.107338 0.0 !Mu1ChX52TRaw[Co1At4Ch4]
+893.359 -0.107685 0.0 !Mu1ChX53TRaw[Co1At4Ch5]
+893.348 -0.107699 0.0 !Mu1ChX54TRaw[Co1At4Ch6]
+900.729 -0.10819 0.0 !Mu1ChX55TRaw[Co1At4Ch7]
+906.65 -0.108878 0.0 !Mu1ChX56TRaw[Co1At4Ch8]
+909.8 -0.1097 0.0 !Mu1ChX57TRaw[Co1At4Ch9]
+905.423 -0.10916 0.0 !Mu1ChX58TRaw[Co1At4Ch10]
+914.17 -0.110244 0.0 !Mu1ChX59TRaw[Co1At4Ch11]
+906.586 -0.109308 0.0 !Mu1ChX60TRaw[Co1At4Ch12]
+919.705 -0.110894 0.0 !Mu1ChX61TRaw[Co1At4Ch13]
+911.009 -0.109867 0.0 !Mu1ChX62TRaw[Co1At4Ch14]
+910.69 -0.109791 0.0 !Mu1ChX63TRaw[Co1At4Ch15]
+919.963 -0.110777 0.0 !Mu1ChX64TRaw[Co1At4Ch16]
+952.039 -0.114723 0.0 !Mu1ChX65TRaw[Co2At1Ch1]
+953.727 -0.114949 0.0 !Mu1ChX66TRaw[Co2At1Ch2]
+967.402 -0.116629 0.0 !Mu1ChX67TRaw[Co2At1Ch3]
+963.242 -0.116557 0.0 !Mu1ChX68TRaw[Co2At1Ch4]
+969.139 -0.116827 0.0 !Mu1ChX69TRaw[Co2At1Ch5]
+973.545 -0.117811 0.0 !Mu1ChX70TRaw[Co2At1Ch6]
+973.3 -0.117758 0.0 !Mu1ChX71TRaw[Co2At1Ch7]
+978.421 -0.118392 0.0 !Mu1ChX72TRaw[Co2At1Ch8]
+975.853 -0.118063 0.0 !Mu1ChX73TRaw[Co2At1Ch9]
+990.602 -0.119853 0.0 !Mu1ChX74TRaw[Co2At1Ch10]
+986.683 -0.119377 0.0 !Mu1ChX75TRaw[Co2At1Ch11]
+984.808 -0.119141 0.0 !Mu1ChX76TRaw[Co2At1Ch12]
+991.649 -0.119982 0.0 !Mu1ChX77TRaw[Co2At1Ch13]
+997.413 -0.120199 0.0 !Mu1ChX78TRaw[Co2At1Ch14]
+993.522 -0.1202 0.0 !Mu1ChX79TRaw[Co2At1Ch15]
+1382.854 -0.120722 0.0 !Mu1ChX80TRaw[Co2At1Ch16]
+973.769 -0.117775 0.0 !Mu1ChX81TRaw[Co2At2Ch1]
+975.739 -0.118024 0.0 !Mu1ChX82TRaw[Co2At2Ch2]
+984.702 -0.118652 0.0 !Mu1ChX83TRaw[Co2At2Ch3]
+998.209 -0.120307 0.0 !Mu1ChX84TRaw[Co2At2Ch4]
+993.886 -0.120215 0.0 !Mu1ChX85TRaw[Co2At2Ch5]
+1003.201 -0.121389 0.0 !Mu1ChX86TRaw[Co2At2Ch6]
+1004.641 -0.121554 0.0 !Mu1ChX87TRaw[Co2At2Ch7]
+996.555 -0.12057 0.0 !Mu1ChX88TRaw[Co2At2Ch8]
+1011.012 -0.122345 0.0 !Mu1ChX89TRaw[Co2At2Ch9]
+1013.335 -0.12261 0.0 !Mu1ChX90TRaw[Co2At2Ch10]
+1008.829 -0.122082 0.0 !Mu1ChX91TRaw[Co2At2Ch11]
+1015.054 -0.12282 0.0 !Mu1ChX92TRaw[Co2At2Ch12]
+1014.579 -0.12279 0.0 !Mu1ChX93TRaw[Co2At2Ch13]
+1017.346 -0.123127 0.0 !Mu1ChX94TRaw[Co2At2Ch14]
+1021.088 -0.123096 0.0 !Mu1ChX95TRaw[Co2At2Ch15]
+1005.091 -0.12163 0.0 !Mu1ChX96TRaw[Co2At2Ch16]
+889.567 -0.107613 0.0 !Mu1ChX97TRaw[Co2At3Ch1]
+887.661 -0.107373 0.0 !Mu1ChX98TRaw[Co2At3Ch2]
+891.391 -0.107838 0.0 !Mu1ChX99TRaw[Co2At3Ch3]
+902.766 -0.109224 0.0 !Mu1ChX100TRaw[Co2At3Ch4]
+902.54 -0.1092 0.0 !Mu1ChX101TRaw[Co2At3Ch5]
+907.648 -0.109791 0.0 !Mu1ChX102TRaw[Co2At3Ch6]
+903.145 -0.109268 0.0 !Mu1ChX103TRaw[Co2At3Ch7]
+918.818 -0.111151 0.0 !Mu1ChX104TRaw[Co2At3Ch8]
+920.016 -0.11128 0.0 !Mu1ChX105TRaw[Co2At3Ch9]
+921.413 -0.111467 0.0 !Mu1ChX106TRaw[Co2At3Ch10]
+926.201 -0.112035 0.0 !Mu1ChX107TRaw[Co2At3Ch11]
+921.77 -0.111519 0.0 !Mu1ChX108TRaw[Co2At3Ch12]
+922.63 -0.111616 0.0 !Mu1ChX109TRaw[Co2At3Ch13]
+914.413 -0.110627 0.0 !Mu1ChX110TRaw[Co2At3Ch14]
+916.972 -0.110941 0.0 !Mu1ChX111TRaw[Co2At3Ch15]
+923.713 -0.11176 0.0 !Mu1ChX112TRaw[Co2At3Ch16]
+897.837 -0.108476 0.0 !Mu1ChX113TRaw[Co2At4Ch1]
+898.652 -0.108567 0.0 !Mu1ChX114TRaw[Co2At4Ch2]
+905.902 -0.10946 0.0 !Mu1ChX115TRaw[Co2At4Ch3]
+911.452 -0.110136 0.0 !Mu1ChX116TRaw[Co2At4Ch4]
+926.396 -0.111977 0.0 !Mu1ChX117TRaw[Co2At4Ch5]
+920.897 -0.111304 0.0 !Mu1ChX118TRaw[Co2At4Ch6]
+933.101 -0.112781 0.0 !Mu1ChX119TRaw[Co2At4Ch7]
+915.617 -0.110659 0.0 !Mu1ChX120TRaw[Co2At4Ch8]
+921.125 -0.111325 0.0 !Mu1ChX121TRaw[Co2At4Ch9]
+928.617 -0.112226 0.0 !Mu1ChX122TRaw[Co2At4Ch10]
+929.597 -0.11236 0.0 !Mu1ChX123TRaw[Co2At4Ch11]
+924.845 -0.111775 0.0 !Mu1ChX124TRaw[Co2At4Ch12]
+922.311 -0.111483 0.0 !Mu1ChX125TRaw[Co2At4Ch13]
+928.291 -0.112193 0.0 !Mu1ChX126TRaw[Co2At4Ch14]
+931.58 -0.112614 0.0 !Mu1ChX127TRaw[Co2At4Ch15]
+925.581 -0.111864 0.0 !Mu1ChX128TRaw[Co2At4Ch16]
+932.035 -0.11282 0.0 !Mu1ChY1TRaw[Co3At1Ch1]
+933.495 -0.113022 0.0 !Mu1ChY2TRaw[Co3At1Ch2]
+944.411 -0.114361 0.0 !Mu1ChY3TRaw[Co3At1Ch3]
+948.375 -0.114834 0.0 !Mu1ChY4TRaw[Co3At1Ch4]
+950.778 -0.115122 0.0 !Mu1ChY5TRaw[Co3At1Ch5]
+954.172 -0.115533 0.0 !Mu1ChY6TRaw[Co3At1Ch6]
+957.549 -0.115938 0.0 !Mu1ChY7TRaw[Co3At1Ch7]
+947.562 -0.114726 0.0 !Mu1ChY8TRaw[Co3At1Ch8]
+954.965 -0.11562 0.0 !Mu1ChY9TRaw[Co3At1Ch9]
+965.207 -0.116854 0.0 !Mu1ChY10TRaw[Co3At1Ch10]
+961.189 -0.116368 0.0 !Mu1ChY11TRaw[Co3At1Ch11]
+968.97 -0.117327 0.0 !Mu1ChY12TRaw[Co3At1Ch12]
+969.302 -0.117358 0.0 !Mu1ChY13TRaw[Co3At1Ch13]
+964.945 -0.116827 0.0 !Mu1ChY14TRaw[Co3At1Ch14]
+966.214 -0.116981 0.0 !Mu1ChY15TRaw[Co3At1Ch15]
+963.966 -0.116717 0.0 !Mu1ChY16TRaw[Co3At1Ch16]
+965.888 -0.116883 0.0 !Mu1ChY17TRaw[Co3At2Ch1]
+967.684 -0.117128 0.0 !Mu1ChY18TRaw[Co3At2Ch2]
+972.15 -0.117665 0.0 !Mu1ChY19TRaw[Co3At2Ch3]
+972.745 -0.117743 0.0 !Mu1ChY20TRaw[Co3At2Ch4]
+984.112 -0.119146 0.0 !Mu1ChY21TRaw[Co3At2Ch5]
+980.877 -0.118747 0.0 !Mu1ChY22TRaw[Co3At2Ch6]
+450.0 -0.119189 0.0 !Mu1ChY23TRaw[Co3At2Ch7]
+990.666 -0.119964 0.0 !Mu1ChY24TRaw[Co3At2Ch8]
+992.259 -0.120158 0.0 !Mu1ChY25TRaw[Co3At2Ch9]
+992.41 -0.120176 0.0 !Mu1ChY26TRaw[Co3At2Ch10]
+996.766 -0.120728 0.0 !Mu1ChY27TRaw[Co3At2Ch11]
+991.746 -0.120113 0.0 !Mu1ChY28TRaw[Co3At2Ch12]
+993.587 -0.120339 0.0 !Mu1ChY29TRaw[Co3At2Ch13]
+985.064 -0.119308 0.0 !Mu1ChY30TRaw[Co3At2Ch14]
+991.596 -0.120108 0.0 !Mu1ChY31TRaw[Co3At2Ch15]
+986.445 -0.119515 0.0 !Mu1ChY32TRaw[Co3At2Ch16]
+881.012 -0.106691 0.0 !Mu1ChY33TRaw[Co3At3Ch1]
+886.766 -0.10745 0.0 !Mu1ChY34TRaw[Co3At3Ch2]
+882.204 -0.106848 0.0 !Mu1ChY35TRaw[Co3At3Ch3]
+891.854 -0.108037 0.0 !Mu1ChY36TRaw[Co3At3Ch4]
+850619310270.0 -103827000.0 0.0 !Mu1ChY37TRaw[Co3At3Ch5]
+902.417 -0.109433 0.0 !Mu1ChY38TRaw[Co3At3Ch6]
+901.585 -0.110242 0.0 !Mu1ChY39TRaw[Co3At3Ch7]
+903.595 -0.10944 0.0 !Mu1ChY40TRaw[Co3At3Ch8]
+891.657 -0.107957 0.0 !Mu1ChY41TRaw[Co3At3Ch9]
+903.952 -0.109521 0.0 !Mu1ChY42TRaw[Co3At3Ch10]
+896.803 -0.108623 0.0 !Mu1ChY43TRaw[Co3At3Ch11]
+905.625 -0.10969 0.0 !Mu1ChY44TRaw[Co3At3Ch12]
+908.281 -0.109989 0.0 !Mu1ChY45TRaw[Co3At3Ch13]
+902.33 -0.109312 0.0 !Mu1ChY46TRaw[Co3At3Ch14]
+907.41 -0.109844 0.0 !Mu1ChY47TRaw[Co3At3Ch15]
+902.089 -0.109257 0.0 !Mu1ChY48TRaw[Co3At3Ch16]
+884.479 -0.10696 0.0 !Mu1ChY49TRaw[Co3At4Ch1]
+883.474 -0.106852 0.0 !Mu1ChY50TRaw[Co3At4Ch2]
+879.998 -0.106436 0.0 !Mu1ChY51TRaw[Co3At4Ch3]
+893.146 -0.108049 0.0 !Mu1ChY52TRaw[Co3At4Ch4]
+898.884 -0.108781 0.0 !Mu1ChY53TRaw[Co3At4Ch5]
+900.108 -0.108923 0.0 !Mu1ChY54TRaw[Co3At4Ch6]
+900.099 -0.108922 0.0 !Mu1ChY55TRaw[Co3At4Ch7]
+900.287 -0.108949 0.0 !Mu1ChY56TRaw[Co3At4Ch8]
+912.19 -0.110395 0.0 !Mu1ChY57TRaw[Co3At4Ch9]
+911.3 -0.110294 0.0 !Mu1ChY58TRaw[Co3At4Ch10]
+906.773 -0.109746 0.0 !Mu1ChY59TRaw[Co3At4Ch11]
+909.678 -0.109802 0.0 !Mu1ChY60TRaw[Co3At4Ch12]
+906.734 -0.109742 0.0 !Mu1ChY61TRaw[Co3At4Ch13]
+914.732 -0.11072 0.0 !Mu1ChY62TRaw[Co3At4Ch14]
+916.102 -0.110879 0.0 !Mu1ChY63TRaw[Co3At4Ch15]
+917.148 -0.111037 0.0 !Mu1ChY64TRaw[Co3At4Ch16]
+946.855 -0.115194 0.0 !Mu1ChY65TRaw[Co4At1Ch1]
+953.644 -0.116053 0.0 !Mu1ChY66TRaw[Co4At1Ch2]
+959.75 -0.116788 0.0 !Mu1ChY67TRaw[Co4At1Ch3]
+963.24 -0.117211 0.0 !Mu1ChY68TRaw[Co4At1Ch4]
+966.608 -0.117617 0.0 !Mu1ChY69TRaw[Co4At1Ch5]
+974.806 -0.118609 0.0 !Mu1ChY70TRaw[Co4At1Ch6]
+970.229 -0.118053 0.0 !Mu1ChY71TRaw[Co4At1Ch7]
+978.318 -0.119038 0.0 !Mu1ChY72TRaw[Co4At1Ch8]
+979.408 -0.119163 0.0 !Mu1ChY73TRaw[Co4At1Ch9]
+982.639 -0.119552 0.0 !Mu1ChY74TRaw[Co4At1Ch10]
+984.456 -0.119777 0.0 !Mu1ChY75TRaw[Co4At1Ch11]
+981.379 -0.119391 0.0 !Mu1ChY76TRaw[Co4At1Ch12]
+984.651 -0.11981 0.0 !Mu1ChY77TRaw[Co4At1Ch13]
+982.31 -0.119505 0.0 !Mu1ChY78TRaw[Co4At1Ch14]
+983.007 -0.119601 0.0 !Mu1ChY79TRaw[Co4At1Ch15]
+988.01 -0.120194 0.0 !Mu1ChY80TRaw[Co4At1Ch16]
+943.199 -0.114646 0.0 !Mu1ChY81TRaw[Co4At2Ch1]
+951.261 -0.115676 0.0 !Mu1ChY82TRaw[Co4At2Ch2]
+950.217 -0.115551 0.0 !Mu1ChY83TRaw[Co4At2Ch3]
+957.193 -0.116392 0.0 !Mu1ChY84TRaw[Co4At2Ch4]
+956.711 -0.116344 0.0 !Mu1ChY85TRaw[Co4At2Ch5]
+966.907 -0.117589 0.0 !Mu1ChY86TRaw[Co4At2Ch6]
+967.784 -0.117699 0.0 !Mu1ChY87TRaw[Co4At2Ch7]
+974.973 -0.118567 0.0 !Mu1ChY88TRaw[Co4At2Ch8]
+975.931 -0.118705 0.0 !Mu1ChY89TRaw[Co4At2Ch9]
+968.629 -0.117807 0.0 !Mu1ChY90TRaw[Co4At2Ch10]
+973.17 -0.118376 0.0 !Mu1ChY91TRaw[Co4At2Ch11]
+981.206 -0.119333 0.0 !Mu1ChY92TRaw[Co4At2Ch12]
+981.863 -0.119429 0.0 !Mu1ChY93TRaw[Co4At2Ch13]
+974.832 -0.118576 0.0 !Mu1ChY94TRaw[Co4At2Ch14]
+978.651 -0.119031 0.0 !Mu1ChY95TRaw[Co4At2Ch15]
+989.899 -0.120471 0.0 !Mu1ChY96TRaw[Co4At2Ch16]
+872.47 -0.106136 0.0 !Mu1ChY97TRaw[Co4At3Ch1]
+871.244 -0.106 0.0 !Mu1ChY98TRaw[Co4At3Ch2]
+875.764 -0.106555 0.0 !Mu1ChY99TRaw[Co4At3Ch3]
+889.841 -0.108263 0.0 !Mu1ChY100TRaw[Co4At3Ch4]
+887.593 -0.10801 0.0 !Mu1ChY101TRaw[Co4At3Ch5]
+879.757 -0.107044 0.0 !Mu1ChY102TRaw[Co4At3Ch6]
+887.54 -0.108005 0.0 !Mu1ChY103TRaw[Co4At3Ch7]
+890.884 -0.108406 0.0 !Mu1ChY104TRaw[Co4At3Ch8]
+901.255 -0.109653 0.0 !Mu1ChY105TRaw[Co4At3Ch9]
+897.946 -0.10926 0.0 !Mu1ChY106TRaw[Co4At3Ch10]
+901.33 -0.10967 0.0 !Mu1ChY107TRaw[Co4At3Ch11]
+891.982 -0.108536 0.0 !Mu1ChY108TRaw[Co4At3Ch12]
+899.178 -0.109417 0.0 !Mu1ChY109TRaw[Co4At3Ch13]
+906.416 -0.110268 0.0 !Mu1ChY110TRaw[Co4At3Ch14]
+903.498 -0.109108 0.0 !Mu1ChY111TRaw[Co4At3Ch15]
+902.622 -0.109824 0.0 !Mu1ChY112TRaw[Co4At3Ch16]
+858.806 -0.104291 0.0 !Mu1ChY113TRaw[Co4At4Ch1]
+855.722 -0.103549 0.0 !Mu1ChY114TRaw[Co4At4Ch2]
+862.565 -0.104798 0.0 !Mu1ChY115TRaw[Co4At4Ch3]
+857.566 -0.10419 0.0 !Mu1ChY116TRaw[Co4At4Ch4]
+866.024 -0.105221 0.0 !Mu1ChY117TRaw[Co4At4Ch5]
+875.42 -0.106354 0.0 !Mu1ChY118TRaw[Co4At4Ch6]
+879.769 -0.1069 0.0 !Mu1ChY119TRaw[Co4At4Ch7]
+874.481 -0.106252 0.0 !Mu1ChY120TRaw[Co4At4Ch8]
+891.89 -0.108379 0.0 !Mu1ChY121TRaw[Co4At4Ch9]
+892.881 -0.108492 0.0 !Mu1ChY122TRaw[Co4At4Ch10]
+890.673 -0.108225 0.0 !Mu1ChY123TRaw[Co4At4Ch11]
+889.841 -0.108132 0.0 !Mu1ChY124TRaw[Co4At4Ch12]
+892.159 -0.108412 0.0 !Mu1ChY125TRaw[Co4At4Ch13]
+887.553 -0.10784 0.0 !Mu1ChY126TRaw[Co4At4Ch14]
+884.907 -0.107526 0.0 !Mu1ChY127TRaw[Co4At4Ch15]
+949.092 -0.121191 0.0 !Mu1ChY128TRaw[Co4At4Ch16]
+961.969 -0.113282 0.0 !Mu2ChX1TRaw[Co1At1Ch1]
+958.383 -0.112935 0.0 !Mu2ChX2TRaw[Co1At1Ch2]
+959.323 -0.113903 0.0 !Mu2ChX3TRaw[Co1At1Ch3]
+971.546 -0.11541 0.0 !Mu2ChX4TRaw[Co1At1Ch4]
+974.655 -0.114834 0.0 !Mu2ChX5TRaw[Co1At1Ch5]
+1003.683 -0.116968 0.0 !Mu2ChX6TRaw[Co1At1Ch6]
+989.279 -0.116144 0.0 !Mu2ChX7TRaw[Co1At1Ch7]
+1005.564 -0.116738 0.0 !Mu2ChX8TRaw[Co1At1Ch8]
+997.02 -0.115736 0.0 !Mu2ChX9TRaw[Co1At1Ch9]
+1009.567 -0.117191 0.0 !Mu2ChX10TRaw[Co1At1Ch10]
+1016.097 -0.117505 0.0 !Mu2ChX11TRaw[Co1At1Ch11]
+1010.396 -0.116868 0.0 !Mu2ChX12TRaw[Co1At1Ch12]
+1023.961 -0.117596 0.0 !Mu2ChX13TRaw[Co1At1Ch13]
+1021.425 -0.116864 0.0 !Mu2ChX14TRaw[Co1At1Ch14]
+1022.087 -0.116934 0.0 !Mu2ChX15TRaw[Co1At1Ch15]
+1404.789 -0.118078 0.0 !Mu2ChX16TRaw[Co1At1Ch16]
+967.642 -0.111042 0.0 !Mu2ChX17TRaw[Co1At2Ch1]
+983.495 -0.1129 0.0 !Mu2ChX18TRaw[Co1At2Ch2]
+979.424 -0.113239 0.0 !Mu2ChX19TRaw[Co1At2Ch3]
+977.956 -0.11311 0.0 !Mu2ChX20TRaw[Co1At2Ch4]
+985.742 -0.114433 0.0 !Mu2ChX21TRaw[Co1At2Ch5]
+984.648 -0.113893 0.0 !Mu2ChX22TRaw[Co1At2Ch6]
+982.48 -0.113604 0.0 !Mu2ChX23TRaw[Co1At2Ch7]
+987.397 -0.114596 0.0 !Mu2ChX24TRaw[Co1At2Ch8]
+970.925 -0.113523 0.0 !Mu2ChX25TRaw[Co1At2Ch9]
+975.832 -0.114529 0.0 !Mu2ChX26TRaw[Co1At2Ch10]
+976.316 -0.114587 0.0 !Mu2ChX27TRaw[Co1At2Ch11]
+968.817 -0.114127 0.0 !Mu2ChX28TRaw[Co1At2Ch12]
+972.791 -0.115049 0.0 !Mu2ChX29TRaw[Co1At2Ch13]
+976.306 -0.114577 0.0 !Mu2ChX30TRaw[Co1At2Ch14]
+967.35 -0.114801 0.0 !Mu2ChX31TRaw[Co1At2Ch15]
+1112.794 -0.114725 0.0 !Mu2ChX32TRaw[Co1At2Ch16]
+886.943 -0.106884 0.0 !Mu2ChX33TRaw[Co1At3Ch1]
+884.583 -0.106588 0.0 !Mu2ChX34TRaw[Co1At3Ch2]
+893.29 -0.10771 0.0 !Mu2ChX35TRaw[Co1At3Ch3]
+890.797 -0.10739 0.0 !Mu2ChX36TRaw[Co1At3Ch4]
+904.52 -0.109058 0.0 !Mu2ChX37TRaw[Co1At3Ch5]
+901.6 -0.108685 0.0 !Mu2ChX38TRaw[Co1At3Ch6]
+912.776 -0.109605 0.0 !Mu2ChX39TRaw[Co1At3Ch7]
+909.538 -0.109211 0.0 !Mu2ChX40TRaw[Co1At3Ch8]
+905.616 -0.109168 0.0 !Mu2ChX41TRaw[Co1At3Ch9]
+909.953 -0.109617 0.0 !Mu2ChX42TRaw[Co1At3Ch10]
+915.691 -0.1104 0.0 !Mu2ChX43TRaw[Co1At3Ch11]
+914.614 -0.110254 0.0 !Mu2ChX44TRaw[Co1At3Ch12]
+922.657 -0.111219 0.0 !Mu2ChX45TRaw[Co1At3Ch13]
+921.084 -0.111043 0.0 !Mu2ChX46TRaw[Co1At3Ch14]
+924.127 -0.111378 0.0 !Mu2ChX47TRaw[Co1At3Ch15]
+1314.501 -0.11089 0.0 !Mu2ChX48TRaw[Co1At3Ch16]
+855.885 -0.102956 0.0 !Mu2ChX49TRaw[Co1At4Ch1]
+865.811 -0.104191 0.0 !Mu2ChX50TRaw[Co1At4Ch2]
+875.413 -0.105362 0.0 !Mu2ChX51TRaw[Co1At4Ch3]
+869.6 -0.10464 0.0 !Mu2ChX52TRaw[Co1At4Ch4]
+878.692 -0.105723 0.0 !Mu2ChX53TRaw[Co1At4Ch5]
+878.801 -0.105755 0.0 !Mu2ChX54TRaw[Co1At4Ch6]
+880.829 -0.105984 0.0 !Mu2ChX55TRaw[Co1At4Ch7]
+888.51 -0.106931 0.0 !Mu2ChX56TRaw[Co1At4Ch8]
+897.44 -0.108024 0.0 !Mu2ChX57TRaw[Co1At4Ch9]
+903.488 -0.108307 0.0 !Mu2ChX58TRaw[Co1At4Ch10]
+891.54 -0.107279 0.0 !Mu2ChX59TRaw[Co1At4Ch11]
+901.749 -0.108543 0.0 !Mu2ChX60TRaw[Co1At4Ch12]
+903.111 -0.108721 0.0 !Mu2ChX61TRaw[Co1At4Ch13]
+902.871 -0.108665 0.0 !Mu2ChX62TRaw[Co1At4Ch14]
+899.187 -0.10824 0.0 !Mu2ChX63TRaw[Co1At4Ch15]
+1290.423 -0.107885 0.0 !Mu2ChX64TRaw[Co1At4Ch16]
+974.417 -0.117533 0.0 !Mu2ChX65TRaw[Co2At1Ch1]
+974.467 -0.117545 0.0 !Mu2ChX66TRaw[Co2At1Ch2]
+982.266 -0.118957 0.0 !Mu2ChX67TRaw[Co2At1Ch3]
+987.279 -0.119584 0.0 !Mu2ChX68TRaw[Co2At1Ch4]
+450.0 -0.119902 0.0 !Mu2ChX69TRaw[Co2At1Ch5]
+994.768 -0.12002 0.0 !Mu2ChX70TRaw[Co2At1Ch6]
+996.07 -0.120171 0.0 !Mu2ChX71TRaw[Co2At1Ch7]
+1001.148 -0.120802 0.0 !Mu2ChX72TRaw[Co2At1Ch8]
+990.627 -0.119977 0.0 !Mu2ChX73TRaw[Co2At1Ch9]
+1007.159 -0.12102 0.0 !Mu2ChX74TRaw[Co2At1Ch10]
+995.316 -0.12055 0.0 !Mu2ChX75TRaw[Co2At1Ch11]
+995.021 -0.12048 0.0 !Mu2ChX76TRaw[Co2At1Ch12]
+1004.692 -0.121688 0.0 !Mu2ChX77TRaw[Co2At1Ch13]
+1008.471 -0.122136 0.0 !Mu2ChX78TRaw[Co2At1Ch14]
+1011.105 -0.122472 0.0 !Mu2ChX79TRaw[Co2At1Ch15]
+1326.05 -0.121488 0.0 !Mu2ChX80TRaw[Co2At1Ch16]
+951.951 -0.115148 0.0 !Mu2ChX81TRaw[Co2At2Ch1]
+962.967 -0.116512 0.0 !Mu2ChX82TRaw[Co2At2Ch2]
+964.814 -0.116735 0.0 !Mu2ChX83TRaw[Co2At2Ch3]
+968.296 -0.117158 0.0 !Mu2ChX84TRaw[Co2At2Ch4]
+968.369 -0.117159 0.0 !Mu2ChX85TRaw[Co2At2Ch5]
+969.781 -0.117336 0.0 !Mu2ChX86TRaw[Co2At2Ch6]
+990.877 -0.118997 0.0 !Mu2ChX87TRaw[Co2At2Ch7]
+986.288 -0.118879 0.0 !Mu2ChX88TRaw[Co2At2Ch8]
+992.984 -0.120152 0.0 !Mu2ChX89TRaw[Co2At2Ch9]
+996.567 -0.120143 0.0 !Mu2ChX90TRaw[Co2At2Ch10]
+995.578 -0.120011 0.0 !Mu2ChX91TRaw[Co2At2Ch11]
+989.666 -0.118788 0.0 !Mu2ChX92TRaw[Co2At2Ch12]
+1002.901 -0.120614 0.0 !Mu2ChX93TRaw[Co2At2Ch13]
+1000.682 -0.12112 0.0 !Mu2ChX94TRaw[Co2At2Ch14]
+1005.506 -0.12123 0.0 !Mu2ChX95TRaw[Co2At2Ch15]
+994.062 -0.119394 0.0 !Mu2ChX96TRaw[Co2At2Ch16]
+903.468 -0.10895 0.0 !Mu2ChX97TRaw[Co2At3Ch1]
+920.18 -0.11099 0.0 !Mu2ChX98TRaw[Co2At3Ch2]
+919.46 -0.110483 0.0 !Mu2ChX99TRaw[Co2At3Ch3]
+916.305 -0.110494 0.0 !Mu2ChX100TRaw[Co2At3Ch4]
+925.516 -0.11163 0.0 !Mu2ChX101TRaw[Co2At3Ch5]
+924.994 -0.111573 0.0 !Mu2ChX102TRaw[Co2At3Ch6]
+926.844 -0.111368 0.0 !Mu2ChX103TRaw[Co2At3Ch7]
+927.713 -0.111888 0.0 !Mu2ChX104TRaw[Co2At3Ch8]
+934.246 -0.113122 0.0 !Mu2ChX105TRaw[Co2At3Ch9]
+942.1 -0.112764 0.0 !Mu2ChX106TRaw[Co2At3Ch10]
+939.807 -0.113373 0.0 !Mu2ChX107TRaw[Co2At3Ch11]
+938.544 -0.112797 0.0 !Mu2ChX108TRaw[Co2At3Ch12]
+938.298 -0.113176 0.0 !Mu2ChX109TRaw[Co2At3Ch13]
+941.18 -0.113973 0.0 !Mu2ChX110TRaw[Co2At3Ch14]
+941.929 -0.114066 0.0 !Mu2ChX111TRaw[Co2At3Ch15]
+948.461 -0.113973 0.0 !Mu2ChX112TRaw[Co2At3Ch16]
+911.72 -0.108961 0.0 !Mu2ChX113TRaw[Co2At4Ch1]
+916.448 -0.109531 0.0 !Mu2ChX114TRaw[Co2At4Ch2]
+913.525 -0.110461 0.0 !Mu2ChX115TRaw[Co2At4Ch3]
+916.767 -0.110414 0.0 !Mu2ChX116TRaw[Co2At4Ch4]
+932.449 -0.112323 0.0 !Mu2ChX117TRaw[Co2At4Ch5]
+935.405 -0.11267 0.0 !Mu2ChX118TRaw[Co2At4Ch6]
+951.71 -0.113333 0.0 !Mu2ChX119TRaw[Co2At4Ch7]
+947.484 -0.113698 0.0 !Mu2ChX120TRaw[Co2At4Ch8]
+940.04 -0.113666 0.0 !Mu2ChX121TRaw[Co2At4Ch9]
+955.99 -0.114745 0.0 !Mu2ChX122TRaw[Co2At4Ch10]
+950.863 -0.113673 0.0 !Mu2ChX123TRaw[Co2At4Ch11]
+957.151 -0.11443 0.0 !Mu2ChX124TRaw[Co2At4Ch12]
+939.375 -0.113174 0.0 !Mu2ChX125TRaw[Co2At4Ch13]
+935.68 -0.113143 0.0 !Mu2ChX126TRaw[Co2At4Ch14]
+947.829 -0.114176 0.0 !Mu2ChX127TRaw[Co2At4Ch15]
+954.772 -0.114186 0.0 !Mu2ChX128TRaw[Co2At4Ch16]
+986.809 -0.119525 0.0 !Mu2ChY1TRaw[Co3At1Ch1]
+989.707 -0.119903 0.0 !Mu2ChY2TRaw[Co3At1Ch2]
+988.424 -0.119776 0.0 !Mu2ChY3TRaw[Co3At1Ch3]
+994.772 -0.120524 0.0 !Mu2ChY4TRaw[Co3At1Ch4]
+1000.112 -0.121165 0.0 !Mu2ChY5TRaw[Co3At1Ch5]
+998.216 -0.120947 0.0 !Mu2ChY6TRaw[Co3At1Ch6]
+1003.137 -0.121526 0.0 !Mu2ChY7TRaw[Co3At1Ch7]
+1010.151 -0.122366 0.0 !Mu2ChY8TRaw[Co3At1Ch8]
+1011.59 -0.122539 0.0 !Mu2ChY9TRaw[Co3At1Ch9]
+1003.181 -0.121307 0.0 !Mu2ChY10TRaw[Co3At1Ch10]
+1009.494 -0.122275 0.0 !Mu2ChY11TRaw[Co3At1Ch11]
+1014.568 -0.122898 0.0 !Mu2ChY12TRaw[Co3At1Ch12]
+1016.416 -0.12312 0.0 !Mu2ChY13TRaw[Co3At1Ch13]
+1021.48 -0.123746 0.0 !Mu2ChY14TRaw[Co3At1Ch14]
+1020.595 -0.123621 0.0 !Mu2ChY15TRaw[Co3At1Ch15]
+1025.592 -0.123744 0.0 !Mu2ChY16TRaw[Co3At1Ch16]
+939.197 -0.113632 0.0 !Mu2ChY17TRaw[Co3At2Ch1]
+938.486 -0.11359 0.0 !Mu2ChY18TRaw[Co3At2Ch2]
+938.117 -0.113546 0.0 !Mu2ChY19TRaw[Co3At2Ch3]
+937.753 -0.113526 0.0 !Mu2ChY20TRaw[Co3At2Ch4]
+952.829 -0.115367 0.0 !Mu2ChY21TRaw[Co3At2Ch5]
+968.723 -0.117305 0.0 !Mu2ChY22TRaw[Co3At2Ch6]
+964.707 -0.11682 0.0 !Mu2ChY23TRaw[Co3At2Ch7]
+959.632 -0.116216 0.0 !Mu2ChY24TRaw[Co3At2Ch8]
+975.259 -0.118134 0.0 !Mu2ChY25TRaw[Co3At2Ch9]
+977.951 -0.118446 0.0 !Mu2ChY26TRaw[Co3At2Ch10]
+975.198 -0.117858 0.0 !Mu2ChY27TRaw[Co3At2Ch11]
+981.828 -0.11895 0.0 !Mu2ChY28TRaw[Co3At2Ch12]
+976.046 -0.118238 0.0 !Mu2ChY29TRaw[Co3At2Ch13]
+977.812 -0.118468 0.0 !Mu2ChY30TRaw[Co3At2Ch14]
+976.59 -0.118337 0.0 !Mu2ChY31TRaw[Co3At2Ch15]
+964.767 -0.116905 0.0 !Mu2ChY32TRaw[Co3At2Ch16]
+869.429 -0.105393 0.0 !Mu2ChY33TRaw[Co3At3Ch1]
+876.222 -0.106206 0.0 !Mu2ChY34TRaw[Co3At3Ch2]
+892.019 -0.107711 0.0 !Mu2ChY35TRaw[Co3At3Ch3]
+893.32 -0.10786 0.0 !Mu2ChY36TRaw[Co3At3Ch4]
+893.254 -0.108297 0.0 !Mu2ChY37TRaw[Co3At3Ch5]
+887.737 -0.107628 0.0 !Mu2ChY38TRaw[Co3At3Ch6]
+903.996 -0.109574 0.0 !Mu2ChY39TRaw[Co3At3Ch7]
+902.76 -0.109401 0.0 !Mu2ChY40TRaw[Co3At3Ch8]
+905.554 -0.109756 0.0 !Mu2ChY41TRaw[Co3At3Ch9]
+910.354 -0.110304 0.0 !Mu2ChY42TRaw[Co3At3Ch10]
+906.017 -0.10979 0.0 !Mu2ChY43TRaw[Co3At3Ch11]
+909.731 -0.110231 0.0 !Mu2ChY44TRaw[Co3At3Ch12]
+912.223 -0.110532 0.0 !Mu2ChY45TRaw[Co3At3Ch13]
+915.291 -0.110907 0.0 !Mu2ChY46TRaw[Co3At3Ch14]
+919.13 -0.111371 0.0 !Mu2ChY47TRaw[Co3At3Ch15]
+914.361 -0.110791 0.0 !Mu2ChY48TRaw[Co3At3Ch16]
+892.707 -0.108016 0.0 !Mu2ChY49TRaw[Co3At4Ch1]
+901.908 -0.109155 0.0 !Mu2ChY50TRaw[Co3At4Ch2]
+899.294 -0.108834 0.0 !Mu2ChY51TRaw[Co3At4Ch3]
+912.773 -0.110471 0.0 !Mu2ChY52TRaw[Co3At4Ch4]
+905.427 -0.109622 0.0 !Mu2ChY53TRaw[Co3At4Ch5]
+914.293 -0.110708 0.0 !Mu2ChY54TRaw[Co3At4Ch6]
+917.644 -0.111116 0.0 !Mu2ChY55TRaw[Co3At4Ch7]
+913.315 -0.11061 0.0 !Mu2ChY56TRaw[Co3At4Ch8]
+926.108 -0.11216 0.0 !Mu2ChY57TRaw[Co3At4Ch9]
+917.422 -0.111079 0.0 !Mu2ChY58TRaw[Co3At4Ch10]
+919.823 -0.111393 0.0 !Mu2ChY59TRaw[Co3At4Ch11]
+923.686 -0.11168 0.0 !Mu2ChY60TRaw[Co3At4Ch12]
+939.831 -0.11386 0.0 !Mu2ChY61TRaw[Co3At4Ch13]
+928.854 -0.112068 0.0 !Mu2ChY62TRaw[Co3At4Ch14]
+921.381 -0.111623 0.0 !Mu2ChY63TRaw[Co3At4Ch15]
+929.377 -0.112593 0.0 !Mu2ChY64TRaw[Co3At4Ch16]
+925.209 -0.111864 0.0 !Mu2ChY65TRaw[Co4At1Ch1]
+944.461 -0.114242 0.0 !Mu2ChY66TRaw[Co4At1Ch2]
+948.829 -0.114763 0.0 !Mu2ChY67TRaw[Co4At1Ch3]
+946.46 -0.114477 0.0 !Mu2ChY68TRaw[Co4At1Ch4]
+972.881 -0.117701 0.0 !Mu2ChY69TRaw[Co4At1Ch5]
+960.964 -0.116242 0.0 !Mu2ChY70TRaw[Co4At1Ch6]
+968.396 -0.117144 0.0 !Mu2ChY71TRaw[Co4At1Ch7]
+965.324 -0.116783 0.0 !Mu2ChY72TRaw[Co4At1Ch8]
+956.836 -0.115747 0.0 !Mu2ChY73TRaw[Co4At1Ch9]
+958.888 -0.115989 0.0 !Mu2ChY74TRaw[Co4At1Ch10]
+965.259 -0.116762 0.0 !Mu2ChY75TRaw[Co4At1Ch11]
+978.071 -0.118324 0.0 !Mu2ChY76TRaw[Co4At1Ch12]
+974.474 -0.117892 0.0 !Mu2ChY77TRaw[Co4At1Ch13]
+977.064 -0.118194 0.0 !Mu2ChY78TRaw[Co4At1Ch14]
+967.826 -0.117092 0.0 !Mu2ChY79TRaw[Co4At1Ch15]
+969.895 -0.117343 0.0 !Mu2ChY80TRaw[Co4At1Ch16]
+945.396 -0.114246 0.0 !Mu2ChY81TRaw[Co4At2Ch1]
+939.845 -0.113582 0.0 !Mu2ChY82TRaw[Co4At2Ch2]
+951.951 -0.115097 0.0 !Mu2ChY83TRaw[Co4At2Ch3]
+947.601 -0.114574 0.0 !Mu2ChY84TRaw[Co4At2Ch4]
+956.462 -0.115653 0.0 !Mu2ChY85TRaw[Co4At2Ch5]
+966.795 -0.11692 0.0 !Mu2ChY86TRaw[Co4At2Ch6]
+965.068 -0.116695 0.0 !Mu2ChY87TRaw[Co4At2Ch7]
+970.746 -0.117388 0.0 !Mu2ChY88TRaw[Co4At2Ch8]
+973.531 -0.117739 0.0 !Mu2ChY89TRaw[Co4At2Ch9]
+975.469 -0.11797 0.0 !Mu2ChY90TRaw[Co4At2Ch10]
+979.918 -0.118525 0.0 !Mu2ChY91TRaw[Co4At2Ch11]
+970.565 -0.117371 0.0 !Mu2ChY92TRaw[Co4At2Ch12]
+978.32 -0.118331 0.0 !Mu2ChY93TRaw[Co4At2Ch13]
+977.975 -0.118283 0.0 !Mu2ChY94TRaw[Co4At2Ch14]
+985.51 -0.119174 0.0 !Mu2ChY95TRaw[Co4At2Ch15]
+990.075 -0.119806 0.0 !Mu2ChY96TRaw[Co4At2Ch16]
+898.373 -0.108639 0.0 !Mu2ChY97TRaw[Co4At3Ch1]
+894.37 -0.108189 0.0 !Mu2ChY98TRaw[Co4At3Ch2]
+904.896 -0.109474 0.0 !Mu2ChY99TRaw[Co4At3Ch3]
+903.57 -0.109308 0.0 !Mu2ChY100TRaw[Co4At3Ch4]
+917.463 -0.110997 0.0 !Mu2ChY101TRaw[Co4At3Ch5]
+925.187 -0.111938 0.0 !Mu2ChY102TRaw[Co4At3Ch6]
+915.403 -0.110746 0.0 !Mu2ChY103TRaw[Co4At3Ch7]
+931.348 -0.112691 0.0 !Mu2ChY104TRaw[Co4At3Ch8]
+925.85 -0.112025 0.0 !Mu2ChY105TRaw[Co4At3Ch9]
+921.698 -0.111507 0.0 !Mu2ChY106TRaw[Co4At3Ch10]
+922.879 -0.111663 0.0 !Mu2ChY107TRaw[Co4At3Ch11]
+922.629 -0.111623 0.0 !Mu2ChY108TRaw[Co4At3Ch12]
+926.153 -0.112066 0.0 !Mu2ChY109TRaw[Co4At3Ch13]
+926.883 -0.11214 0.0 !Mu2ChY110TRaw[Co4At3Ch14]
+923.148 -0.111703 0.0 !Mu2ChY111TRaw[Co4At3Ch15]
+913.683 -0.110525 0.0 !Mu2ChY112TRaw[Co4At3Ch16]
+853.746 -0.102981 0.0 !Mu2ChY113TRaw[Co4At4Ch1]
+869.715 -0.104976 0.0 !Mu2ChY114TRaw[Co4At4Ch2]
+877.625 -0.105936 0.0 !Mu2ChY115TRaw[Co4At4Ch3]
+876.055 -0.10575 0.0 !Mu2ChY116TRaw[Co4At4Ch4]
+884.136 -0.106741 0.0 !Mu2ChY117TRaw[Co4At4Ch5]
+880.455 -0.10628 0.0 !Mu2ChY118TRaw[Co4At4Ch6]
+892.866 -0.107805 0.0 !Mu2ChY119TRaw[Co4At4Ch7]
+894.388 -0.107966 0.0 !Mu2ChY120TRaw[Co4At4Ch8]
+884.377 -0.106759 0.0 !Mu2ChY121TRaw[Co4At4Ch9]
+897.709 -0.108381 0.0 !Mu2ChY122TRaw[Co4At4Ch10]
+896.178 -0.108195 0.0 !Mu2ChY123TRaw[Co4At4Ch11]
+1336.153 -0.108195 0.0 !Mu2ChY124TRaw[Co4At4Ch12]
+898.806 -0.108519 0.0 !Mu2ChY125TRaw[Co4At4Ch13]
+899.754 -0.10863 0.0 !Mu2ChY126TRaw[Co4At4Ch14]
+900.898 -0.108768 0.0 !Mu2ChY127TRaw[Co4At4Ch15]
+897.019 -0.108297 0.0 !Mu2ChY128TRaw[Co4At4Ch16]
+937.706 -0.113591 0.0 !Mu3ChX1TRaw[Co1At1Ch1]
+951.022 -0.115254 0.0 !Mu3ChX2TRaw[Co1At1Ch2]
+955.557 -0.115822 0.0 !Mu3ChX3TRaw[Co1At1Ch3]
+957.459 -0.116042 0.0 !Mu3ChX4TRaw[Co1At1Ch4]
+949.588 -0.115096 0.0 !Mu3ChX5TRaw[Co1At1Ch5]
+964.137 -0.11686 0.0 !Mu3ChX6TRaw[Co1At1Ch6]
+968.553 -0.117385 0.0 !Mu3ChX7TRaw[Co1At1Ch7]
+973.749 -0.118019 0.0 !Mu3ChX8TRaw[Co1At1Ch8]
+971.88 -0.117779 0.0 !Mu3ChX9TRaw[Co1At1Ch9]
+969.707 -0.117496 0.0 !Mu3ChX10TRaw[Co1At1Ch10]
+972.087 -0.117795 0.0 !Mu3ChX11TRaw[Co1At1Ch11]
+984.307 -0.119273 0.0 !Mu3ChX12TRaw[Co1At1Ch12]
+974.064 -0.118031 0.0 !Mu3ChX13TRaw[Co1At1Ch13]
+984.118 -0.118805 0.0 !Mu3ChX14TRaw[Co1At1Ch14]
+981.761 -0.118524 0.0 !Mu3ChX15TRaw[Co1At1Ch15]
+1355.602 -0.119127 0.0 !Mu3ChX16TRaw[Co1At1Ch16]
+966.58 -0.117029 0.0 !Mu3ChX17TRaw[Co1At2Ch1]
+962.788 -0.116582 0.0 !Mu3ChX18TRaw[Co1At2Ch2]
+981.303 -0.11886 0.0 !Mu3ChX19TRaw[Co1At2Ch3]
+977.619 -0.118386 0.0 !Mu3ChX20TRaw[Co1At2Ch4]
+984.275 -0.119229 0.0 !Mu3ChX21TRaw[Co1At2Ch5]
+991.6 -0.120114 0.0 !Mu3ChX22TRaw[Co1At2Ch6]
+984.029 -0.119177 0.0 !Mu3ChX23TRaw[Co1At2Ch7]
+988.571 -0.119693 0.0 !Mu3ChX24TRaw[Co1At2Ch8]
+986.236 -0.119405 0.0 !Mu3ChX25TRaw[Co1At2Ch9]
+987.105 -0.119523 0.0 !Mu3ChX26TRaw[Co1At2Ch10]
+1000.177 -0.12115 0.0 !Mu3ChX27TRaw[Co1At2Ch11]
+996.481 -0.120628 0.0 !Mu3ChX28TRaw[Co1At2Ch12]
+1006.483 -0.121885 0.0 !Mu3ChX29TRaw[Co1At2Ch13]
+999.637 -0.121035 0.0 !Mu3ChX30TRaw[Co1At2Ch14]
+1001.415 -0.121233 0.0 !Mu3ChX31TRaw[Co1At2Ch15]
+996.052 -0.120654 0.0 !Mu3ChX32TRaw[Co1At2Ch16]
+897.362 -0.108693 0.0 !Mu3ChX33TRaw[Co1At3Ch1]
+903.544 -0.109485 0.0 !Mu3ChX34TRaw[Co1At3Ch2]
+911.3 -0.110421 0.0 !Mu3ChX35TRaw[Co1At3Ch3]
+904.196 -0.109588 0.0 !Mu3ChX36TRaw[Co1At3Ch4]
+910.234 -0.110301 0.0 !Mu3ChX37TRaw[Co1At3Ch5]
+918.604 -0.111327 0.0 !Mu3ChX38TRaw[Co1At3Ch6]
+920.229 -0.111495 0.0 !Mu3ChX39TRaw[Co1At3Ch7]
+928.519 -0.112521 0.0 !Mu3ChX40TRaw[Co1At3Ch8]
+939.957 -0.11347 0.0 !Mu3ChX41TRaw[Co1At3Ch9]
+930.046 -0.112717 0.0 !Mu3ChX42TRaw[Co1At3Ch10]
+927.244 -0.112335 0.0 !Mu3ChX43TRaw[Co1At3Ch11]
+450.0 -0.112964 0.0 !Mu3ChX44TRaw[Co1At3Ch12]
+934.478 -0.113245 0.0 !Mu3ChX45TRaw[Co1At3Ch13]
+928.905 -0.11258 0.0 !Mu3ChX46TRaw[Co1At3Ch14]
+936.312 -0.113476 0.0 !Mu3ChX47TRaw[Co1At3Ch15]
+939.273 -0.113256 0.0 !Mu3ChX48TRaw[Co1At3Ch16]
+865.36 -0.104661 0.0 !Mu3ChX49TRaw[Co1At4Ch1]
+865.371 -0.104634 0.0 !Mu3ChX50TRaw[Co1At4Ch2]
+877.555 -0.106155 0.0 !Mu3ChX51TRaw[Co1At4Ch3]
+887.444 -0.107364 0.0 !Mu3ChX52TRaw[Co1At4Ch4]
+887.74 -0.107368 0.0 !Mu3ChX53TRaw[Co1At4Ch5]
+883.821 -0.106861 0.0 !Mu3ChX54TRaw[Co1At4Ch6]
+896.087 -0.108382 0.0 !Mu3ChX55TRaw[Co1At4Ch7]
+902.558 -0.108733 0.0 !Mu3ChX56TRaw[Co1At4Ch8]
+896.518 -0.10844 0.0 !Mu3ChX57TRaw[Co1At4Ch9]
+902.089 -0.10908 0.0 !Mu3ChX58TRaw[Co1At4Ch10]
+897.546 -0.108538 0.0 !Mu3ChX59TRaw[Co1At4Ch11]
+897.158 -0.10849 0.0 !Mu3ChX60TRaw[Co1At4Ch12]
+903.89 -0.109312 0.0 !Mu3ChX61TRaw[Co1At4Ch13]
+904.833 -0.109445 0.0 !Mu3ChX62TRaw[Co1At4Ch14]
+891.475 -0.107803 0.0 !Mu3ChX63TRaw[Co1At4Ch15]
+913.702 -0.108862 0.0 !Mu3ChX64TRaw[Co1At4Ch16]
+983.39 -0.119126 0.0 !Mu3ChX65TRaw[Co2At1Ch1]
+988.575 -0.119789 0.0 !Mu3ChX66TRaw[Co2At1Ch2]
+988.908 -0.119851 0.0 !Mu3ChX67TRaw[Co2At1Ch3]
+1004.692 -0.121753 0.0 !Mu3ChX68TRaw[Co2At1Ch4]
+1005.147 -0.121824 0.0 !Mu3ChX69TRaw[Co2At1Ch5]
+1002.098 -0.121446 0.0 !Mu3ChX70TRaw[Co2At1Ch6]
+1005.767 -0.121893 0.0 !Mu3ChX71TRaw[Co2At1Ch7]
+1009.556 -0.122347 0.0 !Mu3ChX72TRaw[Co2At1Ch8]
+1005.62 -0.121883 0.0 !Mu3ChX73TRaw[Co2At1Ch9]
+1012.529 -0.122684 0.0 !Mu3ChX74TRaw[Co2At1Ch10]
+1020.904 -0.123722 0.0 !Mu3ChX75TRaw[Co2At1Ch11]
+1030.908 -0.124938 0.0 !Mu3ChX76TRaw[Co2At1Ch12]
+1012.471 -0.122709 0.0 !Mu3ChX77TRaw[Co2At1Ch13]
+1012.229 -0.12265 0.0 !Mu3ChX78TRaw[Co2At1Ch14]
+1023.673 -0.124061 0.0 !Mu3ChX79TRaw[Co2At1Ch15]
+1391.931 -0.123313 0.0 !Mu3ChX80TRaw[Co2At1Ch16]
+940.841 -0.11381 0.0 !Mu3ChX81TRaw[Co2At2Ch1]
+946.588 -0.114558 0.0 !Mu3ChX82TRaw[Co2At2Ch2]
+950.194 -0.114986 0.0 !Mu3ChX83TRaw[Co2At2Ch3]
+948.521 -0.114804 0.0 !Mu3ChX84TRaw[Co2At2Ch4]
+963.462 -0.116619 0.0 !Mu3ChX85TRaw[Co2At2Ch5]
+966.195 -0.11693 0.0 !Mu3ChX86TRaw[Co2At2Ch6]
+960.94 -0.116299 0.0 !Mu3ChX87TRaw[Co2At2Ch7]
+965.913 -0.116863 0.0 !Mu3ChX88TRaw[Co2At2Ch8]
+976.593 -0.118161 0.0 !Mu3ChX89TRaw[Co2At2Ch9]
+973.009 -0.117687 0.0 !Mu3ChX90TRaw[Co2At2Ch10]
+977.734 -0.118304 0.0 !Mu3ChX91TRaw[Co2At2Ch11]
+985.665 -0.119256 0.0 !Mu3ChX92TRaw[Co2At2Ch12]
+985.146 -0.119241 0.0 !Mu3ChX93TRaw[Co2At2Ch13]
+985.012 -0.119186 0.0 !Mu3ChX94TRaw[Co2At2Ch14]
+982.369 -0.118879 0.0 !Mu3ChX95TRaw[Co2At2Ch15]
+979.215 -0.118278 0.0 !Mu3ChX96TRaw[Co2At2Ch16]
+860.4 -0.104124 0.0 !Mu3ChX97TRaw[Co2At3Ch1]
+865.127 -0.104728 0.0 !Mu3ChX98TRaw[Co2At3Ch2]
+865.22 -0.104753 0.0 !Mu3ChX99TRaw[Co2At3Ch3]
+871.419 -0.105492 0.0 !Mu3ChX100TRaw[Co2At3Ch4]
+881.125 -0.106693 0.0 !Mu3ChX101TRaw[Co2At3Ch5]
+876.452 -0.10614 0.0 !Mu3ChX102TRaw[Co2At3Ch6]
+881.321 -0.106708 0.0 !Mu3ChX103TRaw[Co2At3Ch7]
+880.324 -0.106567 0.0 !Mu3ChX104TRaw[Co2At3Ch8]
+889.289 -0.107671 0.0 !Mu3ChX105TRaw[Co2At3Ch9]
+893.959 -0.108216 0.0 !Mu3ChX106TRaw[Co2At3Ch10]
+885.863 -0.107225 0.0 !Mu3ChX107TRaw[Co2At3Ch11]
+896.508 -0.108561 0.0 !Mu3ChX108TRaw[Co2At3Ch12]
+899.197 -0.108609 0.0 !Mu3ChX109TRaw[Co2At3Ch13]
+893.469 -0.108191 0.0 !Mu3ChX110TRaw[Co2At3Ch14]
+902.937 -0.109337 0.0 !Mu3ChX111TRaw[Co2At3Ch15]
+903.612 -0.108709 0.0 !Mu3ChX112TRaw[Co2At3Ch16]
+857.827 -0.103629 0.0 !Mu3ChX113TRaw[Co2At4Ch1]
+867.282 -0.10481 0.0 !Mu3ChX114TRaw[Co2At4Ch2]
+867.634 -0.1049 0.0 !Mu3ChX115TRaw[Co2At4Ch3]
+874.129 -0.105647 0.0 !Mu3ChX116TRaw[Co2At4Ch4]
+1490.122 -0.126949 0.0 !Mu3ChX117TRaw[Co2At4Ch5]
+878.327 -0.106145 0.0 !Mu3ChX118TRaw[Co2At4Ch6]
+885.367 -0.107055 0.0 !Mu3ChX119TRaw[Co2At4Ch7]
+883.353 -0.10675 0.0 !Mu3ChX120TRaw[Co2At4Ch8]
+886.421 -0.107137 0.0 !Mu3ChX121TRaw[Co2At4Ch9]
+890.231 -0.107599 0.0 !Mu3ChX122TRaw[Co2At4Ch10]
+886.118 -0.107093 0.0 !Mu3ChX123TRaw[Co2At4Ch11]
+895.704 -0.108252 0.0 !Mu3ChX124TRaw[Co2At4Ch12]
+889.898 -0.107522 0.0 !Mu3ChX125TRaw[Co2At4Ch13]
+896.281 -0.108336 0.0 !Mu3ChX126TRaw[Co2At4Ch14]
+883.682 -0.106793 0.0 !Mu3ChX127TRaw[Co2At4Ch15]
+895.669 -0.107896 0.0 !Mu3ChX128TRaw[Co2At4Ch16]
+918.076 -0.11121 0.0 !Mu3ChY1TRaw[Co3At1Ch1]
+925.701 -0.112154 0.0 !Mu3ChY2TRaw[Co3At1Ch2]
+934.638 -0.113241 0.0 !Mu3ChY3TRaw[Co3At1Ch3]
+944.313 -0.114409 0.0 !Mu3ChY4TRaw[Co3At1Ch4]
+941.286 -0.114032 0.0 !Mu3ChY5TRaw[Co3At1Ch5]
+949.429 -0.114994 0.0 !Mu3ChY6TRaw[Co3At1Ch6]
+953.873 -0.115552 0.0 !Mu3ChY7TRaw[Co3At1Ch7]
+954.095 -0.115546 0.0 !Mu3ChY8TRaw[Co3At1Ch8]
+961.819 -0.116506 0.0 !Mu3ChY9TRaw[Co3At1Ch9]
+966.084 -0.117006 0.0 !Mu3ChY10TRaw[Co3At1Ch10]
+968.231 -0.117251 0.0 !Mu3ChY11TRaw[Co3At1Ch11]
+967.098 -0.117093 0.0 !Mu3ChY12TRaw[Co3At1Ch12]
+976.51 -0.118272 0.0 !Mu3ChY13TRaw[Co3At1Ch13]
+982.999 -0.119048 0.0 !Mu3ChY14TRaw[Co3At1Ch14]
+975.2 -0.118075 0.0 !Mu3ChY15TRaw[Co3At1Ch15]
+982.438 -0.118941 0.0 !Mu3ChY16TRaw[Co3At1Ch16]
+968.582 -0.117174 0.0 !Mu3ChY17TRaw[Co3At2Ch1]
+981.596 -0.118815 0.0 !Mu3ChY18TRaw[Co3At2Ch2]
+982.535 -0.118931 0.0 !Mu3ChY19TRaw[Co3At2Ch3]
+988.071 -0.119638 0.0 !Mu3ChY20TRaw[Co3At2Ch4]
+993.73 -0.12034 0.0 !Mu3ChY21TRaw[Co3At2Ch5]
+1003.541 -0.121551 0.0 !Mu3ChY22TRaw[Co3At2Ch6]
+998.968 -0.120998 0.0 !Mu3ChY23TRaw[Co3At2Ch7]
+993.315 -0.120321 0.0 !Mu3ChY24TRaw[Co3At2Ch8]
+999.364 -0.121073 0.0 !Mu3ChY25TRaw[Co3At2Ch9]
+1005.572 -0.121839 0.0 !Mu3ChY26TRaw[Co3At2Ch10]
+1005.81 -0.121856 0.0 !Mu3ChY27TRaw[Co3At2Ch11]
+1012.089 -0.122649 0.0 !Mu3ChY28TRaw[Co3At2Ch12]
+1015.153 -0.12302 0.0 !Mu3ChY29TRaw[Co3At2Ch13]
+1003.98 -0.121668 0.0 !Mu3ChY30TRaw[Co3At2Ch14]
+1013.163 -0.122794 0.0 !Mu3ChY31TRaw[Co3At2Ch15]
+1013.882 -0.122927 0.0 !Mu3ChY32TRaw[Co3At2Ch16]
+869.852 -0.105446 0.0 !Mu3ChY33TRaw[Co3At3Ch1]
+866.645 -0.105092 0.0 !Mu3ChY34TRaw[Co3At3Ch2]
+871.811 -0.10573 0.0 !Mu3ChY35TRaw[Co3At3Ch3]
+868.809 -0.105345 0.0 !Mu3ChY36TRaw[Co3At3Ch4]
+880.462 -0.106744 0.0 !Mu3ChY37TRaw[Co3At3Ch5]
+879.67 -0.106654 0.0 !Mu3ChY38TRaw[Co3At3Ch6]
+885.22 -0.107294 0.0 !Mu3ChY39TRaw[Co3At3Ch7]
+893.863 -0.108361 0.0 !Mu3ChY40TRaw[Co3At3Ch8]
+891.003 -0.10799 0.0 !Mu3ChY41TRaw[Co3At3Ch9]
+895.002 -0.10846 0.0 !Mu3ChY42TRaw[Co3At3Ch10]
+904.382 -0.109593 0.0 !Mu3ChY43TRaw[Co3At3Ch11]
+900.904 -0.109195 0.0 !Mu3ChY44TRaw[Co3At3Ch12]
+896.146 -0.108568 0.0 !Mu3ChY45TRaw[Co3At3Ch13]
+906.325 -0.109804 0.0 !Mu3ChY46TRaw[Co3At3Ch14]
+910.104 -0.110263 0.0 !Mu3ChY47TRaw[Co3At3Ch15]
+902.797 -0.109382 0.0 !Mu3ChY48TRaw[Co3At3Ch16]
+876.215 -0.105997 0.0 !Mu3ChY49TRaw[Co3At4Ch1]
+882.251 -0.106772 0.0 !Mu3ChY50TRaw[Co3At4Ch2]
+893.929 -0.108217 0.0 !Mu3ChY51TRaw[Co3At4Ch3]
+896.657 -0.108527 0.0 !Mu3ChY52TRaw[Co3At4Ch4]
+890.731 -0.107825 0.0 !Mu3ChY53TRaw[Co3At4Ch5]
+899.266 -0.108862 0.0 !Mu3ChY54TRaw[Co3At4Ch6]
+903.981 -0.109456 0.0 !Mu3ChY55TRaw[Co3At4Ch7]
+909.889 -0.110152 0.0 !Mu3ChY56TRaw[Co3At4Ch8]
+914.156 -0.110718 0.0 !Mu3ChY57TRaw[Co3At4Ch9]
+912.878 -0.11056 0.0 !Mu3ChY58TRaw[Co3At4Ch10]
+921.772 -0.111636 0.0 !Mu3ChY59TRaw[Co3At4Ch11]
+907.641 -0.109934 0.0 !Mu3ChY60TRaw[Co3At4Ch12]
+921.134 -0.111581 0.0 !Mu3ChY61TRaw[Co3At4Ch13]
+921.864 -0.111694 0.0 !Mu3ChY62TRaw[Co3At4Ch14]
+917.054 -0.1111 0.0 !Mu3ChY63TRaw[Co3At4Ch15]
+919.795 -0.11144 0.0 !Mu3ChY64TRaw[Co3At4Ch16]
+909.45 -0.109216 0.0 !Mu3ChY65TRaw[Co4At1Ch1]
+919.5 -0.110026 0.0 !Mu3ChY66TRaw[Co4At1Ch2]
+909.57 -0.110106 0.0 !Mu3ChY67TRaw[Co4At1Ch3]
+921.73 -0.11114 0.0 !Mu3ChY68TRaw[Co4At1Ch4]
+933.144 -0.11252 0.0 !Mu3ChY69TRaw[Co4At1Ch5]
+937.937 -0.113544 0.0 !Mu3ChY70TRaw[Co4At1Ch6]
+941.407 -0.112672 0.0 !Mu3ChY71TRaw[Co4At1Ch7]
+929.175 -0.112491 0.0 !Mu3ChY72TRaw[Co4At1Ch8]
+949.055 -0.114462 0.0 !Mu3ChY73TRaw[Co4At1Ch9]
+941.527 -0.11354 0.0 !Mu3ChY74TRaw[Co4At1Ch10]
+954.075 -0.115517 0.0 !Mu3ChY75TRaw[Co4At1Ch11]
+957.81 -0.115086 0.0 !Mu3ChY76TRaw[Co4At1Ch12]
+963.019 -0.116618 0.0 !Mu3ChY77TRaw[Co4At1Ch13]
+955.382 -0.115232 0.0 !Mu3ChY78TRaw[Co4At1Ch14]
+944.365 -0.114343 0.0 !Mu3ChY79TRaw[Co4At1Ch15]
+952.964 -0.114947 0.0 !Mu3ChY80TRaw[Co4At1Ch16]
+969.317 -0.117288 0.0 !Mu3ChY81TRaw[Co4At2Ch1]
+980.742 -0.118727 0.0 !Mu3ChY82TRaw[Co4At2Ch2]
+990.702 -0.119474 0.0 !Mu3ChY83TRaw[Co4At2Ch3]
+994.094 -0.119909 0.0 !Mu3ChY84TRaw[Co4At2Ch4]
+1003.58 -0.120116 0.0 !Mu3ChY85TRaw[Co4At2Ch5]
+999.143 -0.120975 0.0 !Mu3ChY86TRaw[Co4At2Ch6]
+996.11 -0.120606 0.0 !Mu3ChY87TRaw[Co4At2Ch7]
+1005.134 -0.12076 0.0 !Mu3ChY88TRaw[Co4At2Ch8]
+1002.139 -0.121336 0.0 !Mu3ChY89TRaw[Co4At2Ch9]
+1025.133 -0.122713 0.0 !Mu3ChY90TRaw[Co4At2Ch10]
+1016.547 -0.1231 0.0 !Mu3ChY91TRaw[Co4At2Ch11]
+1008.733 -0.121678 0.0 !Mu3ChY92TRaw[Co4At2Ch12]
+1017.167 -0.122697 0.0 !Mu3ChY93TRaw[Co4At2Ch13]
+1016.429 -0.123087 0.0 !Mu3ChY94TRaw[Co4At2Ch14]
+1008.727 -0.122144 0.0 !Mu3ChY95TRaw[Co4At2Ch15]
+1013.668 -0.122274 0.0 !Mu3ChY96TRaw[Co4At2Ch16]
+872.659 -0.105573 0.0 !Mu3ChY97TRaw[Co4At3Ch1]
+869.574 -0.105224 0.0 !Mu3ChY98TRaw[Co4At3Ch2]
+874.267 -0.105791 0.0 !Mu3ChY99TRaw[Co4At3Ch3]
+883.417 -0.106904 0.0 !Mu3ChY100TRaw[Co4At3Ch4]
+893.981 -0.107789 0.0 !Mu3ChY101TRaw[Co4At3Ch5]
+890.232 -0.107742 0.0 !Mu3ChY102TRaw[Co4At3Ch6]
+901.26 -0.109085 0.0 !Mu3ChY103TRaw[Co4At3Ch7]
+900.219 -0.108126 0.0 !Mu3ChY104TRaw[Co4At3Ch8]
+900.643 -0.108999 0.0 !Mu3ChY105TRaw[Co4At3Ch9]
+892.987 -0.108068 0.0 !Mu3ChY106TRaw[Co4At3Ch10]
+892.534 -0.108006 0.0 !Mu3ChY107TRaw[Co4At3Ch11]
+901.564 -0.109125 0.0 !Mu3ChY108TRaw[Co4At3Ch12]
+911.227 -0.109439 0.0 !Mu3ChY109TRaw[Co4At3Ch13]
+905.426 -0.109168 0.0 !Mu3ChY110TRaw[Co4At3Ch14]
+904.499 -0.108625 0.0 !Mu3ChY111TRaw[Co4At3Ch15]
+907.559 -0.109416 0.0 !Mu3ChY112TRaw[Co4At3Ch16]
+896.812 -0.107554 0.0 !Mu3ChY113TRaw[Co4At4Ch1]
+897.309 -0.108473 0.0 !Mu3ChY114TRaw[Co4At4Ch2]
+907.137 -0.108848 0.0 !Mu3ChY115TRaw[Co4At4Ch3]
+902.563 -0.108292 0.0 !Mu3ChY116TRaw[Co4At4Ch4]
+907.303 -0.109288 0.0 !Mu3ChY117TRaw[Co4At4Ch5]
+909.347 -0.109943 0.0 !Mu3ChY118TRaw[Co4At4Ch6]
+907.931 -0.109765 0.0 !Mu3ChY119TRaw[Co4At4Ch7]
+907.16 -0.109672 0.0 !Mu3ChY120TRaw[Co4At4Ch8]
+917.59 -0.110512 0.0 !Mu3ChY121TRaw[Co4At4Ch9]
+922.724 -0.111588 0.0 !Mu3ChY122TRaw[Co4At4Ch10]
+925.473 -0.111915 0.0 !Mu3ChY123TRaw[Co4At4Ch11]
+911.405 -0.109772 0.0 !Mu3ChY124TRaw[Co4At4Ch12]
+912.177 -0.11029 0.0 !Mu3ChY125TRaw[Co4At4Ch13]
+917.613 -0.110947 0.0 !Mu3ChY126TRaw[Co4At4Ch14]
+919.037 -0.111116 0.0 !Mu3ChY127TRaw[Co4At4Ch15]
+927.237 -0.112131 0.0 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..0410c348a72dd1494b2d7a9e20311561781231a9
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M0_E/Cal_Str_X_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..033b1d6ab0352ed91fe283b7649bb216ba473ed1
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E -61.6331 0.007522910000000001
+MUSETT_T0_DSSD_X1_E -62.055 0.0075747900000000005
+MUSETT_T0_DSSD_X2_E -61.7295 0.00753498
+MUSETT_T0_DSSD_X3_E -61.5102 0.007508
+MUSETT_T0_DSSD_X4_E -61.8331 0.00754788
+MUSETT_T0_DSSD_X5_E -61.6237 0.00752219
+MUSETT_T0_DSSD_X6_E -61.347300000000004 0.0074881
+MUSETT_T0_DSSD_X7_E -61.171099999999996 0.0074671
+MUSETT_T0_DSSD_X8_E -61.0214 0.00744836
+MUSETT_T0_DSSD_X9_E -62.6174 0.00764342
+MUSETT_T0_DSSD_X10_E -62.323699999999995 0.00760752
+MUSETT_T0_DSSD_X11_E -62.004 0.00756848
+MUSETT_T0_DSSD_X12_E -62.2228 0.00759535
+MUSETT_T0_DSSD_X13_E -61.7503 0.00753769
+MUSETT_T0_DSSD_X14_E -62.4495 0.00762252
+MUSETT_T0_DSSD_X15_E -61.339 0.00748739
+MUSETT_T0_DSSD_X16_E -63.072300000000006 0.00769874
+MUSETT_T0_DSSD_X17_E -62.8306 0.00767014
+MUSETT_T0_DSSD_X18_E -62.2071 0.00759325
+MUSETT_T0_DSSD_X19_E -62.3774 0.00761449
+MUSETT_T0_DSSD_X20_E -63.8741 0.00779655
+MUSETT_T0_DSSD_X21_E -62.503800000000005 0.00762964
+MUSETT_T0_DSSD_X22_E -62.3119 0.00760574
+MUSETT_T0_DSSD_X23_E -62.7355 0.00765798
+MUSETT_T0_DSSD_X24_E -62.8762 0.00767465
+MUSETT_T0_DSSD_X25_E -62.9841 0.007687909999999999
+MUSETT_T0_DSSD_X26_E -63.0675 0.0076982
+MUSETT_T0_DSSD_X27_E -62.585 0.007639910000000001
+MUSETT_T0_DSSD_X28_E -62.9901 0.00768868
+MUSETT_T0_DSSD_X29_E -62.619800000000005 0.00764391
+MUSETT_T0_DSSD_X30_E -63.4246 0.00774165
+MUSETT_T0_DSSD_X31_E -62.605 0.00764176
+MUSETT_T0_DSSD_X32_E -56.615 0.00691109
+MUSETT_T0_DSSD_X33_E -56.752 0.00692767
+MUSETT_T0_DSSD_X34_E -55.5313 0.00677863
+MUSETT_T0_DSSD_X35_E -56.356199999999994 0.0068791799999999995
+MUSETT_T0_DSSD_X36_E -55.9528 0.00682995
+MUSETT_T0_DSSD_X37_E -10.0 0.0
+MUSETT_T0_DSSD_X38_E -55.877900000000004 0.00682136
+MUSETT_T0_DSSD_X39_E -55.7038 0.00679995
+MUSETT_T0_DSSD_X40_E -56.249300000000005 0.00686589
+MUSETT_T0_DSSD_X41_E -55.8494 0.00681689
+MUSETT_T0_DSSD_X42_E -56.149699999999996 0.00685427
+MUSETT_T0_DSSD_X43_E -56.3195 0.00687441
+MUSETT_T0_DSSD_X44_E -56.3167 0.00687457
+MUSETT_T0_DSSD_X45_E -10.0 0.0
+MUSETT_T0_DSSD_X46_E -10.0 0.0
+MUSETT_T0_DSSD_X47_E -56.0559 0.00684297
+MUSETT_T0_DSSD_X48_E -57.8235 0.00705889
+MUSETT_T0_DSSD_X49_E -57.8885 0.00706649
+MUSETT_T0_DSSD_X50_E -57.7592 0.00704986
+MUSETT_T0_DSSD_X51_E -57.282300000000006 0.0069923
+MUSETT_T0_DSSD_X52_E -58.176300000000005 0.0071010299999999995
+MUSETT_T0_DSSD_X53_E -57.2074 0.00698291
+MUSETT_T0_DSSD_X54_E -57.7759 0.00705244
+MUSETT_T0_DSSD_X55_E -57.4536 0.0070135399999999995
+MUSETT_T0_DSSD_X56_E -58.4501 0.00713474
+MUSETT_T0_DSSD_X57_E -57.6962 0.0070427
+MUSETT_T0_DSSD_X58_E -57.293099999999995 0.00699262
+MUSETT_T0_DSSD_X59_E -57.7517 0.00704967
+MUSETT_T0_DSSD_X60_E -57.1788 0.00697896
+MUSETT_T0_DSSD_X61_E -57.8975 0.0070674
+MUSETT_T0_DSSD_X62_E -57.8707 0.00706412
+MUSETT_T0_DSSD_X63_E -58.0916 0.00709091
+MUSETT_T0_DSSD_X64_E -63.2445 0.00772165
+MUSETT_T0_DSSD_X65_E -63.4966 0.0077516600000000005
+MUSETT_T0_DSSD_X66_E -63.378099999999996 0.00773685
+MUSETT_T0_DSSD_X67_E -63.8112 0.0077912499999999996
+MUSETT_T0_DSSD_X68_E -63.0056 0.0076925
+MUSETT_T0_DSSD_X69_E -63.771800000000006 0.00778636
+MUSETT_T0_DSSD_X70_E -63.636900000000004 0.0077693599999999995
+MUSETT_T0_DSSD_X71_E -63.205 0.00771714
+MUSETT_T0_DSSD_X72_E -63.9696 0.00781032
+MUSETT_T0_DSSD_X73_E -62.9951 0.00769198
+MUSETT_T0_DSSD_X74_E -63.7705 0.00778739
+MUSETT_T0_DSSD_X75_E -63.683699999999995 0.0077771
+MUSETT_T0_DSSD_X76_E -63.3658 0.00773864
+MUSETT_T0_DSSD_X77_E -63.4124 0.00774431
+MUSETT_T0_DSSD_X78_E -63.838699999999996 0.007796979999999999
+MUSETT_T0_DSSD_X79_E -63.9104 0.0078103
+MUSETT_T0_DSSD_X80_E -60.714800000000004 0.00741635
+MUSETT_T0_DSSD_X81_E -60.354699999999994 0.00737366
+MUSETT_T0_DSSD_X82_E -60.7699 0.0074225
+MUSETT_T0_DSSD_X83_E -61.1536 0.0074687700000000004
+MUSETT_T0_DSSD_X84_E -61.0986 0.00746087
+MUSETT_T0_DSSD_X85_E -61.831300000000006 0.00755086
+MUSETT_T0_DSSD_X86_E -61.2339 0.007476740000000001
+MUSETT_T0_DSSD_X87_E -61.9185 0.00756139
+MUSETT_T0_DSSD_X88_E -61.705 0.00753432
+MUSETT_T0_DSSD_X89_E -61.5394 0.00751247
+MUSETT_T0_DSSD_X90_E -61.6548 0.007526799999999999
+MUSETT_T0_DSSD_X91_E -62.6569 0.00765026
+MUSETT_T0_DSSD_X92_E -61.7265 0.00753576
+MUSETT_T0_DSSD_X93_E -60.9295 0.0074391
+MUSETT_T0_DSSD_X94_E -61.2714 0.00748082
+MUSETT_T0_DSSD_X95_E -62.081199999999995 0.00757944
+MUSETT_T0_DSSD_X96_E -57.1125 0.00697127
+MUSETT_T0_DSSD_X97_E -57.4511 0.00701351
+MUSETT_T0_DSSD_X98_E -57.7263 0.007046490000000001
+MUSETT_T0_DSSD_X99_E -57.024 0.00696101
+MUSETT_T0_DSSD_X100_E -58.096 0.00709126
+MUSETT_T0_DSSD_X101_E -57.639300000000006 0.007036400000000001
+MUSETT_T0_DSSD_X102_E -57.569199999999995 0.00702818
+MUSETT_T0_DSSD_X103_E -57.1133 0.00697269
+MUSETT_T0_DSSD_X104_E -57.345699999999994 0.006999450000000001
+MUSETT_T0_DSSD_X105_E -57.915699999999994 0.00706943
+MUSETT_T0_DSSD_X106_E -57.166 0.0069786200000000005
+MUSETT_T0_DSSD_X107_E -57.5637 0.00702674
+MUSETT_T0_DSSD_X108_E -58.5464 0.00714671
+MUSETT_T0_DSSD_X109_E -57.969199999999994 0.0070772199999999995
+MUSETT_T0_DSSD_X110_E -57.5808 0.0070292
+MUSETT_T0_DSSD_X111_E -57.635 0.00703725
+MUSETT_T0_DSSD_X112_E -58.915 0.00719216
+MUSETT_T0_DSSD_X113_E -59.152 0.00722096
+MUSETT_T0_DSSD_X114_E -58.4545 0.00713595
+MUSETT_T0_DSSD_X115_E -58.584300000000006 0.0071519899999999996
+MUSETT_T0_DSSD_X116_E -58.0616 0.007088390000000001
+MUSETT_T0_DSSD_X117_E -58.252 0.00711139
+MUSETT_T0_DSSD_X118_E -58.26 0.00711192
+MUSETT_T0_DSSD_X119_E -58.543800000000005 0.00714562
+MUSETT_T0_DSSD_X120_E -58.468900000000005 0.00713746
+MUSETT_T0_DSSD_X121_E -58.6184 0.00715521
+MUSETT_T0_DSSD_X122_E -58.3872 0.0071278800000000005
+MUSETT_T0_DSSD_X123_E -59.2772 0.00723597
+MUSETT_T0_DSSD_X124_E -57.8232 0.007058539999999999
+MUSETT_T0_DSSD_X125_E -58.459199999999996 0.00713586
+MUSETT_T0_DSSD_X126_E -58.3965 0.0071278
+MUSETT_T0_DSSD_X127_E -59.4511 0.00725717
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M0_E/Cal_Str_Y_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..de70da85c65749f79461e08b57e9f763e0108bac
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_Y0_E -10.0 0.0
+MUSETT_T0_DSSD_Y1_E 60.3421 -0.00736534
+MUSETT_T0_DSSD_Y2_E 60.8553 -0.00742765
+MUSETT_T0_DSSD_Y3_E 61.044 -0.00745109
+MUSETT_T0_DSSD_Y4_E 59.9281 -0.00731456
+MUSETT_T0_DSSD_Y5_E 60.1115 -0.00733668
+MUSETT_T0_DSSD_Y6_E 60.6705 -0.00740537
+MUSETT_T0_DSSD_Y7_E 60.3853 -0.0073704700000000005
+MUSETT_T0_DSSD_Y8_E 60.092699999999994 -0.00733441
+MUSETT_T0_DSSD_Y9_E 59.923300000000005 -0.00731426
+MUSETT_T0_DSSD_Y10_E 60.3528 -0.007366360000000001
+MUSETT_T0_DSSD_Y11_E 59.9862 -0.007321589999999999
+MUSETT_T0_DSSD_Y12_E 60.842800000000004 -0.007426319999999999
+MUSETT_T0_DSSD_Y13_E 60.9356 -0.0074373899999999995
+MUSETT_T0_DSSD_Y14_E 61.0191 -0.0074482
+MUSETT_T0_DSSD_Y15_E 60.664 -0.007404239999999999
+MUSETT_T0_DSSD_Y16_E 60.353 -0.00736683
+MUSETT_T0_DSSD_Y17_E 60.4558 -0.0073788099999999995
+MUSETT_T0_DSSD_Y18_E 60.296099999999996 -0.00736011
+MUSETT_T0_DSSD_Y19_E 60.0762 -0.0073325
+MUSETT_T0_DSSD_Y20_E 60.2578 -0.0073547000000000005
+MUSETT_T0_DSSD_Y21_E 60.3411 -0.007364880000000001
+MUSETT_T0_DSSD_Y22_E 60.1637 -0.00734342
+MUSETT_T0_DSSD_Y23_E 59.5833 -0.00727238
+MUSETT_T0_DSSD_Y24_E 60.1375 -0.0073405300000000005
+MUSETT_T0_DSSD_Y25_E 59.690400000000004 -0.007286
+MUSETT_T0_DSSD_Y26_E 59.947900000000004 -0.007317140000000001
+MUSETT_T0_DSSD_Y27_E 60.2963 -0.0073596
+MUSETT_T0_DSSD_Y28_E 59.8687 -0.00730687
+MUSETT_T0_DSSD_Y29_E 59.5502 -0.00726855
+MUSETT_T0_DSSD_Y30_E 59.7262 -0.00729007
+MUSETT_T0_DSSD_Y31_E 60.921 -0.00743642
+MUSETT_T0_DSSD_Y32_E 56.617 -0.00691063
+MUSETT_T0_DSSD_Y33_E 56.959 -0.006951939999999999
+MUSETT_T0_DSSD_Y34_E 56.494699999999995 -0.0068958399999999994
+MUSETT_T0_DSSD_Y35_E 57.0093 -0.00695849
+MUSETT_T0_DSSD_Y36_E 57.335699999999996 -0.00699755
+MUSETT_T0_DSSD_Y37_E 57.264 -0.00698966
+MUSETT_T0_DSSD_Y38_E 56.4099 -0.00688581
+MUSETT_T0_DSSD_Y39_E 56.4312 -0.00688775
+MUSETT_T0_DSSD_Y40_E 56.901900000000005 -0.006945509999999999
+MUSETT_T0_DSSD_Y41_E 56.6947 -0.006920099999999999
+MUSETT_T0_DSSD_Y42_E 56.548300000000005 -0.00690222
+MUSETT_T0_DSSD_Y43_E 56.5261 -0.006899440000000001
+MUSETT_T0_DSSD_Y44_E 56.796800000000005 -0.0069327500000000005
+MUSETT_T0_DSSD_Y45_E 56.913 -0.006946819999999999
+MUSETT_T0_DSSD_Y46_E 57.7654 -0.00705041
+MUSETT_T0_DSSD_Y47_E 56.5244 -0.0068993200000000005
+MUSETT_T0_DSSD_Y48_E 57.594199999999994 -0.007030649999999999
+MUSETT_T0_DSSD_Y49_E 56.951 -0.0069510399999999995
+MUSETT_T0_DSSD_Y50_E 56.7319 -0.00692465
+MUSETT_T0_DSSD_Y51_E 56.3943 -0.0068833900000000005
+MUSETT_T0_DSSD_Y52_E 57.0998 -0.0069694399999999995
+MUSETT_T0_DSSD_Y53_E 56.9613 -0.00695188
+MUSETT_T0_DSSD_Y54_E 56.5741 -0.00690529
+MUSETT_T0_DSSD_Y55_E 57.5426 -0.00702337
+MUSETT_T0_DSSD_Y56_E 57.2905 -0.00699357
+MUSETT_T0_DSSD_Y57_E 56.7515 -0.006927679999999999
+MUSETT_T0_DSSD_Y58_E 56.8754 -0.00694186
+MUSETT_T0_DSSD_Y59_E 57.1434 -0.00697465
+MUSETT_T0_DSSD_Y60_E 57.1751 -0.00697855
+MUSETT_T0_DSSD_Y61_E 57.057199999999995 -0.00696403
+MUSETT_T0_DSSD_Y62_E 57.5242 -0.00702087
+MUSETT_T0_DSSD_Y63_E 58.006 -0.00707906
+MUSETT_T0_DSSD_Y64_E 60.962300000000006 -0.00744098
+MUSETT_T0_DSSD_Y65_E 61.0509 -0.007451220000000001
+MUSETT_T0_DSSD_Y66_E 60.9283 -0.00743662
+MUSETT_T0_DSSD_Y67_E 61.282199999999996 -0.00747993
+MUSETT_T0_DSSD_Y68_E 60.3438 -0.0073656600000000004
+MUSETT_T0_DSSD_Y69_E 61.4909 -0.00750575
+MUSETT_T0_DSSD_Y70_E 60.8322 -0.00742493
+MUSETT_T0_DSSD_Y71_E 60.401900000000005 -0.0073728199999999995
+MUSETT_T0_DSSD_Y72_E 61.525 -0.00750847
+MUSETT_T0_DSSD_Y73_E 61.015 -0.0074468699999999995
+MUSETT_T0_DSSD_Y74_E 61.1485 -0.0074639699999999995
+MUSETT_T0_DSSD_Y75_E 61.4983 -0.00750535
+MUSETT_T0_DSSD_Y76_E 60.581199999999995 -0.00739491
+MUSETT_T0_DSSD_Y77_E 61.3344 -0.00748699
+MUSETT_T0_DSSD_Y78_E 61.6753 -0.0075285099999999995
+MUSETT_T0_DSSD_Y79_E 61.049 -0.00745175
+MUSETT_T0_DSSD_Y80_E 62.5244 -0.00762923
+MUSETT_T0_DSSD_Y81_E 60.9687 -0.00744121
+MUSETT_T0_DSSD_Y82_E 61.505300000000005 -0.00750626
+MUSETT_T0_DSSD_Y83_E 62.171699999999994 -0.00758826
+MUSETT_T0_DSSD_Y84_E 60.9564 -0.00743975
+MUSETT_T0_DSSD_Y85_E 60.853300000000004 -0.00742648
+MUSETT_T0_DSSD_Y86_E 61.6845 -0.00752842
+MUSETT_T0_DSSD_Y87_E 61.3665 -0.00748921
+MUSETT_T0_DSSD_Y88_E 61.0493 -0.00745085
+MUSETT_T0_DSSD_Y89_E 61.272400000000005 -0.00747871
+MUSETT_T0_DSSD_Y90_E 61.0017 -0.00744491
+MUSETT_T0_DSSD_Y91_E 61.418 -0.00749644
+MUSETT_T0_DSSD_Y92_E 61.8082 -0.00754356
+MUSETT_T0_DSSD_Y93_E 61.6194 -0.00752066
+MUSETT_T0_DSSD_Y94_E 62.315599999999996 -0.007605509999999999
+MUSETT_T0_DSSD_Y95_E 60.7873 -0.0074192400000000006
+MUSETT_T0_DSSD_Y96_E 56.2932 -0.006870149999999999
+MUSETT_T0_DSSD_Y97_E 56.573 -0.00690468
+MUSETT_T0_DSSD_Y98_E 56.527 -0.00689976
+MUSETT_T0_DSSD_Y99_E 56.4302 -0.00688772
+MUSETT_T0_DSSD_Y100_E 56.1511 -0.0068537
+MUSETT_T0_DSSD_Y101_E 56.4252 -0.0068861999999999994
+MUSETT_T0_DSSD_Y102_E 55.9923 -0.00683341
+MUSETT_T0_DSSD_Y103_E 56.507 -0.0068962500000000005
+MUSETT_T0_DSSD_Y104_E 56.8566 -0.00693994
+MUSETT_T0_DSSD_Y105_E 56.0553 -0.00684208
+MUSETT_T0_DSSD_Y106_E 57.0296 -0.0069606
+MUSETT_T0_DSSD_Y107_E 57.3299 -0.0069973
+MUSETT_T0_DSSD_Y108_E 56.501 -0.00689663
+MUSETT_T0_DSSD_Y109_E 56.5039 -0.00689674
+MUSETT_T0_DSSD_Y110_E 56.6701 -0.00691739
+MUSETT_T0_DSSD_Y111_E 56.3581 -0.00687923
+MUSETT_T0_DSSD_Y112_E 56.8945 -0.00694468
+MUSETT_T0_DSSD_Y113_E 56.988099999999996 -0.00695503
+MUSETT_T0_DSSD_Y114_E 56.935 -0.0069495699999999995
+MUSETT_T0_DSSD_Y115_E 56.727199999999996 -0.00692358
+MUSETT_T0_DSSD_Y116_E 57.2236 -0.00698438
+MUSETT_T0_DSSD_Y117_E 56.491 -0.006894999999999999
+MUSETT_T0_DSSD_Y118_E 56.3555 -0.00687782
+MUSETT_T0_DSSD_Y119_E 56.5792 -0.00690568
+MUSETT_T0_DSSD_Y120_E 57.315599999999996 -0.00699591
+MUSETT_T0_DSSD_Y121_E 57.1154 -0.00697039
+MUSETT_T0_DSSD_Y122_E 56.7481 -0.00692598
+MUSETT_T0_DSSD_Y123_E 55.9854 -0.00683357
+MUSETT_T0_DSSD_Y124_E 56.3419 -0.00687581
+MUSETT_T0_DSSD_Y125_E 55.8506 -0.006816340000000001
+MUSETT_T0_DSSD_Y126_E 56.922599999999996 -0.0069478
+MUSETT_T0_DSSD_Y127_E 56.515 -0.00689869
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a58f4173f43c928bf6c2ce2922d4f147dbe6f113
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_T 1000.68 -0.114176
+MUSETT_T0_DSSD_X1_T 1000.548 -0.115529
+MUSETT_T0_DSSD_X2_T 994.985 -0.115657
+MUSETT_T0_DSSD_X3_T 998.298 -0.117409
+MUSETT_T0_DSSD_X4_T 1017.095 -0.117367
+MUSETT_T0_DSSD_X5_T 1009.462 -0.117353
+MUSETT_T0_DSSD_X6_T 1006.88 -0.117969
+MUSETT_T0_DSSD_X7_T 1009.19 -0.118246
+MUSETT_T0_DSSD_X8_T 1034.336 -0.118065
+MUSETT_T0_DSSD_X9_T 1054.297 -0.118546
+MUSETT_T0_DSSD_X10_T 1028.541 -0.119138
+MUSETT_T0_DSSD_X11_T 1027.566 -0.119075
+MUSETT_T0_DSSD_X12_T 1035.322 -0.119996
+MUSETT_T0_DSSD_X13_T 1020.483 -0.118174
+MUSETT_T0_DSSD_X14_T 1043.119 -0.119531
+MUSETT_T0_DSSD_X15_T 1351.042 -0.118448
+MUSETT_T0_DSSD_X16_T 985.051 -0.115275
+MUSETT_T0_DSSD_X17_T 1018.323 -0.116527
+MUSETT_T0_DSSD_X18_T 1019.722 -0.118044
+MUSETT_T0_DSSD_X19_T 1016.846 -0.118125
+MUSETT_T0_DSSD_X20_T 1022.532 -0.119233
+MUSETT_T0_DSSD_X21_T 1031.856 -0.118555
+MUSETT_T0_DSSD_X22_T 1050.616 -0.119845
+MUSETT_T0_DSSD_X23_T 1062.012 -0.120005
+MUSETT_T0_DSSD_X24_T 1031.807 -0.119427
+MUSETT_T0_DSSD_X25_T 1035.529 -0.120777
+MUSETT_T0_DSSD_X26_T 1034.112 -0.121057
+MUSETT_T0_DSSD_X27_T 1053.939 -0.121545
+MUSETT_T0_DSSD_X28_T 1025.922 -0.121021
+MUSETT_T0_DSSD_X29_T 1036.222 -0.120851
+MUSETT_T0_DSSD_X30_T 1057.756 -0.12045
+MUSETT_T0_DSSD_X31_T 1063.339 -0.119947
+MUSETT_T0_DSSD_X32_T 899.089 -0.105192
+MUSETT_T0_DSSD_X33_T 896.661 -0.104955
+MUSETT_T0_DSSD_X34_T 900.671 -0.107397
+MUSETT_T0_DSSD_X35_T 906.319 -0.106033
+MUSETT_T0_DSSD_X36_T 914.875 -0.106227
+MUSETT_T0_DSSD_X37_T 916.198 -0.108005
+MUSETT_T0_DSSD_X38_T 934.909 -0.108195
+MUSETT_T0_DSSD_X39_T 946.449 -0.107979
+MUSETT_T0_DSSD_X40_T 929.072 -0.108302
+MUSETT_T0_DSSD_X41_T 950.135 -0.108334
+MUSETT_T0_DSSD_X42_T 949.178 -0.108243
+MUSETT_T0_DSSD_X43_T 924.851 -0.109095
+MUSETT_T0_DSSD_X44_T 938.112 -0.108505
+MUSETT_T0_DSSD_X45_T 959.817 -0.107877
+MUSETT_T0_DSSD_X46_T 969.046 -0.108187
+MUSETT_T0_DSSD_X47_T 1000.332 -0.10826
+MUSETT_T0_DSSD_X48_T 941.059 -0.106556
+MUSETT_T0_DSSD_X49_T 935.589 -0.106942
+MUSETT_T0_DSSD_X50_T 937.96 -0.107622
+MUSETT_T0_DSSD_X51_T 947.438 -0.109464
+MUSETT_T0_DSSD_X52_T 942.078 -0.109295
+MUSETT_T0_DSSD_X53_T 945.006 -0.109652
+MUSETT_T0_DSSD_X54_T 979.489 -0.109955
+MUSETT_T0_DSSD_X55_T 951.854 -0.110458
+MUSETT_T0_DSSD_X56_T 971.578 -0.111499
+MUSETT_T0_DSSD_X57_T 962.445 -0.110456
+MUSETT_T0_DSSD_X58_T 956.297 -0.111378
+MUSETT_T0_DSSD_X59_T 961.15 -0.111943
+MUSETT_T0_DSSD_X60_T 972.034 -0.112807
+MUSETT_T0_DSSD_X61_T 960.421 -0.11314
+MUSETT_T0_DSSD_X62_T 965.683 -0.113338
+MUSETT_T0_DSSD_X63_T 954.11 -0.111982
+MUSETT_T0_DSSD_X64_T 983.106 -0.115846
+MUSETT_T0_DSSD_X65_T 1014.462 -0.11646
+MUSETT_T0_DSSD_X66_T 1016.856 -0.117644
+MUSETT_T0_DSSD_X67_T 995.672 -0.117791
+MUSETT_T0_DSSD_X68_T 1014.268 -0.118174
+MUSETT_T0_DSSD_X69_T 1004.36 -0.119717
+MUSETT_T0_DSSD_X70_T 1009.057 -0.120284
+MUSETT_T0_DSSD_X71_T 1014.202 -0.120426
+MUSETT_T0_DSSD_X72_T 1033.027 -0.121763
+MUSETT_T0_DSSD_X73_T 1021.396 -0.119445
+MUSETT_T0_DSSD_X74_T 1031.245 -0.121535
+MUSETT_T0_DSSD_X75_T 1021.633 -0.120381
+MUSETT_T0_DSSD_X76_T 1036.707 -0.121262
+MUSETT_T0_DSSD_X77_T 1033.329 -0.121766
+MUSETT_T0_DSSD_X78_T 1035.269 -0.120615
+MUSETT_T0_DSSD_X79_T 1395.102 -0.120952
+MUSETT_T0_DSSD_X80_T 958.027 -0.111515
+MUSETT_T0_DSSD_X81_T 964.753 -0.112746
+MUSETT_T0_DSSD_X82_T 946.182 -0.111774
+MUSETT_T0_DSSD_X83_T 958.531 -0.113281
+MUSETT_T0_DSSD_X84_T 958.863 -0.112468
+MUSETT_T0_DSSD_X85_T 970.352 -0.113819
+MUSETT_T0_DSSD_X86_T 971.39 -0.114818
+MUSETT_T0_DSSD_X87_T 960.896 -0.113978
+MUSETT_T0_DSSD_X88_T 982.302 -0.114813
+MUSETT_T0_DSSD_X89_T 986.339 -0.115728
+MUSETT_T0_DSSD_X90_T 983.082 -0.11664
+MUSETT_T0_DSSD_X91_T 994.239 -0.11625
+MUSETT_T0_DSSD_X92_T 998.231 -0.116299
+MUSETT_T0_DSSD_X93_T 982.565 -0.116152
+MUSETT_T0_DSSD_X94_T 1022.945 -0.117868
+MUSETT_T0_DSSD_X95_T 1009.233 -0.116744
+MUSETT_T0_DSSD_X96_T 921.311 -0.105013
+MUSETT_T0_DSSD_X97_T 921.31 -0.106169
+MUSETT_T0_DSSD_X98_T 911.678 -0.106212
+MUSETT_T0_DSSD_X99_T 917.107 -0.106905
+MUSETT_T0_DSSD_X100_T 927.187 -0.108043
+MUSETT_T0_DSSD_X101_T 952.263 -0.108935
+MUSETT_T0_DSSD_X102_T 958.633 -0.108442
+MUSETT_T0_DSSD_X103_T 939.41 -0.108194
+MUSETT_T0_DSSD_X104_T 941.999 -0.109336
+MUSETT_T0_DSSD_X105_T 943.412 -0.109053
+MUSETT_T0_DSSD_X106_T 970.302 -0.109771
+MUSETT_T0_DSSD_X107_T 946.604 -0.109449
+MUSETT_T0_DSSD_X108_T 933.31 -0.109128
+MUSETT_T0_DSSD_X109_T 937.597 -0.109641
+MUSETT_T0_DSSD_X110_T 930.52 -0.109177
+MUSETT_T0_DSSD_X111_T 939.491 -0.109478
+MUSETT_T0_DSSD_X112_T 909.027 -0.107364
+MUSETT_T0_DSSD_X113_T 922.418 -0.107748
+MUSETT_T0_DSSD_X114_T 908.876 -0.107782
+MUSETT_T0_DSSD_X115_T 922.546 -0.109007
+MUSETT_T0_DSSD_X116_T 936.638 -0.109423
+MUSETT_T0_DSSD_X117_T 936.691 -0.108648
+MUSETT_T0_DSSD_X118_T 959.153 -0.110413
+MUSETT_T0_DSSD_X119_T 946.313 -0.110579
+MUSETT_T0_DSSD_X120_T 950.811 -0.109898
+MUSETT_T0_DSSD_X121_T 973.845 -0.1105
+MUSETT_T0_DSSD_X122_T 996.871 -0.111529
+MUSETT_T0_DSSD_X123_T 946.384 -0.110604
+MUSETT_T0_DSSD_X124_T 956.453 -0.110972
+MUSETT_T0_DSSD_X125_T 958.311 -0.11118
+MUSETT_T0_DSSD_X126_T 964.725 -0.110613
+MUSETT_T0_DSSD_X127_T 986.747 -0.111151
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d2e41fbf0f91e96a2c5693d138e177527ee2008b
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 989.537 -0.114033
+MUSETT_T0_DSSD_Y2_T 955.667 -0.113921
+MUSETT_T0_DSSD_Y3_T 981.529 -0.116104
+MUSETT_T0_DSSD_Y4_T 980.484 -0.115563
+MUSETT_T0_DSSD_Y5_T 989.097 -0.117481
+MUSETT_T0_DSSD_Y6_T 991.604 -0.117339
+MUSETT_T0_DSSD_Y7_T 996.371 -0.117018
+MUSETT_T0_DSSD_Y8_T 995.892 -0.117842
+MUSETT_T0_DSSD_Y9_T 1010.018 -0.117316
+MUSETT_T0_DSSD_Y10_T 986.738 -0.117632
+MUSETT_T0_DSSD_Y11_T 985.508 -0.118398
+MUSETT_T0_DSSD_Y12_T 998.348 -0.11814
+MUSETT_T0_DSSD_Y13_T 990.199 -0.117633
+MUSETT_T0_DSSD_Y14_T 1010.136 -0.117944
+MUSETT_T0_DSSD_Y15_T 999.786 -0.118761
+MUSETT_T0_DSSD_Y16_T 950.332 -0.113175
+MUSETT_T0_DSSD_Y17_T 970.637 -0.114309
+MUSETT_T0_DSSD_Y18_T 957.295 -0.115351
+MUSETT_T0_DSSD_Y19_T 959.999 -0.11436
+MUSETT_T0_DSSD_Y20_T 958.95 -0.114686
+MUSETT_T0_DSSD_Y21_T 962.534 -0.115103
+MUSETT_T0_DSSD_Y22_T 979.707 -0.115832
+MUSETT_T0_DSSD_Y23_T 983.432 -0.115841
+MUSETT_T0_DSSD_Y24_T 991.925 -0.116398
+MUSETT_T0_DSSD_Y25_T 990.13 -0.116195
+MUSETT_T0_DSSD_Y26_T 971.726 -0.115516
+MUSETT_T0_DSSD_Y27_T 1009.509 -0.117562
+MUSETT_T0_DSSD_Y28_T 1004.207 -0.117834
+MUSETT_T0_DSSD_Y29_T 998.99 -0.11722
+MUSETT_T0_DSSD_Y30_T 990.834 -0.11759
+MUSETT_T0_DSSD_Y31_T 1000.504 -0.116928
+MUSETT_T0_DSSD_Y32_T 886.202 -0.105131
+MUSETT_T0_DSSD_Y33_T 889.317 -0.105113
+MUSETT_T0_DSSD_Y34_T 906.607 -0.107174
+MUSETT_T0_DSSD_Y35_T 899.798 -0.105955
+MUSETT_T0_DSSD_Y36_T 904.768 -0.107363
+MUSETT_T0_DSSD_Y37_T 918.064 -0.107278
+MUSETT_T0_DSSD_Y38_T 921.513 -0.107347
+MUSETT_T0_DSSD_Y39_T 926.687 -0.109567
+MUSETT_T0_DSSD_Y40_T 938.373 -0.109268
+MUSETT_T0_DSSD_Y41_T 935.947 -0.109045
+MUSETT_T0_DSSD_Y42_T 928.571 -0.108924
+MUSETT_T0_DSSD_Y43_T 949.921 -0.110196
+MUSETT_T0_DSSD_Y44_T 922.399 -0.109895
+MUSETT_T0_DSSD_Y45_T 920.724 -0.10924
+MUSETT_T0_DSSD_Y46_T 948.642 -0.110513
+MUSETT_T0_DSSD_Y47_T 932.675 -0.109056
+MUSETT_T0_DSSD_Y48_T 885.573 -0.103507
+MUSETT_T0_DSSD_Y49_T 890.36 -0.104888
+MUSETT_T0_DSSD_Y50_T 889.12 -0.104347
+MUSETT_T0_DSSD_Y51_T 899.388 -0.106391
+MUSETT_T0_DSSD_Y52_T 902.315 -0.106718
+MUSETT_T0_DSSD_Y53_T 917.171 -0.106878
+MUSETT_T0_DSSD_Y54_T 913.403 -0.106441
+MUSETT_T0_DSSD_Y55_T 935.489 -0.107426
+MUSETT_T0_DSSD_Y56_T 906.519 -0.107608
+MUSETT_T0_DSSD_Y57_T 935.091 -0.108136
+MUSETT_T0_DSSD_Y58_T 932.191 -0.109012
+MUSETT_T0_DSSD_Y59_T 913.583 -0.108611
+MUSETT_T0_DSSD_Y60_T 922.821 -0.108719
+MUSETT_T0_DSSD_Y61_T 931.221 -0.109581
+MUSETT_T0_DSSD_Y62_T 931.083 -0.108895
+MUSETT_T0_DSSD_Y63_T 936.955 -0.109543
+MUSETT_T0_DSSD_Y64_T 993.853 -0.116469
+MUSETT_T0_DSSD_Y65_T 1011.78 -0.117302
+MUSETT_T0_DSSD_Y66_T 995.56 -0.118012
+MUSETT_T0_DSSD_Y67_T 1003.176 -0.118028
+MUSETT_T0_DSSD_Y68_T 1025.25 -0.118378
+MUSETT_T0_DSSD_Y69_T 1036.395 -0.118825
+MUSETT_T0_DSSD_Y70_T 1001.923 -0.118781
+MUSETT_T0_DSSD_Y71_T 1008.805 -0.119156
+MUSETT_T0_DSSD_Y72_T 1005.22 -0.119628
+MUSETT_T0_DSSD_Y73_T 1004.154 -0.118591
+MUSETT_T0_DSSD_Y74_T 1031.155 -0.119656
+MUSETT_T0_DSSD_Y75_T 1027.527 -0.120924
+MUSETT_T0_DSSD_Y76_T 1026.408 -0.120327
+MUSETT_T0_DSSD_Y77_T 1047.813 -0.120579
+MUSETT_T0_DSSD_Y78_T 1025.636 -0.120247
+MUSETT_T0_DSSD_Y79_T 1040.75 -0.121097
+MUSETT_T0_DSSD_Y80_T 1004.086 -0.117145
+MUSETT_T0_DSSD_Y81_T 1016.728 -0.119118
+MUSETT_T0_DSSD_Y82_T 1004.19 -0.118534
+MUSETT_T0_DSSD_Y83_T 1057.448 -0.12031
+MUSETT_T0_DSSD_Y84_T 1038.261 -0.120777
+MUSETT_T0_DSSD_Y85_T 1025.585 -0.121085
+MUSETT_T0_DSSD_Y86_T 1032.746 -0.120569
+MUSETT_T0_DSSD_Y87_T 1016.336 -0.121839
+MUSETT_T0_DSSD_Y88_T 1019.819 -0.121339
+MUSETT_T0_DSSD_Y89_T 1038.173 -0.122592
+MUSETT_T0_DSSD_Y90_T 1060.978 -0.123897
+MUSETT_T0_DSSD_Y91_T 1068.859 -0.123866
+MUSETT_T0_DSSD_Y92_T 1055.44 -0.123256
+MUSETT_T0_DSSD_Y93_T 1036.272 -0.123786
+MUSETT_T0_DSSD_Y94_T 1052.796 -0.123408
+MUSETT_T0_DSSD_Y95_T 1049.584 -0.122879
+MUSETT_T0_DSSD_Y96_T 896.563 -0.106544
+MUSETT_T0_DSSD_Y97_T 889.586 -0.106139
+MUSETT_T0_DSSD_Y98_T 891.914 -0.106028
+MUSETT_T0_DSSD_Y99_T 895.093 -0.108041
+MUSETT_T0_DSSD_Y100_T 895.662 -0.107707
+MUSETT_T0_DSSD_Y101_T 915.101 -0.10757
+MUSETT_T0_DSSD_Y102_T 926.581 -0.108105
+MUSETT_T0_DSSD_Y103_T 917.996 -0.10959
+MUSETT_T0_DSSD_Y104_T 940.411 -0.108916
+MUSETT_T0_DSSD_Y105_T 947.193 -0.110544
+MUSETT_T0_DSSD_Y106_T 931.904 -0.109981
+MUSETT_T0_DSSD_Y107_T 929.203 -0.11051
+MUSETT_T0_DSSD_Y108_T 953.398 -0.110421
+MUSETT_T0_DSSD_Y109_T 938.194 -0.109894
+MUSETT_T0_DSSD_Y110_T 936.836 -0.110572
+MUSETT_T0_DSSD_Y111_T 949.368 -0.110803
+MUSETT_T0_DSSD_Y112_T 906.101 -0.107535
+MUSETT_T0_DSSD_Y113_T 910.285 -0.108466
+MUSETT_T0_DSSD_Y114_T 923.437 -0.108438
+MUSETT_T0_DSSD_Y115_T 925.991 -0.109158
+MUSETT_T0_DSSD_Y116_T 952.064 -0.110566
+MUSETT_T0_DSSD_Y117_T 927.647 -0.109757
+MUSETT_T0_DSSD_Y118_T 958.629 -0.112167
+MUSETT_T0_DSSD_Y119_T 945.091 -0.111146
+MUSETT_T0_DSSD_Y120_T 963.994 -0.112407
+MUSETT_T0_DSSD_Y121_T 952.702 -0.112337
+MUSETT_T0_DSSD_Y122_T 961.592 -0.112539
+MUSETT_T0_DSSD_Y123_T 947.459 -0.112978
+MUSETT_T0_DSSD_Y124_T 934.829 -0.112316
+MUSETT_T0_DSSD_Y125_T 933.712 -0.112192
+MUSETT_T0_DSSD_Y126_T 934.356 -0.111821
+MUSETT_T0_DSSD_Y127_T 951.885 -0.112162
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2bdda809aa9bfd9d08b3d487a1ce8ef8db52e922
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E -62.5165 0.0076311
+MUSETT_T1_DSSD_X1_E -62.2741 0.00760081
+MUSETT_T1_DSSD_X2_E -62.2565 0.0075988800000000006
+MUSETT_T1_DSSD_X3_E -62.1055 0.00758086
+MUSETT_T1_DSSD_X4_E -61.5519 0.007513359999999999
+MUSETT_T1_DSSD_X5_E -61.6023 0.00751847
+MUSETT_T1_DSSD_X6_E -62.3324 0.00760802
+MUSETT_T1_DSSD_X7_E -61.432199999999995 0.00749866
+MUSETT_T1_DSSD_X8_E -61.2959 0.00748181
+MUSETT_T1_DSSD_X9_E -61.534 0.0075109
+MUSETT_T1_DSSD_X10_E -61.7365 0.00753509
+MUSETT_T1_DSSD_X11_E -61.7367 0.00753547
+MUSETT_T1_DSSD_X12_E -61.9071 0.007556230000000001
+MUSETT_T1_DSSD_X13_E -61.411300000000004 0.00749629
+MUSETT_T1_DSSD_X14_E -61.128 0.0074611
+MUSETT_T1_DSSD_X15_E -62.0027 0.00756766
+MUSETT_T1_DSSD_X16_E -62.6267 0.00764348
+MUSETT_T1_DSSD_X17_E -61.7975 0.0075420899999999996
+MUSETT_T1_DSSD_X18_E -62.271699999999996 0.00760236
+MUSETT_T1_DSSD_X19_E -62.1321 0.00758327
+MUSETT_T1_DSSD_X20_E -62.8741 0.0076749900000000005
+MUSETT_T1_DSSD_X21_E -62.2116 0.007592730000000001
+MUSETT_T1_DSSD_X22_E -62.8858 0.0076761
+MUSETT_T1_DSSD_X23_E -62.4 0.0076155400000000005
+MUSETT_T1_DSSD_X24_E -62.3151 0.00760536
+MUSETT_T1_DSSD_X25_E -62.0606 0.00757409
+MUSETT_T1_DSSD_X26_E -61.9951 0.00756723
+MUSETT_T1_DSSD_X27_E -61.7305 0.00753394
+MUSETT_T1_DSSD_X28_E -61.701699999999995 0.00753073
+MUSETT_T1_DSSD_X29_E -62.7963 0.00766424
+MUSETT_T1_DSSD_X30_E -61.870400000000004 0.00755102
+MUSETT_T1_DSSD_X31_E -62.8715 0.00767342
+MUSETT_T1_DSSD_X32_E -58.2491 0.00711105
+MUSETT_T1_DSSD_X33_E -58.6 0.0071512799999999994
+MUSETT_T1_DSSD_X34_E -58.5036 0.00713902
+MUSETT_T1_DSSD_X35_E -57.9348 0.007074919999999999
+MUSETT_T1_DSSD_X36_E -58.269800000000004 0.00711052
+MUSETT_T1_DSSD_X37_E -58.3733 0.00712516
+MUSETT_T1_DSSD_X38_E -58.024800000000006 0.00708223
+MUSETT_T1_DSSD_X39_E -58.7319 0.00716835
+MUSETT_T1_DSSD_X40_E -58.3801 0.00712401
+MUSETT_T1_DSSD_X41_E -59.0803 0.00720869
+MUSETT_T1_DSSD_X42_E -58.1633 0.00709879
+MUSETT_T1_DSSD_X43_E -58.3216 0.00712064
+MUSETT_T1_DSSD_X44_E -58.7934 0.00717398
+MUSETT_T1_DSSD_X45_E -59.555 0.007267190000000001
+MUSETT_T1_DSSD_X46_E -58.9853 0.00719742
+MUSETT_T1_DSSD_X47_E -58.3934 0.00713232
+MUSETT_T1_DSSD_X48_E -57.868300000000005 0.00706236
+MUSETT_T1_DSSD_X49_E -58.5287 0.00714353
+MUSETT_T1_DSSD_X50_E -58.0637 0.00708664
+MUSETT_T1_DSSD_X51_E -57.735800000000005 0.0070466899999999996
+MUSETT_T1_DSSD_X52_E -58.026199999999996 0.00708204
+MUSETT_T1_DSSD_X53_E -57.941199999999995 0.00707198
+MUSETT_T1_DSSD_X54_E -58.0107 0.00708036
+MUSETT_T1_DSSD_X55_E -57.865199999999994 0.0070621799999999995
+MUSETT_T1_DSSD_X56_E -58.1143 0.00709321
+MUSETT_T1_DSSD_X57_E -57.8726 0.00706339
+MUSETT_T1_DSSD_X58_E -58.5155 0.007141949999999999
+MUSETT_T1_DSSD_X59_E -57.6938 0.00704145
+MUSETT_T1_DSSD_X60_E -57.7549 0.00704905
+MUSETT_T1_DSSD_X61_E -58.2532 0.00710979
+MUSETT_T1_DSSD_X62_E -58.1148 0.00709262
+MUSETT_T1_DSSD_X63_E -58.287 0.0071143000000000005
+MUSETT_T1_DSSD_X64_E -61.0329 0.00744807
+MUSETT_T1_DSSD_X65_E -61.684599999999996 0.00752792
+MUSETT_T1_DSSD_X66_E -61.4296 0.00749794
+MUSETT_T1_DSSD_X67_E -61.667699999999996 0.00752697
+MUSETT_T1_DSSD_X68_E -61.8913 0.00755404
+MUSETT_T1_DSSD_X69_E -61.4462 0.0074985699999999995
+MUSETT_T1_DSSD_X70_E -61.7086 0.00753062
+MUSETT_T1_DSSD_X71_E -62.0713 0.00757514
+MUSETT_T1_DSSD_X72_E -61.2781 0.00747991
+MUSETT_T1_DSSD_X73_E -62.6554 0.00764692
+MUSETT_T1_DSSD_X74_E -61.9328 0.00755898
+MUSETT_T1_DSSD_X75_E -61.9835 0.00756623
+MUSETT_T1_DSSD_X76_E -61.655199999999994 0.00752649
+MUSETT_T1_DSSD_X77_E -61.854099999999995 0.00754843
+MUSETT_T1_DSSD_X78_E -61.4835 0.00750294
+MUSETT_T1_DSSD_X79_E -61.9066 0.00755644
+MUSETT_T1_DSSD_X80_E -63.4884 0.00774867
+MUSETT_T1_DSSD_X81_E -63.7419 0.00778029
+MUSETT_T1_DSSD_X82_E -64.1775 0.00783331
+MUSETT_T1_DSSD_X83_E -63.942 0.007804
+MUSETT_T1_DSSD_X84_E -64.1655 0.0078324
+MUSETT_T1_DSSD_X85_E -63.8717 0.00779646
+MUSETT_T1_DSSD_X86_E -64.1305 0.007827250000000001
+MUSETT_T1_DSSD_X87_E -64.304 0.00784811
+MUSETT_T1_DSSD_X88_E -64.0702 0.00782171
+MUSETT_T1_DSSD_X89_E -64.3677 0.00785609
+MUSETT_T1_DSSD_X90_E -63.515800000000006 0.00775294
+MUSETT_T1_DSSD_X91_E -63.4035 0.007739289999999999
+MUSETT_T1_DSSD_X92_E -64.6507 0.00789095
+MUSETT_T1_DSSD_X93_E -64.0715 0.00781996
+MUSETT_T1_DSSD_X94_E -63.723800000000004 0.00777948
+MUSETT_T1_DSSD_X95_E -63.5041 0.0077509399999999996
+MUSETT_T1_DSSD_X96_E -56.309 0.006872690000000001
+MUSETT_T1_DSSD_X97_E -56.7139 0.00692185
+MUSETT_T1_DSSD_X98_E -56.6817 0.00691912
+MUSETT_T1_DSSD_X99_E -56.38 0.00688193
+MUSETT_T1_DSSD_X100_E -56.624300000000005 0.0069108
+MUSETT_T1_DSSD_X101_E -57.1633 0.006977870000000001
+MUSETT_T1_DSSD_X102_E -57.3007 0.0069942500000000005
+MUSETT_T1_DSSD_X103_E -56.583 0.00690657
+MUSETT_T1_DSSD_X104_E -56.874 0.00694133
+MUSETT_T1_DSSD_X105_E -57.0216 0.00695972
+MUSETT_T1_DSSD_X106_E -57.8266 0.00705832
+MUSETT_T1_DSSD_X107_E -57.7756 0.007052419999999999
+MUSETT_T1_DSSD_X108_E -57.7539 0.0070485800000000005
+MUSETT_T1_DSSD_X109_E -57.529900000000005 0.007021589999999999
+MUSETT_T1_DSSD_X110_E -57.756699999999995 0.00704901
+MUSETT_T1_DSSD_X111_E -57.996300000000005 0.00707845
+MUSETT_T1_DSSD_X112_E -57.2631 0.00698926
+MUSETT_T1_DSSD_X113_E -57.281 0.00699144
+MUSETT_T1_DSSD_X114_E -56.8489 0.0069386299999999995
+MUSETT_T1_DSSD_X115_E -57.7142 0.0070445099999999995
+MUSETT_T1_DSSD_X116_E -57.316900000000004 0.0069958799999999995
+MUSETT_T1_DSSD_X117_E -57.2614 0.0069893
+MUSETT_T1_DSSD_X118_E -56.5406 0.006901399999999999
+MUSETT_T1_DSSD_X119_E -58.381699999999995 0.00712551
+MUSETT_T1_DSSD_X120_E -57.4714 0.007014319999999999
+MUSETT_T1_DSSD_X121_E -57.8095 0.0070557499999999995
+MUSETT_T1_DSSD_X122_E -57.7349 0.00704709
+MUSETT_T1_DSSD_X123_E -57.4411 0.00701114
+MUSETT_T1_DSSD_X124_E -57.6595 0.00703733
+MUSETT_T1_DSSD_X125_E -57.6589 0.00703761
+MUSETT_T1_DSSD_X126_E -57.057900000000004 0.006964349999999999
+MUSETT_T1_DSSD_X127_E -57.8919 0.0070664
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..239897d005de56cb4b8a748237eb0aaed3164ec3
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_E 59.587 -0.00727421
+MUSETT_T1_DSSD_Y1_E 60.35 -0.00736663
+MUSETT_T1_DSSD_Y2_E 59.636900000000004 -0.0072797999999999995
+MUSETT_T1_DSSD_Y3_E 59.2504 -0.00723253
+MUSETT_T1_DSSD_Y4_E 60.1039 -0.00733661
+MUSETT_T1_DSSD_Y5_E 59.993 -0.00732323
+MUSETT_T1_DSSD_Y6_E 59.3557 -0.00724588
+MUSETT_T1_DSSD_Y7_E 59.4658 -0.00725939
+MUSETT_T1_DSSD_Y8_E 59.4135 -0.00725269
+MUSETT_T1_DSSD_Y9_E 59.6283 -0.00727927
+MUSETT_T1_DSSD_Y10_E 59.4207 -0.00725321
+MUSETT_T1_DSSD_Y11_E 59.517300000000006 -0.00726551
+MUSETT_T1_DSSD_Y12_E 60.1569 -0.007343270000000001
+MUSETT_T1_DSSD_Y13_E 59.274699999999996 -0.00723573
+MUSETT_T1_DSSD_Y14_E 59.4138 -0.007252799999999999
+MUSETT_T1_DSSD_Y15_E 59.941199999999995 -0.00731657
+MUSETT_T1_DSSD_Y16_E 62.356300000000005 -0.00761131
+MUSETT_T1_DSSD_Y17_E 62.368300000000005 -0.00761293
+MUSETT_T1_DSSD_Y18_E 62.294 -0.00760309
+MUSETT_T1_DSSD_Y19_E 61.9841 -0.0075666200000000005
+MUSETT_T1_DSSD_Y20_E 62.459 -0.00762322
+MUSETT_T1_DSSD_Y21_E 62.300599999999996 -0.00760413
+MUSETT_T1_DSSD_Y22_E -10.0 0.0
+MUSETT_T1_DSSD_Y23_E 61.9915 -0.00756756
+MUSETT_T1_DSSD_Y24_E 61.618900000000004 -0.00752114
+MUSETT_T1_DSSD_Y25_E 61.345 -0.007488310000000001
+MUSETT_T1_DSSD_Y26_E 61.9861 -0.00756653
+MUSETT_T1_DSSD_Y27_E 61.9934 -0.00756773
+MUSETT_T1_DSSD_Y28_E 62.149699999999996 -0.00758604
+MUSETT_T1_DSSD_Y29_E 62.014300000000006 -0.00757031
+MUSETT_T1_DSSD_Y30_E 61.5869 -0.00751767
+MUSETT_T1_DSSD_Y31_E 61.7556 -0.00753847
+MUSETT_T1_DSSD_Y32_E 55.995 -0.00683497
+MUSETT_T1_DSSD_Y33_E 56.198 -0.006860369999999999
+MUSETT_T1_DSSD_Y34_E 55.578900000000004 -0.00678486
+MUSETT_T1_DSSD_Y35_E 55.6016 -0.00678669
+MUSETT_T1_DSSD_Y36_E 55.322199999999995 -0.00675352
+MUSETT_T1_DSSD_Y37_E 56.297599999999996 -0.00687208
+MUSETT_T1_DSSD_Y38_E 55.306 -0.0067507900000000004
+MUSETT_T1_DSSD_Y39_E 55.844800000000006 -0.00681653
+MUSETT_T1_DSSD_Y40_E 56.0561 -0.00684392
+MUSETT_T1_DSSD_Y41_E 56.003 -0.00683589
+MUSETT_T1_DSSD_Y42_E 55.4558 -0.006769389999999999
+MUSETT_T1_DSSD_Y43_E 56.5398 -0.00690172
+MUSETT_T1_DSSD_Y44_E 55.5919 -0.00678603
+MUSETT_T1_DSSD_Y45_E 55.6427 -0.00679229
+MUSETT_T1_DSSD_Y46_E 55.7179 -0.00680114
+MUSETT_T1_DSSD_Y47_E 55.6304 -0.006790549999999999
+MUSETT_T1_DSSD_Y48_E 57.134 -0.00697428
+MUSETT_T1_DSSD_Y49_E 56.4889 -0.00689459
+MUSETT_T1_DSSD_Y50_E 56.444900000000004 -0.006889910000000001
+MUSETT_T1_DSSD_Y51_E 55.9175 -0.00682531
+MUSETT_T1_DSSD_Y52_E 56.781099999999995 -0.0069307
+MUSETT_T1_DSSD_Y53_E 56.234300000000005 -0.00686372
+MUSETT_T1_DSSD_Y54_E 56.4141 -0.006886300000000001
+MUSETT_T1_DSSD_Y55_E 56.314099999999996 -0.00687366
+MUSETT_T1_DSSD_Y56_E 57.181599999999996 -0.006979910000000001
+MUSETT_T1_DSSD_Y57_E 56.9717 -0.00695407
+MUSETT_T1_DSSD_Y58_E 56.5457 -0.006902180000000001
+MUSETT_T1_DSSD_Y59_E 57.194 -0.006980610000000001
+MUSETT_T1_DSSD_Y60_E 57.4527 -0.0070126799999999994
+MUSETT_T1_DSSD_Y61_E 56.974599999999995 -0.0069545399999999995
+MUSETT_T1_DSSD_Y62_E 56.0969 -0.00684754
+MUSETT_T1_DSSD_Y63_E 57.2959 -0.00699365
+MUSETT_T1_DSSD_Y64_E 60.9661 -0.0074416000000000005
+MUSETT_T1_DSSD_Y65_E 61.4769 -0.00750343
+MUSETT_T1_DSSD_Y66_E 61.230199999999996 -0.00747385
+MUSETT_T1_DSSD_Y67_E 61.5364 -0.007511739999999999
+MUSETT_T1_DSSD_Y68_E 61.2124 -0.00747235
+MUSETT_T1_DSSD_Y69_E 59.944199999999995 -0.00731688
+MUSETT_T1_DSSD_Y70_E 60.3599 -0.00736752
+MUSETT_T1_DSSD_Y71_E 61.084900000000005 -0.0074561900000000006
+MUSETT_T1_DSSD_Y72_E 60.2949 -0.00736018
+MUSETT_T1_DSSD_Y73_E 61.0979 -0.00745775
+MUSETT_T1_DSSD_Y74_E 60.8322 -0.0074253999999999995
+MUSETT_T1_DSSD_Y75_E 60.341 -0.0073653899999999994
+MUSETT_T1_DSSD_Y76_E 60.4574 -0.0073801100000000005
+MUSETT_T1_DSSD_Y77_E 60.881 -0.0074315499999999994
+MUSETT_T1_DSSD_Y78_E 60.579 -0.00739461
+MUSETT_T1_DSSD_Y79_E 61.262699999999995 -0.00747821
+MUSETT_T1_DSSD_Y80_E 61.087 -0.00745653
+MUSETT_T1_DSSD_Y81_E 60.957800000000006 -0.00744017
+MUSETT_T1_DSSD_Y82_E 61.015 -0.0074473000000000004
+MUSETT_T1_DSSD_Y83_E 60.4586 -0.00738002
+MUSETT_T1_DSSD_Y84_E 60.3285 -0.00736352
+MUSETT_T1_DSSD_Y85_E 61.2939 -0.007482109999999999
+MUSETT_T1_DSSD_Y86_E 60.6455 -0.00740378
+MUSETT_T1_DSSD_Y87_E 60.614 -0.007397979999999999
+MUSETT_T1_DSSD_Y88_E 60.9987 -0.00744612
+MUSETT_T1_DSSD_Y89_E 61.206 -0.00747091
+MUSETT_T1_DSSD_Y90_E 60.669599999999996 -0.0074055200000000005
+MUSETT_T1_DSSD_Y91_E 60.7943 -0.007420759999999999
+MUSETT_T1_DSSD_Y92_E 60.3678 -0.007368260000000001
+MUSETT_T1_DSSD_Y93_E 61.409099999999995 -0.00749616
+MUSETT_T1_DSSD_Y94_E 61.5379 -0.007511370000000001
+MUSETT_T1_DSSD_Y95_E 60.6565 -0.00740388
+MUSETT_T1_DSSD_Y96_E 55.8426 -0.0068172499999999995
+MUSETT_T1_DSSD_Y97_E 55.3671 -0.00675769
+MUSETT_T1_DSSD_Y98_E 55.712199999999996 -0.0068011600000000005
+MUSETT_T1_DSSD_Y99_E 55.524 -0.00677768
+MUSETT_T1_DSSD_Y100_E 55.8201 -0.00681352
+MUSETT_T1_DSSD_Y101_E 55.4794 -0.00677257
+MUSETT_T1_DSSD_Y102_E 55.4672 -0.00677116
+MUSETT_T1_DSSD_Y103_E 56.1334 -0.006851950000000001
+MUSETT_T1_DSSD_Y104_E 55.2036 -0.00673883
+MUSETT_T1_DSSD_Y105_E 55.269400000000005 -0.0067465500000000005
+MUSETT_T1_DSSD_Y106_E 55.825900000000004 -0.00681501
+MUSETT_T1_DSSD_Y107_E 55.1768 -0.00673553
+MUSETT_T1_DSSD_Y108_E 55.8495 -0.0068172
+MUSETT_T1_DSSD_Y109_E 56.0381 -0.00684069
+MUSETT_T1_DSSD_Y110_E 56.1588 -0.0068555000000000005
+MUSETT_T1_DSSD_Y111_E 56.5794 -0.00690682
+MUSETT_T1_DSSD_Y112_E 54.7064 -0.0066782000000000005
+MUSETT_T1_DSSD_Y113_E 55.473 -0.00677076
+MUSETT_T1_DSSD_Y114_E 55.1016 -0.0067263
+MUSETT_T1_DSSD_Y115_E 55.0967 -0.0067255399999999995
+MUSETT_T1_DSSD_Y116_E 55.1715 -0.00673434
+MUSETT_T1_DSSD_Y117_E 55.3174 -0.00675224
+MUSETT_T1_DSSD_Y118_E 55.1937 -0.00673739
+MUSETT_T1_DSSD_Y119_E 55.6885 -0.00679707
+MUSETT_T1_DSSD_Y120_E 55.649800000000006 -0.0067933
+MUSETT_T1_DSSD_Y121_E 55.362199999999994 -0.00675814
+MUSETT_T1_DSSD_Y122_E 54.711400000000005 -0.00667865
+MUSETT_T1_DSSD_Y123_E 55.0696 -0.0067225900000000005
+MUSETT_T1_DSSD_Y124_E 55.139199999999995 -0.00673052
+MUSETT_T1_DSSD_Y125_E 55.09 -0.00672464
+MUSETT_T1_DSSD_Y126_E 55.2973 -0.00675015
+MUSETT_T1_DSSD_Y127_E 56.1187 -0.00685016
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b7603a307aa519facc0bff5aac18c553a75339fe
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_T 980.849 -0.11232
+MUSETT_T1_DSSD_X1_T 995.644 -0.114015
+MUSETT_T1_DSSD_X2_T 990.977 -0.114341
+MUSETT_T1_DSSD_X3_T 991.783 -0.115712
+MUSETT_T1_DSSD_X4_T 1010.572 -0.115744
+MUSETT_T1_DSSD_X5_T 1004.942 -0.115962
+MUSETT_T1_DSSD_X6_T 1027.025 -0.117589
+MUSETT_T1_DSSD_X7_T 1013.964 -0.116998
+MUSETT_T1_DSSD_X8_T 1014.607 -0.117498
+MUSETT_T1_DSSD_X9_T 1043.091 -0.118577
+MUSETT_T1_DSSD_X10_T 1034.931 -0.118143
+MUSETT_T1_DSSD_X11_T 1034.599 -0.118071
+MUSETT_T1_DSSD_X12_T 1047.388 -0.11954
+MUSETT_T1_DSSD_X13_T 1090.349 -0.119597
+MUSETT_T1_DSSD_X14_T 1079.336 -0.119236
+MUSETT_T1_DSSD_X15_T 1399.973 -0.119179
+MUSETT_T1_DSSD_X16_T 965.899 -0.111777
+MUSETT_T1_DSSD_X17_T 1008.155 -0.114612
+MUSETT_T1_DSSD_X18_T 1031.29 -0.114738
+MUSETT_T1_DSSD_X19_T 1013.952 -0.114439
+MUSETT_T1_DSSD_X20_T 1000.845 -0.115464
+MUSETT_T1_DSSD_X21_T 1018.067 -0.117052
+MUSETT_T1_DSSD_X22_T 1021.992 -0.115762
+MUSETT_T1_DSSD_X23_T 1031.743 -0.117739
+MUSETT_T1_DSSD_X24_T 1026.307 -0.117531
+MUSETT_T1_DSSD_X25_T 1010.795 -0.117923
+MUSETT_T1_DSSD_X26_T 1039.632 -0.117737
+MUSETT_T1_DSSD_X27_T 1043.136 -0.11821
+MUSETT_T1_DSSD_X28_T 1030.929 -0.118677
+MUSETT_T1_DSSD_X29_T 1014.245 -0.118324
+MUSETT_T1_DSSD_X30_T 1039.652 -0.118198
+MUSETT_T1_DSSD_X31_T 1033.056 -0.119148
+MUSETT_T1_DSSD_X32_T 886.337 -0.106165
+MUSETT_T1_DSSD_X33_T 899.905 -0.10618
+MUSETT_T1_DSSD_X34_T 919.178 -0.108064
+MUSETT_T1_DSSD_X35_T 908.222 -0.105941
+MUSETT_T1_DSSD_X36_T 926.543 -0.108105
+MUSETT_T1_DSSD_X37_T 925.555 -0.108823
+MUSETT_T1_DSSD_X38_T 918.057 -0.107861
+MUSETT_T1_DSSD_X39_T 919.133 -0.10842
+MUSETT_T1_DSSD_X40_T 929.006 -0.108779
+MUSETT_T1_DSSD_X41_T 932.249 -0.108754
+MUSETT_T1_DSSD_X42_T 955.208 -0.109783
+MUSETT_T1_DSSD_X43_T 933.139 -0.108855
+MUSETT_T1_DSSD_X44_T 937.243 -0.110019
+MUSETT_T1_DSSD_X45_T 923.868 -0.109854
+MUSETT_T1_DSSD_X46_T 942.489 -0.109528
+MUSETT_T1_DSSD_X47_T 980.341 -0.110055
+MUSETT_T1_DSSD_X48_T 911.222 -0.104838
+MUSETT_T1_DSSD_X49_T 908.507 -0.105455
+MUSETT_T1_DSSD_X50_T 907.89 -0.107015
+MUSETT_T1_DSSD_X51_T 903.533 -0.107338
+MUSETT_T1_DSSD_X52_T 910.292 -0.107685
+MUSETT_T1_DSSD_X53_T 927.437 -0.107699
+MUSETT_T1_DSSD_X54_T 931.552 -0.10819
+MUSETT_T1_DSSD_X55_T 937.564 -0.108878
+MUSETT_T1_DSSD_X56_T 937.603 -0.1097
+MUSETT_T1_DSSD_X57_T 929.418 -0.10916
+MUSETT_T1_DSSD_X58_T 945.414 -0.110244
+MUSETT_T1_DSSD_X59_T 930.688 -0.109308
+MUSETT_T1_DSSD_X60_T 961.82 -0.110894
+MUSETT_T1_DSSD_X61_T 931.811 -0.109867
+MUSETT_T1_DSSD_X62_T 938.381 -0.109791
+MUSETT_T1_DSSD_X63_T 943.474 -0.110777
+MUSETT_T1_DSSD_X64_T 988.402 -0.114723
+MUSETT_T1_DSSD_X65_T 987.059 -0.114949
+MUSETT_T1_DSSD_X66_T 1005.296 -0.116629
+MUSETT_T1_DSSD_X67_T 1041.962 -0.116557
+MUSETT_T1_DSSD_X68_T 1018.025 -0.116827
+MUSETT_T1_DSSD_X69_T 1026.525 -0.117811
+MUSETT_T1_DSSD_X70_T 1022.451 -0.117758
+MUSETT_T1_DSSD_X71_T 1039.117 -0.118392
+MUSETT_T1_DSSD_X72_T 1036.398 -0.118063
+MUSETT_T1_DSSD_X73_T 1051.153 -0.119853
+MUSETT_T1_DSSD_X74_T 1039.597 -0.119377
+MUSETT_T1_DSSD_X75_T 1026.806 -0.119141
+MUSETT_T1_DSSD_X76_T 1037.981 -0.119982
+MUSETT_T1_DSSD_X77_T 1039.726 -0.120199
+MUSETT_T1_DSSD_X78_T 1047.594 -0.1202
+MUSETT_T1_DSSD_X79_T 1404.444 -0.120722
+MUSETT_T1_DSSD_X80_T 1011.808 -0.117775
+MUSETT_T1_DSSD_X81_T 1016.332 -0.118024
+MUSETT_T1_DSSD_X82_T 1030.608 -0.118652
+MUSETT_T1_DSSD_X83_T 1029.549 -0.120307
+MUSETT_T1_DSSD_X84_T 1040.137 -0.120215
+MUSETT_T1_DSSD_X85_T 1062.0 -0.121389
+MUSETT_T1_DSSD_X86_T 1059.477 -0.121554
+MUSETT_T1_DSSD_X87_T 1046.994 -0.12057
+MUSETT_T1_DSSD_X88_T 1070.134 -0.122345
+MUSETT_T1_DSSD_X89_T 1064.802 -0.12261
+MUSETT_T1_DSSD_X90_T 1067.994 -0.122082
+MUSETT_T1_DSSD_X91_T 1058.802 -0.12282
+MUSETT_T1_DSSD_X92_T 1085.606 -0.12279
+MUSETT_T1_DSSD_X93_T 1112.3 -0.123127
+MUSETT_T1_DSSD_X94_T 1065.22 -0.123096
+MUSETT_T1_DSSD_X95_T 1087.39 -0.12163
+MUSETT_T1_DSSD_X96_T 944.75 -0.107613
+MUSETT_T1_DSSD_X97_T 953.257 -0.107373
+MUSETT_T1_DSSD_X98_T 940.186 -0.107838
+MUSETT_T1_DSSD_X99_T 938.233 -0.109224
+MUSETT_T1_DSSD_X100_T 938.882 -0.1092
+MUSETT_T1_DSSD_X101_T 946.755 -0.109791
+MUSETT_T1_DSSD_X102_T 949.15 -0.109268
+MUSETT_T1_DSSD_X103_T 986.829 -0.111151
+MUSETT_T1_DSSD_X104_T 995.127 -0.11128
+MUSETT_T1_DSSD_X105_T 1003.516 -0.111467
+MUSETT_T1_DSSD_X106_T 998.332 -0.112035
+MUSETT_T1_DSSD_X107_T 1007.836 -0.111519
+MUSETT_T1_DSSD_X108_T 1008.695 -0.111616
+MUSETT_T1_DSSD_X109_T 950.4 -0.110627
+MUSETT_T1_DSSD_X110_T 967.222 -0.110941
+MUSETT_T1_DSSD_X111_T 991.806 -0.11176
+MUSETT_T1_DSSD_X112_T 971.271 -0.108476
+MUSETT_T1_DSSD_X113_T 940.865 -0.108567
+MUSETT_T1_DSSD_X114_T 938.048 -0.10946
+MUSETT_T1_DSSD_X115_T 971.747 -0.110136
+MUSETT_T1_DSSD_X116_T 1026.72 -0.111977
+MUSETT_T1_DSSD_X117_T 999.883 -0.111304
+MUSETT_T1_DSSD_X118_T 998.593 -0.112781
+MUSETT_T1_DSSD_X119_T 969.943 -0.110659
+MUSETT_T1_DSSD_X120_T 975.062 -0.111325
+MUSETT_T1_DSSD_X121_T 1011.733 -0.112226
+MUSETT_T1_DSSD_X122_T 969.884 -0.11236
+MUSETT_T1_DSSD_X123_T 968.551 -0.111775
+MUSETT_T1_DSSD_X124_T 958.828 -0.111483
+MUSETT_T1_DSSD_X125_T 982.145 -0.112193
+MUSETT_T1_DSSD_X126_T 989.725 -0.112614
+MUSETT_T1_DSSD_X127_T 987.185 -0.111864
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..053cc4065c58f7e08ae7c72adb5c8b681eef3c0d
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_T 959.046 -0.11282
+MUSETT_T1_DSSD_Y1_T 955.007 -0.113022
+MUSETT_T1_DSSD_Y2_T 990.4 -0.114361
+MUSETT_T1_DSSD_Y3_T 998.254 -0.114834
+MUSETT_T1_DSSD_Y4_T 996.127 -0.115122
+MUSETT_T1_DSSD_Y5_T 978.096 -0.115533
+MUSETT_T1_DSSD_Y6_T 970.638 -0.115938
+MUSETT_T1_DSSD_Y7_T 974.726 -0.114726
+MUSETT_T1_DSSD_Y8_T 993.383 -0.11562
+MUSETT_T1_DSSD_Y9_T 1007.108 -0.116854
+MUSETT_T1_DSSD_Y10_T 995.68 -0.116368
+MUSETT_T1_DSSD_Y11_T 1000.024 -0.117327
+MUSETT_T1_DSSD_Y12_T 985.351 -0.117358
+MUSETT_T1_DSSD_Y13_T 999.446 -0.116827
+MUSETT_T1_DSSD_Y14_T 1004.621 -0.116981
+MUSETT_T1_DSSD_Y15_T 1005.546 -0.116717
+MUSETT_T1_DSSD_Y16_T 1012.494 -0.116883
+MUSETT_T1_DSSD_Y17_T 1014.466 -0.117128
+MUSETT_T1_DSSD_Y18_T 992.985 -0.117665
+MUSETT_T1_DSSD_Y19_T 997.079 -0.117743
+MUSETT_T1_DSSD_Y20_T 1016.676 -0.119146
+MUSETT_T1_DSSD_Y21_T 1013.451 -0.118747
+MUSETT_T1_DSSD_Y22_T 1426.337 -0.119189
+MUSETT_T1_DSSD_Y23_T 1047.483 -0.119964
+MUSETT_T1_DSSD_Y24_T 1006.065 -0.120158
+MUSETT_T1_DSSD_Y25_T 1021.389 -0.120176
+MUSETT_T1_DSSD_Y26_T 1025.992 -0.120728
+MUSETT_T1_DSSD_Y27_T 1028.907 -0.120113
+MUSETT_T1_DSSD_Y28_T 1055.441 -0.120339
+MUSETT_T1_DSSD_Y29_T 1025.325 -0.119308
+MUSETT_T1_DSSD_Y30_T 1027.794 -0.120108
+MUSETT_T1_DSSD_Y31_T 1034.513 -0.119515
+MUSETT_T1_DSSD_Y32_T 920.744 -0.106691
+MUSETT_T1_DSSD_Y33_T 922.373 -0.10745
+MUSETT_T1_DSSD_Y34_T 935.437 -0.106848
+MUSETT_T1_DSSD_Y35_T 918.478 -0.108037
+MUSETT_T1_DSSD_Y36_T 850695103980.0 -103827000.0
+MUSETT_T1_DSSD_Y37_T 946.467 -0.109433
+MUSETT_T1_DSSD_Y38_T 928.82 -0.110242
+MUSETT_T1_DSSD_Y39_T 944.55 -0.10944
+MUSETT_T1_DSSD_Y40_T 921.176 -0.107957
+MUSETT_T1_DSSD_Y41_T 961.639 -0.109521
+MUSETT_T1_DSSD_Y42_T 947.387 -0.108623
+MUSETT_T1_DSSD_Y43_T 989.749 -0.10969
+MUSETT_T1_DSSD_Y44_T 952.402 -0.109989
+MUSETT_T1_DSSD_Y45_T 957.138 -0.109312
+MUSETT_T1_DSSD_Y46_T 958.024 -0.109844
+MUSETT_T1_DSSD_Y47_T 966.166 -0.109257
+MUSETT_T1_DSSD_Y48_T 920.741 -0.10696
+MUSETT_T1_DSSD_Y49_T 920.027 -0.106852
+MUSETT_T1_DSSD_Y50_T 912.826 -0.106436
+MUSETT_T1_DSSD_Y51_T 936.647 -0.108049
+MUSETT_T1_DSSD_Y52_T 960.344 -0.108781
+MUSETT_T1_DSSD_Y53_T 964.769 -0.108923
+MUSETT_T1_DSSD_Y54_T 957.64 -0.108922
+MUSETT_T1_DSSD_Y55_T 933.691 -0.108949
+MUSETT_T1_DSSD_Y56_T 931.842 -0.110395
+MUSETT_T1_DSSD_Y57_T 944.809 -0.110294
+MUSETT_T1_DSSD_Y58_T 947.24 -0.109746
+MUSETT_T1_DSSD_Y59_T 957.31 -0.109802
+MUSETT_T1_DSSD_Y60_T 943.761 -0.109742
+MUSETT_T1_DSSD_Y61_T 966.426 -0.11072
+MUSETT_T1_DSSD_Y62_T 950.095 -0.110879
+MUSETT_T1_DSSD_Y63_T 951.17 -0.111037
+MUSETT_T1_DSSD_Y64_T 972.73 -0.115194
+MUSETT_T1_DSSD_Y65_T 988.76 -0.116053
+MUSETT_T1_DSSD_Y66_T 995.222 -0.116788
+MUSETT_T1_DSSD_Y67_T 993.192 -0.117211
+MUSETT_T1_DSSD_Y68_T 991.024 -0.117617
+MUSETT_T1_DSSD_Y69_T 1021.91 -0.118609
+MUSETT_T1_DSSD_Y70_T 998.673 -0.118053
+MUSETT_T1_DSSD_Y71_T 1033.44 -0.119038
+MUSETT_T1_DSSD_Y72_T 1023.013 -0.119163
+MUSETT_T1_DSSD_Y73_T 1030.138 -0.119552
+MUSETT_T1_DSSD_Y74_T 997.999 -0.119777
+MUSETT_T1_DSSD_Y75_T 1028.938 -0.119391
+MUSETT_T1_DSSD_Y76_T 1039.947 -0.11981
+MUSETT_T1_DSSD_Y77_T 1018.562 -0.119505
+MUSETT_T1_DSSD_Y78_T 1026.918 -0.119601
+MUSETT_T1_DSSD_Y79_T 1016.742 -0.120194
+MUSETT_T1_DSSD_Y80_T 1000.175 -0.114646
+MUSETT_T1_DSSD_Y81_T 1008.839 -0.115676
+MUSETT_T1_DSSD_Y82_T 985.563 -0.115551
+MUSETT_T1_DSSD_Y83_T 993.917 -0.116392
+MUSETT_T1_DSSD_Y84_T 1014.626 -0.116344
+MUSETT_T1_DSSD_Y85_T 991.36 -0.117589
+MUSETT_T1_DSSD_Y86_T 1003.643 -0.117699
+MUSETT_T1_DSSD_Y87_T 1010.927 -0.118567
+MUSETT_T1_DSSD_Y88_T 1019.642 -0.118705
+MUSETT_T1_DSSD_Y89_T 1008.155 -0.117807
+MUSETT_T1_DSSD_Y90_T 1035.898 -0.118376
+MUSETT_T1_DSSD_Y91_T 994.394 -0.119333
+MUSETT_T1_DSSD_Y92_T 1021.709 -0.119429
+MUSETT_T1_DSSD_Y93_T 1010.995 -0.118576
+MUSETT_T1_DSSD_Y94_T 1018.58 -0.119031
+MUSETT_T1_DSSD_Y95_T 1011.279 -0.120471
+MUSETT_T1_DSSD_Y96_T 901.438 -0.106136
+MUSETT_T1_DSSD_Y97_T 901.598 -0.106
+MUSETT_T1_DSSD_Y98_T 892.576 -0.106555
+MUSETT_T1_DSSD_Y99_T 920.81 -0.108263
+MUSETT_T1_DSSD_Y100_T 906.799 -0.10801
+MUSETT_T1_DSSD_Y101_T 896.759 -0.107044
+MUSETT_T1_DSSD_Y102_T 907.908 -0.108005
+MUSETT_T1_DSSD_Y103_T 925.104 -0.108406
+MUSETT_T1_DSSD_Y104_T 932.551 -0.109653
+MUSETT_T1_DSSD_Y105_T 908.315 -0.10926
+MUSETT_T1_DSSD_Y106_T 938.118 -0.10967
+MUSETT_T1_DSSD_Y107_T 916.068 -0.108536
+MUSETT_T1_DSSD_Y108_T 939.43 -0.109417
+MUSETT_T1_DSSD_Y109_T 950.082 -0.110268
+MUSETT_T1_DSSD_Y110_T 930.016 -0.109108
+MUSETT_T1_DSSD_Y111_T 930.868 -0.109824
+MUSETT_T1_DSSD_Y112_T 891.572 -0.104291
+MUSETT_T1_DSSD_Y113_T 875.099 -0.103549
+MUSETT_T1_DSSD_Y114_T 900.246 -0.104798
+MUSETT_T1_DSSD_Y115_T 912.537 -0.10419
+MUSETT_T1_DSSD_Y116_T 885.693 -0.105221
+MUSETT_T1_DSSD_Y117_T 925.459 -0.106354
+MUSETT_T1_DSSD_Y118_T 908.711 -0.1069
+MUSETT_T1_DSSD_Y119_T 909.178 -0.106252
+MUSETT_T1_DSSD_Y120_T 931.016 -0.108379
+MUSETT_T1_DSSD_Y121_T 922.012 -0.108492
+MUSETT_T1_DSSD_Y122_T 916.508 -0.108225
+MUSETT_T1_DSSD_Y123_T 906.606 -0.108132
+MUSETT_T1_DSSD_Y124_T 915.935 -0.108412
+MUSETT_T1_DSSD_Y125_T 907.675 -0.10784
+MUSETT_T1_DSSD_Y126_T 920.698 -0.107526
+MUSETT_T1_DSSD_Y127_T 971.039 -0.121191
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..4e75ce923e8f87e5786059e938bb672c9877b4af
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E -63.0615 0.00769841
+MUSETT_T2_DSSD_X1_E -62.5064 0.00762904
+MUSETT_T2_DSSD_X2_E -62.898199999999996 0.00767697
+MUSETT_T2_DSSD_X3_E -62.1025 0.00757997
+MUSETT_T2_DSSD_X4_E -62.091 0.00757843
+MUSETT_T2_DSSD_X5_E -62.68 0.007651
+MUSETT_T2_DSSD_X6_E -62.4976 0.00762835
+MUSETT_T2_DSSD_X7_E -62.8606 0.00767221
+MUSETT_T2_DSSD_X8_E -62.9349 0.00768182
+MUSETT_T2_DSSD_X9_E -62.209199999999996 0.00759345
+MUSETT_T2_DSSD_X10_E -62.461400000000005 0.00762395
+MUSETT_T2_DSSD_X11_E -62.447900000000004 0.00762232
+MUSETT_T2_DSSD_X12_E -62.8231 0.0076688799999999994
+MUSETT_T2_DSSD_X13_E -62.5784 0.00763796
+MUSETT_T2_DSSD_X14_E -62.6683 0.00764912
+MUSETT_T2_DSSD_X15_E -63.7271 0.0077794
+MUSETT_T2_DSSD_X16_E -62.1841 0.0075899999999999995
+MUSETT_T2_DSSD_X17_E -61.848800000000004 0.00754926
+MUSETT_T2_DSSD_X18_E -61.650400000000005 0.007524670000000001
+MUSETT_T2_DSSD_X19_E -61.4859 0.00750437
+MUSETT_T2_DSSD_X20_E -61.652 0.00752531
+MUSETT_T2_DSSD_X21_E -62.3054 0.00760457
+MUSETT_T2_DSSD_X22_E -62.259800000000006 0.007598969999999999
+MUSETT_T2_DSSD_X23_E -61.8007 0.00754312
+MUSETT_T2_DSSD_X24_E -61.581199999999995 0.007516409999999999
+MUSETT_T2_DSSD_X25_E -62.0444 0.0075734700000000005
+MUSETT_T2_DSSD_X26_E -62.0801 0.00757801
+MUSETT_T2_DSSD_X27_E -61.7978 0.00754284
+MUSETT_T2_DSSD_X28_E -61.6817 0.00752824
+MUSETT_T2_DSSD_X29_E -61.2674 0.00747771
+MUSETT_T2_DSSD_X30_E -62.349 0.00761043
+MUSETT_T2_DSSD_X31_E -61.5649 0.00751409
+MUSETT_T2_DSSD_X32_E -59.0153 0.00720328
+MUSETT_T2_DSSD_X33_E -58.139900000000004 0.0070961800000000005
+MUSETT_T2_DSSD_X34_E -58.6981 0.00716453
+MUSETT_T2_DSSD_X35_E -58.4432 0.00713257
+MUSETT_T2_DSSD_X36_E -58.176 0.007101
+MUSETT_T2_DSSD_X37_E -58.2076 0.0071046699999999996
+MUSETT_T2_DSSD_X38_E -58.335 0.0071204499999999995
+MUSETT_T2_DSSD_X39_E -57.8834 0.00706537
+MUSETT_T2_DSSD_X40_E -57.575 0.007027510000000001
+MUSETT_T2_DSSD_X41_E -58.5837 0.0071504
+MUSETT_T2_DSSD_X42_E -58.7646 0.0071724
+MUSETT_T2_DSSD_X43_E -58.3108 0.00711768
+MUSETT_T2_DSSD_X44_E -58.65 0.00715916
+MUSETT_T2_DSSD_X45_E -58.6944 0.00716541
+MUSETT_T2_DSSD_X46_E -58.376599999999996 0.0071258499999999995
+MUSETT_T2_DSSD_X47_E -58.493900000000004 0.00713969
+MUSETT_T2_DSSD_X48_E -57.774699999999996 0.007051389999999999
+MUSETT_T2_DSSD_X49_E -57.2196 0.006984
+MUSETT_T2_DSSD_X50_E -58.1507 0.00709771
+MUSETT_T2_DSSD_X51_E -57.875099999999996 0.007064549999999999
+MUSETT_T2_DSSD_X52_E -57.6145 0.0070324
+MUSETT_T2_DSSD_X53_E -57.1193 0.00697173
+MUSETT_T2_DSSD_X54_E -57.8799 0.0070646500000000004
+MUSETT_T2_DSSD_X55_E -57.700199999999995 0.00704254
+MUSETT_T2_DSSD_X56_E -57.8843 0.007065279999999999
+MUSETT_T2_DSSD_X57_E -57.744699999999995 0.00704893
+MUSETT_T2_DSSD_X58_E -57.978300000000004 0.00707647
+MUSETT_T2_DSSD_X59_E -57.040800000000004 0.00696222
+MUSETT_T2_DSSD_X60_E -57.537 0.00702231
+MUSETT_T2_DSSD_X61_E -56.754400000000004 0.006927330000000001
+MUSETT_T2_DSSD_X62_E -57.4944 0.00701801
+MUSETT_T2_DSSD_X63_E -57.8153 0.00705707
+MUSETT_T2_DSSD_X64_E -63.3305 0.00772984
+MUSETT_T2_DSSD_X65_E -65.01469999999999 0.00793525
+MUSETT_T2_DSSD_X66_E -64.02380000000001 0.0078138
+MUSETT_T2_DSSD_X67_E -63.7587 0.00778178
+MUSETT_T2_DSSD_X68_E -10.0 0.0
+MUSETT_T2_DSSD_X69_E -64.4034 0.0078608
+MUSETT_T2_DSSD_X70_E -63.7119 0.00777604
+MUSETT_T2_DSSD_X71_E -63.4568 0.00774517
+MUSETT_T2_DSSD_X72_E -63.366 0.00773396
+MUSETT_T2_DSSD_X73_E -63.1184 0.00770341
+MUSETT_T2_DSSD_X74_E -63.8454 0.00779218
+MUSETT_T2_DSSD_X75_E -63.655199999999994 0.00776957
+MUSETT_T2_DSSD_X76_E -64.0254 0.00781563
+MUSETT_T2_DSSD_X77_E -63.927699999999994 0.00780392
+MUSETT_T2_DSSD_X78_E -63.5545 0.007757729999999999
+MUSETT_T2_DSSD_X79_E -63.5009 0.00775129
+MUSETT_T2_DSSD_X80_E -63.231199999999994 0.0077171
+MUSETT_T2_DSSD_X81_E -63.2975 0.00772646
+MUSETT_T2_DSSD_X82_E -63.1563 0.00770831
+MUSETT_T2_DSSD_X83_E -63.216800000000006 0.00771566
+MUSETT_T2_DSSD_X84_E -64.00580000000001 0.00781186
+MUSETT_T2_DSSD_X85_E -63.8752 0.00779498
+MUSETT_T2_DSSD_X86_E -63.7781 0.00778352
+MUSETT_T2_DSSD_X87_E -63.9834 0.00780931
+MUSETT_T2_DSSD_X88_E -63.1005 0.00770105
+MUSETT_T2_DSSD_X89_E -63.6365 0.007767179999999999
+MUSETT_T2_DSSD_X90_E -63.516 0.00775305
+MUSETT_T2_DSSD_X91_E -63.6366 0.00776686
+MUSETT_T2_DSSD_X92_E -63.357699999999994 0.00773288
+MUSETT_T2_DSSD_X93_E -64.6455 0.00788952
+MUSETT_T2_DSSD_X94_E -63.755199999999995 0.00778113
+MUSETT_T2_DSSD_X95_E -63.6371 0.00776683
+MUSETT_T2_DSSD_X96_E -59.0147 0.00720305
+MUSETT_T2_DSSD_X97_E -58.466300000000004 0.00713675
+MUSETT_T2_DSSD_X98_E -58.3181 0.00711774
+MUSETT_T2_DSSD_X99_E -58.6042 0.00715414
+MUSETT_T2_DSSD_X100_E -59.3494 0.00724432
+MUSETT_T2_DSSD_X101_E -59.3568 0.00724468
+MUSETT_T2_DSSD_X102_E -58.8075 0.0071782899999999995
+MUSETT_T2_DSSD_X103_E -58.9268 0.0071932
+MUSETT_T2_DSSD_X104_E -59.050599999999996 0.00720842
+MUSETT_T2_DSSD_X105_E -59.0507 0.00720773
+MUSETT_T2_DSSD_X106_E -58.7527 0.00717148
+MUSETT_T2_DSSD_X107_E -59.0152 0.00720287
+MUSETT_T2_DSSD_X108_E -58.8099 0.00717765
+MUSETT_T2_DSSD_X109_E -60.5033 0.007385399999999999
+MUSETT_T2_DSSD_X110_E -58.9733 0.007197739999999999
+MUSETT_T2_DSSD_X111_E -58.5871 0.00715168
+MUSETT_T2_DSSD_X112_E -59.305800000000005 0.00723844
+MUSETT_T2_DSSD_X113_E -59.265699999999995 0.007234
+MUSETT_T2_DSSD_X114_E -59.7141 0.00728798
+MUSETT_T2_DSSD_X115_E -59.0975 0.00721291
+MUSETT_T2_DSSD_X116_E -59.752 0.00729299
+MUSETT_T2_DSSD_X117_E -60.0257 0.00732641
+MUSETT_T2_DSSD_X118_E -59.5099 0.0072633
+MUSETT_T2_DSSD_X119_E -59.4818 0.00726047
+MUSETT_T2_DSSD_X120_E -60.0186 0.00732613
+MUSETT_T2_DSSD_X121_E -58.722699999999996 0.00716762
+MUSETT_T2_DSSD_X122_E -59.0274 0.007204690000000001
+MUSETT_T2_DSSD_X123_E -59.3263 0.00724127
+MUSETT_T2_DSSD_X124_E -58.8434 0.00718246
+MUSETT_T2_DSSD_X125_E -58.9407 0.00719401
+MUSETT_T2_DSSD_X126_E -59.0974 0.00721317
+MUSETT_T2_DSSD_X127_E -59.2229 0.007228399999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..57b609549e2a13cb410e4caefd0e3cd5f54ef7d2
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_E 63.157300000000006 -0.00770969
+MUSETT_T2_DSSD_Y1_E 63.822199999999995 -0.00778939
+MUSETT_T2_DSSD_Y2_E 62.498 -0.00762853
+MUSETT_T2_DSSD_Y3_E 63.4183 -0.00774138
+MUSETT_T2_DSSD_Y4_E 62.878699999999995 -0.00767525
+MUSETT_T2_DSSD_Y5_E 62.6757 -0.00765067
+MUSETT_T2_DSSD_Y6_E 63.0181 -0.0076919300000000005
+MUSETT_T2_DSSD_Y7_E 62.6884 -0.00765248
+MUSETT_T2_DSSD_Y8_E 62.738699999999994 -0.00765763
+MUSETT_T2_DSSD_Y9_E 63.3784 -0.00773598
+MUSETT_T2_DSSD_Y10_E 62.933099999999996 -0.00768161
+MUSETT_T2_DSSD_Y11_E 62.4898 -0.00762778
+MUSETT_T2_DSSD_Y12_E 62.0069 -0.00756841
+MUSETT_T2_DSSD_Y13_E 62.7472 -0.00765943
+MUSETT_T2_DSSD_Y14_E 62.9046 -0.00767764
+MUSETT_T2_DSSD_Y15_E 63.436099999999996 -0.00774366
+MUSETT_T2_DSSD_Y16_E 61.523 -0.00750754
+MUSETT_T2_DSSD_Y17_E 60.8812 -0.0074314
+MUSETT_T2_DSSD_Y18_E 60.7565 -0.007416170000000001
+MUSETT_T2_DSSD_Y19_E 61.9482 -0.007560730000000001
+MUSETT_T2_DSSD_Y20_E 61.1207 -0.007458719999999999
+MUSETT_T2_DSSD_Y21_E 60.825199999999995 -0.00742329
+MUSETT_T2_DSSD_Y22_E 62.124199999999995 -0.0075835699999999995
+MUSETT_T2_DSSD_Y23_E 61.0682 -0.00745426
+MUSETT_T2_DSSD_Y24_E 61.024300000000004 -0.00744902
+MUSETT_T2_DSSD_Y25_E 61.6142 -0.00752161
+MUSETT_T2_DSSD_Y26_E 61.0989 -0.00745848
+MUSETT_T2_DSSD_Y27_E 61.2941 -0.00748094
+MUSETT_T2_DSSD_Y28_E 61.584 -0.00751767
+MUSETT_T2_DSSD_Y29_E 61.3574 -0.0074883
+MUSETT_T2_DSSD_Y30_E 61.2632 -0.007477210000000001
+MUSETT_T2_DSSD_Y31_E 61.6365 -0.00752283
+MUSETT_T2_DSSD_Y32_E 56.252900000000004 -0.0068662
+MUSETT_T2_DSSD_Y33_E 56.3605 -0.0068788700000000005
+MUSETT_T2_DSSD_Y34_E 56.7263 -0.00692397
+MUSETT_T2_DSSD_Y35_E 56.6471 -0.0069142299999999995
+MUSETT_T2_DSSD_Y36_E 56.9441 -0.00695144
+MUSETT_T2_DSSD_Y37_E 56.838 -0.0069372999999999995
+MUSETT_T2_DSSD_Y38_E 56.333400000000005 -0.00687547
+MUSETT_T2_DSSD_Y39_E 56.42 -0.00688799
+MUSETT_T2_DSSD_Y40_E 56.4154 -0.0068848
+MUSETT_T2_DSSD_Y41_E 58.0466 -0.0070855300000000005
+MUSETT_T2_DSSD_Y42_E 56.7498 -0.00692777
+MUSETT_T2_DSSD_Y43_E 56.199 -0.0068594
+MUSETT_T2_DSSD_Y44_E 57.4778 -0.00701539
+MUSETT_T2_DSSD_Y45_E 57.2621 -0.00698911
+MUSETT_T2_DSSD_Y46_E 56.983599999999996 -0.006956070000000001
+MUSETT_T2_DSSD_Y47_E 56.6574 -0.00691657
+MUSETT_T2_DSSD_Y48_E 57.5447 -0.00702396
+MUSETT_T2_DSSD_Y49_E 57.0289 -0.00696114
+MUSETT_T2_DSSD_Y50_E 57.9874 -0.007077040000000001
+MUSETT_T2_DSSD_Y51_E 57.372099999999996 -0.00700299
+MUSETT_T2_DSSD_Y52_E 57.342 -0.0069989100000000005
+MUSETT_T2_DSSD_Y53_E 58.521 -0.00714305
+MUSETT_T2_DSSD_Y54_E 57.6806 -0.0070407
+MUSETT_T2_DSSD_Y55_E 57.746900000000004 -0.00704863
+MUSETT_T2_DSSD_Y56_E 57.6381 -0.007035759999999999
+MUSETT_T2_DSSD_Y57_E 57.521 -0.007021029999999999
+MUSETT_T2_DSSD_Y58_E 57.4702 -0.00701554
+MUSETT_T2_DSSD_Y59_E 58.2813 -0.00711404
+MUSETT_T2_DSSD_Y60_E 57.8401 -0.00706071
+MUSETT_T2_DSSD_Y61_E 57.317800000000005 -0.006997
+MUSETT_T2_DSSD_Y62_E 57.8026 -0.00705565
+MUSETT_T2_DSSD_Y63_E 58.1314 -0.007095209999999999
+MUSETT_T2_DSSD_Y64_E 59.3039 -0.00723935
+MUSETT_T2_DSSD_Y65_E 59.4845 -0.00725972
+MUSETT_T2_DSSD_Y66_E 59.4459 -0.00725617
+MUSETT_T2_DSSD_Y67_E 60.4281 -0.0073764
+MUSETT_T2_DSSD_Y68_E 59.5334 -0.00726741
+MUSETT_T2_DSSD_Y69_E 59.8137 -0.007301179999999999
+MUSETT_T2_DSSD_Y70_E 59.589800000000004 -0.00727421
+MUSETT_T2_DSSD_Y71_E 60.0261 -0.00732661
+MUSETT_T2_DSSD_Y72_E 59.9774 -0.00732078
+MUSETT_T2_DSSD_Y73_E 59.5219 -0.0072662000000000004
+MUSETT_T2_DSSD_Y74_E 59.9394 -0.007317059999999999
+MUSETT_T2_DSSD_Y75_E 60.1639 -0.0073441999999999995
+MUSETT_T2_DSSD_Y76_E 59.267199999999995 -0.007234
+MUSETT_T2_DSSD_Y77_E 59.9363 -0.00731598
+MUSETT_T2_DSSD_Y78_E 59.3553 -0.00724587
+MUSETT_T2_DSSD_Y79_E 60.125 -0.00733861
+MUSETT_T2_DSSD_Y80_E 60.407 -0.00737292
+MUSETT_T2_DSSD_Y81_E 61.0997 -0.00745806
+MUSETT_T2_DSSD_Y82_E 60.5846 -0.007395430000000001
+MUSETT_T2_DSSD_Y83_E 61.2683 -0.00747919
+MUSETT_T2_DSSD_Y84_E 61.270900000000005 -0.007478780000000001
+MUSETT_T2_DSSD_Y85_E 60.8254 -0.00742527
+MUSETT_T2_DSSD_Y86_E 60.9095 -0.007435870000000001
+MUSETT_T2_DSSD_Y87_E 61.284800000000004 -0.00748143
+MUSETT_T2_DSSD_Y88_E 60.871 -0.0074305199999999995
+MUSETT_T2_DSSD_Y89_E 60.7505 -0.0074148
+MUSETT_T2_DSSD_Y90_E 61.3804 -0.00749252
+MUSETT_T2_DSSD_Y91_E 60.505199999999995 -0.00738436
+MUSETT_T2_DSSD_Y92_E 61.1014 -0.00745903
+MUSETT_T2_DSSD_Y93_E 60.601099999999995 -0.007398170000000001
+MUSETT_T2_DSSD_Y94_E 61.046 -0.00745199
+MUSETT_T2_DSSD_Y95_E 61.3471 -0.007487720000000001
+MUSETT_T2_DSSD_Y96_E 56.8573 -0.006940839999999999
+MUSETT_T2_DSSD_Y97_E 55.9357 -0.0068279199999999995
+MUSETT_T2_DSSD_Y98_E 56.194 -0.00685949
+MUSETT_T2_DSSD_Y99_E 56.657 -0.00691576
+MUSETT_T2_DSSD_Y100_E 56.4046 -0.00688522
+MUSETT_T2_DSSD_Y101_E 56.7453 -0.0069268
+MUSETT_T2_DSSD_Y102_E 56.0289 -0.00683896
+MUSETT_T2_DSSD_Y103_E 57.1371 -0.00697391
+MUSETT_T2_DSSD_Y104_E 56.0289 -0.00683942
+MUSETT_T2_DSSD_Y105_E 56.6401 -0.00691348
+MUSETT_T2_DSSD_Y106_E 56.5758 -0.00690625
+MUSETT_T2_DSSD_Y107_E 57.4687 -0.007015329999999999
+MUSETT_T2_DSSD_Y108_E 57.0342 -0.00696217
+MUSETT_T2_DSSD_Y109_E 56.652699999999996 -0.00691515
+MUSETT_T2_DSSD_Y110_E 57.017900000000004 -0.006960340000000001
+MUSETT_T2_DSSD_Y111_E 56.1035 -0.0068487
+MUSETT_T2_DSSD_Y112_E 56.392300000000006 -0.00688327
+MUSETT_T2_DSSD_Y113_E 57.2491 -0.00698846
+MUSETT_T2_DSSD_Y114_E 56.498 -0.00689623
+MUSETT_T2_DSSD_Y115_E 56.7889 -0.00693179
+MUSETT_T2_DSSD_Y116_E 56.4236 -0.00688761
+MUSETT_T2_DSSD_Y117_E 56.4771 -0.00689419
+MUSETT_T2_DSSD_Y118_E 56.8303 -0.00693708
+MUSETT_T2_DSSD_Y119_E 56.701800000000006 -0.00692147
+MUSETT_T2_DSSD_Y120_E 56.2407 -0.00686503
+MUSETT_T2_DSSD_Y121_E 57.000699999999995 -0.0069580399999999995
+MUSETT_T2_DSSD_Y122_E 57.374900000000004 -0.00700373
+MUSETT_T2_DSSD_Y123_E -10.0 0.0
+MUSETT_T2_DSSD_Y124_E 56.1336 -0.00685234
+MUSETT_T2_DSSD_Y125_E 56.9223 -0.00694849
+MUSETT_T2_DSSD_Y126_E 56.3658 -0.00688053
+MUSETT_T2_DSSD_Y127_E 56.1315 -0.00685163
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..813fd8a1e8b18a6a9f4fece255b4a4222e8d9fa0
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_T 1005.057 -0.113282
+MUSETT_T2_DSSD_X1_T 1024.643 -0.112935
+MUSETT_T2_DSSD_X2_T 986.354 -0.113903
+MUSETT_T2_DSSD_X3_T 995.274 -0.11541
+MUSETT_T2_DSSD_X4_T 998.065 -0.114834
+MUSETT_T2_DSSD_X5_T 1012.746 -0.116968
+MUSETT_T2_DSSD_X6_T 1039.176 -0.116144
+MUSETT_T2_DSSD_X7_T 1055.919 -0.116738
+MUSETT_T2_DSSD_X8_T 1024.818 -0.115736
+MUSETT_T2_DSSD_X9_T 1041.025 -0.117191
+MUSETT_T2_DSSD_X10_T 1055.419 -0.117505
+MUSETT_T2_DSSD_X11_T 1057.127 -0.116868
+MUSETT_T2_DSSD_X12_T 1050.195 -0.117596
+MUSETT_T2_DSSD_X13_T 1038.03 -0.116864
+MUSETT_T2_DSSD_X14_T 1061.15 -0.116934
+MUSETT_T2_DSSD_X15_T 1412.756 -0.118078
+MUSETT_T2_DSSD_X16_T 988.528 -0.111042
+MUSETT_T2_DSSD_X17_T 1014.262 -0.1129
+MUSETT_T2_DSSD_X18_T 995.412 -0.113239
+MUSETT_T2_DSSD_X19_T 1001.287 -0.11311
+MUSETT_T2_DSSD_X20_T 1023.95 -0.114433
+MUSETT_T2_DSSD_X21_T 1029.883 -0.113893
+MUSETT_T2_DSSD_X22_T 1016.473 -0.113604
+MUSETT_T2_DSSD_X23_T 1036.305 -0.114596
+MUSETT_T2_DSSD_X24_T 1016.128 -0.113523
+MUSETT_T2_DSSD_X25_T 1032.235 -0.114529
+MUSETT_T2_DSSD_X26_T 1018.109 -0.114587
+MUSETT_T2_DSSD_X27_T 989.033 -0.114127
+MUSETT_T2_DSSD_X28_T 1003.878 -0.115049
+MUSETT_T2_DSSD_X29_T 985.429 -0.114577
+MUSETT_T2_DSSD_X30_T 1031.085 -0.114801
+MUSETT_T2_DSSD_X31_T 1143.284 -0.114725
+MUSETT_T2_DSSD_X32_T 915.358 -0.106884
+MUSETT_T2_DSSD_X33_T 922.985 -0.106588
+MUSETT_T2_DSSD_X34_T 943.57 -0.10771
+MUSETT_T2_DSSD_X35_T 943.472 -0.10739
+MUSETT_T2_DSSD_X36_T 961.3 -0.109058
+MUSETT_T2_DSSD_X37_T 944.732 -0.108685
+MUSETT_T2_DSSD_X38_T 948.953 -0.109605
+MUSETT_T2_DSSD_X39_T 956.233 -0.109211
+MUSETT_T2_DSSD_X40_T 952.436 -0.109168
+MUSETT_T2_DSSD_X41_T 976.11 -0.109617
+MUSETT_T2_DSSD_X42_T 998.27 -0.1104
+MUSETT_T2_DSSD_X43_T 993.377 -0.110254
+MUSETT_T2_DSSD_X44_T 980.663 -0.111219
+MUSETT_T2_DSSD_X45_T 971.875 -0.111043
+MUSETT_T2_DSSD_X46_T 974.772 -0.111378
+MUSETT_T2_DSSD_X47_T 1347.092 -0.11089
+MUSETT_T2_DSSD_X48_T 909.603 -0.102956
+MUSETT_T2_DSSD_X49_T 903.729 -0.104191
+MUSETT_T2_DSSD_X50_T 936.844 -0.105362
+MUSETT_T2_DSSD_X51_T 927.243 -0.10464
+MUSETT_T2_DSSD_X52_T 950.69 -0.105723
+MUSETT_T2_DSSD_X53_T 957.281 -0.105755
+MUSETT_T2_DSSD_X54_T 942.681 -0.105984
+MUSETT_T2_DSSD_X55_T 951.359 -0.106931
+MUSETT_T2_DSSD_X56_T 933.36 -0.108024
+MUSETT_T2_DSSD_X57_T 952.824 -0.108307
+MUSETT_T2_DSSD_X58_T 954.213 -0.107279
+MUSETT_T2_DSSD_X59_T 958.465 -0.108543
+MUSETT_T2_DSSD_X60_T 977.15 -0.108721
+MUSETT_T2_DSSD_X61_T 967.709 -0.108665
+MUSETT_T2_DSSD_X62_T 952.646 -0.10824
+MUSETT_T2_DSSD_X63_T 1310.218 -0.107885
+MUSETT_T2_DSSD_X64_T 1001.233 -0.117533
+MUSETT_T2_DSSD_X65_T 1003.211 -0.117545
+MUSETT_T2_DSSD_X66_T 1066.041 -0.118957
+MUSETT_T2_DSSD_X67_T 1024.957 -0.119584
+MUSETT_T2_DSSD_X68_T 1432.499 -0.119902
+MUSETT_T2_DSSD_X69_T 1033.43 -0.12002
+MUSETT_T2_DSSD_X70_T 1042.557 -0.120171
+MUSETT_T2_DSSD_X71_T 1059.805 -0.120802
+MUSETT_T2_DSSD_X72_T 1047.622 -0.119977
+MUSETT_T2_DSSD_X73_T 1025.939 -0.12102
+MUSETT_T2_DSSD_X74_T 1025.453 -0.12055
+MUSETT_T2_DSSD_X75_T 1024.259 -0.12048
+MUSETT_T2_DSSD_X76_T 1042.813 -0.121688
+MUSETT_T2_DSSD_X77_T 1043.519 -0.122136
+MUSETT_T2_DSSD_X78_T 1037.818 -0.122472
+MUSETT_T2_DSSD_X79_T 1330.974 -0.121488
+MUSETT_T2_DSSD_X80_T 969.937 -0.115148
+MUSETT_T2_DSSD_X81_T 981.206 -0.116512
+MUSETT_T2_DSSD_X82_T 994.193 -0.116735
+MUSETT_T2_DSSD_X83_T 1005.358 -0.117158
+MUSETT_T2_DSSD_X84_T 997.839 -0.117159
+MUSETT_T2_DSSD_X85_T 1000.082 -0.117336
+MUSETT_T2_DSSD_X86_T 1010.191 -0.118997
+MUSETT_T2_DSSD_X87_T 1028.329 -0.118879
+MUSETT_T2_DSSD_X88_T 1054.676 -0.120152
+MUSETT_T2_DSSD_X89_T 1035.166 -0.120143
+MUSETT_T2_DSSD_X90_T 1041.703 -0.120011
+MUSETT_T2_DSSD_X91_T 1016.252 -0.118788
+MUSETT_T2_DSSD_X92_T 1058.261 -0.120614
+MUSETT_T2_DSSD_X93_T 1073.091 -0.12112
+MUSETT_T2_DSSD_X94_T 1067.441 -0.12123
+MUSETT_T2_DSSD_X95_T 1030.954 -0.119394
+MUSETT_T2_DSSD_X96_T 980.425 -0.10895
+MUSETT_T2_DSSD_X97_T 977.496 -0.11099
+MUSETT_T2_DSSD_X98_T 976.422 -0.110483
+MUSETT_T2_DSSD_X99_T 938.171 -0.110494
+MUSETT_T2_DSSD_X100_T 972.45 -0.11163
+MUSETT_T2_DSSD_X101_T 987.496 -0.111573
+MUSETT_T2_DSSD_X102_T 973.077 -0.111368
+MUSETT_T2_DSSD_X103_T 978.656 -0.111888
+MUSETT_T2_DSSD_X104_T 992.736 -0.113122
+MUSETT_T2_DSSD_X105_T 1000.584 -0.112764
+MUSETT_T2_DSSD_X106_T 994.741 -0.113373
+MUSETT_T2_DSSD_X107_T 982.648 -0.112797
+MUSETT_T2_DSSD_X108_T 1002.384 -0.113176
+MUSETT_T2_DSSD_X109_T 1011.342 -0.113973
+MUSETT_T2_DSSD_X110_T 989.99 -0.114066
+MUSETT_T2_DSSD_X111_T 965.353 -0.113973
+MUSETT_T2_DSSD_X112_T 933.237 -0.108961
+MUSETT_T2_DSSD_X113_T 944.972 -0.109531
+MUSETT_T2_DSSD_X114_T 978.071 -0.110461
+MUSETT_T2_DSSD_X115_T 973.41 -0.110414
+MUSETT_T2_DSSD_X116_T 979.34 -0.112323
+MUSETT_T2_DSSD_X117_T 982.649 -0.11267
+MUSETT_T2_DSSD_X118_T 1013.146 -0.113333
+MUSETT_T2_DSSD_X119_T 1009.728 -0.113698
+MUSETT_T2_DSSD_X120_T 991.043 -0.113666
+MUSETT_T2_DSSD_X121_T 1014.817 -0.114745
+MUSETT_T2_DSSD_X122_T 991.147 -0.113673
+MUSETT_T2_DSSD_X123_T 1008.74 -0.11443
+MUSETT_T2_DSSD_X124_T 975.958 -0.113174
+MUSETT_T2_DSSD_X125_T 972.192 -0.113143
+MUSETT_T2_DSSD_X126_T 1017.521 -0.114176
+MUSETT_T2_DSSD_X127_T 1021.168 -0.114186
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..97fbb2e2f0571869ec4ded464f0f4a373f9a69df
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_T 1035.908 -0.119525
+MUSETT_T2_DSSD_Y1_T 1035.229 -0.119903
+MUSETT_T2_DSSD_Y2_T 1030.146 -0.119776
+MUSETT_T2_DSSD_Y3_T 1040.541 -0.120524
+MUSETT_T2_DSSD_Y4_T 1061.612 -0.121165
+MUSETT_T2_DSSD_Y5_T 1044.106 -0.120947
+MUSETT_T2_DSSD_Y6_T 1037.447 -0.121526
+MUSETT_T2_DSSD_Y7_T 1044.705 -0.122366
+MUSETT_T2_DSSD_Y8_T 1042.269 -0.122539
+MUSETT_T2_DSSD_Y9_T 1052.929 -0.121307
+MUSETT_T2_DSSD_Y10_T 1040.257 -0.122275
+MUSETT_T2_DSSD_Y11_T 1053.327 -0.122898
+MUSETT_T2_DSSD_Y12_T 1086.343 -0.12312
+MUSETT_T2_DSSD_Y13_T 1064.505 -0.123746
+MUSETT_T2_DSSD_Y14_T 1059.405 -0.123621
+MUSETT_T2_DSSD_Y15_T 1052.538 -0.123744
+MUSETT_T2_DSSD_Y16_T 953.784 -0.113632
+MUSETT_T2_DSSD_Y17_T 960.621 -0.11359
+MUSETT_T2_DSSD_Y18_T 967.342 -0.113546
+MUSETT_T2_DSSD_Y19_T 983.341 -0.113526
+MUSETT_T2_DSSD_Y20_T 1008.293 -0.115367
+MUSETT_T2_DSSD_Y21_T 987.244 -0.117305
+MUSETT_T2_DSSD_Y22_T 994.386 -0.11682
+MUSETT_T2_DSSD_Y23_T 1011.751 -0.116216
+MUSETT_T2_DSSD_Y24_T 997.764 -0.118134
+MUSETT_T2_DSSD_Y25_T 1011.927 -0.118446
+MUSETT_T2_DSSD_Y26_T 1008.984 -0.117858
+MUSETT_T2_DSSD_Y27_T 1019.345 -0.11895
+MUSETT_T2_DSSD_Y28_T 1028.958 -0.118238
+MUSETT_T2_DSSD_Y29_T 1015.531 -0.118468
+MUSETT_T2_DSSD_Y30_T 1040.905 -0.118337
+MUSETT_T2_DSSD_Y31_T 1020.688 -0.116905
+MUSETT_T2_DSSD_Y32_T 900.332 -0.105393
+MUSETT_T2_DSSD_Y33_T 903.961 -0.106206
+MUSETT_T2_DSSD_Y34_T 937.106 -0.107711
+MUSETT_T2_DSSD_Y35_T 931.581 -0.10786
+MUSETT_T2_DSSD_Y36_T 949.203 -0.108297
+MUSETT_T2_DSSD_Y37_T 933.017 -0.107628
+MUSETT_T2_DSSD_Y38_T 942.778 -0.109574
+MUSETT_T2_DSSD_Y39_T 955.834 -0.109401
+MUSETT_T2_DSSD_Y40_T 947.911 -0.109756
+MUSETT_T2_DSSD_Y41_T 970.351 -0.110304
+MUSETT_T2_DSSD_Y42_T 955.445 -0.10979
+MUSETT_T2_DSSD_Y43_T 969.669 -0.110231
+MUSETT_T2_DSSD_Y44_T 972.489 -0.110532
+MUSETT_T2_DSSD_Y45_T 965.057 -0.110907
+MUSETT_T2_DSSD_Y46_T 972.835 -0.111371
+MUSETT_T2_DSSD_Y47_T 974.402 -0.110791
+MUSETT_T2_DSSD_Y48_T 927.359 -0.108016
+MUSETT_T2_DSSD_Y49_T 933.667 -0.109155
+MUSETT_T2_DSSD_Y50_T 930.706 -0.108834
+MUSETT_T2_DSSD_Y51_T 969.179 -0.110471
+MUSETT_T2_DSSD_Y52_T 968.793 -0.109622
+MUSETT_T2_DSSD_Y53_T 960.253 -0.110708
+MUSETT_T2_DSSD_Y54_T 971.112 -0.111116
+MUSETT_T2_DSSD_Y55_T 976.686 -0.11061
+MUSETT_T2_DSSD_Y56_T 969.21 -0.11216
+MUSETT_T2_DSSD_Y57_T 970.703 -0.111079
+MUSETT_T2_DSSD_Y58_T 963.371 -0.111393
+MUSETT_T2_DSSD_Y59_T 966.587 -0.11168
+MUSETT_T2_DSSD_Y60_T 1008.048 -0.11386
+MUSETT_T2_DSSD_Y61_T 971.868 -0.112068
+MUSETT_T2_DSSD_Y62_T 971.445 -0.111623
+MUSETT_T2_DSSD_Y63_T 976.206 -0.112593
+MUSETT_T2_DSSD_Y64_T 958.105 -0.111864
+MUSETT_T2_DSSD_Y65_T 963.914 -0.114242
+MUSETT_T2_DSSD_Y66_T 986.377 -0.114763
+MUSETT_T2_DSSD_Y67_T 987.384 -0.114477
+MUSETT_T2_DSSD_Y68_T 1011.261 -0.117701
+MUSETT_T2_DSSD_Y69_T 998.967 -0.116242
+MUSETT_T2_DSSD_Y70_T 998.106 -0.117144
+MUSETT_T2_DSSD_Y71_T 1003.636 -0.116783
+MUSETT_T2_DSSD_Y72_T 998.423 -0.115747
+MUSETT_T2_DSSD_Y73_T 1015.355 -0.115989
+MUSETT_T2_DSSD_Y74_T 1010.918 -0.116762
+MUSETT_T2_DSSD_Y75_T 1047.851 -0.118324
+MUSETT_T2_DSSD_Y76_T 1043.058 -0.117892
+MUSETT_T2_DSSD_Y77_T 1049.552 -0.118194
+MUSETT_T2_DSSD_Y78_T 1006.326 -0.117092
+MUSETT_T2_DSSD_Y79_T 1027.168 -0.117343
+MUSETT_T2_DSSD_Y80_T 997.413 -0.114246
+MUSETT_T2_DSSD_Y81_T 977.178 -0.113582
+MUSETT_T2_DSSD_Y82_T 1004.205 -0.115097
+MUSETT_T2_DSSD_Y83_T 996.957 -0.114574
+MUSETT_T2_DSSD_Y84_T 1004.96 -0.115653
+MUSETT_T2_DSSD_Y85_T 1015.959 -0.11692
+MUSETT_T2_DSSD_Y86_T 1002.949 -0.116695
+MUSETT_T2_DSSD_Y87_T 1035.062 -0.117388
+MUSETT_T2_DSSD_Y88_T 1004.289 -0.117739
+MUSETT_T2_DSSD_Y89_T 1017.427 -0.11797
+MUSETT_T2_DSSD_Y90_T 1026.009 -0.118525
+MUSETT_T2_DSSD_Y91_T 1005.017 -0.117371
+MUSETT_T2_DSSD_Y92_T 1031.886 -0.118331
+MUSETT_T2_DSSD_Y93_T 1012.702 -0.118283
+MUSETT_T2_DSSD_Y94_T 1031.697 -0.119174
+MUSETT_T2_DSSD_Y95_T 1021.741 -0.119806
+MUSETT_T2_DSSD_Y96_T 920.389 -0.108639
+MUSETT_T2_DSSD_Y97_T 906.063 -0.108189
+MUSETT_T2_DSSD_Y98_T 930.547 -0.109474
+MUSETT_T2_DSSD_Y99_T 932.877 -0.109308
+MUSETT_T2_DSSD_Y100_T 957.336 -0.110997
+MUSETT_T2_DSSD_Y101_T 980.502 -0.111938
+MUSETT_T2_DSSD_Y102_T 951.613 -0.110746
+MUSETT_T2_DSSD_Y103_T 975.319 -0.112691
+MUSETT_T2_DSSD_Y104_T 966.442 -0.112025
+MUSETT_T2_DSSD_Y105_T 968.892 -0.111507
+MUSETT_T2_DSSD_Y106_T 966.716 -0.111663
+MUSETT_T2_DSSD_Y107_T 966.437 -0.111623
+MUSETT_T2_DSSD_Y108_T 980.668 -0.112066
+MUSETT_T2_DSSD_Y109_T 970.782 -0.11214
+MUSETT_T2_DSSD_Y110_T 945.838 -0.111703
+MUSETT_T2_DSSD_Y111_T 936.338 -0.110525
+MUSETT_T2_DSSD_Y112_T 877.948 -0.102981
+MUSETT_T2_DSSD_Y113_T 897.823 -0.104976
+MUSETT_T2_DSSD_Y114_T 907.501 -0.105936
+MUSETT_T2_DSSD_Y115_T 917.812 -0.10575
+MUSETT_T2_DSSD_Y116_T 919.383 -0.106741
+MUSETT_T2_DSSD_Y117_T 919.032 -0.10628
+MUSETT_T2_DSSD_Y118_T 942.158 -0.107805
+MUSETT_T2_DSSD_Y119_T 933.057 -0.107966
+MUSETT_T2_DSSD_Y120_T 912.799 -0.106759
+MUSETT_T2_DSSD_Y121_T 947.398 -0.108381
+MUSETT_T2_DSSD_Y122_T 938.596 -0.108195
+MUSETT_T2_DSSD_Y123_T 1336.257 -0.108195
+MUSETT_T2_DSSD_Y124_T 938.061 -0.108519
+MUSETT_T2_DSSD_Y125_T 922.884 -0.10863
+MUSETT_T2_DSSD_Y126_T 926.419 -0.108768
+MUSETT_T2_DSSD_Y127_T 929.386 -0.108297
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..9b1188dc24eb87c8f4aa948cf40caaf52948952b
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E -62.3454 0.0076104399999999996
+MUSETT_T3_DSSD_X1_E -61.8634 0.0075515999999999995
+MUSETT_T3_DSSD_X2_E -62.1811 0.00759039
+MUSETT_T3_DSSD_X3_E -62.2796 0.00760252
+MUSETT_T3_DSSD_X4_E -61.9552 0.00756278
+MUSETT_T3_DSSD_X5_E -61.871 0.00755217
+MUSETT_T3_DSSD_X6_E -62.0777 0.0075777
+MUSETT_T3_DSSD_X7_E -61.6284 0.00752262
+MUSETT_T3_DSSD_X8_E -61.7616 0.00753889
+MUSETT_T3_DSSD_X9_E -61.847300000000004 0.00754932
+MUSETT_T3_DSSD_X10_E -61.774 0.00754014
+MUSETT_T3_DSSD_X11_E -62.9319 0.00768219
+MUSETT_T3_DSSD_X12_E -61.6179 0.00752151
+MUSETT_T3_DSSD_X13_E -61.8209 0.00754591
+MUSETT_T3_DSSD_X14_E -61.6738 0.0075285099999999995
+MUSETT_T3_DSSD_X15_E -62.5931 0.00764028
+MUSETT_T3_DSSD_X16_E -63.651300000000006 0.00776933
+MUSETT_T3_DSSD_X17_E -63.0399 0.00769489
+MUSETT_T3_DSSD_X18_E -62.9395 0.00768245
+MUSETT_T3_DSSD_X19_E -62.774300000000004 0.00766224
+MUSETT_T3_DSSD_X20_E -62.597 0.00764034
+MUSETT_T3_DSSD_X21_E -63.119099999999996 0.0077046200000000006
+MUSETT_T3_DSSD_X22_E -64.027 0.00781704
+MUSETT_T3_DSSD_X23_E -63.7683 0.00778409
+MUSETT_T3_DSSD_X24_E -62.735800000000005 0.00765836
+MUSETT_T3_DSSD_X25_E -63.4936 0.00775031
+MUSETT_T3_DSSD_X26_E -63.5509 0.00775727
+MUSETT_T3_DSSD_X27_E -63.3336 0.007730470000000001
+MUSETT_T3_DSSD_X28_E -63.4719 0.00774798
+MUSETT_T3_DSSD_X29_E -63.5336 0.0077557400000000006
+MUSETT_T3_DSSD_X30_E -64.51559999999999 0.00787525
+MUSETT_T3_DSSD_X31_E -63.6669 0.00777214
+MUSETT_T3_DSSD_X32_E -59.249199999999995 0.007233259999999999
+MUSETT_T3_DSSD_X33_E -59.097199999999994 0.00721503
+MUSETT_T3_DSSD_X34_E -58.0398 0.00708575
+MUSETT_T3_DSSD_X35_E -58.2015 0.00710525
+MUSETT_T3_DSSD_X36_E -58.6881 0.00716476
+MUSETT_T3_DSSD_X37_E -58.919 0.00719282
+MUSETT_T3_DSSD_X38_E -59.207699999999996 0.00722788
+MUSETT_T3_DSSD_X39_E -58.6177 0.00715599
+MUSETT_T3_DSSD_X40_E -59.1667 0.0072228399999999995
+MUSETT_T3_DSSD_X41_E -58.8419 0.00718358
+MUSETT_T3_DSSD_X42_E -58.957699999999996 0.00719746
+MUSETT_T3_DSSD_X43_E -10.0 0.0
+MUSETT_T3_DSSD_X44_E -59.2036 0.007227470000000001
+MUSETT_T3_DSSD_X45_E -59.3219 0.0072412200000000005
+MUSETT_T3_DSSD_X46_E -58.7385 0.0071700900000000005
+MUSETT_T3_DSSD_X47_E -59.1352 0.00721821
+MUSETT_T3_DSSD_X48_E -57.337 0.00699885
+MUSETT_T3_DSSD_X49_E -57.1053 0.00697094
+MUSETT_T3_DSSD_X50_E -56.852599999999995 0.00693986
+MUSETT_T3_DSSD_X51_E -57.1239 0.00697353
+MUSETT_T3_DSSD_X52_E -56.902800000000006 0.00694725
+MUSETT_T3_DSSD_X53_E -57.3476 0.00700123
+MUSETT_T3_DSSD_X54_E -56.6641 0.00691725
+MUSETT_T3_DSSD_X55_E -57.2266 0.006986849999999999
+MUSETT_T3_DSSD_X56_E -57.5807 0.0070296
+MUSETT_T3_DSSD_X57_E -56.509800000000006 0.00689853
+MUSETT_T3_DSSD_X58_E -57.4386 0.00701266
+MUSETT_T3_DSSD_X59_E -57.046800000000005 0.00696439
+MUSETT_T3_DSSD_X60_E -56.283199999999994 0.00687125
+MUSETT_T3_DSSD_X61_E -56.778800000000004 0.006931720000000001
+MUSETT_T3_DSSD_X62_E -56.6345 0.006914920000000001
+MUSETT_T3_DSSD_X63_E -56.434400000000004 0.006890240000000001
+MUSETT_T3_DSSD_X64_E -64.201 0.00783647
+MUSETT_T3_DSSD_X65_E -63.8189 0.00779071
+MUSETT_T3_DSSD_X66_E -63.593300000000006 0.0077629000000000005
+MUSETT_T3_DSSD_X67_E -63.735 0.00777947
+MUSETT_T3_DSSD_X68_E -63.6611 0.007770330000000001
+MUSETT_T3_DSSD_X69_E -63.245 0.00771983
+MUSETT_T3_DSSD_X70_E -64.3478 0.00785448
+MUSETT_T3_DSSD_X71_E -62.471 0.007625829999999999
+MUSETT_T3_DSSD_X72_E -62.6655 0.00764955
+MUSETT_T3_DSSD_X73_E -62.9784 0.007687579999999999
+MUSETT_T3_DSSD_X74_E -63.1195 0.007704519999999999
+MUSETT_T3_DSSD_X75_E -63.3902 0.00773771
+MUSETT_T3_DSSD_X76_E -64.1306 0.007828
+MUSETT_T3_DSSD_X77_E -62.469300000000004 0.00762517
+MUSETT_T3_DSSD_X78_E -62.6117 0.0076422999999999994
+MUSETT_T3_DSSD_X79_E -62.988099999999996 0.007688550000000001
+MUSETT_T3_DSSD_X80_E -62.477199999999996 0.0076262
+MUSETT_T3_DSSD_X81_E -62.7775 0.007663140000000001
+MUSETT_T3_DSSD_X82_E -62.7052 0.00765399
+MUSETT_T3_DSSD_X83_E -62.6456 0.00764655
+MUSETT_T3_DSSD_X84_E -62.0385 0.00757247
+MUSETT_T3_DSSD_X85_E -62.4615 0.00762416
+MUSETT_T3_DSSD_X86_E -62.435900000000004 0.00762103
+MUSETT_T3_DSSD_X87_E -62.138400000000004 0.00758521
+MUSETT_T3_DSSD_X88_E -62.2942 0.00760396
+MUSETT_T3_DSSD_X89_E -62.708800000000004 0.00765519
+MUSETT_T3_DSSD_X90_E -62.352199999999996 0.007611
+MUSETT_T3_DSSD_X91_E -62.0096 0.007569569999999999
+MUSETT_T3_DSSD_X92_E -62.8074 0.00766718
+MUSETT_T3_DSSD_X93_E -62.5507 0.00763529
+MUSETT_T3_DSSD_X94_E -62.1641 0.0075882
+MUSETT_T3_DSSD_X95_E -62.407300000000006 0.007617479999999999
+MUSETT_T3_DSSD_X96_E -56.1247 0.0068501099999999995
+MUSETT_T3_DSSD_X97_E -55.925 0.0068266
+MUSETT_T3_DSSD_X98_E -55.174099999999996 0.00673479
+MUSETT_T3_DSSD_X99_E -55.743 0.0068047
+MUSETT_T3_DSSD_X100_E -56.1046 0.00684875
+MUSETT_T3_DSSD_X101_E -55.9227 0.00682573
+MUSETT_T3_DSSD_X102_E -55.941 0.00682888
+MUSETT_T3_DSSD_X103_E -55.2615 0.0067447
+MUSETT_T3_DSSD_X104_E -55.5471 0.006779899999999999
+MUSETT_T3_DSSD_X105_E -55.994800000000005 0.0068350799999999995
+MUSETT_T3_DSSD_X106_E -55.8782 0.00682019
+MUSETT_T3_DSSD_X107_E -55.7408 0.00680375
+MUSETT_T3_DSSD_X108_E -56.8994 0.006945509999999999
+MUSETT_T3_DSSD_X109_E -56.2764 0.00686962
+MUSETT_T3_DSSD_X110_E -55.830400000000004 0.006814359999999999
+MUSETT_T3_DSSD_X111_E -55.749199999999995 0.00680431
+MUSETT_T3_DSSD_X112_E -57.546800000000005 0.00702514
+MUSETT_T3_DSSD_X113_E -56.9555 0.00695237
+MUSETT_T3_DSSD_X114_E -57.536300000000004 0.00702336
+MUSETT_T3_DSSD_X115_E -56.899800000000006 0.00694606
+MUSETT_T3_DSSD_X116_E -58.093599999999995 0.00709129
+MUSETT_T3_DSSD_X117_E -57.1965 0.0069822899999999995
+MUSETT_T3_DSSD_X118_E -57.4621 0.00701442
+MUSETT_T3_DSSD_X119_E -56.3701 0.00688115
+MUSETT_T3_DSSD_X120_E -56.7872 0.006931860000000001
+MUSETT_T3_DSSD_X121_E -57.91 0.007068990000000001
+MUSETT_T3_DSSD_X122_E -57.4735 0.0070155700000000005
+MUSETT_T3_DSSD_X123_E -57.0592 0.0069651800000000005
+MUSETT_T3_DSSD_X124_E -57.6708 0.0070396700000000005
+MUSETT_T3_DSSD_X125_E -56.7384 0.00692521
+MUSETT_T3_DSSD_X126_E -57.8611 0.0070623100000000005
+MUSETT_T3_DSSD_X127_E -56.5574 0.0069035500000000005
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e606205a9d0148e6dbdb2fecc1194d299fde685b
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_E 60.0329 -0.007327709999999999
+MUSETT_T3_DSSD_Y1_E 58.8808 -0.00718699
+MUSETT_T3_DSSD_Y2_E 60.0231 -0.0073265399999999994
+MUSETT_T3_DSSD_Y3_E 59.9048 -0.0073121900000000005
+MUSETT_T3_DSSD_Y4_E 59.7473 -0.00729256
+MUSETT_T3_DSSD_Y5_E 60.0448 -0.0073285
+MUSETT_T3_DSSD_Y6_E 59.6746 -0.00728351
+MUSETT_T3_DSSD_Y7_E 60.089 -0.00733432
+MUSETT_T3_DSSD_Y8_E 60.3902 -0.00737087
+MUSETT_T3_DSSD_Y9_E 60.3245 -0.00736226
+MUSETT_T3_DSSD_Y10_E 60.063 -0.00733084
+MUSETT_T3_DSSD_Y11_E 59.746 -0.00729223
+MUSETT_T3_DSSD_Y12_E 59.628699999999995 -0.00727802
+MUSETT_T3_DSSD_Y13_E 59.605599999999995 -0.00727604
+MUSETT_T3_DSSD_Y14_E 60.513400000000004 -0.007386370000000001
+MUSETT_T3_DSSD_Y15_E 59.7058 -0.0072876799999999995
+MUSETT_T3_DSSD_Y16_E 62.8992 -0.00767713
+MUSETT_T3_DSSD_Y17_E 63.0672 -0.0076976300000000004
+MUSETT_T3_DSSD_Y18_E 62.1649 -0.00758739
+MUSETT_T3_DSSD_Y19_E 62.6449 -0.0076462000000000006
+MUSETT_T3_DSSD_Y20_E 63.1556 -0.00770868
+MUSETT_T3_DSSD_Y21_E 63.476699999999994 -0.0077476
+MUSETT_T3_DSSD_Y22_E 62.9093 -0.0076780400000000006
+MUSETT_T3_DSSD_Y23_E 62.9228 -0.0076801199999999995
+MUSETT_T3_DSSD_Y24_E 63.4611 -0.0077455
+MUSETT_T3_DSSD_Y25_E 63.380900000000004 -0.007736379999999999
+MUSETT_T3_DSSD_Y26_E 62.5085 -0.00762917
+MUSETT_T3_DSSD_Y27_E 63.3624 -0.00773365
+MUSETT_T3_DSSD_Y28_E 62.4582 -0.00762392
+MUSETT_T3_DSSD_Y29_E 62.8858 -0.00767565
+MUSETT_T3_DSSD_Y30_E 63.0297 -0.00769335
+MUSETT_T3_DSSD_Y31_E 62.9235 -0.00768066
+MUSETT_T3_DSSD_Y32_E 56.0742 -0.00684465
+MUSETT_T3_DSSD_Y33_E 56.1502 -0.00685354
+MUSETT_T3_DSSD_Y34_E 55.7894 -0.00680959
+MUSETT_T3_DSSD_Y35_E 55.6388 -0.0067909699999999995
+MUSETT_T3_DSSD_Y36_E 55.6903 -0.0067972
+MUSETT_T3_DSSD_Y37_E 56.1727 -0.006856340000000001
+MUSETT_T3_DSSD_Y38_E 55.8889 -0.00682181
+MUSETT_T3_DSSD_Y39_E 55.509 -0.00677536
+MUSETT_T3_DSSD_Y40_E 55.3116 -0.006750600000000001
+MUSETT_T3_DSSD_Y41_E 56.115300000000005 -0.00684918
+MUSETT_T3_DSSD_Y42_E 55.9155 -0.0068248
+MUSETT_T3_DSSD_Y43_E 55.329 -0.0067532899999999995
+MUSETT_T3_DSSD_Y44_E 55.6695 -0.00679444
+MUSETT_T3_DSSD_Y45_E 55.588699999999996 -0.00678496
+MUSETT_T3_DSSD_Y46_E 55.898 -0.0068231
+MUSETT_T3_DSSD_Y47_E 55.7962 -0.00681045
+MUSETT_T3_DSSD_Y48_E 56.642199999999995 -0.0069143600000000005
+MUSETT_T3_DSSD_Y49_E 56.9913 -0.00695514
+MUSETT_T3_DSSD_Y50_E 57.0754 -0.00696596
+MUSETT_T3_DSSD_Y51_E 56.8542 -0.00693952
+MUSETT_T3_DSSD_Y52_E 56.4075 -0.00688481
+MUSETT_T3_DSSD_Y53_E 56.9334 -0.00694974
+MUSETT_T3_DSSD_Y54_E 56.603199999999994 -0.0069089
+MUSETT_T3_DSSD_Y55_E 56.9847 -0.00695558
+MUSETT_T3_DSSD_Y56_E 56.9811 -0.0069557
+MUSETT_T3_DSSD_Y57_E 56.5146 -0.00689801
+MUSETT_T3_DSSD_Y58_E 57.4491 -0.007012190000000001
+MUSETT_T3_DSSD_Y59_E 56.938199999999995 -0.00694962
+MUSETT_T3_DSSD_Y60_E 57.8954 -0.0070662
+MUSETT_T3_DSSD_Y61_E 57.0338 -0.00696212
+MUSETT_T3_DSSD_Y62_E 56.704 -0.00692109
+MUSETT_T3_DSSD_Y63_E 57.3909 -0.00700491
+MUSETT_T3_DSSD_Y64_E 59.3865 -0.00724871
+MUSETT_T3_DSSD_Y65_E 60.032 -0.007326640000000001
+MUSETT_T3_DSSD_Y66_E 59.4611 -0.00725777
+MUSETT_T3_DSSD_Y67_E 59.2943 -0.0072374299999999996
+MUSETT_T3_DSSD_Y68_E 59.3633 -0.00724565
+MUSETT_T3_DSSD_Y69_E 58.6689 -0.00716081
+MUSETT_T3_DSSD_Y70_E 59.1782 -0.00722299
+MUSETT_T3_DSSD_Y71_E 59.8785 -0.00730862
+MUSETT_T3_DSSD_Y72_E 60.0806 -0.0073331099999999995
+MUSETT_T3_DSSD_Y73_E 59.5259 -0.00726506
+MUSETT_T3_DSSD_Y74_E 59.4035 -0.00725068
+MUSETT_T3_DSSD_Y75_E 59.501400000000004 -0.007262520000000001
+MUSETT_T3_DSSD_Y76_E 59.5049 -0.00726298
+MUSETT_T3_DSSD_Y77_E 59.322 -0.0072407899999999996
+MUSETT_T3_DSSD_Y78_E 59.1142 -0.007214839999999999
+MUSETT_T3_DSSD_Y79_E 59.9343 -0.00731545
+MUSETT_T3_DSSD_Y80_E 62.786300000000004 -0.00766418
+MUSETT_T3_DSSD_Y81_E 62.688199999999995 -0.00765225
+MUSETT_T3_DSSD_Y82_E 62.484300000000005 -0.00762731
+MUSETT_T3_DSSD_Y83_E 62.1117 -0.00758204
+MUSETT_T3_DSSD_Y84_E 62.0189 -0.00757048
+MUSETT_T3_DSSD_Y85_E 62.7224 -0.00765547
+MUSETT_T3_DSSD_Y86_E 62.2116 -0.0075937900000000004
+MUSETT_T3_DSSD_Y87_E 62.970099999999995 -0.0076868299999999995
+MUSETT_T3_DSSD_Y88_E 62.6058 -0.00764201
+MUSETT_T3_DSSD_Y89_E 62.4711 -0.00762554
+MUSETT_T3_DSSD_Y90_E 61.773900000000005 -0.007540130000000001
+MUSETT_T3_DSSD_Y91_E 61.966 -0.00756438
+MUSETT_T3_DSSD_Y92_E 61.829699999999995 -0.00754636
+MUSETT_T3_DSSD_Y93_E 62.107 -0.00758056
+MUSETT_T3_DSSD_Y94_E 61.9468 -0.00756126
+MUSETT_T3_DSSD_Y95_E 61.7618 -0.0075396099999999995
+MUSETT_T3_DSSD_Y96_E 56.6782 -0.0069178
+MUSETT_T3_DSSD_Y97_E 56.796099999999996 -0.00693199
+MUSETT_T3_DSSD_Y98_E 56.2539 -0.00686602
+MUSETT_T3_DSSD_Y99_E 55.8918 -0.00682192
+MUSETT_T3_DSSD_Y100_E 56.180099999999996 -0.00685704
+MUSETT_T3_DSSD_Y101_E 56.2205 -0.0068622
+MUSETT_T3_DSSD_Y102_E 55.882 -0.00682088
+MUSETT_T3_DSSD_Y103_E 55.9811 -0.00683279
+MUSETT_T3_DSSD_Y104_E 55.7549 -0.00680516
+MUSETT_T3_DSSD_Y105_E 56.267300000000006 -0.00686773
+MUSETT_T3_DSSD_Y106_E 56.4297 -0.00688763
+MUSETT_T3_DSSD_Y107_E 56.237199999999994 -0.006864220000000001
+MUSETT_T3_DSSD_Y108_E 55.6892 -0.00679724
+MUSETT_T3_DSSD_Y109_E 55.7875 -0.00680907
+MUSETT_T3_DSSD_Y110_E 56.6244 -0.0069112900000000005
+MUSETT_T3_DSSD_Y111_E 56.5673 -0.00690457
+MUSETT_T3_DSSD_Y112_E 57.3063 -0.00699514
+MUSETT_T3_DSSD_Y113_E 57.048300000000005 -0.006964260000000001
+MUSETT_T3_DSSD_Y114_E 56.9765 -0.00695364
+MUSETT_T3_DSSD_Y115_E 56.8484 -0.00693798
+MUSETT_T3_DSSD_Y116_E 57.5818 -0.00702703
+MUSETT_T3_DSSD_Y117_E 57.1503 -0.00697454
+MUSETT_T3_DSSD_Y118_E 56.7087 -0.006920740000000001
+MUSETT_T3_DSSD_Y119_E 57.781 -0.00705185
+MUSETT_T3_DSSD_Y120_E 57.3029 -0.00699462
+MUSETT_T3_DSSD_Y121_E 56.8714 -0.006941340000000001
+MUSETT_T3_DSSD_Y122_E 57.2749 -0.0069901799999999995
+MUSETT_T3_DSSD_Y123_E 56.9214 -0.00694684
+MUSETT_T3_DSSD_Y124_E 57.5959 -0.00703175
+MUSETT_T3_DSSD_Y125_E 56.9185 -0.0069486800000000005
+MUSETT_T3_DSSD_Y126_E 57.363699999999994 -0.00700332
+MUSETT_T3_DSSD_Y127_E 57.3663 -0.007001019999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..28c80df744c991ec8f7ff04f79a49088218299a3
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_T 981.478 -0.113591
+MUSETT_T3_DSSD_X1_T 1013.776 -0.115254
+MUSETT_T3_DSSD_X2_T 992.886 -0.115822
+MUSETT_T3_DSSD_X3_T 1013.44 -0.116042
+MUSETT_T3_DSSD_X4_T 990.472 -0.115096
+MUSETT_T3_DSSD_X5_T 1028.134 -0.11686
+MUSETT_T3_DSSD_X6_T 1024.899 -0.117385
+MUSETT_T3_DSSD_X7_T 993.024 -0.118019
+MUSETT_T3_DSSD_X8_T 998.524 -0.117779
+MUSETT_T3_DSSD_X9_T 1018.624 -0.117496
+MUSETT_T3_DSSD_X10_T 1032.674 -0.117795
+MUSETT_T3_DSSD_X11_T 1034.132 -0.119273
+MUSETT_T3_DSSD_X12_T 1042.32 -0.118031
+MUSETT_T3_DSSD_X13_T 1022.526 -0.118805
+MUSETT_T3_DSSD_X14_T 1008.783 -0.118524
+MUSETT_T3_DSSD_X15_T 1380.253 -0.119127
+MUSETT_T3_DSSD_X16_T 977.848 -0.117029
+MUSETT_T3_DSSD_X17_T 985.148 -0.116582
+MUSETT_T3_DSSD_X18_T 1007.934 -0.11886
+MUSETT_T3_DSSD_X19_T 1034.22 -0.118386
+MUSETT_T3_DSSD_X20_T 1041.452 -0.119229
+MUSETT_T3_DSSD_X21_T 1056.51 -0.120114
+MUSETT_T3_DSSD_X22_T 1040.825 -0.119177
+MUSETT_T3_DSSD_X23_T 1018.903 -0.119693
+MUSETT_T3_DSSD_X24_T 1005.051 -0.119405
+MUSETT_T3_DSSD_X25_T 1017.342 -0.119523
+MUSETT_T3_DSSD_X26_T 1069.305 -0.12115
+MUSETT_T3_DSSD_X27_T 1038.198 -0.120628
+MUSETT_T3_DSSD_X28_T 1056.422 -0.121885
+MUSETT_T3_DSSD_X29_T 1057.034 -0.121035
+MUSETT_T3_DSSD_X30_T 1051.197 -0.121233
+MUSETT_T3_DSSD_X31_T 1061.554 -0.120654
+MUSETT_T3_DSSD_X32_T 932.139 -0.108693
+MUSETT_T3_DSSD_X33_T 935.391 -0.109485
+MUSETT_T3_DSSD_X34_T 925.145 -0.110421
+MUSETT_T3_DSSD_X35_T 925.446 -0.109588
+MUSETT_T3_DSSD_X36_T 942.302 -0.110301
+MUSETT_T3_DSSD_X37_T 964.873 -0.111327
+MUSETT_T3_DSSD_X38_T 959.552 -0.111495
+MUSETT_T3_DSSD_X39_T 961.22 -0.112521
+MUSETT_T3_DSSD_X40_T 958.125 -0.11347
+MUSETT_T3_DSSD_X41_T 958.974 -0.112717
+MUSETT_T3_DSSD_X42_T 959.452 -0.112335
+MUSETT_T3_DSSD_X43_T 450.0 -0.112964
+MUSETT_T3_DSSD_X44_T 963.434 -0.113245
+MUSETT_T3_DSSD_X45_T 964.97 -0.11258
+MUSETT_T3_DSSD_X46_T 990.533 -0.113476
+MUSETT_T3_DSSD_X47_T 978.322 -0.113256
+MUSETT_T3_DSSD_X48_T 902.185 -0.104661
+MUSETT_T3_DSSD_X49_T 904.849 -0.104634
+MUSETT_T3_DSSD_X50_T 911.556 -0.106155
+MUSETT_T3_DSSD_X51_T 912.664 -0.107364
+MUSETT_T3_DSSD_X52_T 918.408 -0.107368
+MUSETT_T3_DSSD_X53_T 910.764 -0.106861
+MUSETT_T3_DSSD_X54_T 909.726 -0.108382
+MUSETT_T3_DSSD_X55_T 922.928 -0.108733
+MUSETT_T3_DSSD_X56_T 913.563 -0.10844
+MUSETT_T3_DSSD_X57_T 950.346 -0.10908
+MUSETT_T3_DSSD_X58_T 931.96 -0.108538
+MUSETT_T3_DSSD_X59_T 931.249 -0.10849
+MUSETT_T3_DSSD_X60_T 924.55 -0.109312
+MUSETT_T3_DSSD_X61_T 915.129 -0.109445
+MUSETT_T3_DSSD_X62_T 911.749 -0.107803
+MUSETT_T3_DSSD_X63_T 953.036 -0.108862
+MUSETT_T3_DSSD_X64_T 1010.103 -0.119126
+MUSETT_T3_DSSD_X65_T 1015.548 -0.119789
+MUSETT_T3_DSSD_X66_T 1031.118 -0.119851
+MUSETT_T3_DSSD_X67_T 1055.182 -0.121753
+MUSETT_T3_DSSD_X68_T 1032.573 -0.121824
+MUSETT_T3_DSSD_X69_T 1014.126 -0.121446
+MUSETT_T3_DSSD_X70_T 1033.269 -0.121893
+MUSETT_T3_DSSD_X71_T 1037.066 -0.122347
+MUSETT_T3_DSSD_X72_T 1040.885 -0.121883
+MUSETT_T3_DSSD_X73_T 1043.891 -0.122684
+MUSETT_T3_DSSD_X74_T 1052.634 -0.123722
+MUSETT_T3_DSSD_X75_T 1066.965 -0.124938
+MUSETT_T3_DSSD_X76_T 1047.918 -0.122709
+MUSETT_T3_DSSD_X77_T 1032.053 -0.12265
+MUSETT_T3_DSSD_X78_T 1059.518 -0.124061
+MUSETT_T3_DSSD_X79_T 1407.005 -0.123313
+MUSETT_T3_DSSD_X80_T 966.252 -0.11381
+MUSETT_T3_DSSD_X81_T 979.589 -0.114558
+MUSETT_T3_DSSD_X82_T 972.243 -0.114986
+MUSETT_T3_DSSD_X83_T 974.391 -0.114804
+MUSETT_T3_DSSD_X84_T 985.895 -0.116619
+MUSETT_T3_DSSD_X85_T 992.12 -0.11693
+MUSETT_T3_DSSD_X86_T 971.958 -0.116299
+MUSETT_T3_DSSD_X87_T 999.22 -0.116863
+MUSETT_T3_DSSD_X88_T 995.257 -0.118161
+MUSETT_T3_DSSD_X89_T 998.809 -0.117687
+MUSETT_T3_DSSD_X90_T 1003.937 -0.118304
+MUSETT_T3_DSSD_X91_T 1015.556 -0.119256
+MUSETT_T3_DSSD_X92_T 1034.492 -0.119241
+MUSETT_T3_DSSD_X93_T 1037.827 -0.119186
+MUSETT_T3_DSSD_X94_T 1016.003 -0.118879
+MUSETT_T3_DSSD_X95_T 1022.41 -0.118278
+MUSETT_T3_DSSD_X96_T 903.34 -0.104124
+MUSETT_T3_DSSD_X97_T 908.659 -0.104728
+MUSETT_T3_DSSD_X98_T 911.833 -0.104753
+MUSETT_T3_DSSD_X99_T 935.021 -0.105492
+MUSETT_T3_DSSD_X100_T 920.352 -0.106693
+MUSETT_T3_DSSD_X101_T 903.814 -0.10614
+MUSETT_T3_DSSD_X102_T 915.26 -0.106708
+MUSETT_T3_DSSD_X103_T 910.919 -0.106567
+MUSETT_T3_DSSD_X104_T 927.103 -0.107671
+MUSETT_T3_DSSD_X105_T 942.252 -0.108216
+MUSETT_T3_DSSD_X106_T 926.652 -0.107225
+MUSETT_T3_DSSD_X107_T 920.84 -0.108561
+MUSETT_T3_DSSD_X108_T 945.497 -0.108609
+MUSETT_T3_DSSD_X109_T 958.937 -0.108191
+MUSETT_T3_DSSD_X110_T 934.461 -0.109337
+MUSETT_T3_DSSD_X111_T 933.963 -0.108709
+MUSETT_T3_DSSD_X112_T 875.263 -0.103629
+MUSETT_T3_DSSD_X113_T 890.444 -0.10481
+MUSETT_T3_DSSD_X114_T 907.63 -0.1049
+MUSETT_T3_DSSD_X115_T 927.243 -0.105647
+MUSETT_T3_DSSD_X116_T 959.458 -0.126949
+MUSETT_T3_DSSD_X117_T 908.137 -0.106145
+MUSETT_T3_DSSD_X118_T 929.508 -0.107055
+MUSETT_T3_DSSD_X119_T 923.594 -0.10675
+MUSETT_T3_DSSD_X120_T 909.752 -0.107137
+MUSETT_T3_DSSD_X121_T 930.673 -0.107599
+MUSETT_T3_DSSD_X122_T 922.861 -0.107093
+MUSETT_T3_DSSD_X123_T 953.557 -0.108252
+MUSETT_T3_DSSD_X124_T 947.109 -0.107522
+MUSETT_T3_DSSD_X125_T 937.275 -0.108336
+MUSETT_T3_DSSD_X126_T 923.967 -0.106793
+MUSETT_T3_DSSD_X127_T 933.021 -0.107896
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..9b8846cc4f176fc50d4fa46384d19325decdae5a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_T 965.818 -0.11121
+MUSETT_T3_DSSD_Y1_T 966.765 -0.112154
+MUSETT_T3_DSSD_Y2_T 954.577 -0.113241
+MUSETT_T3_DSSD_Y3_T 985.94 -0.114409
+MUSETT_T3_DSSD_Y4_T 973.809 -0.114032
+MUSETT_T3_DSSD_Y5_T 976.61 -0.114994
+MUSETT_T3_DSSD_Y6_T 966.665 -0.115552
+MUSETT_T3_DSSD_Y7_T 995.977 -0.115546
+MUSETT_T3_DSSD_Y8_T 1000.593 -0.116506
+MUSETT_T3_DSSD_Y9_T 997.356 -0.117006
+MUSETT_T3_DSSD_Y10_T 1007.099 -0.117251
+MUSETT_T3_DSSD_Y11_T 976.2 -0.117093
+MUSETT_T3_DSSD_Y12_T 996.986 -0.118272
+MUSETT_T3_DSSD_Y13_T 1003.553 -0.119048
+MUSETT_T3_DSSD_Y14_T 999.252 -0.118075
+MUSETT_T3_DSSD_Y15_T 995.542 -0.118941
+MUSETT_T3_DSSD_Y16_T 988.937 -0.117174
+MUSETT_T3_DSSD_Y17_T 1017.194 -0.118815
+MUSETT_T3_DSSD_Y18_T 995.754 -0.118931
+MUSETT_T3_DSSD_Y19_T 1008.982 -0.119638
+MUSETT_T3_DSSD_Y20_T 1010.829 -0.12034
+MUSETT_T3_DSSD_Y21_T 1024.68 -0.121551
+MUSETT_T3_DSSD_Y22_T 1023.799 -0.120998
+MUSETT_T3_DSSD_Y23_T 1025.535 -0.120321
+MUSETT_T3_DSSD_Y24_T 1032.0 -0.121073
+MUSETT_T3_DSSD_Y25_T 1019.156 -0.121839
+MUSETT_T3_DSSD_Y26_T 1023.081 -0.121856
+MUSETT_T3_DSSD_Y27_T 1041.31 -0.122649
+MUSETT_T3_DSSD_Y28_T 1063.915 -0.12302
+MUSETT_T3_DSSD_Y29_T 1032.953 -0.121668
+MUSETT_T3_DSSD_Y30_T 1050.178 -0.122794
+MUSETT_T3_DSSD_Y31_T 1062.626 -0.122927
+MUSETT_T3_DSSD_Y32_T 895.255 -0.105446
+MUSETT_T3_DSSD_Y33_T 895.379 -0.105092
+MUSETT_T3_DSSD_Y34_T 880.749 -0.10573
+MUSETT_T3_DSSD_Y35_T 900.863 -0.105345
+MUSETT_T3_DSSD_Y36_T 926.509 -0.106744
+MUSETT_T3_DSSD_Y37_T 891.89 -0.106654
+MUSETT_T3_DSSD_Y38_T 907.576 -0.107294
+MUSETT_T3_DSSD_Y39_T 926.668 -0.108361
+MUSETT_T3_DSSD_Y40_T 927.098 -0.10799
+MUSETT_T3_DSSD_Y41_T 910.693 -0.10846
+MUSETT_T3_DSSD_Y42_T 916.7 -0.109593
+MUSETT_T3_DSSD_Y43_T 937.564 -0.109195
+MUSETT_T3_DSSD_Y44_T 922.173 -0.108568
+MUSETT_T3_DSSD_Y45_T 946.522 -0.109804
+MUSETT_T3_DSSD_Y46_T 940.05 -0.110263
+MUSETT_T3_DSSD_Y47_T 939.531 -0.109382
+MUSETT_T3_DSSD_Y48_T 891.441 -0.105997
+MUSETT_T3_DSSD_Y49_T 914.057 -0.106772
+MUSETT_T3_DSSD_Y50_T 912.988 -0.108217
+MUSETT_T3_DSSD_Y51_T 939.768 -0.108527
+MUSETT_T3_DSSD_Y52_T 913.038 -0.107825
+MUSETT_T3_DSSD_Y53_T 918.354 -0.108862
+MUSETT_T3_DSSD_Y54_T 912.852 -0.109456
+MUSETT_T3_DSSD_Y55_T 935.742 -0.110152
+MUSETT_T3_DSSD_Y56_T 933.587 -0.110718
+MUSETT_T3_DSSD_Y57_T 935.648 -0.11056
+MUSETT_T3_DSSD_Y58_T 951.779 -0.111636
+MUSETT_T3_DSSD_Y59_T 937.444 -0.109934
+MUSETT_T3_DSSD_Y60_T 954.766 -0.111581
+MUSETT_T3_DSSD_Y61_T 959.098 -0.111694
+MUSETT_T3_DSSD_Y62_T 943.527 -0.1111
+MUSETT_T3_DSSD_Y63_T 946.443 -0.11144
+MUSETT_T3_DSSD_Y64_T 927.547 -0.109216
+MUSETT_T3_DSSD_Y65_T 923.676 -0.110026
+MUSETT_T3_DSSD_Y66_T 920.88 -0.110106
+MUSETT_T3_DSSD_Y67_T 940.18 -0.11114
+MUSETT_T3_DSSD_Y68_T 951.936 -0.11252
+MUSETT_T3_DSSD_Y69_T 964.044 -0.113544
+MUSETT_T3_DSSD_Y70_T 970.865 -0.112672
+MUSETT_T3_DSSD_Y71_T 958.58 -0.112491
+MUSETT_T3_DSSD_Y72_T 986.258 -0.114462
+MUSETT_T3_DSSD_Y73_T 985.499 -0.11354
+MUSETT_T3_DSSD_Y74_T 973.383 -0.115517
+MUSETT_T3_DSSD_Y75_T 988.044 -0.115086
+MUSETT_T3_DSSD_Y76_T 1004.685 -0.116618
+MUSETT_T3_DSSD_Y77_T 974.725 -0.115232
+MUSETT_T3_DSSD_Y78_T 970.963 -0.114343
+MUSETT_T3_DSSD_Y79_T 986.998 -0.114947
+MUSETT_T3_DSSD_Y80_T 988.605 -0.117288
+MUSETT_T3_DSSD_Y81_T 1000.477 -0.118727
+MUSETT_T3_DSSD_Y82_T 998.944 -0.119474
+MUSETT_T3_DSSD_Y83_T 1021.647 -0.119909
+MUSETT_T3_DSSD_Y84_T 1015.851 -0.120116
+MUSETT_T3_DSSD_Y85_T 1023.105 -0.120975
+MUSETT_T3_DSSD_Y86_T 1023.602 -0.120606
+MUSETT_T3_DSSD_Y87_T 1048.071 -0.12076
+MUSETT_T3_DSSD_Y88_T 1045.295 -0.121336
+MUSETT_T3_DSSD_Y89_T 1041.423 -0.122713
+MUSETT_T3_DSSD_Y90_T 1040.742 -0.1231
+MUSETT_T3_DSSD_Y91_T 1028.684 -0.121678
+MUSETT_T3_DSSD_Y92_T 1029.478 -0.122697
+MUSETT_T3_DSSD_Y93_T 1040.536 -0.123087
+MUSETT_T3_DSSD_Y94_T 1025.036 -0.122144
+MUSETT_T3_DSSD_Y95_T 1037.833 -0.122274
+MUSETT_T3_DSSD_Y96_T 893.3 -0.105573
+MUSETT_T3_DSSD_Y97_T 883.47 -0.105224
+MUSETT_T3_DSSD_Y98_T 912.274 -0.105791
+MUSETT_T3_DSSD_Y99_T 907.618 -0.106904
+MUSETT_T3_DSSD_Y100_T 915.064 -0.107789
+MUSETT_T3_DSSD_Y101_T 914.687 -0.107742
+MUSETT_T3_DSSD_Y102_T 915.739 -0.109085
+MUSETT_T3_DSSD_Y103_T 907.682 -0.108126
+MUSETT_T3_DSSD_Y104_T 939.179 -0.108999
+MUSETT_T3_DSSD_Y105_T 897.003 -0.108068
+MUSETT_T3_DSSD_Y106_T 899.93 -0.108006
+MUSETT_T3_DSSD_Y107_T 933.224 -0.109125
+MUSETT_T3_DSSD_Y108_T 922.41 -0.109439
+MUSETT_T3_DSSD_Y109_T 919.858 -0.109168
+MUSETT_T3_DSSD_Y110_T 915.492 -0.108625
+MUSETT_T3_DSSD_Y111_T 939.186 -0.109416
+MUSETT_T3_DSSD_Y112_T 907.848 -0.107554
+MUSETT_T3_DSSD_Y113_T 911.742 -0.108473
+MUSETT_T3_DSSD_Y114_T 921.829 -0.108848
+MUSETT_T3_DSSD_Y115_T 923.694 -0.108292
+MUSETT_T3_DSSD_Y116_T 918.408 -0.109288
+MUSETT_T3_DSSD_Y117_T 934.537 -0.109943
+MUSETT_T3_DSSD_Y118_T 919.037 -0.109765
+MUSETT_T3_DSSD_Y119_T 917.959 -0.109672
+MUSETT_T3_DSSD_Y120_T 946.254 -0.110512
+MUSETT_T3_DSSD_Y121_T 948.221 -0.111588
+MUSETT_T3_DSSD_Y122_T 943.874 -0.111915
+MUSETT_T3_DSSD_Y123_T 936.548 -0.109772
+MUSETT_T3_DSSD_Y124_T 926.89 -0.11029
+MUSETT_T3_DSSD_Y125_T 946.411 -0.110947
+MUSETT_T3_DSSD_Y126_T 944.377 -0.111116
+MUSETT_T3_DSSD_Y127_T 963.969 -0.112131
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..626b3caee445ef03d2569fb0a95d1a804dd57224
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/cal_to_NPTOOL.py
@@ -0,0 +1,147 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 1
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0_R271-279.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0_R271-279.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/calibE0_R271-279.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/calibE0_R271-279.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..91b785a2b0676dfbd156458599f7d3e11b365bba
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/calibE0_R271-279.cal1
@@ -0,0 +1,1024 @@
+-61633.1 7.52291 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-62055 7.57479 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61729.5 7.53498 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61510.2 7.508 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61833.1 7.54788 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61623.7 7.52219 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61347.3 7.4881 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61171.1 7.4671 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-61021.4 7.44836 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62617.4 7.64342 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62323.7 7.60752 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-62004 7.56848 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62222.8 7.59535 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61750.3 7.53769 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62449.5 7.62252 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61339 7.48739 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63072.3 7.69874 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62830.6 7.67014 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62207.1 7.59325 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62377.4 7.61449 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63874.1 7.79655 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62503.8 7.62964 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62311.9 7.60574 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62735.5 7.65798 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62876.2 7.67465 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62984.1 7.68791 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63067.5 7.6982 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62585 7.63991 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-62990.1 7.68868 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62619.8 7.64391 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63424.6 7.74165 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62605 7.64176 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56615 6.91109 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56752 6.92767 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55531.3 6.77863 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56356.2 6.87918 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-55952.8 6.82995 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+ -10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55877.9 6.82136 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55703.8 6.79995 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56249.3 6.86589 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55849.4 6.81689 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56149.7 6.85427 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56319.5 6.87441 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56316.7 6.87457 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+ -10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+ -10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-56055.9 6.84297 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57823.5 7.05889 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57888.5 7.06649 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57759.2 7.04986 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57282.3 6.9923 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58176.3 7.10103 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57207.4 6.98291 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57775.9 7.05244 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57453.6 7.01354 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58450.1 7.13474 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57696.2 7.0427 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57293.1 6.99262 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57751.7 7.04967 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57178.8 6.97896 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57897.5 7.0674 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57870.7 7.06412 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58091.6 7.09091 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63244.5 7.72165 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63496.6 7.75166 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63378.1 7.73685 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-63811.2 7.79125 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63005.6 7.6925 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63771.8 7.78636 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63636.9 7.76936 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63205 7.71714 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-63969.6 7.81032 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-62995.1 7.69198 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63770.5 7.78739 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63683.7 7.7771 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63365.8 7.73864 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63412.4 7.74431 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-63838.7 7.79698 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-63910.4 7.8103 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-60714.8 7.41635 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60354.7 7.37366 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-60769.9 7.4225 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61153.6 7.46877 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61098.6 7.46087 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61831.3 7.55086 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61233.9 7.47674 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-61918.5 7.56139 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61705 7.53432 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61539.4 7.51247 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61654.8 7.5268 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62656.9 7.65026 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61726.5 7.53576 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60929.5 7.4391 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61271.4 7.48082 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62081.2 7.57944 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57112.5 6.97127 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57451.1 7.01351 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57726.3 7.04649 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57024 6.96101 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58096 7.09126 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57639.3 7.0364 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57569.2 7.02818 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57113.3 6.97269 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57345.7 6.99945 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57915.7 7.06943 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57166 6.97862 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57563.7 7.02674 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58546.4 7.14671 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-57969.2 7.07722 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57580.8 7.0292 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57635 7.03725 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-58915 7.19216 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59152 7.22096 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58454.5 7.13595 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58584.3 7.15199 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58061.6 7.08839 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58252 7.11139 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58260 7.11192 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58543.8 7.14562 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58468.9 7.13746 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58618.4 7.15521 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58387.2 7.12788 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59277.2 7.23597 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57823.2 7.05854 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58459.2 7.13586 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58396.5 7.1278 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59451.1 7.25717 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60342.1 -7.36534 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60855.3 -7.42765 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61044 -7.45109 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59928.1 -7.31456 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60111.5 -7.33668 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60670.5 -7.40537 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60385.3 -7.37047 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60092.7 -7.33441 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59923.3 -7.31426 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60352.8 -7.36636 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+59986.2 -7.32159 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60842.8 -7.42632 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+60935.6 -7.43739 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61019.1 -7.4482 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60664 -7.40424 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60353 -7.36683 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60455.8 -7.37881 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60296.1 -7.36011 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60076.2 -7.3325 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60257.8 -7.3547 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60341.1 -7.36488 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60163.7 -7.34342 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59583.3 -7.27238 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60137.5 -7.34053 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59690.4 -7.286 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+59947.9 -7.31714 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60296.3 -7.3596 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59868.7 -7.30687 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59550.2 -7.26855 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59726.2 -7.29007 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60921 -7.43642 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56617 -6.91063 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+56959 -6.95194 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56494.7 -6.89584 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57009.3 -6.95849 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57335.7 -6.99755 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57264 -6.98966 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56409.9 -6.88581 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56431.2 -6.88775 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56901.9 -6.94551 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56694.7 -6.9201 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56548.3 -6.90222 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56526.1 -6.89944 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56796.8 -6.93275 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56913 -6.94682 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57765.4 -7.05041 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56524.4 -6.89932 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57594.2 -7.03065 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+56951 -6.95104 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56731.9 -6.92465 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56394.3 -6.88339 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57099.8 -6.96944 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56961.3 -6.95188 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56574.1 -6.90529 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57542.6 -7.02337 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57290.5 -6.99357 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56751.5 -6.92768 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+56875.4 -6.94186 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57143.4 -6.97465 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57175.1 -6.97855 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57057.2 -6.96403 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57524.2 -7.02087 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+58006 -7.07906 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+60962.3 -7.44098 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61050.9 -7.45122 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+60928.3 -7.43662 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61282.2 -7.47993 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60343.8 -7.36566 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61490.9 -7.50575 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60832.2 -7.42493 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60401.9 -7.37282 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61525 -7.50847 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61015 -7.44687 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61148.5 -7.46397 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61498.3 -7.50535 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60581.2 -7.39491 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61334.4 -7.48699 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61675.3 -7.52851 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61049 -7.45175 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62524.4 -7.62923 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+60968.7 -7.44121 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61505.3 -7.50626 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62171.7 -7.58826 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+60956.4 -7.43975 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60853.3 -7.42648 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61684.5 -7.52842 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61366.5 -7.48921 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61049.3 -7.45085 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61272.4 -7.47871 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61001.7 -7.44491 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61418 -7.49644 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61808.2 -7.54356 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61619.4 -7.52066 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62315.6 -7.60551 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60787.3 -7.41924 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56293.2 -6.87015 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56573 -6.90468 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56527 -6.89976 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56430.2 -6.88772 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56151.1 -6.8537 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56425.2 -6.8862 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+55992.3 -6.83341 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56507 -6.89625 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56856.6 -6.93994 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56055.3 -6.84208 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57029.6 -6.9606 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57329.9 -6.9973 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56501 -6.89663 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56503.9 -6.89674 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56670.1 -6.91739 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56358.1 -6.87923 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56894.5 -6.94468 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+56988.1 -6.95503 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56935 -6.94957 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56727.2 -6.92358 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57223.6 -6.98438 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56491 -6.895 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56355.5 -6.87782 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56579.2 -6.90568 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57315.6 -6.99591 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57115.4 -6.97039 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56748.1 -6.92598 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+55985.4 -6.83357 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56341.9 -6.87581 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55850.6 -6.81634 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56922.6 -6.9478 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56515 -6.89869 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62516.5 7.6311 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62274.1 7.60081 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62256.5 7.59888 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62105.5 7.58086 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61551.9 7.51336 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61602.3 7.51847 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62332.4 7.60802 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61432.2 7.49866 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61295.9 7.48181 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61534 7.5109 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61736.5 7.53509 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61736.7 7.53547 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61907.1 7.55623 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61411.3 7.49629 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61128 7.4611 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-62002.7 7.56766 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62626.7 7.64348 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61797.5 7.54209 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62271.7 7.60236 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-62132.1 7.58327 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62874.1 7.67499 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62211.6 7.59273 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62885.8 7.6761 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62400 7.61554 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62315.1 7.60536 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-62060.6 7.57409 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-61995.1 7.56723 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61730.5 7.53394 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61701.7 7.53073 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62796.3 7.66424 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61870.4 7.55102 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62871.5 7.67342 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58249.1 7.11105 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58600 7.15128 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58503.6 7.13902 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-57934.8 7.07492 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58269.8 7.11052 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58373.3 7.12516 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58024.8 7.08223 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58731.9 7.16835 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58380.1 7.12401 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-59080.3 7.20869 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58163.3 7.09879 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58321.6 7.12064 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58793.4 7.17398 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59555 7.26719 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58985.3 7.19742 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58393.4 7.13232 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.3 7.06236 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58528.7 7.14353 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-58063.7 7.08664 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57735.8 7.04669 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-58026.2 7.08204 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57941.2 7.07198 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-58010.7 7.08036 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57865.2 7.06218 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58114.3 7.09321 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57872.6 7.06339 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58515.5 7.14195 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57693.8 7.04145 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57754.9 7.04905 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58253.2 7.10979 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.8 7.09262 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58287 7.1143 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61032.9 7.44807 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61684.6 7.52792 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61429.6 7.49794 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61667.7 7.52697 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61891.3 7.55404 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61446.2 7.49857 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61708.6 7.53062 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-62071.3 7.57514 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61278.1 7.47991 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62655.4 7.64692 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61932.8 7.55898 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-61983.5 7.56623 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61655.2 7.52649 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61854.1 7.54843 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61483.5 7.50294 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61906.6 7.55644 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63488.4 7.74867 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63741.9 7.78029 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64177.5 7.83331 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63942 7.804 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64165.5 7.8324 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63871.7 7.79646 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64130.5 7.82725 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64304 7.84811 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64070.2 7.82171 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64367.7 7.85609 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63515.8 7.75294 0.00 !Mu1ChX91ERaw[Co2At2Ch11]
+-63403.5 7.73929 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64650.7 7.89095 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64071.5 7.81996 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63723.8 7.77948 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63504.1 7.75094 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56309 6.87269 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56713.9 6.92185 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56681.7 6.91912 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56380 6.88193 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56624.3 6.9108 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-57163.3 6.97787 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57300.7 6.99425 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56583 6.90657 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56874 6.94133 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57021.6 6.95972 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57826.6 7.05832 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57775.6 7.05242 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57753.9 7.04858 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57529.9 7.02159 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57756.7 7.04901 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-57996.3 7.07845 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57263.1 6.98926 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57281 6.99144 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56848.9 6.93863 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57714.2 7.04451 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57316.9 6.99588 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57261.4 6.9893 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56540.6 6.9014 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58381.7 7.12551 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57471.4 7.01432 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57809.5 7.05575 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57734.9 7.04709 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57441.1 7.01114 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57659.5 7.03733 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57658.9 7.03761 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57057.9 6.96435 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57891.9 7.0664 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59587 -7.27421 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60350 -7.36663 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59636.9 -7.2798 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59250.4 -7.23253 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60103.9 -7.33661 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+59993 -7.32323 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59355.7 -7.24588 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59465.8 -7.25939 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59413.5 -7.25269 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59628.3 -7.27927 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59420.7 -7.25321 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59517.3 -7.26551 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60156.9 -7.34327 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59274.7 -7.23573 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59413.8 -7.2528 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59941.2 -7.31657 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62356.3 -7.61131 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62368.3 -7.61293 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62294 -7.60309 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+61984.1 -7.56662 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62459 -7.62322 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62300.6 -7.60413 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+61991.5 -7.56756 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61618.9 -7.52114 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61345 -7.48831 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+61986.1 -7.56653 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+61993.4 -7.56773 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62149.7 -7.58604 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62014.3 -7.57031 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61586.9 -7.51767 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61755.6 -7.53847 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+55995 -6.83497 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56198 -6.86037 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55578.9 -6.78486 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55601.6 -6.78669 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55322.2 -6.75352 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56297.6 -6.87208 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55306 -6.75079 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55844.8 -6.81653 0.00 !Mu1ChY40ERaw[Co3At3Ch8]
+56056.1 -6.84392 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56003 -6.83589 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55455.8 -6.76939 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56539.8 -6.90172 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55591.9 -6.78603 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55642.7 -6.79229 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55717.9 -6.80114 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55630.4 -6.79055 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57134 -6.97428 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56488.9 -6.89459 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56444.9 -6.88991 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+55917.5 -6.82531 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56781.1 -6.9307 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56234.3 -6.86372 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56414.1 -6.8863 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56314.1 -6.87366 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57181.6 -6.97991 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+56971.7 -6.95407 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56545.7 -6.90218 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57194 -6.98061 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57452.7 -7.01268 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+56974.6 -6.95454 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56096.9 -6.84754 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57295.9 -6.99365 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+60966.1 -7.4416 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61476.9 -7.50343 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61230.2 -7.47385 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61536.4 -7.51174 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61212.4 -7.47235 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+59944.2 -7.31688 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60359.9 -7.36752 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61084.9 -7.45619 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60294.9 -7.36018 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61097.9 -7.45775 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60832.2 -7.4254 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60341 -7.36539 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60457.4 -7.38011 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60881 -7.43155 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60579 -7.39461 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61262.7 -7.47821 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61087 -7.45653 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+60957.8 -7.44017 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61015 -7.4473 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60458.6 -7.38002 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60328.5 -7.36352 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61293.9 -7.48211 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60645.5 -7.40378 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60614 -7.39798 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+60998.7 -7.44612 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61206 -7.47091 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60669.6 -7.40552 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60794.3 -7.42076 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60367.8 -7.36826 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61409.1 -7.49616 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61537.9 -7.51137 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60656.5 -7.40388 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55842.6 -6.81725 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55367.1 -6.75769 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55712.2 -6.80116 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55524 -6.77768 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55820.1 -6.81352 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55479.4 -6.77257 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55467.2 -6.77116 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56133.4 -6.85195 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55203.6 -6.73883 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55269.4 -6.74655 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55825.9 -6.81501 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55176.8 -6.73553 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55849.5 -6.8172 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56038.1 -6.84069 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56158.8 -6.8555 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.4 -6.90682 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54706.4 -6.6782 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55473 -6.77076 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55101.6 -6.7263 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55096.7 -6.72554 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55171.5 -6.73434 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55317.4 -6.75224 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55193.7 -6.73739 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55688.5 -6.79707 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55649.8 -6.7933 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55362.2 -6.75814 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54711.4 -6.67865 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55069.6 -6.72259 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55139.2 -6.73052 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55090 -6.72464 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55297.3 -6.75015 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56118.7 -6.85016 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-63061.5 7.69841 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62506.4 7.62904 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62898.2 7.67697 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62102.5 7.57997 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62091 7.57843 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62680 7.651 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62497.6 7.62835 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62860.6 7.67221 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62934.9 7.68182 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62209.2 7.59345 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62461.4 7.62395 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62447.9 7.62232 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62823.1 7.66888 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62578.4 7.63796 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62668.3 7.64912 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63727.1 7.7794 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62184.1 7.59 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61848.8 7.54926 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61650.4 7.52467 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61485.9 7.50437 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61652 7.52531 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62305.4 7.60457 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62259.8 7.59897 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61800.7 7.54312 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61581.2 7.51641 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-62044.4 7.57347 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-62080.1 7.57801 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61797.8 7.54284 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61681.7 7.52824 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61267.4 7.47771 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62349 7.61043 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61564.9 7.51409 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59015.3 7.20328 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58139.9 7.09618 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58698.1 7.16453 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58443.2 7.13257 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58176 7.101 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58207.6 7.10467 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58335 7.12045 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57883.4 7.06537 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57575 7.02751 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58583.7 7.1504 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58764.6 7.1724 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58310.8 7.11768 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58650 7.15916 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58694.4 7.16541 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58376.6 7.12585 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58493.9 7.13969 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57774.7 7.05139 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57219.6 6.984 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58150.7 7.09771 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57875.1 7.06455 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57614.5 7.0324 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57119.3 6.97173 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57879.9 7.06465 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57700.2 7.04254 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57884.3 7.06528 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57744.7 7.04893 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57978.3 7.07647 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-57040.8 6.96222 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57537 7.02231 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56754.4 6.92733 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57494.4 7.01801 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57815.3 7.05707 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63330.5 7.72984 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-65014.7 7.93525 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-64023.8 7.8138 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63758.7 7.78178 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64403.4 7.8608 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63711.9 7.77604 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63456.8 7.74517 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63366 7.73396 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63118.4 7.70341 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63845.4 7.79218 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63655.2 7.76957 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-64025.4 7.81563 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63927.7 7.80392 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63554.5 7.75773 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63500.9 7.75129 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63231.2 7.7171 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63297.5 7.72646 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63156.3 7.70831 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63216.8 7.71566 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-64005.8 7.81186 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63875.2 7.79498 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63778.1 7.78352 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63983.4 7.80931 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63100.5 7.70105 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63636.5 7.76718 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63516 7.75305 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63636.6 7.76686 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63357.7 7.73288 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64645.5 7.88952 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63755.2 7.78113 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63637.1 7.76683 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59014.7 7.20305 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58466.3 7.13675 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58318.1 7.11774 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58604.2 7.15414 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59349.4 7.24432 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59356.8 7.24468 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58807.5 7.17829 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-58926.8 7.1932 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59050.6 7.20842 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59050.7 7.20773 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58752.7 7.17148 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59015.2 7.20287 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58809.9 7.17765 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60503.3 7.3854 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58973.3 7.19774 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58587.1 7.15168 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59305.8 7.23844 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59265.7 7.234 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59714.1 7.28798 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59097.5 7.21291 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59752 7.29299 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60025.7 7.32641 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59509.9 7.2633 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59481.8 7.26047 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60018.6 7.32613 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58722.7 7.16762 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59027.4 7.20469 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59326.3 7.24127 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58843.4 7.18246 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58940.7 7.19401 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59097.4 7.21317 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59222.9 7.2284 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63157.3 -7.70969 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63822.2 -7.78939 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62498 -7.62853 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63418.3 -7.74138 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62878.7 -7.67525 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62675.7 -7.65067 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63018.1 -7.69193 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62688.4 -7.65248 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62738.7 -7.65763 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63378.4 -7.73598 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+62933.1 -7.68161 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62489.8 -7.62778 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62006.9 -7.56841 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62747.2 -7.65943 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+62904.6 -7.67764 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63436.1 -7.74366 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61523 -7.50754 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60881.2 -7.4314 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60756.5 -7.41617 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+61948.2 -7.56073 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.7 -7.45872 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60825.2 -7.42329 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62124.2 -7.58357 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61068.2 -7.45426 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61024.3 -7.44902 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61614.2 -7.52161 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61098.9 -7.45848 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61294.1 -7.48094 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61584 -7.51767 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61357.4 -7.4883 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61263.2 -7.47721 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61636.5 -7.52283 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56252.9 -6.8662 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56360.5 -6.87887 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56726.3 -6.92397 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56647.1 -6.91423 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+56944.1 -6.95144 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56838 -6.9373 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56333.4 -6.87547 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56420 -6.88799 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56415.4 -6.8848 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58046.6 -7.08553 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56749.8 -6.92777 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56199 -6.8594 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57477.8 -7.01539 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57262.1 -6.98911 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+56983.6 -6.95607 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56657.4 -6.91657 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57544.7 -7.02396 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57028.9 -6.96114 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57987.4 -7.07704 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57372.1 -7.00299 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57342 -6.99891 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58521 -7.14305 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57680.6 -7.0407 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57746.9 -7.04863 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57638.1 -7.03576 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57521 -7.02103 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57470.2 -7.01554 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58281.3 -7.11404 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57840.1 -7.06071 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57317.8 -6.997 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57802.6 -7.05565 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58131.4 -7.09521 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59303.9 -7.23935 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59484.5 -7.25972 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59445.9 -7.25617 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60428.1 -7.3764 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59533.4 -7.26741 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59813.7 -7.30118 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59589.8 -7.27421 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+60026.1 -7.32661 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59977.4 -7.32078 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59521.9 -7.2662 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59939.4 -7.31706 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60163.9 -7.3442 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59267.2 -7.234 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59936.3 -7.31598 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59355.3 -7.24587 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60125 -7.33861 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60407 -7.37292 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61099.7 -7.45806 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60584.6 -7.39543 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61268.3 -7.47919 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61270.9 -7.47878 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60825.4 -7.42527 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60909.5 -7.43587 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61284.8 -7.48143 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60871 -7.43052 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60750.5 -7.4148 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61380.4 -7.49252 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60505.2 -7.38436 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61101.4 -7.45903 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60601.1 -7.39817 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61046 -7.45199 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61347.1 -7.48772 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56857.3 -6.94084 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55935.7 -6.82792 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56194 -6.85949 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56657 -6.91576 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56404.6 -6.88522 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56745.3 -6.9268 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+56028.9 -6.83896 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57137.1 -6.97391 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56028.9 -6.83942 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56640.1 -6.91348 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56575.8 -6.90625 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57468.7 -7.01533 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57034.2 -6.96217 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56652.7 -6.91515 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57017.9 -6.96034 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56103.5 -6.8487 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56392.3 -6.88327 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57249.1 -6.98846 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56498 -6.89623 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56788.9 -6.93179 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56423.6 -6.88761 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56477.1 -6.89419 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56830.3 -6.93708 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56701.8 -6.92147 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56240.7 -6.86503 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57000.7 -6.95804 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57374.9 -7.00373 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56133.6 -6.85234 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56922.3 -6.94849 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56365.8 -6.88053 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56131.5 -6.85163 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62345.4 7.61044 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61863.4 7.5516 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62181.1 7.59039 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62279.6 7.60252 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61955.2 7.56278 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61871 7.55217 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62077.7 7.5777 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61628.4 7.52262 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61761.6 7.53889 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61847.3 7.54932 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61774 7.54014 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62931.9 7.68219 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61617.9 7.52151 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61820.9 7.54591 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61673.8 7.52851 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62593.1 7.64028 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63651.3 7.76933 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63039.9 7.69489 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62939.5 7.68245 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62774.3 7.66224 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62597 7.64034 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.1 7.70462 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-64027 7.81704 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63768.3 7.78409 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62735.8 7.65836 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63493.6 7.75031 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63550.9 7.75727 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63333.6 7.73047 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63471.9 7.74798 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63533.6 7.75574 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64515.6 7.87525 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63666.9 7.77214 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59249.2 7.23326 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59097.2 7.21503 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58039.8 7.08575 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58201.5 7.10525 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58688.1 7.16476 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-58919 7.19282 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59207.7 7.22788 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58617.7 7.15599 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59166.7 7.22284 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58841.9 7.18358 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-58957.7 7.19746 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59203.6 7.22747 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59321.9 7.24122 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58738.5 7.17009 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59135.2 7.21821 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57337 6.99885 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57105.3 6.97094 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56852.6 6.93986 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57123.9 6.97353 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56902.8 6.94725 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57347.6 7.00123 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56664.1 6.91725 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57226.6 6.98685 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57580.7 7.0296 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56509.8 6.89853 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57438.6 7.01266 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57046.8 6.96439 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56283.2 6.87125 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56778.8 6.93172 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56634.5 6.91492 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56434.4 6.89024 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64201 7.83647 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63818.9 7.79071 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63593.3 7.7629 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63735 7.77947 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63661.1 7.77033 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63245 7.71983 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64347.8 7.85448 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62471 7.62583 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62665.5 7.64955 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-62978.4 7.68758 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63119.5 7.70452 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63390.2 7.73771 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64130.6 7.828 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62469.3 7.62517 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62611.7 7.6423 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-62988.1 7.68855 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62477.2 7.6262 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62777.5 7.66314 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62705.2 7.65399 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62645.6 7.64655 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62038.5 7.57247 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62461.5 7.62416 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62435.9 7.62103 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.4 7.58521 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62294.2 7.60396 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62708.8 7.65519 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62352.2 7.611 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62009.6 7.56957 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62807.4 7.66718 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62550.7 7.63529 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62164.1 7.5882 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62407.3 7.61748 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56124.7 6.85011 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55925 6.8266 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55174.1 6.73479 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55743 6.8047 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-56104.6 6.84875 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55922.7 6.82573 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55941 6.82888 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55261.5 6.7447 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55547.1 6.7799 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-55994.8 6.83508 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55878.2 6.82019 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55740.8 6.80375 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56899.4 6.94551 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56276.4 6.86962 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55830.4 6.81436 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55749.2 6.80431 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57546.8 7.02514 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56955.5 6.95237 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57536.3 7.02336 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56899.8 6.94606 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58093.6 7.09129 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57196.5 6.98229 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57462.1 7.01442 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56370.1 6.88115 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56787.2 6.93186 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57910 7.06899 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57473.5 7.01557 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57059.2 6.96518 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57670.8 7.03967 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56738.4 6.92521 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57861.1 7.06231 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56557.4 6.90355 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60032.9 -7.32771 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58880.8 -7.18699 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60023.1 -7.32654 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59904.8 -7.31219 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59747.3 -7.29256 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+60044.8 -7.3285 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59674.6 -7.28351 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60089 -7.33432 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60390.2 -7.37087 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60324.5 -7.36226 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60063 -7.33084 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59746 -7.29223 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59628.7 -7.27802 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59605.6 -7.27604 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60513.4 -7.38637 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59705.8 -7.28768 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62899.2 -7.67713 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63067.2 -7.69763 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62164.9 -7.58739 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62644.9 -7.6462 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63155.6 -7.70868 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63476.7 -7.7476 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+62909.3 -7.67804 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62922.8 -7.68012 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63461.1 -7.7455 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63380.9 -7.73638 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62508.5 -7.62917 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63362.4 -7.73365 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62458.2 -7.62392 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62885.8 -7.67565 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63029.7 -7.69335 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62923.5 -7.68066 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56074.2 -6.84465 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56150.2 -6.85354 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55789.4 -6.80959 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55638.8 -6.79097 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55690.3 -6.7972 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56172.7 -6.85634 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55888.9 -6.82181 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55509 -6.77536 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55311.6 -6.7506 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56115.3 -6.84918 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55915.5 -6.8248 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55329 -6.75329 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55669.5 -6.79444 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55588.7 -6.78496 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55898 -6.8231 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55796.2 -6.81045 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56642.2 -6.91436 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56991.3 -6.95514 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57075.4 -6.96596 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56854.2 -6.93952 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56407.5 -6.88481 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56933.4 -6.94974 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56603.2 -6.9089 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+56984.7 -6.95558 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+56981.1 -6.9557 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56514.6 -6.89801 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57449.1 -7.01219 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+56938.2 -6.94962 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57895.4 -7.0662 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57033.8 -6.96212 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56704 -6.92109 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57390.9 -7.00491 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59386.5 -7.24871 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+60032 -7.32664 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59461.1 -7.25777 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59294.3 -7.23743 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59363.3 -7.24565 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58668.9 -7.16081 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59178.2 -7.22299 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+59878.5 -7.30862 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60080.6 -7.33311 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59525.9 -7.26506 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59403.5 -7.25068 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59501.4 -7.26252 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59504.9 -7.26298 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59322 -7.24079 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59114.2 -7.21484 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59934.3 -7.31545 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62786.3 -7.66418 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62688.2 -7.65225 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62484.3 -7.62731 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62111.7 -7.58204 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.9 -7.57048 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62722.4 -7.65547 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62211.6 -7.59379 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62970.1 -7.68683 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62605.8 -7.64201 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62471.1 -7.62554 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61773.9 -7.54013 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61966 -7.56438 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61829.7 -7.54636 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+62107 -7.58056 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61946.8 -7.56126 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61761.8 -7.53961 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56678.2 -6.9178 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56796.1 -6.93199 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56253.9 -6.86602 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55891.8 -6.82192 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56180.1 -6.85704 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56220.5 -6.8622 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55882 -6.82088 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55981.1 -6.83279 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55754.9 -6.80516 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56267.3 -6.86773 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56429.7 -6.88763 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56237.2 -6.86422 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55689.2 -6.79724 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55787.5 -6.80907 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56624.4 -6.91129 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56567.3 -6.90457 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57306.3 -6.99514 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57048.3 -6.96426 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+56976.5 -6.95364 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+56848.4 -6.93798 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57581.8 -7.02703 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57150.3 -6.97454 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56708.7 -6.92074 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57781 -7.05185 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57302.9 -6.99462 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+56871.4 -6.94134 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57274.9 -6.99018 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+56921.4 -6.94684 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57595.9 -7.03175 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56918.5 -6.94868 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57363.7 -7.00332 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57366.3 -7.00102 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/calibT0_R271-279.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/calibT0_R271-279.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..ac49bf4b619489f5511712443b192f8a3b7314c8
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R305-310/double_alpha_Ra222_R271-279/calibT0_R271-279.cal1
@@ -0,0 +1,1023 @@
+1000.68 -0.114176 0.0 !Mu0ChX1TRaw[Co1At1Ch1]
+1000.548 -0.115529 0.0 !Mu0ChX2TRaw[Co1At1Ch2]
+994.985 -0.115657 0.0 !Mu0ChX3TRaw[Co1At1Ch3]
+998.298 -0.117409 0.0 !Mu0ChX4TRaw[Co1At1Ch4]
+1017.095 -0.117367 0.0 !Mu0ChX5TRaw[Co1At1Ch5]
+1009.462 -0.117353 0.0 !Mu0ChX6TRaw[Co1At1Ch6]
+1006.88 -0.117969 0.0 !Mu0ChX7TRaw[Co1At1Ch7]
+1009.19 -0.118246 0.0 !Mu0ChX8TRaw[Co1At1Ch8]
+1034.336 -0.118065 0.0 !Mu0ChX9TRaw[Co1At1Ch9]
+1054.297 -0.118546 0.0 !Mu0ChX10TRaw[Co1At1Ch10]
+1028.541 -0.119138 0.0 !Mu0ChX11TRaw[Co1At1Ch11]
+1027.566 -0.119075 0.0 !Mu0ChX12TRaw[Co1At1Ch12]
+1035.322 -0.119996 0.0 !Mu0ChX13TRaw[Co1At1Ch13]
+1020.483 -0.118174 0.0 !Mu0ChX14TRaw[Co1At1Ch14]
+1043.119 -0.119531 0.0 !Mu0ChX15TRaw[Co1At1Ch15]
+1351.042 -0.118448 0.0 !Mu0ChX16TRaw[Co1At1Ch16]
+985.051 -0.115275 0.0 !Mu0ChX17TRaw[Co1At2Ch1]
+1018.323 -0.116527 0.0 !Mu0ChX18TRaw[Co1At2Ch2]
+1019.722 -0.118044 0.0 !Mu0ChX19TRaw[Co1At2Ch3]
+1016.846 -0.118125 0.0 !Mu0ChX20TRaw[Co1At2Ch4]
+1022.532 -0.119233 0.0 !Mu0ChX21TRaw[Co1At2Ch5]
+1031.856 -0.118555 0.0 !Mu0ChX22TRaw[Co1At2Ch6]
+1050.616 -0.119845 0.0 !Mu0ChX23TRaw[Co1At2Ch7]
+1062.012 -0.120005 0.0 !Mu0ChX24TRaw[Co1At2Ch8]
+1031.807 -0.119427 0.0 !Mu0ChX25TRaw[Co1At2Ch9]
+1035.529 -0.120777 0.0 !Mu0ChX26TRaw[Co1At2Ch10]
+1034.112 -0.121057 0.0 !Mu0ChX27TRaw[Co1At2Ch11]
+1053.939 -0.121545 0.0 !Mu0ChX28TRaw[Co1At2Ch12]
+1025.922 -0.121021 0.0 !Mu0ChX29TRaw[Co1At2Ch13]
+1036.222 -0.120851 0.0 !Mu0ChX30TRaw[Co1At2Ch14]
+1057.756 -0.12045 0.0 !Mu0ChX31TRaw[Co1At2Ch15]
+1063.339 -0.119947 0.0 !Mu0ChX32TRaw[Co1At2Ch16]
+899.089 -0.105192 0.0 !Mu0ChX33TRaw[Co1At3Ch1]
+896.661 -0.104955 0.0 !Mu0ChX34TRaw[Co1At3Ch2]
+900.671 -0.107397 0.0 !Mu0ChX35TRaw[Co1At3Ch3]
+906.319 -0.106033 0.0 !Mu0ChX36TRaw[Co1At3Ch4]
+914.875 -0.106227 0.0 !Mu0ChX37TRaw[Co1At3Ch5]
+916.198 -0.108005 0.0 !Mu0ChX38TRaw[Co1At3Ch6]
+934.909 -0.108195 0.0 !Mu0ChX39TRaw[Co1At3Ch7]
+946.449 -0.107979 0.0 !Mu0ChX40TRaw[Co1At3Ch8]
+929.072 -0.108302 0.0 !Mu0ChX41TRaw[Co1At3Ch9]
+950.135 -0.108334 0.0 !Mu0ChX42TRaw[Co1At3Ch10]
+949.178 -0.108243 0.0 !Mu0ChX43TRaw[Co1At3Ch11]
+924.851 -0.109095 0.0 !Mu0ChX44TRaw[Co1At3Ch12]
+938.112 -0.108505 0.0 !Mu0ChX45TRaw[Co1At3Ch13]
+959.817 -0.107877 0.0 !Mu0ChX46TRaw[Co1At3Ch14]
+969.046 -0.108187 0.0 !Mu0ChX47TRaw[Co1At3Ch15]
+1000.332 -0.10826 0.0 !Mu0ChX48TRaw[Co1At3Ch16]
+941.059 -0.106556 0.0 !Mu0ChX49TRaw[Co1At4Ch1]
+935.589 -0.106942 0.0 !Mu0ChX50TRaw[Co1At4Ch2]
+937.96 -0.107622 0.0 !Mu0ChX51TRaw[Co1At4Ch3]
+947.438 -0.109464 0.0 !Mu0ChX52TRaw[Co1At4Ch4]
+942.078 -0.109295 0.0 !Mu0ChX53TRaw[Co1At4Ch5]
+945.006 -0.109652 0.0 !Mu0ChX54TRaw[Co1At4Ch6]
+979.489 -0.109955 0.0 !Mu0ChX55TRaw[Co1At4Ch7]
+951.854 -0.110458 0.0 !Mu0ChX56TRaw[Co1At4Ch8]
+971.578 -0.111499 0.0 !Mu0ChX57TRaw[Co1At4Ch9]
+962.445 -0.110456 0.0 !Mu0ChX58TRaw[Co1At4Ch10]
+956.297 -0.111378 0.0 !Mu0ChX59TRaw[Co1At4Ch11]
+961.15 -0.111943 0.0 !Mu0ChX60TRaw[Co1At4Ch12]
+972.034 -0.112807 0.0 !Mu0ChX61TRaw[Co1At4Ch13]
+960.421 -0.11314 0.0 !Mu0ChX62TRaw[Co1At4Ch14]
+965.683 -0.113338 0.0 !Mu0ChX63TRaw[Co1At4Ch15]
+954.11 -0.111982 0.0 !Mu0ChX64TRaw[Co1At4Ch16]
+983.106 -0.115846 0.0 !Mu0ChX65TRaw[Co2At1Ch1]
+1014.462 -0.11646 0.0 !Mu0ChX66TRaw[Co2At1Ch2]
+1016.856 -0.117644 0.0 !Mu0ChX67TRaw[Co2At1Ch3]
+995.672 -0.117791 0.0 !Mu0ChX68TRaw[Co2At1Ch4]
+1014.268 -0.118174 0.0 !Mu0ChX69TRaw[Co2At1Ch5]
+1004.36 -0.119717 0.0 !Mu0ChX70TRaw[Co2At1Ch6]
+1009.057 -0.120284 0.0 !Mu0ChX71TRaw[Co2At1Ch7]
+1014.202 -0.120426 0.0 !Mu0ChX72TRaw[Co2At1Ch8]
+1033.027 -0.121763 0.0 !Mu0ChX73TRaw[Co2At1Ch9]
+1021.396 -0.119445 0.0 !Mu0ChX74TRaw[Co2At1Ch10]
+1031.245 -0.121535 0.0 !Mu0ChX75TRaw[Co2At1Ch11]
+1021.633 -0.120381 0.0 !Mu0ChX76TRaw[Co2At1Ch12]
+1036.707 -0.121262 0.0 !Mu0ChX77TRaw[Co2At1Ch13]
+1033.329 -0.121766 0.0 !Mu0ChX78TRaw[Co2At1Ch14]
+1035.269 -0.120615 0.0 !Mu0ChX79TRaw[Co2At1Ch15]
+1395.102 -0.120952 0.0 !Mu0ChX80TRaw[Co2At1Ch16]
+958.027 -0.111515 0.0 !Mu0ChX81TRaw[Co2At2Ch1]
+964.753 -0.112746 0.0 !Mu0ChX82TRaw[Co2At2Ch2]
+946.182 -0.111774 0.0 !Mu0ChX83TRaw[Co2At2Ch3]
+958.531 -0.113281 0.0 !Mu0ChX84TRaw[Co2At2Ch4]
+958.863 -0.112468 0.0 !Mu0ChX85TRaw[Co2At2Ch5]
+970.352 -0.113819 0.0 !Mu0ChX86TRaw[Co2At2Ch6]
+971.39 -0.114818 0.0 !Mu0ChX87TRaw[Co2At2Ch7]
+960.896 -0.113978 0.0 !Mu0ChX88TRaw[Co2At2Ch8]
+982.302 -0.114813 0.0 !Mu0ChX89TRaw[Co2At2Ch9]
+986.339 -0.115728 0.0 !Mu0ChX90TRaw[Co2At2Ch10]
+983.082 -0.11664 0.0 !Mu0ChX91TRaw[Co2At2Ch11]
+994.239 -0.11625 0.0 !Mu0ChX92TRaw[Co2At2Ch12]
+998.231 -0.116299 0.0 !Mu0ChX93TRaw[Co2At2Ch13]
+982.565 -0.116152 0.0 !Mu0ChX94TRaw[Co2At2Ch14]
+1022.945 -0.117868 0.0 !Mu0ChX95TRaw[Co2At2Ch15]
+1009.233 -0.116744 0.0 !Mu0ChX96TRaw[Co2At2Ch16]
+921.311 -0.105013 0.0 !Mu0ChX97TRaw[Co2At3Ch1]
+921.31 -0.106169 0.0 !Mu0ChX98TRaw[Co2At3Ch2]
+911.678 -0.106212 0.0 !Mu0ChX99TRaw[Co2At3Ch3]
+917.107 -0.106905 0.0 !Mu0ChX100TRaw[Co2At3Ch4]
+927.187 -0.108043 0.0 !Mu0ChX101TRaw[Co2At3Ch5]
+952.263 -0.108935 0.0 !Mu0ChX102TRaw[Co2At3Ch6]
+958.633 -0.108442 0.0 !Mu0ChX103TRaw[Co2At3Ch7]
+939.41 -0.108194 0.0 !Mu0ChX104TRaw[Co2At3Ch8]
+941.999 -0.109336 0.0 !Mu0ChX105TRaw[Co2At3Ch9]
+943.412 -0.109053 0.0 !Mu0ChX106TRaw[Co2At3Ch10]
+970.302 -0.109771 0.0 !Mu0ChX107TRaw[Co2At3Ch11]
+946.604 -0.109449 0.0 !Mu0ChX108TRaw[Co2At3Ch12]
+933.31 -0.109128 0.0 !Mu0ChX109TRaw[Co2At3Ch13]
+937.597 -0.109641 0.0 !Mu0ChX110TRaw[Co2At3Ch14]
+930.52 -0.109177 0.0 !Mu0ChX111TRaw[Co2At3Ch15]
+939.491 -0.109478 0.0 !Mu0ChX112TRaw[Co2At3Ch16]
+909.027 -0.107364 0.0 !Mu0ChX113TRaw[Co2At4Ch1]
+922.418 -0.107748 0.0 !Mu0ChX114TRaw[Co2At4Ch2]
+908.876 -0.107782 0.0 !Mu0ChX115TRaw[Co2At4Ch3]
+922.546 -0.109007 0.0 !Mu0ChX116TRaw[Co2At4Ch4]
+936.638 -0.109423 0.0 !Mu0ChX117TRaw[Co2At4Ch5]
+936.691 -0.108648 0.0 !Mu0ChX118TRaw[Co2At4Ch6]
+959.153 -0.110413 0.0 !Mu0ChX119TRaw[Co2At4Ch7]
+946.313 -0.110579 0.0 !Mu0ChX120TRaw[Co2At4Ch8]
+950.811 -0.109898 0.0 !Mu0ChX121TRaw[Co2At4Ch9]
+973.845 -0.1105 0.0 !Mu0ChX122TRaw[Co2At4Ch10]
+996.871 -0.111529 0.0 !Mu0ChX123TRaw[Co2At4Ch11]
+946.384 -0.110604 0.0 !Mu0ChX124TRaw[Co2At4Ch12]
+956.453 -0.110972 0.0 !Mu0ChX125TRaw[Co2At4Ch13]
+958.311 -0.11118 0.0 !Mu0ChX126TRaw[Co2At4Ch14]
+964.725 -0.110613 0.0 !Mu0ChX127TRaw[Co2At4Ch15]
+986.747 -0.111151 0.0 !Mu0ChX128TRaw[Co2At4Ch16]
+989.537 -0.114033 0.0 !Mu0ChY2TRaw[Co3At1Ch2]
+955.667 -0.113921 0.0 !Mu0ChY3TRaw[Co3At1Ch3]
+981.529 -0.116104 0.0 !Mu0ChY4TRaw[Co3At1Ch4]
+980.484 -0.115563 0.0 !Mu0ChY5TRaw[Co3At1Ch5]
+989.097 -0.117481 0.0 !Mu0ChY6TRaw[Co3At1Ch6]
+991.604 -0.117339 0.0 !Mu0ChY7TRaw[Co3At1Ch7]
+996.371 -0.117018 0.0 !Mu0ChY8TRaw[Co3At1Ch8]
+995.892 -0.117842 0.0 !Mu0ChY9TRaw[Co3At1Ch9]
+1010.018 -0.117316 0.0 !Mu0ChY10TRaw[Co3At1Ch10]
+986.738 -0.117632 0.0 !Mu0ChY11TRaw[Co3At1Ch11]
+985.508 -0.118398 0.0 !Mu0ChY12TRaw[Co3At1Ch12]
+998.348 -0.11814 0.0 !Mu0ChY13TRaw[Co3At1Ch13]
+990.199 -0.117633 0.0 !Mu0ChY14TRaw[Co3At1Ch14]
+1010.136 -0.117944 0.0 !Mu0ChY15TRaw[Co3At1Ch15]
+999.786 -0.118761 0.0 !Mu0ChY16TRaw[Co3At1Ch16]
+950.332 -0.113175 0.0 !Mu0ChY17TRaw[Co3At2Ch1]
+970.637 -0.114309 0.0 !Mu0ChY18TRaw[Co3At2Ch2]
+957.295 -0.115351 0.0 !Mu0ChY19TRaw[Co3At2Ch3]
+959.999 -0.11436 0.0 !Mu0ChY20TRaw[Co3At2Ch4]
+958.95 -0.114686 0.0 !Mu0ChY21TRaw[Co3At2Ch5]
+962.534 -0.115103 0.0 !Mu0ChY22TRaw[Co3At2Ch6]
+979.707 -0.115832 0.0 !Mu0ChY23TRaw[Co3At2Ch7]
+983.432 -0.115841 0.0 !Mu0ChY24TRaw[Co3At2Ch8]
+991.925 -0.116398 0.0 !Mu0ChY25TRaw[Co3At2Ch9]
+990.13 -0.116195 0.0 !Mu0ChY26TRaw[Co3At2Ch10]
+971.726 -0.115516 0.0 !Mu0ChY27TRaw[Co3At2Ch11]
+1009.509 -0.117562 0.0 !Mu0ChY28TRaw[Co3At2Ch12]
+1004.207 -0.117834 0.0 !Mu0ChY29TRaw[Co3At2Ch13]
+998.99 -0.11722 0.0 !Mu0ChY30TRaw[Co3At2Ch14]
+990.834 -0.11759 0.0 !Mu0ChY31TRaw[Co3At2Ch15]
+1000.504 -0.116928 0.0 !Mu0ChY32TRaw[Co3At2Ch16]
+886.202 -0.105131 0.0 !Mu0ChY33TRaw[Co3At3Ch1]
+889.317 -0.105113 0.0 !Mu0ChY34TRaw[Co3At3Ch2]
+906.607 -0.107174 0.0 !Mu0ChY35TRaw[Co3At3Ch3]
+899.798 -0.105955 0.0 !Mu0ChY36TRaw[Co3At3Ch4]
+904.768 -0.107363 0.0 !Mu0ChY37TRaw[Co3At3Ch5]
+918.064 -0.107278 0.0 !Mu0ChY38TRaw[Co3At3Ch6]
+921.513 -0.107347 0.0 !Mu0ChY39TRaw[Co3At3Ch7]
+926.687 -0.109567 0.0 !Mu0ChY40TRaw[Co3At3Ch8]
+938.373 -0.109268 0.0 !Mu0ChY41TRaw[Co3At3Ch9]
+935.947 -0.109045 0.0 !Mu0ChY42TRaw[Co3At3Ch10]
+928.571 -0.108924 0.0 !Mu0ChY43TRaw[Co3At3Ch11]
+949.921 -0.110196 0.0 !Mu0ChY44TRaw[Co3At3Ch12]
+922.399 -0.109895 0.0 !Mu0ChY45TRaw[Co3At3Ch13]
+920.724 -0.10924 0.0 !Mu0ChY46TRaw[Co3At3Ch14]
+948.642 -0.110513 0.0 !Mu0ChY47TRaw[Co3At3Ch15]
+932.675 -0.109056 0.0 !Mu0ChY48TRaw[Co3At3Ch16]
+885.573 -0.103507 0.0 !Mu0ChY49TRaw[Co3At4Ch1]
+890.36 -0.104888 0.0 !Mu0ChY50TRaw[Co3At4Ch2]
+889.12 -0.104347 0.0 !Mu0ChY51TRaw[Co3At4Ch3]
+899.388 -0.106391 0.0 !Mu0ChY52TRaw[Co3At4Ch4]
+902.315 -0.106718 0.0 !Mu0ChY53TRaw[Co3At4Ch5]
+917.171 -0.106878 0.0 !Mu0ChY54TRaw[Co3At4Ch6]
+913.403 -0.106441 0.0 !Mu0ChY55TRaw[Co3At4Ch7]
+935.489 -0.107426 0.0 !Mu0ChY56TRaw[Co3At4Ch8]
+906.519 -0.107608 0.0 !Mu0ChY57TRaw[Co3At4Ch9]
+935.091 -0.108136 0.0 !Mu0ChY58TRaw[Co3At4Ch10]
+932.191 -0.109012 0.0 !Mu0ChY59TRaw[Co3At4Ch11]
+913.583 -0.108611 0.0 !Mu0ChY60TRaw[Co3At4Ch12]
+922.821 -0.108719 0.0 !Mu0ChY61TRaw[Co3At4Ch13]
+931.221 -0.109581 0.0 !Mu0ChY62TRaw[Co3At4Ch14]
+931.083 -0.108895 0.0 !Mu0ChY63TRaw[Co3At4Ch15]
+936.955 -0.109543 0.0 !Mu0ChY64TRaw[Co3At4Ch16]
+993.853 -0.116469 0.0 !Mu0ChY65TRaw[Co4At1Ch1]
+1011.78 -0.117302 0.0 !Mu0ChY66TRaw[Co4At1Ch2]
+995.56 -0.118012 0.0 !Mu0ChY67TRaw[Co4At1Ch3]
+1003.176 -0.118028 0.0 !Mu0ChY68TRaw[Co4At1Ch4]
+1025.25 -0.118378 0.0 !Mu0ChY69TRaw[Co4At1Ch5]
+1036.395 -0.118825 0.0 !Mu0ChY70TRaw[Co4At1Ch6]
+1001.923 -0.118781 0.0 !Mu0ChY71TRaw[Co4At1Ch7]
+1008.805 -0.119156 0.0 !Mu0ChY72TRaw[Co4At1Ch8]
+1005.22 -0.119628 0.0 !Mu0ChY73TRaw[Co4At1Ch9]
+1004.154 -0.118591 0.0 !Mu0ChY74TRaw[Co4At1Ch10]
+1031.155 -0.119656 0.0 !Mu0ChY75TRaw[Co4At1Ch11]
+1027.527 -0.120924 0.0 !Mu0ChY76TRaw[Co4At1Ch12]
+1026.408 -0.120327 0.0 !Mu0ChY77TRaw[Co4At1Ch13]
+1047.813 -0.120579 0.0 !Mu0ChY78TRaw[Co4At1Ch14]
+1025.636 -0.120247 0.0 !Mu0ChY79TRaw[Co4At1Ch15]
+1040.75 -0.121097 0.0 !Mu0ChY80TRaw[Co4At1Ch16]
+1004.086 -0.117145 0.0 !Mu0ChY81TRaw[Co4At2Ch1]
+1016.728 -0.119118 0.0 !Mu0ChY82TRaw[Co4At2Ch2]
+1004.19 -0.118534 0.0 !Mu0ChY83TRaw[Co4At2Ch3]
+1057.448 -0.12031 0.0 !Mu0ChY84TRaw[Co4At2Ch4]
+1038.261 -0.120777 0.0 !Mu0ChY85TRaw[Co4At2Ch5]
+1025.585 -0.121085 0.0 !Mu0ChY86TRaw[Co4At2Ch6]
+1032.746 -0.120569 0.0 !Mu0ChY87TRaw[Co4At2Ch7]
+1016.336 -0.121839 0.0 !Mu0ChY88TRaw[Co4At2Ch8]
+1019.819 -0.121339 0.0 !Mu0ChY89TRaw[Co4At2Ch9]
+1038.173 -0.122592 0.0 !Mu0ChY90TRaw[Co4At2Ch10]
+1060.978 -0.123897 0.0 !Mu0ChY91TRaw[Co4At2Ch11]
+1068.859 -0.123866 0.0 !Mu0ChY92TRaw[Co4At2Ch12]
+1055.44 -0.123256 0.0 !Mu0ChY93TRaw[Co4At2Ch13]
+1036.272 -0.123786 0.0 !Mu0ChY94TRaw[Co4At2Ch14]
+1052.796 -0.123408 0.0 !Mu0ChY95TRaw[Co4At2Ch15]
+1049.584 -0.122879 0.0 !Mu0ChY96TRaw[Co4At2Ch16]
+896.563 -0.106544 0.0 !Mu0ChY97TRaw[Co4At3Ch1]
+889.586 -0.106139 0.0 !Mu0ChY98TRaw[Co4At3Ch2]
+891.914 -0.106028 0.0 !Mu0ChY99TRaw[Co4At3Ch3]
+895.093 -0.108041 0.0 !Mu0ChY100TRaw[Co4At3Ch4]
+895.662 -0.107707 0.0 !Mu0ChY101TRaw[Co4At3Ch5]
+915.101 -0.10757 0.0 !Mu0ChY102TRaw[Co4At3Ch6]
+926.581 -0.108105 0.0 !Mu0ChY103TRaw[Co4At3Ch7]
+917.996 -0.10959 0.0 !Mu0ChY104TRaw[Co4At3Ch8]
+940.411 -0.108916 0.0 !Mu0ChY105TRaw[Co4At3Ch9]
+947.193 -0.110544 0.0 !Mu0ChY106TRaw[Co4At3Ch10]
+931.904 -0.109981 0.0 !Mu0ChY107TRaw[Co4At3Ch11]
+929.203 -0.11051 0.0 !Mu0ChY108TRaw[Co4At3Ch12]
+953.398 -0.110421 0.0 !Mu0ChY109TRaw[Co4At3Ch13]
+938.194 -0.109894 0.0 !Mu0ChY110TRaw[Co4At3Ch14]
+936.836 -0.110572 0.0 !Mu0ChY111TRaw[Co4At3Ch15]
+949.368 -0.110803 0.0 !Mu0ChY112TRaw[Co4At3Ch16]
+906.101 -0.107535 0.0 !Mu0ChY113TRaw[Co4At4Ch1]
+910.285 -0.108466 0.0 !Mu0ChY114TRaw[Co4At4Ch2]
+923.437 -0.108438 0.0 !Mu0ChY115TRaw[Co4At4Ch3]
+925.991 -0.109158 0.0 !Mu0ChY116TRaw[Co4At4Ch4]
+952.064 -0.110566 0.0 !Mu0ChY117TRaw[Co4At4Ch5]
+927.647 -0.109757 0.0 !Mu0ChY118TRaw[Co4At4Ch6]
+958.629 -0.112167 0.0 !Mu0ChY119TRaw[Co4At4Ch7]
+945.091 -0.111146 0.0 !Mu0ChY120TRaw[Co4At4Ch8]
+963.994 -0.112407 0.0 !Mu0ChY121TRaw[Co4At4Ch9]
+952.702 -0.112337 0.0 !Mu0ChY122TRaw[Co4At4Ch10]
+961.592 -0.112539 0.0 !Mu0ChY123TRaw[Co4At4Ch11]
+947.459 -0.112978 0.0 !Mu0ChY124TRaw[Co4At4Ch12]
+934.829 -0.112316 0.0 !Mu0ChY125TRaw[Co4At4Ch13]
+933.712 -0.112192 0.0 !Mu0ChY126TRaw[Co4At4Ch14]
+934.356 -0.111821 0.0 !Mu0ChY127TRaw[Co4At4Ch15]
+951.885 -0.112162 0.0 !Mu0ChY128TRaw[Co4At4Ch16]
+980.849 -0.11232 0.0 !Mu1ChX1TRaw[Co1At1Ch1]
+995.644 -0.114015 0.0 !Mu1ChX2TRaw[Co1At1Ch2]
+990.977 -0.114341 0.0 !Mu1ChX3TRaw[Co1At1Ch3]
+991.783 -0.115712 0.0 !Mu1ChX4TRaw[Co1At1Ch4]
+1010.572 -0.115744 0.0 !Mu1ChX5TRaw[Co1At1Ch5]
+1004.942 -0.115962 0.0 !Mu1ChX6TRaw[Co1At1Ch6]
+1027.025 -0.117589 0.0 !Mu1ChX7TRaw[Co1At1Ch7]
+1013.964 -0.116998 0.0 !Mu1ChX8TRaw[Co1At1Ch8]
+1014.607 -0.117498 0.0 !Mu1ChX9TRaw[Co1At1Ch9]
+1043.091 -0.118577 0.0 !Mu1ChX10TRaw[Co1At1Ch10]
+1034.931 -0.118143 0.0 !Mu1ChX11TRaw[Co1At1Ch11]
+1034.599 -0.118071 0.0 !Mu1ChX12TRaw[Co1At1Ch12]
+1047.388 -0.11954 0.0 !Mu1ChX13TRaw[Co1At1Ch13]
+1090.349 -0.119597 0.0 !Mu1ChX14TRaw[Co1At1Ch14]
+1079.336 -0.119236 0.0 !Mu1ChX15TRaw[Co1At1Ch15]
+1399.973 -0.119179 0.0 !Mu1ChX16TRaw[Co1At1Ch16]
+965.899 -0.111777 0.0 !Mu1ChX17TRaw[Co1At2Ch1]
+1008.155 -0.114612 0.0 !Mu1ChX18TRaw[Co1At2Ch2]
+1031.29 -0.114738 0.0 !Mu1ChX19TRaw[Co1At2Ch3]
+1013.952 -0.114439 0.0 !Mu1ChX20TRaw[Co1At2Ch4]
+1000.845 -0.115464 0.0 !Mu1ChX21TRaw[Co1At2Ch5]
+1018.067 -0.117052 0.0 !Mu1ChX22TRaw[Co1At2Ch6]
+1021.992 -0.115762 0.0 !Mu1ChX23TRaw[Co1At2Ch7]
+1031.743 -0.117739 0.0 !Mu1ChX24TRaw[Co1At2Ch8]
+1026.307 -0.117531 0.0 !Mu1ChX25TRaw[Co1At2Ch9]
+1010.795 -0.117923 0.0 !Mu1ChX26TRaw[Co1At2Ch10]
+1039.632 -0.117737 0.0 !Mu1ChX27TRaw[Co1At2Ch11]
+1043.136 -0.11821 0.0 !Mu1ChX28TRaw[Co1At2Ch12]
+1030.929 -0.118677 0.0 !Mu1ChX29TRaw[Co1At2Ch13]
+1014.245 -0.118324 0.0 !Mu1ChX30TRaw[Co1At2Ch14]
+1039.652 -0.118198 0.0 !Mu1ChX31TRaw[Co1At2Ch15]
+1033.056 -0.119148 0.0 !Mu1ChX32TRaw[Co1At2Ch16]
+886.337 -0.106165 0.0 !Mu1ChX33TRaw[Co1At3Ch1]
+899.905 -0.10618 0.0 !Mu1ChX34TRaw[Co1At3Ch2]
+919.178 -0.108064 0.0 !Mu1ChX35TRaw[Co1At3Ch3]
+908.222 -0.105941 0.0 !Mu1ChX36TRaw[Co1At3Ch4]
+926.543 -0.108105 0.0 !Mu1ChX37TRaw[Co1At3Ch5]
+925.555 -0.108823 0.0 !Mu1ChX38TRaw[Co1At3Ch6]
+918.057 -0.107861 0.0 !Mu1ChX39TRaw[Co1At3Ch7]
+919.133 -0.10842 0.0 !Mu1ChX40TRaw[Co1At3Ch8]
+929.006 -0.108779 0.0 !Mu1ChX41TRaw[Co1At3Ch9]
+932.249 -0.108754 0.0 !Mu1ChX42TRaw[Co1At3Ch10]
+955.208 -0.109783 0.0 !Mu1ChX43TRaw[Co1At3Ch11]
+933.139 -0.108855 0.0 !Mu1ChX44TRaw[Co1At3Ch12]
+937.243 -0.110019 0.0 !Mu1ChX45TRaw[Co1At3Ch13]
+923.868 -0.109854 0.0 !Mu1ChX46TRaw[Co1At3Ch14]
+942.489 -0.109528 0.0 !Mu1ChX47TRaw[Co1At3Ch15]
+980.341 -0.110055 0.0 !Mu1ChX48TRaw[Co1At3Ch16]
+911.222 -0.104838 0.0 !Mu1ChX49TRaw[Co1At4Ch1]
+908.507 -0.105455 0.0 !Mu1ChX50TRaw[Co1At4Ch2]
+907.89 -0.107015 0.0 !Mu1ChX51TRaw[Co1At4Ch3]
+903.533 -0.107338 0.0 !Mu1ChX52TRaw[Co1At4Ch4]
+910.292 -0.107685 0.0 !Mu1ChX53TRaw[Co1At4Ch5]
+927.437 -0.107699 0.0 !Mu1ChX54TRaw[Co1At4Ch6]
+931.552 -0.10819 0.0 !Mu1ChX55TRaw[Co1At4Ch7]
+937.564 -0.108878 0.0 !Mu1ChX56TRaw[Co1At4Ch8]
+937.603 -0.1097 0.0 !Mu1ChX57TRaw[Co1At4Ch9]
+929.418 -0.10916 0.0 !Mu1ChX58TRaw[Co1At4Ch10]
+945.414 -0.110244 0.0 !Mu1ChX59TRaw[Co1At4Ch11]
+930.688 -0.109308 0.0 !Mu1ChX60TRaw[Co1At4Ch12]
+961.82 -0.110894 0.0 !Mu1ChX61TRaw[Co1At4Ch13]
+931.811 -0.109867 0.0 !Mu1ChX62TRaw[Co1At4Ch14]
+938.381 -0.109791 0.0 !Mu1ChX63TRaw[Co1At4Ch15]
+943.474 -0.110777 0.0 !Mu1ChX64TRaw[Co1At4Ch16]
+988.402 -0.114723 0.0 !Mu1ChX65TRaw[Co2At1Ch1]
+987.059 -0.114949 0.0 !Mu1ChX66TRaw[Co2At1Ch2]
+1005.296 -0.116629 0.0 !Mu1ChX67TRaw[Co2At1Ch3]
+1041.962 -0.116557 0.0 !Mu1ChX68TRaw[Co2At1Ch4]
+1018.025 -0.116827 0.0 !Mu1ChX69TRaw[Co2At1Ch5]
+1026.525 -0.117811 0.0 !Mu1ChX70TRaw[Co2At1Ch6]
+1022.451 -0.117758 0.0 !Mu1ChX71TRaw[Co2At1Ch7]
+1039.117 -0.118392 0.0 !Mu1ChX72TRaw[Co2At1Ch8]
+1036.398 -0.118063 0.0 !Mu1ChX73TRaw[Co2At1Ch9]
+1051.153 -0.119853 0.0 !Mu1ChX74TRaw[Co2At1Ch10]
+1039.597 -0.119377 0.0 !Mu1ChX75TRaw[Co2At1Ch11]
+1026.806 -0.119141 0.0 !Mu1ChX76TRaw[Co2At1Ch12]
+1037.981 -0.119982 0.0 !Mu1ChX77TRaw[Co2At1Ch13]
+1039.726 -0.120199 0.0 !Mu1ChX78TRaw[Co2At1Ch14]
+1047.594 -0.1202 0.0 !Mu1ChX79TRaw[Co2At1Ch15]
+1404.444 -0.120722 0.0 !Mu1ChX80TRaw[Co2At1Ch16]
+1011.808 -0.117775 0.0 !Mu1ChX81TRaw[Co2At2Ch1]
+1016.332 -0.118024 0.0 !Mu1ChX82TRaw[Co2At2Ch2]
+1030.608 -0.118652 0.0 !Mu1ChX83TRaw[Co2At2Ch3]
+1029.549 -0.120307 0.0 !Mu1ChX84TRaw[Co2At2Ch4]
+1040.137 -0.120215 0.0 !Mu1ChX85TRaw[Co2At2Ch5]
+1062.0 -0.121389 0.0 !Mu1ChX86TRaw[Co2At2Ch6]
+1059.477 -0.121554 0.0 !Mu1ChX87TRaw[Co2At2Ch7]
+1046.994 -0.12057 0.0 !Mu1ChX88TRaw[Co2At2Ch8]
+1070.134 -0.122345 0.0 !Mu1ChX89TRaw[Co2At2Ch9]
+1064.802 -0.12261 0.0 !Mu1ChX90TRaw[Co2At2Ch10]
+1067.994 -0.122082 0.0 !Mu1ChX91TRaw[Co2At2Ch11]
+1058.802 -0.12282 0.0 !Mu1ChX92TRaw[Co2At2Ch12]
+1085.606 -0.12279 0.0 !Mu1ChX93TRaw[Co2At2Ch13]
+1112.3 -0.123127 0.0 !Mu1ChX94TRaw[Co2At2Ch14]
+1065.22 -0.123096 0.0 !Mu1ChX95TRaw[Co2At2Ch15]
+1087.39 -0.12163 0.0 !Mu1ChX96TRaw[Co2At2Ch16]
+944.75 -0.107613 0.0 !Mu1ChX97TRaw[Co2At3Ch1]
+953.257 -0.107373 0.0 !Mu1ChX98TRaw[Co2At3Ch2]
+940.186 -0.107838 0.0 !Mu1ChX99TRaw[Co2At3Ch3]
+938.233 -0.109224 0.0 !Mu1ChX100TRaw[Co2At3Ch4]
+938.882 -0.1092 0.0 !Mu1ChX101TRaw[Co2At3Ch5]
+946.755 -0.109791 0.0 !Mu1ChX102TRaw[Co2At3Ch6]
+949.15 -0.109268 0.0 !Mu1ChX103TRaw[Co2At3Ch7]
+986.829 -0.111151 0.0 !Mu1ChX104TRaw[Co2At3Ch8]
+995.127 -0.11128 0.0 !Mu1ChX105TRaw[Co2At3Ch9]
+1003.516 -0.111467 0.0 !Mu1ChX106TRaw[Co2At3Ch10]
+998.332 -0.112035 0.0 !Mu1ChX107TRaw[Co2At3Ch11]
+1007.836 -0.111519 0.0 !Mu1ChX108TRaw[Co2At3Ch12]
+1008.695 -0.111616 0.0 !Mu1ChX109TRaw[Co2At3Ch13]
+950.4 -0.110627 0.0 !Mu1ChX110TRaw[Co2At3Ch14]
+967.222 -0.110941 0.0 !Mu1ChX111TRaw[Co2At3Ch15]
+991.806 -0.11176 0.0 !Mu1ChX112TRaw[Co2At3Ch16]
+971.271 -0.108476 0.0 !Mu1ChX113TRaw[Co2At4Ch1]
+940.865 -0.108567 0.0 !Mu1ChX114TRaw[Co2At4Ch2]
+938.048 -0.10946 0.0 !Mu1ChX115TRaw[Co2At4Ch3]
+971.747 -0.110136 0.0 !Mu1ChX116TRaw[Co2At4Ch4]
+1026.72 -0.111977 0.0 !Mu1ChX117TRaw[Co2At4Ch5]
+999.883 -0.111304 0.0 !Mu1ChX118TRaw[Co2At4Ch6]
+998.593 -0.112781 0.0 !Mu1ChX119TRaw[Co2At4Ch7]
+969.943 -0.110659 0.0 !Mu1ChX120TRaw[Co2At4Ch8]
+975.062 -0.111325 0.0 !Mu1ChX121TRaw[Co2At4Ch9]
+1011.733 -0.112226 0.0 !Mu1ChX122TRaw[Co2At4Ch10]
+969.884 -0.11236 0.0 !Mu1ChX123TRaw[Co2At4Ch11]
+968.551 -0.111775 0.0 !Mu1ChX124TRaw[Co2At4Ch12]
+958.828 -0.111483 0.0 !Mu1ChX125TRaw[Co2At4Ch13]
+982.145 -0.112193 0.0 !Mu1ChX126TRaw[Co2At4Ch14]
+989.725 -0.112614 0.0 !Mu1ChX127TRaw[Co2At4Ch15]
+987.185 -0.111864 0.0 !Mu1ChX128TRaw[Co2At4Ch16]
+959.046 -0.11282 0.0 !Mu1ChY1TRaw[Co3At1Ch1]
+955.007 -0.113022 0.0 !Mu1ChY2TRaw[Co3At1Ch2]
+990.4 -0.114361 0.0 !Mu1ChY3TRaw[Co3At1Ch3]
+998.254 -0.114834 0.0 !Mu1ChY4TRaw[Co3At1Ch4]
+996.127 -0.115122 0.0 !Mu1ChY5TRaw[Co3At1Ch5]
+978.096 -0.115533 0.0 !Mu1ChY6TRaw[Co3At1Ch6]
+970.638 -0.115938 0.0 !Mu1ChY7TRaw[Co3At1Ch7]
+974.726 -0.114726 0.0 !Mu1ChY8TRaw[Co3At1Ch8]
+993.383 -0.11562 0.0 !Mu1ChY9TRaw[Co3At1Ch9]
+1007.108 -0.116854 0.0 !Mu1ChY10TRaw[Co3At1Ch10]
+995.68 -0.116368 0.0 !Mu1ChY11TRaw[Co3At1Ch11]
+1000.024 -0.117327 0.0 !Mu1ChY12TRaw[Co3At1Ch12]
+985.351 -0.117358 0.0 !Mu1ChY13TRaw[Co3At1Ch13]
+999.446 -0.116827 0.0 !Mu1ChY14TRaw[Co3At1Ch14]
+1004.621 -0.116981 0.0 !Mu1ChY15TRaw[Co3At1Ch15]
+1005.546 -0.116717 0.0 !Mu1ChY16TRaw[Co3At1Ch16]
+1012.494 -0.116883 0.0 !Mu1ChY17TRaw[Co3At2Ch1]
+1014.466 -0.117128 0.0 !Mu1ChY18TRaw[Co3At2Ch2]
+992.985 -0.117665 0.0 !Mu1ChY19TRaw[Co3At2Ch3]
+997.079 -0.117743 0.0 !Mu1ChY20TRaw[Co3At2Ch4]
+1016.676 -0.119146 0.0 !Mu1ChY21TRaw[Co3At2Ch5]
+1013.451 -0.118747 0.0 !Mu1ChY22TRaw[Co3At2Ch6]
+1426.337 -0.119189 0.0 !Mu1ChY23TRaw[Co3At2Ch7]
+1047.483 -0.119964 0.0 !Mu1ChY24TRaw[Co3At2Ch8]
+1006.065 -0.120158 0.0 !Mu1ChY25TRaw[Co3At2Ch9]
+1021.389 -0.120176 0.0 !Mu1ChY26TRaw[Co3At2Ch10]
+1025.992 -0.120728 0.0 !Mu1ChY27TRaw[Co3At2Ch11]
+1028.907 -0.120113 0.0 !Mu1ChY28TRaw[Co3At2Ch12]
+1055.441 -0.120339 0.0 !Mu1ChY29TRaw[Co3At2Ch13]
+1025.325 -0.119308 0.0 !Mu1ChY30TRaw[Co3At2Ch14]
+1027.794 -0.120108 0.0 !Mu1ChY31TRaw[Co3At2Ch15]
+1034.513 -0.119515 0.0 !Mu1ChY32TRaw[Co3At2Ch16]
+920.744 -0.106691 0.0 !Mu1ChY33TRaw[Co3At3Ch1]
+922.373 -0.10745 0.0 !Mu1ChY34TRaw[Co3At3Ch2]
+935.437 -0.106848 0.0 !Mu1ChY35TRaw[Co3At3Ch3]
+918.478 -0.108037 0.0 !Mu1ChY36TRaw[Co3At3Ch4]
+850695103980.0 -103827000.0 0.0 !Mu1ChY37TRaw[Co3At3Ch5]
+946.467 -0.109433 0.0 !Mu1ChY38TRaw[Co3At3Ch6]
+928.82 -0.110242 0.0 !Mu1ChY39TRaw[Co3At3Ch7]
+944.55 -0.10944 0.0 !Mu1ChY40TRaw[Co3At3Ch8]
+921.176 -0.107957 0.0 !Mu1ChY41TRaw[Co3At3Ch9]
+961.639 -0.109521 0.0 !Mu1ChY42TRaw[Co3At3Ch10]
+947.387 -0.108623 0.0 !Mu1ChY43TRaw[Co3At3Ch11]
+989.749 -0.10969 0.0 !Mu1ChY44TRaw[Co3At3Ch12]
+952.402 -0.109989 0.0 !Mu1ChY45TRaw[Co3At3Ch13]
+957.138 -0.109312 0.0 !Mu1ChY46TRaw[Co3At3Ch14]
+958.024 -0.109844 0.0 !Mu1ChY47TRaw[Co3At3Ch15]
+966.166 -0.109257 0.0 !Mu1ChY48TRaw[Co3At3Ch16]
+920.741 -0.10696 0.0 !Mu1ChY49TRaw[Co3At4Ch1]
+920.027 -0.106852 0.0 !Mu1ChY50TRaw[Co3At4Ch2]
+912.826 -0.106436 0.0 !Mu1ChY51TRaw[Co3At4Ch3]
+936.647 -0.108049 0.0 !Mu1ChY52TRaw[Co3At4Ch4]
+960.344 -0.108781 0.0 !Mu1ChY53TRaw[Co3At4Ch5]
+964.769 -0.108923 0.0 !Mu1ChY54TRaw[Co3At4Ch6]
+957.64 -0.108922 0.0 !Mu1ChY55TRaw[Co3At4Ch7]
+933.691 -0.108949 0.0 !Mu1ChY56TRaw[Co3At4Ch8]
+931.842 -0.110395 0.0 !Mu1ChY57TRaw[Co3At4Ch9]
+944.809 -0.110294 0.0 !Mu1ChY58TRaw[Co3At4Ch10]
+947.24 -0.109746 0.0 !Mu1ChY59TRaw[Co3At4Ch11]
+957.31 -0.109802 0.0 !Mu1ChY60TRaw[Co3At4Ch12]
+943.761 -0.109742 0.0 !Mu1ChY61TRaw[Co3At4Ch13]
+966.426 -0.11072 0.0 !Mu1ChY62TRaw[Co3At4Ch14]
+950.095 -0.110879 0.0 !Mu1ChY63TRaw[Co3At4Ch15]
+951.17 -0.111037 0.0 !Mu1ChY64TRaw[Co3At4Ch16]
+972.73 -0.115194 0.0 !Mu1ChY65TRaw[Co4At1Ch1]
+988.76 -0.116053 0.0 !Mu1ChY66TRaw[Co4At1Ch2]
+995.222 -0.116788 0.0 !Mu1ChY67TRaw[Co4At1Ch3]
+993.192 -0.117211 0.0 !Mu1ChY68TRaw[Co4At1Ch4]
+991.024 -0.117617 0.0 !Mu1ChY69TRaw[Co4At1Ch5]
+1021.91 -0.118609 0.0 !Mu1ChY70TRaw[Co4At1Ch6]
+998.673 -0.118053 0.0 !Mu1ChY71TRaw[Co4At1Ch7]
+1033.44 -0.119038 0.0 !Mu1ChY72TRaw[Co4At1Ch8]
+1023.013 -0.119163 0.0 !Mu1ChY73TRaw[Co4At1Ch9]
+1030.138 -0.119552 0.0 !Mu1ChY74TRaw[Co4At1Ch10]
+997.999 -0.119777 0.0 !Mu1ChY75TRaw[Co4At1Ch11]
+1028.938 -0.119391 0.0 !Mu1ChY76TRaw[Co4At1Ch12]
+1039.947 -0.11981 0.0 !Mu1ChY77TRaw[Co4At1Ch13]
+1018.562 -0.119505 0.0 !Mu1ChY78TRaw[Co4At1Ch14]
+1026.918 -0.119601 0.0 !Mu1ChY79TRaw[Co4At1Ch15]
+1016.742 -0.120194 0.0 !Mu1ChY80TRaw[Co4At1Ch16]
+1000.175 -0.114646 0.0 !Mu1ChY81TRaw[Co4At2Ch1]
+1008.839 -0.115676 0.0 !Mu1ChY82TRaw[Co4At2Ch2]
+985.563 -0.115551 0.0 !Mu1ChY83TRaw[Co4At2Ch3]
+993.917 -0.116392 0.0 !Mu1ChY84TRaw[Co4At2Ch4]
+1014.626 -0.116344 0.0 !Mu1ChY85TRaw[Co4At2Ch5]
+991.36 -0.117589 0.0 !Mu1ChY86TRaw[Co4At2Ch6]
+1003.643 -0.117699 0.0 !Mu1ChY87TRaw[Co4At2Ch7]
+1010.927 -0.118567 0.0 !Mu1ChY88TRaw[Co4At2Ch8]
+1019.642 -0.118705 0.0 !Mu1ChY89TRaw[Co4At2Ch9]
+1008.155 -0.117807 0.0 !Mu1ChY90TRaw[Co4At2Ch10]
+1035.898 -0.118376 0.0 !Mu1ChY91TRaw[Co4At2Ch11]
+994.394 -0.119333 0.0 !Mu1ChY92TRaw[Co4At2Ch12]
+1021.709 -0.119429 0.0 !Mu1ChY93TRaw[Co4At2Ch13]
+1010.995 -0.118576 0.0 !Mu1ChY94TRaw[Co4At2Ch14]
+1018.58 -0.119031 0.0 !Mu1ChY95TRaw[Co4At2Ch15]
+1011.279 -0.120471 0.0 !Mu1ChY96TRaw[Co4At2Ch16]
+901.438 -0.106136 0.0 !Mu1ChY97TRaw[Co4At3Ch1]
+901.598 -0.106 0.0 !Mu1ChY98TRaw[Co4At3Ch2]
+892.576 -0.106555 0.0 !Mu1ChY99TRaw[Co4At3Ch3]
+920.81 -0.108263 0.0 !Mu1ChY100TRaw[Co4At3Ch4]
+906.799 -0.10801 0.0 !Mu1ChY101TRaw[Co4At3Ch5]
+896.759 -0.107044 0.0 !Mu1ChY102TRaw[Co4At3Ch6]
+907.908 -0.108005 0.0 !Mu1ChY103TRaw[Co4At3Ch7]
+925.104 -0.108406 0.0 !Mu1ChY104TRaw[Co4At3Ch8]
+932.551 -0.109653 0.0 !Mu1ChY105TRaw[Co4At3Ch9]
+908.315 -0.10926 0.0 !Mu1ChY106TRaw[Co4At3Ch10]
+938.118 -0.10967 0.0 !Mu1ChY107TRaw[Co4At3Ch11]
+916.068 -0.108536 0.0 !Mu1ChY108TRaw[Co4At3Ch12]
+939.43 -0.109417 0.0 !Mu1ChY109TRaw[Co4At3Ch13]
+950.082 -0.110268 0.0 !Mu1ChY110TRaw[Co4At3Ch14]
+930.016 -0.109108 0.0 !Mu1ChY111TRaw[Co4At3Ch15]
+930.868 -0.109824 0.0 !Mu1ChY112TRaw[Co4At3Ch16]
+891.572 -0.104291 0.0 !Mu1ChY113TRaw[Co4At4Ch1]
+875.099 -0.103549 0.0 !Mu1ChY114TRaw[Co4At4Ch2]
+900.246 -0.104798 0.0 !Mu1ChY115TRaw[Co4At4Ch3]
+912.537 -0.10419 0.0 !Mu1ChY116TRaw[Co4At4Ch4]
+885.693 -0.105221 0.0 !Mu1ChY117TRaw[Co4At4Ch5]
+925.459 -0.106354 0.0 !Mu1ChY118TRaw[Co4At4Ch6]
+908.711 -0.1069 0.0 !Mu1ChY119TRaw[Co4At4Ch7]
+909.178 -0.106252 0.0 !Mu1ChY120TRaw[Co4At4Ch8]
+931.016 -0.108379 0.0 !Mu1ChY121TRaw[Co4At4Ch9]
+922.012 -0.108492 0.0 !Mu1ChY122TRaw[Co4At4Ch10]
+916.508 -0.108225 0.0 !Mu1ChY123TRaw[Co4At4Ch11]
+906.606 -0.108132 0.0 !Mu1ChY124TRaw[Co4At4Ch12]
+915.935 -0.108412 0.0 !Mu1ChY125TRaw[Co4At4Ch13]
+907.675 -0.10784 0.0 !Mu1ChY126TRaw[Co4At4Ch14]
+920.698 -0.107526 0.0 !Mu1ChY127TRaw[Co4At4Ch15]
+971.039 -0.121191 0.0 !Mu1ChY128TRaw[Co4At4Ch16]
+1005.057 -0.113282 0.0 !Mu2ChX1TRaw[Co1At1Ch1]
+1024.643 -0.112935 0.0 !Mu2ChX2TRaw[Co1At1Ch2]
+986.354 -0.113903 0.0 !Mu2ChX3TRaw[Co1At1Ch3]
+995.274 -0.11541 0.0 !Mu2ChX4TRaw[Co1At1Ch4]
+998.065 -0.114834 0.0 !Mu2ChX5TRaw[Co1At1Ch5]
+1012.746 -0.116968 0.0 !Mu2ChX6TRaw[Co1At1Ch6]
+1039.176 -0.116144 0.0 !Mu2ChX7TRaw[Co1At1Ch7]
+1055.919 -0.116738 0.0 !Mu2ChX8TRaw[Co1At1Ch8]
+1024.818 -0.115736 0.0 !Mu2ChX9TRaw[Co1At1Ch9]
+1041.025 -0.117191 0.0 !Mu2ChX10TRaw[Co1At1Ch10]
+1055.419 -0.117505 0.0 !Mu2ChX11TRaw[Co1At1Ch11]
+1057.127 -0.116868 0.0 !Mu2ChX12TRaw[Co1At1Ch12]
+1050.195 -0.117596 0.0 !Mu2ChX13TRaw[Co1At1Ch13]
+1038.03 -0.116864 0.0 !Mu2ChX14TRaw[Co1At1Ch14]
+1061.15 -0.116934 0.0 !Mu2ChX15TRaw[Co1At1Ch15]
+1412.756 -0.118078 0.0 !Mu2ChX16TRaw[Co1At1Ch16]
+988.528 -0.111042 0.0 !Mu2ChX17TRaw[Co1At2Ch1]
+1014.262 -0.1129 0.0 !Mu2ChX18TRaw[Co1At2Ch2]
+995.412 -0.113239 0.0 !Mu2ChX19TRaw[Co1At2Ch3]
+1001.287 -0.11311 0.0 !Mu2ChX20TRaw[Co1At2Ch4]
+1023.95 -0.114433 0.0 !Mu2ChX21TRaw[Co1At2Ch5]
+1029.883 -0.113893 0.0 !Mu2ChX22TRaw[Co1At2Ch6]
+1016.473 -0.113604 0.0 !Mu2ChX23TRaw[Co1At2Ch7]
+1036.305 -0.114596 0.0 !Mu2ChX24TRaw[Co1At2Ch8]
+1016.128 -0.113523 0.0 !Mu2ChX25TRaw[Co1At2Ch9]
+1032.235 -0.114529 0.0 !Mu2ChX26TRaw[Co1At2Ch10]
+1018.109 -0.114587 0.0 !Mu2ChX27TRaw[Co1At2Ch11]
+989.033 -0.114127 0.0 !Mu2ChX28TRaw[Co1At2Ch12]
+1003.878 -0.115049 0.0 !Mu2ChX29TRaw[Co1At2Ch13]
+985.429 -0.114577 0.0 !Mu2ChX30TRaw[Co1At2Ch14]
+1031.085 -0.114801 0.0 !Mu2ChX31TRaw[Co1At2Ch15]
+1143.284 -0.114725 0.0 !Mu2ChX32TRaw[Co1At2Ch16]
+915.358 -0.106884 0.0 !Mu2ChX33TRaw[Co1At3Ch1]
+922.985 -0.106588 0.0 !Mu2ChX34TRaw[Co1At3Ch2]
+943.57 -0.10771 0.0 !Mu2ChX35TRaw[Co1At3Ch3]
+943.472 -0.10739 0.0 !Mu2ChX36TRaw[Co1At3Ch4]
+961.3 -0.109058 0.0 !Mu2ChX37TRaw[Co1At3Ch5]
+944.732 -0.108685 0.0 !Mu2ChX38TRaw[Co1At3Ch6]
+948.953 -0.109605 0.0 !Mu2ChX39TRaw[Co1At3Ch7]
+956.233 -0.109211 0.0 !Mu2ChX40TRaw[Co1At3Ch8]
+952.436 -0.109168 0.0 !Mu2ChX41TRaw[Co1At3Ch9]
+976.11 -0.109617 0.0 !Mu2ChX42TRaw[Co1At3Ch10]
+998.27 -0.1104 0.0 !Mu2ChX43TRaw[Co1At3Ch11]
+993.377 -0.110254 0.0 !Mu2ChX44TRaw[Co1At3Ch12]
+980.663 -0.111219 0.0 !Mu2ChX45TRaw[Co1At3Ch13]
+971.875 -0.111043 0.0 !Mu2ChX46TRaw[Co1At3Ch14]
+974.772 -0.111378 0.0 !Mu2ChX47TRaw[Co1At3Ch15]
+1347.092 -0.11089 0.0 !Mu2ChX48TRaw[Co1At3Ch16]
+909.603 -0.102956 0.0 !Mu2ChX49TRaw[Co1At4Ch1]
+903.729 -0.104191 0.0 !Mu2ChX50TRaw[Co1At4Ch2]
+936.844 -0.105362 0.0 !Mu2ChX51TRaw[Co1At4Ch3]
+927.243 -0.10464 0.0 !Mu2ChX52TRaw[Co1At4Ch4]
+950.69 -0.105723 0.0 !Mu2ChX53TRaw[Co1At4Ch5]
+957.281 -0.105755 0.0 !Mu2ChX54TRaw[Co1At4Ch6]
+942.681 -0.105984 0.0 !Mu2ChX55TRaw[Co1At4Ch7]
+951.359 -0.106931 0.0 !Mu2ChX56TRaw[Co1At4Ch8]
+933.36 -0.108024 0.0 !Mu2ChX57TRaw[Co1At4Ch9]
+952.824 -0.108307 0.0 !Mu2ChX58TRaw[Co1At4Ch10]
+954.213 -0.107279 0.0 !Mu2ChX59TRaw[Co1At4Ch11]
+958.465 -0.108543 0.0 !Mu2ChX60TRaw[Co1At4Ch12]
+977.15 -0.108721 0.0 !Mu2ChX61TRaw[Co1At4Ch13]
+967.709 -0.108665 0.0 !Mu2ChX62TRaw[Co1At4Ch14]
+952.646 -0.10824 0.0 !Mu2ChX63TRaw[Co1At4Ch15]
+1310.218 -0.107885 0.0 !Mu2ChX64TRaw[Co1At4Ch16]
+1001.233 -0.117533 0.0 !Mu2ChX65TRaw[Co2At1Ch1]
+1003.211 -0.117545 0.0 !Mu2ChX66TRaw[Co2At1Ch2]
+1066.041 -0.118957 0.0 !Mu2ChX67TRaw[Co2At1Ch3]
+1024.957 -0.119584 0.0 !Mu2ChX68TRaw[Co2At1Ch4]
+1432.499 -0.119902 0.0 !Mu2ChX69TRaw[Co2At1Ch5]
+1033.43 -0.12002 0.0 !Mu2ChX70TRaw[Co2At1Ch6]
+1042.557 -0.120171 0.0 !Mu2ChX71TRaw[Co2At1Ch7]
+1059.805 -0.120802 0.0 !Mu2ChX72TRaw[Co2At1Ch8]
+1047.622 -0.119977 0.0 !Mu2ChX73TRaw[Co2At1Ch9]
+1025.939 -0.12102 0.0 !Mu2ChX74TRaw[Co2At1Ch10]
+1025.453 -0.12055 0.0 !Mu2ChX75TRaw[Co2At1Ch11]
+1024.259 -0.12048 0.0 !Mu2ChX76TRaw[Co2At1Ch12]
+1042.813 -0.121688 0.0 !Mu2ChX77TRaw[Co2At1Ch13]
+1043.519 -0.122136 0.0 !Mu2ChX78TRaw[Co2At1Ch14]
+1037.818 -0.122472 0.0 !Mu2ChX79TRaw[Co2At1Ch15]
+1330.974 -0.121488 0.0 !Mu2ChX80TRaw[Co2At1Ch16]
+969.937 -0.115148 0.0 !Mu2ChX81TRaw[Co2At2Ch1]
+981.206 -0.116512 0.0 !Mu2ChX82TRaw[Co2At2Ch2]
+994.193 -0.116735 0.0 !Mu2ChX83TRaw[Co2At2Ch3]
+1005.358 -0.117158 0.0 !Mu2ChX84TRaw[Co2At2Ch4]
+997.839 -0.117159 0.0 !Mu2ChX85TRaw[Co2At2Ch5]
+1000.082 -0.117336 0.0 !Mu2ChX86TRaw[Co2At2Ch6]
+1010.191 -0.118997 0.0 !Mu2ChX87TRaw[Co2At2Ch7]
+1028.329 -0.118879 0.0 !Mu2ChX88TRaw[Co2At2Ch8]
+1054.676 -0.120152 0.0 !Mu2ChX89TRaw[Co2At2Ch9]
+1035.166 -0.120143 0.0 !Mu2ChX90TRaw[Co2At2Ch10]
+1041.703 -0.120011 0.0 !Mu2ChX91TRaw[Co2At2Ch11]
+1016.252 -0.118788 0.0 !Mu2ChX92TRaw[Co2At2Ch12]
+1058.261 -0.120614 0.0 !Mu2ChX93TRaw[Co2At2Ch13]
+1073.091 -0.12112 0.0 !Mu2ChX94TRaw[Co2At2Ch14]
+1067.441 -0.12123 0.0 !Mu2ChX95TRaw[Co2At2Ch15]
+1030.954 -0.119394 0.0 !Mu2ChX96TRaw[Co2At2Ch16]
+980.425 -0.10895 0.0 !Mu2ChX97TRaw[Co2At3Ch1]
+977.496 -0.11099 0.0 !Mu2ChX98TRaw[Co2At3Ch2]
+976.422 -0.110483 0.0 !Mu2ChX99TRaw[Co2At3Ch3]
+938.171 -0.110494 0.0 !Mu2ChX100TRaw[Co2At3Ch4]
+972.45 -0.11163 0.0 !Mu2ChX101TRaw[Co2At3Ch5]
+987.496 -0.111573 0.0 !Mu2ChX102TRaw[Co2At3Ch6]
+973.077 -0.111368 0.0 !Mu2ChX103TRaw[Co2At3Ch7]
+978.656 -0.111888 0.0 !Mu2ChX104TRaw[Co2At3Ch8]
+992.736 -0.113122 0.0 !Mu2ChX105TRaw[Co2At3Ch9]
+1000.584 -0.112764 0.0 !Mu2ChX106TRaw[Co2At3Ch10]
+994.741 -0.113373 0.0 !Mu2ChX107TRaw[Co2At3Ch11]
+982.648 -0.112797 0.0 !Mu2ChX108TRaw[Co2At3Ch12]
+1002.384 -0.113176 0.0 !Mu2ChX109TRaw[Co2At3Ch13]
+1011.342 -0.113973 0.0 !Mu2ChX110TRaw[Co2At3Ch14]
+989.99 -0.114066 0.0 !Mu2ChX111TRaw[Co2At3Ch15]
+965.353 -0.113973 0.0 !Mu2ChX112TRaw[Co2At3Ch16]
+933.237 -0.108961 0.0 !Mu2ChX113TRaw[Co2At4Ch1]
+944.972 -0.109531 0.0 !Mu2ChX114TRaw[Co2At4Ch2]
+978.071 -0.110461 0.0 !Mu2ChX115TRaw[Co2At4Ch3]
+973.41 -0.110414 0.0 !Mu2ChX116TRaw[Co2At4Ch4]
+979.34 -0.112323 0.0 !Mu2ChX117TRaw[Co2At4Ch5]
+982.649 -0.11267 0.0 !Mu2ChX118TRaw[Co2At4Ch6]
+1013.146 -0.113333 0.0 !Mu2ChX119TRaw[Co2At4Ch7]
+1009.728 -0.113698 0.0 !Mu2ChX120TRaw[Co2At4Ch8]
+991.043 -0.113666 0.0 !Mu2ChX121TRaw[Co2At4Ch9]
+1014.817 -0.114745 0.0 !Mu2ChX122TRaw[Co2At4Ch10]
+991.147 -0.113673 0.0 !Mu2ChX123TRaw[Co2At4Ch11]
+1008.74 -0.11443 0.0 !Mu2ChX124TRaw[Co2At4Ch12]
+975.958 -0.113174 0.0 !Mu2ChX125TRaw[Co2At4Ch13]
+972.192 -0.113143 0.0 !Mu2ChX126TRaw[Co2At4Ch14]
+1017.521 -0.114176 0.0 !Mu2ChX127TRaw[Co2At4Ch15]
+1021.168 -0.114186 0.0 !Mu2ChX128TRaw[Co2At4Ch16]
+1035.908 -0.119525 0.0 !Mu2ChY1TRaw[Co3At1Ch1]
+1035.229 -0.119903 0.0 !Mu2ChY2TRaw[Co3At1Ch2]
+1030.146 -0.119776 0.0 !Mu2ChY3TRaw[Co3At1Ch3]
+1040.541 -0.120524 0.0 !Mu2ChY4TRaw[Co3At1Ch4]
+1061.612 -0.121165 0.0 !Mu2ChY5TRaw[Co3At1Ch5]
+1044.106 -0.120947 0.0 !Mu2ChY6TRaw[Co3At1Ch6]
+1037.447 -0.121526 0.0 !Mu2ChY7TRaw[Co3At1Ch7]
+1044.705 -0.122366 0.0 !Mu2ChY8TRaw[Co3At1Ch8]
+1042.269 -0.122539 0.0 !Mu2ChY9TRaw[Co3At1Ch9]
+1052.929 -0.121307 0.0 !Mu2ChY10TRaw[Co3At1Ch10]
+1040.257 -0.122275 0.0 !Mu2ChY11TRaw[Co3At1Ch11]
+1053.327 -0.122898 0.0 !Mu2ChY12TRaw[Co3At1Ch12]
+1086.343 -0.12312 0.0 !Mu2ChY13TRaw[Co3At1Ch13]
+1064.505 -0.123746 0.0 !Mu2ChY14TRaw[Co3At1Ch14]
+1059.405 -0.123621 0.0 !Mu2ChY15TRaw[Co3At1Ch15]
+1052.538 -0.123744 0.0 !Mu2ChY16TRaw[Co3At1Ch16]
+953.784 -0.113632 0.0 !Mu2ChY17TRaw[Co3At2Ch1]
+960.621 -0.11359 0.0 !Mu2ChY18TRaw[Co3At2Ch2]
+967.342 -0.113546 0.0 !Mu2ChY19TRaw[Co3At2Ch3]
+983.341 -0.113526 0.0 !Mu2ChY20TRaw[Co3At2Ch4]
+1008.293 -0.115367 0.0 !Mu2ChY21TRaw[Co3At2Ch5]
+987.244 -0.117305 0.0 !Mu2ChY22TRaw[Co3At2Ch6]
+994.386 -0.11682 0.0 !Mu2ChY23TRaw[Co3At2Ch7]
+1011.751 -0.116216 0.0 !Mu2ChY24TRaw[Co3At2Ch8]
+997.764 -0.118134 0.0 !Mu2ChY25TRaw[Co3At2Ch9]
+1011.927 -0.118446 0.0 !Mu2ChY26TRaw[Co3At2Ch10]
+1008.984 -0.117858 0.0 !Mu2ChY27TRaw[Co3At2Ch11]
+1019.345 -0.11895 0.0 !Mu2ChY28TRaw[Co3At2Ch12]
+1028.958 -0.118238 0.0 !Mu2ChY29TRaw[Co3At2Ch13]
+1015.531 -0.118468 0.0 !Mu2ChY30TRaw[Co3At2Ch14]
+1040.905 -0.118337 0.0 !Mu2ChY31TRaw[Co3At2Ch15]
+1020.688 -0.116905 0.0 !Mu2ChY32TRaw[Co3At2Ch16]
+900.332 -0.105393 0.0 !Mu2ChY33TRaw[Co3At3Ch1]
+903.961 -0.106206 0.0 !Mu2ChY34TRaw[Co3At3Ch2]
+937.106 -0.107711 0.0 !Mu2ChY35TRaw[Co3At3Ch3]
+931.581 -0.10786 0.0 !Mu2ChY36TRaw[Co3At3Ch4]
+949.203 -0.108297 0.0 !Mu2ChY37TRaw[Co3At3Ch5]
+933.017 -0.107628 0.0 !Mu2ChY38TRaw[Co3At3Ch6]
+942.778 -0.109574 0.0 !Mu2ChY39TRaw[Co3At3Ch7]
+955.834 -0.109401 0.0 !Mu2ChY40TRaw[Co3At3Ch8]
+947.911 -0.109756 0.0 !Mu2ChY41TRaw[Co3At3Ch9]
+970.351 -0.110304 0.0 !Mu2ChY42TRaw[Co3At3Ch10]
+955.445 -0.10979 0.0 !Mu2ChY43TRaw[Co3At3Ch11]
+969.669 -0.110231 0.0 !Mu2ChY44TRaw[Co3At3Ch12]
+972.489 -0.110532 0.0 !Mu2ChY45TRaw[Co3At3Ch13]
+965.057 -0.110907 0.0 !Mu2ChY46TRaw[Co3At3Ch14]
+972.835 -0.111371 0.0 !Mu2ChY47TRaw[Co3At3Ch15]
+974.402 -0.110791 0.0 !Mu2ChY48TRaw[Co3At3Ch16]
+927.359 -0.108016 0.0 !Mu2ChY49TRaw[Co3At4Ch1]
+933.667 -0.109155 0.0 !Mu2ChY50TRaw[Co3At4Ch2]
+930.706 -0.108834 0.0 !Mu2ChY51TRaw[Co3At4Ch3]
+969.179 -0.110471 0.0 !Mu2ChY52TRaw[Co3At4Ch4]
+968.793 -0.109622 0.0 !Mu2ChY53TRaw[Co3At4Ch5]
+960.253 -0.110708 0.0 !Mu2ChY54TRaw[Co3At4Ch6]
+971.112 -0.111116 0.0 !Mu2ChY55TRaw[Co3At4Ch7]
+976.686 -0.11061 0.0 !Mu2ChY56TRaw[Co3At4Ch8]
+969.21 -0.11216 0.0 !Mu2ChY57TRaw[Co3At4Ch9]
+970.703 -0.111079 0.0 !Mu2ChY58TRaw[Co3At4Ch10]
+963.371 -0.111393 0.0 !Mu2ChY59TRaw[Co3At4Ch11]
+966.587 -0.11168 0.0 !Mu2ChY60TRaw[Co3At4Ch12]
+1008.048 -0.11386 0.0 !Mu2ChY61TRaw[Co3At4Ch13]
+971.868 -0.112068 0.0 !Mu2ChY62TRaw[Co3At4Ch14]
+971.445 -0.111623 0.0 !Mu2ChY63TRaw[Co3At4Ch15]
+976.206 -0.112593 0.0 !Mu2ChY64TRaw[Co3At4Ch16]
+958.105 -0.111864 0.0 !Mu2ChY65TRaw[Co4At1Ch1]
+963.914 -0.114242 0.0 !Mu2ChY66TRaw[Co4At1Ch2]
+986.377 -0.114763 0.0 !Mu2ChY67TRaw[Co4At1Ch3]
+987.384 -0.114477 0.0 !Mu2ChY68TRaw[Co4At1Ch4]
+1011.261 -0.117701 0.0 !Mu2ChY69TRaw[Co4At1Ch5]
+998.967 -0.116242 0.0 !Mu2ChY70TRaw[Co4At1Ch6]
+998.106 -0.117144 0.0 !Mu2ChY71TRaw[Co4At1Ch7]
+1003.636 -0.116783 0.0 !Mu2ChY72TRaw[Co4At1Ch8]
+998.423 -0.115747 0.0 !Mu2ChY73TRaw[Co4At1Ch9]
+1015.355 -0.115989 0.0 !Mu2ChY74TRaw[Co4At1Ch10]
+1010.918 -0.116762 0.0 !Mu2ChY75TRaw[Co4At1Ch11]
+1047.851 -0.118324 0.0 !Mu2ChY76TRaw[Co4At1Ch12]
+1043.058 -0.117892 0.0 !Mu2ChY77TRaw[Co4At1Ch13]
+1049.552 -0.118194 0.0 !Mu2ChY78TRaw[Co4At1Ch14]
+1006.326 -0.117092 0.0 !Mu2ChY79TRaw[Co4At1Ch15]
+1027.168 -0.117343 0.0 !Mu2ChY80TRaw[Co4At1Ch16]
+997.413 -0.114246 0.0 !Mu2ChY81TRaw[Co4At2Ch1]
+977.178 -0.113582 0.0 !Mu2ChY82TRaw[Co4At2Ch2]
+1004.205 -0.115097 0.0 !Mu2ChY83TRaw[Co4At2Ch3]
+996.957 -0.114574 0.0 !Mu2ChY84TRaw[Co4At2Ch4]
+1004.96 -0.115653 0.0 !Mu2ChY85TRaw[Co4At2Ch5]
+1015.959 -0.11692 0.0 !Mu2ChY86TRaw[Co4At2Ch6]
+1002.949 -0.116695 0.0 !Mu2ChY87TRaw[Co4At2Ch7]
+1035.062 -0.117388 0.0 !Mu2ChY88TRaw[Co4At2Ch8]
+1004.289 -0.117739 0.0 !Mu2ChY89TRaw[Co4At2Ch9]
+1017.427 -0.11797 0.0 !Mu2ChY90TRaw[Co4At2Ch10]
+1026.009 -0.118525 0.0 !Mu2ChY91TRaw[Co4At2Ch11]
+1005.017 -0.117371 0.0 !Mu2ChY92TRaw[Co4At2Ch12]
+1031.886 -0.118331 0.0 !Mu2ChY93TRaw[Co4At2Ch13]
+1012.702 -0.118283 0.0 !Mu2ChY94TRaw[Co4At2Ch14]
+1031.697 -0.119174 0.0 !Mu2ChY95TRaw[Co4At2Ch15]
+1021.741 -0.119806 0.0 !Mu2ChY96TRaw[Co4At2Ch16]
+920.389 -0.108639 0.0 !Mu2ChY97TRaw[Co4At3Ch1]
+906.063 -0.108189 0.0 !Mu2ChY98TRaw[Co4At3Ch2]
+930.547 -0.109474 0.0 !Mu2ChY99TRaw[Co4At3Ch3]
+932.877 -0.109308 0.0 !Mu2ChY100TRaw[Co4At3Ch4]
+957.336 -0.110997 0.0 !Mu2ChY101TRaw[Co4At3Ch5]
+980.502 -0.111938 0.0 !Mu2ChY102TRaw[Co4At3Ch6]
+951.613 -0.110746 0.0 !Mu2ChY103TRaw[Co4At3Ch7]
+975.319 -0.112691 0.0 !Mu2ChY104TRaw[Co4At3Ch8]
+966.442 -0.112025 0.0 !Mu2ChY105TRaw[Co4At3Ch9]
+968.892 -0.111507 0.0 !Mu2ChY106TRaw[Co4At3Ch10]
+966.716 -0.111663 0.0 !Mu2ChY107TRaw[Co4At3Ch11]
+966.437 -0.111623 0.0 !Mu2ChY108TRaw[Co4At3Ch12]
+980.668 -0.112066 0.0 !Mu2ChY109TRaw[Co4At3Ch13]
+970.782 -0.11214 0.0 !Mu2ChY110TRaw[Co4At3Ch14]
+945.838 -0.111703 0.0 !Mu2ChY111TRaw[Co4At3Ch15]
+936.338 -0.110525 0.0 !Mu2ChY112TRaw[Co4At3Ch16]
+877.948 -0.102981 0.0 !Mu2ChY113TRaw[Co4At4Ch1]
+897.823 -0.104976 0.0 !Mu2ChY114TRaw[Co4At4Ch2]
+907.501 -0.105936 0.0 !Mu2ChY115TRaw[Co4At4Ch3]
+917.812 -0.10575 0.0 !Mu2ChY116TRaw[Co4At4Ch4]
+919.383 -0.106741 0.0 !Mu2ChY117TRaw[Co4At4Ch5]
+919.032 -0.10628 0.0 !Mu2ChY118TRaw[Co4At4Ch6]
+942.158 -0.107805 0.0 !Mu2ChY119TRaw[Co4At4Ch7]
+933.057 -0.107966 0.0 !Mu2ChY120TRaw[Co4At4Ch8]
+912.799 -0.106759 0.0 !Mu2ChY121TRaw[Co4At4Ch9]
+947.398 -0.108381 0.0 !Mu2ChY122TRaw[Co4At4Ch10]
+938.596 -0.108195 0.0 !Mu2ChY123TRaw[Co4At4Ch11]
+1336.257 -0.108195 0.0 !Mu2ChY124TRaw[Co4At4Ch12]
+938.061 -0.108519 0.0 !Mu2ChY125TRaw[Co4At4Ch13]
+922.884 -0.10863 0.0 !Mu2ChY126TRaw[Co4At4Ch14]
+926.419 -0.108768 0.0 !Mu2ChY127TRaw[Co4At4Ch15]
+929.386 -0.108297 0.0 !Mu2ChY128TRaw[Co4At4Ch16]
+981.478 -0.113591 0.0 !Mu3ChX1TRaw[Co1At1Ch1]
+1013.776 -0.115254 0.0 !Mu3ChX2TRaw[Co1At1Ch2]
+992.886 -0.115822 0.0 !Mu3ChX3TRaw[Co1At1Ch3]
+1013.44 -0.116042 0.0 !Mu3ChX4TRaw[Co1At1Ch4]
+990.472 -0.115096 0.0 !Mu3ChX5TRaw[Co1At1Ch5]
+1028.134 -0.11686 0.0 !Mu3ChX6TRaw[Co1At1Ch6]
+1024.899 -0.117385 0.0 !Mu3ChX7TRaw[Co1At1Ch7]
+993.024 -0.118019 0.0 !Mu3ChX8TRaw[Co1At1Ch8]
+998.524 -0.117779 0.0 !Mu3ChX9TRaw[Co1At1Ch9]
+1018.624 -0.117496 0.0 !Mu3ChX10TRaw[Co1At1Ch10]
+1032.674 -0.117795 0.0 !Mu3ChX11TRaw[Co1At1Ch11]
+1034.132 -0.119273 0.0 !Mu3ChX12TRaw[Co1At1Ch12]
+1042.32 -0.118031 0.0 !Mu3ChX13TRaw[Co1At1Ch13]
+1022.526 -0.118805 0.0 !Mu3ChX14TRaw[Co1At1Ch14]
+1008.783 -0.118524 0.0 !Mu3ChX15TRaw[Co1At1Ch15]
+1380.253 -0.119127 0.0 !Mu3ChX16TRaw[Co1At1Ch16]
+977.848 -0.117029 0.0 !Mu3ChX17TRaw[Co1At2Ch1]
+985.148 -0.116582 0.0 !Mu3ChX18TRaw[Co1At2Ch2]
+1007.934 -0.11886 0.0 !Mu3ChX19TRaw[Co1At2Ch3]
+1034.22 -0.118386 0.0 !Mu3ChX20TRaw[Co1At2Ch4]
+1041.452 -0.119229 0.0 !Mu3ChX21TRaw[Co1At2Ch5]
+1056.51 -0.120114 0.0 !Mu3ChX22TRaw[Co1At2Ch6]
+1040.825 -0.119177 0.0 !Mu3ChX23TRaw[Co1At2Ch7]
+1018.903 -0.119693 0.0 !Mu3ChX24TRaw[Co1At2Ch8]
+1005.051 -0.119405 0.0 !Mu3ChX25TRaw[Co1At2Ch9]
+1017.342 -0.119523 0.0 !Mu3ChX26TRaw[Co1At2Ch10]
+1069.305 -0.12115 0.0 !Mu3ChX27TRaw[Co1At2Ch11]
+1038.198 -0.120628 0.0 !Mu3ChX28TRaw[Co1At2Ch12]
+1056.422 -0.121885 0.0 !Mu3ChX29TRaw[Co1At2Ch13]
+1057.034 -0.121035 0.0 !Mu3ChX30TRaw[Co1At2Ch14]
+1051.197 -0.121233 0.0 !Mu3ChX31TRaw[Co1At2Ch15]
+1061.554 -0.120654 0.0 !Mu3ChX32TRaw[Co1At2Ch16]
+932.139 -0.108693 0.0 !Mu3ChX33TRaw[Co1At3Ch1]
+935.391 -0.109485 0.0 !Mu3ChX34TRaw[Co1At3Ch2]
+925.145 -0.110421 0.0 !Mu3ChX35TRaw[Co1At3Ch3]
+925.446 -0.109588 0.0 !Mu3ChX36TRaw[Co1At3Ch4]
+942.302 -0.110301 0.0 !Mu3ChX37TRaw[Co1At3Ch5]
+964.873 -0.111327 0.0 !Mu3ChX38TRaw[Co1At3Ch6]
+959.552 -0.111495 0.0 !Mu3ChX39TRaw[Co1At3Ch7]
+961.22 -0.112521 0.0 !Mu3ChX40TRaw[Co1At3Ch8]
+958.125 -0.11347 0.0 !Mu3ChX41TRaw[Co1At3Ch9]
+958.974 -0.112717 0.0 !Mu3ChX42TRaw[Co1At3Ch10]
+959.452 -0.112335 0.0 !Mu3ChX43TRaw[Co1At3Ch11]
+450.0 -0.112964 0.0 !Mu3ChX44TRaw[Co1At3Ch12]
+963.434 -0.113245 0.0 !Mu3ChX45TRaw[Co1At3Ch13]
+964.97 -0.11258 0.0 !Mu3ChX46TRaw[Co1At3Ch14]
+990.533 -0.113476 0.0 !Mu3ChX47TRaw[Co1At3Ch15]
+978.322 -0.113256 0.0 !Mu3ChX48TRaw[Co1At3Ch16]
+902.185 -0.104661 0.0 !Mu3ChX49TRaw[Co1At4Ch1]
+904.849 -0.104634 0.0 !Mu3ChX50TRaw[Co1At4Ch2]
+911.556 -0.106155 0.0 !Mu3ChX51TRaw[Co1At4Ch3]
+912.664 -0.107364 0.0 !Mu3ChX52TRaw[Co1At4Ch4]
+918.408 -0.107368 0.0 !Mu3ChX53TRaw[Co1At4Ch5]
+910.764 -0.106861 0.0 !Mu3ChX54TRaw[Co1At4Ch6]
+909.726 -0.108382 0.0 !Mu3ChX55TRaw[Co1At4Ch7]
+922.928 -0.108733 0.0 !Mu3ChX56TRaw[Co1At4Ch8]
+913.563 -0.10844 0.0 !Mu3ChX57TRaw[Co1At4Ch9]
+950.346 -0.10908 0.0 !Mu3ChX58TRaw[Co1At4Ch10]
+931.96 -0.108538 0.0 !Mu3ChX59TRaw[Co1At4Ch11]
+931.249 -0.10849 0.0 !Mu3ChX60TRaw[Co1At4Ch12]
+924.55 -0.109312 0.0 !Mu3ChX61TRaw[Co1At4Ch13]
+915.129 -0.109445 0.0 !Mu3ChX62TRaw[Co1At4Ch14]
+911.749 -0.107803 0.0 !Mu3ChX63TRaw[Co1At4Ch15]
+953.036 -0.108862 0.0 !Mu3ChX64TRaw[Co1At4Ch16]
+1010.103 -0.119126 0.0 !Mu3ChX65TRaw[Co2At1Ch1]
+1015.548 -0.119789 0.0 !Mu3ChX66TRaw[Co2At1Ch2]
+1031.118 -0.119851 0.0 !Mu3ChX67TRaw[Co2At1Ch3]
+1055.182 -0.121753 0.0 !Mu3ChX68TRaw[Co2At1Ch4]
+1032.573 -0.121824 0.0 !Mu3ChX69TRaw[Co2At1Ch5]
+1014.126 -0.121446 0.0 !Mu3ChX70TRaw[Co2At1Ch6]
+1033.269 -0.121893 0.0 !Mu3ChX71TRaw[Co2At1Ch7]
+1037.066 -0.122347 0.0 !Mu3ChX72TRaw[Co2At1Ch8]
+1040.885 -0.121883 0.0 !Mu3ChX73TRaw[Co2At1Ch9]
+1043.891 -0.122684 0.0 !Mu3ChX74TRaw[Co2At1Ch10]
+1052.634 -0.123722 0.0 !Mu3ChX75TRaw[Co2At1Ch11]
+1066.965 -0.124938 0.0 !Mu3ChX76TRaw[Co2At1Ch12]
+1047.918 -0.122709 0.0 !Mu3ChX77TRaw[Co2At1Ch13]
+1032.053 -0.12265 0.0 !Mu3ChX78TRaw[Co2At1Ch14]
+1059.518 -0.124061 0.0 !Mu3ChX79TRaw[Co2At1Ch15]
+1407.005 -0.123313 0.0 !Mu3ChX80TRaw[Co2At1Ch16]
+966.252 -0.11381 0.0 !Mu3ChX81TRaw[Co2At2Ch1]
+979.589 -0.114558 0.0 !Mu3ChX82TRaw[Co2At2Ch2]
+972.243 -0.114986 0.0 !Mu3ChX83TRaw[Co2At2Ch3]
+974.391 -0.114804 0.0 !Mu3ChX84TRaw[Co2At2Ch4]
+985.895 -0.116619 0.0 !Mu3ChX85TRaw[Co2At2Ch5]
+992.12 -0.11693 0.0 !Mu3ChX86TRaw[Co2At2Ch6]
+971.958 -0.116299 0.0 !Mu3ChX87TRaw[Co2At2Ch7]
+999.22 -0.116863 0.0 !Mu3ChX88TRaw[Co2At2Ch8]
+995.257 -0.118161 0.0 !Mu3ChX89TRaw[Co2At2Ch9]
+998.809 -0.117687 0.0 !Mu3ChX90TRaw[Co2At2Ch10]
+1003.937 -0.118304 0.0 !Mu3ChX91TRaw[Co2At2Ch11]
+1015.556 -0.119256 0.0 !Mu3ChX92TRaw[Co2At2Ch12]
+1034.492 -0.119241 0.0 !Mu3ChX93TRaw[Co2At2Ch13]
+1037.827 -0.119186 0.0 !Mu3ChX94TRaw[Co2At2Ch14]
+1016.003 -0.118879 0.0 !Mu3ChX95TRaw[Co2At2Ch15]
+1022.41 -0.118278 0.0 !Mu3ChX96TRaw[Co2At2Ch16]
+903.34 -0.104124 0.0 !Mu3ChX97TRaw[Co2At3Ch1]
+908.659 -0.104728 0.0 !Mu3ChX98TRaw[Co2At3Ch2]
+911.833 -0.104753 0.0 !Mu3ChX99TRaw[Co2At3Ch3]
+935.021 -0.105492 0.0 !Mu3ChX100TRaw[Co2At3Ch4]
+920.352 -0.106693 0.0 !Mu3ChX101TRaw[Co2At3Ch5]
+903.814 -0.10614 0.0 !Mu3ChX102TRaw[Co2At3Ch6]
+915.26 -0.106708 0.0 !Mu3ChX103TRaw[Co2At3Ch7]
+910.919 -0.106567 0.0 !Mu3ChX104TRaw[Co2At3Ch8]
+927.103 -0.107671 0.0 !Mu3ChX105TRaw[Co2At3Ch9]
+942.252 -0.108216 0.0 !Mu3ChX106TRaw[Co2At3Ch10]
+926.652 -0.107225 0.0 !Mu3ChX107TRaw[Co2At3Ch11]
+920.84 -0.108561 0.0 !Mu3ChX108TRaw[Co2At3Ch12]
+945.497 -0.108609 0.0 !Mu3ChX109TRaw[Co2At3Ch13]
+958.937 -0.108191 0.0 !Mu3ChX110TRaw[Co2At3Ch14]
+934.461 -0.109337 0.0 !Mu3ChX111TRaw[Co2At3Ch15]
+933.963 -0.108709 0.0 !Mu3ChX112TRaw[Co2At3Ch16]
+875.263 -0.103629 0.0 !Mu3ChX113TRaw[Co2At4Ch1]
+890.444 -0.10481 0.0 !Mu3ChX114TRaw[Co2At4Ch2]
+907.63 -0.1049 0.0 !Mu3ChX115TRaw[Co2At4Ch3]
+927.243 -0.105647 0.0 !Mu3ChX116TRaw[Co2At4Ch4]
+959.458 -0.126949 0.0 !Mu3ChX117TRaw[Co2At4Ch5]
+908.137 -0.106145 0.0 !Mu3ChX118TRaw[Co2At4Ch6]
+929.508 -0.107055 0.0 !Mu3ChX119TRaw[Co2At4Ch7]
+923.594 -0.10675 0.0 !Mu3ChX120TRaw[Co2At4Ch8]
+909.752 -0.107137 0.0 !Mu3ChX121TRaw[Co2At4Ch9]
+930.673 -0.107599 0.0 !Mu3ChX122TRaw[Co2At4Ch10]
+922.861 -0.107093 0.0 !Mu3ChX123TRaw[Co2At4Ch11]
+953.557 -0.108252 0.0 !Mu3ChX124TRaw[Co2At4Ch12]
+947.109 -0.107522 0.0 !Mu3ChX125TRaw[Co2At4Ch13]
+937.275 -0.108336 0.0 !Mu3ChX126TRaw[Co2At4Ch14]
+923.967 -0.106793 0.0 !Mu3ChX127TRaw[Co2At4Ch15]
+933.021 -0.107896 0.0 !Mu3ChX128TRaw[Co2At4Ch16]
+965.818 -0.11121 0.0 !Mu3ChY1TRaw[Co3At1Ch1]
+966.765 -0.112154 0.0 !Mu3ChY2TRaw[Co3At1Ch2]
+954.577 -0.113241 0.0 !Mu3ChY3TRaw[Co3At1Ch3]
+985.94 -0.114409 0.0 !Mu3ChY4TRaw[Co3At1Ch4]
+973.809 -0.114032 0.0 !Mu3ChY5TRaw[Co3At1Ch5]
+976.61 -0.114994 0.0 !Mu3ChY6TRaw[Co3At1Ch6]
+966.665 -0.115552 0.0 !Mu3ChY7TRaw[Co3At1Ch7]
+995.977 -0.115546 0.0 !Mu3ChY8TRaw[Co3At1Ch8]
+1000.593 -0.116506 0.0 !Mu3ChY9TRaw[Co3At1Ch9]
+997.356 -0.117006 0.0 !Mu3ChY10TRaw[Co3At1Ch10]
+1007.099 -0.117251 0.0 !Mu3ChY11TRaw[Co3At1Ch11]
+976.2 -0.117093 0.0 !Mu3ChY12TRaw[Co3At1Ch12]
+996.986 -0.118272 0.0 !Mu3ChY13TRaw[Co3At1Ch13]
+1003.553 -0.119048 0.0 !Mu3ChY14TRaw[Co3At1Ch14]
+999.252 -0.118075 0.0 !Mu3ChY15TRaw[Co3At1Ch15]
+995.542 -0.118941 0.0 !Mu3ChY16TRaw[Co3At1Ch16]
+988.937 -0.117174 0.0 !Mu3ChY17TRaw[Co3At2Ch1]
+1017.194 -0.118815 0.0 !Mu3ChY18TRaw[Co3At2Ch2]
+995.754 -0.118931 0.0 !Mu3ChY19TRaw[Co3At2Ch3]
+1008.982 -0.119638 0.0 !Mu3ChY20TRaw[Co3At2Ch4]
+1010.829 -0.12034 0.0 !Mu3ChY21TRaw[Co3At2Ch5]
+1024.68 -0.121551 0.0 !Mu3ChY22TRaw[Co3At2Ch6]
+1023.799 -0.120998 0.0 !Mu3ChY23TRaw[Co3At2Ch7]
+1025.535 -0.120321 0.0 !Mu3ChY24TRaw[Co3At2Ch8]
+1032.0 -0.121073 0.0 !Mu3ChY25TRaw[Co3At2Ch9]
+1019.156 -0.121839 0.0 !Mu3ChY26TRaw[Co3At2Ch10]
+1023.081 -0.121856 0.0 !Mu3ChY27TRaw[Co3At2Ch11]
+1041.31 -0.122649 0.0 !Mu3ChY28TRaw[Co3At2Ch12]
+1063.915 -0.12302 0.0 !Mu3ChY29TRaw[Co3At2Ch13]
+1032.953 -0.121668 0.0 !Mu3ChY30TRaw[Co3At2Ch14]
+1050.178 -0.122794 0.0 !Mu3ChY31TRaw[Co3At2Ch15]
+1062.626 -0.122927 0.0 !Mu3ChY32TRaw[Co3At2Ch16]
+895.255 -0.105446 0.0 !Mu3ChY33TRaw[Co3At3Ch1]
+895.379 -0.105092 0.0 !Mu3ChY34TRaw[Co3At3Ch2]
+880.749 -0.10573 0.0 !Mu3ChY35TRaw[Co3At3Ch3]
+900.863 -0.105345 0.0 !Mu3ChY36TRaw[Co3At3Ch4]
+926.509 -0.106744 0.0 !Mu3ChY37TRaw[Co3At3Ch5]
+891.89 -0.106654 0.0 !Mu3ChY38TRaw[Co3At3Ch6]
+907.576 -0.107294 0.0 !Mu3ChY39TRaw[Co3At3Ch7]
+926.668 -0.108361 0.0 !Mu3ChY40TRaw[Co3At3Ch8]
+927.098 -0.10799 0.0 !Mu3ChY41TRaw[Co3At3Ch9]
+910.693 -0.10846 0.0 !Mu3ChY42TRaw[Co3At3Ch10]
+916.7 -0.109593 0.0 !Mu3ChY43TRaw[Co3At3Ch11]
+937.564 -0.109195 0.0 !Mu3ChY44TRaw[Co3At3Ch12]
+922.173 -0.108568 0.0 !Mu3ChY45TRaw[Co3At3Ch13]
+946.522 -0.109804 0.0 !Mu3ChY46TRaw[Co3At3Ch14]
+940.05 -0.110263 0.0 !Mu3ChY47TRaw[Co3At3Ch15]
+939.531 -0.109382 0.0 !Mu3ChY48TRaw[Co3At3Ch16]
+891.441 -0.105997 0.0 !Mu3ChY49TRaw[Co3At4Ch1]
+914.057 -0.106772 0.0 !Mu3ChY50TRaw[Co3At4Ch2]
+912.988 -0.108217 0.0 !Mu3ChY51TRaw[Co3At4Ch3]
+939.768 -0.108527 0.0 !Mu3ChY52TRaw[Co3At4Ch4]
+913.038 -0.107825 0.0 !Mu3ChY53TRaw[Co3At4Ch5]
+918.354 -0.108862 0.0 !Mu3ChY54TRaw[Co3At4Ch6]
+912.852 -0.109456 0.0 !Mu3ChY55TRaw[Co3At4Ch7]
+935.742 -0.110152 0.0 !Mu3ChY56TRaw[Co3At4Ch8]
+933.587 -0.110718 0.0 !Mu3ChY57TRaw[Co3At4Ch9]
+935.648 -0.11056 0.0 !Mu3ChY58TRaw[Co3At4Ch10]
+951.779 -0.111636 0.0 !Mu3ChY59TRaw[Co3At4Ch11]
+937.444 -0.109934 0.0 !Mu3ChY60TRaw[Co3At4Ch12]
+954.766 -0.111581 0.0 !Mu3ChY61TRaw[Co3At4Ch13]
+959.098 -0.111694 0.0 !Mu3ChY62TRaw[Co3At4Ch14]
+943.527 -0.1111 0.0 !Mu3ChY63TRaw[Co3At4Ch15]
+946.443 -0.11144 0.0 !Mu3ChY64TRaw[Co3At4Ch16]
+927.547 -0.109216 0.0 !Mu3ChY65TRaw[Co4At1Ch1]
+923.676 -0.110026 0.0 !Mu3ChY66TRaw[Co4At1Ch2]
+920.88 -0.110106 0.0 !Mu3ChY67TRaw[Co4At1Ch3]
+940.18 -0.11114 0.0 !Mu3ChY68TRaw[Co4At1Ch4]
+951.936 -0.11252 0.0 !Mu3ChY69TRaw[Co4At1Ch5]
+964.044 -0.113544 0.0 !Mu3ChY70TRaw[Co4At1Ch6]
+970.865 -0.112672 0.0 !Mu3ChY71TRaw[Co4At1Ch7]
+958.58 -0.112491 0.0 !Mu3ChY72TRaw[Co4At1Ch8]
+986.258 -0.114462 0.0 !Mu3ChY73TRaw[Co4At1Ch9]
+985.499 -0.11354 0.0 !Mu3ChY74TRaw[Co4At1Ch10]
+973.383 -0.115517 0.0 !Mu3ChY75TRaw[Co4At1Ch11]
+988.044 -0.115086 0.0 !Mu3ChY76TRaw[Co4At1Ch12]
+1004.685 -0.116618 0.0 !Mu3ChY77TRaw[Co4At1Ch13]
+974.725 -0.115232 0.0 !Mu3ChY78TRaw[Co4At1Ch14]
+970.963 -0.114343 0.0 !Mu3ChY79TRaw[Co4At1Ch15]
+986.998 -0.114947 0.0 !Mu3ChY80TRaw[Co4At1Ch16]
+988.605 -0.117288 0.0 !Mu3ChY81TRaw[Co4At2Ch1]
+1000.477 -0.118727 0.0 !Mu3ChY82TRaw[Co4At2Ch2]
+998.944 -0.119474 0.0 !Mu3ChY83TRaw[Co4At2Ch3]
+1021.647 -0.119909 0.0 !Mu3ChY84TRaw[Co4At2Ch4]
+1015.851 -0.120116 0.0 !Mu3ChY85TRaw[Co4At2Ch5]
+1023.105 -0.120975 0.0 !Mu3ChY86TRaw[Co4At2Ch6]
+1023.602 -0.120606 0.0 !Mu3ChY87TRaw[Co4At2Ch7]
+1048.071 -0.12076 0.0 !Mu3ChY88TRaw[Co4At2Ch8]
+1045.295 -0.121336 0.0 !Mu3ChY89TRaw[Co4At2Ch9]
+1041.423 -0.122713 0.0 !Mu3ChY90TRaw[Co4At2Ch10]
+1040.742 -0.1231 0.0 !Mu3ChY91TRaw[Co4At2Ch11]
+1028.684 -0.121678 0.0 !Mu3ChY92TRaw[Co4At2Ch12]
+1029.478 -0.122697 0.0 !Mu3ChY93TRaw[Co4At2Ch13]
+1040.536 -0.123087 0.0 !Mu3ChY94TRaw[Co4At2Ch14]
+1025.036 -0.122144 0.0 !Mu3ChY95TRaw[Co4At2Ch15]
+1037.833 -0.122274 0.0 !Mu3ChY96TRaw[Co4At2Ch16]
+893.3 -0.105573 0.0 !Mu3ChY97TRaw[Co4At3Ch1]
+883.47 -0.105224 0.0 !Mu3ChY98TRaw[Co4At3Ch2]
+912.274 -0.105791 0.0 !Mu3ChY99TRaw[Co4At3Ch3]
+907.618 -0.106904 0.0 !Mu3ChY100TRaw[Co4At3Ch4]
+915.064 -0.107789 0.0 !Mu3ChY101TRaw[Co4At3Ch5]
+914.687 -0.107742 0.0 !Mu3ChY102TRaw[Co4At3Ch6]
+915.739 -0.109085 0.0 !Mu3ChY103TRaw[Co4At3Ch7]
+907.682 -0.108126 0.0 !Mu3ChY104TRaw[Co4At3Ch8]
+939.179 -0.108999 0.0 !Mu3ChY105TRaw[Co4At3Ch9]
+897.003 -0.108068 0.0 !Mu3ChY106TRaw[Co4At3Ch10]
+899.93 -0.108006 0.0 !Mu3ChY107TRaw[Co4At3Ch11]
+933.224 -0.109125 0.0 !Mu3ChY108TRaw[Co4At3Ch12]
+922.41 -0.109439 0.0 !Mu3ChY109TRaw[Co4At3Ch13]
+919.858 -0.109168 0.0 !Mu3ChY110TRaw[Co4At3Ch14]
+915.492 -0.108625 0.0 !Mu3ChY111TRaw[Co4At3Ch15]
+939.186 -0.109416 0.0 !Mu3ChY112TRaw[Co4At3Ch16]
+907.848 -0.107554 0.0 !Mu3ChY113TRaw[Co4At4Ch1]
+911.742 -0.108473 0.0 !Mu3ChY114TRaw[Co4At4Ch2]
+921.829 -0.108848 0.0 !Mu3ChY115TRaw[Co4At4Ch3]
+923.694 -0.108292 0.0 !Mu3ChY116TRaw[Co4At4Ch4]
+918.408 -0.109288 0.0 !Mu3ChY117TRaw[Co4At4Ch5]
+934.537 -0.109943 0.0 !Mu3ChY118TRaw[Co4At4Ch6]
+919.037 -0.109765 0.0 !Mu3ChY119TRaw[Co4At4Ch7]
+917.959 -0.109672 0.0 !Mu3ChY120TRaw[Co4At4Ch8]
+946.254 -0.110512 0.0 !Mu3ChY121TRaw[Co4At4Ch9]
+948.221 -0.111588 0.0 !Mu3ChY122TRaw[Co4At4Ch10]
+943.874 -0.111915 0.0 !Mu3ChY123TRaw[Co4At4Ch11]
+936.548 -0.109772 0.0 !Mu3ChY124TRaw[Co4At4Ch12]
+926.89 -0.11029 0.0 !Mu3ChY125TRaw[Co4At4Ch13]
+946.411 -0.110947 0.0 !Mu3ChY126TRaw[Co4At4Ch14]
+944.377 -0.111116 0.0 !Mu3ChY127TRaw[Co4At4Ch15]
+963.969 -0.112131 0.0 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5feaa2202afafc93486d14fb2cbda1bfca16dba4
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M0_E/Cal_Str_X_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0eb48b351149457ba1c4f89d88bd91df547fa886
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E -61.7106 0.00753299
+MUSETT_T0_DSSD_X1_E -61.9105 0.00755737
+MUSETT_T0_DSSD_X2_E -61.7824 0.0075418099999999995
+MUSETT_T0_DSSD_X3_E -61.5101 0.00750856
+MUSETT_T0_DSSD_X4_E -61.8399 0.007548829999999999
+MUSETT_T0_DSSD_X5_E -61.6113 0.00752091
+MUSETT_T0_DSSD_X6_E -61.398 0.00749483
+MUSETT_T0_DSSD_X7_E -61.1841 0.0074687
+MUSETT_T0_DSSD_X8_E -61.0465 0.00745195
+MUSETT_T0_DSSD_X9_E -62.6826 0.00765164
+MUSETT_T0_DSSD_X10_E -62.3583 0.00761207
+MUSETT_T0_DSSD_X11_E -61.942 0.00756128
+MUSETT_T0_DSSD_X12_E -62.0878 0.00757904
+MUSETT_T0_DSSD_X13_E -61.755300000000005 0.00753843
+MUSETT_T0_DSSD_X14_E -62.4126 0.0076187
+MUSETT_T0_DSSD_X15_E -61.2939 0.00748215
+MUSETT_T0_DSSD_X16_E -63.052699999999994 0.007696799999999999
+MUSETT_T0_DSSD_X17_E -62.6907 0.0076526699999999994
+MUSETT_T0_DSSD_X18_E -62.1905 0.0075915800000000005
+MUSETT_T0_DSSD_X19_E -62.4109 0.0076185
+MUSETT_T0_DSSD_X20_E -63.893699999999995 0.00779946
+MUSETT_T0_DSSD_X21_E -62.6129 0.007643130000000001
+MUSETT_T0_DSSD_X22_E -62.337199999999996 0.00760945
+MUSETT_T0_DSSD_X23_E -62.6744 0.00765062
+MUSETT_T0_DSSD_X24_E -62.899300000000004 0.00767809
+MUSETT_T0_DSSD_X25_E -62.9523 0.00768455
+MUSETT_T0_DSSD_X26_E -63.0533 0.00769687
+MUSETT_T0_DSSD_X27_E -62.674699999999994 0.00765067
+MUSETT_T0_DSSD_X28_E -62.9974 0.0076900399999999995
+MUSETT_T0_DSSD_X29_E -62.6271 0.00764487
+MUSETT_T0_DSSD_X30_E -63.448800000000006 0.00774516
+MUSETT_T0_DSSD_X31_E -62.603 0.00764186
+MUSETT_T0_DSSD_X32_E -56.4302 0.0068883799999999995
+MUSETT_T0_DSSD_X33_E -56.7999 0.00693354
+MUSETT_T0_DSSD_X34_E -55.532 0.00677879
+MUSETT_T0_DSSD_X35_E -56.348800000000004 0.00687847
+MUSETT_T0_DSSD_X36_E -55.9945 0.00683521
+MUSETT_T0_DSSD_X37_E -10.0 0.0
+MUSETT_T0_DSSD_X38_E -55.914699999999996 0.0068255
+MUSETT_T0_DSSD_X39_E -55.6938 0.00679852
+MUSETT_T0_DSSD_X40_E -56.2171 0.00686239
+MUSETT_T0_DSSD_X41_E -55.8635 0.00681922
+MUSETT_T0_DSSD_X42_E -56.201699999999995 0.00686046
+MUSETT_T0_DSSD_X43_E -56.3099 0.00687373
+MUSETT_T0_DSSD_X44_E -56.346599999999995 0.00687818
+MUSETT_T0_DSSD_X45_E -10.0 0.0
+MUSETT_T0_DSSD_X46_E -10.0 0.0
+MUSETT_T0_DSSD_X47_E -55.9131 0.0068252899999999995
+MUSETT_T0_DSSD_X48_E -57.8332 0.007059650000000001
+MUSETT_T0_DSSD_X49_E -57.967800000000004 0.00707605
+MUSETT_T0_DSSD_X50_E -57.7573 0.00705042
+MUSETT_T0_DSSD_X51_E -57.3263 0.0069977799999999995
+MUSETT_T0_DSSD_X52_E -58.2072 0.0071053
+MUSETT_T0_DSSD_X53_E -57.200300000000006 0.0069824200000000005
+MUSETT_T0_DSSD_X54_E -57.8344 0.00705977
+MUSETT_T0_DSSD_X55_E -57.512800000000006 0.00702054
+MUSETT_T0_DSSD_X56_E -58.4845 0.0071391200000000005
+MUSETT_T0_DSSD_X57_E -57.751 0.00704962
+MUSETT_T0_DSSD_X58_E -57.3322 0.0069984900000000004
+MUSETT_T0_DSSD_X59_E -57.8001 0.00705564
+MUSETT_T0_DSSD_X60_E -57.1654 0.00697819
+MUSETT_T0_DSSD_X61_E -57.9703 0.00707636
+MUSETT_T0_DSSD_X62_E -57.8846 0.00706593
+MUSETT_T0_DSSD_X63_E -58.159800000000004 0.007099510000000001
+MUSETT_T0_DSSD_X64_E -63.4461 0.00774486
+MUSETT_T0_DSSD_X65_E -63.6099 0.00776484
+MUSETT_T0_DSSD_X66_E -63.3471 0.007732770000000001
+MUSETT_T0_DSSD_X67_E -64.08319999999999 0.00782268
+MUSETT_T0_DSSD_X68_E -63.2105 0.00771623
+MUSETT_T0_DSSD_X69_E -63.9794 0.00781003
+MUSETT_T0_DSSD_X70_E -63.860800000000005 0.00779555
+MUSETT_T0_DSSD_X71_E -63.3581 0.00773418
+MUSETT_T0_DSSD_X72_E -64.2157 0.007838949999999999
+MUSETT_T0_DSSD_X73_E -63.3016 0.00772725
+MUSETT_T0_DSSD_X74_E -64.05069999999999 0.00781888
+MUSETT_T0_DSSD_X75_E -64.0167 0.00781467
+MUSETT_T0_DSSD_X76_E -63.688900000000004 0.00777478
+MUSETT_T0_DSSD_X77_E -63.7891 0.0077870100000000005
+MUSETT_T0_DSSD_X78_E -64.2832 0.00784737
+MUSETT_T0_DSSD_X79_E -64.9143 0.007924398000000001
+MUSETT_T0_DSSD_X80_E -61.2394 0.007475819999999999
+MUSETT_T0_DSSD_X81_E -60.9385 0.00743906
+MUSETT_T0_DSSD_X82_E -61.1397 0.0074636599999999996
+MUSETT_T0_DSSD_X83_E -61.4974 0.00750726
+MUSETT_T0_DSSD_X84_E -61.3987 0.00749521
+MUSETT_T0_DSSD_X85_E -61.8996 0.00755626
+MUSETT_T0_DSSD_X86_E -61.451800000000006 0.00750166
+MUSETT_T0_DSSD_X87_E -62.196400000000004 0.00759254
+MUSETT_T0_DSSD_X88_E -61.9481 0.00756212
+MUSETT_T0_DSSD_X89_E -61.6171 0.00752168
+MUSETT_T0_DSSD_X90_E -61.7374 0.00753637
+MUSETT_T0_DSSD_X91_E -62.8236 0.00766899
+MUSETT_T0_DSSD_X92_E -61.8858 0.00755448
+MUSETT_T0_DSSD_X93_E -61.049699999999994 0.00745242
+MUSETT_T0_DSSD_X94_E -61.4595 0.00750241
+MUSETT_T0_DSSD_X95_E -62.2011 0.00759292
+MUSETT_T0_DSSD_X96_E -57.166199999999996 0.00697828
+MUSETT_T0_DSSD_X97_E -57.5553 0.00702572
+MUSETT_T0_DSSD_X98_E -57.8035 0.007056079999999999
+MUSETT_T0_DSSD_X99_E -57.0676 0.0069662199999999995
+MUSETT_T0_DSSD_X100_E -58.132400000000004 0.00709623
+MUSETT_T0_DSSD_X101_E -57.744699999999995 0.00704887
+MUSETT_T0_DSSD_X102_E -57.713300000000004 0.00704507
+MUSETT_T0_DSSD_X103_E -57.296699999999994 0.00699421
+MUSETT_T0_DSSD_X104_E -57.401199999999996 0.00700701
+MUSETT_T0_DSSD_X105_E -57.9542 0.00707453
+MUSETT_T0_DSSD_X106_E -57.3056 0.00699532
+MUSETT_T0_DSSD_X107_E -57.5897 0.00703005
+MUSETT_T0_DSSD_X108_E -58.5998 0.007153260000000001
+MUSETT_T0_DSSD_X109_E -58.011 0.007081489999999999
+MUSETT_T0_DSSD_X110_E -57.7019 0.00704369
+MUSETT_T0_DSSD_X111_E -57.802 0.0070558899999999996
+MUSETT_T0_DSSD_X112_E -59.0131 0.00720381
+MUSETT_T0_DSSD_X113_E -59.1996 0.00722655
+MUSETT_T0_DSSD_X114_E -58.5257 0.0071443
+MUSETT_T0_DSSD_X115_E -58.674800000000005 0.00716253
+MUSETT_T0_DSSD_X116_E -58.1328 0.00709631
+MUSETT_T0_DSSD_X117_E -58.328300000000006 0.00712018
+MUSETT_T0_DSSD_X118_E -58.2819 0.00711452
+MUSETT_T0_DSSD_X119_E -58.5673 0.00714936
+MUSETT_T0_DSSD_X120_E -58.5649 0.00714905
+MUSETT_T0_DSSD_X121_E -58.7344 0.00716969
+MUSETT_T0_DSSD_X122_E -58.596199999999996 0.007152840000000001
+MUSETT_T0_DSSD_X123_E -59.320800000000006 0.00724127
+MUSETT_T0_DSSD_X124_E -57.9063 0.00706867
+MUSETT_T0_DSSD_X125_E -58.5027 0.00714141
+MUSETT_T0_DSSD_X126_E -58.429300000000005 0.0071325
+MUSETT_T0_DSSD_X127_E -59.5614 0.007270629999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M0_E/Cal_Str_Y_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..728b3e6a460711d06638382cddfccfbba2fee9d7
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_Y0_E -10.0 0.0
+MUSETT_T0_DSSD_Y1_E 60.4299 -0.0073767699999999995
+MUSETT_T0_DSSD_Y2_E 60.9525 -0.00744053
+MUSETT_T0_DSSD_Y3_E 61.1136 -0.00746018
+MUSETT_T0_DSSD_Y4_E 60.0338 -0.00732839
+MUSETT_T0_DSSD_Y5_E 60.1789 -0.00734611
+MUSETT_T0_DSSD_Y6_E 60.8017 -0.00742211
+MUSETT_T0_DSSD_Y7_E 60.445 -0.00737857
+MUSETT_T0_DSSD_Y8_E 60.092 -0.007335479999999999
+MUSETT_T0_DSSD_Y9_E 59.987 -0.00732266
+MUSETT_T0_DSSD_Y10_E 60.401300000000006 -0.00737321
+MUSETT_T0_DSSD_Y11_E 60.0485 -0.00733015
+MUSETT_T0_DSSD_Y12_E 60.8881 -0.00743271
+MUSETT_T0_DSSD_Y13_E 61.0137 -0.00744798
+MUSETT_T0_DSSD_Y14_E 61.158 -0.00746561
+MUSETT_T0_DSSD_Y15_E 60.7384 -0.00741441
+MUSETT_T0_DSSD_Y16_E 60.3853 -0.00737129
+MUSETT_T0_DSSD_Y17_E 60.5455 -0.00739083
+MUSETT_T0_DSSD_Y18_E 60.330400000000004 -0.00736461
+MUSETT_T0_DSSD_Y19_E 60.139300000000006 -0.00734125
+MUSETT_T0_DSSD_Y20_E 60.389199999999995 -0.00737176
+MUSETT_T0_DSSD_Y21_E 60.3961 -0.00737259
+MUSETT_T0_DSSD_Y22_E 60.279900000000005 -0.00735844
+MUSETT_T0_DSSD_Y23_E 59.7309 -0.00729143
+MUSETT_T0_DSSD_Y24_E 60.2169 -0.00735079
+MUSETT_T0_DSSD_Y25_E 59.7766 -0.007297
+MUSETT_T0_DSSD_Y26_E 60.0731 -0.007333210000000001
+MUSETT_T0_DSSD_Y27_E 60.4447 -0.0073785299999999995
+MUSETT_T0_DSSD_Y28_E 59.887699999999995 -0.00731055
+MUSETT_T0_DSSD_Y29_E 59.6366 -0.00727991
+MUSETT_T0_DSSD_Y30_E 59.8233 -0.00730273
+MUSETT_T0_DSSD_Y31_E 61.045199999999994 -0.00745187
+MUSETT_T0_DSSD_Y32_E 56.5754 -0.00690626
+MUSETT_T0_DSSD_Y33_E 57.0856 -0.00696849
+MUSETT_T0_DSSD_Y34_E 56.5049 -0.00689761
+MUSETT_T0_DSSD_Y35_E 57.0727 -0.0069669499999999995
+MUSETT_T0_DSSD_Y36_E 57.4 -0.00700688
+MUSETT_T0_DSSD_Y37_E 57.2639 -0.00699027
+MUSETT_T0_DSSD_Y38_E 56.45 -0.00689094
+MUSETT_T0_DSSD_Y39_E 56.455400000000004 -0.0068915899999999995
+MUSETT_T0_DSSD_Y40_E 56.954 -0.00695243
+MUSETT_T0_DSSD_Y41_E 56.8438 -0.006939020000000001
+MUSETT_T0_DSSD_Y42_E 56.6301 -0.00691291
+MUSETT_T0_DSSD_Y43_E 56.4975 -0.00689672
+MUSETT_T0_DSSD_Y44_E 56.8091 -0.00693476
+MUSETT_T0_DSSD_Y45_E 56.946400000000004 -0.00695152
+MUSETT_T0_DSSD_Y46_E 57.7258 -0.00704665
+MUSETT_T0_DSSD_Y47_E 56.552699999999994 -0.006903439999999999
+MUSETT_T0_DSSD_Y48_E 57.5922 -0.00703033
+MUSETT_T0_DSSD_Y49_E 57.040099999999995 -0.00696295
+MUSETT_T0_DSSD_Y50_E 56.8125 -0.00693518
+MUSETT_T0_DSSD_Y51_E 56.466800000000006 -0.00689296
+MUSETT_T0_DSSD_Y52_E 57.1237 -0.00697317
+MUSETT_T0_DSSD_Y53_E 56.8535 -0.00694018
+MUSETT_T0_DSSD_Y54_E 56.671800000000005 -0.00691801
+MUSETT_T0_DSSD_Y55_E 57.626 -0.00703448
+MUSETT_T0_DSSD_Y56_E 57.3861 -0.007005239999999999
+MUSETT_T0_DSSD_Y57_E 56.822 -0.0069363
+MUSETT_T0_DSSD_Y58_E 57.017 -0.00696019
+MUSETT_T0_DSSD_Y59_E 57.2442 -0.006987930000000001
+MUSETT_T0_DSSD_Y60_E 57.2985 -0.00699452
+MUSETT_T0_DSSD_Y61_E 57.094 -0.0069695
+MUSETT_T0_DSSD_Y62_E 57.5846 -0.007029410000000001
+MUSETT_T0_DSSD_Y63_E 57.9394 -0.00707277
+MUSETT_T0_DSSD_Y64_E 60.9985 -0.00744617
+MUSETT_T0_DSSD_Y65_E 61.1544 -0.00746519
+MUSETT_T0_DSSD_Y66_E 61.0383 -0.00745104
+MUSETT_T0_DSSD_Y67_E 61.3127 -0.00748452
+MUSETT_T0_DSSD_Y68_E 60.431400000000004 -0.00737695
+MUSETT_T0_DSSD_Y69_E 61.541599999999995 -0.00751241
+MUSETT_T0_DSSD_Y70_E 60.896 -0.007433639999999999
+MUSETT_T0_DSSD_Y71_E 60.3984 -0.00737288
+MUSETT_T0_DSSD_Y72_E 61.6674 -0.00752784
+MUSETT_T0_DSSD_Y73_E 61.151 -0.00746479
+MUSETT_T0_DSSD_Y74_E 61.1035 -0.0074589800000000005
+MUSETT_T0_DSSD_Y75_E 61.219800000000006 -0.0074731500000000005
+MUSETT_T0_DSSD_Y76_E 60.596199999999996 -0.007397020000000001
+MUSETT_T0_DSSD_Y77_E 61.4086 -0.0074962299999999996
+MUSETT_T0_DSSD_Y78_E 61.6292 -0.0075231199999999995
+MUSETT_T0_DSSD_Y79_E 61.0151 -0.00744816
+MUSETT_T0_DSSD_Y80_E 62.3301 -0.00760868
+MUSETT_T0_DSSD_Y81_E 61.0485 -0.00745227
+MUSETT_T0_DSSD_Y82_E 61.567 -0.00751556
+MUSETT_T0_DSSD_Y83_E 62.052800000000005 -0.00757484
+MUSETT_T0_DSSD_Y84_E 61.001400000000004 -0.0074465
+MUSETT_T0_DSSD_Y85_E 60.8965 -0.0074337
+MUSETT_T0_DSSD_Y86_E 61.7489 -0.0075377000000000005
+MUSETT_T0_DSSD_Y87_E 61.3807 -0.00749277
+MUSETT_T0_DSSD_Y88_E 61.1458 -0.00746415
+MUSETT_T0_DSSD_Y89_E 61.2699 -0.00747926
+MUSETT_T0_DSSD_Y90_E 61.1205 -0.00746101
+MUSETT_T0_DSSD_Y91_E 61.476800000000004 -0.007504520000000001
+MUSETT_T0_DSSD_Y92_E 61.8576 -0.00755098
+MUSETT_T0_DSSD_Y93_E 61.681599999999996 -0.0075295399999999995
+MUSETT_T0_DSSD_Y94_E 62.3232 -0.007607859999999999
+MUSETT_T0_DSSD_Y95_E 60.8927 -0.00743324
+MUSETT_T0_DSSD_Y96_E 56.372 -0.00688138
+MUSETT_T0_DSSD_Y97_E 56.6412 -0.0069142299999999995
+MUSETT_T0_DSSD_Y98_E 56.555800000000005 -0.00690381
+MUSETT_T0_DSSD_Y99_E 56.451699999999995 -0.0068911300000000005
+MUSETT_T0_DSSD_Y100_E 56.187 -0.00685881
+MUSETT_T0_DSSD_Y101_E 56.3228 -0.0068754
+MUSETT_T0_DSSD_Y102_E 56.0736 -0.00684493
+MUSETT_T0_DSSD_Y103_E 56.5751 -0.006906209999999999
+MUSETT_T0_DSSD_Y104_E 56.8741 -0.00694264
+MUSETT_T0_DSSD_Y105_E 56.0264 -0.0068391599999999995
+MUSETT_T0_DSSD_Y106_E 57.0374 -0.00696262
+MUSETT_T0_DSSD_Y107_E 57.3595 -0.00700194
+MUSETT_T0_DSSD_Y108_E 56.5524 -0.00690339
+MUSETT_T0_DSSD_Y109_E 56.5855 -0.006907460000000001
+MUSETT_T0_DSSD_Y110_E 56.6668 -0.006917410000000001
+MUSETT_T0_DSSD_Y111_E 56.4009 -0.00688495
+MUSETT_T0_DSSD_Y112_E 56.8996 -0.0069458
+MUSETT_T0_DSSD_Y113_E 57.124300000000005 -0.00697323
+MUSETT_T0_DSSD_Y114_E 56.9552 -0.00695256
+MUSETT_T0_DSSD_Y115_E 56.8211 -0.00693619
+MUSETT_T0_DSSD_Y116_E 57.2948 -0.00699405
+MUSETT_T0_DSSD_Y117_E 56.5544 -0.00690363
+MUSETT_T0_DSSD_Y118_E 56.4159 -0.0068867500000000005
+MUSETT_T0_DSSD_Y119_E 56.5919 -0.0069082499999999995
+MUSETT_T0_DSSD_Y120_E 57.4048 -0.00700746
+MUSETT_T0_DSSD_Y121_E 57.2319 -0.00698632
+MUSETT_T0_DSSD_Y122_E 56.6849 -0.00691957
+MUSETT_T0_DSSD_Y123_E 56.016400000000004 -0.0068379899999999995
+MUSETT_T0_DSSD_Y124_E 56.4575 -0.006891810000000001
+MUSETT_T0_DSSD_Y125_E 55.921699999999994 -0.00682642
+MUSETT_T0_DSSD_Y126_E 56.947 -0.0069515900000000005
+MUSETT_T0_DSSD_Y127_E 56.581 -0.00690693
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e0e1c3f6bbdb099a64449f881aa09ed5881ca812
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_T 947.337 -0.114176
+MUSETT_T0_DSSD_X1_T 958.191 -0.115529
+MUSETT_T0_DSSD_X2_T 959.141 -0.115657
+MUSETT_T0_DSSD_X3_T 973.263 -0.117409
+MUSETT_T0_DSSD_X4_T 973.079 -0.117367
+MUSETT_T0_DSSD_X5_T 972.893 -0.117353
+MUSETT_T0_DSSD_X6_T 978.231 -0.117969
+MUSETT_T0_DSSD_X7_T 980.496 -0.118246
+MUSETT_T0_DSSD_X8_T 979.094 -0.118065
+MUSETT_T0_DSSD_X9_T 983.012 -0.118546
+MUSETT_T0_DSSD_X10_T 987.665 -0.119138
+MUSETT_T0_DSSD_X11_T 987.344 -0.119075
+MUSETT_T0_DSSD_X12_T 994.919 -0.119996
+MUSETT_T0_DSSD_X13_T 980.069 -0.118174
+MUSETT_T0_DSSD_X14_T 991.136 -0.119531
+MUSETT_T0_DSSD_X15_T 1325.763 -0.118448
+MUSETT_T0_DSSD_X16_T 956.943 -0.115275
+MUSETT_T0_DSSD_X17_T 967.056 -0.116527
+MUSETT_T0_DSSD_X18_T 979.486 -0.118044
+MUSETT_T0_DSSD_X19_T 980.171 -0.118125
+MUSETT_T0_DSSD_X20_T 989.203 -0.119233
+MUSETT_T0_DSSD_X21_T 983.63 -0.118555
+MUSETT_T0_DSSD_X22_T 994.257 -0.119845
+MUSETT_T0_DSSD_X23_T 995.64 -0.120005
+MUSETT_T0_DSSD_X24_T 990.898 -0.119427
+MUSETT_T0_DSSD_X25_T 1002.054 -0.120777
+MUSETT_T0_DSSD_X26_T 1004.297 -0.121057
+MUSETT_T0_DSSD_X27_T 1008.353 -0.121545
+MUSETT_T0_DSSD_X28_T 1003.834 -0.121021
+MUSETT_T0_DSSD_X29_T 1002.641 -0.120851
+MUSETT_T0_DSSD_X30_T 999.274 -0.12045
+MUSETT_T0_DSSD_X31_T 994.884 -0.119947
+MUSETT_T0_DSSD_X32_T 873.942 -0.105192
+MUSETT_T0_DSSD_X33_T 871.682 -0.104955
+MUSETT_T0_DSSD_X34_T 891.642 -0.107397
+MUSETT_T0_DSSD_X35_T 880.321 -0.106033
+MUSETT_T0_DSSD_X36_T 882.156 -0.106227
+MUSETT_T0_DSSD_X37_T 896.607 -0.108005
+MUSETT_T0_DSSD_X38_T 898.13 -0.108195
+MUSETT_T0_DSSD_X39_T 896.691 -0.107979
+MUSETT_T0_DSSD_X40_T 899.622 -0.108302
+MUSETT_T0_DSSD_X41_T 899.64 -0.108334
+MUSETT_T0_DSSD_X42_T 898.696 -0.108243
+MUSETT_T0_DSSD_X43_T 905.705 -0.109095
+MUSETT_T0_DSSD_X44_T 901.026 -0.108505
+MUSETT_T0_DSSD_X45_T 895.522 -0.107877
+MUSETT_T0_DSSD_X46_T 897.868 -0.108187
+MUSETT_T0_DSSD_X47_T 930.136 -0.10826
+MUSETT_T0_DSSD_X48_T 885.768 -0.106556
+MUSETT_T0_DSSD_X49_T 888.974 -0.106942
+MUSETT_T0_DSSD_X50_T 894.597 -0.107622
+MUSETT_T0_DSSD_X51_T 903.027 -0.109464
+MUSETT_T0_DSSD_X52_T 908.335 -0.109295
+MUSETT_T0_DSSD_X53_T 911.216 -0.109652
+MUSETT_T0_DSSD_X54_T 913.763 -0.109955
+MUSETT_T0_DSSD_X55_T 917.724 -0.110458
+MUSETT_T0_DSSD_X56_T 926.424 -0.111499
+MUSETT_T0_DSSD_X57_T 917.91 -0.110456
+MUSETT_T0_DSSD_X58_T 925.431 -0.111378
+MUSETT_T0_DSSD_X59_T 930.046 -0.111943
+MUSETT_T0_DSSD_X60_T 937.211 -0.112807
+MUSETT_T0_DSSD_X61_T 939.875 -0.11314
+MUSETT_T0_DSSD_X62_T 941.523 -0.113338
+MUSETT_T0_DSSD_X63_T 929.926 -0.111982
+MUSETT_T0_DSSD_X64_T 958.682 -0.115846
+MUSETT_T0_DSSD_X65_T 963.509 -0.11646
+MUSETT_T0_DSSD_X66_T 973.199 -0.117644
+MUSETT_T0_DSSD_X67_T 974.497 -0.117791
+MUSETT_T0_DSSD_X68_T 977.927 -0.118174
+MUSETT_T0_DSSD_X69_T 990.533 -0.119717
+MUSETT_T0_DSSD_X70_T 995.149 -0.120284
+MUSETT_T0_DSSD_X71_T 996.285 -0.120426
+MUSETT_T0_DSSD_X72_T 1007.301 -0.121763
+MUSETT_T0_DSSD_X73_T 988.471 -0.119445
+MUSETT_T0_DSSD_X74_T 1005.426 -0.121535
+MUSETT_T0_DSSD_X75_T 996.264 -0.120381
+MUSETT_T0_DSSD_X76_T 1003.43 -0.121262
+MUSETT_T0_DSSD_X77_T 1007.423 -0.121766
+MUSETT_T0_DSSD_X78_T 998.247 -0.120615
+MUSETT_T0_DSSD_X79_T 1387.089 -0.120952
+MUSETT_T0_DSSD_X80_T 924.296 -0.111515
+MUSETT_T0_DSSD_X81_T 933.864 -0.112746
+MUSETT_T0_DSSD_X82_T 926.031 -0.111774
+MUSETT_T0_DSSD_X83_T 938.356 -0.113281
+MUSETT_T0_DSSD_X84_T 931.605 -0.112468
+MUSETT_T0_DSSD_X85_T 942.766 -0.113819
+MUSETT_T0_DSSD_X86_T 950.91 -0.114818
+MUSETT_T0_DSSD_X87_T 944.087 -0.113978
+MUSETT_T0_DSSD_X88_T 950.899 -0.114813
+MUSETT_T0_DSSD_X89_T 958.325 -0.115728
+MUSETT_T0_DSSD_X90_T 965.901 -0.11664
+MUSETT_T0_DSSD_X91_T 962.574 -0.11625
+MUSETT_T0_DSSD_X92_T 962.901 -0.116299
+MUSETT_T0_DSSD_X93_T 961.67 -0.116152
+MUSETT_T0_DSSD_X94_T 975.645 -0.117868
+MUSETT_T0_DSSD_X95_T 1001.622 -0.116744
+MUSETT_T0_DSSD_X96_T 869.411 -0.105013
+MUSETT_T0_DSSD_X97_T 878.779 -0.106169
+MUSETT_T0_DSSD_X98_T 879.022 -0.106212
+MUSETT_T0_DSSD_X99_T 884.843 -0.106905
+MUSETT_T0_DSSD_X100_T 894.415 -0.108043
+MUSETT_T0_DSSD_X101_T 901.76 -0.108935
+MUSETT_T0_DSSD_X102_T 897.652 -0.108442
+MUSETT_T0_DSSD_X103_T 895.989 -0.108194
+MUSETT_T0_DSSD_X104_T 905.204 -0.109336
+MUSETT_T0_DSSD_X105_T 902.911 -0.109053
+MUSETT_T0_DSSD_X106_T 908.729 -0.109771
+MUSETT_T0_DSSD_X107_T 906.302 -0.109449
+MUSETT_T0_DSSD_X108_T 903.456 -0.109128
+MUSETT_T0_DSSD_X109_T 907.613 -0.109641
+MUSETT_T0_DSSD_X110_T 903.804 -0.109177
+MUSETT_T0_DSSD_X111_T 915.521 -0.109478
+MUSETT_T0_DSSD_X112_T 889.665 -0.107364
+MUSETT_T0_DSSD_X113_T 892.8 -0.107748
+MUSETT_T0_DSSD_X114_T 893.081 -0.107782
+MUSETT_T0_DSSD_X115_T 903.018 -0.109007
+MUSETT_T0_DSSD_X116_T 906.731 -0.109423
+MUSETT_T0_DSSD_X117_T 900.058 -0.108648
+MUSETT_T0_DSSD_X118_T 914.646 -0.110413
+MUSETT_T0_DSSD_X119_T 915.898 -0.110579
+MUSETT_T0_DSSD_X120_T 910.258 -0.109898
+MUSETT_T0_DSSD_X121_T 915.289 -0.1105
+MUSETT_T0_DSSD_X122_T 923.76 -0.111529
+MUSETT_T0_DSSD_X123_T 915.924 -0.110604
+MUSETT_T0_DSSD_X124_T 919.022 -0.110972
+MUSETT_T0_DSSD_X125_T 920.708 -0.11118
+MUSETT_T0_DSSD_X126_T 915.998 -0.110613
+MUSETT_T0_DSSD_X127_T 928.024 -0.111151
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c67efc4a9f340e6a808f745eb05b3bbccbfadeda
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 943.522 -0.114033
+MUSETT_T0_DSSD_Y2_T 942.377 -0.113921
+MUSETT_T0_DSSD_Y3_T 960.366 -0.116104
+MUSETT_T0_DSSD_Y4_T 955.945 -0.115563
+MUSETT_T0_DSSD_Y5_T 971.627 -0.117481
+MUSETT_T0_DSSD_Y6_T 970.47 -0.117339
+MUSETT_T0_DSSD_Y7_T 967.757 -0.117018
+MUSETT_T0_DSSD_Y8_T 974.517 -0.117842
+MUSETT_T0_DSSD_Y9_T 970.194 -0.117316
+MUSETT_T0_DSSD_Y10_T 972.805 -0.117632
+MUSETT_T0_DSSD_Y11_T 979.06 -0.118398
+MUSETT_T0_DSSD_Y12_T 977.036 -0.11814
+MUSETT_T0_DSSD_Y13_T 972.887 -0.117633
+MUSETT_T0_DSSD_Y14_T 975.479 -0.117944
+MUSETT_T0_DSSD_Y15_T 981.973 -0.118761
+MUSETT_T0_DSSD_Y16_T 937.311 -0.113175
+MUSETT_T0_DSSD_Y17_T 946.334 -0.114309
+MUSETT_T0_DSSD_Y18_T 954.832 -0.115351
+MUSETT_T0_DSSD_Y19_T 946.608 -0.11436
+MUSETT_T0_DSSD_Y20_T 949.338 -0.114686
+MUSETT_T0_DSSD_Y21_T 952.78 -0.115103
+MUSETT_T0_DSSD_Y22_T 958.755 -0.115832
+MUSETT_T0_DSSD_Y23_T 958.899 -0.115841
+MUSETT_T0_DSSD_Y24_T 963.461 -0.116398
+MUSETT_T0_DSSD_Y25_T 961.768 -0.116195
+MUSETT_T0_DSSD_Y26_T 958.433 -0.115516
+MUSETT_T0_DSSD_Y27_T 973.022 -0.117562
+MUSETT_T0_DSSD_Y28_T 975.364 -0.117834
+MUSETT_T0_DSSD_Y29_T 970.379 -0.11722
+MUSETT_T0_DSSD_Y30_T 973.404 -0.11759
+MUSETT_T0_DSSD_Y31_T 968.163 -0.116928
+MUSETT_T0_DSSD_Y32_T 870.503 -0.105131
+MUSETT_T0_DSSD_Y33_T 870.134 -0.105113
+MUSETT_T0_DSSD_Y34_T 887.309 -0.107174
+MUSETT_T0_DSSD_Y35_T 877.246 -0.105955
+MUSETT_T0_DSSD_Y36_T 888.914 -0.107363
+MUSETT_T0_DSSD_Y37_T 888.196 -0.107278
+MUSETT_T0_DSSD_Y38_T 888.904 -0.107347
+MUSETT_T0_DSSD_Y39_T 906.99 -0.109567
+MUSETT_T0_DSSD_Y40_T 904.639 -0.109268
+MUSETT_T0_DSSD_Y41_T 902.704 -0.109045
+MUSETT_T0_DSSD_Y42_T 901.823 -0.108924
+MUSETT_T0_DSSD_Y43_T 912.525 -0.110196
+MUSETT_T0_DSSD_Y44_T 909.706 -0.109895
+MUSETT_T0_DSSD_Y45_T 904.431 -0.10924
+MUSETT_T0_DSSD_Y46_T 914.842 -0.110513
+MUSETT_T0_DSSD_Y47_T 902.82 -0.109056
+MUSETT_T0_DSSD_Y48_T 857.097 -0.103507
+MUSETT_T0_DSSD_Y49_T 868.238 -0.104888
+MUSETT_T0_DSSD_Y50_T 863.632 -0.104347
+MUSETT_T0_DSSD_Y51_T 880.418 -0.106391
+MUSETT_T0_DSSD_Y52_T 883.153 -0.106718
+MUSETT_T0_DSSD_Y53_T 884.327 -0.106878
+MUSETT_T0_DSSD_Y54_T 880.924 -0.106441
+MUSETT_T0_DSSD_Y55_T 888.89 -0.107426
+MUSETT_T0_DSSD_Y56_T 890.451 -0.107608
+MUSETT_T0_DSSD_Y57_T 894.679 -0.108136
+MUSETT_T0_DSSD_Y58_T 901.833 -0.109012
+MUSETT_T0_DSSD_Y59_T 900.642 -0.108611
+MUSETT_T0_DSSD_Y60_T 899.493 -0.108719
+MUSETT_T0_DSSD_Y61_T 906.616 -0.109581
+MUSETT_T0_DSSD_Y62_T 900.751 -0.108895
+MUSETT_T0_DSSD_Y63_T 906.031 -0.109543
+MUSETT_T0_DSSD_Y64_T 965.315 -0.116469
+MUSETT_T0_DSSD_Y65_T 971.839 -0.117302
+MUSETT_T0_DSSD_Y66_T 977.636 -0.118012
+MUSETT_T0_DSSD_Y67_T 977.842 -0.118028
+MUSETT_T0_DSSD_Y68_T 980.742 -0.118378
+MUSETT_T0_DSSD_Y69_T 984.432 -0.118825
+MUSETT_T0_DSSD_Y70_T 984.043 -0.118781
+MUSETT_T0_DSSD_Y71_T 987.06 -0.119156
+MUSETT_T0_DSSD_Y72_T 991.031 -0.119628
+MUSETT_T0_DSSD_Y73_T 982.516 -0.118591
+MUSETT_T0_DSSD_Y74_T 991.101 -0.119656
+MUSETT_T0_DSSD_Y75_T 1001.573 -0.120924
+MUSETT_T0_DSSD_Y76_T 996.82 -0.120327
+MUSETT_T0_DSSD_Y77_T 998.874 -0.120579
+MUSETT_T0_DSSD_Y78_T 996.07 -0.120247
+MUSETT_T0_DSSD_Y79_T 1003.012 -0.121097
+MUSETT_T0_DSSD_Y80_T 971.708 -0.117145
+MUSETT_T0_DSSD_Y81_T 987.463 -0.119118
+MUSETT_T0_DSSD_Y82_T 982.727 -0.118534
+MUSETT_T0_DSSD_Y83_T 997.311 -0.12031
+MUSETT_T0_DSSD_Y84_T 1001.041 -0.120777
+MUSETT_T0_DSSD_Y85_T 1003.673 -0.121085
+MUSETT_T0_DSSD_Y86_T 999.447 -0.120569
+MUSETT_T0_DSSD_Y87_T 1009.884 -0.121839
+MUSETT_T0_DSSD_Y88_T 1005.634 -0.121339
+MUSETT_T0_DSSD_Y89_T 1016.116 -0.122592
+MUSETT_T0_DSSD_Y90_T 1026.636 -0.123897
+MUSETT_T0_DSSD_Y91_T 1026.388 -0.123866
+MUSETT_T0_DSSD_Y92_T 1021.347 -0.123256
+MUSETT_T0_DSSD_Y93_T 1025.69 -0.123786
+MUSETT_T0_DSSD_Y94_T 1022.609 -0.123408
+MUSETT_T0_DSSD_Y95_T 1018.382 -0.122879
+MUSETT_T0_DSSD_Y96_T 884.114 -0.106544
+MUSETT_T0_DSSD_Y97_T 880.476 -0.106139
+MUSETT_T0_DSSD_Y98_T 879.465 -0.106028
+MUSETT_T0_DSSD_Y99_T 896.068 -0.108041
+MUSETT_T0_DSSD_Y100_T 893.327 -0.107707
+MUSETT_T0_DSSD_Y101_T 892.176 -0.10757
+MUSETT_T0_DSSD_Y102_T 896.58 -0.108105
+MUSETT_T0_DSSD_Y103_T 908.687 -0.10959
+MUSETT_T0_DSSD_Y104_T 903.256 -0.108916
+MUSETT_T0_DSSD_Y105_T 916.636 -0.110544
+MUSETT_T0_DSSD_Y106_T 912.014 -0.109981
+MUSETT_T0_DSSD_Y107_T 916.38 -0.11051
+MUSETT_T0_DSSD_Y108_T 915.761 -0.110421
+MUSETT_T0_DSSD_Y109_T 911.291 -0.109894
+MUSETT_T0_DSSD_Y110_T 916.811 -0.110572
+MUSETT_T0_DSSD_Y111_T 918.69 -0.110803
+MUSETT_T0_DSSD_Y112_T 893.594 -0.107535
+MUSETT_T0_DSSD_Y113_T 901.025 -0.108466
+MUSETT_T0_DSSD_Y114_T 900.629 -0.108438
+MUSETT_T0_DSSD_Y115_T 906.59 -0.109158
+MUSETT_T0_DSSD_Y116_T 918.16 -0.110566
+MUSETT_T0_DSSD_Y117_T 911.388 -0.109757
+MUSETT_T0_DSSD_Y118_T 931.217 -0.112167
+MUSETT_T0_DSSD_Y119_T 922.953 -0.111146
+MUSETT_T0_DSSD_Y120_T 933.135 -0.112407
+MUSETT_T0_DSSD_Y121_T 932.64 -0.112337
+MUSETT_T0_DSSD_Y122_T 934.384 -0.112539
+MUSETT_T0_DSSD_Y123_T 937.88 -0.112978
+MUSETT_T0_DSSD_Y124_T 932.437 -0.112316
+MUSETT_T0_DSSD_Y125_T 931.451 -0.112192
+MUSETT_T0_DSSD_Y126_T 928.409 -0.111821
+MUSETT_T0_DSSD_Y127_T 931.268 -0.112162
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..21a339ff19565b30923199ce42cf71781b462958
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E -62.318 0.00760703
+MUSETT_T1_DSSD_X1_E -62.174800000000005 0.00758959
+MUSETT_T1_DSSD_X2_E -62.2697 0.00760114
+MUSETT_T1_DSSD_X3_E -61.9672 0.00756426
+MUSETT_T1_DSSD_X4_E -61.415099999999995 0.00749681
+MUSETT_T1_DSSD_X5_E -61.526 0.00751035
+MUSETT_T1_DSSD_X6_E -62.3097 0.00760599
+MUSETT_T1_DSSD_X7_E -61.376 0.00749208
+MUSETT_T1_DSSD_X8_E -61.309599999999996 0.00748393
+MUSETT_T1_DSSD_X9_E -61.415699999999994 0.00749688
+MUSETT_T1_DSSD_X10_E -61.636300000000006 0.0075238399999999995
+MUSETT_T1_DSSD_X11_E -61.6995 0.0075315799999999995
+MUSETT_T1_DSSD_X12_E -61.9036 0.00755648
+MUSETT_T1_DSSD_X13_E -61.3858 0.00749329
+MUSETT_T1_DSSD_X14_E -61.149699999999996 0.00746439
+MUSETT_T1_DSSD_X15_E -61.9483 0.00756191
+MUSETT_T1_DSSD_X16_E -62.532300000000006 0.00763317
+MUSETT_T1_DSSD_X17_E -61.741800000000005 0.0075366999999999995
+MUSETT_T1_DSSD_X18_E -62.152699999999996 0.00758685
+MUSETT_T1_DSSD_X19_E -61.8945 0.00755534
+MUSETT_T1_DSSD_X20_E -62.9018 0.007678239999999999
+MUSETT_T1_DSSD_X21_E -62.1592 0.0075876400000000005
+MUSETT_T1_DSSD_X22_E -62.66 0.0076488
+MUSETT_T1_DSSD_X23_E -62.320699999999995 0.0076073700000000005
+MUSETT_T1_DSSD_X24_E -62.2217 0.007595279999999999
+MUSETT_T1_DSSD_X25_E -61.9343 0.00756018
+MUSETT_T1_DSSD_X26_E -61.9471 0.00756175
+MUSETT_T1_DSSD_X27_E -61.6952 0.00753103
+MUSETT_T1_DSSD_X28_E -61.588300000000004 0.00751797
+MUSETT_T1_DSSD_X29_E -62.694 0.00765292
+MUSETT_T1_DSSD_X30_E -61.7341 0.007535770000000001
+MUSETT_T1_DSSD_X31_E -62.7765 0.00766307
+MUSETT_T1_DSSD_X32_E -58.260400000000004 0.00711179
+MUSETT_T1_DSSD_X33_E -58.264 0.00711219
+MUSETT_T1_DSSD_X34_E -58.3149 0.00711847
+MUSETT_T1_DSSD_X35_E -58.24 0.00710926
+MUSETT_T1_DSSD_X36_E -57.977 0.0070772199999999995
+MUSETT_T1_DSSD_X37_E -58.1817 0.0071020300000000005
+MUSETT_T1_DSSD_X38_E -58.0364 0.00708428
+MUSETT_T1_DSSD_X39_E -58.6261 0.007156419
+MUSETT_T1_DSSD_X40_E -58.167300000000004 0.00710045
+MUSETT_T1_DSSD_X41_E -58.8056 0.00717818
+MUSETT_T1_DSSD_X42_E -58.0404 0.00708493
+MUSETT_T1_DSSD_X43_E -58.445 0.00713434
+MUSETT_T1_DSSD_X44_E -58.5769 0.00715027
+MUSETT_T1_DSSD_X45_E -59.255 0.00723324
+MUSETT_T1_DSSD_X46_E -58.6541 0.00715993
+MUSETT_T1_DSSD_X47_E -58.523199999999996 0.0071438
+MUSETT_T1_DSSD_X48_E -57.8625 0.007063150000000001
+MUSETT_T1_DSSD_X49_E -58.4892 0.00713967
+MUSETT_T1_DSSD_X50_E -58.005300000000005 0.00708058
+MUSETT_T1_DSSD_X51_E -57.7392 0.0070481400000000005
+MUSETT_T1_DSSD_X52_E -57.926199999999994 0.00707097
+MUSETT_T1_DSSD_X53_E -57.9129 0.00706931
+MUSETT_T1_DSSD_X54_E -57.9565 0.00707461
+MUSETT_T1_DSSD_X55_E -57.767900000000004 0.00705159
+MUSETT_T1_DSSD_X56_E -58.0156 0.0070818700000000005
+MUSETT_T1_DSSD_X57_E -57.8056 0.00705617
+MUSETT_T1_DSSD_X58_E -58.416599999999995 0.00713075
+MUSETT_T1_DSSD_X59_E -57.624 0.0070339999999999995
+MUSETT_T1_DSSD_X60_E -57.6878 0.00704184
+MUSETT_T1_DSSD_X61_E -58.237300000000005 0.0071089000000000005
+MUSETT_T1_DSSD_X62_E -58.058699999999995 0.00708712
+MUSETT_T1_DSSD_X63_E -58.244699999999995 0.00710981
+MUSETT_T1_DSSD_X64_E -60.994699999999995 0.0074455
+MUSETT_T1_DSSD_X65_E -61.603 0.007519860000000001
+MUSETT_T1_DSSD_X66_E -61.459900000000005 0.00750223
+MUSETT_T1_DSSD_X67_E -61.665099999999995 0.00752729
+MUSETT_T1_DSSD_X68_E -61.8745 0.00755286
+MUSETT_T1_DSSD_X69_E -61.3285 0.0074863099999999995
+MUSETT_T1_DSSD_X70_E -61.63 0.00752303
+MUSETT_T1_DSSD_X71_E -61.904199999999996 0.00755658
+MUSETT_T1_DSSD_X72_E -61.2324 0.00747458
+MUSETT_T1_DSSD_X73_E -62.3412 0.00760994
+MUSETT_T1_DSSD_X74_E -61.9259 0.00755913
+MUSETT_T1_DSSD_X75_E -62.067099999999996 0.0075764199999999995
+MUSETT_T1_DSSD_X76_E -61.4845 0.00750533
+MUSETT_T1_DSSD_X77_E -61.7427 0.00753686
+MUSETT_T1_DSSD_X78_E -61.352599999999995 0.00748913
+MUSETT_T1_DSSD_X79_E -61.942099999999996 0.00756111
+MUSETT_T1_DSSD_X80_E -63.429 0.00774268
+MUSETT_T1_DSSD_X81_E -63.7221 0.00777849
+MUSETT_T1_DSSD_X82_E -64.2115 0.00783819
+MUSETT_T1_DSSD_X83_E -63.8677 0.0077962
+MUSETT_T1_DSSD_X84_E -64.1279 0.00782805
+MUSETT_T1_DSSD_X85_E -63.8404 0.00779293
+MUSETT_T1_DSSD_X86_E -64.0504 0.00781853
+MUSETT_T1_DSSD_X87_E -64.1609 0.00783201
+MUSETT_T1_DSSD_X88_E -64.18090000000001 0.007834520000000001
+MUSETT_T1_DSSD_X89_E -64.214 0.00783849
+MUSETT_T1_DSSD_X90_E -63.2804 0.00772459
+MUSETT_T1_DSSD_X91_E -63.366800000000005 0.00773508
+MUSETT_T1_DSSD_X92_E -64.5209 0.00787598
+MUSETT_T1_DSSD_X93_E -63.9818 0.007810139999999999
+MUSETT_T1_DSSD_X94_E -63.7755 0.00778503
+MUSETT_T1_DSSD_X95_E -63.4339 0.00774331
+MUSETT_T1_DSSD_X96_E -56.2588 0.00686734
+MUSETT_T1_DSSD_X97_E -56.6455 0.0069146400000000005
+MUSETT_T1_DSSD_X98_E -56.4879 0.00689532
+MUSETT_T1_DSSD_X99_E -56.3827 0.00688258
+MUSETT_T1_DSSD_X100_E -56.5553 0.00690363
+MUSETT_T1_DSSD_X101_E -57.0229 0.00696061
+MUSETT_T1_DSSD_X102_E -57.3332 0.0069984700000000006
+MUSETT_T1_DSSD_X103_E -56.5807 0.00690664
+MUSETT_T1_DSSD_X104_E -56.7668 0.00692938
+MUSETT_T1_DSSD_X105_E -56.9893 0.00695655
+MUSETT_T1_DSSD_X106_E -57.8513 0.00706174
+MUSETT_T1_DSSD_X107_E -57.756099999999996 0.00705012
+MUSETT_T1_DSSD_X108_E -57.728300000000004 0.0070468
+MUSETT_T1_DSSD_X109_E -57.5027 0.00701928
+MUSETT_T1_DSSD_X110_E -57.6809 0.00704099
+MUSETT_T1_DSSD_X111_E -57.9952 0.00707934
+MUSETT_T1_DSSD_X112_E -57.221599999999995 0.0069849199999999995
+MUSETT_T1_DSSD_X113_E -57.3068 0.0069953
+MUSETT_T1_DSSD_X114_E -56.767199999999995 0.006929439999999999
+MUSETT_T1_DSSD_X115_E -57.714800000000004 0.00704509
+MUSETT_T1_DSSD_X116_E -57.2578 0.0069893099999999994
+MUSETT_T1_DSSD_X117_E -57.2509 0.00698847
+MUSETT_T1_DSSD_X118_E -56.3284 0.00687591
+MUSETT_T1_DSSD_X119_E -58.2885 0.007115160000000001
+MUSETT_T1_DSSD_X120_E -57.413199999999996 0.007008339999999999
+MUSETT_T1_DSSD_X121_E -57.776199999999996 0.007052640000000001
+MUSETT_T1_DSSD_X122_E -57.731 0.00704713
+MUSETT_T1_DSSD_X123_E -57.410599999999995 0.00700802
+MUSETT_T1_DSSD_X124_E -57.5907 0.00702999
+MUSETT_T1_DSSD_X125_E -57.6383 0.00703579
+MUSETT_T1_DSSD_X126_E -57.0384 0.0069625500000000005
+MUSETT_T1_DSSD_X127_E -57.8549 0.007062199999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..99017db9824f0dde76826e27acab80c7781b2162
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_E 59.619099999999996 -0.00727783
+MUSETT_T1_DSSD_Y1_E 60.465300000000006 -0.0073811499999999995
+MUSETT_T1_DSSD_Y2_E 59.712 -0.007289189999999999
+MUSETT_T1_DSSD_Y3_E 59.326699999999995 -0.00724213
+MUSETT_T1_DSSD_Y4_E 60.1976 -0.0073485
+MUSETT_T1_DSSD_Y5_E 60.005199999999995 -0.00732501
+MUSETT_T1_DSSD_Y6_E 59.3762 -0.00724818
+MUSETT_T1_DSSD_Y7_E 59.4559 -0.00725795
+MUSETT_T1_DSSD_Y8_E 59.4729 -0.00725998
+MUSETT_T1_DSSD_Y9_E 59.7076 -0.00728867
+MUSETT_T1_DSSD_Y10_E 59.520199999999996 -0.0072657699999999995
+MUSETT_T1_DSSD_Y11_E 59.5565 -0.00727023
+MUSETT_T1_DSSD_Y12_E 60.2104 -0.0073500300000000005
+MUSETT_T1_DSSD_Y13_E 59.2734 -0.00723565
+MUSETT_T1_DSSD_Y14_E 59.5118 -0.00726475
+MUSETT_T1_DSSD_Y15_E 59.8161 -0.00730189
+MUSETT_T1_DSSD_Y16_E 62.145199999999996 -0.0075861999999999995
+MUSETT_T1_DSSD_Y17_E 62.468300000000006 -0.0076256399999999995
+MUSETT_T1_DSSD_Y18_E 62.4021 -0.00761759
+MUSETT_T1_DSSD_Y19_E 62.0316 -0.0075723399999999995
+MUSETT_T1_DSSD_Y20_E 62.1982 -0.00759266
+MUSETT_T1_DSSD_Y21_E 62.3574 -0.00761211
+MUSETT_T1_DSSD_Y22_E -10.0 0.0
+MUSETT_T1_DSSD_Y23_E 62.0064 -0.00756931
+MUSETT_T1_DSSD_Y24_E 61.7119 -0.00753332
+MUSETT_T1_DSSD_Y25_E 61.4477 -0.00750107
+MUSETT_T1_DSSD_Y26_E 62.078 -0.00757801
+MUSETT_T1_DSSD_Y27_E 62.0599 -0.00757584
+MUSETT_T1_DSSD_Y28_E 62.251599999999996 -0.00759918
+MUSETT_T1_DSSD_Y29_E 62.034 -0.00757263
+MUSETT_T1_DSSD_Y30_E 61.6533 -0.0075261699999999996
+MUSETT_T1_DSSD_Y31_E 61.7974 -0.0075438
+MUSETT_T1_DSSD_Y32_E 56.115 -0.00685013
+MUSETT_T1_DSSD_Y33_E 56.290099999999995 -0.00687151
+MUSETT_T1_DSSD_Y34_E 55.6312 -0.00679109
+MUSETT_T1_DSSD_Y35_E 55.6539 -0.00679382
+MUSETT_T1_DSSD_Y36_E 55.4171 -0.00676495
+MUSETT_T1_DSSD_Y37_E 56.4182 -0.0068871900000000005
+MUSETT_T1_DSSD_Y38_E 55.3814 -0.0067605700000000005
+MUSETT_T1_DSSD_Y39_E 55.9099 -0.00682508
+MUSETT_T1_DSSD_Y40_E 56.0294 -0.00683969
+MUSETT_T1_DSSD_Y41_E 56.120400000000004 -0.00685079
+MUSETT_T1_DSSD_Y42_E 55.5034 -0.0067754799999999995
+MUSETT_T1_DSSD_Y43_E 56.587300000000006 -0.00690782
+MUSETT_T1_DSSD_Y44_E 55.6325 -0.0067912499999999995
+MUSETT_T1_DSSD_Y45_E 55.719199999999994 -0.00680184
+MUSETT_T1_DSSD_Y46_E 55.7592 -0.0068067200000000005
+MUSETT_T1_DSSD_Y47_E 55.7233 -0.0068023300000000005
+MUSETT_T1_DSSD_Y48_E 57.1945 -0.00698188
+MUSETT_T1_DSSD_Y49_E 56.6218 -0.00691194
+MUSETT_T1_DSSD_Y50_E 56.5589 -0.0069043
+MUSETT_T1_DSSD_Y51_E 56.037099999999995 -0.00684059
+MUSETT_T1_DSSD_Y52_E 56.7933 -0.006932890000000001
+MUSETT_T1_DSSD_Y53_E 56.263 -0.00686816
+MUSETT_T1_DSSD_Y54_E 56.4425 -0.00689006
+MUSETT_T1_DSSD_Y55_E 56.437 -0.0068894
+MUSETT_T1_DSSD_Y56_E 57.3308 -0.00699852
+MUSETT_T1_DSSD_Y57_E 57.023 -0.00696092
+MUSETT_T1_DSSD_Y58_E 56.6276 -0.006912639999999999
+MUSETT_T1_DSSD_Y59_E 57.287800000000004 -0.00699327
+MUSETT_T1_DSSD_Y60_E 57.3784 -0.0070043300000000005
+MUSETT_T1_DSSD_Y61_E 57.0121 -0.0069596200000000006
+MUSETT_T1_DSSD_Y62_E 56.174 -0.0068573
+MUSETT_T1_DSSD_Y63_E 57.2921 -0.00699379
+MUSETT_T1_DSSD_Y64_E 61.0871 -0.00745703
+MUSETT_T1_DSSD_Y65_E 61.6184 -0.00752186
+MUSETT_T1_DSSD_Y66_E 61.2911 -0.00748195
+MUSETT_T1_DSSD_Y67_E 61.562599999999996 -0.0075150600000000005
+MUSETT_T1_DSSD_Y68_E 61.2043 -0.00747131
+MUSETT_T1_DSSD_Y69_E 60.0103 -0.0073256
+MUSETT_T1_DSSD_Y70_E 60.457 -0.00738015
+MUSETT_T1_DSSD_Y71_E 61.0999 -0.00745857
+MUSETT_T1_DSSD_Y72_E 60.2656 -0.00735676
+MUSETT_T1_DSSD_Y73_E 61.237300000000005 -0.00747538
+MUSETT_T1_DSSD_Y74_E 60.8875 -0.00743265
+MUSETT_T1_DSSD_Y75_E 60.371300000000005 -0.007369659999999999
+MUSETT_T1_DSSD_Y76_E 60.5195 -0.00738776
+MUSETT_T1_DSSD_Y77_E 60.9741 -0.00744327
+MUSETT_T1_DSSD_Y78_E 60.660599999999995 -0.00740501
+MUSETT_T1_DSSD_Y79_E 61.3305 -0.0074868
+MUSETT_T1_DSSD_Y80_E 61.1626 -0.00746633
+MUSETT_T1_DSSD_Y81_E 61.126400000000004 -0.00746184
+MUSETT_T1_DSSD_Y82_E 61.091300000000004 -0.0074575399999999995
+MUSETT_T1_DSSD_Y83_E 60.509 -0.007386510000000001
+MUSETT_T1_DSSD_Y84_E 60.4234 -0.007376000000000001
+MUSETT_T1_DSSD_Y85_E 61.1413 -0.00746364
+MUSETT_T1_DSSD_Y86_E 60.6746 -0.0074066900000000005
+MUSETT_T1_DSSD_Y87_E 60.5731 -0.0073943
+MUSETT_T1_DSSD_Y88_E 61.027300000000004 -0.007449760000000001
+MUSETT_T1_DSSD_Y89_E 61.279199999999996 -0.00748052
+MUSETT_T1_DSSD_Y90_E 60.7255 -0.00741289
+MUSETT_T1_DSSD_Y91_E 60.8688 -0.00743041
+MUSETT_T1_DSSD_Y92_E 60.5108 -0.0073867099999999995
+MUSETT_T1_DSSD_Y93_E 61.2806 -0.00748069
+MUSETT_T1_DSSD_Y94_E 61.6085 -0.007520679999999999
+MUSETT_T1_DSSD_Y95_E 60.746900000000004 -0.0074156000000000005
+MUSETT_T1_DSSD_Y96_E 55.8579 -0.00681873
+MUSETT_T1_DSSD_Y97_E 55.481300000000005 -0.00677275
+MUSETT_T1_DSSD_Y98_E 55.6901 -0.0067982500000000005
+MUSETT_T1_DSSD_Y99_E 55.5546 -0.00678172
+MUSETT_T1_DSSD_Y100_E 55.8138 -0.00681337
+MUSETT_T1_DSSD_Y101_E 55.4669 -0.00677101
+MUSETT_T1_DSSD_Y102_E 55.4251 -0.00676591
+MUSETT_T1_DSSD_Y103_E 56.1674 -0.00685651
+MUSETT_T1_DSSD_Y104_E 55.270199999999996 -0.00674696
+MUSETT_T1_DSSD_Y105_E 55.3054 -0.00675128
+MUSETT_T1_DSSD_Y106_E 55.865300000000005 -0.006819619999999999
+MUSETT_T1_DSSD_Y107_E 55.2296 -0.0067420200000000005
+MUSETT_T1_DSSD_Y108_E 55.8628 -0.00681933
+MUSETT_T1_DSSD_Y109_E 56.1111 -0.0068496699999999995
+MUSETT_T1_DSSD_Y110_E 56.1356 -0.0068525999999999995
+MUSETT_T1_DSSD_Y111_E 56.5726 -0.00690596
+MUSETT_T1_DSSD_Y112_E 54.7644 -0.0066852299999999995
+MUSETT_T1_DSSD_Y113_E 55.5593 -0.00678228
+MUSETT_T1_DSSD_Y114_E 55.1522 -0.00673254
+MUSETT_T1_DSSD_Y115_E 55.065599999999996 -0.00672196
+MUSETT_T1_DSSD_Y116_E 55.234300000000005 -0.00674255
+MUSETT_T1_DSSD_Y117_E 55.399300000000004 -0.00676272
+MUSETT_T1_DSSD_Y118_E 55.2609 -0.00674585
+MUSETT_T1_DSSD_Y119_E 55.568 -0.00678332
+MUSETT_T1_DSSD_Y120_E 55.8639 -0.00681946
+MUSETT_T1_DSSD_Y121_E 55.4788 -0.006772439999999999
+MUSETT_T1_DSSD_Y122_E 54.8367 -0.00669408
+MUSETT_T1_DSSD_Y123_E 55.1383 -0.006730870000000001
+MUSETT_T1_DSSD_Y124_E 55.2217 -0.00674106
+MUSETT_T1_DSSD_Y125_E 55.183 -0.0067363200000000005
+MUSETT_T1_DSSD_Y126_E 55.346 -0.00675624
+MUSETT_T1_DSSD_Y127_E 56.263 -0.00686815
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a77bb5f514cfaea8500f1cdb4877419d999206c1
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_T 927.653 -0.11232
+MUSETT_T1_DSSD_X1_T 941.47 -0.114015
+MUSETT_T1_DSSD_X2_T 943.919 -0.114341
+MUSETT_T1_DSSD_X3_T 955.204 -0.115712
+MUSETT_T1_DSSD_X4_T 955.698 -0.115744
+MUSETT_T1_DSSD_X5_T 957.389 -0.115962
+MUSETT_T1_DSSD_X6_T 970.882 -0.117589
+MUSETT_T1_DSSD_X7_T 966.082 -0.116998
+MUSETT_T1_DSSD_X8_T 970.157 -0.117498
+MUSETT_T1_DSSD_X9_T 979.189 -0.118577
+MUSETT_T1_DSSD_X10_T 975.579 -0.118143
+MUSETT_T1_DSSD_X11_T 974.976 -0.118071
+MUSETT_T1_DSSD_X12_T 986.971 -0.11954
+MUSETT_T1_DSSD_X13_T 987.598 -0.119597
+MUSETT_T1_DSSD_X14_T 984.568 -0.119236
+MUSETT_T1_DSSD_X15_T 1372.973 -0.119179
+MUSETT_T1_DSSD_X16_T 923.467 -0.111777
+MUSETT_T1_DSSD_X17_T 946.364 -0.114612
+MUSETT_T1_DSSD_X18_T 947.332 -0.114738
+MUSETT_T1_DSSD_X19_T 944.888 -0.114439
+MUSETT_T1_DSSD_X20_T 953.159 -0.115464
+MUSETT_T1_DSSD_X21_T 966.344 -0.117052
+MUSETT_T1_DSSD_X22_T 955.696 -0.115762
+MUSETT_T1_DSSD_X23_T 972.037 -0.117739
+MUSETT_T1_DSSD_X24_T 970.293 -0.117531
+MUSETT_T1_DSSD_X25_T 973.488 -0.117923
+MUSETT_T1_DSSD_X26_T 972.127 -0.117737
+MUSETT_T1_DSSD_X27_T 975.787 -0.11821
+MUSETT_T1_DSSD_X28_T 979.747 -0.118677
+MUSETT_T1_DSSD_X29_T 976.712 -0.118324
+MUSETT_T1_DSSD_X30_T 975.597 -0.118198
+MUSETT_T1_DSSD_X31_T 985.963 -0.119148
+MUSETT_T1_DSSD_X32_T 876.811 -0.106165
+MUSETT_T1_DSSD_X33_T 876.545 -0.10618
+MUSETT_T1_DSSD_X34_T 892.001 -0.108064
+MUSETT_T1_DSSD_X35_T 874.616 -0.105941
+MUSETT_T1_DSSD_X36_T 892.416 -0.108105
+MUSETT_T1_DSSD_X37_T 898.265 -0.108823
+MUSETT_T1_DSSD_X38_T 890.792 -0.107861
+MUSETT_T1_DSSD_X39_T 895.216 -0.10842
+MUSETT_T1_DSSD_X40_T 898.199 -0.108779
+MUSETT_T1_DSSD_X41_T 897.973 -0.108754
+MUSETT_T1_DSSD_X42_T 906.608 -0.109783
+MUSETT_T1_DSSD_X43_T 898.647 -0.108855
+MUSETT_T1_DSSD_X44_T 908.198 -0.110019
+MUSETT_T1_DSSD_X45_T 906.575 -0.109854
+MUSETT_T1_DSSD_X46_T 904.122 -0.109528
+MUSETT_T1_DSSD_X47_T 914.575 -0.110055
+MUSETT_T1_DSSD_X48_T 866.597 -0.104838
+MUSETT_T1_DSSD_X49_T 871.749 -0.105455
+MUSETT_T1_DSSD_X50_T 884.4 -0.107015
+MUSETT_T1_DSSD_X51_T 886.929 -0.107338
+MUSETT_T1_DSSD_X52_T 889.876 -0.107685
+MUSETT_T1_DSSD_X53_T 889.99 -0.107699
+MUSETT_T1_DSSD_X54_T 893.89 -0.10819
+MUSETT_T1_DSSD_X55_T 899.669 -0.108878
+MUSETT_T1_DSSD_X56_T 906.305 -0.1097
+MUSETT_T1_DSSD_X57_T 901.881 -0.10916
+MUSETT_T1_DSSD_X58_T 910.66 -0.110244
+MUSETT_T1_DSSD_X59_T 903.129 -0.109308
+MUSETT_T1_DSSD_X60_T 916.043 -0.110894
+MUSETT_T1_DSSD_X61_T 907.46 -0.109867
+MUSETT_T1_DSSD_X62_T 906.967 -0.109791
+MUSETT_T1_DSSD_X63_T 914.934 -0.110777
+MUSETT_T1_DSSD_X64_T 948.25 -0.114723
+MUSETT_T1_DSSD_X65_T 949.924 -0.114949
+MUSETT_T1_DSSD_X66_T 963.54 -0.116629
+MUSETT_T1_DSSD_X67_T 963.146 -0.116557
+MUSETT_T1_DSSD_X68_T 965.288 -0.116827
+MUSETT_T1_DSSD_X69_T 973.464 -0.117811
+MUSETT_T1_DSSD_X70_T 973.072 -0.117758
+MUSETT_T1_DSSD_X71_T 978.285 -0.118392
+MUSETT_T1_DSSD_X72_T 975.7 -0.118063
+MUSETT_T1_DSSD_X73_T 990.499 -0.119853
+MUSETT_T1_DSSD_X74_T 986.492 -0.119377
+MUSETT_T1_DSSD_X75_T 984.574 -0.119141
+MUSETT_T1_DSSD_X76_T 991.565 -0.119982
+MUSETT_T1_DSSD_X77_T 993.409 -0.120199
+MUSETT_T1_DSSD_X78_T 993.405 -0.1202
+MUSETT_T1_DSSD_X79_T 1375.093 -0.120722
+MUSETT_T1_DSSD_X80_T 973.672 -0.117775
+MUSETT_T1_DSSD_X81_T 975.656 -0.118024
+MUSETT_T1_DSSD_X82_T 980.777 -0.118652
+MUSETT_T1_DSSD_X83_T 994.253 -0.120307
+MUSETT_T1_DSSD_X84_T 993.689 -0.120215
+MUSETT_T1_DSSD_X85_T 1003.133 -0.121389
+MUSETT_T1_DSSD_X86_T 1004.549 -0.121554
+MUSETT_T1_DSSD_X87_T 996.426 -0.12057
+MUSETT_T1_DSSD_X88_T 1010.914 -0.122345
+MUSETT_T1_DSSD_X89_T 1013.245 -0.12261
+MUSETT_T1_DSSD_X90_T 1008.761 -0.122082
+MUSETT_T1_DSSD_X91_T 1014.832 -0.12282
+MUSETT_T1_DSSD_X92_T 1014.498 -0.12279
+MUSETT_T1_DSSD_X93_T 1017.247 -0.123127
+MUSETT_T1_DSSD_X94_T 1017.053 -0.123096
+MUSETT_T1_DSSD_X95_T 1005.005 -0.12163
+MUSETT_T1_DSSD_X96_T 889.381 -0.107613
+MUSETT_T1_DSSD_X97_T 887.557 -0.107373
+MUSETT_T1_DSSD_X98_T 891.215 -0.107838
+MUSETT_T1_DSSD_X99_T 902.575 -0.109224
+MUSETT_T1_DSSD_X100_T 902.42 -0.1092
+MUSETT_T1_DSSD_X101_T 907.423 -0.109791
+MUSETT_T1_DSSD_X102_T 903.057 -0.109268
+MUSETT_T1_DSSD_X103_T 918.716 -0.111151
+MUSETT_T1_DSSD_X104_T 919.908 -0.11128
+MUSETT_T1_DSSD_X105_T 921.318 -0.111467
+MUSETT_T1_DSSD_X106_T 926.071 -0.112035
+MUSETT_T1_DSSD_X107_T 921.56 -0.111519
+MUSETT_T1_DSSD_X108_T 922.52 -0.111616
+MUSETT_T1_DSSD_X109_T 914.214 -0.110627
+MUSETT_T1_DSSD_X110_T 916.863 -0.110941
+MUSETT_T1_DSSD_X111_T 923.589 -0.11176
+MUSETT_T1_DSSD_X112_T 897.734 -0.108476
+MUSETT_T1_DSSD_X113_T 898.559 -0.108567
+MUSETT_T1_DSSD_X114_T 905.814 -0.10946
+MUSETT_T1_DSSD_X115_T 911.34 -0.110136
+MUSETT_T1_DSSD_X116_T 926.296 -0.111977
+MUSETT_T1_DSSD_X117_T 920.798 -0.111304
+MUSETT_T1_DSSD_X118_T 933.021 -0.112781
+MUSETT_T1_DSSD_X119_T 915.505 -0.110659
+MUSETT_T1_DSSD_X120_T 921.016 -0.111325
+MUSETT_T1_DSSD_X121_T 928.534 -0.112226
+MUSETT_T1_DSSD_X122_T 929.497 -0.11236
+MUSETT_T1_DSSD_X123_T 924.762 -0.111775
+MUSETT_T1_DSSD_X124_T 922.227 -0.111483
+MUSETT_T1_DSSD_X125_T 928.191 -0.112193
+MUSETT_T1_DSSD_X126_T 931.474 -0.112614
+MUSETT_T1_DSSD_X127_T 925.471 -0.111864
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..c6e42f75336fd57d7217d0942339e11c75d0261f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_T 931.94 -0.11282
+MUSETT_T1_DSSD_Y1_T 933.419 -0.113022
+MUSETT_T1_DSSD_Y2_T 944.335 -0.114361
+MUSETT_T1_DSSD_Y3_T 948.282 -0.114834
+MUSETT_T1_DSSD_Y4_T 950.668 -0.115122
+MUSETT_T1_DSSD_Y5_T 954.097 -0.115533
+MUSETT_T1_DSSD_Y6_T 957.465 -0.115938
+MUSETT_T1_DSSD_Y7_T 947.485 -0.114726
+MUSETT_T1_DSSD_Y8_T 954.773 -0.11562
+MUSETT_T1_DSSD_Y9_T 965.117 -0.116854
+MUSETT_T1_DSSD_Y10_T 960.979 -0.116368
+MUSETT_T1_DSSD_Y11_T 968.885 -0.117327
+MUSETT_T1_DSSD_Y12_T 969.205 -0.117358
+MUSETT_T1_DSSD_Y13_T 964.875 -0.116827
+MUSETT_T1_DSSD_Y14_T 966.13 -0.116981
+MUSETT_T1_DSSD_Y15_T 963.905 -0.116717
+MUSETT_T1_DSSD_Y16_T 965.786 -0.116883
+MUSETT_T1_DSSD_Y17_T 967.594 -0.117128
+MUSETT_T1_DSSD_Y18_T 972.057 -0.117665
+MUSETT_T1_DSSD_Y19_T 972.548 -0.117743
+MUSETT_T1_DSSD_Y20_T 984.011 -0.119146
+MUSETT_T1_DSSD_Y21_T 980.785 -0.118747
+MUSETT_T1_DSSD_Y22_T 1411.968 -0.119189
+MUSETT_T1_DSSD_Y23_T 990.581 -0.119964
+MUSETT_T1_DSSD_Y24_T 992.06 -0.120158
+MUSETT_T1_DSSD_Y25_T 992.298 -0.120176
+MUSETT_T1_DSSD_Y26_T 996.629 -0.120728
+MUSETT_T1_DSSD_Y27_T 991.657 -0.120113
+MUSETT_T1_DSSD_Y28_T 993.497 -0.120339
+MUSETT_T1_DSSD_Y29_T 984.983 -0.119308
+MUSETT_T1_DSSD_Y30_T 991.5 -0.120108
+MUSETT_T1_DSSD_Y31_T 986.361 -0.119515
+MUSETT_T1_DSSD_Y32_T 880.913 -0.106691
+MUSETT_T1_DSSD_Y33_T 886.95 -0.10745
+MUSETT_T1_DSSD_Y34_T 882.111 -0.106848
+MUSETT_T1_DSSD_Y35_T 892.446 -0.108037
+MUSETT_T1_DSSD_Y36_T 850617233730.0 -103827000.0
+MUSETT_T1_DSSD_Y37_T 901.892 -0.109433
+MUSETT_T1_DSSD_Y38_T 901.618 -0.110242
+MUSETT_T1_DSSD_Y39_T 903.618 -0.10944
+MUSETT_T1_DSSD_Y40_T 891.626 -0.107957
+MUSETT_T1_DSSD_Y41_T 904.118 -0.109521
+MUSETT_T1_DSSD_Y42_T 896.877 -0.108623
+MUSETT_T1_DSSD_Y43_T 905.223 -0.10969
+MUSETT_T1_DSSD_Y44_T 908.248 -0.109989
+MUSETT_T1_DSSD_Y45_T 901.992 -0.109312
+MUSETT_T1_DSSD_Y46_T 907.207 -0.109844
+MUSETT_T1_DSSD_Y47_T 902.152 -0.109257
+MUSETT_T1_DSSD_Y48_T 884.358 -0.10696
+MUSETT_T1_DSSD_Y49_T 883.358 -0.106852
+MUSETT_T1_DSSD_Y50_T 879.778 -0.106436
+MUSETT_T1_DSSD_Y51_T 893.05 -0.108049
+MUSETT_T1_DSSD_Y52_T 898.719 -0.108781
+MUSETT_T1_DSSD_Y53_T 900.02 -0.108923
+MUSETT_T1_DSSD_Y54_T 899.923 -0.108922
+MUSETT_T1_DSSD_Y55_T 900.202 -0.108949
+MUSETT_T1_DSSD_Y56_T 912.083 -0.110395
+MUSETT_T1_DSSD_Y57_T 911.216 -0.110294
+MUSETT_T1_DSSD_Y58_T 906.57 -0.109746
+MUSETT_T1_DSSD_Y59_T 909.553 -0.109802
+MUSETT_T1_DSSD_Y60_T 906.64 -0.109742
+MUSETT_T1_DSSD_Y61_T 914.633 -0.11072
+MUSETT_T1_DSSD_Y62_T 915.986 -0.110879
+MUSETT_T1_DSSD_Y63_T 916.947 -0.111037
+MUSETT_T1_DSSD_Y64_T 946.849 -0.115194
+MUSETT_T1_DSSD_Y65_T 953.538 -0.116053
+MUSETT_T1_DSSD_Y66_T 959.656 -0.116788
+MUSETT_T1_DSSD_Y67_T 963.122 -0.117211
+MUSETT_T1_DSSD_Y68_T 966.506 -0.117617
+MUSETT_T1_DSSD_Y69_T 974.682 -0.118609
+MUSETT_T1_DSSD_Y70_T 970.103 -0.118053
+MUSETT_T1_DSSD_Y71_T 978.236 -0.119038
+MUSETT_T1_DSSD_Y72_T 979.284 -0.119163
+MUSETT_T1_DSSD_Y73_T 982.439 -0.119552
+MUSETT_T1_DSSD_Y74_T 984.361 -0.119777
+MUSETT_T1_DSSD_Y75_T 981.175 -0.119391
+MUSETT_T1_DSSD_Y76_T 984.681 -0.11981
+MUSETT_T1_DSSD_Y77_T 982.229 -0.119505
+MUSETT_T1_DSSD_Y78_T 982.9 -0.119601
+MUSETT_T1_DSSD_Y79_T 987.91 -0.120194
+MUSETT_T1_DSSD_Y80_T 942.987 -0.114646
+MUSETT_T1_DSSD_Y81_T 951.145 -0.115676
+MUSETT_T1_DSSD_Y82_T 950.113 -0.115551
+MUSETT_T1_DSSD_Y83_T 957.084 -0.116392
+MUSETT_T1_DSSD_Y84_T 956.602 -0.116344
+MUSETT_T1_DSSD_Y85_T 966.808 -0.117589
+MUSETT_T1_DSSD_Y86_T 967.686 -0.117699
+MUSETT_T1_DSSD_Y87_T 974.856 -0.118567
+MUSETT_T1_DSSD_Y88_T 975.823 -0.118705
+MUSETT_T1_DSSD_Y89_T 968.52 -0.117807
+MUSETT_T1_DSSD_Y90_T 973.055 -0.118376
+MUSETT_T1_DSSD_Y91_T 981.007 -0.119333
+MUSETT_T1_DSSD_Y92_T 981.756 -0.119429
+MUSETT_T1_DSSD_Y93_T 974.712 -0.118576
+MUSETT_T1_DSSD_Y94_T 978.546 -0.119031
+MUSETT_T1_DSSD_Y95_T 989.774 -0.120471
+MUSETT_T1_DSSD_Y96_T 872.467 -0.106136
+MUSETT_T1_DSSD_Y97_T 871.126 -0.106
+MUSETT_T1_DSSD_Y98_T 879.223 -0.106555
+MUSETT_T1_DSSD_Y99_T 889.621 -0.108263
+MUSETT_T1_DSSD_Y100_T 887.477 -0.10801
+MUSETT_T1_DSSD_Y101_T 879.614 -0.107044
+MUSETT_T1_DSSD_Y102_T 887.412 -0.108005
+MUSETT_T1_DSSD_Y103_T 890.772 -0.108406
+MUSETT_T1_DSSD_Y104_T 901.139 -0.109653
+MUSETT_T1_DSSD_Y105_T 897.74 -0.10926
+MUSETT_T1_DSSD_Y106_T 901.141 -0.10967
+MUSETT_T1_DSSD_Y107_T 891.801 -0.108536
+MUSETT_T1_DSSD_Y108_T 899.055 -0.109417
+MUSETT_T1_DSSD_Y109_T 906.215 -0.110268
+MUSETT_T1_DSSD_Y110_T 896.475 -0.109108
+MUSETT_T1_DSSD_Y111_T 902.411 -0.109824
+MUSETT_T1_DSSD_Y112_T 858.672 -0.104291
+MUSETT_T1_DSSD_Y113_T 852.315 -0.103549
+MUSETT_T1_DSSD_Y114_T 862.508 -0.104798
+MUSETT_T1_DSSD_Y115_T 857.467 -0.10419
+MUSETT_T1_DSSD_Y116_T 865.939 -0.105221
+MUSETT_T1_DSSD_Y117_T 875.287 -0.106354
+MUSETT_T1_DSSD_Y118_T 879.686 -0.1069
+MUSETT_T1_DSSD_Y119_T 874.387 -0.106252
+MUSETT_T1_DSSD_Y120_T 891.804 -0.108379
+MUSETT_T1_DSSD_Y121_T 892.804 -0.108492
+MUSETT_T1_DSSD_Y122_T 890.606 -0.108225
+MUSETT_T1_DSSD_Y123_T 889.753 -0.108132
+MUSETT_T1_DSSD_Y124_T 892.005 -0.108412
+MUSETT_T1_DSSD_Y125_T 887.457 -0.10784
+MUSETT_T1_DSSD_Y126_T 888.428 -0.107526
+MUSETT_T1_DSSD_Y127_T 948.968 -0.121191
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..17930f9a4e4b5c6c066722fc2a2e491d00ca3d70
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E -62.7421 0.00765877
+MUSETT_T2_DSSD_X1_E -62.4792 0.00762671
+MUSETT_T2_DSSD_X2_E -62.865 0.00767381
+MUSETT_T2_DSSD_X3_E -62.0985 0.0075802199999999995
+MUSETT_T2_DSSD_X4_E -62.0571 0.0075752
+MUSETT_T2_DSSD_X5_E -62.707699999999996 0.00765462
+MUSETT_T2_DSSD_X6_E -62.4305 0.00762076
+MUSETT_T2_DSSD_X7_E -62.8149 0.0076677
+MUSETT_T2_DSSD_X8_E -62.9251 0.00768116
+MUSETT_T2_DSSD_X9_E -62.1225 0.00758321
+MUSETT_T2_DSSD_X10_E -62.473800000000004 0.00762602
+MUSETT_T2_DSSD_X11_E -62.4904 0.0076280900000000006
+MUSETT_T2_DSSD_X12_E -62.594199999999994 0.00764074
+MUSETT_T2_DSSD_X13_E -62.536699999999996 0.00763373
+MUSETT_T2_DSSD_X14_E -62.6456 0.00764703
+MUSETT_T2_DSSD_X15_E -63.3752 0.00773612
+MUSETT_T2_DSSD_X16_E -62.167199999999994 0.00758864
+MUSETT_T2_DSSD_X17_E -61.8033 0.007544240000000001
+MUSETT_T2_DSSD_X18_E -61.5785 0.00751678
+MUSETT_T2_DSSD_X19_E -61.470800000000004 0.00750362
+MUSETT_T2_DSSD_X20_E -61.4837 0.00750523
+MUSETT_T2_DSSD_X21_E -62.3158 0.007606760000000001
+MUSETT_T2_DSSD_X22_E -62.1547 0.0075870899999999995
+MUSETT_T2_DSSD_X23_E -61.7911 0.00754274
+MUSETT_T2_DSSD_X24_E -61.6316 0.0075232599999999995
+MUSETT_T2_DSSD_X25_E -61.8242 0.00754673
+MUSETT_T2_DSSD_X26_E -61.9627 0.00756372
+MUSETT_T2_DSSD_X27_E -61.7744 0.00754065
+MUSETT_T2_DSSD_X28_E -61.6645 0.00752723
+MUSETT_T2_DSSD_X29_E -61.257400000000004 0.00747756
+MUSETT_T2_DSSD_X30_E -62.372099999999996 0.0076136400000000005
+MUSETT_T2_DSSD_X31_E -61.5182 0.0075094
+MUSETT_T2_DSSD_X32_E -58.9973 0.0072016499999999995
+MUSETT_T2_DSSD_X33_E -58.122699999999995 0.0070948700000000005
+MUSETT_T2_DSSD_X34_E -58.5748 0.00715013
+MUSETT_T2_DSSD_X35_E -58.3687 0.0071249
+MUSETT_T2_DSSD_X36_E -58.173300000000005 0.00710106
+MUSETT_T2_DSSD_X37_E -58.1415 0.0070972200000000004
+MUSETT_T2_DSSD_X38_E -58.3248 0.00711956
+MUSETT_T2_DSSD_X39_E -57.915800000000004 0.00706966
+MUSETT_T2_DSSD_X40_E -57.571400000000004 0.007027599999999999
+MUSETT_T2_DSSD_X41_E -58.5635 0.00714871
+MUSETT_T2_DSSD_X42_E -58.788599999999995 0.00717615
+MUSETT_T2_DSSD_X43_E -58.273900000000005 0.00711334
+MUSETT_T2_DSSD_X44_E -58.563900000000004 0.00714877
+MUSETT_T2_DSSD_X45_E -58.527 0.00714428
+MUSETT_T2_DSSD_X46_E -58.3393 0.00712137
+MUSETT_T2_DSSD_X47_E -58.469699999999996 0.0071372499999999995
+MUSETT_T2_DSSD_X48_E -57.7795 0.00705305
+MUSETT_T2_DSSD_X49_E -57.166 0.00697811
+MUSETT_T2_DSSD_X50_E -58.1299 0.0070957699999999995
+MUSETT_T2_DSSD_X51_E -57.864599999999996 0.00706342
+MUSETT_T2_DSSD_X52_E -57.5373 0.0070234600000000005
+MUSETT_T2_DSSD_X53_E -57.137 0.00697462
+MUSETT_T2_DSSD_X54_E -57.8198 0.007057959999999999
+MUSETT_T2_DSSD_X55_E -57.621199999999995 0.00703367
+MUSETT_T2_DSSD_X56_E -57.914 0.0070694600000000005
+MUSETT_T2_DSSD_X57_E -57.5076 0.00701987
+MUSETT_T2_DSSD_X58_E -57.9231 0.007070610000000001
+MUSETT_T2_DSSD_X59_E -56.9989 0.00695776
+MUSETT_T2_DSSD_X60_E -57.486599999999996 0.00701726
+MUSETT_T2_DSSD_X61_E -56.6863 0.00691961
+MUSETT_T2_DSSD_X62_E -57.4581 0.0070138299999999995
+MUSETT_T2_DSSD_X63_E -57.8619 0.00706309
+MUSETT_T2_DSSD_X64_E -63.3158 0.00772883
+MUSETT_T2_DSSD_X65_E -64.9944 0.0079338
+MUSETT_T2_DSSD_X66_E -64.0256 0.00781543
+MUSETT_T2_DSSD_X67_E -63.7104 0.00777703
+MUSETT_T2_DSSD_X68_E -10.0 0.0
+MUSETT_T2_DSSD_X69_E -64.3822 0.007859
+MUSETT_T2_DSSD_X70_E -63.647800000000004 0.0077693599999999995
+MUSETT_T2_DSSD_X71_E -63.4446 0.0077446
+MUSETT_T2_DSSD_X72_E -63.3618 0.00773443
+MUSETT_T2_DSSD_X73_E -63.093900000000005 0.00770176
+MUSETT_T2_DSSD_X74_E -63.8269 0.0077912499999999996
+MUSETT_T2_DSSD_X75_E -63.664199999999994 0.00777139
+MUSETT_T2_DSSD_X76_E -63.8841 0.00779822
+MUSETT_T2_DSSD_X77_E -63.7164 0.00777776
+MUSETT_T2_DSSD_X78_E -63.6246 0.007766619999999999
+MUSETT_T2_DSSD_X79_E -63.5937 0.00776277
+MUSETT_T2_DSSD_X80_E -63.2476 0.00772049
+MUSETT_T2_DSSD_X81_E -63.2975 0.0077267099999999995
+MUSETT_T2_DSSD_X82_E -63.1009 0.00770261
+MUSETT_T2_DSSD_X83_E -63.149800000000006 0.00770857
+MUSETT_T2_DSSD_X84_E -63.9192 0.007802450000000001
+MUSETT_T2_DSSD_X85_E -63.8105 0.0077892000000000005
+MUSETT_T2_DSSD_X86_E -63.724599999999995 0.00777877
+MUSETT_T2_DSSD_X87_E -63.9231 0.00780293
+MUSETT_T2_DSSD_X88_E -63.0451 0.0076958
+MUSETT_T2_DSSD_X89_E -63.491800000000005 0.007750379999999999
+MUSETT_T2_DSSD_X90_E -63.3429 0.00773222
+MUSETT_T2_DSSD_X91_E -63.540699999999994 0.007756300000000001
+MUSETT_T2_DSSD_X92_E -63.268 0.00772303
+MUSETT_T2_DSSD_X93_E -64.611 0.00788691
+MUSETT_T2_DSSD_X94_E -63.699 0.0077756
+MUSETT_T2_DSSD_X95_E -63.6235 0.00776632
+MUSETT_T2_DSSD_X96_E -59.026199999999996 0.00720527
+MUSETT_T2_DSSD_X97_E -58.5406 0.00714597
+MUSETT_T2_DSSD_X98_E -58.3044 0.00711715
+MUSETT_T2_DSSD_X99_E -58.710800000000006 0.00716671
+MUSETT_T2_DSSD_X100_E -59.397800000000004 0.00725058
+MUSETT_T2_DSSD_X101_E -59.3529 0.0072451
+MUSETT_T2_DSSD_X102_E -58.824 0.00718059
+MUSETT_T2_DSSD_X103_E -59.0216 0.0072047
+MUSETT_T2_DSSD_X104_E -59.011199999999995 0.0072034
+MUSETT_T2_DSSD_X105_E -59.098800000000004 0.00721406
+MUSETT_T2_DSSD_X106_E -58.7173 0.0071675
+MUSETT_T2_DSSD_X107_E -58.9915 0.00720094
+MUSETT_T2_DSSD_X108_E -58.718900000000005 0.00716772
+MUSETT_T2_DSSD_X109_E -60.3408 0.00736568
+MUSETT_T2_DSSD_X110_E -58.9501 0.0071959
+MUSETT_T2_DSSD_X111_E -58.6752 0.00716237
+MUSETT_T2_DSSD_X112_E -59.2957 0.0072381
+MUSETT_T2_DSSD_X113_E -59.3395 0.00724343
+MUSETT_T2_DSSD_X114_E -59.702 0.00728774
+MUSETT_T2_DSSD_X115_E -59.145300000000006 0.00721974
+MUSETT_T2_DSSD_X116_E -59.642 0.00728038
+MUSETT_T2_DSSD_X117_E -59.9957 0.00732358
+MUSETT_T2_DSSD_X118_E -59.4429 0.00725607
+MUSETT_T2_DSSD_X119_E -59.354800000000004 0.00724536
+MUSETT_T2_DSSD_X120_E -60.0831 0.00733422
+MUSETT_T2_DSSD_X121_E -58.758900000000004 0.00717258
+MUSETT_T2_DSSD_X122_E -59.087300000000006 0.00721264
+MUSETT_T2_DSSD_X123_E -59.302 0.0072389
+MUSETT_T2_DSSD_X124_E -58.9116 0.00719123
+MUSETT_T2_DSSD_X125_E -58.940599999999996 0.00719471
+MUSETT_T2_DSSD_X126_E -59.1426 0.0072194
+MUSETT_T2_DSSD_X127_E -59.2913 0.0072375600000000005
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..db568f8d67c8f9e13b39457ae43502806b6fcbdd
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_E 63.2211 -0.00771756
+MUSETT_T2_DSSD_Y1_E 64.033 -0.00781661
+MUSETT_T2_DSSD_Y2_E 62.573 -0.00763842
+MUSETT_T2_DSSD_Y3_E 63.453199999999995 -0.007745879999999999
+MUSETT_T2_DSSD_Y4_E 63.0084 -0.00769158
+MUSETT_T2_DSSD_Y5_E 62.742 -0.00765904
+MUSETT_T2_DSSD_Y6_E 63.0508 -0.00769679
+MUSETT_T2_DSSD_Y7_E 62.6824 -0.0076517600000000005
+MUSETT_T2_DSSD_Y8_E 62.844300000000004 -0.00767155
+MUSETT_T2_DSSD_Y9_E 63.462900000000005 -0.007747029999999999
+MUSETT_T2_DSSD_Y10_E 62.9966 -0.00769016
+MUSETT_T2_DSSD_Y11_E 62.575 -0.00763867
+MUSETT_T2_DSSD_Y12_E 62.1312 -0.00758453
+MUSETT_T2_DSSD_Y13_E 62.781800000000004 -0.00766392
+MUSETT_T2_DSSD_Y14_E 62.9937 -0.00768982
+MUSETT_T2_DSSD_Y15_E 63.488800000000005 -0.00775026
+MUSETT_T2_DSSD_Y16_E 61.669599999999996 -0.0075280899999999994
+MUSETT_T2_DSSD_Y17_E 60.961400000000005 -0.0074417400000000005
+MUSETT_T2_DSSD_Y18_E 60.7264 -0.00741301
+MUSETT_T2_DSSD_Y19_E 62.0874 -0.00757914
+MUSETT_T2_DSSD_Y20_E 61.094300000000004 -0.00745789
+MUSETT_T2_DSSD_Y21_E 60.9275 -0.00743756
+MUSETT_T2_DSSD_Y22_E 62.1491 -0.00758664
+MUSETT_T2_DSSD_Y23_E 61.087900000000005 -0.00745714
+MUSETT_T2_DSSD_Y24_E 61.0724 -0.00745528
+MUSETT_T2_DSSD_Y25_E 61.6042 -0.0075201700000000005
+MUSETT_T2_DSSD_Y26_E 61.1313 -0.00746243
+MUSETT_T2_DSSD_Y27_E 61.442 -0.00750039
+MUSETT_T2_DSSD_Y28_E 61.55 -0.00751354
+MUSETT_T2_DSSD_Y29_E 61.5135 -0.00750906
+MUSETT_T2_DSSD_Y30_E 61.3444 -0.00748846
+MUSETT_T2_DSSD_Y31_E 61.7721 -0.00754065
+MUSETT_T2_DSSD_Y32_E 56.3053 -0.00687326
+MUSETT_T2_DSSD_Y33_E 56.4975 -0.00689675
+MUSETT_T2_DSSD_Y34_E 56.8346 -0.00693796
+MUSETT_T2_DSSD_Y35_E 56.7034 -0.00692192
+MUSETT_T2_DSSD_Y36_E 56.977 -0.0069553
+MUSETT_T2_DSSD_Y37_E 56.8891 -0.00694457
+MUSETT_T2_DSSD_Y38_E 56.450300000000006 -0.0068909900000000005
+MUSETT_T2_DSSD_Y39_E 56.4039 -0.006885329999999999
+MUSETT_T2_DSSD_Y40_E 56.2056 -0.00686116
+MUSETT_T2_DSSD_Y41_E 58.1252 -0.0070954600000000005
+MUSETT_T2_DSSD_Y42_E 56.7624 -0.00692908
+MUSETT_T2_DSSD_Y43_E 56.2999 -0.006872690000000001
+MUSETT_T2_DSSD_Y44_E 57.261300000000006 -0.00698997
+MUSETT_T2_DSSD_Y45_E 57.2476 -0.00698834
+MUSETT_T2_DSSD_Y46_E 57.0309 -0.00696185
+MUSETT_T2_DSSD_Y47_E 56.7446 -0.006926949999999999
+MUSETT_T2_DSSD_Y48_E 57.601800000000004 -0.007031620000000001
+MUSETT_T2_DSSD_Y49_E 57.0171 -0.00696022
+MUSETT_T2_DSSD_Y50_E 57.9334 -0.00707206
+MUSETT_T2_DSSD_Y51_E 57.4264 -0.00701017
+MUSETT_T2_DSSD_Y52_E 57.2978 -0.00699446
+MUSETT_T2_DSSD_Y53_E 58.6368 -0.00715795
+MUSETT_T2_DSSD_Y54_E 57.7444 -0.007049000000000001
+MUSETT_T2_DSSD_Y55_E 57.8392 -0.00706057
+MUSETT_T2_DSSD_Y56_E 57.708800000000004 -0.0070446499999999995
+MUSETT_T2_DSSD_Y57_E 57.5585 -0.00702632
+MUSETT_T2_DSSD_Y58_E 57.4748 -0.00701608
+MUSETT_T2_DSSD_Y59_E 58.2609 -0.00711207
+MUSETT_T2_DSSD_Y60_E 57.892199999999995 -0.00706703
+MUSETT_T2_DSSD_Y61_E 57.33 -0.00699845
+MUSETT_T2_DSSD_Y62_E 57.835699999999996 -0.00706015
+MUSETT_T2_DSSD_Y63_E 58.1845 -0.00710268
+MUSETT_T2_DSSD_Y64_E 59.348099999999995 -0.007244830000000001
+MUSETT_T2_DSSD_Y65_E 59.6057 -0.00727624
+MUSETT_T2_DSSD_Y66_E 59.4559 -0.00725797
+MUSETT_T2_DSSD_Y67_E 60.4295 -0.0073767500000000005
+MUSETT_T2_DSSD_Y68_E 59.568599999999996 -0.00727167
+MUSETT_T2_DSSD_Y69_E 59.821400000000004 -0.00730253
+MUSETT_T2_DSSD_Y70_E 59.558 -0.00727041
+MUSETT_T2_DSSD_Y71_E 59.8926 -0.0073113
+MUSETT_T2_DSSD_Y72_E 59.8765 -0.007309230000000001
+MUSETT_T2_DSSD_Y73_E 59.5571 -0.0072702999999999995
+MUSETT_T2_DSSD_Y74_E 59.902699999999996 -0.0073124900000000005
+MUSETT_T2_DSSD_Y75_E 60.0592 -0.00733158
+MUSETT_T2_DSSD_Y76_E 59.3142 -0.0072406499999999995
+MUSETT_T2_DSSD_Y77_E 59.977199999999996 -0.00732152
+MUSETT_T2_DSSD_Y78_E 59.375699999999995 -0.00724812
+MUSETT_T2_DSSD_Y79_E 60.1625 -0.00734418
+MUSETT_T2_DSSD_Y80_E 60.553599999999996 -0.0073919699999999994
+MUSETT_T2_DSSD_Y81_E 61.2375 -0.00747541
+MUSETT_T2_DSSD_Y82_E 60.562599999999996 -0.00739303
+MUSETT_T2_DSSD_Y83_E 61.2245 -0.00747385
+MUSETT_T2_DSSD_Y84_E 61.126400000000004 -0.00746188
+MUSETT_T2_DSSD_Y85_E 60.9095 -0.0074354
+MUSETT_T2_DSSD_Y86_E 60.9575 -0.00744128
+MUSETT_T2_DSSD_Y87_E 61.286199999999994 -0.00748137
+MUSETT_T2_DSSD_Y88_E 60.884699999999995 -0.007432299999999999
+MUSETT_T2_DSSD_Y89_E 60.871 -0.007430679999999999
+MUSETT_T2_DSSD_Y90_E 61.4437 -0.00750059
+MUSETT_T2_DSSD_Y91_E 60.6586 -0.00740476
+MUSETT_T2_DSSD_Y92_E 61.0976 -0.00745829
+MUSETT_T2_DSSD_Y93_E 60.6141 -0.00739932
+MUSETT_T2_DSSD_Y94_E 61.0445 -0.00745181
+MUSETT_T2_DSSD_Y95_E 61.4704 -0.00750378
+MUSETT_T2_DSSD_Y96_E 56.8785 -0.00694331
+MUSETT_T2_DSSD_Y97_E 55.9619 -0.006831380000000001
+MUSETT_T2_DSSD_Y98_E 56.2188 -0.00686276
+MUSETT_T2_DSSD_Y99_E 56.6425 -0.00691453
+MUSETT_T2_DSSD_Y100_E 56.348 -0.00687854
+MUSETT_T2_DSSD_Y101_E 56.7474 -0.0069273
+MUSETT_T2_DSSD_Y102_E 55.9048 -0.00682446
+MUSETT_T2_DSSD_Y103_E 57.240300000000005 -0.00698747
+MUSETT_T2_DSSD_Y104_E 56.0874 -0.006846720000000001
+MUSETT_T2_DSSD_Y105_E 56.732099999999996 -0.0069254600000000005
+MUSETT_T2_DSSD_Y106_E 56.6237 -0.00691218
+MUSETT_T2_DSSD_Y107_E 57.520300000000006 -0.00702164
+MUSETT_T2_DSSD_Y108_E 57.0144 -0.0069599
+MUSETT_T2_DSSD_Y109_E 56.700300000000006 -0.00692155
+MUSETT_T2_DSSD_Y110_E 57.019800000000004 -0.006960549999999999
+MUSETT_T2_DSSD_Y111_E 56.158699999999996 -0.00685546
+MUSETT_T2_DSSD_Y112_E 56.4865 -0.00689543
+MUSETT_T2_DSSD_Y113_E 57.289300000000004 -0.00699345
+MUSETT_T2_DSSD_Y114_E 56.5979 -0.00690909
+MUSETT_T2_DSSD_Y115_E 56.8241 -0.00693669
+MUSETT_T2_DSSD_Y116_E 56.51 -0.00689835
+MUSETT_T2_DSSD_Y117_E 56.5638 -0.00690489
+MUSETT_T2_DSSD_Y118_E 56.834900000000005 -0.00693798
+MUSETT_T2_DSSD_Y119_E 56.738099999999996 -0.0069261999999999995
+MUSETT_T2_DSSD_Y120_E 56.3376 -0.00687729
+MUSETT_T2_DSSD_Y121_E 57.0592 -0.00696537
+MUSETT_T2_DSSD_Y122_E 57.4198 -0.007009400000000001
+MUSETT_T2_DSSD_Y123_E -10.0 0.0
+MUSETT_T2_DSSD_Y124_E 56.2087 -0.00686156
+MUSETT_T2_DSSD_Y125_E 56.914199999999994 -0.0069477
+MUSETT_T2_DSSD_Y126_E 56.3399 -0.00687758
+MUSETT_T2_DSSD_Y127_E 56.1682 -0.0068566
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..075f01a142f12c51a5678d211882fc38144d98b9
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_T 937.964 -0.113282
+MUSETT_T2_DSSD_X1_T 934.802 -0.112935
+MUSETT_T2_DSSD_X2_T 942.616 -0.113903
+MUSETT_T2_DSSD_X3_T 955.004 -0.11541
+MUSETT_T2_DSSD_X4_T 950.266 -0.114834
+MUSETT_T2_DSSD_X5_T 967.873 -0.116968
+MUSETT_T2_DSSD_X6_T 961.34 -0.116144
+MUSETT_T2_DSSD_X7_T 966.227 -0.116738
+MUSETT_T2_DSSD_X8_T 958.079 -0.115736
+MUSETT_T2_DSSD_X9_T 969.979 -0.117191
+MUSETT_T2_DSSD_X10_T 977.513 -0.117505
+MUSETT_T2_DSSD_X11_T 967.3 -0.116868
+MUSETT_T2_DSSD_X12_T 973.198 -0.117596
+MUSETT_T2_DSSD_X13_T 967.359 -0.116864
+MUSETT_T2_DSSD_X14_T 967.676 -0.116934
+MUSETT_T2_DSSD_X15_T 1368.197 -0.118078
+MUSETT_T2_DSSD_X16_T 919.75 -0.111042
+MUSETT_T2_DSSD_X17_T 934.845 -0.1129
+MUSETT_T2_DSSD_X18_T 937.652 -0.113239
+MUSETT_T2_DSSD_X19_T 936.647 -0.11311
+MUSETT_T2_DSSD_X20_T 947.463 -0.114433
+MUSETT_T2_DSSD_X21_T 947.515 -0.113893
+MUSETT_T2_DSSD_X22_T 945.354 -0.113604
+MUSETT_T2_DSSD_X23_T 949.129 -0.114596
+MUSETT_T2_DSSD_X24_T 940.238 -0.113523
+MUSETT_T2_DSSD_X25_T 948.581 -0.114529
+MUSETT_T2_DSSD_X26_T 949.163 -0.114587
+MUSETT_T2_DSSD_X27_T 945.26 -0.114127
+MUSETT_T2_DSSD_X28_T 952.83 -0.115049
+MUSETT_T2_DSSD_X29_T 949.046 -0.114577
+MUSETT_T2_DSSD_X30_T 950.717 -0.114801
+MUSETT_T2_DSSD_X31_T 1130.766 -0.114725
+MUSETT_T2_DSSD_X32_T 885.102 -0.106884
+MUSETT_T2_DSSD_X33_T 882.432 -0.106588
+MUSETT_T2_DSSD_X34_T 891.72 -0.10771
+MUSETT_T2_DSSD_X35_T 889.058 -0.10739
+MUSETT_T2_DSSD_X36_T 902.436 -0.109058
+MUSETT_T2_DSSD_X37_T 899.526 -0.108685
+MUSETT_T2_DSSD_X38_T 907.458 -0.109605
+MUSETT_T2_DSSD_X39_T 904.064 -0.109211
+MUSETT_T2_DSSD_X40_T 903.964 -0.109168
+MUSETT_T2_DSSD_X41_T 907.259 -0.109617
+MUSETT_T2_DSSD_X42_T 914.019 -0.1104
+MUSETT_T2_DSSD_X43_T 912.823 -0.110254
+MUSETT_T2_DSSD_X44_T 920.768 -0.111219
+MUSETT_T2_DSSD_X45_T 919.333 -0.111043
+MUSETT_T2_DSSD_X46_T 921.925 -0.111378
+MUSETT_T2_DSSD_X47_T 1304.594 -0.11089
+MUSETT_T2_DSSD_X48_T 854.163 -0.102956
+MUSETT_T2_DSSD_X49_T 864.061 -0.104191
+MUSETT_T2_DSSD_X50_T 873.658 -0.105362
+MUSETT_T2_DSSD_X51_T 867.698 -0.10464
+MUSETT_T2_DSSD_X52_T 876.619 -0.105723
+MUSETT_T2_DSSD_X53_T 876.856 -0.105755
+MUSETT_T2_DSSD_X54_T 879.033 -0.105984
+MUSETT_T2_DSSD_X55_T 886.677 -0.106931
+MUSETT_T2_DSSD_X56_T 895.667 -0.108024
+MUSETT_T2_DSSD_X57_T 898.221 -0.108307
+MUSETT_T2_DSSD_X58_T 889.656 -0.107279
+MUSETT_T2_DSSD_X59_T 900.043 -0.108543
+MUSETT_T2_DSSD_X60_T 901.375 -0.108721
+MUSETT_T2_DSSD_X61_T 900.963 -0.108665
+MUSETT_T2_DSSD_X62_T 897.506 -0.10824
+MUSETT_T2_DSSD_X63_T 1288.067 -0.107885
+MUSETT_T2_DSSD_X64_T 970.625 -0.117533
+MUSETT_T2_DSSD_X65_T 970.595 -0.117545
+MUSETT_T2_DSSD_X66_T 982.177 -0.118957
+MUSETT_T2_DSSD_X67_T 987.216 -0.119584
+MUSETT_T2_DSSD_X68_T 450.0 -0.119902
+MUSETT_T2_DSSD_X69_T 990.894 -0.12002
+MUSETT_T2_DSSD_X70_T 992.154 -0.120171
+MUSETT_T2_DSSD_X71_T 997.339 -0.120802
+MUSETT_T2_DSSD_X72_T 990.584 -0.119977
+MUSETT_T2_DSSD_X73_T 999.436 -0.12102
+MUSETT_T2_DSSD_X74_T 995.246 -0.12055
+MUSETT_T2_DSSD_X75_T 994.968 -0.12048
+MUSETT_T2_DSSD_X76_T 1004.63 -0.121688
+MUSETT_T2_DSSD_X77_T 1008.287 -0.122136
+MUSETT_T2_DSSD_X78_T 1011.093 -0.122472
+MUSETT_T2_DSSD_X79_T 1313.045 -0.121488
+MUSETT_T2_DSSD_X80_T 951.945 -0.115148
+MUSETT_T2_DSSD_X81_T 962.843 -0.116512
+MUSETT_T2_DSSD_X82_T 964.811 -0.116735
+MUSETT_T2_DSSD_X83_T 968.199 -0.117158
+MUSETT_T2_DSSD_X84_T 968.188 -0.117159
+MUSETT_T2_DSSD_X85_T 969.593 -0.117336
+MUSETT_T2_DSSD_X86_T 983.185 -0.118997
+MUSETT_T2_DSSD_X87_T 982.502 -0.118879
+MUSETT_T2_DSSD_X88_T 992.909 -0.120152
+MUSETT_T2_DSSD_X89_T 992.748 -0.120143
+MUSETT_T2_DSSD_X90_T 991.638 -0.120011
+MUSETT_T2_DSSD_X91_T 982.075 -0.118788
+MUSETT_T2_DSSD_X92_T 996.694 -0.120614
+MUSETT_T2_DSSD_X93_T 1000.609 -0.12112
+MUSETT_T2_DSSD_X94_T 1001.537 -0.12123
+MUSETT_T2_DSSD_X95_T 986.471 -0.119394
+MUSETT_T2_DSSD_X96_T 899.901 -0.10895
+MUSETT_T2_DSSD_X97_T 916.701 -0.11099
+MUSETT_T2_DSSD_X98_T 912.456 -0.110483
+MUSETT_T2_DSSD_X99_T 912.701 -0.110494
+MUSETT_T2_DSSD_X100_T 921.872 -0.11163
+MUSETT_T2_DSSD_X101_T 921.335 -0.111573
+MUSETT_T2_DSSD_X102_T 919.772 -0.111368
+MUSETT_T2_DSSD_X103_T 924.049 -0.111888
+MUSETT_T2_DSSD_X104_T 934.177 -0.113122
+MUSETT_T2_DSSD_X105_T 931.202 -0.112764
+MUSETT_T2_DSSD_X106_T 936.118 -0.113373
+MUSETT_T2_DSSD_X107_T 931.356 -0.112797
+MUSETT_T2_DSSD_X108_T 934.62 -0.113176
+MUSETT_T2_DSSD_X109_T 941.116 -0.113973
+MUSETT_T2_DSSD_X110_T 941.858 -0.114066
+MUSETT_T2_DSSD_X111_T 941.193 -0.113973
+MUSETT_T2_DSSD_X112_T 901.356 -0.108961
+MUSETT_T2_DSSD_X113_T 905.904 -0.109531
+MUSETT_T2_DSSD_X114_T 913.578 -0.110461
+MUSETT_T2_DSSD_X115_T 913.318 -0.110414
+MUSETT_T2_DSSD_X116_T 928.72 -0.112323
+MUSETT_T2_DSSD_X117_T 931.683 -0.11267
+MUSETT_T2_DSSD_X118_T 937.114 -0.113333
+MUSETT_T2_DSSD_X119_T 940.124 -0.113698
+MUSETT_T2_DSSD_X120_T 939.916 -0.113666
+MUSETT_T2_DSSD_X121_T 948.657 -0.114745
+MUSETT_T2_DSSD_X122_T 939.964 -0.113673
+MUSETT_T2_DSSD_X123_T 946.195 -0.11443
+MUSETT_T2_DSSD_X124_T 935.769 -0.113174
+MUSETT_T2_DSSD_X125_T 935.549 -0.113143
+MUSETT_T2_DSSD_X126_T 944.149 -0.114176
+MUSETT_T2_DSSD_X127_T 944.397 -0.114186
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..ff8b414dff7cd96b197c045d670dd45b19ff310a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_T 988.419 -0.119525
+MUSETT_T2_DSSD_Y1_T 991.309 -0.119903
+MUSETT_T2_DSSD_Y2_T 990.03 -0.119776
+MUSETT_T2_DSSD_Y3_T 996.324 -0.120524
+MUSETT_T2_DSSD_Y4_T 1001.697 -0.121165
+MUSETT_T2_DSSD_Y5_T 999.789 -0.120947
+MUSETT_T2_DSSD_Y6_T 1004.703 -0.121526
+MUSETT_T2_DSSD_Y7_T 1011.722 -0.122366
+MUSETT_T2_DSSD_Y8_T 1013.114 -0.122539
+MUSETT_T2_DSSD_Y9_T 1004.782 -0.121307
+MUSETT_T2_DSSD_Y10_T 1011.11 -0.122275
+MUSETT_T2_DSSD_Y11_T 1016.173 -0.122898
+MUSETT_T2_DSSD_Y12_T 1018.106 -0.12312
+MUSETT_T2_DSSD_Y13_T 1023.198 -0.123746
+MUSETT_T2_DSSD_Y14_T 1022.258 -0.123621
+MUSETT_T2_DSSD_Y15_T 1023.505 -0.123744
+MUSETT_T2_DSSD_Y16_T 940.868 -0.113632
+MUSETT_T2_DSSD_Y17_T 940.208 -0.11359
+MUSETT_T2_DSSD_Y18_T 939.802 -0.113546
+MUSETT_T2_DSSD_Y19_T 939.415 -0.113526
+MUSETT_T2_DSSD_Y20_T 954.508 -0.115367
+MUSETT_T2_DSSD_Y21_T 970.22 -0.117305
+MUSETT_T2_DSSD_Y22_T 966.365 -0.11682
+MUSETT_T2_DSSD_Y23_T 961.254 -0.116216
+MUSETT_T2_DSSD_Y24_T 976.91 -0.118134
+MUSETT_T2_DSSD_Y25_T 979.589 -0.118446
+MUSETT_T2_DSSD_Y26_T 976.797 -0.117858
+MUSETT_T2_DSSD_Y27_T 983.447 -0.11895
+MUSETT_T2_DSSD_Y28_T 977.618 -0.118238
+MUSETT_T2_DSSD_Y29_T 979.391 -0.118468
+MUSETT_T2_DSSD_Y30_T 978.252 -0.118337
+MUSETT_T2_DSSD_Y31_T 966.295 -0.116905
+MUSETT_T2_DSSD_Y32_T 870.957 -0.105393
+MUSETT_T2_DSSD_Y33_T 877.667 -0.106206
+MUSETT_T2_DSSD_Y34_T 890.089 -0.107711
+MUSETT_T2_DSSD_Y35_T 891.541 -0.10786
+MUSETT_T2_DSSD_Y36_T 894.923 -0.108297
+MUSETT_T2_DSSD_Y37_T 889.591 -0.107628
+MUSETT_T2_DSSD_Y38_T 905.752 -0.109574
+MUSETT_T2_DSSD_Y39_T 904.406 -0.109401
+MUSETT_T2_DSSD_Y40_T 907.053 -0.109756
+MUSETT_T2_DSSD_Y41_T 911.851 -0.110304
+MUSETT_T2_DSSD_Y42_T 907.651 -0.10979
+MUSETT_T2_DSSD_Y43_T 911.108 -0.110231
+MUSETT_T2_DSSD_Y44_T 913.761 -0.110532
+MUSETT_T2_DSSD_Y45_T 916.948 -0.110907
+MUSETT_T2_DSSD_Y46_T 920.785 -0.111371
+MUSETT_T2_DSSD_Y47_T 915.98 -0.110791
+MUSETT_T2_DSSD_Y48_T 894.218 -0.108016
+MUSETT_T2_DSSD_Y49_T 903.46 -0.109155
+MUSETT_T2_DSSD_Y50_T 900.687 -0.108834
+MUSETT_T2_DSSD_Y51_T 914.194 -0.110471
+MUSETT_T2_DSSD_Y52_T 906.942 -0.109622
+MUSETT_T2_DSSD_Y53_T 915.734 -0.110708
+MUSETT_T2_DSSD_Y54_T 919.347 -0.111116
+MUSETT_T2_DSSD_Y55_T 914.796 -0.11061
+MUSETT_T2_DSSD_Y56_T 927.679 -0.11216
+MUSETT_T2_DSSD_Y57_T 918.908 -0.111079
+MUSETT_T2_DSSD_Y58_T 921.274 -0.111393
+MUSETT_T2_DSSD_Y59_T 925.153 -0.11168
+MUSETT_T2_DSSD_Y60_T 941.38 -0.11386
+MUSETT_T2_DSSD_Y61_T 926.865 -0.112068
+MUSETT_T2_DSSD_Y62_T 922.781 -0.111623
+MUSETT_T2_DSSD_Y63_T 930.67 -0.112593
+MUSETT_T2_DSSD_Y64_T 925.368 -0.111864
+MUSETT_T2_DSSD_Y65_T 944.623 -0.114242
+MUSETT_T2_DSSD_Y66_T 948.999 -0.114763
+MUSETT_T2_DSSD_Y67_T 946.624 -0.114477
+MUSETT_T2_DSSD_Y68_T 973.069 -0.117701
+MUSETT_T2_DSSD_Y69_T 961.117 -0.116242
+MUSETT_T2_DSSD_Y70_T 968.585 -0.117144
+MUSETT_T2_DSSD_Y71_T 965.491 -0.116783
+MUSETT_T2_DSSD_Y72_T 956.995 -0.115747
+MUSETT_T2_DSSD_Y73_T 959.056 -0.115989
+MUSETT_T2_DSSD_Y74_T 965.378 -0.116762
+MUSETT_T2_DSSD_Y75_T 978.201 -0.118324
+MUSETT_T2_DSSD_Y76_T 974.601 -0.117892
+MUSETT_T2_DSSD_Y77_T 977.184 -0.118194
+MUSETT_T2_DSSD_Y78_T 967.932 -0.117092
+MUSETT_T2_DSSD_Y79_T 969.982 -0.117343
+MUSETT_T2_DSSD_Y80_T 945.503 -0.114246
+MUSETT_T2_DSSD_Y81_T 940.008 -0.113582
+MUSETT_T2_DSSD_Y82_T 952.084 -0.115097
+MUSETT_T2_DSSD_Y83_T 947.747 -0.114574
+MUSETT_T2_DSSD_Y84_T 956.608 -0.115653
+MUSETT_T2_DSSD_Y85_T 966.982 -0.11692
+MUSETT_T2_DSSD_Y86_T 965.2 -0.116695
+MUSETT_T2_DSSD_Y87_T 970.896 -0.117388
+MUSETT_T2_DSSD_Y88_T 973.644 -0.117739
+MUSETT_T2_DSSD_Y89_T 975.622 -0.11797
+MUSETT_T2_DSSD_Y90_T 980.078 -0.118525
+MUSETT_T2_DSSD_Y91_T 970.722 -0.117371
+MUSETT_T2_DSSD_Y92_T 978.458 -0.118331
+MUSETT_T2_DSSD_Y93_T 978.121 -0.118283
+MUSETT_T2_DSSD_Y94_T 985.632 -0.119174
+MUSETT_T2_DSSD_Y95_T 990.218 -0.119806
+MUSETT_T2_DSSD_Y96_T 898.57 -0.108639
+MUSETT_T2_DSSD_Y97_T 894.551 -0.108189
+MUSETT_T2_DSSD_Y98_T 905.095 -0.109474
+MUSETT_T2_DSSD_Y99_T 903.758 -0.109308
+MUSETT_T2_DSSD_Y100_T 917.519 -0.110997
+MUSETT_T2_DSSD_Y101_T 925.257 -0.111938
+MUSETT_T2_DSSD_Y102_T 915.614 -0.110746
+MUSETT_T2_DSSD_Y103_T 931.547 -0.112691
+MUSETT_T2_DSSD_Y104_T 926.069 -0.112025
+MUSETT_T2_DSSD_Y105_T 921.881 -0.111507
+MUSETT_T2_DSSD_Y106_T 923.086 -0.111663
+MUSETT_T2_DSSD_Y107_T 922.824 -0.111623
+MUSETT_T2_DSSD_Y108_T 926.335 -0.112066
+MUSETT_T2_DSSD_Y109_T 927.082 -0.11214
+MUSETT_T2_DSSD_Y110_T 923.411 -0.111703
+MUSETT_T2_DSSD_Y111_T 913.854 -0.110525
+MUSETT_T2_DSSD_Y112_T 853.851 -0.102981
+MUSETT_T2_DSSD_Y113_T 869.801 -0.104976
+MUSETT_T2_DSSD_Y114_T 877.724 -0.105936
+MUSETT_T2_DSSD_Y115_T 876.167 -0.10575
+MUSETT_T2_DSSD_Y116_T 884.266 -0.106741
+MUSETT_T2_DSSD_Y117_T 880.545 -0.10628
+MUSETT_T2_DSSD_Y118_T 893.039 -0.107805
+MUSETT_T2_DSSD_Y119_T 894.497 -0.107966
+MUSETT_T2_DSSD_Y120_T 884.424 -0.106759
+MUSETT_T2_DSSD_Y121_T 897.829 -0.108381
+MUSETT_T2_DSSD_Y122_T 896.269 -0.108195
+MUSETT_T2_DSSD_Y123_T 450.0 -0.108195
+MUSETT_T2_DSSD_Y124_T 898.903 -0.108519
+MUSETT_T2_DSSD_Y125_T 899.839 -0.10863
+MUSETT_T2_DSSD_Y126_T 900.97 -0.108768
+MUSETT_T2_DSSD_Y127_T 897.094 -0.108297
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..36cee699c7a580265f9b036820552f9932026657
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E -62.298199999999994 0.007604720000000001
+MUSETT_T3_DSSD_X1_E -61.861599999999996 0.00755141
+MUSETT_T3_DSSD_X2_E -62.1569 0.00758753
+MUSETT_T3_DSSD_X3_E -62.2596 0.00760006
+MUSETT_T3_DSSD_X4_E -61.881699999999995 0.0075539100000000005
+MUSETT_T3_DSSD_X5_E -61.8174 0.0075460399999999995
+MUSETT_T3_DSSD_X6_E -62.0389 0.007573089999999999
+MUSETT_T3_DSSD_X7_E -61.5586 0.00751446
+MUSETT_T3_DSSD_X8_E -61.705 0.00753228
+MUSETT_T3_DSSD_X9_E -61.812 0.007545359999999999
+MUSETT_T3_DSSD_X10_E -61.801300000000005 0.007544019999999999
+MUSETT_T3_DSSD_X11_E -62.828 0.00766936
+MUSETT_T3_DSSD_X12_E -61.5993 0.00751937
+MUSETT_T3_DSSD_X13_E -61.7577 0.00753873
+MUSETT_T3_DSSD_X14_E -61.494699999999995 0.0075066199999999994
+MUSETT_T3_DSSD_X15_E -62.5182 0.00763157
+MUSETT_T3_DSSD_X16_E -63.590900000000005 0.00776244
+MUSETT_T3_DSSD_X17_E -63.0171 0.007692490000000001
+MUSETT_T3_DSSD_X18_E -62.878699999999995 0.00767552
+MUSETT_T3_DSSD_X19_E -62.791 0.00766488
+MUSETT_T3_DSSD_X20_E -62.5592 0.00763654
+MUSETT_T3_DSSD_X21_E -63.1133 0.0077042099999999995
+MUSETT_T3_DSSD_X22_E -63.6998 0.00777586
+MUSETT_T3_DSSD_X23_E -63.781099999999995 0.0077857
+MUSETT_T3_DSSD_X24_E -62.7205 0.007656240000000001
+MUSETT_T3_DSSD_X25_E -63.4567 0.0077461399999999994
+MUSETT_T3_DSSD_X26_E -63.4691 0.007747690000000001
+MUSETT_T3_DSSD_X27_E -63.2955 0.00772649
+MUSETT_T3_DSSD_X28_E -63.5076 0.00775235
+MUSETT_T3_DSSD_X29_E -63.5629 0.0077591
+MUSETT_T3_DSSD_X30_E -64.4644 0.00786912
+MUSETT_T3_DSSD_X31_E -63.6907 0.00777475
+MUSETT_T3_DSSD_X32_E -59.3003 0.0072388899999999996
+MUSETT_T3_DSSD_X33_E -59.122800000000005 0.0072171200000000005
+MUSETT_T3_DSSD_X34_E -58.098 0.00709209
+MUSETT_T3_DSSD_X35_E -58.3114 0.00711809
+MUSETT_T3_DSSD_X36_E -58.7781 0.007175010000000001
+MUSETT_T3_DSSD_X37_E -58.990300000000005 0.00720099
+MUSETT_T3_DSSD_X38_E -59.2329 0.0072305799999999995
+MUSETT_T3_DSSD_X39_E -58.6159 0.00715528
+MUSETT_T3_DSSD_X40_E -59.221599999999995 0.00722918
+MUSETT_T3_DSSD_X41_E -58.8815 0.007187649999999999
+MUSETT_T3_DSSD_X42_E -58.9773 0.00719934
+MUSETT_T3_DSSD_X43_E -10.0 0.0
+MUSETT_T3_DSSD_X44_E -58.9833 0.00720009
+MUSETT_T3_DSSD_X45_E -59.359300000000005 0.00724594
+MUSETT_T3_DSSD_X46_E -58.7775 0.0071749299999999995
+MUSETT_T3_DSSD_X47_E -59.126 0.00721749
+MUSETT_T3_DSSD_X48_E -57.3041 0.00699513
+MUSETT_T3_DSSD_X49_E -57.151199999999996 0.00697642
+MUSETT_T3_DSSD_X50_E -56.849199999999996 0.00693961
+MUSETT_T3_DSSD_X51_E -57.2057 0.00698311
+MUSETT_T3_DSSD_X52_E -56.8352 0.00693786
+MUSETT_T3_DSSD_X53_E -57.3401 0.00699951
+MUSETT_T3_DSSD_X54_E -56.5908 0.0069080899999999995
+MUSETT_T3_DSSD_X55_E -57.2623 0.00699005
+MUSETT_T3_DSSD_X56_E -57.574400000000004 0.0070281200000000005
+MUSETT_T3_DSSD_X57_E -56.496900000000004 0.00689662
+MUSETT_T3_DSSD_X58_E -57.4715 0.00701554
+MUSETT_T3_DSSD_X59_E -57.0619 0.00696556
+MUSETT_T3_DSSD_X60_E -56.3165 0.006874590000000001
+MUSETT_T3_DSSD_X61_E -56.8499 0.0069397
+MUSETT_T3_DSSD_X62_E -56.7607 0.00692884
+MUSETT_T3_DSSD_X63_E -56.499300000000005 0.006896950000000001
+MUSETT_T3_DSSD_X64_E -64.1702 0.00783318
+MUSETT_T3_DSSD_X65_E -63.8415 0.00779309
+MUSETT_T3_DSSD_X66_E -63.555699999999995 0.00775819
+MUSETT_T3_DSSD_X67_E -63.7677 0.00778403
+MUSETT_T3_DSSD_X68_E -63.6042 0.00776408
+MUSETT_T3_DSSD_X69_E -63.26 0.00772205
+MUSETT_T3_DSSD_X70_E -64.3055 0.00784974
+MUSETT_T3_DSSD_X71_E -62.501599999999996 0.0076295
+MUSETT_T3_DSSD_X72_E -62.6625 0.0076491400000000005
+MUSETT_T3_DSSD_X73_E -63.0105 0.00769167
+MUSETT_T3_DSSD_X74_E -63.1484 0.0077084200000000005
+MUSETT_T3_DSSD_X75_E -63.3793 0.00773664
+MUSETT_T3_DSSD_X76_E -64.06869999999999 0.007820820000000001
+MUSETT_T3_DSSD_X77_E -62.4702 0.00762573
+MUSETT_T3_DSSD_X78_E -62.5574 0.00763631
+MUSETT_T3_DSSD_X79_E -63.009699999999995 0.00769157
+MUSETT_T3_DSSD_X80_E -62.457800000000006 0.00762418
+MUSETT_T3_DSSD_X81_E -62.7791 0.00766339
+MUSETT_T3_DSSD_X82_E -62.621 0.007644110000000001
+MUSETT_T3_DSSD_X83_E -62.5784 0.0076389399999999994
+MUSETT_T3_DSSD_X84_E -62.005900000000004 0.00756897
+MUSETT_T3_DSSD_X85_E -62.4575 0.00762414
+MUSETT_T3_DSSD_X86_E -62.4031 0.00761752
+MUSETT_T3_DSSD_X87_E -62.1713 0.00758918
+MUSETT_T3_DSSD_X88_E -62.335300000000004 0.0076092
+MUSETT_T3_DSSD_X89_E -62.7474 0.0076596
+MUSETT_T3_DSSD_X90_E -62.3396 0.00760973
+MUSETT_T3_DSSD_X91_E -62.021300000000004 0.00757089
+MUSETT_T3_DSSD_X92_E -62.8345 0.00767017
+MUSETT_T3_DSSD_X93_E -62.5608 0.00763673
+MUSETT_T3_DSSD_X94_E -62.1409 0.00758552
+MUSETT_T3_DSSD_X95_E -62.3587 0.00761211
+MUSETT_T3_DSSD_X96_E -56.1256 0.00685121
+MUSETT_T3_DSSD_X97_E -55.9505 0.0068298199999999995
+MUSETT_T3_DSSD_X98_E -55.1796 0.00673572
+MUSETT_T3_DSSD_X99_E -55.7828 0.0068094
+MUSETT_T3_DSSD_X100_E -55.9559 0.0068305
+MUSETT_T3_DSSD_X101_E -55.934400000000004 0.00682783
+MUSETT_T3_DSSD_X102_E -55.9745 0.0068327200000000005
+MUSETT_T3_DSSD_X103_E -55.2549 0.00674491
+MUSETT_T3_DSSD_X104_E -55.4875 0.00677335
+MUSETT_T3_DSSD_X105_E -55.9893 0.00683453
+MUSETT_T3_DSSD_X106_E -55.8236 0.00681435
+MUSETT_T3_DSSD_X107_E -55.6815 0.0067969499999999995
+MUSETT_T3_DSSD_X108_E -56.7434 0.00692662
+MUSETT_T3_DSSD_X109_E -56.3005 0.00687254
+MUSETT_T3_DSSD_X110_E -55.822300000000006 0.00681419
+MUSETT_T3_DSSD_X111_E -55.6951 0.006798670000000001
+MUSETT_T3_DSSD_X112_E -57.5622 0.00702657
+MUSETT_T3_DSSD_X113_E -57.0135 0.0069596
+MUSETT_T3_DSSD_X114_E -57.5211 0.00702156
+MUSETT_T3_DSSD_X115_E -56.981 0.00695566
+MUSETT_T3_DSSD_X116_E -57.9725 0.00707666
+MUSETT_T3_DSSD_X117_E -57.2339 0.006986480000000001
+MUSETT_T3_DSSD_X118_E -57.4342 0.00701098
+MUSETT_T3_DSSD_X119_E -56.2134 0.0068619300000000005
+MUSETT_T3_DSSD_X120_E -56.7474 0.00692711
+MUSETT_T3_DSSD_X121_E -57.8891 0.0070665
+MUSETT_T3_DSSD_X122_E -57.5049 0.007019549999999999
+MUSETT_T3_DSSD_X123_E -57.096599999999995 0.00696973
+MUSETT_T3_DSSD_X124_E -57.651 0.0070374
+MUSETT_T3_DSSD_X125_E -56.7164 0.00692338
+MUSETT_T3_DSSD_X126_E -57.789699999999996 0.00705434
+MUSETT_T3_DSSD_X127_E -56.522 0.00689959
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e07fba05cb0d81bc362f99fb65163dd1f9bcd9aa
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_E 60.097199999999994 -0.00733611
+MUSETT_T3_DSSD_Y1_E 58.987 -0.00720065
+MUSETT_T3_DSSD_Y2_E 60.08 -0.00733404
+MUSETT_T3_DSSD_Y3_E 59.9365 -0.007316499999999999
+MUSETT_T3_DSSD_Y4_E 59.7695 -0.00729617
+MUSETT_T3_DSSD_Y5_E 59.8746 -0.00730898
+MUSETT_T3_DSSD_Y6_E 59.7753 -0.00729686
+MUSETT_T3_DSSD_Y7_E 60.1862 -0.007347
+MUSETT_T3_DSSD_Y8_E 60.4958 -0.00738477
+MUSETT_T3_DSSD_Y9_E 60.4393 -0.00737789
+MUSETT_T3_DSSD_Y10_E 60.1456 -0.00734201
+MUSETT_T3_DSSD_Y11_E 59.7911 -0.00729875
+MUSETT_T3_DSSD_Y12_E 59.6773 -0.0072848800000000005
+MUSETT_T3_DSSD_Y13_E 59.5835 -0.00727344
+MUSETT_T3_DSSD_Y14_E 60.5331 -0.00738936
+MUSETT_T3_DSSD_Y15_E 59.7249 -0.00729071
+MUSETT_T3_DSSD_Y16_E 62.9214 -0.00768089
+MUSETT_T3_DSSD_Y17_E 63.205400000000004 -0.00771552
+MUSETT_T3_DSSD_Y18_E 62.2674 -0.00760105
+MUSETT_T3_DSSD_Y19_E 62.6967 -0.007653470000000001
+MUSETT_T3_DSSD_Y20_E 63.193 -0.00771405
+MUSETT_T3_DSSD_Y21_E 63.5336 -0.00775561
+MUSETT_T3_DSSD_Y22_E 62.9808 -0.00768812
+MUSETT_T3_DSSD_Y23_E 62.964 -0.007686119999999999
+MUSETT_T3_DSSD_Y24_E 63.469300000000004 -0.00774779
+MUSETT_T3_DSSD_Y25_E 63.461 -0.00774678
+MUSETT_T3_DSSD_Y26_E 62.6 -0.00764164
+MUSETT_T3_DSSD_Y27_E 63.414 -0.0077410199999999995
+MUSETT_T3_DSSD_Y28_E 62.4672 -0.00762548
+MUSETT_T3_DSSD_Y29_E 62.971599999999995 -0.00768703
+MUSETT_T3_DSSD_Y30_E 63.0667 -0.0076986699999999995
+MUSETT_T3_DSSD_Y31_E 62.9483 -0.00768424
+MUSETT_T3_DSSD_Y32_E 56.0911 -0.00684714
+MUSETT_T3_DSSD_Y33_E 56.1939 -0.00685965
+MUSETT_T3_DSSD_Y34_E 55.8251 -0.0068147
+MUSETT_T3_DSSD_Y35_E 55.6744 -0.00679624
+MUSETT_T3_DSSD_Y36_E 55.7435 -0.00680473
+MUSETT_T3_DSSD_Y37_E 56.2304 -0.00686412
+MUSETT_T3_DSSD_Y38_E 55.9267 -0.0068270499999999994
+MUSETT_T3_DSSD_Y39_E 55.575199999999995 -0.00678415
+MUSETT_T3_DSSD_Y40_E 55.4219 -0.00676539
+MUSETT_T3_DSSD_Y41_E 56.1854 -0.00685863
+MUSETT_T3_DSSD_Y42_E 56.0069 -0.006836859999999999
+MUSETT_T3_DSSD_Y43_E 55.331199999999995 -0.00675434
+MUSETT_T3_DSSD_Y44_E 55.7624 -0.00680697
+MUSETT_T3_DSSD_Y45_E 55.6164 -0.0067892099999999995
+MUSETT_T3_DSSD_Y46_E 55.888 -0.006822320000000001
+MUSETT_T3_DSSD_Y47_E 55.807900000000004 -0.00681252
+MUSETT_T3_DSSD_Y48_E 56.633199999999995 -0.0069133
+MUSETT_T3_DSSD_Y49_E 56.902300000000004 -0.00694613
+MUSETT_T3_DSSD_Y50_E 57.1285 -0.00697375
+MUSETT_T3_DSSD_Y51_E 56.942800000000005 -0.00695109
+MUSETT_T3_DSSD_Y52_E 56.488800000000005 -0.00689569
+MUSETT_T3_DSSD_Y53_E 56.9381 -0.00695052
+MUSETT_T3_DSSD_Y54_E 56.6308 -0.00691301
+MUSETT_T3_DSSD_Y55_E 57.0191 -0.00696044
+MUSETT_T3_DSSD_Y56_E 57.0456 -0.0069635899999999995
+MUSETT_T3_DSSD_Y57_E 56.6141 -0.0069110199999999995
+MUSETT_T3_DSSD_Y58_E 57.4998 -0.00701906
+MUSETT_T3_DSSD_Y59_E 57.046800000000005 -0.00696375
+MUSETT_T3_DSSD_Y60_E 57.594 -0.00703054
+MUSETT_T3_DSSD_Y61_E 57.0305 -0.00696179
+MUSETT_T3_DSSD_Y62_E 56.7624 -0.00692908
+MUSETT_T3_DSSD_Y63_E 57.433699999999995 -0.0070110400000000005
+MUSETT_T3_DSSD_Y64_E 59.389300000000006 -0.007249729999999999
+MUSETT_T3_DSSD_Y65_E 59.9401 -0.00731694
+MUSETT_T3_DSSD_Y66_E 59.5251 -0.00726633
+MUSETT_T3_DSSD_Y67_E 59.3495 -0.00724484
+MUSETT_T3_DSSD_Y68_E 59.4437 -0.00725635
+MUSETT_T3_DSSD_Y69_E 58.7651 -0.00717351
+MUSETT_T3_DSSD_Y70_E 59.2969 -0.00723842
+MUSETT_T3_DSSD_Y71_E 59.9651 -0.00732006
+MUSETT_T3_DSSD_Y72_E 60.172599999999996 -0.00734537
+MUSETT_T3_DSSD_Y73_E 59.4516 -0.0072572999999999995
+MUSETT_T3_DSSD_Y74_E 59.5309 -0.00726702
+MUSETT_T3_DSSD_Y75_E 59.5826 -0.00727333
+MUSETT_T3_DSSD_Y76_E 59.590900000000005 -0.00727432
+MUSETT_T3_DSSD_Y77_E 59.3965 -0.00725058
+MUSETT_T3_DSSD_Y78_E 59.0289 -0.00720579
+MUSETT_T3_DSSD_Y79_E 59.962300000000006 -0.00731973
+MUSETT_T3_DSSD_Y80_E 62.810900000000004 -0.0076673900000000005
+MUSETT_T3_DSSD_Y81_E 62.7117 -0.00765528
+MUSETT_T3_DSSD_Y82_E 62.530699999999996 -0.00763323
+MUSETT_T3_DSSD_Y83_E 62.1472 -0.00758643
+MUSETT_T3_DSSD_Y84_E 62.024800000000006 -0.00757151
+MUSETT_T3_DSSD_Y85_E 62.6965 -0.00765345
+MUSETT_T3_DSSD_Y86_E 62.2624 -0.00760046
+MUSETT_T3_DSSD_Y87_E 62.9551 -0.00768508
+MUSETT_T3_DSSD_Y88_E 62.655 -0.00764835
+MUSETT_T3_DSSD_Y89_E 62.5921 -0.00764069
+MUSETT_T3_DSSD_Y90_E 61.832699999999996 -0.00754801
+MUSETT_T3_DSSD_Y91_E 61.9879 -0.00756697
+MUSETT_T3_DSSD_Y92_E 61.948 -0.00756205
+MUSETT_T3_DSSD_Y93_E 62.025800000000004 -0.00757163
+MUSETT_T3_DSSD_Y94_E 61.996 -0.0075679499999999995
+MUSETT_T3_DSSD_Y95_E 61.777699999999996 -0.0075413
+MUSETT_T3_DSSD_Y96_E 56.732699999999994 -0.00692539
+MUSETT_T3_DSSD_Y97_E 56.8633 -0.00694135
+MUSETT_T3_DSSD_Y98_E 56.282599999999995 -0.006870459999999999
+MUSETT_T3_DSSD_Y99_E 55.9378 -0.006828369999999999
+MUSETT_T3_DSSD_Y100_E 56.2782 -0.0068699500000000005
+MUSETT_T3_DSSD_Y101_E 56.282 -0.0068704000000000005
+MUSETT_T3_DSSD_Y102_E 55.9311 -0.006827580000000001
+MUSETT_T3_DSSD_Y103_E 55.9754 -0.00683298
+MUSETT_T3_DSSD_Y104_E 55.8431 -0.00681683
+MUSETT_T3_DSSD_Y105_E 56.2934 -0.00687176
+MUSETT_T3_DSSD_Y106_E 56.467699999999994 -0.0068930400000000005
+MUSETT_T3_DSSD_Y107_E 56.254599999999996 -0.006867
+MUSETT_T3_DSSD_Y108_E 55.7557 -0.0068061499999999995
+MUSETT_T3_DSSD_Y109_E 55.8956 -0.0068232100000000006
+MUSETT_T3_DSSD_Y110_E 56.6694 -0.0069177200000000005
+MUSETT_T3_DSSD_Y111_E 56.671699999999994 -0.00691799
+MUSETT_T3_DSSD_Y112_E 57.139 -0.00697499
+MUSETT_T3_DSSD_Y113_E 57.000099999999996 -0.00695808
+MUSETT_T3_DSSD_Y114_E 57.098699999999994 -0.006970189999999999
+MUSETT_T3_DSSD_Y115_E 56.9762 -0.00695517
+MUSETT_T3_DSSD_Y116_E 57.6053 -0.00703199
+MUSETT_T3_DSSD_Y117_E 57.2828 -0.00699264
+MUSETT_T3_DSSD_Y118_E 56.8406 -0.00693862
+MUSETT_T3_DSSD_Y119_E 57.6496 -0.00703728
+MUSETT_T3_DSSD_Y120_E 57.438300000000005 -0.00701157
+MUSETT_T3_DSSD_Y121_E 57.0848 -0.00696844
+MUSETT_T3_DSSD_Y122_E 57.433800000000005 -0.007011020000000001
+MUSETT_T3_DSSD_Y123_E 57.070800000000006 -0.00696674
+MUSETT_T3_DSSD_Y124_E 57.543699999999994 -0.00702442
+MUSETT_T3_DSSD_Y125_E 56.819900000000004 -0.00693609
+MUSETT_T3_DSSD_Y126_E 57.2394 -0.00698722
+MUSETT_T3_DSSD_Y127_E 57.5489 -0.00702512
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d1c8debd92e4ef0e3781515cf1687e2bd5688c30
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_T 937.544 -0.113591
+MUSETT_T3_DSSD_X1_T 950.827 -0.115254
+MUSETT_T3_DSSD_X2_T 955.415 -0.115822
+MUSETT_T3_DSSD_X3_T 957.318 -0.116042
+MUSETT_T3_DSSD_X4_T 949.438 -0.115096
+MUSETT_T3_DSSD_X5_T 963.979 -0.11686
+MUSETT_T3_DSSD_X6_T 968.338 -0.117385
+MUSETT_T3_DSSD_X7_T 973.664 -0.118019
+MUSETT_T3_DSSD_X8_T 971.735 -0.117779
+MUSETT_T3_DSSD_X9_T 969.438 -0.117496
+MUSETT_T3_DSSD_X10_T 971.944 -0.117795
+MUSETT_T3_DSSD_X11_T 984.038 -0.119273
+MUSETT_T3_DSSD_X12_T 973.915 -0.118031
+MUSETT_T3_DSSD_X13_T 980.183 -0.118805
+MUSETT_T3_DSSD_X14_T 977.813 -0.118524
+MUSETT_T3_DSSD_X15_T 1361.597 -0.119127
+MUSETT_T3_DSSD_X16_T 966.423 -0.117029
+MUSETT_T3_DSSD_X17_T 962.587 -0.116582
+MUSETT_T3_DSSD_X18_T 981.068 -0.11886
+MUSETT_T3_DSSD_X19_T 977.201 -0.118386
+MUSETT_T3_DSSD_X20_T 984.141 -0.119229
+MUSETT_T3_DSSD_X21_T 991.42 -0.120114
+MUSETT_T3_DSSD_X22_T 983.826 -0.119177
+MUSETT_T3_DSSD_X23_T 988.252 -0.119693
+MUSETT_T3_DSSD_X24_T 985.873 -0.119405
+MUSETT_T3_DSSD_X25_T 986.801 -0.119523
+MUSETT_T3_DSSD_X26_T 999.981 -0.12115
+MUSETT_T3_DSSD_X27_T 995.921 -0.120628
+MUSETT_T3_DSSD_X28_T 1006.034 -0.121885
+MUSETT_T3_DSSD_X29_T 999.176 -0.121035
+MUSETT_T3_DSSD_X30_T 1000.906 -0.121233
+MUSETT_T3_DSSD_X31_T 995.607 -0.120654
+MUSETT_T3_DSSD_X32_T 897.267 -0.108693
+MUSETT_T3_DSSD_X33_T 903.501 -0.109485
+MUSETT_T3_DSSD_X34_T 911.065 -0.110421
+MUSETT_T3_DSSD_X35_T 903.943 -0.109588
+MUSETT_T3_DSSD_X36_T 910.097 -0.110301
+MUSETT_T3_DSSD_X37_T 918.51 -0.111327
+MUSETT_T3_DSSD_X38_T 920.085 -0.111495
+MUSETT_T3_DSSD_X39_T 928.491 -0.112521
+MUSETT_T3_DSSD_X40_T 936.133 -0.11347
+MUSETT_T3_DSSD_X41_T 929.814 -0.112717
+MUSETT_T3_DSSD_X42_T 927.026 -0.112335
+MUSETT_T3_DSSD_X43_T 450.0 -0.112964
+MUSETT_T3_DSSD_X44_T 934.299 -0.113245
+MUSETT_T3_DSSD_X45_T 928.812 -0.11258
+MUSETT_T3_DSSD_X46_T 936.207 -0.113476
+MUSETT_T3_DSSD_X47_T 935.925 -0.113256
+MUSETT_T3_DSSD_X48_T 865.26 -0.104661
+MUSETT_T3_DSSD_X49_T 865.057 -0.104634
+MUSETT_T3_DSSD_X50_T 877.397 -0.106155
+MUSETT_T3_DSSD_X51_T 887.378 -0.107364
+MUSETT_T3_DSSD_X52_T 887.486 -0.107368
+MUSETT_T3_DSSD_X53_T 883.578 -0.106861
+MUSETT_T3_DSSD_X54_T 895.873 -0.108382
+MUSETT_T3_DSSD_X55_T 898.793 -0.108733
+MUSETT_T3_DSSD_X56_T 896.274 -0.10844
+MUSETT_T3_DSSD_X57_T 901.884 -0.10908
+MUSETT_T3_DSSD_X58_T 897.291 -0.108538
+MUSETT_T3_DSSD_X59_T 896.985 -0.10849
+MUSETT_T3_DSSD_X60_T 903.664 -0.109312
+MUSETT_T3_DSSD_X61_T 904.71 -0.109445
+MUSETT_T3_DSSD_X62_T 891.201 -0.107803
+MUSETT_T3_DSSD_X63_T 922.72 -0.108862
+MUSETT_T3_DSSD_X64_T 983.287 -0.119126
+MUSETT_T3_DSSD_X65_T 988.478 -0.119789
+MUSETT_T3_DSSD_X66_T 988.801 -0.119851
+MUSETT_T3_DSSD_X67_T 1004.624 -0.121753
+MUSETT_T3_DSSD_X68_T 1005.136 -0.121824
+MUSETT_T3_DSSD_X69_T 1002.009 -0.121446
+MUSETT_T3_DSSD_X70_T 1005.682 -0.121893
+MUSETT_T3_DSSD_X71_T 1009.441 -0.122347
+MUSETT_T3_DSSD_X72_T 1005.561 -0.121883
+MUSETT_T3_DSSD_X73_T 1012.386 -0.122684
+MUSETT_T3_DSSD_X74_T 1020.795 -0.123722
+MUSETT_T3_DSSD_X75_T 1030.928 -0.124938
+MUSETT_T3_DSSD_X76_T 1012.528 -0.122709
+MUSETT_T3_DSSD_X77_T 1012.161 -0.12265
+MUSETT_T3_DSSD_X78_T 1023.605 -0.124061
+MUSETT_T3_DSSD_X79_T 1392.417 -0.123313
+MUSETT_T3_DSSD_X80_T 940.696 -0.11381
+MUSETT_T3_DSSD_X81_T 946.536 -0.114558
+MUSETT_T3_DSSD_X82_T 950.101 -0.114986
+MUSETT_T3_DSSD_X83_T 948.44 -0.114804
+MUSETT_T3_DSSD_X84_T 963.396 -0.116619
+MUSETT_T3_DSSD_X85_T 965.983 -0.11693
+MUSETT_T3_DSSD_X86_T 960.815 -0.116299
+MUSETT_T3_DSSD_X87_T 965.812 -0.116863
+MUSETT_T3_DSSD_X88_T 976.455 -0.118161
+MUSETT_T3_DSSD_X89_T 972.683 -0.117687
+MUSETT_T3_DSSD_X90_T 977.648 -0.118304
+MUSETT_T3_DSSD_X91_T 985.535 -0.119256
+MUSETT_T3_DSSD_X92_T 985.189 -0.119241
+MUSETT_T3_DSSD_X93_T 984.904 -0.119186
+MUSETT_T3_DSSD_X94_T 982.3 -0.118879
+MUSETT_T3_DSSD_X95_T 977.482 -0.118278
+MUSETT_T3_DSSD_X96_T 860.29 -0.104124
+MUSETT_T3_DSSD_X97_T 865.042 -0.104728
+MUSETT_T3_DSSD_X98_T 865.096 -0.104753
+MUSETT_T3_DSSD_X99_T 871.257 -0.105492
+MUSETT_T3_DSSD_X100_T 881.122 -0.106693
+MUSETT_T3_DSSD_X101_T 876.465 -0.10614
+MUSETT_T3_DSSD_X102_T 881.211 -0.106708
+MUSETT_T3_DSSD_X103_T 880.166 -0.106567
+MUSETT_T3_DSSD_X104_T 889.358 -0.107671
+MUSETT_T3_DSSD_X105_T 893.917 -0.108216
+MUSETT_T3_DSSD_X106_T 885.756 -0.107225
+MUSETT_T3_DSSD_X107_T 896.457 -0.108561
+MUSETT_T3_DSSD_X108_T 896.971 -0.108609
+MUSETT_T3_DSSD_X109_T 893.394 -0.108191
+MUSETT_T3_DSSD_X110_T 902.834 -0.109337
+MUSETT_T3_DSSD_X111_T 900.551 -0.108709
+MUSETT_T3_DSSD_X112_T 857.647 -0.103629
+MUSETT_T3_DSSD_X113_T 867.192 -0.10481
+MUSETT_T3_DSSD_X114_T 867.635 -0.1049
+MUSETT_T3_DSSD_X115_T 874.016 -0.105647
+MUSETT_T3_DSSD_X116_T 450.0 -0.126949
+MUSETT_T3_DSSD_X117_T 878.204 -0.106145
+MUSETT_T3_DSSD_X118_T 885.379 -0.107055
+MUSETT_T3_DSSD_X119_T 883.36 -0.10675
+MUSETT_T3_DSSD_X120_T 886.263 -0.107137
+MUSETT_T3_DSSD_X121_T 890.004 -0.107599
+MUSETT_T3_DSSD_X122_T 886.105 -0.107093
+MUSETT_T3_DSSD_X123_T 895.691 -0.108252
+MUSETT_T3_DSSD_X124_T 889.843 -0.107522
+MUSETT_T3_DSSD_X125_T 896.157 -0.108336
+MUSETT_T3_DSSD_X126_T 883.628 -0.106793
+MUSETT_T3_DSSD_X127_T 894.234 -0.107896
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0019a7424992370dc0993147876bcc551b537ba3
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_T 917.946 -0.11121
+MUSETT_T3_DSSD_Y1_T 925.607 -0.112154
+MUSETT_T3_DSSD_Y2_T 934.525 -0.113241
+MUSETT_T3_DSSD_Y3_T 944.195 -0.114409
+MUSETT_T3_DSSD_Y4_T 941.165 -0.114032
+MUSETT_T3_DSSD_Y5_T 949.297 -0.114994
+MUSETT_T3_DSSD_Y6_T 953.74 -0.115552
+MUSETT_T3_DSSD_Y7_T 953.991 -0.115546
+MUSETT_T3_DSSD_Y8_T 961.72 -0.116506
+MUSETT_T3_DSSD_Y9_T 965.956 -0.117006
+MUSETT_T3_DSSD_Y10_T 968.137 -0.117251
+MUSETT_T3_DSSD_Y11_T 966.978 -0.117093
+MUSETT_T3_DSSD_Y12_T 976.42 -0.118272
+MUSETT_T3_DSSD_Y13_T 982.89 -0.119048
+MUSETT_T3_DSSD_Y14_T 975.1 -0.118075
+MUSETT_T3_DSSD_Y15_T 982.356 -0.118941
+MUSETT_T3_DSSD_Y16_T 968.384 -0.117174
+MUSETT_T3_DSSD_Y17_T 981.477 -0.118815
+MUSETT_T3_DSSD_Y18_T 982.408 -0.118931
+MUSETT_T3_DSSD_Y19_T 987.964 -0.119638
+MUSETT_T3_DSSD_Y20_T 993.613 -0.12034
+MUSETT_T3_DSSD_Y21_T 1003.439 -0.121551
+MUSETT_T3_DSSD_Y22_T 998.76 -0.120998
+MUSETT_T3_DSSD_Y23_T 993.205 -0.120321
+MUSETT_T3_DSSD_Y24_T 999.257 -0.121073
+MUSETT_T3_DSSD_Y25_T 1005.451 -0.121839
+MUSETT_T3_DSSD_Y26_T 1005.606 -0.121856
+MUSETT_T3_DSSD_Y27_T 1011.99 -0.122649
+MUSETT_T3_DSSD_Y28_T 1015.011 -0.12302
+MUSETT_T3_DSSD_Y29_T 1003.879 -0.121668
+MUSETT_T3_DSSD_Y30_T 1013.019 -0.122794
+MUSETT_T3_DSSD_Y31_T 1013.687 -0.122927
+MUSETT_T3_DSSD_Y32_T 869.813 -0.105446
+MUSETT_T3_DSSD_Y33_T 866.542 -0.105092
+MUSETT_T3_DSSD_Y34_T 871.705 -0.10573
+MUSETT_T3_DSSD_Y35_T 868.741 -0.105345
+MUSETT_T3_DSSD_Y36_T 880.227 -0.106744
+MUSETT_T3_DSSD_Y37_T 879.546 -0.106654
+MUSETT_T3_DSSD_Y38_T 885.08 -0.107294
+MUSETT_T3_DSSD_Y39_T 893.736 -0.108361
+MUSETT_T3_DSSD_Y40_T 890.782 -0.10799
+MUSETT_T3_DSSD_Y41_T 894.881 -0.10846
+MUSETT_T3_DSSD_Y42_T 904.234 -0.109593
+MUSETT_T3_DSSD_Y43_T 900.794 -0.109195
+MUSETT_T3_DSSD_Y44_T 895.989 -0.108568
+MUSETT_T3_DSSD_Y45_T 906.161 -0.109804
+MUSETT_T3_DSSD_Y46_T 909.978 -0.110263
+MUSETT_T3_DSSD_Y47_T 902.668 -0.109382
+MUSETT_T3_DSSD_Y48_T 876.095 -0.105997
+MUSETT_T3_DSSD_Y49_T 882.164 -0.106772
+MUSETT_T3_DSSD_Y50_T 893.829 -0.108217
+MUSETT_T3_DSSD_Y51_T 896.423 -0.108527
+MUSETT_T3_DSSD_Y52_T 890.601 -0.107825
+MUSETT_T3_DSSD_Y53_T 899.134 -0.108862
+MUSETT_T3_DSSD_Y54_T 903.962 -0.109456
+MUSETT_T3_DSSD_Y55_T 909.776 -0.110152
+MUSETT_T3_DSSD_Y56_T 914.077 -0.110718
+MUSETT_T3_DSSD_Y57_T 912.813 -0.11056
+MUSETT_T3_DSSD_Y58_T 921.655 -0.111636
+MUSETT_T3_DSSD_Y59_T 907.554 -0.109934
+MUSETT_T3_DSSD_Y60_T 921.006 -0.111581
+MUSETT_T3_DSSD_Y61_T 921.705 -0.111694
+MUSETT_T3_DSSD_Y62_T 916.94 -0.1111
+MUSETT_T3_DSSD_Y63_T 919.695 -0.11144
+MUSETT_T3_DSSD_Y64_T 902.544 -0.109216
+MUSETT_T3_DSSD_Y65_T 908.915 -0.110026
+MUSETT_T3_DSSD_Y66_T 909.56 -0.110106
+MUSETT_T3_DSSD_Y67_T 918.028 -0.11114
+MUSETT_T3_DSSD_Y68_T 929.408 -0.11252
+MUSETT_T3_DSSD_Y69_T 937.82 -0.113544
+MUSETT_T3_DSSD_Y70_T 930.573 -0.112672
+MUSETT_T3_DSSD_Y71_T 929.18 -0.112491
+MUSETT_T3_DSSD_Y72_T 945.251 -0.114462
+MUSETT_T3_DSSD_Y73_T 937.76 -0.11354
+MUSETT_T3_DSSD_Y74_T 953.926 -0.115517
+MUSETT_T3_DSSD_Y75_T 950.321 -0.115086
+MUSETT_T3_DSSD_Y76_T 962.882 -0.116618
+MUSETT_T3_DSSD_Y77_T 951.559 -0.115232
+MUSETT_T3_DSSD_Y78_T 944.24 -0.114343
+MUSETT_T3_DSSD_Y79_T 949.269 -0.114947
+MUSETT_T3_DSSD_Y80_T 969.213 -0.117288
+MUSETT_T3_DSSD_Y81_T 980.623 -0.118727
+MUSETT_T3_DSSD_Y82_T 986.747 -0.119474
+MUSETT_T3_DSSD_Y83_T 990.256 -0.119909
+MUSETT_T3_DSSD_Y84_T 992.055 -0.120116
+MUSETT_T3_DSSD_Y85_T 999.047 -0.120975
+MUSETT_T3_DSSD_Y86_T 995.992 -0.120606
+MUSETT_T3_DSSD_Y87_T 997.417 -0.12076
+MUSETT_T3_DSSD_Y88_T 1002.04 -0.121336
+MUSETT_T3_DSSD_Y89_T 1013.247 -0.122713
+MUSETT_T3_DSSD_Y90_T 1016.426 -0.1231
+MUSETT_T3_DSSD_Y91_T 1004.734 -0.121678
+MUSETT_T3_DSSD_Y92_T 1013.118 -0.122697
+MUSETT_T3_DSSD_Y93_T 1016.325 -0.123087
+MUSETT_T3_DSSD_Y94_T 1008.607 -0.122144
+MUSETT_T3_DSSD_Y95_T 1009.63 -0.122274
+MUSETT_T3_DSSD_Y96_T 872.56 -0.105573
+MUSETT_T3_DSSD_Y97_T 869.392 -0.105224
+MUSETT_T3_DSSD_Y98_T 874.15 -0.105791
+MUSETT_T3_DSSD_Y99_T 883.33 -0.106904
+MUSETT_T3_DSSD_Y100_T 890.403 -0.107789
+MUSETT_T3_DSSD_Y101_T 890.223 -0.107742
+MUSETT_T3_DSSD_Y102_T 901.174 -0.109085
+MUSETT_T3_DSSD_Y103_T 893.31 -0.108126
+MUSETT_T3_DSSD_Y104_T 900.562 -0.108999
+MUSETT_T3_DSSD_Y105_T 892.986 -0.108068
+MUSETT_T3_DSSD_Y106_T 892.398 -0.108006
+MUSETT_T3_DSSD_Y107_T 901.475 -0.109125
+MUSETT_T3_DSSD_Y108_T 904.207 -0.109439
+MUSETT_T3_DSSD_Y109_T 901.95 -0.109168
+MUSETT_T3_DSSD_Y110_T 897.548 -0.108625
+MUSETT_T3_DSSD_Y111_T 903.933 -0.109416
+MUSETT_T3_DSSD_Y112_T 889.942 -0.107554
+MUSETT_T3_DSSD_Y113_T 897.252 -0.108473
+MUSETT_T3_DSSD_Y114_T 900.207 -0.108848
+MUSETT_T3_DSSD_Y115_T 895.641 -0.108292
+MUSETT_T3_DSSD_Y116_T 903.842 -0.109288
+MUSETT_T3_DSSD_Y117_T 909.27 -0.109943
+MUSETT_T3_DSSD_Y118_T 907.84 -0.109765
+MUSETT_T3_DSSD_Y119_T 907.053 -0.109672
+MUSETT_T3_DSSD_Y120_T 914.069 -0.110512
+MUSETT_T3_DSSD_Y121_T 922.641 -0.111588
+MUSETT_T3_DSSD_Y122_T 925.361 -0.111915
+MUSETT_T3_DSSD_Y123_T 907.828 -0.109772
+MUSETT_T3_DSSD_Y124_T 912.093 -0.11029
+MUSETT_T3_DSSD_Y125_T 917.412 -0.110947
+MUSETT_T3_DSSD_Y126_T 918.908 -0.111116
+MUSETT_T3_DSSD_Y127_T 927.125 -0.112131
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..10ca6c4c9502b63c10d0e6b2bd7a870f66c51345
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/cal_to_NPTOOL.py
@@ -0,0 +1,147 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 1
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0_R318-327.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0_R318-327.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/calibE0_R318-327.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/calibE0_R318-327.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..35bf8b5641ad2768f94bc55760aec6b956fdd3a7
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/calibE0_R318-327.cal1
@@ -0,0 +1,1024 @@
+-61710.6 7.53299 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61910.5 7.55737 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61782.4 7.54181 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61510.1 7.50856 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61839.9 7.54883 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61611.3 7.52091 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61398 7.49483 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61184.1 7.4687 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-61046.5 7.45195 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62682.6 7.65164 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62358.3 7.61207 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61942 7.56128 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62087.8 7.57904 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61755.3 7.53843 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62412.6 7.6187 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61293.9 7.48215 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63052.7 7.6968 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62690.7 7.65267 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62190.5 7.59158 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62410.9 7.6185 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63893.7 7.79946 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62612.9 7.64313 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62337.2 7.60945 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62674.4 7.65062 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62899.3 7.67809 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62952.3 7.68455 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63053.3 7.69687 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62674.7 7.65067 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-62997.4 7.69004 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62627.1 7.64487 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63448.8 7.74516 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62603 7.64186 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56430.2 6.88838 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56799.9 6.93354 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55532 6.77879 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56348.8 6.87847 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-55994.5 6.83521 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+ -10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55914.7 6.8255 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55693.8 6.79852 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56217.1 6.86239 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55863.5 6.81922 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56201.7 6.86046 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56309.9 6.87373 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56346.6 6.87818 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+ -10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+ -10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55913.1 6.82529 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57833.2 7.05965 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57967.8 7.07605 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57757.3 7.05042 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57326.3 6.99778 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58207.2 7.1053 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57200.3 6.98242 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57834.4 7.05977 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57512.8 7.02054 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58484.5 7.13912 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57751 7.04962 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57332.2 6.99849 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57800.1 7.05564 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57165.4 6.97819 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57970.3 7.07636 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57884.6 7.06593 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58159.8 7.09951 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63446.1 7.74486 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63609.9 7.76484 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63347.1 7.73277 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64083.2 7.82268 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63210.5 7.71623 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63979.4 7.81003 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63860.8 7.79555 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63358.1 7.73418 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64215.7 7.83895 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63301.6 7.72725 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-64050.7 7.81888 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-64016.7 7.81467 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63688.9 7.77478 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63789.1 7.78701 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64283.2 7.84737 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64914.3 7.924398 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61239.4 7.47582 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60938.5 7.43906 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61139.7 7.46366 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61497.4 7.50726 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61398.7 7.49521 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61899.6 7.55626 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61451.8 7.50166 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62196.4 7.59254 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61948.1 7.56212 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61617.1 7.52168 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61737.4 7.53637 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62823.6 7.66899 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61885.8 7.55448 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-61049.7 7.45242 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61459.5 7.50241 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62201.1 7.59292 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57166.2 6.97828 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57555.3 7.02572 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57803.5 7.05608 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57067.6 6.96622 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58132.4 7.09623 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57744.7 7.04887 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57713.3 7.04507 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57296.7 6.99421 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57401.2 7.00701 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57954.2 7.07453 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57305.6 6.99532 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57589.7 7.03005 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58599.8 7.15326 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58011 7.08149 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57701.9 7.04369 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57802 7.05589 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59013.1 7.20381 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59199.6 7.22655 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58525.7 7.1443 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58674.8 7.16253 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58132.8 7.09631 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58328.3 7.12018 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.9 7.11452 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58567.3 7.14936 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58564.9 7.14905 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58734.4 7.16969 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58596.2 7.15284 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59320.8 7.24127 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57906.3 7.06867 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58502.7 7.14141 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58429.3 7.1325 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59561.4 7.27063 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60429.9 -7.37677 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60952.5 -7.44053 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61113.6 -7.46018 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+60033.8 -7.32839 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60178.9 -7.34611 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60801.7 -7.42211 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60445 -7.37857 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60092 -7.33548 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59987 -7.32266 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60401.3 -7.37321 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60048.5 -7.33015 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60888.1 -7.43271 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61013.7 -7.44798 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61158 -7.46561 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60738.4 -7.41441 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60385.3 -7.37129 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60545.5 -7.39083 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60330.4 -7.36461 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60139.3 -7.34125 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60389.2 -7.37176 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60396.1 -7.37259 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60279.9 -7.35844 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59730.9 -7.29143 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60216.9 -7.35079 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.6 -7.297 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60073.1 -7.33321 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60444.7 -7.37853 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59887.7 -7.31055 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59636.6 -7.27991 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59823.3 -7.30273 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+61045.2 -7.45187 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56575.4 -6.90626 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57085.6 -6.96849 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56504.9 -6.89761 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57072.7 -6.96695 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57400 -7.00688 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57263.9 -6.99027 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56450 -6.89094 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56455.4 -6.89159 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56954 -6.95243 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56843.8 -6.93902 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56630.1 -6.91291 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56497.5 -6.89672 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56809.1 -6.93476 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56946.4 -6.95152 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57725.8 -7.04665 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56552.7 -6.90344 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57592.2 -7.03033 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57040.1 -6.96295 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56812.5 -6.93518 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56466.8 -6.89296 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57123.7 -6.97317 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56853.5 -6.94018 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56671.8 -6.91801 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57626 -7.03448 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57386.1 -7.00524 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56822 -6.9363 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57017 -6.96019 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57244.2 -6.98793 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57298.5 -6.99452 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57094 -6.9695 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57584.6 -7.02941 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57939.4 -7.07277 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+60998.5 -7.44617 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61154.4 -7.46519 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61038.3 -7.45104 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61312.7 -7.48452 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60431.4 -7.37695 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61541.6 -7.51241 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60896 -7.43364 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60398.4 -7.37288 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61667.4 -7.52784 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61151 -7.46479 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61103.5 -7.45898 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61219.8 -7.47315 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60596.2 -7.39702 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61408.6 -7.49623 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61629.2 -7.52312 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61015.1 -7.44816 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62330.1 -7.60868 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61048.5 -7.45227 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61567 -7.51556 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62052.8 -7.57484 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61001.4 -7.4465 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60896.5 -7.4337 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61748.9 -7.5377 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61380.7 -7.49277 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61145.8 -7.46415 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61269.9 -7.47926 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61120.5 -7.46101 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61476.8 -7.50452 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61857.6 -7.55098 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61681.6 -7.52954 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62323.2 -7.60786 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60892.7 -7.43324 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56372 -6.88138 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56641.2 -6.91423 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56555.8 -6.90381 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56451.7 -6.89113 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56187 -6.85881 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56322.8 -6.8754 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56073.6 -6.84493 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56575.1 -6.90621 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56874.1 -6.94264 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56026.4 -6.83916 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57037.4 -6.96262 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57359.5 -7.00194 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56552.4 -6.90339 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56585.5 -6.90746 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56666.8 -6.91741 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56400.9 -6.88495 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56899.6 -6.9458 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57124.3 -6.97323 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56955.2 -6.95256 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56821.1 -6.93619 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57294.8 -6.99405 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.4 -6.90363 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56415.9 -6.88675 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56591.9 -6.90825 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57404.8 -7.00746 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57231.9 -6.98632 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56684.9 -6.91957 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56016.4 -6.83799 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56457.5 -6.89181 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55921.7 -6.82642 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56947 -6.95159 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56581 -6.90693 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62318 7.60703 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62174.8 7.58959 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62269.7 7.60114 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-61967.2 7.56426 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61415.1 7.49681 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61526 7.51035 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62309.7 7.60599 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61376 7.49208 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61309.6 7.48393 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61415.7 7.49688 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61636.3 7.52384 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61699.5 7.53158 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61903.6 7.55648 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61385.8 7.49329 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61149.7 7.46439 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61948.3 7.56191 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62532.3 7.63317 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61741.8 7.5367 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62152.7 7.58685 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61894.5 7.55534 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62901.8 7.67824 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62159.2 7.58764 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62660 7.6488 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62320.7 7.60737 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62221.7 7.59528 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61934.3 7.56018 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-61947.1 7.56175 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61695.2 7.53103 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61588.3 7.51797 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62694 7.65292 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61734.1 7.53577 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62776.5 7.66307 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58260.4 7.11179 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58264 7.11219 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58314.9 7.11847 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58240 7.10926 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-57977 7.07722 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58181.7 7.10203 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58036.4 7.08428 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58626.1 7.156419 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58167.3 7.10045 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58805.6 7.17818 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58040.4 7.08493 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58445 7.13434 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58576.9 7.15027 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59255 7.23324 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58654.1 7.15993 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58523.2 7.1438 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57862.5 7.06315 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58489.2 7.13967 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-58005.3 7.08058 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57739.2 7.04814 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57926.2 7.07097 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57912.9 7.06931 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57956.5 7.07461 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57767.9 7.05159 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58015.6 7.08187 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57805.6 7.05617 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58416.6 7.13075 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57624 7.034 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57687.8 7.04184 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58237.3 7.1089 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58058.7 7.08712 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58244.7 7.10981 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-60994.7 7.4455 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61603 7.51986 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61459.9 7.50223 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61665.1 7.52729 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61874.5 7.55286 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.5 7.48631 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61630 7.52303 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61904.2 7.55658 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61232.4 7.47458 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62341.2 7.60994 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61925.9 7.55913 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62067.1 7.57642 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61484.5 7.50533 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61742.7 7.53686 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61352.6 7.48913 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61942.1 7.56111 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63429 7.74268 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63722.1 7.77849 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.5 7.83819 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63867.7 7.7962 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64127.9 7.82805 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63840.4 7.79293 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64050.4 7.81853 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64160.9 7.83201 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64180.9 7.83452 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64214 7.83849 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63280.4 7.72459 0.00 !Mu1ChX91ERaw[Co2At2Ch11]
+-63366.8 7.73508 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64520.9 7.87598 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-63981.8 7.81014 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63775.5 7.78503 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63433.9 7.74331 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56258.8 6.86734 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56645.5 6.91464 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56487.9 6.89532 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56382.7 6.88258 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56555.3 6.90363 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-57022.9 6.96061 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57333.2 6.99847 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56580.7 6.90664 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56766.8 6.92938 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-56989.3 6.95655 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57851.3 7.06174 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57756.1 7.05012 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57728.3 7.0468 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57502.7 7.01928 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57680.9 7.04099 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-57995.2 7.07934 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57221.6 6.98492 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57306.8 6.9953 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56767.2 6.92944 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57714.8 7.04509 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57257.8 6.98931 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57250.9 6.98847 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56328.4 6.87591 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58288.5 7.11516 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57413.2 7.00834 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57776.2 7.05264 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57731 7.04713 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57410.6 7.00802 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57590.7 7.02999 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57638.3 7.03579 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57038.4 6.96255 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57854.9 7.0622 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59619.1 -7.27783 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60465.3 -7.38115 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59712 -7.28919 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59326.7 -7.24213 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60197.6 -7.3485 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60005.2 -7.32501 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59376.2 -7.24818 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59455.9 -7.25795 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.9 -7.25998 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59707.6 -7.28867 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59520.2 -7.26577 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59556.5 -7.27023 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60210.4 -7.35003 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59273.4 -7.23565 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59511.8 -7.26475 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59816.1 -7.30189 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62145.2 -7.5862 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62468.3 -7.62564 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62402.1 -7.61759 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62031.6 -7.57234 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62198.2 -7.59266 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62357.4 -7.61211 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62006.4 -7.56931 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61711.9 -7.53332 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61447.7 -7.50107 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62078 -7.57801 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62059.9 -7.57584 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62251.6 -7.59918 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62034 -7.57263 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61653.3 -7.52617 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61797.4 -7.5438 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115 -6.85013 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56290.1 -6.87151 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55631.2 -6.79109 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55653.9 -6.79382 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55417.1 -6.76495 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56418.2 -6.88719 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55381.4 -6.76057 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55909.9 -6.82508 0.00 !Mu1ChY40ERaw[Co3At3Ch8]
+56029.4 -6.83969 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56120.4 -6.85079 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55503.4 -6.77548 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56587.3 -6.90782 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55632.5 -6.79125 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55719.2 -6.80184 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55759.2 -6.80672 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55723.3 -6.80233 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.5 -6.98188 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56621.8 -6.91194 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56558.9 -6.9043 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56037.1 -6.84059 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56793.3 -6.93289 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56263 -6.86816 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56442.5 -6.89006 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56437 -6.8894 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57330.8 -6.99852 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57023 -6.96092 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56627.6 -6.91264 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57287.8 -6.99327 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57378.4 -7.00433 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57012.1 -6.95962 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56174 -6.8573 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57292.1 -6.99379 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61087.1 -7.45703 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61618.4 -7.52186 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61291.1 -7.48195 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61562.6 -7.51506 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61204.3 -7.47131 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60010.3 -7.3256 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60457 -7.38015 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61099.9 -7.45857 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60265.6 -7.35676 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61237.3 -7.47538 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60887.5 -7.43265 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60371.3 -7.36966 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60519.5 -7.38776 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60974.1 -7.44327 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60660.6 -7.40501 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61330.5 -7.4868 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61162.6 -7.46633 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61126.4 -7.46184 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61091.3 -7.45754 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60509 -7.38651 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60423.4 -7.376 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61141.3 -7.46364 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60674.6 -7.40669 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60573.1 -7.3943 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61027.3 -7.44976 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61279.2 -7.48052 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60725.5 -7.41289 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60868.8 -7.43041 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60510.8 -7.38671 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61280.6 -7.48069 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61608.5 -7.52068 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60746.9 -7.4156 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55857.9 -6.81873 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55481.3 -6.77275 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55690.1 -6.79825 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55554.6 -6.78172 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55813.8 -6.81337 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55466.9 -6.77101 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55425.1 -6.76591 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56167.4 -6.85651 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55270.2 -6.74696 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55305.4 -6.75128 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55865.3 -6.81962 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55229.6 -6.74202 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55862.8 -6.81933 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56111.1 -6.84967 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56135.6 -6.8526 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56572.6 -6.90596 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54764.4 -6.68523 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55559.3 -6.78228 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55152.2 -6.73254 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.6 -6.72196 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55234.3 -6.74255 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55399.3 -6.76272 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55260.9 -6.74585 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55568 -6.78332 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55863.9 -6.81946 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55478.8 -6.77244 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.7 -6.69408 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55138.3 -6.73087 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55221.7 -6.74106 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55183 -6.73632 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55346 -6.75624 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56263 -6.86815 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62742.1 7.65877 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62479.2 7.62671 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62865 7.67381 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62098.5 7.58022 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62057.1 7.5752 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62707.7 7.65462 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62430.5 7.62076 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62814.9 7.6677 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62925.1 7.68116 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62122.5 7.58321 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62473.8 7.62602 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62490.4 7.62809 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62594.2 7.64074 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62536.7 7.63373 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62645.6 7.64703 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63375.2 7.73612 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62167.2 7.58864 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61803.3 7.54424 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61578.5 7.51678 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61470.8 7.50362 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61483.7 7.50523 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62315.8 7.60676 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62154.7 7.58709 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61791.1 7.54274 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61631.6 7.52326 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61824.2 7.54673 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61962.7 7.56372 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61774.4 7.54065 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61664.5 7.52723 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61257.4 7.47756 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62372.1 7.61364 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61518.2 7.5094 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-58997.3 7.20165 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58122.7 7.09487 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58574.8 7.15013 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58368.7 7.1249 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58173.3 7.10106 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58141.5 7.09722 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58324.8 7.11956 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57915.8 7.06966 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57571.4 7.0276 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58563.5 7.14871 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58788.6 7.17615 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58273.9 7.11334 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58563.9 7.14877 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58527 7.14428 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58339.3 7.12137 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58469.7 7.13725 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57779.5 7.05305 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57166 6.97811 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58129.9 7.09577 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57864.6 7.06342 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57537.3 7.02346 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57137 6.97462 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57819.8 7.05796 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57621.2 7.03367 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57914 7.06946 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57507.6 7.01987 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57923.1 7.07061 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.9 6.95776 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57486.6 7.01726 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56686.3 6.91961 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57458.1 7.01383 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57861.9 7.06309 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63315.8 7.72883 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64994.4 7.9338 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-64025.6 7.81543 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63710.4 7.77703 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64382.2 7.859 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63647.8 7.76936 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63444.6 7.7446 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63361.8 7.73443 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63093.9 7.70176 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63826.9 7.79125 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63664.2 7.77139 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63884.1 7.79822 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63716.4 7.77776 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63624.6 7.76662 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63593.7 7.76277 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63247.6 7.72049 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63297.5 7.72671 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63100.9 7.70261 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63149.8 7.70857 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63919.2 7.80245 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63810.5 7.7892 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63724.6 7.77877 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63923.1 7.80293 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63045.1 7.6958 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63491.8 7.75038 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63342.9 7.73222 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63540.7 7.7563 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63268 7.72303 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64611 7.88691 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63699 7.7756 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63623.5 7.76632 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59026.2 7.20527 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58540.6 7.14597 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58304.4 7.11715 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58710.8 7.16671 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59397.8 7.25058 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59352.9 7.2451 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58824 7.18059 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59021.6 7.2047 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59011.2 7.2034 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59098.8 7.21406 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58717.3 7.1675 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-58991.5 7.20094 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58718.9 7.16772 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60340.8 7.36568 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58950.1 7.1959 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58675.2 7.16237 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59295.7 7.2381 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59339.5 7.24343 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59702 7.28774 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59145.3 7.21974 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59642 7.28038 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-59995.7 7.32358 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59442.9 7.25607 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59354.8 7.24536 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60083.1 7.33422 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58758.9 7.17258 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59087.3 7.21264 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59302 7.2389 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58911.6 7.19123 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58940.6 7.19471 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59142.6 7.2194 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59291.3 7.23756 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63221.1 -7.71756 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+64033 -7.81661 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62573 -7.63842 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63453.2 -7.74588 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+63008.4 -7.69158 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62742 -7.65904 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63050.8 -7.69679 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62682.4 -7.65176 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62844.3 -7.67155 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63462.9 -7.74703 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+62996.6 -7.69016 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62575 -7.63867 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62131.2 -7.58453 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62781.8 -7.66392 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+62993.7 -7.68982 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63488.8 -7.75026 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61669.6 -7.52809 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60961.4 -7.44174 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60726.4 -7.41301 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62087.4 -7.57914 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61094.3 -7.45789 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60927.5 -7.43756 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62149.1 -7.58664 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61087.9 -7.45714 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61072.4 -7.45528 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61604.2 -7.52017 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61131.3 -7.46243 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61442 -7.50039 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61550 -7.51354 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61513.5 -7.50906 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61344.4 -7.48846 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61772.1 -7.54065 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56305.3 -6.87326 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56497.5 -6.89675 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56834.6 -6.93796 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56703.4 -6.92192 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+56977 -6.9553 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56889.1 -6.94457 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56450.3 -6.89099 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56403.9 -6.88533 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56205.6 -6.86116 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58125.2 -7.09546 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56762.4 -6.92908 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56299.9 -6.87269 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57261.3 -6.98997 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57247.6 -6.98834 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57030.9 -6.96185 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56744.6 -6.92695 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57601.8 -7.03162 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57017.1 -6.96022 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57933.4 -7.07206 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57426.4 -7.01017 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57297.8 -6.99446 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58636.8 -7.15795 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57744.4 -7.049 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57839.2 -7.06057 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57708.8 -7.04465 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57558.5 -7.02632 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57474.8 -7.01608 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58260.9 -7.11207 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57892.2 -7.06703 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57330 -6.99845 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57835.7 -7.06015 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58184.5 -7.10268 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59348.1 -7.24483 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59605.7 -7.27624 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59455.9 -7.25797 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60429.5 -7.37675 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59568.6 -7.27167 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59821.4 -7.30253 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59558 -7.27041 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59892.6 -7.3113 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59876.5 -7.30923 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59557.1 -7.2703 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59902.7 -7.31249 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60059.2 -7.33158 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59314.2 -7.24065 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59977.2 -7.32152 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59375.7 -7.24812 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60162.5 -7.34418 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60553.6 -7.39197 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61237.5 -7.47541 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60562.6 -7.39303 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61224.5 -7.47385 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61126.4 -7.46188 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60909.5 -7.4354 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60957.5 -7.44128 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61286.2 -7.48137 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60884.7 -7.4323 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60871 -7.43068 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61443.7 -7.50059 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60658.6 -7.40476 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61097.6 -7.45829 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60614.1 -7.39932 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61044.5 -7.45181 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61470.4 -7.50378 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56878.5 -6.94331 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55961.9 -6.83138 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56218.8 -6.86276 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56642.5 -6.91453 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56348 -6.87854 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56747.4 -6.9273 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55904.8 -6.82446 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57240.3 -6.98747 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56087.4 -6.84672 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56732.1 -6.92546 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56623.7 -6.91218 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57520.3 -7.02164 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57014.4 -6.9599 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56700.3 -6.92155 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57019.8 -6.96055 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56158.7 -6.85546 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56486.5 -6.89543 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57289.3 -6.99345 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56597.9 -6.90909 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56824.1 -6.93669 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56510 -6.89835 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56563.8 -6.90489 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56834.9 -6.93798 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56738.1 -6.9262 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56337.6 -6.87729 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57059.2 -6.96537 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57419.8 -7.0094 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56208.7 -6.86156 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56914.2 -6.9477 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56339.9 -6.87758 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56168.2 -6.8566 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62298.2 7.60472 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61861.6 7.55141 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62156.9 7.58753 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62259.6 7.60006 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61881.7 7.55391 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61817.4 7.54604 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62038.9 7.57309 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61558.6 7.51446 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61705 7.53228 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61812 7.54536 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61801.3 7.54402 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62828 7.66936 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61599.3 7.51937 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61494.7 7.50662 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62518.2 7.63157 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63590.9 7.76244 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63017.1 7.69249 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62878.7 7.67552 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62791 7.66488 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62559.2 7.63654 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63113.3 7.70421 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63699.8 7.77586 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63781.1 7.7857 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62720.5 7.65624 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63456.7 7.74614 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63469.1 7.74769 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63295.5 7.72649 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63507.6 7.75235 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63562.9 7.7591 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64464.4 7.86912 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63690.7 7.77475 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59300.3 7.23889 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59122.8 7.21712 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58098 7.09209 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58311.4 7.11809 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58778.1 7.17501 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-58990.3 7.20099 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59232.9 7.23058 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58615.9 7.15528 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59221.6 7.22918 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58881.5 7.18765 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-58977.3 7.19934 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-58983.3 7.20009 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59359.3 7.24594 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58777.5 7.17493 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59126 7.21749 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57304.1 6.99513 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57151.2 6.97642 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56849.2 6.93961 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57205.7 6.98311 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56835.2 6.93786 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57340.1 6.99951 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56590.8 6.90809 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57262.3 6.99005 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57574.4 7.02812 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56496.9 6.89662 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57471.5 7.01554 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57061.9 6.96556 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56316.5 6.87459 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56849.9 6.9397 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56760.7 6.92884 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56499.3 6.89695 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64170.2 7.83318 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63841.5 7.79309 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63555.7 7.75819 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63767.7 7.78403 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63604.2 7.76408 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63260 7.72205 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64305.5 7.84974 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62501.6 7.6295 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62662.5 7.64914 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63010.5 7.69167 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63148.4 7.70842 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63379.3 7.73664 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64068.7 7.82082 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62470.2 7.62573 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62557.4 7.63631 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63009.7 7.69157 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62457.8 7.62418 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62779.1 7.66339 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62621 7.64411 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62578.4 7.63894 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62005.9 7.56897 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62457.5 7.62414 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62403.1 7.61752 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62171.3 7.58918 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62335.3 7.6092 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62747.4 7.6596 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62339.6 7.60973 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62021.3 7.57089 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62834.5 7.67017 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.8 7.63673 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62140.9 7.58552 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62358.7 7.61211 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56125.6 6.85121 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55950.5 6.82982 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55179.6 6.73572 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55782.8 6.8094 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55955.9 6.8305 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55934.4 6.82783 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55974.5 6.83272 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55254.9 6.74491 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55487.5 6.77335 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-55989.3 6.83453 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55823.6 6.81435 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55681.5 6.79695 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56743.4 6.92662 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56300.5 6.87254 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55822.3 6.81419 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55695.1 6.79867 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57562.2 7.02657 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-57013.5 6.9596 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57521.1 7.02156 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56981 6.95566 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-57972.5 7.07666 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57233.9 6.98648 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57434.2 7.01098 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56213.4 6.86193 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56747.4 6.92711 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57889.1 7.0665 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57504.9 7.01955 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57096.6 6.96973 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57651 7.0374 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56716.4 6.92338 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57789.7 7.05434 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56522 6.89959 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60097.2 -7.33611 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987 -7.20065 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60080 -7.33404 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59936.5 -7.3165 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59769.5 -7.29617 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59874.6 -7.30898 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59775.3 -7.29686 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60186.2 -7.347 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60495.8 -7.38477 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60439.3 -7.37789 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60145.6 -7.34201 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59791.1 -7.29875 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59677.3 -7.28488 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59583.5 -7.27344 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60533.1 -7.38936 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59724.9 -7.29071 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62921.4 -7.68089 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63205.4 -7.71552 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62267.4 -7.60105 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62696.7 -7.65347 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63193 -7.71405 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63533.6 -7.75561 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+62980.8 -7.68812 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62964 -7.68612 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63469.3 -7.74779 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63461 -7.74678 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62600 -7.64164 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63414 -7.74102 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62467.2 -7.62548 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62971.6 -7.68703 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63066.7 -7.69867 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62948.3 -7.68424 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84714 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56193.9 -6.85965 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55825.1 -6.8147 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55674.4 -6.79624 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55743.5 -6.80473 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56230.4 -6.86412 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55926.7 -6.82705 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55575.2 -6.78415 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55421.9 -6.76539 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185.4 -6.85863 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+56006.9 -6.83686 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55331.2 -6.75434 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55762.4 -6.80697 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55616.4 -6.78921 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55888 -6.82232 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55807.9 -6.81252 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56633.2 -6.9133 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56902.3 -6.94613 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57128.5 -6.97375 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56942.8 -6.95109 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56488.8 -6.89569 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56938.1 -6.95052 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56630.8 -6.91301 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57019.1 -6.96044 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57045.6 -6.96359 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56614.1 -6.91102 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57499.8 -7.01906 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57046.8 -6.96375 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57594 -7.03054 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57030.5 -6.96179 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56762.4 -6.92908 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57433.7 -7.01104 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59389.3 -7.24973 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59940.1 -7.31694 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59525.1 -7.26633 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59349.5 -7.24484 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59443.7 -7.25635 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58765.1 -7.17351 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59296.9 -7.23842 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+59965.1 -7.32006 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60172.6 -7.34537 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59451.6 -7.2573 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59530.9 -7.26702 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59582.6 -7.27333 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59590.9 -7.27432 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59396.5 -7.25058 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59028.9 -7.20579 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59962.3 -7.31973 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62810.9 -7.66739 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62711.7 -7.65528 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62530.7 -7.63323 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62147.2 -7.58643 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62024.8 -7.57151 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62696.5 -7.65345 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62262.4 -7.60046 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62955.1 -7.68508 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62655 -7.64835 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62592.1 -7.64069 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61832.7 -7.54801 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61987.9 -7.56697 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61948 -7.56205 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+62025.8 -7.57163 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61996 -7.56795 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61777.7 -7.5413 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56732.7 -6.92539 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56863.3 -6.94135 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56282.6 -6.87046 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55937.8 -6.82837 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56278.2 -6.86995 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56282 -6.8704 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55931.1 -6.82758 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55975.4 -6.83298 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55843.1 -6.81683 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56293.4 -6.87176 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56467.7 -6.89304 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56254.6 -6.867 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55755.7 -6.80615 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55895.6 -6.82321 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56669.4 -6.91772 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56671.7 -6.91799 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57139 -6.97499 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57000.1 -6.95808 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57098.7 -6.97019 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+56976.2 -6.95517 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57605.3 -7.03199 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57282.8 -6.99264 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56840.6 -6.93862 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57649.6 -7.03728 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57438.3 -7.01157 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57084.8 -6.96844 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57433.8 -7.01102 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57070.8 -6.96674 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57543.7 -7.02442 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56819.9 -6.93609 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57239.4 -6.98722 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57548.9 -7.02512 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/calibT0_R318-327.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/calibT0_R318-327.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..667f55f12c33a6b4a0cb37616b540739c4ead9c3
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/calibT0_R318-327.cal1
@@ -0,0 +1,1023 @@
+947.337 -0.114176 0.0 !Mu0ChX1TRaw[Co1At1Ch1]
+958.191 -0.115529 0.0 !Mu0ChX2TRaw[Co1At1Ch2]
+959.141 -0.115657 0.0 !Mu0ChX3TRaw[Co1At1Ch3]
+973.263 -0.117409 0.0 !Mu0ChX4TRaw[Co1At1Ch4]
+973.079 -0.117367 0.0 !Mu0ChX5TRaw[Co1At1Ch5]
+972.893 -0.117353 0.0 !Mu0ChX6TRaw[Co1At1Ch6]
+978.231 -0.117969 0.0 !Mu0ChX7TRaw[Co1At1Ch7]
+980.496 -0.118246 0.0 !Mu0ChX8TRaw[Co1At1Ch8]
+979.094 -0.118065 0.0 !Mu0ChX9TRaw[Co1At1Ch9]
+983.012 -0.118546 0.0 !Mu0ChX10TRaw[Co1At1Ch10]
+987.665 -0.119138 0.0 !Mu0ChX11TRaw[Co1At1Ch11]
+987.344 -0.119075 0.0 !Mu0ChX12TRaw[Co1At1Ch12]
+994.919 -0.119996 0.0 !Mu0ChX13TRaw[Co1At1Ch13]
+980.069 -0.118174 0.0 !Mu0ChX14TRaw[Co1At1Ch14]
+991.136 -0.119531 0.0 !Mu0ChX15TRaw[Co1At1Ch15]
+1325.763 -0.118448 0.0 !Mu0ChX16TRaw[Co1At1Ch16]
+956.943 -0.115275 0.0 !Mu0ChX17TRaw[Co1At2Ch1]
+967.056 -0.116527 0.0 !Mu0ChX18TRaw[Co1At2Ch2]
+979.486 -0.118044 0.0 !Mu0ChX19TRaw[Co1At2Ch3]
+980.171 -0.118125 0.0 !Mu0ChX20TRaw[Co1At2Ch4]
+989.203 -0.119233 0.0 !Mu0ChX21TRaw[Co1At2Ch5]
+983.63 -0.118555 0.0 !Mu0ChX22TRaw[Co1At2Ch6]
+994.257 -0.119845 0.0 !Mu0ChX23TRaw[Co1At2Ch7]
+995.64 -0.120005 0.0 !Mu0ChX24TRaw[Co1At2Ch8]
+990.898 -0.119427 0.0 !Mu0ChX25TRaw[Co1At2Ch9]
+1002.054 -0.120777 0.0 !Mu0ChX26TRaw[Co1At2Ch10]
+1004.297 -0.121057 0.0 !Mu0ChX27TRaw[Co1At2Ch11]
+1008.353 -0.121545 0.0 !Mu0ChX28TRaw[Co1At2Ch12]
+1003.834 -0.121021 0.0 !Mu0ChX29TRaw[Co1At2Ch13]
+1002.641 -0.120851 0.0 !Mu0ChX30TRaw[Co1At2Ch14]
+999.274 -0.12045 0.0 !Mu0ChX31TRaw[Co1At2Ch15]
+994.884 -0.119947 0.0 !Mu0ChX32TRaw[Co1At2Ch16]
+873.942 -0.105192 0.0 !Mu0ChX33TRaw[Co1At3Ch1]
+871.682 -0.104955 0.0 !Mu0ChX34TRaw[Co1At3Ch2]
+891.642 -0.107397 0.0 !Mu0ChX35TRaw[Co1At3Ch3]
+880.321 -0.106033 0.0 !Mu0ChX36TRaw[Co1At3Ch4]
+882.156 -0.106227 0.0 !Mu0ChX37TRaw[Co1At3Ch5]
+896.607 -0.108005 0.0 !Mu0ChX38TRaw[Co1At3Ch6]
+898.13 -0.108195 0.0 !Mu0ChX39TRaw[Co1At3Ch7]
+896.691 -0.107979 0.0 !Mu0ChX40TRaw[Co1At3Ch8]
+899.622 -0.108302 0.0 !Mu0ChX41TRaw[Co1At3Ch9]
+899.64 -0.108334 0.0 !Mu0ChX42TRaw[Co1At3Ch10]
+898.696 -0.108243 0.0 !Mu0ChX43TRaw[Co1At3Ch11]
+905.705 -0.109095 0.0 !Mu0ChX44TRaw[Co1At3Ch12]
+901.026 -0.108505 0.0 !Mu0ChX45TRaw[Co1At3Ch13]
+895.522 -0.107877 0.0 !Mu0ChX46TRaw[Co1At3Ch14]
+897.868 -0.108187 0.0 !Mu0ChX47TRaw[Co1At3Ch15]
+930.136 -0.10826 0.0 !Mu0ChX48TRaw[Co1At3Ch16]
+885.768 -0.106556 0.0 !Mu0ChX49TRaw[Co1At4Ch1]
+888.974 -0.106942 0.0 !Mu0ChX50TRaw[Co1At4Ch2]
+894.597 -0.107622 0.0 !Mu0ChX51TRaw[Co1At4Ch3]
+903.027 -0.109464 0.0 !Mu0ChX52TRaw[Co1At4Ch4]
+908.335 -0.109295 0.0 !Mu0ChX53TRaw[Co1At4Ch5]
+911.216 -0.109652 0.0 !Mu0ChX54TRaw[Co1At4Ch6]
+913.763 -0.109955 0.0 !Mu0ChX55TRaw[Co1At4Ch7]
+917.724 -0.110458 0.0 !Mu0ChX56TRaw[Co1At4Ch8]
+926.424 -0.111499 0.0 !Mu0ChX57TRaw[Co1At4Ch9]
+917.91 -0.110456 0.0 !Mu0ChX58TRaw[Co1At4Ch10]
+925.431 -0.111378 0.0 !Mu0ChX59TRaw[Co1At4Ch11]
+930.046 -0.111943 0.0 !Mu0ChX60TRaw[Co1At4Ch12]
+937.211 -0.112807 0.0 !Mu0ChX61TRaw[Co1At4Ch13]
+939.875 -0.11314 0.0 !Mu0ChX62TRaw[Co1At4Ch14]
+941.523 -0.113338 0.0 !Mu0ChX63TRaw[Co1At4Ch15]
+929.926 -0.111982 0.0 !Mu0ChX64TRaw[Co1At4Ch16]
+958.682 -0.115846 0.0 !Mu0ChX65TRaw[Co2At1Ch1]
+963.509 -0.11646 0.0 !Mu0ChX66TRaw[Co2At1Ch2]
+973.199 -0.117644 0.0 !Mu0ChX67TRaw[Co2At1Ch3]
+974.497 -0.117791 0.0 !Mu0ChX68TRaw[Co2At1Ch4]
+977.927 -0.118174 0.0 !Mu0ChX69TRaw[Co2At1Ch5]
+990.533 -0.119717 0.0 !Mu0ChX70TRaw[Co2At1Ch6]
+995.149 -0.120284 0.0 !Mu0ChX71TRaw[Co2At1Ch7]
+996.285 -0.120426 0.0 !Mu0ChX72TRaw[Co2At1Ch8]
+1007.301 -0.121763 0.0 !Mu0ChX73TRaw[Co2At1Ch9]
+988.471 -0.119445 0.0 !Mu0ChX74TRaw[Co2At1Ch10]
+1005.426 -0.121535 0.0 !Mu0ChX75TRaw[Co2At1Ch11]
+996.264 -0.120381 0.0 !Mu0ChX76TRaw[Co2At1Ch12]
+1003.43 -0.121262 0.0 !Mu0ChX77TRaw[Co2At1Ch13]
+1007.423 -0.121766 0.0 !Mu0ChX78TRaw[Co2At1Ch14]
+998.247 -0.120615 0.0 !Mu0ChX79TRaw[Co2At1Ch15]
+1387.089 -0.120952 0.0 !Mu0ChX80TRaw[Co2At1Ch16]
+924.296 -0.111515 0.0 !Mu0ChX81TRaw[Co2At2Ch1]
+933.864 -0.112746 0.0 !Mu0ChX82TRaw[Co2At2Ch2]
+926.031 -0.111774 0.0 !Mu0ChX83TRaw[Co2At2Ch3]
+938.356 -0.113281 0.0 !Mu0ChX84TRaw[Co2At2Ch4]
+931.605 -0.112468 0.0 !Mu0ChX85TRaw[Co2At2Ch5]
+942.766 -0.113819 0.0 !Mu0ChX86TRaw[Co2At2Ch6]
+950.91 -0.114818 0.0 !Mu0ChX87TRaw[Co2At2Ch7]
+944.087 -0.113978 0.0 !Mu0ChX88TRaw[Co2At2Ch8]
+950.899 -0.114813 0.0 !Mu0ChX89TRaw[Co2At2Ch9]
+958.325 -0.115728 0.0 !Mu0ChX90TRaw[Co2At2Ch10]
+965.901 -0.11664 0.0 !Mu0ChX91TRaw[Co2At2Ch11]
+962.574 -0.11625 0.0 !Mu0ChX92TRaw[Co2At2Ch12]
+962.901 -0.116299 0.0 !Mu0ChX93TRaw[Co2At2Ch13]
+961.67 -0.116152 0.0 !Mu0ChX94TRaw[Co2At2Ch14]
+975.645 -0.117868 0.0 !Mu0ChX95TRaw[Co2At2Ch15]
+1001.622 -0.116744 0.0 !Mu0ChX96TRaw[Co2At2Ch16]
+869.411 -0.105013 0.0 !Mu0ChX97TRaw[Co2At3Ch1]
+878.779 -0.106169 0.0 !Mu0ChX98TRaw[Co2At3Ch2]
+879.022 -0.106212 0.0 !Mu0ChX99TRaw[Co2At3Ch3]
+884.843 -0.106905 0.0 !Mu0ChX100TRaw[Co2At3Ch4]
+894.415 -0.108043 0.0 !Mu0ChX101TRaw[Co2At3Ch5]
+901.76 -0.108935 0.0 !Mu0ChX102TRaw[Co2At3Ch6]
+897.652 -0.108442 0.0 !Mu0ChX103TRaw[Co2At3Ch7]
+895.989 -0.108194 0.0 !Mu0ChX104TRaw[Co2At3Ch8]
+905.204 -0.109336 0.0 !Mu0ChX105TRaw[Co2At3Ch9]
+902.911 -0.109053 0.0 !Mu0ChX106TRaw[Co2At3Ch10]
+908.729 -0.109771 0.0 !Mu0ChX107TRaw[Co2At3Ch11]
+906.302 -0.109449 0.0 !Mu0ChX108TRaw[Co2At3Ch12]
+903.456 -0.109128 0.0 !Mu0ChX109TRaw[Co2At3Ch13]
+907.613 -0.109641 0.0 !Mu0ChX110TRaw[Co2At3Ch14]
+903.804 -0.109177 0.0 !Mu0ChX111TRaw[Co2At3Ch15]
+915.521 -0.109478 0.0 !Mu0ChX112TRaw[Co2At3Ch16]
+889.665 -0.107364 0.0 !Mu0ChX113TRaw[Co2At4Ch1]
+892.8 -0.107748 0.0 !Mu0ChX114TRaw[Co2At4Ch2]
+893.081 -0.107782 0.0 !Mu0ChX115TRaw[Co2At4Ch3]
+903.018 -0.109007 0.0 !Mu0ChX116TRaw[Co2At4Ch4]
+906.731 -0.109423 0.0 !Mu0ChX117TRaw[Co2At4Ch5]
+900.058 -0.108648 0.0 !Mu0ChX118TRaw[Co2At4Ch6]
+914.646 -0.110413 0.0 !Mu0ChX119TRaw[Co2At4Ch7]
+915.898 -0.110579 0.0 !Mu0ChX120TRaw[Co2At4Ch8]
+910.258 -0.109898 0.0 !Mu0ChX121TRaw[Co2At4Ch9]
+915.289 -0.1105 0.0 !Mu0ChX122TRaw[Co2At4Ch10]
+923.76 -0.111529 0.0 !Mu0ChX123TRaw[Co2At4Ch11]
+915.924 -0.110604 0.0 !Mu0ChX124TRaw[Co2At4Ch12]
+919.022 -0.110972 0.0 !Mu0ChX125TRaw[Co2At4Ch13]
+920.708 -0.11118 0.0 !Mu0ChX126TRaw[Co2At4Ch14]
+915.998 -0.110613 0.0 !Mu0ChX127TRaw[Co2At4Ch15]
+928.024 -0.111151 0.0 !Mu0ChX128TRaw[Co2At4Ch16]
+943.522 -0.114033 0.0 !Mu0ChY2TRaw[Co3At1Ch2]
+942.377 -0.113921 0.0 !Mu0ChY3TRaw[Co3At1Ch3]
+960.366 -0.116104 0.0 !Mu0ChY4TRaw[Co3At1Ch4]
+955.945 -0.115563 0.0 !Mu0ChY5TRaw[Co3At1Ch5]
+971.627 -0.117481 0.0 !Mu0ChY6TRaw[Co3At1Ch6]
+970.47 -0.117339 0.0 !Mu0ChY7TRaw[Co3At1Ch7]
+967.757 -0.117018 0.0 !Mu0ChY8TRaw[Co3At1Ch8]
+974.517 -0.117842 0.0 !Mu0ChY9TRaw[Co3At1Ch9]
+970.194 -0.117316 0.0 !Mu0ChY10TRaw[Co3At1Ch10]
+972.805 -0.117632 0.0 !Mu0ChY11TRaw[Co3At1Ch11]
+979.06 -0.118398 0.0 !Mu0ChY12TRaw[Co3At1Ch12]
+977.036 -0.11814 0.0 !Mu0ChY13TRaw[Co3At1Ch13]
+972.887 -0.117633 0.0 !Mu0ChY14TRaw[Co3At1Ch14]
+975.479 -0.117944 0.0 !Mu0ChY15TRaw[Co3At1Ch15]
+981.973 -0.118761 0.0 !Mu0ChY16TRaw[Co3At1Ch16]
+937.311 -0.113175 0.0 !Mu0ChY17TRaw[Co3At2Ch1]
+946.334 -0.114309 0.0 !Mu0ChY18TRaw[Co3At2Ch2]
+954.832 -0.115351 0.0 !Mu0ChY19TRaw[Co3At2Ch3]
+946.608 -0.11436 0.0 !Mu0ChY20TRaw[Co3At2Ch4]
+949.338 -0.114686 0.0 !Mu0ChY21TRaw[Co3At2Ch5]
+952.78 -0.115103 0.0 !Mu0ChY22TRaw[Co3At2Ch6]
+958.755 -0.115832 0.0 !Mu0ChY23TRaw[Co3At2Ch7]
+958.899 -0.115841 0.0 !Mu0ChY24TRaw[Co3At2Ch8]
+963.461 -0.116398 0.0 !Mu0ChY25TRaw[Co3At2Ch9]
+961.768 -0.116195 0.0 !Mu0ChY26TRaw[Co3At2Ch10]
+958.433 -0.115516 0.0 !Mu0ChY27TRaw[Co3At2Ch11]
+973.022 -0.117562 0.0 !Mu0ChY28TRaw[Co3At2Ch12]
+975.364 -0.117834 0.0 !Mu0ChY29TRaw[Co3At2Ch13]
+970.379 -0.11722 0.0 !Mu0ChY30TRaw[Co3At2Ch14]
+973.404 -0.11759 0.0 !Mu0ChY31TRaw[Co3At2Ch15]
+968.163 -0.116928 0.0 !Mu0ChY32TRaw[Co3At2Ch16]
+870.503 -0.105131 0.0 !Mu0ChY33TRaw[Co3At3Ch1]
+870.134 -0.105113 0.0 !Mu0ChY34TRaw[Co3At3Ch2]
+887.309 -0.107174 0.0 !Mu0ChY35TRaw[Co3At3Ch3]
+877.246 -0.105955 0.0 !Mu0ChY36TRaw[Co3At3Ch4]
+888.914 -0.107363 0.0 !Mu0ChY37TRaw[Co3At3Ch5]
+888.196 -0.107278 0.0 !Mu0ChY38TRaw[Co3At3Ch6]
+888.904 -0.107347 0.0 !Mu0ChY39TRaw[Co3At3Ch7]
+906.99 -0.109567 0.0 !Mu0ChY40TRaw[Co3At3Ch8]
+904.639 -0.109268 0.0 !Mu0ChY41TRaw[Co3At3Ch9]
+902.704 -0.109045 0.0 !Mu0ChY42TRaw[Co3At3Ch10]
+901.823 -0.108924 0.0 !Mu0ChY43TRaw[Co3At3Ch11]
+912.525 -0.110196 0.0 !Mu0ChY44TRaw[Co3At3Ch12]
+909.706 -0.109895 0.0 !Mu0ChY45TRaw[Co3At3Ch13]
+904.431 -0.10924 0.0 !Mu0ChY46TRaw[Co3At3Ch14]
+914.842 -0.110513 0.0 !Mu0ChY47TRaw[Co3At3Ch15]
+902.82 -0.109056 0.0 !Mu0ChY48TRaw[Co3At3Ch16]
+857.097 -0.103507 0.0 !Mu0ChY49TRaw[Co3At4Ch1]
+868.238 -0.104888 0.0 !Mu0ChY50TRaw[Co3At4Ch2]
+863.632 -0.104347 0.0 !Mu0ChY51TRaw[Co3At4Ch3]
+880.418 -0.106391 0.0 !Mu0ChY52TRaw[Co3At4Ch4]
+883.153 -0.106718 0.0 !Mu0ChY53TRaw[Co3At4Ch5]
+884.327 -0.106878 0.0 !Mu0ChY54TRaw[Co3At4Ch6]
+880.924 -0.106441 0.0 !Mu0ChY55TRaw[Co3At4Ch7]
+888.89 -0.107426 0.0 !Mu0ChY56TRaw[Co3At4Ch8]
+890.451 -0.107608 0.0 !Mu0ChY57TRaw[Co3At4Ch9]
+894.679 -0.108136 0.0 !Mu0ChY58TRaw[Co3At4Ch10]
+901.833 -0.109012 0.0 !Mu0ChY59TRaw[Co3At4Ch11]
+900.642 -0.108611 0.0 !Mu0ChY60TRaw[Co3At4Ch12]
+899.493 -0.108719 0.0 !Mu0ChY61TRaw[Co3At4Ch13]
+906.616 -0.109581 0.0 !Mu0ChY62TRaw[Co3At4Ch14]
+900.751 -0.108895 0.0 !Mu0ChY63TRaw[Co3At4Ch15]
+906.031 -0.109543 0.0 !Mu0ChY64TRaw[Co3At4Ch16]
+965.315 -0.116469 0.0 !Mu0ChY65TRaw[Co4At1Ch1]
+971.839 -0.117302 0.0 !Mu0ChY66TRaw[Co4At1Ch2]
+977.636 -0.118012 0.0 !Mu0ChY67TRaw[Co4At1Ch3]
+977.842 -0.118028 0.0 !Mu0ChY68TRaw[Co4At1Ch4]
+980.742 -0.118378 0.0 !Mu0ChY69TRaw[Co4At1Ch5]
+984.432 -0.118825 0.0 !Mu0ChY70TRaw[Co4At1Ch6]
+984.043 -0.118781 0.0 !Mu0ChY71TRaw[Co4At1Ch7]
+987.06 -0.119156 0.0 !Mu0ChY72TRaw[Co4At1Ch8]
+991.031 -0.119628 0.0 !Mu0ChY73TRaw[Co4At1Ch9]
+982.516 -0.118591 0.0 !Mu0ChY74TRaw[Co4At1Ch10]
+991.101 -0.119656 0.0 !Mu0ChY75TRaw[Co4At1Ch11]
+1001.573 -0.120924 0.0 !Mu0ChY76TRaw[Co4At1Ch12]
+996.82 -0.120327 0.0 !Mu0ChY77TRaw[Co4At1Ch13]
+998.874 -0.120579 0.0 !Mu0ChY78TRaw[Co4At1Ch14]
+996.07 -0.120247 0.0 !Mu0ChY79TRaw[Co4At1Ch15]
+1003.012 -0.121097 0.0 !Mu0ChY80TRaw[Co4At1Ch16]
+971.708 -0.117145 0.0 !Mu0ChY81TRaw[Co4At2Ch1]
+987.463 -0.119118 0.0 !Mu0ChY82TRaw[Co4At2Ch2]
+982.727 -0.118534 0.0 !Mu0ChY83TRaw[Co4At2Ch3]
+997.311 -0.12031 0.0 !Mu0ChY84TRaw[Co4At2Ch4]
+1001.041 -0.120777 0.0 !Mu0ChY85TRaw[Co4At2Ch5]
+1003.673 -0.121085 0.0 !Mu0ChY86TRaw[Co4At2Ch6]
+999.447 -0.120569 0.0 !Mu0ChY87TRaw[Co4At2Ch7]
+1009.884 -0.121839 0.0 !Mu0ChY88TRaw[Co4At2Ch8]
+1005.634 -0.121339 0.0 !Mu0ChY89TRaw[Co4At2Ch9]
+1016.116 -0.122592 0.0 !Mu0ChY90TRaw[Co4At2Ch10]
+1026.636 -0.123897 0.0 !Mu0ChY91TRaw[Co4At2Ch11]
+1026.388 -0.123866 0.0 !Mu0ChY92TRaw[Co4At2Ch12]
+1021.347 -0.123256 0.0 !Mu0ChY93TRaw[Co4At2Ch13]
+1025.69 -0.123786 0.0 !Mu0ChY94TRaw[Co4At2Ch14]
+1022.609 -0.123408 0.0 !Mu0ChY95TRaw[Co4At2Ch15]
+1018.382 -0.122879 0.0 !Mu0ChY96TRaw[Co4At2Ch16]
+884.114 -0.106544 0.0 !Mu0ChY97TRaw[Co4At3Ch1]
+880.476 -0.106139 0.0 !Mu0ChY98TRaw[Co4At3Ch2]
+879.465 -0.106028 0.0 !Mu0ChY99TRaw[Co4At3Ch3]
+896.068 -0.108041 0.0 !Mu0ChY100TRaw[Co4At3Ch4]
+893.327 -0.107707 0.0 !Mu0ChY101TRaw[Co4At3Ch5]
+892.176 -0.10757 0.0 !Mu0ChY102TRaw[Co4At3Ch6]
+896.58 -0.108105 0.0 !Mu0ChY103TRaw[Co4At3Ch7]
+908.687 -0.10959 0.0 !Mu0ChY104TRaw[Co4At3Ch8]
+903.256 -0.108916 0.0 !Mu0ChY105TRaw[Co4At3Ch9]
+916.636 -0.110544 0.0 !Mu0ChY106TRaw[Co4At3Ch10]
+912.014 -0.109981 0.0 !Mu0ChY107TRaw[Co4At3Ch11]
+916.38 -0.11051 0.0 !Mu0ChY108TRaw[Co4At3Ch12]
+915.761 -0.110421 0.0 !Mu0ChY109TRaw[Co4At3Ch13]
+911.291 -0.109894 0.0 !Mu0ChY110TRaw[Co4At3Ch14]
+916.811 -0.110572 0.0 !Mu0ChY111TRaw[Co4At3Ch15]
+918.69 -0.110803 0.0 !Mu0ChY112TRaw[Co4At3Ch16]
+893.594 -0.107535 0.0 !Mu0ChY113TRaw[Co4At4Ch1]
+901.025 -0.108466 0.0 !Mu0ChY114TRaw[Co4At4Ch2]
+900.629 -0.108438 0.0 !Mu0ChY115TRaw[Co4At4Ch3]
+906.59 -0.109158 0.0 !Mu0ChY116TRaw[Co4At4Ch4]
+918.16 -0.110566 0.0 !Mu0ChY117TRaw[Co4At4Ch5]
+911.388 -0.109757 0.0 !Mu0ChY118TRaw[Co4At4Ch6]
+931.217 -0.112167 0.0 !Mu0ChY119TRaw[Co4At4Ch7]
+922.953 -0.111146 0.0 !Mu0ChY120TRaw[Co4At4Ch8]
+933.135 -0.112407 0.0 !Mu0ChY121TRaw[Co4At4Ch9]
+932.64 -0.112337 0.0 !Mu0ChY122TRaw[Co4At4Ch10]
+934.384 -0.112539 0.0 !Mu0ChY123TRaw[Co4At4Ch11]
+937.88 -0.112978 0.0 !Mu0ChY124TRaw[Co4At4Ch12]
+932.437 -0.112316 0.0 !Mu0ChY125TRaw[Co4At4Ch13]
+931.451 -0.112192 0.0 !Mu0ChY126TRaw[Co4At4Ch14]
+928.409 -0.111821 0.0 !Mu0ChY127TRaw[Co4At4Ch15]
+931.268 -0.112162 0.0 !Mu0ChY128TRaw[Co4At4Ch16]
+927.653 -0.11232 0.0 !Mu1ChX1TRaw[Co1At1Ch1]
+941.47 -0.114015 0.0 !Mu1ChX2TRaw[Co1At1Ch2]
+943.919 -0.114341 0.0 !Mu1ChX3TRaw[Co1At1Ch3]
+955.204 -0.115712 0.0 !Mu1ChX4TRaw[Co1At1Ch4]
+955.698 -0.115744 0.0 !Mu1ChX5TRaw[Co1At1Ch5]
+957.389 -0.115962 0.0 !Mu1ChX6TRaw[Co1At1Ch6]
+970.882 -0.117589 0.0 !Mu1ChX7TRaw[Co1At1Ch7]
+966.082 -0.116998 0.0 !Mu1ChX8TRaw[Co1At1Ch8]
+970.157 -0.117498 0.0 !Mu1ChX9TRaw[Co1At1Ch9]
+979.189 -0.118577 0.0 !Mu1ChX10TRaw[Co1At1Ch10]
+975.579 -0.118143 0.0 !Mu1ChX11TRaw[Co1At1Ch11]
+974.976 -0.118071 0.0 !Mu1ChX12TRaw[Co1At1Ch12]
+986.971 -0.11954 0.0 !Mu1ChX13TRaw[Co1At1Ch13]
+987.598 -0.119597 0.0 !Mu1ChX14TRaw[Co1At1Ch14]
+984.568 -0.119236 0.0 !Mu1ChX15TRaw[Co1At1Ch15]
+1372.973 -0.119179 0.0 !Mu1ChX16TRaw[Co1At1Ch16]
+923.467 -0.111777 0.0 !Mu1ChX17TRaw[Co1At2Ch1]
+946.364 -0.114612 0.0 !Mu1ChX18TRaw[Co1At2Ch2]
+947.332 -0.114738 0.0 !Mu1ChX19TRaw[Co1At2Ch3]
+944.888 -0.114439 0.0 !Mu1ChX20TRaw[Co1At2Ch4]
+953.159 -0.115464 0.0 !Mu1ChX21TRaw[Co1At2Ch5]
+966.344 -0.117052 0.0 !Mu1ChX22TRaw[Co1At2Ch6]
+955.696 -0.115762 0.0 !Mu1ChX23TRaw[Co1At2Ch7]
+972.037 -0.117739 0.0 !Mu1ChX24TRaw[Co1At2Ch8]
+970.293 -0.117531 0.0 !Mu1ChX25TRaw[Co1At2Ch9]
+973.488 -0.117923 0.0 !Mu1ChX26TRaw[Co1At2Ch10]
+972.127 -0.117737 0.0 !Mu1ChX27TRaw[Co1At2Ch11]
+975.787 -0.11821 0.0 !Mu1ChX28TRaw[Co1At2Ch12]
+979.747 -0.118677 0.0 !Mu1ChX29TRaw[Co1At2Ch13]
+976.712 -0.118324 0.0 !Mu1ChX30TRaw[Co1At2Ch14]
+975.597 -0.118198 0.0 !Mu1ChX31TRaw[Co1At2Ch15]
+985.963 -0.119148 0.0 !Mu1ChX32TRaw[Co1At2Ch16]
+876.811 -0.106165 0.0 !Mu1ChX33TRaw[Co1At3Ch1]
+876.545 -0.10618 0.0 !Mu1ChX34TRaw[Co1At3Ch2]
+892.001 -0.108064 0.0 !Mu1ChX35TRaw[Co1At3Ch3]
+874.616 -0.105941 0.0 !Mu1ChX36TRaw[Co1At3Ch4]
+892.416 -0.108105 0.0 !Mu1ChX37TRaw[Co1At3Ch5]
+898.265 -0.108823 0.0 !Mu1ChX38TRaw[Co1At3Ch6]
+890.792 -0.107861 0.0 !Mu1ChX39TRaw[Co1At3Ch7]
+895.216 -0.10842 0.0 !Mu1ChX40TRaw[Co1At3Ch8]
+898.199 -0.108779 0.0 !Mu1ChX41TRaw[Co1At3Ch9]
+897.973 -0.108754 0.0 !Mu1ChX42TRaw[Co1At3Ch10]
+906.608 -0.109783 0.0 !Mu1ChX43TRaw[Co1At3Ch11]
+898.647 -0.108855 0.0 !Mu1ChX44TRaw[Co1At3Ch12]
+908.198 -0.110019 0.0 !Mu1ChX45TRaw[Co1At3Ch13]
+906.575 -0.109854 0.0 !Mu1ChX46TRaw[Co1At3Ch14]
+904.122 -0.109528 0.0 !Mu1ChX47TRaw[Co1At3Ch15]
+914.575 -0.110055 0.0 !Mu1ChX48TRaw[Co1At3Ch16]
+866.597 -0.104838 0.0 !Mu1ChX49TRaw[Co1At4Ch1]
+871.749 -0.105455 0.0 !Mu1ChX50TRaw[Co1At4Ch2]
+884.4 -0.107015 0.0 !Mu1ChX51TRaw[Co1At4Ch3]
+886.929 -0.107338 0.0 !Mu1ChX52TRaw[Co1At4Ch4]
+889.876 -0.107685 0.0 !Mu1ChX53TRaw[Co1At4Ch5]
+889.99 -0.107699 0.0 !Mu1ChX54TRaw[Co1At4Ch6]
+893.89 -0.10819 0.0 !Mu1ChX55TRaw[Co1At4Ch7]
+899.669 -0.108878 0.0 !Mu1ChX56TRaw[Co1At4Ch8]
+906.305 -0.1097 0.0 !Mu1ChX57TRaw[Co1At4Ch9]
+901.881 -0.10916 0.0 !Mu1ChX58TRaw[Co1At4Ch10]
+910.66 -0.110244 0.0 !Mu1ChX59TRaw[Co1At4Ch11]
+903.129 -0.109308 0.0 !Mu1ChX60TRaw[Co1At4Ch12]
+916.043 -0.110894 0.0 !Mu1ChX61TRaw[Co1At4Ch13]
+907.46 -0.109867 0.0 !Mu1ChX62TRaw[Co1At4Ch14]
+906.967 -0.109791 0.0 !Mu1ChX63TRaw[Co1At4Ch15]
+914.934 -0.110777 0.0 !Mu1ChX64TRaw[Co1At4Ch16]
+948.25 -0.114723 0.0 !Mu1ChX65TRaw[Co2At1Ch1]
+949.924 -0.114949 0.0 !Mu1ChX66TRaw[Co2At1Ch2]
+963.54 -0.116629 0.0 !Mu1ChX67TRaw[Co2At1Ch3]
+963.146 -0.116557 0.0 !Mu1ChX68TRaw[Co2At1Ch4]
+965.288 -0.116827 0.0 !Mu1ChX69TRaw[Co2At1Ch5]
+973.464 -0.117811 0.0 !Mu1ChX70TRaw[Co2At1Ch6]
+973.072 -0.117758 0.0 !Mu1ChX71TRaw[Co2At1Ch7]
+978.285 -0.118392 0.0 !Mu1ChX72TRaw[Co2At1Ch8]
+975.7 -0.118063 0.0 !Mu1ChX73TRaw[Co2At1Ch9]
+990.499 -0.119853 0.0 !Mu1ChX74TRaw[Co2At1Ch10]
+986.492 -0.119377 0.0 !Mu1ChX75TRaw[Co2At1Ch11]
+984.574 -0.119141 0.0 !Mu1ChX76TRaw[Co2At1Ch12]
+991.565 -0.119982 0.0 !Mu1ChX77TRaw[Co2At1Ch13]
+993.409 -0.120199 0.0 !Mu1ChX78TRaw[Co2At1Ch14]
+993.405 -0.1202 0.0 !Mu1ChX79TRaw[Co2At1Ch15]
+1375.093 -0.120722 0.0 !Mu1ChX80TRaw[Co2At1Ch16]
+973.672 -0.117775 0.0 !Mu1ChX81TRaw[Co2At2Ch1]
+975.656 -0.118024 0.0 !Mu1ChX82TRaw[Co2At2Ch2]
+980.777 -0.118652 0.0 !Mu1ChX83TRaw[Co2At2Ch3]
+994.253 -0.120307 0.0 !Mu1ChX84TRaw[Co2At2Ch4]
+993.689 -0.120215 0.0 !Mu1ChX85TRaw[Co2At2Ch5]
+1003.133 -0.121389 0.0 !Mu1ChX86TRaw[Co2At2Ch6]
+1004.549 -0.121554 0.0 !Mu1ChX87TRaw[Co2At2Ch7]
+996.426 -0.12057 0.0 !Mu1ChX88TRaw[Co2At2Ch8]
+1010.914 -0.122345 0.0 !Mu1ChX89TRaw[Co2At2Ch9]
+1013.245 -0.12261 0.0 !Mu1ChX90TRaw[Co2At2Ch10]
+1008.761 -0.122082 0.0 !Mu1ChX91TRaw[Co2At2Ch11]
+1014.832 -0.12282 0.0 !Mu1ChX92TRaw[Co2At2Ch12]
+1014.498 -0.12279 0.0 !Mu1ChX93TRaw[Co2At2Ch13]
+1017.247 -0.123127 0.0 !Mu1ChX94TRaw[Co2At2Ch14]
+1017.053 -0.123096 0.0 !Mu1ChX95TRaw[Co2At2Ch15]
+1005.005 -0.12163 0.0 !Mu1ChX96TRaw[Co2At2Ch16]
+889.381 -0.107613 0.0 !Mu1ChX97TRaw[Co2At3Ch1]
+887.557 -0.107373 0.0 !Mu1ChX98TRaw[Co2At3Ch2]
+891.215 -0.107838 0.0 !Mu1ChX99TRaw[Co2At3Ch3]
+902.575 -0.109224 0.0 !Mu1ChX100TRaw[Co2At3Ch4]
+902.42 -0.1092 0.0 !Mu1ChX101TRaw[Co2At3Ch5]
+907.423 -0.109791 0.0 !Mu1ChX102TRaw[Co2At3Ch6]
+903.057 -0.109268 0.0 !Mu1ChX103TRaw[Co2At3Ch7]
+918.716 -0.111151 0.0 !Mu1ChX104TRaw[Co2At3Ch8]
+919.908 -0.11128 0.0 !Mu1ChX105TRaw[Co2At3Ch9]
+921.318 -0.111467 0.0 !Mu1ChX106TRaw[Co2At3Ch10]
+926.071 -0.112035 0.0 !Mu1ChX107TRaw[Co2At3Ch11]
+921.56 -0.111519 0.0 !Mu1ChX108TRaw[Co2At3Ch12]
+922.52 -0.111616 0.0 !Mu1ChX109TRaw[Co2At3Ch13]
+914.214 -0.110627 0.0 !Mu1ChX110TRaw[Co2At3Ch14]
+916.863 -0.110941 0.0 !Mu1ChX111TRaw[Co2At3Ch15]
+923.589 -0.11176 0.0 !Mu1ChX112TRaw[Co2At3Ch16]
+897.734 -0.108476 0.0 !Mu1ChX113TRaw[Co2At4Ch1]
+898.559 -0.108567 0.0 !Mu1ChX114TRaw[Co2At4Ch2]
+905.814 -0.10946 0.0 !Mu1ChX115TRaw[Co2At4Ch3]
+911.34 -0.110136 0.0 !Mu1ChX116TRaw[Co2At4Ch4]
+926.296 -0.111977 0.0 !Mu1ChX117TRaw[Co2At4Ch5]
+920.798 -0.111304 0.0 !Mu1ChX118TRaw[Co2At4Ch6]
+933.021 -0.112781 0.0 !Mu1ChX119TRaw[Co2At4Ch7]
+915.505 -0.110659 0.0 !Mu1ChX120TRaw[Co2At4Ch8]
+921.016 -0.111325 0.0 !Mu1ChX121TRaw[Co2At4Ch9]
+928.534 -0.112226 0.0 !Mu1ChX122TRaw[Co2At4Ch10]
+929.497 -0.11236 0.0 !Mu1ChX123TRaw[Co2At4Ch11]
+924.762 -0.111775 0.0 !Mu1ChX124TRaw[Co2At4Ch12]
+922.227 -0.111483 0.0 !Mu1ChX125TRaw[Co2At4Ch13]
+928.191 -0.112193 0.0 !Mu1ChX126TRaw[Co2At4Ch14]
+931.474 -0.112614 0.0 !Mu1ChX127TRaw[Co2At4Ch15]
+925.471 -0.111864 0.0 !Mu1ChX128TRaw[Co2At4Ch16]
+931.94 -0.11282 0.0 !Mu1ChY1TRaw[Co3At1Ch1]
+933.419 -0.113022 0.0 !Mu1ChY2TRaw[Co3At1Ch2]
+944.335 -0.114361 0.0 !Mu1ChY3TRaw[Co3At1Ch3]
+948.282 -0.114834 0.0 !Mu1ChY4TRaw[Co3At1Ch4]
+950.668 -0.115122 0.0 !Mu1ChY5TRaw[Co3At1Ch5]
+954.097 -0.115533 0.0 !Mu1ChY6TRaw[Co3At1Ch6]
+957.465 -0.115938 0.0 !Mu1ChY7TRaw[Co3At1Ch7]
+947.485 -0.114726 0.0 !Mu1ChY8TRaw[Co3At1Ch8]
+954.773 -0.11562 0.0 !Mu1ChY9TRaw[Co3At1Ch9]
+965.117 -0.116854 0.0 !Mu1ChY10TRaw[Co3At1Ch10]
+960.979 -0.116368 0.0 !Mu1ChY11TRaw[Co3At1Ch11]
+968.885 -0.117327 0.0 !Mu1ChY12TRaw[Co3At1Ch12]
+969.205 -0.117358 0.0 !Mu1ChY13TRaw[Co3At1Ch13]
+964.875 -0.116827 0.0 !Mu1ChY14TRaw[Co3At1Ch14]
+966.13 -0.116981 0.0 !Mu1ChY15TRaw[Co3At1Ch15]
+963.905 -0.116717 0.0 !Mu1ChY16TRaw[Co3At1Ch16]
+965.786 -0.116883 0.0 !Mu1ChY17TRaw[Co3At2Ch1]
+967.594 -0.117128 0.0 !Mu1ChY18TRaw[Co3At2Ch2]
+972.057 -0.117665 0.0 !Mu1ChY19TRaw[Co3At2Ch3]
+972.548 -0.117743 0.0 !Mu1ChY20TRaw[Co3At2Ch4]
+984.011 -0.119146 0.0 !Mu1ChY21TRaw[Co3At2Ch5]
+980.785 -0.118747 0.0 !Mu1ChY22TRaw[Co3At2Ch6]
+1411.968 -0.119189 0.0 !Mu1ChY23TRaw[Co3At2Ch7]
+990.581 -0.119964 0.0 !Mu1ChY24TRaw[Co3At2Ch8]
+992.06 -0.120158 0.0 !Mu1ChY25TRaw[Co3At2Ch9]
+992.298 -0.120176 0.0 !Mu1ChY26TRaw[Co3At2Ch10]
+996.629 -0.120728 0.0 !Mu1ChY27TRaw[Co3At2Ch11]
+991.657 -0.120113 0.0 !Mu1ChY28TRaw[Co3At2Ch12]
+993.497 -0.120339 0.0 !Mu1ChY29TRaw[Co3At2Ch13]
+984.983 -0.119308 0.0 !Mu1ChY30TRaw[Co3At2Ch14]
+991.5 -0.120108 0.0 !Mu1ChY31TRaw[Co3At2Ch15]
+986.361 -0.119515 0.0 !Mu1ChY32TRaw[Co3At2Ch16]
+880.913 -0.106691 0.0 !Mu1ChY33TRaw[Co3At3Ch1]
+886.95 -0.10745 0.0 !Mu1ChY34TRaw[Co3At3Ch2]
+882.111 -0.106848 0.0 !Mu1ChY35TRaw[Co3At3Ch3]
+892.446 -0.108037 0.0 !Mu1ChY36TRaw[Co3At3Ch4]
+850617233730.0 -103827000.0 0.0 !Mu1ChY37TRaw[Co3At3Ch5]
+901.892 -0.109433 0.0 !Mu1ChY38TRaw[Co3At3Ch6]
+901.618 -0.110242 0.0 !Mu1ChY39TRaw[Co3At3Ch7]
+903.618 -0.10944 0.0 !Mu1ChY40TRaw[Co3At3Ch8]
+891.626 -0.107957 0.0 !Mu1ChY41TRaw[Co3At3Ch9]
+904.118 -0.109521 0.0 !Mu1ChY42TRaw[Co3At3Ch10]
+896.877 -0.108623 0.0 !Mu1ChY43TRaw[Co3At3Ch11]
+905.223 -0.10969 0.0 !Mu1ChY44TRaw[Co3At3Ch12]
+908.248 -0.109989 0.0 !Mu1ChY45TRaw[Co3At3Ch13]
+901.992 -0.109312 0.0 !Mu1ChY46TRaw[Co3At3Ch14]
+907.207 -0.109844 0.0 !Mu1ChY47TRaw[Co3At3Ch15]
+902.152 -0.109257 0.0 !Mu1ChY48TRaw[Co3At3Ch16]
+884.358 -0.10696 0.0 !Mu1ChY49TRaw[Co3At4Ch1]
+883.358 -0.106852 0.0 !Mu1ChY50TRaw[Co3At4Ch2]
+879.778 -0.106436 0.0 !Mu1ChY51TRaw[Co3At4Ch3]
+893.05 -0.108049 0.0 !Mu1ChY52TRaw[Co3At4Ch4]
+898.719 -0.108781 0.0 !Mu1ChY53TRaw[Co3At4Ch5]
+900.02 -0.108923 0.0 !Mu1ChY54TRaw[Co3At4Ch6]
+899.923 -0.108922 0.0 !Mu1ChY55TRaw[Co3At4Ch7]
+900.202 -0.108949 0.0 !Mu1ChY56TRaw[Co3At4Ch8]
+912.083 -0.110395 0.0 !Mu1ChY57TRaw[Co3At4Ch9]
+911.216 -0.110294 0.0 !Mu1ChY58TRaw[Co3At4Ch10]
+906.57 -0.109746 0.0 !Mu1ChY59TRaw[Co3At4Ch11]
+909.553 -0.109802 0.0 !Mu1ChY60TRaw[Co3At4Ch12]
+906.64 -0.109742 0.0 !Mu1ChY61TRaw[Co3At4Ch13]
+914.633 -0.11072 0.0 !Mu1ChY62TRaw[Co3At4Ch14]
+915.986 -0.110879 0.0 !Mu1ChY63TRaw[Co3At4Ch15]
+916.947 -0.111037 0.0 !Mu1ChY64TRaw[Co3At4Ch16]
+946.849 -0.115194 0.0 !Mu1ChY65TRaw[Co4At1Ch1]
+953.538 -0.116053 0.0 !Mu1ChY66TRaw[Co4At1Ch2]
+959.656 -0.116788 0.0 !Mu1ChY67TRaw[Co4At1Ch3]
+963.122 -0.117211 0.0 !Mu1ChY68TRaw[Co4At1Ch4]
+966.506 -0.117617 0.0 !Mu1ChY69TRaw[Co4At1Ch5]
+974.682 -0.118609 0.0 !Mu1ChY70TRaw[Co4At1Ch6]
+970.103 -0.118053 0.0 !Mu1ChY71TRaw[Co4At1Ch7]
+978.236 -0.119038 0.0 !Mu1ChY72TRaw[Co4At1Ch8]
+979.284 -0.119163 0.0 !Mu1ChY73TRaw[Co4At1Ch9]
+982.439 -0.119552 0.0 !Mu1ChY74TRaw[Co4At1Ch10]
+984.361 -0.119777 0.0 !Mu1ChY75TRaw[Co4At1Ch11]
+981.175 -0.119391 0.0 !Mu1ChY76TRaw[Co4At1Ch12]
+984.681 -0.11981 0.0 !Mu1ChY77TRaw[Co4At1Ch13]
+982.229 -0.119505 0.0 !Mu1ChY78TRaw[Co4At1Ch14]
+982.9 -0.119601 0.0 !Mu1ChY79TRaw[Co4At1Ch15]
+987.91 -0.120194 0.0 !Mu1ChY80TRaw[Co4At1Ch16]
+942.987 -0.114646 0.0 !Mu1ChY81TRaw[Co4At2Ch1]
+951.145 -0.115676 0.0 !Mu1ChY82TRaw[Co4At2Ch2]
+950.113 -0.115551 0.0 !Mu1ChY83TRaw[Co4At2Ch3]
+957.084 -0.116392 0.0 !Mu1ChY84TRaw[Co4At2Ch4]
+956.602 -0.116344 0.0 !Mu1ChY85TRaw[Co4At2Ch5]
+966.808 -0.117589 0.0 !Mu1ChY86TRaw[Co4At2Ch6]
+967.686 -0.117699 0.0 !Mu1ChY87TRaw[Co4At2Ch7]
+974.856 -0.118567 0.0 !Mu1ChY88TRaw[Co4At2Ch8]
+975.823 -0.118705 0.0 !Mu1ChY89TRaw[Co4At2Ch9]
+968.52 -0.117807 0.0 !Mu1ChY90TRaw[Co4At2Ch10]
+973.055 -0.118376 0.0 !Mu1ChY91TRaw[Co4At2Ch11]
+981.007 -0.119333 0.0 !Mu1ChY92TRaw[Co4At2Ch12]
+981.756 -0.119429 0.0 !Mu1ChY93TRaw[Co4At2Ch13]
+974.712 -0.118576 0.0 !Mu1ChY94TRaw[Co4At2Ch14]
+978.546 -0.119031 0.0 !Mu1ChY95TRaw[Co4At2Ch15]
+989.774 -0.120471 0.0 !Mu1ChY96TRaw[Co4At2Ch16]
+872.467 -0.106136 0.0 !Mu1ChY97TRaw[Co4At3Ch1]
+871.126 -0.106 0.0 !Mu1ChY98TRaw[Co4At3Ch2]
+879.223 -0.106555 0.0 !Mu1ChY99TRaw[Co4At3Ch3]
+889.621 -0.108263 0.0 !Mu1ChY100TRaw[Co4At3Ch4]
+887.477 -0.10801 0.0 !Mu1ChY101TRaw[Co4At3Ch5]
+879.614 -0.107044 0.0 !Mu1ChY102TRaw[Co4At3Ch6]
+887.412 -0.108005 0.0 !Mu1ChY103TRaw[Co4At3Ch7]
+890.772 -0.108406 0.0 !Mu1ChY104TRaw[Co4At3Ch8]
+901.139 -0.109653 0.0 !Mu1ChY105TRaw[Co4At3Ch9]
+897.74 -0.10926 0.0 !Mu1ChY106TRaw[Co4At3Ch10]
+901.141 -0.10967 0.0 !Mu1ChY107TRaw[Co4At3Ch11]
+891.801 -0.108536 0.0 !Mu1ChY108TRaw[Co4At3Ch12]
+899.055 -0.109417 0.0 !Mu1ChY109TRaw[Co4At3Ch13]
+906.215 -0.110268 0.0 !Mu1ChY110TRaw[Co4At3Ch14]
+896.475 -0.109108 0.0 !Mu1ChY111TRaw[Co4At3Ch15]
+902.411 -0.109824 0.0 !Mu1ChY112TRaw[Co4At3Ch16]
+858.672 -0.104291 0.0 !Mu1ChY113TRaw[Co4At4Ch1]
+852.315 -0.103549 0.0 !Mu1ChY114TRaw[Co4At4Ch2]
+862.508 -0.104798 0.0 !Mu1ChY115TRaw[Co4At4Ch3]
+857.467 -0.10419 0.0 !Mu1ChY116TRaw[Co4At4Ch4]
+865.939 -0.105221 0.0 !Mu1ChY117TRaw[Co4At4Ch5]
+875.287 -0.106354 0.0 !Mu1ChY118TRaw[Co4At4Ch6]
+879.686 -0.1069 0.0 !Mu1ChY119TRaw[Co4At4Ch7]
+874.387 -0.106252 0.0 !Mu1ChY120TRaw[Co4At4Ch8]
+891.804 -0.108379 0.0 !Mu1ChY121TRaw[Co4At4Ch9]
+892.804 -0.108492 0.0 !Mu1ChY122TRaw[Co4At4Ch10]
+890.606 -0.108225 0.0 !Mu1ChY123TRaw[Co4At4Ch11]
+889.753 -0.108132 0.0 !Mu1ChY124TRaw[Co4At4Ch12]
+892.005 -0.108412 0.0 !Mu1ChY125TRaw[Co4At4Ch13]
+887.457 -0.10784 0.0 !Mu1ChY126TRaw[Co4At4Ch14]
+888.428 -0.107526 0.0 !Mu1ChY127TRaw[Co4At4Ch15]
+948.968 -0.121191 0.0 !Mu1ChY128TRaw[Co4At4Ch16]
+937.964 -0.113282 0.0 !Mu2ChX1TRaw[Co1At1Ch1]
+934.802 -0.112935 0.0 !Mu2ChX2TRaw[Co1At1Ch2]
+942.616 -0.113903 0.0 !Mu2ChX3TRaw[Co1At1Ch3]
+955.004 -0.11541 0.0 !Mu2ChX4TRaw[Co1At1Ch4]
+950.266 -0.114834 0.0 !Mu2ChX5TRaw[Co1At1Ch5]
+967.873 -0.116968 0.0 !Mu2ChX6TRaw[Co1At1Ch6]
+961.34 -0.116144 0.0 !Mu2ChX7TRaw[Co1At1Ch7]
+966.227 -0.116738 0.0 !Mu2ChX8TRaw[Co1At1Ch8]
+958.079 -0.115736 0.0 !Mu2ChX9TRaw[Co1At1Ch9]
+969.979 -0.117191 0.0 !Mu2ChX10TRaw[Co1At1Ch10]
+977.513 -0.117505 0.0 !Mu2ChX11TRaw[Co1At1Ch11]
+967.3 -0.116868 0.0 !Mu2ChX12TRaw[Co1At1Ch12]
+973.198 -0.117596 0.0 !Mu2ChX13TRaw[Co1At1Ch13]
+967.359 -0.116864 0.0 !Mu2ChX14TRaw[Co1At1Ch14]
+967.676 -0.116934 0.0 !Mu2ChX15TRaw[Co1At1Ch15]
+1368.197 -0.118078 0.0 !Mu2ChX16TRaw[Co1At1Ch16]
+919.75 -0.111042 0.0 !Mu2ChX17TRaw[Co1At2Ch1]
+934.845 -0.1129 0.0 !Mu2ChX18TRaw[Co1At2Ch2]
+937.652 -0.113239 0.0 !Mu2ChX19TRaw[Co1At2Ch3]
+936.647 -0.11311 0.0 !Mu2ChX20TRaw[Co1At2Ch4]
+947.463 -0.114433 0.0 !Mu2ChX21TRaw[Co1At2Ch5]
+947.515 -0.113893 0.0 !Mu2ChX22TRaw[Co1At2Ch6]
+945.354 -0.113604 0.0 !Mu2ChX23TRaw[Co1At2Ch7]
+949.129 -0.114596 0.0 !Mu2ChX24TRaw[Co1At2Ch8]
+940.238 -0.113523 0.0 !Mu2ChX25TRaw[Co1At2Ch9]
+948.581 -0.114529 0.0 !Mu2ChX26TRaw[Co1At2Ch10]
+949.163 -0.114587 0.0 !Mu2ChX27TRaw[Co1At2Ch11]
+945.26 -0.114127 0.0 !Mu2ChX28TRaw[Co1At2Ch12]
+952.83 -0.115049 0.0 !Mu2ChX29TRaw[Co1At2Ch13]
+949.046 -0.114577 0.0 !Mu2ChX30TRaw[Co1At2Ch14]
+950.717 -0.114801 0.0 !Mu2ChX31TRaw[Co1At2Ch15]
+1130.766 -0.114725 0.0 !Mu2ChX32TRaw[Co1At2Ch16]
+885.102 -0.106884 0.0 !Mu2ChX33TRaw[Co1At3Ch1]
+882.432 -0.106588 0.0 !Mu2ChX34TRaw[Co1At3Ch2]
+891.72 -0.10771 0.0 !Mu2ChX35TRaw[Co1At3Ch3]
+889.058 -0.10739 0.0 !Mu2ChX36TRaw[Co1At3Ch4]
+902.436 -0.109058 0.0 !Mu2ChX37TRaw[Co1At3Ch5]
+899.526 -0.108685 0.0 !Mu2ChX38TRaw[Co1At3Ch6]
+907.458 -0.109605 0.0 !Mu2ChX39TRaw[Co1At3Ch7]
+904.064 -0.109211 0.0 !Mu2ChX40TRaw[Co1At3Ch8]
+903.964 -0.109168 0.0 !Mu2ChX41TRaw[Co1At3Ch9]
+907.259 -0.109617 0.0 !Mu2ChX42TRaw[Co1At3Ch10]
+914.019 -0.1104 0.0 !Mu2ChX43TRaw[Co1At3Ch11]
+912.823 -0.110254 0.0 !Mu2ChX44TRaw[Co1At3Ch12]
+920.768 -0.111219 0.0 !Mu2ChX45TRaw[Co1At3Ch13]
+919.333 -0.111043 0.0 !Mu2ChX46TRaw[Co1At3Ch14]
+921.925 -0.111378 0.0 !Mu2ChX47TRaw[Co1At3Ch15]
+1304.594 -0.11089 0.0 !Mu2ChX48TRaw[Co1At3Ch16]
+854.163 -0.102956 0.0 !Mu2ChX49TRaw[Co1At4Ch1]
+864.061 -0.104191 0.0 !Mu2ChX50TRaw[Co1At4Ch2]
+873.658 -0.105362 0.0 !Mu2ChX51TRaw[Co1At4Ch3]
+867.698 -0.10464 0.0 !Mu2ChX52TRaw[Co1At4Ch4]
+876.619 -0.105723 0.0 !Mu2ChX53TRaw[Co1At4Ch5]
+876.856 -0.105755 0.0 !Mu2ChX54TRaw[Co1At4Ch6]
+879.033 -0.105984 0.0 !Mu2ChX55TRaw[Co1At4Ch7]
+886.677 -0.106931 0.0 !Mu2ChX56TRaw[Co1At4Ch8]
+895.667 -0.108024 0.0 !Mu2ChX57TRaw[Co1At4Ch9]
+898.221 -0.108307 0.0 !Mu2ChX58TRaw[Co1At4Ch10]
+889.656 -0.107279 0.0 !Mu2ChX59TRaw[Co1At4Ch11]
+900.043 -0.108543 0.0 !Mu2ChX60TRaw[Co1At4Ch12]
+901.375 -0.108721 0.0 !Mu2ChX61TRaw[Co1At4Ch13]
+900.963 -0.108665 0.0 !Mu2ChX62TRaw[Co1At4Ch14]
+897.506 -0.10824 0.0 !Mu2ChX63TRaw[Co1At4Ch15]
+1288.067 -0.107885 0.0 !Mu2ChX64TRaw[Co1At4Ch16]
+970.625 -0.117533 0.0 !Mu2ChX65TRaw[Co2At1Ch1]
+970.595 -0.117545 0.0 !Mu2ChX66TRaw[Co2At1Ch2]
+982.177 -0.118957 0.0 !Mu2ChX67TRaw[Co2At1Ch3]
+987.216 -0.119584 0.0 !Mu2ChX68TRaw[Co2At1Ch4]
+450.0 -0.119902 0.0 !Mu2ChX69TRaw[Co2At1Ch5]
+990.894 -0.12002 0.0 !Mu2ChX70TRaw[Co2At1Ch6]
+992.154 -0.120171 0.0 !Mu2ChX71TRaw[Co2At1Ch7]
+997.339 -0.120802 0.0 !Mu2ChX72TRaw[Co2At1Ch8]
+990.584 -0.119977 0.0 !Mu2ChX73TRaw[Co2At1Ch9]
+999.436 -0.12102 0.0 !Mu2ChX74TRaw[Co2At1Ch10]
+995.246 -0.12055 0.0 !Mu2ChX75TRaw[Co2At1Ch11]
+994.968 -0.12048 0.0 !Mu2ChX76TRaw[Co2At1Ch12]
+1004.63 -0.121688 0.0 !Mu2ChX77TRaw[Co2At1Ch13]
+1008.287 -0.122136 0.0 !Mu2ChX78TRaw[Co2At1Ch14]
+1011.093 -0.122472 0.0 !Mu2ChX79TRaw[Co2At1Ch15]
+1313.045 -0.121488 0.0 !Mu2ChX80TRaw[Co2At1Ch16]
+951.945 -0.115148 0.0 !Mu2ChX81TRaw[Co2At2Ch1]
+962.843 -0.116512 0.0 !Mu2ChX82TRaw[Co2At2Ch2]
+964.811 -0.116735 0.0 !Mu2ChX83TRaw[Co2At2Ch3]
+968.199 -0.117158 0.0 !Mu2ChX84TRaw[Co2At2Ch4]
+968.188 -0.117159 0.0 !Mu2ChX85TRaw[Co2At2Ch5]
+969.593 -0.117336 0.0 !Mu2ChX86TRaw[Co2At2Ch6]
+983.185 -0.118997 0.0 !Mu2ChX87TRaw[Co2At2Ch7]
+982.502 -0.118879 0.0 !Mu2ChX88TRaw[Co2At2Ch8]
+992.909 -0.120152 0.0 !Mu2ChX89TRaw[Co2At2Ch9]
+992.748 -0.120143 0.0 !Mu2ChX90TRaw[Co2At2Ch10]
+991.638 -0.120011 0.0 !Mu2ChX91TRaw[Co2At2Ch11]
+982.075 -0.118788 0.0 !Mu2ChX92TRaw[Co2At2Ch12]
+996.694 -0.120614 0.0 !Mu2ChX93TRaw[Co2At2Ch13]
+1000.609 -0.12112 0.0 !Mu2ChX94TRaw[Co2At2Ch14]
+1001.537 -0.12123 0.0 !Mu2ChX95TRaw[Co2At2Ch15]
+986.471 -0.119394 0.0 !Mu2ChX96TRaw[Co2At2Ch16]
+899.901 -0.10895 0.0 !Mu2ChX97TRaw[Co2At3Ch1]
+916.701 -0.11099 0.0 !Mu2ChX98TRaw[Co2At3Ch2]
+912.456 -0.110483 0.0 !Mu2ChX99TRaw[Co2At3Ch3]
+912.701 -0.110494 0.0 !Mu2ChX100TRaw[Co2At3Ch4]
+921.872 -0.11163 0.0 !Mu2ChX101TRaw[Co2At3Ch5]
+921.335 -0.111573 0.0 !Mu2ChX102TRaw[Co2At3Ch6]
+919.772 -0.111368 0.0 !Mu2ChX103TRaw[Co2At3Ch7]
+924.049 -0.111888 0.0 !Mu2ChX104TRaw[Co2At3Ch8]
+934.177 -0.113122 0.0 !Mu2ChX105TRaw[Co2At3Ch9]
+931.202 -0.112764 0.0 !Mu2ChX106TRaw[Co2At3Ch10]
+936.118 -0.113373 0.0 !Mu2ChX107TRaw[Co2At3Ch11]
+931.356 -0.112797 0.0 !Mu2ChX108TRaw[Co2At3Ch12]
+934.62 -0.113176 0.0 !Mu2ChX109TRaw[Co2At3Ch13]
+941.116 -0.113973 0.0 !Mu2ChX110TRaw[Co2At3Ch14]
+941.858 -0.114066 0.0 !Mu2ChX111TRaw[Co2At3Ch15]
+941.193 -0.113973 0.0 !Mu2ChX112TRaw[Co2At3Ch16]
+901.356 -0.108961 0.0 !Mu2ChX113TRaw[Co2At4Ch1]
+905.904 -0.109531 0.0 !Mu2ChX114TRaw[Co2At4Ch2]
+913.578 -0.110461 0.0 !Mu2ChX115TRaw[Co2At4Ch3]
+913.318 -0.110414 0.0 !Mu2ChX116TRaw[Co2At4Ch4]
+928.72 -0.112323 0.0 !Mu2ChX117TRaw[Co2At4Ch5]
+931.683 -0.11267 0.0 !Mu2ChX118TRaw[Co2At4Ch6]
+937.114 -0.113333 0.0 !Mu2ChX119TRaw[Co2At4Ch7]
+940.124 -0.113698 0.0 !Mu2ChX120TRaw[Co2At4Ch8]
+939.916 -0.113666 0.0 !Mu2ChX121TRaw[Co2At4Ch9]
+948.657 -0.114745 0.0 !Mu2ChX122TRaw[Co2At4Ch10]
+939.964 -0.113673 0.0 !Mu2ChX123TRaw[Co2At4Ch11]
+946.195 -0.11443 0.0 !Mu2ChX124TRaw[Co2At4Ch12]
+935.769 -0.113174 0.0 !Mu2ChX125TRaw[Co2At4Ch13]
+935.549 -0.113143 0.0 !Mu2ChX126TRaw[Co2At4Ch14]
+944.149 -0.114176 0.0 !Mu2ChX127TRaw[Co2At4Ch15]
+944.397 -0.114186 0.0 !Mu2ChX128TRaw[Co2At4Ch16]
+988.419 -0.119525 0.0 !Mu2ChY1TRaw[Co3At1Ch1]
+991.309 -0.119903 0.0 !Mu2ChY2TRaw[Co3At1Ch2]
+990.03 -0.119776 0.0 !Mu2ChY3TRaw[Co3At1Ch3]
+996.324 -0.120524 0.0 !Mu2ChY4TRaw[Co3At1Ch4]
+1001.697 -0.121165 0.0 !Mu2ChY5TRaw[Co3At1Ch5]
+999.789 -0.120947 0.0 !Mu2ChY6TRaw[Co3At1Ch6]
+1004.703 -0.121526 0.0 !Mu2ChY7TRaw[Co3At1Ch7]
+1011.722 -0.122366 0.0 !Mu2ChY8TRaw[Co3At1Ch8]
+1013.114 -0.122539 0.0 !Mu2ChY9TRaw[Co3At1Ch9]
+1004.782 -0.121307 0.0 !Mu2ChY10TRaw[Co3At1Ch10]
+1011.11 -0.122275 0.0 !Mu2ChY11TRaw[Co3At1Ch11]
+1016.173 -0.122898 0.0 !Mu2ChY12TRaw[Co3At1Ch12]
+1018.106 -0.12312 0.0 !Mu2ChY13TRaw[Co3At1Ch13]
+1023.198 -0.123746 0.0 !Mu2ChY14TRaw[Co3At1Ch14]
+1022.258 -0.123621 0.0 !Mu2ChY15TRaw[Co3At1Ch15]
+1023.505 -0.123744 0.0 !Mu2ChY16TRaw[Co3At1Ch16]
+940.868 -0.113632 0.0 !Mu2ChY17TRaw[Co3At2Ch1]
+940.208 -0.11359 0.0 !Mu2ChY18TRaw[Co3At2Ch2]
+939.802 -0.113546 0.0 !Mu2ChY19TRaw[Co3At2Ch3]
+939.415 -0.113526 0.0 !Mu2ChY20TRaw[Co3At2Ch4]
+954.508 -0.115367 0.0 !Mu2ChY21TRaw[Co3At2Ch5]
+970.22 -0.117305 0.0 !Mu2ChY22TRaw[Co3At2Ch6]
+966.365 -0.11682 0.0 !Mu2ChY23TRaw[Co3At2Ch7]
+961.254 -0.116216 0.0 !Mu2ChY24TRaw[Co3At2Ch8]
+976.91 -0.118134 0.0 !Mu2ChY25TRaw[Co3At2Ch9]
+979.589 -0.118446 0.0 !Mu2ChY26TRaw[Co3At2Ch10]
+976.797 -0.117858 0.0 !Mu2ChY27TRaw[Co3At2Ch11]
+983.447 -0.11895 0.0 !Mu2ChY28TRaw[Co3At2Ch12]
+977.618 -0.118238 0.0 !Mu2ChY29TRaw[Co3At2Ch13]
+979.391 -0.118468 0.0 !Mu2ChY30TRaw[Co3At2Ch14]
+978.252 -0.118337 0.0 !Mu2ChY31TRaw[Co3At2Ch15]
+966.295 -0.116905 0.0 !Mu2ChY32TRaw[Co3At2Ch16]
+870.957 -0.105393 0.0 !Mu2ChY33TRaw[Co3At3Ch1]
+877.667 -0.106206 0.0 !Mu2ChY34TRaw[Co3At3Ch2]
+890.089 -0.107711 0.0 !Mu2ChY35TRaw[Co3At3Ch3]
+891.541 -0.10786 0.0 !Mu2ChY36TRaw[Co3At3Ch4]
+894.923 -0.108297 0.0 !Mu2ChY37TRaw[Co3At3Ch5]
+889.591 -0.107628 0.0 !Mu2ChY38TRaw[Co3At3Ch6]
+905.752 -0.109574 0.0 !Mu2ChY39TRaw[Co3At3Ch7]
+904.406 -0.109401 0.0 !Mu2ChY40TRaw[Co3At3Ch8]
+907.053 -0.109756 0.0 !Mu2ChY41TRaw[Co3At3Ch9]
+911.851 -0.110304 0.0 !Mu2ChY42TRaw[Co3At3Ch10]
+907.651 -0.10979 0.0 !Mu2ChY43TRaw[Co3At3Ch11]
+911.108 -0.110231 0.0 !Mu2ChY44TRaw[Co3At3Ch12]
+913.761 -0.110532 0.0 !Mu2ChY45TRaw[Co3At3Ch13]
+916.948 -0.110907 0.0 !Mu2ChY46TRaw[Co3At3Ch14]
+920.785 -0.111371 0.0 !Mu2ChY47TRaw[Co3At3Ch15]
+915.98 -0.110791 0.0 !Mu2ChY48TRaw[Co3At3Ch16]
+894.218 -0.108016 0.0 !Mu2ChY49TRaw[Co3At4Ch1]
+903.46 -0.109155 0.0 !Mu2ChY50TRaw[Co3At4Ch2]
+900.687 -0.108834 0.0 !Mu2ChY51TRaw[Co3At4Ch3]
+914.194 -0.110471 0.0 !Mu2ChY52TRaw[Co3At4Ch4]
+906.942 -0.109622 0.0 !Mu2ChY53TRaw[Co3At4Ch5]
+915.734 -0.110708 0.0 !Mu2ChY54TRaw[Co3At4Ch6]
+919.347 -0.111116 0.0 !Mu2ChY55TRaw[Co3At4Ch7]
+914.796 -0.11061 0.0 !Mu2ChY56TRaw[Co3At4Ch8]
+927.679 -0.11216 0.0 !Mu2ChY57TRaw[Co3At4Ch9]
+918.908 -0.111079 0.0 !Mu2ChY58TRaw[Co3At4Ch10]
+921.274 -0.111393 0.0 !Mu2ChY59TRaw[Co3At4Ch11]
+925.153 -0.11168 0.0 !Mu2ChY60TRaw[Co3At4Ch12]
+941.38 -0.11386 0.0 !Mu2ChY61TRaw[Co3At4Ch13]
+926.865 -0.112068 0.0 !Mu2ChY62TRaw[Co3At4Ch14]
+922.781 -0.111623 0.0 !Mu2ChY63TRaw[Co3At4Ch15]
+930.67 -0.112593 0.0 !Mu2ChY64TRaw[Co3At4Ch16]
+925.368 -0.111864 0.0 !Mu2ChY65TRaw[Co4At1Ch1]
+944.623 -0.114242 0.0 !Mu2ChY66TRaw[Co4At1Ch2]
+948.999 -0.114763 0.0 !Mu2ChY67TRaw[Co4At1Ch3]
+946.624 -0.114477 0.0 !Mu2ChY68TRaw[Co4At1Ch4]
+973.069 -0.117701 0.0 !Mu2ChY69TRaw[Co4At1Ch5]
+961.117 -0.116242 0.0 !Mu2ChY70TRaw[Co4At1Ch6]
+968.585 -0.117144 0.0 !Mu2ChY71TRaw[Co4At1Ch7]
+965.491 -0.116783 0.0 !Mu2ChY72TRaw[Co4At1Ch8]
+956.995 -0.115747 0.0 !Mu2ChY73TRaw[Co4At1Ch9]
+959.056 -0.115989 0.0 !Mu2ChY74TRaw[Co4At1Ch10]
+965.378 -0.116762 0.0 !Mu2ChY75TRaw[Co4At1Ch11]
+978.201 -0.118324 0.0 !Mu2ChY76TRaw[Co4At1Ch12]
+974.601 -0.117892 0.0 !Mu2ChY77TRaw[Co4At1Ch13]
+977.184 -0.118194 0.0 !Mu2ChY78TRaw[Co4At1Ch14]
+967.932 -0.117092 0.0 !Mu2ChY79TRaw[Co4At1Ch15]
+969.982 -0.117343 0.0 !Mu2ChY80TRaw[Co4At1Ch16]
+945.503 -0.114246 0.0 !Mu2ChY81TRaw[Co4At2Ch1]
+940.008 -0.113582 0.0 !Mu2ChY82TRaw[Co4At2Ch2]
+952.084 -0.115097 0.0 !Mu2ChY83TRaw[Co4At2Ch3]
+947.747 -0.114574 0.0 !Mu2ChY84TRaw[Co4At2Ch4]
+956.608 -0.115653 0.0 !Mu2ChY85TRaw[Co4At2Ch5]
+966.982 -0.11692 0.0 !Mu2ChY86TRaw[Co4At2Ch6]
+965.2 -0.116695 0.0 !Mu2ChY87TRaw[Co4At2Ch7]
+970.896 -0.117388 0.0 !Mu2ChY88TRaw[Co4At2Ch8]
+973.644 -0.117739 0.0 !Mu2ChY89TRaw[Co4At2Ch9]
+975.622 -0.11797 0.0 !Mu2ChY90TRaw[Co4At2Ch10]
+980.078 -0.118525 0.0 !Mu2ChY91TRaw[Co4At2Ch11]
+970.722 -0.117371 0.0 !Mu2ChY92TRaw[Co4At2Ch12]
+978.458 -0.118331 0.0 !Mu2ChY93TRaw[Co4At2Ch13]
+978.121 -0.118283 0.0 !Mu2ChY94TRaw[Co4At2Ch14]
+985.632 -0.119174 0.0 !Mu2ChY95TRaw[Co4At2Ch15]
+990.218 -0.119806 0.0 !Mu2ChY96TRaw[Co4At2Ch16]
+898.57 -0.108639 0.0 !Mu2ChY97TRaw[Co4At3Ch1]
+894.551 -0.108189 0.0 !Mu2ChY98TRaw[Co4At3Ch2]
+905.095 -0.109474 0.0 !Mu2ChY99TRaw[Co4At3Ch3]
+903.758 -0.109308 0.0 !Mu2ChY100TRaw[Co4At3Ch4]
+917.519 -0.110997 0.0 !Mu2ChY101TRaw[Co4At3Ch5]
+925.257 -0.111938 0.0 !Mu2ChY102TRaw[Co4At3Ch6]
+915.614 -0.110746 0.0 !Mu2ChY103TRaw[Co4At3Ch7]
+931.547 -0.112691 0.0 !Mu2ChY104TRaw[Co4At3Ch8]
+926.069 -0.112025 0.0 !Mu2ChY105TRaw[Co4At3Ch9]
+921.881 -0.111507 0.0 !Mu2ChY106TRaw[Co4At3Ch10]
+923.086 -0.111663 0.0 !Mu2ChY107TRaw[Co4At3Ch11]
+922.824 -0.111623 0.0 !Mu2ChY108TRaw[Co4At3Ch12]
+926.335 -0.112066 0.0 !Mu2ChY109TRaw[Co4At3Ch13]
+927.082 -0.11214 0.0 !Mu2ChY110TRaw[Co4At3Ch14]
+923.411 -0.111703 0.0 !Mu2ChY111TRaw[Co4At3Ch15]
+913.854 -0.110525 0.0 !Mu2ChY112TRaw[Co4At3Ch16]
+853.851 -0.102981 0.0 !Mu2ChY113TRaw[Co4At4Ch1]
+869.801 -0.104976 0.0 !Mu2ChY114TRaw[Co4At4Ch2]
+877.724 -0.105936 0.0 !Mu2ChY115TRaw[Co4At4Ch3]
+876.167 -0.10575 0.0 !Mu2ChY116TRaw[Co4At4Ch4]
+884.266 -0.106741 0.0 !Mu2ChY117TRaw[Co4At4Ch5]
+880.545 -0.10628 0.0 !Mu2ChY118TRaw[Co4At4Ch6]
+893.039 -0.107805 0.0 !Mu2ChY119TRaw[Co4At4Ch7]
+894.497 -0.107966 0.0 !Mu2ChY120TRaw[Co4At4Ch8]
+884.424 -0.106759 0.0 !Mu2ChY121TRaw[Co4At4Ch9]
+897.829 -0.108381 0.0 !Mu2ChY122TRaw[Co4At4Ch10]
+896.269 -0.108195 0.0 !Mu2ChY123TRaw[Co4At4Ch11]
+450.0 -0.108195 0.0 !Mu2ChY124TRaw[Co4At4Ch12]
+898.903 -0.108519 0.0 !Mu2ChY125TRaw[Co4At4Ch13]
+899.839 -0.10863 0.0 !Mu2ChY126TRaw[Co4At4Ch14]
+900.97 -0.108768 0.0 !Mu2ChY127TRaw[Co4At4Ch15]
+897.094 -0.108297 0.0 !Mu2ChY128TRaw[Co4At4Ch16]
+937.544 -0.113591 0.0 !Mu3ChX1TRaw[Co1At1Ch1]
+950.827 -0.115254 0.0 !Mu3ChX2TRaw[Co1At1Ch2]
+955.415 -0.115822 0.0 !Mu3ChX3TRaw[Co1At1Ch3]
+957.318 -0.116042 0.0 !Mu3ChX4TRaw[Co1At1Ch4]
+949.438 -0.115096 0.0 !Mu3ChX5TRaw[Co1At1Ch5]
+963.979 -0.11686 0.0 !Mu3ChX6TRaw[Co1At1Ch6]
+968.338 -0.117385 0.0 !Mu3ChX7TRaw[Co1At1Ch7]
+973.664 -0.118019 0.0 !Mu3ChX8TRaw[Co1At1Ch8]
+971.735 -0.117779 0.0 !Mu3ChX9TRaw[Co1At1Ch9]
+969.438 -0.117496 0.0 !Mu3ChX10TRaw[Co1At1Ch10]
+971.944 -0.117795 0.0 !Mu3ChX11TRaw[Co1At1Ch11]
+984.038 -0.119273 0.0 !Mu3ChX12TRaw[Co1At1Ch12]
+973.915 -0.118031 0.0 !Mu3ChX13TRaw[Co1At1Ch13]
+980.183 -0.118805 0.0 !Mu3ChX14TRaw[Co1At1Ch14]
+977.813 -0.118524 0.0 !Mu3ChX15TRaw[Co1At1Ch15]
+1361.597 -0.119127 0.0 !Mu3ChX16TRaw[Co1At1Ch16]
+966.423 -0.117029 0.0 !Mu3ChX17TRaw[Co1At2Ch1]
+962.587 -0.116582 0.0 !Mu3ChX18TRaw[Co1At2Ch2]
+981.068 -0.11886 0.0 !Mu3ChX19TRaw[Co1At2Ch3]
+977.201 -0.118386 0.0 !Mu3ChX20TRaw[Co1At2Ch4]
+984.141 -0.119229 0.0 !Mu3ChX21TRaw[Co1At2Ch5]
+991.42 -0.120114 0.0 !Mu3ChX22TRaw[Co1At2Ch6]
+983.826 -0.119177 0.0 !Mu3ChX23TRaw[Co1At2Ch7]
+988.252 -0.119693 0.0 !Mu3ChX24TRaw[Co1At2Ch8]
+985.873 -0.119405 0.0 !Mu3ChX25TRaw[Co1At2Ch9]
+986.801 -0.119523 0.0 !Mu3ChX26TRaw[Co1At2Ch10]
+999.981 -0.12115 0.0 !Mu3ChX27TRaw[Co1At2Ch11]
+995.921 -0.120628 0.0 !Mu3ChX28TRaw[Co1At2Ch12]
+1006.034 -0.121885 0.0 !Mu3ChX29TRaw[Co1At2Ch13]
+999.176 -0.121035 0.0 !Mu3ChX30TRaw[Co1At2Ch14]
+1000.906 -0.121233 0.0 !Mu3ChX31TRaw[Co1At2Ch15]
+995.607 -0.120654 0.0 !Mu3ChX32TRaw[Co1At2Ch16]
+897.267 -0.108693 0.0 !Mu3ChX33TRaw[Co1At3Ch1]
+903.501 -0.109485 0.0 !Mu3ChX34TRaw[Co1At3Ch2]
+911.065 -0.110421 0.0 !Mu3ChX35TRaw[Co1At3Ch3]
+903.943 -0.109588 0.0 !Mu3ChX36TRaw[Co1At3Ch4]
+910.097 -0.110301 0.0 !Mu3ChX37TRaw[Co1At3Ch5]
+918.51 -0.111327 0.0 !Mu3ChX38TRaw[Co1At3Ch6]
+920.085 -0.111495 0.0 !Mu3ChX39TRaw[Co1At3Ch7]
+928.491 -0.112521 0.0 !Mu3ChX40TRaw[Co1At3Ch8]
+936.133 -0.11347 0.0 !Mu3ChX41TRaw[Co1At3Ch9]
+929.814 -0.112717 0.0 !Mu3ChX42TRaw[Co1At3Ch10]
+927.026 -0.112335 0.0 !Mu3ChX43TRaw[Co1At3Ch11]
+450.0 -0.112964 0.0 !Mu3ChX44TRaw[Co1At3Ch12]
+934.299 -0.113245 0.0 !Mu3ChX45TRaw[Co1At3Ch13]
+928.812 -0.11258 0.0 !Mu3ChX46TRaw[Co1At3Ch14]
+936.207 -0.113476 0.0 !Mu3ChX47TRaw[Co1At3Ch15]
+935.925 -0.113256 0.0 !Mu3ChX48TRaw[Co1At3Ch16]
+865.26 -0.104661 0.0 !Mu3ChX49TRaw[Co1At4Ch1]
+865.057 -0.104634 0.0 !Mu3ChX50TRaw[Co1At4Ch2]
+877.397 -0.106155 0.0 !Mu3ChX51TRaw[Co1At4Ch3]
+887.378 -0.107364 0.0 !Mu3ChX52TRaw[Co1At4Ch4]
+887.486 -0.107368 0.0 !Mu3ChX53TRaw[Co1At4Ch5]
+883.578 -0.106861 0.0 !Mu3ChX54TRaw[Co1At4Ch6]
+895.873 -0.108382 0.0 !Mu3ChX55TRaw[Co1At4Ch7]
+898.793 -0.108733 0.0 !Mu3ChX56TRaw[Co1At4Ch8]
+896.274 -0.10844 0.0 !Mu3ChX57TRaw[Co1At4Ch9]
+901.884 -0.10908 0.0 !Mu3ChX58TRaw[Co1At4Ch10]
+897.291 -0.108538 0.0 !Mu3ChX59TRaw[Co1At4Ch11]
+896.985 -0.10849 0.0 !Mu3ChX60TRaw[Co1At4Ch12]
+903.664 -0.109312 0.0 !Mu3ChX61TRaw[Co1At4Ch13]
+904.71 -0.109445 0.0 !Mu3ChX62TRaw[Co1At4Ch14]
+891.201 -0.107803 0.0 !Mu3ChX63TRaw[Co1At4Ch15]
+922.72 -0.108862 0.0 !Mu3ChX64TRaw[Co1At4Ch16]
+983.287 -0.119126 0.0 !Mu3ChX65TRaw[Co2At1Ch1]
+988.478 -0.119789 0.0 !Mu3ChX66TRaw[Co2At1Ch2]
+988.801 -0.119851 0.0 !Mu3ChX67TRaw[Co2At1Ch3]
+1004.624 -0.121753 0.0 !Mu3ChX68TRaw[Co2At1Ch4]
+1005.136 -0.121824 0.0 !Mu3ChX69TRaw[Co2At1Ch5]
+1002.009 -0.121446 0.0 !Mu3ChX70TRaw[Co2At1Ch6]
+1005.682 -0.121893 0.0 !Mu3ChX71TRaw[Co2At1Ch7]
+1009.441 -0.122347 0.0 !Mu3ChX72TRaw[Co2At1Ch8]
+1005.561 -0.121883 0.0 !Mu3ChX73TRaw[Co2At1Ch9]
+1012.386 -0.122684 0.0 !Mu3ChX74TRaw[Co2At1Ch10]
+1020.795 -0.123722 0.0 !Mu3ChX75TRaw[Co2At1Ch11]
+1030.928 -0.124938 0.0 !Mu3ChX76TRaw[Co2At1Ch12]
+1012.528 -0.122709 0.0 !Mu3ChX77TRaw[Co2At1Ch13]
+1012.161 -0.12265 0.0 !Mu3ChX78TRaw[Co2At1Ch14]
+1023.605 -0.124061 0.0 !Mu3ChX79TRaw[Co2At1Ch15]
+1392.417 -0.123313 0.0 !Mu3ChX80TRaw[Co2At1Ch16]
+940.696 -0.11381 0.0 !Mu3ChX81TRaw[Co2At2Ch1]
+946.536 -0.114558 0.0 !Mu3ChX82TRaw[Co2At2Ch2]
+950.101 -0.114986 0.0 !Mu3ChX83TRaw[Co2At2Ch3]
+948.44 -0.114804 0.0 !Mu3ChX84TRaw[Co2At2Ch4]
+963.396 -0.116619 0.0 !Mu3ChX85TRaw[Co2At2Ch5]
+965.983 -0.11693 0.0 !Mu3ChX86TRaw[Co2At2Ch6]
+960.815 -0.116299 0.0 !Mu3ChX87TRaw[Co2At2Ch7]
+965.812 -0.116863 0.0 !Mu3ChX88TRaw[Co2At2Ch8]
+976.455 -0.118161 0.0 !Mu3ChX89TRaw[Co2At2Ch9]
+972.683 -0.117687 0.0 !Mu3ChX90TRaw[Co2At2Ch10]
+977.648 -0.118304 0.0 !Mu3ChX91TRaw[Co2At2Ch11]
+985.535 -0.119256 0.0 !Mu3ChX92TRaw[Co2At2Ch12]
+985.189 -0.119241 0.0 !Mu3ChX93TRaw[Co2At2Ch13]
+984.904 -0.119186 0.0 !Mu3ChX94TRaw[Co2At2Ch14]
+982.3 -0.118879 0.0 !Mu3ChX95TRaw[Co2At2Ch15]
+977.482 -0.118278 0.0 !Mu3ChX96TRaw[Co2At2Ch16]
+860.29 -0.104124 0.0 !Mu3ChX97TRaw[Co2At3Ch1]
+865.042 -0.104728 0.0 !Mu3ChX98TRaw[Co2At3Ch2]
+865.096 -0.104753 0.0 !Mu3ChX99TRaw[Co2At3Ch3]
+871.257 -0.105492 0.0 !Mu3ChX100TRaw[Co2At3Ch4]
+881.122 -0.106693 0.0 !Mu3ChX101TRaw[Co2At3Ch5]
+876.465 -0.10614 0.0 !Mu3ChX102TRaw[Co2At3Ch6]
+881.211 -0.106708 0.0 !Mu3ChX103TRaw[Co2At3Ch7]
+880.166 -0.106567 0.0 !Mu3ChX104TRaw[Co2At3Ch8]
+889.358 -0.107671 0.0 !Mu3ChX105TRaw[Co2At3Ch9]
+893.917 -0.108216 0.0 !Mu3ChX106TRaw[Co2At3Ch10]
+885.756 -0.107225 0.0 !Mu3ChX107TRaw[Co2At3Ch11]
+896.457 -0.108561 0.0 !Mu3ChX108TRaw[Co2At3Ch12]
+896.971 -0.108609 0.0 !Mu3ChX109TRaw[Co2At3Ch13]
+893.394 -0.108191 0.0 !Mu3ChX110TRaw[Co2At3Ch14]
+902.834 -0.109337 0.0 !Mu3ChX111TRaw[Co2At3Ch15]
+900.551 -0.108709 0.0 !Mu3ChX112TRaw[Co2At3Ch16]
+857.647 -0.103629 0.0 !Mu3ChX113TRaw[Co2At4Ch1]
+867.192 -0.10481 0.0 !Mu3ChX114TRaw[Co2At4Ch2]
+867.635 -0.1049 0.0 !Mu3ChX115TRaw[Co2At4Ch3]
+874.016 -0.105647 0.0 !Mu3ChX116TRaw[Co2At4Ch4]
+450.0 -0.126949 0.0 !Mu3ChX117TRaw[Co2At4Ch5]
+878.204 -0.106145 0.0 !Mu3ChX118TRaw[Co2At4Ch6]
+885.379 -0.107055 0.0 !Mu3ChX119TRaw[Co2At4Ch7]
+883.36 -0.10675 0.0 !Mu3ChX120TRaw[Co2At4Ch8]
+886.263 -0.107137 0.0 !Mu3ChX121TRaw[Co2At4Ch9]
+890.004 -0.107599 0.0 !Mu3ChX122TRaw[Co2At4Ch10]
+886.105 -0.107093 0.0 !Mu3ChX123TRaw[Co2At4Ch11]
+895.691 -0.108252 0.0 !Mu3ChX124TRaw[Co2At4Ch12]
+889.843 -0.107522 0.0 !Mu3ChX125TRaw[Co2At4Ch13]
+896.157 -0.108336 0.0 !Mu3ChX126TRaw[Co2At4Ch14]
+883.628 -0.106793 0.0 !Mu3ChX127TRaw[Co2At4Ch15]
+894.234 -0.107896 0.0 !Mu3ChX128TRaw[Co2At4Ch16]
+917.946 -0.11121 0.0 !Mu3ChY1TRaw[Co3At1Ch1]
+925.607 -0.112154 0.0 !Mu3ChY2TRaw[Co3At1Ch2]
+934.525 -0.113241 0.0 !Mu3ChY3TRaw[Co3At1Ch3]
+944.195 -0.114409 0.0 !Mu3ChY4TRaw[Co3At1Ch4]
+941.165 -0.114032 0.0 !Mu3ChY5TRaw[Co3At1Ch5]
+949.297 -0.114994 0.0 !Mu3ChY6TRaw[Co3At1Ch6]
+953.74 -0.115552 0.0 !Mu3ChY7TRaw[Co3At1Ch7]
+953.991 -0.115546 0.0 !Mu3ChY8TRaw[Co3At1Ch8]
+961.72 -0.116506 0.0 !Mu3ChY9TRaw[Co3At1Ch9]
+965.956 -0.117006 0.0 !Mu3ChY10TRaw[Co3At1Ch10]
+968.137 -0.117251 0.0 !Mu3ChY11TRaw[Co3At1Ch11]
+966.978 -0.117093 0.0 !Mu3ChY12TRaw[Co3At1Ch12]
+976.42 -0.118272 0.0 !Mu3ChY13TRaw[Co3At1Ch13]
+982.89 -0.119048 0.0 !Mu3ChY14TRaw[Co3At1Ch14]
+975.1 -0.118075 0.0 !Mu3ChY15TRaw[Co3At1Ch15]
+982.356 -0.118941 0.0 !Mu3ChY16TRaw[Co3At1Ch16]
+968.384 -0.117174 0.0 !Mu3ChY17TRaw[Co3At2Ch1]
+981.477 -0.118815 0.0 !Mu3ChY18TRaw[Co3At2Ch2]
+982.408 -0.118931 0.0 !Mu3ChY19TRaw[Co3At2Ch3]
+987.964 -0.119638 0.0 !Mu3ChY20TRaw[Co3At2Ch4]
+993.613 -0.12034 0.0 !Mu3ChY21TRaw[Co3At2Ch5]
+1003.439 -0.121551 0.0 !Mu3ChY22TRaw[Co3At2Ch6]
+998.76 -0.120998 0.0 !Mu3ChY23TRaw[Co3At2Ch7]
+993.205 -0.120321 0.0 !Mu3ChY24TRaw[Co3At2Ch8]
+999.257 -0.121073 0.0 !Mu3ChY25TRaw[Co3At2Ch9]
+1005.451 -0.121839 0.0 !Mu3ChY26TRaw[Co3At2Ch10]
+1005.606 -0.121856 0.0 !Mu3ChY27TRaw[Co3At2Ch11]
+1011.99 -0.122649 0.0 !Mu3ChY28TRaw[Co3At2Ch12]
+1015.011 -0.12302 0.0 !Mu3ChY29TRaw[Co3At2Ch13]
+1003.879 -0.121668 0.0 !Mu3ChY30TRaw[Co3At2Ch14]
+1013.019 -0.122794 0.0 !Mu3ChY31TRaw[Co3At2Ch15]
+1013.687 -0.122927 0.0 !Mu3ChY32TRaw[Co3At2Ch16]
+869.813 -0.105446 0.0 !Mu3ChY33TRaw[Co3At3Ch1]
+866.542 -0.105092 0.0 !Mu3ChY34TRaw[Co3At3Ch2]
+871.705 -0.10573 0.0 !Mu3ChY35TRaw[Co3At3Ch3]
+868.741 -0.105345 0.0 !Mu3ChY36TRaw[Co3At3Ch4]
+880.227 -0.106744 0.0 !Mu3ChY37TRaw[Co3At3Ch5]
+879.546 -0.106654 0.0 !Mu3ChY38TRaw[Co3At3Ch6]
+885.08 -0.107294 0.0 !Mu3ChY39TRaw[Co3At3Ch7]
+893.736 -0.108361 0.0 !Mu3ChY40TRaw[Co3At3Ch8]
+890.782 -0.10799 0.0 !Mu3ChY41TRaw[Co3At3Ch9]
+894.881 -0.10846 0.0 !Mu3ChY42TRaw[Co3At3Ch10]
+904.234 -0.109593 0.0 !Mu3ChY43TRaw[Co3At3Ch11]
+900.794 -0.109195 0.0 !Mu3ChY44TRaw[Co3At3Ch12]
+895.989 -0.108568 0.0 !Mu3ChY45TRaw[Co3At3Ch13]
+906.161 -0.109804 0.0 !Mu3ChY46TRaw[Co3At3Ch14]
+909.978 -0.110263 0.0 !Mu3ChY47TRaw[Co3At3Ch15]
+902.668 -0.109382 0.0 !Mu3ChY48TRaw[Co3At3Ch16]
+876.095 -0.105997 0.0 !Mu3ChY49TRaw[Co3At4Ch1]
+882.164 -0.106772 0.0 !Mu3ChY50TRaw[Co3At4Ch2]
+893.829 -0.108217 0.0 !Mu3ChY51TRaw[Co3At4Ch3]
+896.423 -0.108527 0.0 !Mu3ChY52TRaw[Co3At4Ch4]
+890.601 -0.107825 0.0 !Mu3ChY53TRaw[Co3At4Ch5]
+899.134 -0.108862 0.0 !Mu3ChY54TRaw[Co3At4Ch6]
+903.962 -0.109456 0.0 !Mu3ChY55TRaw[Co3At4Ch7]
+909.776 -0.110152 0.0 !Mu3ChY56TRaw[Co3At4Ch8]
+914.077 -0.110718 0.0 !Mu3ChY57TRaw[Co3At4Ch9]
+912.813 -0.11056 0.0 !Mu3ChY58TRaw[Co3At4Ch10]
+921.655 -0.111636 0.0 !Mu3ChY59TRaw[Co3At4Ch11]
+907.554 -0.109934 0.0 !Mu3ChY60TRaw[Co3At4Ch12]
+921.006 -0.111581 0.0 !Mu3ChY61TRaw[Co3At4Ch13]
+921.705 -0.111694 0.0 !Mu3ChY62TRaw[Co3At4Ch14]
+916.94 -0.1111 0.0 !Mu3ChY63TRaw[Co3At4Ch15]
+919.695 -0.11144 0.0 !Mu3ChY64TRaw[Co3At4Ch16]
+902.544 -0.109216 0.0 !Mu3ChY65TRaw[Co4At1Ch1]
+908.915 -0.110026 0.0 !Mu3ChY66TRaw[Co4At1Ch2]
+909.56 -0.110106 0.0 !Mu3ChY67TRaw[Co4At1Ch3]
+918.028 -0.11114 0.0 !Mu3ChY68TRaw[Co4At1Ch4]
+929.408 -0.11252 0.0 !Mu3ChY69TRaw[Co4At1Ch5]
+937.82 -0.113544 0.0 !Mu3ChY70TRaw[Co4At1Ch6]
+930.573 -0.112672 0.0 !Mu3ChY71TRaw[Co4At1Ch7]
+929.18 -0.112491 0.0 !Mu3ChY72TRaw[Co4At1Ch8]
+945.251 -0.114462 0.0 !Mu3ChY73TRaw[Co4At1Ch9]
+937.76 -0.11354 0.0 !Mu3ChY74TRaw[Co4At1Ch10]
+953.926 -0.115517 0.0 !Mu3ChY75TRaw[Co4At1Ch11]
+950.321 -0.115086 0.0 !Mu3ChY76TRaw[Co4At1Ch12]
+962.882 -0.116618 0.0 !Mu3ChY77TRaw[Co4At1Ch13]
+951.559 -0.115232 0.0 !Mu3ChY78TRaw[Co4At1Ch14]
+944.24 -0.114343 0.0 !Mu3ChY79TRaw[Co4At1Ch15]
+949.269 -0.114947 0.0 !Mu3ChY80TRaw[Co4At1Ch16]
+969.213 -0.117288 0.0 !Mu3ChY81TRaw[Co4At2Ch1]
+980.623 -0.118727 0.0 !Mu3ChY82TRaw[Co4At2Ch2]
+986.747 -0.119474 0.0 !Mu3ChY83TRaw[Co4At2Ch3]
+990.256 -0.119909 0.0 !Mu3ChY84TRaw[Co4At2Ch4]
+992.055 -0.120116 0.0 !Mu3ChY85TRaw[Co4At2Ch5]
+999.047 -0.120975 0.0 !Mu3ChY86TRaw[Co4At2Ch6]
+995.992 -0.120606 0.0 !Mu3ChY87TRaw[Co4At2Ch7]
+997.417 -0.12076 0.0 !Mu3ChY88TRaw[Co4At2Ch8]
+1002.04 -0.121336 0.0 !Mu3ChY89TRaw[Co4At2Ch9]
+1013.247 -0.122713 0.0 !Mu3ChY90TRaw[Co4At2Ch10]
+1016.426 -0.1231 0.0 !Mu3ChY91TRaw[Co4At2Ch11]
+1004.734 -0.121678 0.0 !Mu3ChY92TRaw[Co4At2Ch12]
+1013.118 -0.122697 0.0 !Mu3ChY93TRaw[Co4At2Ch13]
+1016.325 -0.123087 0.0 !Mu3ChY94TRaw[Co4At2Ch14]
+1008.607 -0.122144 0.0 !Mu3ChY95TRaw[Co4At2Ch15]
+1009.63 -0.122274 0.0 !Mu3ChY96TRaw[Co4At2Ch16]
+872.56 -0.105573 0.0 !Mu3ChY97TRaw[Co4At3Ch1]
+869.392 -0.105224 0.0 !Mu3ChY98TRaw[Co4At3Ch2]
+874.15 -0.105791 0.0 !Mu3ChY99TRaw[Co4At3Ch3]
+883.33 -0.106904 0.0 !Mu3ChY100TRaw[Co4At3Ch4]
+890.403 -0.107789 0.0 !Mu3ChY101TRaw[Co4At3Ch5]
+890.223 -0.107742 0.0 !Mu3ChY102TRaw[Co4At3Ch6]
+901.174 -0.109085 0.0 !Mu3ChY103TRaw[Co4At3Ch7]
+893.31 -0.108126 0.0 !Mu3ChY104TRaw[Co4At3Ch8]
+900.562 -0.108999 0.0 !Mu3ChY105TRaw[Co4At3Ch9]
+892.986 -0.108068 0.0 !Mu3ChY106TRaw[Co4At3Ch10]
+892.398 -0.108006 0.0 !Mu3ChY107TRaw[Co4At3Ch11]
+901.475 -0.109125 0.0 !Mu3ChY108TRaw[Co4At3Ch12]
+904.207 -0.109439 0.0 !Mu3ChY109TRaw[Co4At3Ch13]
+901.95 -0.109168 0.0 !Mu3ChY110TRaw[Co4At3Ch14]
+897.548 -0.108625 0.0 !Mu3ChY111TRaw[Co4At3Ch15]
+903.933 -0.109416 0.0 !Mu3ChY112TRaw[Co4At3Ch16]
+889.942 -0.107554 0.0 !Mu3ChY113TRaw[Co4At4Ch1]
+897.252 -0.108473 0.0 !Mu3ChY114TRaw[Co4At4Ch2]
+900.207 -0.108848 0.0 !Mu3ChY115TRaw[Co4At4Ch3]
+895.641 -0.108292 0.0 !Mu3ChY116TRaw[Co4At4Ch4]
+903.842 -0.109288 0.0 !Mu3ChY117TRaw[Co4At4Ch5]
+909.27 -0.109943 0.0 !Mu3ChY118TRaw[Co4At4Ch6]
+907.84 -0.109765 0.0 !Mu3ChY119TRaw[Co4At4Ch7]
+907.053 -0.109672 0.0 !Mu3ChY120TRaw[Co4At4Ch8]
+914.069 -0.110512 0.0 !Mu3ChY121TRaw[Co4At4Ch9]
+922.641 -0.111588 0.0 !Mu3ChY122TRaw[Co4At4Ch10]
+925.361 -0.111915 0.0 !Mu3ChY123TRaw[Co4At4Ch11]
+907.828 -0.109772 0.0 !Mu3ChY124TRaw[Co4At4Ch12]
+912.093 -0.11029 0.0 !Mu3ChY125TRaw[Co4At4Ch13]
+917.412 -0.110947 0.0 !Mu3ChY126TRaw[Co4At4Ch14]
+918.908 -0.111116 0.0 !Mu3ChY127TRaw[Co4At4Ch15]
+927.125 -0.112131 0.0 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/info.txt b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/info.txt
new file mode 100644
index 0000000000000000000000000000000000000000..cca06db6c14d1d4ac04f9243ea55f77f43f186fd
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R318-327/info.txt
@@ -0,0 +1 @@
+Calibration en temps pour les runs 318-325. pour 326-327 voir autre dossier
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..0410c348a72dd1494b2d7a9e20311561781231a9
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M0_E/Cal_Str_X_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0eb48b351149457ba1c4f89d88bd91df547fa886
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E -61.7106 0.00753299
+MUSETT_T0_DSSD_X1_E -61.9105 0.00755737
+MUSETT_T0_DSSD_X2_E -61.7824 0.0075418099999999995
+MUSETT_T0_DSSD_X3_E -61.5101 0.00750856
+MUSETT_T0_DSSD_X4_E -61.8399 0.007548829999999999
+MUSETT_T0_DSSD_X5_E -61.6113 0.00752091
+MUSETT_T0_DSSD_X6_E -61.398 0.00749483
+MUSETT_T0_DSSD_X7_E -61.1841 0.0074687
+MUSETT_T0_DSSD_X8_E -61.0465 0.00745195
+MUSETT_T0_DSSD_X9_E -62.6826 0.00765164
+MUSETT_T0_DSSD_X10_E -62.3583 0.00761207
+MUSETT_T0_DSSD_X11_E -61.942 0.00756128
+MUSETT_T0_DSSD_X12_E -62.0878 0.00757904
+MUSETT_T0_DSSD_X13_E -61.755300000000005 0.00753843
+MUSETT_T0_DSSD_X14_E -62.4126 0.0076187
+MUSETT_T0_DSSD_X15_E -61.2939 0.00748215
+MUSETT_T0_DSSD_X16_E -63.052699999999994 0.007696799999999999
+MUSETT_T0_DSSD_X17_E -62.6907 0.0076526699999999994
+MUSETT_T0_DSSD_X18_E -62.1905 0.0075915800000000005
+MUSETT_T0_DSSD_X19_E -62.4109 0.0076185
+MUSETT_T0_DSSD_X20_E -63.893699999999995 0.00779946
+MUSETT_T0_DSSD_X21_E -62.6129 0.007643130000000001
+MUSETT_T0_DSSD_X22_E -62.337199999999996 0.00760945
+MUSETT_T0_DSSD_X23_E -62.6744 0.00765062
+MUSETT_T0_DSSD_X24_E -62.899300000000004 0.00767809
+MUSETT_T0_DSSD_X25_E -62.9523 0.00768455
+MUSETT_T0_DSSD_X26_E -63.0533 0.00769687
+MUSETT_T0_DSSD_X27_E -62.674699999999994 0.00765067
+MUSETT_T0_DSSD_X28_E -62.9974 0.0076900399999999995
+MUSETT_T0_DSSD_X29_E -62.6271 0.00764487
+MUSETT_T0_DSSD_X30_E -63.448800000000006 0.00774516
+MUSETT_T0_DSSD_X31_E -62.603 0.00764186
+MUSETT_T0_DSSD_X32_E -56.4302 0.0068883799999999995
+MUSETT_T0_DSSD_X33_E -56.7999 0.00693354
+MUSETT_T0_DSSD_X34_E -55.532 0.00677879
+MUSETT_T0_DSSD_X35_E -56.348800000000004 0.00687847
+MUSETT_T0_DSSD_X36_E -55.9945 0.00683521
+MUSETT_T0_DSSD_X37_E -10.0 0.0
+MUSETT_T0_DSSD_X38_E -55.914699999999996 0.0068255
+MUSETT_T0_DSSD_X39_E -55.6938 0.00679852
+MUSETT_T0_DSSD_X40_E -56.2171 0.00686239
+MUSETT_T0_DSSD_X41_E -55.8635 0.00681922
+MUSETT_T0_DSSD_X42_E -56.201699999999995 0.00686046
+MUSETT_T0_DSSD_X43_E -56.3099 0.00687373
+MUSETT_T0_DSSD_X44_E -56.346599999999995 0.00687818
+MUSETT_T0_DSSD_X45_E -10.0 0.0
+MUSETT_T0_DSSD_X46_E -10.0 0.0
+MUSETT_T0_DSSD_X47_E -55.9131 0.0068252899999999995
+MUSETT_T0_DSSD_X48_E -57.8332 0.007059650000000001
+MUSETT_T0_DSSD_X49_E -57.967800000000004 0.00707605
+MUSETT_T0_DSSD_X50_E -57.7573 0.00705042
+MUSETT_T0_DSSD_X51_E -57.3263 0.0069977799999999995
+MUSETT_T0_DSSD_X52_E -58.2072 0.0071053
+MUSETT_T0_DSSD_X53_E -57.200300000000006 0.0069824200000000005
+MUSETT_T0_DSSD_X54_E -57.8344 0.00705977
+MUSETT_T0_DSSD_X55_E -57.512800000000006 0.00702054
+MUSETT_T0_DSSD_X56_E -58.4845 0.0071391200000000005
+MUSETT_T0_DSSD_X57_E -57.751 0.00704962
+MUSETT_T0_DSSD_X58_E -57.3322 0.0069984900000000004
+MUSETT_T0_DSSD_X59_E -57.8001 0.00705564
+MUSETT_T0_DSSD_X60_E -57.1654 0.00697819
+MUSETT_T0_DSSD_X61_E -57.9703 0.00707636
+MUSETT_T0_DSSD_X62_E -57.8846 0.00706593
+MUSETT_T0_DSSD_X63_E -58.159800000000004 0.007099510000000001
+MUSETT_T0_DSSD_X64_E -63.4461 0.00774486
+MUSETT_T0_DSSD_X65_E -63.6099 0.00776484
+MUSETT_T0_DSSD_X66_E -63.3471 0.007732770000000001
+MUSETT_T0_DSSD_X67_E -64.08319999999999 0.00782268
+MUSETT_T0_DSSD_X68_E -63.2105 0.00771623
+MUSETT_T0_DSSD_X69_E -63.9794 0.00781003
+MUSETT_T0_DSSD_X70_E -63.860800000000005 0.00779555
+MUSETT_T0_DSSD_X71_E -63.3581 0.00773418
+MUSETT_T0_DSSD_X72_E -64.2157 0.007838949999999999
+MUSETT_T0_DSSD_X73_E -63.3016 0.00772725
+MUSETT_T0_DSSD_X74_E -64.05069999999999 0.00781888
+MUSETT_T0_DSSD_X75_E -64.0167 0.00781467
+MUSETT_T0_DSSD_X76_E -63.688900000000004 0.00777478
+MUSETT_T0_DSSD_X77_E -63.7891 0.0077870100000000005
+MUSETT_T0_DSSD_X78_E -64.2832 0.00784737
+MUSETT_T0_DSSD_X79_E -64.9143 0.007924398000000001
+MUSETT_T0_DSSD_X80_E -61.2394 0.007475819999999999
+MUSETT_T0_DSSD_X81_E -60.9385 0.00743906
+MUSETT_T0_DSSD_X82_E -61.1397 0.0074636599999999996
+MUSETT_T0_DSSD_X83_E -61.4974 0.00750726
+MUSETT_T0_DSSD_X84_E -61.3987 0.00749521
+MUSETT_T0_DSSD_X85_E -61.8996 0.00755626
+MUSETT_T0_DSSD_X86_E -61.451800000000006 0.00750166
+MUSETT_T0_DSSD_X87_E -62.196400000000004 0.00759254
+MUSETT_T0_DSSD_X88_E -61.9481 0.00756212
+MUSETT_T0_DSSD_X89_E -61.6171 0.00752168
+MUSETT_T0_DSSD_X90_E -61.7374 0.00753637
+MUSETT_T0_DSSD_X91_E -62.8236 0.00766899
+MUSETT_T0_DSSD_X92_E -61.8858 0.00755448
+MUSETT_T0_DSSD_X93_E -61.049699999999994 0.00745242
+MUSETT_T0_DSSD_X94_E -61.4595 0.00750241
+MUSETT_T0_DSSD_X95_E -62.2011 0.00759292
+MUSETT_T0_DSSD_X96_E -57.166199999999996 0.00697828
+MUSETT_T0_DSSD_X97_E -57.5553 0.00702572
+MUSETT_T0_DSSD_X98_E -57.8035 0.007056079999999999
+MUSETT_T0_DSSD_X99_E -57.0676 0.0069662199999999995
+MUSETT_T0_DSSD_X100_E -58.132400000000004 0.00709623
+MUSETT_T0_DSSD_X101_E -57.744699999999995 0.00704887
+MUSETT_T0_DSSD_X102_E -57.713300000000004 0.00704507
+MUSETT_T0_DSSD_X103_E -57.296699999999994 0.00699421
+MUSETT_T0_DSSD_X104_E -57.401199999999996 0.00700701
+MUSETT_T0_DSSD_X105_E -57.9542 0.00707453
+MUSETT_T0_DSSD_X106_E -57.3056 0.00699532
+MUSETT_T0_DSSD_X107_E -57.5897 0.00703005
+MUSETT_T0_DSSD_X108_E -58.5998 0.007153260000000001
+MUSETT_T0_DSSD_X109_E -58.011 0.007081489999999999
+MUSETT_T0_DSSD_X110_E -57.7019 0.00704369
+MUSETT_T0_DSSD_X111_E -57.802 0.0070558899999999996
+MUSETT_T0_DSSD_X112_E -59.0131 0.00720381
+MUSETT_T0_DSSD_X113_E -59.1996 0.00722655
+MUSETT_T0_DSSD_X114_E -58.5257 0.0071443
+MUSETT_T0_DSSD_X115_E -58.674800000000005 0.00716253
+MUSETT_T0_DSSD_X116_E -58.1328 0.00709631
+MUSETT_T0_DSSD_X117_E -58.328300000000006 0.00712018
+MUSETT_T0_DSSD_X118_E -58.2819 0.00711452
+MUSETT_T0_DSSD_X119_E -58.5673 0.00714936
+MUSETT_T0_DSSD_X120_E -58.5649 0.00714905
+MUSETT_T0_DSSD_X121_E -58.7344 0.00716969
+MUSETT_T0_DSSD_X122_E -58.596199999999996 0.007152840000000001
+MUSETT_T0_DSSD_X123_E -59.320800000000006 0.00724127
+MUSETT_T0_DSSD_X124_E -57.9063 0.00706867
+MUSETT_T0_DSSD_X125_E -58.5027 0.00714141
+MUSETT_T0_DSSD_X126_E -58.429300000000005 0.0071325
+MUSETT_T0_DSSD_X127_E -59.5614 0.007270629999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M0_E/Cal_Str_Y_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..728b3e6a460711d06638382cddfccfbba2fee9d7
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_Y0_E -10.0 0.0
+MUSETT_T0_DSSD_Y1_E 60.4299 -0.0073767699999999995
+MUSETT_T0_DSSD_Y2_E 60.9525 -0.00744053
+MUSETT_T0_DSSD_Y3_E 61.1136 -0.00746018
+MUSETT_T0_DSSD_Y4_E 60.0338 -0.00732839
+MUSETT_T0_DSSD_Y5_E 60.1789 -0.00734611
+MUSETT_T0_DSSD_Y6_E 60.8017 -0.00742211
+MUSETT_T0_DSSD_Y7_E 60.445 -0.00737857
+MUSETT_T0_DSSD_Y8_E 60.092 -0.007335479999999999
+MUSETT_T0_DSSD_Y9_E 59.987 -0.00732266
+MUSETT_T0_DSSD_Y10_E 60.401300000000006 -0.00737321
+MUSETT_T0_DSSD_Y11_E 60.0485 -0.00733015
+MUSETT_T0_DSSD_Y12_E 60.8881 -0.00743271
+MUSETT_T0_DSSD_Y13_E 61.0137 -0.00744798
+MUSETT_T0_DSSD_Y14_E 61.158 -0.00746561
+MUSETT_T0_DSSD_Y15_E 60.7384 -0.00741441
+MUSETT_T0_DSSD_Y16_E 60.3853 -0.00737129
+MUSETT_T0_DSSD_Y17_E 60.5455 -0.00739083
+MUSETT_T0_DSSD_Y18_E 60.330400000000004 -0.00736461
+MUSETT_T0_DSSD_Y19_E 60.139300000000006 -0.00734125
+MUSETT_T0_DSSD_Y20_E 60.389199999999995 -0.00737176
+MUSETT_T0_DSSD_Y21_E 60.3961 -0.00737259
+MUSETT_T0_DSSD_Y22_E 60.279900000000005 -0.00735844
+MUSETT_T0_DSSD_Y23_E 59.7309 -0.00729143
+MUSETT_T0_DSSD_Y24_E 60.2169 -0.00735079
+MUSETT_T0_DSSD_Y25_E 59.7766 -0.007297
+MUSETT_T0_DSSD_Y26_E 60.0731 -0.007333210000000001
+MUSETT_T0_DSSD_Y27_E 60.4447 -0.0073785299999999995
+MUSETT_T0_DSSD_Y28_E 59.887699999999995 -0.00731055
+MUSETT_T0_DSSD_Y29_E 59.6366 -0.00727991
+MUSETT_T0_DSSD_Y30_E 59.8233 -0.00730273
+MUSETT_T0_DSSD_Y31_E 61.045199999999994 -0.00745187
+MUSETT_T0_DSSD_Y32_E 56.5754 -0.00690626
+MUSETT_T0_DSSD_Y33_E 57.0856 -0.00696849
+MUSETT_T0_DSSD_Y34_E 56.5049 -0.00689761
+MUSETT_T0_DSSD_Y35_E 57.0727 -0.0069669499999999995
+MUSETT_T0_DSSD_Y36_E 57.4 -0.00700688
+MUSETT_T0_DSSD_Y37_E 57.2639 -0.00699027
+MUSETT_T0_DSSD_Y38_E 56.45 -0.00689094
+MUSETT_T0_DSSD_Y39_E 56.455400000000004 -0.0068915899999999995
+MUSETT_T0_DSSD_Y40_E 56.954 -0.00695243
+MUSETT_T0_DSSD_Y41_E 56.8438 -0.006939020000000001
+MUSETT_T0_DSSD_Y42_E 56.6301 -0.00691291
+MUSETT_T0_DSSD_Y43_E 56.4975 -0.00689672
+MUSETT_T0_DSSD_Y44_E 56.8091 -0.00693476
+MUSETT_T0_DSSD_Y45_E 56.946400000000004 -0.00695152
+MUSETT_T0_DSSD_Y46_E 57.7258 -0.00704665
+MUSETT_T0_DSSD_Y47_E 56.552699999999994 -0.006903439999999999
+MUSETT_T0_DSSD_Y48_E 57.5922 -0.00703033
+MUSETT_T0_DSSD_Y49_E 57.040099999999995 -0.00696295
+MUSETT_T0_DSSD_Y50_E 56.8125 -0.00693518
+MUSETT_T0_DSSD_Y51_E 56.466800000000006 -0.00689296
+MUSETT_T0_DSSD_Y52_E 57.1237 -0.00697317
+MUSETT_T0_DSSD_Y53_E 56.8535 -0.00694018
+MUSETT_T0_DSSD_Y54_E 56.671800000000005 -0.00691801
+MUSETT_T0_DSSD_Y55_E 57.626 -0.00703448
+MUSETT_T0_DSSD_Y56_E 57.3861 -0.007005239999999999
+MUSETT_T0_DSSD_Y57_E 56.822 -0.0069363
+MUSETT_T0_DSSD_Y58_E 57.017 -0.00696019
+MUSETT_T0_DSSD_Y59_E 57.2442 -0.006987930000000001
+MUSETT_T0_DSSD_Y60_E 57.2985 -0.00699452
+MUSETT_T0_DSSD_Y61_E 57.094 -0.0069695
+MUSETT_T0_DSSD_Y62_E 57.5846 -0.007029410000000001
+MUSETT_T0_DSSD_Y63_E 57.9394 -0.00707277
+MUSETT_T0_DSSD_Y64_E 60.9985 -0.00744617
+MUSETT_T0_DSSD_Y65_E 61.1544 -0.00746519
+MUSETT_T0_DSSD_Y66_E 61.0383 -0.00745104
+MUSETT_T0_DSSD_Y67_E 61.3127 -0.00748452
+MUSETT_T0_DSSD_Y68_E 60.431400000000004 -0.00737695
+MUSETT_T0_DSSD_Y69_E 61.541599999999995 -0.00751241
+MUSETT_T0_DSSD_Y70_E 60.896 -0.007433639999999999
+MUSETT_T0_DSSD_Y71_E 60.3984 -0.00737288
+MUSETT_T0_DSSD_Y72_E 61.6674 -0.00752784
+MUSETT_T0_DSSD_Y73_E 61.151 -0.00746479
+MUSETT_T0_DSSD_Y74_E 61.1035 -0.0074589800000000005
+MUSETT_T0_DSSD_Y75_E 61.219800000000006 -0.0074731500000000005
+MUSETT_T0_DSSD_Y76_E 60.596199999999996 -0.007397020000000001
+MUSETT_T0_DSSD_Y77_E 61.4086 -0.0074962299999999996
+MUSETT_T0_DSSD_Y78_E 61.6292 -0.0075231199999999995
+MUSETT_T0_DSSD_Y79_E 61.0151 -0.00744816
+MUSETT_T0_DSSD_Y80_E 62.3301 -0.00760868
+MUSETT_T0_DSSD_Y81_E 61.0485 -0.00745227
+MUSETT_T0_DSSD_Y82_E 61.567 -0.00751556
+MUSETT_T0_DSSD_Y83_E 62.052800000000005 -0.00757484
+MUSETT_T0_DSSD_Y84_E 61.001400000000004 -0.0074465
+MUSETT_T0_DSSD_Y85_E 60.8965 -0.0074337
+MUSETT_T0_DSSD_Y86_E 61.7489 -0.0075377000000000005
+MUSETT_T0_DSSD_Y87_E 61.3807 -0.00749277
+MUSETT_T0_DSSD_Y88_E 61.1458 -0.00746415
+MUSETT_T0_DSSD_Y89_E 61.2699 -0.00747926
+MUSETT_T0_DSSD_Y90_E 61.1205 -0.00746101
+MUSETT_T0_DSSD_Y91_E 61.476800000000004 -0.007504520000000001
+MUSETT_T0_DSSD_Y92_E 61.8576 -0.00755098
+MUSETT_T0_DSSD_Y93_E 61.681599999999996 -0.0075295399999999995
+MUSETT_T0_DSSD_Y94_E 62.3232 -0.007607859999999999
+MUSETT_T0_DSSD_Y95_E 60.8927 -0.00743324
+MUSETT_T0_DSSD_Y96_E 56.372 -0.00688138
+MUSETT_T0_DSSD_Y97_E 56.6412 -0.0069142299999999995
+MUSETT_T0_DSSD_Y98_E 56.555800000000005 -0.00690381
+MUSETT_T0_DSSD_Y99_E 56.451699999999995 -0.0068911300000000005
+MUSETT_T0_DSSD_Y100_E 56.187 -0.00685881
+MUSETT_T0_DSSD_Y101_E 56.3228 -0.0068754
+MUSETT_T0_DSSD_Y102_E 56.0736 -0.00684493
+MUSETT_T0_DSSD_Y103_E 56.5751 -0.006906209999999999
+MUSETT_T0_DSSD_Y104_E 56.8741 -0.00694264
+MUSETT_T0_DSSD_Y105_E 56.0264 -0.0068391599999999995
+MUSETT_T0_DSSD_Y106_E 57.0374 -0.00696262
+MUSETT_T0_DSSD_Y107_E 57.3595 -0.00700194
+MUSETT_T0_DSSD_Y108_E 56.5524 -0.00690339
+MUSETT_T0_DSSD_Y109_E 56.5855 -0.006907460000000001
+MUSETT_T0_DSSD_Y110_E 56.6668 -0.006917410000000001
+MUSETT_T0_DSSD_Y111_E 56.4009 -0.00688495
+MUSETT_T0_DSSD_Y112_E 56.8996 -0.0069458
+MUSETT_T0_DSSD_Y113_E 57.124300000000005 -0.00697323
+MUSETT_T0_DSSD_Y114_E 56.9552 -0.00695256
+MUSETT_T0_DSSD_Y115_E 56.8211 -0.00693619
+MUSETT_T0_DSSD_Y116_E 57.2948 -0.00699405
+MUSETT_T0_DSSD_Y117_E 56.5544 -0.00690363
+MUSETT_T0_DSSD_Y118_E 56.4159 -0.0068867500000000005
+MUSETT_T0_DSSD_Y119_E 56.5919 -0.0069082499999999995
+MUSETT_T0_DSSD_Y120_E 57.4048 -0.00700746
+MUSETT_T0_DSSD_Y121_E 57.2319 -0.00698632
+MUSETT_T0_DSSD_Y122_E 56.6849 -0.00691957
+MUSETT_T0_DSSD_Y123_E 56.016400000000004 -0.0068379899999999995
+MUSETT_T0_DSSD_Y124_E 56.4575 -0.006891810000000001
+MUSETT_T0_DSSD_Y125_E 55.921699999999994 -0.00682642
+MUSETT_T0_DSSD_Y126_E 56.947 -0.0069515900000000005
+MUSETT_T0_DSSD_Y127_E 56.581 -0.00690693
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..11c7c3fef2296f10326e3ad7677f8bebd5452993
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_T 947.402 -0.114176
+MUSETT_T0_DSSD_X1_T 958.132 -0.115529
+MUSETT_T0_DSSD_X2_T 959.289 -0.115657
+MUSETT_T0_DSSD_X3_T 973.445 -0.117409
+MUSETT_T0_DSSD_X4_T 973.097 -0.117367
+MUSETT_T0_DSSD_X5_T 973.027 -0.117353
+MUSETT_T0_DSSD_X6_T 978.311 -0.117969
+MUSETT_T0_DSSD_X7_T 980.44 -0.118246
+MUSETT_T0_DSSD_X8_T 979.197 -0.118065
+MUSETT_T0_DSSD_X9_T 983.093 -0.118546
+MUSETT_T0_DSSD_X10_T 987.843 -0.119138
+MUSETT_T0_DSSD_X11_T 987.466 -0.119075
+MUSETT_T0_DSSD_X12_T 994.957 -0.119996
+MUSETT_T0_DSSD_X13_T 980.198 -0.118174
+MUSETT_T0_DSSD_X14_T 991.208 -0.119531
+MUSETT_T0_DSSD_X15_T 1327.419 -0.118448
+MUSETT_T0_DSSD_X16_T 957.045 -0.115275
+MUSETT_T0_DSSD_X17_T 967.151 -0.116527
+MUSETT_T0_DSSD_X18_T 979.671 -0.118044
+MUSETT_T0_DSSD_X19_T 980.319 -0.118125
+MUSETT_T0_DSSD_X20_T 989.453 -0.119233
+MUSETT_T0_DSSD_X21_T 983.819 -0.118555
+MUSETT_T0_DSSD_X22_T 994.391 -0.119845
+MUSETT_T0_DSSD_X23_T 995.696 -0.120005
+MUSETT_T0_DSSD_X24_T 991.078 -0.119427
+MUSETT_T0_DSSD_X25_T 1002.131 -0.120777
+MUSETT_T0_DSSD_X26_T 1004.435 -0.121057
+MUSETT_T0_DSSD_X27_T 1008.403 -0.121545
+MUSETT_T0_DSSD_X28_T 1003.939 -0.121021
+MUSETT_T0_DSSD_X29_T 1002.74 -0.120851
+MUSETT_T0_DSSD_X30_T 999.377 -0.12045
+MUSETT_T0_DSSD_X31_T 995.027 -0.119947
+MUSETT_T0_DSSD_X32_T 874.004 -0.105192
+MUSETT_T0_DSSD_X33_T 871.776 -0.104955
+MUSETT_T0_DSSD_X34_T 891.807 -0.107397
+MUSETT_T0_DSSD_X35_T 880.562 -0.106033
+MUSETT_T0_DSSD_X36_T 882.297 -0.106227
+MUSETT_T0_DSSD_X37_T 896.75 -0.108005
+MUSETT_T0_DSSD_X38_T 898.223 -0.108195
+MUSETT_T0_DSSD_X39_T 896.786 -0.107979
+MUSETT_T0_DSSD_X40_T 899.624 -0.108302
+MUSETT_T0_DSSD_X41_T 899.765 -0.108334
+MUSETT_T0_DSSD_X42_T 899.028 -0.108243
+MUSETT_T0_DSSD_X43_T 905.872 -0.109095
+MUSETT_T0_DSSD_X44_T 901.13 -0.108505
+MUSETT_T0_DSSD_X45_T 899.439 -0.107877
+MUSETT_T0_DSSD_X46_T 898.066 -0.108187
+MUSETT_T0_DSSD_X47_T 920.142 -0.10826
+MUSETT_T0_DSSD_X48_T 885.877 -0.106556
+MUSETT_T0_DSSD_X49_T 889.054 -0.106942
+MUSETT_T0_DSSD_X50_T 894.673 -0.107622
+MUSETT_T0_DSSD_X51_T 903.218 -0.109464
+MUSETT_T0_DSSD_X52_T 908.402 -0.109295
+MUSETT_T0_DSSD_X53_T 911.389 -0.109652
+MUSETT_T0_DSSD_X54_T 913.908 -0.109955
+MUSETT_T0_DSSD_X55_T 917.897 -0.110458
+MUSETT_T0_DSSD_X56_T 926.464 -0.111499
+MUSETT_T0_DSSD_X57_T 918.072 -0.110456
+MUSETT_T0_DSSD_X58_T 925.456 -0.111378
+MUSETT_T0_DSSD_X59_T 930.204 -0.111943
+MUSETT_T0_DSSD_X60_T 937.287 -0.112807
+MUSETT_T0_DSSD_X61_T 940.01 -0.11314
+MUSETT_T0_DSSD_X62_T 941.711 -0.113338
+MUSETT_T0_DSSD_X63_T 930.49 -0.111982
+MUSETT_T0_DSSD_X64_T 958.733 -0.115846
+MUSETT_T0_DSSD_X65_T 963.634 -0.11646
+MUSETT_T0_DSSD_X66_T 973.382 -0.117644
+MUSETT_T0_DSSD_X67_T 974.652 -0.117791
+MUSETT_T0_DSSD_X68_T 977.949 -0.118174
+MUSETT_T0_DSSD_X69_T 990.649 -0.119717
+MUSETT_T0_DSSD_X70_T 995.246 -0.120284
+MUSETT_T0_DSSD_X71_T 996.388 -0.120426
+MUSETT_T0_DSSD_X72_T 1007.342 -0.121763
+MUSETT_T0_DSSD_X73_T 988.546 -0.119445
+MUSETT_T0_DSSD_X74_T 1005.453 -0.121535
+MUSETT_T0_DSSD_X75_T 996.341 -0.120381
+MUSETT_T0_DSSD_X76_T 1007.215 -0.121262
+MUSETT_T0_DSSD_X77_T 1011.503 -0.121766
+MUSETT_T0_DSSD_X78_T 998.245 -0.120615
+MUSETT_T0_DSSD_X79_T 1381.85 -0.120952
+MUSETT_T0_DSSD_X80_T 924.325 -0.111515
+MUSETT_T0_DSSD_X81_T 933.986 -0.112746
+MUSETT_T0_DSSD_X82_T 926.081 -0.111774
+MUSETT_T0_DSSD_X83_T 942.039 -0.113281
+MUSETT_T0_DSSD_X84_T 931.74 -0.112468
+MUSETT_T0_DSSD_X85_T 942.885 -0.113819
+MUSETT_T0_DSSD_X86_T 951.107 -0.114818
+MUSETT_T0_DSSD_X87_T 944.193 -0.113978
+MUSETT_T0_DSSD_X88_T 950.881 -0.114813
+MUSETT_T0_DSSD_X89_T 958.38 -0.115728
+MUSETT_T0_DSSD_X90_T 965.991 -0.11664
+MUSETT_T0_DSSD_X91_T 962.675 -0.11625
+MUSETT_T0_DSSD_X92_T 962.975 -0.116299
+MUSETT_T0_DSSD_X93_T 961.838 -0.116152
+MUSETT_T0_DSSD_X94_T 975.767 -0.117868
+MUSETT_T0_DSSD_X95_T 987.869 -0.116744
+MUSETT_T0_DSSD_X96_T 869.374 -0.105013
+MUSETT_T0_DSSD_X97_T 878.873 -0.106169
+MUSETT_T0_DSSD_X98_T 879.124 -0.106212
+MUSETT_T0_DSSD_X99_T 885.082 -0.106905
+MUSETT_T0_DSSD_X100_T 894.377 -0.108043
+MUSETT_T0_DSSD_X101_T 901.707 -0.108935
+MUSETT_T0_DSSD_X102_T 897.889 -0.108442
+MUSETT_T0_DSSD_X103_T 895.995 -0.108194
+MUSETT_T0_DSSD_X104_T 905.254 -0.109336
+MUSETT_T0_DSSD_X105_T 903.109 -0.109053
+MUSETT_T0_DSSD_X106_T 908.799 -0.109771
+MUSETT_T0_DSSD_X107_T 906.422 -0.109449
+MUSETT_T0_DSSD_X108_T 903.683 -0.109128
+MUSETT_T0_DSSD_X109_T 907.658 -0.109641
+MUSETT_T0_DSSD_X110_T 903.934 -0.109177
+MUSETT_T0_DSSD_X111_T 917.004 -0.109478
+MUSETT_T0_DSSD_X112_T 889.763 -0.107364
+MUSETT_T0_DSSD_X113_T 892.874 -0.107748
+MUSETT_T0_DSSD_X114_T 893.086 -0.107782
+MUSETT_T0_DSSD_X115_T 903.173 -0.109007
+MUSETT_T0_DSSD_X116_T 906.71 -0.109423
+MUSETT_T0_DSSD_X117_T 900.172 -0.108648
+MUSETT_T0_DSSD_X118_T 914.738 -0.110413
+MUSETT_T0_DSSD_X119_T 915.95 -0.110579
+MUSETT_T0_DSSD_X120_T 910.273 -0.109898
+MUSETT_T0_DSSD_X121_T 915.371 -0.1105
+MUSETT_T0_DSSD_X122_T 923.843 -0.111529
+MUSETT_T0_DSSD_X123_T 916.0 -0.110604
+MUSETT_T0_DSSD_X124_T 919.085 -0.110972
+MUSETT_T0_DSSD_X125_T 920.758 -0.11118
+MUSETT_T0_DSSD_X126_T 916.079 -0.110613
+MUSETT_T0_DSSD_X127_T 927.913 -0.111151
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..21b980d964ad6fc6dad20fe05813b699dee44414
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 943.871 -0.114033
+MUSETT_T0_DSSD_Y2_T 942.541 -0.113921
+MUSETT_T0_DSSD_Y3_T 960.736 -0.116104
+MUSETT_T0_DSSD_Y4_T 956.194 -0.115563
+MUSETT_T0_DSSD_Y5_T 971.901 -0.117481
+MUSETT_T0_DSSD_Y6_T 970.47 -0.117339
+MUSETT_T0_DSSD_Y7_T 967.899 -0.117018
+MUSETT_T0_DSSD_Y8_T 974.549 -0.117842
+MUSETT_T0_DSSD_Y9_T 970.321 -0.117316
+MUSETT_T0_DSSD_Y10_T 972.871 -0.117632
+MUSETT_T0_DSSD_Y11_T 979.225 -0.118398
+MUSETT_T0_DSSD_Y12_T 977.059 -0.11814
+MUSETT_T0_DSSD_Y13_T 972.932 -0.117633
+MUSETT_T0_DSSD_Y14_T 975.541 -0.117944
+MUSETT_T0_DSSD_Y15_T 981.99 -0.118761
+MUSETT_T0_DSSD_Y16_T 937.345 -0.113175
+MUSETT_T0_DSSD_Y17_T 946.398 -0.114309
+MUSETT_T0_DSSD_Y18_T 954.917 -0.115351
+MUSETT_T0_DSSD_Y19_T 946.68 -0.11436
+MUSETT_T0_DSSD_Y20_T 949.495 -0.114686
+MUSETT_T0_DSSD_Y21_T 952.893 -0.115103
+MUSETT_T0_DSSD_Y22_T 958.913 -0.115832
+MUSETT_T0_DSSD_Y23_T 959.053 -0.115841
+MUSETT_T0_DSSD_Y24_T 963.718 -0.116398
+MUSETT_T0_DSSD_Y25_T 961.896 -0.116195
+MUSETT_T0_DSSD_Y26_T 958.661 -0.115516
+MUSETT_T0_DSSD_Y27_T 973.339 -0.117562
+MUSETT_T0_DSSD_Y28_T 975.575 -0.117834
+MUSETT_T0_DSSD_Y29_T 970.444 -0.11722
+MUSETT_T0_DSSD_Y30_T 973.574 -0.11759
+MUSETT_T0_DSSD_Y31_T 968.228 -0.116928
+MUSETT_T0_DSSD_Y32_T 870.562 -0.105131
+MUSETT_T0_DSSD_Y33_T 870.284 -0.105113
+MUSETT_T0_DSSD_Y34_T 887.363 -0.107174
+MUSETT_T0_DSSD_Y35_T 877.314 -0.105955
+MUSETT_T0_DSSD_Y36_T 888.861 -0.107363
+MUSETT_T0_DSSD_Y37_T 888.241 -0.107278
+MUSETT_T0_DSSD_Y38_T 888.889 -0.107347
+MUSETT_T0_DSSD_Y39_T 906.968 -0.109567
+MUSETT_T0_DSSD_Y40_T 904.625 -0.109268
+MUSETT_T0_DSSD_Y41_T 902.798 -0.109045
+MUSETT_T0_DSSD_Y42_T 901.927 -0.108924
+MUSETT_T0_DSSD_Y43_T 912.591 -0.110196
+MUSETT_T0_DSSD_Y44_T 909.812 -0.109895
+MUSETT_T0_DSSD_Y45_T 904.379 -0.10924
+MUSETT_T0_DSSD_Y46_T 914.951 -0.110513
+MUSETT_T0_DSSD_Y47_T 903.001 -0.109056
+MUSETT_T0_DSSD_Y48_T 857.208 -0.103507
+MUSETT_T0_DSSD_Y49_T 868.319 -0.104888
+MUSETT_T0_DSSD_Y50_T 863.685 -0.104347
+MUSETT_T0_DSSD_Y51_T 880.511 -0.106391
+MUSETT_T0_DSSD_Y52_T 883.206 -0.106718
+MUSETT_T0_DSSD_Y53_T 884.379 -0.106878
+MUSETT_T0_DSSD_Y54_T 881.016 -0.106441
+MUSETT_T0_DSSD_Y55_T 888.95 -0.107426
+MUSETT_T0_DSSD_Y56_T 890.519 -0.107608
+MUSETT_T0_DSSD_Y57_T 894.751 -0.108136
+MUSETT_T0_DSSD_Y58_T 901.921 -0.109012
+MUSETT_T0_DSSD_Y59_T 900.736 -0.108611
+MUSETT_T0_DSSD_Y60_T 899.581 -0.108719
+MUSETT_T0_DSSD_Y61_T 906.688 -0.109581
+MUSETT_T0_DSSD_Y62_T 900.81 -0.108895
+MUSETT_T0_DSSD_Y63_T 906.101 -0.109543
+MUSETT_T0_DSSD_Y64_T 965.38 -0.116469
+MUSETT_T0_DSSD_Y65_T 971.898 -0.117302
+MUSETT_T0_DSSD_Y66_T 977.707 -0.118012
+MUSETT_T0_DSSD_Y67_T 977.945 -0.118028
+MUSETT_T0_DSSD_Y68_T 980.831 -0.118378
+MUSETT_T0_DSSD_Y69_T 984.514 -0.118825
+MUSETT_T0_DSSD_Y70_T 984.139 -0.118781
+MUSETT_T0_DSSD_Y71_T 987.235 -0.119156
+MUSETT_T0_DSSD_Y72_T 991.116 -0.119628
+MUSETT_T0_DSSD_Y73_T 982.578 -0.118591
+MUSETT_T0_DSSD_Y74_T 991.199 -0.119656
+MUSETT_T0_DSSD_Y75_T 1001.66 -0.120924
+MUSETT_T0_DSSD_Y76_T 996.91 -0.120327
+MUSETT_T0_DSSD_Y77_T 998.977 -0.120579
+MUSETT_T0_DSSD_Y78_T 996.138 -0.120247
+MUSETT_T0_DSSD_Y79_T 1003.186 -0.121097
+MUSETT_T0_DSSD_Y80_T 971.772 -0.117145
+MUSETT_T0_DSSD_Y81_T 987.56 -0.119118
+MUSETT_T0_DSSD_Y82_T 982.693 -0.118534
+MUSETT_T0_DSSD_Y83_T 997.382 -0.12031
+MUSETT_T0_DSSD_Y84_T 1001.12 -0.120777
+MUSETT_T0_DSSD_Y85_T 1003.628 -0.121085
+MUSETT_T0_DSSD_Y86_T 999.525 -0.120569
+MUSETT_T0_DSSD_Y87_T 1009.866 -0.121839
+MUSETT_T0_DSSD_Y88_T 1005.699 -0.121339
+MUSETT_T0_DSSD_Y89_T 1016.19 -0.122592
+MUSETT_T0_DSSD_Y90_T 1026.692 -0.123897
+MUSETT_T0_DSSD_Y91_T 1026.458 -0.123866
+MUSETT_T0_DSSD_Y92_T 1021.303 -0.123256
+MUSETT_T0_DSSD_Y93_T 1025.779 -0.123786
+MUSETT_T0_DSSD_Y94_T 1022.572 -0.123408
+MUSETT_T0_DSSD_Y95_T 1018.35 -0.122879
+MUSETT_T0_DSSD_Y96_T 884.199 -0.106544
+MUSETT_T0_DSSD_Y97_T 880.563 -0.106139
+MUSETT_T0_DSSD_Y98_T 879.514 -0.106028
+MUSETT_T0_DSSD_Y99_T 896.148 -0.108041
+MUSETT_T0_DSSD_Y100_T 893.439 -0.107707
+MUSETT_T0_DSSD_Y101_T 892.231 -0.10757
+MUSETT_T0_DSSD_Y102_T 896.756 -0.108105
+MUSETT_T0_DSSD_Y103_T 908.766 -0.10959
+MUSETT_T0_DSSD_Y104_T 903.356 -0.108916
+MUSETT_T0_DSSD_Y105_T 916.719 -0.110544
+MUSETT_T0_DSSD_Y106_T 912.113 -0.109981
+MUSETT_T0_DSSD_Y107_T 916.451 -0.11051
+MUSETT_T0_DSSD_Y108_T 915.868 -0.110421
+MUSETT_T0_DSSD_Y109_T 911.388 -0.109894
+MUSETT_T0_DSSD_Y110_T 916.911 -0.110572
+MUSETT_T0_DSSD_Y111_T 918.844 -0.110803
+MUSETT_T0_DSSD_Y112_T 893.651 -0.107535
+MUSETT_T0_DSSD_Y113_T 901.081 -0.108466
+MUSETT_T0_DSSD_Y114_T 900.586 -0.108438
+MUSETT_T0_DSSD_Y115_T 906.547 -0.109158
+MUSETT_T0_DSSD_Y116_T 918.22 -0.110566
+MUSETT_T0_DSSD_Y117_T 911.401 -0.109757
+MUSETT_T0_DSSD_Y118_T 931.26 -0.112167
+MUSETT_T0_DSSD_Y119_T 923.034 -0.111146
+MUSETT_T0_DSSD_Y120_T 933.197 -0.112407
+MUSETT_T0_DSSD_Y121_T 932.718 -0.112337
+MUSETT_T0_DSSD_Y122_T 934.415 -0.112539
+MUSETT_T0_DSSD_Y123_T 937.954 -0.112978
+MUSETT_T0_DSSD_Y124_T 932.468 -0.112316
+MUSETT_T0_DSSD_Y125_T 931.414 -0.112192
+MUSETT_T0_DSSD_Y126_T 928.457 -0.111821
+MUSETT_T0_DSSD_Y127_T 931.38 -0.112162
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..21a339ff19565b30923199ce42cf71781b462958
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E -62.318 0.00760703
+MUSETT_T1_DSSD_X1_E -62.174800000000005 0.00758959
+MUSETT_T1_DSSD_X2_E -62.2697 0.00760114
+MUSETT_T1_DSSD_X3_E -61.9672 0.00756426
+MUSETT_T1_DSSD_X4_E -61.415099999999995 0.00749681
+MUSETT_T1_DSSD_X5_E -61.526 0.00751035
+MUSETT_T1_DSSD_X6_E -62.3097 0.00760599
+MUSETT_T1_DSSD_X7_E -61.376 0.00749208
+MUSETT_T1_DSSD_X8_E -61.309599999999996 0.00748393
+MUSETT_T1_DSSD_X9_E -61.415699999999994 0.00749688
+MUSETT_T1_DSSD_X10_E -61.636300000000006 0.0075238399999999995
+MUSETT_T1_DSSD_X11_E -61.6995 0.0075315799999999995
+MUSETT_T1_DSSD_X12_E -61.9036 0.00755648
+MUSETT_T1_DSSD_X13_E -61.3858 0.00749329
+MUSETT_T1_DSSD_X14_E -61.149699999999996 0.00746439
+MUSETT_T1_DSSD_X15_E -61.9483 0.00756191
+MUSETT_T1_DSSD_X16_E -62.532300000000006 0.00763317
+MUSETT_T1_DSSD_X17_E -61.741800000000005 0.0075366999999999995
+MUSETT_T1_DSSD_X18_E -62.152699999999996 0.00758685
+MUSETT_T1_DSSD_X19_E -61.8945 0.00755534
+MUSETT_T1_DSSD_X20_E -62.9018 0.007678239999999999
+MUSETT_T1_DSSD_X21_E -62.1592 0.0075876400000000005
+MUSETT_T1_DSSD_X22_E -62.66 0.0076488
+MUSETT_T1_DSSD_X23_E -62.320699999999995 0.0076073700000000005
+MUSETT_T1_DSSD_X24_E -62.2217 0.007595279999999999
+MUSETT_T1_DSSD_X25_E -61.9343 0.00756018
+MUSETT_T1_DSSD_X26_E -61.9471 0.00756175
+MUSETT_T1_DSSD_X27_E -61.6952 0.00753103
+MUSETT_T1_DSSD_X28_E -61.588300000000004 0.00751797
+MUSETT_T1_DSSD_X29_E -62.694 0.00765292
+MUSETT_T1_DSSD_X30_E -61.7341 0.007535770000000001
+MUSETT_T1_DSSD_X31_E -62.7765 0.00766307
+MUSETT_T1_DSSD_X32_E -58.260400000000004 0.00711179
+MUSETT_T1_DSSD_X33_E -58.264 0.00711219
+MUSETT_T1_DSSD_X34_E -58.3149 0.00711847
+MUSETT_T1_DSSD_X35_E -58.24 0.00710926
+MUSETT_T1_DSSD_X36_E -57.977 0.0070772199999999995
+MUSETT_T1_DSSD_X37_E -58.1817 0.0071020300000000005
+MUSETT_T1_DSSD_X38_E -58.0364 0.00708428
+MUSETT_T1_DSSD_X39_E -58.6261 0.007156419
+MUSETT_T1_DSSD_X40_E -58.167300000000004 0.00710045
+MUSETT_T1_DSSD_X41_E -58.8056 0.00717818
+MUSETT_T1_DSSD_X42_E -58.0404 0.00708493
+MUSETT_T1_DSSD_X43_E -58.445 0.00713434
+MUSETT_T1_DSSD_X44_E -58.5769 0.00715027
+MUSETT_T1_DSSD_X45_E -59.255 0.00723324
+MUSETT_T1_DSSD_X46_E -58.6541 0.00715993
+MUSETT_T1_DSSD_X47_E -58.523199999999996 0.0071438
+MUSETT_T1_DSSD_X48_E -57.8625 0.007063150000000001
+MUSETT_T1_DSSD_X49_E -58.4892 0.00713967
+MUSETT_T1_DSSD_X50_E -58.005300000000005 0.00708058
+MUSETT_T1_DSSD_X51_E -57.7392 0.0070481400000000005
+MUSETT_T1_DSSD_X52_E -57.926199999999994 0.00707097
+MUSETT_T1_DSSD_X53_E -57.9129 0.00706931
+MUSETT_T1_DSSD_X54_E -57.9565 0.00707461
+MUSETT_T1_DSSD_X55_E -57.767900000000004 0.00705159
+MUSETT_T1_DSSD_X56_E -58.0156 0.0070818700000000005
+MUSETT_T1_DSSD_X57_E -57.8056 0.00705617
+MUSETT_T1_DSSD_X58_E -58.416599999999995 0.00713075
+MUSETT_T1_DSSD_X59_E -57.624 0.0070339999999999995
+MUSETT_T1_DSSD_X60_E -57.6878 0.00704184
+MUSETT_T1_DSSD_X61_E -58.237300000000005 0.0071089000000000005
+MUSETT_T1_DSSD_X62_E -58.058699999999995 0.00708712
+MUSETT_T1_DSSD_X63_E -58.244699999999995 0.00710981
+MUSETT_T1_DSSD_X64_E -60.994699999999995 0.0074455
+MUSETT_T1_DSSD_X65_E -61.603 0.007519860000000001
+MUSETT_T1_DSSD_X66_E -61.459900000000005 0.00750223
+MUSETT_T1_DSSD_X67_E -61.665099999999995 0.00752729
+MUSETT_T1_DSSD_X68_E -61.8745 0.00755286
+MUSETT_T1_DSSD_X69_E -61.3285 0.0074863099999999995
+MUSETT_T1_DSSD_X70_E -61.63 0.00752303
+MUSETT_T1_DSSD_X71_E -61.904199999999996 0.00755658
+MUSETT_T1_DSSD_X72_E -61.2324 0.00747458
+MUSETT_T1_DSSD_X73_E -62.3412 0.00760994
+MUSETT_T1_DSSD_X74_E -61.9259 0.00755913
+MUSETT_T1_DSSD_X75_E -62.067099999999996 0.0075764199999999995
+MUSETT_T1_DSSD_X76_E -61.4845 0.00750533
+MUSETT_T1_DSSD_X77_E -61.7427 0.00753686
+MUSETT_T1_DSSD_X78_E -61.352599999999995 0.00748913
+MUSETT_T1_DSSD_X79_E -61.942099999999996 0.00756111
+MUSETT_T1_DSSD_X80_E -63.429 0.00774268
+MUSETT_T1_DSSD_X81_E -63.7221 0.00777849
+MUSETT_T1_DSSD_X82_E -64.2115 0.00783819
+MUSETT_T1_DSSD_X83_E -63.8677 0.0077962
+MUSETT_T1_DSSD_X84_E -64.1279 0.00782805
+MUSETT_T1_DSSD_X85_E -63.8404 0.00779293
+MUSETT_T1_DSSD_X86_E -64.0504 0.00781853
+MUSETT_T1_DSSD_X87_E -64.1609 0.00783201
+MUSETT_T1_DSSD_X88_E -64.18090000000001 0.007834520000000001
+MUSETT_T1_DSSD_X89_E -64.214 0.00783849
+MUSETT_T1_DSSD_X90_E -63.2804 0.00772459
+MUSETT_T1_DSSD_X91_E -63.366800000000005 0.00773508
+MUSETT_T1_DSSD_X92_E -64.5209 0.00787598
+MUSETT_T1_DSSD_X93_E -63.9818 0.007810139999999999
+MUSETT_T1_DSSD_X94_E -63.7755 0.00778503
+MUSETT_T1_DSSD_X95_E -63.4339 0.00774331
+MUSETT_T1_DSSD_X96_E -56.2588 0.00686734
+MUSETT_T1_DSSD_X97_E -56.6455 0.0069146400000000005
+MUSETT_T1_DSSD_X98_E -56.4879 0.00689532
+MUSETT_T1_DSSD_X99_E -56.3827 0.00688258
+MUSETT_T1_DSSD_X100_E -56.5553 0.00690363
+MUSETT_T1_DSSD_X101_E -57.0229 0.00696061
+MUSETT_T1_DSSD_X102_E -57.3332 0.0069984700000000006
+MUSETT_T1_DSSD_X103_E -56.5807 0.00690664
+MUSETT_T1_DSSD_X104_E -56.7668 0.00692938
+MUSETT_T1_DSSD_X105_E -56.9893 0.00695655
+MUSETT_T1_DSSD_X106_E -57.8513 0.00706174
+MUSETT_T1_DSSD_X107_E -57.756099999999996 0.00705012
+MUSETT_T1_DSSD_X108_E -57.728300000000004 0.0070468
+MUSETT_T1_DSSD_X109_E -57.5027 0.00701928
+MUSETT_T1_DSSD_X110_E -57.6809 0.00704099
+MUSETT_T1_DSSD_X111_E -57.9952 0.00707934
+MUSETT_T1_DSSD_X112_E -57.221599999999995 0.0069849199999999995
+MUSETT_T1_DSSD_X113_E -57.3068 0.0069953
+MUSETT_T1_DSSD_X114_E -56.767199999999995 0.006929439999999999
+MUSETT_T1_DSSD_X115_E -57.714800000000004 0.00704509
+MUSETT_T1_DSSD_X116_E -57.2578 0.0069893099999999994
+MUSETT_T1_DSSD_X117_E -57.2509 0.00698847
+MUSETT_T1_DSSD_X118_E -56.3284 0.00687591
+MUSETT_T1_DSSD_X119_E -58.2885 0.007115160000000001
+MUSETT_T1_DSSD_X120_E -57.413199999999996 0.007008339999999999
+MUSETT_T1_DSSD_X121_E -57.776199999999996 0.007052640000000001
+MUSETT_T1_DSSD_X122_E -57.731 0.00704713
+MUSETT_T1_DSSD_X123_E -57.410599999999995 0.00700802
+MUSETT_T1_DSSD_X124_E -57.5907 0.00702999
+MUSETT_T1_DSSD_X125_E -57.6383 0.00703579
+MUSETT_T1_DSSD_X126_E -57.0384 0.0069625500000000005
+MUSETT_T1_DSSD_X127_E -57.8549 0.007062199999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..99017db9824f0dde76826e27acab80c7781b2162
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_E 59.619099999999996 -0.00727783
+MUSETT_T1_DSSD_Y1_E 60.465300000000006 -0.0073811499999999995
+MUSETT_T1_DSSD_Y2_E 59.712 -0.007289189999999999
+MUSETT_T1_DSSD_Y3_E 59.326699999999995 -0.00724213
+MUSETT_T1_DSSD_Y4_E 60.1976 -0.0073485
+MUSETT_T1_DSSD_Y5_E 60.005199999999995 -0.00732501
+MUSETT_T1_DSSD_Y6_E 59.3762 -0.00724818
+MUSETT_T1_DSSD_Y7_E 59.4559 -0.00725795
+MUSETT_T1_DSSD_Y8_E 59.4729 -0.00725998
+MUSETT_T1_DSSD_Y9_E 59.7076 -0.00728867
+MUSETT_T1_DSSD_Y10_E 59.520199999999996 -0.0072657699999999995
+MUSETT_T1_DSSD_Y11_E 59.5565 -0.00727023
+MUSETT_T1_DSSD_Y12_E 60.2104 -0.0073500300000000005
+MUSETT_T1_DSSD_Y13_E 59.2734 -0.00723565
+MUSETT_T1_DSSD_Y14_E 59.5118 -0.00726475
+MUSETT_T1_DSSD_Y15_E 59.8161 -0.00730189
+MUSETT_T1_DSSD_Y16_E 62.145199999999996 -0.0075861999999999995
+MUSETT_T1_DSSD_Y17_E 62.468300000000006 -0.0076256399999999995
+MUSETT_T1_DSSD_Y18_E 62.4021 -0.00761759
+MUSETT_T1_DSSD_Y19_E 62.0316 -0.0075723399999999995
+MUSETT_T1_DSSD_Y20_E 62.1982 -0.00759266
+MUSETT_T1_DSSD_Y21_E 62.3574 -0.00761211
+MUSETT_T1_DSSD_Y22_E -10.0 0.0
+MUSETT_T1_DSSD_Y23_E 62.0064 -0.00756931
+MUSETT_T1_DSSD_Y24_E 61.7119 -0.00753332
+MUSETT_T1_DSSD_Y25_E 61.4477 -0.00750107
+MUSETT_T1_DSSD_Y26_E 62.078 -0.00757801
+MUSETT_T1_DSSD_Y27_E 62.0599 -0.00757584
+MUSETT_T1_DSSD_Y28_E 62.251599999999996 -0.00759918
+MUSETT_T1_DSSD_Y29_E 62.034 -0.00757263
+MUSETT_T1_DSSD_Y30_E 61.6533 -0.0075261699999999996
+MUSETT_T1_DSSD_Y31_E 61.7974 -0.0075438
+MUSETT_T1_DSSD_Y32_E 56.115 -0.00685013
+MUSETT_T1_DSSD_Y33_E 56.290099999999995 -0.00687151
+MUSETT_T1_DSSD_Y34_E 55.6312 -0.00679109
+MUSETT_T1_DSSD_Y35_E 55.6539 -0.00679382
+MUSETT_T1_DSSD_Y36_E 55.4171 -0.00676495
+MUSETT_T1_DSSD_Y37_E 56.4182 -0.0068871900000000005
+MUSETT_T1_DSSD_Y38_E 55.3814 -0.0067605700000000005
+MUSETT_T1_DSSD_Y39_E 55.9099 -0.00682508
+MUSETT_T1_DSSD_Y40_E 56.0294 -0.00683969
+MUSETT_T1_DSSD_Y41_E 56.120400000000004 -0.00685079
+MUSETT_T1_DSSD_Y42_E 55.5034 -0.0067754799999999995
+MUSETT_T1_DSSD_Y43_E 56.587300000000006 -0.00690782
+MUSETT_T1_DSSD_Y44_E 55.6325 -0.0067912499999999995
+MUSETT_T1_DSSD_Y45_E 55.719199999999994 -0.00680184
+MUSETT_T1_DSSD_Y46_E 55.7592 -0.0068067200000000005
+MUSETT_T1_DSSD_Y47_E 55.7233 -0.0068023300000000005
+MUSETT_T1_DSSD_Y48_E 57.1945 -0.00698188
+MUSETT_T1_DSSD_Y49_E 56.6218 -0.00691194
+MUSETT_T1_DSSD_Y50_E 56.5589 -0.0069043
+MUSETT_T1_DSSD_Y51_E 56.037099999999995 -0.00684059
+MUSETT_T1_DSSD_Y52_E 56.7933 -0.006932890000000001
+MUSETT_T1_DSSD_Y53_E 56.263 -0.00686816
+MUSETT_T1_DSSD_Y54_E 56.4425 -0.00689006
+MUSETT_T1_DSSD_Y55_E 56.437 -0.0068894
+MUSETT_T1_DSSD_Y56_E 57.3308 -0.00699852
+MUSETT_T1_DSSD_Y57_E 57.023 -0.00696092
+MUSETT_T1_DSSD_Y58_E 56.6276 -0.006912639999999999
+MUSETT_T1_DSSD_Y59_E 57.287800000000004 -0.00699327
+MUSETT_T1_DSSD_Y60_E 57.3784 -0.0070043300000000005
+MUSETT_T1_DSSD_Y61_E 57.0121 -0.0069596200000000006
+MUSETT_T1_DSSD_Y62_E 56.174 -0.0068573
+MUSETT_T1_DSSD_Y63_E 57.2921 -0.00699379
+MUSETT_T1_DSSD_Y64_E 61.0871 -0.00745703
+MUSETT_T1_DSSD_Y65_E 61.6184 -0.00752186
+MUSETT_T1_DSSD_Y66_E 61.2911 -0.00748195
+MUSETT_T1_DSSD_Y67_E 61.562599999999996 -0.0075150600000000005
+MUSETT_T1_DSSD_Y68_E 61.2043 -0.00747131
+MUSETT_T1_DSSD_Y69_E 60.0103 -0.0073256
+MUSETT_T1_DSSD_Y70_E 60.457 -0.00738015
+MUSETT_T1_DSSD_Y71_E 61.0999 -0.00745857
+MUSETT_T1_DSSD_Y72_E 60.2656 -0.00735676
+MUSETT_T1_DSSD_Y73_E 61.237300000000005 -0.00747538
+MUSETT_T1_DSSD_Y74_E 60.8875 -0.00743265
+MUSETT_T1_DSSD_Y75_E 60.371300000000005 -0.007369659999999999
+MUSETT_T1_DSSD_Y76_E 60.5195 -0.00738776
+MUSETT_T1_DSSD_Y77_E 60.9741 -0.00744327
+MUSETT_T1_DSSD_Y78_E 60.660599999999995 -0.00740501
+MUSETT_T1_DSSD_Y79_E 61.3305 -0.0074868
+MUSETT_T1_DSSD_Y80_E 61.1626 -0.00746633
+MUSETT_T1_DSSD_Y81_E 61.126400000000004 -0.00746184
+MUSETT_T1_DSSD_Y82_E 61.091300000000004 -0.0074575399999999995
+MUSETT_T1_DSSD_Y83_E 60.509 -0.007386510000000001
+MUSETT_T1_DSSD_Y84_E 60.4234 -0.007376000000000001
+MUSETT_T1_DSSD_Y85_E 61.1413 -0.00746364
+MUSETT_T1_DSSD_Y86_E 60.6746 -0.0074066900000000005
+MUSETT_T1_DSSD_Y87_E 60.5731 -0.0073943
+MUSETT_T1_DSSD_Y88_E 61.027300000000004 -0.007449760000000001
+MUSETT_T1_DSSD_Y89_E 61.279199999999996 -0.00748052
+MUSETT_T1_DSSD_Y90_E 60.7255 -0.00741289
+MUSETT_T1_DSSD_Y91_E 60.8688 -0.00743041
+MUSETT_T1_DSSD_Y92_E 60.5108 -0.0073867099999999995
+MUSETT_T1_DSSD_Y93_E 61.2806 -0.00748069
+MUSETT_T1_DSSD_Y94_E 61.6085 -0.007520679999999999
+MUSETT_T1_DSSD_Y95_E 60.746900000000004 -0.0074156000000000005
+MUSETT_T1_DSSD_Y96_E 55.8579 -0.00681873
+MUSETT_T1_DSSD_Y97_E 55.481300000000005 -0.00677275
+MUSETT_T1_DSSD_Y98_E 55.6901 -0.0067982500000000005
+MUSETT_T1_DSSD_Y99_E 55.5546 -0.00678172
+MUSETT_T1_DSSD_Y100_E 55.8138 -0.00681337
+MUSETT_T1_DSSD_Y101_E 55.4669 -0.00677101
+MUSETT_T1_DSSD_Y102_E 55.4251 -0.00676591
+MUSETT_T1_DSSD_Y103_E 56.1674 -0.00685651
+MUSETT_T1_DSSD_Y104_E 55.270199999999996 -0.00674696
+MUSETT_T1_DSSD_Y105_E 55.3054 -0.00675128
+MUSETT_T1_DSSD_Y106_E 55.865300000000005 -0.006819619999999999
+MUSETT_T1_DSSD_Y107_E 55.2296 -0.0067420200000000005
+MUSETT_T1_DSSD_Y108_E 55.8628 -0.00681933
+MUSETT_T1_DSSD_Y109_E 56.1111 -0.0068496699999999995
+MUSETT_T1_DSSD_Y110_E 56.1356 -0.0068525999999999995
+MUSETT_T1_DSSD_Y111_E 56.5726 -0.00690596
+MUSETT_T1_DSSD_Y112_E 54.7644 -0.0066852299999999995
+MUSETT_T1_DSSD_Y113_E 55.5593 -0.00678228
+MUSETT_T1_DSSD_Y114_E 55.1522 -0.00673254
+MUSETT_T1_DSSD_Y115_E 55.065599999999996 -0.00672196
+MUSETT_T1_DSSD_Y116_E 55.234300000000005 -0.00674255
+MUSETT_T1_DSSD_Y117_E 55.399300000000004 -0.00676272
+MUSETT_T1_DSSD_Y118_E 55.2609 -0.00674585
+MUSETT_T1_DSSD_Y119_E 55.568 -0.00678332
+MUSETT_T1_DSSD_Y120_E 55.8639 -0.00681946
+MUSETT_T1_DSSD_Y121_E 55.4788 -0.006772439999999999
+MUSETT_T1_DSSD_Y122_E 54.8367 -0.00669408
+MUSETT_T1_DSSD_Y123_E 55.1383 -0.006730870000000001
+MUSETT_T1_DSSD_Y124_E 55.2217 -0.00674106
+MUSETT_T1_DSSD_Y125_E 55.183 -0.0067363200000000005
+MUSETT_T1_DSSD_Y126_E 55.346 -0.00675624
+MUSETT_T1_DSSD_Y127_E 56.263 -0.00686815
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..019dd537572546826c8282fbb86a95cad1dcf54c
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_T 931.243 -0.11232
+MUSETT_T1_DSSD_X1_T 945.084 -0.114015
+MUSETT_T1_DSSD_X2_T 947.562 -0.114341
+MUSETT_T1_DSSD_X3_T 958.911 -0.115712
+MUSETT_T1_DSSD_X4_T 959.274 -0.115744
+MUSETT_T1_DSSD_X5_T 961.121 -0.115962
+MUSETT_T1_DSSD_X6_T 974.613 -0.117589
+MUSETT_T1_DSSD_X7_T 969.703 -0.116998
+MUSETT_T1_DSSD_X8_T 973.909 -0.117498
+MUSETT_T1_DSSD_X9_T 982.972 -0.118577
+MUSETT_T1_DSSD_X10_T 979.25 -0.118143
+MUSETT_T1_DSSD_X11_T 978.727 -0.118071
+MUSETT_T1_DSSD_X12_T 990.788 -0.11954
+MUSETT_T1_DSSD_X13_T 991.407 -0.119597
+MUSETT_T1_DSSD_X14_T 988.337 -0.119236
+MUSETT_T1_DSSD_X15_T 1375.029 -0.119179
+MUSETT_T1_DSSD_X16_T 927.042 -0.111777
+MUSETT_T1_DSSD_X17_T 950.021 -0.114612
+MUSETT_T1_DSSD_X18_T 950.947 -0.114738
+MUSETT_T1_DSSD_X19_T 948.537 -0.114439
+MUSETT_T1_DSSD_X20_T 956.835 -0.115464
+MUSETT_T1_DSSD_X21_T 969.98 -0.117052
+MUSETT_T1_DSSD_X22_T 959.253 -0.115762
+MUSETT_T1_DSSD_X23_T 975.846 -0.117739
+MUSETT_T1_DSSD_X24_T 974.071 -0.117531
+MUSETT_T1_DSSD_X25_T 977.168 -0.117923
+MUSETT_T1_DSSD_X26_T 975.805 -0.117737
+MUSETT_T1_DSSD_X27_T 979.545 -0.11821
+MUSETT_T1_DSSD_X28_T 983.428 -0.118677
+MUSETT_T1_DSSD_X29_T 980.499 -0.118324
+MUSETT_T1_DSSD_X30_T 979.469 -0.118198
+MUSETT_T1_DSSD_X31_T 988.102 -0.119148
+MUSETT_T1_DSSD_X32_T 880.379 -0.106165
+MUSETT_T1_DSSD_X33_T 880.08 -0.10618
+MUSETT_T1_DSSD_X34_T 895.406 -0.108064
+MUSETT_T1_DSSD_X35_T 878.12 -0.105941
+MUSETT_T1_DSSD_X36_T 895.881 -0.108105
+MUSETT_T1_DSSD_X37_T 901.785 -0.108823
+MUSETT_T1_DSSD_X38_T 894.137 -0.107861
+MUSETT_T1_DSSD_X39_T 898.782 -0.10842
+MUSETT_T1_DSSD_X40_T 901.632 -0.108779
+MUSETT_T1_DSSD_X41_T 904.878 -0.108754
+MUSETT_T1_DSSD_X42_T 910.193 -0.109783
+MUSETT_T1_DSSD_X43_T 902.054 -0.108855
+MUSETT_T1_DSSD_X44_T 911.528 -0.110019
+MUSETT_T1_DSSD_X45_T 909.985 -0.109854
+MUSETT_T1_DSSD_X46_T 907.601 -0.109528
+MUSETT_T1_DSSD_X47_T 922.228 -0.110055
+MUSETT_T1_DSSD_X48_T 869.923 -0.104838
+MUSETT_T1_DSSD_X49_T 875.125 -0.105455
+MUSETT_T1_DSSD_X50_T 887.868 -0.107015
+MUSETT_T1_DSSD_X51_T 890.27 -0.107338
+MUSETT_T1_DSSD_X52_T 893.359 -0.107685
+MUSETT_T1_DSSD_X53_T 893.348 -0.107699
+MUSETT_T1_DSSD_X54_T 900.729 -0.10819
+MUSETT_T1_DSSD_X55_T 906.65 -0.108878
+MUSETT_T1_DSSD_X56_T 909.8 -0.1097
+MUSETT_T1_DSSD_X57_T 905.423 -0.10916
+MUSETT_T1_DSSD_X58_T 914.17 -0.110244
+MUSETT_T1_DSSD_X59_T 906.586 -0.109308
+MUSETT_T1_DSSD_X60_T 919.705 -0.110894
+MUSETT_T1_DSSD_X61_T 911.009 -0.109867
+MUSETT_T1_DSSD_X62_T 910.69 -0.109791
+MUSETT_T1_DSSD_X63_T 919.963 -0.110777
+MUSETT_T1_DSSD_X64_T 952.039 -0.114723
+MUSETT_T1_DSSD_X65_T 953.727 -0.114949
+MUSETT_T1_DSSD_X66_T 967.402 -0.116629
+MUSETT_T1_DSSD_X67_T 963.242 -0.116557
+MUSETT_T1_DSSD_X68_T 969.139 -0.116827
+MUSETT_T1_DSSD_X69_T 973.545 -0.117811
+MUSETT_T1_DSSD_X70_T 973.3 -0.117758
+MUSETT_T1_DSSD_X71_T 978.421 -0.118392
+MUSETT_T1_DSSD_X72_T 975.853 -0.118063
+MUSETT_T1_DSSD_X73_T 990.602 -0.119853
+MUSETT_T1_DSSD_X74_T 986.683 -0.119377
+MUSETT_T1_DSSD_X75_T 984.808 -0.119141
+MUSETT_T1_DSSD_X76_T 991.649 -0.119982
+MUSETT_T1_DSSD_X77_T 997.413 -0.120199
+MUSETT_T1_DSSD_X78_T 993.522 -0.1202
+MUSETT_T1_DSSD_X79_T 1382.854 -0.120722
+MUSETT_T1_DSSD_X80_T 973.769 -0.117775
+MUSETT_T1_DSSD_X81_T 975.739 -0.118024
+MUSETT_T1_DSSD_X82_T 984.702 -0.118652
+MUSETT_T1_DSSD_X83_T 998.209 -0.120307
+MUSETT_T1_DSSD_X84_T 993.886 -0.120215
+MUSETT_T1_DSSD_X85_T 1003.201 -0.121389
+MUSETT_T1_DSSD_X86_T 1004.641 -0.121554
+MUSETT_T1_DSSD_X87_T 996.555 -0.12057
+MUSETT_T1_DSSD_X88_T 1011.012 -0.122345
+MUSETT_T1_DSSD_X89_T 1013.335 -0.12261
+MUSETT_T1_DSSD_X90_T 1008.829 -0.122082
+MUSETT_T1_DSSD_X91_T 1015.054 -0.12282
+MUSETT_T1_DSSD_X92_T 1014.579 -0.12279
+MUSETT_T1_DSSD_X93_T 1017.346 -0.123127
+MUSETT_T1_DSSD_X94_T 1021.088 -0.123096
+MUSETT_T1_DSSD_X95_T 1005.091 -0.12163
+MUSETT_T1_DSSD_X96_T 889.567 -0.107613
+MUSETT_T1_DSSD_X97_T 887.661 -0.107373
+MUSETT_T1_DSSD_X98_T 891.391 -0.107838
+MUSETT_T1_DSSD_X99_T 902.766 -0.109224
+MUSETT_T1_DSSD_X100_T 902.54 -0.1092
+MUSETT_T1_DSSD_X101_T 907.648 -0.109791
+MUSETT_T1_DSSD_X102_T 903.145 -0.109268
+MUSETT_T1_DSSD_X103_T 918.818 -0.111151
+MUSETT_T1_DSSD_X104_T 920.016 -0.11128
+MUSETT_T1_DSSD_X105_T 921.413 -0.111467
+MUSETT_T1_DSSD_X106_T 926.201 -0.112035
+MUSETT_T1_DSSD_X107_T 921.77 -0.111519
+MUSETT_T1_DSSD_X108_T 922.63 -0.111616
+MUSETT_T1_DSSD_X109_T 914.413 -0.110627
+MUSETT_T1_DSSD_X110_T 916.972 -0.110941
+MUSETT_T1_DSSD_X111_T 923.713 -0.11176
+MUSETT_T1_DSSD_X112_T 897.837 -0.108476
+MUSETT_T1_DSSD_X113_T 898.652 -0.108567
+MUSETT_T1_DSSD_X114_T 905.902 -0.10946
+MUSETT_T1_DSSD_X115_T 911.452 -0.110136
+MUSETT_T1_DSSD_X116_T 926.396 -0.111977
+MUSETT_T1_DSSD_X117_T 920.897 -0.111304
+MUSETT_T1_DSSD_X118_T 933.101 -0.112781
+MUSETT_T1_DSSD_X119_T 915.617 -0.110659
+MUSETT_T1_DSSD_X120_T 921.125 -0.111325
+MUSETT_T1_DSSD_X121_T 928.617 -0.112226
+MUSETT_T1_DSSD_X122_T 929.597 -0.11236
+MUSETT_T1_DSSD_X123_T 924.845 -0.111775
+MUSETT_T1_DSSD_X124_T 922.311 -0.111483
+MUSETT_T1_DSSD_X125_T 928.291 -0.112193
+MUSETT_T1_DSSD_X126_T 931.58 -0.112614
+MUSETT_T1_DSSD_X127_T 925.581 -0.111864
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..057fc9eca6e5f37767d36685518135611d46ad35
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_T 932.035 -0.11282
+MUSETT_T1_DSSD_Y1_T 933.495 -0.113022
+MUSETT_T1_DSSD_Y2_T 944.411 -0.114361
+MUSETT_T1_DSSD_Y3_T 948.375 -0.114834
+MUSETT_T1_DSSD_Y4_T 950.778 -0.115122
+MUSETT_T1_DSSD_Y5_T 954.172 -0.115533
+MUSETT_T1_DSSD_Y6_T 957.549 -0.115938
+MUSETT_T1_DSSD_Y7_T 947.562 -0.114726
+MUSETT_T1_DSSD_Y8_T 954.965 -0.11562
+MUSETT_T1_DSSD_Y9_T 965.207 -0.116854
+MUSETT_T1_DSSD_Y10_T 961.189 -0.116368
+MUSETT_T1_DSSD_Y11_T 968.97 -0.117327
+MUSETT_T1_DSSD_Y12_T 969.302 -0.117358
+MUSETT_T1_DSSD_Y13_T 964.945 -0.116827
+MUSETT_T1_DSSD_Y14_T 966.214 -0.116981
+MUSETT_T1_DSSD_Y15_T 963.966 -0.116717
+MUSETT_T1_DSSD_Y16_T 965.888 -0.116883
+MUSETT_T1_DSSD_Y17_T 967.684 -0.117128
+MUSETT_T1_DSSD_Y18_T 972.15 -0.117665
+MUSETT_T1_DSSD_Y19_T 972.745 -0.117743
+MUSETT_T1_DSSD_Y20_T 984.112 -0.119146
+MUSETT_T1_DSSD_Y21_T 980.877 -0.118747
+MUSETT_T1_DSSD_Y22_T 450.0 -0.119189
+MUSETT_T1_DSSD_Y23_T 990.666 -0.119964
+MUSETT_T1_DSSD_Y24_T 992.259 -0.120158
+MUSETT_T1_DSSD_Y25_T 992.41 -0.120176
+MUSETT_T1_DSSD_Y26_T 996.766 -0.120728
+MUSETT_T1_DSSD_Y27_T 991.746 -0.120113
+MUSETT_T1_DSSD_Y28_T 993.587 -0.120339
+MUSETT_T1_DSSD_Y29_T 985.064 -0.119308
+MUSETT_T1_DSSD_Y30_T 991.596 -0.120108
+MUSETT_T1_DSSD_Y31_T 986.445 -0.119515
+MUSETT_T1_DSSD_Y32_T 881.012 -0.106691
+MUSETT_T1_DSSD_Y33_T 886.766 -0.10745
+MUSETT_T1_DSSD_Y34_T 882.204 -0.106848
+MUSETT_T1_DSSD_Y35_T 891.854 -0.108037
+MUSETT_T1_DSSD_Y36_T 850619310270.0 -103827000.0
+MUSETT_T1_DSSD_Y37_T 902.417 -0.109433
+MUSETT_T1_DSSD_Y38_T 901.585 -0.110242
+MUSETT_T1_DSSD_Y39_T 903.595 -0.10944
+MUSETT_T1_DSSD_Y40_T 891.657 -0.107957
+MUSETT_T1_DSSD_Y41_T 903.952 -0.109521
+MUSETT_T1_DSSD_Y42_T 896.803 -0.108623
+MUSETT_T1_DSSD_Y43_T 905.625 -0.10969
+MUSETT_T1_DSSD_Y44_T 908.281 -0.109989
+MUSETT_T1_DSSD_Y45_T 902.33 -0.109312
+MUSETT_T1_DSSD_Y46_T 907.41 -0.109844
+MUSETT_T1_DSSD_Y47_T 902.089 -0.109257
+MUSETT_T1_DSSD_Y48_T 884.479 -0.10696
+MUSETT_T1_DSSD_Y49_T 883.474 -0.106852
+MUSETT_T1_DSSD_Y50_T 879.998 -0.106436
+MUSETT_T1_DSSD_Y51_T 893.146 -0.108049
+MUSETT_T1_DSSD_Y52_T 898.884 -0.108781
+MUSETT_T1_DSSD_Y53_T 900.108 -0.108923
+MUSETT_T1_DSSD_Y54_T 900.099 -0.108922
+MUSETT_T1_DSSD_Y55_T 900.287 -0.108949
+MUSETT_T1_DSSD_Y56_T 912.19 -0.110395
+MUSETT_T1_DSSD_Y57_T 911.3 -0.110294
+MUSETT_T1_DSSD_Y58_T 906.773 -0.109746
+MUSETT_T1_DSSD_Y59_T 909.678 -0.109802
+MUSETT_T1_DSSD_Y60_T 906.734 -0.109742
+MUSETT_T1_DSSD_Y61_T 914.732 -0.11072
+MUSETT_T1_DSSD_Y62_T 916.102 -0.110879
+MUSETT_T1_DSSD_Y63_T 917.148 -0.111037
+MUSETT_T1_DSSD_Y64_T 946.855 -0.115194
+MUSETT_T1_DSSD_Y65_T 953.644 -0.116053
+MUSETT_T1_DSSD_Y66_T 959.75 -0.116788
+MUSETT_T1_DSSD_Y67_T 963.24 -0.117211
+MUSETT_T1_DSSD_Y68_T 966.608 -0.117617
+MUSETT_T1_DSSD_Y69_T 974.806 -0.118609
+MUSETT_T1_DSSD_Y70_T 970.229 -0.118053
+MUSETT_T1_DSSD_Y71_T 978.318 -0.119038
+MUSETT_T1_DSSD_Y72_T 979.408 -0.119163
+MUSETT_T1_DSSD_Y73_T 982.639 -0.119552
+MUSETT_T1_DSSD_Y74_T 984.456 -0.119777
+MUSETT_T1_DSSD_Y75_T 981.379 -0.119391
+MUSETT_T1_DSSD_Y76_T 984.651 -0.11981
+MUSETT_T1_DSSD_Y77_T 982.31 -0.119505
+MUSETT_T1_DSSD_Y78_T 983.007 -0.119601
+MUSETT_T1_DSSD_Y79_T 988.01 -0.120194
+MUSETT_T1_DSSD_Y80_T 943.199 -0.114646
+MUSETT_T1_DSSD_Y81_T 951.261 -0.115676
+MUSETT_T1_DSSD_Y82_T 950.217 -0.115551
+MUSETT_T1_DSSD_Y83_T 957.193 -0.116392
+MUSETT_T1_DSSD_Y84_T 956.711 -0.116344
+MUSETT_T1_DSSD_Y85_T 966.907 -0.117589
+MUSETT_T1_DSSD_Y86_T 967.784 -0.117699
+MUSETT_T1_DSSD_Y87_T 974.973 -0.118567
+MUSETT_T1_DSSD_Y88_T 975.931 -0.118705
+MUSETT_T1_DSSD_Y89_T 968.629 -0.117807
+MUSETT_T1_DSSD_Y90_T 973.17 -0.118376
+MUSETT_T1_DSSD_Y91_T 981.206 -0.119333
+MUSETT_T1_DSSD_Y92_T 981.863 -0.119429
+MUSETT_T1_DSSD_Y93_T 974.832 -0.118576
+MUSETT_T1_DSSD_Y94_T 978.651 -0.119031
+MUSETT_T1_DSSD_Y95_T 989.899 -0.120471
+MUSETT_T1_DSSD_Y96_T 872.47 -0.106136
+MUSETT_T1_DSSD_Y97_T 871.244 -0.106
+MUSETT_T1_DSSD_Y98_T 875.764 -0.106555
+MUSETT_T1_DSSD_Y99_T 889.841 -0.108263
+MUSETT_T1_DSSD_Y100_T 887.593 -0.10801
+MUSETT_T1_DSSD_Y101_T 879.757 -0.107044
+MUSETT_T1_DSSD_Y102_T 887.54 -0.108005
+MUSETT_T1_DSSD_Y103_T 890.884 -0.108406
+MUSETT_T1_DSSD_Y104_T 901.255 -0.109653
+MUSETT_T1_DSSD_Y105_T 897.946 -0.10926
+MUSETT_T1_DSSD_Y106_T 901.33 -0.10967
+MUSETT_T1_DSSD_Y107_T 891.982 -0.108536
+MUSETT_T1_DSSD_Y108_T 899.178 -0.109417
+MUSETT_T1_DSSD_Y109_T 906.416 -0.110268
+MUSETT_T1_DSSD_Y110_T 903.498 -0.109108
+MUSETT_T1_DSSD_Y111_T 902.622 -0.109824
+MUSETT_T1_DSSD_Y112_T 858.806 -0.104291
+MUSETT_T1_DSSD_Y113_T 855.722 -0.103549
+MUSETT_T1_DSSD_Y114_T 862.565 -0.104798
+MUSETT_T1_DSSD_Y115_T 857.566 -0.10419
+MUSETT_T1_DSSD_Y116_T 866.024 -0.105221
+MUSETT_T1_DSSD_Y117_T 875.42 -0.106354
+MUSETT_T1_DSSD_Y118_T 879.769 -0.1069
+MUSETT_T1_DSSD_Y119_T 874.481 -0.106252
+MUSETT_T1_DSSD_Y120_T 891.89 -0.108379
+MUSETT_T1_DSSD_Y121_T 892.881 -0.108492
+MUSETT_T1_DSSD_Y122_T 890.673 -0.108225
+MUSETT_T1_DSSD_Y123_T 889.841 -0.108132
+MUSETT_T1_DSSD_Y124_T 892.159 -0.108412
+MUSETT_T1_DSSD_Y125_T 887.553 -0.10784
+MUSETT_T1_DSSD_Y126_T 884.907 -0.107526
+MUSETT_T1_DSSD_Y127_T 949.092 -0.121191
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..17930f9a4e4b5c6c066722fc2a2e491d00ca3d70
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E -62.7421 0.00765877
+MUSETT_T2_DSSD_X1_E -62.4792 0.00762671
+MUSETT_T2_DSSD_X2_E -62.865 0.00767381
+MUSETT_T2_DSSD_X3_E -62.0985 0.0075802199999999995
+MUSETT_T2_DSSD_X4_E -62.0571 0.0075752
+MUSETT_T2_DSSD_X5_E -62.707699999999996 0.00765462
+MUSETT_T2_DSSD_X6_E -62.4305 0.00762076
+MUSETT_T2_DSSD_X7_E -62.8149 0.0076677
+MUSETT_T2_DSSD_X8_E -62.9251 0.00768116
+MUSETT_T2_DSSD_X9_E -62.1225 0.00758321
+MUSETT_T2_DSSD_X10_E -62.473800000000004 0.00762602
+MUSETT_T2_DSSD_X11_E -62.4904 0.0076280900000000006
+MUSETT_T2_DSSD_X12_E -62.594199999999994 0.00764074
+MUSETT_T2_DSSD_X13_E -62.536699999999996 0.00763373
+MUSETT_T2_DSSD_X14_E -62.6456 0.00764703
+MUSETT_T2_DSSD_X15_E -63.3752 0.00773612
+MUSETT_T2_DSSD_X16_E -62.167199999999994 0.00758864
+MUSETT_T2_DSSD_X17_E -61.8033 0.007544240000000001
+MUSETT_T2_DSSD_X18_E -61.5785 0.00751678
+MUSETT_T2_DSSD_X19_E -61.470800000000004 0.00750362
+MUSETT_T2_DSSD_X20_E -61.4837 0.00750523
+MUSETT_T2_DSSD_X21_E -62.3158 0.007606760000000001
+MUSETT_T2_DSSD_X22_E -62.1547 0.0075870899999999995
+MUSETT_T2_DSSD_X23_E -61.7911 0.00754274
+MUSETT_T2_DSSD_X24_E -61.6316 0.0075232599999999995
+MUSETT_T2_DSSD_X25_E -61.8242 0.00754673
+MUSETT_T2_DSSD_X26_E -61.9627 0.00756372
+MUSETT_T2_DSSD_X27_E -61.7744 0.00754065
+MUSETT_T2_DSSD_X28_E -61.6645 0.00752723
+MUSETT_T2_DSSD_X29_E -61.257400000000004 0.00747756
+MUSETT_T2_DSSD_X30_E -62.372099999999996 0.0076136400000000005
+MUSETT_T2_DSSD_X31_E -61.5182 0.0075094
+MUSETT_T2_DSSD_X32_E -58.9973 0.0072016499999999995
+MUSETT_T2_DSSD_X33_E -58.122699999999995 0.0070948700000000005
+MUSETT_T2_DSSD_X34_E -58.5748 0.00715013
+MUSETT_T2_DSSD_X35_E -58.3687 0.0071249
+MUSETT_T2_DSSD_X36_E -58.173300000000005 0.00710106
+MUSETT_T2_DSSD_X37_E -58.1415 0.0070972200000000004
+MUSETT_T2_DSSD_X38_E -58.3248 0.00711956
+MUSETT_T2_DSSD_X39_E -57.915800000000004 0.00706966
+MUSETT_T2_DSSD_X40_E -57.571400000000004 0.007027599999999999
+MUSETT_T2_DSSD_X41_E -58.5635 0.00714871
+MUSETT_T2_DSSD_X42_E -58.788599999999995 0.00717615
+MUSETT_T2_DSSD_X43_E -58.273900000000005 0.00711334
+MUSETT_T2_DSSD_X44_E -58.563900000000004 0.00714877
+MUSETT_T2_DSSD_X45_E -58.527 0.00714428
+MUSETT_T2_DSSD_X46_E -58.3393 0.00712137
+MUSETT_T2_DSSD_X47_E -58.469699999999996 0.0071372499999999995
+MUSETT_T2_DSSD_X48_E -57.7795 0.00705305
+MUSETT_T2_DSSD_X49_E -57.166 0.00697811
+MUSETT_T2_DSSD_X50_E -58.1299 0.0070957699999999995
+MUSETT_T2_DSSD_X51_E -57.864599999999996 0.00706342
+MUSETT_T2_DSSD_X52_E -57.5373 0.0070234600000000005
+MUSETT_T2_DSSD_X53_E -57.137 0.00697462
+MUSETT_T2_DSSD_X54_E -57.8198 0.007057959999999999
+MUSETT_T2_DSSD_X55_E -57.621199999999995 0.00703367
+MUSETT_T2_DSSD_X56_E -57.914 0.0070694600000000005
+MUSETT_T2_DSSD_X57_E -57.5076 0.00701987
+MUSETT_T2_DSSD_X58_E -57.9231 0.007070610000000001
+MUSETT_T2_DSSD_X59_E -56.9989 0.00695776
+MUSETT_T2_DSSD_X60_E -57.486599999999996 0.00701726
+MUSETT_T2_DSSD_X61_E -56.6863 0.00691961
+MUSETT_T2_DSSD_X62_E -57.4581 0.0070138299999999995
+MUSETT_T2_DSSD_X63_E -57.8619 0.00706309
+MUSETT_T2_DSSD_X64_E -63.3158 0.00772883
+MUSETT_T2_DSSD_X65_E -64.9944 0.0079338
+MUSETT_T2_DSSD_X66_E -64.0256 0.00781543
+MUSETT_T2_DSSD_X67_E -63.7104 0.00777703
+MUSETT_T2_DSSD_X68_E -10.0 0.0
+MUSETT_T2_DSSD_X69_E -64.3822 0.007859
+MUSETT_T2_DSSD_X70_E -63.647800000000004 0.0077693599999999995
+MUSETT_T2_DSSD_X71_E -63.4446 0.0077446
+MUSETT_T2_DSSD_X72_E -63.3618 0.00773443
+MUSETT_T2_DSSD_X73_E -63.093900000000005 0.00770176
+MUSETT_T2_DSSD_X74_E -63.8269 0.0077912499999999996
+MUSETT_T2_DSSD_X75_E -63.664199999999994 0.00777139
+MUSETT_T2_DSSD_X76_E -63.8841 0.00779822
+MUSETT_T2_DSSD_X77_E -63.7164 0.00777776
+MUSETT_T2_DSSD_X78_E -63.6246 0.007766619999999999
+MUSETT_T2_DSSD_X79_E -63.5937 0.00776277
+MUSETT_T2_DSSD_X80_E -63.2476 0.00772049
+MUSETT_T2_DSSD_X81_E -63.2975 0.0077267099999999995
+MUSETT_T2_DSSD_X82_E -63.1009 0.00770261
+MUSETT_T2_DSSD_X83_E -63.149800000000006 0.00770857
+MUSETT_T2_DSSD_X84_E -63.9192 0.007802450000000001
+MUSETT_T2_DSSD_X85_E -63.8105 0.0077892000000000005
+MUSETT_T2_DSSD_X86_E -63.724599999999995 0.00777877
+MUSETT_T2_DSSD_X87_E -63.9231 0.00780293
+MUSETT_T2_DSSD_X88_E -63.0451 0.0076958
+MUSETT_T2_DSSD_X89_E -63.491800000000005 0.007750379999999999
+MUSETT_T2_DSSD_X90_E -63.3429 0.00773222
+MUSETT_T2_DSSD_X91_E -63.540699999999994 0.007756300000000001
+MUSETT_T2_DSSD_X92_E -63.268 0.00772303
+MUSETT_T2_DSSD_X93_E -64.611 0.00788691
+MUSETT_T2_DSSD_X94_E -63.699 0.0077756
+MUSETT_T2_DSSD_X95_E -63.6235 0.00776632
+MUSETT_T2_DSSD_X96_E -59.026199999999996 0.00720527
+MUSETT_T2_DSSD_X97_E -58.5406 0.00714597
+MUSETT_T2_DSSD_X98_E -58.3044 0.00711715
+MUSETT_T2_DSSD_X99_E -58.710800000000006 0.00716671
+MUSETT_T2_DSSD_X100_E -59.397800000000004 0.00725058
+MUSETT_T2_DSSD_X101_E -59.3529 0.0072451
+MUSETT_T2_DSSD_X102_E -58.824 0.00718059
+MUSETT_T2_DSSD_X103_E -59.0216 0.0072047
+MUSETT_T2_DSSD_X104_E -59.011199999999995 0.0072034
+MUSETT_T2_DSSD_X105_E -59.098800000000004 0.00721406
+MUSETT_T2_DSSD_X106_E -58.7173 0.0071675
+MUSETT_T2_DSSD_X107_E -58.9915 0.00720094
+MUSETT_T2_DSSD_X108_E -58.718900000000005 0.00716772
+MUSETT_T2_DSSD_X109_E -60.3408 0.00736568
+MUSETT_T2_DSSD_X110_E -58.9501 0.0071959
+MUSETT_T2_DSSD_X111_E -58.6752 0.00716237
+MUSETT_T2_DSSD_X112_E -59.2957 0.0072381
+MUSETT_T2_DSSD_X113_E -59.3395 0.00724343
+MUSETT_T2_DSSD_X114_E -59.702 0.00728774
+MUSETT_T2_DSSD_X115_E -59.145300000000006 0.00721974
+MUSETT_T2_DSSD_X116_E -59.642 0.00728038
+MUSETT_T2_DSSD_X117_E -59.9957 0.00732358
+MUSETT_T2_DSSD_X118_E -59.4429 0.00725607
+MUSETT_T2_DSSD_X119_E -59.354800000000004 0.00724536
+MUSETT_T2_DSSD_X120_E -60.0831 0.00733422
+MUSETT_T2_DSSD_X121_E -58.758900000000004 0.00717258
+MUSETT_T2_DSSD_X122_E -59.087300000000006 0.00721264
+MUSETT_T2_DSSD_X123_E -59.302 0.0072389
+MUSETT_T2_DSSD_X124_E -58.9116 0.00719123
+MUSETT_T2_DSSD_X125_E -58.940599999999996 0.00719471
+MUSETT_T2_DSSD_X126_E -59.1426 0.0072194
+MUSETT_T2_DSSD_X127_E -59.2913 0.0072375600000000005
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..db568f8d67c8f9e13b39457ae43502806b6fcbdd
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_E 63.2211 -0.00771756
+MUSETT_T2_DSSD_Y1_E 64.033 -0.00781661
+MUSETT_T2_DSSD_Y2_E 62.573 -0.00763842
+MUSETT_T2_DSSD_Y3_E 63.453199999999995 -0.007745879999999999
+MUSETT_T2_DSSD_Y4_E 63.0084 -0.00769158
+MUSETT_T2_DSSD_Y5_E 62.742 -0.00765904
+MUSETT_T2_DSSD_Y6_E 63.0508 -0.00769679
+MUSETT_T2_DSSD_Y7_E 62.6824 -0.0076517600000000005
+MUSETT_T2_DSSD_Y8_E 62.844300000000004 -0.00767155
+MUSETT_T2_DSSD_Y9_E 63.462900000000005 -0.007747029999999999
+MUSETT_T2_DSSD_Y10_E 62.9966 -0.00769016
+MUSETT_T2_DSSD_Y11_E 62.575 -0.00763867
+MUSETT_T2_DSSD_Y12_E 62.1312 -0.00758453
+MUSETT_T2_DSSD_Y13_E 62.781800000000004 -0.00766392
+MUSETT_T2_DSSD_Y14_E 62.9937 -0.00768982
+MUSETT_T2_DSSD_Y15_E 63.488800000000005 -0.00775026
+MUSETT_T2_DSSD_Y16_E 61.669599999999996 -0.0075280899999999994
+MUSETT_T2_DSSD_Y17_E 60.961400000000005 -0.0074417400000000005
+MUSETT_T2_DSSD_Y18_E 60.7264 -0.00741301
+MUSETT_T2_DSSD_Y19_E 62.0874 -0.00757914
+MUSETT_T2_DSSD_Y20_E 61.094300000000004 -0.00745789
+MUSETT_T2_DSSD_Y21_E 60.9275 -0.00743756
+MUSETT_T2_DSSD_Y22_E 62.1491 -0.00758664
+MUSETT_T2_DSSD_Y23_E 61.087900000000005 -0.00745714
+MUSETT_T2_DSSD_Y24_E 61.0724 -0.00745528
+MUSETT_T2_DSSD_Y25_E 61.6042 -0.0075201700000000005
+MUSETT_T2_DSSD_Y26_E 61.1313 -0.00746243
+MUSETT_T2_DSSD_Y27_E 61.442 -0.00750039
+MUSETT_T2_DSSD_Y28_E 61.55 -0.00751354
+MUSETT_T2_DSSD_Y29_E 61.5135 -0.00750906
+MUSETT_T2_DSSD_Y30_E 61.3444 -0.00748846
+MUSETT_T2_DSSD_Y31_E 61.7721 -0.00754065
+MUSETT_T2_DSSD_Y32_E 56.3053 -0.00687326
+MUSETT_T2_DSSD_Y33_E 56.4975 -0.00689675
+MUSETT_T2_DSSD_Y34_E 56.8346 -0.00693796
+MUSETT_T2_DSSD_Y35_E 56.7034 -0.00692192
+MUSETT_T2_DSSD_Y36_E 56.977 -0.0069553
+MUSETT_T2_DSSD_Y37_E 56.8891 -0.00694457
+MUSETT_T2_DSSD_Y38_E 56.450300000000006 -0.0068909900000000005
+MUSETT_T2_DSSD_Y39_E 56.4039 -0.006885329999999999
+MUSETT_T2_DSSD_Y40_E 56.2056 -0.00686116
+MUSETT_T2_DSSD_Y41_E 58.1252 -0.0070954600000000005
+MUSETT_T2_DSSD_Y42_E 56.7624 -0.00692908
+MUSETT_T2_DSSD_Y43_E 56.2999 -0.006872690000000001
+MUSETT_T2_DSSD_Y44_E 57.261300000000006 -0.00698997
+MUSETT_T2_DSSD_Y45_E 57.2476 -0.00698834
+MUSETT_T2_DSSD_Y46_E 57.0309 -0.00696185
+MUSETT_T2_DSSD_Y47_E 56.7446 -0.006926949999999999
+MUSETT_T2_DSSD_Y48_E 57.601800000000004 -0.007031620000000001
+MUSETT_T2_DSSD_Y49_E 57.0171 -0.00696022
+MUSETT_T2_DSSD_Y50_E 57.9334 -0.00707206
+MUSETT_T2_DSSD_Y51_E 57.4264 -0.00701017
+MUSETT_T2_DSSD_Y52_E 57.2978 -0.00699446
+MUSETT_T2_DSSD_Y53_E 58.6368 -0.00715795
+MUSETT_T2_DSSD_Y54_E 57.7444 -0.007049000000000001
+MUSETT_T2_DSSD_Y55_E 57.8392 -0.00706057
+MUSETT_T2_DSSD_Y56_E 57.708800000000004 -0.0070446499999999995
+MUSETT_T2_DSSD_Y57_E 57.5585 -0.00702632
+MUSETT_T2_DSSD_Y58_E 57.4748 -0.00701608
+MUSETT_T2_DSSD_Y59_E 58.2609 -0.00711207
+MUSETT_T2_DSSD_Y60_E 57.892199999999995 -0.00706703
+MUSETT_T2_DSSD_Y61_E 57.33 -0.00699845
+MUSETT_T2_DSSD_Y62_E 57.835699999999996 -0.00706015
+MUSETT_T2_DSSD_Y63_E 58.1845 -0.00710268
+MUSETT_T2_DSSD_Y64_E 59.348099999999995 -0.007244830000000001
+MUSETT_T2_DSSD_Y65_E 59.6057 -0.00727624
+MUSETT_T2_DSSD_Y66_E 59.4559 -0.00725797
+MUSETT_T2_DSSD_Y67_E 60.4295 -0.0073767500000000005
+MUSETT_T2_DSSD_Y68_E 59.568599999999996 -0.00727167
+MUSETT_T2_DSSD_Y69_E 59.821400000000004 -0.00730253
+MUSETT_T2_DSSD_Y70_E 59.558 -0.00727041
+MUSETT_T2_DSSD_Y71_E 59.8926 -0.0073113
+MUSETT_T2_DSSD_Y72_E 59.8765 -0.007309230000000001
+MUSETT_T2_DSSD_Y73_E 59.5571 -0.0072702999999999995
+MUSETT_T2_DSSD_Y74_E 59.902699999999996 -0.0073124900000000005
+MUSETT_T2_DSSD_Y75_E 60.0592 -0.00733158
+MUSETT_T2_DSSD_Y76_E 59.3142 -0.0072406499999999995
+MUSETT_T2_DSSD_Y77_E 59.977199999999996 -0.00732152
+MUSETT_T2_DSSD_Y78_E 59.375699999999995 -0.00724812
+MUSETT_T2_DSSD_Y79_E 60.1625 -0.00734418
+MUSETT_T2_DSSD_Y80_E 60.553599999999996 -0.0073919699999999994
+MUSETT_T2_DSSD_Y81_E 61.2375 -0.00747541
+MUSETT_T2_DSSD_Y82_E 60.562599999999996 -0.00739303
+MUSETT_T2_DSSD_Y83_E 61.2245 -0.00747385
+MUSETT_T2_DSSD_Y84_E 61.126400000000004 -0.00746188
+MUSETT_T2_DSSD_Y85_E 60.9095 -0.0074354
+MUSETT_T2_DSSD_Y86_E 60.9575 -0.00744128
+MUSETT_T2_DSSD_Y87_E 61.286199999999994 -0.00748137
+MUSETT_T2_DSSD_Y88_E 60.884699999999995 -0.007432299999999999
+MUSETT_T2_DSSD_Y89_E 60.871 -0.007430679999999999
+MUSETT_T2_DSSD_Y90_E 61.4437 -0.00750059
+MUSETT_T2_DSSD_Y91_E 60.6586 -0.00740476
+MUSETT_T2_DSSD_Y92_E 61.0976 -0.00745829
+MUSETT_T2_DSSD_Y93_E 60.6141 -0.00739932
+MUSETT_T2_DSSD_Y94_E 61.0445 -0.00745181
+MUSETT_T2_DSSD_Y95_E 61.4704 -0.00750378
+MUSETT_T2_DSSD_Y96_E 56.8785 -0.00694331
+MUSETT_T2_DSSD_Y97_E 55.9619 -0.006831380000000001
+MUSETT_T2_DSSD_Y98_E 56.2188 -0.00686276
+MUSETT_T2_DSSD_Y99_E 56.6425 -0.00691453
+MUSETT_T2_DSSD_Y100_E 56.348 -0.00687854
+MUSETT_T2_DSSD_Y101_E 56.7474 -0.0069273
+MUSETT_T2_DSSD_Y102_E 55.9048 -0.00682446
+MUSETT_T2_DSSD_Y103_E 57.240300000000005 -0.00698747
+MUSETT_T2_DSSD_Y104_E 56.0874 -0.006846720000000001
+MUSETT_T2_DSSD_Y105_E 56.732099999999996 -0.0069254600000000005
+MUSETT_T2_DSSD_Y106_E 56.6237 -0.00691218
+MUSETT_T2_DSSD_Y107_E 57.520300000000006 -0.00702164
+MUSETT_T2_DSSD_Y108_E 57.0144 -0.0069599
+MUSETT_T2_DSSD_Y109_E 56.700300000000006 -0.00692155
+MUSETT_T2_DSSD_Y110_E 57.019800000000004 -0.006960549999999999
+MUSETT_T2_DSSD_Y111_E 56.158699999999996 -0.00685546
+MUSETT_T2_DSSD_Y112_E 56.4865 -0.00689543
+MUSETT_T2_DSSD_Y113_E 57.289300000000004 -0.00699345
+MUSETT_T2_DSSD_Y114_E 56.5979 -0.00690909
+MUSETT_T2_DSSD_Y115_E 56.8241 -0.00693669
+MUSETT_T2_DSSD_Y116_E 56.51 -0.00689835
+MUSETT_T2_DSSD_Y117_E 56.5638 -0.00690489
+MUSETT_T2_DSSD_Y118_E 56.834900000000005 -0.00693798
+MUSETT_T2_DSSD_Y119_E 56.738099999999996 -0.0069261999999999995
+MUSETT_T2_DSSD_Y120_E 56.3376 -0.00687729
+MUSETT_T2_DSSD_Y121_E 57.0592 -0.00696537
+MUSETT_T2_DSSD_Y122_E 57.4198 -0.007009400000000001
+MUSETT_T2_DSSD_Y123_E -10.0 0.0
+MUSETT_T2_DSSD_Y124_E 56.2087 -0.00686156
+MUSETT_T2_DSSD_Y125_E 56.914199999999994 -0.0069477
+MUSETT_T2_DSSD_Y126_E 56.3399 -0.00687758
+MUSETT_T2_DSSD_Y127_E 56.1682 -0.0068566
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..5df18adba5b9e7607717279d1e66bc626b9ccc17
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_T 961.969 -0.113282
+MUSETT_T2_DSSD_X1_T 958.383 -0.112935
+MUSETT_T2_DSSD_X2_T 959.323 -0.113903
+MUSETT_T2_DSSD_X3_T 971.546 -0.11541
+MUSETT_T2_DSSD_X4_T 974.655 -0.114834
+MUSETT_T2_DSSD_X5_T 1003.683 -0.116968
+MUSETT_T2_DSSD_X6_T 989.279 -0.116144
+MUSETT_T2_DSSD_X7_T 1005.564 -0.116738
+MUSETT_T2_DSSD_X8_T 997.02 -0.115736
+MUSETT_T2_DSSD_X9_T 1009.567 -0.117191
+MUSETT_T2_DSSD_X10_T 1016.097 -0.117505
+MUSETT_T2_DSSD_X11_T 1010.396 -0.116868
+MUSETT_T2_DSSD_X12_T 1023.961 -0.117596
+MUSETT_T2_DSSD_X13_T 1021.425 -0.116864
+MUSETT_T2_DSSD_X14_T 1022.087 -0.116934
+MUSETT_T2_DSSD_X15_T 1404.789 -0.118078
+MUSETT_T2_DSSD_X16_T 967.642 -0.111042
+MUSETT_T2_DSSD_X17_T 983.495 -0.1129
+MUSETT_T2_DSSD_X18_T 979.424 -0.113239
+MUSETT_T2_DSSD_X19_T 977.956 -0.11311
+MUSETT_T2_DSSD_X20_T 985.742 -0.114433
+MUSETT_T2_DSSD_X21_T 984.648 -0.113893
+MUSETT_T2_DSSD_X22_T 982.48 -0.113604
+MUSETT_T2_DSSD_X23_T 987.397 -0.114596
+MUSETT_T2_DSSD_X24_T 970.925 -0.113523
+MUSETT_T2_DSSD_X25_T 975.832 -0.114529
+MUSETT_T2_DSSD_X26_T 976.316 -0.114587
+MUSETT_T2_DSSD_X27_T 968.817 -0.114127
+MUSETT_T2_DSSD_X28_T 972.791 -0.115049
+MUSETT_T2_DSSD_X29_T 976.306 -0.114577
+MUSETT_T2_DSSD_X30_T 967.35 -0.114801
+MUSETT_T2_DSSD_X31_T 1112.794 -0.114725
+MUSETT_T2_DSSD_X32_T 886.943 -0.106884
+MUSETT_T2_DSSD_X33_T 884.583 -0.106588
+MUSETT_T2_DSSD_X34_T 893.29 -0.10771
+MUSETT_T2_DSSD_X35_T 890.797 -0.10739
+MUSETT_T2_DSSD_X36_T 904.52 -0.109058
+MUSETT_T2_DSSD_X37_T 901.6 -0.108685
+MUSETT_T2_DSSD_X38_T 912.776 -0.109605
+MUSETT_T2_DSSD_X39_T 909.538 -0.109211
+MUSETT_T2_DSSD_X40_T 905.616 -0.109168
+MUSETT_T2_DSSD_X41_T 909.953 -0.109617
+MUSETT_T2_DSSD_X42_T 915.691 -0.1104
+MUSETT_T2_DSSD_X43_T 914.614 -0.110254
+MUSETT_T2_DSSD_X44_T 922.657 -0.111219
+MUSETT_T2_DSSD_X45_T 921.084 -0.111043
+MUSETT_T2_DSSD_X46_T 924.127 -0.111378
+MUSETT_T2_DSSD_X47_T 1314.501 -0.11089
+MUSETT_T2_DSSD_X48_T 855.885 -0.102956
+MUSETT_T2_DSSD_X49_T 865.811 -0.104191
+MUSETT_T2_DSSD_X50_T 875.413 -0.105362
+MUSETT_T2_DSSD_X51_T 869.6 -0.10464
+MUSETT_T2_DSSD_X52_T 878.692 -0.105723
+MUSETT_T2_DSSD_X53_T 878.801 -0.105755
+MUSETT_T2_DSSD_X54_T 880.829 -0.105984
+MUSETT_T2_DSSD_X55_T 888.51 -0.106931
+MUSETT_T2_DSSD_X56_T 897.44 -0.108024
+MUSETT_T2_DSSD_X57_T 903.488 -0.108307
+MUSETT_T2_DSSD_X58_T 891.54 -0.107279
+MUSETT_T2_DSSD_X59_T 901.749 -0.108543
+MUSETT_T2_DSSD_X60_T 903.111 -0.108721
+MUSETT_T2_DSSD_X61_T 902.871 -0.108665
+MUSETT_T2_DSSD_X62_T 899.187 -0.10824
+MUSETT_T2_DSSD_X63_T 1290.423 -0.107885
+MUSETT_T2_DSSD_X64_T 974.417 -0.117533
+MUSETT_T2_DSSD_X65_T 974.467 -0.117545
+MUSETT_T2_DSSD_X66_T 982.266 -0.118957
+MUSETT_T2_DSSD_X67_T 987.279 -0.119584
+MUSETT_T2_DSSD_X68_T 450.0 -0.119902
+MUSETT_T2_DSSD_X69_T 994.768 -0.12002
+MUSETT_T2_DSSD_X70_T 996.07 -0.120171
+MUSETT_T2_DSSD_X71_T 1001.148 -0.120802
+MUSETT_T2_DSSD_X72_T 990.627 -0.119977
+MUSETT_T2_DSSD_X73_T 1007.159 -0.12102
+MUSETT_T2_DSSD_X74_T 995.316 -0.12055
+MUSETT_T2_DSSD_X75_T 995.021 -0.12048
+MUSETT_T2_DSSD_X76_T 1004.692 -0.121688
+MUSETT_T2_DSSD_X77_T 1008.471 -0.122136
+MUSETT_T2_DSSD_X78_T 1011.105 -0.122472
+MUSETT_T2_DSSD_X79_T 1326.05 -0.121488
+MUSETT_T2_DSSD_X80_T 951.951 -0.115148
+MUSETT_T2_DSSD_X81_T 962.967 -0.116512
+MUSETT_T2_DSSD_X82_T 964.814 -0.116735
+MUSETT_T2_DSSD_X83_T 968.296 -0.117158
+MUSETT_T2_DSSD_X84_T 968.369 -0.117159
+MUSETT_T2_DSSD_X85_T 969.781 -0.117336
+MUSETT_T2_DSSD_X86_T 990.877 -0.118997
+MUSETT_T2_DSSD_X87_T 986.288 -0.118879
+MUSETT_T2_DSSD_X88_T 992.984 -0.120152
+MUSETT_T2_DSSD_X89_T 996.567 -0.120143
+MUSETT_T2_DSSD_X90_T 995.578 -0.120011
+MUSETT_T2_DSSD_X91_T 989.666 -0.118788
+MUSETT_T2_DSSD_X92_T 1002.901 -0.120614
+MUSETT_T2_DSSD_X93_T 1000.682 -0.12112
+MUSETT_T2_DSSD_X94_T 1005.506 -0.12123
+MUSETT_T2_DSSD_X95_T 994.062 -0.119394
+MUSETT_T2_DSSD_X96_T 903.468 -0.10895
+MUSETT_T2_DSSD_X97_T 920.18 -0.11099
+MUSETT_T2_DSSD_X98_T 919.46 -0.110483
+MUSETT_T2_DSSD_X99_T 916.305 -0.110494
+MUSETT_T2_DSSD_X100_T 925.516 -0.11163
+MUSETT_T2_DSSD_X101_T 924.994 -0.111573
+MUSETT_T2_DSSD_X102_T 926.844 -0.111368
+MUSETT_T2_DSSD_X103_T 927.713 -0.111888
+MUSETT_T2_DSSD_X104_T 934.246 -0.113122
+MUSETT_T2_DSSD_X105_T 942.1 -0.112764
+MUSETT_T2_DSSD_X106_T 939.807 -0.113373
+MUSETT_T2_DSSD_X107_T 938.544 -0.112797
+MUSETT_T2_DSSD_X108_T 938.298 -0.113176
+MUSETT_T2_DSSD_X109_T 941.18 -0.113973
+MUSETT_T2_DSSD_X110_T 941.929 -0.114066
+MUSETT_T2_DSSD_X111_T 948.461 -0.113973
+MUSETT_T2_DSSD_X112_T 911.72 -0.108961
+MUSETT_T2_DSSD_X113_T 916.448 -0.109531
+MUSETT_T2_DSSD_X114_T 913.525 -0.110461
+MUSETT_T2_DSSD_X115_T 916.767 -0.110414
+MUSETT_T2_DSSD_X116_T 932.449 -0.112323
+MUSETT_T2_DSSD_X117_T 935.405 -0.11267
+MUSETT_T2_DSSD_X118_T 951.71 -0.113333
+MUSETT_T2_DSSD_X119_T 947.484 -0.113698
+MUSETT_T2_DSSD_X120_T 940.04 -0.113666
+MUSETT_T2_DSSD_X121_T 955.99 -0.114745
+MUSETT_T2_DSSD_X122_T 950.863 -0.113673
+MUSETT_T2_DSSD_X123_T 957.151 -0.11443
+MUSETT_T2_DSSD_X124_T 939.375 -0.113174
+MUSETT_T2_DSSD_X125_T 935.68 -0.113143
+MUSETT_T2_DSSD_X126_T 947.829 -0.114176
+MUSETT_T2_DSSD_X127_T 954.772 -0.114186
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..21f5654504ae9c5acbe796aa23daa7bea234d885
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_T 986.809 -0.119525
+MUSETT_T2_DSSD_Y1_T 989.707 -0.119903
+MUSETT_T2_DSSD_Y2_T 988.424 -0.119776
+MUSETT_T2_DSSD_Y3_T 994.772 -0.120524
+MUSETT_T2_DSSD_Y4_T 1000.112 -0.121165
+MUSETT_T2_DSSD_Y5_T 998.216 -0.120947
+MUSETT_T2_DSSD_Y6_T 1003.137 -0.121526
+MUSETT_T2_DSSD_Y7_T 1010.151 -0.122366
+MUSETT_T2_DSSD_Y8_T 1011.59 -0.122539
+MUSETT_T2_DSSD_Y9_T 1003.181 -0.121307
+MUSETT_T2_DSSD_Y10_T 1009.494 -0.122275
+MUSETT_T2_DSSD_Y11_T 1014.568 -0.122898
+MUSETT_T2_DSSD_Y12_T 1016.416 -0.12312
+MUSETT_T2_DSSD_Y13_T 1021.48 -0.123746
+MUSETT_T2_DSSD_Y14_T 1020.595 -0.123621
+MUSETT_T2_DSSD_Y15_T 1025.592 -0.123744
+MUSETT_T2_DSSD_Y16_T 939.197 -0.113632
+MUSETT_T2_DSSD_Y17_T 938.486 -0.11359
+MUSETT_T2_DSSD_Y18_T 938.117 -0.113546
+MUSETT_T2_DSSD_Y19_T 937.753 -0.113526
+MUSETT_T2_DSSD_Y20_T 952.829 -0.115367
+MUSETT_T2_DSSD_Y21_T 968.723 -0.117305
+MUSETT_T2_DSSD_Y22_T 964.707 -0.11682
+MUSETT_T2_DSSD_Y23_T 959.632 -0.116216
+MUSETT_T2_DSSD_Y24_T 975.259 -0.118134
+MUSETT_T2_DSSD_Y25_T 977.951 -0.118446
+MUSETT_T2_DSSD_Y26_T 975.198 -0.117858
+MUSETT_T2_DSSD_Y27_T 981.828 -0.11895
+MUSETT_T2_DSSD_Y28_T 976.046 -0.118238
+MUSETT_T2_DSSD_Y29_T 977.812 -0.118468
+MUSETT_T2_DSSD_Y30_T 976.59 -0.118337
+MUSETT_T2_DSSD_Y31_T 964.767 -0.116905
+MUSETT_T2_DSSD_Y32_T 869.429 -0.105393
+MUSETT_T2_DSSD_Y33_T 876.222 -0.106206
+MUSETT_T2_DSSD_Y34_T 892.019 -0.107711
+MUSETT_T2_DSSD_Y35_T 893.32 -0.10786
+MUSETT_T2_DSSD_Y36_T 893.254 -0.108297
+MUSETT_T2_DSSD_Y37_T 887.737 -0.107628
+MUSETT_T2_DSSD_Y38_T 903.996 -0.109574
+MUSETT_T2_DSSD_Y39_T 902.76 -0.109401
+MUSETT_T2_DSSD_Y40_T 905.554 -0.109756
+MUSETT_T2_DSSD_Y41_T 910.354 -0.110304
+MUSETT_T2_DSSD_Y42_T 906.017 -0.10979
+MUSETT_T2_DSSD_Y43_T 909.731 -0.110231
+MUSETT_T2_DSSD_Y44_T 912.223 -0.110532
+MUSETT_T2_DSSD_Y45_T 915.291 -0.110907
+MUSETT_T2_DSSD_Y46_T 919.13 -0.111371
+MUSETT_T2_DSSD_Y47_T 914.361 -0.110791
+MUSETT_T2_DSSD_Y48_T 892.707 -0.108016
+MUSETT_T2_DSSD_Y49_T 901.908 -0.109155
+MUSETT_T2_DSSD_Y50_T 899.294 -0.108834
+MUSETT_T2_DSSD_Y51_T 912.773 -0.110471
+MUSETT_T2_DSSD_Y52_T 905.427 -0.109622
+MUSETT_T2_DSSD_Y53_T 914.293 -0.110708
+MUSETT_T2_DSSD_Y54_T 917.644 -0.111116
+MUSETT_T2_DSSD_Y55_T 913.315 -0.11061
+MUSETT_T2_DSSD_Y56_T 926.108 -0.11216
+MUSETT_T2_DSSD_Y57_T 917.422 -0.111079
+MUSETT_T2_DSSD_Y58_T 919.823 -0.111393
+MUSETT_T2_DSSD_Y59_T 923.686 -0.11168
+MUSETT_T2_DSSD_Y60_T 939.831 -0.11386
+MUSETT_T2_DSSD_Y61_T 928.854 -0.112068
+MUSETT_T2_DSSD_Y62_T 921.381 -0.111623
+MUSETT_T2_DSSD_Y63_T 929.377 -0.112593
+MUSETT_T2_DSSD_Y64_T 925.209 -0.111864
+MUSETT_T2_DSSD_Y65_T 944.461 -0.114242
+MUSETT_T2_DSSD_Y66_T 948.829 -0.114763
+MUSETT_T2_DSSD_Y67_T 946.46 -0.114477
+MUSETT_T2_DSSD_Y68_T 972.881 -0.117701
+MUSETT_T2_DSSD_Y69_T 960.964 -0.116242
+MUSETT_T2_DSSD_Y70_T 968.396 -0.117144
+MUSETT_T2_DSSD_Y71_T 965.324 -0.116783
+MUSETT_T2_DSSD_Y72_T 956.836 -0.115747
+MUSETT_T2_DSSD_Y73_T 958.888 -0.115989
+MUSETT_T2_DSSD_Y74_T 965.259 -0.116762
+MUSETT_T2_DSSD_Y75_T 978.071 -0.118324
+MUSETT_T2_DSSD_Y76_T 974.474 -0.117892
+MUSETT_T2_DSSD_Y77_T 977.064 -0.118194
+MUSETT_T2_DSSD_Y78_T 967.826 -0.117092
+MUSETT_T2_DSSD_Y79_T 969.895 -0.117343
+MUSETT_T2_DSSD_Y80_T 945.396 -0.114246
+MUSETT_T2_DSSD_Y81_T 939.845 -0.113582
+MUSETT_T2_DSSD_Y82_T 951.951 -0.115097
+MUSETT_T2_DSSD_Y83_T 947.601 -0.114574
+MUSETT_T2_DSSD_Y84_T 956.462 -0.115653
+MUSETT_T2_DSSD_Y85_T 966.795 -0.11692
+MUSETT_T2_DSSD_Y86_T 965.068 -0.116695
+MUSETT_T2_DSSD_Y87_T 970.746 -0.117388
+MUSETT_T2_DSSD_Y88_T 973.531 -0.117739
+MUSETT_T2_DSSD_Y89_T 975.469 -0.11797
+MUSETT_T2_DSSD_Y90_T 979.918 -0.118525
+MUSETT_T2_DSSD_Y91_T 970.565 -0.117371
+MUSETT_T2_DSSD_Y92_T 978.32 -0.118331
+MUSETT_T2_DSSD_Y93_T 977.975 -0.118283
+MUSETT_T2_DSSD_Y94_T 985.51 -0.119174
+MUSETT_T2_DSSD_Y95_T 990.075 -0.119806
+MUSETT_T2_DSSD_Y96_T 898.373 -0.108639
+MUSETT_T2_DSSD_Y97_T 894.37 -0.108189
+MUSETT_T2_DSSD_Y98_T 904.896 -0.109474
+MUSETT_T2_DSSD_Y99_T 903.57 -0.109308
+MUSETT_T2_DSSD_Y100_T 917.463 -0.110997
+MUSETT_T2_DSSD_Y101_T 925.187 -0.111938
+MUSETT_T2_DSSD_Y102_T 915.403 -0.110746
+MUSETT_T2_DSSD_Y103_T 931.348 -0.112691
+MUSETT_T2_DSSD_Y104_T 925.85 -0.112025
+MUSETT_T2_DSSD_Y105_T 921.698 -0.111507
+MUSETT_T2_DSSD_Y106_T 922.879 -0.111663
+MUSETT_T2_DSSD_Y107_T 922.629 -0.111623
+MUSETT_T2_DSSD_Y108_T 926.153 -0.112066
+MUSETT_T2_DSSD_Y109_T 926.883 -0.11214
+MUSETT_T2_DSSD_Y110_T 923.148 -0.111703
+MUSETT_T2_DSSD_Y111_T 913.683 -0.110525
+MUSETT_T2_DSSD_Y112_T 853.746 -0.102981
+MUSETT_T2_DSSD_Y113_T 869.715 -0.104976
+MUSETT_T2_DSSD_Y114_T 877.625 -0.105936
+MUSETT_T2_DSSD_Y115_T 876.055 -0.10575
+MUSETT_T2_DSSD_Y116_T 884.136 -0.106741
+MUSETT_T2_DSSD_Y117_T 880.455 -0.10628
+MUSETT_T2_DSSD_Y118_T 892.866 -0.107805
+MUSETT_T2_DSSD_Y119_T 894.388 -0.107966
+MUSETT_T2_DSSD_Y120_T 884.377 -0.106759
+MUSETT_T2_DSSD_Y121_T 897.709 -0.108381
+MUSETT_T2_DSSD_Y122_T 896.178 -0.108195
+MUSETT_T2_DSSD_Y123_T 1336.153 -0.108195
+MUSETT_T2_DSSD_Y124_T 898.806 -0.108519
+MUSETT_T2_DSSD_Y125_T 899.754 -0.10863
+MUSETT_T2_DSSD_Y126_T 900.898 -0.108768
+MUSETT_T2_DSSD_Y127_T 897.019 -0.108297
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..36cee699c7a580265f9b036820552f9932026657
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E -62.298199999999994 0.007604720000000001
+MUSETT_T3_DSSD_X1_E -61.861599999999996 0.00755141
+MUSETT_T3_DSSD_X2_E -62.1569 0.00758753
+MUSETT_T3_DSSD_X3_E -62.2596 0.00760006
+MUSETT_T3_DSSD_X4_E -61.881699999999995 0.0075539100000000005
+MUSETT_T3_DSSD_X5_E -61.8174 0.0075460399999999995
+MUSETT_T3_DSSD_X6_E -62.0389 0.007573089999999999
+MUSETT_T3_DSSD_X7_E -61.5586 0.00751446
+MUSETT_T3_DSSD_X8_E -61.705 0.00753228
+MUSETT_T3_DSSD_X9_E -61.812 0.007545359999999999
+MUSETT_T3_DSSD_X10_E -61.801300000000005 0.007544019999999999
+MUSETT_T3_DSSD_X11_E -62.828 0.00766936
+MUSETT_T3_DSSD_X12_E -61.5993 0.00751937
+MUSETT_T3_DSSD_X13_E -61.7577 0.00753873
+MUSETT_T3_DSSD_X14_E -61.494699999999995 0.0075066199999999994
+MUSETT_T3_DSSD_X15_E -62.5182 0.00763157
+MUSETT_T3_DSSD_X16_E -63.590900000000005 0.00776244
+MUSETT_T3_DSSD_X17_E -63.0171 0.007692490000000001
+MUSETT_T3_DSSD_X18_E -62.878699999999995 0.00767552
+MUSETT_T3_DSSD_X19_E -62.791 0.00766488
+MUSETT_T3_DSSD_X20_E -62.5592 0.00763654
+MUSETT_T3_DSSD_X21_E -63.1133 0.0077042099999999995
+MUSETT_T3_DSSD_X22_E -63.6998 0.00777586
+MUSETT_T3_DSSD_X23_E -63.781099999999995 0.0077857
+MUSETT_T3_DSSD_X24_E -62.7205 0.007656240000000001
+MUSETT_T3_DSSD_X25_E -63.4567 0.0077461399999999994
+MUSETT_T3_DSSD_X26_E -63.4691 0.007747690000000001
+MUSETT_T3_DSSD_X27_E -63.2955 0.00772649
+MUSETT_T3_DSSD_X28_E -63.5076 0.00775235
+MUSETT_T3_DSSD_X29_E -63.5629 0.0077591
+MUSETT_T3_DSSD_X30_E -64.4644 0.00786912
+MUSETT_T3_DSSD_X31_E -63.6907 0.00777475
+MUSETT_T3_DSSD_X32_E -59.3003 0.0072388899999999996
+MUSETT_T3_DSSD_X33_E -59.122800000000005 0.0072171200000000005
+MUSETT_T3_DSSD_X34_E -58.098 0.00709209
+MUSETT_T3_DSSD_X35_E -58.3114 0.00711809
+MUSETT_T3_DSSD_X36_E -58.7781 0.007175010000000001
+MUSETT_T3_DSSD_X37_E -58.990300000000005 0.00720099
+MUSETT_T3_DSSD_X38_E -59.2329 0.0072305799999999995
+MUSETT_T3_DSSD_X39_E -58.6159 0.00715528
+MUSETT_T3_DSSD_X40_E -59.221599999999995 0.00722918
+MUSETT_T3_DSSD_X41_E -58.8815 0.007187649999999999
+MUSETT_T3_DSSD_X42_E -58.9773 0.00719934
+MUSETT_T3_DSSD_X43_E -10.0 0.0
+MUSETT_T3_DSSD_X44_E -58.9833 0.00720009
+MUSETT_T3_DSSD_X45_E -59.359300000000005 0.00724594
+MUSETT_T3_DSSD_X46_E -58.7775 0.0071749299999999995
+MUSETT_T3_DSSD_X47_E -59.126 0.00721749
+MUSETT_T3_DSSD_X48_E -57.3041 0.00699513
+MUSETT_T3_DSSD_X49_E -57.151199999999996 0.00697642
+MUSETT_T3_DSSD_X50_E -56.849199999999996 0.00693961
+MUSETT_T3_DSSD_X51_E -57.2057 0.00698311
+MUSETT_T3_DSSD_X52_E -56.8352 0.00693786
+MUSETT_T3_DSSD_X53_E -57.3401 0.00699951
+MUSETT_T3_DSSD_X54_E -56.5908 0.0069080899999999995
+MUSETT_T3_DSSD_X55_E -57.2623 0.00699005
+MUSETT_T3_DSSD_X56_E -57.574400000000004 0.0070281200000000005
+MUSETT_T3_DSSD_X57_E -56.496900000000004 0.00689662
+MUSETT_T3_DSSD_X58_E -57.4715 0.00701554
+MUSETT_T3_DSSD_X59_E -57.0619 0.00696556
+MUSETT_T3_DSSD_X60_E -56.3165 0.006874590000000001
+MUSETT_T3_DSSD_X61_E -56.8499 0.0069397
+MUSETT_T3_DSSD_X62_E -56.7607 0.00692884
+MUSETT_T3_DSSD_X63_E -56.499300000000005 0.006896950000000001
+MUSETT_T3_DSSD_X64_E -64.1702 0.00783318
+MUSETT_T3_DSSD_X65_E -63.8415 0.00779309
+MUSETT_T3_DSSD_X66_E -63.555699999999995 0.00775819
+MUSETT_T3_DSSD_X67_E -63.7677 0.00778403
+MUSETT_T3_DSSD_X68_E -63.6042 0.00776408
+MUSETT_T3_DSSD_X69_E -63.26 0.00772205
+MUSETT_T3_DSSD_X70_E -64.3055 0.00784974
+MUSETT_T3_DSSD_X71_E -62.501599999999996 0.0076295
+MUSETT_T3_DSSD_X72_E -62.6625 0.0076491400000000005
+MUSETT_T3_DSSD_X73_E -63.0105 0.00769167
+MUSETT_T3_DSSD_X74_E -63.1484 0.0077084200000000005
+MUSETT_T3_DSSD_X75_E -63.3793 0.00773664
+MUSETT_T3_DSSD_X76_E -64.06869999999999 0.007820820000000001
+MUSETT_T3_DSSD_X77_E -62.4702 0.00762573
+MUSETT_T3_DSSD_X78_E -62.5574 0.00763631
+MUSETT_T3_DSSD_X79_E -63.009699999999995 0.00769157
+MUSETT_T3_DSSD_X80_E -62.457800000000006 0.00762418
+MUSETT_T3_DSSD_X81_E -62.7791 0.00766339
+MUSETT_T3_DSSD_X82_E -62.621 0.007644110000000001
+MUSETT_T3_DSSD_X83_E -62.5784 0.0076389399999999994
+MUSETT_T3_DSSD_X84_E -62.005900000000004 0.00756897
+MUSETT_T3_DSSD_X85_E -62.4575 0.00762414
+MUSETT_T3_DSSD_X86_E -62.4031 0.00761752
+MUSETT_T3_DSSD_X87_E -62.1713 0.00758918
+MUSETT_T3_DSSD_X88_E -62.335300000000004 0.0076092
+MUSETT_T3_DSSD_X89_E -62.7474 0.0076596
+MUSETT_T3_DSSD_X90_E -62.3396 0.00760973
+MUSETT_T3_DSSD_X91_E -62.021300000000004 0.00757089
+MUSETT_T3_DSSD_X92_E -62.8345 0.00767017
+MUSETT_T3_DSSD_X93_E -62.5608 0.00763673
+MUSETT_T3_DSSD_X94_E -62.1409 0.00758552
+MUSETT_T3_DSSD_X95_E -62.3587 0.00761211
+MUSETT_T3_DSSD_X96_E -56.1256 0.00685121
+MUSETT_T3_DSSD_X97_E -55.9505 0.0068298199999999995
+MUSETT_T3_DSSD_X98_E -55.1796 0.00673572
+MUSETT_T3_DSSD_X99_E -55.7828 0.0068094
+MUSETT_T3_DSSD_X100_E -55.9559 0.0068305
+MUSETT_T3_DSSD_X101_E -55.934400000000004 0.00682783
+MUSETT_T3_DSSD_X102_E -55.9745 0.0068327200000000005
+MUSETT_T3_DSSD_X103_E -55.2549 0.00674491
+MUSETT_T3_DSSD_X104_E -55.4875 0.00677335
+MUSETT_T3_DSSD_X105_E -55.9893 0.00683453
+MUSETT_T3_DSSD_X106_E -55.8236 0.00681435
+MUSETT_T3_DSSD_X107_E -55.6815 0.0067969499999999995
+MUSETT_T3_DSSD_X108_E -56.7434 0.00692662
+MUSETT_T3_DSSD_X109_E -56.3005 0.00687254
+MUSETT_T3_DSSD_X110_E -55.822300000000006 0.00681419
+MUSETT_T3_DSSD_X111_E -55.6951 0.006798670000000001
+MUSETT_T3_DSSD_X112_E -57.5622 0.00702657
+MUSETT_T3_DSSD_X113_E -57.0135 0.0069596
+MUSETT_T3_DSSD_X114_E -57.5211 0.00702156
+MUSETT_T3_DSSD_X115_E -56.981 0.00695566
+MUSETT_T3_DSSD_X116_E -57.9725 0.00707666
+MUSETT_T3_DSSD_X117_E -57.2339 0.006986480000000001
+MUSETT_T3_DSSD_X118_E -57.4342 0.00701098
+MUSETT_T3_DSSD_X119_E -56.2134 0.0068619300000000005
+MUSETT_T3_DSSD_X120_E -56.7474 0.00692711
+MUSETT_T3_DSSD_X121_E -57.8891 0.0070665
+MUSETT_T3_DSSD_X122_E -57.5049 0.007019549999999999
+MUSETT_T3_DSSD_X123_E -57.096599999999995 0.00696973
+MUSETT_T3_DSSD_X124_E -57.651 0.0070374
+MUSETT_T3_DSSD_X125_E -56.7164 0.00692338
+MUSETT_T3_DSSD_X126_E -57.789699999999996 0.00705434
+MUSETT_T3_DSSD_X127_E -56.522 0.00689959
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e07fba05cb0d81bc362f99fb65163dd1f9bcd9aa
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_E 60.097199999999994 -0.00733611
+MUSETT_T3_DSSD_Y1_E 58.987 -0.00720065
+MUSETT_T3_DSSD_Y2_E 60.08 -0.00733404
+MUSETT_T3_DSSD_Y3_E 59.9365 -0.007316499999999999
+MUSETT_T3_DSSD_Y4_E 59.7695 -0.00729617
+MUSETT_T3_DSSD_Y5_E 59.8746 -0.00730898
+MUSETT_T3_DSSD_Y6_E 59.7753 -0.00729686
+MUSETT_T3_DSSD_Y7_E 60.1862 -0.007347
+MUSETT_T3_DSSD_Y8_E 60.4958 -0.00738477
+MUSETT_T3_DSSD_Y9_E 60.4393 -0.00737789
+MUSETT_T3_DSSD_Y10_E 60.1456 -0.00734201
+MUSETT_T3_DSSD_Y11_E 59.7911 -0.00729875
+MUSETT_T3_DSSD_Y12_E 59.6773 -0.0072848800000000005
+MUSETT_T3_DSSD_Y13_E 59.5835 -0.00727344
+MUSETT_T3_DSSD_Y14_E 60.5331 -0.00738936
+MUSETT_T3_DSSD_Y15_E 59.7249 -0.00729071
+MUSETT_T3_DSSD_Y16_E 62.9214 -0.00768089
+MUSETT_T3_DSSD_Y17_E 63.205400000000004 -0.00771552
+MUSETT_T3_DSSD_Y18_E 62.2674 -0.00760105
+MUSETT_T3_DSSD_Y19_E 62.6967 -0.007653470000000001
+MUSETT_T3_DSSD_Y20_E 63.193 -0.00771405
+MUSETT_T3_DSSD_Y21_E 63.5336 -0.00775561
+MUSETT_T3_DSSD_Y22_E 62.9808 -0.00768812
+MUSETT_T3_DSSD_Y23_E 62.964 -0.007686119999999999
+MUSETT_T3_DSSD_Y24_E 63.469300000000004 -0.00774779
+MUSETT_T3_DSSD_Y25_E 63.461 -0.00774678
+MUSETT_T3_DSSD_Y26_E 62.6 -0.00764164
+MUSETT_T3_DSSD_Y27_E 63.414 -0.0077410199999999995
+MUSETT_T3_DSSD_Y28_E 62.4672 -0.00762548
+MUSETT_T3_DSSD_Y29_E 62.971599999999995 -0.00768703
+MUSETT_T3_DSSD_Y30_E 63.0667 -0.0076986699999999995
+MUSETT_T3_DSSD_Y31_E 62.9483 -0.00768424
+MUSETT_T3_DSSD_Y32_E 56.0911 -0.00684714
+MUSETT_T3_DSSD_Y33_E 56.1939 -0.00685965
+MUSETT_T3_DSSD_Y34_E 55.8251 -0.0068147
+MUSETT_T3_DSSD_Y35_E 55.6744 -0.00679624
+MUSETT_T3_DSSD_Y36_E 55.7435 -0.00680473
+MUSETT_T3_DSSD_Y37_E 56.2304 -0.00686412
+MUSETT_T3_DSSD_Y38_E 55.9267 -0.0068270499999999994
+MUSETT_T3_DSSD_Y39_E 55.575199999999995 -0.00678415
+MUSETT_T3_DSSD_Y40_E 55.4219 -0.00676539
+MUSETT_T3_DSSD_Y41_E 56.1854 -0.00685863
+MUSETT_T3_DSSD_Y42_E 56.0069 -0.006836859999999999
+MUSETT_T3_DSSD_Y43_E 55.331199999999995 -0.00675434
+MUSETT_T3_DSSD_Y44_E 55.7624 -0.00680697
+MUSETT_T3_DSSD_Y45_E 55.6164 -0.0067892099999999995
+MUSETT_T3_DSSD_Y46_E 55.888 -0.006822320000000001
+MUSETT_T3_DSSD_Y47_E 55.807900000000004 -0.00681252
+MUSETT_T3_DSSD_Y48_E 56.633199999999995 -0.0069133
+MUSETT_T3_DSSD_Y49_E 56.902300000000004 -0.00694613
+MUSETT_T3_DSSD_Y50_E 57.1285 -0.00697375
+MUSETT_T3_DSSD_Y51_E 56.942800000000005 -0.00695109
+MUSETT_T3_DSSD_Y52_E 56.488800000000005 -0.00689569
+MUSETT_T3_DSSD_Y53_E 56.9381 -0.00695052
+MUSETT_T3_DSSD_Y54_E 56.6308 -0.00691301
+MUSETT_T3_DSSD_Y55_E 57.0191 -0.00696044
+MUSETT_T3_DSSD_Y56_E 57.0456 -0.0069635899999999995
+MUSETT_T3_DSSD_Y57_E 56.6141 -0.0069110199999999995
+MUSETT_T3_DSSD_Y58_E 57.4998 -0.00701906
+MUSETT_T3_DSSD_Y59_E 57.046800000000005 -0.00696375
+MUSETT_T3_DSSD_Y60_E 57.594 -0.00703054
+MUSETT_T3_DSSD_Y61_E 57.0305 -0.00696179
+MUSETT_T3_DSSD_Y62_E 56.7624 -0.00692908
+MUSETT_T3_DSSD_Y63_E 57.433699999999995 -0.0070110400000000005
+MUSETT_T3_DSSD_Y64_E 59.389300000000006 -0.007249729999999999
+MUSETT_T3_DSSD_Y65_E 59.9401 -0.00731694
+MUSETT_T3_DSSD_Y66_E 59.5251 -0.00726633
+MUSETT_T3_DSSD_Y67_E 59.3495 -0.00724484
+MUSETT_T3_DSSD_Y68_E 59.4437 -0.00725635
+MUSETT_T3_DSSD_Y69_E 58.7651 -0.00717351
+MUSETT_T3_DSSD_Y70_E 59.2969 -0.00723842
+MUSETT_T3_DSSD_Y71_E 59.9651 -0.00732006
+MUSETT_T3_DSSD_Y72_E 60.172599999999996 -0.00734537
+MUSETT_T3_DSSD_Y73_E 59.4516 -0.0072572999999999995
+MUSETT_T3_DSSD_Y74_E 59.5309 -0.00726702
+MUSETT_T3_DSSD_Y75_E 59.5826 -0.00727333
+MUSETT_T3_DSSD_Y76_E 59.590900000000005 -0.00727432
+MUSETT_T3_DSSD_Y77_E 59.3965 -0.00725058
+MUSETT_T3_DSSD_Y78_E 59.0289 -0.00720579
+MUSETT_T3_DSSD_Y79_E 59.962300000000006 -0.00731973
+MUSETT_T3_DSSD_Y80_E 62.810900000000004 -0.0076673900000000005
+MUSETT_T3_DSSD_Y81_E 62.7117 -0.00765528
+MUSETT_T3_DSSD_Y82_E 62.530699999999996 -0.00763323
+MUSETT_T3_DSSD_Y83_E 62.1472 -0.00758643
+MUSETT_T3_DSSD_Y84_E 62.024800000000006 -0.00757151
+MUSETT_T3_DSSD_Y85_E 62.6965 -0.00765345
+MUSETT_T3_DSSD_Y86_E 62.2624 -0.00760046
+MUSETT_T3_DSSD_Y87_E 62.9551 -0.00768508
+MUSETT_T3_DSSD_Y88_E 62.655 -0.00764835
+MUSETT_T3_DSSD_Y89_E 62.5921 -0.00764069
+MUSETT_T3_DSSD_Y90_E 61.832699999999996 -0.00754801
+MUSETT_T3_DSSD_Y91_E 61.9879 -0.00756697
+MUSETT_T3_DSSD_Y92_E 61.948 -0.00756205
+MUSETT_T3_DSSD_Y93_E 62.025800000000004 -0.00757163
+MUSETT_T3_DSSD_Y94_E 61.996 -0.0075679499999999995
+MUSETT_T3_DSSD_Y95_E 61.777699999999996 -0.0075413
+MUSETT_T3_DSSD_Y96_E 56.732699999999994 -0.00692539
+MUSETT_T3_DSSD_Y97_E 56.8633 -0.00694135
+MUSETT_T3_DSSD_Y98_E 56.282599999999995 -0.006870459999999999
+MUSETT_T3_DSSD_Y99_E 55.9378 -0.006828369999999999
+MUSETT_T3_DSSD_Y100_E 56.2782 -0.0068699500000000005
+MUSETT_T3_DSSD_Y101_E 56.282 -0.0068704000000000005
+MUSETT_T3_DSSD_Y102_E 55.9311 -0.006827580000000001
+MUSETT_T3_DSSD_Y103_E 55.9754 -0.00683298
+MUSETT_T3_DSSD_Y104_E 55.8431 -0.00681683
+MUSETT_T3_DSSD_Y105_E 56.2934 -0.00687176
+MUSETT_T3_DSSD_Y106_E 56.467699999999994 -0.0068930400000000005
+MUSETT_T3_DSSD_Y107_E 56.254599999999996 -0.006867
+MUSETT_T3_DSSD_Y108_E 55.7557 -0.0068061499999999995
+MUSETT_T3_DSSD_Y109_E 55.8956 -0.0068232100000000006
+MUSETT_T3_DSSD_Y110_E 56.6694 -0.0069177200000000005
+MUSETT_T3_DSSD_Y111_E 56.671699999999994 -0.00691799
+MUSETT_T3_DSSD_Y112_E 57.139 -0.00697499
+MUSETT_T3_DSSD_Y113_E 57.000099999999996 -0.00695808
+MUSETT_T3_DSSD_Y114_E 57.098699999999994 -0.006970189999999999
+MUSETT_T3_DSSD_Y115_E 56.9762 -0.00695517
+MUSETT_T3_DSSD_Y116_E 57.6053 -0.00703199
+MUSETT_T3_DSSD_Y117_E 57.2828 -0.00699264
+MUSETT_T3_DSSD_Y118_E 56.8406 -0.00693862
+MUSETT_T3_DSSD_Y119_E 57.6496 -0.00703728
+MUSETT_T3_DSSD_Y120_E 57.438300000000005 -0.00701157
+MUSETT_T3_DSSD_Y121_E 57.0848 -0.00696844
+MUSETT_T3_DSSD_Y122_E 57.433800000000005 -0.007011020000000001
+MUSETT_T3_DSSD_Y123_E 57.070800000000006 -0.00696674
+MUSETT_T3_DSSD_Y124_E 57.543699999999994 -0.00702442
+MUSETT_T3_DSSD_Y125_E 56.819900000000004 -0.00693609
+MUSETT_T3_DSSD_Y126_E 57.2394 -0.00698722
+MUSETT_T3_DSSD_Y127_E 57.5489 -0.00702512
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..89837b110354d53f0bdc471f95f2c50b5ac733b3
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_T 937.706 -0.113591
+MUSETT_T3_DSSD_X1_T 951.022 -0.115254
+MUSETT_T3_DSSD_X2_T 955.557 -0.115822
+MUSETT_T3_DSSD_X3_T 957.459 -0.116042
+MUSETT_T3_DSSD_X4_T 949.588 -0.115096
+MUSETT_T3_DSSD_X5_T 964.137 -0.11686
+MUSETT_T3_DSSD_X6_T 968.553 -0.117385
+MUSETT_T3_DSSD_X7_T 973.749 -0.118019
+MUSETT_T3_DSSD_X8_T 971.88 -0.117779
+MUSETT_T3_DSSD_X9_T 969.707 -0.117496
+MUSETT_T3_DSSD_X10_T 972.087 -0.117795
+MUSETT_T3_DSSD_X11_T 984.307 -0.119273
+MUSETT_T3_DSSD_X12_T 974.064 -0.118031
+MUSETT_T3_DSSD_X13_T 984.118 -0.118805
+MUSETT_T3_DSSD_X14_T 981.761 -0.118524
+MUSETT_T3_DSSD_X15_T 1355.602 -0.119127
+MUSETT_T3_DSSD_X16_T 966.58 -0.117029
+MUSETT_T3_DSSD_X17_T 962.788 -0.116582
+MUSETT_T3_DSSD_X18_T 981.303 -0.11886
+MUSETT_T3_DSSD_X19_T 977.619 -0.118386
+MUSETT_T3_DSSD_X20_T 984.275 -0.119229
+MUSETT_T3_DSSD_X21_T 991.6 -0.120114
+MUSETT_T3_DSSD_X22_T 984.029 -0.119177
+MUSETT_T3_DSSD_X23_T 988.571 -0.119693
+MUSETT_T3_DSSD_X24_T 986.236 -0.119405
+MUSETT_T3_DSSD_X25_T 987.105 -0.119523
+MUSETT_T3_DSSD_X26_T 1000.177 -0.12115
+MUSETT_T3_DSSD_X27_T 996.481 -0.120628
+MUSETT_T3_DSSD_X28_T 1006.483 -0.121885
+MUSETT_T3_DSSD_X29_T 999.637 -0.121035
+MUSETT_T3_DSSD_X30_T 1001.415 -0.121233
+MUSETT_T3_DSSD_X31_T 996.052 -0.120654
+MUSETT_T3_DSSD_X32_T 897.362 -0.108693
+MUSETT_T3_DSSD_X33_T 903.544 -0.109485
+MUSETT_T3_DSSD_X34_T 911.3 -0.110421
+MUSETT_T3_DSSD_X35_T 904.196 -0.109588
+MUSETT_T3_DSSD_X36_T 910.234 -0.110301
+MUSETT_T3_DSSD_X37_T 918.604 -0.111327
+MUSETT_T3_DSSD_X38_T 920.229 -0.111495
+MUSETT_T3_DSSD_X39_T 928.519 -0.112521
+MUSETT_T3_DSSD_X40_T 939.957 -0.11347
+MUSETT_T3_DSSD_X41_T 930.046 -0.112717
+MUSETT_T3_DSSD_X42_T 927.244 -0.112335
+MUSETT_T3_DSSD_X43_T 450.0 -0.112964
+MUSETT_T3_DSSD_X44_T 934.478 -0.113245
+MUSETT_T3_DSSD_X45_T 928.905 -0.11258
+MUSETT_T3_DSSD_X46_T 936.312 -0.113476
+MUSETT_T3_DSSD_X47_T 939.273 -0.113256
+MUSETT_T3_DSSD_X48_T 865.36 -0.104661
+MUSETT_T3_DSSD_X49_T 865.371 -0.104634
+MUSETT_T3_DSSD_X50_T 877.555 -0.106155
+MUSETT_T3_DSSD_X51_T 887.444 -0.107364
+MUSETT_T3_DSSD_X52_T 887.74 -0.107368
+MUSETT_T3_DSSD_X53_T 883.821 -0.106861
+MUSETT_T3_DSSD_X54_T 896.087 -0.108382
+MUSETT_T3_DSSD_X55_T 902.558 -0.108733
+MUSETT_T3_DSSD_X56_T 896.518 -0.10844
+MUSETT_T3_DSSD_X57_T 902.089 -0.10908
+MUSETT_T3_DSSD_X58_T 897.546 -0.108538
+MUSETT_T3_DSSD_X59_T 897.158 -0.10849
+MUSETT_T3_DSSD_X60_T 903.89 -0.109312
+MUSETT_T3_DSSD_X61_T 904.833 -0.109445
+MUSETT_T3_DSSD_X62_T 891.475 -0.107803
+MUSETT_T3_DSSD_X63_T 913.702 -0.108862
+MUSETT_T3_DSSD_X64_T 983.39 -0.119126
+MUSETT_T3_DSSD_X65_T 988.575 -0.119789
+MUSETT_T3_DSSD_X66_T 988.908 -0.119851
+MUSETT_T3_DSSD_X67_T 1004.692 -0.121753
+MUSETT_T3_DSSD_X68_T 1005.147 -0.121824
+MUSETT_T3_DSSD_X69_T 1002.098 -0.121446
+MUSETT_T3_DSSD_X70_T 1005.767 -0.121893
+MUSETT_T3_DSSD_X71_T 1009.556 -0.122347
+MUSETT_T3_DSSD_X72_T 1005.62 -0.121883
+MUSETT_T3_DSSD_X73_T 1012.529 -0.122684
+MUSETT_T3_DSSD_X74_T 1020.904 -0.123722
+MUSETT_T3_DSSD_X75_T 1030.908 -0.124938
+MUSETT_T3_DSSD_X76_T 1012.471 -0.122709
+MUSETT_T3_DSSD_X77_T 1012.229 -0.12265
+MUSETT_T3_DSSD_X78_T 1023.673 -0.124061
+MUSETT_T3_DSSD_X79_T 1391.931 -0.123313
+MUSETT_T3_DSSD_X80_T 940.841 -0.11381
+MUSETT_T3_DSSD_X81_T 946.588 -0.114558
+MUSETT_T3_DSSD_X82_T 950.194 -0.114986
+MUSETT_T3_DSSD_X83_T 948.521 -0.114804
+MUSETT_T3_DSSD_X84_T 963.462 -0.116619
+MUSETT_T3_DSSD_X85_T 966.195 -0.11693
+MUSETT_T3_DSSD_X86_T 960.94 -0.116299
+MUSETT_T3_DSSD_X87_T 965.913 -0.116863
+MUSETT_T3_DSSD_X88_T 976.593 -0.118161
+MUSETT_T3_DSSD_X89_T 973.009 -0.117687
+MUSETT_T3_DSSD_X90_T 977.734 -0.118304
+MUSETT_T3_DSSD_X91_T 985.665 -0.119256
+MUSETT_T3_DSSD_X92_T 985.146 -0.119241
+MUSETT_T3_DSSD_X93_T 985.012 -0.119186
+MUSETT_T3_DSSD_X94_T 982.369 -0.118879
+MUSETT_T3_DSSD_X95_T 979.215 -0.118278
+MUSETT_T3_DSSD_X96_T 860.4 -0.104124
+MUSETT_T3_DSSD_X97_T 865.127 -0.104728
+MUSETT_T3_DSSD_X98_T 865.22 -0.104753
+MUSETT_T3_DSSD_X99_T 871.419 -0.105492
+MUSETT_T3_DSSD_X100_T 881.125 -0.106693
+MUSETT_T3_DSSD_X101_T 876.452 -0.10614
+MUSETT_T3_DSSD_X102_T 881.321 -0.106708
+MUSETT_T3_DSSD_X103_T 880.324 -0.106567
+MUSETT_T3_DSSD_X104_T 889.289 -0.107671
+MUSETT_T3_DSSD_X105_T 893.959 -0.108216
+MUSETT_T3_DSSD_X106_T 885.863 -0.107225
+MUSETT_T3_DSSD_X107_T 896.508 -0.108561
+MUSETT_T3_DSSD_X108_T 899.197 -0.108609
+MUSETT_T3_DSSD_X109_T 893.469 -0.108191
+MUSETT_T3_DSSD_X110_T 902.937 -0.109337
+MUSETT_T3_DSSD_X111_T 903.612 -0.108709
+MUSETT_T3_DSSD_X112_T 857.827 -0.103629
+MUSETT_T3_DSSD_X113_T 867.282 -0.10481
+MUSETT_T3_DSSD_X114_T 867.634 -0.1049
+MUSETT_T3_DSSD_X115_T 874.129 -0.105647
+MUSETT_T3_DSSD_X116_T 1490.122 -0.126949
+MUSETT_T3_DSSD_X117_T 878.327 -0.106145
+MUSETT_T3_DSSD_X118_T 885.367 -0.107055
+MUSETT_T3_DSSD_X119_T 883.353 -0.10675
+MUSETT_T3_DSSD_X120_T 886.421 -0.107137
+MUSETT_T3_DSSD_X121_T 890.231 -0.107599
+MUSETT_T3_DSSD_X122_T 886.118 -0.107093
+MUSETT_T3_DSSD_X123_T 895.704 -0.108252
+MUSETT_T3_DSSD_X124_T 889.898 -0.107522
+MUSETT_T3_DSSD_X125_T 896.281 -0.108336
+MUSETT_T3_DSSD_X126_T 883.682 -0.106793
+MUSETT_T3_DSSD_X127_T 895.669 -0.107896
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..11ac5314c04c8ea77e64b538d2f271a4cff0659f
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_T 918.076 -0.11121
+MUSETT_T3_DSSD_Y1_T 925.701 -0.112154
+MUSETT_T3_DSSD_Y2_T 934.638 -0.113241
+MUSETT_T3_DSSD_Y3_T 944.313 -0.114409
+MUSETT_T3_DSSD_Y4_T 941.286 -0.114032
+MUSETT_T3_DSSD_Y5_T 949.429 -0.114994
+MUSETT_T3_DSSD_Y6_T 953.873 -0.115552
+MUSETT_T3_DSSD_Y7_T 954.095 -0.115546
+MUSETT_T3_DSSD_Y8_T 961.819 -0.116506
+MUSETT_T3_DSSD_Y9_T 966.084 -0.117006
+MUSETT_T3_DSSD_Y10_T 968.231 -0.117251
+MUSETT_T3_DSSD_Y11_T 967.098 -0.117093
+MUSETT_T3_DSSD_Y12_T 976.51 -0.118272
+MUSETT_T3_DSSD_Y13_T 982.999 -0.119048
+MUSETT_T3_DSSD_Y14_T 975.2 -0.118075
+MUSETT_T3_DSSD_Y15_T 982.438 -0.118941
+MUSETT_T3_DSSD_Y16_T 968.582 -0.117174
+MUSETT_T3_DSSD_Y17_T 981.596 -0.118815
+MUSETT_T3_DSSD_Y18_T 982.535 -0.118931
+MUSETT_T3_DSSD_Y19_T 988.071 -0.119638
+MUSETT_T3_DSSD_Y20_T 993.73 -0.12034
+MUSETT_T3_DSSD_Y21_T 1003.541 -0.121551
+MUSETT_T3_DSSD_Y22_T 998.968 -0.120998
+MUSETT_T3_DSSD_Y23_T 993.315 -0.120321
+MUSETT_T3_DSSD_Y24_T 999.364 -0.121073
+MUSETT_T3_DSSD_Y25_T 1005.572 -0.121839
+MUSETT_T3_DSSD_Y26_T 1005.81 -0.121856
+MUSETT_T3_DSSD_Y27_T 1012.089 -0.122649
+MUSETT_T3_DSSD_Y28_T 1015.153 -0.12302
+MUSETT_T3_DSSD_Y29_T 1003.98 -0.121668
+MUSETT_T3_DSSD_Y30_T 1013.163 -0.122794
+MUSETT_T3_DSSD_Y31_T 1013.882 -0.122927
+MUSETT_T3_DSSD_Y32_T 869.852 -0.105446
+MUSETT_T3_DSSD_Y33_T 866.645 -0.105092
+MUSETT_T3_DSSD_Y34_T 871.811 -0.10573
+MUSETT_T3_DSSD_Y35_T 868.809 -0.105345
+MUSETT_T3_DSSD_Y36_T 880.462 -0.106744
+MUSETT_T3_DSSD_Y37_T 879.67 -0.106654
+MUSETT_T3_DSSD_Y38_T 885.22 -0.107294
+MUSETT_T3_DSSD_Y39_T 893.863 -0.108361
+MUSETT_T3_DSSD_Y40_T 891.003 -0.10799
+MUSETT_T3_DSSD_Y41_T 895.002 -0.10846
+MUSETT_T3_DSSD_Y42_T 904.382 -0.109593
+MUSETT_T3_DSSD_Y43_T 900.904 -0.109195
+MUSETT_T3_DSSD_Y44_T 896.146 -0.108568
+MUSETT_T3_DSSD_Y45_T 906.325 -0.109804
+MUSETT_T3_DSSD_Y46_T 910.104 -0.110263
+MUSETT_T3_DSSD_Y47_T 902.797 -0.109382
+MUSETT_T3_DSSD_Y48_T 876.215 -0.105997
+MUSETT_T3_DSSD_Y49_T 882.251 -0.106772
+MUSETT_T3_DSSD_Y50_T 893.929 -0.108217
+MUSETT_T3_DSSD_Y51_T 896.657 -0.108527
+MUSETT_T3_DSSD_Y52_T 890.731 -0.107825
+MUSETT_T3_DSSD_Y53_T 899.266 -0.108862
+MUSETT_T3_DSSD_Y54_T 903.981 -0.109456
+MUSETT_T3_DSSD_Y55_T 909.889 -0.110152
+MUSETT_T3_DSSD_Y56_T 914.156 -0.110718
+MUSETT_T3_DSSD_Y57_T 912.878 -0.11056
+MUSETT_T3_DSSD_Y58_T 921.772 -0.111636
+MUSETT_T3_DSSD_Y59_T 907.641 -0.109934
+MUSETT_T3_DSSD_Y60_T 921.134 -0.111581
+MUSETT_T3_DSSD_Y61_T 921.864 -0.111694
+MUSETT_T3_DSSD_Y62_T 917.054 -0.1111
+MUSETT_T3_DSSD_Y63_T 919.795 -0.11144
+MUSETT_T3_DSSD_Y64_T 909.45 -0.109216
+MUSETT_T3_DSSD_Y65_T 919.5 -0.110026
+MUSETT_T3_DSSD_Y66_T 909.57 -0.110106
+MUSETT_T3_DSSD_Y67_T 921.73 -0.11114
+MUSETT_T3_DSSD_Y68_T 933.144 -0.11252
+MUSETT_T3_DSSD_Y69_T 937.937 -0.113544
+MUSETT_T3_DSSD_Y70_T 941.407 -0.112672
+MUSETT_T3_DSSD_Y71_T 929.175 -0.112491
+MUSETT_T3_DSSD_Y72_T 949.055 -0.114462
+MUSETT_T3_DSSD_Y73_T 941.527 -0.11354
+MUSETT_T3_DSSD_Y74_T 954.075 -0.115517
+MUSETT_T3_DSSD_Y75_T 957.81 -0.115086
+MUSETT_T3_DSSD_Y76_T 963.019 -0.116618
+MUSETT_T3_DSSD_Y77_T 955.382 -0.115232
+MUSETT_T3_DSSD_Y78_T 944.365 -0.114343
+MUSETT_T3_DSSD_Y79_T 952.964 -0.114947
+MUSETT_T3_DSSD_Y80_T 969.317 -0.117288
+MUSETT_T3_DSSD_Y81_T 980.742 -0.118727
+MUSETT_T3_DSSD_Y82_T 990.702 -0.119474
+MUSETT_T3_DSSD_Y83_T 994.094 -0.119909
+MUSETT_T3_DSSD_Y84_T 1003.58 -0.120116
+MUSETT_T3_DSSD_Y85_T 999.143 -0.120975
+MUSETT_T3_DSSD_Y86_T 996.11 -0.120606
+MUSETT_T3_DSSD_Y87_T 1005.134 -0.12076
+MUSETT_T3_DSSD_Y88_T 1002.139 -0.121336
+MUSETT_T3_DSSD_Y89_T 1025.133 -0.122713
+MUSETT_T3_DSSD_Y90_T 1016.547 -0.1231
+MUSETT_T3_DSSD_Y91_T 1008.733 -0.121678
+MUSETT_T3_DSSD_Y92_T 1017.167 -0.122697
+MUSETT_T3_DSSD_Y93_T 1016.429 -0.123087
+MUSETT_T3_DSSD_Y94_T 1008.727 -0.122144
+MUSETT_T3_DSSD_Y95_T 1013.668 -0.122274
+MUSETT_T3_DSSD_Y96_T 872.659 -0.105573
+MUSETT_T3_DSSD_Y97_T 869.574 -0.105224
+MUSETT_T3_DSSD_Y98_T 874.267 -0.105791
+MUSETT_T3_DSSD_Y99_T 883.417 -0.106904
+MUSETT_T3_DSSD_Y100_T 893.981 -0.107789
+MUSETT_T3_DSSD_Y101_T 890.232 -0.107742
+MUSETT_T3_DSSD_Y102_T 901.26 -0.109085
+MUSETT_T3_DSSD_Y103_T 900.219 -0.108126
+MUSETT_T3_DSSD_Y104_T 900.643 -0.108999
+MUSETT_T3_DSSD_Y105_T 892.987 -0.108068
+MUSETT_T3_DSSD_Y106_T 892.534 -0.108006
+MUSETT_T3_DSSD_Y107_T 901.564 -0.109125
+MUSETT_T3_DSSD_Y108_T 911.227 -0.109439
+MUSETT_T3_DSSD_Y109_T 905.426 -0.109168
+MUSETT_T3_DSSD_Y110_T 904.499 -0.108625
+MUSETT_T3_DSSD_Y111_T 907.559 -0.109416
+MUSETT_T3_DSSD_Y112_T 896.812 -0.107554
+MUSETT_T3_DSSD_Y113_T 897.309 -0.108473
+MUSETT_T3_DSSD_Y114_T 907.137 -0.108848
+MUSETT_T3_DSSD_Y115_T 902.563 -0.108292
+MUSETT_T3_DSSD_Y116_T 907.303 -0.109288
+MUSETT_T3_DSSD_Y117_T 909.347 -0.109943
+MUSETT_T3_DSSD_Y118_T 907.931 -0.109765
+MUSETT_T3_DSSD_Y119_T 907.16 -0.109672
+MUSETT_T3_DSSD_Y120_T 917.59 -0.110512
+MUSETT_T3_DSSD_Y121_T 922.724 -0.111588
+MUSETT_T3_DSSD_Y122_T 925.473 -0.111915
+MUSETT_T3_DSSD_Y123_T 911.405 -0.109772
+MUSETT_T3_DSSD_Y124_T 912.177 -0.11029
+MUSETT_T3_DSSD_Y125_T 917.613 -0.110947
+MUSETT_T3_DSSD_Y126_T 919.037 -0.111116
+MUSETT_T3_DSSD_Y127_T 927.237 -0.112131
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..c2e76e331d7e4dfc4d9b7ea883f5dda6b241b36c
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/cal_to_NPTOOL.py
@@ -0,0 +1,147 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 1
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0_R318-327.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0_R326-327.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/calibE0_R318-327.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/calibE0_R318-327.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..35bf8b5641ad2768f94bc55760aec6b956fdd3a7
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/calibE0_R318-327.cal1
@@ -0,0 +1,1024 @@
+-61710.6 7.53299 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-61910.5 7.55737 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61782.4 7.54181 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61510.1 7.50856 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61839.9 7.54883 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61611.3 7.52091 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61398 7.49483 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61184.1 7.4687 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-61046.5 7.45195 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62682.6 7.65164 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62358.3 7.61207 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-61942 7.56128 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62087.8 7.57904 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61755.3 7.53843 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62412.6 7.6187 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61293.9 7.48215 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63052.7 7.6968 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62690.7 7.65267 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62190.5 7.59158 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62410.9 7.6185 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63893.7 7.79946 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62612.9 7.64313 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62337.2 7.60945 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62674.4 7.65062 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62899.3 7.67809 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62952.3 7.68455 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63053.3 7.69687 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62674.7 7.65067 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-62997.4 7.69004 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62627.1 7.64487 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63448.8 7.74516 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62603 7.64186 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56430.2 6.88838 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56799.9 6.93354 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55532 6.77879 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56348.8 6.87847 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-55994.5 6.83521 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+ -10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55914.7 6.8255 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55693.8 6.79852 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56217.1 6.86239 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55863.5 6.81922 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56201.7 6.86046 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56309.9 6.87373 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56346.6 6.87818 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+ -10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+ -10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-55913.1 6.82529 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57833.2 7.05965 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57967.8 7.07605 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57757.3 7.05042 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57326.3 6.99778 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58207.2 7.1053 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57200.3 6.98242 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57834.4 7.05977 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57512.8 7.02054 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58484.5 7.13912 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57751 7.04962 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57332.2 6.99849 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57800.1 7.05564 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57165.4 6.97819 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57970.3 7.07636 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57884.6 7.06593 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58159.8 7.09951 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63446.1 7.74486 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63609.9 7.76484 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63347.1 7.73277 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-64083.2 7.82268 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63210.5 7.71623 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63979.4 7.81003 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63860.8 7.79555 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63358.1 7.73418 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-64215.7 7.83895 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-63301.6 7.72725 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-64050.7 7.81888 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-64016.7 7.81467 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63688.9 7.77478 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63789.1 7.78701 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-64283.2 7.84737 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-64914.3 7.924398 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-61239.4 7.47582 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60938.5 7.43906 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-61139.7 7.46366 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61497.4 7.50726 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61398.7 7.49521 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61899.6 7.55626 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61451.8 7.50166 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-62196.4 7.59254 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61948.1 7.56212 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61617.1 7.52168 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61737.4 7.53637 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62823.6 7.66899 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61885.8 7.55448 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-61049.7 7.45242 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61459.5 7.50241 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62201.1 7.59292 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57166.2 6.97828 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57555.3 7.02572 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57803.5 7.05608 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57067.6 6.96622 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58132.4 7.09623 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57744.7 7.04887 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57713.3 7.04507 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57296.7 6.99421 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57401.2 7.00701 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57954.2 7.07453 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57305.6 6.99532 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57589.7 7.03005 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58599.8 7.15326 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-58011 7.08149 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57701.9 7.04369 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57802 7.05589 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-59013.1 7.20381 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59199.6 7.22655 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58525.7 7.1443 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58674.8 7.16253 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58132.8 7.09631 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58328.3 7.12018 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58281.9 7.11452 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58567.3 7.14936 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58564.9 7.14905 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58734.4 7.16969 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58596.2 7.15284 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59320.8 7.24127 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57906.3 7.06867 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58502.7 7.14141 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58429.3 7.1325 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59561.4 7.27063 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60429.9 -7.37677 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60952.5 -7.44053 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61113.6 -7.46018 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+60033.8 -7.32839 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60178.9 -7.34611 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60801.7 -7.42211 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60445 -7.37857 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60092 -7.33548 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59987 -7.32266 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60401.3 -7.37321 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+60048.5 -7.33015 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60888.1 -7.43271 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+61013.7 -7.44798 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61158 -7.46561 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60738.4 -7.41441 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60385.3 -7.37129 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60545.5 -7.39083 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60330.4 -7.36461 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60139.3 -7.34125 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60389.2 -7.37176 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60396.1 -7.37259 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60279.9 -7.35844 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59730.9 -7.29143 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60216.9 -7.35079 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59776.6 -7.297 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+60073.1 -7.33321 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60444.7 -7.37853 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59887.7 -7.31055 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59636.6 -7.27991 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59823.3 -7.30273 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+61045.2 -7.45187 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56575.4 -6.90626 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+57085.6 -6.96849 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56504.9 -6.89761 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57072.7 -6.96695 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57400 -7.00688 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57263.9 -6.99027 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56450 -6.89094 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56455.4 -6.89159 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56954 -6.95243 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56843.8 -6.93902 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56630.1 -6.91291 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56497.5 -6.89672 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56809.1 -6.93476 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56946.4 -6.95152 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57725.8 -7.04665 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56552.7 -6.90344 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57592.2 -7.03033 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+57040.1 -6.96295 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56812.5 -6.93518 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56466.8 -6.89296 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57123.7 -6.97317 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56853.5 -6.94018 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56671.8 -6.91801 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57626 -7.03448 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57386.1 -7.00524 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56822 -6.9363 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+57017 -6.96019 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57244.2 -6.98793 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57298.5 -6.99452 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57094 -6.9695 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57584.6 -7.02941 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+57939.4 -7.07277 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+60998.5 -7.44617 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61154.4 -7.46519 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+61038.3 -7.45104 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61312.7 -7.48452 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60431.4 -7.37695 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61541.6 -7.51241 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60896 -7.43364 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60398.4 -7.37288 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61667.4 -7.52784 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61151 -7.46479 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61103.5 -7.45898 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61219.8 -7.47315 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60596.2 -7.39702 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61408.6 -7.49623 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61629.2 -7.52312 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61015.1 -7.44816 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62330.1 -7.60868 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+61048.5 -7.45227 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61567 -7.51556 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62052.8 -7.57484 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+61001.4 -7.4465 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60896.5 -7.4337 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61748.9 -7.5377 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61380.7 -7.49277 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61145.8 -7.46415 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61269.9 -7.47926 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61120.5 -7.46101 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61476.8 -7.50452 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61857.6 -7.55098 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61681.6 -7.52954 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62323.2 -7.60786 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60892.7 -7.43324 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56372 -6.88138 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56641.2 -6.91423 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56555.8 -6.90381 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56451.7 -6.89113 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56187 -6.85881 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56322.8 -6.8754 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+56073.6 -6.84493 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56575.1 -6.90621 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56874.1 -6.94264 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56026.4 -6.83916 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57037.4 -6.96262 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57359.5 -7.00194 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56552.4 -6.90339 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56585.5 -6.90746 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56666.8 -6.91741 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56400.9 -6.88495 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56899.6 -6.9458 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+57124.3 -6.97323 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56955.2 -6.95256 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56821.1 -6.93619 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57294.8 -6.99405 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56554.4 -6.90363 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56415.9 -6.88675 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56591.9 -6.90825 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57404.8 -7.00746 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57231.9 -6.98632 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56684.9 -6.91957 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+56016.4 -6.83799 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56457.5 -6.89181 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55921.7 -6.82642 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56947 -6.95159 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56581 -6.90693 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62318 7.60703 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62174.8 7.58959 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62269.7 7.60114 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-61967.2 7.56426 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61415.1 7.49681 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61526 7.51035 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62309.7 7.60599 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61376 7.49208 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61309.6 7.48393 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61415.7 7.49688 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61636.3 7.52384 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61699.5 7.53158 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61903.6 7.55648 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61385.8 7.49329 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61149.7 7.46439 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-61948.3 7.56191 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62532.3 7.63317 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61741.8 7.5367 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62152.7 7.58685 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-61894.5 7.55534 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62901.8 7.67824 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62159.2 7.58764 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62660 7.6488 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62320.7 7.60737 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62221.7 7.59528 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-61934.3 7.56018 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-61947.1 7.56175 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61695.2 7.53103 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61588.3 7.51797 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62694 7.65292 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61734.1 7.53577 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62776.5 7.66307 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58260.4 7.11179 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58264 7.11219 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58314.9 7.11847 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-58240 7.10926 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-57977 7.07722 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58181.7 7.10203 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58036.4 7.08428 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58626.1 7.156419 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58167.3 7.10045 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-58805.6 7.17818 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58040.4 7.08493 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58445 7.13434 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58576.9 7.15027 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59255 7.23324 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58654.1 7.15993 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58523.2 7.1438 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57862.5 7.06315 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58489.2 7.13967 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-58005.3 7.08058 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57739.2 7.04814 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-57926.2 7.07097 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57912.9 7.06931 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-57956.5 7.07461 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57767.9 7.05159 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58015.6 7.08187 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57805.6 7.05617 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58416.6 7.13075 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57624 7.034 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57687.8 7.04184 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58237.3 7.1089 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58058.7 7.08712 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58244.7 7.10981 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-60994.7 7.4455 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61603 7.51986 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61459.9 7.50223 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61665.1 7.52729 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61874.5 7.55286 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61328.5 7.48631 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61630 7.52303 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-61904.2 7.55658 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61232.4 7.47458 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62341.2 7.60994 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61925.9 7.55913 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-62067.1 7.57642 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61484.5 7.50533 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61742.7 7.53686 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61352.6 7.48913 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61942.1 7.56111 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63429 7.74268 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63722.1 7.77849 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64211.5 7.83819 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63867.7 7.7962 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64127.9 7.82805 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63840.4 7.79293 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64050.4 7.81853 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64160.9 7.83201 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64180.9 7.83452 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64214 7.83849 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63280.4 7.72459 0.00 !Mu1ChX91ERaw[Co2At2Ch11]
+-63366.8 7.73508 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64520.9 7.87598 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-63981.8 7.81014 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63775.5 7.78503 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63433.9 7.74331 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56258.8 6.86734 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56645.5 6.91464 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56487.9 6.89532 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56382.7 6.88258 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56555.3 6.90363 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-57022.9 6.96061 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57333.2 6.99847 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56580.7 6.90664 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56766.8 6.92938 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-56989.3 6.95655 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57851.3 7.06174 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57756.1 7.05012 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57728.3 7.0468 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57502.7 7.01928 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57680.9 7.04099 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-57995.2 7.07934 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57221.6 6.98492 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57306.8 6.9953 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56767.2 6.92944 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57714.8 7.04509 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57257.8 6.98931 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57250.9 6.98847 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56328.4 6.87591 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58288.5 7.11516 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57413.2 7.00834 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57776.2 7.05264 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57731 7.04713 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57410.6 7.00802 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57590.7 7.02999 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57638.3 7.03579 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57038.4 6.96255 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57854.9 7.0622 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59619.1 -7.27783 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60465.3 -7.38115 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59712 -7.28919 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59326.7 -7.24213 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60197.6 -7.3485 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+60005.2 -7.32501 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59376.2 -7.24818 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59455.9 -7.25795 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59472.9 -7.25998 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59707.6 -7.28867 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59520.2 -7.26577 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59556.5 -7.27023 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60210.4 -7.35003 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59273.4 -7.23565 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59511.8 -7.26475 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59816.1 -7.30189 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62145.2 -7.5862 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62468.3 -7.62564 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62402.1 -7.61759 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+62031.6 -7.57234 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62198.2 -7.59266 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62357.4 -7.61211 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+62006.4 -7.56931 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61711.9 -7.53332 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61447.7 -7.50107 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+62078 -7.57801 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+62059.9 -7.57584 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62251.6 -7.59918 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62034 -7.57263 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61653.3 -7.52617 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61797.4 -7.5438 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+56115 -6.85013 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56290.1 -6.87151 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55631.2 -6.79109 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55653.9 -6.79382 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55417.1 -6.76495 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56418.2 -6.88719 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55381.4 -6.76057 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55909.9 -6.82508 0.00 !Mu1ChY40ERaw[Co3At3Ch8]
+56029.4 -6.83969 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56120.4 -6.85079 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55503.4 -6.77548 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56587.3 -6.90782 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55632.5 -6.79125 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55719.2 -6.80184 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55759.2 -6.80672 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55723.3 -6.80233 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57194.5 -6.98188 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56621.8 -6.91194 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56558.9 -6.9043 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+56037.1 -6.84059 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56793.3 -6.93289 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56263 -6.86816 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56442.5 -6.89006 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56437 -6.8894 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57330.8 -6.99852 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+57023 -6.96092 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56627.6 -6.91264 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57287.8 -6.99327 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57378.4 -7.00433 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+57012.1 -6.95962 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56174 -6.8573 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57292.1 -6.99379 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+61087.1 -7.45703 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61618.4 -7.52186 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61291.1 -7.48195 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61562.6 -7.51506 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61204.3 -7.47131 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+60010.3 -7.3256 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60457 -7.38015 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61099.9 -7.45857 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60265.6 -7.35676 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61237.3 -7.47538 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60887.5 -7.43265 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60371.3 -7.36966 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60519.5 -7.38776 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60974.1 -7.44327 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60660.6 -7.40501 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61330.5 -7.4868 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61162.6 -7.46633 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+61126.4 -7.46184 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61091.3 -7.45754 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60509 -7.38651 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60423.4 -7.376 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61141.3 -7.46364 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60674.6 -7.40669 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60573.1 -7.3943 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+61027.3 -7.44976 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61279.2 -7.48052 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60725.5 -7.41289 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60868.8 -7.43041 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60510.8 -7.38671 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61280.6 -7.48069 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61608.5 -7.52068 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60746.9 -7.4156 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55857.9 -6.81873 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55481.3 -6.77275 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55690.1 -6.79825 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55554.6 -6.78172 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55813.8 -6.81337 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55466.9 -6.77101 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55425.1 -6.76591 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56167.4 -6.85651 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55270.2 -6.74696 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55305.4 -6.75128 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55865.3 -6.81962 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55229.6 -6.74202 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55862.8 -6.81933 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56111.1 -6.84967 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56135.6 -6.8526 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56572.6 -6.90596 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54764.4 -6.68523 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55559.3 -6.78228 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55152.2 -6.73254 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55065.6 -6.72196 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55234.3 -6.74255 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55399.3 -6.76272 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55260.9 -6.74585 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55568 -6.78332 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55863.9 -6.81946 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55478.8 -6.77244 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54836.7 -6.69408 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55138.3 -6.73087 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55221.7 -6.74106 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55183 -6.73632 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55346 -6.75624 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56263 -6.86815 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-62742.1 7.65877 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62479.2 7.62671 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62865 7.67381 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62098.5 7.58022 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62057.1 7.5752 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62707.7 7.65462 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62430.5 7.62076 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62814.9 7.6677 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62925.1 7.68116 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62122.5 7.58321 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62473.8 7.62602 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62490.4 7.62809 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62594.2 7.64074 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62536.7 7.63373 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62645.6 7.64703 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63375.2 7.73612 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62167.2 7.58864 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61803.3 7.54424 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61578.5 7.51678 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61470.8 7.50362 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61483.7 7.50523 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62315.8 7.60676 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62154.7 7.58709 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61791.1 7.54274 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61631.6 7.52326 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-61824.2 7.54673 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-61962.7 7.56372 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61774.4 7.54065 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61664.5 7.52723 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61257.4 7.47756 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62372.1 7.61364 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61518.2 7.5094 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-58997.3 7.20165 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58122.7 7.09487 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58574.8 7.15013 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58368.7 7.1249 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58173.3 7.10106 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58141.5 7.09722 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58324.8 7.11956 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57915.8 7.06966 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57571.4 7.0276 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58563.5 7.14871 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58788.6 7.17615 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58273.9 7.11334 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58563.9 7.14877 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58527 7.14428 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58339.3 7.12137 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58469.7 7.13725 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57779.5 7.05305 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57166 6.97811 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58129.9 7.09577 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57864.6 7.06342 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57537.3 7.02346 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57137 6.97462 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57819.8 7.05796 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57621.2 7.03367 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57914 7.06946 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57507.6 7.01987 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57923.1 7.07061 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-56998.9 6.95776 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57486.6 7.01726 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56686.3 6.91961 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57458.1 7.01383 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57861.9 7.06309 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63315.8 7.72883 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-64994.4 7.9338 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-64025.6 7.81543 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63710.4 7.77703 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64382.2 7.859 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63647.8 7.76936 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63444.6 7.7446 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63361.8 7.73443 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63093.9 7.70176 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63826.9 7.79125 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63664.2 7.77139 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-63884.1 7.79822 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63716.4 7.77776 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63624.6 7.76662 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63593.7 7.76277 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63247.6 7.72049 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63297.5 7.72671 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63100.9 7.70261 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63149.8 7.70857 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-63919.2 7.80245 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63810.5 7.7892 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63724.6 7.77877 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63923.1 7.80293 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63045.1 7.6958 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63491.8 7.75038 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63342.9 7.73222 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63540.7 7.7563 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63268 7.72303 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64611 7.88691 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63699 7.7756 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63623.5 7.76632 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59026.2 7.20527 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58540.6 7.14597 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58304.4 7.11715 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58710.8 7.16671 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59397.8 7.25058 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59352.9 7.2451 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58824 7.18059 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-59021.6 7.2047 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59011.2 7.2034 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59098.8 7.21406 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58717.3 7.1675 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-58991.5 7.20094 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58718.9 7.16772 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60340.8 7.36568 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58950.1 7.1959 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58675.2 7.16237 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59295.7 7.2381 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59339.5 7.24343 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59702 7.28774 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59145.3 7.21974 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59642 7.28038 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-59995.7 7.32358 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59442.9 7.25607 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59354.8 7.24536 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60083.1 7.33422 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58758.9 7.17258 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59087.3 7.21264 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59302 7.2389 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58911.6 7.19123 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58940.6 7.19471 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59142.6 7.2194 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59291.3 7.23756 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63221.1 -7.71756 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+64033 -7.81661 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62573 -7.63842 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63453.2 -7.74588 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+63008.4 -7.69158 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62742 -7.65904 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63050.8 -7.69679 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62682.4 -7.65176 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62844.3 -7.67155 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63462.9 -7.74703 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+62996.6 -7.69016 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62575 -7.63867 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62131.2 -7.58453 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62781.8 -7.66392 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+62993.7 -7.68982 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63488.8 -7.75026 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61669.6 -7.52809 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60961.4 -7.44174 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60726.4 -7.41301 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+62087.4 -7.57914 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61094.3 -7.45789 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60927.5 -7.43756 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62149.1 -7.58664 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61087.9 -7.45714 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61072.4 -7.45528 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61604.2 -7.52017 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61131.3 -7.46243 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61442 -7.50039 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61550 -7.51354 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61513.5 -7.50906 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61344.4 -7.48846 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61772.1 -7.54065 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56305.3 -6.87326 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56497.5 -6.89675 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56834.6 -6.93796 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56703.4 -6.92192 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+56977 -6.9553 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56889.1 -6.94457 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56450.3 -6.89099 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56403.9 -6.88533 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56205.6 -6.86116 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58125.2 -7.09546 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56762.4 -6.92908 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56299.9 -6.87269 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57261.3 -6.98997 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57247.6 -6.98834 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+57030.9 -6.96185 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56744.6 -6.92695 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57601.8 -7.03162 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57017.1 -6.96022 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57933.4 -7.07206 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57426.4 -7.01017 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57297.8 -6.99446 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58636.8 -7.15795 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57744.4 -7.049 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57839.2 -7.06057 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57708.8 -7.04465 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57558.5 -7.02632 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57474.8 -7.01608 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58260.9 -7.11207 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57892.2 -7.06703 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57330 -6.99845 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57835.7 -7.06015 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58184.5 -7.10268 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59348.1 -7.24483 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59605.7 -7.27624 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59455.9 -7.25797 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60429.5 -7.37675 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59568.6 -7.27167 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59821.4 -7.30253 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59558 -7.27041 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+59892.6 -7.3113 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59876.5 -7.30923 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59557.1 -7.2703 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59902.7 -7.31249 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60059.2 -7.33158 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59314.2 -7.24065 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59977.2 -7.32152 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59375.7 -7.24812 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60162.5 -7.34418 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60553.6 -7.39197 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61237.5 -7.47541 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60562.6 -7.39303 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61224.5 -7.47385 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61126.4 -7.46188 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60909.5 -7.4354 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60957.5 -7.44128 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61286.2 -7.48137 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60884.7 -7.4323 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60871 -7.43068 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61443.7 -7.50059 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60658.6 -7.40476 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61097.6 -7.45829 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60614.1 -7.39932 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61044.5 -7.45181 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61470.4 -7.50378 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56878.5 -6.94331 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55961.9 -6.83138 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56218.8 -6.86276 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56642.5 -6.91453 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56348 -6.87854 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56747.4 -6.9273 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+55904.8 -6.82446 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57240.3 -6.98747 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56087.4 -6.84672 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56732.1 -6.92546 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56623.7 -6.91218 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57520.3 -7.02164 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57014.4 -6.9599 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56700.3 -6.92155 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57019.8 -6.96055 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56158.7 -6.85546 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56486.5 -6.89543 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57289.3 -6.99345 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56597.9 -6.90909 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56824.1 -6.93669 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56510 -6.89835 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56563.8 -6.90489 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56834.9 -6.93798 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56738.1 -6.9262 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56337.6 -6.87729 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57059.2 -6.96537 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57419.8 -7.0094 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56208.7 -6.86156 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56914.2 -6.9477 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56339.9 -6.87758 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56168.2 -6.8566 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62298.2 7.60472 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61861.6 7.55141 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62156.9 7.58753 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62259.6 7.60006 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61881.7 7.55391 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61817.4 7.54604 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62038.9 7.57309 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61558.6 7.51446 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61705 7.53228 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61812 7.54536 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61801.3 7.54402 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62828 7.66936 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61599.3 7.51937 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61757.7 7.53873 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61494.7 7.50662 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62518.2 7.63157 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63590.9 7.76244 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63017.1 7.69249 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62878.7 7.67552 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62791 7.66488 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62559.2 7.63654 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63113.3 7.70421 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-63699.8 7.77586 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63781.1 7.7857 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62720.5 7.65624 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63456.7 7.74614 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63469.1 7.74769 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63295.5 7.72649 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63507.6 7.75235 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63562.9 7.7591 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64464.4 7.86912 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63690.7 7.77475 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59300.3 7.23889 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59122.8 7.21712 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58098 7.09209 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58311.4 7.11809 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58778.1 7.17501 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-58990.3 7.20099 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59232.9 7.23058 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58615.9 7.15528 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59221.6 7.22918 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58881.5 7.18765 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-58977.3 7.19934 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-58983.3 7.20009 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59359.3 7.24594 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58777.5 7.17493 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59126 7.21749 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57304.1 6.99513 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57151.2 6.97642 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56849.2 6.93961 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57205.7 6.98311 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56835.2 6.93786 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57340.1 6.99951 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56590.8 6.90809 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57262.3 6.99005 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57574.4 7.02812 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56496.9 6.89662 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57471.5 7.01554 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57061.9 6.96556 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56316.5 6.87459 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56849.9 6.9397 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56760.7 6.92884 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56499.3 6.89695 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64170.2 7.83318 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63841.5 7.79309 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63555.7 7.75819 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63767.7 7.78403 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63604.2 7.76408 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63260 7.72205 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64305.5 7.84974 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62501.6 7.6295 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62662.5 7.64914 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-63010.5 7.69167 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63148.4 7.70842 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63379.3 7.73664 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64068.7 7.82082 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62470.2 7.62573 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62557.4 7.63631 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-63009.7 7.69157 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62457.8 7.62418 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62779.1 7.66339 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62621 7.64411 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62578.4 7.63894 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62005.9 7.56897 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62457.5 7.62414 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62403.1 7.61752 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62171.3 7.58918 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62335.3 7.6092 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62747.4 7.6596 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62339.6 7.60973 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62021.3 7.57089 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62834.5 7.67017 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62560.8 7.63673 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62140.9 7.58552 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62358.7 7.61211 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56125.6 6.85121 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55950.5 6.82982 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55179.6 6.73572 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55782.8 6.8094 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-55955.9 6.8305 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55934.4 6.82783 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55974.5 6.83272 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55254.9 6.74491 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55487.5 6.77335 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-55989.3 6.83453 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55823.6 6.81435 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55681.5 6.79695 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56743.4 6.92662 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56300.5 6.87254 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55822.3 6.81419 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55695.1 6.79867 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57562.2 7.02657 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-57013.5 6.9596 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57521.1 7.02156 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56981 6.95566 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-57972.5 7.07666 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57233.9 6.98648 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57434.2 7.01098 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56213.4 6.86193 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56747.4 6.92711 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57889.1 7.0665 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57504.9 7.01955 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57096.6 6.96973 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57651 7.0374 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56716.4 6.92338 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57789.7 7.05434 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56522 6.89959 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60097.2 -7.33611 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58987 -7.20065 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60080 -7.33404 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59936.5 -7.3165 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59769.5 -7.29617 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+59874.6 -7.30898 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59775.3 -7.29686 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60186.2 -7.347 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60495.8 -7.38477 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60439.3 -7.37789 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60145.6 -7.34201 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59791.1 -7.29875 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59677.3 -7.28488 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59583.5 -7.27344 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60533.1 -7.38936 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59724.9 -7.29071 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62921.4 -7.68089 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63205.4 -7.71552 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62267.4 -7.60105 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62696.7 -7.65347 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63193 -7.71405 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63533.6 -7.75561 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+62980.8 -7.68812 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62964 -7.68612 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63469.3 -7.74779 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63461 -7.74678 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62600 -7.64164 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63414 -7.74102 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62467.2 -7.62548 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62971.6 -7.68703 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63066.7 -7.69867 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62948.3 -7.68424 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56091.1 -6.84714 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56193.9 -6.85965 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55825.1 -6.8147 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55674.4 -6.79624 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55743.5 -6.80473 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56230.4 -6.86412 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55926.7 -6.82705 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55575.2 -6.78415 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55421.9 -6.76539 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56185.4 -6.85863 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+56006.9 -6.83686 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55331.2 -6.75434 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55762.4 -6.80697 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55616.4 -6.78921 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55888 -6.82232 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55807.9 -6.81252 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56633.2 -6.9133 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56902.3 -6.94613 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57128.5 -6.97375 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56942.8 -6.95109 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56488.8 -6.89569 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56938.1 -6.95052 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56630.8 -6.91301 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+57019.1 -6.96044 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+57045.6 -6.96359 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56614.1 -6.91102 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57499.8 -7.01906 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+57046.8 -6.96375 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57594 -7.03054 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57030.5 -6.96179 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56762.4 -6.92908 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57433.7 -7.01104 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59389.3 -7.24973 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+59940.1 -7.31694 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59525.1 -7.26633 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59349.5 -7.24484 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59443.7 -7.25635 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58765.1 -7.17351 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59296.9 -7.23842 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+59965.1 -7.32006 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60172.6 -7.34537 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59451.6 -7.2573 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59530.9 -7.26702 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59582.6 -7.27333 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59590.9 -7.27432 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59396.5 -7.25058 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59028.9 -7.20579 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59962.3 -7.31973 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62810.9 -7.66739 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62711.7 -7.65528 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62530.7 -7.63323 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62147.2 -7.58643 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62024.8 -7.57151 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62696.5 -7.65345 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62262.4 -7.60046 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62955.1 -7.68508 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62655 -7.64835 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62592.1 -7.64069 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61832.7 -7.54801 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61987.9 -7.56697 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61948 -7.56205 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+62025.8 -7.57163 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61996 -7.56795 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61777.7 -7.5413 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56732.7 -6.92539 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56863.3 -6.94135 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56282.6 -6.87046 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55937.8 -6.82837 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56278.2 -6.86995 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56282 -6.8704 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55931.1 -6.82758 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55975.4 -6.83298 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55843.1 -6.81683 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56293.4 -6.87176 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56467.7 -6.89304 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56254.6 -6.867 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55755.7 -6.80615 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55895.6 -6.82321 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56669.4 -6.91772 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56671.7 -6.91799 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57139 -6.97499 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57000.1 -6.95808 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+57098.7 -6.97019 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+56976.2 -6.95517 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57605.3 -7.03199 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57282.8 -6.99264 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56840.6 -6.93862 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57649.6 -7.03728 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57438.3 -7.01157 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+57084.8 -6.96844 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57433.8 -7.01102 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+57070.8 -6.96674 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57543.7 -7.02442 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56819.9 -6.93609 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57239.4 -6.98722 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57548.9 -7.02512 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/calibT0_R326-327.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/calibT0_R326-327.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..9e56c5f06f404fcdaf6419f27f47ad64d842812c
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra220_R326-327/calibT0_R326-327.cal1
@@ -0,0 +1,1023 @@
+947.402 -0.114176 0.0 !Mu0ChX1TRaw[Co1At1Ch1]
+958.132 -0.115529 0.0 !Mu0ChX2TRaw[Co1At1Ch2]
+959.289 -0.115657 0.0 !Mu0ChX3TRaw[Co1At1Ch3]
+973.445 -0.117409 0.0 !Mu0ChX4TRaw[Co1At1Ch4]
+973.097 -0.117367 0.0 !Mu0ChX5TRaw[Co1At1Ch5]
+973.027 -0.117353 0.0 !Mu0ChX6TRaw[Co1At1Ch6]
+978.311 -0.117969 0.0 !Mu0ChX7TRaw[Co1At1Ch7]
+980.44 -0.118246 0.0 !Mu0ChX8TRaw[Co1At1Ch8]
+979.197 -0.118065 0.0 !Mu0ChX9TRaw[Co1At1Ch9]
+983.093 -0.118546 0.0 !Mu0ChX10TRaw[Co1At1Ch10]
+987.843 -0.119138 0.0 !Mu0ChX11TRaw[Co1At1Ch11]
+987.466 -0.119075 0.0 !Mu0ChX12TRaw[Co1At1Ch12]
+994.957 -0.119996 0.0 !Mu0ChX13TRaw[Co1At1Ch13]
+980.198 -0.118174 0.0 !Mu0ChX14TRaw[Co1At1Ch14]
+991.208 -0.119531 0.0 !Mu0ChX15TRaw[Co1At1Ch15]
+1327.419 -0.118448 0.0 !Mu0ChX16TRaw[Co1At1Ch16]
+957.045 -0.115275 0.0 !Mu0ChX17TRaw[Co1At2Ch1]
+967.151 -0.116527 0.0 !Mu0ChX18TRaw[Co1At2Ch2]
+979.671 -0.118044 0.0 !Mu0ChX19TRaw[Co1At2Ch3]
+980.319 -0.118125 0.0 !Mu0ChX20TRaw[Co1At2Ch4]
+989.453 -0.119233 0.0 !Mu0ChX21TRaw[Co1At2Ch5]
+983.819 -0.118555 0.0 !Mu0ChX22TRaw[Co1At2Ch6]
+994.391 -0.119845 0.0 !Mu0ChX23TRaw[Co1At2Ch7]
+995.696 -0.120005 0.0 !Mu0ChX24TRaw[Co1At2Ch8]
+991.078 -0.119427 0.0 !Mu0ChX25TRaw[Co1At2Ch9]
+1002.131 -0.120777 0.0 !Mu0ChX26TRaw[Co1At2Ch10]
+1004.435 -0.121057 0.0 !Mu0ChX27TRaw[Co1At2Ch11]
+1008.403 -0.121545 0.0 !Mu0ChX28TRaw[Co1At2Ch12]
+1003.939 -0.121021 0.0 !Mu0ChX29TRaw[Co1At2Ch13]
+1002.74 -0.120851 0.0 !Mu0ChX30TRaw[Co1At2Ch14]
+999.377 -0.12045 0.0 !Mu0ChX31TRaw[Co1At2Ch15]
+995.027 -0.119947 0.0 !Mu0ChX32TRaw[Co1At2Ch16]
+874.004 -0.105192 0.0 !Mu0ChX33TRaw[Co1At3Ch1]
+871.776 -0.104955 0.0 !Mu0ChX34TRaw[Co1At3Ch2]
+891.807 -0.107397 0.0 !Mu0ChX35TRaw[Co1At3Ch3]
+880.562 -0.106033 0.0 !Mu0ChX36TRaw[Co1At3Ch4]
+882.297 -0.106227 0.0 !Mu0ChX37TRaw[Co1At3Ch5]
+896.75 -0.108005 0.0 !Mu0ChX38TRaw[Co1At3Ch6]
+898.223 -0.108195 0.0 !Mu0ChX39TRaw[Co1At3Ch7]
+896.786 -0.107979 0.0 !Mu0ChX40TRaw[Co1At3Ch8]
+899.624 -0.108302 0.0 !Mu0ChX41TRaw[Co1At3Ch9]
+899.765 -0.108334 0.0 !Mu0ChX42TRaw[Co1At3Ch10]
+899.028 -0.108243 0.0 !Mu0ChX43TRaw[Co1At3Ch11]
+905.872 -0.109095 0.0 !Mu0ChX44TRaw[Co1At3Ch12]
+901.13 -0.108505 0.0 !Mu0ChX45TRaw[Co1At3Ch13]
+899.439 -0.107877 0.0 !Mu0ChX46TRaw[Co1At3Ch14]
+898.066 -0.108187 0.0 !Mu0ChX47TRaw[Co1At3Ch15]
+920.142 -0.10826 0.0 !Mu0ChX48TRaw[Co1At3Ch16]
+885.877 -0.106556 0.0 !Mu0ChX49TRaw[Co1At4Ch1]
+889.054 -0.106942 0.0 !Mu0ChX50TRaw[Co1At4Ch2]
+894.673 -0.107622 0.0 !Mu0ChX51TRaw[Co1At4Ch3]
+903.218 -0.109464 0.0 !Mu0ChX52TRaw[Co1At4Ch4]
+908.402 -0.109295 0.0 !Mu0ChX53TRaw[Co1At4Ch5]
+911.389 -0.109652 0.0 !Mu0ChX54TRaw[Co1At4Ch6]
+913.908 -0.109955 0.0 !Mu0ChX55TRaw[Co1At4Ch7]
+917.897 -0.110458 0.0 !Mu0ChX56TRaw[Co1At4Ch8]
+926.464 -0.111499 0.0 !Mu0ChX57TRaw[Co1At4Ch9]
+918.072 -0.110456 0.0 !Mu0ChX58TRaw[Co1At4Ch10]
+925.456 -0.111378 0.0 !Mu0ChX59TRaw[Co1At4Ch11]
+930.204 -0.111943 0.0 !Mu0ChX60TRaw[Co1At4Ch12]
+937.287 -0.112807 0.0 !Mu0ChX61TRaw[Co1At4Ch13]
+940.01 -0.11314 0.0 !Mu0ChX62TRaw[Co1At4Ch14]
+941.711 -0.113338 0.0 !Mu0ChX63TRaw[Co1At4Ch15]
+930.49 -0.111982 0.0 !Mu0ChX64TRaw[Co1At4Ch16]
+958.733 -0.115846 0.0 !Mu0ChX65TRaw[Co2At1Ch1]
+963.634 -0.11646 0.0 !Mu0ChX66TRaw[Co2At1Ch2]
+973.382 -0.117644 0.0 !Mu0ChX67TRaw[Co2At1Ch3]
+974.652 -0.117791 0.0 !Mu0ChX68TRaw[Co2At1Ch4]
+977.949 -0.118174 0.0 !Mu0ChX69TRaw[Co2At1Ch5]
+990.649 -0.119717 0.0 !Mu0ChX70TRaw[Co2At1Ch6]
+995.246 -0.120284 0.0 !Mu0ChX71TRaw[Co2At1Ch7]
+996.388 -0.120426 0.0 !Mu0ChX72TRaw[Co2At1Ch8]
+1007.342 -0.121763 0.0 !Mu0ChX73TRaw[Co2At1Ch9]
+988.546 -0.119445 0.0 !Mu0ChX74TRaw[Co2At1Ch10]
+1005.453 -0.121535 0.0 !Mu0ChX75TRaw[Co2At1Ch11]
+996.341 -0.120381 0.0 !Mu0ChX76TRaw[Co2At1Ch12]
+1007.215 -0.121262 0.0 !Mu0ChX77TRaw[Co2At1Ch13]
+1011.503 -0.121766 0.0 !Mu0ChX78TRaw[Co2At1Ch14]
+998.245 -0.120615 0.0 !Mu0ChX79TRaw[Co2At1Ch15]
+1381.85 -0.120952 0.0 !Mu0ChX80TRaw[Co2At1Ch16]
+924.325 -0.111515 0.0 !Mu0ChX81TRaw[Co2At2Ch1]
+933.986 -0.112746 0.0 !Mu0ChX82TRaw[Co2At2Ch2]
+926.081 -0.111774 0.0 !Mu0ChX83TRaw[Co2At2Ch3]
+942.039 -0.113281 0.0 !Mu0ChX84TRaw[Co2At2Ch4]
+931.74 -0.112468 0.0 !Mu0ChX85TRaw[Co2At2Ch5]
+942.885 -0.113819 0.0 !Mu0ChX86TRaw[Co2At2Ch6]
+951.107 -0.114818 0.0 !Mu0ChX87TRaw[Co2At2Ch7]
+944.193 -0.113978 0.0 !Mu0ChX88TRaw[Co2At2Ch8]
+950.881 -0.114813 0.0 !Mu0ChX89TRaw[Co2At2Ch9]
+958.38 -0.115728 0.0 !Mu0ChX90TRaw[Co2At2Ch10]
+965.991 -0.11664 0.0 !Mu0ChX91TRaw[Co2At2Ch11]
+962.675 -0.11625 0.0 !Mu0ChX92TRaw[Co2At2Ch12]
+962.975 -0.116299 0.0 !Mu0ChX93TRaw[Co2At2Ch13]
+961.838 -0.116152 0.0 !Mu0ChX94TRaw[Co2At2Ch14]
+975.767 -0.117868 0.0 !Mu0ChX95TRaw[Co2At2Ch15]
+987.869 -0.116744 0.0 !Mu0ChX96TRaw[Co2At2Ch16]
+869.374 -0.105013 0.0 !Mu0ChX97TRaw[Co2At3Ch1]
+878.873 -0.106169 0.0 !Mu0ChX98TRaw[Co2At3Ch2]
+879.124 -0.106212 0.0 !Mu0ChX99TRaw[Co2At3Ch3]
+885.082 -0.106905 0.0 !Mu0ChX100TRaw[Co2At3Ch4]
+894.377 -0.108043 0.0 !Mu0ChX101TRaw[Co2At3Ch5]
+901.707 -0.108935 0.0 !Mu0ChX102TRaw[Co2At3Ch6]
+897.889 -0.108442 0.0 !Mu0ChX103TRaw[Co2At3Ch7]
+895.995 -0.108194 0.0 !Mu0ChX104TRaw[Co2At3Ch8]
+905.254 -0.109336 0.0 !Mu0ChX105TRaw[Co2At3Ch9]
+903.109 -0.109053 0.0 !Mu0ChX106TRaw[Co2At3Ch10]
+908.799 -0.109771 0.0 !Mu0ChX107TRaw[Co2At3Ch11]
+906.422 -0.109449 0.0 !Mu0ChX108TRaw[Co2At3Ch12]
+903.683 -0.109128 0.0 !Mu0ChX109TRaw[Co2At3Ch13]
+907.658 -0.109641 0.0 !Mu0ChX110TRaw[Co2At3Ch14]
+903.934 -0.109177 0.0 !Mu0ChX111TRaw[Co2At3Ch15]
+917.004 -0.109478 0.0 !Mu0ChX112TRaw[Co2At3Ch16]
+889.763 -0.107364 0.0 !Mu0ChX113TRaw[Co2At4Ch1]
+892.874 -0.107748 0.0 !Mu0ChX114TRaw[Co2At4Ch2]
+893.086 -0.107782 0.0 !Mu0ChX115TRaw[Co2At4Ch3]
+903.173 -0.109007 0.0 !Mu0ChX116TRaw[Co2At4Ch4]
+906.71 -0.109423 0.0 !Mu0ChX117TRaw[Co2At4Ch5]
+900.172 -0.108648 0.0 !Mu0ChX118TRaw[Co2At4Ch6]
+914.738 -0.110413 0.0 !Mu0ChX119TRaw[Co2At4Ch7]
+915.95 -0.110579 0.0 !Mu0ChX120TRaw[Co2At4Ch8]
+910.273 -0.109898 0.0 !Mu0ChX121TRaw[Co2At4Ch9]
+915.371 -0.1105 0.0 !Mu0ChX122TRaw[Co2At4Ch10]
+923.843 -0.111529 0.0 !Mu0ChX123TRaw[Co2At4Ch11]
+916.0 -0.110604 0.0 !Mu0ChX124TRaw[Co2At4Ch12]
+919.085 -0.110972 0.0 !Mu0ChX125TRaw[Co2At4Ch13]
+920.758 -0.11118 0.0 !Mu0ChX126TRaw[Co2At4Ch14]
+916.079 -0.110613 0.0 !Mu0ChX127TRaw[Co2At4Ch15]
+927.913 -0.111151 0.0 !Mu0ChX128TRaw[Co2At4Ch16]
+943.871 -0.114033 0.0 !Mu0ChY2TRaw[Co3At1Ch2]
+942.541 -0.113921 0.0 !Mu0ChY3TRaw[Co3At1Ch3]
+960.736 -0.116104 0.0 !Mu0ChY4TRaw[Co3At1Ch4]
+956.194 -0.115563 0.0 !Mu0ChY5TRaw[Co3At1Ch5]
+971.901 -0.117481 0.0 !Mu0ChY6TRaw[Co3At1Ch6]
+970.47 -0.117339 0.0 !Mu0ChY7TRaw[Co3At1Ch7]
+967.899 -0.117018 0.0 !Mu0ChY8TRaw[Co3At1Ch8]
+974.549 -0.117842 0.0 !Mu0ChY9TRaw[Co3At1Ch9]
+970.321 -0.117316 0.0 !Mu0ChY10TRaw[Co3At1Ch10]
+972.871 -0.117632 0.0 !Mu0ChY11TRaw[Co3At1Ch11]
+979.225 -0.118398 0.0 !Mu0ChY12TRaw[Co3At1Ch12]
+977.059 -0.11814 0.0 !Mu0ChY13TRaw[Co3At1Ch13]
+972.932 -0.117633 0.0 !Mu0ChY14TRaw[Co3At1Ch14]
+975.541 -0.117944 0.0 !Mu0ChY15TRaw[Co3At1Ch15]
+981.99 -0.118761 0.0 !Mu0ChY16TRaw[Co3At1Ch16]
+937.345 -0.113175 0.0 !Mu0ChY17TRaw[Co3At2Ch1]
+946.398 -0.114309 0.0 !Mu0ChY18TRaw[Co3At2Ch2]
+954.917 -0.115351 0.0 !Mu0ChY19TRaw[Co3At2Ch3]
+946.68 -0.11436 0.0 !Mu0ChY20TRaw[Co3At2Ch4]
+949.495 -0.114686 0.0 !Mu0ChY21TRaw[Co3At2Ch5]
+952.893 -0.115103 0.0 !Mu0ChY22TRaw[Co3At2Ch6]
+958.913 -0.115832 0.0 !Mu0ChY23TRaw[Co3At2Ch7]
+959.053 -0.115841 0.0 !Mu0ChY24TRaw[Co3At2Ch8]
+963.718 -0.116398 0.0 !Mu0ChY25TRaw[Co3At2Ch9]
+961.896 -0.116195 0.0 !Mu0ChY26TRaw[Co3At2Ch10]
+958.661 -0.115516 0.0 !Mu0ChY27TRaw[Co3At2Ch11]
+973.339 -0.117562 0.0 !Mu0ChY28TRaw[Co3At2Ch12]
+975.575 -0.117834 0.0 !Mu0ChY29TRaw[Co3At2Ch13]
+970.444 -0.11722 0.0 !Mu0ChY30TRaw[Co3At2Ch14]
+973.574 -0.11759 0.0 !Mu0ChY31TRaw[Co3At2Ch15]
+968.228 -0.116928 0.0 !Mu0ChY32TRaw[Co3At2Ch16]
+870.562 -0.105131 0.0 !Mu0ChY33TRaw[Co3At3Ch1]
+870.284 -0.105113 0.0 !Mu0ChY34TRaw[Co3At3Ch2]
+887.363 -0.107174 0.0 !Mu0ChY35TRaw[Co3At3Ch3]
+877.314 -0.105955 0.0 !Mu0ChY36TRaw[Co3At3Ch4]
+888.861 -0.107363 0.0 !Mu0ChY37TRaw[Co3At3Ch5]
+888.241 -0.107278 0.0 !Mu0ChY38TRaw[Co3At3Ch6]
+888.889 -0.107347 0.0 !Mu0ChY39TRaw[Co3At3Ch7]
+906.968 -0.109567 0.0 !Mu0ChY40TRaw[Co3At3Ch8]
+904.625 -0.109268 0.0 !Mu0ChY41TRaw[Co3At3Ch9]
+902.798 -0.109045 0.0 !Mu0ChY42TRaw[Co3At3Ch10]
+901.927 -0.108924 0.0 !Mu0ChY43TRaw[Co3At3Ch11]
+912.591 -0.110196 0.0 !Mu0ChY44TRaw[Co3At3Ch12]
+909.812 -0.109895 0.0 !Mu0ChY45TRaw[Co3At3Ch13]
+904.379 -0.10924 0.0 !Mu0ChY46TRaw[Co3At3Ch14]
+914.951 -0.110513 0.0 !Mu0ChY47TRaw[Co3At3Ch15]
+903.001 -0.109056 0.0 !Mu0ChY48TRaw[Co3At3Ch16]
+857.208 -0.103507 0.0 !Mu0ChY49TRaw[Co3At4Ch1]
+868.319 -0.104888 0.0 !Mu0ChY50TRaw[Co3At4Ch2]
+863.685 -0.104347 0.0 !Mu0ChY51TRaw[Co3At4Ch3]
+880.511 -0.106391 0.0 !Mu0ChY52TRaw[Co3At4Ch4]
+883.206 -0.106718 0.0 !Mu0ChY53TRaw[Co3At4Ch5]
+884.379 -0.106878 0.0 !Mu0ChY54TRaw[Co3At4Ch6]
+881.016 -0.106441 0.0 !Mu0ChY55TRaw[Co3At4Ch7]
+888.95 -0.107426 0.0 !Mu0ChY56TRaw[Co3At4Ch8]
+890.519 -0.107608 0.0 !Mu0ChY57TRaw[Co3At4Ch9]
+894.751 -0.108136 0.0 !Mu0ChY58TRaw[Co3At4Ch10]
+901.921 -0.109012 0.0 !Mu0ChY59TRaw[Co3At4Ch11]
+900.736 -0.108611 0.0 !Mu0ChY60TRaw[Co3At4Ch12]
+899.581 -0.108719 0.0 !Mu0ChY61TRaw[Co3At4Ch13]
+906.688 -0.109581 0.0 !Mu0ChY62TRaw[Co3At4Ch14]
+900.81 -0.108895 0.0 !Mu0ChY63TRaw[Co3At4Ch15]
+906.101 -0.109543 0.0 !Mu0ChY64TRaw[Co3At4Ch16]
+965.38 -0.116469 0.0 !Mu0ChY65TRaw[Co4At1Ch1]
+971.898 -0.117302 0.0 !Mu0ChY66TRaw[Co4At1Ch2]
+977.707 -0.118012 0.0 !Mu0ChY67TRaw[Co4At1Ch3]
+977.945 -0.118028 0.0 !Mu0ChY68TRaw[Co4At1Ch4]
+980.831 -0.118378 0.0 !Mu0ChY69TRaw[Co4At1Ch5]
+984.514 -0.118825 0.0 !Mu0ChY70TRaw[Co4At1Ch6]
+984.139 -0.118781 0.0 !Mu0ChY71TRaw[Co4At1Ch7]
+987.235 -0.119156 0.0 !Mu0ChY72TRaw[Co4At1Ch8]
+991.116 -0.119628 0.0 !Mu0ChY73TRaw[Co4At1Ch9]
+982.578 -0.118591 0.0 !Mu0ChY74TRaw[Co4At1Ch10]
+991.199 -0.119656 0.0 !Mu0ChY75TRaw[Co4At1Ch11]
+1001.66 -0.120924 0.0 !Mu0ChY76TRaw[Co4At1Ch12]
+996.91 -0.120327 0.0 !Mu0ChY77TRaw[Co4At1Ch13]
+998.977 -0.120579 0.0 !Mu0ChY78TRaw[Co4At1Ch14]
+996.138 -0.120247 0.0 !Mu0ChY79TRaw[Co4At1Ch15]
+1003.186 -0.121097 0.0 !Mu0ChY80TRaw[Co4At1Ch16]
+971.772 -0.117145 0.0 !Mu0ChY81TRaw[Co4At2Ch1]
+987.56 -0.119118 0.0 !Mu0ChY82TRaw[Co4At2Ch2]
+982.693 -0.118534 0.0 !Mu0ChY83TRaw[Co4At2Ch3]
+997.382 -0.12031 0.0 !Mu0ChY84TRaw[Co4At2Ch4]
+1001.12 -0.120777 0.0 !Mu0ChY85TRaw[Co4At2Ch5]
+1003.628 -0.121085 0.0 !Mu0ChY86TRaw[Co4At2Ch6]
+999.525 -0.120569 0.0 !Mu0ChY87TRaw[Co4At2Ch7]
+1009.866 -0.121839 0.0 !Mu0ChY88TRaw[Co4At2Ch8]
+1005.699 -0.121339 0.0 !Mu0ChY89TRaw[Co4At2Ch9]
+1016.19 -0.122592 0.0 !Mu0ChY90TRaw[Co4At2Ch10]
+1026.692 -0.123897 0.0 !Mu0ChY91TRaw[Co4At2Ch11]
+1026.458 -0.123866 0.0 !Mu0ChY92TRaw[Co4At2Ch12]
+1021.303 -0.123256 0.0 !Mu0ChY93TRaw[Co4At2Ch13]
+1025.779 -0.123786 0.0 !Mu0ChY94TRaw[Co4At2Ch14]
+1022.572 -0.123408 0.0 !Mu0ChY95TRaw[Co4At2Ch15]
+1018.35 -0.122879 0.0 !Mu0ChY96TRaw[Co4At2Ch16]
+884.199 -0.106544 0.0 !Mu0ChY97TRaw[Co4At3Ch1]
+880.563 -0.106139 0.0 !Mu0ChY98TRaw[Co4At3Ch2]
+879.514 -0.106028 0.0 !Mu0ChY99TRaw[Co4At3Ch3]
+896.148 -0.108041 0.0 !Mu0ChY100TRaw[Co4At3Ch4]
+893.439 -0.107707 0.0 !Mu0ChY101TRaw[Co4At3Ch5]
+892.231 -0.10757 0.0 !Mu0ChY102TRaw[Co4At3Ch6]
+896.756 -0.108105 0.0 !Mu0ChY103TRaw[Co4At3Ch7]
+908.766 -0.10959 0.0 !Mu0ChY104TRaw[Co4At3Ch8]
+903.356 -0.108916 0.0 !Mu0ChY105TRaw[Co4At3Ch9]
+916.719 -0.110544 0.0 !Mu0ChY106TRaw[Co4At3Ch10]
+912.113 -0.109981 0.0 !Mu0ChY107TRaw[Co4At3Ch11]
+916.451 -0.11051 0.0 !Mu0ChY108TRaw[Co4At3Ch12]
+915.868 -0.110421 0.0 !Mu0ChY109TRaw[Co4At3Ch13]
+911.388 -0.109894 0.0 !Mu0ChY110TRaw[Co4At3Ch14]
+916.911 -0.110572 0.0 !Mu0ChY111TRaw[Co4At3Ch15]
+918.844 -0.110803 0.0 !Mu0ChY112TRaw[Co4At3Ch16]
+893.651 -0.107535 0.0 !Mu0ChY113TRaw[Co4At4Ch1]
+901.081 -0.108466 0.0 !Mu0ChY114TRaw[Co4At4Ch2]
+900.586 -0.108438 0.0 !Mu0ChY115TRaw[Co4At4Ch3]
+906.547 -0.109158 0.0 !Mu0ChY116TRaw[Co4At4Ch4]
+918.22 -0.110566 0.0 !Mu0ChY117TRaw[Co4At4Ch5]
+911.401 -0.109757 0.0 !Mu0ChY118TRaw[Co4At4Ch6]
+931.26 -0.112167 0.0 !Mu0ChY119TRaw[Co4At4Ch7]
+923.034 -0.111146 0.0 !Mu0ChY120TRaw[Co4At4Ch8]
+933.197 -0.112407 0.0 !Mu0ChY121TRaw[Co4At4Ch9]
+932.718 -0.112337 0.0 !Mu0ChY122TRaw[Co4At4Ch10]
+934.415 -0.112539 0.0 !Mu0ChY123TRaw[Co4At4Ch11]
+937.954 -0.112978 0.0 !Mu0ChY124TRaw[Co4At4Ch12]
+932.468 -0.112316 0.0 !Mu0ChY125TRaw[Co4At4Ch13]
+931.414 -0.112192 0.0 !Mu0ChY126TRaw[Co4At4Ch14]
+928.457 -0.111821 0.0 !Mu0ChY127TRaw[Co4At4Ch15]
+931.38 -0.112162 0.0 !Mu0ChY128TRaw[Co4At4Ch16]
+931.243 -0.11232 0.0 !Mu1ChX1TRaw[Co1At1Ch1]
+945.084 -0.114015 0.0 !Mu1ChX2TRaw[Co1At1Ch2]
+947.562 -0.114341 0.0 !Mu1ChX3TRaw[Co1At1Ch3]
+958.911 -0.115712 0.0 !Mu1ChX4TRaw[Co1At1Ch4]
+959.274 -0.115744 0.0 !Mu1ChX5TRaw[Co1At1Ch5]
+961.121 -0.115962 0.0 !Mu1ChX6TRaw[Co1At1Ch6]
+974.613 -0.117589 0.0 !Mu1ChX7TRaw[Co1At1Ch7]
+969.703 -0.116998 0.0 !Mu1ChX8TRaw[Co1At1Ch8]
+973.909 -0.117498 0.0 !Mu1ChX9TRaw[Co1At1Ch9]
+982.972 -0.118577 0.0 !Mu1ChX10TRaw[Co1At1Ch10]
+979.25 -0.118143 0.0 !Mu1ChX11TRaw[Co1At1Ch11]
+978.727 -0.118071 0.0 !Mu1ChX12TRaw[Co1At1Ch12]
+990.788 -0.11954 0.0 !Mu1ChX13TRaw[Co1At1Ch13]
+991.407 -0.119597 0.0 !Mu1ChX14TRaw[Co1At1Ch14]
+988.337 -0.119236 0.0 !Mu1ChX15TRaw[Co1At1Ch15]
+1375.029 -0.119179 0.0 !Mu1ChX16TRaw[Co1At1Ch16]
+927.042 -0.111777 0.0 !Mu1ChX17TRaw[Co1At2Ch1]
+950.021 -0.114612 0.0 !Mu1ChX18TRaw[Co1At2Ch2]
+950.947 -0.114738 0.0 !Mu1ChX19TRaw[Co1At2Ch3]
+948.537 -0.114439 0.0 !Mu1ChX20TRaw[Co1At2Ch4]
+956.835 -0.115464 0.0 !Mu1ChX21TRaw[Co1At2Ch5]
+969.98 -0.117052 0.0 !Mu1ChX22TRaw[Co1At2Ch6]
+959.253 -0.115762 0.0 !Mu1ChX23TRaw[Co1At2Ch7]
+975.846 -0.117739 0.0 !Mu1ChX24TRaw[Co1At2Ch8]
+974.071 -0.117531 0.0 !Mu1ChX25TRaw[Co1At2Ch9]
+977.168 -0.117923 0.0 !Mu1ChX26TRaw[Co1At2Ch10]
+975.805 -0.117737 0.0 !Mu1ChX27TRaw[Co1At2Ch11]
+979.545 -0.11821 0.0 !Mu1ChX28TRaw[Co1At2Ch12]
+983.428 -0.118677 0.0 !Mu1ChX29TRaw[Co1At2Ch13]
+980.499 -0.118324 0.0 !Mu1ChX30TRaw[Co1At2Ch14]
+979.469 -0.118198 0.0 !Mu1ChX31TRaw[Co1At2Ch15]
+988.102 -0.119148 0.0 !Mu1ChX32TRaw[Co1At2Ch16]
+880.379 -0.106165 0.0 !Mu1ChX33TRaw[Co1At3Ch1]
+880.08 -0.10618 0.0 !Mu1ChX34TRaw[Co1At3Ch2]
+895.406 -0.108064 0.0 !Mu1ChX35TRaw[Co1At3Ch3]
+878.12 -0.105941 0.0 !Mu1ChX36TRaw[Co1At3Ch4]
+895.881 -0.108105 0.0 !Mu1ChX37TRaw[Co1At3Ch5]
+901.785 -0.108823 0.0 !Mu1ChX38TRaw[Co1At3Ch6]
+894.137 -0.107861 0.0 !Mu1ChX39TRaw[Co1At3Ch7]
+898.782 -0.10842 0.0 !Mu1ChX40TRaw[Co1At3Ch8]
+901.632 -0.108779 0.0 !Mu1ChX41TRaw[Co1At3Ch9]
+904.878 -0.108754 0.0 !Mu1ChX42TRaw[Co1At3Ch10]
+910.193 -0.109783 0.0 !Mu1ChX43TRaw[Co1At3Ch11]
+902.054 -0.108855 0.0 !Mu1ChX44TRaw[Co1At3Ch12]
+911.528 -0.110019 0.0 !Mu1ChX45TRaw[Co1At3Ch13]
+909.985 -0.109854 0.0 !Mu1ChX46TRaw[Co1At3Ch14]
+907.601 -0.109528 0.0 !Mu1ChX47TRaw[Co1At3Ch15]
+922.228 -0.110055 0.0 !Mu1ChX48TRaw[Co1At3Ch16]
+869.923 -0.104838 0.0 !Mu1ChX49TRaw[Co1At4Ch1]
+875.125 -0.105455 0.0 !Mu1ChX50TRaw[Co1At4Ch2]
+887.868 -0.107015 0.0 !Mu1ChX51TRaw[Co1At4Ch3]
+890.27 -0.107338 0.0 !Mu1ChX52TRaw[Co1At4Ch4]
+893.359 -0.107685 0.0 !Mu1ChX53TRaw[Co1At4Ch5]
+893.348 -0.107699 0.0 !Mu1ChX54TRaw[Co1At4Ch6]
+900.729 -0.10819 0.0 !Mu1ChX55TRaw[Co1At4Ch7]
+906.65 -0.108878 0.0 !Mu1ChX56TRaw[Co1At4Ch8]
+909.8 -0.1097 0.0 !Mu1ChX57TRaw[Co1At4Ch9]
+905.423 -0.10916 0.0 !Mu1ChX58TRaw[Co1At4Ch10]
+914.17 -0.110244 0.0 !Mu1ChX59TRaw[Co1At4Ch11]
+906.586 -0.109308 0.0 !Mu1ChX60TRaw[Co1At4Ch12]
+919.705 -0.110894 0.0 !Mu1ChX61TRaw[Co1At4Ch13]
+911.009 -0.109867 0.0 !Mu1ChX62TRaw[Co1At4Ch14]
+910.69 -0.109791 0.0 !Mu1ChX63TRaw[Co1At4Ch15]
+919.963 -0.110777 0.0 !Mu1ChX64TRaw[Co1At4Ch16]
+952.039 -0.114723 0.0 !Mu1ChX65TRaw[Co2At1Ch1]
+953.727 -0.114949 0.0 !Mu1ChX66TRaw[Co2At1Ch2]
+967.402 -0.116629 0.0 !Mu1ChX67TRaw[Co2At1Ch3]
+963.242 -0.116557 0.0 !Mu1ChX68TRaw[Co2At1Ch4]
+969.139 -0.116827 0.0 !Mu1ChX69TRaw[Co2At1Ch5]
+973.545 -0.117811 0.0 !Mu1ChX70TRaw[Co2At1Ch6]
+973.3 -0.117758 0.0 !Mu1ChX71TRaw[Co2At1Ch7]
+978.421 -0.118392 0.0 !Mu1ChX72TRaw[Co2At1Ch8]
+975.853 -0.118063 0.0 !Mu1ChX73TRaw[Co2At1Ch9]
+990.602 -0.119853 0.0 !Mu1ChX74TRaw[Co2At1Ch10]
+986.683 -0.119377 0.0 !Mu1ChX75TRaw[Co2At1Ch11]
+984.808 -0.119141 0.0 !Mu1ChX76TRaw[Co2At1Ch12]
+991.649 -0.119982 0.0 !Mu1ChX77TRaw[Co2At1Ch13]
+997.413 -0.120199 0.0 !Mu1ChX78TRaw[Co2At1Ch14]
+993.522 -0.1202 0.0 !Mu1ChX79TRaw[Co2At1Ch15]
+1382.854 -0.120722 0.0 !Mu1ChX80TRaw[Co2At1Ch16]
+973.769 -0.117775 0.0 !Mu1ChX81TRaw[Co2At2Ch1]
+975.739 -0.118024 0.0 !Mu1ChX82TRaw[Co2At2Ch2]
+984.702 -0.118652 0.0 !Mu1ChX83TRaw[Co2At2Ch3]
+998.209 -0.120307 0.0 !Mu1ChX84TRaw[Co2At2Ch4]
+993.886 -0.120215 0.0 !Mu1ChX85TRaw[Co2At2Ch5]
+1003.201 -0.121389 0.0 !Mu1ChX86TRaw[Co2At2Ch6]
+1004.641 -0.121554 0.0 !Mu1ChX87TRaw[Co2At2Ch7]
+996.555 -0.12057 0.0 !Mu1ChX88TRaw[Co2At2Ch8]
+1011.012 -0.122345 0.0 !Mu1ChX89TRaw[Co2At2Ch9]
+1013.335 -0.12261 0.0 !Mu1ChX90TRaw[Co2At2Ch10]
+1008.829 -0.122082 0.0 !Mu1ChX91TRaw[Co2At2Ch11]
+1015.054 -0.12282 0.0 !Mu1ChX92TRaw[Co2At2Ch12]
+1014.579 -0.12279 0.0 !Mu1ChX93TRaw[Co2At2Ch13]
+1017.346 -0.123127 0.0 !Mu1ChX94TRaw[Co2At2Ch14]
+1021.088 -0.123096 0.0 !Mu1ChX95TRaw[Co2At2Ch15]
+1005.091 -0.12163 0.0 !Mu1ChX96TRaw[Co2At2Ch16]
+889.567 -0.107613 0.0 !Mu1ChX97TRaw[Co2At3Ch1]
+887.661 -0.107373 0.0 !Mu1ChX98TRaw[Co2At3Ch2]
+891.391 -0.107838 0.0 !Mu1ChX99TRaw[Co2At3Ch3]
+902.766 -0.109224 0.0 !Mu1ChX100TRaw[Co2At3Ch4]
+902.54 -0.1092 0.0 !Mu1ChX101TRaw[Co2At3Ch5]
+907.648 -0.109791 0.0 !Mu1ChX102TRaw[Co2At3Ch6]
+903.145 -0.109268 0.0 !Mu1ChX103TRaw[Co2At3Ch7]
+918.818 -0.111151 0.0 !Mu1ChX104TRaw[Co2At3Ch8]
+920.016 -0.11128 0.0 !Mu1ChX105TRaw[Co2At3Ch9]
+921.413 -0.111467 0.0 !Mu1ChX106TRaw[Co2At3Ch10]
+926.201 -0.112035 0.0 !Mu1ChX107TRaw[Co2At3Ch11]
+921.77 -0.111519 0.0 !Mu1ChX108TRaw[Co2At3Ch12]
+922.63 -0.111616 0.0 !Mu1ChX109TRaw[Co2At3Ch13]
+914.413 -0.110627 0.0 !Mu1ChX110TRaw[Co2At3Ch14]
+916.972 -0.110941 0.0 !Mu1ChX111TRaw[Co2At3Ch15]
+923.713 -0.11176 0.0 !Mu1ChX112TRaw[Co2At3Ch16]
+897.837 -0.108476 0.0 !Mu1ChX113TRaw[Co2At4Ch1]
+898.652 -0.108567 0.0 !Mu1ChX114TRaw[Co2At4Ch2]
+905.902 -0.10946 0.0 !Mu1ChX115TRaw[Co2At4Ch3]
+911.452 -0.110136 0.0 !Mu1ChX116TRaw[Co2At4Ch4]
+926.396 -0.111977 0.0 !Mu1ChX117TRaw[Co2At4Ch5]
+920.897 -0.111304 0.0 !Mu1ChX118TRaw[Co2At4Ch6]
+933.101 -0.112781 0.0 !Mu1ChX119TRaw[Co2At4Ch7]
+915.617 -0.110659 0.0 !Mu1ChX120TRaw[Co2At4Ch8]
+921.125 -0.111325 0.0 !Mu1ChX121TRaw[Co2At4Ch9]
+928.617 -0.112226 0.0 !Mu1ChX122TRaw[Co2At4Ch10]
+929.597 -0.11236 0.0 !Mu1ChX123TRaw[Co2At4Ch11]
+924.845 -0.111775 0.0 !Mu1ChX124TRaw[Co2At4Ch12]
+922.311 -0.111483 0.0 !Mu1ChX125TRaw[Co2At4Ch13]
+928.291 -0.112193 0.0 !Mu1ChX126TRaw[Co2At4Ch14]
+931.58 -0.112614 0.0 !Mu1ChX127TRaw[Co2At4Ch15]
+925.581 -0.111864 0.0 !Mu1ChX128TRaw[Co2At4Ch16]
+932.035 -0.11282 0.0 !Mu1ChY1TRaw[Co3At1Ch1]
+933.495 -0.113022 0.0 !Mu1ChY2TRaw[Co3At1Ch2]
+944.411 -0.114361 0.0 !Mu1ChY3TRaw[Co3At1Ch3]
+948.375 -0.114834 0.0 !Mu1ChY4TRaw[Co3At1Ch4]
+950.778 -0.115122 0.0 !Mu1ChY5TRaw[Co3At1Ch5]
+954.172 -0.115533 0.0 !Mu1ChY6TRaw[Co3At1Ch6]
+957.549 -0.115938 0.0 !Mu1ChY7TRaw[Co3At1Ch7]
+947.562 -0.114726 0.0 !Mu1ChY8TRaw[Co3At1Ch8]
+954.965 -0.11562 0.0 !Mu1ChY9TRaw[Co3At1Ch9]
+965.207 -0.116854 0.0 !Mu1ChY10TRaw[Co3At1Ch10]
+961.189 -0.116368 0.0 !Mu1ChY11TRaw[Co3At1Ch11]
+968.97 -0.117327 0.0 !Mu1ChY12TRaw[Co3At1Ch12]
+969.302 -0.117358 0.0 !Mu1ChY13TRaw[Co3At1Ch13]
+964.945 -0.116827 0.0 !Mu1ChY14TRaw[Co3At1Ch14]
+966.214 -0.116981 0.0 !Mu1ChY15TRaw[Co3At1Ch15]
+963.966 -0.116717 0.0 !Mu1ChY16TRaw[Co3At1Ch16]
+965.888 -0.116883 0.0 !Mu1ChY17TRaw[Co3At2Ch1]
+967.684 -0.117128 0.0 !Mu1ChY18TRaw[Co3At2Ch2]
+972.15 -0.117665 0.0 !Mu1ChY19TRaw[Co3At2Ch3]
+972.745 -0.117743 0.0 !Mu1ChY20TRaw[Co3At2Ch4]
+984.112 -0.119146 0.0 !Mu1ChY21TRaw[Co3At2Ch5]
+980.877 -0.118747 0.0 !Mu1ChY22TRaw[Co3At2Ch6]
+450.0 -0.119189 0.0 !Mu1ChY23TRaw[Co3At2Ch7]
+990.666 -0.119964 0.0 !Mu1ChY24TRaw[Co3At2Ch8]
+992.259 -0.120158 0.0 !Mu1ChY25TRaw[Co3At2Ch9]
+992.41 -0.120176 0.0 !Mu1ChY26TRaw[Co3At2Ch10]
+996.766 -0.120728 0.0 !Mu1ChY27TRaw[Co3At2Ch11]
+991.746 -0.120113 0.0 !Mu1ChY28TRaw[Co3At2Ch12]
+993.587 -0.120339 0.0 !Mu1ChY29TRaw[Co3At2Ch13]
+985.064 -0.119308 0.0 !Mu1ChY30TRaw[Co3At2Ch14]
+991.596 -0.120108 0.0 !Mu1ChY31TRaw[Co3At2Ch15]
+986.445 -0.119515 0.0 !Mu1ChY32TRaw[Co3At2Ch16]
+881.012 -0.106691 0.0 !Mu1ChY33TRaw[Co3At3Ch1]
+886.766 -0.10745 0.0 !Mu1ChY34TRaw[Co3At3Ch2]
+882.204 -0.106848 0.0 !Mu1ChY35TRaw[Co3At3Ch3]
+891.854 -0.108037 0.0 !Mu1ChY36TRaw[Co3At3Ch4]
+850619310270.0 -103827000.0 0.0 !Mu1ChY37TRaw[Co3At3Ch5]
+902.417 -0.109433 0.0 !Mu1ChY38TRaw[Co3At3Ch6]
+901.585 -0.110242 0.0 !Mu1ChY39TRaw[Co3At3Ch7]
+903.595 -0.10944 0.0 !Mu1ChY40TRaw[Co3At3Ch8]
+891.657 -0.107957 0.0 !Mu1ChY41TRaw[Co3At3Ch9]
+903.952 -0.109521 0.0 !Mu1ChY42TRaw[Co3At3Ch10]
+896.803 -0.108623 0.0 !Mu1ChY43TRaw[Co3At3Ch11]
+905.625 -0.10969 0.0 !Mu1ChY44TRaw[Co3At3Ch12]
+908.281 -0.109989 0.0 !Mu1ChY45TRaw[Co3At3Ch13]
+902.33 -0.109312 0.0 !Mu1ChY46TRaw[Co3At3Ch14]
+907.41 -0.109844 0.0 !Mu1ChY47TRaw[Co3At3Ch15]
+902.089 -0.109257 0.0 !Mu1ChY48TRaw[Co3At3Ch16]
+884.479 -0.10696 0.0 !Mu1ChY49TRaw[Co3At4Ch1]
+883.474 -0.106852 0.0 !Mu1ChY50TRaw[Co3At4Ch2]
+879.998 -0.106436 0.0 !Mu1ChY51TRaw[Co3At4Ch3]
+893.146 -0.108049 0.0 !Mu1ChY52TRaw[Co3At4Ch4]
+898.884 -0.108781 0.0 !Mu1ChY53TRaw[Co3At4Ch5]
+900.108 -0.108923 0.0 !Mu1ChY54TRaw[Co3At4Ch6]
+900.099 -0.108922 0.0 !Mu1ChY55TRaw[Co3At4Ch7]
+900.287 -0.108949 0.0 !Mu1ChY56TRaw[Co3At4Ch8]
+912.19 -0.110395 0.0 !Mu1ChY57TRaw[Co3At4Ch9]
+911.3 -0.110294 0.0 !Mu1ChY58TRaw[Co3At4Ch10]
+906.773 -0.109746 0.0 !Mu1ChY59TRaw[Co3At4Ch11]
+909.678 -0.109802 0.0 !Mu1ChY60TRaw[Co3At4Ch12]
+906.734 -0.109742 0.0 !Mu1ChY61TRaw[Co3At4Ch13]
+914.732 -0.11072 0.0 !Mu1ChY62TRaw[Co3At4Ch14]
+916.102 -0.110879 0.0 !Mu1ChY63TRaw[Co3At4Ch15]
+917.148 -0.111037 0.0 !Mu1ChY64TRaw[Co3At4Ch16]
+946.855 -0.115194 0.0 !Mu1ChY65TRaw[Co4At1Ch1]
+953.644 -0.116053 0.0 !Mu1ChY66TRaw[Co4At1Ch2]
+959.75 -0.116788 0.0 !Mu1ChY67TRaw[Co4At1Ch3]
+963.24 -0.117211 0.0 !Mu1ChY68TRaw[Co4At1Ch4]
+966.608 -0.117617 0.0 !Mu1ChY69TRaw[Co4At1Ch5]
+974.806 -0.118609 0.0 !Mu1ChY70TRaw[Co4At1Ch6]
+970.229 -0.118053 0.0 !Mu1ChY71TRaw[Co4At1Ch7]
+978.318 -0.119038 0.0 !Mu1ChY72TRaw[Co4At1Ch8]
+979.408 -0.119163 0.0 !Mu1ChY73TRaw[Co4At1Ch9]
+982.639 -0.119552 0.0 !Mu1ChY74TRaw[Co4At1Ch10]
+984.456 -0.119777 0.0 !Mu1ChY75TRaw[Co4At1Ch11]
+981.379 -0.119391 0.0 !Mu1ChY76TRaw[Co4At1Ch12]
+984.651 -0.11981 0.0 !Mu1ChY77TRaw[Co4At1Ch13]
+982.31 -0.119505 0.0 !Mu1ChY78TRaw[Co4At1Ch14]
+983.007 -0.119601 0.0 !Mu1ChY79TRaw[Co4At1Ch15]
+988.01 -0.120194 0.0 !Mu1ChY80TRaw[Co4At1Ch16]
+943.199 -0.114646 0.0 !Mu1ChY81TRaw[Co4At2Ch1]
+951.261 -0.115676 0.0 !Mu1ChY82TRaw[Co4At2Ch2]
+950.217 -0.115551 0.0 !Mu1ChY83TRaw[Co4At2Ch3]
+957.193 -0.116392 0.0 !Mu1ChY84TRaw[Co4At2Ch4]
+956.711 -0.116344 0.0 !Mu1ChY85TRaw[Co4At2Ch5]
+966.907 -0.117589 0.0 !Mu1ChY86TRaw[Co4At2Ch6]
+967.784 -0.117699 0.0 !Mu1ChY87TRaw[Co4At2Ch7]
+974.973 -0.118567 0.0 !Mu1ChY88TRaw[Co4At2Ch8]
+975.931 -0.118705 0.0 !Mu1ChY89TRaw[Co4At2Ch9]
+968.629 -0.117807 0.0 !Mu1ChY90TRaw[Co4At2Ch10]
+973.17 -0.118376 0.0 !Mu1ChY91TRaw[Co4At2Ch11]
+981.206 -0.119333 0.0 !Mu1ChY92TRaw[Co4At2Ch12]
+981.863 -0.119429 0.0 !Mu1ChY93TRaw[Co4At2Ch13]
+974.832 -0.118576 0.0 !Mu1ChY94TRaw[Co4At2Ch14]
+978.651 -0.119031 0.0 !Mu1ChY95TRaw[Co4At2Ch15]
+989.899 -0.120471 0.0 !Mu1ChY96TRaw[Co4At2Ch16]
+872.47 -0.106136 0.0 !Mu1ChY97TRaw[Co4At3Ch1]
+871.244 -0.106 0.0 !Mu1ChY98TRaw[Co4At3Ch2]
+875.764 -0.106555 0.0 !Mu1ChY99TRaw[Co4At3Ch3]
+889.841 -0.108263 0.0 !Mu1ChY100TRaw[Co4At3Ch4]
+887.593 -0.10801 0.0 !Mu1ChY101TRaw[Co4At3Ch5]
+879.757 -0.107044 0.0 !Mu1ChY102TRaw[Co4At3Ch6]
+887.54 -0.108005 0.0 !Mu1ChY103TRaw[Co4At3Ch7]
+890.884 -0.108406 0.0 !Mu1ChY104TRaw[Co4At3Ch8]
+901.255 -0.109653 0.0 !Mu1ChY105TRaw[Co4At3Ch9]
+897.946 -0.10926 0.0 !Mu1ChY106TRaw[Co4At3Ch10]
+901.33 -0.10967 0.0 !Mu1ChY107TRaw[Co4At3Ch11]
+891.982 -0.108536 0.0 !Mu1ChY108TRaw[Co4At3Ch12]
+899.178 -0.109417 0.0 !Mu1ChY109TRaw[Co4At3Ch13]
+906.416 -0.110268 0.0 !Mu1ChY110TRaw[Co4At3Ch14]
+903.498 -0.109108 0.0 !Mu1ChY111TRaw[Co4At3Ch15]
+902.622 -0.109824 0.0 !Mu1ChY112TRaw[Co4At3Ch16]
+858.806 -0.104291 0.0 !Mu1ChY113TRaw[Co4At4Ch1]
+855.722 -0.103549 0.0 !Mu1ChY114TRaw[Co4At4Ch2]
+862.565 -0.104798 0.0 !Mu1ChY115TRaw[Co4At4Ch3]
+857.566 -0.10419 0.0 !Mu1ChY116TRaw[Co4At4Ch4]
+866.024 -0.105221 0.0 !Mu1ChY117TRaw[Co4At4Ch5]
+875.42 -0.106354 0.0 !Mu1ChY118TRaw[Co4At4Ch6]
+879.769 -0.1069 0.0 !Mu1ChY119TRaw[Co4At4Ch7]
+874.481 -0.106252 0.0 !Mu1ChY120TRaw[Co4At4Ch8]
+891.89 -0.108379 0.0 !Mu1ChY121TRaw[Co4At4Ch9]
+892.881 -0.108492 0.0 !Mu1ChY122TRaw[Co4At4Ch10]
+890.673 -0.108225 0.0 !Mu1ChY123TRaw[Co4At4Ch11]
+889.841 -0.108132 0.0 !Mu1ChY124TRaw[Co4At4Ch12]
+892.159 -0.108412 0.0 !Mu1ChY125TRaw[Co4At4Ch13]
+887.553 -0.10784 0.0 !Mu1ChY126TRaw[Co4At4Ch14]
+884.907 -0.107526 0.0 !Mu1ChY127TRaw[Co4At4Ch15]
+949.092 -0.121191 0.0 !Mu1ChY128TRaw[Co4At4Ch16]
+961.969 -0.113282 0.0 !Mu2ChX1TRaw[Co1At1Ch1]
+958.383 -0.112935 0.0 !Mu2ChX2TRaw[Co1At1Ch2]
+959.323 -0.113903 0.0 !Mu2ChX3TRaw[Co1At1Ch3]
+971.546 -0.11541 0.0 !Mu2ChX4TRaw[Co1At1Ch4]
+974.655 -0.114834 0.0 !Mu2ChX5TRaw[Co1At1Ch5]
+1003.683 -0.116968 0.0 !Mu2ChX6TRaw[Co1At1Ch6]
+989.279 -0.116144 0.0 !Mu2ChX7TRaw[Co1At1Ch7]
+1005.564 -0.116738 0.0 !Mu2ChX8TRaw[Co1At1Ch8]
+997.02 -0.115736 0.0 !Mu2ChX9TRaw[Co1At1Ch9]
+1009.567 -0.117191 0.0 !Mu2ChX10TRaw[Co1At1Ch10]
+1016.097 -0.117505 0.0 !Mu2ChX11TRaw[Co1At1Ch11]
+1010.396 -0.116868 0.0 !Mu2ChX12TRaw[Co1At1Ch12]
+1023.961 -0.117596 0.0 !Mu2ChX13TRaw[Co1At1Ch13]
+1021.425 -0.116864 0.0 !Mu2ChX14TRaw[Co1At1Ch14]
+1022.087 -0.116934 0.0 !Mu2ChX15TRaw[Co1At1Ch15]
+1404.789 -0.118078 0.0 !Mu2ChX16TRaw[Co1At1Ch16]
+967.642 -0.111042 0.0 !Mu2ChX17TRaw[Co1At2Ch1]
+983.495 -0.1129 0.0 !Mu2ChX18TRaw[Co1At2Ch2]
+979.424 -0.113239 0.0 !Mu2ChX19TRaw[Co1At2Ch3]
+977.956 -0.11311 0.0 !Mu2ChX20TRaw[Co1At2Ch4]
+985.742 -0.114433 0.0 !Mu2ChX21TRaw[Co1At2Ch5]
+984.648 -0.113893 0.0 !Mu2ChX22TRaw[Co1At2Ch6]
+982.48 -0.113604 0.0 !Mu2ChX23TRaw[Co1At2Ch7]
+987.397 -0.114596 0.0 !Mu2ChX24TRaw[Co1At2Ch8]
+970.925 -0.113523 0.0 !Mu2ChX25TRaw[Co1At2Ch9]
+975.832 -0.114529 0.0 !Mu2ChX26TRaw[Co1At2Ch10]
+976.316 -0.114587 0.0 !Mu2ChX27TRaw[Co1At2Ch11]
+968.817 -0.114127 0.0 !Mu2ChX28TRaw[Co1At2Ch12]
+972.791 -0.115049 0.0 !Mu2ChX29TRaw[Co1At2Ch13]
+976.306 -0.114577 0.0 !Mu2ChX30TRaw[Co1At2Ch14]
+967.35 -0.114801 0.0 !Mu2ChX31TRaw[Co1At2Ch15]
+1112.794 -0.114725 0.0 !Mu2ChX32TRaw[Co1At2Ch16]
+886.943 -0.106884 0.0 !Mu2ChX33TRaw[Co1At3Ch1]
+884.583 -0.106588 0.0 !Mu2ChX34TRaw[Co1At3Ch2]
+893.29 -0.10771 0.0 !Mu2ChX35TRaw[Co1At3Ch3]
+890.797 -0.10739 0.0 !Mu2ChX36TRaw[Co1At3Ch4]
+904.52 -0.109058 0.0 !Mu2ChX37TRaw[Co1At3Ch5]
+901.6 -0.108685 0.0 !Mu2ChX38TRaw[Co1At3Ch6]
+912.776 -0.109605 0.0 !Mu2ChX39TRaw[Co1At3Ch7]
+909.538 -0.109211 0.0 !Mu2ChX40TRaw[Co1At3Ch8]
+905.616 -0.109168 0.0 !Mu2ChX41TRaw[Co1At3Ch9]
+909.953 -0.109617 0.0 !Mu2ChX42TRaw[Co1At3Ch10]
+915.691 -0.1104 0.0 !Mu2ChX43TRaw[Co1At3Ch11]
+914.614 -0.110254 0.0 !Mu2ChX44TRaw[Co1At3Ch12]
+922.657 -0.111219 0.0 !Mu2ChX45TRaw[Co1At3Ch13]
+921.084 -0.111043 0.0 !Mu2ChX46TRaw[Co1At3Ch14]
+924.127 -0.111378 0.0 !Mu2ChX47TRaw[Co1At3Ch15]
+1314.501 -0.11089 0.0 !Mu2ChX48TRaw[Co1At3Ch16]
+855.885 -0.102956 0.0 !Mu2ChX49TRaw[Co1At4Ch1]
+865.811 -0.104191 0.0 !Mu2ChX50TRaw[Co1At4Ch2]
+875.413 -0.105362 0.0 !Mu2ChX51TRaw[Co1At4Ch3]
+869.6 -0.10464 0.0 !Mu2ChX52TRaw[Co1At4Ch4]
+878.692 -0.105723 0.0 !Mu2ChX53TRaw[Co1At4Ch5]
+878.801 -0.105755 0.0 !Mu2ChX54TRaw[Co1At4Ch6]
+880.829 -0.105984 0.0 !Mu2ChX55TRaw[Co1At4Ch7]
+888.51 -0.106931 0.0 !Mu2ChX56TRaw[Co1At4Ch8]
+897.44 -0.108024 0.0 !Mu2ChX57TRaw[Co1At4Ch9]
+903.488 -0.108307 0.0 !Mu2ChX58TRaw[Co1At4Ch10]
+891.54 -0.107279 0.0 !Mu2ChX59TRaw[Co1At4Ch11]
+901.749 -0.108543 0.0 !Mu2ChX60TRaw[Co1At4Ch12]
+903.111 -0.108721 0.0 !Mu2ChX61TRaw[Co1At4Ch13]
+902.871 -0.108665 0.0 !Mu2ChX62TRaw[Co1At4Ch14]
+899.187 -0.10824 0.0 !Mu2ChX63TRaw[Co1At4Ch15]
+1290.423 -0.107885 0.0 !Mu2ChX64TRaw[Co1At4Ch16]
+974.417 -0.117533 0.0 !Mu2ChX65TRaw[Co2At1Ch1]
+974.467 -0.117545 0.0 !Mu2ChX66TRaw[Co2At1Ch2]
+982.266 -0.118957 0.0 !Mu2ChX67TRaw[Co2At1Ch3]
+987.279 -0.119584 0.0 !Mu2ChX68TRaw[Co2At1Ch4]
+450.0 -0.119902 0.0 !Mu2ChX69TRaw[Co2At1Ch5]
+994.768 -0.12002 0.0 !Mu2ChX70TRaw[Co2At1Ch6]
+996.07 -0.120171 0.0 !Mu2ChX71TRaw[Co2At1Ch7]
+1001.148 -0.120802 0.0 !Mu2ChX72TRaw[Co2At1Ch8]
+990.627 -0.119977 0.0 !Mu2ChX73TRaw[Co2At1Ch9]
+1007.159 -0.12102 0.0 !Mu2ChX74TRaw[Co2At1Ch10]
+995.316 -0.12055 0.0 !Mu2ChX75TRaw[Co2At1Ch11]
+995.021 -0.12048 0.0 !Mu2ChX76TRaw[Co2At1Ch12]
+1004.692 -0.121688 0.0 !Mu2ChX77TRaw[Co2At1Ch13]
+1008.471 -0.122136 0.0 !Mu2ChX78TRaw[Co2At1Ch14]
+1011.105 -0.122472 0.0 !Mu2ChX79TRaw[Co2At1Ch15]
+1326.05 -0.121488 0.0 !Mu2ChX80TRaw[Co2At1Ch16]
+951.951 -0.115148 0.0 !Mu2ChX81TRaw[Co2At2Ch1]
+962.967 -0.116512 0.0 !Mu2ChX82TRaw[Co2At2Ch2]
+964.814 -0.116735 0.0 !Mu2ChX83TRaw[Co2At2Ch3]
+968.296 -0.117158 0.0 !Mu2ChX84TRaw[Co2At2Ch4]
+968.369 -0.117159 0.0 !Mu2ChX85TRaw[Co2At2Ch5]
+969.781 -0.117336 0.0 !Mu2ChX86TRaw[Co2At2Ch6]
+990.877 -0.118997 0.0 !Mu2ChX87TRaw[Co2At2Ch7]
+986.288 -0.118879 0.0 !Mu2ChX88TRaw[Co2At2Ch8]
+992.984 -0.120152 0.0 !Mu2ChX89TRaw[Co2At2Ch9]
+996.567 -0.120143 0.0 !Mu2ChX90TRaw[Co2At2Ch10]
+995.578 -0.120011 0.0 !Mu2ChX91TRaw[Co2At2Ch11]
+989.666 -0.118788 0.0 !Mu2ChX92TRaw[Co2At2Ch12]
+1002.901 -0.120614 0.0 !Mu2ChX93TRaw[Co2At2Ch13]
+1000.682 -0.12112 0.0 !Mu2ChX94TRaw[Co2At2Ch14]
+1005.506 -0.12123 0.0 !Mu2ChX95TRaw[Co2At2Ch15]
+994.062 -0.119394 0.0 !Mu2ChX96TRaw[Co2At2Ch16]
+903.468 -0.10895 0.0 !Mu2ChX97TRaw[Co2At3Ch1]
+920.18 -0.11099 0.0 !Mu2ChX98TRaw[Co2At3Ch2]
+919.46 -0.110483 0.0 !Mu2ChX99TRaw[Co2At3Ch3]
+916.305 -0.110494 0.0 !Mu2ChX100TRaw[Co2At3Ch4]
+925.516 -0.11163 0.0 !Mu2ChX101TRaw[Co2At3Ch5]
+924.994 -0.111573 0.0 !Mu2ChX102TRaw[Co2At3Ch6]
+926.844 -0.111368 0.0 !Mu2ChX103TRaw[Co2At3Ch7]
+927.713 -0.111888 0.0 !Mu2ChX104TRaw[Co2At3Ch8]
+934.246 -0.113122 0.0 !Mu2ChX105TRaw[Co2At3Ch9]
+942.1 -0.112764 0.0 !Mu2ChX106TRaw[Co2At3Ch10]
+939.807 -0.113373 0.0 !Mu2ChX107TRaw[Co2At3Ch11]
+938.544 -0.112797 0.0 !Mu2ChX108TRaw[Co2At3Ch12]
+938.298 -0.113176 0.0 !Mu2ChX109TRaw[Co2At3Ch13]
+941.18 -0.113973 0.0 !Mu2ChX110TRaw[Co2At3Ch14]
+941.929 -0.114066 0.0 !Mu2ChX111TRaw[Co2At3Ch15]
+948.461 -0.113973 0.0 !Mu2ChX112TRaw[Co2At3Ch16]
+911.72 -0.108961 0.0 !Mu2ChX113TRaw[Co2At4Ch1]
+916.448 -0.109531 0.0 !Mu2ChX114TRaw[Co2At4Ch2]
+913.525 -0.110461 0.0 !Mu2ChX115TRaw[Co2At4Ch3]
+916.767 -0.110414 0.0 !Mu2ChX116TRaw[Co2At4Ch4]
+932.449 -0.112323 0.0 !Mu2ChX117TRaw[Co2At4Ch5]
+935.405 -0.11267 0.0 !Mu2ChX118TRaw[Co2At4Ch6]
+951.71 -0.113333 0.0 !Mu2ChX119TRaw[Co2At4Ch7]
+947.484 -0.113698 0.0 !Mu2ChX120TRaw[Co2At4Ch8]
+940.04 -0.113666 0.0 !Mu2ChX121TRaw[Co2At4Ch9]
+955.99 -0.114745 0.0 !Mu2ChX122TRaw[Co2At4Ch10]
+950.863 -0.113673 0.0 !Mu2ChX123TRaw[Co2At4Ch11]
+957.151 -0.11443 0.0 !Mu2ChX124TRaw[Co2At4Ch12]
+939.375 -0.113174 0.0 !Mu2ChX125TRaw[Co2At4Ch13]
+935.68 -0.113143 0.0 !Mu2ChX126TRaw[Co2At4Ch14]
+947.829 -0.114176 0.0 !Mu2ChX127TRaw[Co2At4Ch15]
+954.772 -0.114186 0.0 !Mu2ChX128TRaw[Co2At4Ch16]
+986.809 -0.119525 0.0 !Mu2ChY1TRaw[Co3At1Ch1]
+989.707 -0.119903 0.0 !Mu2ChY2TRaw[Co3At1Ch2]
+988.424 -0.119776 0.0 !Mu2ChY3TRaw[Co3At1Ch3]
+994.772 -0.120524 0.0 !Mu2ChY4TRaw[Co3At1Ch4]
+1000.112 -0.121165 0.0 !Mu2ChY5TRaw[Co3At1Ch5]
+998.216 -0.120947 0.0 !Mu2ChY6TRaw[Co3At1Ch6]
+1003.137 -0.121526 0.0 !Mu2ChY7TRaw[Co3At1Ch7]
+1010.151 -0.122366 0.0 !Mu2ChY8TRaw[Co3At1Ch8]
+1011.59 -0.122539 0.0 !Mu2ChY9TRaw[Co3At1Ch9]
+1003.181 -0.121307 0.0 !Mu2ChY10TRaw[Co3At1Ch10]
+1009.494 -0.122275 0.0 !Mu2ChY11TRaw[Co3At1Ch11]
+1014.568 -0.122898 0.0 !Mu2ChY12TRaw[Co3At1Ch12]
+1016.416 -0.12312 0.0 !Mu2ChY13TRaw[Co3At1Ch13]
+1021.48 -0.123746 0.0 !Mu2ChY14TRaw[Co3At1Ch14]
+1020.595 -0.123621 0.0 !Mu2ChY15TRaw[Co3At1Ch15]
+1025.592 -0.123744 0.0 !Mu2ChY16TRaw[Co3At1Ch16]
+939.197 -0.113632 0.0 !Mu2ChY17TRaw[Co3At2Ch1]
+938.486 -0.11359 0.0 !Mu2ChY18TRaw[Co3At2Ch2]
+938.117 -0.113546 0.0 !Mu2ChY19TRaw[Co3At2Ch3]
+937.753 -0.113526 0.0 !Mu2ChY20TRaw[Co3At2Ch4]
+952.829 -0.115367 0.0 !Mu2ChY21TRaw[Co3At2Ch5]
+968.723 -0.117305 0.0 !Mu2ChY22TRaw[Co3At2Ch6]
+964.707 -0.11682 0.0 !Mu2ChY23TRaw[Co3At2Ch7]
+959.632 -0.116216 0.0 !Mu2ChY24TRaw[Co3At2Ch8]
+975.259 -0.118134 0.0 !Mu2ChY25TRaw[Co3At2Ch9]
+977.951 -0.118446 0.0 !Mu2ChY26TRaw[Co3At2Ch10]
+975.198 -0.117858 0.0 !Mu2ChY27TRaw[Co3At2Ch11]
+981.828 -0.11895 0.0 !Mu2ChY28TRaw[Co3At2Ch12]
+976.046 -0.118238 0.0 !Mu2ChY29TRaw[Co3At2Ch13]
+977.812 -0.118468 0.0 !Mu2ChY30TRaw[Co3At2Ch14]
+976.59 -0.118337 0.0 !Mu2ChY31TRaw[Co3At2Ch15]
+964.767 -0.116905 0.0 !Mu2ChY32TRaw[Co3At2Ch16]
+869.429 -0.105393 0.0 !Mu2ChY33TRaw[Co3At3Ch1]
+876.222 -0.106206 0.0 !Mu2ChY34TRaw[Co3At3Ch2]
+892.019 -0.107711 0.0 !Mu2ChY35TRaw[Co3At3Ch3]
+893.32 -0.10786 0.0 !Mu2ChY36TRaw[Co3At3Ch4]
+893.254 -0.108297 0.0 !Mu2ChY37TRaw[Co3At3Ch5]
+887.737 -0.107628 0.0 !Mu2ChY38TRaw[Co3At3Ch6]
+903.996 -0.109574 0.0 !Mu2ChY39TRaw[Co3At3Ch7]
+902.76 -0.109401 0.0 !Mu2ChY40TRaw[Co3At3Ch8]
+905.554 -0.109756 0.0 !Mu2ChY41TRaw[Co3At3Ch9]
+910.354 -0.110304 0.0 !Mu2ChY42TRaw[Co3At3Ch10]
+906.017 -0.10979 0.0 !Mu2ChY43TRaw[Co3At3Ch11]
+909.731 -0.110231 0.0 !Mu2ChY44TRaw[Co3At3Ch12]
+912.223 -0.110532 0.0 !Mu2ChY45TRaw[Co3At3Ch13]
+915.291 -0.110907 0.0 !Mu2ChY46TRaw[Co3At3Ch14]
+919.13 -0.111371 0.0 !Mu2ChY47TRaw[Co3At3Ch15]
+914.361 -0.110791 0.0 !Mu2ChY48TRaw[Co3At3Ch16]
+892.707 -0.108016 0.0 !Mu2ChY49TRaw[Co3At4Ch1]
+901.908 -0.109155 0.0 !Mu2ChY50TRaw[Co3At4Ch2]
+899.294 -0.108834 0.0 !Mu2ChY51TRaw[Co3At4Ch3]
+912.773 -0.110471 0.0 !Mu2ChY52TRaw[Co3At4Ch4]
+905.427 -0.109622 0.0 !Mu2ChY53TRaw[Co3At4Ch5]
+914.293 -0.110708 0.0 !Mu2ChY54TRaw[Co3At4Ch6]
+917.644 -0.111116 0.0 !Mu2ChY55TRaw[Co3At4Ch7]
+913.315 -0.11061 0.0 !Mu2ChY56TRaw[Co3At4Ch8]
+926.108 -0.11216 0.0 !Mu2ChY57TRaw[Co3At4Ch9]
+917.422 -0.111079 0.0 !Mu2ChY58TRaw[Co3At4Ch10]
+919.823 -0.111393 0.0 !Mu2ChY59TRaw[Co3At4Ch11]
+923.686 -0.11168 0.0 !Mu2ChY60TRaw[Co3At4Ch12]
+939.831 -0.11386 0.0 !Mu2ChY61TRaw[Co3At4Ch13]
+928.854 -0.112068 0.0 !Mu2ChY62TRaw[Co3At4Ch14]
+921.381 -0.111623 0.0 !Mu2ChY63TRaw[Co3At4Ch15]
+929.377 -0.112593 0.0 !Mu2ChY64TRaw[Co3At4Ch16]
+925.209 -0.111864 0.0 !Mu2ChY65TRaw[Co4At1Ch1]
+944.461 -0.114242 0.0 !Mu2ChY66TRaw[Co4At1Ch2]
+948.829 -0.114763 0.0 !Mu2ChY67TRaw[Co4At1Ch3]
+946.46 -0.114477 0.0 !Mu2ChY68TRaw[Co4At1Ch4]
+972.881 -0.117701 0.0 !Mu2ChY69TRaw[Co4At1Ch5]
+960.964 -0.116242 0.0 !Mu2ChY70TRaw[Co4At1Ch6]
+968.396 -0.117144 0.0 !Mu2ChY71TRaw[Co4At1Ch7]
+965.324 -0.116783 0.0 !Mu2ChY72TRaw[Co4At1Ch8]
+956.836 -0.115747 0.0 !Mu2ChY73TRaw[Co4At1Ch9]
+958.888 -0.115989 0.0 !Mu2ChY74TRaw[Co4At1Ch10]
+965.259 -0.116762 0.0 !Mu2ChY75TRaw[Co4At1Ch11]
+978.071 -0.118324 0.0 !Mu2ChY76TRaw[Co4At1Ch12]
+974.474 -0.117892 0.0 !Mu2ChY77TRaw[Co4At1Ch13]
+977.064 -0.118194 0.0 !Mu2ChY78TRaw[Co4At1Ch14]
+967.826 -0.117092 0.0 !Mu2ChY79TRaw[Co4At1Ch15]
+969.895 -0.117343 0.0 !Mu2ChY80TRaw[Co4At1Ch16]
+945.396 -0.114246 0.0 !Mu2ChY81TRaw[Co4At2Ch1]
+939.845 -0.113582 0.0 !Mu2ChY82TRaw[Co4At2Ch2]
+951.951 -0.115097 0.0 !Mu2ChY83TRaw[Co4At2Ch3]
+947.601 -0.114574 0.0 !Mu2ChY84TRaw[Co4At2Ch4]
+956.462 -0.115653 0.0 !Mu2ChY85TRaw[Co4At2Ch5]
+966.795 -0.11692 0.0 !Mu2ChY86TRaw[Co4At2Ch6]
+965.068 -0.116695 0.0 !Mu2ChY87TRaw[Co4At2Ch7]
+970.746 -0.117388 0.0 !Mu2ChY88TRaw[Co4At2Ch8]
+973.531 -0.117739 0.0 !Mu2ChY89TRaw[Co4At2Ch9]
+975.469 -0.11797 0.0 !Mu2ChY90TRaw[Co4At2Ch10]
+979.918 -0.118525 0.0 !Mu2ChY91TRaw[Co4At2Ch11]
+970.565 -0.117371 0.0 !Mu2ChY92TRaw[Co4At2Ch12]
+978.32 -0.118331 0.0 !Mu2ChY93TRaw[Co4At2Ch13]
+977.975 -0.118283 0.0 !Mu2ChY94TRaw[Co4At2Ch14]
+985.51 -0.119174 0.0 !Mu2ChY95TRaw[Co4At2Ch15]
+990.075 -0.119806 0.0 !Mu2ChY96TRaw[Co4At2Ch16]
+898.373 -0.108639 0.0 !Mu2ChY97TRaw[Co4At3Ch1]
+894.37 -0.108189 0.0 !Mu2ChY98TRaw[Co4At3Ch2]
+904.896 -0.109474 0.0 !Mu2ChY99TRaw[Co4At3Ch3]
+903.57 -0.109308 0.0 !Mu2ChY100TRaw[Co4At3Ch4]
+917.463 -0.110997 0.0 !Mu2ChY101TRaw[Co4At3Ch5]
+925.187 -0.111938 0.0 !Mu2ChY102TRaw[Co4At3Ch6]
+915.403 -0.110746 0.0 !Mu2ChY103TRaw[Co4At3Ch7]
+931.348 -0.112691 0.0 !Mu2ChY104TRaw[Co4At3Ch8]
+925.85 -0.112025 0.0 !Mu2ChY105TRaw[Co4At3Ch9]
+921.698 -0.111507 0.0 !Mu2ChY106TRaw[Co4At3Ch10]
+922.879 -0.111663 0.0 !Mu2ChY107TRaw[Co4At3Ch11]
+922.629 -0.111623 0.0 !Mu2ChY108TRaw[Co4At3Ch12]
+926.153 -0.112066 0.0 !Mu2ChY109TRaw[Co4At3Ch13]
+926.883 -0.11214 0.0 !Mu2ChY110TRaw[Co4At3Ch14]
+923.148 -0.111703 0.0 !Mu2ChY111TRaw[Co4At3Ch15]
+913.683 -0.110525 0.0 !Mu2ChY112TRaw[Co4At3Ch16]
+853.746 -0.102981 0.0 !Mu2ChY113TRaw[Co4At4Ch1]
+869.715 -0.104976 0.0 !Mu2ChY114TRaw[Co4At4Ch2]
+877.625 -0.105936 0.0 !Mu2ChY115TRaw[Co4At4Ch3]
+876.055 -0.10575 0.0 !Mu2ChY116TRaw[Co4At4Ch4]
+884.136 -0.106741 0.0 !Mu2ChY117TRaw[Co4At4Ch5]
+880.455 -0.10628 0.0 !Mu2ChY118TRaw[Co4At4Ch6]
+892.866 -0.107805 0.0 !Mu2ChY119TRaw[Co4At4Ch7]
+894.388 -0.107966 0.0 !Mu2ChY120TRaw[Co4At4Ch8]
+884.377 -0.106759 0.0 !Mu2ChY121TRaw[Co4At4Ch9]
+897.709 -0.108381 0.0 !Mu2ChY122TRaw[Co4At4Ch10]
+896.178 -0.108195 0.0 !Mu2ChY123TRaw[Co4At4Ch11]
+1336.153 -0.108195 0.0 !Mu2ChY124TRaw[Co4At4Ch12]
+898.806 -0.108519 0.0 !Mu2ChY125TRaw[Co4At4Ch13]
+899.754 -0.10863 0.0 !Mu2ChY126TRaw[Co4At4Ch14]
+900.898 -0.108768 0.0 !Mu2ChY127TRaw[Co4At4Ch15]
+897.019 -0.108297 0.0 !Mu2ChY128TRaw[Co4At4Ch16]
+937.706 -0.113591 0.0 !Mu3ChX1TRaw[Co1At1Ch1]
+951.022 -0.115254 0.0 !Mu3ChX2TRaw[Co1At1Ch2]
+955.557 -0.115822 0.0 !Mu3ChX3TRaw[Co1At1Ch3]
+957.459 -0.116042 0.0 !Mu3ChX4TRaw[Co1At1Ch4]
+949.588 -0.115096 0.0 !Mu3ChX5TRaw[Co1At1Ch5]
+964.137 -0.11686 0.0 !Mu3ChX6TRaw[Co1At1Ch6]
+968.553 -0.117385 0.0 !Mu3ChX7TRaw[Co1At1Ch7]
+973.749 -0.118019 0.0 !Mu3ChX8TRaw[Co1At1Ch8]
+971.88 -0.117779 0.0 !Mu3ChX9TRaw[Co1At1Ch9]
+969.707 -0.117496 0.0 !Mu3ChX10TRaw[Co1At1Ch10]
+972.087 -0.117795 0.0 !Mu3ChX11TRaw[Co1At1Ch11]
+984.307 -0.119273 0.0 !Mu3ChX12TRaw[Co1At1Ch12]
+974.064 -0.118031 0.0 !Mu3ChX13TRaw[Co1At1Ch13]
+984.118 -0.118805 0.0 !Mu3ChX14TRaw[Co1At1Ch14]
+981.761 -0.118524 0.0 !Mu3ChX15TRaw[Co1At1Ch15]
+1355.602 -0.119127 0.0 !Mu3ChX16TRaw[Co1At1Ch16]
+966.58 -0.117029 0.0 !Mu3ChX17TRaw[Co1At2Ch1]
+962.788 -0.116582 0.0 !Mu3ChX18TRaw[Co1At2Ch2]
+981.303 -0.11886 0.0 !Mu3ChX19TRaw[Co1At2Ch3]
+977.619 -0.118386 0.0 !Mu3ChX20TRaw[Co1At2Ch4]
+984.275 -0.119229 0.0 !Mu3ChX21TRaw[Co1At2Ch5]
+991.6 -0.120114 0.0 !Mu3ChX22TRaw[Co1At2Ch6]
+984.029 -0.119177 0.0 !Mu3ChX23TRaw[Co1At2Ch7]
+988.571 -0.119693 0.0 !Mu3ChX24TRaw[Co1At2Ch8]
+986.236 -0.119405 0.0 !Mu3ChX25TRaw[Co1At2Ch9]
+987.105 -0.119523 0.0 !Mu3ChX26TRaw[Co1At2Ch10]
+1000.177 -0.12115 0.0 !Mu3ChX27TRaw[Co1At2Ch11]
+996.481 -0.120628 0.0 !Mu3ChX28TRaw[Co1At2Ch12]
+1006.483 -0.121885 0.0 !Mu3ChX29TRaw[Co1At2Ch13]
+999.637 -0.121035 0.0 !Mu3ChX30TRaw[Co1At2Ch14]
+1001.415 -0.121233 0.0 !Mu3ChX31TRaw[Co1At2Ch15]
+996.052 -0.120654 0.0 !Mu3ChX32TRaw[Co1At2Ch16]
+897.362 -0.108693 0.0 !Mu3ChX33TRaw[Co1At3Ch1]
+903.544 -0.109485 0.0 !Mu3ChX34TRaw[Co1At3Ch2]
+911.3 -0.110421 0.0 !Mu3ChX35TRaw[Co1At3Ch3]
+904.196 -0.109588 0.0 !Mu3ChX36TRaw[Co1At3Ch4]
+910.234 -0.110301 0.0 !Mu3ChX37TRaw[Co1At3Ch5]
+918.604 -0.111327 0.0 !Mu3ChX38TRaw[Co1At3Ch6]
+920.229 -0.111495 0.0 !Mu3ChX39TRaw[Co1At3Ch7]
+928.519 -0.112521 0.0 !Mu3ChX40TRaw[Co1At3Ch8]
+939.957 -0.11347 0.0 !Mu3ChX41TRaw[Co1At3Ch9]
+930.046 -0.112717 0.0 !Mu3ChX42TRaw[Co1At3Ch10]
+927.244 -0.112335 0.0 !Mu3ChX43TRaw[Co1At3Ch11]
+450.0 -0.112964 0.0 !Mu3ChX44TRaw[Co1At3Ch12]
+934.478 -0.113245 0.0 !Mu3ChX45TRaw[Co1At3Ch13]
+928.905 -0.11258 0.0 !Mu3ChX46TRaw[Co1At3Ch14]
+936.312 -0.113476 0.0 !Mu3ChX47TRaw[Co1At3Ch15]
+939.273 -0.113256 0.0 !Mu3ChX48TRaw[Co1At3Ch16]
+865.36 -0.104661 0.0 !Mu3ChX49TRaw[Co1At4Ch1]
+865.371 -0.104634 0.0 !Mu3ChX50TRaw[Co1At4Ch2]
+877.555 -0.106155 0.0 !Mu3ChX51TRaw[Co1At4Ch3]
+887.444 -0.107364 0.0 !Mu3ChX52TRaw[Co1At4Ch4]
+887.74 -0.107368 0.0 !Mu3ChX53TRaw[Co1At4Ch5]
+883.821 -0.106861 0.0 !Mu3ChX54TRaw[Co1At4Ch6]
+896.087 -0.108382 0.0 !Mu3ChX55TRaw[Co1At4Ch7]
+902.558 -0.108733 0.0 !Mu3ChX56TRaw[Co1At4Ch8]
+896.518 -0.10844 0.0 !Mu3ChX57TRaw[Co1At4Ch9]
+902.089 -0.10908 0.0 !Mu3ChX58TRaw[Co1At4Ch10]
+897.546 -0.108538 0.0 !Mu3ChX59TRaw[Co1At4Ch11]
+897.158 -0.10849 0.0 !Mu3ChX60TRaw[Co1At4Ch12]
+903.89 -0.109312 0.0 !Mu3ChX61TRaw[Co1At4Ch13]
+904.833 -0.109445 0.0 !Mu3ChX62TRaw[Co1At4Ch14]
+891.475 -0.107803 0.0 !Mu3ChX63TRaw[Co1At4Ch15]
+913.702 -0.108862 0.0 !Mu3ChX64TRaw[Co1At4Ch16]
+983.39 -0.119126 0.0 !Mu3ChX65TRaw[Co2At1Ch1]
+988.575 -0.119789 0.0 !Mu3ChX66TRaw[Co2At1Ch2]
+988.908 -0.119851 0.0 !Mu3ChX67TRaw[Co2At1Ch3]
+1004.692 -0.121753 0.0 !Mu3ChX68TRaw[Co2At1Ch4]
+1005.147 -0.121824 0.0 !Mu3ChX69TRaw[Co2At1Ch5]
+1002.098 -0.121446 0.0 !Mu3ChX70TRaw[Co2At1Ch6]
+1005.767 -0.121893 0.0 !Mu3ChX71TRaw[Co2At1Ch7]
+1009.556 -0.122347 0.0 !Mu3ChX72TRaw[Co2At1Ch8]
+1005.62 -0.121883 0.0 !Mu3ChX73TRaw[Co2At1Ch9]
+1012.529 -0.122684 0.0 !Mu3ChX74TRaw[Co2At1Ch10]
+1020.904 -0.123722 0.0 !Mu3ChX75TRaw[Co2At1Ch11]
+1030.908 -0.124938 0.0 !Mu3ChX76TRaw[Co2At1Ch12]
+1012.471 -0.122709 0.0 !Mu3ChX77TRaw[Co2At1Ch13]
+1012.229 -0.12265 0.0 !Mu3ChX78TRaw[Co2At1Ch14]
+1023.673 -0.124061 0.0 !Mu3ChX79TRaw[Co2At1Ch15]
+1391.931 -0.123313 0.0 !Mu3ChX80TRaw[Co2At1Ch16]
+940.841 -0.11381 0.0 !Mu3ChX81TRaw[Co2At2Ch1]
+946.588 -0.114558 0.0 !Mu3ChX82TRaw[Co2At2Ch2]
+950.194 -0.114986 0.0 !Mu3ChX83TRaw[Co2At2Ch3]
+948.521 -0.114804 0.0 !Mu3ChX84TRaw[Co2At2Ch4]
+963.462 -0.116619 0.0 !Mu3ChX85TRaw[Co2At2Ch5]
+966.195 -0.11693 0.0 !Mu3ChX86TRaw[Co2At2Ch6]
+960.94 -0.116299 0.0 !Mu3ChX87TRaw[Co2At2Ch7]
+965.913 -0.116863 0.0 !Mu3ChX88TRaw[Co2At2Ch8]
+976.593 -0.118161 0.0 !Mu3ChX89TRaw[Co2At2Ch9]
+973.009 -0.117687 0.0 !Mu3ChX90TRaw[Co2At2Ch10]
+977.734 -0.118304 0.0 !Mu3ChX91TRaw[Co2At2Ch11]
+985.665 -0.119256 0.0 !Mu3ChX92TRaw[Co2At2Ch12]
+985.146 -0.119241 0.0 !Mu3ChX93TRaw[Co2At2Ch13]
+985.012 -0.119186 0.0 !Mu3ChX94TRaw[Co2At2Ch14]
+982.369 -0.118879 0.0 !Mu3ChX95TRaw[Co2At2Ch15]
+979.215 -0.118278 0.0 !Mu3ChX96TRaw[Co2At2Ch16]
+860.4 -0.104124 0.0 !Mu3ChX97TRaw[Co2At3Ch1]
+865.127 -0.104728 0.0 !Mu3ChX98TRaw[Co2At3Ch2]
+865.22 -0.104753 0.0 !Mu3ChX99TRaw[Co2At3Ch3]
+871.419 -0.105492 0.0 !Mu3ChX100TRaw[Co2At3Ch4]
+881.125 -0.106693 0.0 !Mu3ChX101TRaw[Co2At3Ch5]
+876.452 -0.10614 0.0 !Mu3ChX102TRaw[Co2At3Ch6]
+881.321 -0.106708 0.0 !Mu3ChX103TRaw[Co2At3Ch7]
+880.324 -0.106567 0.0 !Mu3ChX104TRaw[Co2At3Ch8]
+889.289 -0.107671 0.0 !Mu3ChX105TRaw[Co2At3Ch9]
+893.959 -0.108216 0.0 !Mu3ChX106TRaw[Co2At3Ch10]
+885.863 -0.107225 0.0 !Mu3ChX107TRaw[Co2At3Ch11]
+896.508 -0.108561 0.0 !Mu3ChX108TRaw[Co2At3Ch12]
+899.197 -0.108609 0.0 !Mu3ChX109TRaw[Co2At3Ch13]
+893.469 -0.108191 0.0 !Mu3ChX110TRaw[Co2At3Ch14]
+902.937 -0.109337 0.0 !Mu3ChX111TRaw[Co2At3Ch15]
+903.612 -0.108709 0.0 !Mu3ChX112TRaw[Co2At3Ch16]
+857.827 -0.103629 0.0 !Mu3ChX113TRaw[Co2At4Ch1]
+867.282 -0.10481 0.0 !Mu3ChX114TRaw[Co2At4Ch2]
+867.634 -0.1049 0.0 !Mu3ChX115TRaw[Co2At4Ch3]
+874.129 -0.105647 0.0 !Mu3ChX116TRaw[Co2At4Ch4]
+1490.122 -0.126949 0.0 !Mu3ChX117TRaw[Co2At4Ch5]
+878.327 -0.106145 0.0 !Mu3ChX118TRaw[Co2At4Ch6]
+885.367 -0.107055 0.0 !Mu3ChX119TRaw[Co2At4Ch7]
+883.353 -0.10675 0.0 !Mu3ChX120TRaw[Co2At4Ch8]
+886.421 -0.107137 0.0 !Mu3ChX121TRaw[Co2At4Ch9]
+890.231 -0.107599 0.0 !Mu3ChX122TRaw[Co2At4Ch10]
+886.118 -0.107093 0.0 !Mu3ChX123TRaw[Co2At4Ch11]
+895.704 -0.108252 0.0 !Mu3ChX124TRaw[Co2At4Ch12]
+889.898 -0.107522 0.0 !Mu3ChX125TRaw[Co2At4Ch13]
+896.281 -0.108336 0.0 !Mu3ChX126TRaw[Co2At4Ch14]
+883.682 -0.106793 0.0 !Mu3ChX127TRaw[Co2At4Ch15]
+895.669 -0.107896 0.0 !Mu3ChX128TRaw[Co2At4Ch16]
+918.076 -0.11121 0.0 !Mu3ChY1TRaw[Co3At1Ch1]
+925.701 -0.112154 0.0 !Mu3ChY2TRaw[Co3At1Ch2]
+934.638 -0.113241 0.0 !Mu3ChY3TRaw[Co3At1Ch3]
+944.313 -0.114409 0.0 !Mu3ChY4TRaw[Co3At1Ch4]
+941.286 -0.114032 0.0 !Mu3ChY5TRaw[Co3At1Ch5]
+949.429 -0.114994 0.0 !Mu3ChY6TRaw[Co3At1Ch6]
+953.873 -0.115552 0.0 !Mu3ChY7TRaw[Co3At1Ch7]
+954.095 -0.115546 0.0 !Mu3ChY8TRaw[Co3At1Ch8]
+961.819 -0.116506 0.0 !Mu3ChY9TRaw[Co3At1Ch9]
+966.084 -0.117006 0.0 !Mu3ChY10TRaw[Co3At1Ch10]
+968.231 -0.117251 0.0 !Mu3ChY11TRaw[Co3At1Ch11]
+967.098 -0.117093 0.0 !Mu3ChY12TRaw[Co3At1Ch12]
+976.51 -0.118272 0.0 !Mu3ChY13TRaw[Co3At1Ch13]
+982.999 -0.119048 0.0 !Mu3ChY14TRaw[Co3At1Ch14]
+975.2 -0.118075 0.0 !Mu3ChY15TRaw[Co3At1Ch15]
+982.438 -0.118941 0.0 !Mu3ChY16TRaw[Co3At1Ch16]
+968.582 -0.117174 0.0 !Mu3ChY17TRaw[Co3At2Ch1]
+981.596 -0.118815 0.0 !Mu3ChY18TRaw[Co3At2Ch2]
+982.535 -0.118931 0.0 !Mu3ChY19TRaw[Co3At2Ch3]
+988.071 -0.119638 0.0 !Mu3ChY20TRaw[Co3At2Ch4]
+993.73 -0.12034 0.0 !Mu3ChY21TRaw[Co3At2Ch5]
+1003.541 -0.121551 0.0 !Mu3ChY22TRaw[Co3At2Ch6]
+998.968 -0.120998 0.0 !Mu3ChY23TRaw[Co3At2Ch7]
+993.315 -0.120321 0.0 !Mu3ChY24TRaw[Co3At2Ch8]
+999.364 -0.121073 0.0 !Mu3ChY25TRaw[Co3At2Ch9]
+1005.572 -0.121839 0.0 !Mu3ChY26TRaw[Co3At2Ch10]
+1005.81 -0.121856 0.0 !Mu3ChY27TRaw[Co3At2Ch11]
+1012.089 -0.122649 0.0 !Mu3ChY28TRaw[Co3At2Ch12]
+1015.153 -0.12302 0.0 !Mu3ChY29TRaw[Co3At2Ch13]
+1003.98 -0.121668 0.0 !Mu3ChY30TRaw[Co3At2Ch14]
+1013.163 -0.122794 0.0 !Mu3ChY31TRaw[Co3At2Ch15]
+1013.882 -0.122927 0.0 !Mu3ChY32TRaw[Co3At2Ch16]
+869.852 -0.105446 0.0 !Mu3ChY33TRaw[Co3At3Ch1]
+866.645 -0.105092 0.0 !Mu3ChY34TRaw[Co3At3Ch2]
+871.811 -0.10573 0.0 !Mu3ChY35TRaw[Co3At3Ch3]
+868.809 -0.105345 0.0 !Mu3ChY36TRaw[Co3At3Ch4]
+880.462 -0.106744 0.0 !Mu3ChY37TRaw[Co3At3Ch5]
+879.67 -0.106654 0.0 !Mu3ChY38TRaw[Co3At3Ch6]
+885.22 -0.107294 0.0 !Mu3ChY39TRaw[Co3At3Ch7]
+893.863 -0.108361 0.0 !Mu3ChY40TRaw[Co3At3Ch8]
+891.003 -0.10799 0.0 !Mu3ChY41TRaw[Co3At3Ch9]
+895.002 -0.10846 0.0 !Mu3ChY42TRaw[Co3At3Ch10]
+904.382 -0.109593 0.0 !Mu3ChY43TRaw[Co3At3Ch11]
+900.904 -0.109195 0.0 !Mu3ChY44TRaw[Co3At3Ch12]
+896.146 -0.108568 0.0 !Mu3ChY45TRaw[Co3At3Ch13]
+906.325 -0.109804 0.0 !Mu3ChY46TRaw[Co3At3Ch14]
+910.104 -0.110263 0.0 !Mu3ChY47TRaw[Co3At3Ch15]
+902.797 -0.109382 0.0 !Mu3ChY48TRaw[Co3At3Ch16]
+876.215 -0.105997 0.0 !Mu3ChY49TRaw[Co3At4Ch1]
+882.251 -0.106772 0.0 !Mu3ChY50TRaw[Co3At4Ch2]
+893.929 -0.108217 0.0 !Mu3ChY51TRaw[Co3At4Ch3]
+896.657 -0.108527 0.0 !Mu3ChY52TRaw[Co3At4Ch4]
+890.731 -0.107825 0.0 !Mu3ChY53TRaw[Co3At4Ch5]
+899.266 -0.108862 0.0 !Mu3ChY54TRaw[Co3At4Ch6]
+903.981 -0.109456 0.0 !Mu3ChY55TRaw[Co3At4Ch7]
+909.889 -0.110152 0.0 !Mu3ChY56TRaw[Co3At4Ch8]
+914.156 -0.110718 0.0 !Mu3ChY57TRaw[Co3At4Ch9]
+912.878 -0.11056 0.0 !Mu3ChY58TRaw[Co3At4Ch10]
+921.772 -0.111636 0.0 !Mu3ChY59TRaw[Co3At4Ch11]
+907.641 -0.109934 0.0 !Mu3ChY60TRaw[Co3At4Ch12]
+921.134 -0.111581 0.0 !Mu3ChY61TRaw[Co3At4Ch13]
+921.864 -0.111694 0.0 !Mu3ChY62TRaw[Co3At4Ch14]
+917.054 -0.1111 0.0 !Mu3ChY63TRaw[Co3At4Ch15]
+919.795 -0.11144 0.0 !Mu3ChY64TRaw[Co3At4Ch16]
+909.45 -0.109216 0.0 !Mu3ChY65TRaw[Co4At1Ch1]
+919.5 -0.110026 0.0 !Mu3ChY66TRaw[Co4At1Ch2]
+909.57 -0.110106 0.0 !Mu3ChY67TRaw[Co4At1Ch3]
+921.73 -0.11114 0.0 !Mu3ChY68TRaw[Co4At1Ch4]
+933.144 -0.11252 0.0 !Mu3ChY69TRaw[Co4At1Ch5]
+937.937 -0.113544 0.0 !Mu3ChY70TRaw[Co4At1Ch6]
+941.407 -0.112672 0.0 !Mu3ChY71TRaw[Co4At1Ch7]
+929.175 -0.112491 0.0 !Mu3ChY72TRaw[Co4At1Ch8]
+949.055 -0.114462 0.0 !Mu3ChY73TRaw[Co4At1Ch9]
+941.527 -0.11354 0.0 !Mu3ChY74TRaw[Co4At1Ch10]
+954.075 -0.115517 0.0 !Mu3ChY75TRaw[Co4At1Ch11]
+957.81 -0.115086 0.0 !Mu3ChY76TRaw[Co4At1Ch12]
+963.019 -0.116618 0.0 !Mu3ChY77TRaw[Co4At1Ch13]
+955.382 -0.115232 0.0 !Mu3ChY78TRaw[Co4At1Ch14]
+944.365 -0.114343 0.0 !Mu3ChY79TRaw[Co4At1Ch15]
+952.964 -0.114947 0.0 !Mu3ChY80TRaw[Co4At1Ch16]
+969.317 -0.117288 0.0 !Mu3ChY81TRaw[Co4At2Ch1]
+980.742 -0.118727 0.0 !Mu3ChY82TRaw[Co4At2Ch2]
+990.702 -0.119474 0.0 !Mu3ChY83TRaw[Co4At2Ch3]
+994.094 -0.119909 0.0 !Mu3ChY84TRaw[Co4At2Ch4]
+1003.58 -0.120116 0.0 !Mu3ChY85TRaw[Co4At2Ch5]
+999.143 -0.120975 0.0 !Mu3ChY86TRaw[Co4At2Ch6]
+996.11 -0.120606 0.0 !Mu3ChY87TRaw[Co4At2Ch7]
+1005.134 -0.12076 0.0 !Mu3ChY88TRaw[Co4At2Ch8]
+1002.139 -0.121336 0.0 !Mu3ChY89TRaw[Co4At2Ch9]
+1025.133 -0.122713 0.0 !Mu3ChY90TRaw[Co4At2Ch10]
+1016.547 -0.1231 0.0 !Mu3ChY91TRaw[Co4At2Ch11]
+1008.733 -0.121678 0.0 !Mu3ChY92TRaw[Co4At2Ch12]
+1017.167 -0.122697 0.0 !Mu3ChY93TRaw[Co4At2Ch13]
+1016.429 -0.123087 0.0 !Mu3ChY94TRaw[Co4At2Ch14]
+1008.727 -0.122144 0.0 !Mu3ChY95TRaw[Co4At2Ch15]
+1013.668 -0.122274 0.0 !Mu3ChY96TRaw[Co4At2Ch16]
+872.659 -0.105573 0.0 !Mu3ChY97TRaw[Co4At3Ch1]
+869.574 -0.105224 0.0 !Mu3ChY98TRaw[Co4At3Ch2]
+874.267 -0.105791 0.0 !Mu3ChY99TRaw[Co4At3Ch3]
+883.417 -0.106904 0.0 !Mu3ChY100TRaw[Co4At3Ch4]
+893.981 -0.107789 0.0 !Mu3ChY101TRaw[Co4At3Ch5]
+890.232 -0.107742 0.0 !Mu3ChY102TRaw[Co4At3Ch6]
+901.26 -0.109085 0.0 !Mu3ChY103TRaw[Co4At3Ch7]
+900.219 -0.108126 0.0 !Mu3ChY104TRaw[Co4At3Ch8]
+900.643 -0.108999 0.0 !Mu3ChY105TRaw[Co4At3Ch9]
+892.987 -0.108068 0.0 !Mu3ChY106TRaw[Co4At3Ch10]
+892.534 -0.108006 0.0 !Mu3ChY107TRaw[Co4At3Ch11]
+901.564 -0.109125 0.0 !Mu3ChY108TRaw[Co4At3Ch12]
+911.227 -0.109439 0.0 !Mu3ChY109TRaw[Co4At3Ch13]
+905.426 -0.109168 0.0 !Mu3ChY110TRaw[Co4At3Ch14]
+904.499 -0.108625 0.0 !Mu3ChY111TRaw[Co4At3Ch15]
+907.559 -0.109416 0.0 !Mu3ChY112TRaw[Co4At3Ch16]
+896.812 -0.107554 0.0 !Mu3ChY113TRaw[Co4At4Ch1]
+897.309 -0.108473 0.0 !Mu3ChY114TRaw[Co4At4Ch2]
+907.137 -0.108848 0.0 !Mu3ChY115TRaw[Co4At4Ch3]
+902.563 -0.108292 0.0 !Mu3ChY116TRaw[Co4At4Ch4]
+907.303 -0.109288 0.0 !Mu3ChY117TRaw[Co4At4Ch5]
+909.347 -0.109943 0.0 !Mu3ChY118TRaw[Co4At4Ch6]
+907.931 -0.109765 0.0 !Mu3ChY119TRaw[Co4At4Ch7]
+907.16 -0.109672 0.0 !Mu3ChY120TRaw[Co4At4Ch8]
+917.59 -0.110512 0.0 !Mu3ChY121TRaw[Co4At4Ch9]
+922.724 -0.111588 0.0 !Mu3ChY122TRaw[Co4At4Ch10]
+925.473 -0.111915 0.0 !Mu3ChY123TRaw[Co4At4Ch11]
+911.405 -0.109772 0.0 !Mu3ChY124TRaw[Co4At4Ch12]
+912.177 -0.11029 0.0 !Mu3ChY125TRaw[Co4At4Ch13]
+917.613 -0.110947 0.0 !Mu3ChY126TRaw[Co4At4Ch14]
+919.037 -0.111116 0.0 !Mu3ChY127TRaw[Co4At4Ch15]
+927.237 -0.112131 0.0 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/.DS_Store b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..0410c348a72dd1494b2d7a9e20311561781231a9
Binary files /dev/null and b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/.DS_Store differ
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M0_E/Cal_Str_X_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M0_E/Cal_Str_X_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..033b1d6ab0352ed91fe283b7649bb216ba473ed1
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M0_E/Cal_Str_X_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_E -61.6331 0.007522910000000001
+MUSETT_T0_DSSD_X1_E -62.055 0.0075747900000000005
+MUSETT_T0_DSSD_X2_E -61.7295 0.00753498
+MUSETT_T0_DSSD_X3_E -61.5102 0.007508
+MUSETT_T0_DSSD_X4_E -61.8331 0.00754788
+MUSETT_T0_DSSD_X5_E -61.6237 0.00752219
+MUSETT_T0_DSSD_X6_E -61.347300000000004 0.0074881
+MUSETT_T0_DSSD_X7_E -61.171099999999996 0.0074671
+MUSETT_T0_DSSD_X8_E -61.0214 0.00744836
+MUSETT_T0_DSSD_X9_E -62.6174 0.00764342
+MUSETT_T0_DSSD_X10_E -62.323699999999995 0.00760752
+MUSETT_T0_DSSD_X11_E -62.004 0.00756848
+MUSETT_T0_DSSD_X12_E -62.2228 0.00759535
+MUSETT_T0_DSSD_X13_E -61.7503 0.00753769
+MUSETT_T0_DSSD_X14_E -62.4495 0.00762252
+MUSETT_T0_DSSD_X15_E -61.339 0.00748739
+MUSETT_T0_DSSD_X16_E -63.072300000000006 0.00769874
+MUSETT_T0_DSSD_X17_E -62.8306 0.00767014
+MUSETT_T0_DSSD_X18_E -62.2071 0.00759325
+MUSETT_T0_DSSD_X19_E -62.3774 0.00761449
+MUSETT_T0_DSSD_X20_E -63.8741 0.00779655
+MUSETT_T0_DSSD_X21_E -62.503800000000005 0.00762964
+MUSETT_T0_DSSD_X22_E -62.3119 0.00760574
+MUSETT_T0_DSSD_X23_E -62.7355 0.00765798
+MUSETT_T0_DSSD_X24_E -62.8762 0.00767465
+MUSETT_T0_DSSD_X25_E -62.9841 0.007687909999999999
+MUSETT_T0_DSSD_X26_E -63.0675 0.0076982
+MUSETT_T0_DSSD_X27_E -62.585 0.007639910000000001
+MUSETT_T0_DSSD_X28_E -62.9901 0.00768868
+MUSETT_T0_DSSD_X29_E -62.619800000000005 0.00764391
+MUSETT_T0_DSSD_X30_E -63.4246 0.00774165
+MUSETT_T0_DSSD_X31_E -62.605 0.00764176
+MUSETT_T0_DSSD_X32_E -56.615 0.00691109
+MUSETT_T0_DSSD_X33_E -56.752 0.00692767
+MUSETT_T0_DSSD_X34_E -55.5313 0.00677863
+MUSETT_T0_DSSD_X35_E -56.356199999999994 0.0068791799999999995
+MUSETT_T0_DSSD_X36_E -55.9528 0.00682995
+MUSETT_T0_DSSD_X37_E -10.0 0.0
+MUSETT_T0_DSSD_X38_E -55.877900000000004 0.00682136
+MUSETT_T0_DSSD_X39_E -55.7038 0.00679995
+MUSETT_T0_DSSD_X40_E -56.249300000000005 0.00686589
+MUSETT_T0_DSSD_X41_E -55.8494 0.00681689
+MUSETT_T0_DSSD_X42_E -56.149699999999996 0.00685427
+MUSETT_T0_DSSD_X43_E -56.3195 0.00687441
+MUSETT_T0_DSSD_X44_E -56.3167 0.00687457
+MUSETT_T0_DSSD_X45_E -10.0 0.0
+MUSETT_T0_DSSD_X46_E -10.0 0.0
+MUSETT_T0_DSSD_X47_E -56.0559 0.00684297
+MUSETT_T0_DSSD_X48_E -57.8235 0.00705889
+MUSETT_T0_DSSD_X49_E -57.8885 0.00706649
+MUSETT_T0_DSSD_X50_E -57.7592 0.00704986
+MUSETT_T0_DSSD_X51_E -57.282300000000006 0.0069923
+MUSETT_T0_DSSD_X52_E -58.176300000000005 0.0071010299999999995
+MUSETT_T0_DSSD_X53_E -57.2074 0.00698291
+MUSETT_T0_DSSD_X54_E -57.7759 0.00705244
+MUSETT_T0_DSSD_X55_E -57.4536 0.0070135399999999995
+MUSETT_T0_DSSD_X56_E -58.4501 0.00713474
+MUSETT_T0_DSSD_X57_E -57.6962 0.0070427
+MUSETT_T0_DSSD_X58_E -57.293099999999995 0.00699262
+MUSETT_T0_DSSD_X59_E -57.7517 0.00704967
+MUSETT_T0_DSSD_X60_E -57.1788 0.00697896
+MUSETT_T0_DSSD_X61_E -57.8975 0.0070674
+MUSETT_T0_DSSD_X62_E -57.8707 0.00706412
+MUSETT_T0_DSSD_X63_E -58.0916 0.00709091
+MUSETT_T0_DSSD_X64_E -63.2445 0.00772165
+MUSETT_T0_DSSD_X65_E -63.4966 0.0077516600000000005
+MUSETT_T0_DSSD_X66_E -63.378099999999996 0.00773685
+MUSETT_T0_DSSD_X67_E -63.8112 0.0077912499999999996
+MUSETT_T0_DSSD_X68_E -63.0056 0.0076925
+MUSETT_T0_DSSD_X69_E -63.771800000000006 0.00778636
+MUSETT_T0_DSSD_X70_E -63.636900000000004 0.0077693599999999995
+MUSETT_T0_DSSD_X71_E -63.205 0.00771714
+MUSETT_T0_DSSD_X72_E -63.9696 0.00781032
+MUSETT_T0_DSSD_X73_E -62.9951 0.00769198
+MUSETT_T0_DSSD_X74_E -63.7705 0.00778739
+MUSETT_T0_DSSD_X75_E -63.683699999999995 0.0077771
+MUSETT_T0_DSSD_X76_E -63.3658 0.00773864
+MUSETT_T0_DSSD_X77_E -63.4124 0.00774431
+MUSETT_T0_DSSD_X78_E -63.838699999999996 0.007796979999999999
+MUSETT_T0_DSSD_X79_E -63.9104 0.0078103
+MUSETT_T0_DSSD_X80_E -60.714800000000004 0.00741635
+MUSETT_T0_DSSD_X81_E -60.354699999999994 0.00737366
+MUSETT_T0_DSSD_X82_E -60.7699 0.0074225
+MUSETT_T0_DSSD_X83_E -61.1536 0.0074687700000000004
+MUSETT_T0_DSSD_X84_E -61.0986 0.00746087
+MUSETT_T0_DSSD_X85_E -61.831300000000006 0.00755086
+MUSETT_T0_DSSD_X86_E -61.2339 0.007476740000000001
+MUSETT_T0_DSSD_X87_E -61.9185 0.00756139
+MUSETT_T0_DSSD_X88_E -61.705 0.00753432
+MUSETT_T0_DSSD_X89_E -61.5394 0.00751247
+MUSETT_T0_DSSD_X90_E -61.6548 0.007526799999999999
+MUSETT_T0_DSSD_X91_E -62.6569 0.00765026
+MUSETT_T0_DSSD_X92_E -61.7265 0.00753576
+MUSETT_T0_DSSD_X93_E -60.9295 0.0074391
+MUSETT_T0_DSSD_X94_E -61.2714 0.00748082
+MUSETT_T0_DSSD_X95_E -62.081199999999995 0.00757944
+MUSETT_T0_DSSD_X96_E -57.1125 0.00697127
+MUSETT_T0_DSSD_X97_E -57.4511 0.00701351
+MUSETT_T0_DSSD_X98_E -57.7263 0.007046490000000001
+MUSETT_T0_DSSD_X99_E -57.024 0.00696101
+MUSETT_T0_DSSD_X100_E -58.096 0.00709126
+MUSETT_T0_DSSD_X101_E -57.639300000000006 0.007036400000000001
+MUSETT_T0_DSSD_X102_E -57.569199999999995 0.00702818
+MUSETT_T0_DSSD_X103_E -57.1133 0.00697269
+MUSETT_T0_DSSD_X104_E -57.345699999999994 0.006999450000000001
+MUSETT_T0_DSSD_X105_E -57.915699999999994 0.00706943
+MUSETT_T0_DSSD_X106_E -57.166 0.0069786200000000005
+MUSETT_T0_DSSD_X107_E -57.5637 0.00702674
+MUSETT_T0_DSSD_X108_E -58.5464 0.00714671
+MUSETT_T0_DSSD_X109_E -57.969199999999994 0.0070772199999999995
+MUSETT_T0_DSSD_X110_E -57.5808 0.0070292
+MUSETT_T0_DSSD_X111_E -57.635 0.00703725
+MUSETT_T0_DSSD_X112_E -58.915 0.00719216
+MUSETT_T0_DSSD_X113_E -59.152 0.00722096
+MUSETT_T0_DSSD_X114_E -58.4545 0.00713595
+MUSETT_T0_DSSD_X115_E -58.584300000000006 0.0071519899999999996
+MUSETT_T0_DSSD_X116_E -58.0616 0.007088390000000001
+MUSETT_T0_DSSD_X117_E -58.252 0.00711139
+MUSETT_T0_DSSD_X118_E -58.26 0.00711192
+MUSETT_T0_DSSD_X119_E -58.543800000000005 0.00714562
+MUSETT_T0_DSSD_X120_E -58.468900000000005 0.00713746
+MUSETT_T0_DSSD_X121_E -58.6184 0.00715521
+MUSETT_T0_DSSD_X122_E -58.3872 0.0071278800000000005
+MUSETT_T0_DSSD_X123_E -59.2772 0.00723597
+MUSETT_T0_DSSD_X124_E -57.8232 0.007058539999999999
+MUSETT_T0_DSSD_X125_E -58.459199999999996 0.00713586
+MUSETT_T0_DSSD_X126_E -58.3965 0.0071278
+MUSETT_T0_DSSD_X127_E -59.4511 0.00725717
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M0_E/Cal_Str_Y_E_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M0_E/Cal_Str_Y_E_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..de70da85c65749f79461e08b57e9f763e0108bac
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M0_E/Cal_Str_Y_E_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_Y0_E -10.0 0.0
+MUSETT_T0_DSSD_Y1_E 60.3421 -0.00736534
+MUSETT_T0_DSSD_Y2_E 60.8553 -0.00742765
+MUSETT_T0_DSSD_Y3_E 61.044 -0.00745109
+MUSETT_T0_DSSD_Y4_E 59.9281 -0.00731456
+MUSETT_T0_DSSD_Y5_E 60.1115 -0.00733668
+MUSETT_T0_DSSD_Y6_E 60.6705 -0.00740537
+MUSETT_T0_DSSD_Y7_E 60.3853 -0.0073704700000000005
+MUSETT_T0_DSSD_Y8_E 60.092699999999994 -0.00733441
+MUSETT_T0_DSSD_Y9_E 59.923300000000005 -0.00731426
+MUSETT_T0_DSSD_Y10_E 60.3528 -0.007366360000000001
+MUSETT_T0_DSSD_Y11_E 59.9862 -0.007321589999999999
+MUSETT_T0_DSSD_Y12_E 60.842800000000004 -0.007426319999999999
+MUSETT_T0_DSSD_Y13_E 60.9356 -0.0074373899999999995
+MUSETT_T0_DSSD_Y14_E 61.0191 -0.0074482
+MUSETT_T0_DSSD_Y15_E 60.664 -0.007404239999999999
+MUSETT_T0_DSSD_Y16_E 60.353 -0.00736683
+MUSETT_T0_DSSD_Y17_E 60.4558 -0.0073788099999999995
+MUSETT_T0_DSSD_Y18_E 60.296099999999996 -0.00736011
+MUSETT_T0_DSSD_Y19_E 60.0762 -0.0073325
+MUSETT_T0_DSSD_Y20_E 60.2578 -0.0073547000000000005
+MUSETT_T0_DSSD_Y21_E 60.3411 -0.007364880000000001
+MUSETT_T0_DSSD_Y22_E 60.1637 -0.00734342
+MUSETT_T0_DSSD_Y23_E 59.5833 -0.00727238
+MUSETT_T0_DSSD_Y24_E 60.1375 -0.0073405300000000005
+MUSETT_T0_DSSD_Y25_E 59.690400000000004 -0.007286
+MUSETT_T0_DSSD_Y26_E 59.947900000000004 -0.007317140000000001
+MUSETT_T0_DSSD_Y27_E 60.2963 -0.0073596
+MUSETT_T0_DSSD_Y28_E 59.8687 -0.00730687
+MUSETT_T0_DSSD_Y29_E 59.5502 -0.00726855
+MUSETT_T0_DSSD_Y30_E 59.7262 -0.00729007
+MUSETT_T0_DSSD_Y31_E 60.921 -0.00743642
+MUSETT_T0_DSSD_Y32_E 56.617 -0.00691063
+MUSETT_T0_DSSD_Y33_E 56.959 -0.006951939999999999
+MUSETT_T0_DSSD_Y34_E 56.494699999999995 -0.0068958399999999994
+MUSETT_T0_DSSD_Y35_E 57.0093 -0.00695849
+MUSETT_T0_DSSD_Y36_E 57.335699999999996 -0.00699755
+MUSETT_T0_DSSD_Y37_E 57.264 -0.00698966
+MUSETT_T0_DSSD_Y38_E 56.4099 -0.00688581
+MUSETT_T0_DSSD_Y39_E 56.4312 -0.00688775
+MUSETT_T0_DSSD_Y40_E 56.901900000000005 -0.006945509999999999
+MUSETT_T0_DSSD_Y41_E 56.6947 -0.006920099999999999
+MUSETT_T0_DSSD_Y42_E 56.548300000000005 -0.00690222
+MUSETT_T0_DSSD_Y43_E 56.5261 -0.006899440000000001
+MUSETT_T0_DSSD_Y44_E 56.796800000000005 -0.0069327500000000005
+MUSETT_T0_DSSD_Y45_E 56.913 -0.006946819999999999
+MUSETT_T0_DSSD_Y46_E 57.7654 -0.00705041
+MUSETT_T0_DSSD_Y47_E 56.5244 -0.0068993200000000005
+MUSETT_T0_DSSD_Y48_E 57.594199999999994 -0.007030649999999999
+MUSETT_T0_DSSD_Y49_E 56.951 -0.0069510399999999995
+MUSETT_T0_DSSD_Y50_E 56.7319 -0.00692465
+MUSETT_T0_DSSD_Y51_E 56.3943 -0.0068833900000000005
+MUSETT_T0_DSSD_Y52_E 57.0998 -0.0069694399999999995
+MUSETT_T0_DSSD_Y53_E 56.9613 -0.00695188
+MUSETT_T0_DSSD_Y54_E 56.5741 -0.00690529
+MUSETT_T0_DSSD_Y55_E 57.5426 -0.00702337
+MUSETT_T0_DSSD_Y56_E 57.2905 -0.00699357
+MUSETT_T0_DSSD_Y57_E 56.7515 -0.006927679999999999
+MUSETT_T0_DSSD_Y58_E 56.8754 -0.00694186
+MUSETT_T0_DSSD_Y59_E 57.1434 -0.00697465
+MUSETT_T0_DSSD_Y60_E 57.1751 -0.00697855
+MUSETT_T0_DSSD_Y61_E 57.057199999999995 -0.00696403
+MUSETT_T0_DSSD_Y62_E 57.5242 -0.00702087
+MUSETT_T0_DSSD_Y63_E 58.006 -0.00707906
+MUSETT_T0_DSSD_Y64_E 60.962300000000006 -0.00744098
+MUSETT_T0_DSSD_Y65_E 61.0509 -0.007451220000000001
+MUSETT_T0_DSSD_Y66_E 60.9283 -0.00743662
+MUSETT_T0_DSSD_Y67_E 61.282199999999996 -0.00747993
+MUSETT_T0_DSSD_Y68_E 60.3438 -0.0073656600000000004
+MUSETT_T0_DSSD_Y69_E 61.4909 -0.00750575
+MUSETT_T0_DSSD_Y70_E 60.8322 -0.00742493
+MUSETT_T0_DSSD_Y71_E 60.401900000000005 -0.0073728199999999995
+MUSETT_T0_DSSD_Y72_E 61.525 -0.00750847
+MUSETT_T0_DSSD_Y73_E 61.015 -0.0074468699999999995
+MUSETT_T0_DSSD_Y74_E 61.1485 -0.0074639699999999995
+MUSETT_T0_DSSD_Y75_E 61.4983 -0.00750535
+MUSETT_T0_DSSD_Y76_E 60.581199999999995 -0.00739491
+MUSETT_T0_DSSD_Y77_E 61.3344 -0.00748699
+MUSETT_T0_DSSD_Y78_E 61.6753 -0.0075285099999999995
+MUSETT_T0_DSSD_Y79_E 61.049 -0.00745175
+MUSETT_T0_DSSD_Y80_E 62.5244 -0.00762923
+MUSETT_T0_DSSD_Y81_E 60.9687 -0.00744121
+MUSETT_T0_DSSD_Y82_E 61.505300000000005 -0.00750626
+MUSETT_T0_DSSD_Y83_E 62.171699999999994 -0.00758826
+MUSETT_T0_DSSD_Y84_E 60.9564 -0.00743975
+MUSETT_T0_DSSD_Y85_E 60.853300000000004 -0.00742648
+MUSETT_T0_DSSD_Y86_E 61.6845 -0.00752842
+MUSETT_T0_DSSD_Y87_E 61.3665 -0.00748921
+MUSETT_T0_DSSD_Y88_E 61.0493 -0.00745085
+MUSETT_T0_DSSD_Y89_E 61.272400000000005 -0.00747871
+MUSETT_T0_DSSD_Y90_E 61.0017 -0.00744491
+MUSETT_T0_DSSD_Y91_E 61.418 -0.00749644
+MUSETT_T0_DSSD_Y92_E 61.8082 -0.00754356
+MUSETT_T0_DSSD_Y93_E 61.6194 -0.00752066
+MUSETT_T0_DSSD_Y94_E 62.315599999999996 -0.007605509999999999
+MUSETT_T0_DSSD_Y95_E 60.7873 -0.0074192400000000006
+MUSETT_T0_DSSD_Y96_E 56.2932 -0.006870149999999999
+MUSETT_T0_DSSD_Y97_E 56.573 -0.00690468
+MUSETT_T0_DSSD_Y98_E 56.527 -0.00689976
+MUSETT_T0_DSSD_Y99_E 56.4302 -0.00688772
+MUSETT_T0_DSSD_Y100_E 56.1511 -0.0068537
+MUSETT_T0_DSSD_Y101_E 56.4252 -0.0068861999999999994
+MUSETT_T0_DSSD_Y102_E 55.9923 -0.00683341
+MUSETT_T0_DSSD_Y103_E 56.507 -0.0068962500000000005
+MUSETT_T0_DSSD_Y104_E 56.8566 -0.00693994
+MUSETT_T0_DSSD_Y105_E 56.0553 -0.00684208
+MUSETT_T0_DSSD_Y106_E 57.0296 -0.0069606
+MUSETT_T0_DSSD_Y107_E 57.3299 -0.0069973
+MUSETT_T0_DSSD_Y108_E 56.501 -0.00689663
+MUSETT_T0_DSSD_Y109_E 56.5039 -0.00689674
+MUSETT_T0_DSSD_Y110_E 56.6701 -0.00691739
+MUSETT_T0_DSSD_Y111_E 56.3581 -0.00687923
+MUSETT_T0_DSSD_Y112_E 56.8945 -0.00694468
+MUSETT_T0_DSSD_Y113_E 56.988099999999996 -0.00695503
+MUSETT_T0_DSSD_Y114_E 56.935 -0.0069495699999999995
+MUSETT_T0_DSSD_Y115_E 56.727199999999996 -0.00692358
+MUSETT_T0_DSSD_Y116_E 57.2236 -0.00698438
+MUSETT_T0_DSSD_Y117_E 56.491 -0.006894999999999999
+MUSETT_T0_DSSD_Y118_E 56.3555 -0.00687782
+MUSETT_T0_DSSD_Y119_E 56.5792 -0.00690568
+MUSETT_T0_DSSD_Y120_E 57.315599999999996 -0.00699591
+MUSETT_T0_DSSD_Y121_E 57.1154 -0.00697039
+MUSETT_T0_DSSD_Y122_E 56.7481 -0.00692598
+MUSETT_T0_DSSD_Y123_E 55.9854 -0.00683357
+MUSETT_T0_DSSD_Y124_E 56.3419 -0.00687581
+MUSETT_T0_DSSD_Y125_E 55.8506 -0.006816340000000001
+MUSETT_T0_DSSD_Y126_E 56.922599999999996 -0.0069478
+MUSETT_T0_DSSD_Y127_E 56.515 -0.00689869
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M0_T/Cal_Str_X_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M0_T/Cal_Str_X_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a58f4173f43c928bf6c2ce2922d4f147dbe6f113
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M0_T/Cal_Str_X_T_MM0.cal
@@ -0,0 +1,128 @@
+MUSETT_T0_DSSD_X0_T 1000.68 -0.114176
+MUSETT_T0_DSSD_X1_T 1000.548 -0.115529
+MUSETT_T0_DSSD_X2_T 994.985 -0.115657
+MUSETT_T0_DSSD_X3_T 998.298 -0.117409
+MUSETT_T0_DSSD_X4_T 1017.095 -0.117367
+MUSETT_T0_DSSD_X5_T 1009.462 -0.117353
+MUSETT_T0_DSSD_X6_T 1006.88 -0.117969
+MUSETT_T0_DSSD_X7_T 1009.19 -0.118246
+MUSETT_T0_DSSD_X8_T 1034.336 -0.118065
+MUSETT_T0_DSSD_X9_T 1054.297 -0.118546
+MUSETT_T0_DSSD_X10_T 1028.541 -0.119138
+MUSETT_T0_DSSD_X11_T 1027.566 -0.119075
+MUSETT_T0_DSSD_X12_T 1035.322 -0.119996
+MUSETT_T0_DSSD_X13_T 1020.483 -0.118174
+MUSETT_T0_DSSD_X14_T 1043.119 -0.119531
+MUSETT_T0_DSSD_X15_T 1351.042 -0.118448
+MUSETT_T0_DSSD_X16_T 985.051 -0.115275
+MUSETT_T0_DSSD_X17_T 1018.323 -0.116527
+MUSETT_T0_DSSD_X18_T 1019.722 -0.118044
+MUSETT_T0_DSSD_X19_T 1016.846 -0.118125
+MUSETT_T0_DSSD_X20_T 1022.532 -0.119233
+MUSETT_T0_DSSD_X21_T 1031.856 -0.118555
+MUSETT_T0_DSSD_X22_T 1050.616 -0.119845
+MUSETT_T0_DSSD_X23_T 1062.012 -0.120005
+MUSETT_T0_DSSD_X24_T 1031.807 -0.119427
+MUSETT_T0_DSSD_X25_T 1035.529 -0.120777
+MUSETT_T0_DSSD_X26_T 1034.112 -0.121057
+MUSETT_T0_DSSD_X27_T 1053.939 -0.121545
+MUSETT_T0_DSSD_X28_T 1025.922 -0.121021
+MUSETT_T0_DSSD_X29_T 1036.222 -0.120851
+MUSETT_T0_DSSD_X30_T 1057.756 -0.12045
+MUSETT_T0_DSSD_X31_T 1063.339 -0.119947
+MUSETT_T0_DSSD_X32_T 899.089 -0.105192
+MUSETT_T0_DSSD_X33_T 896.661 -0.104955
+MUSETT_T0_DSSD_X34_T 900.671 -0.107397
+MUSETT_T0_DSSD_X35_T 906.319 -0.106033
+MUSETT_T0_DSSD_X36_T 914.875 -0.106227
+MUSETT_T0_DSSD_X37_T 916.198 -0.108005
+MUSETT_T0_DSSD_X38_T 934.909 -0.108195
+MUSETT_T0_DSSD_X39_T 946.449 -0.107979
+MUSETT_T0_DSSD_X40_T 929.072 -0.108302
+MUSETT_T0_DSSD_X41_T 950.135 -0.108334
+MUSETT_T0_DSSD_X42_T 949.178 -0.108243
+MUSETT_T0_DSSD_X43_T 924.851 -0.109095
+MUSETT_T0_DSSD_X44_T 938.112 -0.108505
+MUSETT_T0_DSSD_X45_T 959.817 -0.107877
+MUSETT_T0_DSSD_X46_T 969.046 -0.108187
+MUSETT_T0_DSSD_X47_T 1000.332 -0.10826
+MUSETT_T0_DSSD_X48_T 941.059 -0.106556
+MUSETT_T0_DSSD_X49_T 935.589 -0.106942
+MUSETT_T0_DSSD_X50_T 937.96 -0.107622
+MUSETT_T0_DSSD_X51_T 947.438 -0.109464
+MUSETT_T0_DSSD_X52_T 942.078 -0.109295
+MUSETT_T0_DSSD_X53_T 945.006 -0.109652
+MUSETT_T0_DSSD_X54_T 979.489 -0.109955
+MUSETT_T0_DSSD_X55_T 951.854 -0.110458
+MUSETT_T0_DSSD_X56_T 971.578 -0.111499
+MUSETT_T0_DSSD_X57_T 962.445 -0.110456
+MUSETT_T0_DSSD_X58_T 956.297 -0.111378
+MUSETT_T0_DSSD_X59_T 961.15 -0.111943
+MUSETT_T0_DSSD_X60_T 972.034 -0.112807
+MUSETT_T0_DSSD_X61_T 960.421 -0.11314
+MUSETT_T0_DSSD_X62_T 965.683 -0.113338
+MUSETT_T0_DSSD_X63_T 954.11 -0.111982
+MUSETT_T0_DSSD_X64_T 983.106 -0.115846
+MUSETT_T0_DSSD_X65_T 1014.462 -0.11646
+MUSETT_T0_DSSD_X66_T 1016.856 -0.117644
+MUSETT_T0_DSSD_X67_T 995.672 -0.117791
+MUSETT_T0_DSSD_X68_T 1014.268 -0.118174
+MUSETT_T0_DSSD_X69_T 1004.36 -0.119717
+MUSETT_T0_DSSD_X70_T 1009.057 -0.120284
+MUSETT_T0_DSSD_X71_T 1014.202 -0.120426
+MUSETT_T0_DSSD_X72_T 1033.027 -0.121763
+MUSETT_T0_DSSD_X73_T 1021.396 -0.119445
+MUSETT_T0_DSSD_X74_T 1031.245 -0.121535
+MUSETT_T0_DSSD_X75_T 1021.633 -0.120381
+MUSETT_T0_DSSD_X76_T 1036.707 -0.121262
+MUSETT_T0_DSSD_X77_T 1033.329 -0.121766
+MUSETT_T0_DSSD_X78_T 1035.269 -0.120615
+MUSETT_T0_DSSD_X79_T 1395.102 -0.120952
+MUSETT_T0_DSSD_X80_T 958.027 -0.111515
+MUSETT_T0_DSSD_X81_T 964.753 -0.112746
+MUSETT_T0_DSSD_X82_T 946.182 -0.111774
+MUSETT_T0_DSSD_X83_T 958.531 -0.113281
+MUSETT_T0_DSSD_X84_T 958.863 -0.112468
+MUSETT_T0_DSSD_X85_T 970.352 -0.113819
+MUSETT_T0_DSSD_X86_T 971.39 -0.114818
+MUSETT_T0_DSSD_X87_T 960.896 -0.113978
+MUSETT_T0_DSSD_X88_T 982.302 -0.114813
+MUSETT_T0_DSSD_X89_T 986.339 -0.115728
+MUSETT_T0_DSSD_X90_T 983.082 -0.11664
+MUSETT_T0_DSSD_X91_T 994.239 -0.11625
+MUSETT_T0_DSSD_X92_T 998.231 -0.116299
+MUSETT_T0_DSSD_X93_T 982.565 -0.116152
+MUSETT_T0_DSSD_X94_T 1022.945 -0.117868
+MUSETT_T0_DSSD_X95_T 1009.233 -0.116744
+MUSETT_T0_DSSD_X96_T 921.311 -0.105013
+MUSETT_T0_DSSD_X97_T 921.31 -0.106169
+MUSETT_T0_DSSD_X98_T 911.678 -0.106212
+MUSETT_T0_DSSD_X99_T 917.107 -0.106905
+MUSETT_T0_DSSD_X100_T 927.187 -0.108043
+MUSETT_T0_DSSD_X101_T 952.263 -0.108935
+MUSETT_T0_DSSD_X102_T 958.633 -0.108442
+MUSETT_T0_DSSD_X103_T 939.41 -0.108194
+MUSETT_T0_DSSD_X104_T 941.999 -0.109336
+MUSETT_T0_DSSD_X105_T 943.412 -0.109053
+MUSETT_T0_DSSD_X106_T 970.302 -0.109771
+MUSETT_T0_DSSD_X107_T 946.604 -0.109449
+MUSETT_T0_DSSD_X108_T 933.31 -0.109128
+MUSETT_T0_DSSD_X109_T 937.597 -0.109641
+MUSETT_T0_DSSD_X110_T 930.52 -0.109177
+MUSETT_T0_DSSD_X111_T 939.491 -0.109478
+MUSETT_T0_DSSD_X112_T 909.027 -0.107364
+MUSETT_T0_DSSD_X113_T 922.418 -0.107748
+MUSETT_T0_DSSD_X114_T 908.876 -0.107782
+MUSETT_T0_DSSD_X115_T 922.546 -0.109007
+MUSETT_T0_DSSD_X116_T 936.638 -0.109423
+MUSETT_T0_DSSD_X117_T 936.691 -0.108648
+MUSETT_T0_DSSD_X118_T 959.153 -0.110413
+MUSETT_T0_DSSD_X119_T 946.313 -0.110579
+MUSETT_T0_DSSD_X120_T 950.811 -0.109898
+MUSETT_T0_DSSD_X121_T 973.845 -0.1105
+MUSETT_T0_DSSD_X122_T 996.871 -0.111529
+MUSETT_T0_DSSD_X123_T 946.384 -0.110604
+MUSETT_T0_DSSD_X124_T 956.453 -0.110972
+MUSETT_T0_DSSD_X125_T 958.311 -0.11118
+MUSETT_T0_DSSD_X126_T 964.725 -0.110613
+MUSETT_T0_DSSD_X127_T 986.747 -0.111151
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M0_T/Cal_Str_Y_T_MM0.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M0_T/Cal_Str_Y_T_MM0.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d2e41fbf0f91e96a2c5693d138e177527ee2008b
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M0_T/Cal_Str_Y_T_MM0.cal
@@ -0,0 +1,127 @@
+MUSETT_T0_DSSD_Y1_T 989.537 -0.114033
+MUSETT_T0_DSSD_Y2_T 955.667 -0.113921
+MUSETT_T0_DSSD_Y3_T 981.529 -0.116104
+MUSETT_T0_DSSD_Y4_T 980.484 -0.115563
+MUSETT_T0_DSSD_Y5_T 989.097 -0.117481
+MUSETT_T0_DSSD_Y6_T 991.604 -0.117339
+MUSETT_T0_DSSD_Y7_T 996.371 -0.117018
+MUSETT_T0_DSSD_Y8_T 995.892 -0.117842
+MUSETT_T0_DSSD_Y9_T 1010.018 -0.117316
+MUSETT_T0_DSSD_Y10_T 986.738 -0.117632
+MUSETT_T0_DSSD_Y11_T 985.508 -0.118398
+MUSETT_T0_DSSD_Y12_T 998.348 -0.11814
+MUSETT_T0_DSSD_Y13_T 990.199 -0.117633
+MUSETT_T0_DSSD_Y14_T 1010.136 -0.117944
+MUSETT_T0_DSSD_Y15_T 999.786 -0.118761
+MUSETT_T0_DSSD_Y16_T 950.332 -0.113175
+MUSETT_T0_DSSD_Y17_T 970.637 -0.114309
+MUSETT_T0_DSSD_Y18_T 957.295 -0.115351
+MUSETT_T0_DSSD_Y19_T 959.999 -0.11436
+MUSETT_T0_DSSD_Y20_T 958.95 -0.114686
+MUSETT_T0_DSSD_Y21_T 962.534 -0.115103
+MUSETT_T0_DSSD_Y22_T 979.707 -0.115832
+MUSETT_T0_DSSD_Y23_T 983.432 -0.115841
+MUSETT_T0_DSSD_Y24_T 991.925 -0.116398
+MUSETT_T0_DSSD_Y25_T 990.13 -0.116195
+MUSETT_T0_DSSD_Y26_T 971.726 -0.115516
+MUSETT_T0_DSSD_Y27_T 1009.509 -0.117562
+MUSETT_T0_DSSD_Y28_T 1004.207 -0.117834
+MUSETT_T0_DSSD_Y29_T 998.99 -0.11722
+MUSETT_T0_DSSD_Y30_T 990.834 -0.11759
+MUSETT_T0_DSSD_Y31_T 1000.504 -0.116928
+MUSETT_T0_DSSD_Y32_T 886.202 -0.105131
+MUSETT_T0_DSSD_Y33_T 889.317 -0.105113
+MUSETT_T0_DSSD_Y34_T 906.607 -0.107174
+MUSETT_T0_DSSD_Y35_T 899.798 -0.105955
+MUSETT_T0_DSSD_Y36_T 904.768 -0.107363
+MUSETT_T0_DSSD_Y37_T 918.064 -0.107278
+MUSETT_T0_DSSD_Y38_T 921.513 -0.107347
+MUSETT_T0_DSSD_Y39_T 926.687 -0.109567
+MUSETT_T0_DSSD_Y40_T 938.373 -0.109268
+MUSETT_T0_DSSD_Y41_T 935.947 -0.109045
+MUSETT_T0_DSSD_Y42_T 928.571 -0.108924
+MUSETT_T0_DSSD_Y43_T 949.921 -0.110196
+MUSETT_T0_DSSD_Y44_T 922.399 -0.109895
+MUSETT_T0_DSSD_Y45_T 920.724 -0.10924
+MUSETT_T0_DSSD_Y46_T 948.642 -0.110513
+MUSETT_T0_DSSD_Y47_T 932.675 -0.109056
+MUSETT_T0_DSSD_Y48_T 885.573 -0.103507
+MUSETT_T0_DSSD_Y49_T 890.36 -0.104888
+MUSETT_T0_DSSD_Y50_T 889.12 -0.104347
+MUSETT_T0_DSSD_Y51_T 899.388 -0.106391
+MUSETT_T0_DSSD_Y52_T 902.315 -0.106718
+MUSETT_T0_DSSD_Y53_T 917.171 -0.106878
+MUSETT_T0_DSSD_Y54_T 913.403 -0.106441
+MUSETT_T0_DSSD_Y55_T 935.489 -0.107426
+MUSETT_T0_DSSD_Y56_T 906.519 -0.107608
+MUSETT_T0_DSSD_Y57_T 935.091 -0.108136
+MUSETT_T0_DSSD_Y58_T 932.191 -0.109012
+MUSETT_T0_DSSD_Y59_T 913.583 -0.108611
+MUSETT_T0_DSSD_Y60_T 922.821 -0.108719
+MUSETT_T0_DSSD_Y61_T 931.221 -0.109581
+MUSETT_T0_DSSD_Y62_T 931.083 -0.108895
+MUSETT_T0_DSSD_Y63_T 936.955 -0.109543
+MUSETT_T0_DSSD_Y64_T 993.853 -0.116469
+MUSETT_T0_DSSD_Y65_T 1011.78 -0.117302
+MUSETT_T0_DSSD_Y66_T 995.56 -0.118012
+MUSETT_T0_DSSD_Y67_T 1003.176 -0.118028
+MUSETT_T0_DSSD_Y68_T 1025.25 -0.118378
+MUSETT_T0_DSSD_Y69_T 1036.395 -0.118825
+MUSETT_T0_DSSD_Y70_T 1001.923 -0.118781
+MUSETT_T0_DSSD_Y71_T 1008.805 -0.119156
+MUSETT_T0_DSSD_Y72_T 1005.22 -0.119628
+MUSETT_T0_DSSD_Y73_T 1004.154 -0.118591
+MUSETT_T0_DSSD_Y74_T 1031.155 -0.119656
+MUSETT_T0_DSSD_Y75_T 1027.527 -0.120924
+MUSETT_T0_DSSD_Y76_T 1026.408 -0.120327
+MUSETT_T0_DSSD_Y77_T 1047.813 -0.120579
+MUSETT_T0_DSSD_Y78_T 1025.636 -0.120247
+MUSETT_T0_DSSD_Y79_T 1040.75 -0.121097
+MUSETT_T0_DSSD_Y80_T 1004.086 -0.117145
+MUSETT_T0_DSSD_Y81_T 1016.728 -0.119118
+MUSETT_T0_DSSD_Y82_T 1004.19 -0.118534
+MUSETT_T0_DSSD_Y83_T 1057.448 -0.12031
+MUSETT_T0_DSSD_Y84_T 1038.261 -0.120777
+MUSETT_T0_DSSD_Y85_T 1025.585 -0.121085
+MUSETT_T0_DSSD_Y86_T 1032.746 -0.120569
+MUSETT_T0_DSSD_Y87_T 1016.336 -0.121839
+MUSETT_T0_DSSD_Y88_T 1019.819 -0.121339
+MUSETT_T0_DSSD_Y89_T 1038.173 -0.122592
+MUSETT_T0_DSSD_Y90_T 1060.978 -0.123897
+MUSETT_T0_DSSD_Y91_T 1068.859 -0.123866
+MUSETT_T0_DSSD_Y92_T 1055.44 -0.123256
+MUSETT_T0_DSSD_Y93_T 1036.272 -0.123786
+MUSETT_T0_DSSD_Y94_T 1052.796 -0.123408
+MUSETT_T0_DSSD_Y95_T 1049.584 -0.122879
+MUSETT_T0_DSSD_Y96_T 896.563 -0.106544
+MUSETT_T0_DSSD_Y97_T 889.586 -0.106139
+MUSETT_T0_DSSD_Y98_T 891.914 -0.106028
+MUSETT_T0_DSSD_Y99_T 895.093 -0.108041
+MUSETT_T0_DSSD_Y100_T 895.662 -0.107707
+MUSETT_T0_DSSD_Y101_T 915.101 -0.10757
+MUSETT_T0_DSSD_Y102_T 926.581 -0.108105
+MUSETT_T0_DSSD_Y103_T 917.996 -0.10959
+MUSETT_T0_DSSD_Y104_T 940.411 -0.108916
+MUSETT_T0_DSSD_Y105_T 947.193 -0.110544
+MUSETT_T0_DSSD_Y106_T 931.904 -0.109981
+MUSETT_T0_DSSD_Y107_T 929.203 -0.11051
+MUSETT_T0_DSSD_Y108_T 953.398 -0.110421
+MUSETT_T0_DSSD_Y109_T 938.194 -0.109894
+MUSETT_T0_DSSD_Y110_T 936.836 -0.110572
+MUSETT_T0_DSSD_Y111_T 949.368 -0.110803
+MUSETT_T0_DSSD_Y112_T 906.101 -0.107535
+MUSETT_T0_DSSD_Y113_T 910.285 -0.108466
+MUSETT_T0_DSSD_Y114_T 923.437 -0.108438
+MUSETT_T0_DSSD_Y115_T 925.991 -0.109158
+MUSETT_T0_DSSD_Y116_T 952.064 -0.110566
+MUSETT_T0_DSSD_Y117_T 927.647 -0.109757
+MUSETT_T0_DSSD_Y118_T 958.629 -0.112167
+MUSETT_T0_DSSD_Y119_T 945.091 -0.111146
+MUSETT_T0_DSSD_Y120_T 963.994 -0.112407
+MUSETT_T0_DSSD_Y121_T 952.702 -0.112337
+MUSETT_T0_DSSD_Y122_T 961.592 -0.112539
+MUSETT_T0_DSSD_Y123_T 947.459 -0.112978
+MUSETT_T0_DSSD_Y124_T 934.829 -0.112316
+MUSETT_T0_DSSD_Y125_T 933.712 -0.112192
+MUSETT_T0_DSSD_Y126_T 934.356 -0.111821
+MUSETT_T0_DSSD_Y127_T 951.885 -0.112162
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M1_E/Cal_Str_X_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M1_E/Cal_Str_X_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..2bdda809aa9bfd9d08b3d487a1ce8ef8db52e922
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M1_E/Cal_Str_X_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_E -62.5165 0.0076311
+MUSETT_T1_DSSD_X1_E -62.2741 0.00760081
+MUSETT_T1_DSSD_X2_E -62.2565 0.0075988800000000006
+MUSETT_T1_DSSD_X3_E -62.1055 0.00758086
+MUSETT_T1_DSSD_X4_E -61.5519 0.007513359999999999
+MUSETT_T1_DSSD_X5_E -61.6023 0.00751847
+MUSETT_T1_DSSD_X6_E -62.3324 0.00760802
+MUSETT_T1_DSSD_X7_E -61.432199999999995 0.00749866
+MUSETT_T1_DSSD_X8_E -61.2959 0.00748181
+MUSETT_T1_DSSD_X9_E -61.534 0.0075109
+MUSETT_T1_DSSD_X10_E -61.7365 0.00753509
+MUSETT_T1_DSSD_X11_E -61.7367 0.00753547
+MUSETT_T1_DSSD_X12_E -61.9071 0.007556230000000001
+MUSETT_T1_DSSD_X13_E -61.411300000000004 0.00749629
+MUSETT_T1_DSSD_X14_E -61.128 0.0074611
+MUSETT_T1_DSSD_X15_E -62.0027 0.00756766
+MUSETT_T1_DSSD_X16_E -62.6267 0.00764348
+MUSETT_T1_DSSD_X17_E -61.7975 0.0075420899999999996
+MUSETT_T1_DSSD_X18_E -62.271699999999996 0.00760236
+MUSETT_T1_DSSD_X19_E -62.1321 0.00758327
+MUSETT_T1_DSSD_X20_E -62.8741 0.0076749900000000005
+MUSETT_T1_DSSD_X21_E -62.2116 0.007592730000000001
+MUSETT_T1_DSSD_X22_E -62.8858 0.0076761
+MUSETT_T1_DSSD_X23_E -62.4 0.0076155400000000005
+MUSETT_T1_DSSD_X24_E -62.3151 0.00760536
+MUSETT_T1_DSSD_X25_E -62.0606 0.00757409
+MUSETT_T1_DSSD_X26_E -61.9951 0.00756723
+MUSETT_T1_DSSD_X27_E -61.7305 0.00753394
+MUSETT_T1_DSSD_X28_E -61.701699999999995 0.00753073
+MUSETT_T1_DSSD_X29_E -62.7963 0.00766424
+MUSETT_T1_DSSD_X30_E -61.870400000000004 0.00755102
+MUSETT_T1_DSSD_X31_E -62.8715 0.00767342
+MUSETT_T1_DSSD_X32_E -58.2491 0.00711105
+MUSETT_T1_DSSD_X33_E -58.6 0.0071512799999999994
+MUSETT_T1_DSSD_X34_E -58.5036 0.00713902
+MUSETT_T1_DSSD_X35_E -57.9348 0.007074919999999999
+MUSETT_T1_DSSD_X36_E -58.269800000000004 0.00711052
+MUSETT_T1_DSSD_X37_E -58.3733 0.00712516
+MUSETT_T1_DSSD_X38_E -58.024800000000006 0.00708223
+MUSETT_T1_DSSD_X39_E -58.7319 0.00716835
+MUSETT_T1_DSSD_X40_E -58.3801 0.00712401
+MUSETT_T1_DSSD_X41_E -59.0803 0.00720869
+MUSETT_T1_DSSD_X42_E -58.1633 0.00709879
+MUSETT_T1_DSSD_X43_E -58.3216 0.00712064
+MUSETT_T1_DSSD_X44_E -58.7934 0.00717398
+MUSETT_T1_DSSD_X45_E -59.555 0.007267190000000001
+MUSETT_T1_DSSD_X46_E -58.9853 0.00719742
+MUSETT_T1_DSSD_X47_E -58.3934 0.00713232
+MUSETT_T1_DSSD_X48_E -57.868300000000005 0.00706236
+MUSETT_T1_DSSD_X49_E -58.5287 0.00714353
+MUSETT_T1_DSSD_X50_E -58.0637 0.00708664
+MUSETT_T1_DSSD_X51_E -57.735800000000005 0.0070466899999999996
+MUSETT_T1_DSSD_X52_E -58.026199999999996 0.00708204
+MUSETT_T1_DSSD_X53_E -57.941199999999995 0.00707198
+MUSETT_T1_DSSD_X54_E -58.0107 0.00708036
+MUSETT_T1_DSSD_X55_E -57.865199999999994 0.0070621799999999995
+MUSETT_T1_DSSD_X56_E -58.1143 0.00709321
+MUSETT_T1_DSSD_X57_E -57.8726 0.00706339
+MUSETT_T1_DSSD_X58_E -58.5155 0.007141949999999999
+MUSETT_T1_DSSD_X59_E -57.6938 0.00704145
+MUSETT_T1_DSSD_X60_E -57.7549 0.00704905
+MUSETT_T1_DSSD_X61_E -58.2532 0.00710979
+MUSETT_T1_DSSD_X62_E -58.1148 0.00709262
+MUSETT_T1_DSSD_X63_E -58.287 0.0071143000000000005
+MUSETT_T1_DSSD_X64_E -61.0329 0.00744807
+MUSETT_T1_DSSD_X65_E -61.684599999999996 0.00752792
+MUSETT_T1_DSSD_X66_E -61.4296 0.00749794
+MUSETT_T1_DSSD_X67_E -61.667699999999996 0.00752697
+MUSETT_T1_DSSD_X68_E -61.8913 0.00755404
+MUSETT_T1_DSSD_X69_E -61.4462 0.0074985699999999995
+MUSETT_T1_DSSD_X70_E -61.7086 0.00753062
+MUSETT_T1_DSSD_X71_E -62.0713 0.00757514
+MUSETT_T1_DSSD_X72_E -61.2781 0.00747991
+MUSETT_T1_DSSD_X73_E -62.6554 0.00764692
+MUSETT_T1_DSSD_X74_E -61.9328 0.00755898
+MUSETT_T1_DSSD_X75_E -61.9835 0.00756623
+MUSETT_T1_DSSD_X76_E -61.655199999999994 0.00752649
+MUSETT_T1_DSSD_X77_E -61.854099999999995 0.00754843
+MUSETT_T1_DSSD_X78_E -61.4835 0.00750294
+MUSETT_T1_DSSD_X79_E -61.9066 0.00755644
+MUSETT_T1_DSSD_X80_E -63.4884 0.00774867
+MUSETT_T1_DSSD_X81_E -63.7419 0.00778029
+MUSETT_T1_DSSD_X82_E -64.1775 0.00783331
+MUSETT_T1_DSSD_X83_E -63.942 0.007804
+MUSETT_T1_DSSD_X84_E -64.1655 0.0078324
+MUSETT_T1_DSSD_X85_E -63.8717 0.00779646
+MUSETT_T1_DSSD_X86_E -64.1305 0.007827250000000001
+MUSETT_T1_DSSD_X87_E -64.304 0.00784811
+MUSETT_T1_DSSD_X88_E -64.0702 0.00782171
+MUSETT_T1_DSSD_X89_E -64.3677 0.00785609
+MUSETT_T1_DSSD_X90_E -63.515800000000006 0.00775294
+MUSETT_T1_DSSD_X91_E -63.4035 0.007739289999999999
+MUSETT_T1_DSSD_X92_E -64.6507 0.00789095
+MUSETT_T1_DSSD_X93_E -64.0715 0.00781996
+MUSETT_T1_DSSD_X94_E -63.723800000000004 0.00777948
+MUSETT_T1_DSSD_X95_E -63.5041 0.0077509399999999996
+MUSETT_T1_DSSD_X96_E -56.309 0.006872690000000001
+MUSETT_T1_DSSD_X97_E -56.7139 0.00692185
+MUSETT_T1_DSSD_X98_E -56.6817 0.00691912
+MUSETT_T1_DSSD_X99_E -56.38 0.00688193
+MUSETT_T1_DSSD_X100_E -56.624300000000005 0.0069108
+MUSETT_T1_DSSD_X101_E -57.1633 0.006977870000000001
+MUSETT_T1_DSSD_X102_E -57.3007 0.0069942500000000005
+MUSETT_T1_DSSD_X103_E -56.583 0.00690657
+MUSETT_T1_DSSD_X104_E -56.874 0.00694133
+MUSETT_T1_DSSD_X105_E -57.0216 0.00695972
+MUSETT_T1_DSSD_X106_E -57.8266 0.00705832
+MUSETT_T1_DSSD_X107_E -57.7756 0.007052419999999999
+MUSETT_T1_DSSD_X108_E -57.7539 0.0070485800000000005
+MUSETT_T1_DSSD_X109_E -57.529900000000005 0.007021589999999999
+MUSETT_T1_DSSD_X110_E -57.756699999999995 0.00704901
+MUSETT_T1_DSSD_X111_E -57.996300000000005 0.00707845
+MUSETT_T1_DSSD_X112_E -57.2631 0.00698926
+MUSETT_T1_DSSD_X113_E -57.281 0.00699144
+MUSETT_T1_DSSD_X114_E -56.8489 0.0069386299999999995
+MUSETT_T1_DSSD_X115_E -57.7142 0.0070445099999999995
+MUSETT_T1_DSSD_X116_E -57.316900000000004 0.0069958799999999995
+MUSETT_T1_DSSD_X117_E -57.2614 0.0069893
+MUSETT_T1_DSSD_X118_E -56.5406 0.006901399999999999
+MUSETT_T1_DSSD_X119_E -58.381699999999995 0.00712551
+MUSETT_T1_DSSD_X120_E -57.4714 0.007014319999999999
+MUSETT_T1_DSSD_X121_E -57.8095 0.0070557499999999995
+MUSETT_T1_DSSD_X122_E -57.7349 0.00704709
+MUSETT_T1_DSSD_X123_E -57.4411 0.00701114
+MUSETT_T1_DSSD_X124_E -57.6595 0.00703733
+MUSETT_T1_DSSD_X125_E -57.6589 0.00703761
+MUSETT_T1_DSSD_X126_E -57.057900000000004 0.006964349999999999
+MUSETT_T1_DSSD_X127_E -57.8919 0.0070664
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M1_E/Cal_Str_Y_E_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M1_E/Cal_Str_Y_E_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..239897d005de56cb4b8a748237eb0aaed3164ec3
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M1_E/Cal_Str_Y_E_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_E 59.587 -0.00727421
+MUSETT_T1_DSSD_Y1_E 60.35 -0.00736663
+MUSETT_T1_DSSD_Y2_E 59.636900000000004 -0.0072797999999999995
+MUSETT_T1_DSSD_Y3_E 59.2504 -0.00723253
+MUSETT_T1_DSSD_Y4_E 60.1039 -0.00733661
+MUSETT_T1_DSSD_Y5_E 59.993 -0.00732323
+MUSETT_T1_DSSD_Y6_E 59.3557 -0.00724588
+MUSETT_T1_DSSD_Y7_E 59.4658 -0.00725939
+MUSETT_T1_DSSD_Y8_E 59.4135 -0.00725269
+MUSETT_T1_DSSD_Y9_E 59.6283 -0.00727927
+MUSETT_T1_DSSD_Y10_E 59.4207 -0.00725321
+MUSETT_T1_DSSD_Y11_E 59.517300000000006 -0.00726551
+MUSETT_T1_DSSD_Y12_E 60.1569 -0.007343270000000001
+MUSETT_T1_DSSD_Y13_E 59.274699999999996 -0.00723573
+MUSETT_T1_DSSD_Y14_E 59.4138 -0.007252799999999999
+MUSETT_T1_DSSD_Y15_E 59.941199999999995 -0.00731657
+MUSETT_T1_DSSD_Y16_E 62.356300000000005 -0.00761131
+MUSETT_T1_DSSD_Y17_E 62.368300000000005 -0.00761293
+MUSETT_T1_DSSD_Y18_E 62.294 -0.00760309
+MUSETT_T1_DSSD_Y19_E 61.9841 -0.0075666200000000005
+MUSETT_T1_DSSD_Y20_E 62.459 -0.00762322
+MUSETT_T1_DSSD_Y21_E 62.300599999999996 -0.00760413
+MUSETT_T1_DSSD_Y22_E -10.0 0.0
+MUSETT_T1_DSSD_Y23_E 61.9915 -0.00756756
+MUSETT_T1_DSSD_Y24_E 61.618900000000004 -0.00752114
+MUSETT_T1_DSSD_Y25_E 61.345 -0.007488310000000001
+MUSETT_T1_DSSD_Y26_E 61.9861 -0.00756653
+MUSETT_T1_DSSD_Y27_E 61.9934 -0.00756773
+MUSETT_T1_DSSD_Y28_E 62.149699999999996 -0.00758604
+MUSETT_T1_DSSD_Y29_E 62.014300000000006 -0.00757031
+MUSETT_T1_DSSD_Y30_E 61.5869 -0.00751767
+MUSETT_T1_DSSD_Y31_E 61.7556 -0.00753847
+MUSETT_T1_DSSD_Y32_E 55.995 -0.00683497
+MUSETT_T1_DSSD_Y33_E 56.198 -0.006860369999999999
+MUSETT_T1_DSSD_Y34_E 55.578900000000004 -0.00678486
+MUSETT_T1_DSSD_Y35_E 55.6016 -0.00678669
+MUSETT_T1_DSSD_Y36_E 55.322199999999995 -0.00675352
+MUSETT_T1_DSSD_Y37_E 56.297599999999996 -0.00687208
+MUSETT_T1_DSSD_Y38_E 55.306 -0.0067507900000000004
+MUSETT_T1_DSSD_Y39_E 55.844800000000006 -0.00681653
+MUSETT_T1_DSSD_Y40_E 56.0561 -0.00684392
+MUSETT_T1_DSSD_Y41_E 56.003 -0.00683589
+MUSETT_T1_DSSD_Y42_E 55.4558 -0.006769389999999999
+MUSETT_T1_DSSD_Y43_E 56.5398 -0.00690172
+MUSETT_T1_DSSD_Y44_E 55.5919 -0.00678603
+MUSETT_T1_DSSD_Y45_E 55.6427 -0.00679229
+MUSETT_T1_DSSD_Y46_E 55.7179 -0.00680114
+MUSETT_T1_DSSD_Y47_E 55.6304 -0.006790549999999999
+MUSETT_T1_DSSD_Y48_E 57.134 -0.00697428
+MUSETT_T1_DSSD_Y49_E 56.4889 -0.00689459
+MUSETT_T1_DSSD_Y50_E 56.444900000000004 -0.006889910000000001
+MUSETT_T1_DSSD_Y51_E 55.9175 -0.00682531
+MUSETT_T1_DSSD_Y52_E 56.781099999999995 -0.0069307
+MUSETT_T1_DSSD_Y53_E 56.234300000000005 -0.00686372
+MUSETT_T1_DSSD_Y54_E 56.4141 -0.006886300000000001
+MUSETT_T1_DSSD_Y55_E 56.314099999999996 -0.00687366
+MUSETT_T1_DSSD_Y56_E 57.181599999999996 -0.006979910000000001
+MUSETT_T1_DSSD_Y57_E 56.9717 -0.00695407
+MUSETT_T1_DSSD_Y58_E 56.5457 -0.006902180000000001
+MUSETT_T1_DSSD_Y59_E 57.194 -0.006980610000000001
+MUSETT_T1_DSSD_Y60_E 57.4527 -0.0070126799999999994
+MUSETT_T1_DSSD_Y61_E 56.974599999999995 -0.0069545399999999995
+MUSETT_T1_DSSD_Y62_E 56.0969 -0.00684754
+MUSETT_T1_DSSD_Y63_E 57.2959 -0.00699365
+MUSETT_T1_DSSD_Y64_E 60.9661 -0.0074416000000000005
+MUSETT_T1_DSSD_Y65_E 61.4769 -0.00750343
+MUSETT_T1_DSSD_Y66_E 61.230199999999996 -0.00747385
+MUSETT_T1_DSSD_Y67_E 61.5364 -0.007511739999999999
+MUSETT_T1_DSSD_Y68_E 61.2124 -0.00747235
+MUSETT_T1_DSSD_Y69_E 59.944199999999995 -0.00731688
+MUSETT_T1_DSSD_Y70_E 60.3599 -0.00736752
+MUSETT_T1_DSSD_Y71_E 61.084900000000005 -0.0074561900000000006
+MUSETT_T1_DSSD_Y72_E 60.2949 -0.00736018
+MUSETT_T1_DSSD_Y73_E 61.0979 -0.00745775
+MUSETT_T1_DSSD_Y74_E 60.8322 -0.0074253999999999995
+MUSETT_T1_DSSD_Y75_E 60.341 -0.0073653899999999994
+MUSETT_T1_DSSD_Y76_E 60.4574 -0.0073801100000000005
+MUSETT_T1_DSSD_Y77_E 60.881 -0.0074315499999999994
+MUSETT_T1_DSSD_Y78_E 60.579 -0.00739461
+MUSETT_T1_DSSD_Y79_E 61.262699999999995 -0.00747821
+MUSETT_T1_DSSD_Y80_E 61.087 -0.00745653
+MUSETT_T1_DSSD_Y81_E 60.957800000000006 -0.00744017
+MUSETT_T1_DSSD_Y82_E 61.015 -0.0074473000000000004
+MUSETT_T1_DSSD_Y83_E 60.4586 -0.00738002
+MUSETT_T1_DSSD_Y84_E 60.3285 -0.00736352
+MUSETT_T1_DSSD_Y85_E 61.2939 -0.007482109999999999
+MUSETT_T1_DSSD_Y86_E 60.6455 -0.00740378
+MUSETT_T1_DSSD_Y87_E 60.614 -0.007397979999999999
+MUSETT_T1_DSSD_Y88_E 60.9987 -0.00744612
+MUSETT_T1_DSSD_Y89_E 61.206 -0.00747091
+MUSETT_T1_DSSD_Y90_E 60.669599999999996 -0.0074055200000000005
+MUSETT_T1_DSSD_Y91_E 60.7943 -0.007420759999999999
+MUSETT_T1_DSSD_Y92_E 60.3678 -0.007368260000000001
+MUSETT_T1_DSSD_Y93_E 61.409099999999995 -0.00749616
+MUSETT_T1_DSSD_Y94_E 61.5379 -0.007511370000000001
+MUSETT_T1_DSSD_Y95_E 60.6565 -0.00740388
+MUSETT_T1_DSSD_Y96_E 55.8426 -0.0068172499999999995
+MUSETT_T1_DSSD_Y97_E 55.3671 -0.00675769
+MUSETT_T1_DSSD_Y98_E 55.712199999999996 -0.0068011600000000005
+MUSETT_T1_DSSD_Y99_E 55.524 -0.00677768
+MUSETT_T1_DSSD_Y100_E 55.8201 -0.00681352
+MUSETT_T1_DSSD_Y101_E 55.4794 -0.00677257
+MUSETT_T1_DSSD_Y102_E 55.4672 -0.00677116
+MUSETT_T1_DSSD_Y103_E 56.1334 -0.006851950000000001
+MUSETT_T1_DSSD_Y104_E 55.2036 -0.00673883
+MUSETT_T1_DSSD_Y105_E 55.269400000000005 -0.0067465500000000005
+MUSETT_T1_DSSD_Y106_E 55.825900000000004 -0.00681501
+MUSETT_T1_DSSD_Y107_E 55.1768 -0.00673553
+MUSETT_T1_DSSD_Y108_E 55.8495 -0.0068172
+MUSETT_T1_DSSD_Y109_E 56.0381 -0.00684069
+MUSETT_T1_DSSD_Y110_E 56.1588 -0.0068555000000000005
+MUSETT_T1_DSSD_Y111_E 56.5794 -0.00690682
+MUSETT_T1_DSSD_Y112_E 54.7064 -0.0066782000000000005
+MUSETT_T1_DSSD_Y113_E 55.473 -0.00677076
+MUSETT_T1_DSSD_Y114_E 55.1016 -0.0067263
+MUSETT_T1_DSSD_Y115_E 55.0967 -0.0067255399999999995
+MUSETT_T1_DSSD_Y116_E 55.1715 -0.00673434
+MUSETT_T1_DSSD_Y117_E 55.3174 -0.00675224
+MUSETT_T1_DSSD_Y118_E 55.1937 -0.00673739
+MUSETT_T1_DSSD_Y119_E 55.6885 -0.00679707
+MUSETT_T1_DSSD_Y120_E 55.649800000000006 -0.0067933
+MUSETT_T1_DSSD_Y121_E 55.362199999999994 -0.00675814
+MUSETT_T1_DSSD_Y122_E 54.711400000000005 -0.00667865
+MUSETT_T1_DSSD_Y123_E 55.0696 -0.0067225900000000005
+MUSETT_T1_DSSD_Y124_E 55.139199999999995 -0.00673052
+MUSETT_T1_DSSD_Y125_E 55.09 -0.00672464
+MUSETT_T1_DSSD_Y126_E 55.2973 -0.00675015
+MUSETT_T1_DSSD_Y127_E 56.1187 -0.00685016
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M1_T/Cal_Str_X_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M1_T/Cal_Str_X_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b7603a307aa519facc0bff5aac18c553a75339fe
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M1_T/Cal_Str_X_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_X0_T 980.849 -0.11232
+MUSETT_T1_DSSD_X1_T 995.644 -0.114015
+MUSETT_T1_DSSD_X2_T 990.977 -0.114341
+MUSETT_T1_DSSD_X3_T 991.783 -0.115712
+MUSETT_T1_DSSD_X4_T 1010.572 -0.115744
+MUSETT_T1_DSSD_X5_T 1004.942 -0.115962
+MUSETT_T1_DSSD_X6_T 1027.025 -0.117589
+MUSETT_T1_DSSD_X7_T 1013.964 -0.116998
+MUSETT_T1_DSSD_X8_T 1014.607 -0.117498
+MUSETT_T1_DSSD_X9_T 1043.091 -0.118577
+MUSETT_T1_DSSD_X10_T 1034.931 -0.118143
+MUSETT_T1_DSSD_X11_T 1034.599 -0.118071
+MUSETT_T1_DSSD_X12_T 1047.388 -0.11954
+MUSETT_T1_DSSD_X13_T 1090.349 -0.119597
+MUSETT_T1_DSSD_X14_T 1079.336 -0.119236
+MUSETT_T1_DSSD_X15_T 1399.973 -0.119179
+MUSETT_T1_DSSD_X16_T 965.899 -0.111777
+MUSETT_T1_DSSD_X17_T 1008.155 -0.114612
+MUSETT_T1_DSSD_X18_T 1031.29 -0.114738
+MUSETT_T1_DSSD_X19_T 1013.952 -0.114439
+MUSETT_T1_DSSD_X20_T 1000.845 -0.115464
+MUSETT_T1_DSSD_X21_T 1018.067 -0.117052
+MUSETT_T1_DSSD_X22_T 1021.992 -0.115762
+MUSETT_T1_DSSD_X23_T 1031.743 -0.117739
+MUSETT_T1_DSSD_X24_T 1026.307 -0.117531
+MUSETT_T1_DSSD_X25_T 1010.795 -0.117923
+MUSETT_T1_DSSD_X26_T 1039.632 -0.117737
+MUSETT_T1_DSSD_X27_T 1043.136 -0.11821
+MUSETT_T1_DSSD_X28_T 1030.929 -0.118677
+MUSETT_T1_DSSD_X29_T 1014.245 -0.118324
+MUSETT_T1_DSSD_X30_T 1039.652 -0.118198
+MUSETT_T1_DSSD_X31_T 1033.056 -0.119148
+MUSETT_T1_DSSD_X32_T 886.337 -0.106165
+MUSETT_T1_DSSD_X33_T 899.905 -0.10618
+MUSETT_T1_DSSD_X34_T 919.178 -0.108064
+MUSETT_T1_DSSD_X35_T 908.222 -0.105941
+MUSETT_T1_DSSD_X36_T 926.543 -0.108105
+MUSETT_T1_DSSD_X37_T 925.555 -0.108823
+MUSETT_T1_DSSD_X38_T 918.057 -0.107861
+MUSETT_T1_DSSD_X39_T 919.133 -0.10842
+MUSETT_T1_DSSD_X40_T 929.006 -0.108779
+MUSETT_T1_DSSD_X41_T 932.249 -0.108754
+MUSETT_T1_DSSD_X42_T 955.208 -0.109783
+MUSETT_T1_DSSD_X43_T 933.139 -0.108855
+MUSETT_T1_DSSD_X44_T 937.243 -0.110019
+MUSETT_T1_DSSD_X45_T 923.868 -0.109854
+MUSETT_T1_DSSD_X46_T 942.489 -0.109528
+MUSETT_T1_DSSD_X47_T 980.341 -0.110055
+MUSETT_T1_DSSD_X48_T 911.222 -0.104838
+MUSETT_T1_DSSD_X49_T 908.507 -0.105455
+MUSETT_T1_DSSD_X50_T 907.89 -0.107015
+MUSETT_T1_DSSD_X51_T 903.533 -0.107338
+MUSETT_T1_DSSD_X52_T 910.292 -0.107685
+MUSETT_T1_DSSD_X53_T 927.437 -0.107699
+MUSETT_T1_DSSD_X54_T 931.552 -0.10819
+MUSETT_T1_DSSD_X55_T 937.564 -0.108878
+MUSETT_T1_DSSD_X56_T 937.603 -0.1097
+MUSETT_T1_DSSD_X57_T 929.418 -0.10916
+MUSETT_T1_DSSD_X58_T 945.414 -0.110244
+MUSETT_T1_DSSD_X59_T 930.688 -0.109308
+MUSETT_T1_DSSD_X60_T 961.82 -0.110894
+MUSETT_T1_DSSD_X61_T 931.811 -0.109867
+MUSETT_T1_DSSD_X62_T 938.381 -0.109791
+MUSETT_T1_DSSD_X63_T 943.474 -0.110777
+MUSETT_T1_DSSD_X64_T 988.402 -0.114723
+MUSETT_T1_DSSD_X65_T 987.059 -0.114949
+MUSETT_T1_DSSD_X66_T 1005.296 -0.116629
+MUSETT_T1_DSSD_X67_T 1041.962 -0.116557
+MUSETT_T1_DSSD_X68_T 1018.025 -0.116827
+MUSETT_T1_DSSD_X69_T 1026.525 -0.117811
+MUSETT_T1_DSSD_X70_T 1022.451 -0.117758
+MUSETT_T1_DSSD_X71_T 1039.117 -0.118392
+MUSETT_T1_DSSD_X72_T 1036.398 -0.118063
+MUSETT_T1_DSSD_X73_T 1051.153 -0.119853
+MUSETT_T1_DSSD_X74_T 1039.597 -0.119377
+MUSETT_T1_DSSD_X75_T 1026.806 -0.119141
+MUSETT_T1_DSSD_X76_T 1037.981 -0.119982
+MUSETT_T1_DSSD_X77_T 1039.726 -0.120199
+MUSETT_T1_DSSD_X78_T 1047.594 -0.1202
+MUSETT_T1_DSSD_X79_T 1404.444 -0.120722
+MUSETT_T1_DSSD_X80_T 1011.808 -0.117775
+MUSETT_T1_DSSD_X81_T 1016.332 -0.118024
+MUSETT_T1_DSSD_X82_T 1030.608 -0.118652
+MUSETT_T1_DSSD_X83_T 1029.549 -0.120307
+MUSETT_T1_DSSD_X84_T 1040.137 -0.120215
+MUSETT_T1_DSSD_X85_T 1062.0 -0.121389
+MUSETT_T1_DSSD_X86_T 1059.477 -0.121554
+MUSETT_T1_DSSD_X87_T 1046.994 -0.12057
+MUSETT_T1_DSSD_X88_T 1070.134 -0.122345
+MUSETT_T1_DSSD_X89_T 1064.802 -0.12261
+MUSETT_T1_DSSD_X90_T 1067.994 -0.122082
+MUSETT_T1_DSSD_X91_T 1058.802 -0.12282
+MUSETT_T1_DSSD_X92_T 1085.606 -0.12279
+MUSETT_T1_DSSD_X93_T 1112.3 -0.123127
+MUSETT_T1_DSSD_X94_T 1065.22 -0.123096
+MUSETT_T1_DSSD_X95_T 1087.39 -0.12163
+MUSETT_T1_DSSD_X96_T 944.75 -0.107613
+MUSETT_T1_DSSD_X97_T 953.257 -0.107373
+MUSETT_T1_DSSD_X98_T 940.186 -0.107838
+MUSETT_T1_DSSD_X99_T 938.233 -0.109224
+MUSETT_T1_DSSD_X100_T 938.882 -0.1092
+MUSETT_T1_DSSD_X101_T 946.755 -0.109791
+MUSETT_T1_DSSD_X102_T 949.15 -0.109268
+MUSETT_T1_DSSD_X103_T 986.829 -0.111151
+MUSETT_T1_DSSD_X104_T 995.127 -0.11128
+MUSETT_T1_DSSD_X105_T 1003.516 -0.111467
+MUSETT_T1_DSSD_X106_T 998.332 -0.112035
+MUSETT_T1_DSSD_X107_T 1007.836 -0.111519
+MUSETT_T1_DSSD_X108_T 1008.695 -0.111616
+MUSETT_T1_DSSD_X109_T 950.4 -0.110627
+MUSETT_T1_DSSD_X110_T 967.222 -0.110941
+MUSETT_T1_DSSD_X111_T 991.806 -0.11176
+MUSETT_T1_DSSD_X112_T 971.271 -0.108476
+MUSETT_T1_DSSD_X113_T 940.865 -0.108567
+MUSETT_T1_DSSD_X114_T 938.048 -0.10946
+MUSETT_T1_DSSD_X115_T 971.747 -0.110136
+MUSETT_T1_DSSD_X116_T 1026.72 -0.111977
+MUSETT_T1_DSSD_X117_T 999.883 -0.111304
+MUSETT_T1_DSSD_X118_T 998.593 -0.112781
+MUSETT_T1_DSSD_X119_T 969.943 -0.110659
+MUSETT_T1_DSSD_X120_T 975.062 -0.111325
+MUSETT_T1_DSSD_X121_T 1011.733 -0.112226
+MUSETT_T1_DSSD_X122_T 969.884 -0.11236
+MUSETT_T1_DSSD_X123_T 968.551 -0.111775
+MUSETT_T1_DSSD_X124_T 958.828 -0.111483
+MUSETT_T1_DSSD_X125_T 982.145 -0.112193
+MUSETT_T1_DSSD_X126_T 989.725 -0.112614
+MUSETT_T1_DSSD_X127_T 987.185 -0.111864
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M1_T/Cal_Str_Y_T_MM1.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M1_T/Cal_Str_Y_T_MM1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..053cc4065c58f7e08ae7c72adb5c8b681eef3c0d
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M1_T/Cal_Str_Y_T_MM1.cal
@@ -0,0 +1,128 @@
+MUSETT_T1_DSSD_Y0_T 959.046 -0.11282
+MUSETT_T1_DSSD_Y1_T 955.007 -0.113022
+MUSETT_T1_DSSD_Y2_T 990.4 -0.114361
+MUSETT_T1_DSSD_Y3_T 998.254 -0.114834
+MUSETT_T1_DSSD_Y4_T 996.127 -0.115122
+MUSETT_T1_DSSD_Y5_T 978.096 -0.115533
+MUSETT_T1_DSSD_Y6_T 970.638 -0.115938
+MUSETT_T1_DSSD_Y7_T 974.726 -0.114726
+MUSETT_T1_DSSD_Y8_T 993.383 -0.11562
+MUSETT_T1_DSSD_Y9_T 1007.108 -0.116854
+MUSETT_T1_DSSD_Y10_T 995.68 -0.116368
+MUSETT_T1_DSSD_Y11_T 1000.024 -0.117327
+MUSETT_T1_DSSD_Y12_T 985.351 -0.117358
+MUSETT_T1_DSSD_Y13_T 999.446 -0.116827
+MUSETT_T1_DSSD_Y14_T 1004.621 -0.116981
+MUSETT_T1_DSSD_Y15_T 1005.546 -0.116717
+MUSETT_T1_DSSD_Y16_T 1012.494 -0.116883
+MUSETT_T1_DSSD_Y17_T 1014.466 -0.117128
+MUSETT_T1_DSSD_Y18_T 992.985 -0.117665
+MUSETT_T1_DSSD_Y19_T 997.079 -0.117743
+MUSETT_T1_DSSD_Y20_T 1016.676 -0.119146
+MUSETT_T1_DSSD_Y21_T 1013.451 -0.118747
+MUSETT_T1_DSSD_Y22_T 1426.337 -0.119189
+MUSETT_T1_DSSD_Y23_T 1047.483 -0.119964
+MUSETT_T1_DSSD_Y24_T 1006.065 -0.120158
+MUSETT_T1_DSSD_Y25_T 1021.389 -0.120176
+MUSETT_T1_DSSD_Y26_T 1025.992 -0.120728
+MUSETT_T1_DSSD_Y27_T 1028.907 -0.120113
+MUSETT_T1_DSSD_Y28_T 1055.441 -0.120339
+MUSETT_T1_DSSD_Y29_T 1025.325 -0.119308
+MUSETT_T1_DSSD_Y30_T 1027.794 -0.120108
+MUSETT_T1_DSSD_Y31_T 1034.513 -0.119515
+MUSETT_T1_DSSD_Y32_T 920.744 -0.106691
+MUSETT_T1_DSSD_Y33_T 922.373 -0.10745
+MUSETT_T1_DSSD_Y34_T 935.437 -0.106848
+MUSETT_T1_DSSD_Y35_T 918.478 -0.108037
+MUSETT_T1_DSSD_Y36_T 850695103980.0 -103827000.0
+MUSETT_T1_DSSD_Y37_T 946.467 -0.109433
+MUSETT_T1_DSSD_Y38_T 928.82 -0.110242
+MUSETT_T1_DSSD_Y39_T 944.55 -0.10944
+MUSETT_T1_DSSD_Y40_T 921.176 -0.107957
+MUSETT_T1_DSSD_Y41_T 961.639 -0.109521
+MUSETT_T1_DSSD_Y42_T 947.387 -0.108623
+MUSETT_T1_DSSD_Y43_T 989.749 -0.10969
+MUSETT_T1_DSSD_Y44_T 952.402 -0.109989
+MUSETT_T1_DSSD_Y45_T 957.138 -0.109312
+MUSETT_T1_DSSD_Y46_T 958.024 -0.109844
+MUSETT_T1_DSSD_Y47_T 966.166 -0.109257
+MUSETT_T1_DSSD_Y48_T 920.741 -0.10696
+MUSETT_T1_DSSD_Y49_T 920.027 -0.106852
+MUSETT_T1_DSSD_Y50_T 912.826 -0.106436
+MUSETT_T1_DSSD_Y51_T 936.647 -0.108049
+MUSETT_T1_DSSD_Y52_T 960.344 -0.108781
+MUSETT_T1_DSSD_Y53_T 964.769 -0.108923
+MUSETT_T1_DSSD_Y54_T 957.64 -0.108922
+MUSETT_T1_DSSD_Y55_T 933.691 -0.108949
+MUSETT_T1_DSSD_Y56_T 931.842 -0.110395
+MUSETT_T1_DSSD_Y57_T 944.809 -0.110294
+MUSETT_T1_DSSD_Y58_T 947.24 -0.109746
+MUSETT_T1_DSSD_Y59_T 957.31 -0.109802
+MUSETT_T1_DSSD_Y60_T 943.761 -0.109742
+MUSETT_T1_DSSD_Y61_T 966.426 -0.11072
+MUSETT_T1_DSSD_Y62_T 950.095 -0.110879
+MUSETT_T1_DSSD_Y63_T 951.17 -0.111037
+MUSETT_T1_DSSD_Y64_T 972.73 -0.115194
+MUSETT_T1_DSSD_Y65_T 988.76 -0.116053
+MUSETT_T1_DSSD_Y66_T 995.222 -0.116788
+MUSETT_T1_DSSD_Y67_T 993.192 -0.117211
+MUSETT_T1_DSSD_Y68_T 991.024 -0.117617
+MUSETT_T1_DSSD_Y69_T 1021.91 -0.118609
+MUSETT_T1_DSSD_Y70_T 998.673 -0.118053
+MUSETT_T1_DSSD_Y71_T 1033.44 -0.119038
+MUSETT_T1_DSSD_Y72_T 1023.013 -0.119163
+MUSETT_T1_DSSD_Y73_T 1030.138 -0.119552
+MUSETT_T1_DSSD_Y74_T 997.999 -0.119777
+MUSETT_T1_DSSD_Y75_T 1028.938 -0.119391
+MUSETT_T1_DSSD_Y76_T 1039.947 -0.11981
+MUSETT_T1_DSSD_Y77_T 1018.562 -0.119505
+MUSETT_T1_DSSD_Y78_T 1026.918 -0.119601
+MUSETT_T1_DSSD_Y79_T 1016.742 -0.120194
+MUSETT_T1_DSSD_Y80_T 1000.175 -0.114646
+MUSETT_T1_DSSD_Y81_T 1008.839 -0.115676
+MUSETT_T1_DSSD_Y82_T 985.563 -0.115551
+MUSETT_T1_DSSD_Y83_T 993.917 -0.116392
+MUSETT_T1_DSSD_Y84_T 1014.626 -0.116344
+MUSETT_T1_DSSD_Y85_T 991.36 -0.117589
+MUSETT_T1_DSSD_Y86_T 1003.643 -0.117699
+MUSETT_T1_DSSD_Y87_T 1010.927 -0.118567
+MUSETT_T1_DSSD_Y88_T 1019.642 -0.118705
+MUSETT_T1_DSSD_Y89_T 1008.155 -0.117807
+MUSETT_T1_DSSD_Y90_T 1035.898 -0.118376
+MUSETT_T1_DSSD_Y91_T 994.394 -0.119333
+MUSETT_T1_DSSD_Y92_T 1021.709 -0.119429
+MUSETT_T1_DSSD_Y93_T 1010.995 -0.118576
+MUSETT_T1_DSSD_Y94_T 1018.58 -0.119031
+MUSETT_T1_DSSD_Y95_T 1011.279 -0.120471
+MUSETT_T1_DSSD_Y96_T 901.438 -0.106136
+MUSETT_T1_DSSD_Y97_T 901.598 -0.106
+MUSETT_T1_DSSD_Y98_T 892.576 -0.106555
+MUSETT_T1_DSSD_Y99_T 920.81 -0.108263
+MUSETT_T1_DSSD_Y100_T 906.799 -0.10801
+MUSETT_T1_DSSD_Y101_T 896.759 -0.107044
+MUSETT_T1_DSSD_Y102_T 907.908 -0.108005
+MUSETT_T1_DSSD_Y103_T 925.104 -0.108406
+MUSETT_T1_DSSD_Y104_T 932.551 -0.109653
+MUSETT_T1_DSSD_Y105_T 908.315 -0.10926
+MUSETT_T1_DSSD_Y106_T 938.118 -0.10967
+MUSETT_T1_DSSD_Y107_T 916.068 -0.108536
+MUSETT_T1_DSSD_Y108_T 939.43 -0.109417
+MUSETT_T1_DSSD_Y109_T 950.082 -0.110268
+MUSETT_T1_DSSD_Y110_T 930.016 -0.109108
+MUSETT_T1_DSSD_Y111_T 930.868 -0.109824
+MUSETT_T1_DSSD_Y112_T 891.572 -0.104291
+MUSETT_T1_DSSD_Y113_T 875.099 -0.103549
+MUSETT_T1_DSSD_Y114_T 900.246 -0.104798
+MUSETT_T1_DSSD_Y115_T 912.537 -0.10419
+MUSETT_T1_DSSD_Y116_T 885.693 -0.105221
+MUSETT_T1_DSSD_Y117_T 925.459 -0.106354
+MUSETT_T1_DSSD_Y118_T 908.711 -0.1069
+MUSETT_T1_DSSD_Y119_T 909.178 -0.106252
+MUSETT_T1_DSSD_Y120_T 931.016 -0.108379
+MUSETT_T1_DSSD_Y121_T 922.012 -0.108492
+MUSETT_T1_DSSD_Y122_T 916.508 -0.108225
+MUSETT_T1_DSSD_Y123_T 906.606 -0.108132
+MUSETT_T1_DSSD_Y124_T 915.935 -0.108412
+MUSETT_T1_DSSD_Y125_T 907.675 -0.10784
+MUSETT_T1_DSSD_Y126_T 920.698 -0.107526
+MUSETT_T1_DSSD_Y127_T 971.039 -0.121191
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M2_E/Cal_Str_X_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M2_E/Cal_Str_X_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..4e75ce923e8f87e5786059e938bb672c9877b4af
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M2_E/Cal_Str_X_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_E -63.0615 0.00769841
+MUSETT_T2_DSSD_X1_E -62.5064 0.00762904
+MUSETT_T2_DSSD_X2_E -62.898199999999996 0.00767697
+MUSETT_T2_DSSD_X3_E -62.1025 0.00757997
+MUSETT_T2_DSSD_X4_E -62.091 0.00757843
+MUSETT_T2_DSSD_X5_E -62.68 0.007651
+MUSETT_T2_DSSD_X6_E -62.4976 0.00762835
+MUSETT_T2_DSSD_X7_E -62.8606 0.00767221
+MUSETT_T2_DSSD_X8_E -62.9349 0.00768182
+MUSETT_T2_DSSD_X9_E -62.209199999999996 0.00759345
+MUSETT_T2_DSSD_X10_E -62.461400000000005 0.00762395
+MUSETT_T2_DSSD_X11_E -62.447900000000004 0.00762232
+MUSETT_T2_DSSD_X12_E -62.8231 0.0076688799999999994
+MUSETT_T2_DSSD_X13_E -62.5784 0.00763796
+MUSETT_T2_DSSD_X14_E -62.6683 0.00764912
+MUSETT_T2_DSSD_X15_E -63.7271 0.0077794
+MUSETT_T2_DSSD_X16_E -62.1841 0.0075899999999999995
+MUSETT_T2_DSSD_X17_E -61.848800000000004 0.00754926
+MUSETT_T2_DSSD_X18_E -61.650400000000005 0.007524670000000001
+MUSETT_T2_DSSD_X19_E -61.4859 0.00750437
+MUSETT_T2_DSSD_X20_E -61.652 0.00752531
+MUSETT_T2_DSSD_X21_E -62.3054 0.00760457
+MUSETT_T2_DSSD_X22_E -62.259800000000006 0.007598969999999999
+MUSETT_T2_DSSD_X23_E -61.8007 0.00754312
+MUSETT_T2_DSSD_X24_E -61.581199999999995 0.007516409999999999
+MUSETT_T2_DSSD_X25_E -62.0444 0.0075734700000000005
+MUSETT_T2_DSSD_X26_E -62.0801 0.00757801
+MUSETT_T2_DSSD_X27_E -61.7978 0.00754284
+MUSETT_T2_DSSD_X28_E -61.6817 0.00752824
+MUSETT_T2_DSSD_X29_E -61.2674 0.00747771
+MUSETT_T2_DSSD_X30_E -62.349 0.00761043
+MUSETT_T2_DSSD_X31_E -61.5649 0.00751409
+MUSETT_T2_DSSD_X32_E -59.0153 0.00720328
+MUSETT_T2_DSSD_X33_E -58.139900000000004 0.0070961800000000005
+MUSETT_T2_DSSD_X34_E -58.6981 0.00716453
+MUSETT_T2_DSSD_X35_E -58.4432 0.00713257
+MUSETT_T2_DSSD_X36_E -58.176 0.007101
+MUSETT_T2_DSSD_X37_E -58.2076 0.0071046699999999996
+MUSETT_T2_DSSD_X38_E -58.335 0.0071204499999999995
+MUSETT_T2_DSSD_X39_E -57.8834 0.00706537
+MUSETT_T2_DSSD_X40_E -57.575 0.007027510000000001
+MUSETT_T2_DSSD_X41_E -58.5837 0.0071504
+MUSETT_T2_DSSD_X42_E -58.7646 0.0071724
+MUSETT_T2_DSSD_X43_E -58.3108 0.00711768
+MUSETT_T2_DSSD_X44_E -58.65 0.00715916
+MUSETT_T2_DSSD_X45_E -58.6944 0.00716541
+MUSETT_T2_DSSD_X46_E -58.376599999999996 0.0071258499999999995
+MUSETT_T2_DSSD_X47_E -58.493900000000004 0.00713969
+MUSETT_T2_DSSD_X48_E -57.774699999999996 0.007051389999999999
+MUSETT_T2_DSSD_X49_E -57.2196 0.006984
+MUSETT_T2_DSSD_X50_E -58.1507 0.00709771
+MUSETT_T2_DSSD_X51_E -57.875099999999996 0.007064549999999999
+MUSETT_T2_DSSD_X52_E -57.6145 0.0070324
+MUSETT_T2_DSSD_X53_E -57.1193 0.00697173
+MUSETT_T2_DSSD_X54_E -57.8799 0.0070646500000000004
+MUSETT_T2_DSSD_X55_E -57.700199999999995 0.00704254
+MUSETT_T2_DSSD_X56_E -57.8843 0.007065279999999999
+MUSETT_T2_DSSD_X57_E -57.744699999999995 0.00704893
+MUSETT_T2_DSSD_X58_E -57.978300000000004 0.00707647
+MUSETT_T2_DSSD_X59_E -57.040800000000004 0.00696222
+MUSETT_T2_DSSD_X60_E -57.537 0.00702231
+MUSETT_T2_DSSD_X61_E -56.754400000000004 0.006927330000000001
+MUSETT_T2_DSSD_X62_E -57.4944 0.00701801
+MUSETT_T2_DSSD_X63_E -57.8153 0.00705707
+MUSETT_T2_DSSD_X64_E -63.3305 0.00772984
+MUSETT_T2_DSSD_X65_E -65.01469999999999 0.00793525
+MUSETT_T2_DSSD_X66_E -64.02380000000001 0.0078138
+MUSETT_T2_DSSD_X67_E -63.7587 0.00778178
+MUSETT_T2_DSSD_X68_E -10.0 0.0
+MUSETT_T2_DSSD_X69_E -64.4034 0.0078608
+MUSETT_T2_DSSD_X70_E -63.7119 0.00777604
+MUSETT_T2_DSSD_X71_E -63.4568 0.00774517
+MUSETT_T2_DSSD_X72_E -63.366 0.00773396
+MUSETT_T2_DSSD_X73_E -63.1184 0.00770341
+MUSETT_T2_DSSD_X74_E -63.8454 0.00779218
+MUSETT_T2_DSSD_X75_E -63.655199999999994 0.00776957
+MUSETT_T2_DSSD_X76_E -64.0254 0.00781563
+MUSETT_T2_DSSD_X77_E -63.927699999999994 0.00780392
+MUSETT_T2_DSSD_X78_E -63.5545 0.007757729999999999
+MUSETT_T2_DSSD_X79_E -63.5009 0.00775129
+MUSETT_T2_DSSD_X80_E -63.231199999999994 0.0077171
+MUSETT_T2_DSSD_X81_E -63.2975 0.00772646
+MUSETT_T2_DSSD_X82_E -63.1563 0.00770831
+MUSETT_T2_DSSD_X83_E -63.216800000000006 0.00771566
+MUSETT_T2_DSSD_X84_E -64.00580000000001 0.00781186
+MUSETT_T2_DSSD_X85_E -63.8752 0.00779498
+MUSETT_T2_DSSD_X86_E -63.7781 0.00778352
+MUSETT_T2_DSSD_X87_E -63.9834 0.00780931
+MUSETT_T2_DSSD_X88_E -63.1005 0.00770105
+MUSETT_T2_DSSD_X89_E -63.6365 0.007767179999999999
+MUSETT_T2_DSSD_X90_E -63.516 0.00775305
+MUSETT_T2_DSSD_X91_E -63.6366 0.00776686
+MUSETT_T2_DSSD_X92_E -63.357699999999994 0.00773288
+MUSETT_T2_DSSD_X93_E -64.6455 0.00788952
+MUSETT_T2_DSSD_X94_E -63.755199999999995 0.00778113
+MUSETT_T2_DSSD_X95_E -63.6371 0.00776683
+MUSETT_T2_DSSD_X96_E -59.0147 0.00720305
+MUSETT_T2_DSSD_X97_E -58.466300000000004 0.00713675
+MUSETT_T2_DSSD_X98_E -58.3181 0.00711774
+MUSETT_T2_DSSD_X99_E -58.6042 0.00715414
+MUSETT_T2_DSSD_X100_E -59.3494 0.00724432
+MUSETT_T2_DSSD_X101_E -59.3568 0.00724468
+MUSETT_T2_DSSD_X102_E -58.8075 0.0071782899999999995
+MUSETT_T2_DSSD_X103_E -58.9268 0.0071932
+MUSETT_T2_DSSD_X104_E -59.050599999999996 0.00720842
+MUSETT_T2_DSSD_X105_E -59.0507 0.00720773
+MUSETT_T2_DSSD_X106_E -58.7527 0.00717148
+MUSETT_T2_DSSD_X107_E -59.0152 0.00720287
+MUSETT_T2_DSSD_X108_E -58.8099 0.00717765
+MUSETT_T2_DSSD_X109_E -60.5033 0.007385399999999999
+MUSETT_T2_DSSD_X110_E -58.9733 0.007197739999999999
+MUSETT_T2_DSSD_X111_E -58.5871 0.00715168
+MUSETT_T2_DSSD_X112_E -59.305800000000005 0.00723844
+MUSETT_T2_DSSD_X113_E -59.265699999999995 0.007234
+MUSETT_T2_DSSD_X114_E -59.7141 0.00728798
+MUSETT_T2_DSSD_X115_E -59.0975 0.00721291
+MUSETT_T2_DSSD_X116_E -59.752 0.00729299
+MUSETT_T2_DSSD_X117_E -60.0257 0.00732641
+MUSETT_T2_DSSD_X118_E -59.5099 0.0072633
+MUSETT_T2_DSSD_X119_E -59.4818 0.00726047
+MUSETT_T2_DSSD_X120_E -60.0186 0.00732613
+MUSETT_T2_DSSD_X121_E -58.722699999999996 0.00716762
+MUSETT_T2_DSSD_X122_E -59.0274 0.007204690000000001
+MUSETT_T2_DSSD_X123_E -59.3263 0.00724127
+MUSETT_T2_DSSD_X124_E -58.8434 0.00718246
+MUSETT_T2_DSSD_X125_E -58.9407 0.00719401
+MUSETT_T2_DSSD_X126_E -59.0974 0.00721317
+MUSETT_T2_DSSD_X127_E -59.2229 0.007228399999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M2_E/Cal_Str_Y_E_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M2_E/Cal_Str_Y_E_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..57b609549e2a13cb410e4caefd0e3cd5f54ef7d2
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M2_E/Cal_Str_Y_E_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_E 63.157300000000006 -0.00770969
+MUSETT_T2_DSSD_Y1_E 63.822199999999995 -0.00778939
+MUSETT_T2_DSSD_Y2_E 62.498 -0.00762853
+MUSETT_T2_DSSD_Y3_E 63.4183 -0.00774138
+MUSETT_T2_DSSD_Y4_E 62.878699999999995 -0.00767525
+MUSETT_T2_DSSD_Y5_E 62.6757 -0.00765067
+MUSETT_T2_DSSD_Y6_E 63.0181 -0.0076919300000000005
+MUSETT_T2_DSSD_Y7_E 62.6884 -0.00765248
+MUSETT_T2_DSSD_Y8_E 62.738699999999994 -0.00765763
+MUSETT_T2_DSSD_Y9_E 63.3784 -0.00773598
+MUSETT_T2_DSSD_Y10_E 62.933099999999996 -0.00768161
+MUSETT_T2_DSSD_Y11_E 62.4898 -0.00762778
+MUSETT_T2_DSSD_Y12_E 62.0069 -0.00756841
+MUSETT_T2_DSSD_Y13_E 62.7472 -0.00765943
+MUSETT_T2_DSSD_Y14_E 62.9046 -0.00767764
+MUSETT_T2_DSSD_Y15_E 63.436099999999996 -0.00774366
+MUSETT_T2_DSSD_Y16_E 61.523 -0.00750754
+MUSETT_T2_DSSD_Y17_E 60.8812 -0.0074314
+MUSETT_T2_DSSD_Y18_E 60.7565 -0.007416170000000001
+MUSETT_T2_DSSD_Y19_E 61.9482 -0.007560730000000001
+MUSETT_T2_DSSD_Y20_E 61.1207 -0.007458719999999999
+MUSETT_T2_DSSD_Y21_E 60.825199999999995 -0.00742329
+MUSETT_T2_DSSD_Y22_E 62.124199999999995 -0.0075835699999999995
+MUSETT_T2_DSSD_Y23_E 61.0682 -0.00745426
+MUSETT_T2_DSSD_Y24_E 61.024300000000004 -0.00744902
+MUSETT_T2_DSSD_Y25_E 61.6142 -0.00752161
+MUSETT_T2_DSSD_Y26_E 61.0989 -0.00745848
+MUSETT_T2_DSSD_Y27_E 61.2941 -0.00748094
+MUSETT_T2_DSSD_Y28_E 61.584 -0.00751767
+MUSETT_T2_DSSD_Y29_E 61.3574 -0.0074883
+MUSETT_T2_DSSD_Y30_E 61.2632 -0.007477210000000001
+MUSETT_T2_DSSD_Y31_E 61.6365 -0.00752283
+MUSETT_T2_DSSD_Y32_E 56.252900000000004 -0.0068662
+MUSETT_T2_DSSD_Y33_E 56.3605 -0.0068788700000000005
+MUSETT_T2_DSSD_Y34_E 56.7263 -0.00692397
+MUSETT_T2_DSSD_Y35_E 56.6471 -0.0069142299999999995
+MUSETT_T2_DSSD_Y36_E 56.9441 -0.00695144
+MUSETT_T2_DSSD_Y37_E 56.838 -0.0069372999999999995
+MUSETT_T2_DSSD_Y38_E 56.333400000000005 -0.00687547
+MUSETT_T2_DSSD_Y39_E 56.42 -0.00688799
+MUSETT_T2_DSSD_Y40_E 56.4154 -0.0068848
+MUSETT_T2_DSSD_Y41_E 58.0466 -0.0070855300000000005
+MUSETT_T2_DSSD_Y42_E 56.7498 -0.00692777
+MUSETT_T2_DSSD_Y43_E 56.199 -0.0068594
+MUSETT_T2_DSSD_Y44_E 57.4778 -0.00701539
+MUSETT_T2_DSSD_Y45_E 57.2621 -0.00698911
+MUSETT_T2_DSSD_Y46_E 56.983599999999996 -0.006956070000000001
+MUSETT_T2_DSSD_Y47_E 56.6574 -0.00691657
+MUSETT_T2_DSSD_Y48_E 57.5447 -0.00702396
+MUSETT_T2_DSSD_Y49_E 57.0289 -0.00696114
+MUSETT_T2_DSSD_Y50_E 57.9874 -0.007077040000000001
+MUSETT_T2_DSSD_Y51_E 57.372099999999996 -0.00700299
+MUSETT_T2_DSSD_Y52_E 57.342 -0.0069989100000000005
+MUSETT_T2_DSSD_Y53_E 58.521 -0.00714305
+MUSETT_T2_DSSD_Y54_E 57.6806 -0.0070407
+MUSETT_T2_DSSD_Y55_E 57.746900000000004 -0.00704863
+MUSETT_T2_DSSD_Y56_E 57.6381 -0.007035759999999999
+MUSETT_T2_DSSD_Y57_E 57.521 -0.007021029999999999
+MUSETT_T2_DSSD_Y58_E 57.4702 -0.00701554
+MUSETT_T2_DSSD_Y59_E 58.2813 -0.00711404
+MUSETT_T2_DSSD_Y60_E 57.8401 -0.00706071
+MUSETT_T2_DSSD_Y61_E 57.317800000000005 -0.006997
+MUSETT_T2_DSSD_Y62_E 57.8026 -0.00705565
+MUSETT_T2_DSSD_Y63_E 58.1314 -0.007095209999999999
+MUSETT_T2_DSSD_Y64_E 59.3039 -0.00723935
+MUSETT_T2_DSSD_Y65_E 59.4845 -0.00725972
+MUSETT_T2_DSSD_Y66_E 59.4459 -0.00725617
+MUSETT_T2_DSSD_Y67_E 60.4281 -0.0073764
+MUSETT_T2_DSSD_Y68_E 59.5334 -0.00726741
+MUSETT_T2_DSSD_Y69_E 59.8137 -0.007301179999999999
+MUSETT_T2_DSSD_Y70_E 59.589800000000004 -0.00727421
+MUSETT_T2_DSSD_Y71_E 60.0261 -0.00732661
+MUSETT_T2_DSSD_Y72_E 59.9774 -0.00732078
+MUSETT_T2_DSSD_Y73_E 59.5219 -0.0072662000000000004
+MUSETT_T2_DSSD_Y74_E 59.9394 -0.007317059999999999
+MUSETT_T2_DSSD_Y75_E 60.1639 -0.0073441999999999995
+MUSETT_T2_DSSD_Y76_E 59.267199999999995 -0.007234
+MUSETT_T2_DSSD_Y77_E 59.9363 -0.00731598
+MUSETT_T2_DSSD_Y78_E 59.3553 -0.00724587
+MUSETT_T2_DSSD_Y79_E 60.125 -0.00733861
+MUSETT_T2_DSSD_Y80_E 60.407 -0.00737292
+MUSETT_T2_DSSD_Y81_E 61.0997 -0.00745806
+MUSETT_T2_DSSD_Y82_E 60.5846 -0.007395430000000001
+MUSETT_T2_DSSD_Y83_E 61.2683 -0.00747919
+MUSETT_T2_DSSD_Y84_E 61.270900000000005 -0.007478780000000001
+MUSETT_T2_DSSD_Y85_E 60.8254 -0.00742527
+MUSETT_T2_DSSD_Y86_E 60.9095 -0.007435870000000001
+MUSETT_T2_DSSD_Y87_E 61.284800000000004 -0.00748143
+MUSETT_T2_DSSD_Y88_E 60.871 -0.0074305199999999995
+MUSETT_T2_DSSD_Y89_E 60.7505 -0.0074148
+MUSETT_T2_DSSD_Y90_E 61.3804 -0.00749252
+MUSETT_T2_DSSD_Y91_E 60.505199999999995 -0.00738436
+MUSETT_T2_DSSD_Y92_E 61.1014 -0.00745903
+MUSETT_T2_DSSD_Y93_E 60.601099999999995 -0.007398170000000001
+MUSETT_T2_DSSD_Y94_E 61.046 -0.00745199
+MUSETT_T2_DSSD_Y95_E 61.3471 -0.007487720000000001
+MUSETT_T2_DSSD_Y96_E 56.8573 -0.006940839999999999
+MUSETT_T2_DSSD_Y97_E 55.9357 -0.0068279199999999995
+MUSETT_T2_DSSD_Y98_E 56.194 -0.00685949
+MUSETT_T2_DSSD_Y99_E 56.657 -0.00691576
+MUSETT_T2_DSSD_Y100_E 56.4046 -0.00688522
+MUSETT_T2_DSSD_Y101_E 56.7453 -0.0069268
+MUSETT_T2_DSSD_Y102_E 56.0289 -0.00683896
+MUSETT_T2_DSSD_Y103_E 57.1371 -0.00697391
+MUSETT_T2_DSSD_Y104_E 56.0289 -0.00683942
+MUSETT_T2_DSSD_Y105_E 56.6401 -0.00691348
+MUSETT_T2_DSSD_Y106_E 56.5758 -0.00690625
+MUSETT_T2_DSSD_Y107_E 57.4687 -0.007015329999999999
+MUSETT_T2_DSSD_Y108_E 57.0342 -0.00696217
+MUSETT_T2_DSSD_Y109_E 56.652699999999996 -0.00691515
+MUSETT_T2_DSSD_Y110_E 57.017900000000004 -0.006960340000000001
+MUSETT_T2_DSSD_Y111_E 56.1035 -0.0068487
+MUSETT_T2_DSSD_Y112_E 56.392300000000006 -0.00688327
+MUSETT_T2_DSSD_Y113_E 57.2491 -0.00698846
+MUSETT_T2_DSSD_Y114_E 56.498 -0.00689623
+MUSETT_T2_DSSD_Y115_E 56.7889 -0.00693179
+MUSETT_T2_DSSD_Y116_E 56.4236 -0.00688761
+MUSETT_T2_DSSD_Y117_E 56.4771 -0.00689419
+MUSETT_T2_DSSD_Y118_E 56.8303 -0.00693708
+MUSETT_T2_DSSD_Y119_E 56.701800000000006 -0.00692147
+MUSETT_T2_DSSD_Y120_E 56.2407 -0.00686503
+MUSETT_T2_DSSD_Y121_E 57.000699999999995 -0.0069580399999999995
+MUSETT_T2_DSSD_Y122_E 57.374900000000004 -0.00700373
+MUSETT_T2_DSSD_Y123_E -10.0 0.0
+MUSETT_T2_DSSD_Y124_E 56.1336 -0.00685234
+MUSETT_T2_DSSD_Y125_E 56.9223 -0.00694849
+MUSETT_T2_DSSD_Y126_E 56.3658 -0.00688053
+MUSETT_T2_DSSD_Y127_E 56.1315 -0.00685163
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M2_T/Cal_Str_X_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M2_T/Cal_Str_X_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..813fd8a1e8b18a6a9f4fece255b4a4222e8d9fa0
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M2_T/Cal_Str_X_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_X0_T 1005.057 -0.113282
+MUSETT_T2_DSSD_X1_T 1024.643 -0.112935
+MUSETT_T2_DSSD_X2_T 986.354 -0.113903
+MUSETT_T2_DSSD_X3_T 995.274 -0.11541
+MUSETT_T2_DSSD_X4_T 998.065 -0.114834
+MUSETT_T2_DSSD_X5_T 1012.746 -0.116968
+MUSETT_T2_DSSD_X6_T 1039.176 -0.116144
+MUSETT_T2_DSSD_X7_T 1055.919 -0.116738
+MUSETT_T2_DSSD_X8_T 1024.818 -0.115736
+MUSETT_T2_DSSD_X9_T 1041.025 -0.117191
+MUSETT_T2_DSSD_X10_T 1055.419 -0.117505
+MUSETT_T2_DSSD_X11_T 1057.127 -0.116868
+MUSETT_T2_DSSD_X12_T 1050.195 -0.117596
+MUSETT_T2_DSSD_X13_T 1038.03 -0.116864
+MUSETT_T2_DSSD_X14_T 1061.15 -0.116934
+MUSETT_T2_DSSD_X15_T 1412.756 -0.118078
+MUSETT_T2_DSSD_X16_T 988.528 -0.111042
+MUSETT_T2_DSSD_X17_T 1014.262 -0.1129
+MUSETT_T2_DSSD_X18_T 995.412 -0.113239
+MUSETT_T2_DSSD_X19_T 1001.287 -0.11311
+MUSETT_T2_DSSD_X20_T 1023.95 -0.114433
+MUSETT_T2_DSSD_X21_T 1029.883 -0.113893
+MUSETT_T2_DSSD_X22_T 1016.473 -0.113604
+MUSETT_T2_DSSD_X23_T 1036.305 -0.114596
+MUSETT_T2_DSSD_X24_T 1016.128 -0.113523
+MUSETT_T2_DSSD_X25_T 1032.235 -0.114529
+MUSETT_T2_DSSD_X26_T 1018.109 -0.114587
+MUSETT_T2_DSSD_X27_T 989.033 -0.114127
+MUSETT_T2_DSSD_X28_T 1003.878 -0.115049
+MUSETT_T2_DSSD_X29_T 985.429 -0.114577
+MUSETT_T2_DSSD_X30_T 1031.085 -0.114801
+MUSETT_T2_DSSD_X31_T 1143.284 -0.114725
+MUSETT_T2_DSSD_X32_T 915.358 -0.106884
+MUSETT_T2_DSSD_X33_T 922.985 -0.106588
+MUSETT_T2_DSSD_X34_T 943.57 -0.10771
+MUSETT_T2_DSSD_X35_T 943.472 -0.10739
+MUSETT_T2_DSSD_X36_T 961.3 -0.109058
+MUSETT_T2_DSSD_X37_T 944.732 -0.108685
+MUSETT_T2_DSSD_X38_T 948.953 -0.109605
+MUSETT_T2_DSSD_X39_T 956.233 -0.109211
+MUSETT_T2_DSSD_X40_T 952.436 -0.109168
+MUSETT_T2_DSSD_X41_T 976.11 -0.109617
+MUSETT_T2_DSSD_X42_T 998.27 -0.1104
+MUSETT_T2_DSSD_X43_T 993.377 -0.110254
+MUSETT_T2_DSSD_X44_T 980.663 -0.111219
+MUSETT_T2_DSSD_X45_T 971.875 -0.111043
+MUSETT_T2_DSSD_X46_T 974.772 -0.111378
+MUSETT_T2_DSSD_X47_T 1347.092 -0.11089
+MUSETT_T2_DSSD_X48_T 909.603 -0.102956
+MUSETT_T2_DSSD_X49_T 903.729 -0.104191
+MUSETT_T2_DSSD_X50_T 936.844 -0.105362
+MUSETT_T2_DSSD_X51_T 927.243 -0.10464
+MUSETT_T2_DSSD_X52_T 950.69 -0.105723
+MUSETT_T2_DSSD_X53_T 957.281 -0.105755
+MUSETT_T2_DSSD_X54_T 942.681 -0.105984
+MUSETT_T2_DSSD_X55_T 951.359 -0.106931
+MUSETT_T2_DSSD_X56_T 933.36 -0.108024
+MUSETT_T2_DSSD_X57_T 952.824 -0.108307
+MUSETT_T2_DSSD_X58_T 954.213 -0.107279
+MUSETT_T2_DSSD_X59_T 958.465 -0.108543
+MUSETT_T2_DSSD_X60_T 977.15 -0.108721
+MUSETT_T2_DSSD_X61_T 967.709 -0.108665
+MUSETT_T2_DSSD_X62_T 952.646 -0.10824
+MUSETT_T2_DSSD_X63_T 1310.218 -0.107885
+MUSETT_T2_DSSD_X64_T 1001.233 -0.117533
+MUSETT_T2_DSSD_X65_T 1003.211 -0.117545
+MUSETT_T2_DSSD_X66_T 1066.041 -0.118957
+MUSETT_T2_DSSD_X67_T 1024.957 -0.119584
+MUSETT_T2_DSSD_X68_T 1432.499 -0.119902
+MUSETT_T2_DSSD_X69_T 1033.43 -0.12002
+MUSETT_T2_DSSD_X70_T 1042.557 -0.120171
+MUSETT_T2_DSSD_X71_T 1059.805 -0.120802
+MUSETT_T2_DSSD_X72_T 1047.622 -0.119977
+MUSETT_T2_DSSD_X73_T 1025.939 -0.12102
+MUSETT_T2_DSSD_X74_T 1025.453 -0.12055
+MUSETT_T2_DSSD_X75_T 1024.259 -0.12048
+MUSETT_T2_DSSD_X76_T 1042.813 -0.121688
+MUSETT_T2_DSSD_X77_T 1043.519 -0.122136
+MUSETT_T2_DSSD_X78_T 1037.818 -0.122472
+MUSETT_T2_DSSD_X79_T 1330.974 -0.121488
+MUSETT_T2_DSSD_X80_T 969.937 -0.115148
+MUSETT_T2_DSSD_X81_T 981.206 -0.116512
+MUSETT_T2_DSSD_X82_T 994.193 -0.116735
+MUSETT_T2_DSSD_X83_T 1005.358 -0.117158
+MUSETT_T2_DSSD_X84_T 997.839 -0.117159
+MUSETT_T2_DSSD_X85_T 1000.082 -0.117336
+MUSETT_T2_DSSD_X86_T 1010.191 -0.118997
+MUSETT_T2_DSSD_X87_T 1028.329 -0.118879
+MUSETT_T2_DSSD_X88_T 1054.676 -0.120152
+MUSETT_T2_DSSD_X89_T 1035.166 -0.120143
+MUSETT_T2_DSSD_X90_T 1041.703 -0.120011
+MUSETT_T2_DSSD_X91_T 1016.252 -0.118788
+MUSETT_T2_DSSD_X92_T 1058.261 -0.120614
+MUSETT_T2_DSSD_X93_T 1073.091 -0.12112
+MUSETT_T2_DSSD_X94_T 1067.441 -0.12123
+MUSETT_T2_DSSD_X95_T 1030.954 -0.119394
+MUSETT_T2_DSSD_X96_T 980.425 -0.10895
+MUSETT_T2_DSSD_X97_T 977.496 -0.11099
+MUSETT_T2_DSSD_X98_T 976.422 -0.110483
+MUSETT_T2_DSSD_X99_T 938.171 -0.110494
+MUSETT_T2_DSSD_X100_T 972.45 -0.11163
+MUSETT_T2_DSSD_X101_T 987.496 -0.111573
+MUSETT_T2_DSSD_X102_T 973.077 -0.111368
+MUSETT_T2_DSSD_X103_T 978.656 -0.111888
+MUSETT_T2_DSSD_X104_T 992.736 -0.113122
+MUSETT_T2_DSSD_X105_T 1000.584 -0.112764
+MUSETT_T2_DSSD_X106_T 994.741 -0.113373
+MUSETT_T2_DSSD_X107_T 982.648 -0.112797
+MUSETT_T2_DSSD_X108_T 1002.384 -0.113176
+MUSETT_T2_DSSD_X109_T 1011.342 -0.113973
+MUSETT_T2_DSSD_X110_T 989.99 -0.114066
+MUSETT_T2_DSSD_X111_T 965.353 -0.113973
+MUSETT_T2_DSSD_X112_T 933.237 -0.108961
+MUSETT_T2_DSSD_X113_T 944.972 -0.109531
+MUSETT_T2_DSSD_X114_T 978.071 -0.110461
+MUSETT_T2_DSSD_X115_T 973.41 -0.110414
+MUSETT_T2_DSSD_X116_T 979.34 -0.112323
+MUSETT_T2_DSSD_X117_T 982.649 -0.11267
+MUSETT_T2_DSSD_X118_T 1013.146 -0.113333
+MUSETT_T2_DSSD_X119_T 1009.728 -0.113698
+MUSETT_T2_DSSD_X120_T 991.043 -0.113666
+MUSETT_T2_DSSD_X121_T 1014.817 -0.114745
+MUSETT_T2_DSSD_X122_T 991.147 -0.113673
+MUSETT_T2_DSSD_X123_T 1008.74 -0.11443
+MUSETT_T2_DSSD_X124_T 975.958 -0.113174
+MUSETT_T2_DSSD_X125_T 972.192 -0.113143
+MUSETT_T2_DSSD_X126_T 1017.521 -0.114176
+MUSETT_T2_DSSD_X127_T 1021.168 -0.114186
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M2_T/Cal_Str_Y_T_MM2.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M2_T/Cal_Str_Y_T_MM2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..97fbb2e2f0571869ec4ded464f0f4a373f9a69df
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M2_T/Cal_Str_Y_T_MM2.cal
@@ -0,0 +1,128 @@
+MUSETT_T2_DSSD_Y0_T 1035.908 -0.119525
+MUSETT_T2_DSSD_Y1_T 1035.229 -0.119903
+MUSETT_T2_DSSD_Y2_T 1030.146 -0.119776
+MUSETT_T2_DSSD_Y3_T 1040.541 -0.120524
+MUSETT_T2_DSSD_Y4_T 1061.612 -0.121165
+MUSETT_T2_DSSD_Y5_T 1044.106 -0.120947
+MUSETT_T2_DSSD_Y6_T 1037.447 -0.121526
+MUSETT_T2_DSSD_Y7_T 1044.705 -0.122366
+MUSETT_T2_DSSD_Y8_T 1042.269 -0.122539
+MUSETT_T2_DSSD_Y9_T 1052.929 -0.121307
+MUSETT_T2_DSSD_Y10_T 1040.257 -0.122275
+MUSETT_T2_DSSD_Y11_T 1053.327 -0.122898
+MUSETT_T2_DSSD_Y12_T 1086.343 -0.12312
+MUSETT_T2_DSSD_Y13_T 1064.505 -0.123746
+MUSETT_T2_DSSD_Y14_T 1059.405 -0.123621
+MUSETT_T2_DSSD_Y15_T 1052.538 -0.123744
+MUSETT_T2_DSSD_Y16_T 953.784 -0.113632
+MUSETT_T2_DSSD_Y17_T 960.621 -0.11359
+MUSETT_T2_DSSD_Y18_T 967.342 -0.113546
+MUSETT_T2_DSSD_Y19_T 983.341 -0.113526
+MUSETT_T2_DSSD_Y20_T 1008.293 -0.115367
+MUSETT_T2_DSSD_Y21_T 987.244 -0.117305
+MUSETT_T2_DSSD_Y22_T 994.386 -0.11682
+MUSETT_T2_DSSD_Y23_T 1011.751 -0.116216
+MUSETT_T2_DSSD_Y24_T 997.764 -0.118134
+MUSETT_T2_DSSD_Y25_T 1011.927 -0.118446
+MUSETT_T2_DSSD_Y26_T 1008.984 -0.117858
+MUSETT_T2_DSSD_Y27_T 1019.345 -0.11895
+MUSETT_T2_DSSD_Y28_T 1028.958 -0.118238
+MUSETT_T2_DSSD_Y29_T 1015.531 -0.118468
+MUSETT_T2_DSSD_Y30_T 1040.905 -0.118337
+MUSETT_T2_DSSD_Y31_T 1020.688 -0.116905
+MUSETT_T2_DSSD_Y32_T 900.332 -0.105393
+MUSETT_T2_DSSD_Y33_T 903.961 -0.106206
+MUSETT_T2_DSSD_Y34_T 937.106 -0.107711
+MUSETT_T2_DSSD_Y35_T 931.581 -0.10786
+MUSETT_T2_DSSD_Y36_T 949.203 -0.108297
+MUSETT_T2_DSSD_Y37_T 933.017 -0.107628
+MUSETT_T2_DSSD_Y38_T 942.778 -0.109574
+MUSETT_T2_DSSD_Y39_T 955.834 -0.109401
+MUSETT_T2_DSSD_Y40_T 947.911 -0.109756
+MUSETT_T2_DSSD_Y41_T 970.351 -0.110304
+MUSETT_T2_DSSD_Y42_T 955.445 -0.10979
+MUSETT_T2_DSSD_Y43_T 969.669 -0.110231
+MUSETT_T2_DSSD_Y44_T 972.489 -0.110532
+MUSETT_T2_DSSD_Y45_T 965.057 -0.110907
+MUSETT_T2_DSSD_Y46_T 972.835 -0.111371
+MUSETT_T2_DSSD_Y47_T 974.402 -0.110791
+MUSETT_T2_DSSD_Y48_T 927.359 -0.108016
+MUSETT_T2_DSSD_Y49_T 933.667 -0.109155
+MUSETT_T2_DSSD_Y50_T 930.706 -0.108834
+MUSETT_T2_DSSD_Y51_T 969.179 -0.110471
+MUSETT_T2_DSSD_Y52_T 968.793 -0.109622
+MUSETT_T2_DSSD_Y53_T 960.253 -0.110708
+MUSETT_T2_DSSD_Y54_T 971.112 -0.111116
+MUSETT_T2_DSSD_Y55_T 976.686 -0.11061
+MUSETT_T2_DSSD_Y56_T 969.21 -0.11216
+MUSETT_T2_DSSD_Y57_T 970.703 -0.111079
+MUSETT_T2_DSSD_Y58_T 963.371 -0.111393
+MUSETT_T2_DSSD_Y59_T 966.587 -0.11168
+MUSETT_T2_DSSD_Y60_T 1008.048 -0.11386
+MUSETT_T2_DSSD_Y61_T 971.868 -0.112068
+MUSETT_T2_DSSD_Y62_T 971.445 -0.111623
+MUSETT_T2_DSSD_Y63_T 976.206 -0.112593
+MUSETT_T2_DSSD_Y64_T 958.105 -0.111864
+MUSETT_T2_DSSD_Y65_T 963.914 -0.114242
+MUSETT_T2_DSSD_Y66_T 986.377 -0.114763
+MUSETT_T2_DSSD_Y67_T 987.384 -0.114477
+MUSETT_T2_DSSD_Y68_T 1011.261 -0.117701
+MUSETT_T2_DSSD_Y69_T 998.967 -0.116242
+MUSETT_T2_DSSD_Y70_T 998.106 -0.117144
+MUSETT_T2_DSSD_Y71_T 1003.636 -0.116783
+MUSETT_T2_DSSD_Y72_T 998.423 -0.115747
+MUSETT_T2_DSSD_Y73_T 1015.355 -0.115989
+MUSETT_T2_DSSD_Y74_T 1010.918 -0.116762
+MUSETT_T2_DSSD_Y75_T 1047.851 -0.118324
+MUSETT_T2_DSSD_Y76_T 1043.058 -0.117892
+MUSETT_T2_DSSD_Y77_T 1049.552 -0.118194
+MUSETT_T2_DSSD_Y78_T 1006.326 -0.117092
+MUSETT_T2_DSSD_Y79_T 1027.168 -0.117343
+MUSETT_T2_DSSD_Y80_T 997.413 -0.114246
+MUSETT_T2_DSSD_Y81_T 977.178 -0.113582
+MUSETT_T2_DSSD_Y82_T 1004.205 -0.115097
+MUSETT_T2_DSSD_Y83_T 996.957 -0.114574
+MUSETT_T2_DSSD_Y84_T 1004.96 -0.115653
+MUSETT_T2_DSSD_Y85_T 1015.959 -0.11692
+MUSETT_T2_DSSD_Y86_T 1002.949 -0.116695
+MUSETT_T2_DSSD_Y87_T 1035.062 -0.117388
+MUSETT_T2_DSSD_Y88_T 1004.289 -0.117739
+MUSETT_T2_DSSD_Y89_T 1017.427 -0.11797
+MUSETT_T2_DSSD_Y90_T 1026.009 -0.118525
+MUSETT_T2_DSSD_Y91_T 1005.017 -0.117371
+MUSETT_T2_DSSD_Y92_T 1031.886 -0.118331
+MUSETT_T2_DSSD_Y93_T 1012.702 -0.118283
+MUSETT_T2_DSSD_Y94_T 1031.697 -0.119174
+MUSETT_T2_DSSD_Y95_T 1021.741 -0.119806
+MUSETT_T2_DSSD_Y96_T 920.389 -0.108639
+MUSETT_T2_DSSD_Y97_T 906.063 -0.108189
+MUSETT_T2_DSSD_Y98_T 930.547 -0.109474
+MUSETT_T2_DSSD_Y99_T 932.877 -0.109308
+MUSETT_T2_DSSD_Y100_T 957.336 -0.110997
+MUSETT_T2_DSSD_Y101_T 980.502 -0.111938
+MUSETT_T2_DSSD_Y102_T 951.613 -0.110746
+MUSETT_T2_DSSD_Y103_T 975.319 -0.112691
+MUSETT_T2_DSSD_Y104_T 966.442 -0.112025
+MUSETT_T2_DSSD_Y105_T 968.892 -0.111507
+MUSETT_T2_DSSD_Y106_T 966.716 -0.111663
+MUSETT_T2_DSSD_Y107_T 966.437 -0.111623
+MUSETT_T2_DSSD_Y108_T 980.668 -0.112066
+MUSETT_T2_DSSD_Y109_T 970.782 -0.11214
+MUSETT_T2_DSSD_Y110_T 945.838 -0.111703
+MUSETT_T2_DSSD_Y111_T 936.338 -0.110525
+MUSETT_T2_DSSD_Y112_T 877.948 -0.102981
+MUSETT_T2_DSSD_Y113_T 897.823 -0.104976
+MUSETT_T2_DSSD_Y114_T 907.501 -0.105936
+MUSETT_T2_DSSD_Y115_T 917.812 -0.10575
+MUSETT_T2_DSSD_Y116_T 919.383 -0.106741
+MUSETT_T2_DSSD_Y117_T 919.032 -0.10628
+MUSETT_T2_DSSD_Y118_T 942.158 -0.107805
+MUSETT_T2_DSSD_Y119_T 933.057 -0.107966
+MUSETT_T2_DSSD_Y120_T 912.799 -0.106759
+MUSETT_T2_DSSD_Y121_T 947.398 -0.108381
+MUSETT_T2_DSSD_Y122_T 938.596 -0.108195
+MUSETT_T2_DSSD_Y123_T 1336.257 -0.108195
+MUSETT_T2_DSSD_Y124_T 938.061 -0.108519
+MUSETT_T2_DSSD_Y125_T 922.884 -0.10863
+MUSETT_T2_DSSD_Y126_T 926.419 -0.108768
+MUSETT_T2_DSSD_Y127_T 929.386 -0.108297
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M3_E/Cal_Str_X_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M3_E/Cal_Str_X_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..9b1188dc24eb87c8f4aa948cf40caaf52948952b
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M3_E/Cal_Str_X_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_E -62.3454 0.0076104399999999996
+MUSETT_T3_DSSD_X1_E -61.8634 0.0075515999999999995
+MUSETT_T3_DSSD_X2_E -62.1811 0.00759039
+MUSETT_T3_DSSD_X3_E -62.2796 0.00760252
+MUSETT_T3_DSSD_X4_E -61.9552 0.00756278
+MUSETT_T3_DSSD_X5_E -61.871 0.00755217
+MUSETT_T3_DSSD_X6_E -62.0777 0.0075777
+MUSETT_T3_DSSD_X7_E -61.6284 0.00752262
+MUSETT_T3_DSSD_X8_E -61.7616 0.00753889
+MUSETT_T3_DSSD_X9_E -61.847300000000004 0.00754932
+MUSETT_T3_DSSD_X10_E -61.774 0.00754014
+MUSETT_T3_DSSD_X11_E -62.9319 0.00768219
+MUSETT_T3_DSSD_X12_E -61.6179 0.00752151
+MUSETT_T3_DSSD_X13_E -61.8209 0.00754591
+MUSETT_T3_DSSD_X14_E -61.6738 0.0075285099999999995
+MUSETT_T3_DSSD_X15_E -62.5931 0.00764028
+MUSETT_T3_DSSD_X16_E -63.651300000000006 0.00776933
+MUSETT_T3_DSSD_X17_E -63.0399 0.00769489
+MUSETT_T3_DSSD_X18_E -62.9395 0.00768245
+MUSETT_T3_DSSD_X19_E -62.774300000000004 0.00766224
+MUSETT_T3_DSSD_X20_E -62.597 0.00764034
+MUSETT_T3_DSSD_X21_E -63.119099999999996 0.0077046200000000006
+MUSETT_T3_DSSD_X22_E -64.027 0.00781704
+MUSETT_T3_DSSD_X23_E -63.7683 0.00778409
+MUSETT_T3_DSSD_X24_E -62.735800000000005 0.00765836
+MUSETT_T3_DSSD_X25_E -63.4936 0.00775031
+MUSETT_T3_DSSD_X26_E -63.5509 0.00775727
+MUSETT_T3_DSSD_X27_E -63.3336 0.007730470000000001
+MUSETT_T3_DSSD_X28_E -63.4719 0.00774798
+MUSETT_T3_DSSD_X29_E -63.5336 0.0077557400000000006
+MUSETT_T3_DSSD_X30_E -64.51559999999999 0.00787525
+MUSETT_T3_DSSD_X31_E -63.6669 0.00777214
+MUSETT_T3_DSSD_X32_E -59.249199999999995 0.007233259999999999
+MUSETT_T3_DSSD_X33_E -59.097199999999994 0.00721503
+MUSETT_T3_DSSD_X34_E -58.0398 0.00708575
+MUSETT_T3_DSSD_X35_E -58.2015 0.00710525
+MUSETT_T3_DSSD_X36_E -58.6881 0.00716476
+MUSETT_T3_DSSD_X37_E -58.919 0.00719282
+MUSETT_T3_DSSD_X38_E -59.207699999999996 0.00722788
+MUSETT_T3_DSSD_X39_E -58.6177 0.00715599
+MUSETT_T3_DSSD_X40_E -59.1667 0.0072228399999999995
+MUSETT_T3_DSSD_X41_E -58.8419 0.00718358
+MUSETT_T3_DSSD_X42_E -58.957699999999996 0.00719746
+MUSETT_T3_DSSD_X43_E -10.0 0.0
+MUSETT_T3_DSSD_X44_E -59.2036 0.007227470000000001
+MUSETT_T3_DSSD_X45_E -59.3219 0.0072412200000000005
+MUSETT_T3_DSSD_X46_E -58.7385 0.0071700900000000005
+MUSETT_T3_DSSD_X47_E -59.1352 0.00721821
+MUSETT_T3_DSSD_X48_E -57.337 0.00699885
+MUSETT_T3_DSSD_X49_E -57.1053 0.00697094
+MUSETT_T3_DSSD_X50_E -56.852599999999995 0.00693986
+MUSETT_T3_DSSD_X51_E -57.1239 0.00697353
+MUSETT_T3_DSSD_X52_E -56.902800000000006 0.00694725
+MUSETT_T3_DSSD_X53_E -57.3476 0.00700123
+MUSETT_T3_DSSD_X54_E -56.6641 0.00691725
+MUSETT_T3_DSSD_X55_E -57.2266 0.006986849999999999
+MUSETT_T3_DSSD_X56_E -57.5807 0.0070296
+MUSETT_T3_DSSD_X57_E -56.509800000000006 0.00689853
+MUSETT_T3_DSSD_X58_E -57.4386 0.00701266
+MUSETT_T3_DSSD_X59_E -57.046800000000005 0.00696439
+MUSETT_T3_DSSD_X60_E -56.283199999999994 0.00687125
+MUSETT_T3_DSSD_X61_E -56.778800000000004 0.006931720000000001
+MUSETT_T3_DSSD_X62_E -56.6345 0.006914920000000001
+MUSETT_T3_DSSD_X63_E -56.434400000000004 0.006890240000000001
+MUSETT_T3_DSSD_X64_E -64.201 0.00783647
+MUSETT_T3_DSSD_X65_E -63.8189 0.00779071
+MUSETT_T3_DSSD_X66_E -63.593300000000006 0.0077629000000000005
+MUSETT_T3_DSSD_X67_E -63.735 0.00777947
+MUSETT_T3_DSSD_X68_E -63.6611 0.007770330000000001
+MUSETT_T3_DSSD_X69_E -63.245 0.00771983
+MUSETT_T3_DSSD_X70_E -64.3478 0.00785448
+MUSETT_T3_DSSD_X71_E -62.471 0.007625829999999999
+MUSETT_T3_DSSD_X72_E -62.6655 0.00764955
+MUSETT_T3_DSSD_X73_E -62.9784 0.007687579999999999
+MUSETT_T3_DSSD_X74_E -63.1195 0.007704519999999999
+MUSETT_T3_DSSD_X75_E -63.3902 0.00773771
+MUSETT_T3_DSSD_X76_E -64.1306 0.007828
+MUSETT_T3_DSSD_X77_E -62.469300000000004 0.00762517
+MUSETT_T3_DSSD_X78_E -62.6117 0.0076422999999999994
+MUSETT_T3_DSSD_X79_E -62.988099999999996 0.007688550000000001
+MUSETT_T3_DSSD_X80_E -62.477199999999996 0.0076262
+MUSETT_T3_DSSD_X81_E -62.7775 0.007663140000000001
+MUSETT_T3_DSSD_X82_E -62.7052 0.00765399
+MUSETT_T3_DSSD_X83_E -62.6456 0.00764655
+MUSETT_T3_DSSD_X84_E -62.0385 0.00757247
+MUSETT_T3_DSSD_X85_E -62.4615 0.00762416
+MUSETT_T3_DSSD_X86_E -62.435900000000004 0.00762103
+MUSETT_T3_DSSD_X87_E -62.138400000000004 0.00758521
+MUSETT_T3_DSSD_X88_E -62.2942 0.00760396
+MUSETT_T3_DSSD_X89_E -62.708800000000004 0.00765519
+MUSETT_T3_DSSD_X90_E -62.352199999999996 0.007611
+MUSETT_T3_DSSD_X91_E -62.0096 0.007569569999999999
+MUSETT_T3_DSSD_X92_E -62.8074 0.00766718
+MUSETT_T3_DSSD_X93_E -62.5507 0.00763529
+MUSETT_T3_DSSD_X94_E -62.1641 0.0075882
+MUSETT_T3_DSSD_X95_E -62.407300000000006 0.007617479999999999
+MUSETT_T3_DSSD_X96_E -56.1247 0.0068501099999999995
+MUSETT_T3_DSSD_X97_E -55.925 0.0068266
+MUSETT_T3_DSSD_X98_E -55.174099999999996 0.00673479
+MUSETT_T3_DSSD_X99_E -55.743 0.0068047
+MUSETT_T3_DSSD_X100_E -56.1046 0.00684875
+MUSETT_T3_DSSD_X101_E -55.9227 0.00682573
+MUSETT_T3_DSSD_X102_E -55.941 0.00682888
+MUSETT_T3_DSSD_X103_E -55.2615 0.0067447
+MUSETT_T3_DSSD_X104_E -55.5471 0.006779899999999999
+MUSETT_T3_DSSD_X105_E -55.994800000000005 0.0068350799999999995
+MUSETT_T3_DSSD_X106_E -55.8782 0.00682019
+MUSETT_T3_DSSD_X107_E -55.7408 0.00680375
+MUSETT_T3_DSSD_X108_E -56.8994 0.006945509999999999
+MUSETT_T3_DSSD_X109_E -56.2764 0.00686962
+MUSETT_T3_DSSD_X110_E -55.830400000000004 0.006814359999999999
+MUSETT_T3_DSSD_X111_E -55.749199999999995 0.00680431
+MUSETT_T3_DSSD_X112_E -57.546800000000005 0.00702514
+MUSETT_T3_DSSD_X113_E -56.9555 0.00695237
+MUSETT_T3_DSSD_X114_E -57.536300000000004 0.00702336
+MUSETT_T3_DSSD_X115_E -56.899800000000006 0.00694606
+MUSETT_T3_DSSD_X116_E -58.093599999999995 0.00709129
+MUSETT_T3_DSSD_X117_E -57.1965 0.0069822899999999995
+MUSETT_T3_DSSD_X118_E -57.4621 0.00701442
+MUSETT_T3_DSSD_X119_E -56.3701 0.00688115
+MUSETT_T3_DSSD_X120_E -56.7872 0.006931860000000001
+MUSETT_T3_DSSD_X121_E -57.91 0.007068990000000001
+MUSETT_T3_DSSD_X122_E -57.4735 0.0070155700000000005
+MUSETT_T3_DSSD_X123_E -57.0592 0.0069651800000000005
+MUSETT_T3_DSSD_X124_E -57.6708 0.0070396700000000005
+MUSETT_T3_DSSD_X125_E -56.7384 0.00692521
+MUSETT_T3_DSSD_X126_E -57.8611 0.0070623100000000005
+MUSETT_T3_DSSD_X127_E -56.5574 0.0069035500000000005
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M3_E/Cal_Str_Y_E_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M3_E/Cal_Str_Y_E_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..e606205a9d0148e6dbdb2fecc1194d299fde685b
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M3_E/Cal_Str_Y_E_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_E 60.0329 -0.007327709999999999
+MUSETT_T3_DSSD_Y1_E 58.8808 -0.00718699
+MUSETT_T3_DSSD_Y2_E 60.0231 -0.0073265399999999994
+MUSETT_T3_DSSD_Y3_E 59.9048 -0.0073121900000000005
+MUSETT_T3_DSSD_Y4_E 59.7473 -0.00729256
+MUSETT_T3_DSSD_Y5_E 60.0448 -0.0073285
+MUSETT_T3_DSSD_Y6_E 59.6746 -0.00728351
+MUSETT_T3_DSSD_Y7_E 60.089 -0.00733432
+MUSETT_T3_DSSD_Y8_E 60.3902 -0.00737087
+MUSETT_T3_DSSD_Y9_E 60.3245 -0.00736226
+MUSETT_T3_DSSD_Y10_E 60.063 -0.00733084
+MUSETT_T3_DSSD_Y11_E 59.746 -0.00729223
+MUSETT_T3_DSSD_Y12_E 59.628699999999995 -0.00727802
+MUSETT_T3_DSSD_Y13_E 59.605599999999995 -0.00727604
+MUSETT_T3_DSSD_Y14_E 60.513400000000004 -0.007386370000000001
+MUSETT_T3_DSSD_Y15_E 59.7058 -0.0072876799999999995
+MUSETT_T3_DSSD_Y16_E 62.8992 -0.00767713
+MUSETT_T3_DSSD_Y17_E 63.0672 -0.0076976300000000004
+MUSETT_T3_DSSD_Y18_E 62.1649 -0.00758739
+MUSETT_T3_DSSD_Y19_E 62.6449 -0.0076462000000000006
+MUSETT_T3_DSSD_Y20_E 63.1556 -0.00770868
+MUSETT_T3_DSSD_Y21_E 63.476699999999994 -0.0077476
+MUSETT_T3_DSSD_Y22_E 62.9093 -0.0076780400000000006
+MUSETT_T3_DSSD_Y23_E 62.9228 -0.0076801199999999995
+MUSETT_T3_DSSD_Y24_E 63.4611 -0.0077455
+MUSETT_T3_DSSD_Y25_E 63.380900000000004 -0.007736379999999999
+MUSETT_T3_DSSD_Y26_E 62.5085 -0.00762917
+MUSETT_T3_DSSD_Y27_E 63.3624 -0.00773365
+MUSETT_T3_DSSD_Y28_E 62.4582 -0.00762392
+MUSETT_T3_DSSD_Y29_E 62.8858 -0.00767565
+MUSETT_T3_DSSD_Y30_E 63.0297 -0.00769335
+MUSETT_T3_DSSD_Y31_E 62.9235 -0.00768066
+MUSETT_T3_DSSD_Y32_E 56.0742 -0.00684465
+MUSETT_T3_DSSD_Y33_E 56.1502 -0.00685354
+MUSETT_T3_DSSD_Y34_E 55.7894 -0.00680959
+MUSETT_T3_DSSD_Y35_E 55.6388 -0.0067909699999999995
+MUSETT_T3_DSSD_Y36_E 55.6903 -0.0067972
+MUSETT_T3_DSSD_Y37_E 56.1727 -0.006856340000000001
+MUSETT_T3_DSSD_Y38_E 55.8889 -0.00682181
+MUSETT_T3_DSSD_Y39_E 55.509 -0.00677536
+MUSETT_T3_DSSD_Y40_E 55.3116 -0.006750600000000001
+MUSETT_T3_DSSD_Y41_E 56.115300000000005 -0.00684918
+MUSETT_T3_DSSD_Y42_E 55.9155 -0.0068248
+MUSETT_T3_DSSD_Y43_E 55.329 -0.0067532899999999995
+MUSETT_T3_DSSD_Y44_E 55.6695 -0.00679444
+MUSETT_T3_DSSD_Y45_E 55.588699999999996 -0.00678496
+MUSETT_T3_DSSD_Y46_E 55.898 -0.0068231
+MUSETT_T3_DSSD_Y47_E 55.7962 -0.00681045
+MUSETT_T3_DSSD_Y48_E 56.642199999999995 -0.0069143600000000005
+MUSETT_T3_DSSD_Y49_E 56.9913 -0.00695514
+MUSETT_T3_DSSD_Y50_E 57.0754 -0.00696596
+MUSETT_T3_DSSD_Y51_E 56.8542 -0.00693952
+MUSETT_T3_DSSD_Y52_E 56.4075 -0.00688481
+MUSETT_T3_DSSD_Y53_E 56.9334 -0.00694974
+MUSETT_T3_DSSD_Y54_E 56.603199999999994 -0.0069089
+MUSETT_T3_DSSD_Y55_E 56.9847 -0.00695558
+MUSETT_T3_DSSD_Y56_E 56.9811 -0.0069557
+MUSETT_T3_DSSD_Y57_E 56.5146 -0.00689801
+MUSETT_T3_DSSD_Y58_E 57.4491 -0.007012190000000001
+MUSETT_T3_DSSD_Y59_E 56.938199999999995 -0.00694962
+MUSETT_T3_DSSD_Y60_E 57.8954 -0.0070662
+MUSETT_T3_DSSD_Y61_E 57.0338 -0.00696212
+MUSETT_T3_DSSD_Y62_E 56.704 -0.00692109
+MUSETT_T3_DSSD_Y63_E 57.3909 -0.00700491
+MUSETT_T3_DSSD_Y64_E 59.3865 -0.00724871
+MUSETT_T3_DSSD_Y65_E 60.032 -0.007326640000000001
+MUSETT_T3_DSSD_Y66_E 59.4611 -0.00725777
+MUSETT_T3_DSSD_Y67_E 59.2943 -0.0072374299999999996
+MUSETT_T3_DSSD_Y68_E 59.3633 -0.00724565
+MUSETT_T3_DSSD_Y69_E 58.6689 -0.00716081
+MUSETT_T3_DSSD_Y70_E 59.1782 -0.00722299
+MUSETT_T3_DSSD_Y71_E 59.8785 -0.00730862
+MUSETT_T3_DSSD_Y72_E 60.0806 -0.0073331099999999995
+MUSETT_T3_DSSD_Y73_E 59.5259 -0.00726506
+MUSETT_T3_DSSD_Y74_E 59.4035 -0.00725068
+MUSETT_T3_DSSD_Y75_E 59.501400000000004 -0.007262520000000001
+MUSETT_T3_DSSD_Y76_E 59.5049 -0.00726298
+MUSETT_T3_DSSD_Y77_E 59.322 -0.0072407899999999996
+MUSETT_T3_DSSD_Y78_E 59.1142 -0.007214839999999999
+MUSETT_T3_DSSD_Y79_E 59.9343 -0.00731545
+MUSETT_T3_DSSD_Y80_E 62.786300000000004 -0.00766418
+MUSETT_T3_DSSD_Y81_E 62.688199999999995 -0.00765225
+MUSETT_T3_DSSD_Y82_E 62.484300000000005 -0.00762731
+MUSETT_T3_DSSD_Y83_E 62.1117 -0.00758204
+MUSETT_T3_DSSD_Y84_E 62.0189 -0.00757048
+MUSETT_T3_DSSD_Y85_E 62.7224 -0.00765547
+MUSETT_T3_DSSD_Y86_E 62.2116 -0.0075937900000000004
+MUSETT_T3_DSSD_Y87_E 62.970099999999995 -0.0076868299999999995
+MUSETT_T3_DSSD_Y88_E 62.6058 -0.00764201
+MUSETT_T3_DSSD_Y89_E 62.4711 -0.00762554
+MUSETT_T3_DSSD_Y90_E 61.773900000000005 -0.007540130000000001
+MUSETT_T3_DSSD_Y91_E 61.966 -0.00756438
+MUSETT_T3_DSSD_Y92_E 61.829699999999995 -0.00754636
+MUSETT_T3_DSSD_Y93_E 62.107 -0.00758056
+MUSETT_T3_DSSD_Y94_E 61.9468 -0.00756126
+MUSETT_T3_DSSD_Y95_E 61.7618 -0.0075396099999999995
+MUSETT_T3_DSSD_Y96_E 56.6782 -0.0069178
+MUSETT_T3_DSSD_Y97_E 56.796099999999996 -0.00693199
+MUSETT_T3_DSSD_Y98_E 56.2539 -0.00686602
+MUSETT_T3_DSSD_Y99_E 55.8918 -0.00682192
+MUSETT_T3_DSSD_Y100_E 56.180099999999996 -0.00685704
+MUSETT_T3_DSSD_Y101_E 56.2205 -0.0068622
+MUSETT_T3_DSSD_Y102_E 55.882 -0.00682088
+MUSETT_T3_DSSD_Y103_E 55.9811 -0.00683279
+MUSETT_T3_DSSD_Y104_E 55.7549 -0.00680516
+MUSETT_T3_DSSD_Y105_E 56.267300000000006 -0.00686773
+MUSETT_T3_DSSD_Y106_E 56.4297 -0.00688763
+MUSETT_T3_DSSD_Y107_E 56.237199999999994 -0.006864220000000001
+MUSETT_T3_DSSD_Y108_E 55.6892 -0.00679724
+MUSETT_T3_DSSD_Y109_E 55.7875 -0.00680907
+MUSETT_T3_DSSD_Y110_E 56.6244 -0.0069112900000000005
+MUSETT_T3_DSSD_Y111_E 56.5673 -0.00690457
+MUSETT_T3_DSSD_Y112_E 57.3063 -0.00699514
+MUSETT_T3_DSSD_Y113_E 57.048300000000005 -0.006964260000000001
+MUSETT_T3_DSSD_Y114_E 56.9765 -0.00695364
+MUSETT_T3_DSSD_Y115_E 56.8484 -0.00693798
+MUSETT_T3_DSSD_Y116_E 57.5818 -0.00702703
+MUSETT_T3_DSSD_Y117_E 57.1503 -0.00697454
+MUSETT_T3_DSSD_Y118_E 56.7087 -0.006920740000000001
+MUSETT_T3_DSSD_Y119_E 57.781 -0.00705185
+MUSETT_T3_DSSD_Y120_E 57.3029 -0.00699462
+MUSETT_T3_DSSD_Y121_E 56.8714 -0.006941340000000001
+MUSETT_T3_DSSD_Y122_E 57.2749 -0.0069901799999999995
+MUSETT_T3_DSSD_Y123_E 56.9214 -0.00694684
+MUSETT_T3_DSSD_Y124_E 57.5959 -0.00703175
+MUSETT_T3_DSSD_Y125_E 56.9185 -0.0069486800000000005
+MUSETT_T3_DSSD_Y126_E 57.363699999999994 -0.00700332
+MUSETT_T3_DSSD_Y127_E 57.3663 -0.007001019999999999
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M3_T/Cal_Str_X_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M3_T/Cal_Str_X_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..28c80df744c991ec8f7ff04f79a49088218299a3
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M3_T/Cal_Str_X_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_X0_T 981.478 -0.113591
+MUSETT_T3_DSSD_X1_T 1013.776 -0.115254
+MUSETT_T3_DSSD_X2_T 992.886 -0.115822
+MUSETT_T3_DSSD_X3_T 1013.44 -0.116042
+MUSETT_T3_DSSD_X4_T 990.472 -0.115096
+MUSETT_T3_DSSD_X5_T 1028.134 -0.11686
+MUSETT_T3_DSSD_X6_T 1024.899 -0.117385
+MUSETT_T3_DSSD_X7_T 993.024 -0.118019
+MUSETT_T3_DSSD_X8_T 998.524 -0.117779
+MUSETT_T3_DSSD_X9_T 1018.624 -0.117496
+MUSETT_T3_DSSD_X10_T 1032.674 -0.117795
+MUSETT_T3_DSSD_X11_T 1034.132 -0.119273
+MUSETT_T3_DSSD_X12_T 1042.32 -0.118031
+MUSETT_T3_DSSD_X13_T 1022.526 -0.118805
+MUSETT_T3_DSSD_X14_T 1008.783 -0.118524
+MUSETT_T3_DSSD_X15_T 1380.253 -0.119127
+MUSETT_T3_DSSD_X16_T 977.848 -0.117029
+MUSETT_T3_DSSD_X17_T 985.148 -0.116582
+MUSETT_T3_DSSD_X18_T 1007.934 -0.11886
+MUSETT_T3_DSSD_X19_T 1034.22 -0.118386
+MUSETT_T3_DSSD_X20_T 1041.452 -0.119229
+MUSETT_T3_DSSD_X21_T 1056.51 -0.120114
+MUSETT_T3_DSSD_X22_T 1040.825 -0.119177
+MUSETT_T3_DSSD_X23_T 1018.903 -0.119693
+MUSETT_T3_DSSD_X24_T 1005.051 -0.119405
+MUSETT_T3_DSSD_X25_T 1017.342 -0.119523
+MUSETT_T3_DSSD_X26_T 1069.305 -0.12115
+MUSETT_T3_DSSD_X27_T 1038.198 -0.120628
+MUSETT_T3_DSSD_X28_T 1056.422 -0.121885
+MUSETT_T3_DSSD_X29_T 1057.034 -0.121035
+MUSETT_T3_DSSD_X30_T 1051.197 -0.121233
+MUSETT_T3_DSSD_X31_T 1061.554 -0.120654
+MUSETT_T3_DSSD_X32_T 932.139 -0.108693
+MUSETT_T3_DSSD_X33_T 935.391 -0.109485
+MUSETT_T3_DSSD_X34_T 925.145 -0.110421
+MUSETT_T3_DSSD_X35_T 925.446 -0.109588
+MUSETT_T3_DSSD_X36_T 942.302 -0.110301
+MUSETT_T3_DSSD_X37_T 964.873 -0.111327
+MUSETT_T3_DSSD_X38_T 959.552 -0.111495
+MUSETT_T3_DSSD_X39_T 961.22 -0.112521
+MUSETT_T3_DSSD_X40_T 958.125 -0.11347
+MUSETT_T3_DSSD_X41_T 958.974 -0.112717
+MUSETT_T3_DSSD_X42_T 959.452 -0.112335
+MUSETT_T3_DSSD_X43_T 450.0 -0.112964
+MUSETT_T3_DSSD_X44_T 963.434 -0.113245
+MUSETT_T3_DSSD_X45_T 964.97 -0.11258
+MUSETT_T3_DSSD_X46_T 990.533 -0.113476
+MUSETT_T3_DSSD_X47_T 978.322 -0.113256
+MUSETT_T3_DSSD_X48_T 902.185 -0.104661
+MUSETT_T3_DSSD_X49_T 904.849 -0.104634
+MUSETT_T3_DSSD_X50_T 911.556 -0.106155
+MUSETT_T3_DSSD_X51_T 912.664 -0.107364
+MUSETT_T3_DSSD_X52_T 918.408 -0.107368
+MUSETT_T3_DSSD_X53_T 910.764 -0.106861
+MUSETT_T3_DSSD_X54_T 909.726 -0.108382
+MUSETT_T3_DSSD_X55_T 922.928 -0.108733
+MUSETT_T3_DSSD_X56_T 913.563 -0.10844
+MUSETT_T3_DSSD_X57_T 950.346 -0.10908
+MUSETT_T3_DSSD_X58_T 931.96 -0.108538
+MUSETT_T3_DSSD_X59_T 931.249 -0.10849
+MUSETT_T3_DSSD_X60_T 924.55 -0.109312
+MUSETT_T3_DSSD_X61_T 915.129 -0.109445
+MUSETT_T3_DSSD_X62_T 911.749 -0.107803
+MUSETT_T3_DSSD_X63_T 953.036 -0.108862
+MUSETT_T3_DSSD_X64_T 1010.103 -0.119126
+MUSETT_T3_DSSD_X65_T 1015.548 -0.119789
+MUSETT_T3_DSSD_X66_T 1031.118 -0.119851
+MUSETT_T3_DSSD_X67_T 1055.182 -0.121753
+MUSETT_T3_DSSD_X68_T 1032.573 -0.121824
+MUSETT_T3_DSSD_X69_T 1014.126 -0.121446
+MUSETT_T3_DSSD_X70_T 1033.269 -0.121893
+MUSETT_T3_DSSD_X71_T 1037.066 -0.122347
+MUSETT_T3_DSSD_X72_T 1040.885 -0.121883
+MUSETT_T3_DSSD_X73_T 1043.891 -0.122684
+MUSETT_T3_DSSD_X74_T 1052.634 -0.123722
+MUSETT_T3_DSSD_X75_T 1066.965 -0.124938
+MUSETT_T3_DSSD_X76_T 1047.918 -0.122709
+MUSETT_T3_DSSD_X77_T 1032.053 -0.12265
+MUSETT_T3_DSSD_X78_T 1059.518 -0.124061
+MUSETT_T3_DSSD_X79_T 1407.005 -0.123313
+MUSETT_T3_DSSD_X80_T 966.252 -0.11381
+MUSETT_T3_DSSD_X81_T 979.589 -0.114558
+MUSETT_T3_DSSD_X82_T 972.243 -0.114986
+MUSETT_T3_DSSD_X83_T 974.391 -0.114804
+MUSETT_T3_DSSD_X84_T 985.895 -0.116619
+MUSETT_T3_DSSD_X85_T 992.12 -0.11693
+MUSETT_T3_DSSD_X86_T 971.958 -0.116299
+MUSETT_T3_DSSD_X87_T 999.22 -0.116863
+MUSETT_T3_DSSD_X88_T 995.257 -0.118161
+MUSETT_T3_DSSD_X89_T 998.809 -0.117687
+MUSETT_T3_DSSD_X90_T 1003.937 -0.118304
+MUSETT_T3_DSSD_X91_T 1015.556 -0.119256
+MUSETT_T3_DSSD_X92_T 1034.492 -0.119241
+MUSETT_T3_DSSD_X93_T 1037.827 -0.119186
+MUSETT_T3_DSSD_X94_T 1016.003 -0.118879
+MUSETT_T3_DSSD_X95_T 1022.41 -0.118278
+MUSETT_T3_DSSD_X96_T 903.34 -0.104124
+MUSETT_T3_DSSD_X97_T 908.659 -0.104728
+MUSETT_T3_DSSD_X98_T 911.833 -0.104753
+MUSETT_T3_DSSD_X99_T 935.021 -0.105492
+MUSETT_T3_DSSD_X100_T 920.352 -0.106693
+MUSETT_T3_DSSD_X101_T 903.814 -0.10614
+MUSETT_T3_DSSD_X102_T 915.26 -0.106708
+MUSETT_T3_DSSD_X103_T 910.919 -0.106567
+MUSETT_T3_DSSD_X104_T 927.103 -0.107671
+MUSETT_T3_DSSD_X105_T 942.252 -0.108216
+MUSETT_T3_DSSD_X106_T 926.652 -0.107225
+MUSETT_T3_DSSD_X107_T 920.84 -0.108561
+MUSETT_T3_DSSD_X108_T 945.497 -0.108609
+MUSETT_T3_DSSD_X109_T 958.937 -0.108191
+MUSETT_T3_DSSD_X110_T 934.461 -0.109337
+MUSETT_T3_DSSD_X111_T 933.963 -0.108709
+MUSETT_T3_DSSD_X112_T 875.263 -0.103629
+MUSETT_T3_DSSD_X113_T 890.444 -0.10481
+MUSETT_T3_DSSD_X114_T 907.63 -0.1049
+MUSETT_T3_DSSD_X115_T 927.243 -0.105647
+MUSETT_T3_DSSD_X116_T 959.458 -0.126949
+MUSETT_T3_DSSD_X117_T 908.137 -0.106145
+MUSETT_T3_DSSD_X118_T 929.508 -0.107055
+MUSETT_T3_DSSD_X119_T 923.594 -0.10675
+MUSETT_T3_DSSD_X120_T 909.752 -0.107137
+MUSETT_T3_DSSD_X121_T 930.673 -0.107599
+MUSETT_T3_DSSD_X122_T 922.861 -0.107093
+MUSETT_T3_DSSD_X123_T 953.557 -0.108252
+MUSETT_T3_DSSD_X124_T 947.109 -0.107522
+MUSETT_T3_DSSD_X125_T 937.275 -0.108336
+MUSETT_T3_DSSD_X126_T 923.967 -0.106793
+MUSETT_T3_DSSD_X127_T 933.021 -0.107896
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M3_T/Cal_Str_Y_T_MM3.cal b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M3_T/Cal_Str_Y_T_MM3.cal
new file mode 100644
index 0000000000000000000000000000000000000000..9b8846cc4f176fc50d4fa46384d19325decdae5a
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/M3_T/Cal_Str_Y_T_MM3.cal
@@ -0,0 +1,128 @@
+MUSETT_T3_DSSD_Y0_T 965.818 -0.11121
+MUSETT_T3_DSSD_Y1_T 966.765 -0.112154
+MUSETT_T3_DSSD_Y2_T 954.577 -0.113241
+MUSETT_T3_DSSD_Y3_T 985.94 -0.114409
+MUSETT_T3_DSSD_Y4_T 973.809 -0.114032
+MUSETT_T3_DSSD_Y5_T 976.61 -0.114994
+MUSETT_T3_DSSD_Y6_T 966.665 -0.115552
+MUSETT_T3_DSSD_Y7_T 995.977 -0.115546
+MUSETT_T3_DSSD_Y8_T 1000.593 -0.116506
+MUSETT_T3_DSSD_Y9_T 997.356 -0.117006
+MUSETT_T3_DSSD_Y10_T 1007.099 -0.117251
+MUSETT_T3_DSSD_Y11_T 976.2 -0.117093
+MUSETT_T3_DSSD_Y12_T 996.986 -0.118272
+MUSETT_T3_DSSD_Y13_T 1003.553 -0.119048
+MUSETT_T3_DSSD_Y14_T 999.252 -0.118075
+MUSETT_T3_DSSD_Y15_T 995.542 -0.118941
+MUSETT_T3_DSSD_Y16_T 988.937 -0.117174
+MUSETT_T3_DSSD_Y17_T 1017.194 -0.118815
+MUSETT_T3_DSSD_Y18_T 995.754 -0.118931
+MUSETT_T3_DSSD_Y19_T 1008.982 -0.119638
+MUSETT_T3_DSSD_Y20_T 1010.829 -0.12034
+MUSETT_T3_DSSD_Y21_T 1024.68 -0.121551
+MUSETT_T3_DSSD_Y22_T 1023.799 -0.120998
+MUSETT_T3_DSSD_Y23_T 1025.535 -0.120321
+MUSETT_T3_DSSD_Y24_T 1032.0 -0.121073
+MUSETT_T3_DSSD_Y25_T 1019.156 -0.121839
+MUSETT_T3_DSSD_Y26_T 1023.081 -0.121856
+MUSETT_T3_DSSD_Y27_T 1041.31 -0.122649
+MUSETT_T3_DSSD_Y28_T 1063.915 -0.12302
+MUSETT_T3_DSSD_Y29_T 1032.953 -0.121668
+MUSETT_T3_DSSD_Y30_T 1050.178 -0.122794
+MUSETT_T3_DSSD_Y31_T 1062.626 -0.122927
+MUSETT_T3_DSSD_Y32_T 895.255 -0.105446
+MUSETT_T3_DSSD_Y33_T 895.379 -0.105092
+MUSETT_T3_DSSD_Y34_T 880.749 -0.10573
+MUSETT_T3_DSSD_Y35_T 900.863 -0.105345
+MUSETT_T3_DSSD_Y36_T 926.509 -0.106744
+MUSETT_T3_DSSD_Y37_T 891.89 -0.106654
+MUSETT_T3_DSSD_Y38_T 907.576 -0.107294
+MUSETT_T3_DSSD_Y39_T 926.668 -0.108361
+MUSETT_T3_DSSD_Y40_T 927.098 -0.10799
+MUSETT_T3_DSSD_Y41_T 910.693 -0.10846
+MUSETT_T3_DSSD_Y42_T 916.7 -0.109593
+MUSETT_T3_DSSD_Y43_T 937.564 -0.109195
+MUSETT_T3_DSSD_Y44_T 922.173 -0.108568
+MUSETT_T3_DSSD_Y45_T 946.522 -0.109804
+MUSETT_T3_DSSD_Y46_T 940.05 -0.110263
+MUSETT_T3_DSSD_Y47_T 939.531 -0.109382
+MUSETT_T3_DSSD_Y48_T 891.441 -0.105997
+MUSETT_T3_DSSD_Y49_T 914.057 -0.106772
+MUSETT_T3_DSSD_Y50_T 912.988 -0.108217
+MUSETT_T3_DSSD_Y51_T 939.768 -0.108527
+MUSETT_T3_DSSD_Y52_T 913.038 -0.107825
+MUSETT_T3_DSSD_Y53_T 918.354 -0.108862
+MUSETT_T3_DSSD_Y54_T 912.852 -0.109456
+MUSETT_T3_DSSD_Y55_T 935.742 -0.110152
+MUSETT_T3_DSSD_Y56_T 933.587 -0.110718
+MUSETT_T3_DSSD_Y57_T 935.648 -0.11056
+MUSETT_T3_DSSD_Y58_T 951.779 -0.111636
+MUSETT_T3_DSSD_Y59_T 937.444 -0.109934
+MUSETT_T3_DSSD_Y60_T 954.766 -0.111581
+MUSETT_T3_DSSD_Y61_T 959.098 -0.111694
+MUSETT_T3_DSSD_Y62_T 943.527 -0.1111
+MUSETT_T3_DSSD_Y63_T 946.443 -0.11144
+MUSETT_T3_DSSD_Y64_T 927.547 -0.109216
+MUSETT_T3_DSSD_Y65_T 923.676 -0.110026
+MUSETT_T3_DSSD_Y66_T 920.88 -0.110106
+MUSETT_T3_DSSD_Y67_T 940.18 -0.11114
+MUSETT_T3_DSSD_Y68_T 951.936 -0.11252
+MUSETT_T3_DSSD_Y69_T 964.044 -0.113544
+MUSETT_T3_DSSD_Y70_T 970.865 -0.112672
+MUSETT_T3_DSSD_Y71_T 958.58 -0.112491
+MUSETT_T3_DSSD_Y72_T 986.258 -0.114462
+MUSETT_T3_DSSD_Y73_T 985.499 -0.11354
+MUSETT_T3_DSSD_Y74_T 973.383 -0.115517
+MUSETT_T3_DSSD_Y75_T 988.044 -0.115086
+MUSETT_T3_DSSD_Y76_T 1004.685 -0.116618
+MUSETT_T3_DSSD_Y77_T 974.725 -0.115232
+MUSETT_T3_DSSD_Y78_T 970.963 -0.114343
+MUSETT_T3_DSSD_Y79_T 986.998 -0.114947
+MUSETT_T3_DSSD_Y80_T 988.605 -0.117288
+MUSETT_T3_DSSD_Y81_T 1000.477 -0.118727
+MUSETT_T3_DSSD_Y82_T 998.944 -0.119474
+MUSETT_T3_DSSD_Y83_T 1021.647 -0.119909
+MUSETT_T3_DSSD_Y84_T 1015.851 -0.120116
+MUSETT_T3_DSSD_Y85_T 1023.105 -0.120975
+MUSETT_T3_DSSD_Y86_T 1023.602 -0.120606
+MUSETT_T3_DSSD_Y87_T 1048.071 -0.12076
+MUSETT_T3_DSSD_Y88_T 1045.295 -0.121336
+MUSETT_T3_DSSD_Y89_T 1041.423 -0.122713
+MUSETT_T3_DSSD_Y90_T 1040.742 -0.1231
+MUSETT_T3_DSSD_Y91_T 1028.684 -0.121678
+MUSETT_T3_DSSD_Y92_T 1029.478 -0.122697
+MUSETT_T3_DSSD_Y93_T 1040.536 -0.123087
+MUSETT_T3_DSSD_Y94_T 1025.036 -0.122144
+MUSETT_T3_DSSD_Y95_T 1037.833 -0.122274
+MUSETT_T3_DSSD_Y96_T 893.3 -0.105573
+MUSETT_T3_DSSD_Y97_T 883.47 -0.105224
+MUSETT_T3_DSSD_Y98_T 912.274 -0.105791
+MUSETT_T3_DSSD_Y99_T 907.618 -0.106904
+MUSETT_T3_DSSD_Y100_T 915.064 -0.107789
+MUSETT_T3_DSSD_Y101_T 914.687 -0.107742
+MUSETT_T3_DSSD_Y102_T 915.739 -0.109085
+MUSETT_T3_DSSD_Y103_T 907.682 -0.108126
+MUSETT_T3_DSSD_Y104_T 939.179 -0.108999
+MUSETT_T3_DSSD_Y105_T 897.003 -0.108068
+MUSETT_T3_DSSD_Y106_T 899.93 -0.108006
+MUSETT_T3_DSSD_Y107_T 933.224 -0.109125
+MUSETT_T3_DSSD_Y108_T 922.41 -0.109439
+MUSETT_T3_DSSD_Y109_T 919.858 -0.109168
+MUSETT_T3_DSSD_Y110_T 915.492 -0.108625
+MUSETT_T3_DSSD_Y111_T 939.186 -0.109416
+MUSETT_T3_DSSD_Y112_T 907.848 -0.107554
+MUSETT_T3_DSSD_Y113_T 911.742 -0.108473
+MUSETT_T3_DSSD_Y114_T 921.829 -0.108848
+MUSETT_T3_DSSD_Y115_T 923.694 -0.108292
+MUSETT_T3_DSSD_Y116_T 918.408 -0.109288
+MUSETT_T3_DSSD_Y117_T 934.537 -0.109943
+MUSETT_T3_DSSD_Y118_T 919.037 -0.109765
+MUSETT_T3_DSSD_Y119_T 917.959 -0.109672
+MUSETT_T3_DSSD_Y120_T 946.254 -0.110512
+MUSETT_T3_DSSD_Y121_T 948.221 -0.111588
+MUSETT_T3_DSSD_Y122_T 943.874 -0.111915
+MUSETT_T3_DSSD_Y123_T 936.548 -0.109772
+MUSETT_T3_DSSD_Y124_T 926.89 -0.11029
+MUSETT_T3_DSSD_Y125_T 946.411 -0.110947
+MUSETT_T3_DSSD_Y126_T 944.377 -0.111116
+MUSETT_T3_DSSD_Y127_T 963.969 -0.112131
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/cal_to_NPTOOL.py b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/cal_to_NPTOOL.py
new file mode 100644
index 0000000000000000000000000000000000000000..ab76ca24ef7e2d6d58293efcbba2ea6cf4c5bc98
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/cal_to_NPTOOL.py
@@ -0,0 +1,150 @@
+import matplotlib.pyplot
+import re
+MapX = [33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,1,  2,  4,  6,  8,  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127,126,125,123,121,119,117,115,113,111,109,107,105,103,101, 99, 96,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64]
+
+
+MapY =[30, 29, 27, 25, 23, 21, 19, 17, 15, 13, 11,  9,  7,  5,  3,  0,1,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 31,62, 61, 59, 57, 55, 53, 51, 49, 47, 45, 43, 41, 39, 37, 35, 32,33, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63,94, 93, 91, 89, 87, 85, 83, 81, 79, 77, 75, 73, 71, 69, 67, 64,65, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 95,126,125,123,121,119,117,115,113,111,109,107,105,103,101,99,  96,97, 98,100,102,104,106,108,110,112,114,116,118,120,122,124,127]
+
+Ecal = 1
+Tcal = 1
+clean = 1
+if Ecal :
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    f = open("calibE0_R271-279.cal1") #Energy calibration
+
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+                #print("\n Det = ", mu_number)
+                #print("ch = ", ch, ", strip =", strip)
+                #print("p0 = ", p0, "p1 = ", p1)
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+            #strip = int(ch)-1
+        file_path = f"M{mu_number}_E/Cal_Str_{X_Y}_E_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_E" + " " + str(float(p0)/1000) + " " + str(float(p1)/1000) + "\n"
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_E/Cal_Str_" + xy + "_E_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_E', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_E', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
+
+
+if Tcal :
+    f = open("calibT0_R271-279.cal1") #Time calibration
+    if clean == 1 :
+        for mumu in range(4):
+            for xy in ['X','Y']:
+
+                input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+                with open(input_file_path, 'w') as file:
+                    pass
+    for line in f:
+        temp = line.split()
+        p0,p1,p2 = float(temp[0]),float(temp[1]),float(temp[2])
+
+        input_string = temp[-1]
+        pattern = r"Mu(\d+)Ch([XY])(\d+)"
+        match = re.search(pattern, input_string)
+
+        if match:
+            # Extract the letter and number using group(2) and group(3)
+            mu_number = match.group(1)
+            X_Y = match.group(2)
+            ch = match.group(3)
+            if X_Y == "X":
+                strip = MapX[int(ch)-1]
+            else :
+                strip = MapY[int(ch)-1]
+            strip = int(ch)-1
+        file_path = f"M{mu_number}_T/Cal_Str_{X_Y}_T_MM{mu_number}.cal"
+
+        # Define the text to write to the file
+        text_to_write = f"MUSETT_T{mu_number}_DSSD_{X_Y}{strip}_T" + " " + str(float(p0)) + " " + str(float(p1)) + "\n"
+
+        # Use a try-except block to handle any potential errors
+        try:
+            # Open the file in write mode ('w') and write the text
+            with open(file_path, 'a') as file:
+                file.write(text_to_write)
+        except Exception as e:
+            print(f"An error occurred: {str(e)}")
+
+    for mumu in range(4):
+        for xy in ['X','Y']:
+
+            input_file_path = "M" + str(mumu) + "_T/Cal_Str_" + xy + "_T_MM" + str(mumu) + ".cal"
+            with open(input_file_path, 'r') as file:
+                lines = file.readlines()
+
+            def sort_key(line):
+                # Use a regular expression to find the DSSD_Xnn number
+                import re
+                if xy == "X":
+                    match = re.search(r'DSSD_X(\d+)_T', line)
+                else :
+                    match = re.search(r'DSSD_Y(\d+)_T', line)
+                if match:
+                    return int(match.group(1))
+                return 0  # Return 0 for lines that don't match the pattern
+
+            # Sort the lines based on the DSSD_Xnn number
+            sorted_lines = sorted(lines, key=sort_key)
+
+            # Define the path to your output file
+            output_file_path = input_file_path
+
+            # Write the sorted lines to the output file
+            with open(output_file_path, 'w') as file:
+                file.writelines(sorted_lines)
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/calibE0_R271-279.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/calibE0_R271-279.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..91b785a2b0676dfbd156458599f7d3e11b365bba
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/calibE0_R271-279.cal1
@@ -0,0 +1,1024 @@
+-61633.1 7.52291 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-62055 7.57479 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61729.5 7.53498 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61510.2 7.508 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61833.1 7.54788 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61623.7 7.52219 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61347.3 7.4881 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61171.1 7.4671 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-61021.4 7.44836 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62617.4 7.64342 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62323.7 7.60752 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-62004 7.56848 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62222.8 7.59535 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61750.3 7.53769 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62449.5 7.62252 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61339 7.48739 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63072.3 7.69874 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62830.6 7.67014 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62207.1 7.59325 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62377.4 7.61449 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63874.1 7.79655 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62503.8 7.62964 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62311.9 7.60574 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62735.5 7.65798 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62876.2 7.67465 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62984.1 7.68791 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63067.5 7.6982 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62585 7.63991 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-62990.1 7.68868 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62619.8 7.64391 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63424.6 7.74165 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62605 7.64176 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56615 6.91109 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56752 6.92767 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55531.3 6.77863 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56356.2 6.87918 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-55952.8 6.82995 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+ -10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55877.9 6.82136 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55703.8 6.79995 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56249.3 6.86589 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55849.4 6.81689 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56149.7 6.85427 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56319.5 6.87441 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56316.7 6.87457 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+ -10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+ -10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-56055.9 6.84297 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57823.5 7.05889 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57888.5 7.06649 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57759.2 7.04986 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57282.3 6.9923 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58176.3 7.10103 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57207.4 6.98291 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57775.9 7.05244 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57453.6 7.01354 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58450.1 7.13474 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57696.2 7.0427 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57293.1 6.99262 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57751.7 7.04967 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57178.8 6.97896 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57897.5 7.0674 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57870.7 7.06412 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58091.6 7.09091 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63244.5 7.72165 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63496.6 7.75166 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63378.1 7.73685 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-63811.2 7.79125 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63005.6 7.6925 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63771.8 7.78636 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63636.9 7.76936 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63205 7.71714 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-63969.6 7.81032 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-62995.1 7.69198 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63770.5 7.78739 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63683.7 7.7771 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63365.8 7.73864 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63412.4 7.74431 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-63838.7 7.79698 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-63910.4 7.8103 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-60714.8 7.41635 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60354.7 7.37366 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-60769.9 7.4225 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61153.6 7.46877 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61098.6 7.46087 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61831.3 7.55086 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61233.9 7.47674 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-61918.5 7.56139 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61705 7.53432 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61539.4 7.51247 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61654.8 7.5268 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62656.9 7.65026 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61726.5 7.53576 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60929.5 7.4391 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61271.4 7.48082 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62081.2 7.57944 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57112.5 6.97127 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57451.1 7.01351 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57726.3 7.04649 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57024 6.96101 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58096 7.09126 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57639.3 7.0364 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57569.2 7.02818 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57113.3 6.97269 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57345.7 6.99945 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57915.7 7.06943 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57166 6.97862 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57563.7 7.02674 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58546.4 7.14671 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-57969.2 7.07722 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57580.8 7.0292 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57635 7.03725 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-58915 7.19216 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59152 7.22096 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58454.5 7.13595 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58584.3 7.15199 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58061.6 7.08839 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58252 7.11139 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58260 7.11192 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58543.8 7.14562 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58468.9 7.13746 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58618.4 7.15521 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58387.2 7.12788 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59277.2 7.23597 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57823.2 7.05854 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58459.2 7.13586 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58396.5 7.1278 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59451.1 7.25717 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60342.1 -7.36534 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60855.3 -7.42765 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61044 -7.45109 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59928.1 -7.31456 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60111.5 -7.33668 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60670.5 -7.40537 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60385.3 -7.37047 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60092.7 -7.33441 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59923.3 -7.31426 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60352.8 -7.36636 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+59986.2 -7.32159 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60842.8 -7.42632 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+60935.6 -7.43739 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61019.1 -7.4482 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60664 -7.40424 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60353 -7.36683 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60455.8 -7.37881 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60296.1 -7.36011 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60076.2 -7.3325 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60257.8 -7.3547 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60341.1 -7.36488 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60163.7 -7.34342 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59583.3 -7.27238 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60137.5 -7.34053 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59690.4 -7.286 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+59947.9 -7.31714 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60296.3 -7.3596 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59868.7 -7.30687 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59550.2 -7.26855 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59726.2 -7.29007 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60921 -7.43642 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56617 -6.91063 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+56959 -6.95194 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56494.7 -6.89584 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57009.3 -6.95849 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57335.7 -6.99755 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57264 -6.98966 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56409.9 -6.88581 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56431.2 -6.88775 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56901.9 -6.94551 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56694.7 -6.9201 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56548.3 -6.90222 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56526.1 -6.89944 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56796.8 -6.93275 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56913 -6.94682 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57765.4 -7.05041 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56524.4 -6.89932 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57594.2 -7.03065 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+56951 -6.95104 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56731.9 -6.92465 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56394.3 -6.88339 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57099.8 -6.96944 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56961.3 -6.95188 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56574.1 -6.90529 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57542.6 -7.02337 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57290.5 -6.99357 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56751.5 -6.92768 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+56875.4 -6.94186 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57143.4 -6.97465 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57175.1 -6.97855 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57057.2 -6.96403 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57524.2 -7.02087 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+58006 -7.07906 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+60962.3 -7.44098 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61050.9 -7.45122 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+60928.3 -7.43662 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61282.2 -7.47993 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60343.8 -7.36566 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61490.9 -7.50575 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60832.2 -7.42493 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60401.9 -7.37282 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61525 -7.50847 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61015 -7.44687 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61148.5 -7.46397 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61498.3 -7.50535 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60581.2 -7.39491 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61334.4 -7.48699 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61675.3 -7.52851 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61049 -7.45175 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62524.4 -7.62923 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+60968.7 -7.44121 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61505.3 -7.50626 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62171.7 -7.58826 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+60956.4 -7.43975 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60853.3 -7.42648 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61684.5 -7.52842 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61366.5 -7.48921 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61049.3 -7.45085 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61272.4 -7.47871 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61001.7 -7.44491 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61418 -7.49644 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61808.2 -7.54356 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61619.4 -7.52066 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62315.6 -7.60551 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60787.3 -7.41924 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56293.2 -6.87015 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56573 -6.90468 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56527 -6.89976 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56430.2 -6.88772 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56151.1 -6.8537 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56425.2 -6.8862 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+55992.3 -6.83341 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56507 -6.89625 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56856.6 -6.93994 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56055.3 -6.84208 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57029.6 -6.9606 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57329.9 -6.9973 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56501 -6.89663 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56503.9 -6.89674 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56670.1 -6.91739 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56358.1 -6.87923 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56894.5 -6.94468 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+56988.1 -6.95503 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56935 -6.94957 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56727.2 -6.92358 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57223.6 -6.98438 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56491 -6.895 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56355.5 -6.87782 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56579.2 -6.90568 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57315.6 -6.99591 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57115.4 -6.97039 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56748.1 -6.92598 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+55985.4 -6.83357 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56341.9 -6.87581 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55850.6 -6.81634 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56922.6 -6.9478 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56515 -6.89869 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62516.5 7.6311 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62274.1 7.60081 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62256.5 7.59888 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62105.5 7.58086 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61551.9 7.51336 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61602.3 7.51847 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62332.4 7.60802 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61432.2 7.49866 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61295.9 7.48181 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61534 7.5109 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61736.5 7.53509 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61736.7 7.53547 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61907.1 7.55623 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61411.3 7.49629 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61128 7.4611 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-62002.7 7.56766 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62626.7 7.64348 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61797.5 7.54209 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62271.7 7.60236 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-62132.1 7.58327 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62874.1 7.67499 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62211.6 7.59273 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62885.8 7.6761 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62400 7.61554 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62315.1 7.60536 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-62060.6 7.57409 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-61995.1 7.56723 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61730.5 7.53394 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61701.7 7.53073 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62796.3 7.66424 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61870.4 7.55102 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62871.5 7.67342 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58249.1 7.11105 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58600 7.15128 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58503.6 7.13902 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-57934.8 7.07492 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58269.8 7.11052 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58373.3 7.12516 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58024.8 7.08223 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58731.9 7.16835 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58380.1 7.12401 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-59080.3 7.20869 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58163.3 7.09879 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58321.6 7.12064 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58793.4 7.17398 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59555 7.26719 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58985.3 7.19742 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58393.4 7.13232 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.3 7.06236 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58528.7 7.14353 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-58063.7 7.08664 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57735.8 7.04669 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-58026.2 7.08204 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57941.2 7.07198 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-58010.7 7.08036 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57865.2 7.06218 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58114.3 7.09321 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57872.6 7.06339 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58515.5 7.14195 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57693.8 7.04145 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57754.9 7.04905 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58253.2 7.10979 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.8 7.09262 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58287 7.1143 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61032.9 7.44807 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61684.6 7.52792 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61429.6 7.49794 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61667.7 7.52697 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61891.3 7.55404 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61446.2 7.49857 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61708.6 7.53062 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-62071.3 7.57514 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61278.1 7.47991 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62655.4 7.64692 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61932.8 7.55898 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-61983.5 7.56623 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61655.2 7.52649 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61854.1 7.54843 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61483.5 7.50294 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61906.6 7.55644 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63488.4 7.74867 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63741.9 7.78029 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64177.5 7.83331 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63942 7.804 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64165.5 7.8324 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63871.7 7.79646 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64130.5 7.82725 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64304 7.84811 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64070.2 7.82171 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64367.7 7.85609 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63515.8 7.75294 0.00 !Mu1ChX91ERaw[Co2At2Ch11]
+-63403.5 7.73929 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64650.7 7.89095 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64071.5 7.81996 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63723.8 7.77948 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63504.1 7.75094 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56309 6.87269 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56713.9 6.92185 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56681.7 6.91912 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56380 6.88193 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56624.3 6.9108 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-57163.3 6.97787 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57300.7 6.99425 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56583 6.90657 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56874 6.94133 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57021.6 6.95972 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57826.6 7.05832 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57775.6 7.05242 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57753.9 7.04858 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57529.9 7.02159 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57756.7 7.04901 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-57996.3 7.07845 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57263.1 6.98926 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57281 6.99144 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56848.9 6.93863 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57714.2 7.04451 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57316.9 6.99588 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57261.4 6.9893 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56540.6 6.9014 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58381.7 7.12551 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57471.4 7.01432 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57809.5 7.05575 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57734.9 7.04709 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57441.1 7.01114 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57659.5 7.03733 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57658.9 7.03761 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57057.9 6.96435 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57891.9 7.0664 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59587 -7.27421 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60350 -7.36663 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59636.9 -7.2798 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59250.4 -7.23253 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60103.9 -7.33661 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+59993 -7.32323 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59355.7 -7.24588 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59465.8 -7.25939 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59413.5 -7.25269 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59628.3 -7.27927 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59420.7 -7.25321 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59517.3 -7.26551 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60156.9 -7.34327 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59274.7 -7.23573 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59413.8 -7.2528 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59941.2 -7.31657 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62356.3 -7.61131 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62368.3 -7.61293 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62294 -7.60309 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+61984.1 -7.56662 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62459 -7.62322 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62300.6 -7.60413 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+61991.5 -7.56756 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61618.9 -7.52114 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61345 -7.48831 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+61986.1 -7.56653 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+61993.4 -7.56773 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62149.7 -7.58604 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62014.3 -7.57031 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61586.9 -7.51767 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61755.6 -7.53847 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+55995 -6.83497 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56198 -6.86037 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55578.9 -6.78486 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55601.6 -6.78669 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55322.2 -6.75352 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56297.6 -6.87208 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55306 -6.75079 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55844.8 -6.81653 0.00 !Mu1ChY40ERaw[Co3At3Ch8]
+56056.1 -6.84392 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56003 -6.83589 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55455.8 -6.76939 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56539.8 -6.90172 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55591.9 -6.78603 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55642.7 -6.79229 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55717.9 -6.80114 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55630.4 -6.79055 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57134 -6.97428 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56488.9 -6.89459 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56444.9 -6.88991 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+55917.5 -6.82531 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56781.1 -6.9307 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56234.3 -6.86372 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56414.1 -6.8863 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56314.1 -6.87366 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57181.6 -6.97991 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+56971.7 -6.95407 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56545.7 -6.90218 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57194 -6.98061 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57452.7 -7.01268 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+56974.6 -6.95454 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56096.9 -6.84754 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57295.9 -6.99365 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+60966.1 -7.4416 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61476.9 -7.50343 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61230.2 -7.47385 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61536.4 -7.51174 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61212.4 -7.47235 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+59944.2 -7.31688 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60359.9 -7.36752 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61084.9 -7.45619 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60294.9 -7.36018 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61097.9 -7.45775 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60832.2 -7.4254 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60341 -7.36539 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60457.4 -7.38011 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60881 -7.43155 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60579 -7.39461 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61262.7 -7.47821 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61087 -7.45653 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+60957.8 -7.44017 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61015 -7.4473 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60458.6 -7.38002 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60328.5 -7.36352 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61293.9 -7.48211 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60645.5 -7.40378 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60614 -7.39798 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+60998.7 -7.44612 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61206 -7.47091 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60669.6 -7.40552 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60794.3 -7.42076 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60367.8 -7.36826 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61409.1 -7.49616 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61537.9 -7.51137 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60656.5 -7.40388 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55842.6 -6.81725 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55367.1 -6.75769 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55712.2 -6.80116 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55524 -6.77768 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55820.1 -6.81352 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55479.4 -6.77257 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55467.2 -6.77116 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56133.4 -6.85195 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55203.6 -6.73883 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55269.4 -6.74655 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55825.9 -6.81501 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55176.8 -6.73553 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55849.5 -6.8172 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56038.1 -6.84069 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56158.8 -6.8555 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.4 -6.90682 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54706.4 -6.6782 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55473 -6.77076 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55101.6 -6.7263 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55096.7 -6.72554 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55171.5 -6.73434 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55317.4 -6.75224 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55193.7 -6.73739 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55688.5 -6.79707 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55649.8 -6.7933 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55362.2 -6.75814 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54711.4 -6.67865 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55069.6 -6.72259 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55139.2 -6.73052 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55090 -6.72464 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55297.3 -6.75015 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56118.7 -6.85016 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-63061.5 7.69841 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62506.4 7.62904 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62898.2 7.67697 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62102.5 7.57997 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62091 7.57843 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62680 7.651 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62497.6 7.62835 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62860.6 7.67221 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62934.9 7.68182 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62209.2 7.59345 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62461.4 7.62395 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62447.9 7.62232 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62823.1 7.66888 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62578.4 7.63796 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62668.3 7.64912 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63727.1 7.7794 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62184.1 7.59 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61848.8 7.54926 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61650.4 7.52467 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61485.9 7.50437 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61652 7.52531 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62305.4 7.60457 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62259.8 7.59897 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61800.7 7.54312 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61581.2 7.51641 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-62044.4 7.57347 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-62080.1 7.57801 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61797.8 7.54284 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61681.7 7.52824 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61267.4 7.47771 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62349 7.61043 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61564.9 7.51409 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59015.3 7.20328 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58139.9 7.09618 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58698.1 7.16453 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58443.2 7.13257 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58176 7.101 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58207.6 7.10467 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58335 7.12045 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57883.4 7.06537 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57575 7.02751 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58583.7 7.1504 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58764.6 7.1724 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58310.8 7.11768 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58650 7.15916 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58694.4 7.16541 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58376.6 7.12585 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58493.9 7.13969 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57774.7 7.05139 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57219.6 6.984 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58150.7 7.09771 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57875.1 7.06455 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57614.5 7.0324 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57119.3 6.97173 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57879.9 7.06465 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57700.2 7.04254 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57884.3 7.06528 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57744.7 7.04893 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57978.3 7.07647 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-57040.8 6.96222 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57537 7.02231 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56754.4 6.92733 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57494.4 7.01801 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57815.3 7.05707 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63330.5 7.72984 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-65014.7 7.93525 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-64023.8 7.8138 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63758.7 7.78178 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64403.4 7.8608 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63711.9 7.77604 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63456.8 7.74517 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63366 7.73396 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63118.4 7.70341 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63845.4 7.79218 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63655.2 7.76957 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-64025.4 7.81563 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63927.7 7.80392 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63554.5 7.75773 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63500.9 7.75129 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63231.2 7.7171 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63297.5 7.72646 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63156.3 7.70831 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63216.8 7.71566 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-64005.8 7.81186 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63875.2 7.79498 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63778.1 7.78352 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63983.4 7.80931 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63100.5 7.70105 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63636.5 7.76718 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63516 7.75305 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63636.6 7.76686 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63357.7 7.73288 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64645.5 7.88952 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63755.2 7.78113 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63637.1 7.76683 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59014.7 7.20305 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58466.3 7.13675 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58318.1 7.11774 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58604.2 7.15414 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59349.4 7.24432 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59356.8 7.24468 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58807.5 7.17829 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-58926.8 7.1932 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59050.6 7.20842 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59050.7 7.20773 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58752.7 7.17148 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59015.2 7.20287 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58809.9 7.17765 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60503.3 7.3854 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58973.3 7.19774 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58587.1 7.15168 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59305.8 7.23844 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59265.7 7.234 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59714.1 7.28798 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59097.5 7.21291 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59752 7.29299 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60025.7 7.32641 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59509.9 7.2633 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59481.8 7.26047 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60018.6 7.32613 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58722.7 7.16762 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59027.4 7.20469 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59326.3 7.24127 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58843.4 7.18246 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58940.7 7.19401 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59097.4 7.21317 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59222.9 7.2284 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63157.3 -7.70969 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63822.2 -7.78939 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62498 -7.62853 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63418.3 -7.74138 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62878.7 -7.67525 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62675.7 -7.65067 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63018.1 -7.69193 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62688.4 -7.65248 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62738.7 -7.65763 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63378.4 -7.73598 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+62933.1 -7.68161 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62489.8 -7.62778 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62006.9 -7.56841 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62747.2 -7.65943 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+62904.6 -7.67764 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63436.1 -7.74366 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61523 -7.50754 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60881.2 -7.4314 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60756.5 -7.41617 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+61948.2 -7.56073 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.7 -7.45872 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60825.2 -7.42329 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62124.2 -7.58357 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61068.2 -7.45426 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61024.3 -7.44902 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61614.2 -7.52161 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61098.9 -7.45848 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61294.1 -7.48094 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61584 -7.51767 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61357.4 -7.4883 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61263.2 -7.47721 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61636.5 -7.52283 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56252.9 -6.8662 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56360.5 -6.87887 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56726.3 -6.92397 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56647.1 -6.91423 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+56944.1 -6.95144 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56838 -6.9373 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56333.4 -6.87547 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56420 -6.88799 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56415.4 -6.8848 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58046.6 -7.08553 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56749.8 -6.92777 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56199 -6.8594 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57477.8 -7.01539 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57262.1 -6.98911 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+56983.6 -6.95607 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56657.4 -6.91657 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57544.7 -7.02396 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57028.9 -6.96114 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57987.4 -7.07704 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57372.1 -7.00299 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57342 -6.99891 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58521 -7.14305 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57680.6 -7.0407 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57746.9 -7.04863 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57638.1 -7.03576 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57521 -7.02103 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57470.2 -7.01554 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58281.3 -7.11404 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57840.1 -7.06071 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57317.8 -6.997 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57802.6 -7.05565 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58131.4 -7.09521 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59303.9 -7.23935 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59484.5 -7.25972 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59445.9 -7.25617 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60428.1 -7.3764 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59533.4 -7.26741 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59813.7 -7.30118 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59589.8 -7.27421 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+60026.1 -7.32661 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59977.4 -7.32078 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59521.9 -7.2662 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59939.4 -7.31706 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60163.9 -7.3442 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59267.2 -7.234 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59936.3 -7.31598 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59355.3 -7.24587 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60125 -7.33861 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60407 -7.37292 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61099.7 -7.45806 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60584.6 -7.39543 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61268.3 -7.47919 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61270.9 -7.47878 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60825.4 -7.42527 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60909.5 -7.43587 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61284.8 -7.48143 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60871 -7.43052 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60750.5 -7.4148 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61380.4 -7.49252 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60505.2 -7.38436 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61101.4 -7.45903 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60601.1 -7.39817 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61046 -7.45199 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61347.1 -7.48772 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56857.3 -6.94084 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55935.7 -6.82792 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56194 -6.85949 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56657 -6.91576 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56404.6 -6.88522 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56745.3 -6.9268 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+56028.9 -6.83896 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57137.1 -6.97391 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56028.9 -6.83942 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56640.1 -6.91348 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56575.8 -6.90625 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57468.7 -7.01533 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57034.2 -6.96217 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56652.7 -6.91515 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57017.9 -6.96034 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56103.5 -6.8487 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56392.3 -6.88327 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57249.1 -6.98846 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56498 -6.89623 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56788.9 -6.93179 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56423.6 -6.88761 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56477.1 -6.89419 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56830.3 -6.93708 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56701.8 -6.92147 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56240.7 -6.86503 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57000.7 -6.95804 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57374.9 -7.00373 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56133.6 -6.85234 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56922.3 -6.94849 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56365.8 -6.88053 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56131.5 -6.85163 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62345.4 7.61044 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61863.4 7.5516 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62181.1 7.59039 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62279.6 7.60252 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61955.2 7.56278 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61871 7.55217 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62077.7 7.5777 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61628.4 7.52262 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61761.6 7.53889 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61847.3 7.54932 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61774 7.54014 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62931.9 7.68219 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61617.9 7.52151 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61820.9 7.54591 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61673.8 7.52851 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62593.1 7.64028 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63651.3 7.76933 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63039.9 7.69489 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62939.5 7.68245 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62774.3 7.66224 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62597 7.64034 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.1 7.70462 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-64027 7.81704 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63768.3 7.78409 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62735.8 7.65836 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63493.6 7.75031 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63550.9 7.75727 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63333.6 7.73047 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63471.9 7.74798 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63533.6 7.75574 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64515.6 7.87525 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63666.9 7.77214 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59249.2 7.23326 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59097.2 7.21503 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58039.8 7.08575 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58201.5 7.10525 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58688.1 7.16476 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-58919 7.19282 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59207.7 7.22788 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58617.7 7.15599 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59166.7 7.22284 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58841.9 7.18358 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-58957.7 7.19746 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59203.6 7.22747 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59321.9 7.24122 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58738.5 7.17009 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59135.2 7.21821 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57337 6.99885 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57105.3 6.97094 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56852.6 6.93986 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57123.9 6.97353 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56902.8 6.94725 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57347.6 7.00123 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56664.1 6.91725 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57226.6 6.98685 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57580.7 7.0296 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56509.8 6.89853 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57438.6 7.01266 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57046.8 6.96439 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56283.2 6.87125 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56778.8 6.93172 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56634.5 6.91492 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56434.4 6.89024 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64201 7.83647 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63818.9 7.79071 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63593.3 7.7629 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63735 7.77947 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63661.1 7.77033 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63245 7.71983 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64347.8 7.85448 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62471 7.62583 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62665.5 7.64955 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-62978.4 7.68758 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63119.5 7.70452 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63390.2 7.73771 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64130.6 7.828 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62469.3 7.62517 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62611.7 7.6423 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-62988.1 7.68855 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62477.2 7.6262 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62777.5 7.66314 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62705.2 7.65399 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62645.6 7.64655 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62038.5 7.57247 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62461.5 7.62416 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62435.9 7.62103 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.4 7.58521 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62294.2 7.60396 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62708.8 7.65519 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62352.2 7.611 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62009.6 7.56957 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62807.4 7.66718 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62550.7 7.63529 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62164.1 7.5882 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62407.3 7.61748 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56124.7 6.85011 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55925 6.8266 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55174.1 6.73479 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55743 6.8047 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-56104.6 6.84875 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55922.7 6.82573 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55941 6.82888 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55261.5 6.7447 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55547.1 6.7799 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-55994.8 6.83508 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55878.2 6.82019 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55740.8 6.80375 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56899.4 6.94551 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56276.4 6.86962 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55830.4 6.81436 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55749.2 6.80431 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57546.8 7.02514 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56955.5 6.95237 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57536.3 7.02336 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56899.8 6.94606 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58093.6 7.09129 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57196.5 6.98229 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57462.1 7.01442 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56370.1 6.88115 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56787.2 6.93186 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57910 7.06899 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57473.5 7.01557 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57059.2 6.96518 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57670.8 7.03967 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56738.4 6.92521 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57861.1 7.06231 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56557.4 6.90355 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60032.9 -7.32771 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58880.8 -7.18699 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60023.1 -7.32654 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59904.8 -7.31219 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59747.3 -7.29256 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+60044.8 -7.3285 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59674.6 -7.28351 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60089 -7.33432 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60390.2 -7.37087 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60324.5 -7.36226 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60063 -7.33084 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59746 -7.29223 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59628.7 -7.27802 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59605.6 -7.27604 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60513.4 -7.38637 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59705.8 -7.28768 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62899.2 -7.67713 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63067.2 -7.69763 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62164.9 -7.58739 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62644.9 -7.6462 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63155.6 -7.70868 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63476.7 -7.7476 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+62909.3 -7.67804 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62922.8 -7.68012 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63461.1 -7.7455 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63380.9 -7.73638 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62508.5 -7.62917 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63362.4 -7.73365 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62458.2 -7.62392 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62885.8 -7.67565 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63029.7 -7.69335 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62923.5 -7.68066 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56074.2 -6.84465 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56150.2 -6.85354 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55789.4 -6.80959 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55638.8 -6.79097 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55690.3 -6.7972 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56172.7 -6.85634 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55888.9 -6.82181 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55509 -6.77536 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55311.6 -6.7506 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56115.3 -6.84918 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55915.5 -6.8248 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55329 -6.75329 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55669.5 -6.79444 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55588.7 -6.78496 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55898 -6.8231 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55796.2 -6.81045 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56642.2 -6.91436 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56991.3 -6.95514 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57075.4 -6.96596 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56854.2 -6.93952 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56407.5 -6.88481 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56933.4 -6.94974 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56603.2 -6.9089 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+56984.7 -6.95558 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+56981.1 -6.9557 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56514.6 -6.89801 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57449.1 -7.01219 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+56938.2 -6.94962 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57895.4 -7.0662 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57033.8 -6.96212 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56704 -6.92109 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57390.9 -7.00491 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59386.5 -7.24871 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+60032 -7.32664 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59461.1 -7.25777 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59294.3 -7.23743 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59363.3 -7.24565 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58668.9 -7.16081 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59178.2 -7.22299 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+59878.5 -7.30862 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60080.6 -7.33311 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59525.9 -7.26506 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59403.5 -7.25068 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59501.4 -7.26252 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59504.9 -7.26298 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59322 -7.24079 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59114.2 -7.21484 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59934.3 -7.31545 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62786.3 -7.66418 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62688.2 -7.65225 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62484.3 -7.62731 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62111.7 -7.58204 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.9 -7.57048 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62722.4 -7.65547 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62211.6 -7.59379 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62970.1 -7.68683 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62605.8 -7.64201 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62471.1 -7.62554 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61773.9 -7.54013 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61966 -7.56438 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61829.7 -7.54636 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+62107 -7.58056 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61946.8 -7.56126 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61761.8 -7.53961 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56678.2 -6.9178 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56796.1 -6.93199 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56253.9 -6.86602 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55891.8 -6.82192 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56180.1 -6.85704 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56220.5 -6.8622 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55882 -6.82088 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55981.1 -6.83279 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55754.9 -6.80516 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56267.3 -6.86773 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56429.7 -6.88763 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56237.2 -6.86422 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55689.2 -6.79724 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55787.5 -6.80907 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56624.4 -6.91129 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56567.3 -6.90457 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57306.3 -6.99514 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57048.3 -6.96426 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+56976.5 -6.95364 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+56848.4 -6.93798 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57581.8 -7.02703 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57150.3 -6.97454 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56708.7 -6.92074 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57781 -7.05185 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57302.9 -6.99462 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+56871.4 -6.94134 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57274.9 -6.99018 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+56921.4 -6.94684 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57595.9 -7.03175 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56918.5 -6.94868 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57363.7 -7.00332 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57366.3 -7.00102 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/calibT0_R271-279.cal1 b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/calibT0_R271-279.cal1
new file mode 100644
index 0000000000000000000000000000000000000000..ac49bf4b619489f5511712443b192f8a3b7314c8
--- /dev/null
+++ b/Projects/MUSETT/calibration/double_alpha_Ra222_R271-279/calibT0_R271-279.cal1
@@ -0,0 +1,1023 @@
+1000.68 -0.114176 0.0 !Mu0ChX1TRaw[Co1At1Ch1]
+1000.548 -0.115529 0.0 !Mu0ChX2TRaw[Co1At1Ch2]
+994.985 -0.115657 0.0 !Mu0ChX3TRaw[Co1At1Ch3]
+998.298 -0.117409 0.0 !Mu0ChX4TRaw[Co1At1Ch4]
+1017.095 -0.117367 0.0 !Mu0ChX5TRaw[Co1At1Ch5]
+1009.462 -0.117353 0.0 !Mu0ChX6TRaw[Co1At1Ch6]
+1006.88 -0.117969 0.0 !Mu0ChX7TRaw[Co1At1Ch7]
+1009.19 -0.118246 0.0 !Mu0ChX8TRaw[Co1At1Ch8]
+1034.336 -0.118065 0.0 !Mu0ChX9TRaw[Co1At1Ch9]
+1054.297 -0.118546 0.0 !Mu0ChX10TRaw[Co1At1Ch10]
+1028.541 -0.119138 0.0 !Mu0ChX11TRaw[Co1At1Ch11]
+1027.566 -0.119075 0.0 !Mu0ChX12TRaw[Co1At1Ch12]
+1035.322 -0.119996 0.0 !Mu0ChX13TRaw[Co1At1Ch13]
+1020.483 -0.118174 0.0 !Mu0ChX14TRaw[Co1At1Ch14]
+1043.119 -0.119531 0.0 !Mu0ChX15TRaw[Co1At1Ch15]
+1351.042 -0.118448 0.0 !Mu0ChX16TRaw[Co1At1Ch16]
+985.051 -0.115275 0.0 !Mu0ChX17TRaw[Co1At2Ch1]
+1018.323 -0.116527 0.0 !Mu0ChX18TRaw[Co1At2Ch2]
+1019.722 -0.118044 0.0 !Mu0ChX19TRaw[Co1At2Ch3]
+1016.846 -0.118125 0.0 !Mu0ChX20TRaw[Co1At2Ch4]
+1022.532 -0.119233 0.0 !Mu0ChX21TRaw[Co1At2Ch5]
+1031.856 -0.118555 0.0 !Mu0ChX22TRaw[Co1At2Ch6]
+1050.616 -0.119845 0.0 !Mu0ChX23TRaw[Co1At2Ch7]
+1062.012 -0.120005 0.0 !Mu0ChX24TRaw[Co1At2Ch8]
+1031.807 -0.119427 0.0 !Mu0ChX25TRaw[Co1At2Ch9]
+1035.529 -0.120777 0.0 !Mu0ChX26TRaw[Co1At2Ch10]
+1034.112 -0.121057 0.0 !Mu0ChX27TRaw[Co1At2Ch11]
+1053.939 -0.121545 0.0 !Mu0ChX28TRaw[Co1At2Ch12]
+1025.922 -0.121021 0.0 !Mu0ChX29TRaw[Co1At2Ch13]
+1036.222 -0.120851 0.0 !Mu0ChX30TRaw[Co1At2Ch14]
+1057.756 -0.12045 0.0 !Mu0ChX31TRaw[Co1At2Ch15]
+1063.339 -0.119947 0.0 !Mu0ChX32TRaw[Co1At2Ch16]
+899.089 -0.105192 0.0 !Mu0ChX33TRaw[Co1At3Ch1]
+896.661 -0.104955 0.0 !Mu0ChX34TRaw[Co1At3Ch2]
+900.671 -0.107397 0.0 !Mu0ChX35TRaw[Co1At3Ch3]
+906.319 -0.106033 0.0 !Mu0ChX36TRaw[Co1At3Ch4]
+914.875 -0.106227 0.0 !Mu0ChX37TRaw[Co1At3Ch5]
+916.198 -0.108005 0.0 !Mu0ChX38TRaw[Co1At3Ch6]
+934.909 -0.108195 0.0 !Mu0ChX39TRaw[Co1At3Ch7]
+946.449 -0.107979 0.0 !Mu0ChX40TRaw[Co1At3Ch8]
+929.072 -0.108302 0.0 !Mu0ChX41TRaw[Co1At3Ch9]
+950.135 -0.108334 0.0 !Mu0ChX42TRaw[Co1At3Ch10]
+949.178 -0.108243 0.0 !Mu0ChX43TRaw[Co1At3Ch11]
+924.851 -0.109095 0.0 !Mu0ChX44TRaw[Co1At3Ch12]
+938.112 -0.108505 0.0 !Mu0ChX45TRaw[Co1At3Ch13]
+959.817 -0.107877 0.0 !Mu0ChX46TRaw[Co1At3Ch14]
+969.046 -0.108187 0.0 !Mu0ChX47TRaw[Co1At3Ch15]
+1000.332 -0.10826 0.0 !Mu0ChX48TRaw[Co1At3Ch16]
+941.059 -0.106556 0.0 !Mu0ChX49TRaw[Co1At4Ch1]
+935.589 -0.106942 0.0 !Mu0ChX50TRaw[Co1At4Ch2]
+937.96 -0.107622 0.0 !Mu0ChX51TRaw[Co1At4Ch3]
+947.438 -0.109464 0.0 !Mu0ChX52TRaw[Co1At4Ch4]
+942.078 -0.109295 0.0 !Mu0ChX53TRaw[Co1At4Ch5]
+945.006 -0.109652 0.0 !Mu0ChX54TRaw[Co1At4Ch6]
+979.489 -0.109955 0.0 !Mu0ChX55TRaw[Co1At4Ch7]
+951.854 -0.110458 0.0 !Mu0ChX56TRaw[Co1At4Ch8]
+971.578 -0.111499 0.0 !Mu0ChX57TRaw[Co1At4Ch9]
+962.445 -0.110456 0.0 !Mu0ChX58TRaw[Co1At4Ch10]
+956.297 -0.111378 0.0 !Mu0ChX59TRaw[Co1At4Ch11]
+961.15 -0.111943 0.0 !Mu0ChX60TRaw[Co1At4Ch12]
+972.034 -0.112807 0.0 !Mu0ChX61TRaw[Co1At4Ch13]
+960.421 -0.11314 0.0 !Mu0ChX62TRaw[Co1At4Ch14]
+965.683 -0.113338 0.0 !Mu0ChX63TRaw[Co1At4Ch15]
+954.11 -0.111982 0.0 !Mu0ChX64TRaw[Co1At4Ch16]
+983.106 -0.115846 0.0 !Mu0ChX65TRaw[Co2At1Ch1]
+1014.462 -0.11646 0.0 !Mu0ChX66TRaw[Co2At1Ch2]
+1016.856 -0.117644 0.0 !Mu0ChX67TRaw[Co2At1Ch3]
+995.672 -0.117791 0.0 !Mu0ChX68TRaw[Co2At1Ch4]
+1014.268 -0.118174 0.0 !Mu0ChX69TRaw[Co2At1Ch5]
+1004.36 -0.119717 0.0 !Mu0ChX70TRaw[Co2At1Ch6]
+1009.057 -0.120284 0.0 !Mu0ChX71TRaw[Co2At1Ch7]
+1014.202 -0.120426 0.0 !Mu0ChX72TRaw[Co2At1Ch8]
+1033.027 -0.121763 0.0 !Mu0ChX73TRaw[Co2At1Ch9]
+1021.396 -0.119445 0.0 !Mu0ChX74TRaw[Co2At1Ch10]
+1031.245 -0.121535 0.0 !Mu0ChX75TRaw[Co2At1Ch11]
+1021.633 -0.120381 0.0 !Mu0ChX76TRaw[Co2At1Ch12]
+1036.707 -0.121262 0.0 !Mu0ChX77TRaw[Co2At1Ch13]
+1033.329 -0.121766 0.0 !Mu0ChX78TRaw[Co2At1Ch14]
+1035.269 -0.120615 0.0 !Mu0ChX79TRaw[Co2At1Ch15]
+1395.102 -0.120952 0.0 !Mu0ChX80TRaw[Co2At1Ch16]
+958.027 -0.111515 0.0 !Mu0ChX81TRaw[Co2At2Ch1]
+964.753 -0.112746 0.0 !Mu0ChX82TRaw[Co2At2Ch2]
+946.182 -0.111774 0.0 !Mu0ChX83TRaw[Co2At2Ch3]
+958.531 -0.113281 0.0 !Mu0ChX84TRaw[Co2At2Ch4]
+958.863 -0.112468 0.0 !Mu0ChX85TRaw[Co2At2Ch5]
+970.352 -0.113819 0.0 !Mu0ChX86TRaw[Co2At2Ch6]
+971.39 -0.114818 0.0 !Mu0ChX87TRaw[Co2At2Ch7]
+960.896 -0.113978 0.0 !Mu0ChX88TRaw[Co2At2Ch8]
+982.302 -0.114813 0.0 !Mu0ChX89TRaw[Co2At2Ch9]
+986.339 -0.115728 0.0 !Mu0ChX90TRaw[Co2At2Ch10]
+983.082 -0.11664 0.0 !Mu0ChX91TRaw[Co2At2Ch11]
+994.239 -0.11625 0.0 !Mu0ChX92TRaw[Co2At2Ch12]
+998.231 -0.116299 0.0 !Mu0ChX93TRaw[Co2At2Ch13]
+982.565 -0.116152 0.0 !Mu0ChX94TRaw[Co2At2Ch14]
+1022.945 -0.117868 0.0 !Mu0ChX95TRaw[Co2At2Ch15]
+1009.233 -0.116744 0.0 !Mu0ChX96TRaw[Co2At2Ch16]
+921.311 -0.105013 0.0 !Mu0ChX97TRaw[Co2At3Ch1]
+921.31 -0.106169 0.0 !Mu0ChX98TRaw[Co2At3Ch2]
+911.678 -0.106212 0.0 !Mu0ChX99TRaw[Co2At3Ch3]
+917.107 -0.106905 0.0 !Mu0ChX100TRaw[Co2At3Ch4]
+927.187 -0.108043 0.0 !Mu0ChX101TRaw[Co2At3Ch5]
+952.263 -0.108935 0.0 !Mu0ChX102TRaw[Co2At3Ch6]
+958.633 -0.108442 0.0 !Mu0ChX103TRaw[Co2At3Ch7]
+939.41 -0.108194 0.0 !Mu0ChX104TRaw[Co2At3Ch8]
+941.999 -0.109336 0.0 !Mu0ChX105TRaw[Co2At3Ch9]
+943.412 -0.109053 0.0 !Mu0ChX106TRaw[Co2At3Ch10]
+970.302 -0.109771 0.0 !Mu0ChX107TRaw[Co2At3Ch11]
+946.604 -0.109449 0.0 !Mu0ChX108TRaw[Co2At3Ch12]
+933.31 -0.109128 0.0 !Mu0ChX109TRaw[Co2At3Ch13]
+937.597 -0.109641 0.0 !Mu0ChX110TRaw[Co2At3Ch14]
+930.52 -0.109177 0.0 !Mu0ChX111TRaw[Co2At3Ch15]
+939.491 -0.109478 0.0 !Mu0ChX112TRaw[Co2At3Ch16]
+909.027 -0.107364 0.0 !Mu0ChX113TRaw[Co2At4Ch1]
+922.418 -0.107748 0.0 !Mu0ChX114TRaw[Co2At4Ch2]
+908.876 -0.107782 0.0 !Mu0ChX115TRaw[Co2At4Ch3]
+922.546 -0.109007 0.0 !Mu0ChX116TRaw[Co2At4Ch4]
+936.638 -0.109423 0.0 !Mu0ChX117TRaw[Co2At4Ch5]
+936.691 -0.108648 0.0 !Mu0ChX118TRaw[Co2At4Ch6]
+959.153 -0.110413 0.0 !Mu0ChX119TRaw[Co2At4Ch7]
+946.313 -0.110579 0.0 !Mu0ChX120TRaw[Co2At4Ch8]
+950.811 -0.109898 0.0 !Mu0ChX121TRaw[Co2At4Ch9]
+973.845 -0.1105 0.0 !Mu0ChX122TRaw[Co2At4Ch10]
+996.871 -0.111529 0.0 !Mu0ChX123TRaw[Co2At4Ch11]
+946.384 -0.110604 0.0 !Mu0ChX124TRaw[Co2At4Ch12]
+956.453 -0.110972 0.0 !Mu0ChX125TRaw[Co2At4Ch13]
+958.311 -0.11118 0.0 !Mu0ChX126TRaw[Co2At4Ch14]
+964.725 -0.110613 0.0 !Mu0ChX127TRaw[Co2At4Ch15]
+986.747 -0.111151 0.0 !Mu0ChX128TRaw[Co2At4Ch16]
+989.537 -0.114033 0.0 !Mu0ChY2TRaw[Co3At1Ch2]
+955.667 -0.113921 0.0 !Mu0ChY3TRaw[Co3At1Ch3]
+981.529 -0.116104 0.0 !Mu0ChY4TRaw[Co3At1Ch4]
+980.484 -0.115563 0.0 !Mu0ChY5TRaw[Co3At1Ch5]
+989.097 -0.117481 0.0 !Mu0ChY6TRaw[Co3At1Ch6]
+991.604 -0.117339 0.0 !Mu0ChY7TRaw[Co3At1Ch7]
+996.371 -0.117018 0.0 !Mu0ChY8TRaw[Co3At1Ch8]
+995.892 -0.117842 0.0 !Mu0ChY9TRaw[Co3At1Ch9]
+1010.018 -0.117316 0.0 !Mu0ChY10TRaw[Co3At1Ch10]
+986.738 -0.117632 0.0 !Mu0ChY11TRaw[Co3At1Ch11]
+985.508 -0.118398 0.0 !Mu0ChY12TRaw[Co3At1Ch12]
+998.348 -0.11814 0.0 !Mu0ChY13TRaw[Co3At1Ch13]
+990.199 -0.117633 0.0 !Mu0ChY14TRaw[Co3At1Ch14]
+1010.136 -0.117944 0.0 !Mu0ChY15TRaw[Co3At1Ch15]
+999.786 -0.118761 0.0 !Mu0ChY16TRaw[Co3At1Ch16]
+950.332 -0.113175 0.0 !Mu0ChY17TRaw[Co3At2Ch1]
+970.637 -0.114309 0.0 !Mu0ChY18TRaw[Co3At2Ch2]
+957.295 -0.115351 0.0 !Mu0ChY19TRaw[Co3At2Ch3]
+959.999 -0.11436 0.0 !Mu0ChY20TRaw[Co3At2Ch4]
+958.95 -0.114686 0.0 !Mu0ChY21TRaw[Co3At2Ch5]
+962.534 -0.115103 0.0 !Mu0ChY22TRaw[Co3At2Ch6]
+979.707 -0.115832 0.0 !Mu0ChY23TRaw[Co3At2Ch7]
+983.432 -0.115841 0.0 !Mu0ChY24TRaw[Co3At2Ch8]
+991.925 -0.116398 0.0 !Mu0ChY25TRaw[Co3At2Ch9]
+990.13 -0.116195 0.0 !Mu0ChY26TRaw[Co3At2Ch10]
+971.726 -0.115516 0.0 !Mu0ChY27TRaw[Co3At2Ch11]
+1009.509 -0.117562 0.0 !Mu0ChY28TRaw[Co3At2Ch12]
+1004.207 -0.117834 0.0 !Mu0ChY29TRaw[Co3At2Ch13]
+998.99 -0.11722 0.0 !Mu0ChY30TRaw[Co3At2Ch14]
+990.834 -0.11759 0.0 !Mu0ChY31TRaw[Co3At2Ch15]
+1000.504 -0.116928 0.0 !Mu0ChY32TRaw[Co3At2Ch16]
+886.202 -0.105131 0.0 !Mu0ChY33TRaw[Co3At3Ch1]
+889.317 -0.105113 0.0 !Mu0ChY34TRaw[Co3At3Ch2]
+906.607 -0.107174 0.0 !Mu0ChY35TRaw[Co3At3Ch3]
+899.798 -0.105955 0.0 !Mu0ChY36TRaw[Co3At3Ch4]
+904.768 -0.107363 0.0 !Mu0ChY37TRaw[Co3At3Ch5]
+918.064 -0.107278 0.0 !Mu0ChY38TRaw[Co3At3Ch6]
+921.513 -0.107347 0.0 !Mu0ChY39TRaw[Co3At3Ch7]
+926.687 -0.109567 0.0 !Mu0ChY40TRaw[Co3At3Ch8]
+938.373 -0.109268 0.0 !Mu0ChY41TRaw[Co3At3Ch9]
+935.947 -0.109045 0.0 !Mu0ChY42TRaw[Co3At3Ch10]
+928.571 -0.108924 0.0 !Mu0ChY43TRaw[Co3At3Ch11]
+949.921 -0.110196 0.0 !Mu0ChY44TRaw[Co3At3Ch12]
+922.399 -0.109895 0.0 !Mu0ChY45TRaw[Co3At3Ch13]
+920.724 -0.10924 0.0 !Mu0ChY46TRaw[Co3At3Ch14]
+948.642 -0.110513 0.0 !Mu0ChY47TRaw[Co3At3Ch15]
+932.675 -0.109056 0.0 !Mu0ChY48TRaw[Co3At3Ch16]
+885.573 -0.103507 0.0 !Mu0ChY49TRaw[Co3At4Ch1]
+890.36 -0.104888 0.0 !Mu0ChY50TRaw[Co3At4Ch2]
+889.12 -0.104347 0.0 !Mu0ChY51TRaw[Co3At4Ch3]
+899.388 -0.106391 0.0 !Mu0ChY52TRaw[Co3At4Ch4]
+902.315 -0.106718 0.0 !Mu0ChY53TRaw[Co3At4Ch5]
+917.171 -0.106878 0.0 !Mu0ChY54TRaw[Co3At4Ch6]
+913.403 -0.106441 0.0 !Mu0ChY55TRaw[Co3At4Ch7]
+935.489 -0.107426 0.0 !Mu0ChY56TRaw[Co3At4Ch8]
+906.519 -0.107608 0.0 !Mu0ChY57TRaw[Co3At4Ch9]
+935.091 -0.108136 0.0 !Mu0ChY58TRaw[Co3At4Ch10]
+932.191 -0.109012 0.0 !Mu0ChY59TRaw[Co3At4Ch11]
+913.583 -0.108611 0.0 !Mu0ChY60TRaw[Co3At4Ch12]
+922.821 -0.108719 0.0 !Mu0ChY61TRaw[Co3At4Ch13]
+931.221 -0.109581 0.0 !Mu0ChY62TRaw[Co3At4Ch14]
+931.083 -0.108895 0.0 !Mu0ChY63TRaw[Co3At4Ch15]
+936.955 -0.109543 0.0 !Mu0ChY64TRaw[Co3At4Ch16]
+993.853 -0.116469 0.0 !Mu0ChY65TRaw[Co4At1Ch1]
+1011.78 -0.117302 0.0 !Mu0ChY66TRaw[Co4At1Ch2]
+995.56 -0.118012 0.0 !Mu0ChY67TRaw[Co4At1Ch3]
+1003.176 -0.118028 0.0 !Mu0ChY68TRaw[Co4At1Ch4]
+1025.25 -0.118378 0.0 !Mu0ChY69TRaw[Co4At1Ch5]
+1036.395 -0.118825 0.0 !Mu0ChY70TRaw[Co4At1Ch6]
+1001.923 -0.118781 0.0 !Mu0ChY71TRaw[Co4At1Ch7]
+1008.805 -0.119156 0.0 !Mu0ChY72TRaw[Co4At1Ch8]
+1005.22 -0.119628 0.0 !Mu0ChY73TRaw[Co4At1Ch9]
+1004.154 -0.118591 0.0 !Mu0ChY74TRaw[Co4At1Ch10]
+1031.155 -0.119656 0.0 !Mu0ChY75TRaw[Co4At1Ch11]
+1027.527 -0.120924 0.0 !Mu0ChY76TRaw[Co4At1Ch12]
+1026.408 -0.120327 0.0 !Mu0ChY77TRaw[Co4At1Ch13]
+1047.813 -0.120579 0.0 !Mu0ChY78TRaw[Co4At1Ch14]
+1025.636 -0.120247 0.0 !Mu0ChY79TRaw[Co4At1Ch15]
+1040.75 -0.121097 0.0 !Mu0ChY80TRaw[Co4At1Ch16]
+1004.086 -0.117145 0.0 !Mu0ChY81TRaw[Co4At2Ch1]
+1016.728 -0.119118 0.0 !Mu0ChY82TRaw[Co4At2Ch2]
+1004.19 -0.118534 0.0 !Mu0ChY83TRaw[Co4At2Ch3]
+1057.448 -0.12031 0.0 !Mu0ChY84TRaw[Co4At2Ch4]
+1038.261 -0.120777 0.0 !Mu0ChY85TRaw[Co4At2Ch5]
+1025.585 -0.121085 0.0 !Mu0ChY86TRaw[Co4At2Ch6]
+1032.746 -0.120569 0.0 !Mu0ChY87TRaw[Co4At2Ch7]
+1016.336 -0.121839 0.0 !Mu0ChY88TRaw[Co4At2Ch8]
+1019.819 -0.121339 0.0 !Mu0ChY89TRaw[Co4At2Ch9]
+1038.173 -0.122592 0.0 !Mu0ChY90TRaw[Co4At2Ch10]
+1060.978 -0.123897 0.0 !Mu0ChY91TRaw[Co4At2Ch11]
+1068.859 -0.123866 0.0 !Mu0ChY92TRaw[Co4At2Ch12]
+1055.44 -0.123256 0.0 !Mu0ChY93TRaw[Co4At2Ch13]
+1036.272 -0.123786 0.0 !Mu0ChY94TRaw[Co4At2Ch14]
+1052.796 -0.123408 0.0 !Mu0ChY95TRaw[Co4At2Ch15]
+1049.584 -0.122879 0.0 !Mu0ChY96TRaw[Co4At2Ch16]
+896.563 -0.106544 0.0 !Mu0ChY97TRaw[Co4At3Ch1]
+889.586 -0.106139 0.0 !Mu0ChY98TRaw[Co4At3Ch2]
+891.914 -0.106028 0.0 !Mu0ChY99TRaw[Co4At3Ch3]
+895.093 -0.108041 0.0 !Mu0ChY100TRaw[Co4At3Ch4]
+895.662 -0.107707 0.0 !Mu0ChY101TRaw[Co4At3Ch5]
+915.101 -0.10757 0.0 !Mu0ChY102TRaw[Co4At3Ch6]
+926.581 -0.108105 0.0 !Mu0ChY103TRaw[Co4At3Ch7]
+917.996 -0.10959 0.0 !Mu0ChY104TRaw[Co4At3Ch8]
+940.411 -0.108916 0.0 !Mu0ChY105TRaw[Co4At3Ch9]
+947.193 -0.110544 0.0 !Mu0ChY106TRaw[Co4At3Ch10]
+931.904 -0.109981 0.0 !Mu0ChY107TRaw[Co4At3Ch11]
+929.203 -0.11051 0.0 !Mu0ChY108TRaw[Co4At3Ch12]
+953.398 -0.110421 0.0 !Mu0ChY109TRaw[Co4At3Ch13]
+938.194 -0.109894 0.0 !Mu0ChY110TRaw[Co4At3Ch14]
+936.836 -0.110572 0.0 !Mu0ChY111TRaw[Co4At3Ch15]
+949.368 -0.110803 0.0 !Mu0ChY112TRaw[Co4At3Ch16]
+906.101 -0.107535 0.0 !Mu0ChY113TRaw[Co4At4Ch1]
+910.285 -0.108466 0.0 !Mu0ChY114TRaw[Co4At4Ch2]
+923.437 -0.108438 0.0 !Mu0ChY115TRaw[Co4At4Ch3]
+925.991 -0.109158 0.0 !Mu0ChY116TRaw[Co4At4Ch4]
+952.064 -0.110566 0.0 !Mu0ChY117TRaw[Co4At4Ch5]
+927.647 -0.109757 0.0 !Mu0ChY118TRaw[Co4At4Ch6]
+958.629 -0.112167 0.0 !Mu0ChY119TRaw[Co4At4Ch7]
+945.091 -0.111146 0.0 !Mu0ChY120TRaw[Co4At4Ch8]
+963.994 -0.112407 0.0 !Mu0ChY121TRaw[Co4At4Ch9]
+952.702 -0.112337 0.0 !Mu0ChY122TRaw[Co4At4Ch10]
+961.592 -0.112539 0.0 !Mu0ChY123TRaw[Co4At4Ch11]
+947.459 -0.112978 0.0 !Mu0ChY124TRaw[Co4At4Ch12]
+934.829 -0.112316 0.0 !Mu0ChY125TRaw[Co4At4Ch13]
+933.712 -0.112192 0.0 !Mu0ChY126TRaw[Co4At4Ch14]
+934.356 -0.111821 0.0 !Mu0ChY127TRaw[Co4At4Ch15]
+951.885 -0.112162 0.0 !Mu0ChY128TRaw[Co4At4Ch16]
+980.849 -0.11232 0.0 !Mu1ChX1TRaw[Co1At1Ch1]
+995.644 -0.114015 0.0 !Mu1ChX2TRaw[Co1At1Ch2]
+990.977 -0.114341 0.0 !Mu1ChX3TRaw[Co1At1Ch3]
+991.783 -0.115712 0.0 !Mu1ChX4TRaw[Co1At1Ch4]
+1010.572 -0.115744 0.0 !Mu1ChX5TRaw[Co1At1Ch5]
+1004.942 -0.115962 0.0 !Mu1ChX6TRaw[Co1At1Ch6]
+1027.025 -0.117589 0.0 !Mu1ChX7TRaw[Co1At1Ch7]
+1013.964 -0.116998 0.0 !Mu1ChX8TRaw[Co1At1Ch8]
+1014.607 -0.117498 0.0 !Mu1ChX9TRaw[Co1At1Ch9]
+1043.091 -0.118577 0.0 !Mu1ChX10TRaw[Co1At1Ch10]
+1034.931 -0.118143 0.0 !Mu1ChX11TRaw[Co1At1Ch11]
+1034.599 -0.118071 0.0 !Mu1ChX12TRaw[Co1At1Ch12]
+1047.388 -0.11954 0.0 !Mu1ChX13TRaw[Co1At1Ch13]
+1090.349 -0.119597 0.0 !Mu1ChX14TRaw[Co1At1Ch14]
+1079.336 -0.119236 0.0 !Mu1ChX15TRaw[Co1At1Ch15]
+1399.973 -0.119179 0.0 !Mu1ChX16TRaw[Co1At1Ch16]
+965.899 -0.111777 0.0 !Mu1ChX17TRaw[Co1At2Ch1]
+1008.155 -0.114612 0.0 !Mu1ChX18TRaw[Co1At2Ch2]
+1031.29 -0.114738 0.0 !Mu1ChX19TRaw[Co1At2Ch3]
+1013.952 -0.114439 0.0 !Mu1ChX20TRaw[Co1At2Ch4]
+1000.845 -0.115464 0.0 !Mu1ChX21TRaw[Co1At2Ch5]
+1018.067 -0.117052 0.0 !Mu1ChX22TRaw[Co1At2Ch6]
+1021.992 -0.115762 0.0 !Mu1ChX23TRaw[Co1At2Ch7]
+1031.743 -0.117739 0.0 !Mu1ChX24TRaw[Co1At2Ch8]
+1026.307 -0.117531 0.0 !Mu1ChX25TRaw[Co1At2Ch9]
+1010.795 -0.117923 0.0 !Mu1ChX26TRaw[Co1At2Ch10]
+1039.632 -0.117737 0.0 !Mu1ChX27TRaw[Co1At2Ch11]
+1043.136 -0.11821 0.0 !Mu1ChX28TRaw[Co1At2Ch12]
+1030.929 -0.118677 0.0 !Mu1ChX29TRaw[Co1At2Ch13]
+1014.245 -0.118324 0.0 !Mu1ChX30TRaw[Co1At2Ch14]
+1039.652 -0.118198 0.0 !Mu1ChX31TRaw[Co1At2Ch15]
+1033.056 -0.119148 0.0 !Mu1ChX32TRaw[Co1At2Ch16]
+886.337 -0.106165 0.0 !Mu1ChX33TRaw[Co1At3Ch1]
+899.905 -0.10618 0.0 !Mu1ChX34TRaw[Co1At3Ch2]
+919.178 -0.108064 0.0 !Mu1ChX35TRaw[Co1At3Ch3]
+908.222 -0.105941 0.0 !Mu1ChX36TRaw[Co1At3Ch4]
+926.543 -0.108105 0.0 !Mu1ChX37TRaw[Co1At3Ch5]
+925.555 -0.108823 0.0 !Mu1ChX38TRaw[Co1At3Ch6]
+918.057 -0.107861 0.0 !Mu1ChX39TRaw[Co1At3Ch7]
+919.133 -0.10842 0.0 !Mu1ChX40TRaw[Co1At3Ch8]
+929.006 -0.108779 0.0 !Mu1ChX41TRaw[Co1At3Ch9]
+932.249 -0.108754 0.0 !Mu1ChX42TRaw[Co1At3Ch10]
+955.208 -0.109783 0.0 !Mu1ChX43TRaw[Co1At3Ch11]
+933.139 -0.108855 0.0 !Mu1ChX44TRaw[Co1At3Ch12]
+937.243 -0.110019 0.0 !Mu1ChX45TRaw[Co1At3Ch13]
+923.868 -0.109854 0.0 !Mu1ChX46TRaw[Co1At3Ch14]
+942.489 -0.109528 0.0 !Mu1ChX47TRaw[Co1At3Ch15]
+980.341 -0.110055 0.0 !Mu1ChX48TRaw[Co1At3Ch16]
+911.222 -0.104838 0.0 !Mu1ChX49TRaw[Co1At4Ch1]
+908.507 -0.105455 0.0 !Mu1ChX50TRaw[Co1At4Ch2]
+907.89 -0.107015 0.0 !Mu1ChX51TRaw[Co1At4Ch3]
+903.533 -0.107338 0.0 !Mu1ChX52TRaw[Co1At4Ch4]
+910.292 -0.107685 0.0 !Mu1ChX53TRaw[Co1At4Ch5]
+927.437 -0.107699 0.0 !Mu1ChX54TRaw[Co1At4Ch6]
+931.552 -0.10819 0.0 !Mu1ChX55TRaw[Co1At4Ch7]
+937.564 -0.108878 0.0 !Mu1ChX56TRaw[Co1At4Ch8]
+937.603 -0.1097 0.0 !Mu1ChX57TRaw[Co1At4Ch9]
+929.418 -0.10916 0.0 !Mu1ChX58TRaw[Co1At4Ch10]
+945.414 -0.110244 0.0 !Mu1ChX59TRaw[Co1At4Ch11]
+930.688 -0.109308 0.0 !Mu1ChX60TRaw[Co1At4Ch12]
+961.82 -0.110894 0.0 !Mu1ChX61TRaw[Co1At4Ch13]
+931.811 -0.109867 0.0 !Mu1ChX62TRaw[Co1At4Ch14]
+938.381 -0.109791 0.0 !Mu1ChX63TRaw[Co1At4Ch15]
+943.474 -0.110777 0.0 !Mu1ChX64TRaw[Co1At4Ch16]
+988.402 -0.114723 0.0 !Mu1ChX65TRaw[Co2At1Ch1]
+987.059 -0.114949 0.0 !Mu1ChX66TRaw[Co2At1Ch2]
+1005.296 -0.116629 0.0 !Mu1ChX67TRaw[Co2At1Ch3]
+1041.962 -0.116557 0.0 !Mu1ChX68TRaw[Co2At1Ch4]
+1018.025 -0.116827 0.0 !Mu1ChX69TRaw[Co2At1Ch5]
+1026.525 -0.117811 0.0 !Mu1ChX70TRaw[Co2At1Ch6]
+1022.451 -0.117758 0.0 !Mu1ChX71TRaw[Co2At1Ch7]
+1039.117 -0.118392 0.0 !Mu1ChX72TRaw[Co2At1Ch8]
+1036.398 -0.118063 0.0 !Mu1ChX73TRaw[Co2At1Ch9]
+1051.153 -0.119853 0.0 !Mu1ChX74TRaw[Co2At1Ch10]
+1039.597 -0.119377 0.0 !Mu1ChX75TRaw[Co2At1Ch11]
+1026.806 -0.119141 0.0 !Mu1ChX76TRaw[Co2At1Ch12]
+1037.981 -0.119982 0.0 !Mu1ChX77TRaw[Co2At1Ch13]
+1039.726 -0.120199 0.0 !Mu1ChX78TRaw[Co2At1Ch14]
+1047.594 -0.1202 0.0 !Mu1ChX79TRaw[Co2At1Ch15]
+1404.444 -0.120722 0.0 !Mu1ChX80TRaw[Co2At1Ch16]
+1011.808 -0.117775 0.0 !Mu1ChX81TRaw[Co2At2Ch1]
+1016.332 -0.118024 0.0 !Mu1ChX82TRaw[Co2At2Ch2]
+1030.608 -0.118652 0.0 !Mu1ChX83TRaw[Co2At2Ch3]
+1029.549 -0.120307 0.0 !Mu1ChX84TRaw[Co2At2Ch4]
+1040.137 -0.120215 0.0 !Mu1ChX85TRaw[Co2At2Ch5]
+1062.0 -0.121389 0.0 !Mu1ChX86TRaw[Co2At2Ch6]
+1059.477 -0.121554 0.0 !Mu1ChX87TRaw[Co2At2Ch7]
+1046.994 -0.12057 0.0 !Mu1ChX88TRaw[Co2At2Ch8]
+1070.134 -0.122345 0.0 !Mu1ChX89TRaw[Co2At2Ch9]
+1064.802 -0.12261 0.0 !Mu1ChX90TRaw[Co2At2Ch10]
+1067.994 -0.122082 0.0 !Mu1ChX91TRaw[Co2At2Ch11]
+1058.802 -0.12282 0.0 !Mu1ChX92TRaw[Co2At2Ch12]
+1085.606 -0.12279 0.0 !Mu1ChX93TRaw[Co2At2Ch13]
+1112.3 -0.123127 0.0 !Mu1ChX94TRaw[Co2At2Ch14]
+1065.22 -0.123096 0.0 !Mu1ChX95TRaw[Co2At2Ch15]
+1087.39 -0.12163 0.0 !Mu1ChX96TRaw[Co2At2Ch16]
+944.75 -0.107613 0.0 !Mu1ChX97TRaw[Co2At3Ch1]
+953.257 -0.107373 0.0 !Mu1ChX98TRaw[Co2At3Ch2]
+940.186 -0.107838 0.0 !Mu1ChX99TRaw[Co2At3Ch3]
+938.233 -0.109224 0.0 !Mu1ChX100TRaw[Co2At3Ch4]
+938.882 -0.1092 0.0 !Mu1ChX101TRaw[Co2At3Ch5]
+946.755 -0.109791 0.0 !Mu1ChX102TRaw[Co2At3Ch6]
+949.15 -0.109268 0.0 !Mu1ChX103TRaw[Co2At3Ch7]
+986.829 -0.111151 0.0 !Mu1ChX104TRaw[Co2At3Ch8]
+995.127 -0.11128 0.0 !Mu1ChX105TRaw[Co2At3Ch9]
+1003.516 -0.111467 0.0 !Mu1ChX106TRaw[Co2At3Ch10]
+998.332 -0.112035 0.0 !Mu1ChX107TRaw[Co2At3Ch11]
+1007.836 -0.111519 0.0 !Mu1ChX108TRaw[Co2At3Ch12]
+1008.695 -0.111616 0.0 !Mu1ChX109TRaw[Co2At3Ch13]
+950.4 -0.110627 0.0 !Mu1ChX110TRaw[Co2At3Ch14]
+967.222 -0.110941 0.0 !Mu1ChX111TRaw[Co2At3Ch15]
+991.806 -0.11176 0.0 !Mu1ChX112TRaw[Co2At3Ch16]
+971.271 -0.108476 0.0 !Mu1ChX113TRaw[Co2At4Ch1]
+940.865 -0.108567 0.0 !Mu1ChX114TRaw[Co2At4Ch2]
+938.048 -0.10946 0.0 !Mu1ChX115TRaw[Co2At4Ch3]
+971.747 -0.110136 0.0 !Mu1ChX116TRaw[Co2At4Ch4]
+1026.72 -0.111977 0.0 !Mu1ChX117TRaw[Co2At4Ch5]
+999.883 -0.111304 0.0 !Mu1ChX118TRaw[Co2At4Ch6]
+998.593 -0.112781 0.0 !Mu1ChX119TRaw[Co2At4Ch7]
+969.943 -0.110659 0.0 !Mu1ChX120TRaw[Co2At4Ch8]
+975.062 -0.111325 0.0 !Mu1ChX121TRaw[Co2At4Ch9]
+1011.733 -0.112226 0.0 !Mu1ChX122TRaw[Co2At4Ch10]
+969.884 -0.11236 0.0 !Mu1ChX123TRaw[Co2At4Ch11]
+968.551 -0.111775 0.0 !Mu1ChX124TRaw[Co2At4Ch12]
+958.828 -0.111483 0.0 !Mu1ChX125TRaw[Co2At4Ch13]
+982.145 -0.112193 0.0 !Mu1ChX126TRaw[Co2At4Ch14]
+989.725 -0.112614 0.0 !Mu1ChX127TRaw[Co2At4Ch15]
+987.185 -0.111864 0.0 !Mu1ChX128TRaw[Co2At4Ch16]
+959.046 -0.11282 0.0 !Mu1ChY1TRaw[Co3At1Ch1]
+955.007 -0.113022 0.0 !Mu1ChY2TRaw[Co3At1Ch2]
+990.4 -0.114361 0.0 !Mu1ChY3TRaw[Co3At1Ch3]
+998.254 -0.114834 0.0 !Mu1ChY4TRaw[Co3At1Ch4]
+996.127 -0.115122 0.0 !Mu1ChY5TRaw[Co3At1Ch5]
+978.096 -0.115533 0.0 !Mu1ChY6TRaw[Co3At1Ch6]
+970.638 -0.115938 0.0 !Mu1ChY7TRaw[Co3At1Ch7]
+974.726 -0.114726 0.0 !Mu1ChY8TRaw[Co3At1Ch8]
+993.383 -0.11562 0.0 !Mu1ChY9TRaw[Co3At1Ch9]
+1007.108 -0.116854 0.0 !Mu1ChY10TRaw[Co3At1Ch10]
+995.68 -0.116368 0.0 !Mu1ChY11TRaw[Co3At1Ch11]
+1000.024 -0.117327 0.0 !Mu1ChY12TRaw[Co3At1Ch12]
+985.351 -0.117358 0.0 !Mu1ChY13TRaw[Co3At1Ch13]
+999.446 -0.116827 0.0 !Mu1ChY14TRaw[Co3At1Ch14]
+1004.621 -0.116981 0.0 !Mu1ChY15TRaw[Co3At1Ch15]
+1005.546 -0.116717 0.0 !Mu1ChY16TRaw[Co3At1Ch16]
+1012.494 -0.116883 0.0 !Mu1ChY17TRaw[Co3At2Ch1]
+1014.466 -0.117128 0.0 !Mu1ChY18TRaw[Co3At2Ch2]
+992.985 -0.117665 0.0 !Mu1ChY19TRaw[Co3At2Ch3]
+997.079 -0.117743 0.0 !Mu1ChY20TRaw[Co3At2Ch4]
+1016.676 -0.119146 0.0 !Mu1ChY21TRaw[Co3At2Ch5]
+1013.451 -0.118747 0.0 !Mu1ChY22TRaw[Co3At2Ch6]
+1426.337 -0.119189 0.0 !Mu1ChY23TRaw[Co3At2Ch7]
+1047.483 -0.119964 0.0 !Mu1ChY24TRaw[Co3At2Ch8]
+1006.065 -0.120158 0.0 !Mu1ChY25TRaw[Co3At2Ch9]
+1021.389 -0.120176 0.0 !Mu1ChY26TRaw[Co3At2Ch10]
+1025.992 -0.120728 0.0 !Mu1ChY27TRaw[Co3At2Ch11]
+1028.907 -0.120113 0.0 !Mu1ChY28TRaw[Co3At2Ch12]
+1055.441 -0.120339 0.0 !Mu1ChY29TRaw[Co3At2Ch13]
+1025.325 -0.119308 0.0 !Mu1ChY30TRaw[Co3At2Ch14]
+1027.794 -0.120108 0.0 !Mu1ChY31TRaw[Co3At2Ch15]
+1034.513 -0.119515 0.0 !Mu1ChY32TRaw[Co3At2Ch16]
+920.744 -0.106691 0.0 !Mu1ChY33TRaw[Co3At3Ch1]
+922.373 -0.10745 0.0 !Mu1ChY34TRaw[Co3At3Ch2]
+935.437 -0.106848 0.0 !Mu1ChY35TRaw[Co3At3Ch3]
+918.478 -0.108037 0.0 !Mu1ChY36TRaw[Co3At3Ch4]
+850695103980.0 -103827000.0 0.0 !Mu1ChY37TRaw[Co3At3Ch5]
+946.467 -0.109433 0.0 !Mu1ChY38TRaw[Co3At3Ch6]
+928.82 -0.110242 0.0 !Mu1ChY39TRaw[Co3At3Ch7]
+944.55 -0.10944 0.0 !Mu1ChY40TRaw[Co3At3Ch8]
+921.176 -0.107957 0.0 !Mu1ChY41TRaw[Co3At3Ch9]
+961.639 -0.109521 0.0 !Mu1ChY42TRaw[Co3At3Ch10]
+947.387 -0.108623 0.0 !Mu1ChY43TRaw[Co3At3Ch11]
+989.749 -0.10969 0.0 !Mu1ChY44TRaw[Co3At3Ch12]
+952.402 -0.109989 0.0 !Mu1ChY45TRaw[Co3At3Ch13]
+957.138 -0.109312 0.0 !Mu1ChY46TRaw[Co3At3Ch14]
+958.024 -0.109844 0.0 !Mu1ChY47TRaw[Co3At3Ch15]
+966.166 -0.109257 0.0 !Mu1ChY48TRaw[Co3At3Ch16]
+920.741 -0.10696 0.0 !Mu1ChY49TRaw[Co3At4Ch1]
+920.027 -0.106852 0.0 !Mu1ChY50TRaw[Co3At4Ch2]
+912.826 -0.106436 0.0 !Mu1ChY51TRaw[Co3At4Ch3]
+936.647 -0.108049 0.0 !Mu1ChY52TRaw[Co3At4Ch4]
+960.344 -0.108781 0.0 !Mu1ChY53TRaw[Co3At4Ch5]
+964.769 -0.108923 0.0 !Mu1ChY54TRaw[Co3At4Ch6]
+957.64 -0.108922 0.0 !Mu1ChY55TRaw[Co3At4Ch7]
+933.691 -0.108949 0.0 !Mu1ChY56TRaw[Co3At4Ch8]
+931.842 -0.110395 0.0 !Mu1ChY57TRaw[Co3At4Ch9]
+944.809 -0.110294 0.0 !Mu1ChY58TRaw[Co3At4Ch10]
+947.24 -0.109746 0.0 !Mu1ChY59TRaw[Co3At4Ch11]
+957.31 -0.109802 0.0 !Mu1ChY60TRaw[Co3At4Ch12]
+943.761 -0.109742 0.0 !Mu1ChY61TRaw[Co3At4Ch13]
+966.426 -0.11072 0.0 !Mu1ChY62TRaw[Co3At4Ch14]
+950.095 -0.110879 0.0 !Mu1ChY63TRaw[Co3At4Ch15]
+951.17 -0.111037 0.0 !Mu1ChY64TRaw[Co3At4Ch16]
+972.73 -0.115194 0.0 !Mu1ChY65TRaw[Co4At1Ch1]
+988.76 -0.116053 0.0 !Mu1ChY66TRaw[Co4At1Ch2]
+995.222 -0.116788 0.0 !Mu1ChY67TRaw[Co4At1Ch3]
+993.192 -0.117211 0.0 !Mu1ChY68TRaw[Co4At1Ch4]
+991.024 -0.117617 0.0 !Mu1ChY69TRaw[Co4At1Ch5]
+1021.91 -0.118609 0.0 !Mu1ChY70TRaw[Co4At1Ch6]
+998.673 -0.118053 0.0 !Mu1ChY71TRaw[Co4At1Ch7]
+1033.44 -0.119038 0.0 !Mu1ChY72TRaw[Co4At1Ch8]
+1023.013 -0.119163 0.0 !Mu1ChY73TRaw[Co4At1Ch9]
+1030.138 -0.119552 0.0 !Mu1ChY74TRaw[Co4At1Ch10]
+997.999 -0.119777 0.0 !Mu1ChY75TRaw[Co4At1Ch11]
+1028.938 -0.119391 0.0 !Mu1ChY76TRaw[Co4At1Ch12]
+1039.947 -0.11981 0.0 !Mu1ChY77TRaw[Co4At1Ch13]
+1018.562 -0.119505 0.0 !Mu1ChY78TRaw[Co4At1Ch14]
+1026.918 -0.119601 0.0 !Mu1ChY79TRaw[Co4At1Ch15]
+1016.742 -0.120194 0.0 !Mu1ChY80TRaw[Co4At1Ch16]
+1000.175 -0.114646 0.0 !Mu1ChY81TRaw[Co4At2Ch1]
+1008.839 -0.115676 0.0 !Mu1ChY82TRaw[Co4At2Ch2]
+985.563 -0.115551 0.0 !Mu1ChY83TRaw[Co4At2Ch3]
+993.917 -0.116392 0.0 !Mu1ChY84TRaw[Co4At2Ch4]
+1014.626 -0.116344 0.0 !Mu1ChY85TRaw[Co4At2Ch5]
+991.36 -0.117589 0.0 !Mu1ChY86TRaw[Co4At2Ch6]
+1003.643 -0.117699 0.0 !Mu1ChY87TRaw[Co4At2Ch7]
+1010.927 -0.118567 0.0 !Mu1ChY88TRaw[Co4At2Ch8]
+1019.642 -0.118705 0.0 !Mu1ChY89TRaw[Co4At2Ch9]
+1008.155 -0.117807 0.0 !Mu1ChY90TRaw[Co4At2Ch10]
+1035.898 -0.118376 0.0 !Mu1ChY91TRaw[Co4At2Ch11]
+994.394 -0.119333 0.0 !Mu1ChY92TRaw[Co4At2Ch12]
+1021.709 -0.119429 0.0 !Mu1ChY93TRaw[Co4At2Ch13]
+1010.995 -0.118576 0.0 !Mu1ChY94TRaw[Co4At2Ch14]
+1018.58 -0.119031 0.0 !Mu1ChY95TRaw[Co4At2Ch15]
+1011.279 -0.120471 0.0 !Mu1ChY96TRaw[Co4At2Ch16]
+901.438 -0.106136 0.0 !Mu1ChY97TRaw[Co4At3Ch1]
+901.598 -0.106 0.0 !Mu1ChY98TRaw[Co4At3Ch2]
+892.576 -0.106555 0.0 !Mu1ChY99TRaw[Co4At3Ch3]
+920.81 -0.108263 0.0 !Mu1ChY100TRaw[Co4At3Ch4]
+906.799 -0.10801 0.0 !Mu1ChY101TRaw[Co4At3Ch5]
+896.759 -0.107044 0.0 !Mu1ChY102TRaw[Co4At3Ch6]
+907.908 -0.108005 0.0 !Mu1ChY103TRaw[Co4At3Ch7]
+925.104 -0.108406 0.0 !Mu1ChY104TRaw[Co4At3Ch8]
+932.551 -0.109653 0.0 !Mu1ChY105TRaw[Co4At3Ch9]
+908.315 -0.10926 0.0 !Mu1ChY106TRaw[Co4At3Ch10]
+938.118 -0.10967 0.0 !Mu1ChY107TRaw[Co4At3Ch11]
+916.068 -0.108536 0.0 !Mu1ChY108TRaw[Co4At3Ch12]
+939.43 -0.109417 0.0 !Mu1ChY109TRaw[Co4At3Ch13]
+950.082 -0.110268 0.0 !Mu1ChY110TRaw[Co4At3Ch14]
+930.016 -0.109108 0.0 !Mu1ChY111TRaw[Co4At3Ch15]
+930.868 -0.109824 0.0 !Mu1ChY112TRaw[Co4At3Ch16]
+891.572 -0.104291 0.0 !Mu1ChY113TRaw[Co4At4Ch1]
+875.099 -0.103549 0.0 !Mu1ChY114TRaw[Co4At4Ch2]
+900.246 -0.104798 0.0 !Mu1ChY115TRaw[Co4At4Ch3]
+912.537 -0.10419 0.0 !Mu1ChY116TRaw[Co4At4Ch4]
+885.693 -0.105221 0.0 !Mu1ChY117TRaw[Co4At4Ch5]
+925.459 -0.106354 0.0 !Mu1ChY118TRaw[Co4At4Ch6]
+908.711 -0.1069 0.0 !Mu1ChY119TRaw[Co4At4Ch7]
+909.178 -0.106252 0.0 !Mu1ChY120TRaw[Co4At4Ch8]
+931.016 -0.108379 0.0 !Mu1ChY121TRaw[Co4At4Ch9]
+922.012 -0.108492 0.0 !Mu1ChY122TRaw[Co4At4Ch10]
+916.508 -0.108225 0.0 !Mu1ChY123TRaw[Co4At4Ch11]
+906.606 -0.108132 0.0 !Mu1ChY124TRaw[Co4At4Ch12]
+915.935 -0.108412 0.0 !Mu1ChY125TRaw[Co4At4Ch13]
+907.675 -0.10784 0.0 !Mu1ChY126TRaw[Co4At4Ch14]
+920.698 -0.107526 0.0 !Mu1ChY127TRaw[Co4At4Ch15]
+971.039 -0.121191 0.0 !Mu1ChY128TRaw[Co4At4Ch16]
+1005.057 -0.113282 0.0 !Mu2ChX1TRaw[Co1At1Ch1]
+1024.643 -0.112935 0.0 !Mu2ChX2TRaw[Co1At1Ch2]
+986.354 -0.113903 0.0 !Mu2ChX3TRaw[Co1At1Ch3]
+995.274 -0.11541 0.0 !Mu2ChX4TRaw[Co1At1Ch4]
+998.065 -0.114834 0.0 !Mu2ChX5TRaw[Co1At1Ch5]
+1012.746 -0.116968 0.0 !Mu2ChX6TRaw[Co1At1Ch6]
+1039.176 -0.116144 0.0 !Mu2ChX7TRaw[Co1At1Ch7]
+1055.919 -0.116738 0.0 !Mu2ChX8TRaw[Co1At1Ch8]
+1024.818 -0.115736 0.0 !Mu2ChX9TRaw[Co1At1Ch9]
+1041.025 -0.117191 0.0 !Mu2ChX10TRaw[Co1At1Ch10]
+1055.419 -0.117505 0.0 !Mu2ChX11TRaw[Co1At1Ch11]
+1057.127 -0.116868 0.0 !Mu2ChX12TRaw[Co1At1Ch12]
+1050.195 -0.117596 0.0 !Mu2ChX13TRaw[Co1At1Ch13]
+1038.03 -0.116864 0.0 !Mu2ChX14TRaw[Co1At1Ch14]
+1061.15 -0.116934 0.0 !Mu2ChX15TRaw[Co1At1Ch15]
+1412.756 -0.118078 0.0 !Mu2ChX16TRaw[Co1At1Ch16]
+988.528 -0.111042 0.0 !Mu2ChX17TRaw[Co1At2Ch1]
+1014.262 -0.1129 0.0 !Mu2ChX18TRaw[Co1At2Ch2]
+995.412 -0.113239 0.0 !Mu2ChX19TRaw[Co1At2Ch3]
+1001.287 -0.11311 0.0 !Mu2ChX20TRaw[Co1At2Ch4]
+1023.95 -0.114433 0.0 !Mu2ChX21TRaw[Co1At2Ch5]
+1029.883 -0.113893 0.0 !Mu2ChX22TRaw[Co1At2Ch6]
+1016.473 -0.113604 0.0 !Mu2ChX23TRaw[Co1At2Ch7]
+1036.305 -0.114596 0.0 !Mu2ChX24TRaw[Co1At2Ch8]
+1016.128 -0.113523 0.0 !Mu2ChX25TRaw[Co1At2Ch9]
+1032.235 -0.114529 0.0 !Mu2ChX26TRaw[Co1At2Ch10]
+1018.109 -0.114587 0.0 !Mu2ChX27TRaw[Co1At2Ch11]
+989.033 -0.114127 0.0 !Mu2ChX28TRaw[Co1At2Ch12]
+1003.878 -0.115049 0.0 !Mu2ChX29TRaw[Co1At2Ch13]
+985.429 -0.114577 0.0 !Mu2ChX30TRaw[Co1At2Ch14]
+1031.085 -0.114801 0.0 !Mu2ChX31TRaw[Co1At2Ch15]
+1143.284 -0.114725 0.0 !Mu2ChX32TRaw[Co1At2Ch16]
+915.358 -0.106884 0.0 !Mu2ChX33TRaw[Co1At3Ch1]
+922.985 -0.106588 0.0 !Mu2ChX34TRaw[Co1At3Ch2]
+943.57 -0.10771 0.0 !Mu2ChX35TRaw[Co1At3Ch3]
+943.472 -0.10739 0.0 !Mu2ChX36TRaw[Co1At3Ch4]
+961.3 -0.109058 0.0 !Mu2ChX37TRaw[Co1At3Ch5]
+944.732 -0.108685 0.0 !Mu2ChX38TRaw[Co1At3Ch6]
+948.953 -0.109605 0.0 !Mu2ChX39TRaw[Co1At3Ch7]
+956.233 -0.109211 0.0 !Mu2ChX40TRaw[Co1At3Ch8]
+952.436 -0.109168 0.0 !Mu2ChX41TRaw[Co1At3Ch9]
+976.11 -0.109617 0.0 !Mu2ChX42TRaw[Co1At3Ch10]
+998.27 -0.1104 0.0 !Mu2ChX43TRaw[Co1At3Ch11]
+993.377 -0.110254 0.0 !Mu2ChX44TRaw[Co1At3Ch12]
+980.663 -0.111219 0.0 !Mu2ChX45TRaw[Co1At3Ch13]
+971.875 -0.111043 0.0 !Mu2ChX46TRaw[Co1At3Ch14]
+974.772 -0.111378 0.0 !Mu2ChX47TRaw[Co1At3Ch15]
+1347.092 -0.11089 0.0 !Mu2ChX48TRaw[Co1At3Ch16]
+909.603 -0.102956 0.0 !Mu2ChX49TRaw[Co1At4Ch1]
+903.729 -0.104191 0.0 !Mu2ChX50TRaw[Co1At4Ch2]
+936.844 -0.105362 0.0 !Mu2ChX51TRaw[Co1At4Ch3]
+927.243 -0.10464 0.0 !Mu2ChX52TRaw[Co1At4Ch4]
+950.69 -0.105723 0.0 !Mu2ChX53TRaw[Co1At4Ch5]
+957.281 -0.105755 0.0 !Mu2ChX54TRaw[Co1At4Ch6]
+942.681 -0.105984 0.0 !Mu2ChX55TRaw[Co1At4Ch7]
+951.359 -0.106931 0.0 !Mu2ChX56TRaw[Co1At4Ch8]
+933.36 -0.108024 0.0 !Mu2ChX57TRaw[Co1At4Ch9]
+952.824 -0.108307 0.0 !Mu2ChX58TRaw[Co1At4Ch10]
+954.213 -0.107279 0.0 !Mu2ChX59TRaw[Co1At4Ch11]
+958.465 -0.108543 0.0 !Mu2ChX60TRaw[Co1At4Ch12]
+977.15 -0.108721 0.0 !Mu2ChX61TRaw[Co1At4Ch13]
+967.709 -0.108665 0.0 !Mu2ChX62TRaw[Co1At4Ch14]
+952.646 -0.10824 0.0 !Mu2ChX63TRaw[Co1At4Ch15]
+1310.218 -0.107885 0.0 !Mu2ChX64TRaw[Co1At4Ch16]
+1001.233 -0.117533 0.0 !Mu2ChX65TRaw[Co2At1Ch1]
+1003.211 -0.117545 0.0 !Mu2ChX66TRaw[Co2At1Ch2]
+1066.041 -0.118957 0.0 !Mu2ChX67TRaw[Co2At1Ch3]
+1024.957 -0.119584 0.0 !Mu2ChX68TRaw[Co2At1Ch4]
+1432.499 -0.119902 0.0 !Mu2ChX69TRaw[Co2At1Ch5]
+1033.43 -0.12002 0.0 !Mu2ChX70TRaw[Co2At1Ch6]
+1042.557 -0.120171 0.0 !Mu2ChX71TRaw[Co2At1Ch7]
+1059.805 -0.120802 0.0 !Mu2ChX72TRaw[Co2At1Ch8]
+1047.622 -0.119977 0.0 !Mu2ChX73TRaw[Co2At1Ch9]
+1025.939 -0.12102 0.0 !Mu2ChX74TRaw[Co2At1Ch10]
+1025.453 -0.12055 0.0 !Mu2ChX75TRaw[Co2At1Ch11]
+1024.259 -0.12048 0.0 !Mu2ChX76TRaw[Co2At1Ch12]
+1042.813 -0.121688 0.0 !Mu2ChX77TRaw[Co2At1Ch13]
+1043.519 -0.122136 0.0 !Mu2ChX78TRaw[Co2At1Ch14]
+1037.818 -0.122472 0.0 !Mu2ChX79TRaw[Co2At1Ch15]
+1330.974 -0.121488 0.0 !Mu2ChX80TRaw[Co2At1Ch16]
+969.937 -0.115148 0.0 !Mu2ChX81TRaw[Co2At2Ch1]
+981.206 -0.116512 0.0 !Mu2ChX82TRaw[Co2At2Ch2]
+994.193 -0.116735 0.0 !Mu2ChX83TRaw[Co2At2Ch3]
+1005.358 -0.117158 0.0 !Mu2ChX84TRaw[Co2At2Ch4]
+997.839 -0.117159 0.0 !Mu2ChX85TRaw[Co2At2Ch5]
+1000.082 -0.117336 0.0 !Mu2ChX86TRaw[Co2At2Ch6]
+1010.191 -0.118997 0.0 !Mu2ChX87TRaw[Co2At2Ch7]
+1028.329 -0.118879 0.0 !Mu2ChX88TRaw[Co2At2Ch8]
+1054.676 -0.120152 0.0 !Mu2ChX89TRaw[Co2At2Ch9]
+1035.166 -0.120143 0.0 !Mu2ChX90TRaw[Co2At2Ch10]
+1041.703 -0.120011 0.0 !Mu2ChX91TRaw[Co2At2Ch11]
+1016.252 -0.118788 0.0 !Mu2ChX92TRaw[Co2At2Ch12]
+1058.261 -0.120614 0.0 !Mu2ChX93TRaw[Co2At2Ch13]
+1073.091 -0.12112 0.0 !Mu2ChX94TRaw[Co2At2Ch14]
+1067.441 -0.12123 0.0 !Mu2ChX95TRaw[Co2At2Ch15]
+1030.954 -0.119394 0.0 !Mu2ChX96TRaw[Co2At2Ch16]
+980.425 -0.10895 0.0 !Mu2ChX97TRaw[Co2At3Ch1]
+977.496 -0.11099 0.0 !Mu2ChX98TRaw[Co2At3Ch2]
+976.422 -0.110483 0.0 !Mu2ChX99TRaw[Co2At3Ch3]
+938.171 -0.110494 0.0 !Mu2ChX100TRaw[Co2At3Ch4]
+972.45 -0.11163 0.0 !Mu2ChX101TRaw[Co2At3Ch5]
+987.496 -0.111573 0.0 !Mu2ChX102TRaw[Co2At3Ch6]
+973.077 -0.111368 0.0 !Mu2ChX103TRaw[Co2At3Ch7]
+978.656 -0.111888 0.0 !Mu2ChX104TRaw[Co2At3Ch8]
+992.736 -0.113122 0.0 !Mu2ChX105TRaw[Co2At3Ch9]
+1000.584 -0.112764 0.0 !Mu2ChX106TRaw[Co2At3Ch10]
+994.741 -0.113373 0.0 !Mu2ChX107TRaw[Co2At3Ch11]
+982.648 -0.112797 0.0 !Mu2ChX108TRaw[Co2At3Ch12]
+1002.384 -0.113176 0.0 !Mu2ChX109TRaw[Co2At3Ch13]
+1011.342 -0.113973 0.0 !Mu2ChX110TRaw[Co2At3Ch14]
+989.99 -0.114066 0.0 !Mu2ChX111TRaw[Co2At3Ch15]
+965.353 -0.113973 0.0 !Mu2ChX112TRaw[Co2At3Ch16]
+933.237 -0.108961 0.0 !Mu2ChX113TRaw[Co2At4Ch1]
+944.972 -0.109531 0.0 !Mu2ChX114TRaw[Co2At4Ch2]
+978.071 -0.110461 0.0 !Mu2ChX115TRaw[Co2At4Ch3]
+973.41 -0.110414 0.0 !Mu2ChX116TRaw[Co2At4Ch4]
+979.34 -0.112323 0.0 !Mu2ChX117TRaw[Co2At4Ch5]
+982.649 -0.11267 0.0 !Mu2ChX118TRaw[Co2At4Ch6]
+1013.146 -0.113333 0.0 !Mu2ChX119TRaw[Co2At4Ch7]
+1009.728 -0.113698 0.0 !Mu2ChX120TRaw[Co2At4Ch8]
+991.043 -0.113666 0.0 !Mu2ChX121TRaw[Co2At4Ch9]
+1014.817 -0.114745 0.0 !Mu2ChX122TRaw[Co2At4Ch10]
+991.147 -0.113673 0.0 !Mu2ChX123TRaw[Co2At4Ch11]
+1008.74 -0.11443 0.0 !Mu2ChX124TRaw[Co2At4Ch12]
+975.958 -0.113174 0.0 !Mu2ChX125TRaw[Co2At4Ch13]
+972.192 -0.113143 0.0 !Mu2ChX126TRaw[Co2At4Ch14]
+1017.521 -0.114176 0.0 !Mu2ChX127TRaw[Co2At4Ch15]
+1021.168 -0.114186 0.0 !Mu2ChX128TRaw[Co2At4Ch16]
+1035.908 -0.119525 0.0 !Mu2ChY1TRaw[Co3At1Ch1]
+1035.229 -0.119903 0.0 !Mu2ChY2TRaw[Co3At1Ch2]
+1030.146 -0.119776 0.0 !Mu2ChY3TRaw[Co3At1Ch3]
+1040.541 -0.120524 0.0 !Mu2ChY4TRaw[Co3At1Ch4]
+1061.612 -0.121165 0.0 !Mu2ChY5TRaw[Co3At1Ch5]
+1044.106 -0.120947 0.0 !Mu2ChY6TRaw[Co3At1Ch6]
+1037.447 -0.121526 0.0 !Mu2ChY7TRaw[Co3At1Ch7]
+1044.705 -0.122366 0.0 !Mu2ChY8TRaw[Co3At1Ch8]
+1042.269 -0.122539 0.0 !Mu2ChY9TRaw[Co3At1Ch9]
+1052.929 -0.121307 0.0 !Mu2ChY10TRaw[Co3At1Ch10]
+1040.257 -0.122275 0.0 !Mu2ChY11TRaw[Co3At1Ch11]
+1053.327 -0.122898 0.0 !Mu2ChY12TRaw[Co3At1Ch12]
+1086.343 -0.12312 0.0 !Mu2ChY13TRaw[Co3At1Ch13]
+1064.505 -0.123746 0.0 !Mu2ChY14TRaw[Co3At1Ch14]
+1059.405 -0.123621 0.0 !Mu2ChY15TRaw[Co3At1Ch15]
+1052.538 -0.123744 0.0 !Mu2ChY16TRaw[Co3At1Ch16]
+953.784 -0.113632 0.0 !Mu2ChY17TRaw[Co3At2Ch1]
+960.621 -0.11359 0.0 !Mu2ChY18TRaw[Co3At2Ch2]
+967.342 -0.113546 0.0 !Mu2ChY19TRaw[Co3At2Ch3]
+983.341 -0.113526 0.0 !Mu2ChY20TRaw[Co3At2Ch4]
+1008.293 -0.115367 0.0 !Mu2ChY21TRaw[Co3At2Ch5]
+987.244 -0.117305 0.0 !Mu2ChY22TRaw[Co3At2Ch6]
+994.386 -0.11682 0.0 !Mu2ChY23TRaw[Co3At2Ch7]
+1011.751 -0.116216 0.0 !Mu2ChY24TRaw[Co3At2Ch8]
+997.764 -0.118134 0.0 !Mu2ChY25TRaw[Co3At2Ch9]
+1011.927 -0.118446 0.0 !Mu2ChY26TRaw[Co3At2Ch10]
+1008.984 -0.117858 0.0 !Mu2ChY27TRaw[Co3At2Ch11]
+1019.345 -0.11895 0.0 !Mu2ChY28TRaw[Co3At2Ch12]
+1028.958 -0.118238 0.0 !Mu2ChY29TRaw[Co3At2Ch13]
+1015.531 -0.118468 0.0 !Mu2ChY30TRaw[Co3At2Ch14]
+1040.905 -0.118337 0.0 !Mu2ChY31TRaw[Co3At2Ch15]
+1020.688 -0.116905 0.0 !Mu2ChY32TRaw[Co3At2Ch16]
+900.332 -0.105393 0.0 !Mu2ChY33TRaw[Co3At3Ch1]
+903.961 -0.106206 0.0 !Mu2ChY34TRaw[Co3At3Ch2]
+937.106 -0.107711 0.0 !Mu2ChY35TRaw[Co3At3Ch3]
+931.581 -0.10786 0.0 !Mu2ChY36TRaw[Co3At3Ch4]
+949.203 -0.108297 0.0 !Mu2ChY37TRaw[Co3At3Ch5]
+933.017 -0.107628 0.0 !Mu2ChY38TRaw[Co3At3Ch6]
+942.778 -0.109574 0.0 !Mu2ChY39TRaw[Co3At3Ch7]
+955.834 -0.109401 0.0 !Mu2ChY40TRaw[Co3At3Ch8]
+947.911 -0.109756 0.0 !Mu2ChY41TRaw[Co3At3Ch9]
+970.351 -0.110304 0.0 !Mu2ChY42TRaw[Co3At3Ch10]
+955.445 -0.10979 0.0 !Mu2ChY43TRaw[Co3At3Ch11]
+969.669 -0.110231 0.0 !Mu2ChY44TRaw[Co3At3Ch12]
+972.489 -0.110532 0.0 !Mu2ChY45TRaw[Co3At3Ch13]
+965.057 -0.110907 0.0 !Mu2ChY46TRaw[Co3At3Ch14]
+972.835 -0.111371 0.0 !Mu2ChY47TRaw[Co3At3Ch15]
+974.402 -0.110791 0.0 !Mu2ChY48TRaw[Co3At3Ch16]
+927.359 -0.108016 0.0 !Mu2ChY49TRaw[Co3At4Ch1]
+933.667 -0.109155 0.0 !Mu2ChY50TRaw[Co3At4Ch2]
+930.706 -0.108834 0.0 !Mu2ChY51TRaw[Co3At4Ch3]
+969.179 -0.110471 0.0 !Mu2ChY52TRaw[Co3At4Ch4]
+968.793 -0.109622 0.0 !Mu2ChY53TRaw[Co3At4Ch5]
+960.253 -0.110708 0.0 !Mu2ChY54TRaw[Co3At4Ch6]
+971.112 -0.111116 0.0 !Mu2ChY55TRaw[Co3At4Ch7]
+976.686 -0.11061 0.0 !Mu2ChY56TRaw[Co3At4Ch8]
+969.21 -0.11216 0.0 !Mu2ChY57TRaw[Co3At4Ch9]
+970.703 -0.111079 0.0 !Mu2ChY58TRaw[Co3At4Ch10]
+963.371 -0.111393 0.0 !Mu2ChY59TRaw[Co3At4Ch11]
+966.587 -0.11168 0.0 !Mu2ChY60TRaw[Co3At4Ch12]
+1008.048 -0.11386 0.0 !Mu2ChY61TRaw[Co3At4Ch13]
+971.868 -0.112068 0.0 !Mu2ChY62TRaw[Co3At4Ch14]
+971.445 -0.111623 0.0 !Mu2ChY63TRaw[Co3At4Ch15]
+976.206 -0.112593 0.0 !Mu2ChY64TRaw[Co3At4Ch16]
+958.105 -0.111864 0.0 !Mu2ChY65TRaw[Co4At1Ch1]
+963.914 -0.114242 0.0 !Mu2ChY66TRaw[Co4At1Ch2]
+986.377 -0.114763 0.0 !Mu2ChY67TRaw[Co4At1Ch3]
+987.384 -0.114477 0.0 !Mu2ChY68TRaw[Co4At1Ch4]
+1011.261 -0.117701 0.0 !Mu2ChY69TRaw[Co4At1Ch5]
+998.967 -0.116242 0.0 !Mu2ChY70TRaw[Co4At1Ch6]
+998.106 -0.117144 0.0 !Mu2ChY71TRaw[Co4At1Ch7]
+1003.636 -0.116783 0.0 !Mu2ChY72TRaw[Co4At1Ch8]
+998.423 -0.115747 0.0 !Mu2ChY73TRaw[Co4At1Ch9]
+1015.355 -0.115989 0.0 !Mu2ChY74TRaw[Co4At1Ch10]
+1010.918 -0.116762 0.0 !Mu2ChY75TRaw[Co4At1Ch11]
+1047.851 -0.118324 0.0 !Mu2ChY76TRaw[Co4At1Ch12]
+1043.058 -0.117892 0.0 !Mu2ChY77TRaw[Co4At1Ch13]
+1049.552 -0.118194 0.0 !Mu2ChY78TRaw[Co4At1Ch14]
+1006.326 -0.117092 0.0 !Mu2ChY79TRaw[Co4At1Ch15]
+1027.168 -0.117343 0.0 !Mu2ChY80TRaw[Co4At1Ch16]
+997.413 -0.114246 0.0 !Mu2ChY81TRaw[Co4At2Ch1]
+977.178 -0.113582 0.0 !Mu2ChY82TRaw[Co4At2Ch2]
+1004.205 -0.115097 0.0 !Mu2ChY83TRaw[Co4At2Ch3]
+996.957 -0.114574 0.0 !Mu2ChY84TRaw[Co4At2Ch4]
+1004.96 -0.115653 0.0 !Mu2ChY85TRaw[Co4At2Ch5]
+1015.959 -0.11692 0.0 !Mu2ChY86TRaw[Co4At2Ch6]
+1002.949 -0.116695 0.0 !Mu2ChY87TRaw[Co4At2Ch7]
+1035.062 -0.117388 0.0 !Mu2ChY88TRaw[Co4At2Ch8]
+1004.289 -0.117739 0.0 !Mu2ChY89TRaw[Co4At2Ch9]
+1017.427 -0.11797 0.0 !Mu2ChY90TRaw[Co4At2Ch10]
+1026.009 -0.118525 0.0 !Mu2ChY91TRaw[Co4At2Ch11]
+1005.017 -0.117371 0.0 !Mu2ChY92TRaw[Co4At2Ch12]
+1031.886 -0.118331 0.0 !Mu2ChY93TRaw[Co4At2Ch13]
+1012.702 -0.118283 0.0 !Mu2ChY94TRaw[Co4At2Ch14]
+1031.697 -0.119174 0.0 !Mu2ChY95TRaw[Co4At2Ch15]
+1021.741 -0.119806 0.0 !Mu2ChY96TRaw[Co4At2Ch16]
+920.389 -0.108639 0.0 !Mu2ChY97TRaw[Co4At3Ch1]
+906.063 -0.108189 0.0 !Mu2ChY98TRaw[Co4At3Ch2]
+930.547 -0.109474 0.0 !Mu2ChY99TRaw[Co4At3Ch3]
+932.877 -0.109308 0.0 !Mu2ChY100TRaw[Co4At3Ch4]
+957.336 -0.110997 0.0 !Mu2ChY101TRaw[Co4At3Ch5]
+980.502 -0.111938 0.0 !Mu2ChY102TRaw[Co4At3Ch6]
+951.613 -0.110746 0.0 !Mu2ChY103TRaw[Co4At3Ch7]
+975.319 -0.112691 0.0 !Mu2ChY104TRaw[Co4At3Ch8]
+966.442 -0.112025 0.0 !Mu2ChY105TRaw[Co4At3Ch9]
+968.892 -0.111507 0.0 !Mu2ChY106TRaw[Co4At3Ch10]
+966.716 -0.111663 0.0 !Mu2ChY107TRaw[Co4At3Ch11]
+966.437 -0.111623 0.0 !Mu2ChY108TRaw[Co4At3Ch12]
+980.668 -0.112066 0.0 !Mu2ChY109TRaw[Co4At3Ch13]
+970.782 -0.11214 0.0 !Mu2ChY110TRaw[Co4At3Ch14]
+945.838 -0.111703 0.0 !Mu2ChY111TRaw[Co4At3Ch15]
+936.338 -0.110525 0.0 !Mu2ChY112TRaw[Co4At3Ch16]
+877.948 -0.102981 0.0 !Mu2ChY113TRaw[Co4At4Ch1]
+897.823 -0.104976 0.0 !Mu2ChY114TRaw[Co4At4Ch2]
+907.501 -0.105936 0.0 !Mu2ChY115TRaw[Co4At4Ch3]
+917.812 -0.10575 0.0 !Mu2ChY116TRaw[Co4At4Ch4]
+919.383 -0.106741 0.0 !Mu2ChY117TRaw[Co4At4Ch5]
+919.032 -0.10628 0.0 !Mu2ChY118TRaw[Co4At4Ch6]
+942.158 -0.107805 0.0 !Mu2ChY119TRaw[Co4At4Ch7]
+933.057 -0.107966 0.0 !Mu2ChY120TRaw[Co4At4Ch8]
+912.799 -0.106759 0.0 !Mu2ChY121TRaw[Co4At4Ch9]
+947.398 -0.108381 0.0 !Mu2ChY122TRaw[Co4At4Ch10]
+938.596 -0.108195 0.0 !Mu2ChY123TRaw[Co4At4Ch11]
+1336.257 -0.108195 0.0 !Mu2ChY124TRaw[Co4At4Ch12]
+938.061 -0.108519 0.0 !Mu2ChY125TRaw[Co4At4Ch13]
+922.884 -0.10863 0.0 !Mu2ChY126TRaw[Co4At4Ch14]
+926.419 -0.108768 0.0 !Mu2ChY127TRaw[Co4At4Ch15]
+929.386 -0.108297 0.0 !Mu2ChY128TRaw[Co4At4Ch16]
+981.478 -0.113591 0.0 !Mu3ChX1TRaw[Co1At1Ch1]
+1013.776 -0.115254 0.0 !Mu3ChX2TRaw[Co1At1Ch2]
+992.886 -0.115822 0.0 !Mu3ChX3TRaw[Co1At1Ch3]
+1013.44 -0.116042 0.0 !Mu3ChX4TRaw[Co1At1Ch4]
+990.472 -0.115096 0.0 !Mu3ChX5TRaw[Co1At1Ch5]
+1028.134 -0.11686 0.0 !Mu3ChX6TRaw[Co1At1Ch6]
+1024.899 -0.117385 0.0 !Mu3ChX7TRaw[Co1At1Ch7]
+993.024 -0.118019 0.0 !Mu3ChX8TRaw[Co1At1Ch8]
+998.524 -0.117779 0.0 !Mu3ChX9TRaw[Co1At1Ch9]
+1018.624 -0.117496 0.0 !Mu3ChX10TRaw[Co1At1Ch10]
+1032.674 -0.117795 0.0 !Mu3ChX11TRaw[Co1At1Ch11]
+1034.132 -0.119273 0.0 !Mu3ChX12TRaw[Co1At1Ch12]
+1042.32 -0.118031 0.0 !Mu3ChX13TRaw[Co1At1Ch13]
+1022.526 -0.118805 0.0 !Mu3ChX14TRaw[Co1At1Ch14]
+1008.783 -0.118524 0.0 !Mu3ChX15TRaw[Co1At1Ch15]
+1380.253 -0.119127 0.0 !Mu3ChX16TRaw[Co1At1Ch16]
+977.848 -0.117029 0.0 !Mu3ChX17TRaw[Co1At2Ch1]
+985.148 -0.116582 0.0 !Mu3ChX18TRaw[Co1At2Ch2]
+1007.934 -0.11886 0.0 !Mu3ChX19TRaw[Co1At2Ch3]
+1034.22 -0.118386 0.0 !Mu3ChX20TRaw[Co1At2Ch4]
+1041.452 -0.119229 0.0 !Mu3ChX21TRaw[Co1At2Ch5]
+1056.51 -0.120114 0.0 !Mu3ChX22TRaw[Co1At2Ch6]
+1040.825 -0.119177 0.0 !Mu3ChX23TRaw[Co1At2Ch7]
+1018.903 -0.119693 0.0 !Mu3ChX24TRaw[Co1At2Ch8]
+1005.051 -0.119405 0.0 !Mu3ChX25TRaw[Co1At2Ch9]
+1017.342 -0.119523 0.0 !Mu3ChX26TRaw[Co1At2Ch10]
+1069.305 -0.12115 0.0 !Mu3ChX27TRaw[Co1At2Ch11]
+1038.198 -0.120628 0.0 !Mu3ChX28TRaw[Co1At2Ch12]
+1056.422 -0.121885 0.0 !Mu3ChX29TRaw[Co1At2Ch13]
+1057.034 -0.121035 0.0 !Mu3ChX30TRaw[Co1At2Ch14]
+1051.197 -0.121233 0.0 !Mu3ChX31TRaw[Co1At2Ch15]
+1061.554 -0.120654 0.0 !Mu3ChX32TRaw[Co1At2Ch16]
+932.139 -0.108693 0.0 !Mu3ChX33TRaw[Co1At3Ch1]
+935.391 -0.109485 0.0 !Mu3ChX34TRaw[Co1At3Ch2]
+925.145 -0.110421 0.0 !Mu3ChX35TRaw[Co1At3Ch3]
+925.446 -0.109588 0.0 !Mu3ChX36TRaw[Co1At3Ch4]
+942.302 -0.110301 0.0 !Mu3ChX37TRaw[Co1At3Ch5]
+964.873 -0.111327 0.0 !Mu3ChX38TRaw[Co1At3Ch6]
+959.552 -0.111495 0.0 !Mu3ChX39TRaw[Co1At3Ch7]
+961.22 -0.112521 0.0 !Mu3ChX40TRaw[Co1At3Ch8]
+958.125 -0.11347 0.0 !Mu3ChX41TRaw[Co1At3Ch9]
+958.974 -0.112717 0.0 !Mu3ChX42TRaw[Co1At3Ch10]
+959.452 -0.112335 0.0 !Mu3ChX43TRaw[Co1At3Ch11]
+450.0 -0.112964 0.0 !Mu3ChX44TRaw[Co1At3Ch12]
+963.434 -0.113245 0.0 !Mu3ChX45TRaw[Co1At3Ch13]
+964.97 -0.11258 0.0 !Mu3ChX46TRaw[Co1At3Ch14]
+990.533 -0.113476 0.0 !Mu3ChX47TRaw[Co1At3Ch15]
+978.322 -0.113256 0.0 !Mu3ChX48TRaw[Co1At3Ch16]
+902.185 -0.104661 0.0 !Mu3ChX49TRaw[Co1At4Ch1]
+904.849 -0.104634 0.0 !Mu3ChX50TRaw[Co1At4Ch2]
+911.556 -0.106155 0.0 !Mu3ChX51TRaw[Co1At4Ch3]
+912.664 -0.107364 0.0 !Mu3ChX52TRaw[Co1At4Ch4]
+918.408 -0.107368 0.0 !Mu3ChX53TRaw[Co1At4Ch5]
+910.764 -0.106861 0.0 !Mu3ChX54TRaw[Co1At4Ch6]
+909.726 -0.108382 0.0 !Mu3ChX55TRaw[Co1At4Ch7]
+922.928 -0.108733 0.0 !Mu3ChX56TRaw[Co1At4Ch8]
+913.563 -0.10844 0.0 !Mu3ChX57TRaw[Co1At4Ch9]
+950.346 -0.10908 0.0 !Mu3ChX58TRaw[Co1At4Ch10]
+931.96 -0.108538 0.0 !Mu3ChX59TRaw[Co1At4Ch11]
+931.249 -0.10849 0.0 !Mu3ChX60TRaw[Co1At4Ch12]
+924.55 -0.109312 0.0 !Mu3ChX61TRaw[Co1At4Ch13]
+915.129 -0.109445 0.0 !Mu3ChX62TRaw[Co1At4Ch14]
+911.749 -0.107803 0.0 !Mu3ChX63TRaw[Co1At4Ch15]
+953.036 -0.108862 0.0 !Mu3ChX64TRaw[Co1At4Ch16]
+1010.103 -0.119126 0.0 !Mu3ChX65TRaw[Co2At1Ch1]
+1015.548 -0.119789 0.0 !Mu3ChX66TRaw[Co2At1Ch2]
+1031.118 -0.119851 0.0 !Mu3ChX67TRaw[Co2At1Ch3]
+1055.182 -0.121753 0.0 !Mu3ChX68TRaw[Co2At1Ch4]
+1032.573 -0.121824 0.0 !Mu3ChX69TRaw[Co2At1Ch5]
+1014.126 -0.121446 0.0 !Mu3ChX70TRaw[Co2At1Ch6]
+1033.269 -0.121893 0.0 !Mu3ChX71TRaw[Co2At1Ch7]
+1037.066 -0.122347 0.0 !Mu3ChX72TRaw[Co2At1Ch8]
+1040.885 -0.121883 0.0 !Mu3ChX73TRaw[Co2At1Ch9]
+1043.891 -0.122684 0.0 !Mu3ChX74TRaw[Co2At1Ch10]
+1052.634 -0.123722 0.0 !Mu3ChX75TRaw[Co2At1Ch11]
+1066.965 -0.124938 0.0 !Mu3ChX76TRaw[Co2At1Ch12]
+1047.918 -0.122709 0.0 !Mu3ChX77TRaw[Co2At1Ch13]
+1032.053 -0.12265 0.0 !Mu3ChX78TRaw[Co2At1Ch14]
+1059.518 -0.124061 0.0 !Mu3ChX79TRaw[Co2At1Ch15]
+1407.005 -0.123313 0.0 !Mu3ChX80TRaw[Co2At1Ch16]
+966.252 -0.11381 0.0 !Mu3ChX81TRaw[Co2At2Ch1]
+979.589 -0.114558 0.0 !Mu3ChX82TRaw[Co2At2Ch2]
+972.243 -0.114986 0.0 !Mu3ChX83TRaw[Co2At2Ch3]
+974.391 -0.114804 0.0 !Mu3ChX84TRaw[Co2At2Ch4]
+985.895 -0.116619 0.0 !Mu3ChX85TRaw[Co2At2Ch5]
+992.12 -0.11693 0.0 !Mu3ChX86TRaw[Co2At2Ch6]
+971.958 -0.116299 0.0 !Mu3ChX87TRaw[Co2At2Ch7]
+999.22 -0.116863 0.0 !Mu3ChX88TRaw[Co2At2Ch8]
+995.257 -0.118161 0.0 !Mu3ChX89TRaw[Co2At2Ch9]
+998.809 -0.117687 0.0 !Mu3ChX90TRaw[Co2At2Ch10]
+1003.937 -0.118304 0.0 !Mu3ChX91TRaw[Co2At2Ch11]
+1015.556 -0.119256 0.0 !Mu3ChX92TRaw[Co2At2Ch12]
+1034.492 -0.119241 0.0 !Mu3ChX93TRaw[Co2At2Ch13]
+1037.827 -0.119186 0.0 !Mu3ChX94TRaw[Co2At2Ch14]
+1016.003 -0.118879 0.0 !Mu3ChX95TRaw[Co2At2Ch15]
+1022.41 -0.118278 0.0 !Mu3ChX96TRaw[Co2At2Ch16]
+903.34 -0.104124 0.0 !Mu3ChX97TRaw[Co2At3Ch1]
+908.659 -0.104728 0.0 !Mu3ChX98TRaw[Co2At3Ch2]
+911.833 -0.104753 0.0 !Mu3ChX99TRaw[Co2At3Ch3]
+935.021 -0.105492 0.0 !Mu3ChX100TRaw[Co2At3Ch4]
+920.352 -0.106693 0.0 !Mu3ChX101TRaw[Co2At3Ch5]
+903.814 -0.10614 0.0 !Mu3ChX102TRaw[Co2At3Ch6]
+915.26 -0.106708 0.0 !Mu3ChX103TRaw[Co2At3Ch7]
+910.919 -0.106567 0.0 !Mu3ChX104TRaw[Co2At3Ch8]
+927.103 -0.107671 0.0 !Mu3ChX105TRaw[Co2At3Ch9]
+942.252 -0.108216 0.0 !Mu3ChX106TRaw[Co2At3Ch10]
+926.652 -0.107225 0.0 !Mu3ChX107TRaw[Co2At3Ch11]
+920.84 -0.108561 0.0 !Mu3ChX108TRaw[Co2At3Ch12]
+945.497 -0.108609 0.0 !Mu3ChX109TRaw[Co2At3Ch13]
+958.937 -0.108191 0.0 !Mu3ChX110TRaw[Co2At3Ch14]
+934.461 -0.109337 0.0 !Mu3ChX111TRaw[Co2At3Ch15]
+933.963 -0.108709 0.0 !Mu3ChX112TRaw[Co2At3Ch16]
+875.263 -0.103629 0.0 !Mu3ChX113TRaw[Co2At4Ch1]
+890.444 -0.10481 0.0 !Mu3ChX114TRaw[Co2At4Ch2]
+907.63 -0.1049 0.0 !Mu3ChX115TRaw[Co2At4Ch3]
+927.243 -0.105647 0.0 !Mu3ChX116TRaw[Co2At4Ch4]
+959.458 -0.126949 0.0 !Mu3ChX117TRaw[Co2At4Ch5]
+908.137 -0.106145 0.0 !Mu3ChX118TRaw[Co2At4Ch6]
+929.508 -0.107055 0.0 !Mu3ChX119TRaw[Co2At4Ch7]
+923.594 -0.10675 0.0 !Mu3ChX120TRaw[Co2At4Ch8]
+909.752 -0.107137 0.0 !Mu3ChX121TRaw[Co2At4Ch9]
+930.673 -0.107599 0.0 !Mu3ChX122TRaw[Co2At4Ch10]
+922.861 -0.107093 0.0 !Mu3ChX123TRaw[Co2At4Ch11]
+953.557 -0.108252 0.0 !Mu3ChX124TRaw[Co2At4Ch12]
+947.109 -0.107522 0.0 !Mu3ChX125TRaw[Co2At4Ch13]
+937.275 -0.108336 0.0 !Mu3ChX126TRaw[Co2At4Ch14]
+923.967 -0.106793 0.0 !Mu3ChX127TRaw[Co2At4Ch15]
+933.021 -0.107896 0.0 !Mu3ChX128TRaw[Co2At4Ch16]
+965.818 -0.11121 0.0 !Mu3ChY1TRaw[Co3At1Ch1]
+966.765 -0.112154 0.0 !Mu3ChY2TRaw[Co3At1Ch2]
+954.577 -0.113241 0.0 !Mu3ChY3TRaw[Co3At1Ch3]
+985.94 -0.114409 0.0 !Mu3ChY4TRaw[Co3At1Ch4]
+973.809 -0.114032 0.0 !Mu3ChY5TRaw[Co3At1Ch5]
+976.61 -0.114994 0.0 !Mu3ChY6TRaw[Co3At1Ch6]
+966.665 -0.115552 0.0 !Mu3ChY7TRaw[Co3At1Ch7]
+995.977 -0.115546 0.0 !Mu3ChY8TRaw[Co3At1Ch8]
+1000.593 -0.116506 0.0 !Mu3ChY9TRaw[Co3At1Ch9]
+997.356 -0.117006 0.0 !Mu3ChY10TRaw[Co3At1Ch10]
+1007.099 -0.117251 0.0 !Mu3ChY11TRaw[Co3At1Ch11]
+976.2 -0.117093 0.0 !Mu3ChY12TRaw[Co3At1Ch12]
+996.986 -0.118272 0.0 !Mu3ChY13TRaw[Co3At1Ch13]
+1003.553 -0.119048 0.0 !Mu3ChY14TRaw[Co3At1Ch14]
+999.252 -0.118075 0.0 !Mu3ChY15TRaw[Co3At1Ch15]
+995.542 -0.118941 0.0 !Mu3ChY16TRaw[Co3At1Ch16]
+988.937 -0.117174 0.0 !Mu3ChY17TRaw[Co3At2Ch1]
+1017.194 -0.118815 0.0 !Mu3ChY18TRaw[Co3At2Ch2]
+995.754 -0.118931 0.0 !Mu3ChY19TRaw[Co3At2Ch3]
+1008.982 -0.119638 0.0 !Mu3ChY20TRaw[Co3At2Ch4]
+1010.829 -0.12034 0.0 !Mu3ChY21TRaw[Co3At2Ch5]
+1024.68 -0.121551 0.0 !Mu3ChY22TRaw[Co3At2Ch6]
+1023.799 -0.120998 0.0 !Mu3ChY23TRaw[Co3At2Ch7]
+1025.535 -0.120321 0.0 !Mu3ChY24TRaw[Co3At2Ch8]
+1032.0 -0.121073 0.0 !Mu3ChY25TRaw[Co3At2Ch9]
+1019.156 -0.121839 0.0 !Mu3ChY26TRaw[Co3At2Ch10]
+1023.081 -0.121856 0.0 !Mu3ChY27TRaw[Co3At2Ch11]
+1041.31 -0.122649 0.0 !Mu3ChY28TRaw[Co3At2Ch12]
+1063.915 -0.12302 0.0 !Mu3ChY29TRaw[Co3At2Ch13]
+1032.953 -0.121668 0.0 !Mu3ChY30TRaw[Co3At2Ch14]
+1050.178 -0.122794 0.0 !Mu3ChY31TRaw[Co3At2Ch15]
+1062.626 -0.122927 0.0 !Mu3ChY32TRaw[Co3At2Ch16]
+895.255 -0.105446 0.0 !Mu3ChY33TRaw[Co3At3Ch1]
+895.379 -0.105092 0.0 !Mu3ChY34TRaw[Co3At3Ch2]
+880.749 -0.10573 0.0 !Mu3ChY35TRaw[Co3At3Ch3]
+900.863 -0.105345 0.0 !Mu3ChY36TRaw[Co3At3Ch4]
+926.509 -0.106744 0.0 !Mu3ChY37TRaw[Co3At3Ch5]
+891.89 -0.106654 0.0 !Mu3ChY38TRaw[Co3At3Ch6]
+907.576 -0.107294 0.0 !Mu3ChY39TRaw[Co3At3Ch7]
+926.668 -0.108361 0.0 !Mu3ChY40TRaw[Co3At3Ch8]
+927.098 -0.10799 0.0 !Mu3ChY41TRaw[Co3At3Ch9]
+910.693 -0.10846 0.0 !Mu3ChY42TRaw[Co3At3Ch10]
+916.7 -0.109593 0.0 !Mu3ChY43TRaw[Co3At3Ch11]
+937.564 -0.109195 0.0 !Mu3ChY44TRaw[Co3At3Ch12]
+922.173 -0.108568 0.0 !Mu3ChY45TRaw[Co3At3Ch13]
+946.522 -0.109804 0.0 !Mu3ChY46TRaw[Co3At3Ch14]
+940.05 -0.110263 0.0 !Mu3ChY47TRaw[Co3At3Ch15]
+939.531 -0.109382 0.0 !Mu3ChY48TRaw[Co3At3Ch16]
+891.441 -0.105997 0.0 !Mu3ChY49TRaw[Co3At4Ch1]
+914.057 -0.106772 0.0 !Mu3ChY50TRaw[Co3At4Ch2]
+912.988 -0.108217 0.0 !Mu3ChY51TRaw[Co3At4Ch3]
+939.768 -0.108527 0.0 !Mu3ChY52TRaw[Co3At4Ch4]
+913.038 -0.107825 0.0 !Mu3ChY53TRaw[Co3At4Ch5]
+918.354 -0.108862 0.0 !Mu3ChY54TRaw[Co3At4Ch6]
+912.852 -0.109456 0.0 !Mu3ChY55TRaw[Co3At4Ch7]
+935.742 -0.110152 0.0 !Mu3ChY56TRaw[Co3At4Ch8]
+933.587 -0.110718 0.0 !Mu3ChY57TRaw[Co3At4Ch9]
+935.648 -0.11056 0.0 !Mu3ChY58TRaw[Co3At4Ch10]
+951.779 -0.111636 0.0 !Mu3ChY59TRaw[Co3At4Ch11]
+937.444 -0.109934 0.0 !Mu3ChY60TRaw[Co3At4Ch12]
+954.766 -0.111581 0.0 !Mu3ChY61TRaw[Co3At4Ch13]
+959.098 -0.111694 0.0 !Mu3ChY62TRaw[Co3At4Ch14]
+943.527 -0.1111 0.0 !Mu3ChY63TRaw[Co3At4Ch15]
+946.443 -0.11144 0.0 !Mu3ChY64TRaw[Co3At4Ch16]
+927.547 -0.109216 0.0 !Mu3ChY65TRaw[Co4At1Ch1]
+923.676 -0.110026 0.0 !Mu3ChY66TRaw[Co4At1Ch2]
+920.88 -0.110106 0.0 !Mu3ChY67TRaw[Co4At1Ch3]
+940.18 -0.11114 0.0 !Mu3ChY68TRaw[Co4At1Ch4]
+951.936 -0.11252 0.0 !Mu3ChY69TRaw[Co4At1Ch5]
+964.044 -0.113544 0.0 !Mu3ChY70TRaw[Co4At1Ch6]
+970.865 -0.112672 0.0 !Mu3ChY71TRaw[Co4At1Ch7]
+958.58 -0.112491 0.0 !Mu3ChY72TRaw[Co4At1Ch8]
+986.258 -0.114462 0.0 !Mu3ChY73TRaw[Co4At1Ch9]
+985.499 -0.11354 0.0 !Mu3ChY74TRaw[Co4At1Ch10]
+973.383 -0.115517 0.0 !Mu3ChY75TRaw[Co4At1Ch11]
+988.044 -0.115086 0.0 !Mu3ChY76TRaw[Co4At1Ch12]
+1004.685 -0.116618 0.0 !Mu3ChY77TRaw[Co4At1Ch13]
+974.725 -0.115232 0.0 !Mu3ChY78TRaw[Co4At1Ch14]
+970.963 -0.114343 0.0 !Mu3ChY79TRaw[Co4At1Ch15]
+986.998 -0.114947 0.0 !Mu3ChY80TRaw[Co4At1Ch16]
+988.605 -0.117288 0.0 !Mu3ChY81TRaw[Co4At2Ch1]
+1000.477 -0.118727 0.0 !Mu3ChY82TRaw[Co4At2Ch2]
+998.944 -0.119474 0.0 !Mu3ChY83TRaw[Co4At2Ch3]
+1021.647 -0.119909 0.0 !Mu3ChY84TRaw[Co4At2Ch4]
+1015.851 -0.120116 0.0 !Mu3ChY85TRaw[Co4At2Ch5]
+1023.105 -0.120975 0.0 !Mu3ChY86TRaw[Co4At2Ch6]
+1023.602 -0.120606 0.0 !Mu3ChY87TRaw[Co4At2Ch7]
+1048.071 -0.12076 0.0 !Mu3ChY88TRaw[Co4At2Ch8]
+1045.295 -0.121336 0.0 !Mu3ChY89TRaw[Co4At2Ch9]
+1041.423 -0.122713 0.0 !Mu3ChY90TRaw[Co4At2Ch10]
+1040.742 -0.1231 0.0 !Mu3ChY91TRaw[Co4At2Ch11]
+1028.684 -0.121678 0.0 !Mu3ChY92TRaw[Co4At2Ch12]
+1029.478 -0.122697 0.0 !Mu3ChY93TRaw[Co4At2Ch13]
+1040.536 -0.123087 0.0 !Mu3ChY94TRaw[Co4At2Ch14]
+1025.036 -0.122144 0.0 !Mu3ChY95TRaw[Co4At2Ch15]
+1037.833 -0.122274 0.0 !Mu3ChY96TRaw[Co4At2Ch16]
+893.3 -0.105573 0.0 !Mu3ChY97TRaw[Co4At3Ch1]
+883.47 -0.105224 0.0 !Mu3ChY98TRaw[Co4At3Ch2]
+912.274 -0.105791 0.0 !Mu3ChY99TRaw[Co4At3Ch3]
+907.618 -0.106904 0.0 !Mu3ChY100TRaw[Co4At3Ch4]
+915.064 -0.107789 0.0 !Mu3ChY101TRaw[Co4At3Ch5]
+914.687 -0.107742 0.0 !Mu3ChY102TRaw[Co4At3Ch6]
+915.739 -0.109085 0.0 !Mu3ChY103TRaw[Co4At3Ch7]
+907.682 -0.108126 0.0 !Mu3ChY104TRaw[Co4At3Ch8]
+939.179 -0.108999 0.0 !Mu3ChY105TRaw[Co4At3Ch9]
+897.003 -0.108068 0.0 !Mu3ChY106TRaw[Co4At3Ch10]
+899.93 -0.108006 0.0 !Mu3ChY107TRaw[Co4At3Ch11]
+933.224 -0.109125 0.0 !Mu3ChY108TRaw[Co4At3Ch12]
+922.41 -0.109439 0.0 !Mu3ChY109TRaw[Co4At3Ch13]
+919.858 -0.109168 0.0 !Mu3ChY110TRaw[Co4At3Ch14]
+915.492 -0.108625 0.0 !Mu3ChY111TRaw[Co4At3Ch15]
+939.186 -0.109416 0.0 !Mu3ChY112TRaw[Co4At3Ch16]
+907.848 -0.107554 0.0 !Mu3ChY113TRaw[Co4At4Ch1]
+911.742 -0.108473 0.0 !Mu3ChY114TRaw[Co4At4Ch2]
+921.829 -0.108848 0.0 !Mu3ChY115TRaw[Co4At4Ch3]
+923.694 -0.108292 0.0 !Mu3ChY116TRaw[Co4At4Ch4]
+918.408 -0.109288 0.0 !Mu3ChY117TRaw[Co4At4Ch5]
+934.537 -0.109943 0.0 !Mu3ChY118TRaw[Co4At4Ch6]
+919.037 -0.109765 0.0 !Mu3ChY119TRaw[Co4At4Ch7]
+917.959 -0.109672 0.0 !Mu3ChY120TRaw[Co4At4Ch8]
+946.254 -0.110512 0.0 !Mu3ChY121TRaw[Co4At4Ch9]
+948.221 -0.111588 0.0 !Mu3ChY122TRaw[Co4At4Ch10]
+943.874 -0.111915 0.0 !Mu3ChY123TRaw[Co4At4Ch11]
+936.548 -0.109772 0.0 !Mu3ChY124TRaw[Co4At4Ch12]
+926.89 -0.11029 0.0 !Mu3ChY125TRaw[Co4At4Ch13]
+946.411 -0.110947 0.0 !Mu3ChY126TRaw[Co4At4Ch14]
+944.377 -0.111116 0.0 !Mu3ChY127TRaw[Co4At4Ch15]
+963.969 -0.112131 0.0 !Mu3ChY128TRaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/calibration/test_222Ra/calibR271-279_2023_10_23.cal b/Projects/MUSETT/calibration/test_222Ra/calibR271-279_2023_10_23.cal
new file mode 100644
index 0000000000000000000000000000000000000000..91b785a2b0676dfbd156458599f7d3e11b365bba
--- /dev/null
+++ b/Projects/MUSETT/calibration/test_222Ra/calibR271-279_2023_10_23.cal
@@ -0,0 +1,1024 @@
+-61633.1 7.52291 0.00 !Mu0ChX1ERaw[Co1At1Ch1]
+-62055 7.57479 0.00 !Mu0ChX2ERaw[Co1At1Ch2]
+-61729.5 7.53498 0.00 !Mu0ChX3ERaw[Co1At1Ch3]
+-61510.2 7.508 0.00 !Mu0ChX4ERaw[Co1At1Ch4]
+-61833.1 7.54788 0.00 !Mu0ChX5ERaw[Co1At1Ch5]
+-61623.7 7.52219 0.00 !Mu0ChX6ERaw[Co1At1Ch6]
+-61347.3 7.4881 0.00 !Mu0ChX7ERaw[Co1At1Ch7]
+-61171.1 7.4671 0.00 !Mu0ChX8ERaw[Co1At1Ch8]
+-61021.4 7.44836 0.00 !Mu0ChX9ERaw[Co1At1Ch9]
+-62617.4 7.64342 0.00 !Mu0ChX10ERaw[Co1At1Ch10]
+-62323.7 7.60752 0.00 !Mu0ChX11ERaw[Co1At1Ch11]
+-62004 7.56848 0.00 !Mu0ChX12ERaw[Co1At1Ch12]
+-62222.8 7.59535 0.00 !Mu0ChX13ERaw[Co1At1Ch13]
+-61750.3 7.53769 0.00 !Mu0ChX14ERaw[Co1At1Ch14]
+-62449.5 7.62252 0.00 !Mu0ChX15ERaw[Co1At1Ch15]
+-61339 7.48739 0.00 !Mu0ChX16ERaw[Co1At1Ch16]
+-63072.3 7.69874 0.00 !Mu0ChX17ERaw[Co1At2Ch1]
+-62830.6 7.67014 0.00 !Mu0ChX18ERaw[Co1At2Ch2]
+-62207.1 7.59325 0.00 !Mu0ChX19ERaw[Co1At2Ch3]
+-62377.4 7.61449 0.00 !Mu0ChX20ERaw[Co1At2Ch4]
+-63874.1 7.79655 0.00 !Mu0ChX21ERaw[Co1At2Ch5]
+-62503.8 7.62964 0.00 !Mu0ChX22ERaw[Co1At2Ch6]
+-62311.9 7.60574 0.00 !Mu0ChX23ERaw[Co1At2Ch7]
+-62735.5 7.65798 0.00 !Mu0ChX24ERaw[Co1At2Ch8]
+-62876.2 7.67465 0.00 !Mu0ChX25ERaw[Co1At2Ch9]
+-62984.1 7.68791 0.00 !Mu0ChX26ERaw[Co1At2Ch10]
+-63067.5 7.6982 0.00 !Mu0ChX27ERaw[Co1At2Ch11]
+-62585 7.63991 0.00 !Mu0ChX28ERaw[Co1At2Ch12]
+-62990.1 7.68868 0.00 !Mu0ChX29ERaw[Co1At2Ch13]
+-62619.8 7.64391 0.00 !Mu0ChX30ERaw[Co1At2Ch14]
+-63424.6 7.74165 0.00 !Mu0ChX31ERaw[Co1At2Ch15]
+-62605 7.64176 0.00 !Mu0ChX32ERaw[Co1At2Ch16]
+-56615 6.91109 0.00 !Mu0ChX33ERaw[Co1At3Ch1]
+-56752 6.92767 0.00 !Mu0ChX34ERaw[Co1At3Ch2]
+-55531.3 6.77863 0.00 !Mu0ChX35ERaw[Co1At3Ch3]
+-56356.2 6.87918 0.00 !Mu0ChX36ERaw[Co1At3Ch4]
+-55952.8 6.82995 0.00 !Mu0ChX37ERaw[Co1At3Ch5]
+ -10000 0.00 0.00 !Mu0ChX38ERaw[Co1At3Ch6]
+-55877.9 6.82136 0.00 !Mu0ChX39ERaw[Co1At3Ch7]
+-55703.8 6.79995 0.00 !Mu0ChX40ERaw[Co1At3Ch8]
+-56249.3 6.86589 0.00 !Mu0ChX41ERaw[Co1At3Ch9]
+-55849.4 6.81689 0.00 !Mu0ChX42ERaw[Co1At3Ch10]
+-56149.7 6.85427 0.00 !Mu0ChX43ERaw[Co1At3Ch11]
+-56319.5 6.87441 0.00 !Mu0ChX44ERaw[Co1At3Ch12]
+-56316.7 6.87457 0.00 !Mu0ChX45ERaw[Co1At3Ch13]
+ -10000 0.00 0.00 !Mu0ChX46ERaw[Co1At3Ch14]
+ -10000 0.00 0.00 !Mu0ChX47ERaw[Co1At3Ch15]
+-56055.9 6.84297 0.00 !Mu0ChX48ERaw[Co1At3Ch16]
+-57823.5 7.05889 0.00 !Mu0ChX49ERaw[Co1At4Ch1]
+-57888.5 7.06649 0.00 !Mu0ChX50ERaw[Co1At4Ch2]
+-57759.2 7.04986 0.00 !Mu0ChX51ERaw[Co1At4Ch3]
+-57282.3 6.9923 0.00 !Mu0ChX52ERaw[Co1At4Ch4]
+-58176.3 7.10103 0.00 !Mu0ChX53ERaw[Co1At4Ch5]
+-57207.4 6.98291 0.00 !Mu0ChX54ERaw[Co1At4Ch6]
+-57775.9 7.05244 0.00 !Mu0ChX55ERaw[Co1At4Ch7]
+-57453.6 7.01354 0.00 !Mu0ChX56ERaw[Co1At4Ch8]
+-58450.1 7.13474 0.00 !Mu0ChX57ERaw[Co1At4Ch9]
+-57696.2 7.0427 0.00 !Mu0ChX58ERaw[Co1At4Ch10]
+-57293.1 6.99262 0.00 !Mu0ChX59ERaw[Co1At4Ch11]
+-57751.7 7.04967 0.00 !Mu0ChX60ERaw[Co1At4Ch12]
+-57178.8 6.97896 0.00 !Mu0ChX61ERaw[Co1At4Ch13]
+-57897.5 7.0674 0.00 !Mu0ChX62ERaw[Co1At4Ch14]
+-57870.7 7.06412 0.00 !Mu0ChX63ERaw[Co1At4Ch15]
+-58091.6 7.09091 0.00 !Mu0ChX64ERaw[Co1At4Ch16]
+-63244.5 7.72165 0.00 !Mu0ChX65ERaw[Co2At1Ch1]
+-63496.6 7.75166 0.00 !Mu0ChX66ERaw[Co2At1Ch2]
+-63378.1 7.73685 0.00 !Mu0ChX67ERaw[Co2At1Ch3]
+-63811.2 7.79125 0.00 !Mu0ChX68ERaw[Co2At1Ch4]
+-63005.6 7.6925 0.00 !Mu0ChX69ERaw[Co2At1Ch5]
+-63771.8 7.78636 0.00 !Mu0ChX70ERaw[Co2At1Ch6]
+-63636.9 7.76936 0.00 !Mu0ChX71ERaw[Co2At1Ch7]
+-63205 7.71714 0.00 !Mu0ChX72ERaw[Co2At1Ch8]
+-63969.6 7.81032 0.00 !Mu0ChX73ERaw[Co2At1Ch9]
+-62995.1 7.69198 0.00 !Mu0ChX74ERaw[Co2At1Ch10]
+-63770.5 7.78739 0.00 !Mu0ChX75ERaw[Co2At1Ch11]
+-63683.7 7.7771 0.00 !Mu0ChX76ERaw[Co2At1Ch12]
+-63365.8 7.73864 0.00 !Mu0ChX77ERaw[Co2At1Ch13]
+-63412.4 7.74431 0.00 !Mu0ChX78ERaw[Co2At1Ch14]
+-63838.7 7.79698 0.00 !Mu0ChX79ERaw[Co2At1Ch15]
+-63910.4 7.8103 0.00 !Mu0ChX80ERaw[Co2At1Ch16]
+-60714.8 7.41635 0.00 !Mu0ChX81ERaw[Co2At2Ch1]
+-60354.7 7.37366 0.00 !Mu0ChX82ERaw[Co2At2Ch2]
+-60769.9 7.4225 0.00 !Mu0ChX83ERaw[Co2At2Ch3]
+-61153.6 7.46877 0.00 !Mu0ChX84ERaw[Co2At2Ch4]
+-61098.6 7.46087 0.00 !Mu0ChX85ERaw[Co2At2Ch5]
+-61831.3 7.55086 0.00 !Mu0ChX86ERaw[Co2At2Ch6]
+-61233.9 7.47674 0.00 !Mu0ChX87ERaw[Co2At2Ch7]
+-61918.5 7.56139 0.00 !Mu0ChX88ERaw[Co2At2Ch8]
+-61705 7.53432 0.00 !Mu0ChX89ERaw[Co2At2Ch9]
+-61539.4 7.51247 0.00 !Mu0ChX90ERaw[Co2At2Ch10]
+-61654.8 7.5268 0.00 !Mu0ChX91ERaw[Co2At2Ch11]
+-62656.9 7.65026 0.00 !Mu0ChX92ERaw[Co2At2Ch12]
+-61726.5 7.53576 0.00 !Mu0ChX93ERaw[Co2At2Ch13]
+-60929.5 7.4391 0.00 !Mu0ChX94ERaw[Co2At2Ch14]
+-61271.4 7.48082 0.00 !Mu0ChX95ERaw[Co2At2Ch15]
+-62081.2 7.57944 0.00 !Mu0ChX96ERaw[Co2At2Ch16]
+-57112.5 6.97127 0.00 !Mu0ChX97ERaw[Co2At3Ch1]
+-57451.1 7.01351 0.00 !Mu0ChX98ERaw[Co2At3Ch2]
+-57726.3 7.04649 0.00 !Mu0ChX99ERaw[Co2At3Ch3]
+-57024 6.96101 0.00 !Mu0ChX100ERaw[Co2At3Ch4]
+-58096 7.09126 0.00 !Mu0ChX101ERaw[Co2At3Ch5]
+-57639.3 7.0364 0.00 !Mu0ChX102ERaw[Co2At3Ch6]
+-57569.2 7.02818 0.00 !Mu0ChX103ERaw[Co2At3Ch7]
+-57113.3 6.97269 0.00 !Mu0ChX104ERaw[Co2At3Ch8]
+-57345.7 6.99945 0.00 !Mu0ChX105ERaw[Co2At3Ch9]
+-57915.7 7.06943 0.00 !Mu0ChX106ERaw[Co2At3Ch10]
+-57166 6.97862 0.00 !Mu0ChX107ERaw[Co2At3Ch11]
+-57563.7 7.02674 0.00 !Mu0ChX108ERaw[Co2At3Ch12]
+-58546.4 7.14671 0.00 !Mu0ChX109ERaw[Co2At3Ch13]
+-57969.2 7.07722 0.00 !Mu0ChX110ERaw[Co2At3Ch14]
+-57580.8 7.0292 0.00 !Mu0ChX111ERaw[Co2At3Ch15]
+-57635 7.03725 0.00 !Mu0ChX112ERaw[Co2At3Ch16]
+-58915 7.19216 0.00 !Mu0ChX113ERaw[Co2At4Ch1]
+-59152 7.22096 0.00 !Mu0ChX114ERaw[Co2At4Ch2]
+-58454.5 7.13595 0.00 !Mu0ChX115ERaw[Co2At4Ch3]
+-58584.3 7.15199 0.00 !Mu0ChX116ERaw[Co2At4Ch4]
+-58061.6 7.08839 0.00 !Mu0ChX117ERaw[Co2At4Ch5]
+-58252 7.11139 0.00 !Mu0ChX118ERaw[Co2At4Ch6]
+-58260 7.11192 0.00 !Mu0ChX119ERaw[Co2At4Ch7]
+-58543.8 7.14562 0.00 !Mu0ChX120ERaw[Co2At4Ch8]
+-58468.9 7.13746 0.00 !Mu0ChX121ERaw[Co2At4Ch9]
+-58618.4 7.15521 0.00 !Mu0ChX122ERaw[Co2At4Ch10]
+-58387.2 7.12788 0.00 !Mu0ChX123ERaw[Co2At4Ch11]
+-59277.2 7.23597 0.00 !Mu0ChX124ERaw[Co2At4Ch12]
+-57823.2 7.05854 0.00 !Mu0ChX125ERaw[Co2At4Ch13]
+-58459.2 7.13586 0.00 !Mu0ChX126ERaw[Co2At4Ch14]
+-58396.5 7.1278 0.00 !Mu0ChX127ERaw[Co2At4Ch15]
+-59451.1 7.25717 0.00 !Mu0ChX128ERaw[Co2At4Ch16]
+ -10000 0.00 0.00 !Mu0ChY1ERaw[Co3At1Ch1]
+60342.1 -7.36534 0.00 !Mu0ChY2ERaw[Co3At1Ch2]
+60855.3 -7.42765 0.00 !Mu0ChY3ERaw[Co3At1Ch3]
+61044 -7.45109 0.00 !Mu0ChY4ERaw[Co3At1Ch4]
+59928.1 -7.31456 0.00 !Mu0ChY5ERaw[Co3At1Ch5]
+60111.5 -7.33668 0.00 !Mu0ChY6ERaw[Co3At1Ch6]
+60670.5 -7.40537 0.00 !Mu0ChY7ERaw[Co3At1Ch7]
+60385.3 -7.37047 0.00 !Mu0ChY8ERaw[Co3At1Ch8]
+60092.7 -7.33441 0.00 !Mu0ChY9ERaw[Co3At1Ch9]
+59923.3 -7.31426 0.00 !Mu0ChY10ERaw[Co3At1Ch10]
+60352.8 -7.36636 0.00 !Mu0ChY11ERaw[Co3At1Ch11]
+59986.2 -7.32159 0.00 !Mu0ChY12ERaw[Co3At1Ch12]
+60842.8 -7.42632 0.00 !Mu0ChY13ERaw[Co3At1Ch13]
+60935.6 -7.43739 0.00 !Mu0ChY14ERaw[Co3At1Ch14]
+61019.1 -7.4482 0.00 !Mu0ChY15ERaw[Co3At1Ch15]
+60664 -7.40424 0.00 !Mu0ChY16ERaw[Co3At1Ch16]
+60353 -7.36683 0.00 !Mu0ChY17ERaw[Co3At2Ch1]
+60455.8 -7.37881 0.00 !Mu0ChY18ERaw[Co3At2Ch2]
+60296.1 -7.36011 0.00 !Mu0ChY19ERaw[Co3At2Ch3]
+60076.2 -7.3325 0.00 !Mu0ChY20ERaw[Co3At2Ch4]
+60257.8 -7.3547 0.00 !Mu0ChY21ERaw[Co3At2Ch5]
+60341.1 -7.36488 0.00 !Mu0ChY22ERaw[Co3At2Ch6]
+60163.7 -7.34342 0.00 !Mu0ChY23ERaw[Co3At2Ch7]
+59583.3 -7.27238 0.00 !Mu0ChY24ERaw[Co3At2Ch8]
+60137.5 -7.34053 0.00 !Mu0ChY25ERaw[Co3At2Ch9]
+59690.4 -7.286 0.00 !Mu0ChY26ERaw[Co3At2Ch10]
+59947.9 -7.31714 0.00 !Mu0ChY27ERaw[Co3At2Ch11]
+60296.3 -7.3596 0.00 !Mu0ChY28ERaw[Co3At2Ch12]
+59868.7 -7.30687 0.00 !Mu0ChY29ERaw[Co3At2Ch13]
+59550.2 -7.26855 0.00 !Mu0ChY30ERaw[Co3At2Ch14]
+59726.2 -7.29007 0.00 !Mu0ChY31ERaw[Co3At2Ch15]
+60921 -7.43642 0.00 !Mu0ChY32ERaw[Co3At2Ch16]
+56617 -6.91063 0.00 !Mu0ChY33ERaw[Co3At3Ch1]
+56959 -6.95194 0.00 !Mu0ChY34ERaw[Co3At3Ch2]
+56494.7 -6.89584 0.00 !Mu0ChY35ERaw[Co3At3Ch3]
+57009.3 -6.95849 0.00 !Mu0ChY36ERaw[Co3At3Ch4]
+57335.7 -6.99755 0.00 !Mu0ChY37ERaw[Co3At3Ch5]
+57264 -6.98966 0.00 !Mu0ChY38ERaw[Co3At3Ch6]
+56409.9 -6.88581 0.00 !Mu0ChY39ERaw[Co3At3Ch7]
+56431.2 -6.88775 0.00 !Mu0ChY40ERaw[Co3At3Ch8]
+56901.9 -6.94551 0.00 !Mu0ChY41ERaw[Co3At3Ch9]
+56694.7 -6.9201 0.00 !Mu0ChY42ERaw[Co3At3Ch10]
+56548.3 -6.90222 0.00 !Mu0ChY43ERaw[Co3At3Ch11]
+56526.1 -6.89944 0.00 !Mu0ChY44ERaw[Co3At3Ch12]
+56796.8 -6.93275 0.00 !Mu0ChY45ERaw[Co3At3Ch13]
+56913 -6.94682 0.00 !Mu0ChY46ERaw[Co3At3Ch14]
+57765.4 -7.05041 0.00 !Mu0ChY47ERaw[Co3At3Ch15]
+56524.4 -6.89932 0.00 !Mu0ChY48ERaw[Co3At3Ch16]
+57594.2 -7.03065 0.00 !Mu0ChY49ERaw[Co3At4Ch1]
+56951 -6.95104 0.00 !Mu0ChY50ERaw[Co3At4Ch2]
+56731.9 -6.92465 0.00 !Mu0ChY51ERaw[Co3At4Ch3]
+56394.3 -6.88339 0.00 !Mu0ChY52ERaw[Co3At4Ch4]
+57099.8 -6.96944 0.00 !Mu0ChY53ERaw[Co3At4Ch5]
+56961.3 -6.95188 0.00 !Mu0ChY54ERaw[Co3At4Ch6]
+56574.1 -6.90529 0.00 !Mu0ChY55ERaw[Co3At4Ch7]
+57542.6 -7.02337 0.00 !Mu0ChY56ERaw[Co3At4Ch8]
+57290.5 -6.99357 0.00 !Mu0ChY57ERaw[Co3At4Ch9]
+56751.5 -6.92768 0.00 !Mu0ChY58ERaw[Co3At4Ch10]
+56875.4 -6.94186 0.00 !Mu0ChY59ERaw[Co3At4Ch11]
+57143.4 -6.97465 0.00 !Mu0ChY60ERaw[Co3At4Ch12]
+57175.1 -6.97855 0.00 !Mu0ChY61ERaw[Co3At4Ch13]
+57057.2 -6.96403 0.00 !Mu0ChY62ERaw[Co3At4Ch14]
+57524.2 -7.02087 0.00 !Mu0ChY63ERaw[Co3At4Ch15]
+58006 -7.07906 0.00 !Mu0ChY64ERaw[Co3At4Ch16]
+60962.3 -7.44098 0.00 !Mu0ChY65ERaw[Co4At1Ch1]
+61050.9 -7.45122 0.00 !Mu0ChY66ERaw[Co4At1Ch2]
+60928.3 -7.43662 0.00 !Mu0ChY67ERaw[Co4At1Ch3]
+61282.2 -7.47993 0.00 !Mu0ChY68ERaw[Co4At1Ch4]
+60343.8 -7.36566 0.00 !Mu0ChY69ERaw[Co4At1Ch5]
+61490.9 -7.50575 0.00 !Mu0ChY70ERaw[Co4At1Ch6]
+60832.2 -7.42493 0.00 !Mu0ChY71ERaw[Co4At1Ch7]
+60401.9 -7.37282 0.00 !Mu0ChY72ERaw[Co4At1Ch8]
+61525 -7.50847 0.00 !Mu0ChY73ERaw[Co4At1Ch9]
+61015 -7.44687 0.00 !Mu0ChY74ERaw[Co4At1Ch10]
+61148.5 -7.46397 0.00 !Mu0ChY75ERaw[Co4At1Ch11]
+61498.3 -7.50535 0.00 !Mu0ChY76ERaw[Co4At1Ch12]
+60581.2 -7.39491 0.00 !Mu0ChY77ERaw[Co4At1Ch13]
+61334.4 -7.48699 0.00 !Mu0ChY78ERaw[Co4At1Ch14]
+61675.3 -7.52851 0.00 !Mu0ChY79ERaw[Co4At1Ch15]
+61049 -7.45175 0.00 !Mu0ChY80ERaw[Co4At1Ch16]
+62524.4 -7.62923 0.00 !Mu0ChY81ERaw[Co4At2Ch1]
+60968.7 -7.44121 0.00 !Mu0ChY82ERaw[Co4At2Ch2]
+61505.3 -7.50626 0.00 !Mu0ChY83ERaw[Co4At2Ch3]
+62171.7 -7.58826 0.00 !Mu0ChY84ERaw[Co4At2Ch4]
+60956.4 -7.43975 0.00 !Mu0ChY85ERaw[Co4At2Ch5]
+60853.3 -7.42648 0.00 !Mu0ChY86ERaw[Co4At2Ch6]
+61684.5 -7.52842 0.00 !Mu0ChY87ERaw[Co4At2Ch7]
+61366.5 -7.48921 0.00 !Mu0ChY88ERaw[Co4At2Ch8]
+61049.3 -7.45085 0.00 !Mu0ChY89ERaw[Co4At2Ch9]
+61272.4 -7.47871 0.00 !Mu0ChY90ERaw[Co4At2Ch10]
+61001.7 -7.44491 0.00 !Mu0ChY91ERaw[Co4At2Ch11]
+61418 -7.49644 0.00 !Mu0ChY92ERaw[Co4At2Ch12]
+61808.2 -7.54356 0.00 !Mu0ChY93ERaw[Co4At2Ch13]
+61619.4 -7.52066 0.00 !Mu0ChY94ERaw[Co4At2Ch14]
+62315.6 -7.60551 0.00 !Mu0ChY95ERaw[Co4At2Ch15]
+60787.3 -7.41924 0.00 !Mu0ChY96ERaw[Co4At2Ch16]
+56293.2 -6.87015 0.00 !Mu0ChY97ERaw[Co4At3Ch1]
+56573 -6.90468 0.00 !Mu0ChY98ERaw[Co4At3Ch2]
+56527 -6.89976 0.00 !Mu0ChY99ERaw[Co4At3Ch3]
+56430.2 -6.88772 0.00 !Mu0ChY100ERaw[Co4At3Ch4]
+56151.1 -6.8537 0.00 !Mu0ChY101ERaw[Co4At3Ch5]
+56425.2 -6.8862 0.00 !Mu0ChY102ERaw[Co4At3Ch6]
+55992.3 -6.83341 0.00 !Mu0ChY103ERaw[Co4At3Ch7]
+56507 -6.89625 0.00 !Mu0ChY104ERaw[Co4At3Ch8]
+56856.6 -6.93994 0.00 !Mu0ChY105ERaw[Co4At3Ch9]
+56055.3 -6.84208 0.00 !Mu0ChY106ERaw[Co4At3Ch10]
+57029.6 -6.9606 0.00 !Mu0ChY107ERaw[Co4At3Ch11]
+57329.9 -6.9973 0.00 !Mu0ChY108ERaw[Co4At3Ch12]
+56501 -6.89663 0.00 !Mu0ChY109ERaw[Co4At3Ch13]
+56503.9 -6.89674 0.00 !Mu0ChY110ERaw[Co4At3Ch14]
+56670.1 -6.91739 0.00 !Mu0ChY111ERaw[Co4At3Ch15]
+56358.1 -6.87923 0.00 !Mu0ChY112ERaw[Co4At3Ch16]
+56894.5 -6.94468 0.00 !Mu0ChY113ERaw[Co4At4Ch1]
+56988.1 -6.95503 0.00 !Mu0ChY114ERaw[Co4At4Ch2]
+56935 -6.94957 0.00 !Mu0ChY115ERaw[Co4At4Ch3]
+56727.2 -6.92358 0.00 !Mu0ChY116ERaw[Co4At4Ch4]
+57223.6 -6.98438 0.00 !Mu0ChY117ERaw[Co4At4Ch5]
+56491 -6.895 0.00 !Mu0ChY118ERaw[Co4At4Ch6]
+56355.5 -6.87782 0.00 !Mu0ChY119ERaw[Co4At4Ch7]
+56579.2 -6.90568 0.00 !Mu0ChY120ERaw[Co4At4Ch8]
+57315.6 -6.99591 0.00 !Mu0ChY121ERaw[Co4At4Ch9]
+57115.4 -6.97039 0.00 !Mu0ChY122ERaw[Co4At4Ch10]
+56748.1 -6.92598 0.00 !Mu0ChY123ERaw[Co4At4Ch11]
+55985.4 -6.83357 0.00 !Mu0ChY124ERaw[Co4At4Ch12]
+56341.9 -6.87581 0.00 !Mu0ChY125ERaw[Co4At4Ch13]
+55850.6 -6.81634 0.00 !Mu0ChY126ERaw[Co4At4Ch14]
+56922.6 -6.9478 0.00 !Mu0ChY127ERaw[Co4At4Ch15]
+56515 -6.89869 0.00 !Mu0ChY128ERaw[Co4At4Ch16]
+-62516.5 7.6311 0.00 !Mu1ChX1ERaw[Co1At1Ch1]
+-62274.1 7.60081 0.00 !Mu1ChX2ERaw[Co1At1Ch2]
+-62256.5 7.59888 0.00 !Mu1ChX3ERaw[Co1At1Ch3]
+-62105.5 7.58086 0.00 !Mu1ChX4ERaw[Co1At1Ch4]
+-61551.9 7.51336 0.00 !Mu1ChX5ERaw[Co1At1Ch5]
+-61602.3 7.51847 0.00 !Mu1ChX6ERaw[Co1At1Ch6]
+-62332.4 7.60802 0.00 !Mu1ChX7ERaw[Co1At1Ch7]
+-61432.2 7.49866 0.00 !Mu1ChX8ERaw[Co1At1Ch8]
+-61295.9 7.48181 0.00 !Mu1ChX9ERaw[Co1At1Ch9]
+-61534 7.5109 0.00 !Mu1ChX10ERaw[Co1At1Ch10]
+-61736.5 7.53509 0.00 !Mu1ChX11ERaw[Co1At1Ch11]
+-61736.7 7.53547 0.00 !Mu1ChX12ERaw[Co1At1Ch12]
+-61907.1 7.55623 0.00 !Mu1ChX13ERaw[Co1At1Ch13]
+-61411.3 7.49629 0.00 !Mu1ChX14ERaw[Co1At1Ch14]
+-61128 7.4611 0.00 !Mu1ChX15ERaw[Co1At1Ch15]
+-62002.7 7.56766 0.00 !Mu1ChX16ERaw[Co1At1Ch16]
+-62626.7 7.64348 0.00 !Mu1ChX17ERaw[Co1At2Ch1]
+-61797.5 7.54209 0.00 !Mu1ChX18ERaw[Co1At2Ch2]
+-62271.7 7.60236 0.00 !Mu1ChX19ERaw[Co1At2Ch3]
+-62132.1 7.58327 0.00 !Mu1ChX20ERaw[Co1At2Ch4]
+-62874.1 7.67499 0.00 !Mu1ChX21ERaw[Co1At2Ch5]
+-62211.6 7.59273 0.00 !Mu1ChX22ERaw[Co1At2Ch6]
+-62885.8 7.6761 0.00 !Mu1ChX23ERaw[Co1At2Ch7]
+-62400 7.61554 0.00 !Mu1ChX24ERaw[Co1At2Ch8]
+-62315.1 7.60536 0.00 !Mu1ChX25ERaw[Co1At2Ch9]
+-62060.6 7.57409 0.00 !Mu1ChX26ERaw[Co1At2Ch10]
+-61995.1 7.56723 0.00 !Mu1ChX27ERaw[Co1At2Ch11]
+-61730.5 7.53394 0.00 !Mu1ChX28ERaw[Co1At2Ch12]
+-61701.7 7.53073 0.00 !Mu1ChX29ERaw[Co1At2Ch13]
+-62796.3 7.66424 0.00 !Mu1ChX30ERaw[Co1At2Ch14]
+-61870.4 7.55102 0.00 !Mu1ChX31ERaw[Co1At2Ch15]
+-62871.5 7.67342 0.00 !Mu1ChX32ERaw[Co1At2Ch16]
+-58249.1 7.11105 0.00 !Mu1ChX33ERaw[Co1At3Ch1]
+-58600 7.15128 0.00 !Mu1ChX34ERaw[Co1At3Ch2]
+-58503.6 7.13902 0.00 !Mu1ChX35ERaw[Co1At3Ch3]
+-57934.8 7.07492 0.00 !Mu1ChX36ERaw[Co1At3Ch4]
+-58269.8 7.11052 0.00 !Mu1ChX37ERaw[Co1At3Ch5]
+-58373.3 7.12516 0.00 !Mu1ChX38ERaw[Co1At3Ch6]
+-58024.8 7.08223 0.00 !Mu1ChX39ERaw[Co1At3Ch7]
+-58731.9 7.16835 0.00 !Mu1ChX40ERaw[Co1At3Ch8]
+-58380.1 7.12401 0.00 !Mu1ChX41ERaw[Co1At3Ch9]
+-59080.3 7.20869 0.00 !Mu1ChX42ERaw[Co1At3Ch10]
+-58163.3 7.09879 0.00 !Mu1ChX43ERaw[Co1At3Ch11]
+-58321.6 7.12064 0.00 !Mu1ChX44ERaw[Co1At3Ch12]
+-58793.4 7.17398 0.00 !Mu1ChX45ERaw[Co1At3Ch13]
+-59555 7.26719 0.00 !Mu1ChX46ERaw[Co1At3Ch14]
+-58985.3 7.19742 0.00 !Mu1ChX47ERaw[Co1At3Ch15]
+-58393.4 7.13232 0.00 !Mu1ChX48ERaw[Co1At3Ch16]
+-57868.3 7.06236 0.00 !Mu1ChX49ERaw[Co1At4Ch1]
+-58528.7 7.14353 0.00 !Mu1ChX50ERaw[Co1At4Ch2]
+-58063.7 7.08664 0.00 !Mu1ChX51ERaw[Co1At4Ch3]
+-57735.8 7.04669 0.00 !Mu1ChX52ERaw[Co1At4Ch4]
+-58026.2 7.08204 0.00 !Mu1ChX53ERaw[Co1At4Ch5]
+-57941.2 7.07198 0.00 !Mu1ChX54ERaw[Co1At4Ch6]
+-58010.7 7.08036 0.00 !Mu1ChX55ERaw[Co1At4Ch7]
+-57865.2 7.06218 0.00 !Mu1ChX56ERaw[Co1At4Ch8]
+-58114.3 7.09321 0.00 !Mu1ChX57ERaw[Co1At4Ch9]
+-57872.6 7.06339 0.00 !Mu1ChX58ERaw[Co1At4Ch10]
+-58515.5 7.14195 0.00 !Mu1ChX59ERaw[Co1At4Ch11]
+-57693.8 7.04145 0.00 !Mu1ChX60ERaw[Co1At4Ch12]
+-57754.9 7.04905 0.00 !Mu1ChX61ERaw[Co1At4Ch13]
+-58253.2 7.10979 0.00 !Mu1ChX62ERaw[Co1At4Ch14]
+-58114.8 7.09262 0.00 !Mu1ChX63ERaw[Co1At4Ch15]
+-58287 7.1143 0.00 !Mu1ChX64ERaw[Co1At4Ch16]
+-61032.9 7.44807 0.00 !Mu1ChX65ERaw[Co2At1Ch1]
+-61684.6 7.52792 0.00 !Mu1ChX66ERaw[Co2At1Ch2]
+-61429.6 7.49794 0.00 !Mu1ChX67ERaw[Co2At1Ch3]
+-61667.7 7.52697 0.00 !Mu1ChX68ERaw[Co2At1Ch4]
+-61891.3 7.55404 0.00 !Mu1ChX69ERaw[Co2At1Ch5]
+-61446.2 7.49857 0.00 !Mu1ChX70ERaw[Co2At1Ch6]
+-61708.6 7.53062 0.00 !Mu1ChX71ERaw[Co2At1Ch7]
+-62071.3 7.57514 0.00 !Mu1ChX72ERaw[Co2At1Ch8]
+-61278.1 7.47991 0.00 !Mu1ChX73ERaw[Co2At1Ch9]
+-62655.4 7.64692 0.00 !Mu1ChX74ERaw[Co2At1Ch10]
+-61932.8 7.55898 0.00 !Mu1ChX75ERaw[Co2At1Ch11]
+-61983.5 7.56623 0.00 !Mu1ChX76ERaw[Co2At1Ch12]
+-61655.2 7.52649 0.00 !Mu1ChX77ERaw[Co2At1Ch13]
+-61854.1 7.54843 0.00 !Mu1ChX78ERaw[Co2At1Ch14]
+-61483.5 7.50294 0.00 !Mu1ChX79ERaw[Co2At1Ch15]
+-61906.6 7.55644 0.00 !Mu1ChX80ERaw[Co2At1Ch16]
+-63488.4 7.74867 0.00 !Mu1ChX81ERaw[Co2At2Ch1]
+-63741.9 7.78029 0.00 !Mu1ChX82ERaw[Co2At2Ch2]
+-64177.5 7.83331 0.00 !Mu1ChX83ERaw[Co2At2Ch3]
+-63942 7.804 0.00 !Mu1ChX84ERaw[Co2At2Ch4]
+-64165.5 7.8324 0.00 !Mu1ChX85ERaw[Co2At2Ch5]
+-63871.7 7.79646 0.00 !Mu1ChX86ERaw[Co2At2Ch6]
+-64130.5 7.82725 0.00 !Mu1ChX87ERaw[Co2At2Ch7]
+-64304 7.84811 0.00 !Mu1ChX88ERaw[Co2At2Ch8]
+-64070.2 7.82171 0.00 !Mu1ChX89ERaw[Co2At2Ch9]
+-64367.7 7.85609 0.00 !Mu1ChX90ERaw[Co2At2Ch10]
+-63515.8 7.75294 0.00 !Mu1ChX91ERaw[Co2At2Ch11]
+-63403.5 7.73929 0.00 !Mu1ChX92ERaw[Co2At2Ch12]
+-64650.7 7.89095 0.00 !Mu1ChX93ERaw[Co2At2Ch13]
+-64071.5 7.81996 0.00 !Mu1ChX94ERaw[Co2At2Ch14]
+-63723.8 7.77948 0.00 !Mu1ChX95ERaw[Co2At2Ch15]
+-63504.1 7.75094 0.00 !Mu1ChX96ERaw[Co2At2Ch16]
+-56309 6.87269 0.00 !Mu1ChX97ERaw[Co2At3Ch1]
+-56713.9 6.92185 0.00 !Mu1ChX98ERaw[Co2At3Ch2]
+-56681.7 6.91912 0.00 !Mu1ChX99ERaw[Co2At3Ch3]
+-56380 6.88193 0.00 !Mu1ChX100ERaw[Co2At3Ch4]
+-56624.3 6.9108 0.00 !Mu1ChX101ERaw[Co2At3Ch5]
+-57163.3 6.97787 0.00 !Mu1ChX102ERaw[Co2At3Ch6]
+-57300.7 6.99425 0.00 !Mu1ChX103ERaw[Co2At3Ch7]
+-56583 6.90657 0.00 !Mu1ChX104ERaw[Co2At3Ch8]
+-56874 6.94133 0.00 !Mu1ChX105ERaw[Co2At3Ch9]
+-57021.6 6.95972 0.00 !Mu1ChX106ERaw[Co2At3Ch10]
+-57826.6 7.05832 0.00 !Mu1ChX107ERaw[Co2At3Ch11]
+-57775.6 7.05242 0.00 !Mu1ChX108ERaw[Co2At3Ch12]
+-57753.9 7.04858 0.00 !Mu1ChX109ERaw[Co2At3Ch13]
+-57529.9 7.02159 0.00 !Mu1ChX110ERaw[Co2At3Ch14]
+-57756.7 7.04901 0.00 !Mu1ChX111ERaw[Co2At3Ch15]
+-57996.3 7.07845 0.00 !Mu1ChX112ERaw[Co2At3Ch16]
+-57263.1 6.98926 0.00 !Mu1ChX113ERaw[Co2At4Ch1]
+-57281 6.99144 0.00 !Mu1ChX114ERaw[Co2At4Ch2]
+-56848.9 6.93863 0.00 !Mu1ChX115ERaw[Co2At4Ch3]
+-57714.2 7.04451 0.00 !Mu1ChX116ERaw[Co2At4Ch4]
+-57316.9 6.99588 0.00 !Mu1ChX117ERaw[Co2At4Ch5]
+-57261.4 6.9893 0.00 !Mu1ChX118ERaw[Co2At4Ch6]
+-56540.6 6.9014 0.00 !Mu1ChX119ERaw[Co2At4Ch7]
+-58381.7 7.12551 0.00 !Mu1ChX120ERaw[Co2At4Ch8]
+-57471.4 7.01432 0.00 !Mu1ChX121ERaw[Co2At4Ch9]
+-57809.5 7.05575 0.00 !Mu1ChX122ERaw[Co2At4Ch10]
+-57734.9 7.04709 0.00 !Mu1ChX123ERaw[Co2At4Ch11]
+-57441.1 7.01114 0.00 !Mu1ChX124ERaw[Co2At4Ch12]
+-57659.5 7.03733 0.00 !Mu1ChX125ERaw[Co2At4Ch13]
+-57658.9 7.03761 0.00 !Mu1ChX126ERaw[Co2At4Ch14]
+-57057.9 6.96435 0.00 !Mu1ChX127ERaw[Co2At4Ch15]
+-57891.9 7.0664 0.00 !Mu1ChX128ERaw[Co2At4Ch16]
+59587 -7.27421 0.00 !Mu1ChY1ERaw[Co3At1Ch1]
+60350 -7.36663 0.00 !Mu1ChY2ERaw[Co3At1Ch2]
+59636.9 -7.2798 0.00 !Mu1ChY3ERaw[Co3At1Ch3]
+59250.4 -7.23253 0.00 !Mu1ChY4ERaw[Co3At1Ch4]
+60103.9 -7.33661 0.00 !Mu1ChY5ERaw[Co3At1Ch5]
+59993 -7.32323 0.00 !Mu1ChY6ERaw[Co3At1Ch6]
+59355.7 -7.24588 0.00 !Mu1ChY7ERaw[Co3At1Ch7]
+59465.8 -7.25939 0.00 !Mu1ChY8ERaw[Co3At1Ch8]
+59413.5 -7.25269 0.00 !Mu1ChY9ERaw[Co3At1Ch9]
+59628.3 -7.27927 0.00 !Mu1ChY10ERaw[Co3At1Ch10]
+59420.7 -7.25321 0.00 !Mu1ChY11ERaw[Co3At1Ch11]
+59517.3 -7.26551 0.00 !Mu1ChY12ERaw[Co3At1Ch12]
+60156.9 -7.34327 0.00 !Mu1ChY13ERaw[Co3At1Ch13]
+59274.7 -7.23573 0.00 !Mu1ChY14ERaw[Co3At1Ch14]
+59413.8 -7.2528 0.00 !Mu1ChY15ERaw[Co3At1Ch15]
+59941.2 -7.31657 0.00 !Mu1ChY16ERaw[Co3At1Ch16]
+62356.3 -7.61131 0.00 !Mu1ChY17ERaw[Co3At2Ch1]
+62368.3 -7.61293 0.00 !Mu1ChY18ERaw[Co3At2Ch2]
+62294 -7.60309 0.00 !Mu1ChY19ERaw[Co3At2Ch3]
+61984.1 -7.56662 0.00 !Mu1ChY20ERaw[Co3At2Ch4]
+62459 -7.62322 0.00 !Mu1ChY21ERaw[Co3At2Ch5]
+62300.6 -7.60413 0.00 !Mu1ChY22ERaw[Co3At2Ch6]
+ -10000 0.00 0.00 !Mu1ChY23ERaw[Co3At2Ch7]
+61991.5 -7.56756 0.00 !Mu1ChY24ERaw[Co3At2Ch8]
+61618.9 -7.52114 0.00 !Mu1ChY25ERaw[Co3At2Ch9]
+61345 -7.48831 0.00 !Mu1ChY26ERaw[Co3At2Ch10]
+61986.1 -7.56653 0.00 !Mu1ChY27ERaw[Co3At2Ch11]
+61993.4 -7.56773 0.00 !Mu1ChY28ERaw[Co3At2Ch12]
+62149.7 -7.58604 0.00 !Mu1ChY29ERaw[Co3At2Ch13]
+62014.3 -7.57031 0.00 !Mu1ChY30ERaw[Co3At2Ch14]
+61586.9 -7.51767 0.00 !Mu1ChY31ERaw[Co3At2Ch15]
+61755.6 -7.53847 0.00 !Mu1ChY32ERaw[Co3At2Ch16]
+55995 -6.83497 0.00 !Mu1ChY33ERaw[Co3At3Ch1]
+56198 -6.86037 0.00 !Mu1ChY34ERaw[Co3At3Ch2]
+55578.9 -6.78486 0.00 !Mu1ChY35ERaw[Co3At3Ch3]
+55601.6 -6.78669 0.00 !Mu1ChY36ERaw[Co3At3Ch4]
+55322.2 -6.75352 0.00 !Mu1ChY37ERaw[Co3At3Ch5]
+56297.6 -6.87208 0.00 !Mu1ChY38ERaw[Co3At3Ch6]
+55306 -6.75079 0.00 !Mu1ChY39ERaw[Co3At3Ch7]
+55844.8 -6.81653 0.00 !Mu1ChY40ERaw[Co3At3Ch8]
+56056.1 -6.84392 0.00 !Mu1ChY41ERaw[Co3At3Ch9]
+56003 -6.83589 0.00 !Mu1ChY42ERaw[Co3At3Ch10]
+55455.8 -6.76939 0.00 !Mu1ChY43ERaw[Co3At3Ch11]
+56539.8 -6.90172 0.00 !Mu1ChY44ERaw[Co3At3Ch12]
+55591.9 -6.78603 0.00 !Mu1ChY45ERaw[Co3At3Ch13]
+55642.7 -6.79229 0.00 !Mu1ChY46ERaw[Co3At3Ch14]
+55717.9 -6.80114 0.00 !Mu1ChY47ERaw[Co3At3Ch15]
+55630.4 -6.79055 0.00 !Mu1ChY48ERaw[Co3At3Ch16]
+57134 -6.97428 0.00 !Mu1ChY49ERaw[Co3At4Ch1]
+56488.9 -6.89459 0.00 !Mu1ChY50ERaw[Co3At4Ch2]
+56444.9 -6.88991 0.00 !Mu1ChY51ERaw[Co3At4Ch3]
+55917.5 -6.82531 0.00 !Mu1ChY52ERaw[Co3At4Ch4]
+56781.1 -6.9307 0.00 !Mu1ChY53ERaw[Co3At4Ch5]
+56234.3 -6.86372 0.00 !Mu1ChY54ERaw[Co3At4Ch6]
+56414.1 -6.8863 0.00 !Mu1ChY55ERaw[Co3At4Ch7]
+56314.1 -6.87366 0.00 !Mu1ChY56ERaw[Co3At4Ch8]
+57181.6 -6.97991 0.00 !Mu1ChY57ERaw[Co3At4Ch9]
+56971.7 -6.95407 0.00 !Mu1ChY58ERaw[Co3At4Ch10]
+56545.7 -6.90218 0.00 !Mu1ChY59ERaw[Co3At4Ch11]
+57194 -6.98061 0.00 !Mu1ChY60ERaw[Co3At4Ch12]
+57452.7 -7.01268 0.00 !Mu1ChY61ERaw[Co3At4Ch13]
+56974.6 -6.95454 0.00 !Mu1ChY62ERaw[Co3At4Ch14]
+56096.9 -6.84754 0.00 !Mu1ChY63ERaw[Co3At4Ch15]
+57295.9 -6.99365 0.00 !Mu1ChY64ERaw[Co3At4Ch16]
+60966.1 -7.4416 0.00 !Mu1ChY65ERaw[Co4At1Ch1]
+61476.9 -7.50343 0.00 !Mu1ChY66ERaw[Co4At1Ch2]
+61230.2 -7.47385 0.00 !Mu1ChY67ERaw[Co4At1Ch3]
+61536.4 -7.51174 0.00 !Mu1ChY68ERaw[Co4At1Ch4]
+61212.4 -7.47235 0.00 !Mu1ChY69ERaw[Co4At1Ch5]
+59944.2 -7.31688 0.00 !Mu1ChY70ERaw[Co4At1Ch6]
+60359.9 -7.36752 0.00 !Mu1ChY71ERaw[Co4At1Ch7]
+61084.9 -7.45619 0.00 !Mu1ChY72ERaw[Co4At1Ch8]
+60294.9 -7.36018 0.00 !Mu1ChY73ERaw[Co4At1Ch9]
+61097.9 -7.45775 0.00 !Mu1ChY74ERaw[Co4At1Ch10]
+60832.2 -7.4254 0.00 !Mu1ChY75ERaw[Co4At1Ch11]
+60341 -7.36539 0.00 !Mu1ChY76ERaw[Co4At1Ch12]
+60457.4 -7.38011 0.00 !Mu1ChY77ERaw[Co4At1Ch13]
+60881 -7.43155 0.00 !Mu1ChY78ERaw[Co4At1Ch14]
+60579 -7.39461 0.00 !Mu1ChY79ERaw[Co4At1Ch15]
+61262.7 -7.47821 0.00 !Mu1ChY80ERaw[Co4At1Ch16]
+61087 -7.45653 0.00 !Mu1ChY81ERaw[Co4At2Ch1]
+60957.8 -7.44017 0.00 !Mu1ChY82ERaw[Co4At2Ch2]
+61015 -7.4473 0.00 !Mu1ChY83ERaw[Co4At2Ch3]
+60458.6 -7.38002 0.00 !Mu1ChY84ERaw[Co4At2Ch4]
+60328.5 -7.36352 0.00 !Mu1ChY85ERaw[Co4At2Ch5]
+61293.9 -7.48211 0.00 !Mu1ChY86ERaw[Co4At2Ch6]
+60645.5 -7.40378 0.00 !Mu1ChY87ERaw[Co4At2Ch7]
+60614 -7.39798 0.00 !Mu1ChY88ERaw[Co4At2Ch8]
+60998.7 -7.44612 0.00 !Mu1ChY89ERaw[Co4At2Ch9]
+61206 -7.47091 0.00 !Mu1ChY90ERaw[Co4At2Ch10]
+60669.6 -7.40552 0.00 !Mu1ChY91ERaw[Co4At2Ch11]
+60794.3 -7.42076 0.00 !Mu1ChY92ERaw[Co4At2Ch12]
+60367.8 -7.36826 0.00 !Mu1ChY93ERaw[Co4At2Ch13]
+61409.1 -7.49616 0.00 !Mu1ChY94ERaw[Co4At2Ch14]
+61537.9 -7.51137 0.00 !Mu1ChY95ERaw[Co4At2Ch15]
+60656.5 -7.40388 0.00 !Mu1ChY96ERaw[Co4At2Ch16]
+55842.6 -6.81725 0.00 !Mu1ChY97ERaw[Co4At3Ch1]
+55367.1 -6.75769 0.00 !Mu1ChY98ERaw[Co4At3Ch2]
+55712.2 -6.80116 0.00 !Mu1ChY99ERaw[Co4At3Ch3]
+55524 -6.77768 0.00 !Mu1ChY100ERaw[Co4At3Ch4]
+55820.1 -6.81352 0.00 !Mu1ChY101ERaw[Co4At3Ch5]
+55479.4 -6.77257 0.00 !Mu1ChY102ERaw[Co4At3Ch6]
+55467.2 -6.77116 0.00 !Mu1ChY103ERaw[Co4At3Ch7]
+56133.4 -6.85195 0.00 !Mu1ChY104ERaw[Co4At3Ch8]
+55203.6 -6.73883 0.00 !Mu1ChY105ERaw[Co4At3Ch9]
+55269.4 -6.74655 0.00 !Mu1ChY106ERaw[Co4At3Ch10]
+55825.9 -6.81501 0.00 !Mu1ChY107ERaw[Co4At3Ch11]
+55176.8 -6.73553 0.00 !Mu1ChY108ERaw[Co4At3Ch12]
+55849.5 -6.8172 0.00 !Mu1ChY109ERaw[Co4At3Ch13]
+56038.1 -6.84069 0.00 !Mu1ChY110ERaw[Co4At3Ch14]
+56158.8 -6.8555 0.00 !Mu1ChY111ERaw[Co4At3Ch15]
+56579.4 -6.90682 0.00 !Mu1ChY112ERaw[Co4At3Ch16]
+54706.4 -6.6782 0.00 !Mu1ChY113ERaw[Co4At4Ch1]
+55473 -6.77076 0.00 !Mu1ChY114ERaw[Co4At4Ch2]
+55101.6 -6.7263 0.00 !Mu1ChY115ERaw[Co4At4Ch3]
+55096.7 -6.72554 0.00 !Mu1ChY116ERaw[Co4At4Ch4]
+55171.5 -6.73434 0.00 !Mu1ChY117ERaw[Co4At4Ch5]
+55317.4 -6.75224 0.00 !Mu1ChY118ERaw[Co4At4Ch6]
+55193.7 -6.73739 0.00 !Mu1ChY119ERaw[Co4At4Ch7]
+55688.5 -6.79707 0.00 !Mu1ChY120ERaw[Co4At4Ch8]
+55649.8 -6.7933 0.00 !Mu1ChY121ERaw[Co4At4Ch9]
+55362.2 -6.75814 0.00 !Mu1ChY122ERaw[Co4At4Ch10]
+54711.4 -6.67865 0.00 !Mu1ChY123ERaw[Co4At4Ch11]
+55069.6 -6.72259 0.00 !Mu1ChY124ERaw[Co4At4Ch12]
+55139.2 -6.73052 0.00 !Mu1ChY125ERaw[Co4At4Ch13]
+55090 -6.72464 0.00 !Mu1ChY126ERaw[Co4At4Ch14]
+55297.3 -6.75015 0.00 !Mu1ChY127ERaw[Co4At4Ch15]
+56118.7 -6.85016 0.00 !Mu1ChY128ERaw[Co4At4Ch16]
+-63061.5 7.69841 0.00 !Mu2ChX1ERaw[Co1At1Ch1]
+-62506.4 7.62904 0.00 !Mu2ChX2ERaw[Co1At1Ch2]
+-62898.2 7.67697 0.00 !Mu2ChX3ERaw[Co1At1Ch3]
+-62102.5 7.57997 0.00 !Mu2ChX4ERaw[Co1At1Ch4]
+-62091 7.57843 0.00 !Mu2ChX5ERaw[Co1At1Ch5]
+-62680 7.651 0.00 !Mu2ChX6ERaw[Co1At1Ch6]
+-62497.6 7.62835 0.00 !Mu2ChX7ERaw[Co1At1Ch7]
+-62860.6 7.67221 0.00 !Mu2ChX8ERaw[Co1At1Ch8]
+-62934.9 7.68182 0.00 !Mu2ChX9ERaw[Co1At1Ch9]
+-62209.2 7.59345 0.00 !Mu2ChX10ERaw[Co1At1Ch10]
+-62461.4 7.62395 0.00 !Mu2ChX11ERaw[Co1At1Ch11]
+-62447.9 7.62232 0.00 !Mu2ChX12ERaw[Co1At1Ch12]
+-62823.1 7.66888 0.00 !Mu2ChX13ERaw[Co1At1Ch13]
+-62578.4 7.63796 0.00 !Mu2ChX14ERaw[Co1At1Ch14]
+-62668.3 7.64912 0.00 !Mu2ChX15ERaw[Co1At1Ch15]
+-63727.1 7.7794 0.00 !Mu2ChX16ERaw[Co1At1Ch16]
+-62184.1 7.59 0.00 !Mu2ChX17ERaw[Co1At2Ch1]
+-61848.8 7.54926 0.00 !Mu2ChX18ERaw[Co1At2Ch2]
+-61650.4 7.52467 0.00 !Mu2ChX19ERaw[Co1At2Ch3]
+-61485.9 7.50437 0.00 !Mu2ChX20ERaw[Co1At2Ch4]
+-61652 7.52531 0.00 !Mu2ChX21ERaw[Co1At2Ch5]
+-62305.4 7.60457 0.00 !Mu2ChX22ERaw[Co1At2Ch6]
+-62259.8 7.59897 0.00 !Mu2ChX23ERaw[Co1At2Ch7]
+-61800.7 7.54312 0.00 !Mu2ChX24ERaw[Co1At2Ch8]
+-61581.2 7.51641 0.00 !Mu2ChX25ERaw[Co1At2Ch9]
+-62044.4 7.57347 0.00 !Mu2ChX26ERaw[Co1At2Ch10]
+-62080.1 7.57801 0.00 !Mu2ChX27ERaw[Co1At2Ch11]
+-61797.8 7.54284 0.00 !Mu2ChX28ERaw[Co1At2Ch12]
+-61681.7 7.52824 0.00 !Mu2ChX29ERaw[Co1At2Ch13]
+-61267.4 7.47771 0.00 !Mu2ChX30ERaw[Co1At2Ch14]
+-62349 7.61043 0.00 !Mu2ChX31ERaw[Co1At2Ch15]
+-61564.9 7.51409 0.00 !Mu2ChX32ERaw[Co1At2Ch16]
+-59015.3 7.20328 0.00 !Mu2ChX33ERaw[Co1At3Ch1]
+-58139.9 7.09618 0.00 !Mu2ChX34ERaw[Co1At3Ch2]
+-58698.1 7.16453 0.00 !Mu2ChX35ERaw[Co1At3Ch3]
+-58443.2 7.13257 0.00 !Mu2ChX36ERaw[Co1At3Ch4]
+-58176 7.101 0.00 !Mu2ChX37ERaw[Co1At3Ch5]
+-58207.6 7.10467 0.00 !Mu2ChX38ERaw[Co1At3Ch6]
+-58335 7.12045 0.00 !Mu2ChX39ERaw[Co1At3Ch7]
+-57883.4 7.06537 0.00 !Mu2ChX40ERaw[Co1At3Ch8]
+-57575 7.02751 0.00 !Mu2ChX41ERaw[Co1At3Ch9]
+-58583.7 7.1504 0.00 !Mu2ChX42ERaw[Co1At3Ch10]
+-58764.6 7.1724 0.00 !Mu2ChX43ERaw[Co1At3Ch11]
+-58310.8 7.11768 0.00 !Mu2ChX44ERaw[Co1At3Ch12]
+-58650 7.15916 0.00 !Mu2ChX45ERaw[Co1At3Ch13]
+-58694.4 7.16541 0.00 !Mu2ChX46ERaw[Co1At3Ch14]
+-58376.6 7.12585 0.00 !Mu2ChX47ERaw[Co1At3Ch15]
+-58493.9 7.13969 0.00 !Mu2ChX48ERaw[Co1At3Ch16]
+-57774.7 7.05139 0.00 !Mu2ChX49ERaw[Co1At4Ch1]
+-57219.6 6.984 0.00 !Mu2ChX50ERaw[Co1At4Ch2]
+-58150.7 7.09771 0.00 !Mu2ChX51ERaw[Co1At4Ch3]
+-57875.1 7.06455 0.00 !Mu2ChX52ERaw[Co1At4Ch4]
+-57614.5 7.0324 0.00 !Mu2ChX53ERaw[Co1At4Ch5]
+-57119.3 6.97173 0.00 !Mu2ChX54ERaw[Co1At4Ch6]
+-57879.9 7.06465 0.00 !Mu2ChX55ERaw[Co1At4Ch7]
+-57700.2 7.04254 0.00 !Mu2ChX56ERaw[Co1At4Ch8]
+-57884.3 7.06528 0.00 !Mu2ChX57ERaw[Co1At4Ch9]
+-57744.7 7.04893 0.00 !Mu2ChX58ERaw[Co1At4Ch10]
+-57978.3 7.07647 0.00 !Mu2ChX59ERaw[Co1At4Ch11]
+-57040.8 6.96222 0.00 !Mu2ChX60ERaw[Co1At4Ch12]
+-57537 7.02231 0.00 !Mu2ChX61ERaw[Co1At4Ch13]
+-56754.4 6.92733 0.00 !Mu2ChX62ERaw[Co1At4Ch14]
+-57494.4 7.01801 0.00 !Mu2ChX63ERaw[Co1At4Ch15]
+-57815.3 7.05707 0.00 !Mu2ChX64ERaw[Co1At4Ch16]
+-63330.5 7.72984 0.00 !Mu2ChX65ERaw[Co2At1Ch1]
+-65014.7 7.93525 0.00 !Mu2ChX66ERaw[Co2At1Ch2]
+-64023.8 7.8138 0.00 !Mu2ChX67ERaw[Co2At1Ch3]
+-63758.7 7.78178 0.00 !Mu2ChX68ERaw[Co2At1Ch4]
+ -10000 0.00 0.00 !Mu2ChX69ERaw[Co2At1Ch5]
+-64403.4 7.8608 0.00 !Mu2ChX70ERaw[Co2At1Ch6]
+-63711.9 7.77604 0.00 !Mu2ChX71ERaw[Co2At1Ch7]
+-63456.8 7.74517 0.00 !Mu2ChX72ERaw[Co2At1Ch8]
+-63366 7.73396 0.00 !Mu2ChX73ERaw[Co2At1Ch9]
+-63118.4 7.70341 0.00 !Mu2ChX74ERaw[Co2At1Ch10]
+-63845.4 7.79218 0.00 !Mu2ChX75ERaw[Co2At1Ch11]
+-63655.2 7.76957 0.00 !Mu2ChX76ERaw[Co2At1Ch12]
+-64025.4 7.81563 0.00 !Mu2ChX77ERaw[Co2At1Ch13]
+-63927.7 7.80392 0.00 !Mu2ChX78ERaw[Co2At1Ch14]
+-63554.5 7.75773 0.00 !Mu2ChX79ERaw[Co2At1Ch15]
+-63500.9 7.75129 0.00 !Mu2ChX80ERaw[Co2At1Ch16]
+-63231.2 7.7171 0.00 !Mu2ChX81ERaw[Co2At2Ch1]
+-63297.5 7.72646 0.00 !Mu2ChX82ERaw[Co2At2Ch2]
+-63156.3 7.70831 0.00 !Mu2ChX83ERaw[Co2At2Ch3]
+-63216.8 7.71566 0.00 !Mu2ChX84ERaw[Co2At2Ch4]
+-64005.8 7.81186 0.00 !Mu2ChX85ERaw[Co2At2Ch5]
+-63875.2 7.79498 0.00 !Mu2ChX86ERaw[Co2At2Ch6]
+-63778.1 7.78352 0.00 !Mu2ChX87ERaw[Co2At2Ch7]
+-63983.4 7.80931 0.00 !Mu2ChX88ERaw[Co2At2Ch8]
+-63100.5 7.70105 0.00 !Mu2ChX89ERaw[Co2At2Ch9]
+-63636.5 7.76718 0.00 !Mu2ChX90ERaw[Co2At2Ch10]
+-63516 7.75305 0.00 !Mu2ChX91ERaw[Co2At2Ch11]
+-63636.6 7.76686 0.00 !Mu2ChX92ERaw[Co2At2Ch12]
+-63357.7 7.73288 0.00 !Mu2ChX93ERaw[Co2At2Ch13]
+-64645.5 7.88952 0.00 !Mu2ChX94ERaw[Co2At2Ch14]
+-63755.2 7.78113 0.00 !Mu2ChX95ERaw[Co2At2Ch15]
+-63637.1 7.76683 0.00 !Mu2ChX96ERaw[Co2At2Ch16]
+-59014.7 7.20305 0.00 !Mu2ChX97ERaw[Co2At3Ch1]
+-58466.3 7.13675 0.00 !Mu2ChX98ERaw[Co2At3Ch2]
+-58318.1 7.11774 0.00 !Mu2ChX99ERaw[Co2At3Ch3]
+-58604.2 7.15414 0.00 !Mu2ChX100ERaw[Co2At3Ch4]
+-59349.4 7.24432 0.00 !Mu2ChX101ERaw[Co2At3Ch5]
+-59356.8 7.24468 0.00 !Mu2ChX102ERaw[Co2At3Ch6]
+-58807.5 7.17829 0.00 !Mu2ChX103ERaw[Co2At3Ch7]
+-58926.8 7.1932 0.00 !Mu2ChX104ERaw[Co2At3Ch8]
+-59050.6 7.20842 0.00 !Mu2ChX105ERaw[Co2At3Ch9]
+-59050.7 7.20773 0.00 !Mu2ChX106ERaw[Co2At3Ch10]
+-58752.7 7.17148 0.00 !Mu2ChX107ERaw[Co2At3Ch11]
+-59015.2 7.20287 0.00 !Mu2ChX108ERaw[Co2At3Ch12]
+-58809.9 7.17765 0.00 !Mu2ChX109ERaw[Co2At3Ch13]
+-60503.3 7.3854 0.00 !Mu2ChX110ERaw[Co2At3Ch14]
+-58973.3 7.19774 0.00 !Mu2ChX111ERaw[Co2At3Ch15]
+-58587.1 7.15168 0.00 !Mu2ChX112ERaw[Co2At3Ch16]
+-59305.8 7.23844 0.00 !Mu2ChX113ERaw[Co2At4Ch1]
+-59265.7 7.234 0.00 !Mu2ChX114ERaw[Co2At4Ch2]
+-59714.1 7.28798 0.00 !Mu2ChX115ERaw[Co2At4Ch3]
+-59097.5 7.21291 0.00 !Mu2ChX116ERaw[Co2At4Ch4]
+-59752 7.29299 0.00 !Mu2ChX117ERaw[Co2At4Ch5]
+-60025.7 7.32641 0.00 !Mu2ChX118ERaw[Co2At4Ch6]
+-59509.9 7.2633 0.00 !Mu2ChX119ERaw[Co2At4Ch7]
+-59481.8 7.26047 0.00 !Mu2ChX120ERaw[Co2At4Ch8]
+-60018.6 7.32613 0.00 !Mu2ChX121ERaw[Co2At4Ch9]
+-58722.7 7.16762 0.00 !Mu2ChX122ERaw[Co2At4Ch10]
+-59027.4 7.20469 0.00 !Mu2ChX123ERaw[Co2At4Ch11]
+-59326.3 7.24127 0.00 !Mu2ChX124ERaw[Co2At4Ch12]
+-58843.4 7.18246 0.00 !Mu2ChX125ERaw[Co2At4Ch13]
+-58940.7 7.19401 0.00 !Mu2ChX126ERaw[Co2At4Ch14]
+-59097.4 7.21317 0.00 !Mu2ChX127ERaw[Co2At4Ch15]
+-59222.9 7.2284 0.00 !Mu2ChX128ERaw[Co2At4Ch16]
+63157.3 -7.70969 0.00 !Mu2ChY1ERaw[Co3At1Ch1]
+63822.2 -7.78939 0.00 !Mu2ChY2ERaw[Co3At1Ch2]
+62498 -7.62853 0.00 !Mu2ChY3ERaw[Co3At1Ch3]
+63418.3 -7.74138 0.00 !Mu2ChY4ERaw[Co3At1Ch4]
+62878.7 -7.67525 0.00 !Mu2ChY5ERaw[Co3At1Ch5]
+62675.7 -7.65067 0.00 !Mu2ChY6ERaw[Co3At1Ch6]
+63018.1 -7.69193 0.00 !Mu2ChY7ERaw[Co3At1Ch7]
+62688.4 -7.65248 0.00 !Mu2ChY8ERaw[Co3At1Ch8]
+62738.7 -7.65763 0.00 !Mu2ChY9ERaw[Co3At1Ch9]
+63378.4 -7.73598 0.00 !Mu2ChY10ERaw[Co3At1Ch10]
+62933.1 -7.68161 0.00 !Mu2ChY11ERaw[Co3At1Ch11]
+62489.8 -7.62778 0.00 !Mu2ChY12ERaw[Co3At1Ch12]
+62006.9 -7.56841 0.00 !Mu2ChY13ERaw[Co3At1Ch13]
+62747.2 -7.65943 0.00 !Mu2ChY14ERaw[Co3At1Ch14]
+62904.6 -7.67764 0.00 !Mu2ChY15ERaw[Co3At1Ch15]
+63436.1 -7.74366 0.00 !Mu2ChY16ERaw[Co3At1Ch16]
+61523 -7.50754 0.00 !Mu2ChY17ERaw[Co3At2Ch1]
+60881.2 -7.4314 0.00 !Mu2ChY18ERaw[Co3At2Ch2]
+60756.5 -7.41617 0.00 !Mu2ChY19ERaw[Co3At2Ch3]
+61948.2 -7.56073 0.00 !Mu2ChY20ERaw[Co3At2Ch4]
+61120.7 -7.45872 0.00 !Mu2ChY21ERaw[Co3At2Ch5]
+60825.2 -7.42329 0.00 !Mu2ChY22ERaw[Co3At2Ch6]
+62124.2 -7.58357 0.00 !Mu2ChY23ERaw[Co3At2Ch7]
+61068.2 -7.45426 0.00 !Mu2ChY24ERaw[Co3At2Ch8]
+61024.3 -7.44902 0.00 !Mu2ChY25ERaw[Co3At2Ch9]
+61614.2 -7.52161 0.00 !Mu2ChY26ERaw[Co3At2Ch10]
+61098.9 -7.45848 0.00 !Mu2ChY27ERaw[Co3At2Ch11]
+61294.1 -7.48094 0.00 !Mu2ChY28ERaw[Co3At2Ch12]
+61584 -7.51767 0.00 !Mu2ChY29ERaw[Co3At2Ch13]
+61357.4 -7.4883 0.00 !Mu2ChY30ERaw[Co3At2Ch14]
+61263.2 -7.47721 0.00 !Mu2ChY31ERaw[Co3At2Ch15]
+61636.5 -7.52283 0.00 !Mu2ChY32ERaw[Co3At2Ch16]
+56252.9 -6.8662 0.00 !Mu2ChY33ERaw[Co3At3Ch1]
+56360.5 -6.87887 0.00 !Mu2ChY34ERaw[Co3At3Ch2]
+56726.3 -6.92397 0.00 !Mu2ChY35ERaw[Co3At3Ch3]
+56647.1 -6.91423 0.00 !Mu2ChY36ERaw[Co3At3Ch4]
+56944.1 -6.95144 0.00 !Mu2ChY37ERaw[Co3At3Ch5]
+56838 -6.9373 0.00 !Mu2ChY38ERaw[Co3At3Ch6]
+56333.4 -6.87547 0.00 !Mu2ChY39ERaw[Co3At3Ch7]
+56420 -6.88799 0.00 !Mu2ChY40ERaw[Co3At3Ch8]
+56415.4 -6.8848 0.00 !Mu2ChY41ERaw[Co3At3Ch9]
+58046.6 -7.08553 0.00 !Mu2ChY42ERaw[Co3At3Ch10]
+56749.8 -6.92777 0.00 !Mu2ChY43ERaw[Co3At3Ch11]
+56199 -6.8594 0.00 !Mu2ChY44ERaw[Co3At3Ch12]
+57477.8 -7.01539 0.00 !Mu2ChY45ERaw[Co3At3Ch13]
+57262.1 -6.98911 0.00 !Mu2ChY46ERaw[Co3At3Ch14]
+56983.6 -6.95607 0.00 !Mu2ChY47ERaw[Co3At3Ch15]
+56657.4 -6.91657 0.00 !Mu2ChY48ERaw[Co3At3Ch16]
+57544.7 -7.02396 0.00 !Mu2ChY49ERaw[Co3At4Ch1]
+57028.9 -6.96114 0.00 !Mu2ChY50ERaw[Co3At4Ch2]
+57987.4 -7.07704 0.00 !Mu2ChY51ERaw[Co3At4Ch3]
+57372.1 -7.00299 0.00 !Mu2ChY52ERaw[Co3At4Ch4]
+57342 -6.99891 0.00 !Mu2ChY53ERaw[Co3At4Ch5]
+58521 -7.14305 0.00 !Mu2ChY54ERaw[Co3At4Ch6]
+57680.6 -7.0407 0.00 !Mu2ChY55ERaw[Co3At4Ch7]
+57746.9 -7.04863 0.00 !Mu2ChY56ERaw[Co3At4Ch8]
+57638.1 -7.03576 0.00 !Mu2ChY57ERaw[Co3At4Ch9]
+57521 -7.02103 0.00 !Mu2ChY58ERaw[Co3At4Ch10]
+57470.2 -7.01554 0.00 !Mu2ChY59ERaw[Co3At4Ch11]
+58281.3 -7.11404 0.00 !Mu2ChY60ERaw[Co3At4Ch12]
+57840.1 -7.06071 0.00 !Mu2ChY61ERaw[Co3At4Ch13]
+57317.8 -6.997 0.00 !Mu2ChY62ERaw[Co3At4Ch14]
+57802.6 -7.05565 0.00 !Mu2ChY63ERaw[Co3At4Ch15]
+58131.4 -7.09521 0.00 !Mu2ChY64ERaw[Co3At4Ch16]
+59303.9 -7.23935 0.00 !Mu2ChY65ERaw[Co4At1Ch1]
+59484.5 -7.25972 0.00 !Mu2ChY66ERaw[Co4At1Ch2]
+59445.9 -7.25617 0.00 !Mu2ChY67ERaw[Co4At1Ch3]
+60428.1 -7.3764 0.00 !Mu2ChY68ERaw[Co4At1Ch4]
+59533.4 -7.26741 0.00 !Mu2ChY69ERaw[Co4At1Ch5]
+59813.7 -7.30118 0.00 !Mu2ChY70ERaw[Co4At1Ch6]
+59589.8 -7.27421 0.00 !Mu2ChY71ERaw[Co4At1Ch7]
+60026.1 -7.32661 0.00 !Mu2ChY72ERaw[Co4At1Ch8]
+59977.4 -7.32078 0.00 !Mu2ChY73ERaw[Co4At1Ch9]
+59521.9 -7.2662 0.00 !Mu2ChY74ERaw[Co4At1Ch10]
+59939.4 -7.31706 0.00 !Mu2ChY75ERaw[Co4At1Ch11]
+60163.9 -7.3442 0.00 !Mu2ChY76ERaw[Co4At1Ch12]
+59267.2 -7.234 0.00 !Mu2ChY77ERaw[Co4At1Ch13]
+59936.3 -7.31598 0.00 !Mu2ChY78ERaw[Co4At1Ch14]
+59355.3 -7.24587 0.00 !Mu2ChY79ERaw[Co4At1Ch15]
+60125 -7.33861 0.00 !Mu2ChY80ERaw[Co4At1Ch16]
+60407 -7.37292 0.00 !Mu2ChY81ERaw[Co4At2Ch1]
+61099.7 -7.45806 0.00 !Mu2ChY82ERaw[Co4At2Ch2]
+60584.6 -7.39543 0.00 !Mu2ChY83ERaw[Co4At2Ch3]
+61268.3 -7.47919 0.00 !Mu2ChY84ERaw[Co4At2Ch4]
+61270.9 -7.47878 0.00 !Mu2ChY85ERaw[Co4At2Ch5]
+60825.4 -7.42527 0.00 !Mu2ChY86ERaw[Co4At2Ch6]
+60909.5 -7.43587 0.00 !Mu2ChY87ERaw[Co4At2Ch7]
+61284.8 -7.48143 0.00 !Mu2ChY88ERaw[Co4At2Ch8]
+60871 -7.43052 0.00 !Mu2ChY89ERaw[Co4At2Ch9]
+60750.5 -7.4148 0.00 !Mu2ChY90ERaw[Co4At2Ch10]
+61380.4 -7.49252 0.00 !Mu2ChY91ERaw[Co4At2Ch11]
+60505.2 -7.38436 0.00 !Mu2ChY92ERaw[Co4At2Ch12]
+61101.4 -7.45903 0.00 !Mu2ChY93ERaw[Co4At2Ch13]
+60601.1 -7.39817 0.00 !Mu2ChY94ERaw[Co4At2Ch14]
+61046 -7.45199 0.00 !Mu2ChY95ERaw[Co4At2Ch15]
+61347.1 -7.48772 0.00 !Mu2ChY96ERaw[Co4At2Ch16]
+56857.3 -6.94084 0.00 !Mu2ChY97ERaw[Co4At3Ch1]
+55935.7 -6.82792 0.00 !Mu2ChY98ERaw[Co4At3Ch2]
+56194 -6.85949 0.00 !Mu2ChY99ERaw[Co4At3Ch3]
+56657 -6.91576 0.00 !Mu2ChY100ERaw[Co4At3Ch4]
+56404.6 -6.88522 0.00 !Mu2ChY101ERaw[Co4At3Ch5]
+56745.3 -6.9268 0.00 !Mu2ChY102ERaw[Co4At3Ch6]
+56028.9 -6.83896 0.00 !Mu2ChY103ERaw[Co4At3Ch7]
+57137.1 -6.97391 0.00 !Mu2ChY104ERaw[Co4At3Ch8]
+56028.9 -6.83942 0.00 !Mu2ChY105ERaw[Co4At3Ch9]
+56640.1 -6.91348 0.00 !Mu2ChY106ERaw[Co4At3Ch10]
+56575.8 -6.90625 0.00 !Mu2ChY107ERaw[Co4At3Ch11]
+57468.7 -7.01533 0.00 !Mu2ChY108ERaw[Co4At3Ch12]
+57034.2 -6.96217 0.00 !Mu2ChY109ERaw[Co4At3Ch13]
+56652.7 -6.91515 0.00 !Mu2ChY110ERaw[Co4At3Ch14]
+57017.9 -6.96034 0.00 !Mu2ChY111ERaw[Co4At3Ch15]
+56103.5 -6.8487 0.00 !Mu2ChY112ERaw[Co4At3Ch16]
+56392.3 -6.88327 0.00 !Mu2ChY113ERaw[Co4At4Ch1]
+57249.1 -6.98846 0.00 !Mu2ChY114ERaw[Co4At4Ch2]
+56498 -6.89623 0.00 !Mu2ChY115ERaw[Co4At4Ch3]
+56788.9 -6.93179 0.00 !Mu2ChY116ERaw[Co4At4Ch4]
+56423.6 -6.88761 0.00 !Mu2ChY117ERaw[Co4At4Ch5]
+56477.1 -6.89419 0.00 !Mu2ChY118ERaw[Co4At4Ch6]
+56830.3 -6.93708 0.00 !Mu2ChY119ERaw[Co4At4Ch7]
+56701.8 -6.92147 0.00 !Mu2ChY120ERaw[Co4At4Ch8]
+56240.7 -6.86503 0.00 !Mu2ChY121ERaw[Co4At4Ch9]
+57000.7 -6.95804 0.00 !Mu2ChY122ERaw[Co4At4Ch10]
+57374.9 -7.00373 0.00 !Mu2ChY123ERaw[Co4At4Ch11]
+ -10000 0.00 0.00 !Mu2ChY124ERaw[Co4At4Ch12]
+56133.6 -6.85234 0.00 !Mu2ChY125ERaw[Co4At4Ch13]
+56922.3 -6.94849 0.00 !Mu2ChY126ERaw[Co4At4Ch14]
+56365.8 -6.88053 0.00 !Mu2ChY127ERaw[Co4At4Ch15]
+56131.5 -6.85163 0.00 !Mu2ChY128ERaw[Co4At4Ch16]
+-62345.4 7.61044 0.00 !Mu3ChX1ERaw[Co1At1Ch1]
+-61863.4 7.5516 0.00 !Mu3ChX2ERaw[Co1At1Ch2]
+-62181.1 7.59039 0.00 !Mu3ChX3ERaw[Co1At1Ch3]
+-62279.6 7.60252 0.00 !Mu3ChX4ERaw[Co1At1Ch4]
+-61955.2 7.56278 0.00 !Mu3ChX5ERaw[Co1At1Ch5]
+-61871 7.55217 0.00 !Mu3ChX6ERaw[Co1At1Ch6]
+-62077.7 7.5777 0.00 !Mu3ChX7ERaw[Co1At1Ch7]
+-61628.4 7.52262 0.00 !Mu3ChX8ERaw[Co1At1Ch8]
+-61761.6 7.53889 0.00 !Mu3ChX9ERaw[Co1At1Ch9]
+-61847.3 7.54932 0.00 !Mu3ChX10ERaw[Co1At1Ch10]
+-61774 7.54014 0.00 !Mu3ChX11ERaw[Co1At1Ch11]
+-62931.9 7.68219 0.00 !Mu3ChX12ERaw[Co1At1Ch12]
+-61617.9 7.52151 0.00 !Mu3ChX13ERaw[Co1At1Ch13]
+-61820.9 7.54591 0.00 !Mu3ChX14ERaw[Co1At1Ch14]
+-61673.8 7.52851 0.00 !Mu3ChX15ERaw[Co1At1Ch15]
+-62593.1 7.64028 0.00 !Mu3ChX16ERaw[Co1At1Ch16]
+-63651.3 7.76933 0.00 !Mu3ChX17ERaw[Co1At2Ch1]
+-63039.9 7.69489 0.00 !Mu3ChX18ERaw[Co1At2Ch2]
+-62939.5 7.68245 0.00 !Mu3ChX19ERaw[Co1At2Ch3]
+-62774.3 7.66224 0.00 !Mu3ChX20ERaw[Co1At2Ch4]
+-62597 7.64034 0.00 !Mu3ChX21ERaw[Co1At2Ch5]
+-63119.1 7.70462 0.00 !Mu3ChX22ERaw[Co1At2Ch6]
+-64027 7.81704 0.00 !Mu3ChX23ERaw[Co1At2Ch7]
+-63768.3 7.78409 0.00 !Mu3ChX24ERaw[Co1At2Ch8]
+-62735.8 7.65836 0.00 !Mu3ChX25ERaw[Co1At2Ch9]
+-63493.6 7.75031 0.00 !Mu3ChX26ERaw[Co1At2Ch10]
+-63550.9 7.75727 0.00 !Mu3ChX27ERaw[Co1At2Ch11]
+-63333.6 7.73047 0.00 !Mu3ChX28ERaw[Co1At2Ch12]
+-63471.9 7.74798 0.00 !Mu3ChX29ERaw[Co1At2Ch13]
+-63533.6 7.75574 0.00 !Mu3ChX30ERaw[Co1At2Ch14]
+-64515.6 7.87525 0.00 !Mu3ChX31ERaw[Co1At2Ch15]
+-63666.9 7.77214 0.00 !Mu3ChX32ERaw[Co1At2Ch16]
+-59249.2 7.23326 0.00 !Mu3ChX33ERaw[Co1At3Ch1]
+-59097.2 7.21503 0.00 !Mu3ChX34ERaw[Co1At3Ch2]
+-58039.8 7.08575 0.00 !Mu3ChX35ERaw[Co1At3Ch3]
+-58201.5 7.10525 0.00 !Mu3ChX36ERaw[Co1At3Ch4]
+-58688.1 7.16476 0.00 !Mu3ChX37ERaw[Co1At3Ch5]
+-58919 7.19282 0.00 !Mu3ChX38ERaw[Co1At3Ch6]
+-59207.7 7.22788 0.00 !Mu3ChX39ERaw[Co1At3Ch7]
+-58617.7 7.15599 0.00 !Mu3ChX40ERaw[Co1At3Ch8]
+-59166.7 7.22284 0.00 !Mu3ChX41ERaw[Co1At3Ch9]
+-58841.9 7.18358 0.00 !Mu3ChX42ERaw[Co1At3Ch10]
+-58957.7 7.19746 0.00 !Mu3ChX43ERaw[Co1At3Ch11]
+ -10000 0.00 0.00 !Mu3ChX44ERaw[Co1At3Ch12]
+-59203.6 7.22747 0.00 !Mu3ChX45ERaw[Co1At3Ch13]
+-59321.9 7.24122 0.00 !Mu3ChX46ERaw[Co1At3Ch14]
+-58738.5 7.17009 0.00 !Mu3ChX47ERaw[Co1At3Ch15]
+-59135.2 7.21821 0.00 !Mu3ChX48ERaw[Co1At3Ch16]
+-57337 6.99885 0.00 !Mu3ChX49ERaw[Co1At4Ch1]
+-57105.3 6.97094 0.00 !Mu3ChX50ERaw[Co1At4Ch2]
+-56852.6 6.93986 0.00 !Mu3ChX51ERaw[Co1At4Ch3]
+-57123.9 6.97353 0.00 !Mu3ChX52ERaw[Co1At4Ch4]
+-56902.8 6.94725 0.00 !Mu3ChX53ERaw[Co1At4Ch5]
+-57347.6 7.00123 0.00 !Mu3ChX54ERaw[Co1At4Ch6]
+-56664.1 6.91725 0.00 !Mu3ChX55ERaw[Co1At4Ch7]
+-57226.6 6.98685 0.00 !Mu3ChX56ERaw[Co1At4Ch8]
+-57580.7 7.0296 0.00 !Mu3ChX57ERaw[Co1At4Ch9]
+-56509.8 6.89853 0.00 !Mu3ChX58ERaw[Co1At4Ch10]
+-57438.6 7.01266 0.00 !Mu3ChX59ERaw[Co1At4Ch11]
+-57046.8 6.96439 0.00 !Mu3ChX60ERaw[Co1At4Ch12]
+-56283.2 6.87125 0.00 !Mu3ChX61ERaw[Co1At4Ch13]
+-56778.8 6.93172 0.00 !Mu3ChX62ERaw[Co1At4Ch14]
+-56634.5 6.91492 0.00 !Mu3ChX63ERaw[Co1At4Ch15]
+-56434.4 6.89024 0.00 !Mu3ChX64ERaw[Co1At4Ch16]
+-64201 7.83647 0.00 !Mu3ChX65ERaw[Co2At1Ch1]
+-63818.9 7.79071 0.00 !Mu3ChX66ERaw[Co2At1Ch2]
+-63593.3 7.7629 0.00 !Mu3ChX67ERaw[Co2At1Ch3]
+-63735 7.77947 0.00 !Mu3ChX68ERaw[Co2At1Ch4]
+-63661.1 7.77033 0.00 !Mu3ChX69ERaw[Co2At1Ch5]
+-63245 7.71983 0.00 !Mu3ChX70ERaw[Co2At1Ch6]
+-64347.8 7.85448 0.00 !Mu3ChX71ERaw[Co2At1Ch7]
+-62471 7.62583 0.00 !Mu3ChX72ERaw[Co2At1Ch8]
+-62665.5 7.64955 0.00 !Mu3ChX73ERaw[Co2At1Ch9]
+-62978.4 7.68758 0.00 !Mu3ChX74ERaw[Co2At1Ch10]
+-63119.5 7.70452 0.00 !Mu3ChX75ERaw[Co2At1Ch11]
+-63390.2 7.73771 0.00 !Mu3ChX76ERaw[Co2At1Ch12]
+-64130.6 7.828 0.00 !Mu3ChX77ERaw[Co2At1Ch13]
+-62469.3 7.62517 0.00 !Mu3ChX78ERaw[Co2At1Ch14]
+-62611.7 7.6423 0.00 !Mu3ChX79ERaw[Co2At1Ch15]
+-62988.1 7.68855 0.00 !Mu3ChX80ERaw[Co2At1Ch16]
+-62477.2 7.6262 0.00 !Mu3ChX81ERaw[Co2At2Ch1]
+-62777.5 7.66314 0.00 !Mu3ChX82ERaw[Co2At2Ch2]
+-62705.2 7.65399 0.00 !Mu3ChX83ERaw[Co2At2Ch3]
+-62645.6 7.64655 0.00 !Mu3ChX84ERaw[Co2At2Ch4]
+-62038.5 7.57247 0.00 !Mu3ChX85ERaw[Co2At2Ch5]
+-62461.5 7.62416 0.00 !Mu3ChX86ERaw[Co2At2Ch6]
+-62435.9 7.62103 0.00 !Mu3ChX87ERaw[Co2At2Ch7]
+-62138.4 7.58521 0.00 !Mu3ChX88ERaw[Co2At2Ch8]
+-62294.2 7.60396 0.00 !Mu3ChX89ERaw[Co2At2Ch9]
+-62708.8 7.65519 0.00 !Mu3ChX90ERaw[Co2At2Ch10]
+-62352.2 7.611 0.00 !Mu3ChX91ERaw[Co2At2Ch11]
+-62009.6 7.56957 0.00 !Mu3ChX92ERaw[Co2At2Ch12]
+-62807.4 7.66718 0.00 !Mu3ChX93ERaw[Co2At2Ch13]
+-62550.7 7.63529 0.00 !Mu3ChX94ERaw[Co2At2Ch14]
+-62164.1 7.5882 0.00 !Mu3ChX95ERaw[Co2At2Ch15]
+-62407.3 7.61748 0.00 !Mu3ChX96ERaw[Co2At2Ch16]
+-56124.7 6.85011 0.00 !Mu3ChX97ERaw[Co2At3Ch1]
+-55925 6.8266 0.00 !Mu3ChX98ERaw[Co2At3Ch2]
+-55174.1 6.73479 0.00 !Mu3ChX99ERaw[Co2At3Ch3]
+-55743 6.8047 0.00 !Mu3ChX100ERaw[Co2At3Ch4]
+-56104.6 6.84875 0.00 !Mu3ChX101ERaw[Co2At3Ch5]
+-55922.7 6.82573 0.00 !Mu3ChX102ERaw[Co2At3Ch6]
+-55941 6.82888 0.00 !Mu3ChX103ERaw[Co2At3Ch7]
+-55261.5 6.7447 0.00 !Mu3ChX104ERaw[Co2At3Ch8]
+-55547.1 6.7799 0.00 !Mu3ChX105ERaw[Co2At3Ch9]
+-55994.8 6.83508 0.00 !Mu3ChX106ERaw[Co2At3Ch10]
+-55878.2 6.82019 0.00 !Mu3ChX107ERaw[Co2At3Ch11]
+-55740.8 6.80375 0.00 !Mu3ChX108ERaw[Co2At3Ch12]
+-56899.4 6.94551 0.00 !Mu3ChX109ERaw[Co2At3Ch13]
+-56276.4 6.86962 0.00 !Mu3ChX110ERaw[Co2At3Ch14]
+-55830.4 6.81436 0.00 !Mu3ChX111ERaw[Co2At3Ch15]
+-55749.2 6.80431 0.00 !Mu3ChX112ERaw[Co2At3Ch16]
+-57546.8 7.02514 0.00 !Mu3ChX113ERaw[Co2At4Ch1]
+-56955.5 6.95237 0.00 !Mu3ChX114ERaw[Co2At4Ch2]
+-57536.3 7.02336 0.00 !Mu3ChX115ERaw[Co2At4Ch3]
+-56899.8 6.94606 0.00 !Mu3ChX116ERaw[Co2At4Ch4]
+-58093.6 7.09129 0.00 !Mu3ChX117ERaw[Co2At4Ch5]
+-57196.5 6.98229 0.00 !Mu3ChX118ERaw[Co2At4Ch6]
+-57462.1 7.01442 0.00 !Mu3ChX119ERaw[Co2At4Ch7]
+-56370.1 6.88115 0.00 !Mu3ChX120ERaw[Co2At4Ch8]
+-56787.2 6.93186 0.00 !Mu3ChX121ERaw[Co2At4Ch9]
+-57910 7.06899 0.00 !Mu3ChX122ERaw[Co2At4Ch10]
+-57473.5 7.01557 0.00 !Mu3ChX123ERaw[Co2At4Ch11]
+-57059.2 6.96518 0.00 !Mu3ChX124ERaw[Co2At4Ch12]
+-57670.8 7.03967 0.00 !Mu3ChX125ERaw[Co2At4Ch13]
+-56738.4 6.92521 0.00 !Mu3ChX126ERaw[Co2At4Ch14]
+-57861.1 7.06231 0.00 !Mu3ChX127ERaw[Co2At4Ch15]
+-56557.4 6.90355 0.00 !Mu3ChX128ERaw[Co2At4Ch16]
+60032.9 -7.32771 0.00 !Mu3ChY1ERaw[Co3At1Ch1]
+58880.8 -7.18699 0.00 !Mu3ChY2ERaw[Co3At1Ch2]
+60023.1 -7.32654 0.00 !Mu3ChY3ERaw[Co3At1Ch3]
+59904.8 -7.31219 0.00 !Mu3ChY4ERaw[Co3At1Ch4]
+59747.3 -7.29256 0.00 !Mu3ChY5ERaw[Co3At1Ch5]
+60044.8 -7.3285 0.00 !Mu3ChY6ERaw[Co3At1Ch6]
+59674.6 -7.28351 0.00 !Mu3ChY7ERaw[Co3At1Ch7]
+60089 -7.33432 0.00 !Mu3ChY8ERaw[Co3At1Ch8]
+60390.2 -7.37087 0.00 !Mu3ChY9ERaw[Co3At1Ch9]
+60324.5 -7.36226 0.00 !Mu3ChY10ERaw[Co3At1Ch10]
+60063 -7.33084 0.00 !Mu3ChY11ERaw[Co3At1Ch11]
+59746 -7.29223 0.00 !Mu3ChY12ERaw[Co3At1Ch12]
+59628.7 -7.27802 0.00 !Mu3ChY13ERaw[Co3At1Ch13]
+59605.6 -7.27604 0.00 !Mu3ChY14ERaw[Co3At1Ch14]
+60513.4 -7.38637 0.00 !Mu3ChY15ERaw[Co3At1Ch15]
+59705.8 -7.28768 0.00 !Mu3ChY16ERaw[Co3At1Ch16]
+62899.2 -7.67713 0.00 !Mu3ChY17ERaw[Co3At2Ch1]
+63067.2 -7.69763 0.00 !Mu3ChY18ERaw[Co3At2Ch2]
+62164.9 -7.58739 0.00 !Mu3ChY19ERaw[Co3At2Ch3]
+62644.9 -7.6462 0.00 !Mu3ChY20ERaw[Co3At2Ch4]
+63155.6 -7.70868 0.00 !Mu3ChY21ERaw[Co3At2Ch5]
+63476.7 -7.7476 0.00 !Mu3ChY22ERaw[Co3At2Ch6]
+62909.3 -7.67804 0.00 !Mu3ChY23ERaw[Co3At2Ch7]
+62922.8 -7.68012 0.00 !Mu3ChY24ERaw[Co3At2Ch8]
+63461.1 -7.7455 0.00 !Mu3ChY25ERaw[Co3At2Ch9]
+63380.9 -7.73638 0.00 !Mu3ChY26ERaw[Co3At2Ch10]
+62508.5 -7.62917 0.00 !Mu3ChY27ERaw[Co3At2Ch11]
+63362.4 -7.73365 0.00 !Mu3ChY28ERaw[Co3At2Ch12]
+62458.2 -7.62392 0.00 !Mu3ChY29ERaw[Co3At2Ch13]
+62885.8 -7.67565 0.00 !Mu3ChY30ERaw[Co3At2Ch14]
+63029.7 -7.69335 0.00 !Mu3ChY31ERaw[Co3At2Ch15]
+62923.5 -7.68066 0.00 !Mu3ChY32ERaw[Co3At2Ch16]
+56074.2 -6.84465 0.00 !Mu3ChY33ERaw[Co3At3Ch1]
+56150.2 -6.85354 0.00 !Mu3ChY34ERaw[Co3At3Ch2]
+55789.4 -6.80959 0.00 !Mu3ChY35ERaw[Co3At3Ch3]
+55638.8 -6.79097 0.00 !Mu3ChY36ERaw[Co3At3Ch4]
+55690.3 -6.7972 0.00 !Mu3ChY37ERaw[Co3At3Ch5]
+56172.7 -6.85634 0.00 !Mu3ChY38ERaw[Co3At3Ch6]
+55888.9 -6.82181 0.00 !Mu3ChY39ERaw[Co3At3Ch7]
+55509 -6.77536 0.00 !Mu3ChY40ERaw[Co3At3Ch8]
+55311.6 -6.7506 0.00 !Mu3ChY41ERaw[Co3At3Ch9]
+56115.3 -6.84918 0.00 !Mu3ChY42ERaw[Co3At3Ch10]
+55915.5 -6.8248 0.00 !Mu3ChY43ERaw[Co3At3Ch11]
+55329 -6.75329 0.00 !Mu3ChY44ERaw[Co3At3Ch12]
+55669.5 -6.79444 0.00 !Mu3ChY45ERaw[Co3At3Ch13]
+55588.7 -6.78496 0.00 !Mu3ChY46ERaw[Co3At3Ch14]
+55898 -6.8231 0.00 !Mu3ChY47ERaw[Co3At3Ch15]
+55796.2 -6.81045 0.00 !Mu3ChY48ERaw[Co3At3Ch16]
+56642.2 -6.91436 0.00 !Mu3ChY49ERaw[Co3At4Ch1]
+56991.3 -6.95514 0.00 !Mu3ChY50ERaw[Co3At4Ch2]
+57075.4 -6.96596 0.00 !Mu3ChY51ERaw[Co3At4Ch3]
+56854.2 -6.93952 0.00 !Mu3ChY52ERaw[Co3At4Ch4]
+56407.5 -6.88481 0.00 !Mu3ChY53ERaw[Co3At4Ch5]
+56933.4 -6.94974 0.00 !Mu3ChY54ERaw[Co3At4Ch6]
+56603.2 -6.9089 0.00 !Mu3ChY55ERaw[Co3At4Ch7]
+56984.7 -6.95558 0.00 !Mu3ChY56ERaw[Co3At4Ch8]
+56981.1 -6.9557 0.00 !Mu3ChY57ERaw[Co3At4Ch9]
+56514.6 -6.89801 0.00 !Mu3ChY58ERaw[Co3At4Ch10]
+57449.1 -7.01219 0.00 !Mu3ChY59ERaw[Co3At4Ch11]
+56938.2 -6.94962 0.00 !Mu3ChY60ERaw[Co3At4Ch12]
+57895.4 -7.0662 0.00 !Mu3ChY61ERaw[Co3At4Ch13]
+57033.8 -6.96212 0.00 !Mu3ChY62ERaw[Co3At4Ch14]
+56704 -6.92109 0.00 !Mu3ChY63ERaw[Co3At4Ch15]
+57390.9 -7.00491 0.00 !Mu3ChY64ERaw[Co3At4Ch16]
+59386.5 -7.24871 0.00 !Mu3ChY65ERaw[Co4At1Ch1]
+60032 -7.32664 0.00 !Mu3ChY66ERaw[Co4At1Ch2]
+59461.1 -7.25777 0.00 !Mu3ChY67ERaw[Co4At1Ch3]
+59294.3 -7.23743 0.00 !Mu3ChY68ERaw[Co4At1Ch4]
+59363.3 -7.24565 0.00 !Mu3ChY69ERaw[Co4At1Ch5]
+58668.9 -7.16081 0.00 !Mu3ChY70ERaw[Co4At1Ch6]
+59178.2 -7.22299 0.00 !Mu3ChY71ERaw[Co4At1Ch7]
+59878.5 -7.30862 0.00 !Mu3ChY72ERaw[Co4At1Ch8]
+60080.6 -7.33311 0.00 !Mu3ChY73ERaw[Co4At1Ch9]
+59525.9 -7.26506 0.00 !Mu3ChY74ERaw[Co4At1Ch10]
+59403.5 -7.25068 0.00 !Mu3ChY75ERaw[Co4At1Ch11]
+59501.4 -7.26252 0.00 !Mu3ChY76ERaw[Co4At1Ch12]
+59504.9 -7.26298 0.00 !Mu3ChY77ERaw[Co4At1Ch13]
+59322 -7.24079 0.00 !Mu3ChY78ERaw[Co4At1Ch14]
+59114.2 -7.21484 0.00 !Mu3ChY79ERaw[Co4At1Ch15]
+59934.3 -7.31545 0.00 !Mu3ChY80ERaw[Co4At1Ch16]
+62786.3 -7.66418 0.00 !Mu3ChY81ERaw[Co4At2Ch1]
+62688.2 -7.65225 0.00 !Mu3ChY82ERaw[Co4At2Ch2]
+62484.3 -7.62731 0.00 !Mu3ChY83ERaw[Co4At2Ch3]
+62111.7 -7.58204 0.00 !Mu3ChY84ERaw[Co4At2Ch4]
+62018.9 -7.57048 0.00 !Mu3ChY85ERaw[Co4At2Ch5]
+62722.4 -7.65547 0.00 !Mu3ChY86ERaw[Co4At2Ch6]
+62211.6 -7.59379 0.00 !Mu3ChY87ERaw[Co4At2Ch7]
+62970.1 -7.68683 0.00 !Mu3ChY88ERaw[Co4At2Ch8]
+62605.8 -7.64201 0.00 !Mu3ChY89ERaw[Co4At2Ch9]
+62471.1 -7.62554 0.00 !Mu3ChY90ERaw[Co4At2Ch10]
+61773.9 -7.54013 0.00 !Mu3ChY91ERaw[Co4At2Ch11]
+61966 -7.56438 0.00 !Mu3ChY92ERaw[Co4At2Ch12]
+61829.7 -7.54636 0.00 !Mu3ChY93ERaw[Co4At2Ch13]
+62107 -7.58056 0.00 !Mu3ChY94ERaw[Co4At2Ch14]
+61946.8 -7.56126 0.00 !Mu3ChY95ERaw[Co4At2Ch15]
+61761.8 -7.53961 0.00 !Mu3ChY96ERaw[Co4At2Ch16]
+56678.2 -6.9178 0.00 !Mu3ChY97ERaw[Co4At3Ch1]
+56796.1 -6.93199 0.00 !Mu3ChY98ERaw[Co4At3Ch2]
+56253.9 -6.86602 0.00 !Mu3ChY99ERaw[Co4At3Ch3]
+55891.8 -6.82192 0.00 !Mu3ChY100ERaw[Co4At3Ch4]
+56180.1 -6.85704 0.00 !Mu3ChY101ERaw[Co4At3Ch5]
+56220.5 -6.8622 0.00 !Mu3ChY102ERaw[Co4At3Ch6]
+55882 -6.82088 0.00 !Mu3ChY103ERaw[Co4At3Ch7]
+55981.1 -6.83279 0.00 !Mu3ChY104ERaw[Co4At3Ch8]
+55754.9 -6.80516 0.00 !Mu3ChY105ERaw[Co4At3Ch9]
+56267.3 -6.86773 0.00 !Mu3ChY106ERaw[Co4At3Ch10]
+56429.7 -6.88763 0.00 !Mu3ChY107ERaw[Co4At3Ch11]
+56237.2 -6.86422 0.00 !Mu3ChY108ERaw[Co4At3Ch12]
+55689.2 -6.79724 0.00 !Mu3ChY109ERaw[Co4At3Ch13]
+55787.5 -6.80907 0.00 !Mu3ChY110ERaw[Co4At3Ch14]
+56624.4 -6.91129 0.00 !Mu3ChY111ERaw[Co4At3Ch15]
+56567.3 -6.90457 0.00 !Mu3ChY112ERaw[Co4At3Ch16]
+57306.3 -6.99514 0.00 !Mu3ChY113ERaw[Co4At4Ch1]
+57048.3 -6.96426 0.00 !Mu3ChY114ERaw[Co4At4Ch2]
+56976.5 -6.95364 0.00 !Mu3ChY115ERaw[Co4At4Ch3]
+56848.4 -6.93798 0.00 !Mu3ChY116ERaw[Co4At4Ch4]
+57581.8 -7.02703 0.00 !Mu3ChY117ERaw[Co4At4Ch5]
+57150.3 -6.97454 0.00 !Mu3ChY118ERaw[Co4At4Ch6]
+56708.7 -6.92074 0.00 !Mu3ChY119ERaw[Co4At4Ch7]
+57781 -7.05185 0.00 !Mu3ChY120ERaw[Co4At4Ch8]
+57302.9 -6.99462 0.00 !Mu3ChY121ERaw[Co4At4Ch9]
+56871.4 -6.94134 0.00 !Mu3ChY122ERaw[Co4At4Ch10]
+57274.9 -6.99018 0.00 !Mu3ChY123ERaw[Co4At4Ch11]
+56921.4 -6.94684 0.00 !Mu3ChY124ERaw[Co4At4Ch12]
+57595.9 -7.03175 0.00 !Mu3ChY125ERaw[Co4At4Ch13]
+56918.5 -6.94868 0.00 !Mu3ChY126ERaw[Co4At4Ch14]
+57363.7 -7.00332 0.00 !Mu3ChY127ERaw[Co4At4Ch15]
+57366.3 -7.00102 0.00 !Mu3ChY128ERaw[Co4At4Ch16]
diff --git a/Projects/MUSETT/change_coinc_config.sh b/Projects/MUSETT/change_coinc_config.sh
new file mode 100755
index 0000000000000000000000000000000000000000..04adca152c3cf1e00126fc6dfe846e468d60e4ed
--- /dev/null
+++ b/Projects/MUSETT/change_coinc_config.sh
@@ -0,0 +1,46 @@
+#!/bin/bash
+
+# Define the path to the configuration file
+CONFIG_FILE="configs/merge_config.txt"
+
+# Define the Python file to store the results
+PYTHON_FILE="store_results3.py"
+
+# Initialize the Python file
+echo "results = []" > $PYTHON_FILE
+
+# Define an array of values for coinc_time
+COINC_TIMES=(1 2 5 10 20 50 100 200 500 1000 2000 5000)
+
+# Loop over each value in the COINC_TIMES array
+for coinc_time in "${COINC_TIMES[@]}"; do
+    # Backup the original configuration file (optional)
+    cp $CONFIG_FILE "${CONFIG_FILE}.bak"
+
+    # Use 'sed' to replace the coinc_time value in the configuration file
+    sed -i '' "s/coinc_time=.*/coinc_time= $coinc_time/" $CONFIG_FILE
+
+    # Run the routine and capture the output
+    OUTPUT=$(./routine.sh)
+
+    # Extract the required numbers using awk
+    measured=$(echo "$OUTPUT" | awk '/RDM_CNT/{print $3}')  # Assuming the correct format is `RDM_CNT = value`
+    expected=$(echo "$OUTPUT" | awk '/calcul/{print $3}')   # Assuming the correct format is `calcul  = value`
+
+    # Append the results to the Python file
+    echo "results.append({'coinc_time': $coinc_time, 'measured': $measured, 'expected': $expected})" >> $PYTHON_FILE
+
+    # Restore the original configuration file
+    mv "${CONFIG_FILE}.bak" $CONFIG_FILE
+done
+
+# Move the results Python file to the specified directory (replace '/desired/path/' with your actual path)
+PATH_BENCH_COINC=/Users/lh270370/Software/nptool/Outputs/Simulation/Isolde/bench_coinc/
+mv $PYTHON_FILE $PATH_BENCH_COINC$PYTHON_FILE
+
+# Assuming you have a Python script named `plot_results.py` in the same directory as $PYTHON_FILE
+# that can plot these results
+#cd PATH_BENCH_COINC
+#python plot_results3.py
+
+echo "Script execution completed."
diff --git a/Projects/MUSETT/change_configuration.py b/Projects/MUSETT/change_configuration.py
new file mode 100755
index 0000000000000000000000000000000000000000..2615dffee8da3c4ec71790a94ac5e113aa300b35
--- /dev/null
+++ b/Projects/MUSETT/change_configuration.py
@@ -0,0 +1,137 @@
+#!/opt/homebrew/opt/python@3.11/libexec/bin/python
+import os
+import subprocess
+import numpy as np
+
+
+def format_value(value):
+    """ Format the value by replacing '-' with 'm' and '.' with '_' """
+    return str(value).replace('-', 'm').replace('.', '_')
+
+def modify_files(params, outputFileName, outputDir, beamFile,macroFile):
+    # Default parameters
+    defaults = {'thetaTarget': 0,'offsetTargetX': 0,'offsetTargetY' :0,
+        'offsetBeamX' : 0, 'offsetBeamY' : 0, 'sigmaBeamX': 0, 'sigmaBeamY': 0,
+    'holderShift' : 0, 'energyBeam' : 0 }
+
+    # Update params with any defaults that aren't specified
+    for key, value in defaults.items():
+        params.setdefault(key, value)
+
+    # Define file paths
+    musett_file = "/Users/lh270370/Software/nptool/NPSimulation/Detectors/MUSETT/MUSETT.cc"
+    beam_file = "./Beam/" + beamFile
+    routine_file = "./routine.sh"
+
+    # Function to preserve indentation
+    def replace_line(line, new_content):
+        leading_spaces = len(line) - len(line.strip())
+        return ' ' * leading_spaces + new_content + '\n'
+
+    # Read and modify MUSETT.cc
+    with open(musett_file, 'r') as file:
+        lines = file.readlines()
+    with open(musett_file, 'w') as file:
+        for line in lines:
+            if "double rotationAngle =" in line:
+                new_line = replace_line(line, f"double rotationAngle = {params['thetaTarget']:.8f} * deg;")
+                file.write(new_line[1:])
+            elif "double offsetTargetX =" in line:
+                new_line = replace_line(line, f"double offsetTargetX = {params['offsetTargetX']:.8f} * mm;")
+                file.write(new_line[1:])
+            elif "double offsetTargetY =" in line:
+                new_line = replace_line(line, f"double offsetTargetY = {params['offsetTargetY']:.8f} * mm;")
+                file.write(new_line[1:])
+            elif "double holder_shift =" in line:
+                new_line = replace_line(line, f"double holder_shift = {params['holderShift']:.8f} * mm;")
+                file.write(new_line[1:])
+            else:
+                file.write(line)
+
+    # Read and modify Ra222.beam
+    with open(beam_file, 'r') as file:
+        lines = file.readlines()
+    with open(beam_file, 'w') as file:
+        for line in lines:
+            if "x0=" in line:
+                new_line = replace_line(line, f"x0= {params['offsetBeamX']:.1f}")
+                file.write(new_line[1:])
+            elif "y0=" in line:
+                new_line = replace_line(line, f"y0= {params['offsetBeamY']:.1f}")
+                file.write(new_line[1:])
+            elif "sigmaX =" in line:
+                new_line = replace_line(line, f"sigmaX = {params['sigmaBeamX']:.2f}")
+                file.write(new_line[1:])
+            elif "sigmaY =" in line:
+                new_line = replace_line(line, f"sigmaY = {params['sigmaBeamY']:.2f}")
+                file.write(new_line[1:])
+            elif "EnergyLow" in line:
+                new_line = replace_line(line, f"EnergyLow = {(params['energyBeam']/1000):.4f}")
+                file.write(new_line[1:])
+            elif "EnergyHigh" in line:
+                new_line = replace_line(line, f"EnergyHigh = {(params['energyBeam']/1000):.4f}")
+                file.write(new_line[1:])
+            else :
+                file.write(line)
+
+    # Read and modify routine.sh
+    with open(routine_file, 'r') as file:
+        lines = file.readlines()
+    with open(routine_file, 'w') as file:
+        for line in lines:
+            if 'SIM_FILE=' in line:
+                parts = []
+                for param, value in params.items():
+                    if value != defaults[param] and param == "energyBeam":
+                        format_val = format_value(value)
+                        parts.append(f"{param}{format_val}")
+                new_sim_file = outputFileName + '__'
+                for x in parts :
+                    new_sim_file+=x
+                new_line = replace_line(line, f'SIM_FILE="{new_sim_file}"')
+                file.write(new_line[1:])
+            elif 'DIR=' in line :
+                new_line = replace_line(line, 'DIR="'+outputDir + '"')
+                file.write(new_line[1:])
+            elif 'MACRO=' in line:
+                new_line = replace_line(line, 'MACRO="'+macroFile + '"')
+                file.write(new_line[1:])
+            elif 'EVENT_SOURCE=' in line :
+                new_line = replace_line(line, 'EVENT_SOURCE="'+beamFile + '"')
+                file.write(new_line[1:])
+            else:
+                file.write(line)
+
+outputFileName = "222Ra_ChangedBR_p3_1e6"
+outputDir = "BranchingRatio_test"
+beamFile = "Ra222.beam"
+macroFile = "run2e5"
+
+params = {'offsetTargetX': 0, 'offsetTargetY': 0,
+    'offsetBeamX' : 0,'offsetBeamY' : 0, 'thetaTarget' : 0,
+'sigmaBeamX' : 0, 'sigmaBeamY' : 0, 'energyBeam ': 0 }
+
+
+xBeam = -6
+yBeamImpact = 6
+yBeam = -150
+#energyBeam = 50 # in keV
+radius_target = 6
+sigmaBeam = 0.2
+holder_shift = 0.5
+theta = 0
+offsetX = - 3
+offsetY = yBeamImpact - (offsetX-xBeam)*np.tan(theta*np.pi/180)
+if(np.sqrt((offsetY-yBeamImpact)**2+(offsetX-xBeam)**2))>radius_target:
+    print("BEAM OUTSIDE TARGET ! ")
+
+for energyBeam in [30]:
+
+
+    params = {'offsetTargetX': offsetX, 'offsetTargetY': offsetY,
+            'offsetBeamX' : xBeam,'offsetBeamY' : yBeam, 'thetaTarget' : theta,
+            'sigmaBeamX' : sigmaBeam, 'sigmaBeamY' : sigmaBeam,
+             'holderShift' : holder_shift, 'energyBeam' : energyBeam }
+    #print(params)
+    modify_files(params, outputFileName,outputDir, beamFile, macroFile)
+    subprocess.run('./routine.sh', shell=True, executable="/bin/bash", check=True)
diff --git a/Projects/MUSETT/clean.py b/Projects/MUSETT/clean.py
new file mode 100755
index 0000000000000000000000000000000000000000..f2ec291ecddad041ac8cdf52a7e86b5738b95c46
--- /dev/null
+++ b/Projects/MUSETT/clean.py
@@ -0,0 +1,61 @@
+#!/opt/homebrew/opt/python@3.11/libexec/bin/python
+
+import argparse
+import os
+import subprocess
+import shutil
+import glob
+
+
+def parse_arguments():
+    parser = argparse.ArgumentParser()
+    parser.add_argument("-SF", dest="sim_file", help="Name of the simulation output file", default="default_file")
+    parser.add_argument("-SD", dest="sim_dir", help="Name of the simulation output directory", default="default_dir")
+    parser.add_argument("-AF", dest="ana_file", help="Name of the analysis output directory")
+    parser.add_argument("-AD", dest="ana_dir", help="Name of the analysis output file")
+    return parser.parse_args()
+
+
+def clean_sim(directory,file):
+    sim_path = "/Users/lh270370/Software/nptool/Outputs/Simulation/Isolde"
+    new_directory = sim_path + "/" + directory + "/" + file
+    #print("SIM : ", new_directory)
+    file_pattern = sim_path + "/" + directory + "/" + "*" + file + "*"
+
+    if not os.path.exists(new_directory):
+        os.makedirs(new_directory)
+
+    for file in glob.glob(file_pattern):
+        # Avoid trying to move the directory into itself
+        if not os.path.isdir(file):
+            shutil.move(file, os.path.join(new_directory, os.path.basename(file)))
+
+def clean_ana(directory,file):
+    sim_path = "/Users/lh270370/Software/nptool/Outputs/Analysis/Isolde"
+    new_directory = sim_path + "/" + directory + "/" + file
+    #print("ANA : ", new_directory)
+    file_pattern = sim_path + "/" + directory + "/" + "*" + file + "*"
+
+    if not os.path.exists(new_directory):
+        os.makedirs(new_directory)
+
+    for file in glob.glob(file_pattern):
+        # Avoid trying to move the directory into itself
+        if not os.path.isdir(file):
+            shutil.move(file, os.path.join(new_directory, os.path.basename(file)))
+
+
+
+
+
+
+
+def main():
+    args = parse_arguments()
+
+    #clean_sim(args.sim_dir,args.sim_file)
+    clean_ana(args.ana_dir,args.ana_file)
+
+
+if __name__ == "__main__":
+    main()
diff --git a/Projects/MUSETT/clean_dir.py b/Projects/MUSETT/clean_dir.py
new file mode 100755
index 0000000000000000000000000000000000000000..8ff5ab54b7b31a940464e0d88c7292d6586d087a
--- /dev/null
+++ b/Projects/MUSETT/clean_dir.py
@@ -0,0 +1,65 @@
+#!/opt/homebrew/opt/python@3.11/libexec/bin/python
+
+import argparse
+import os
+import subprocess
+import shutil
+import glob
+
+
+def parse_arguments():
+    parser = argparse.ArgumentParser()
+    parser.add_argument("-SF", dest="sim_file", help="Name of the simulation output file", default="default_file")
+    parser.add_argument("-SD", dest="sim_dir", help="Name of the simulation output directory", default="default_dir")
+    parser.add_argument("-AF", dest="ana_file", help="Name of the analysis output directory")
+    parser.add_argument("-AD", dest="ana_dir", help="Name of the analysis output file")
+    return parser.parse_args()
+
+
+def clean_sim(directory,file):
+    sim_path = "/Users/lh270370/Software/nptool/Outputs/Simulation/Isolde"
+    new_directory = sim_path + "/" + directory + "/" + file
+    #print("SIM : ", new_directory)
+    file_pattern = sim_path + "/" + directory + "/" + file + "/*" + file + "*.root"
+
+    #print(new_directory)
+    #if not os.path.exists(new_directory):
+    #    os.makedirs(new_directory)
+
+    #for file in glob.glob(file_pattern):
+        #print(file)
+        # Avoid trying to move the directory into itself
+    #    if not os.path.isdir(file):
+    #        shutil.move(file, os.path.join(new_directory, os.path.basename(file)))
+
+def clean_ana(directory,file):
+    #print(file)
+    ana_path = "/Users/lh270370/Software/nptool/Outputs/Analysis/Simu/Isolde"
+    directory = ana_path + "/" + directory + "/"
+    #print("ANA : ", new_directory)
+    file_pattern = directory +  "/*" + file + "*.root"
+
+    new_directory = directory + "/" + file
+
+
+    #print(new_directory)
+    if not os.path.exists(new_directory):
+        os.makedirs(new_directory)
+
+    for file in glob.glob(file_pattern):
+        #print(file)
+        # Avoid trying to move the directory into itself
+        if not os.path.isdir(file):
+            shutil.move(file, os.path.join(new_directory, os.path.basename(file)))
+
+
+
+def main():
+    args = parse_arguments()
+
+    clean_sim(args.sim_dir,args.sim_file)
+    clean_ana(args.ana_dir,args.ana_file)
+
+
+if __name__ == "__main__":
+    main()
diff --git a/Projects/MUSETT/configs/ConfigMUSETT.dat b/Projects/MUSETT/configs/ConfigMUSETT.dat
index 9df8f35a40d1eabf4decd2d468a667105c66b6d4..778484a8ecd9bff2fbe33b0d1556705ea8dacba1 100644
--- a/Projects/MUSETT/configs/ConfigMUSETT.dat
+++ b/Projects/MUSETT/configs/ConfigMUSETT.dat
@@ -1,7 +1,7 @@
 ConfigMUSETT
- TAKE_E_X= 1 
- TAKE_T_X= 1 
+ TAKE_E_X= 1
+ TAKE_T_X= 0
  MAX_STRIP_MULTIPLICITY= 100
- STRIP_ENERGY_MATCHING= 0.400 MeV
- DSSD_X_E_RAW_THRESHOLD= 8250
- DSSD_Y_E_RAW_THRESHOLD= 8100
+ STRIP_ENERGY_MATCHING= 0.1 MeV
+ DSSD_X_E_RAW_THRESHOLD= -50000
+ DSSD_Y_E_RAW_THRESHOLD= 50000
diff --git a/Projects/MUSETT/configs/ConfigMUSETT.dat 2 b/Projects/MUSETT/configs/ConfigMUSETT.dat 2
new file mode 100644
index 0000000000000000000000000000000000000000..cedd7734ea8a9510b78bf1ff692e0c157af619fc
--- /dev/null
+++ b/Projects/MUSETT/configs/ConfigMUSETT.dat 2	
@@ -0,0 +1,7 @@
+ConfigMUSETT
+ TAKE_E_X= 1
+ TAKE_T_X= 0
+ MAX_STRIP_MULTIPLICITY= 100
+ STRIP_ENERGY_MATCHING= 0.1 MeV
+ DSSD_X_E_RAW_THRESHOLD= -500
+ DSSD_Y_E_RAW_THRESHOLD= 50000
diff --git a/Projects/MUSETT/configs/ConfigMUSETT_simu.dat b/Projects/MUSETT/configs/ConfigMUSETT_simu.dat
new file mode 100644
index 0000000000000000000000000000000000000000..d1ccf0cb9c75760520961b8ef6bda085907d132a
--- /dev/null
+++ b/Projects/MUSETT/configs/ConfigMUSETT_simu.dat
@@ -0,0 +1,7 @@
+ConfigMUSETT
+ TAKE_E_X= 1
+ TAKE_T_X= 0
+ MAX_STRIP_MULTIPLICITY= 100
+ STRIP_ENERGY_MATCHING= 0.400 MeV
+ DSSD_X_E_RAW_THRESHOLD= 0
+ DSSD_Y_E_RAW_THRESHOLD= 0
diff --git a/Projects/MUSETT/configs/MergeConfig.txt b/Projects/MUSETT/configs/MergeConfig.txt
new file mode 100644
index 0000000000000000000000000000000000000000..023b3ed08f2b690307361f36831c4440d4255cb5
--- /dev/null
+++ b/Projects/MUSETT/configs/MergeConfig.txt
@@ -0,0 +1,4 @@
+t_max=1e+09
+coinc_time= 1000
+T_ADC=1000
+FileName= "/Users/lh270370/Software/nptool/Outputs/Simulation/Isolde/testSmall/blabla"
diff --git a/Projects/MUSETT/configs/SanityCheck_R308.dat b/Projects/MUSETT/configs/SanityCheck_R308.dat
new file mode 100644
index 0000000000000000000000000000000000000000..df2c3424e2e2aba61f322f092ad58ed8e6b11228
--- /dev/null
+++ b/Projects/MUSETT/configs/SanityCheck_R308.dat
@@ -0,0 +1,9 @@
+ConfigMUSETT
+ TAKE_E_X= 1
+ TAKE_T_X= 0
+ MAX_STRIP_MULTIPLICITY= 100
+ STRIP_ENERGY_MATCHING= 0.1 MeV
+ DSSD_X_E_RAW_THRESHOLD= -500
+ DSSD_Y_E_RAW_THRESHOLD= 50000
+ DSSD_X_E_THRESHOLD = 1
+ DSSD_Y_E_THRESHOLD = 1
diff --git a/Projects/MUSETT/configs/merge_config.txt b/Projects/MUSETT/configs/merge_config.txt
new file mode 100644
index 0000000000000000000000000000000000000000..9a7613658fe73da030e613853b0c0a620440be5e
--- /dev/null
+++ b/Projects/MUSETT/configs/merge_config.txt
@@ -0,0 +1,3 @@
+t_max=1e+09
+coinc_time= 100
+T_ADC=1000
diff --git a/Projects/MUSETT/merge_simu.py b/Projects/MUSETT/merge_simu.py
new file mode 100755
index 0000000000000000000000000000000000000000..beda7804f61d0ff12c6e6bf7de73c5b24316e210
--- /dev/null
+++ b/Projects/MUSETT/merge_simu.py
@@ -0,0 +1,105 @@
+#!/opt/homebrew/opt/python@3.11/libexec/bin/python
+
+import argparse
+import os
+import subprocess
+
+
+def parse_arguments():
+    parser = argparse.ArgumentParser(description='Modify IsoldeMerging2.hh based on merge_config.txt and command-line arguments.')
+    parser.add_argument("-F", "--sim_output_file", required=True, help="Name of the simulation output file")
+    parser.add_argument("-D", "--sim_output_dir", required=True, help="Name of the simulation output directory")
+    parser.add_argument("-R", "--change_RunToTreat", required=True, help="1 To change RunToTreat")
+    return parser.parse_args()
+
+def parse_config(config_path):
+    config_vars = {}
+    with open(config_path, 'r') as config_file:
+        for line in config_file:
+            if '=' in line:
+                var, value = line.split('=')
+                config_vars[var.strip()] = value.strip()
+    return config_vars
+
+def update_config(header_path, config_vars, sim_output_dir, sim_output_file):
+    temp_file_path = header_path + '.tmp'
+    t_max = config_vars['t_max']
+    T_ADC = config_vars['T_ADC']
+    coinc_time = config_vars['coinc_time']
+    with open(header_path, 'r') as merging_file, open(temp_file_path, 'w') as temp_file:
+        for line in merging_file:
+            modified = False
+
+            if 'FileName' in line:
+                temp_file.write(f'std::string FileName = "{sim_output_dir}/{sim_output_file}";\n')
+                modified = True
+
+            if 'double t_max =' in line :
+                temp_file.write(f'double t_max = {t_max};\n')
+                modified = True;
+            elif 'double coinc_time = ' in line :
+                temp_file.write(f'double coinc_time = {coinc_time};\n')
+                modified = True;
+            elif 'double T_ADC = ' in line :
+                temp_file.write(f'double T_ADC = {T_ADC};\n')
+                modified = True;
+            if not modified:
+                temp_file.write(line)
+    os.replace(temp_file_path, header_path)
+
+def replace_line_in_file(file_path, identifier, new_line):
+    with open(file_path, 'r') as file:
+        lines = file.readlines()
+
+    with open(file_path, 'w') as file:
+        write_next = False
+        for line in lines:
+            if write_next:
+                file.write(new_line + '\n')
+                write_next = False
+            else:
+                file.write(line)
+            if identifier in line:
+                write_next = True
+
+
+def run_root_script(cxx_path):
+    # Path to thisroot.sh (adjust as necessary for your ROOT installation)
+    bash = "~/.bashrc"
+    command = f"cd Scripts && source {bash} && root -l  -q {cxx_path}++"
+
+    try:
+        # Execute the command in bash to allow 'source' to work
+        subprocess.run(command, shell=True, executable="/bin/bash", check=True)
+        print("ROOT script executed successfully.")
+        subprocess.run("rm temp.root", shell = True)
+    except subprocess.CalledProcessError as e :
+        print(f"Failed to execute ROOT script: {e}")
+
+
+def main():
+    args = parse_arguments()
+
+
+
+    sim_dir = "/Users/lh270370/Software/nptool/Outputs/Simulation/Isolde"
+    config_path ="configs/MergeConfig.txt"
+    header_path="Scripts/IsoldeMerging3.hh"
+    merging_cc = "IsoldeMerging3.cc"
+
+    config_vars = parse_config(config_path)
+    update_config(header_path, config_vars, sim_dir+'/'+args.sim_output_dir, args.sim_output_file)
+    run_root_script(merging_cc)
+
+
+    sim_dir = sim_dir+'/'+args.sim_output_dir
+    sim_file = args.sim_output_file
+    if args.change_RunToTreat :
+        new_path = f"{sim_dir}/{sim_file}_MUSETT_tau" + str(config_vars['coinc_time'])
+        new_path += "_T" +str(config_vars['t_max']) + "_TADC" + str(config_vars['T_ADC']) + ".root"
+
+        replace_line_in_file('RunToTreat.txt', 'RootFileName', f'\t{new_path}')
+        replace_line_in_file('RunToTreat.txt', 'TTreeName', '\tSimulatedTree')
+
+if __name__ == "__main__":
+    main()
diff --git a/Projects/MUSETT/modify_run_to_treat.py b/Projects/MUSETT/modify_run_to_treat.py
new file mode 100755
index 0000000000000000000000000000000000000000..89f3907b6d2da118f4b36297e8eb7655d75a0c02
--- /dev/null
+++ b/Projects/MUSETT/modify_run_to_treat.py
@@ -0,0 +1,48 @@
+#!/opt/homebrew/opt/python@3.11/libexec/bin/python
+import argparse
+import os
+import subprocess
+
+
+def parse_arguments():
+    parser = argparse.ArgumentParser(description='Modify IsoldeMerging2.hh based on merge_config.txt and command-line arguments.')
+    parser.add_argument("-F", "--sim_output_file", required=True, help="Name of the simulation output file")
+    parser.add_argument("-D", "--sim_output_dir", required=True, help="Name of the simulation output directory")
+    return parser.parse_args()
+
+def replace_line_in_file(file_path, identifier, new_line):
+    with open(file_path, 'r') as file:
+        lines = file.readlines()
+
+    with open(file_path, 'w') as file:
+        write_next = False
+        for line in lines:
+            if write_next:
+                file.write(new_line + '\n')
+                write_next = False
+            else:
+                file.write(line)
+            if identifier in line:
+                write_next = True
+
+
+
+def main():
+    args = parse_arguments()
+
+
+
+    sim_dir = "/Users/lh270370/Software/nptool/Outputs/Simulation/Isolde"
+    config_path ="configs/merge_config.txt"
+    header_path ="Scripts/IsoldeMerging3.hh"
+    cxx_path = "IsoldeMerging3.cc"
+
+    sim_dir = sim_dir+'/'+args.sim_output_dir
+    sim_file = args.sim_output_file
+    new_path = f"{sim_dir}/{sim_file}.root"
+    replace_line_in_file('RunToTreat.txt', 'RootFileName', f'\t{new_path}')
+    replace_line_in_file('RunToTreat.txt', 'TTreeName', '\tSimulatedTree')
+
+
+if __name__ == "__main__":
+    main()
diff --git a/Projects/MUSETT/multithread_simu.sh b/Projects/MUSETT/multithread_simu.sh
new file mode 100755
index 0000000000000000000000000000000000000000..6ed052179dbdbf27679bc9a8f6f4d0f21c5ef7ac
--- /dev/null
+++ b/Projects/MUSETT/multithread_simu.sh
@@ -0,0 +1,93 @@
+#!/bin/bash
+
+# -F is for name of the output file
+# -O is for name of the output directory
+
+
+
+SIM_DIR="/Users/lh270370/Software/nptool/Outputs/Simulation/Isolde"
+OUTPUT_DIR="default"
+OUTPUT_FILE="output"
+
+MACRO="macros/run1e4.mac"
+NSIMU=3
+
+DETECTOR_CONFIG="DetectorConfiguration/MUSETT_NPS.detector"
+EVENT_SOURCE="Beam/alpha7_5.source"
+
+# Process command-line options
+while getopts "F:D:B:E:N:" opt; do
+  case $opt in
+    F) OUTPUT_FILE="$OPTARG"
+    ;;
+    D) OUTPUT_DIR="$OPTARG"
+    ;;
+    B) MACRO="macros/${OPTARG}.mac"  # Set MACRO based on the provided argument
+    ;;
+    E) EVENT_SOURCE="Beam/$OPTARG"  # Set MACRO based on the provided argument
+    ;;
+    N) NSIMU=$OPTARG  # Set MACRO based on the provided argument
+    ;;
+    \?) echo "Invalid option -$OPTARG" >&2
+    ;;
+  esac
+done
+
+# Ensure the output directory exists
+if [ ! -d "$SIM_DIR/$OUTPUT_DIR" ]; then
+    mkdir -p "$SIM_DIR/$OUTPUT_DIR"
+fi
+
+# Array to store the paths of all the output files
+output_files=()
+for i in $(seq 1 $NSIMU)
+do
+  FILE="${OUTPUT_FILE}_${i}"  # Fixed concatenation for output file name
+  output_files+=("$SIM_DIR/$OUTPUT_DIR/$FILE.root")
+done
+
+#Check if output file does not exist already
+final_output_file="$SIM_DIR/$OUTPUT_DIR/${OUTPUT_FILE}.root"
+if [ -f "$final_output_file" ]; then
+    # File exists, prompt the user
+    echo "$final_output_file exists."
+    read -p "Do you want to remove all existing output files in the directory and proceed? (y/n): " -r
+    echo    # Move to a new line
+    if [[ $REPLY =~ ^[Yy]$ ]]; then
+        # User chose to overwrite, so remove the files
+        echo "Removing existing output files..."
+        for file in "${output_files[@]}"; do
+            rm -f "$file"
+        done
+        rm -f "$final_output_file"
+        echo "Removed existing files. Proceeding with the simulation..."
+    else
+        # User chose not to overwrite, exit the script
+        echo "Not overwriting the files. Exiting."
+        exit 1
+    fi
+fi
+
+
+# Run several simulations
+for i in $(seq 1 $NSIMU)
+do
+    let "rdm_seed=i*61"
+
+    FILE="${OUTPUT_FILE}_${i}"  # Fixed concatenation for output file name
+
+    if [ $i -eq $NSIMU ]; then
+      npsimulation -D "$DETECTOR_CONFIG" -E "$EVENT_SOURCE" -O "Isolde/$OUTPUT_DIR/$FILE" -B "$MACRO" --random-seed $rdm_seed
+    else
+      nohup npsimulation -D "$DETECTOR_CONFIG" -E "$EVENT_SOURCE" -O "Isolde/$OUTPUT_DIR/$FILE" -B "$MACRO" --random-seed $rdm_seed &
+      pids+=($!)
+    fi
+done
+
+#echo "${output_files[@]}"
+for pid in ${pids[@]}; do
+    wait $pid
+done
+
+hadd "$SIM_DIR/$OUTPUT_DIR/${OUTPUT_FILE}.root" "${output_files[@]}"
+rm "${output_files[@]}"
diff --git a/Projects/MUSETT/routine.sh b/Projects/MUSETT/routine.sh
new file mode 100755
index 0000000000000000000000000000000000000000..9b35f37c92b5114d798a074b4ef0e285b51e824d
--- /dev/null
+++ b/Projects/MUSETT/routine.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+DIR="BranchingRatio_test"
+SIM_FILE="222Ra_ChangedBR_p3_1e6__energyBeam30"
+PHYS_FILE="$SIM_FILE"_physics
+MACRO="run2e5"
+NSIMU=5
+EVENT_SOURCE="Ra222.beam"
+CHANGE_RUN_TO_TREAT=1
+
+#npcompilation -a
+#./multithread_simu.sh -D "$DIR" -F "$SIM_FILE" -B "$MACRO" -E "$EVENT_SOURCE" -N "$NSIMU"
+#./clean.py -SD "$DIR" -SF "$SIM_FILE" -AD "$DIR" -AF "$PHYS_FILE"
+./merge_simu.py -D "$DIR" -F "$SIM_FILE" -R "$CHANGE_RUN_TO_TREAT"
+#./modify_run_to_treat.py  -D "$DIR/$SIM_FILE" -F "$SIM_FILE"
+#./analyse_simu.py -ID "$DIR" -IF "$SIM_FILE" -OF "$PHYS_FILE"
+#./sanity_check.py -D "$DIR" -F "$PHYS_FILE"
+#./clean_dir.py -SD "$DIR" -SF "$SIM_FILE" -AD "$DIR" -AF "$PHYS_FILE"
+#clear
diff --git a/Projects/MUSETT/sanity_check.py b/Projects/MUSETT/sanity_check.py
new file mode 100755
index 0000000000000000000000000000000000000000..f1920f0c03bdf0f7ed3cac50c3069e0f85e7e409
--- /dev/null
+++ b/Projects/MUSETT/sanity_check.py
@@ -0,0 +1,68 @@
+#!/opt/homebrew/opt/python@3.11/libexec/bin/python
+
+import argparse
+import os
+import subprocess
+
+def parse_arguments():
+    parser = argparse.ArgumentParser(description='Update SanityCheckV2.cxx with new configuration.')
+    parser.add_argument("-F", "--phys_file", required=True, help="Name of the physics input file")
+    parser.add_argument("-D", "--phys_dir", required=True, help="Name of the physcs input directory")
+    return parser.parse_args()
+
+def parse_config(config_path):
+    config_vars = {}
+    with open(config_path, 'r') as config_file:
+        for line in config_file:
+            if '=' in line:
+                var, value = line.split('=')
+                config_vars[var.strip()] = value.strip()
+    return config_vars
+
+def modify_cxx_file(cxx_path, config_vars, phys_dir, phys_file):
+    input_file_name = f"{phys_dir}/{phys_file}.root"
+    output_file_name = f"{phys_dir}/histoSanity_{phys_file}.root"
+
+    with open(cxx_path, 'r') as file:
+        lines = file.readlines()
+
+    with open(cxx_path, 'w') as file:
+        for line in lines:
+            if 'config.inputFileName =' in line:
+                file.write(f'    config.inputFileName = "{input_file_name}";\n')
+            elif 'config.outputFileName =' in line:
+                file.write(f'    config.outputFileName = "{output_file_name}";\n')
+            elif 'config.tau =' in line:
+                file.write(f'    config.tau = {config_vars["coinc_time"]};\n')
+            elif 'config.T =' in line:
+                file.write(f'    config.T = {config_vars["t_max"]};\n')
+            else:
+                file.write(line)
+
+def run_root_script(cxx_path):
+    # Path to thisroot.sh (adjust as necessary for your ROOT installation)
+    bash = "~/.bashrc"
+    command = f"source {bash} && root -l -b -q {cxx_path}"
+
+    try:
+        # Execute the command in bash to allow 'source' to work
+        subprocess.run(command, shell=True, executable="/bin/bash", check=True)
+        print("ROOT script executed successfully.")
+    except subprocess.CalledProcessError as e:
+        print(f"Failed to execute ROOT script: {e}")
+
+
+def main():
+    args = parse_arguments()
+
+    ana_dir = "/Users/lh270370/Software/nptool/Outputs/Analysis/Simu/Isolde/"
+    config_path = "configs/merge_config.txt"
+    cxx_path = "Scripts/SanityCheckV2.cxx"
+
+    config_vars = parse_config(config_path)
+    modify_cxx_file(cxx_path, config_vars, ana_dir+args.phys_dir, args.phys_file)
+
+    run_root_script(cxx_path)
+
+if __name__ == "__main__":
+    main()
diff --git a/Projects/Strasse/macro/CheckSim.cxx b/Projects/Strasse/macro/CheckSim.cxx
index 519fc722fe8efaa64a4a6b14440303f9675a3aa1..1f450fd763c73f347d8e7e9adf02005a085c6167 100644
--- a/Projects/Strasse/macro/CheckSim.cxx
+++ b/Projects/Strasse/macro/CheckSim.cxx
@@ -11,8 +11,9 @@
   //  TFile* file = new TFile("../../Outputs/Simulation/configJune2022_100MeV_pencil.root");
   //
   // TFile* file = new TFile("../../Outputs/Simulation/test_newtar.root");
-  TFile* file = new TFile("../../Outputs/Simulation/test_oldtar.root");
-  TTree* tree = (TTree*)file->Get("SimulatedTree");
+  // TFile* file = new TFile("../../Outputs/Simulation/test_oldtar.root");
+  //  TTree* tree = (TTree*)file->Get("SimulatedTree");
+  TTree* tree = (TTree*)gDirectory->Get("SimulatedTree");
 
   TCanvas* c1 = new TCanvas("c1", "c1", 1000, 1000);
   c1->Divide(4, 4);
diff --git a/Projects/ana_e850/Analysis.cxx b/Projects/ana_e850/Analysis.cxx
index f186323dba018ca402ef4b9af11076171d9bf7f7..568f26411ccbcd30160872aead651982912520cb 100644
--- a/Projects/ana_e850/Analysis.cxx
+++ b/Projects/ana_e850/Analysis.cxx
@@ -40,6 +40,7 @@ void Analysis::Init(){
   PISTA = (TPISTAPhysics*) m_DetectorManager->GetDetector("PISTA");
   FPMW  = (TFPMWPhysics*) m_DetectorManager->GetDetector("FPMW");
   IC  = (TICPhysics*) m_DetectorManager->GetDetector("IC");
+  EXOGAM  = (TExogamPhysics*) m_DetectorManager->GetDetector("Exogam");
   Tracking = new TVamosReconstruction();
   Tracking->ReadMatrix("MRec.mat");
 
@@ -69,6 +70,7 @@ void Analysis::Init(){
   Rand = TRandom3();
   LoadCalibParameter();
   ReadAnalysisConfig();
+  LoadTimeOffset();
 
   TargetThickness = 0.44*micrometer;
 
@@ -88,9 +90,6 @@ void Analysis::Init(){
 
   chain = RootInput::getInstance()->GetChain();
 
-  Exo_Energy = new vector<float>();
-  Exo_Crystal = new vector<int>();
-
   Xmean = 0;
   Ymean = 0;
   Xmean_iter = 0;
@@ -115,6 +114,34 @@ void Analysis::LoadCalibParameter(){
   }
 }
 
+////////////////////////////////////////////////////////////////////////////////
+void Analysis::LoadTimeOffset(){
+  ifstream ifile;
+  // T13
+  string filename = "./macro/AoQ/T13_offset.cal";
+  ifile.open(filename.c_str());
+  string token;
+  double offset;
+  int section=0;
+  while(ifile>>token>>offset){
+    m_T13_Offset[section] = offset;
+    section++;
+  }
+  ifile.close();
+
+  // T14
+  filename = "./macro/AoQ/T14_offset.cal";
+  ifile.open(filename.c_str());
+  section=0;
+  while(ifile>>token>>offset){
+    m_T14_Offset[section] = offset;
+    section++;
+  }
+  ifile.close();
+
+}
+
+
 ////////////////////////////////////////////////////////////////////////////////
 void Analysis::TreatEvent(){
   ReInitValue();
@@ -124,6 +151,31 @@ void Analysis::TreatEvent(){
 
   VamosAnalysis();
   PistaAnalysis();
+  ExogamAnalysis();
+}
+
+////////////////////////////////////////////////////////////////////////////////
+void Analysis::ExogamAnalysis(){
+  unsigned int size = EXOGAM->E_AB.size();
+
+  //for(unsigned int i=0; i<size; i++){
+  if(size==1){
+    Exo_Theta = EXOGAM->Theta[0];
+    Exo_Phi   = EXOGAM->Phi[0];
+    Exo_E     = EXOGAM->E_AB[0];
+
+    if(Exo_Theta!=-1000){
+      if(FF_Theta!=-100){
+        Exo_cosa  = sin(FF_Theta)*cos(FF_Phi)*sin(Exo_Theta)*cos(Exo_Phi) + sin(FF_Theta)*sin(FF_Phi)*sin(Exo_Theta)*sin(Exo_Phi) + cos(FF_Theta)*cos(Exo_Theta);
+        //Exo_cosa  = sin(0)*cos(0)*sin(Exo_Theta)*cos(Exo_Phi) + sin(0)*sin(0)*sin(Exo_Theta)*sin(Exo_Phi) + cos(0)*cos(Exo_Theta);
+        Exo_EDC_vamos = EXOGAM->CorrectionDoppler(Exo_Theta,Exo_Phi,FF_Theta,FF_Phi,FF_Beta13,Exo_E);
+      }
+      if(ThetaLab!=-1000){
+        Exo_EDC_pista = EXOGAM->CorrectionDoppler(Exo_Theta,Exo_Phi,ThetaLab,PhiLab,Beta_pista,Exo_E);
+      }
+    }
+  }
+
 }
 
 ////////////////////////////////////////////////////////////////////////////////
@@ -178,15 +230,7 @@ void Analysis::PistaAnalysis(){
     PID = pow(DeltaEcorr+Eres,1.78)-pow(Eres,1.78);
 
     ThetaNormalTarget = HitDirection.Angle(TVector3(0,0,1));
-    Elab = Energy;//Be10C.EvaluateInitialEnergy(Energy,TargetThickness*0.5,ThetaNormalTarget);
-    
-    C12->SetKineticEnergy(Elab);
-    Be10->SetKineticEnergy(Elab);
-
-    double distance_to_hit = HitDirection.Mag()/1000;
-    double C12_tof = C12->GetTimeOfFlight();
-    double time_to_hit = distance_to_hit*C12_tof*1e9;
-    Pista_Time_Target = Time_E - time_to_hit;
+    Elab = Energy;
 
     // 12C case //
     double Elab_12C;
@@ -195,6 +239,7 @@ void Analysis::PistaAnalysis(){
     Elab_12C += DeltaE;
     Elab_12C = geloss_C12Al->Eval(Elab_12C);
     Elab_12C = geloss_C12C->Eval(Elab_12C);
+    C12->SetKineticEnergy(Elab_12C);
 
     // 120Be case //
     double Elab_10Be;
@@ -203,13 +248,19 @@ void Analysis::PistaAnalysis(){
     Elab_10Be += DeltaE;
     Elab_10Be = geloss_Be10Al->Eval(Elab_10Be);
     Elab_10Be = geloss_Be10C->Eval(Elab_10Be);
+    Be10->SetKineticEnergy(Elab_10Be);
+    Beta_pista = Be10->GetBeta();
 
-
-    Ex240Pu = Transfer10Be->ReconstructRelativistic(Elab, ThetaLab);
+    Ex240Pu = Transfer10Be->ReconstructRelativistic(Elab_10Be, ThetaLab);
     Ex236U  = Transfer14C->ReconstructRelativistic(Elab, ThetaLab);
     Ex238U  = Elastic->ReconstructRelativistic(Elab_12C, ThetaLab);
     ThetaCM = Transfer10Be->EnergyLabToThetaCM(Elab, ThetaLab)/deg;
-    ThetaLab = ThetaLab/deg;
+    //ThetaLab = ThetaLab/deg;
+
+    double distance_to_hit = HitDirection.Mag()/1000;
+    double C12_tof = C12->GetTimeOfFlight();
+    double time_to_hit = distance_to_hit*C12_tof*1e9;
+    Pista_Time_Target = Time_E - time_to_hit;
   }
 
   if(PISTA->EventMultiplicity==4){
@@ -237,7 +288,7 @@ void Analysis::TwoAlphaAnalysis(){
   // couple1 // 
   Elab1.push_back(DE1+E1);
   Elab2.push_back(DE3+E2);
-  
+
   // couple2 //
   Elab1.push_back(DE1+E2);
   Elab2.push_back(DE3+E1);
@@ -307,6 +358,9 @@ void Analysis::VamosAnalysis(){
     YTarget = FPMW->Yt;
     ZTarget = 0;
 
+    FF_Theta = FPMW->Theta_in+m_Vamos_Angle*deg;
+    FF_Phi = FPMW->Phi_in;
+
     Xmean_iter += XTarget;
     Ymean_iter += YTarget;
     iteration++;
@@ -332,28 +386,25 @@ void Analysis::VamosAnalysis(){
   PositionOnTarget = TVector3(XTarget,YTarget,ZTarget);
   if(FPMWPat_0RawM==1){
 
-    if(Exo_Mult==1){
-      Exogam_Crystal = Exo_Crystal->at(0);
-      Exogam_Energy = Exo_Energy->at(0);
-    }
-
     UShort_t FPMWPat = FPMWPat_0RawNr[0];
     FPMW_Section = FPMWPat;
     IC->SetFPMWSection(FPMW_Section);
     IC->BuildSimplePhysicalEvent();
     double Theta = -1000;
     if(FPMW->Xf!=-1000){
+      FF_DE   = IC->DE;
+      FF_Eres = IC->Eres;
+
       Tracking->CalculateReconstruction(FPMW->Xf, 1000*FPMW->Thetaf, m_Brho_ref, FF_Brho, Theta, FF_Path);
       // FF_Path is in cm ! 
 
       // T13 //
-      double Toff13[20] = {0,0,0,0,1.3,1.7,1.2,0.6,0.5,2.5,2.1,0.9,1.2,1.7,1.1,1.1,1.2,0,0,0};
       double path1 = FPMW->GetDetectorPositionZ(0)/10./cos(FPMW->Theta_in)/cos(FPMW->Phi_in);
       double path2 = (FPMW->GetDetectorPositionZ(2)-7600)/10./cos(FPMW->Thetaf);
-      //double path2 = (7965.6-7600)/cos(FPMW->Thetaf)/10;
+      FF_Y1  = FPMW->PositionY[0];
+      FF_Y3  = FPMW->PositionY[2];
       FF_D13 = FF_Path - path1 + path2;
-      //FF_T13 = T13 - 22.6 + Toff13[FPMWPat];// - 0.3;
-      FF_T13 = T13*0.99 - 22.6 + 2.6 + Toff13[FPMWPat];// - 0.3;
+      FF_T13 = T13 - 20 + m_T13_Offset[FPMWPat];
       FF_V13 = FF_D13/FF_T13;
       FF_Beta13 = FF_V13/29.9792458;
       FF_Gamma13 = 1./sqrt(1.0 - FF_Beta13*FF_Beta13);
@@ -361,24 +412,18 @@ void Analysis::VamosAnalysis(){
       FF_Etot13 = IC->Etot;
       FF_M113 = FF_Etot13/931.5016/(FF_Gamma13-1);
       FF_Q13 = FF_M113/FF_AoQ13;
-      FF_Q13 = m_Q_p0[FPMW_Section] + m_Q_p1[FPMW_Section]*FF_Q13;
+      //FF_Q13 = m_Q_p0[FPMW_Section] + m_Q_p1[FPMW_Section]*FF_Q13;
       int iQ13 = (int) round(FF_Q13);
       FF_Mass13 = iQ13*FF_AoQ13;
       //FF_Mass = int(FF_Q+0.5)*FF_AoQ;
 
       Vamos_Time_Target = FF_T13 - FPMW->GetDetectorPositionZ(0)/10./FF_V13;
 
-      //cout << "******************" << endl;
-      //cout << FPMW->GetDetectorPositionZ(0)/10 << " " << FF_V13 << endl;
-      //cout << T13 << " " << Vamos_Time_Target << endl;
-
       // T14 //
-      double Toff14[20] = {0,0,0,0,2.2,2.5,2.6,2.2,0,2.2,3.0,2.5,1.5,2.0,1.8,2.0,1.,0,0,0};
       path1 = FPMW->GetDetectorPositionZ(0)/10./cos(FPMW->Theta_in)/cos(FPMW->Phi_in);
       path2 = (FPMW->GetDetectorPositionZ(3)-7600)/10./cos(FPMW->Thetaf);
       FF_D14 = FF_Path - path1 + path2;
-      //FF_T14 = T14 - 13.45 + Toff14[FPMWPat];
-      FF_T14 = T14*0.99 - 13.45 + 2.5 + Toff14[FPMWPat];
+      FF_T14 = T14 - 11 + m_T14_Offset[FPMWPat];
       FF_V14 = FF_D14/FF_T14;
       double FF_Beta14 = FF_V14/29.9792458;
       double FF_Gamma14 = 1./sqrt(1.0 - FF_Beta14*FF_Beta14);
@@ -386,16 +431,15 @@ void Analysis::VamosAnalysis(){
       double FF_Etot14 = IC->Etot;
       FF_M114 = FF_Etot14/931.5016/(FF_Gamma14-1);
       FF_Q14 = FF_M114/FF_AoQ14;
-      FF_Q14 = m_Q_p0[FPMW_Section] + m_Q_p1[FPMW_Section]*FF_Q14;
+      //FF_Q14 = m_Q_p0[FPMW_Section] + m_Q_p1[FPMW_Section]*FF_Q14;
       int iQ14 = (int) round(FF_Q14);
       FF_Mass14 = iQ14*FF_AoQ14;
 
       // T23 //
-      double Toff23[20] = {0,0,0,0,0.8,1.2,0.6,0,0,0.2,0,-1.2,-1.1,-0.4,-1.1,-1.2,0.8,0,0,0};
       path1 = FPMW->GetDetectorPositionZ(1)/10./cos(FPMW->Theta_in)/cos(FPMW->Phi_in);
       path2 = (FPMW->GetDetectorPositionZ(2)-7600)/10./cos(FPMW->Thetaf);
       FF_D23 = FF_Path - path1 + path2;
-      FF_T23 = T23 + 72 + Toff23[FPMWPat];
+      FF_T23 = T23 + 72;
       FF_V23 = FF_D23/FF_T23;
       double FF_Beta23 = FF_V23/29.9792358;
       double FF_Gamma23 = 1./sqrt(1.0 - FF_Beta23*FF_Beta23);
@@ -403,16 +447,15 @@ void Analysis::VamosAnalysis(){
       double FF_Etot23 = IC->Etot;
       FF_M123 = FF_Etot23/931.5016/(FF_Gamma23-1);
       FF_Q23 = FF_M123/FF_AoQ23;
-      FF_Q23 = m_Q_p0[FPMW_Section] + m_Q_p1[FPMW_Section]*FF_Q23;
+      //FF_Q23 = m_Q_p0[FPMW_Section] + m_Q_p1[FPMW_Section]*FF_Q23;
       int iQ23 = (int) round(FF_Q23);
       FF_Mass23 = iQ23*FF_AoQ23;
 
       // T24 //
-      double Toff24[20] = {0,0,0,0,2.2,2.5,2.6,2.2,0,0.2,1.2,0.5,1.3,2.1,0.1,2.1,0.5,0,0,0};
       path1 = FPMW->GetDetectorPositionZ(1)/10./cos(FPMW->Theta_in)/cos(FPMW->Phi_in);
       path2 = (FPMW->GetDetectorPositionZ(3)-7600)/10./cos(FPMW->Thetaf);
       FF_D24 = FF_Path - path1 + path2;
-      FF_T24 = T24 + 81.7 + Toff24[FPMWPat];
+      FF_T24 = T24 + 81.7;
       FF_V24 = FF_D24/FF_T24;
       double FF_Beta24 = FF_V24/29.9792458;
       double FF_Gamma24 = 1./sqrt(1.0 - FF_Beta24*FF_Beta24);
@@ -420,7 +463,7 @@ void Analysis::VamosAnalysis(){
       double FF_Etot24 = IC->Etot;
       FF_M124 = FF_Etot24/931.5016/(FF_Gamma24-1);
       FF_Q24 = FF_M124/FF_AoQ24;
-      FF_Q24 = m_Q_p0[FPMW_Section] + m_Q_p1[FPMW_Section]*FF_Q24;
+      //FF_Q24 = m_Q_p0[FPMW_Section] + m_Q_p1[FPMW_Section]*FF_Q24;
       int iQ24 = (int) round(FF_Q24);
       FF_Mass24 = iQ24*FF_AoQ24;
 
@@ -463,6 +506,7 @@ void Analysis::InitOutputBranch(){
   RootOutput::getInstance()->GetTree()->Branch("PID",&PID,"PID/D");
   RootOutput::getInstance()->GetTree()->Branch("Elab",&Elab,"Elab/D");
   RootOutput::getInstance()->GetTree()->Branch("ThetaLab",&ThetaLab,"ThetaLab/D");
+  RootOutput::getInstance()->GetTree()->Branch("Beta_pista",&Beta_pista,"Beta_pista/D");
   RootOutput::getInstance()->GetTree()->Branch("ThetaDetectorSurface",&ThetaDetectorSurface,"ThetaDetectorSurface/D");
   RootOutput::getInstance()->GetTree()->Branch("PhiLab",&PhiLab,"PhiLab/D");
   RootOutput::getInstance()->GetTree()->Branch("ThetaCM",&ThetaCM,"ThetaCM/D");
@@ -476,9 +520,16 @@ void Analysis::InitOutputBranch(){
   RootOutput::getInstance()->GetTree()->Branch("Pista_Time_Target",&Pista_Time_Target,"Pista_Time_Target/D");
   RootOutput::getInstance()->GetTree()->Branch("Vamos_Time_Target",&Vamos_Time_Target,"Vamos_Time_Target/D");
 
+  RootOutput::getInstance()->GetTree()->Branch("FF_DE",&FF_DE,"FF_DE/D");
+  RootOutput::getInstance()->GetTree()->Branch("FF_Eres",&FF_Eres,"FF_Eres/D");
+  RootOutput::getInstance()->GetTree()->Branch("FF_Z",&FF_Z,"FF_Z/D");
+  RootOutput::getInstance()->GetTree()->Branch("FF_Theta",&FF_Theta,"FF_Theta/D");
+  RootOutput::getInstance()->GetTree()->Branch("FF_Phi",&FF_Phi,"FF_Phi/D");
   RootOutput::getInstance()->GetTree()->Branch("FF_Brho",&FF_Brho,"FF_Brho/D");
   RootOutput::getInstance()->GetTree()->Branch("FF_Path",&FF_Path,"FF_Path/D");
 
+  RootOutput::getInstance()->GetTree()->Branch("FF_Y1",&FF_Y1,"FF_Y1/D");
+  RootOutput::getInstance()->GetTree()->Branch("FF_Y3",&FF_Y3,"FF_Y3/D");
   RootOutput::getInstance()->GetTree()->Branch("FF_D13",&FF_D13,"FF_D13/D");
   RootOutput::getInstance()->GetTree()->Branch("FF_T13",&FF_T13,"FF_T13/D");
   RootOutput::getInstance()->GetTree()->Branch("FF_V13",&FF_V13,"FF_V13/D");
@@ -520,13 +571,17 @@ void Analysis::InitOutputBranch(){
   RootOutput::getInstance()->GetTree()->Branch("FF_Etot13",&FF_Etot13,"FF_Etot13/D");
   RootOutput::getInstance()->GetTree()->Branch("FPMW_Section",&FPMW_Section,"FPMW_Section/I");
 
-  RootOutput::getInstance()->GetTree()->Branch("Exogam_Energy",&Exogam_Energy,"Exogam_Energy/D");
-  RootOutput::getInstance()->GetTree()->Branch("Exogam_Crystal",&Exogam_Crystal,"Exogam_Crystal/I");
-
   RootOutput::getInstance()->GetTree()->Branch("Elab1",&Elab1);
   RootOutput::getInstance()->GetTree()->Branch("Elab2",&Elab2);
   RootOutput::getInstance()->GetTree()->Branch("m_2alpha",&m_2alpha,"m_2alpha/I");
 
+  RootOutput::getInstance()->GetTree()->Branch("Exo_cosa",&Exo_cosa,"Exo_cosa/D");
+  RootOutput::getInstance()->GetTree()->Branch("Exo_E",&Exo_E,"Exo_E/D");
+  RootOutput::getInstance()->GetTree()->Branch("Exo_EDC_vamos",&Exo_EDC_vamos,"Exo_EDC_vamos/D");
+  RootOutput::getInstance()->GetTree()->Branch("Exo_EDC_pista",&Exo_EDC_pista,"Exo_EDC_pista/D");
+  RootOutput::getInstance()->GetTree()->Branch("Exo_Theta",&Exo_Theta,"Exo_Theta/D");
+  RootOutput::getInstance()->GetTree()->Branch("Exo_Phi",&Exo_Phi,"Exo_Phi/D");
+
   RootOutput::getInstance()->GetTree()->Branch("VAMOS_TS_hour",&VAMOS_TS_hour,"VAMOS_TS_hour/D");
   RootOutput::getInstance()->GetTree()->Branch("PISTA_TS_hour",&PISTA_TS_hour,"PISTA_TS_hour/D");
 
@@ -552,14 +607,6 @@ void Analysis::InitInputBranch(){
   RootInput::getInstance()->GetChain()->SetBranchStatus("FPMWPat_0RawM",true);
   RootInput::getInstance()->GetChain()->SetBranchAddress("FPMWPat_0RawM",&FPMWPat_0RawM);
 
-
-  RootInput::getInstance()->GetChain()->SetBranchStatus("Exo_Mult",true);
-  RootInput::getInstance()->GetChain()->SetBranchAddress("Exo_Mult",&Exo_Mult);
-  RootInput::getInstance()->GetChain()->SetBranchStatus("Exo_Energy",true);
-  RootInput::getInstance()->GetChain()->SetBranchAddress("Exo_Energy",&Exo_Energy);
-  RootInput::getInstance()->GetChain()->SetBranchStatus("Exo_Crystal",true);
-  RootInput::getInstance()->GetChain()->SetBranchAddress("Exo_Crystal",&Exo_Crystal);
-
   RootInput::getInstance()->GetChain()->SetBranchStatus("fVAMOS_TS_sec",true);
   RootInput::getInstance()->GetChain()->SetBranchAddress("fVAMOS_TS_sec",&fVAMOS_TS_sec);
   RootInput::getInstance()->GetChain()->SetBranchStatus("fPISTA_TS_sec",true);
@@ -578,6 +625,7 @@ void Analysis::ReInitValue(){
   Eres = -1000;
   Elab = -1000;
   ThetaLab = -1000;
+  Beta_pista = -1;
   ThetaDetectorSurface = -1000;
   PhiLab = -1000;
   ThetaCM = -1000;
@@ -595,8 +643,19 @@ void Analysis::ReInitValue(){
   Pista_Time_Target = -1000;
   Vamos_Time_Target = -1000;
 
+  Exo_cosa = -100;
+  Exo_E = -100;
+  Exo_EDC_vamos = -100;
+  Exo_EDC_pista = -100;
+  Exo_Theta = -100;
+  Exo_Phi = -100;
+
+  FF_Theta = -100;
+  FF_Phi = -100;
   FF_Brho = -1;
   FF_Path = -1;
+  FF_Y1 = -1000;
+  FF_Y3 = -1000;
   FF_D13 = -1;
   FF_T13 = -1;
   FF_V13 = -1;
@@ -637,9 +696,6 @@ void Analysis::ReInitValue(){
   FF_Qav = -1;
   FF_Massav = -1;
 
-  Exogam_Crystal = -1;
-  Exogam_Energy = -1;
-
   m_2alpha = 0;
   Elab1.clear();
   Elab2.clear();
diff --git a/Projects/ana_e850/Analysis.h b/Projects/ana_e850/Analysis.h
index 0f8e6a33919ff9625614105f634543a1d4c827d5..44aae833eaf5f995bdb04eaa327463029b2fc751 100644
--- a/Projects/ana_e850/Analysis.h
+++ b/Projects/ana_e850/Analysis.h
@@ -25,6 +25,7 @@
 #include "TPISTAPhysics.h"
 #include "TFPMWPhysics.h"
 #include "TICPhysics.h"
+#include "TExogamPhysics.h"
 #include "TVamosReconstruction.h"
 #include "TInitialConditions.h"
 #include "TReactionConditions.h"
@@ -51,8 +52,10 @@ class Analysis: public NPL::VAnalysis{
     void LoadCalibParameter();
     void PistaAnalysis();
     void VamosAnalysis(); 
+    void ExogamAnalysis(); 
     void TwoAlphaAnalysis();
     void ReadAnalysisConfig();
+    void LoadTimeOffset();
 
     static NPL::VAnalysis* Construct();
 
@@ -91,6 +94,7 @@ class Analysis: public NPL::VAnalysis{
     double Ex236U;
     double Ex238U;
     double PID;
+    double Beta_pista;
 
     ULong64_t fVAMOS_TS_sec;
     ULong64_t fPISTA_TS_sec;
@@ -98,9 +102,16 @@ class Analysis: public NPL::VAnalysis{
     double PISTA_TS_hour;
 
     int FPMW_Section;
+    double FF_DE;
+    double FF_Eres;
+    double FF_Z;
     double FF_Brho;
     double FF_Path;
-    
+    double FF_Theta;
+    double FF_Phi;
+
+    double FF_Y1;
+    double FF_Y3;
     double FF_D13;
     double FF_T13;
     double FF_V13;
@@ -139,6 +150,13 @@ class Analysis: public NPL::VAnalysis{
     double FF_Qav;
     double FF_Massav;
 
+    double Exo_cosa;
+    double Exo_E;
+    double Exo_EDC_vamos;
+    double Exo_EDC_pista;
+    double Exo_Theta;
+    double Exo_Phi;
+
     int m_2alpha;
     vector<double> Elab1;
     vector<double> Elab2;
@@ -175,11 +193,6 @@ class Analysis: public NPL::VAnalysis{
     float T24;
     UShort_t FPMWPat_0RawNr[20];
     Int_t FPMWPat_0RawM;
-    int Exo_Mult;
-    vector<float>* Exo_Energy;
-    vector<int>* Exo_Crystal;
-    double Exogam_Energy;
-    int Exogam_Crystal;
 
   private:
     double Xmean;
@@ -190,11 +203,14 @@ class Analysis: public NPL::VAnalysis{
 
     double m_Q_p0[20];
     double m_Q_p1[20];
+    double m_T13_Offset[20];
+    double m_T14_Offset[20];
 
   private:
     TPISTAPhysics* PISTA;
     TFPMWPhysics* FPMW;
     TICPhysics* IC;
+    TExogamPhysics* EXOGAM;
     TVamosReconstruction* Tracking;
     TChain* chain;
 };
diff --git a/Projects/ana_e850/AnalysisConfig.dat b/Projects/ana_e850/AnalysisConfig.dat
index 8cf300fb858490a4a5f1b6a378a94258ce464ea0..eb8e59fab2b27ad3f0aaeaa89a70cd851ee4bf3e 100644
--- a/Projects/ana_e850/AnalysisConfig.dat
+++ b/Projects/ana_e850/AnalysisConfig.dat
@@ -1,7 +1,6 @@
 AnalysisConfig
- VAMOS_ANGLE 20
- BRHO_REF 1.1
- XTARGET_OFFSET -0.34
- YTARGET_OFFSET -0.17
- ZTARGET_OFFSET 0.62
-
+ VAMOS_ANGLE 20 
+ BRHO_REF 1.1 
+ XTARGET_OFFSET -0.20
+ YTARGET_OFFSET 0.60
+ ZTARGET_OFFSET -0.60
diff --git a/Projects/ana_e850/Calibration.txt b/Projects/ana_e850/Calibration.txt
index bf190c2ce835d41cad4107ffe81ecf35d03f961d..b401a7be76c9e1cfe21acf1cfb08fd8cf484f6fa 100644
--- a/Projects/ana_e850/Calibration.txt
+++ b/Projects/ana_e850/Calibration.txt
@@ -1,30 +1,15 @@
 CalibrationFilePath
- %./Calibration/pista/e850_2023/part1/PISTA1_E.cal
- %./Calibration/pista/e850_2023/part1/PISTA2_E.cal
- %./Calibration/pista/e850_2023/part1/PISTA3_E.cal
- %./Calibration/pista/e850_2023/part1/PISTA4_E.cal
- %./Calibration/pista/e850_2023/part1/PISTA5_E.cal
- %./Calibration/pista/e850_2023/part1/PISTA6_E.cal
- %./Calibration/pista/e850_2023/part1/PISTA7_E.cal
- %./Calibration/pista/e850_2023/part1/PISTA8_E.cal
- ./Calibration/pista/e850_2023/part1/PISTA1_DE.cal
- ./Calibration/pista/e850_2023/part1/PISTA2_DE.cal
- ./Calibration/pista/e850_2023/part1/PISTA3_DE.cal
- ./Calibration/pista/e850_2023/part1/PISTA4_DE.cal
- ./Calibration/pista/e850_2023/part1/PISTA5_DE.cal
- ./Calibration/pista/e850_2023/part1/PISTA6_DE.cal
- ./Calibration/pista/e850_2023/part1/PISTA7_DE.cal
- ./Calibration/pista/e850_2023/part1/PISTA8_DE.cal
- ./Calibration/pista/e850_2023/part1/PISTA_BACK_DE.cal
- ./Calibration/pista/e850_2023/part1/PISTA_BACK_E_min.cal
- %./Calibration/pista/e850_2023/part1/pol2/PISTA1_backE.cal
- %./Calibration/pista/e850_2023/part1/pol2/PISTA2_backE.cal
- %./Calibration/pista/e850_2023/part1/pol2/PISTA3_backE.cal
- %./Calibration/pista/e850_2023/part1/pol2/PISTA4_backE.cal
- %./Calibration/pista/e850_2023/part1/pol2/PISTA5_backE.cal
- %./Calibration/pista/e850_2023/part1/pol2/PISTA6_backE.cal
- %./Calibration/pista/e850_2023/part1/pol2/PISTA7_backE.cal
- %./Calibration/pista/e850_2023/part1/pol2/PISTA8_backE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA1_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA2_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA3_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA4_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA5_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA6_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA7_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA8_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA_BACK_E_pol1.cal
+
+ ./Calibration/VAMOS/CHIO/Chio_E_sec4.cal
  ./Calibration/VAMOS/CHIO/Chio_E_sec5.cal
  ./Calibration/VAMOS/CHIO/Chio_E_sec6.cal
  ./Calibration/VAMOS/CHIO/Chio_E_sec7.cal
@@ -40,6 +25,7 @@ CalibrationFilePath
  ./Calibration/VAMOS/CHIO/Chio_E_sec17.cal
  ./Calibration/VAMOS/CHIO/Chio_E_sec18.cal
  ./Calibration/VAMOS/CHIO/Chio_E_sec19.cal
+
  ./Calibration/VAMOS/FPMW/npformat/FPMW1_X.cal
  ./Calibration/VAMOS/FPMW/npformat/FPMW1_Y.cal
  ./Calibration/VAMOS/FPMW/npformat/FPMW2_X.cal
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec10.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec10.cal
index a7515eafe1c869f9944b734d2de00aaa3060fc30..56fc3b37bc1b0046bd4e32038002c82ab7285bec 100644
--- a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec10.cal
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec10.cal
@@ -1,10 +1,11 @@
-IC_SEC10_SEG1_ALIGN 0.80565
-IC_SEC10_SEG2_ALIGN 0.735791
-IC_SEC10_SEG3_ALIGN 0.623187
-IC_SEC10_SEG4_ALIGN 0.46443
-IC_SEC10_SEG5_ALIGN 0.955241
-IC_SEC10_SEG6_ALIGN 1.00986
-IC_SEC10_SEG7_ALIGN 2.05361
-IC_SEC10_SEG8_ALIGN 1.98428
-IC_SEC10_SEG9_ALIGN 2.26352
-IC_SEC10_SEG10_ALIGN 2.49346
+IC_ETOT_SCALING_SEC10 0.0240819
+IC_SEC10_SEG1_ALIGN 0.863679
+IC_SEC10_SEG2_ALIGN 0.721789
+IC_SEC10_SEG3_ALIGN 0.620484
+IC_SEC10_SEG4_ALIGN 0.457868
+IC_SEC10_SEG5_ALIGN 0.959212
+IC_SEC10_SEG6_ALIGN 0.982321
+IC_SEC10_SEG7_ALIGN 2.08815
+IC_SEC10_SEG8_ALIGN 1.98176
+IC_SEC10_SEG9_ALIGN 2.09854
+IC_SEC10_SEG10_ALIGN 2.72177
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec11.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec11.cal
index cb282073296d2139f78bce3053b731c5dadcda6e..14f24f15edf5957396547cf0e1634400a3da54e6 100644
--- a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec11.cal
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec11.cal
@@ -1,10 +1,11 @@
-IC_SEC11_SEG1_ALIGN 0.826682
-IC_SEC11_SEG2_ALIGN 0.734326
-IC_SEC11_SEG3_ALIGN 0.619954
-IC_SEC11_SEG4_ALIGN 0.46047
-IC_SEC11_SEG5_ALIGN 0.946076
-IC_SEC11_SEG6_ALIGN 1.01166
-IC_SEC11_SEG7_ALIGN 2.05257
-IC_SEC11_SEG8_ALIGN 1.97552
-IC_SEC11_SEG9_ALIGN 2.27694
-IC_SEC11_SEG10_ALIGN 2.49321
+IC_ETOT_SCALING_SEC11 0.024029
+IC_SEC11_SEG1_ALIGN 0.851553
+IC_SEC11_SEG2_ALIGN 0.741375
+IC_SEC11_SEG3_ALIGN 0.630463
+IC_SEC11_SEG4_ALIGN 0.459667
+IC_SEC11_SEG5_ALIGN 0.930888
+IC_SEC11_SEG6_ALIGN 1.01181
+IC_SEC11_SEG7_ALIGN 2.07385
+IC_SEC11_SEG8_ALIGN 1.99498
+IC_SEC11_SEG9_ALIGN 2.08455
+IC_SEC11_SEG10_ALIGN 2.00007
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec12.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec12.cal
index a4b9cf0b1896b57725da91fe9ac6c6d9aff00ab9..7199709203a4c122aa95e1f372683da25f97f018 100644
--- a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec12.cal
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec12.cal
@@ -1,10 +1,11 @@
-IC_SEC12_SEG1_ALIGN 0.843215
-IC_SEC12_SEG2_ALIGN 0.71647
-IC_SEC12_SEG3_ALIGN 0.613463
-IC_SEC12_SEG4_ALIGN 0.457208
-IC_SEC12_SEG5_ALIGN 0.966794
-IC_SEC12_SEG6_ALIGN 0.997938
-IC_SEC12_SEG7_ALIGN 2.05639
-IC_SEC12_SEG8_ALIGN 1.97623
-IC_SEC12_SEG9_ALIGN 2.07198
-IC_SEC12_SEG10_ALIGN 2.49485
+IC_ETOT_SCALING_SEC12 0.0240732
+IC_SEC12_SEG1_ALIGN 0.851467
+IC_SEC12_SEG2_ALIGN 0.727786
+IC_SEC12_SEG3_ALIGN 0.62141
+IC_SEC12_SEG4_ALIGN 0.455089
+IC_SEC12_SEG5_ALIGN 0.962151
+IC_SEC12_SEG6_ALIGN 0.993356
+IC_SEC12_SEG7_ALIGN 2.07661
+IC_SEC12_SEG8_ALIGN 1.97451
+IC_SEC12_SEG9_ALIGN 2.07423
+IC_SEC12_SEG10_ALIGN 2.68827
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec13.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec13.cal
index b478699c9e79b597611a8904a5da83efe8c4de84..42537b5315ecb3f1253a2e38edb80a7453511231 100644
--- a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec13.cal
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec13.cal
@@ -1,10 +1,11 @@
-IC_SEC13_SEG1_ALIGN 0.823372
-IC_SEC13_SEG2_ALIGN 0.717088
-IC_SEC13_SEG3_ALIGN 0.618343
-IC_SEC13_SEG4_ALIGN 0.472999
-IC_SEC13_SEG5_ALIGN 0.977931
-IC_SEC13_SEG6_ALIGN 1.00908
-IC_SEC13_SEG7_ALIGN 2.04763
-IC_SEC13_SEG8_ALIGN 1.98066
-IC_SEC13_SEG9_ALIGN 2.0686
-IC_SEC13_SEG10_ALIGN 2.49418
+IC_ETOT_SCALING_SEC13 0.0240628
+IC_SEC13_SEG1_ALIGN 0.855086
+IC_SEC13_SEG2_ALIGN 0.726655
+IC_SEC13_SEG3_ALIGN 0.626593
+IC_SEC13_SEG4_ALIGN 0.467105
+IC_SEC13_SEG5_ALIGN 0.964627
+IC_SEC13_SEG6_ALIGN 0.994246
+IC_SEC13_SEG7_ALIGN 2.0748
+IC_SEC13_SEG8_ALIGN 1.96955
+IC_SEC13_SEG9_ALIGN 2.03312
+IC_SEC13_SEG10_ALIGN 2.08096
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec14.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec14.cal
index 4d5748195b48b45268aebbb0ff6483a862cbdc46..999893c84ae04c78b27f6b950c45973b83a06d46 100644
--- a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec14.cal
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec14.cal
@@ -1,10 +1,11 @@
-IC_SEC14_SEG1_ALIGN 0.8438
-IC_SEC14_SEG2_ALIGN 0.72854
-IC_SEC14_SEG3_ALIGN 0.632463
-IC_SEC14_SEG4_ALIGN 0.475622
-IC_SEC14_SEG5_ALIGN 0.955266
-IC_SEC14_SEG6_ALIGN 1.00161
-IC_SEC14_SEG7_ALIGN 2.06031
-IC_SEC14_SEG8_ALIGN 1.97779
-IC_SEC14_SEG9_ALIGN 2.11458
-IC_SEC14_SEG10_ALIGN 2.49006
+IC_ETOT_SCALING_SEC14 0.0240967
+IC_SEC14_SEG1_ALIGN 0.867887
+IC_SEC14_SEG2_ALIGN 0.719774
+IC_SEC14_SEG3_ALIGN 0.622929
+IC_SEC14_SEG4_ALIGN 0.468216
+IC_SEC14_SEG5_ALIGN 0.974367
+IC_SEC14_SEG6_ALIGN 0.978432
+IC_SEC14_SEG7_ALIGN 2.08685
+IC_SEC14_SEG8_ALIGN 1.96366
+IC_SEC14_SEG9_ALIGN 2.05623
+IC_SEC14_SEG10_ALIGN 2.12293
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec15.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec15.cal
index 6d4d686be764ec31d135c02e0ab71dea1dd71dda..9f1ede24328b8a0289a35e92e6fb503ac7d6e8e7 100644
--- a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec15.cal
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec15.cal
@@ -1,10 +1,11 @@
-IC_SEC15_SEG1_ALIGN 0.8581
-IC_SEC15_SEG2_ALIGN 0.715428
-IC_SEC15_SEG3_ALIGN 0.619338
-IC_SEC15_SEG4_ALIGN 0.472458
-IC_SEC15_SEG5_ALIGN 0.974411
-IC_SEC15_SEG6_ALIGN 0.986591
-IC_SEC15_SEG7_ALIGN 2.06357
-IC_SEC15_SEG8_ALIGN 1.9754
-IC_SEC15_SEG9_ALIGN 2.05074
-IC_SEC15_SEG10_ALIGN 2.4948
+IC_ETOT_SCALING_SEC15 0.0240703
+IC_SEC15_SEG1_ALIGN 0.861125
+IC_SEC15_SEG2_ALIGN 0.718808
+IC_SEC15_SEG3_ALIGN 0.623065
+IC_SEC15_SEG4_ALIGN 0.469982
+IC_SEC15_SEG5_ALIGN 0.972768
+IC_SEC15_SEG6_ALIGN 0.981991
+IC_SEC15_SEG7_ALIGN 2.08648
+IC_SEC15_SEG8_ALIGN 1.96774
+IC_SEC15_SEG9_ALIGN 2.01315
+IC_SEC15_SEG10_ALIGN 2.28347
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec16.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec16.cal
index d80e446f47441ed1189b61466ec34163d962e421..4a21a6110edb6109784acd8a83ee8cdba5b4ec9b 100644
--- a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec16.cal
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec16.cal
@@ -1,10 +1,11 @@
-IC_SEC16_SEG1_ALIGN 0.85618
-IC_SEC16_SEG2_ALIGN 0.722603
-IC_SEC16_SEG3_ALIGN 0.626552
-IC_SEC16_SEG4_ALIGN 0.491668
-IC_SEC16_SEG5_ALIGN 0.974909
-IC_SEC16_SEG6_ALIGN 1.00196
-IC_SEC16_SEG7_ALIGN 2.06938
-IC_SEC16_SEG8_ALIGN 1.98509
-IC_SEC16_SEG9_ALIGN 2.05442
-IC_SEC16_SEG10_ALIGN 2.49439
+IC_ETOT_SCALING_SEC16 0.0240718
+IC_SEC16_SEG1_ALIGN 0.857234
+IC_SEC16_SEG2_ALIGN 0.715732
+IC_SEC16_SEG3_ALIGN 0.621197
+IC_SEC16_SEG4_ALIGN 0.480309
+IC_SEC16_SEG5_ALIGN 0.972431
+IC_SEC16_SEG6_ALIGN 0.980844
+IC_SEC16_SEG7_ALIGN 2.08502
+IC_SEC16_SEG8_ALIGN 1.97536
+IC_SEC16_SEG9_ALIGN 1.99199
+IC_SEC16_SEG10_ALIGN 2.44599
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec17.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec17.cal
index 71cd535c76920c0e9cdb33cf5d0ca5d5e46f34e6..36aa73f7265e92259475909829f2fd42537af64f 100644
--- a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec17.cal
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec17.cal
@@ -1,10 +1,11 @@
-IC_SEC17_SEG1_ALIGN 0.826127
-IC_SEC17_SEG2_ALIGN 0.720366
-IC_SEC17_SEG3_ALIGN 0.634987
-IC_SEC17_SEG4_ALIGN 0.504478
-IC_SEC17_SEG5_ALIGN 0.983441
-IC_SEC17_SEG6_ALIGN 0.997961
-IC_SEC17_SEG7_ALIGN 2.04169
-IC_SEC17_SEG8_ALIGN 1.9635
-IC_SEC17_SEG9_ALIGN 2.0526
-IC_SEC17_SEG10_ALIGN 2.4928
+IC_ETOT_SCALING_SEC17 0.0241084
+IC_SEC17_SEG1_ALIGN 0.862402
+IC_SEC17_SEG2_ALIGN 0.715354
+IC_SEC17_SEG3_ALIGN 0.61886
+IC_SEC17_SEG4_ALIGN 0.465005
+IC_SEC17_SEG5_ALIGN 0.973565
+IC_SEC17_SEG6_ALIGN 0.982577
+IC_SEC17_SEG7_ALIGN 2.0969
+IC_SEC17_SEG8_ALIGN 1.96557
+IC_SEC17_SEG9_ALIGN 1.99274
+IC_SEC17_SEG10_ALIGN 2.04488
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec18.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec18.cal
index eb948860e91213717c6b713d8627982f606193b7..ec2fcd1373b5f5f7f9f886b973dff958acd7ff12 100644
--- a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec18.cal
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec18.cal
@@ -1,10 +1,11 @@
-IC_SEC18_SEG1_ALIGN 0.803777
-IC_SEC18_SEG2_ALIGN 0.719521
-IC_SEC18_SEG3_ALIGN 0.651361
-IC_SEC18_SEG4_ALIGN 0.500602
-IC_SEC18_SEG5_ALIGN 0.99102
-IC_SEC18_SEG6_ALIGN 0.976733
-IC_SEC18_SEG7_ALIGN 2.06264
-IC_SEC18_SEG8_ALIGN 1.95463
-IC_SEC18_SEG9_ALIGN 2.06855
-IC_SEC18_SEG10_ALIGN 2.49253
+IC_ETOT_SCALING_SEC18 0.0240899
+IC_SEC18_SEG1_ALIGN 0.861012
+IC_SEC18_SEG2_ALIGN 0.716904
+IC_SEC18_SEG3_ALIGN 0.621864
+IC_SEC18_SEG4_ALIGN 0.465904
+IC_SEC18_SEG5_ALIGN 0.97581
+IC_SEC18_SEG6_ALIGN 0.979879
+IC_SEC18_SEG7_ALIGN 2.09202
+IC_SEC18_SEG8_ALIGN 1.95882
+IC_SEC18_SEG9_ALIGN 2.04147
+IC_SEC18_SEG10_ALIGN 2.06461
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec19.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec19.cal
index 7b6d3b442fab6fccdcf6559f8ccb88bab0845991..377ab20b950d94df9210b49858ce72129f9cba46 100644
--- a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec19.cal
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec19.cal
@@ -1,10 +1,11 @@
-IC_SEC19_SEG1_ALIGN 0.846028
-IC_SEC19_SEG2_ALIGN 0.724079
-IC_SEC19_SEG3_ALIGN 0.62829
-IC_SEC19_SEG4_ALIGN 0.482594
-IC_SEC19_SEG5_ALIGN 0.987524
-IC_SEC19_SEG6_ALIGN 0.975891
-IC_SEC19_SEG7_ALIGN 2.09362
-IC_SEC19_SEG8_ALIGN 1.97644
-IC_SEC19_SEG9_ALIGN 2.07859
-IC_SEC19_SEG10_ALIGN 2.49608
+IC_ETOT_SCALING_SEC19 0.0241002
+IC_SEC19_SEG1_ALIGN 0.866919
+IC_SEC19_SEG2_ALIGN 0.716694
+IC_SEC19_SEG3_ALIGN 0.62257
+IC_SEC19_SEG4_ALIGN 0.465475
+IC_SEC19_SEG5_ALIGN 0.971389
+IC_SEC19_SEG6_ALIGN 0.970127
+IC_SEC19_SEG7_ALIGN 2.10864
+IC_SEC19_SEG8_ALIGN 1.95663
+IC_SEC19_SEG9_ALIGN 1.94581
+IC_SEC19_SEG10_ALIGN 2.07033
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec4.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec4.cal
new file mode 100644
index 0000000000000000000000000000000000000000..382d923e6a5f701970d2c554af78350590bc49fc
--- /dev/null
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec4.cal
@@ -0,0 +1,11 @@
+IC_ETOT_SCALING_SEC4 0.024069
+IC_SEC4_SEG1_ALIGN 0.879037
+IC_SEC4_SEG2_ALIGN 0.725755
+IC_SEC4_SEG3_ALIGN 0.620554
+IC_SEC4_SEG4_ALIGN 0.440951
+IC_SEC4_SEG5_ALIGN 0.926003
+IC_SEC4_SEG6_ALIGN 0.991925
+IC_SEC4_SEG7_ALIGN 2.19815
+IC_SEC4_SEG8_ALIGN 1.60189
+IC_SEC4_SEG9_ALIGN 2.01858
+IC_SEC4_SEG10_ALIGN 2.262
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec5.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec5.cal
index 28ac9d2f9f898fdcb3da36610f2682067491664b..692279d471667fc986afb1b526deae6fa5395f95 100644
--- a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec5.cal
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec5.cal
@@ -1,10 +1,11 @@
-IC_SEC5_SEG1_ALIGN 0.884882
-IC_SEC5_SEG2_ALIGN 0.72413
-IC_SEC5_SEG3_ALIGN 0.624725
-IC_SEC5_SEG4_ALIGN 0.461127
-IC_SEC5_SEG5_ALIGN 0.953611
-IC_SEC5_SEG6_ALIGN 1.0446
-IC_SEC5_SEG7_ALIGN 2.14923
-IC_SEC5_SEG8_ALIGN 2.04905
-IC_SEC5_SEG9_ALIGN 1.84684
-IC_SEC5_SEG10_ALIGN 2.49977
+IC_ETOT_SCALING_SEC5 0.0240813
+IC_SEC5_SEG1_ALIGN 0.878557
+IC_SEC5_SEG2_ALIGN 0.722818
+IC_SEC5_SEG3_ALIGN 0.619087
+IC_SEC5_SEG4_ALIGN 0.444476
+IC_SEC5_SEG5_ALIGN 0.937374
+IC_SEC5_SEG6_ALIGN 1.01203
+IC_SEC5_SEG7_ALIGN 2.11934
+IC_SEC5_SEG8_ALIGN 1.69035
+IC_SEC5_SEG9_ALIGN 1.99662
+IC_SEC5_SEG10_ALIGN 2.62537
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec6.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec6.cal
index 5c7302a6ba6a35a687e81dae397bc6e77a8cefad..a199f772f450af004edc5ce36c77826b94eba40d 100644
--- a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec6.cal
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec6.cal
@@ -1,10 +1,11 @@
-IC_SEC6_SEG1_ALIGN 0.915902
-IC_SEC6_SEG2_ALIGN 0.728841
-IC_SEC6_SEG3_ALIGN 0.626147
-IC_SEC6_SEG4_ALIGN 0.454506
-IC_SEC6_SEG5_ALIGN 0.930358
-IC_SEC6_SEG6_ALIGN 1.05387
-IC_SEC6_SEG7_ALIGN 2.10994
-IC_SEC6_SEG8_ALIGN 2.28566
-IC_SEC6_SEG9_ALIGN 2.05715
-IC_SEC6_SEG10_ALIGN 2.50092
+IC_ETOT_SCALING_SEC6 0.0240843
+IC_SEC6_SEG1_ALIGN 0.870411
+IC_SEC6_SEG2_ALIGN 0.73175
+IC_SEC6_SEG3_ALIGN 0.628019
+IC_SEC6_SEG4_ALIGN 0.453674
+IC_SEC6_SEG5_ALIGN 0.928962
+IC_SEC6_SEG6_ALIGN 0.976018
+IC_SEC6_SEG7_ALIGN 2.0615
+IC_SEC6_SEG8_ALIGN 1.9812
+IC_SEC6_SEG9_ALIGN 1.40426
+IC_SEC6_SEG10_ALIGN 2.00114
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec7.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec7.cal
index 2979d6b165b0477c24f29bd4db3861d3fee8c500..8b2a463442d13b449834c74f9deb5da076908e94 100644
--- a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec7.cal
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec7.cal
@@ -1,10 +1,11 @@
-IC_SEC7_SEG1_ALIGN 0.858378
-IC_SEC7_SEG2_ALIGN 0.727554
-IC_SEC7_SEG3_ALIGN 0.628792
-IC_SEC7_SEG4_ALIGN 0.472419
-IC_SEC7_SEG5_ALIGN 0.972769
-IC_SEC7_SEG6_ALIGN 0.994616
-IC_SEC7_SEG7_ALIGN 2.11673
-IC_SEC7_SEG8_ALIGN 1.92067
-IC_SEC7_SEG9_ALIGN 0.881361
-IC_SEC7_SEG10_ALIGN 2.50027
+IC_ETOT_SCALING_SEC7 0.0241486
+IC_SEC7_SEG1_ALIGN 0.867841
+IC_SEC7_SEG2_ALIGN 0.738305
+IC_SEC7_SEG3_ALIGN 0.631387
+IC_SEC7_SEG4_ALIGN 0.4478
+IC_SEC7_SEG5_ALIGN 0.872591
+IC_SEC7_SEG6_ALIGN 1.03781
+IC_SEC7_SEG7_ALIGN 2.02656
+IC_SEC7_SEG8_ALIGN 1.91988
+IC_SEC7_SEG9_ALIGN 2.10457
+IC_SEC7_SEG10_ALIGN 2.18051
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec8.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec8.cal
index 0d0bbd69d59d84529a062cb98d5c9083349f46a9..2c01f4e23fff84ee2655842d5c8f747ee632ac51 100644
--- a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec8.cal
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec8.cal
@@ -1,10 +1,11 @@
-IC_SEC8_SEG1_ALIGN 0.845754
-IC_SEC8_SEG2_ALIGN 0.753257
-IC_SEC8_SEG3_ALIGN 0.641297
-IC_SEC8_SEG4_ALIGN 0.47208
-IC_SEC8_SEG5_ALIGN 0.922349
-IC_SEC8_SEG6_ALIGN 1.04824
-IC_SEC8_SEG7_ALIGN 2.07761
-IC_SEC8_SEG8_ALIGN 1.97939
-IC_SEC8_SEG9_ALIGN 2.57181
-IC_SEC8_SEG10_ALIGN 2.5009
+IC_ETOT_SCALING_SEC8 0.0241
+IC_SEC8_SEG1_ALIGN 0.863275
+IC_SEC8_SEG2_ALIGN 0.73126
+IC_SEC8_SEG3_ALIGN 0.625331
+IC_SEC8_SEG4_ALIGN 0.4459
+IC_SEC8_SEG5_ALIGN 0.942261
+IC_SEC8_SEG6_ALIGN 1.01625
+IC_SEC8_SEG7_ALIGN 2.07588
+IC_SEC8_SEG8_ALIGN 1.9737
+IC_SEC8_SEG9_ALIGN 1.91616
+IC_SEC8_SEG10_ALIGN 2.97398
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec9.cal b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec9.cal
index 0ae877bda7d89d83dbcbc05bddcfa8575c0ecc1f..6c5254f88686e29cd141cf4773c7d20b2c8bd7a7 100644
--- a/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec9.cal
+++ b/Projects/ana_e850/Calibration/VAMOS/CHIO/Chio_E_sec9.cal
@@ -1,10 +1,11 @@
-IC_SEC9_SEG1_ALIGN 0.804269
-IC_SEC9_SEG2_ALIGN 0.753112
-IC_SEC9_SEG3_ALIGN 0.632835
-IC_SEC9_SEG4_ALIGN 0.472165
-IC_SEC9_SEG5_ALIGN 0.923734
-IC_SEC9_SEG6_ALIGN 1.01936
-IC_SEC9_SEG7_ALIGN 2.06037
-IC_SEC9_SEG8_ALIGN 1.97427
-IC_SEC9_SEG9_ALIGN 1.58517
-IC_SEC9_SEG10_ALIGN 2.49147
+IC_ETOT_SCALING_SEC9 0.0240932
+IC_SEC9_SEG1_ALIGN 0.862734
+IC_SEC9_SEG2_ALIGN 0.749667
+IC_SEC9_SEG3_ALIGN 0.628659
+IC_SEC9_SEG4_ALIGN 0.438328
+IC_SEC9_SEG5_ALIGN 0.92106
+IC_SEC9_SEG6_ALIGN 1.03746
+IC_SEC9_SEG7_ALIGN 2.05413
+IC_SEC9_SEG8_ALIGN 2.02058
+IC_SEC9_SEG9_ALIGN 1.68331
+IC_SEC9_SEG10_ALIGN 2.69315
diff --git a/Projects/ana_e850/Calibration/VAMOS/CHIO/Z_spline.root b/Projects/ana_e850/Calibration/VAMOS/CHIO/Z_spline.root
new file mode 100644
index 0000000000000000000000000000000000000000..be9c0fc9e1c2366a155c94a7ea1fb9a10bf62fe0
Binary files /dev/null and b/Projects/ana_e850/Calibration/VAMOS/CHIO/Z_spline.root differ
diff --git a/Projects/ana_e850/Calibration/VAMOS/FPMW/GAnaToNPTool.C b/Projects/ana_e850/Calibration/VAMOS/FPMW/GAnaToNPTool.C
index 3b7a2e40a06598f3703024a381c368009bb5d2a5..f8043619946eefdbeb29a069fd7fa711b3b2afcb 100644
--- a/Projects/ana_e850/Calibration/VAMOS/FPMW/GAnaToNPTool.C
+++ b/Projects/ana_e850/Calibration/VAMOS/FPMW/GAnaToNPTool.C
@@ -12,7 +12,7 @@ void GAnaToNPTool(){
   list_filename[6] = "FPMW1_X.cal";
   list_filename[7] = "FPMW1_Y.cal";
 
-  for(int i=4; i<8; i++){
+  for(int i=0; i<4; i++){
     string input_filename = rootfilename + list_filename[i];
     ifile.open(input_filename.c_str());
 
@@ -38,11 +38,11 @@ void GAnaToNPTool(){
     getline(ifile,buffer);
     double p0, p1, p2, scale;
     int strip=0;
-    while(ifile>>p0>>p1>>p2>>scale>>buffer>>buffer){
-      strip++;
+    while(ifile>>p0>>p1>>p2>>scale>>buffer){
       string token = "FPMW_DET" + to_string(det) + "_STRIP"+ XorY + to_string(strip);
 
       ofile << token << " " << p0 << " " << p1 << " " << p2 << " " << scale << endl;
+      strip++;
     }
 
     ifile.close();
diff --git a/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW1_X.cal b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW1_X.cal
new file mode 100644
index 0000000000000000000000000000000000000000..4c05d8e3e24f3638c5960f93c13dd12fc908eb65
--- /dev/null
+++ b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW1_X.cal
@@ -0,0 +1,39 @@
+FPMW_DET1_STRIPX0 686.239 0.236401 1.59277e-06 6.8995
+FPMW_DET1_STRIPX1 613.283 0.420529 2.68185e-06 2.28514
+FPMW_DET1_STRIPX2 516.724 0.573679 2.90813e-06 1.76146
+FPMW_DET1_STRIPX3 784.481 0.703665 1.85999e-06 1.49252
+FPMW_DET1_STRIPX4 587.878 0.801187 1.27165e-06 1.33931
+FPMW_DET1_STRIPX5 453.087 0.874067 6.30974e-07 1.19105
+FPMW_DET1_STRIPX6 598.792 0.911885 2.82822e-07 1.12398
+FPMW_DET1_STRIPX7 669.282 0.932665 8.49444e-08 1.11331
+FPMW_DET1_STRIPX8 847.896 0.949369 2.19288e-07 1.10387
+FPMW_DET1_STRIPX9 481.216 0.963817 -1.82539e-08 1.07974
+FPMW_DET1_STRIPX10 383.357 0.981994 -1.43269e-07 1.05277
+FPMW_DET1_STRIPX11 622.471 0.988878 -1.3716e-07 1.05148
+FPMW_DET1_STRIPX12 374.173 0.999363 -1.4096e-07 1.03623
+FPMW_DET1_STRIPX13 631.646 0.990616 -1.81957e-07 1.04685
+FPMW_DET1_STRIPX14 720.55 1.00083 -2.91463e-07 1.07239
+FPMW_DET1_STRIPX15 908.623 1 3.60598e-18 1.06178
+FPMW_DET1_STRIPX16 477.698 1.0593 -1.68145e-06 0.937996
+FPMW_DET1_STRIPX17 815.145 1.05205 -1.49591e-06 0.95614
+FPMW_DET1_STRIPX18 768.653 1.04394 -1.33479e-06 0.969255
+FPMW_DET1_STRIPX19 687.461 1.03494 -1.29588e-06 0.97713
+FPMW_DET1_STRIPX20 724.245 1.04503 -1.4511e-06 0.969207
+FPMW_DET1_STRIPX21 694.212 1.03588 -1.25245e-06 0.970042
+FPMW_DET1_STRIPX22 733.942 1.01427 -8.95661e-07 1
+FPMW_DET1_STRIPX23 608.936 1.03182 -1.11601e-06 0.993815
+FPMW_DET1_STRIPX24 654.235 1.01957 -8.84491e-07 0.989337
+FPMW_DET1_STRIPX25 497.822 1.00913 -8.80101e-07 0.996679
+FPMW_DET1_STRIPX26 407.842 0.996488 -6.54529e-07 1.01552
+FPMW_DET1_STRIPX27 809.812 0.996199 -4.99526e-07 1.04431
+FPMW_DET1_STRIPX28 1071.48 0.976928 -4.09575e-07 1.06662
+FPMW_DET1_STRIPX29 870.885 0.972488 -4.10828e-07 1.076
+FPMW_DET1_STRIPX30 673.142 0.952982 -4.63088e-07 1.08441
+FPMW_DET1_STRIPX31 760.536 0.931908 -2.17995e-07 1.11258
+FPMW_DET1_STRIPX32 666.153 0.936091 -4.98355e-07 1.07501
+FPMW_DET1_STRIPX33 780.186 0.904322 -8.56558e-08 1.09686
+FPMW_DET1_STRIPX34 690.833 0.860499 2.63964e-07 1.15275
+FPMW_DET1_STRIPX35 685.999 0.784393 8.34326e-07 1.28354
+FPMW_DET1_STRIPX36 1034.34 0.683051 1.72976e-06 1.44579
+FPMW_DET1_STRIPX37 901.205 0.534371 2.81614e-06 1.89882
+FPMW_DET1_STRIPX38 764.069 0.328495 3.11653e-06 4.54725
diff --git a/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW1_Y.cal b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW1_Y.cal
new file mode 100644
index 0000000000000000000000000000000000000000..09a6504226c758f22998bb51ff910f1736815ca7
--- /dev/null
+++ b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW1_Y.cal
@@ -0,0 +1,60 @@
+FPMW_DET1_STRIPY0 573.313 1.48946 -9.00947e-06 1.01141
+FPMW_DET1_STRIPY1 604.214 1.22407 -4.52884e-06 0.822439
+FPMW_DET1_STRIPY2 434.992 1.10285 -2.61173e-06 0.800302
+FPMW_DET1_STRIPY3 255.547 1.03576 -1.41474e-06 0.836196
+FPMW_DET1_STRIPY4 505.654 1.00898 -8.62309e-07 0.850527
+FPMW_DET1_STRIPY5 318.265 0.988367 -4.63402e-07 0.876417
+FPMW_DET1_STRIPY6 465.766 0.989737 -4.69626e-07 0.885125
+FPMW_DET1_STRIPY7 616.389 0.97763 -2.25566e-07 0.891104
+FPMW_DET1_STRIPY8 419.756 0.967463 -2.58747e-09 0.915247
+FPMW_DET1_STRIPY9 349.396 0.976343 -1.32157e-07 0.929973
+FPMW_DET1_STRIPY10 544.858 0.967604 1.72933e-07 0.929643
+FPMW_DET1_STRIPY11 538.274 0.95604 3.78049e-07 0.945386
+FPMW_DET1_STRIPY12 504.664 0.954822 4.25384e-07 0.93233
+FPMW_DET1_STRIPY13 408.791 0.967826 1.2923e-07 0.925441
+FPMW_DET1_STRIPY14 658.253 0.961611 3.10069e-07 0.956619
+FPMW_DET1_STRIPY15 690.914 0.96116 5.02448e-07 0.970138
+FPMW_DET1_STRIPY16 738.689 1.03969 -1.25272e-06 0.861427
+FPMW_DET1_STRIPY17 753.371 1.0295 -1.05552e-06 0.913705
+FPMW_DET1_STRIPY18 907.218 1.02911 -9.16816e-07 0.908955
+FPMW_DET1_STRIPY19 621.987 1.02886 -1.09243e-06 0.910409
+FPMW_DET1_STRIPY20 878.439 1.02492 -8.1194e-07 0.913027
+FPMW_DET1_STRIPY21 843.466 1.02557 -7.98609e-07 0.905668
+FPMW_DET1_STRIPY22 748.342 1.02639 -8.96631e-07 0.954111
+FPMW_DET1_STRIPY23 377.529 1.03335 -1.0286e-06 0.929751
+FPMW_DET1_STRIPY24 540.287 1.02289 -7.73479e-07 0.930635
+FPMW_DET1_STRIPY25 531.452 1.01829 -6.91461e-07 0.957131
+FPMW_DET1_STRIPY26 702.777 1.01761 -5.1657e-07 0.921475
+FPMW_DET1_STRIPY27 857.886 1.01281 -3.08445e-07 0.962351
+FPMW_DET1_STRIPY28 509.73 1.00419 -5.29468e-07 0.981839
+FPMW_DET1_STRIPY29 738.75 1.0061 -4.86306e-07 0.940452
+FPMW_DET1_STRIPY30 1010.77 1 1.22437e-17 0.9426
+FPMW_DET1_STRIPY31 788.025 1.00043 -4.03249e-07 1
+FPMW_DET1_STRIPY32 555.516 0.903381 1.9984e-07 1.01917
+FPMW_DET1_STRIPY33 295.841 0.895317 1.0395e-07 1.09967
+FPMW_DET1_STRIPY34 428.462 0.884474 3.49593e-07 1.05663
+FPMW_DET1_STRIPY35 509.497 0.888305 4.30528e-07 1.05566
+FPMW_DET1_STRIPY36 595.482 0.887817 4.07712e-07 1.07443
+FPMW_DET1_STRIPY37 501.804 0.887807 2.84134e-07 1.07299
+FPMW_DET1_STRIPY38 459.068 0.880632 3.85172e-07 1.04202
+FPMW_DET1_STRIPY39 635.718 0.874071 5.87126e-07 1.06884
+FPMW_DET1_STRIPY40 756.171 0.864178 9.79619e-07 1.0852
+FPMW_DET1_STRIPY41 428.766 0.864421 8.40304e-07 1.11521
+FPMW_DET1_STRIPY42 587.481 0.862799 1.0084e-06 1.09056
+FPMW_DET1_STRIPY43 312.093 0.863648 9.7048e-07 1.08039
+FPMW_DET1_STRIPY44 664.818 0.862772 1.0255e-06 1.07917
+FPMW_DET1_STRIPY45 551.365 0.855337 1.1725e-06 1.06775
+FPMW_DET1_STRIPY46 528.238 0.864288 9.96693e-07 1.07928
+FPMW_DET1_STRIPY47 490.473 0.853291 1.10372e-06 1.12435
+FPMW_DET1_STRIPY48 477.138 0.880325 5.23076e-07 1.07538
+FPMW_DET1_STRIPY49 283.983 0.895998 7.05289e-08 1.00405
+FPMW_DET1_STRIPY50 617.063 0.894309 2.97572e-07 0.992272
+FPMW_DET1_STRIPY51 323.21 0.882286 3.63341e-07 1.01387
+FPMW_DET1_STRIPY52 543.422 0.882317 4.99762e-07 0.975428
+FPMW_DET1_STRIPY53 732.136 0.885687 6.78722e-07 1.00517
+FPMW_DET1_STRIPY54 430.802 0.884635 4.94435e-07 1.01928
+FPMW_DET1_STRIPY55 603.624 0.904484 2.05116e-07 1.00641
+FPMW_DET1_STRIPY56 646.737 0.939209 -3.908e-07 0.955795
+FPMW_DET1_STRIPY57 622.822 0.992658 -1.23267e-06 1.01081
+FPMW_DET1_STRIPY58 454.647 1.12153 -3.29562e-06 1.12332
+FPMW_DET1_STRIPY59 559.29 1.33606 -7.05706e-06 1.80347
diff --git a/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW2_X.cal b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW2_X.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1a893087d47de6318fb4df8f1a4dd465c2d83671
--- /dev/null
+++ b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW2_X.cal
@@ -0,0 +1,64 @@
+FPMW_DET2_STRIPX0 448.628 0.288764 3.13419e-06 5.2939
+FPMW_DET2_STRIPX1 760.286 0.480526 3.68672e-06 2.78971
+FPMW_DET2_STRIPX2 557.28 0.62125 3.92068e-06 1.99143
+FPMW_DET2_STRIPX3 541.252 0.732608 3.54191e-06 1.77607
+FPMW_DET2_STRIPX4 593.291 0.809985 2.45785e-06 1.62688
+FPMW_DET2_STRIPX5 394.435 0.860023 1.94736e-06 1.49834
+FPMW_DET2_STRIPX6 441.909 0.901823 1.38853e-06 1.41916
+FPMW_DET2_STRIPX7 581.047 0.92919 1.08592e-06 1.37787
+FPMW_DET2_STRIPX8 497.52 0.929838 1.11267e-06 1.39701
+FPMW_DET2_STRIPX9 580.997 0.919018 1.34336e-06 1.42111
+FPMW_DET2_STRIPX10 556.015 0.941824 1.22379e-06 1.39775
+FPMW_DET2_STRIPX11 451.599 0.952987 9.50946e-07 1.36168
+FPMW_DET2_STRIPX12 844.9 0.974535 7.57449e-07 1.32281
+FPMW_DET2_STRIPX13 533.358 0.97358 6.75208e-07 1.33784
+FPMW_DET2_STRIPX14 755.978 0.983791 7.49859e-07 1.34539
+FPMW_DET2_STRIPX15 710.773 0.939306 1.22649e-06 1.3756
+FPMW_DET2_STRIPX16 442.509 1.02531 -9.80519e-07 1.28374
+FPMW_DET2_STRIPX17 630.996 1.01119 -5.68907e-07 1.2758
+FPMW_DET2_STRIPX18 519.9 1.01062 -5.46207e-07 1.26209
+FPMW_DET2_STRIPX19 695.215 1.01449 -5.8131e-07 1.24569
+FPMW_DET2_STRIPX20 426.49 1.02381 -7.60247e-07 1.27744
+FPMW_DET2_STRIPX21 541.647 0.959504 1.68093e-07 1.33029
+FPMW_DET2_STRIPX22 530.245 1.02698 -7.60101e-07 1.28077
+FPMW_DET2_STRIPX23 470.724 1.02048 -6.90579e-07 1.25933
+FPMW_DET2_STRIPX24 676.343 1.00547 -2.17338e-07 1.24331
+FPMW_DET2_STRIPX25 379.305 1.00857 -5.84562e-07 1.28182
+FPMW_DET2_STRIPX26 753.491 1.00617 -2.66913e-07 1.30516
+FPMW_DET2_STRIPX27 413.778 1.00105 -1.76336e-07 1.30705
+FPMW_DET2_STRIPX28 638.032 0.987121 5.7494e-08 1.30544
+FPMW_DET2_STRIPX29 489.829 0.99419 -2.47915e-07 1.31198
+FPMW_DET2_STRIPX30 693.262 1 7.90353e-18 1.34019
+FPMW_DET2_STRIPX31 998.438 0.993734 -1.4045e-20 1.32501
+FPMW_DET2_STRIPX32 456.34 1.24195 -2.66181e-06 1.00175
+FPMW_DET2_STRIPX33 378.494 1.22602 -2.11549e-06 1
+FPMW_DET2_STRIPX34 630.002 1.23459 -2.12115e-06 1.01011
+FPMW_DET2_STRIPX35 595.058 1.22343 -1.89779e-06 1.03172
+FPMW_DET2_STRIPX36 485.859 1.21363 -1.67182e-06 1.04104
+FPMW_DET2_STRIPX37 425.61 1.20899 -1.50863e-06 1.0515
+FPMW_DET2_STRIPX38 535.642 1.20228 -1.18392e-06 1.04623
+FPMW_DET2_STRIPX39 460.734 1.21765 -1.51517e-06 1.02648
+FPMW_DET2_STRIPX40 265.908 1.1962 -1.3278e-06 1.06592
+FPMW_DET2_STRIPX41 286.043 1.17702 -9.61129e-07 1.06665
+FPMW_DET2_STRIPX42 226.41 1.1888 -1.30654e-06 1.08413
+FPMW_DET2_STRIPX43 782.986 1.15533 -3.69384e-07 1.10283
+FPMW_DET2_STRIPX44 375.421 1.14183 -5.34402e-07 1.14537
+FPMW_DET2_STRIPX45 361.279 1.1424 -4.86621e-07 1.14721
+FPMW_DET2_STRIPX46 307.099 1.15617 -7.46611e-07 1.13584
+FPMW_DET2_STRIPX47 320.784 1.18855 -1.14597e-06 1.09989
+FPMW_DET2_STRIPX48 903.802 1.21301 -1.78446e-06 1.01339
+FPMW_DET2_STRIPX49 1041.53 1.21541 -1.63806e-06 1.03966
+FPMW_DET2_STRIPX50 936.055 1.20762 -1.58056e-06 1.06347
+FPMW_DET2_STRIPX51 897.062 1.19025 -1.16022e-06 1.07294
+FPMW_DET2_STRIPX52 612.682 1.17169 -9.95858e-07 1.08338
+FPMW_DET2_STRIPX53 759.082 1.18774 -9.64552e-07 1.07138
+FPMW_DET2_STRIPX54 337.957 1.14617 -8.23797e-07 1.11212
+FPMW_DET2_STRIPX55 482.82 1.15276 -6.46469e-07 1.14876
+FPMW_DET2_STRIPX56 589.365 1.11826 -2.01744e-07 1.15536
+FPMW_DET2_STRIPX57 598.274 1.11513 -1.54848e-07 1.18186
+FPMW_DET2_STRIPX58 673.731 1.08708 4.69003e-07 1.19974
+FPMW_DET2_STRIPX59 424.863 1.09709 3.62359e-08 1.15361
+FPMW_DET2_STRIPX60 738.219 1.05907 6.4964e-07 1.20917
+FPMW_DET2_STRIPX61 512.405 1.03063 1.14238e-06 1.35854
+FPMW_DET2_STRIPX62 572.261 0.981495 1.52955e-06 1.29674
+FPMW_DET2_STRIPX63 861.832 0.923846 2.45714e-06 1.3695
diff --git a/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW2_Y.cal b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW2_Y.cal
new file mode 100644
index 0000000000000000000000000000000000000000..52fb599b011189be8198efc510fafb9931d815e5
--- /dev/null
+++ b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW2_Y.cal
@@ -0,0 +1,92 @@
+FPMW_DET2_STRIPY0 466.508 1.83036 -1.68633e-05 1.24804
+FPMW_DET2_STRIPY1 903.188 1.49131 -8.94577e-06 0.703715
+FPMW_DET2_STRIPY2 553.062 1.29549 -5.28155e-06 0.757134
+FPMW_DET2_STRIPY3 870.838 1.19552 -2.68097e-06 0.796764
+FPMW_DET2_STRIPY4 702.706 1.15786 -1.97629e-06 0.8258
+FPMW_DET2_STRIPY5 847.231 1.12685 -1.27191e-06 0.851328
+FPMW_DET2_STRIPY6 602.378 1.11837 -1.31832e-06 0.862549
+FPMW_DET2_STRIPY7 931.926 1.11655 -8.76804e-07 0.857295
+FPMW_DET2_STRIPY8 631.326 1.10902 -9.46116e-07 0.875584
+FPMW_DET2_STRIPY9 616.601 1.0996 -7.05046e-07 0.881539
+FPMW_DET2_STRIPY10 516.98 1.10236 -8.32653e-07 0.874342
+FPMW_DET2_STRIPY11 589.732 1.10192 -8.27934e-07 0.881382
+FPMW_DET2_STRIPY12 963.469 1.10116 -4.00685e-07 0.886984
+FPMW_DET2_STRIPY13 744.501 1.09683 -6.29564e-07 0.892652
+FPMW_DET2_STRIPY14 906.817 1.09313 -3.75787e-07 0.900941
+FPMW_DET2_STRIPY15 997.776 1.0899 -1.94509e-07 0.906357
+FPMW_DET2_STRIPY16 856.853 1.16151 -2.59451e-06 0.837226
+FPMW_DET2_STRIPY17 883.244 1.15142 -2.62929e-06 0.861105
+FPMW_DET2_STRIPY18 890.32 1.13633 -2.34851e-06 0.874331
+FPMW_DET2_STRIPY19 790.286 1.123 -1.81838e-06 0.87287
+FPMW_DET2_STRIPY20 1047.37 1.14098 -2.10706e-06 0.867698
+FPMW_DET2_STRIPY21 939.751 1.13884 -1.90514e-06 0.857812
+FPMW_DET2_STRIPY22 823.989 1.1296 -1.98187e-06 0.881595
+FPMW_DET2_STRIPY23 956.342 1.13786 -2.22538e-06 0.867241
+FPMW_DET2_STRIPY24 887.247 1.1439 -2.05971e-06 0.864751
+FPMW_DET2_STRIPY25 1133.18 1.1435 -2.00699e-06 0.878489
+FPMW_DET2_STRIPY26 762.113 1.12394 -1.51427e-06 0.887729
+FPMW_DET2_STRIPY27 790.136 1.1236 -1.68653e-06 0.881964
+FPMW_DET2_STRIPY28 630.074 1.12966 -2.06024e-06 0.882677
+FPMW_DET2_STRIPY29 1069.37 1.11643 -1.25424e-06 0.886942
+FPMW_DET2_STRIPY30 1041.01 1.11299 -1.57831e-06 0.924106
+FPMW_DET2_STRIPY31 805.784 1.13513 -1.75617e-06 0.89884
+FPMW_DET2_STRIPY32 666.099 1.01613 -1.04948e-06 0.970656
+FPMW_DET2_STRIPY33 707.507 1.0013 -8.25801e-07 0.974825
+FPMW_DET2_STRIPY34 1028.3 1.02885 -9.64852e-07 0.984568
+FPMW_DET2_STRIPY35 766.91 1.01528 -8.31071e-07 0.954762
+FPMW_DET2_STRIPY36 545.751 1.01807 -8.88548e-07 0.969226
+FPMW_DET2_STRIPY37 615.11 1.00323 -5.38795e-07 0.979537
+FPMW_DET2_STRIPY38 588.674 1.00022 -4.76304e-07 0.999428
+FPMW_DET2_STRIPY39 604.557 1.01643 -5.19329e-07 0.947108
+FPMW_DET2_STRIPY40 781.869 0.97412 3.70002e-07 1.01454
+FPMW_DET2_STRIPY41 675.145 0.993268 -1.22035e-07 0.987272
+FPMW_DET2_STRIPY42 890.415 0.980862 4.09036e-07 0.985753
+FPMW_DET2_STRIPY43 793.47 0.975795 4.79316e-07 1.01038
+FPMW_DET2_STRIPY44 934.588 0.995113 2.01892e-07 1.00187
+FPMW_DET2_STRIPY45 718.689 1 5.35813e-17 1
+FPMW_DET2_STRIPY46 810.13 0.987164 3.44695e-07 1.0196
+FPMW_DET2_STRIPY47 1051.07 0.980819 7.12865e-07 1.02778
+FPMW_DET2_STRIPY48 722.942 1.02222 -1.22245e-06 0.960575
+FPMW_DET2_STRIPY49 638.431 1.02354 -1.11084e-06 0.953276
+FPMW_DET2_STRIPY50 638.596 1.00101 -7.8896e-07 0.953004
+FPMW_DET2_STRIPY51 703.923 1.02163 -1.07756e-06 0.967616
+FPMW_DET2_STRIPY52 399.26 0.996919 -8.89678e-07 0.971687
+FPMW_DET2_STRIPY53 579.093 0.993046 -4.6705e-07 0.98029
+FPMW_DET2_STRIPY54 570.796 0.988291 -5.37883e-07 0.976867
+FPMW_DET2_STRIPY55 801.918 0.990586 -4.71959e-07 0.978331
+FPMW_DET2_STRIPY56 823.668 0.993235 -2.63108e-07 0.989035
+FPMW_DET2_STRIPY57 587.199 0.981787 -2.67486e-07 0.986267
+FPMW_DET2_STRIPY58 433.033 0.998028 -7.88221e-07 0.97023
+FPMW_DET2_STRIPY59 385.858 0.970737 -2.99582e-07 0.991437
+FPMW_DET2_STRIPY60 723.627 0.964789 1.64428e-07 1.02484
+FPMW_DET2_STRIPY61 789.399 0.964388 5.74064e-08 1.01542
+FPMW_DET2_STRIPY62 779.633 0.976403 -5.85761e-07 1.01783
+FPMW_DET2_STRIPY63 929.77 0.958341 2.2361e-08 1.0429
+FPMW_DET2_STRIPY64 606.982 1.04018 -1.57956e-06 0.911265
+FPMW_DET2_STRIPY65 1023.43 1.05171 -1.54953e-06 0.903425
+FPMW_DET2_STRIPY66 596.961 1.04225 -1.38801e-06 0.914936
+FPMW_DET2_STRIPY67 412.005 1.01103 -9.47063e-07 0.920751
+FPMW_DET2_STRIPY68 578.823 1.02326 -9.37058e-07 0.927078
+FPMW_DET2_STRIPY69 797.206 1.01736 -6.51185e-07 0.928049
+FPMW_DET2_STRIPY70 579.043 1.02437 -1.01188e-06 0.927792
+FPMW_DET2_STRIPY71 804.616 1.01604 -6.46543e-07 0.939669
+FPMW_DET2_STRIPY72 1023.85 1.00585 -2.39148e-07 0.954906
+FPMW_DET2_STRIPY73 404.795 0.986799 -2.57044e-07 0.957169
+FPMW_DET2_STRIPY74 894.862 1.0025 -3.13917e-07 0.959327
+FPMW_DET2_STRIPY75 802.072 0.996322 -2.76281e-07 0.956508
+FPMW_DET2_STRIPY76 551.368 0.996939 -3.42466e-07 0.962319
+FPMW_DET2_STRIPY77 861.594 0.999833 -1.21206e-07 0.96202
+FPMW_DET2_STRIPY78 729.459 0.991671 -2.3293e-07 0.976423
+FPMW_DET2_STRIPY79 643.674 0.996552 -2.33477e-07 0.954931
+FPMW_DET2_STRIPY80 575.38 1.02538 -6.67338e-07 0.903844
+FPMW_DET2_STRIPY81 448.28 1.01342 -5.23154e-07 0.920046
+FPMW_DET2_STRIPY82 944.033 1.02002 -3.16458e-07 0.929779
+FPMW_DET2_STRIPY83 897.448 1.01785 -2.21196e-07 0.926208
+FPMW_DET2_STRIPY84 686.414 1.02276 -5.94663e-07 0.91867
+FPMW_DET2_STRIPY85 847.937 1.01273 -3.85331e-07 0.924336
+FPMW_DET2_STRIPY86 703.215 1.01032 -2.66689e-07 0.937679
+FPMW_DET2_STRIPY87 485.216 1.02942 -7.17239e-07 0.910264
+FPMW_DET2_STRIPY88 666.664 1.05417 -9.73293e-07 0.888851
+FPMW_DET2_STRIPY89 468.841 1.07948 -1.64027e-06 0.855636
+FPMW_DET2_STRIPY90 529.845 1.21988 -4.35194e-06 0.798351
+FPMW_DET2_STRIPY91 583.351 1.44834 -9.17679e-06 1.41191
diff --git a/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW3_X.cal b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW3_X.cal
new file mode 100644
index 0000000000000000000000000000000000000000..13a392df79a0cfff254d60b5eb24c9e791f298f9
--- /dev/null
+++ b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW3_X.cal
@@ -0,0 +1,992 @@
+FPMW_DET3_STRIPX0 331.069 0.623858 3.29729e-05 1.9383
+FPMW_DET3_STRIPX1 535.41 0.963152 7.30136e-06 0.515956
+FPMW_DET3_STRIPX2 580.776 1.00222 3.0513e-06 0.926985
+FPMW_DET3_STRIPX3 779.539 1.06685 9.94878e-07 1.38872
+FPMW_DET3_STRIPX4 727.149 1.03449 8.45574e-07 1.26408
+FPMW_DET3_STRIPX5 752.039 1.0605 1.90819e-07 1.641
+FPMW_DET3_STRIPX6 569.276 1.02274 7.04755e-07 1.25213
+FPMW_DET3_STRIPX7 635.475 1.09581 -7.30503e-07 1.56544
+FPMW_DET3_STRIPX8 323.398 1.04214 4.78714e-07 1.19514
+FPMW_DET3_STRIPX9 671.43 1.08907 -1.86422e-06 1.45596
+FPMW_DET3_STRIPX10 696.755 1.02673 -4.2921e-07 1.55314
+FPMW_DET3_STRIPX11 422.888 1.05177 1.96976e-07 1.45122
+FPMW_DET3_STRIPX12 552.677 1.02949 -7.40103e-07 1.32673
+FPMW_DET3_STRIPX13 425.877 1.05208 -1.47496e-07 1.32446
+FPMW_DET3_STRIPX14 887.308 1.0073 -1.04292e-06 1.47116
+FPMW_DET3_STRIPX15 505.221 1.03232 1.14466e-06 1.26421
+FPMW_DET3_STRIPX16 506.4 1.07159 1.69481e-06 1.01102
+FPMW_DET3_STRIPX17 390.765 1.06686 1.02364e-06 1.48228
+FPMW_DET3_STRIPX18 493.973 1.04926 -4.93699e-07 0.907053
+FPMW_DET3_STRIPX19 863.731 1.09562 -2.94917e-06 1.03391
+FPMW_DET3_STRIPX20 732.914 1.02269 1.56138e-06 1.08075
+FPMW_DET3_STRIPX21 851.886 1.08001 -1.00902e-06 1.04173
+FPMW_DET3_STRIPX22 513.419 1.02825 2.57041e-06 1.04843
+FPMW_DET3_STRIPX23 696.608 1.06505 -1.40235e-06 1.1578
+FPMW_DET3_STRIPX24 667.703 1.02509 6.13606e-07 1.04066
+FPMW_DET3_STRIPX25 574.777 1.06217 7.89802e-07 0.979174
+FPMW_DET3_STRIPX26 792.22 1.02835 -1.01752e-06 1.02736
+FPMW_DET3_STRIPX27 724.04 1.03744 7.5549e-07 1.04982
+FPMW_DET3_STRIPX28 527.715 1.01193 1.86964e-06 0.957553
+FPMW_DET3_STRIPX29 654.745 1.04729 -5.30731e-07 1.05726
+FPMW_DET3_STRIPX30 593.65 0.995054 1.57296e-06 0.978126
+FPMW_DET3_STRIPX31 604.269 1.02867 9.34523e-07 1.04155
+FPMW_DET3_STRIPX32 544.18 1.00961 -2.44753e-09 1.21155
+FPMW_DET3_STRIPX33 680.059 1.03424 -3.96288e-07 1.17459
+FPMW_DET3_STRIPX34 836.74 0.975723 3.03685e-07 1.57452
+FPMW_DET3_STRIPX35 627.558 0.99425 1.53812e-07 1.11287
+FPMW_DET3_STRIPX36 886.143 0.983917 3.65397e-07 1.48063
+FPMW_DET3_STRIPX37 856.508 1.02062 1.10775e-07 1.09766
+FPMW_DET3_STRIPX38 861.302 0.972716 6.75488e-07 1.46787
+FPMW_DET3_STRIPX39 731.605 1.0059 3.25854e-07 1.19053
+FPMW_DET3_STRIPX40 832.069 0.973089 5.93611e-07 1.43757
+FPMW_DET3_STRIPX41 665.53 1.00115 4.41268e-07 1.23139
+FPMW_DET3_STRIPX42 763.487 0.968399 7.17015e-07 1.41348
+FPMW_DET3_STRIPX43 743.967 0.983235 4.56847e-07 1.20929
+FPMW_DET3_STRIPX44 763.499 0.950438 7.5101e-07 1.10162
+FPMW_DET3_STRIPX45 579.335 0.988258 4.60855e-07 0.968598
+FPMW_DET3_STRIPX46 624.335 0.938519 8.43008e-07 1.31371
+FPMW_DET3_STRIPX47 477.814 0.975959 9.44417e-07 1.09359
+FPMW_DET3_STRIPX48 560.149 0.980286 3.90305e-07 1.52458
+FPMW_DET3_STRIPX49 624.233 1.01236 1.33209e-07 1.05203
+FPMW_DET3_STRIPX50 515.663 0.979061 4.3318e-07 1.09883
+FPMW_DET3_STRIPX51 613.154 1.00517 1.31697e-07 1.25915
+FPMW_DET3_STRIPX52 786.812 0.979765 6.19532e-07 1.12283
+FPMW_DET3_STRIPX53 561.089 0.983372 5.9664e-07 1.18179
+FPMW_DET3_STRIPX54 656.322 0.955814 8.35365e-07 1.14039
+FPMW_DET3_STRIPX55 1055.38 0.992365 9.26471e-07 1.10011
+FPMW_DET3_STRIPX56 759.169 0.956534 7.21422e-07 1.19979
+FPMW_DET3_STRIPX57 518.784 0.995008 3.18935e-07 1.18259
+FPMW_DET3_STRIPX58 787.625 0.968516 9.77596e-07 1.06594
+FPMW_DET3_STRIPX59 757.211 0.989282 8.29137e-07 1.21875
+FPMW_DET3_STRIPX60 601.835 0.938171 1.41188e-06 1.11166
+FPMW_DET3_STRIPX61 529.613 0.970862 1.14249e-06 1.31309
+FPMW_DET3_STRIPX62 648.962 0.92413 1.54164e-06 1.11948
+FPMW_DET3_STRIPX63 670.911 0.964671 1.37079e-06 1.13063
+FPMW_DET3_STRIPX64 594.118 0.939854 8.50943e-07 1.3902
+FPMW_DET3_STRIPX65 797.555 0.94771 8.23344e-07 1.42286
+FPMW_DET3_STRIPX66 841.841 0.930993 1.07433e-06 1.37033
+FPMW_DET3_STRIPX67 699.707 0.977963 5.06594e-07 1.25553
+FPMW_DET3_STRIPX68 818.741 0.943761 8.27921e-07 1.32617
+FPMW_DET3_STRIPX69 990.797 0.972213 4.56617e-07 1.37734
+FPMW_DET3_STRIPX70 923.627 0.921908 1.25559e-06 1.41726
+FPMW_DET3_STRIPX71 731.576 0.959092 5.37732e-07 1.32412
+FPMW_DET3_STRIPX72 669.309 0.928902 6.6866e-07 1.47686
+FPMW_DET3_STRIPX73 667.024 0.964127 4.07613e-07 1.26674
+FPMW_DET3_STRIPX74 733.884 0.910077 1.32857e-06 1.55977
+FPMW_DET3_STRIPX75 544.322 0.950282 1.06291e-06 1.37027
+FPMW_DET3_STRIPX76 506.33 0.916276 1.03465e-06 1.37129
+FPMW_DET3_STRIPX77 778.765 0.946235 1.2755e-06 1.34512
+FPMW_DET3_STRIPX78 699.771 0.900142 1.6595e-06 1.40851
+FPMW_DET3_STRIPX79 848.124 0.934094 1.42597e-06 1.22985
+FPMW_DET3_STRIPX80 882.721 0.909013 9.99794e-07 1.39847
+FPMW_DET3_STRIPX81 735.112 0.936473 6.49876e-07 1.60036
+FPMW_DET3_STRIPX82 825.49 0.905539 8.33064e-07 1.33626
+FPMW_DET3_STRIPX83 956.097 0.948294 6.22197e-07 1.379
+FPMW_DET3_STRIPX84 898.9 0.91017 1.00074e-06 1.5226
+FPMW_DET3_STRIPX85 612.24 0.953152 3.9949e-07 1.39752
+FPMW_DET3_STRIPX86 534.74 0.913425 6.45615e-07 1.42964
+FPMW_DET3_STRIPX87 880.57 0.936215 6.80747e-07 1.64358
+FPMW_DET3_STRIPX88 1025.29 0.903614 1.06699e-06 1.40581
+FPMW_DET3_STRIPX89 697.811 0.940828 6.01491e-07 1.48573
+FPMW_DET3_STRIPX90 846.105 0.898104 9.3016e-07 1.35784
+FPMW_DET3_STRIPX91 917.681 0.929081 9.58734e-07 1.46025
+FPMW_DET3_STRIPX92 646.61 0.894712 1.00873e-06 1.24854
+FPMW_DET3_STRIPX93 725.103 0.926973 7.27896e-07 1.51246
+FPMW_DET3_STRIPX94 989.289 0.885654 1.40851e-06 1.0859
+FPMW_DET3_STRIPX95 533.566 0.921583 9.22961e-07 0.911394
+FPMW_DET3_STRIPX96 859.764 0.946387 1.0664e-06 0.868477
+FPMW_DET3_STRIPX97 1155.76 0.984797 9.47784e-07 0.895579
+FPMW_DET3_STRIPX98 730.204 0.956545 6.94463e-07 0.934442
+FPMW_DET3_STRIPX99 642.972 0.97787 5.80888e-07 0.919334
+FPMW_DET3_STRIPX100 981.829 0.944405 1.08323e-06 0.952223
+FPMW_DET3_STRIPX101 1144.61 0.981611 8.1738e-07 0.861153
+FPMW_DET3_STRIPX102 685.126 0.947771 7.4498e-07 0.90779
+FPMW_DET3_STRIPX103 852.158 0.983506 4.24476e-07 0.920618
+FPMW_DET3_STRIPX104 889.102 0.943538 1.14862e-06 0.913407
+FPMW_DET3_STRIPX105 856.157 0.979899 5.32464e-07 0.945495
+FPMW_DET3_STRIPX106 1152.22 0.940555 1.44849e-06 0.872111
+FPMW_DET3_STRIPX107 613.708 0.97041 6.5641e-07 0.878855
+FPMW_DET3_STRIPX108 960.205 0.924956 1.29496e-06 0.910076
+FPMW_DET3_STRIPX109 881.201 0.961503 1.05505e-06 0.863174
+FPMW_DET3_STRIPX110 984.067 0.918881 1.90963e-06 0.892347
+FPMW_DET3_STRIPX111 952.417 0.96269 1.53049e-06 0.839952
+FPMW_DET3_STRIPX112 521.43 0.905117 8.56741e-07 1.09153
+FPMW_DET3_STRIPX113 1055.85 0.93702 1.14388e-06 1.21595
+FPMW_DET3_STRIPX114 827.027 0.913087 1.16989e-06 1.08981
+FPMW_DET3_STRIPX115 920.744 0.941292 1.00693e-06 1.37572
+FPMW_DET3_STRIPX116 1043.83 0.902146 1.37488e-06 1.06271
+FPMW_DET3_STRIPX117 1044.74 0.93616 1.19542e-06 1.27868
+FPMW_DET3_STRIPX118 832.163 0.904201 1.73239e-06 1.18907
+FPMW_DET3_STRIPX119 893.325 0.940728 1.27132e-06 1.31323
+FPMW_DET3_STRIPX120 662.966 0.8925 1.38787e-06 1.32059
+FPMW_DET3_STRIPX121 963.299 0.943626 1.2395e-06 1.30595
+FPMW_DET3_STRIPX122 718.126 0.91744 1.36981e-06 1.11799
+FPMW_DET3_STRIPX123 1162.67 0.940474 1.62152e-06 1.22951
+FPMW_DET3_STRIPX124 882.034 0.897421 1.69898e-06 1.16562
+FPMW_DET3_STRIPX125 958.315 0.926116 1.55759e-06 1.20088
+FPMW_DET3_STRIPX126 862.829 0.878004 2.04927e-06 1.19081
+FPMW_DET3_STRIPX127 905.593 0.917229 1.85225e-06 1.2759
+FPMW_DET3_STRIPX128 970.563 0.943277 4.85108e-07 1.14219
+FPMW_DET3_STRIPX129 911.389 0.96995 4.21004e-07 1.1973
+FPMW_DET3_STRIPX130 909.709 0.936405 5.75024e-07 1.11324
+FPMW_DET3_STRIPX131 908.067 0.972782 3.34178e-07 1.20343
+FPMW_DET3_STRIPX132 1006.8 0.922471 1.21457e-06 1.21396
+FPMW_DET3_STRIPX133 1049.89 0.955597 8.22955e-07 1.2257
+FPMW_DET3_STRIPX134 1019.21 0.92688 9.01401e-07 1.10512
+FPMW_DET3_STRIPX135 990.22 0.964826 7.14223e-07 1.2004
+FPMW_DET3_STRIPX136 980.934 0.927314 1.26096e-06 1.22318
+FPMW_DET3_STRIPX137 877.786 0.963805 7.35797e-07 1.14696
+FPMW_DET3_STRIPX138 699.378 0.932561 1.11785e-06 1.17201
+FPMW_DET3_STRIPX139 1125.04 0.954947 1.34366e-06 1.19663
+FPMW_DET3_STRIPX140 498.13 0.91177 1.19421e-06 1.26349
+FPMW_DET3_STRIPX141 880.245 0.944198 1.13311e-06 1.25342
+FPMW_DET3_STRIPX142 732.877 0.902347 1.49831e-06 1.24628
+FPMW_DET3_STRIPX143 684.562 0.937566 1.32905e-06 1.06716
+FPMW_DET3_STRIPX144 616.934 0.938636 3.74442e-07 0.894152
+FPMW_DET3_STRIPX145 1093.45 0.966363 6.84361e-07 0.887931
+FPMW_DET3_STRIPX146 934.126 0.939087 6.34864e-07 1.07868
+FPMW_DET3_STRIPX147 992.963 0.968647 5.55096e-07 1.04137
+FPMW_DET3_STRIPX148 1224.18 0.933638 1.14394e-06 1.08613
+FPMW_DET3_STRIPX149 1007.8 0.97892 5.88288e-07 0.963338
+FPMW_DET3_STRIPX150 1204.9 0.926331 1.35503e-06 1.16111
+FPMW_DET3_STRIPX151 891.911 0.974431 6.06544e-07 1.16101
+FPMW_DET3_STRIPX152 913.326 0.943372 1.06726e-06 1.04296
+FPMW_DET3_STRIPX153 1138.41 0.975441 9.18475e-07 0.931273
+FPMW_DET3_STRIPX154 604.389 0.927188 1.10846e-06 1.06035
+FPMW_DET3_STRIPX155 785.949 0.920108 1.41691e-06 1.21627
+FPMW_DET3_STRIPX156 677.176 0.666553 3.41214e-06 1.4124
+FPMW_DET3_STRIPX157 740.433 47.6228 -0.0170176 1
+FPMW_DET3_STRIPX158 913.23 0.641244 4.1874e-06 1.3005
+FPMW_DET3_STRIPX159 923.43 0.917654 2.03215e-06 1.04765
+FPMW_DET3_STRIPX160 459.895 0.945582 4.33195e-07 1.2643
+FPMW_DET3_STRIPX161 587.513 0.982513 2.74323e-07 1.251
+FPMW_DET3_STRIPX162 934.332 0.932475 1.0173e-06 1.223
+FPMW_DET3_STRIPX163 882.614 0.976886 4.74035e-07 1.33699
+FPMW_DET3_STRIPX164 784.331 0.941105 8.51173e-07 1.37559
+FPMW_DET3_STRIPX165 571.476 0.991549 2.13994e-07 1.16213
+FPMW_DET3_STRIPX166 801.597 0.958596 7.4372e-07 1.24511
+FPMW_DET3_STRIPX167 926.252 0.984326 5.14557e-07 1.22252
+FPMW_DET3_STRIPX168 645.99 0.94623 9.87319e-07 1.29495
+FPMW_DET3_STRIPX169 763.5 0.984803 7.65899e-07 1.13883
+FPMW_DET3_STRIPX170 425.591 0.945921 7.95618e-07 1.41088
+FPMW_DET3_STRIPX171 521.493 0.97607 8.18067e-07 1.24848
+FPMW_DET3_STRIPX172 620.453 0.939408 9.36579e-07 1.3375
+FPMW_DET3_STRIPX173 694.11 0.965189 7.91472e-07 1.1987
+FPMW_DET3_STRIPX174 871.843 0.917843 1.38567e-06 1.30704
+FPMW_DET3_STRIPX175 740.953 0.963463 1.08013e-06 1.19449
+FPMW_DET3_STRIPX176 588.364 0.933077 5.13685e-07 1.30086
+FPMW_DET3_STRIPX177 579.856 0.969509 2.44474e-07 1.40299
+FPMW_DET3_STRIPX178 784.452 0.935754 7.2761e-07 1.4318
+FPMW_DET3_STRIPX179 632.729 0.971198 3.4372e-07 1.24883
+FPMW_DET3_STRIPX180 780.224 0.940269 6.73674e-07 1.4077
+FPMW_DET3_STRIPX181 471.822 0.979232 8.43356e-08 1.31232
+FPMW_DET3_STRIPX182 660.814 0.94143 7.38239e-07 1.31826
+FPMW_DET3_STRIPX183 633.99 0.990218 3.90758e-07 1.32152
+FPMW_DET3_STRIPX184 486.542 0.940696 9.51364e-07 1.41627
+FPMW_DET3_STRIPX185 532.853 0.953855 8.78139e-07 1.33772
+FPMW_DET3_STRIPX186 583.08 0.940696 9.00218e-07 1.32886
+FPMW_DET3_STRIPX187 778.768 0.975995 8.61417e-07 1.29745
+FPMW_DET3_STRIPX188 440.38 0.927515 1.07778e-06 1.41621
+FPMW_DET3_STRIPX189 521.303 0.958985 6.05935e-07 1.34586
+FPMW_DET3_STRIPX190 485.983 0.912456 1.33136e-06 1.56835
+FPMW_DET3_STRIPX191 878.406 0.95976 1.03365e-06 1.19738
+FPMW_DET3_STRIPX192 595.484 0.953498 6.95535e-07 1.50125
+FPMW_DET3_STRIPX193 650.953 0.994924 3.43798e-07 1.23565
+FPMW_DET3_STRIPX194 729.546 0.955536 8.66929e-07 1.34078
+FPMW_DET3_STRIPX195 759.807 0.996571 5.46532e-07 1.17765
+FPMW_DET3_STRIPX196 837.626 0.961386 1.10315e-06 1.28176
+FPMW_DET3_STRIPX197 547.918 1.01787 3.82152e-07 1.23514
+FPMW_DET3_STRIPX198 771.947 0.962675 8.42942e-07 1.37238
+FPMW_DET3_STRIPX199 1000.22 1.00185 7.28468e-07 1.30854
+FPMW_DET3_STRIPX200 869.881 0.965126 1.08487e-06 1.16433
+FPMW_DET3_STRIPX201 633.363 0.991856 6.24016e-07 1.2676
+FPMW_DET3_STRIPX202 497.729 0.955406 9.63276e-07 1.27874
+FPMW_DET3_STRIPX203 870.257 0.966541 9.93869e-07 1.92078
+FPMW_DET3_STRIPX204 722.318 0.937282 1.14354e-06 1.06401
+FPMW_DET3_STRIPX205 727.727 0.989765 8.26998e-07 1.33242
+FPMW_DET3_STRIPX206 472.773 0.928266 1.43e-06 1.49635
+FPMW_DET3_STRIPX207 762.856 0.961863 1.151e-06 1.25846
+FPMW_DET3_STRIPX208 674.546 0.989432 1.47717e-07 1.03045
+FPMW_DET3_STRIPX209 972.156 1.02542 1.14037e-07 1.00791
+FPMW_DET3_STRIPX210 558.758 0.989171 1.97872e-07 1.1009
+FPMW_DET3_STRIPX211 709.477 1.01934 -1.1115e-08 0.990399
+FPMW_DET3_STRIPX212 720.972 0.956475 6.86511e-07 1.18271
+FPMW_DET3_STRIPX213 713.977 1.00327 1.8559e-07 1.01665
+FPMW_DET3_STRIPX214 432.106 0.987459 1.58026e-07 1.11034
+FPMW_DET3_STRIPX215 936.355 1.0308 6.08524e-08 1.00594
+FPMW_DET3_STRIPX216 698.6 0.989657 3.03225e-07 1.04509
+FPMW_DET3_STRIPX217 582.404 1.00417 6.9795e-09 1.00393
+FPMW_DET3_STRIPX218 620.963 0.968454 5.90778e-07 1.07663
+FPMW_DET3_STRIPX219 631.594 0.997573 3.61483e-07 1.0338
+FPMW_DET3_STRIPX220 784.611 0.959124 8.93679e-07 0.959249
+FPMW_DET3_STRIPX221 715.276 1.00229 3.85071e-07 1.05505
+FPMW_DET3_STRIPX222 759.101 0.938469 8.24064e-07 1.0343
+FPMW_DET3_STRIPX223 971.644 0.980713 7.97215e-07 0.982623
+FPMW_DET3_STRIPX224 710.65 1.09155 1.2194e-06 0.973023
+FPMW_DET3_STRIPX225 620.236 1.12304 6.97575e-07 1.05992
+FPMW_DET3_STRIPX226 785.078 1.06967 9.90429e-07 0.949219
+FPMW_DET3_STRIPX227 799.136 1.10368 8.03013e-07 0.958235
+FPMW_DET3_STRIPX228 475.697 1.06702 9.45229e-07 1.06278
+FPMW_DET3_STRIPX229 735.665 1.10621 6.6364e-07 0.904696
+FPMW_DET3_STRIPX230 531.038 1.06786 1.02181e-06 1.06814
+FPMW_DET3_STRIPX231 855.686 1.11789 1.25477e-06 0.890391
+FPMW_DET3_STRIPX232 641.533 1.04222 1.18712e-06 0.973786
+FPMW_DET3_STRIPX233 734.612 1.08696 1.01406e-06 1.01636
+FPMW_DET3_STRIPX234 703.173 1.03788 1.5309e-06 1.01514
+FPMW_DET3_STRIPX235 802.467 1.09302 1.27411e-06 0.994923
+FPMW_DET3_STRIPX236 727.616 1.03663 1.65061e-06 0.968658
+FPMW_DET3_STRIPX237 470.001 1.08589 9.62542e-07 1.04163
+FPMW_DET3_STRIPX238 757.796 1.03323 1.83683e-06 0.996019
+FPMW_DET3_STRIPX239 767.581 1.06165 1.60006e-06 0.928609
+FPMW_DET3_STRIPX240 779.986 1.08332 9.28447e-07 0.969754
+FPMW_DET3_STRIPX241 761.222 1.13661 4.18906e-07 1.03434
+FPMW_DET3_STRIPX242 725.887 1.09903 9.63294e-07 0.867122
+FPMW_DET3_STRIPX243 994.581 1.13956 9.32045e-07 0.946078
+FPMW_DET3_STRIPX244 769.161 1.10599 7.22046e-07 0.906722
+FPMW_DET3_STRIPX245 884.819 1.16836 5.63392e-07 0.921939
+FPMW_DET3_STRIPX246 891.49 1.12707 1.16522e-06 0.908159
+FPMW_DET3_STRIPX247 890.651 1.17149 8.29216e-07 0.908022
+FPMW_DET3_STRIPX248 759.522 1.12278 6.53678e-07 0.984663
+FPMW_DET3_STRIPX249 482.606 1.16924 2.29642e-07 0.983727
+FPMW_DET3_STRIPX250 696.951 1.12152 8.90883e-07 0.929104
+FPMW_DET3_STRIPX251 779.232 1.16651 9.74518e-07 0.997888
+FPMW_DET3_STRIPX252 796.403 1.10888 1.33992e-06 0.95314
+FPMW_DET3_STRIPX253 425.294 1.15131 8.25326e-07 0.961694
+FPMW_DET3_STRIPX254 556.681 1.09357 1.52108e-06 0.996581
+FPMW_DET3_STRIPX255 811.847 1.14334 1.28982e-06 0.801157
+FPMW_DET3_STRIPX256 695.543 1.13465 6.27156e-07 0.955449
+FPMW_DET3_STRIPX257 562.983 1.18027 4.56362e-07 0.887667
+FPMW_DET3_STRIPX258 625.801 1.13839 6.3539e-07 0.960768
+FPMW_DET3_STRIPX259 765.956 1.17782 5.70194e-07 0.819764
+FPMW_DET3_STRIPX260 734.95 1.12901 9.85723e-07 0.965344
+FPMW_DET3_STRIPX261 507.749 1.17468 2.89139e-07 0.93886
+FPMW_DET3_STRIPX262 862.548 1.12764 1.13739e-06 0.919606
+FPMW_DET3_STRIPX263 623.286 1.16812 5.3292e-07 0.873408
+FPMW_DET3_STRIPX264 766.843 1.12316 1.08927e-06 0.920332
+FPMW_DET3_STRIPX265 865.731 1.15933 8.38233e-07 0.877504
+FPMW_DET3_STRIPX266 757.796 1.11992 1.1407e-06 0.907594
+FPMW_DET3_STRIPX267 680.383 1.15537 1.0622e-06 0.914667
+FPMW_DET3_STRIPX268 498.437 1.10351 1.28736e-06 0.961997
+FPMW_DET3_STRIPX269 667.866 1.14782 1.10219e-06 0.935836
+FPMW_DET3_STRIPX270 557.148 1.07691 1.83843e-06 0.954788
+FPMW_DET3_STRIPX271 587.307 1.13504 1.53709e-06 0.816596
+FPMW_DET3_STRIPX272 672.184 1.12896 7.53775e-07 1.19857
+FPMW_DET3_STRIPX273 953.008 1.17653 5.44409e-07 1.00623
+FPMW_DET3_STRIPX274 710.636 1.13767 8.2005e-07 1.11388
+FPMW_DET3_STRIPX275 616.735 1.19083 3.70931e-07 1.11937
+FPMW_DET3_STRIPX276 557.359 1.14475 5.08822e-07 1.04219
+FPMW_DET3_STRIPX277 633.834 1.16667 4.26371e-07 1.17145
+FPMW_DET3_STRIPX278 494.361 1.11088 8.47001e-07 1.12346
+FPMW_DET3_STRIPX279 554.383 1.1494 6.68605e-07 1.1313
+FPMW_DET3_STRIPX280 704.085 1.11722 1.23687e-06 1.12582
+FPMW_DET3_STRIPX281 523.716 1.17074 5.97184e-07 1.21898
+FPMW_DET3_STRIPX282 428.435 1.12807 9.70107e-07 1.10265
+FPMW_DET3_STRIPX283 458.562 1.17431 2.82116e-07 1.16977
+FPMW_DET3_STRIPX284 748.155 1.10857 1.0732e-06 1.13186
+FPMW_DET3_STRIPX285 818.02 1.1594 7.23347e-07 1.04162
+FPMW_DET3_STRIPX286 664.119 1.10013 9.85665e-07 1.01323
+FPMW_DET3_STRIPX287 656.741 1.1359 7.50123e-07 1.10973
+FPMW_DET3_STRIPX288 284.355 1.15712 2.8652e-07 0.984622
+FPMW_DET3_STRIPX289 432.465 1.23299 -5.47655e-07 0.886849
+FPMW_DET3_STRIPX290 405.169 1.16864 1.34817e-07 0.863539
+FPMW_DET3_STRIPX291 239.436 1.1812 1.54262e-07 0.948294
+FPMW_DET3_STRIPX292 430.791 1.12411 5.58067e-07 1.09176
+FPMW_DET3_STRIPX293 435.57 1.18225 8.44376e-08 0.864068
+FPMW_DET3_STRIPX294 525.108 1.14936 8.49934e-08 0.962649
+FPMW_DET3_STRIPX295 268.742 1.2042 -3.8349e-07 0.820099
+FPMW_DET3_STRIPX296 408.528 1.13757 7.42229e-07 1.07357
+FPMW_DET3_STRIPX297 274.343 1.18443 -2.81515e-07 0.923113
+FPMW_DET3_STRIPX298 570.031 1.1293 7.58836e-07 0.861407
+FPMW_DET3_STRIPX299 527.844 1.16349 5.97643e-07 0.966639
+FPMW_DET3_STRIPX300 463.897 1.10357 1.35048e-06 0.897243
+FPMW_DET3_STRIPX301 572.614 1.11005 9.84164e-07 1.78807
+FPMW_DET3_STRIPX302 187.481 1.1078 8.5707e-07 1.86767
+FPMW_DET3_STRIPX303 500.364 1.1444 1.13231e-06 0.842586
+FPMW_DET3_STRIPX304 495.546 1.13585 7.31545e-07 0.806071
+FPMW_DET3_STRIPX305 598.207 1.18125 4.00389e-07 0.746222
+FPMW_DET3_STRIPX306 600.356 1.13546 7.00517e-07 0.808225
+FPMW_DET3_STRIPX307 700.12 1.18098 3.47558e-07 0.732471
+FPMW_DET3_STRIPX308 401.076 1.13152 7.38496e-07 0.799646
+FPMW_DET3_STRIPX309 494.74 1.17176 4.39056e-07 0.748741
+FPMW_DET3_STRIPX310 637.368 1.13222 9.87198e-07 0.813351
+FPMW_DET3_STRIPX311 856.929 1.14644 1.11275e-06 0.790569
+FPMW_DET3_STRIPX312 559.806 1.10488 1.53544e-06 0.791432
+FPMW_DET3_STRIPX313 455.497 1.18517 5.21988e-07 0.767551
+FPMW_DET3_STRIPX314 486.533 1.11291 1.24842e-06 0.774969
+FPMW_DET3_STRIPX315 804.516 1.12487 1.65245e-06 0.849745
+FPMW_DET3_STRIPX316 756.288 1.09513 1.80599e-06 0.792667
+FPMW_DET3_STRIPX317 478.492 1.13418 1.47255e-06 0.739106
+FPMW_DET3_STRIPX318 663.226 1.06779 2.3589e-06 0.804585
+FPMW_DET3_STRIPX319 839.642 1.10827 2.34595e-06 0.731052
+FPMW_DET3_STRIPX320 619.581 1.03277 1.90941e-07 0.9259
+FPMW_DET3_STRIPX321 550.354 1.04954 -1.38722e-08 0.928741
+FPMW_DET3_STRIPX322 856.079 1.00798 5.53249e-07 0.89868
+FPMW_DET3_STRIPX323 941.429 1.03873 3.63901e-07 0.870628
+FPMW_DET3_STRIPX324 596.295 0.99193 5.97164e-07 0.978242
+FPMW_DET3_STRIPX325 682.332 1.03077 3.15681e-07 0.906189
+FPMW_DET3_STRIPX326 496.248 0.987245 9.85294e-07 0.97001
+FPMW_DET3_STRIPX327 960.854 1.0278 7.79723e-07 0.936335
+FPMW_DET3_STRIPX328 735.523 0.993054 1.08133e-06 0.935401
+FPMW_DET3_STRIPX329 542.996 1.02072 6.55247e-07 0.910106
+FPMW_DET3_STRIPX330 744.919 0.970113 1.3222e-06 0.981095
+FPMW_DET3_STRIPX331 471.355 1.00989 8.93621e-07 0.916036
+FPMW_DET3_STRIPX332 702.647 0.967255 1.47187e-06 0.887634
+FPMW_DET3_STRIPX333 622.92 0.998418 1.19458e-06 0.963477
+FPMW_DET3_STRIPX334 539.936 0.941839 1.60551e-06 0.983173
+FPMW_DET3_STRIPX335 748.725 0.99141 1.31449e-06 0.856885
+FPMW_DET3_STRIPX336 1027.67 0.996069 4.34824e-07 0.964291
+FPMW_DET3_STRIPX337 858.508 1.03925 2.29038e-07 0.898202
+FPMW_DET3_STRIPX338 1190.9 1.00067 8.48383e-07 0.87081
+FPMW_DET3_STRIPX339 938.271 1.03662 4.51706e-07 0.921204
+FPMW_DET3_STRIPX340 851.467 0.996808 8.44161e-07 0.980757
+FPMW_DET3_STRIPX341 1114.07 1.03879 8.51725e-07 0.864495
+FPMW_DET3_STRIPX342 941.156 0.999853 7.19137e-07 0.916019
+FPMW_DET3_STRIPX343 1074.01 1.04282 6.71706e-07 0.869958
+FPMW_DET3_STRIPX344 1154.57 0.994474 1.20856e-06 0.912119
+FPMW_DET3_STRIPX345 1051.62 1.02365 9.61362e-07 0.863018
+FPMW_DET3_STRIPX346 1096.86 1.00059 1.12577e-06 0.825291
+FPMW_DET3_STRIPX347 978.748 1.02699 8.68152e-07 0.911182
+FPMW_DET3_STRIPX348 1172.73 0.983811 1.37248e-06 0.929169
+FPMW_DET3_STRIPX349 961.95 1.01794 1.04536e-06 0.851976
+FPMW_DET3_STRIPX350 872.579 0.958136 1.61813e-06 0.952131
+FPMW_DET3_STRIPX351 451.976 1.02102 9.38031e-07 0.969339
+FPMW_DET3_STRIPX352 384.161 1.02463 6.38283e-07 0.902282
+FPMW_DET3_STRIPX353 694.767 1.06985 5.65629e-07 0.782837
+FPMW_DET3_STRIPX354 919.054 1.01297 8.1873e-07 0.860612
+FPMW_DET3_STRIPX355 657.083 1.04024 5.28258e-07 0.907134
+FPMW_DET3_STRIPX356 513.953 1.01337 7.88046e-07 0.891458
+FPMW_DET3_STRIPX357 583.524 1.0444 7.02432e-07 0.890216
+FPMW_DET3_STRIPX358 783.302 1.0012 9.61366e-07 1.02605
+FPMW_DET3_STRIPX359 701.948 1.04462 7.33446e-07 0.841577
+FPMW_DET3_STRIPX360 967.065 1.01552 1.05929e-06 0.774405
+FPMW_DET3_STRIPX361 1072.21 1.05451 9.45077e-07 0.736504
+FPMW_DET3_STRIPX362 1096.17 1.01748 1.11964e-06 0.839798
+FPMW_DET3_STRIPX363 726.22 1.04984 7.13443e-07 0.767958
+FPMW_DET3_STRIPX364 840.712 1.01017 1.31535e-06 0.84138
+FPMW_DET3_STRIPX365 991.259 1.04281 1.12173e-06 0.748231
+FPMW_DET3_STRIPX366 794.614 0.992564 1.04885e-06 0.863652
+FPMW_DET3_STRIPX367 1261.62 1.04041 1.77516e-06 0.807491
+FPMW_DET3_STRIPX368 670.468 1.05488 5.26141e-07 0.796769
+FPMW_DET3_STRIPX369 726.904 1.06444 7.26769e-07 0.855848
+FPMW_DET3_STRIPX370 673.077 1.03884 5.5446e-07 0.940325
+FPMW_DET3_STRIPX371 575.661 1.08638 3.9056e-07 0.904738
+FPMW_DET3_STRIPX372 803.24 1.04801 6.08387e-07 0.873907
+FPMW_DET3_STRIPX373 594.993 1.06919 4.98248e-07 0.899732
+FPMW_DET3_STRIPX374 933.228 1.02565 7.9626e-07 0.883945
+FPMW_DET3_STRIPX375 889.608 1.08399 6.38815e-07 0.837109
+FPMW_DET3_STRIPX376 951.479 1.02905 9.36322e-07 0.841871
+FPMW_DET3_STRIPX377 716.287 1.05217 6.56199e-07 0.904177
+FPMW_DET3_STRIPX378 695.582 1.01276 9.98387e-07 0.942025
+FPMW_DET3_STRIPX379 805.113 1.03635 8.6087e-07 0.768697
+FPMW_DET3_STRIPX380 441.156 0.995726 9.82414e-07 0.993101
+FPMW_DET3_STRIPX381 797.954 1.02135 1.39945e-06 0.844829
+FPMW_DET3_STRIPX382 762.247 0.97789 1.54902e-06 0.887569
+FPMW_DET3_STRIPX383 721.626 1.01772 1.36921e-06 0.843023
+FPMW_DET3_STRIPX384 570.832 0.990795 2.93143e-07 1.07323
+FPMW_DET3_STRIPX385 633.421 1.02445 1.00666e-07 1.08034
+FPMW_DET3_STRIPX386 1083.3 0.983564 8.43203e-07 0.997162
+FPMW_DET3_STRIPX387 669.719 1.02952 4.47581e-07 1.01338
+FPMW_DET3_STRIPX388 787.604 0.986414 6.00641e-07 0.984926
+FPMW_DET3_STRIPX389 406.194 1.02674 1.95417e-07 1.18574
+FPMW_DET3_STRIPX390 804.439 0.983289 7.99185e-07 1.01978
+FPMW_DET3_STRIPX391 929.954 1.01746 6.74259e-07 0.979986
+FPMW_DET3_STRIPX392 671.972 0.97298 8.87262e-07 1.03636
+FPMW_DET3_STRIPX393 904.844 0.989224 8.5902e-07 1.93947
+FPMW_DET3_STRIPX394 807.03 0.983905 6.65089e-07 1.92401
+FPMW_DET3_STRIPX395 594.72 0.994573 8.34694e-07 0.939098
+FPMW_DET3_STRIPX396 663.455 0.957524 1.08394e-06 1.11687
+FPMW_DET3_STRIPX397 971.303 0.984811 1.22469e-06 1.07383
+FPMW_DET3_STRIPX398 700.417 0.93435 1.40337e-06 1.1423
+FPMW_DET3_STRIPX399 756.588 0.984416 1.34496e-06 1.05821
+FPMW_DET3_STRIPX400 816.646 1.00098 6.20372e-07 0.793837
+FPMW_DET3_STRIPX401 1083.56 1.02554 7.37396e-07 0.808429
+FPMW_DET3_STRIPX402 946.51 0.983757 9.7362e-07 0.808937
+FPMW_DET3_STRIPX403 979.773 1.03933 7.22064e-07 0.755687
+FPMW_DET3_STRIPX404 695.683 0.997238 7.42035e-07 0.900501
+FPMW_DET3_STRIPX405 806.939 1.02729 7.9198e-07 0.840283
+FPMW_DET3_STRIPX406 1085.94 0.989839 1.09545e-06 0.79509
+FPMW_DET3_STRIPX407 789.896 1.01948 8.94617e-07 0.84175
+FPMW_DET3_STRIPX408 989.509 0.991958 1.22549e-06 0.8339
+FPMW_DET3_STRIPX409 538.772 1.02655 6.92694e-07 0.844099
+FPMW_DET3_STRIPX410 735.677 0.984344 1.34569e-06 0.833114
+FPMW_DET3_STRIPX411 790.852 1.01422 1.09034e-06 0.815047
+FPMW_DET3_STRIPX412 811.96 0.969783 1.49506e-06 0.799162
+FPMW_DET3_STRIPX413 940.709 1.01032 1.15833e-06 0.80253
+FPMW_DET3_STRIPX414 645.35 0.967731 1.74614e-06 0.813194
+FPMW_DET3_STRIPX415 566.27 1.00525 1.45314e-06 0.788144
+FPMW_DET3_STRIPX416 483.595 0.996125 1.57284e-09 1.32952
+FPMW_DET3_STRIPX417 812.989 1.01769 3.15695e-07 1.05205
+FPMW_DET3_STRIPX418 819.842 0.967719 5.57426e-07 1.25066
+FPMW_DET3_STRIPX419 816.746 1.00987 1.84848e-07 0.986386
+FPMW_DET3_STRIPX420 634.656 0.96573 5.96517e-07 1.27992
+FPMW_DET3_STRIPX421 553.238 1.00425 1.11922e-07 1.16019
+FPMW_DET3_STRIPX422 714.629 0.966476 5.29188e-07 1.24106
+FPMW_DET3_STRIPX423 506.022 1.00319 3.25338e-07 1.17291
+FPMW_DET3_STRIPX424 614.041 0.96998 6.49762e-07 1.15874
+FPMW_DET3_STRIPX425 538.17 1.00225 2.97577e-07 1.2519
+FPMW_DET3_STRIPX426 777.596 0.967623 7.54127e-07 1.25861
+FPMW_DET3_STRIPX427 628.357 1.01833 4.16852e-07 1.02525
+FPMW_DET3_STRIPX428 787.414 0.964276 1.12107e-06 1.29697
+FPMW_DET3_STRIPX429 652.492 0.998633 5.91504e-07 1.03657
+FPMW_DET3_STRIPX430 848.474 0.952875 1.21213e-06 1.19536
+FPMW_DET3_STRIPX431 886.966 0.993816 9.2276e-07 1.02568
+FPMW_DET3_STRIPX432 497.637 0.986001 -4.54469e-08 1.37786
+FPMW_DET3_STRIPX433 799.004 1.02432 1.18094e-07 1.08068
+FPMW_DET3_STRIPX434 805.342 0.985348 4.21439e-07 1.19334
+FPMW_DET3_STRIPX435 903.757 1.02725 3.93358e-07 1.14982
+FPMW_DET3_STRIPX436 533.91 0.991453 4.63537e-07 1.18544
+FPMW_DET3_STRIPX437 850.481 1.02598 3.16913e-07 1.16096
+FPMW_DET3_STRIPX438 833.554 0.989275 5.13296e-07 1.04707
+FPMW_DET3_STRIPX439 635.121 1.01769 2.15738e-07 1.20982
+FPMW_DET3_STRIPX440 771.735 0.986033 6.04457e-07 1.1348
+FPMW_DET3_STRIPX441 1074.47 1.014 6.34931e-07 1.06418
+FPMW_DET3_STRIPX442 786.087 0.969158 7.954e-07 1.13565
+FPMW_DET3_STRIPX443 592.008 0.989506 5.27595e-07 1.27799
+FPMW_DET3_STRIPX444 695.095 0.954054 8.87659e-07 1.10763
+FPMW_DET3_STRIPX445 935.099 0.991621 9.39377e-07 1.02661
+FPMW_DET3_STRIPX446 1006.56 0.930357 1.31718e-06 1.01478
+FPMW_DET3_STRIPX447 733.052 0.965386 9.63004e-07 1.17375
+FPMW_DET3_STRIPX448 794.712 0.986825 4.51253e-07 0.929233
+FPMW_DET3_STRIPX449 980.66 1.01051 3.88073e-07 0.870841
+FPMW_DET3_STRIPX450 814.579 0.976218 6.72211e-07 0.891801
+FPMW_DET3_STRIPX451 905.773 1.01462 3.91656e-07 0.973261
+FPMW_DET3_STRIPX452 998.489 0.979959 6.09572e-07 0.902186
+FPMW_DET3_STRIPX453 782.319 1.01323 2.7439e-07 0.875751
+FPMW_DET3_STRIPX454 727.86 0.976145 6.55535e-07 1.00217
+FPMW_DET3_STRIPX455 780.612 1.00987 2.97205e-07 0.877535
+FPMW_DET3_STRIPX456 698.866 0.970228 7.83462e-07 0.939157
+FPMW_DET3_STRIPX457 758.508 1.00616 4.604e-07 0.858408
+FPMW_DET3_STRIPX458 967.561 0.961422 1.16425e-06 0.971552
+FPMW_DET3_STRIPX459 795.01 0.981451 9.8474e-07 0.835438
+FPMW_DET3_STRIPX460 676.741 0.94772 1.40104e-06 0.978898
+FPMW_DET3_STRIPX461 599.234 0.978923 9.16037e-07 1.00103
+FPMW_DET3_STRIPX462 591.016 0.932338 1.27837e-06 0.948255
+FPMW_DET3_STRIPX463 768.84 0.987581 1.21354e-06 0.810009
+FPMW_DET3_STRIPX464 588.12 0.930864 9.62039e-07 1.12301
+FPMW_DET3_STRIPX465 848.397 0.971734 5.9063e-07 1.09629
+FPMW_DET3_STRIPX466 978.037 0.927599 1.16237e-06 1.11437
+FPMW_DET3_STRIPX467 447.582 0.956482 7.49172e-07 1.09004
+FPMW_DET3_STRIPX468 588.56 0.924535 1.10786e-06 1.15875
+FPMW_DET3_STRIPX469 668.373 0.957679 7.95427e-07 1.15095
+FPMW_DET3_STRIPX470 780.988 0.928122 1.37922e-06 1.03255
+FPMW_DET3_STRIPX471 628.629 0.955316 9.55407e-07 1.09735
+FPMW_DET3_STRIPX472 1017.93 0.931558 1.38281e-06 1.05562
+FPMW_DET3_STRIPX473 850.143 0.972252 8.49234e-07 1.05328
+FPMW_DET3_STRIPX474 741.144 0.933617 1.08026e-06 1.1078
+FPMW_DET3_STRIPX475 859.498 0.962516 1.04557e-06 1.00135
+FPMW_DET3_STRIPX476 565.14 0.923965 1.34371e-06 1.21068
+FPMW_DET3_STRIPX477 713.699 0.94785 1.13503e-06 1.05873
+FPMW_DET3_STRIPX478 952.297 0.901632 1.63479e-06 1.07672
+FPMW_DET3_STRIPX479 681.422 0.933953 1.38298e-06 1.2252
+FPMW_DET3_STRIPX480 716.439 88.4789 -0.16279 1
+FPMW_DET3_STRIPX481 840.619 1.0246 7.82829e-07 2.03789
+FPMW_DET3_STRIPX482 538.592 0.962344 8.72091e-07 0.938864
+FPMW_DET3_STRIPX483 632.438 0.982483 8.63031e-07 0.916799
+FPMW_DET3_STRIPX484 898.209 0.940975 1.14889e-06 0.997238
+FPMW_DET3_STRIPX485 877.99 0.975863 9.75473e-07 0.938011
+FPMW_DET3_STRIPX486 839.493 0.940415 1.08245e-06 0.952884
+FPMW_DET3_STRIPX487 681.557 0.983595 9.44049e-07 1.01319
+FPMW_DET3_STRIPX488 977.186 0.932796 1.58111e-06 1.00905
+FPMW_DET3_STRIPX489 838.223 0.962213 1.21577e-06 0.967008
+FPMW_DET3_STRIPX490 862.698 0.932774 1.40526e-06 1.09425
+FPMW_DET3_STRIPX491 787.787 0.970255 1.41926e-06 0.986016
+FPMW_DET3_STRIPX492 707.72 0.930831 1.673e-06 1.08113
+FPMW_DET3_STRIPX493 515.184 0.956013 1.27304e-06 0.920334
+FPMW_DET3_STRIPX494 717.593 0.921845 1.46495e-06 1.10558
+FPMW_DET3_STRIPX495 811.336 0.954793 1.70127e-06 0.859814
+FPMW_DET3_STRIPX496 516.068 0.96812 2.87353e-07 0.849524
+FPMW_DET3_STRIPX497 764.077 1.00785 3.13152e-08 1.10141
+FPMW_DET3_STRIPX498 624.359 0.982861 2.56963e-07 0.994682
+FPMW_DET3_STRIPX499 682.335 1.02507 1.91295e-08 1.12495
+FPMW_DET3_STRIPX500 555.251 1 9.95734e-16 1.06469
+FPMW_DET3_STRIPX501 857.415 1.0324 2.12993e-07 1
+FPMW_DET3_STRIPX502 574.092 0.993999 -1.65187e-08 1.05543
+FPMW_DET3_STRIPX503 793.185 1.02596 2.11151e-07 0.996961
+FPMW_DET3_STRIPX504 680.86 0.97996 7.02887e-07 1.0645
+FPMW_DET3_STRIPX505 834.983 1.02575 2.61317e-07 1.05905
+FPMW_DET3_STRIPX506 550.581 0.986 4.57526e-07 0.992229
+FPMW_DET3_STRIPX507 460.707 1.02373 9.60285e-08 1.1503
+FPMW_DET3_STRIPX508 690.764 0.971755 8.66983e-07 0.983955
+FPMW_DET3_STRIPX509 991.844 1.00868 9.55866e-07 0.969514
+FPMW_DET3_STRIPX510 583.499 0.956759 1.02894e-06 1.04026
+FPMW_DET3_STRIPX511 624.964 0.991901 6.30286e-07 0.911499
+FPMW_DET3_STRIPX512 1220.33 90.0631 -0.127871 2.04055
+FPMW_DET3_STRIPX513 1181.64 1.05408 1.08352e-07 2.38788
+FPMW_DET3_STRIPX514 1305.63 0.966024 8.17381e-07 0.80692
+FPMW_DET3_STRIPX515 1173.83 0.996703 2.61083e-07 0.901743
+FPMW_DET3_STRIPX516 1191.41 0.98971 1.49708e-07 1.91736
+FPMW_DET3_STRIPX517 1078.91 0.981325 3.99492e-07 2.05535
+FPMW_DET3_STRIPX518 1145.1 0.976854 5.11907e-07 0.904025
+FPMW_DET3_STRIPX519 1214.22 1.01652 1.69887e-07 0.952443
+FPMW_DET3_STRIPX520 1173.98 0.980302 3.97635e-07 1.86748
+FPMW_DET3_STRIPX521 1177.32 0.969216 6.07199e-07 1.86867
+FPMW_DET3_STRIPX522 999.13 0.950936 7.84234e-07 1.0604
+FPMW_DET3_STRIPX523 1033.94 0.984117 6.86441e-07 1.00468
+FPMW_DET3_STRIPX524 1374.19 0.947037 9.29311e-07 0.978299
+FPMW_DET3_STRIPX525 1368.02 0.971502 1.02537e-06 0.955442
+FPMW_DET3_STRIPX526 1243.33 0.930334 1.21304e-06 0.972119
+FPMW_DET3_STRIPX527 851.852 0.969342 8.16828e-07 0.991237
+FPMW_DET3_STRIPX528 930.182 0.97119 4.02714e-07 1.09129
+FPMW_DET3_STRIPX529 756.131 1.00465 -9.27223e-08 1.04508
+FPMW_DET3_STRIPX530 889.274 0.964548 6.76758e-07 1.0501
+FPMW_DET3_STRIPX531 1176.38 0.988796 3.47702e-07 1.019
+FPMW_DET3_STRIPX532 1051.11 0.910604 1.16525e-06 1.12686
+FPMW_DET3_STRIPX533 879.039 0.847144 1.63537e-06 0.529192
+FPMW_DET3_STRIPX534 972.886 4.4705 -4.93399e-05 0.515539
+FPMW_DET3_STRIPX535 913.988 0.828559 2.00592e-06 0.920775
+FPMW_DET3_STRIPX536 798.117 0.907328 1.20225e-06 1.23112
+FPMW_DET3_STRIPX537 762.097 0.990999 5.53867e-07 1.04638
+FPMW_DET3_STRIPX538 893.028 0.963553 9.73893e-07 0.99071
+FPMW_DET3_STRIPX539 657.038 0.995229 4.16373e-07 1.11313
+FPMW_DET3_STRIPX540 586.232 0.946824 9.49698e-07 1.1863
+FPMW_DET3_STRIPX541 1064.33 0.976925 1.24207e-06 1.04125
+FPMW_DET3_STRIPX542 1019.98 0.938268 1.50255e-06 1.0123
+FPMW_DET3_STRIPX543 827.605 0.994061 9.57886e-07 0.804552
+FPMW_DET3_STRIPX544 714.768 0.944759 4.75213e-07 1.22236
+FPMW_DET3_STRIPX545 748.637 0.944641 6.7483e-07 0.774023
+FPMW_DET3_STRIPX546 928.801 0.94285 5.66294e-07 1.29006
+FPMW_DET3_STRIPX547 1040.74 0.991269 3.94979e-07 1.20949
+FPMW_DET3_STRIPX548 1031.14 0.967345 7.48937e-07 1.08803
+FPMW_DET3_STRIPX549 955.091 0.993206 4.27148e-07 1.19003
+FPMW_DET3_STRIPX550 857.022 0.95365 6.63836e-07 1.18358
+FPMW_DET3_STRIPX551 746.835 0.970832 6.91725e-07 1.2889
+FPMW_DET3_STRIPX552 1139.99 0.94204 1.25823e-06 1.3507
+FPMW_DET3_STRIPX553 670.243 0.98193 5.39016e-07 1.15724
+FPMW_DET3_STRIPX554 921.032 0.959372 8.54623e-07 1.28338
+FPMW_DET3_STRIPX555 655.224 0.977343 8.49358e-07 1.24083
+FPMW_DET3_STRIPX556 805.607 0.928469 1.37633e-06 1.2981
+FPMW_DET3_STRIPX557 660.077 0.954561 8.44114e-07 1.40703
+FPMW_DET3_STRIPX558 612.48 0.94025 1.09314e-06 1.28203
+FPMW_DET3_STRIPX559 739.724 0.988828 8.21808e-07 1.1435
+FPMW_DET3_STRIPX560 657.204 0.977796 7.15461e-07 1.07456
+FPMW_DET3_STRIPX561 725.648 1.0136 4.02086e-07 1.02083
+FPMW_DET3_STRIPX562 963.896 0.979324 1.0171e-06 1.03893
+FPMW_DET3_STRIPX563 871.707 1.01107 7.014e-07 1.17417
+FPMW_DET3_STRIPX564 745.76 0.974308 8.72671e-07 1.00021
+FPMW_DET3_STRIPX565 1058.94 1.00949 7.76177e-07 1.06634
+FPMW_DET3_STRIPX566 952.103 0.96979 1.10714e-06 1.07952
+FPMW_DET3_STRIPX567 888.01 1.00466 8.64047e-07 1.04049
+FPMW_DET3_STRIPX568 1049.14 0.966635 1.10309e-06 0.936141
+FPMW_DET3_STRIPX569 669.136 1.00145 6.91128e-07 1.17983
+FPMW_DET3_STRIPX570 857.451 0.968318 1.14041e-06 1.08361
+FPMW_DET3_STRIPX571 860.651 1.00489 7.99301e-07 1.04551
+FPMW_DET3_STRIPX572 685.479 0.95802 1.17874e-06 1.09161
+FPMW_DET3_STRIPX573 915.782 0.996473 1.12375e-06 1.09008
+FPMW_DET3_STRIPX574 561.008 0.957394 1.21252e-06 0.9675
+FPMW_DET3_STRIPX575 658.443 1.00077 9.47192e-07 1.46992
+FPMW_DET3_STRIPX576 754.61 0.970719 9.82763e-08 1.04773
+FPMW_DET3_STRIPX577 925.665 1.00431 -6.90941e-08 1.27144
+FPMW_DET3_STRIPX578 862.605 0.975941 1.6575e-07 1.0811
+FPMW_DET3_STRIPX579 968.436 1.007 1.05267e-08 1.2165
+FPMW_DET3_STRIPX580 673.466 0.968969 2.49804e-07 1.23573
+FPMW_DET3_STRIPX581 875.422 1.00611 2.04763e-08 1.22403
+FPMW_DET3_STRIPX582 635.085 0.976422 2.50765e-07 1.21676
+FPMW_DET3_STRIPX583 534.232 1.02343 -2.2224e-07 1.24006
+FPMW_DET3_STRIPX584 892.273 0.981254 2.96761e-07 1.16439
+FPMW_DET3_STRIPX585 756.506 1.00427 2.26573e-07 1.2304
+FPMW_DET3_STRIPX586 925.931 0.970033 5.96027e-07 1.17299
+FPMW_DET3_STRIPX587 653.689 0.994114 2.95753e-07 1.23412
+FPMW_DET3_STRIPX588 756.236 0.967199 7.38929e-07 1.20923
+FPMW_DET3_STRIPX589 797.019 0.992918 2.45056e-07 1.20234
+FPMW_DET3_STRIPX590 742.902 0.944813 7.6253e-07 1.17756
+FPMW_DET3_STRIPX591 763.585 0.974264 8.32492e-07 1.05822
+FPMW_DET3_STRIPX592 947.953 0.974045 5.57879e-07 1.16244
+FPMW_DET3_STRIPX593 1062.01 1.00248 6.02335e-08 1.61722
+FPMW_DET3_STRIPX594 796.124 0.999307 -4.07385e-08 1.63222
+FPMW_DET3_STRIPX595 938.779 1.01794 2.16401e-07 0.8325
+FPMW_DET3_STRIPX596 886.092 0.994884 1.81177e-07 0.922018
+FPMW_DET3_STRIPX597 1097.61 0.989232 4.27309e-07 1.04209
+FPMW_DET3_STRIPX598 1213 0.976586 6.68034e-07 0.930912
+FPMW_DET3_STRIPX599 879.861 1.01059 6.08643e-08 0.96318
+FPMW_DET3_STRIPX600 898.36 1.01697 2.11383e-07 0.924411
+FPMW_DET3_STRIPX601 891.716 1.03147 -1.27321e-07 1.01665
+FPMW_DET3_STRIPX602 866.907 0.977994 5.51983e-07 1.01755
+FPMW_DET3_STRIPX603 585.269 1.01116 3.05402e-07 1.01446
+FPMW_DET3_STRIPX604 891.808 0.982664 5.79009e-07 0.978782
+FPMW_DET3_STRIPX605 797.308 1.00454 4.82365e-07 0.806354
+FPMW_DET3_STRIPX606 599.056 0.962125 5.48733e-07 1.55003
+FPMW_DET3_STRIPX607 973.608 0.98207 9.65826e-07 0.869775
+FPMW_DET3_STRIPX608 562.457 0.981656 4.15948e-07 1.25144
+FPMW_DET3_STRIPX609 572.071 0.999127 1.04591e-07 1.10954
+FPMW_DET3_STRIPX610 508.562 0.963744 7.12835e-07 1.16913
+FPMW_DET3_STRIPX611 716.345 1.00606 2.50281e-07 1.11322
+FPMW_DET3_STRIPX612 344.72 0.966142 4.34106e-07 1.20978
+FPMW_DET3_STRIPX613 777.215 0.995876 4.09603e-07 1.22722
+FPMW_DET3_STRIPX614 555.486 0.977826 3.71799e-07 1.06862
+FPMW_DET3_STRIPX615 831.183 1.02274 2.8924e-07 1.01515
+FPMW_DET3_STRIPX616 606.937 0.977474 3.5095e-07 1.25213
+FPMW_DET3_STRIPX617 584.767 1.0112 2.83662e-07 1.05786
+FPMW_DET3_STRIPX618 672.678 0.96655 5.85042e-07 1.1727
+FPMW_DET3_STRIPX619 544.33 1.01356 4.79932e-07 1.11176
+FPMW_DET3_STRIPX620 696.581 0.952953 6.02645e-07 1.10695
+FPMW_DET3_STRIPX621 632.887 0.993345 4.11226e-07 1.16755
+FPMW_DET3_STRIPX622 682.105 0.946002 6.07186e-07 1.00409
+FPMW_DET3_STRIPX623 944.388 0.983789 9.58208e-07 1.00869
+FPMW_DET3_STRIPX624 453.086 0.991992 2.10305e-07 0.927466
+FPMW_DET3_STRIPX625 905.694 1.0098 9.95597e-07 0.797324
+FPMW_DET3_STRIPX626 731.653 0.965667 7.9377e-07 0.989556
+FPMW_DET3_STRIPX627 764.251 1.01275 4.79967e-07 0.98862
+FPMW_DET3_STRIPX628 863.836 0.984532 9.45219e-07 0.914971
+FPMW_DET3_STRIPX629 678.002 1.02585 4.98565e-07 0.815361
+FPMW_DET3_STRIPX630 759.541 0.986705 8.12941e-07 0.850131
+FPMW_DET3_STRIPX631 781.729 1.02181 8.66493e-07 0.873638
+FPMW_DET3_STRIPX632 354.08 0.973708 9.31437e-07 0.880579
+FPMW_DET3_STRIPX633 774.894 1.00161 7.0101e-07 0.982145
+FPMW_DET3_STRIPX634 802.602 0.969065 1.28073e-06 0.900928
+FPMW_DET3_STRIPX635 678.735 1.00623 1.05389e-06 0.875445
+FPMW_DET3_STRIPX636 712.635 0.950477 1.5532e-06 0.800151
+FPMW_DET3_STRIPX637 604.795 0.985338 1.32391e-06 0.9825
+FPMW_DET3_STRIPX638 568.279 0.947582 1.58135e-06 0.907406
+FPMW_DET3_STRIPX639 832.199 0.968039 1.6832e-06 0.856622
+FPMW_DET3_STRIPX640 477.659 0.974513 6.57967e-07 1.022
+FPMW_DET3_STRIPX641 583.813 1.02364 6.86624e-07 0.858249
+FPMW_DET3_STRIPX642 1039.85 0.980997 1.15758e-06 0.990767
+FPMW_DET3_STRIPX643 834.591 1.02379 6.90365e-07 0.915663
+FPMW_DET3_STRIPX644 724.779 0.986022 1.03705e-06 0.914176
+FPMW_DET3_STRIPX645 837.067 1.01997 7.62828e-07 0.860972
+FPMW_DET3_STRIPX646 858.536 0.988514 1.27099e-06 0.936961
+FPMW_DET3_STRIPX647 622.524 1.01286 8.48533e-07 0.875489
+FPMW_DET3_STRIPX648 813.034 0.99067 1.28733e-06 0.997103
+FPMW_DET3_STRIPX649 936.976 1.02165 1.13252e-06 0.977398
+FPMW_DET3_STRIPX650 868.932 0.985911 1.28891e-06 1.11275
+FPMW_DET3_STRIPX651 853.626 1.01926 1.33185e-06 1.13863
+FPMW_DET3_STRIPX652 408.502 0.979133 1.23667e-06 0.988151
+FPMW_DET3_STRIPX653 585.873 1.01797 1.15457e-06 1.06356
+FPMW_DET3_STRIPX654 511.823 0.981598 1.35882e-06 1.07138
+FPMW_DET3_STRIPX655 518.425 1.0275 1.24162e-06 1.1903
+FPMW_DET3_STRIPX656 643.144 0.970795 3.71243e-07 1.24523
+FPMW_DET3_STRIPX657 948.98 1.0036 4.59833e-07 1.12316
+FPMW_DET3_STRIPX658 934.839 0.970075 8.68153e-07 1.1113
+FPMW_DET3_STRIPX659 681.523 1.00672 3.16863e-07 1.11007
+FPMW_DET3_STRIPX660 653.076 0.97164 5.96688e-07 1.06441
+FPMW_DET3_STRIPX661 605.583 1.00761 5.59396e-07 1.13514
+FPMW_DET3_STRIPX662 855.234 0.973881 8.8089e-07 1.22789
+FPMW_DET3_STRIPX663 848.538 1.00064 6.20454e-07 0.949623
+FPMW_DET3_STRIPX664 566.825 0.953495 1.13964e-06 1.19174
+FPMW_DET3_STRIPX665 788.504 1.00293 8.13191e-07 1.06565
+FPMW_DET3_STRIPX666 819.882 0.966157 1.13403e-06 1.06788
+FPMW_DET3_STRIPX667 462.747 1.00423 3.33189e-07 1.12514
+FPMW_DET3_STRIPX668 577.213 0.957071 1.21651e-06 1.09796
+FPMW_DET3_STRIPX669 653.947 0.994969 7.63126e-07 1.00523
+FPMW_DET3_STRIPX670 663.448 0.938475 1.28137e-06 1.19131
+FPMW_DET3_STRIPX671 772.322 0.978632 8.71771e-07 1.03226
+FPMW_DET3_STRIPX672 683.498 0.994014 3.62882e-07 0.903261
+FPMW_DET3_STRIPX673 848.041 1.02694 2.03028e-07 0.813928
+FPMW_DET3_STRIPX674 800.002 0.975587 8.36809e-07 0.922257
+FPMW_DET3_STRIPX675 954.461 1.02226 4.85641e-07 0.875346
+FPMW_DET3_STRIPX676 864.251 0.991435 7.88187e-07 0.795507
+FPMW_DET3_STRIPX677 667.929 1.03193 4.34475e-07 0.937946
+FPMW_DET3_STRIPX678 618.697 0.997891 5.61287e-07 0.903986
+FPMW_DET3_STRIPX679 765.78 1.03375 7.60271e-07 0.833967
+FPMW_DET3_STRIPX680 783.894 0.988177 8.28205e-07 0.966234
+FPMW_DET3_STRIPX681 864.987 1.02762 6.06294e-07 0.836561
+FPMW_DET3_STRIPX682 775.129 0.98396 7.17307e-07 0.848034
+FPMW_DET3_STRIPX683 1017.39 1.01679 1.04778e-06 0.851882
+FPMW_DET3_STRIPX684 916.232 0.977782 1.03948e-06 0.833591
+FPMW_DET3_STRIPX685 408.395 1.01981 6.80077e-07 0.905545
+FPMW_DET3_STRIPX686 714.881 0.969123 1.13784e-06 0.872351
+FPMW_DET3_STRIPX687 1145.73 1.01599 1.34556e-06 0.797548
+FPMW_DET3_STRIPX688 539.77 1.01748 5.95861e-07 0.815566
+FPMW_DET3_STRIPX689 529.464 1.05712 2.33504e-07 0.831998
+FPMW_DET3_STRIPX690 540.942 1.01927 8.61242e-07 0.890691
+FPMW_DET3_STRIPX691 391.484 1.06394 1.88793e-07 0.861223
+FPMW_DET3_STRIPX692 627.914 1.01884 7.88313e-07 0.840553
+FPMW_DET3_STRIPX693 985.875 1.05783 7.5877e-07 0.823764
+FPMW_DET3_STRIPX694 640.351 1.0199 9.01406e-07 0.838059
+FPMW_DET3_STRIPX695 958.21 1.05793 8.18034e-07 0.762219
+FPMW_DET3_STRIPX696 1077.78 1.0239 1.32248e-06 0.802818
+FPMW_DET3_STRIPX697 716.731 1.05923 7.93213e-07 0.823303
+FPMW_DET3_STRIPX698 814.866 1.01208 1.25776e-06 0.767114
+FPMW_DET3_STRIPX699 830.753 1.05424 1.07667e-06 0.847908
+FPMW_DET3_STRIPX700 773.009 1.01036 1.69159e-06 0.802389
+FPMW_DET3_STRIPX701 755.361 1.04204 1.32305e-06 0.886577
+FPMW_DET3_STRIPX702 659.968 0.984776 1.95006e-06 0.828219
+FPMW_DET3_STRIPX703 902.835 1.03069 1.62136e-06 0.82351
+FPMW_DET3_STRIPX704 511.368 1.04241 2.59161e-07 0.995591
+FPMW_DET3_STRIPX705 774.082 1.05499 2.18556e-07 1.30769
+FPMW_DET3_STRIPX706 414.06 1.01858 3.99491e-07 1.07592
+FPMW_DET3_STRIPX707 528.87 1.06566 2.70899e-07 1.05794
+FPMW_DET3_STRIPX708 866.645 1.00835 7.48411e-07 1.20355
+FPMW_DET3_STRIPX709 458.626 1.06205 -3.96403e-08 1.06403
+FPMW_DET3_STRIPX710 675.168 1.00138 8.01325e-07 1.05217
+FPMW_DET3_STRIPX711 451.312 1.04506 4.19425e-07 1.06532
+FPMW_DET3_STRIPX712 626.269 1.00113 1.03449e-06 1.16604
+FPMW_DET3_STRIPX713 610.643 1.03307 7.45212e-07 1.08171
+FPMW_DET3_STRIPX714 591.37 0.981105 1.1807e-06 1.00206
+FPMW_DET3_STRIPX715 880.457 1.0113 1.28494e-06 1.13585
+FPMW_DET3_STRIPX716 543.197 0.980201 1.07038e-06 1.19466
+FPMW_DET3_STRIPX717 498.809 1.01717 9.66381e-07 1.08265
+FPMW_DET3_STRIPX718 641.355 0.96075 1.50201e-06 1.07047
+FPMW_DET3_STRIPX719 681.391 0.99959 1.35166e-06 1.06113
+FPMW_DET3_STRIPX720 578.308 0.996454 -7.02265e-08 1.22456
+FPMW_DET3_STRIPX721 676.097 1.03006 -4.40262e-07 1.10965
+FPMW_DET3_STRIPX722 708.168 0.994216 6.04409e-08 1.06283
+FPMW_DET3_STRIPX723 985.485 1.04225 -2.88434e-07 1.12033
+FPMW_DET3_STRIPX724 773.438 1.00098 3.13313e-08 1.09748
+FPMW_DET3_STRIPX725 716.89 1.0459 -1.93073e-07 1.21825
+FPMW_DET3_STRIPX726 689.175 1.00583 -1.22499e-08 1.04846
+FPMW_DET3_STRIPX727 800.402 1.0408 -2.46451e-07 1.145
+FPMW_DET3_STRIPX728 609.703 0.995816 1.74685e-07 1.09386
+FPMW_DET3_STRIPX729 825.413 1.01873 1.07236e-07 1.09788
+FPMW_DET3_STRIPX730 774.996 0.974978 7.15625e-07 1.1971
+FPMW_DET3_STRIPX731 760.572 1.0344 -8.04869e-08 0.961245
+FPMW_DET3_STRIPX732 720.882 0.984136 3.70943e-07 1.25715
+FPMW_DET3_STRIPX733 619.815 1.01733 -6.02245e-08 1.04022
+FPMW_DET3_STRIPX734 499.838 0.969252 6.0498e-07 1.06023
+FPMW_DET3_STRIPX735 431.667 0.995185 5.60589e-07 1.07844
+FPMW_DET3_STRIPX736 472.795 0.982008 8.81012e-07 1.09858
+FPMW_DET3_STRIPX737 775.276 1.01724 7.36368e-07 1.02414
+FPMW_DET3_STRIPX738 775.004 0.977245 1.37909e-06 1.11384
+FPMW_DET3_STRIPX739 720.6 1.01282 9.7181e-07 1.11645
+FPMW_DET3_STRIPX740 613.169 0.99865 9.14684e-07 1.08688
+FPMW_DET3_STRIPX741 842.362 1.04429 1.14826e-06 0.969947
+FPMW_DET3_STRIPX742 788.248 0.985346 1.33478e-06 1.0272
+FPMW_DET3_STRIPX743 802.88 1.02541 1.12706e-06 1.01688
+FPMW_DET3_STRIPX744 481.772 0.979604 1.17181e-06 1.0707
+FPMW_DET3_STRIPX745 639.577 1.00681 1.16838e-06 1.19458
+FPMW_DET3_STRIPX746 916.188 0.972284 1.56295e-06 0.960339
+FPMW_DET3_STRIPX747 930.461 1.00856 1.27894e-06 1.01941
+FPMW_DET3_STRIPX748 903.655 0.971339 1.54819e-06 1.12387
+FPMW_DET3_STRIPX749 589.728 0.986675 1.4476e-06 1.108
+FPMW_DET3_STRIPX750 663.367 0.940826 1.77356e-06 1.19213
+FPMW_DET3_STRIPX751 512.735 0.990127 1.27308e-06 1.07559
+FPMW_DET3_STRIPX752 536.153 0.898092 1.2293e-06 1.23925
+FPMW_DET3_STRIPX753 986.547 1.02028 4.09855e-07 0.887382
+FPMW_DET3_STRIPX754 886.139 0.948256 9.35605e-07 0.990085
+FPMW_DET3_STRIPX755 845.717 1.01836 6.63236e-07 0.985385
+FPMW_DET3_STRIPX756 845.615 0.952007 9.90275e-07 1.02296
+FPMW_DET3_STRIPX757 922.442 0.979012 8.97302e-07 1.15832
+FPMW_DET3_STRIPX758 843.804 0.945421 1.24314e-06 1.01322
+FPMW_DET3_STRIPX759 437.574 1.00048 3.69763e-07 1.24059
+FPMW_DET3_STRIPX760 602.313 0.959428 9.19641e-07 0.856929
+FPMW_DET3_STRIPX761 849.199 0.967959 9.04705e-07 1.29487
+FPMW_DET3_STRIPX762 810.414 0.932235 1.27429e-06 1.0065
+FPMW_DET3_STRIPX763 723.214 0.9734 1.05991e-06 1.13092
+FPMW_DET3_STRIPX764 635.88 0.947214 1.24476e-06 1.0069
+FPMW_DET3_STRIPX765 619.096 0.962359 1.189e-06 1.00074
+FPMW_DET3_STRIPX766 597.115 0.909738 1.65877e-06 1.05163
+FPMW_DET3_STRIPX767 822.038 0.956777 1.36745e-06 0.946497
+FPMW_DET3_STRIPX768 793.204 0.961534 1.17733e-06 1.06732
+FPMW_DET3_STRIPX769 782.936 0.995962 9.89485e-07 1.04811
+FPMW_DET3_STRIPX770 802.559 0.967477 9.96848e-07 1.05653
+FPMW_DET3_STRIPX771 830.477 0.988748 9.73277e-07 0.934219
+FPMW_DET3_STRIPX772 852.063 0.954698 1.23577e-06 1.08472
+FPMW_DET3_STRIPX773 679.589 0.994962 7.01494e-07 0.924711
+FPMW_DET3_STRIPX774 1011.49 0.952538 1.53297e-06 0.957936
+FPMW_DET3_STRIPX775 834.741 0.970509 1.07811e-06 0.922228
+FPMW_DET3_STRIPX776 489.565 0.954025 1.09783e-06 0.998462
+FPMW_DET3_STRIPX777 427.979 0.99217 5.37935e-07 0.99229
+FPMW_DET3_STRIPX778 413.901 0.94606 8.00362e-07 0.987318
+FPMW_DET3_STRIPX779 401.867 0.98249 7.54378e-07 1.0519
+FPMW_DET3_STRIPX780 1048.71 0.946279 1.49786e-06 0.93935
+FPMW_DET3_STRIPX781 761.211 0.977177 1.07138e-06 0.972377
+FPMW_DET3_STRIPX782 735.127 0.91651 1.60853e-06 0.97097
+FPMW_DET3_STRIPX783 605.213 0.961477 9.6738e-07 0.944246
+FPMW_DET3_STRIPX784 594.295 0.972186 3.39423e-07 1.08431
+FPMW_DET3_STRIPX785 720.182 1.01021 2.1194e-07 0.919678
+FPMW_DET3_STRIPX786 695.649 0.975287 6.37819e-07 1.14997
+FPMW_DET3_STRIPX787 733.837 1.00838 4.29839e-07 0.968964
+FPMW_DET3_STRIPX788 533.043 0.966867 7.30124e-07 1.06327
+FPMW_DET3_STRIPX789 681.458 0.997722 6.00484e-07 1.0355
+FPMW_DET3_STRIPX790 919.378 0.97127 1.17779e-06 1.09706
+FPMW_DET3_STRIPX791 881.654 1.00497 9.40121e-07 0.954937
+FPMW_DET3_STRIPX792 903.783 0.968512 1.36442e-06 1.36811
+FPMW_DET3_STRIPX793 973.78 1.01044 1.06097e-06 0.85812
+FPMW_DET3_STRIPX794 621.801 0.970214 1.38272e-06 1.16709
+FPMW_DET3_STRIPX795 500.818 1.00489 1.06014e-06 1.01823
+FPMW_DET3_STRIPX796 704.868 0.944918 1.76671e-06 1.08439
+FPMW_DET3_STRIPX797 566.096 0.996671 1.13071e-06 1.12879
+FPMW_DET3_STRIPX798 435.374 0.956802 1.43481e-06 1.04664
+FPMW_DET3_STRIPX799 558.096 0.980097 1.67391e-06 1.05377
+FPMW_DET3_STRIPX800 585.625 0.932441 9.94515e-07 1.08756
+FPMW_DET3_STRIPX801 747.312 0.975357 6.34678e-07 1.04315
+FPMW_DET3_STRIPX802 618.331 0.931392 9.14862e-07 1.11126
+FPMW_DET3_STRIPX803 934.087 0.974235 8.59093e-07 1.06214
+FPMW_DET3_STRIPX804 777.171 0.941522 1.14256e-06 1.03147
+FPMW_DET3_STRIPX805 610.364 0.9522 7.3001e-07 1.04345
+FPMW_DET3_STRIPX806 774.278 0.937722 1.15333e-06 1.1689
+FPMW_DET3_STRIPX807 716.101 0.978969 8.82349e-07 0.961182
+FPMW_DET3_STRIPX808 472.614 0.929574 1.12684e-06 1.24403
+FPMW_DET3_STRIPX809 591.411 0.968971 9.89395e-07 1.00985
+FPMW_DET3_STRIPX810 640.144 0.920457 1.55673e-06 1.03794
+FPMW_DET3_STRIPX811 838.515 0.975028 1.14056e-06 1.05054
+FPMW_DET3_STRIPX812 598.804 0.922301 1.5729e-06 1.08373
+FPMW_DET3_STRIPX813 610.089 0.955887 1.35155e-06 1.07919
+FPMW_DET3_STRIPX814 674.676 0.904487 1.83958e-06 1.02866
+FPMW_DET3_STRIPX815 485.468 0.95961 1.52519e-06 1.04153
+FPMW_DET3_STRIPX816 702.698 0.936274 6.61739e-07 1.21208
+FPMW_DET3_STRIPX817 792.455 0.983304 2.77389e-07 1.0858
+FPMW_DET3_STRIPX818 689.264 0.957795 6.96523e-07 1.08598
+FPMW_DET3_STRIPX819 572.518 0.986435 4.44881e-07 1.07639
+FPMW_DET3_STRIPX820 820.425 0.953902 7.69067e-07 1.08148
+FPMW_DET3_STRIPX821 551.662 0.982275 5.28766e-07 1.12687
+FPMW_DET3_STRIPX822 530.174 0.970357 6.32644e-07 1.98093
+FPMW_DET3_STRIPX823 594.173 0.965003 5.41903e-07 1.97148
+FPMW_DET3_STRIPX824 1013.22 0.952176 1.10054e-06 1.03256
+FPMW_DET3_STRIPX825 894.757 0.984319 9.61513e-07 0.997113
+FPMW_DET3_STRIPX826 954.195 0.937546 1.26184e-06 1.20615
+FPMW_DET3_STRIPX827 849.406 0.969025 1.0983e-06 1.07343
+FPMW_DET3_STRIPX828 893.806 0.930934 1.69444e-06 1.05609
+FPMW_DET3_STRIPX829 689.698 0.949586 1.27923e-06 2.10122
+FPMW_DET3_STRIPX830 922.512 0.934572 1.74337e-06 2.3208
+FPMW_DET3_STRIPX831 689.054 0.95814 1.57129e-06 0.884272
+FPMW_DET3_STRIPX832 729.432 0.936224 8.44143e-07 1.33286
+FPMW_DET3_STRIPX833 981.199 0.970476 7.36284e-07 1.08638
+FPMW_DET3_STRIPX834 789.534 0.931659 1.07356e-06 1.1589
+FPMW_DET3_STRIPX835 987.38 0.965521 1.00406e-06 1.15374
+FPMW_DET3_STRIPX836 837.093 0.936178 1.02527e-06 1.18651
+FPMW_DET3_STRIPX837 757.879 0.983482 5.759e-07 1.0885
+FPMW_DET3_STRIPX838 675.094 0.90956 1.36039e-06 1.25092
+FPMW_DET3_STRIPX839 759.111 0.965618 8.45021e-07 1.30758
+FPMW_DET3_STRIPX840 518.101 0.875874 1.5972e-06 1.36671
+FPMW_DET3_STRIPX841 686.428 0.968094 1.1325e-06 1.40008
+FPMW_DET3_STRIPX842 654.28 0.920695 1.45087e-06 1.00731
+FPMW_DET3_STRIPX843 777.16 0.950361 1.37382e-06 1.34889
+FPMW_DET3_STRIPX844 605.7 0.913509 1.73823e-06 1.09375
+FPMW_DET3_STRIPX845 998.456 0.939465 1.7902e-06 1.22353
+FPMW_DET3_STRIPX846 838.935 0.894817 1.9275e-06 1.1997
+FPMW_DET3_STRIPX847 898.839 0.927416 1.98242e-06 1.11713
+FPMW_DET3_STRIPX848 631.826 0.931054 5.25191e-07 1.25315
+FPMW_DET3_STRIPX849 1011.22 0.966803 7.90408e-07 1.14704
+FPMW_DET3_STRIPX850 902.715 0.935164 9.48899e-07 1.10248
+FPMW_DET3_STRIPX851 1184.66 0.954884 9.46276e-07 1.38016
+FPMW_DET3_STRIPX852 853.092 0.922335 9.68388e-07 1.13761
+FPMW_DET3_STRIPX853 827.627 0.963103 6.93296e-07 1.14637
+FPMW_DET3_STRIPX854 921.606 0.923201 1.17553e-06 1.37743
+FPMW_DET3_STRIPX855 864.972 0.952426 7.32013e-07 1.12533
+FPMW_DET3_STRIPX856 957.47 0.915635 1.2523e-06 1.19962
+FPMW_DET3_STRIPX857 895.609 0.945002 1.21059e-06 1.18566
+FPMW_DET3_STRIPX858 742.574 0.91697 9.5389e-07 1.14923
+FPMW_DET3_STRIPX859 618.216 0.947958 7.51385e-07 1.24137
+FPMW_DET3_STRIPX860 777.283 0.902712 1.18218e-06 1.17669
+FPMW_DET3_STRIPX861 668.05 0.938899 9.77687e-07 1.15664
+FPMW_DET3_STRIPX862 475.724 0.888272 1.46471e-06 1.22545
+FPMW_DET3_STRIPX863 892.207 0.916118 1.74871e-06 1.06141
+FPMW_DET3_STRIPX864 662.391 0.924409 1.09635e-06 1.34846
+FPMW_DET3_STRIPX865 841.842 0.975143 7.28193e-07 1.30252
+FPMW_DET3_STRIPX866 611.735 0.922855 1.06502e-06 1.21192
+FPMW_DET3_STRIPX867 881.082 0.957369 8.79455e-07 1.38495
+FPMW_DET3_STRIPX868 785.731 0.928506 1.37857e-06 1.31802
+FPMW_DET3_STRIPX869 802.889 0.969813 9.93781e-07 1.26591
+FPMW_DET3_STRIPX870 850.011 0.951709 1.08184e-06 2.24794
+FPMW_DET3_STRIPX871 532.323 0.954852 7.34019e-07 2.20789
+FPMW_DET3_STRIPX872 802.353 0.930515 1.38403e-06 1.08707
+FPMW_DET3_STRIPX873 867.427 0.972355 1.02908e-06 1.20804
+FPMW_DET3_STRIPX874 769.601 0.934633 1.3097e-06 1.24431
+FPMW_DET3_STRIPX875 852.997 0.966608 1.2682e-06 1.32535
+FPMW_DET3_STRIPX876 878.206 0.920573 1.58207e-06 1.17889
+FPMW_DET3_STRIPX877 996.309 0.960966 1.27037e-06 1.42941
+FPMW_DET3_STRIPX878 666.037 0.915215 1.50605e-06 1.28318
+FPMW_DET3_STRIPX879 716.241 0.953881 1.05159e-06 1.31249
+FPMW_DET3_STRIPX880 467.366 0.934697 9.58256e-07 1.02962
+FPMW_DET3_STRIPX881 639.042 0.972068 6.39354e-07 0.920228
+FPMW_DET3_STRIPX882 776.827 0.930018 1.26631e-06 1.05374
+FPMW_DET3_STRIPX883 988.476 0.965847 1.1625e-06 1.01835
+FPMW_DET3_STRIPX884 826.504 0.936203 1.14517e-06 1.02644
+FPMW_DET3_STRIPX885 538.242 0.985189 9.18259e-07 1.1032
+FPMW_DET3_STRIPX886 696.067 0.942668 1.36941e-06 1.02924
+FPMW_DET3_STRIPX887 800.514 0.962125 1.11426e-06 1.00558
+FPMW_DET3_STRIPX888 778.233 0.929729 1.64992e-06 1.02559
+FPMW_DET3_STRIPX889 974.197 0.959701 1.4728e-06 1.02358
+FPMW_DET3_STRIPX890 958.311 0.929102 1.74683e-06 1.00149
+FPMW_DET3_STRIPX891 1063.1 0.963736 1.52383e-06 0.998801
+FPMW_DET3_STRIPX892 1139.38 0.919263 1.98978e-06 0.913569
+FPMW_DET3_STRIPX893 655.091 0.962742 1.32573e-06 1.00894
+FPMW_DET3_STRIPX894 648.899 0.911506 1.79214e-06 1.02095
+FPMW_DET3_STRIPX895 725.006 0.946985 1.70105e-06 1.06756
+FPMW_DET3_STRIPX896 635.673 0.966125 4.6106e-07 1.14765
+FPMW_DET3_STRIPX897 875.165 0.981684 2.66257e-07 1.4164
+FPMW_DET3_STRIPX898 859.665 0.929611 6.57628e-07 1.20508
+FPMW_DET3_STRIPX899 1037.48 0.981163 4.02825e-07 1.30517
+FPMW_DET3_STRIPX900 1042.91 0.93818 9.21994e-07 1.14719
+FPMW_DET3_STRIPX901 962.93 0.971562 4.04567e-07 1.35982
+FPMW_DET3_STRIPX902 974.585 0.93123 9.83051e-07 1.17388
+FPMW_DET3_STRIPX903 949.186 0.969447 5.42604e-07 1.39895
+FPMW_DET3_STRIPX904 1007.16 0.939785 9.61161e-07 1.19137
+FPMW_DET3_STRIPX905 940.184 0.969748 9.25403e-07 1.29826
+FPMW_DET3_STRIPX906 932.032 0.930427 1.37936e-06 1.35929
+FPMW_DET3_STRIPX907 925.062 0.963222 9.97798e-07 1.14693
+FPMW_DET3_STRIPX908 699.358 0.922313 1.26575e-06 1.50022
+FPMW_DET3_STRIPX909 852.182 0.956336 1.43275e-06 1.45724
+FPMW_DET3_STRIPX910 674.678 0.911281 1.43434e-06 1.35407
+FPMW_DET3_STRIPX911 1084.55 0.943443 1.72986e-06 1.37623
+FPMW_DET3_STRIPX912 848.973 0.94232 1.1407e-06 1.18476
+FPMW_DET3_STRIPX913 995.718 0.973649 1.11768e-06 1.15857
+FPMW_DET3_STRIPX914 1010.59 0.935684 1.52622e-06 1.16401
+FPMW_DET3_STRIPX915 971.926 0.975875 1.13908e-06 1.27275
+FPMW_DET3_STRIPX916 690.097 0.941258 9.26923e-07 1.19397
+FPMW_DET3_STRIPX917 791.914 0.96235 8.61072e-07 1.24277
+FPMW_DET3_STRIPX918 1175.84 0.93991 1.39169e-06 1.10631
+FPMW_DET3_STRIPX919 1112.1 0.978204 1.24638e-06 1.02559
+FPMW_DET3_STRIPX920 653.445 0.941195 1.17105e-06 1.24224
+FPMW_DET3_STRIPX921 889.26 0.977337 9.00365e-07 1.14216
+FPMW_DET3_STRIPX922 996.679 0.933212 1.45431e-06 1.22661
+FPMW_DET3_STRIPX923 723.031 0.975491 9.51754e-07 1.10489
+FPMW_DET3_STRIPX924 1044.7 0.919166 1.93798e-06 1.24236
+FPMW_DET3_STRIPX925 940.417 0.958034 1.35794e-06 0.981874
+FPMW_DET3_STRIPX926 1088.24 0.914454 1.90626e-06 1.17137
+FPMW_DET3_STRIPX927 923.345 0.953984 1.91044e-06 1.0068
+FPMW_DET3_STRIPX928 681.434 0.962533 7.92201e-07 1.27684
+FPMW_DET3_STRIPX929 861.357 0.997273 5.41505e-07 1.1983
+FPMW_DET3_STRIPX930 702.671 0.965319 8.05903e-07 1.42325
+FPMW_DET3_STRIPX931 852.954 1.00492 3.19129e-07 1.34731
+FPMW_DET3_STRIPX932 746.963 0.97428 5.85607e-07 1.23545
+FPMW_DET3_STRIPX933 917.433 1.00504 1.88642e-07 1.18522
+FPMW_DET3_STRIPX934 892.052 0.962805 6.31603e-07 1.37818
+FPMW_DET3_STRIPX935 895.234 1.00089 2.36143e-07 1.0528
+FPMW_DET3_STRIPX936 897.038 0.969735 5.82993e-07 1.28997
+FPMW_DET3_STRIPX937 816.744 1.00686 2.2646e-07 1.32396
+FPMW_DET3_STRIPX938 934.016 0.964962 7.85574e-07 1.19817
+FPMW_DET3_STRIPX939 778.196 1.00683 2.24106e-07 1.14411
+FPMW_DET3_STRIPX940 883.556 0.962084 6.58171e-07 1.27137
+FPMW_DET3_STRIPX941 1035.07 0.985383 4.47092e-07 1.2159
+FPMW_DET3_STRIPX942 813.562 0.942745 8.01726e-07 1.14473
+FPMW_DET3_STRIPX943 770.863 0.987514 4.89247e-07 1.2553
+FPMW_DET3_STRIPX944 657.933 0.960602 3.98872e-07 1.29626
+FPMW_DET3_STRIPX945 883.611 0.994881 6.18888e-07 1.1613
+FPMW_DET3_STRIPX946 1064.11 0.96048 1.09824e-06 1.19284
+FPMW_DET3_STRIPX947 893.927 0.984762 7.6573e-07 1.64723
+FPMW_DET3_STRIPX948 872.86 0.958785 7.11689e-07 1.04736
+FPMW_DET3_STRIPX949 946.086 0.999324 5.59167e-07 1.31648
+FPMW_DET3_STRIPX950 1061.03 0.964068 9.62628e-07 1.41217
+FPMW_DET3_STRIPX951 793.706 1.00867 4.2039e-07 1.2421
+FPMW_DET3_STRIPX952 919.495 0.948213 1.2665e-06 1.33891
+FPMW_DET3_STRIPX953 905.18 0.984067 7.08438e-07 1.05022
+FPMW_DET3_STRIPX954 828.794 0.964592 1.00595e-06 1.42617
+FPMW_DET3_STRIPX955 781 0.972293 9.78264e-07 1.31147
+FPMW_DET3_STRIPX956 738.871 0.943532 1.31965e-06 1.22511
+FPMW_DET3_STRIPX957 825.839 0.990313 9.88113e-07 1.3195
+FPMW_DET3_STRIPX958 648.335 0.935805 1.22137e-06 1.32676
+FPMW_DET3_STRIPX959 725.51 0.969189 1.20741e-06 1.19039
+FPMW_DET3_STRIPX960 863.905 0.976737 9.38066e-07 1.33508
+FPMW_DET3_STRIPX961 1091.33 1.01284 7.00046e-07 1.24711
+FPMW_DET3_STRIPX962 892.483 0.970563 9.89293e-07 1.30379
+FPMW_DET3_STRIPX963 915.949 1.01173 7.81407e-07 1.37916
+FPMW_DET3_STRIPX964 1084.38 0.967107 1.15827e-06 1.23766
+FPMW_DET3_STRIPX965 1021.58 1.02222 8.42547e-07 1.3014
+FPMW_DET3_STRIPX966 831.469 0.985966 9.06327e-07 1.2289
+FPMW_DET3_STRIPX967 855.402 1.00256 7.68875e-07 1.35508
+FPMW_DET3_STRIPX968 1129.68 0.975523 1.40892e-06 1.37786
+FPMW_DET3_STRIPX969 831.559 1.03411 8.98871e-07 1.20091
+FPMW_DET3_STRIPX970 591.455 0.985636 1.11143e-06 1.38873
+FPMW_DET3_STRIPX971 790.094 1.007 1.12491e-06 1.30557
+FPMW_DET3_STRIPX972 1031.04 0.966522 1.4175e-06 1.12779
+FPMW_DET3_STRIPX973 860.793 0.990058 1.36217e-06 1.48968
+FPMW_DET3_STRIPX974 834.091 0.945665 1.74743e-06 1.25778
+FPMW_DET3_STRIPX975 938.864 1.00797 1.48363e-06 1.07591
+FPMW_DET3_STRIPX976 876.94 1.00182 1.05835e-06 1.17795
+FPMW_DET3_STRIPX977 893.374 1.03185 8.7773e-07 1.12024
+FPMW_DET3_STRIPX978 704.716 1.00124 8.25984e-07 1.26656
+FPMW_DET3_STRIPX979 1136.02 1.04432 8.54232e-07 1.09298
+FPMW_DET3_STRIPX980 941.569 0.995613 1.00597e-06 1.22766
+FPMW_DET3_STRIPX981 839.912 1.03921 8.63096e-07 1.19942
+FPMW_DET3_STRIPX982 963.71 0.990238 1.25521e-06 1.23937
+FPMW_DET3_STRIPX983 650.329 1.03084 7.82403e-07 1.14846
+FPMW_DET3_STRIPX984 1062.71 0.989836 1.27014e-06 1.31298
+FPMW_DET3_STRIPX985 703.826 1.03908 8.31331e-07 1.11186
+FPMW_DET3_STRIPX986 838.196 0.996912 1.15963e-06 1.26922
+FPMW_DET3_STRIPX987 874.508 1.02415 1.14027e-06 1.234
+FPMW_DET3_STRIPX988 901.78 0.967471 1.61857e-06 1.20026
+FPMW_DET3_STRIPX989 1033.01 0.996545 1.44493e-06 0.560888
+FPMW_DET3_STRIPX990 848.036 0.931865 2.01556e-06 0.670523
+FPMW_DET3_STRIPX991 1256.09 0.892022 2.65642e-06 8.87968
diff --git a/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW3_Y.cal b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW3_Y.cal
new file mode 100644
index 0000000000000000000000000000000000000000..bc96816131211f506eab59d263f1e30a59eac045
--- /dev/null
+++ b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW3_Y.cal
@@ -0,0 +1,160 @@
+FPMW_DET3_STRIPY0 651.839 0.553641 3.02799e-06 1.9642
+FPMW_DET3_STRIPY1 651.812 0.733773 1.39913e-06 5.55723
+FPMW_DET3_STRIPY2 720.312 0.80082 8.3318e-07 4.1266
+FPMW_DET3_STRIPY3 764.574 0.854498 5.6621e-07 2.14776
+FPMW_DET3_STRIPY4 509.501 0.905372 1.53661e-07 0.556539
+FPMW_DET3_STRIPY5 542.139 0.93428 -1.987e-07 0.977709
+FPMW_DET3_STRIPY6 581.226 0.961399 -1.83994e-07 1.05426
+FPMW_DET3_STRIPY7 838.19 0.936696 2.10382e-07 1.14403
+FPMW_DET3_STRIPY8 569.771 0.952966 -1.39759e-07 1.11269
+FPMW_DET3_STRIPY9 847.742 0.955074 -1.12121e-09 1.03639
+FPMW_DET3_STRIPY10 709.781 0.969088 -1.79958e-07 1.04728
+FPMW_DET3_STRIPY11 596.194 0.963778 -1.28642e-07 1.08132
+FPMW_DET3_STRIPY12 533.612 0.949166 2.05381e-07 1.11975
+FPMW_DET3_STRIPY13 746.73 0.963191 9.96529e-08 1.05868
+FPMW_DET3_STRIPY14 369.777 0.981714 -2.84024e-07 1.05175
+FPMW_DET3_STRIPY15 656.055 1.0116 -1.40731e-07 0.979006
+FPMW_DET3_STRIPY16 589.929 1.0244 -4.60121e-07 0.97899
+FPMW_DET3_STRIPY17 748.741 1.00432 1.65842e-07 1.01908
+FPMW_DET3_STRIPY18 528.08 1.01311 -1.13703e-07 1.01965
+FPMW_DET3_STRIPY19 796.712 1.02542 -1.99725e-07 0.983909
+FPMW_DET3_STRIPY20 923.134 1.00298 2.28706e-07 1.00246
+FPMW_DET3_STRIPY21 860.759 0.989294 2.28699e-07 1.04177
+FPMW_DET3_STRIPY22 740.101 0.9818 3.35869e-07 1.05227
+FPMW_DET3_STRIPY23 966.51 0.991911 4.9658e-07 0.998394
+FPMW_DET3_STRIPY24 583.648 0.997249 2.46857e-07 1.08368
+FPMW_DET3_STRIPY25 903.238 0.986733 5.83385e-07 1.04761
+FPMW_DET3_STRIPY26 731.402 1.00772 2.02472e-08 1.02441
+FPMW_DET3_STRIPY27 753.542 0.999374 3.99997e-07 1.05561
+FPMW_DET3_STRIPY28 503.654 0.988134 4.33067e-07 1.0753
+FPMW_DET3_STRIPY29 661.191 0.985844 6.98522e-07 1.09028
+FPMW_DET3_STRIPY30 960.3 0.975467 8.95887e-07 1.054
+FPMW_DET3_STRIPY31 823.687 1.01365 1.0027e-06 0.96683
+FPMW_DET3_STRIPY32 393.806 0.99993 -1.17565e-06 1.13617
+FPMW_DET3_STRIPY33 498.954 0.974402 -6.62812e-07 1.20313
+FPMW_DET3_STRIPY34 936.118 0.985297 -3.32963e-07 1.09735
+FPMW_DET3_STRIPY35 536.373 0.993276 -7.42654e-07 1.1428
+FPMW_DET3_STRIPY36 703.361 0.976426 -5.28786e-07 1.16302
+FPMW_DET3_STRIPY37 745.672 0.983055 -6.27014e-07 1.16098
+FPMW_DET3_STRIPY38 783.981 0.986467 -5.7748e-07 1.12618
+FPMW_DET3_STRIPY39 423.181 0.979663 -8.21143e-07 1.18769
+FPMW_DET3_STRIPY40 878.429 0.960279 -6.61521e-08 1.17978
+FPMW_DET3_STRIPY41 593.128 0.967997 -5.85049e-07 1.21479
+FPMW_DET3_STRIPY42 635.144 0.978274 -6.60404e-07 1.15575
+FPMW_DET3_STRIPY43 486.326 0.970662 -4.05578e-07 1.24007
+FPMW_DET3_STRIPY44 485.436 0.961445 -3.7212e-07 1.2435
+FPMW_DET3_STRIPY45 710.547 0.954563 -4.02222e-08 1.20809
+FPMW_DET3_STRIPY46 566.205 0.956397 -8.97109e-08 1.24942
+FPMW_DET3_STRIPY47 833.183 0.969995 1.26644e-07 1.15378
+FPMW_DET3_STRIPY48 710.429 0.992501 -3.90793e-07 1.08226
+FPMW_DET3_STRIPY49 748.989 0.976915 -5.82185e-08 1.1043
+FPMW_DET3_STRIPY50 504.509 0.98358 -3.05947e-07 1.14255
+FPMW_DET3_STRIPY51 673.797 0.969432 1.28858e-07 1.1414
+FPMW_DET3_STRIPY52 526.118 0.973623 -2.1109e-07 1.13262
+FPMW_DET3_STRIPY53 624.396 0.973426 -2.46698e-08 1.14411
+FPMW_DET3_STRIPY54 551.683 0.973099 -4.61655e-08 1.15068
+FPMW_DET3_STRIPY55 668.093 0.97991 8.00917e-09 1.11711
+FPMW_DET3_STRIPY56 740.826 0.979481 1.00916e-07 1.12503
+FPMW_DET3_STRIPY57 569.214 0.969295 -3.49649e-08 1.1647
+FPMW_DET3_STRIPY58 730.171 0.959618 2.60688e-07 1.16198
+FPMW_DET3_STRIPY59 485.656 0.957359 1.00486e-07 1.17677
+FPMW_DET3_STRIPY60 560.391 0.971877 1.14761e-07 1.19405
+FPMW_DET3_STRIPY61 438.175 0.986641 -8.00959e-08 1.14551
+FPMW_DET3_STRIPY62 656.298 0.9643 3.98391e-07 1.18333
+FPMW_DET3_STRIPY63 493.513 0.948509 6.71753e-07 1.21492
+FPMW_DET3_STRIPY64 436.816 1.00853 -6.51827e-07 1.04966
+FPMW_DET3_STRIPY65 645.341 0.99809 -6.66644e-07 1.04996
+FPMW_DET3_STRIPY66 572.802 1.03868 -8.94253e-07 1.09104
+FPMW_DET3_STRIPY67 851.243 0.996119 -6.16913e-08 1.06147
+FPMW_DET3_STRIPY68 713.923 1.00112 -2.35986e-07 1.06671
+FPMW_DET3_STRIPY69 607.848 1.00161 -4.16174e-07 1.08722
+FPMW_DET3_STRIPY70 758.342 0.99217 -6.45776e-07 1.07471
+FPMW_DET3_STRIPY71 730.982 1.0017 -8.9461e-08 1.07538
+FPMW_DET3_STRIPY72 762.022 0.989438 -2.97299e-07 1.087
+FPMW_DET3_STRIPY73 430.107 0.992032 -4.31151e-07 1.13459
+FPMW_DET3_STRIPY74 634.977 0.983616 -1.71844e-07 1.15004
+FPMW_DET3_STRIPY75 576.115 0.985104 -2.39283e-07 1.10477
+FPMW_DET3_STRIPY76 711.476 0.990252 -1.69349e-08 1.10986
+FPMW_DET3_STRIPY77 501.66 0.9765 1.65888e-08 1.16957
+FPMW_DET3_STRIPY78 852.93 0.984252 1.4648e-07 1.11994
+FPMW_DET3_STRIPY79 511.052 1.01263 -8.61485e-08 1.05185
+FPMW_DET3_STRIPY80 445.585 1.04824 -1.32444e-06 1
+FPMW_DET3_STRIPY81 550.335 1.0149 -3.92033e-07 1.02508
+FPMW_DET3_STRIPY82 405.138 1.01447 -7.03979e-07 1.03498
+FPMW_DET3_STRIPY83 442.682 1.01241 -6.23861e-07 1.06404
+FPMW_DET3_STRIPY84 804.23 1.0278 -5.47334e-07 1.03342
+FPMW_DET3_STRIPY85 609.676 1.00482 -6.81065e-07 1.06151
+FPMW_DET3_STRIPY86 423.705 1.02639 -9.21158e-07 1.03425
+FPMW_DET3_STRIPY87 840.094 1.0181 -6.95598e-07 1.03206
+FPMW_DET3_STRIPY88 638.993 1.00762 -5.72416e-07 1.05166
+FPMW_DET3_STRIPY89 601.823 1.01455 -7.47895e-07 1.04847
+FPMW_DET3_STRIPY90 504.051 1.02231 -8.10345e-07 1.05437
+FPMW_DET3_STRIPY91 707.649 0.993899 -4.3479e-07 1.04169
+FPMW_DET3_STRIPY92 478.388 0.988182 -6.62824e-07 1.09983
+FPMW_DET3_STRIPY93 513.665 0.985672 -3.83963e-07 1.1135
+FPMW_DET3_STRIPY94 427.743 0.996845 -5.32533e-07 1.0899
+FPMW_DET3_STRIPY95 721.735 1.01224 -7.67348e-08 1.04527
+FPMW_DET3_STRIPY96 536.4 1.05272 -4.58408e-07 0.999267
+FPMW_DET3_STRIPY97 693.287 1.04256 -7.01992e-07 0.998906
+FPMW_DET3_STRIPY98 672.468 1.01512 -1.1817e-07 1.03544
+FPMW_DET3_STRIPY99 801.868 1.00893 -8.30479e-08 1.04945
+FPMW_DET3_STRIPY100 579.294 1 -9.54182e-16 1.0734
+FPMW_DET3_STRIPY101 545.766 0.992425 3.71352e-08 1.09971
+FPMW_DET3_STRIPY102 720.531 1.00608 -1.23239e-07 1.08066
+FPMW_DET3_STRIPY103 1065.82 1.00034 3.01692e-07 1.03379
+FPMW_DET3_STRIPY104 765.841 1.01378 -1.88349e-07 1.0722
+FPMW_DET3_STRIPY105 588.645 1.00095 3.07857e-08 1.11658
+FPMW_DET3_STRIPY106 720.93 0.972129 -2.97406e-08 1.08273
+FPMW_DET3_STRIPY107 756.161 0.987487 3.3835e-08 1.11947
+FPMW_DET3_STRIPY108 569.336 1.0016 -4.14488e-08 1.17674
+FPMW_DET3_STRIPY109 679.016 0.988207 -1.71248e-07 1.1008
+FPMW_DET3_STRIPY110 715.649 0.982591 1.77555e-07 1.1215
+FPMW_DET3_STRIPY111 380.618 1.00546 1.51274e-07 1.09701
+FPMW_DET3_STRIPY112 618.093 1.0344 -8.44367e-07 0.968523
+FPMW_DET3_STRIPY113 776.103 0.997752 -4.04621e-07 1.02668
+FPMW_DET3_STRIPY114 597.348 0.992052 -4.01945e-07 1.05495
+FPMW_DET3_STRIPY115 591.886 1.00386 -1.93061e-07 1.04091
+FPMW_DET3_STRIPY116 494.573 1.02501 -3.57951e-07 1.04274
+FPMW_DET3_STRIPY117 594.095 0.994652 -3.44513e-07 1.0673
+FPMW_DET3_STRIPY118 943.84 0.983848 9.66695e-08 1.06685
+FPMW_DET3_STRIPY119 613.818 1.00406 -2.19978e-07 1.05632
+FPMW_DET3_STRIPY120 584.267 1.00259 -2.47172e-07 1.06099
+FPMW_DET3_STRIPY121 691.148 1.00667 -1.26964e-07 1.04955
+FPMW_DET3_STRIPY122 646.756 1.00978 -4.05878e-07 1.07448
+FPMW_DET3_STRIPY123 519.802 0.992506 -2.57451e-07 1.08418
+FPMW_DET3_STRIPY124 638.892 0.994253 -1.52972e-08 1.07117
+FPMW_DET3_STRIPY125 751.638 0.988887 1.01724e-07 1.0367
+FPMW_DET3_STRIPY126 700.748 0.959014 2.49519e-07 1.11478
+FPMW_DET3_STRIPY127 571.273 1.05181 -1.37369e-07 1.11779
+FPMW_DET3_STRIPY128 411.248 1.02887 1.70956e-07 0.943007
+FPMW_DET3_STRIPY129 901.187 1.02445 1.88012e-07 0.933827
+FPMW_DET3_STRIPY130 776.618 1.00438 2.22094e-07 0.996693
+FPMW_DET3_STRIPY131 724.076 1.00246 3.26549e-07 0.991709
+FPMW_DET3_STRIPY132 807.747 1.00799 4.82379e-07 0.957047
+FPMW_DET3_STRIPY133 813.919 0.988595 5.19357e-07 0.95143
+FPMW_DET3_STRIPY134 811.985 1.00334 4.58096e-07 0.999018
+FPMW_DET3_STRIPY135 529.84 1.02487 2.18838e-07 1.03542
+FPMW_DET3_STRIPY136 373.055 1.01983 -1.12926e-07 1.04966
+FPMW_DET3_STRIPY137 644.44 0.992571 2.40303e-07 1.00631
+FPMW_DET3_STRIPY138 886.401 0.968677 8.0585e-07 0.984009
+FPMW_DET3_STRIPY139 516.733 1.03857 1.33622e-07 1.05138
+FPMW_DET3_STRIPY140 791.323 1.00777 5.02501e-07 1.00688
+FPMW_DET3_STRIPY141 586.989 0.992296 6.0272e-07 1.03234
+FPMW_DET3_STRIPY142 640.251 1.02948 3.31015e-07 1.05913
+FPMW_DET3_STRIPY143 704.698 0.997093 7.0149e-07 0.989245
+FPMW_DET3_STRIPY144 719.592 1.01301 4.51198e-07 1.02892
+FPMW_DET3_STRIPY145 478.864 0.99962 1.72511e-07 1.10353
+FPMW_DET3_STRIPY146 709.696 0.978192 4.0272e-07 1.09605
+FPMW_DET3_STRIPY147 570.362 0.987044 8.85645e-08 1.12017
+FPMW_DET3_STRIPY148 779.262 0.994904 3.03836e-07 1.15567
+FPMW_DET3_STRIPY149 499.417 0.984206 2.79152e-07 1.15959
+FPMW_DET3_STRIPY150 541.124 1.00571 -2.14281e-07 1.21099
+FPMW_DET3_STRIPY151 749.519 0.966812 3.73376e-07 1.13456
+FPMW_DET3_STRIPY152 675.418 0.956501 1.53854e-07 1.22283
+FPMW_DET3_STRIPY153 746.341 0.920519 3.01802e-07 1.24487
+FPMW_DET3_STRIPY154 643.234 0.857638 8.18026e-07 1.26196
+FPMW_DET3_STRIPY155 577.208 0.867538 9.06654e-07 1.22176
+FPMW_DET3_STRIPY156 638.664 0.80841 1.32553e-06 1.15941
+FPMW_DET3_STRIPY157 594.818 0.755604 1.60769e-06 0.617757
+FPMW_DET3_STRIPY158 576.348 0.666504 1.78097e-06 1.76183
+FPMW_DET3_STRIPY159 531.152 0.503386 3.05329e-06 5.02145
diff --git a/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW4_X.cal b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW4_X.cal
new file mode 100644
index 0000000000000000000000000000000000000000..6a36cd0ab433d92dd53ee3c5e65c808b94b65b1a
--- /dev/null
+++ b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW4_X.cal
@@ -0,0 +1,992 @@
+FPMW_DET4_STRIPX0 761.505 0.902118 1.36742e-05 1
+FPMW_DET4_STRIPX1 794.063 1.0379 2.37795e-06 5.49598
+FPMW_DET4_STRIPX2 991.143 1.04887 -1.28499e-07 0.994679
+FPMW_DET4_STRIPX3 822.702 1.08942 -8.94743e-07 0.929872
+FPMW_DET4_STRIPX4 1039.28 1.05465 -9.96311e-07 1.12005
+FPMW_DET4_STRIPX5 742.914 1.09998 -1.79703e-06 1.0202
+FPMW_DET4_STRIPX6 789.382 1.07212 -1.28204e-06 1.08823
+FPMW_DET4_STRIPX7 623.55 1.09707 -1.54493e-06 0.907948
+FPMW_DET4_STRIPX8 727.35 1.04318 -6.39671e-07 0.99058
+FPMW_DET4_STRIPX9 908.899 1.08073 -1.17457e-06 0.917525
+FPMW_DET4_STRIPX10 631.666 1.0564 -1.0053e-06 1.38706
+FPMW_DET4_STRIPX11 872.726 1.07173 -7.88367e-07 0.801611
+FPMW_DET4_STRIPX12 892.099 1.02356 -1.36718e-07 1.22269
+FPMW_DET4_STRIPX13 899.824 1.0617 -4.12553e-07 0.910323
+FPMW_DET4_STRIPX14 588.766 1.00634 -4.55448e-08 1.24293
+FPMW_DET4_STRIPX15 847.052 1.07017 -2.36954e-07 0.905545
+FPMW_DET4_STRIPX16 628.465 0.983444 -8.62161e-07 1.24415
+FPMW_DET4_STRIPX17 832.596 1.005 -1.19325e-06 1.21661
+FPMW_DET4_STRIPX18 819.916 0.972065 -7.96e-07 1.54221
+FPMW_DET4_STRIPX19 788.767 1.01772 -1.43905e-06 1.07453
+FPMW_DET4_STRIPX20 828.154 0.993507 -1.09949e-06 1.46974
+FPMW_DET4_STRIPX21 1077.17 1.02839 -1.37994e-06 1.10099
+FPMW_DET4_STRIPX22 1059.76 0.998402 -8.33478e-07 1.42387
+FPMW_DET4_STRIPX23 1016.57 1.03727 -1.65403e-06 1.18645
+FPMW_DET4_STRIPX24 992.482 1.00423 -1.1309e-06 1.65813
+FPMW_DET4_STRIPX25 697.802 1.03566 -1.65291e-06 1.5549
+FPMW_DET4_STRIPX26 1081.81 1.00437 -1.15119e-06 1.31112
+FPMW_DET4_STRIPX27 793.686 1.04182 -1.67857e-06 1.13785
+FPMW_DET4_STRIPX28 847.839 0.999549 -9.62079e-07 1.06439
+FPMW_DET4_STRIPX29 746.368 1.03335 -1.27095e-06 1.25632
+FPMW_DET4_STRIPX30 1103.49 0.987979 -5.4372e-07 1.34212
+FPMW_DET4_STRIPX31 860.372 1.06083 -1.33495e-06 1.35904
+FPMW_DET4_STRIPX32 930.867 1.07734 -1.13793e-06 1.09227
+FPMW_DET4_STRIPX33 825.346 1.12381 -1.80334e-06 0.751331
+FPMW_DET4_STRIPX34 877.744 1.08274 -1.3228e-06 1.30101
+FPMW_DET4_STRIPX35 1069.65 1.13399 -1.72664e-06 0.870985
+FPMW_DET4_STRIPX36 814.441 1.09879 -1.65973e-06 1.16883
+FPMW_DET4_STRIPX37 1008.49 1.13087 -1.87175e-06 1.1102
+FPMW_DET4_STRIPX38 719.591 1.06168 -1.12586e-06 1.01876
+FPMW_DET4_STRIPX39 1085.15 1.11604 -1.64226e-06 0.877012
+FPMW_DET4_STRIPX40 562.875 1.07291 -1.27815e-06 1.19406
+FPMW_DET4_STRIPX41 478.207 1.10818 -1.8648e-06 0.992391
+FPMW_DET4_STRIPX42 859.91 1.0646 -1.1954e-06 0.911981
+FPMW_DET4_STRIPX43 846.222 1.1 -1.18071e-06 1.01379
+FPMW_DET4_STRIPX44 848.82 1.05186 -1.045e-06 0.808751
+FPMW_DET4_STRIPX45 769.298 1.08778 -1.25408e-06 1.22915
+FPMW_DET4_STRIPX46 924.722 1.04818 -9.14804e-07 1.06813
+FPMW_DET4_STRIPX47 604.12 1.06818 -1.47995e-06 0.962025
+FPMW_DET4_STRIPX48 600.79 1.1062 -9.37876e-07 0.933931
+FPMW_DET4_STRIPX49 701.09 1.18368 -1.75736e-06 0.857553
+FPMW_DET4_STRIPX50 877.101 1.13687 -9.89121e-07 0.951298
+FPMW_DET4_STRIPX51 774.178 1.19259 -2.02905e-06 0.856857
+FPMW_DET4_STRIPX52 804.971 1.14206 -9.68367e-07 0.932501
+FPMW_DET4_STRIPX53 920.628 1.19092 -1.19736e-06 0.987152
+FPMW_DET4_STRIPX54 746.452 1.14617 -1.21702e-06 0.793848
+FPMW_DET4_STRIPX55 745.048 1.1894 -1.47886e-06 0.926392
+FPMW_DET4_STRIPX56 1310.63 1.138 -3.5946e-07 0.934211
+FPMW_DET4_STRIPX57 790.697 1.18855 -1.54669e-06 1.07697
+FPMW_DET4_STRIPX58 893.97 1.14572 -9.24933e-07 0.974838
+FPMW_DET4_STRIPX59 939.645 1.17847 -1.05405e-06 0.996176
+FPMW_DET4_STRIPX60 934.594 1.14206 -9.88585e-07 0.787583
+FPMW_DET4_STRIPX61 859.323 1.18997 -1.46516e-06 1.0579
+FPMW_DET4_STRIPX62 724.522 1.12472 -7.81223e-07 1.01067
+FPMW_DET4_STRIPX63 895.867 1.14125 -6.73145e-07 0.927946
+FPMW_DET4_STRIPX64 736.743 1.07252 -1.02458e-06 1.18041
+FPMW_DET4_STRIPX65 679.812 1.12836 -1.48461e-06 0.93412
+FPMW_DET4_STRIPX66 656.308 1.08816 -1.13554e-06 1.05105
+FPMW_DET4_STRIPX67 796.111 1.12541 -1.70233e-06 0.773491
+FPMW_DET4_STRIPX68 804.804 1.07928 -1.12944e-06 1.11954
+FPMW_DET4_STRIPX69 946.162 1.11948 -1.57797e-06 0.897297
+FPMW_DET4_STRIPX70 990.471 1.07045 -9.5059e-07 0.997344
+FPMW_DET4_STRIPX71 993.232 1.12476 -1.39764e-06 0.941794
+FPMW_DET4_STRIPX72 965.942 1.06859 -7.71612e-07 1.25779
+FPMW_DET4_STRIPX73 975.509 1.11607 -1.1507e-06 1.06801
+FPMW_DET4_STRIPX74 1076.1 1.07326 -5.35303e-07 1.03545
+FPMW_DET4_STRIPX75 803.791 1.10763 -9.56274e-07 1.05079
+FPMW_DET4_STRIPX76 681.041 1.05164 -8.36427e-07 0.935739
+FPMW_DET4_STRIPX77 496.168 1.09053 -9.43294e-07 0.788605
+FPMW_DET4_STRIPX78 611.877 1.03307 -1.47949e-07 1.13916
+FPMW_DET4_STRIPX79 760.425 1.0575 -5.03462e-09 0.987044
+FPMW_DET4_STRIPX80 802.072 1.06764 -8.12311e-07 0.967016
+FPMW_DET4_STRIPX81 810.14 1.13566 -1.54169e-06 1.1351
+FPMW_DET4_STRIPX82 889.361 1.09295 -8.76575e-07 1.15907
+FPMW_DET4_STRIPX83 892.319 1.14323 -1.7621e-06 1.03062
+FPMW_DET4_STRIPX84 802.561 1.10011 -9.22798e-07 1.30682
+FPMW_DET4_STRIPX85 836.486 1.15277 -1.56017e-06 0.973266
+FPMW_DET4_STRIPX86 1042.58 1.10758 -1.20397e-06 0.953699
+FPMW_DET4_STRIPX87 749.897 1.16285 -1.46468e-06 0.842397
+FPMW_DET4_STRIPX88 740.678 1.09833 -7.50414e-07 1.19689
+FPMW_DET4_STRIPX89 907.148 1.15164 -1.13843e-06 0.74668
+FPMW_DET4_STRIPX90 596.037 1.09823 -6.85019e-07 1.10222
+FPMW_DET4_STRIPX91 1047.11 1.12762 -7.35931e-07 0.619568
+FPMW_DET4_STRIPX92 428.067 1.09923 -5.5799e-07 1.17586
+FPMW_DET4_STRIPX93 656.466 1.13374 -4.53749e-07 0.650644
+FPMW_DET4_STRIPX94 728.797 1.0763 -2.91248e-08 1.10398
+FPMW_DET4_STRIPX95 703.339 1.10298 -1.50298e-07 0.919342
+FPMW_DET4_STRIPX96 777.41 1.08862 -1.58815e-06 1.13367
+FPMW_DET4_STRIPX97 1023.85 1.15522 -1.98983e-06 0.858116
+FPMW_DET4_STRIPX98 603.389 1.1137 -1.79968e-06 1.0595
+FPMW_DET4_STRIPX99 719.508 1.15869 -2.26537e-06 0.874139
+FPMW_DET4_STRIPX100 1113.79 1.10965 -1.40472e-06 1.01703
+FPMW_DET4_STRIPX101 728.641 1.15775 -1.97513e-06 0.843153
+FPMW_DET4_STRIPX102 819.735 1.11551 -1.43449e-06 1.0067
+FPMW_DET4_STRIPX103 861.622 1.16403 -1.89449e-06 0.939052
+FPMW_DET4_STRIPX104 610.007 1.1007 -1.40749e-06 0.882802
+FPMW_DET4_STRIPX105 728.376 1.16637 -2.10228e-06 0.865594
+FPMW_DET4_STRIPX106 765.683 1.12035 -1.37033e-06 1.05148
+FPMW_DET4_STRIPX107 865.519 1.15855 -1.84652e-06 0.941797
+FPMW_DET4_STRIPX108 891.967 1.10368 -1.05685e-06 1.10559
+FPMW_DET4_STRIPX109 728.078 1.1537 -1.91059e-06 0.984068
+FPMW_DET4_STRIPX110 944.066 1.08331 -5.51046e-07 1.19447
+FPMW_DET4_STRIPX111 891.662 1.10663 -6.9145e-07 1.04033
+FPMW_DET4_STRIPX112 760.23 1.13301 -2.18641e-06 1.05942
+FPMW_DET4_STRIPX113 1137.78 1.19008 -2.36073e-06 0.853193
+FPMW_DET4_STRIPX114 810.297 1.15822 -2.10129e-06 1.18895
+FPMW_DET4_STRIPX115 808.209 1.19118 -2.6638e-06 1.0299
+FPMW_DET4_STRIPX116 1182.43 1.15067 -1.65539e-06 0.997107
+FPMW_DET4_STRIPX117 587.252 1.20048 -2.74531e-06 1.02306
+FPMW_DET4_STRIPX118 1066.53 1.14278 -1.49474e-06 0.996174
+FPMW_DET4_STRIPX119 1034.78 1.18669 -1.86369e-06 0.937897
+FPMW_DET4_STRIPX120 692.785 1.15217 -1.81316e-06 1.00954
+FPMW_DET4_STRIPX121 875.908 1.20133 -2.34966e-06 0.908974
+FPMW_DET4_STRIPX122 978.512 1.13996 -1.43174e-06 1.23829
+FPMW_DET4_STRIPX123 680.059 1.17906 -1.82053e-06 0.957563
+FPMW_DET4_STRIPX124 956.08 1.13512 -1.05934e-06 1.01179
+FPMW_DET4_STRIPX125 555.374 1.18115 -1.72785e-06 0.935374
+FPMW_DET4_STRIPX126 998.51 1.11895 -6.1266e-07 0.990961
+FPMW_DET4_STRIPX127 895.055 1.1305 -7.85509e-07 0.949321
+FPMW_DET4_STRIPX128 486.834 1.11313 -1.34186e-06 1.04118
+FPMW_DET4_STRIPX129 955.949 1.11001 -9.29729e-07 0.902893
+FPMW_DET4_STRIPX130 757.123 128.52 -0.617883 1
+FPMW_DET4_STRIPX131 883.768 1.11896 -9.57016e-07 1.09091
+FPMW_DET4_STRIPX132 537.004 1.11061 -1.5222e-06 1.01118
+FPMW_DET4_STRIPX133 981.892 1.16014 -1.63804e-06 1.00914
+FPMW_DET4_STRIPX134 983.743 1.10978 -1.04751e-06 0.905996
+FPMW_DET4_STRIPX135 878.281 1.14237 -1.24938e-06 1.12378
+FPMW_DET4_STRIPX136 857.421 1.10912 -9.96301e-07 1.11821
+FPMW_DET4_STRIPX137 815.475 1.15103 -1.53442e-06 1.04218
+FPMW_DET4_STRIPX138 943.997 1.10821 -9.29638e-07 1.0515
+FPMW_DET4_STRIPX139 1089.26 1.13525 -8.7595e-07 0.954795
+FPMW_DET4_STRIPX140 797.79 1.11706 -8.4971e-07 1.34065
+FPMW_DET4_STRIPX141 854.058 1.16258 -1.1631e-06 0.75634
+FPMW_DET4_STRIPX142 511.458 1.09892 -7.07286e-07 1.19265
+FPMW_DET4_STRIPX143 951.624 1.12876 -7.46573e-07 0.906007
+FPMW_DET4_STRIPX144 741.131 1.09529 -1.56757e-06 1.15323
+FPMW_DET4_STRIPX145 551.199 1.15025 -2.34621e-06 0.802322
+FPMW_DET4_STRIPX146 663.299 1.10134 -1.45371e-06 1.14309
+FPMW_DET4_STRIPX147 807.536 1.15478 -2.1807e-06 0.934148
+FPMW_DET4_STRIPX148 864.018 1.11389 -1.57128e-06 1.07403
+FPMW_DET4_STRIPX149 934.626 1.16382 -1.77163e-06 1.03
+FPMW_DET4_STRIPX150 747.704 1.10713 -1.44508e-06 1.34908
+FPMW_DET4_STRIPX151 1156.02 1.13678 -1.41259e-06 1.05044
+FPMW_DET4_STRIPX152 846.285 1.11153 -1.0045e-06 1.11845
+FPMW_DET4_STRIPX153 667.802 1.151 -1.4969e-06 0.999853
+FPMW_DET4_STRIPX154 738.071 1.11057 -1.3675e-06 0.948687
+FPMW_DET4_STRIPX155 670.376 1.15253 -1.51771e-06 1.01752
+FPMW_DET4_STRIPX156 751.39 1.09905 -1.06774e-06 1.03252
+FPMW_DET4_STRIPX157 606.064 1.15407 -1.53492e-06 0.88059
+FPMW_DET4_STRIPX158 757.902 1.08609 -5.8124e-07 1.10915
+FPMW_DET4_STRIPX159 971.836 1.11061 -5.40317e-07 0.871299
+FPMW_DET4_STRIPX160 664.381 1.06239 -7.80657e-07 1.07524
+FPMW_DET4_STRIPX161 1033.07 1.13286 -9.57781e-07 1.12556
+FPMW_DET4_STRIPX162 1090.02 1.08395 -3.71602e-07 1.33919
+FPMW_DET4_STRIPX163 1049.04 1.13098 -7.86812e-07 1.1578
+FPMW_DET4_STRIPX164 1110.93 1.0945 -4.2285e-07 1.19862
+FPMW_DET4_STRIPX165 1024.31 1.12132 -4.98618e-07 1.23571
+FPMW_DET4_STRIPX166 846.711 1.05001 -1.35767e-07 1.18036
+FPMW_DET4_STRIPX167 997.398 1.11381 -6.96544e-07 1.25106
+FPMW_DET4_STRIPX168 1027.79 1.06157 7.1934e-08 1.21456
+FPMW_DET4_STRIPX169 944.223 1.10778 -3.32471e-07 1.07594
+FPMW_DET4_STRIPX170 1122.18 1.05595 2.32779e-07 1.26878
+FPMW_DET4_STRIPX171 1090.58 1.09883 -3.53505e-08 1.18657
+FPMW_DET4_STRIPX172 956.285 1.04009 4.51126e-07 1.26053
+FPMW_DET4_STRIPX173 701.001 1.09347 -2.43935e-07 1.42672
+FPMW_DET4_STRIPX174 951.404 1.03342 3.80056e-07 0.878284
+FPMW_DET4_STRIPX175 457.308 1.08191 -1.65106e-07 1.11979
+FPMW_DET4_STRIPX176 620.648 1.01452 -2.16745e-07 1.06822
+FPMW_DET4_STRIPX177 881.134 1.08454 -5.25163e-07 1.16338
+FPMW_DET4_STRIPX178 453.953 1.04493 -4.37597e-07 1.04886
+FPMW_DET4_STRIPX179 561.476 1.09585 -9.62937e-07 0.937124
+FPMW_DET4_STRIPX180 682.361 1.05351 -5.84759e-07 1.21382
+FPMW_DET4_STRIPX181 706.418 1.10197 -1.06178e-06 1.0709
+FPMW_DET4_STRIPX182 692.801 1.04464 -1.86976e-07 1.18432
+FPMW_DET4_STRIPX183 608.081 1.04733 -3.42982e-07 1.06745
+FPMW_DET4_STRIPX184 884.252 41.3126 -0.0139602 1
+FPMW_DET4_STRIPX185 680.842 1.05789 1.54236e-08 1.11639
+FPMW_DET4_STRIPX186 684.774 1.0474 1.50355e-07 1.09429
+FPMW_DET4_STRIPX187 676.61 1.09492 -2.1896e-07 1.06562
+FPMW_DET4_STRIPX188 617.628 1.05144 2.04996e-07 1.18211
+FPMW_DET4_STRIPX189 873.497 1.09427 -3.72916e-08 1.02263
+FPMW_DET4_STRIPX190 740.409 1.0354 3.61902e-07 1.15811
+FPMW_DET4_STRIPX191 639.916 1.06459 -1.70871e-07 1.3488
+FPMW_DET4_STRIPX192 571.632 1.07785 -1.20606e-06 1.05229
+FPMW_DET4_STRIPX193 734.431 1.14265 -1.69117e-06 0.904379
+FPMW_DET4_STRIPX194 647.727 1.10013 -1.02822e-06 1.22919
+FPMW_DET4_STRIPX195 1086.94 1.13554 -6.06059e-07 0.947124
+FPMW_DET4_STRIPX196 860.072 1.10678 -7.27031e-07 1.10372
+FPMW_DET4_STRIPX197 703.596 1.14997 -1.243e-06 0.788235
+FPMW_DET4_STRIPX198 641.047 1.10333 -8.30432e-07 0.78553
+FPMW_DET4_STRIPX199 921.657 1.13389 -8.29277e-07 0.862947
+FPMW_DET4_STRIPX200 689.548 1.07432 -2.75583e-07 0.738237
+FPMW_DET4_STRIPX201 490.786 1.13806 -1.00782e-06 0.954645
+FPMW_DET4_STRIPX202 1101.03 1.10995 -6.66769e-07 0.728489
+FPMW_DET4_STRIPX203 583.884 1.14066 -1.00782e-06 0.753081
+FPMW_DET4_STRIPX204 682.783 1.07951 -2.28632e-07 0.826752
+FPMW_DET4_STRIPX205 698.304 1.13195 -7.66494e-07 0.888446
+FPMW_DET4_STRIPX206 998.88 1.06286 1.7656e-07 0.930987
+FPMW_DET4_STRIPX207 1014.3 1.10541 -1.83275e-07 1.03886
+FPMW_DET4_STRIPX208 713.255 1.09453 -1.70098e-06 0.946114
+FPMW_DET4_STRIPX209 940.882 1.13713 -1.83849e-06 0.954513
+FPMW_DET4_STRIPX210 1005.64 1.10478 -1.38438e-06 1.04473
+FPMW_DET4_STRIPX211 765.656 1.18042 -2.14074e-06 0.812062
+FPMW_DET4_STRIPX212 748.303 1.11991 -1.88925e-06 0.896233
+FPMW_DET4_STRIPX213 936.329 1.15979 -2.1486e-06 0.733027
+FPMW_DET4_STRIPX214 829.964 1.12095 -1.51182e-06 1.11619
+FPMW_DET4_STRIPX215 963.114 1.16349 -1.84311e-06 0.741933
+FPMW_DET4_STRIPX216 420.668 1.11092 -1.73632e-06 0.802275
+FPMW_DET4_STRIPX217 791.714 1.16721 -2.14095e-06 0.798722
+FPMW_DET4_STRIPX218 734.297 1.09955 -1.23091e-06 0.816382
+FPMW_DET4_STRIPX219 669.37 1.14358 -1.82246e-06 0.785784
+FPMW_DET4_STRIPX220 656.172 1.10377 -1.2466e-06 0.772019
+FPMW_DET4_STRIPX221 677.383 1.14596 -1.71863e-06 0.724453
+FPMW_DET4_STRIPX222 731.427 1.09399 -1.00733e-06 0.969852
+FPMW_DET4_STRIPX223 1089.66 1.12185 -7.69704e-07 0.853746
+FPMW_DET4_STRIPX224 700.048 1.14556 -2.33742e-06 0.894545
+FPMW_DET4_STRIPX225 882.431 1.16871 -2.58116e-06 0.873356
+FPMW_DET4_STRIPX226 956.658 1.10772 -1.70321e-06 0.976957
+FPMW_DET4_STRIPX227 796.157 1.14915 -2.12382e-06 0.765483
+FPMW_DET4_STRIPX228 953.498 1.08044 -1.4984e-06 1.00372
+FPMW_DET4_STRIPX229 770.41 1.16263 -2.48897e-06 1.01565
+FPMW_DET4_STRIPX230 1112.09 1.10224 -1.37349e-06 0.960986
+FPMW_DET4_STRIPX231 1144.58 1.13968 -1.84501e-06 0.874779
+FPMW_DET4_STRIPX232 742.352 1.1034 -1.70253e-06 1.03395
+FPMW_DET4_STRIPX233 990.366 1.13915 -1.98152e-06 0.739626
+FPMW_DET4_STRIPX234 433.336 1.11024 -1.85083e-06 0.963494
+FPMW_DET4_STRIPX235 888.904 1.14897 -2.02355e-06 0.794991
+FPMW_DET4_STRIPX236 992.201 1.10411 -1.37693e-06 0.871413
+FPMW_DET4_STRIPX237 726.449 1.14907 -2.01286e-06 0.829373
+FPMW_DET4_STRIPX238 849.886 1.10031 -1.39977e-06 0.894167
+FPMW_DET4_STRIPX239 1036.76 1.12269 -1.42862e-06 0.824704
+FPMW_DET4_STRIPX240 451.234 0.987445 -3.14865e-07 1.08735
+FPMW_DET4_STRIPX241 618.795 1.03598 -1.03948e-06 0.78589
+FPMW_DET4_STRIPX242 728.028 1.00236 -4.18976e-07 0.93227
+FPMW_DET4_STRIPX243 750.353 1.0559 -1.23036e-06 0.79549
+FPMW_DET4_STRIPX244 712.509 1.01404 -3.8245e-07 0.993066
+FPMW_DET4_STRIPX245 814.999 1.06018 -9.21552e-07 1.02445
+FPMW_DET4_STRIPX246 1045.32 1.00822 -1.06311e-07 1.34214
+FPMW_DET4_STRIPX247 782.155 1.0328 -5.46081e-07 0.879995
+FPMW_DET4_STRIPX248 642.828 0.989768 -5.86059e-08 1.00384
+FPMW_DET4_STRIPX249 718.842 1.03598 -3.77942e-07 0.950748
+FPMW_DET4_STRIPX250 1027.13 0.992629 2.38076e-07 1.12713
+FPMW_DET4_STRIPX251 830.401 1.01878 4.60281e-08 0.92868
+FPMW_DET4_STRIPX252 679.204 0.975818 2.28937e-07 1.0961
+FPMW_DET4_STRIPX253 614.903 1.01293 2.36054e-07 0.81293
+FPMW_DET4_STRIPX254 612.204 0.958287 6.21036e-07 0.945363
+FPMW_DET4_STRIPX255 488.169 1.00166 4.88725e-07 1.08977
+FPMW_DET4_STRIPX256 778.769 0.940667 -2.09735e-07 0.864272
+FPMW_DET4_STRIPX257 843.893 0.978907 -5.50131e-07 1.02877
+FPMW_DET4_STRIPX258 841.951 0.956471 -4.30747e-07 0.786284
+FPMW_DET4_STRIPX259 536.782 0.998475 -6.48359e-07 1.11088
+FPMW_DET4_STRIPX260 759.349 0.975021 -6.72056e-07 0.433515
+FPMW_DET4_STRIPX261 585.66 1.01491 -1.08273e-06 1.03459
+FPMW_DET4_STRIPX262 899.266 0.980857 -5.3845e-07 0.740571
+FPMW_DET4_STRIPX263 750.372 1.02019 -1.00117e-06 0.974505
+FPMW_DET4_STRIPX264 889.005 0.981329 -4.90923e-07 0.959962
+FPMW_DET4_STRIPX265 1003.89 1.02379 -7.93116e-07 0.992618
+FPMW_DET4_STRIPX266 1045.82 0.98583 -3.98971e-07 0.787086
+FPMW_DET4_STRIPX267 786.989 1.0294 -1.08033e-06 1.08959
+FPMW_DET4_STRIPX268 782.8 0.991948 -6.47232e-07 0.942419
+FPMW_DET4_STRIPX269 725.765 1.02705 -8.39987e-07 0.744273
+FPMW_DET4_STRIPX270 422.918 0.976401 -5.30151e-07 1.2529
+FPMW_DET4_STRIPX271 748.281 1.01238 -5.48655e-07 0.570975
+FPMW_DET4_STRIPX272 758.721 0.987715 -5.70872e-08 1.04691
+FPMW_DET4_STRIPX273 738.31 1.03552 -4.38013e-07 0.865304
+FPMW_DET4_STRIPX274 427.209 1.00639 -2.91314e-07 1.03445
+FPMW_DET4_STRIPX275 871.79 1.0437 -4.17759e-07 0.833105
+FPMW_DET4_STRIPX276 667.718 1.01109 -3.26033e-08 0.900942
+FPMW_DET4_STRIPX277 864.032 1.05206 -7.76601e-07 1.06747
+FPMW_DET4_STRIPX278 992.037 1.00872 1.06156e-07 0.984692
+FPMW_DET4_STRIPX279 854.803 1.05782 -5.88038e-07 1.13254
+FPMW_DET4_STRIPX280 973.31 1.0039 4.2982e-07 1.3242
+FPMW_DET4_STRIPX281 931.184 1.05546 -4.71962e-07 1.05446
+FPMW_DET4_STRIPX282 857.795 0.994455 1.27828e-07 1.07515
+FPMW_DET4_STRIPX283 938.27 1.04707 -1.66341e-07 1.08277
+FPMW_DET4_STRIPX284 837.341 1.00747 1.13111e-07 1.04827
+FPMW_DET4_STRIPX285 882.643 1.04217 1.79311e-08 1.18316
+FPMW_DET4_STRIPX286 865.585 0.999521 1.30863e-07 0.851643
+FPMW_DET4_STRIPX287 769.875 1.03963 1.28724e-07 1.52535
+FPMW_DET4_STRIPX288 844.844 0.995774 -8.15376e-07 1.01774
+FPMW_DET4_STRIPX289 595.649 1.03029 -1.18835e-06 0.939049
+FPMW_DET4_STRIPX290 831.13 0.992044 -6.62927e-07 0.948823
+FPMW_DET4_STRIPX291 829.941 1.03406 -8.06343e-07 1.17175
+FPMW_DET4_STRIPX292 844.928 1.00599 -6.52069e-07 0.976307
+FPMW_DET4_STRIPX293 877.76 1.06261 -1.36989e-06 1.00416
+FPMW_DET4_STRIPX294 944.412 1.028 -9.43075e-07 1.02466
+FPMW_DET4_STRIPX295 751.932 1.06543 -1.23e-06 1.06732
+FPMW_DET4_STRIPX296 953.675 1.01769 -5.15964e-07 0.952558
+FPMW_DET4_STRIPX297 773.098 1.06961 -1.31367e-06 0.969583
+FPMW_DET4_STRIPX298 700.648 1.02437 -7.48809e-07 0.980271
+FPMW_DET4_STRIPX299 571.926 1.05961 -9.98765e-07 0.892876
+FPMW_DET4_STRIPX300 846.457 1.01425 -8.04265e-07 0.955862
+FPMW_DET4_STRIPX301 732.711 1.0622 -1.23356e-06 0.860595
+FPMW_DET4_STRIPX302 718.586 1.00598 -7.02149e-07 1.00826
+FPMW_DET4_STRIPX303 833.575 1.04185 -8.49817e-07 0.774487
+FPMW_DET4_STRIPX304 441.672 1.0097 -8.35239e-07 1.10905
+FPMW_DET4_STRIPX305 787.065 1.05093 -1.2017e-06 0.987864
+FPMW_DET4_STRIPX306 860.501 1.02263 -5.53062e-07 1.16084
+FPMW_DET4_STRIPX307 1134.69 1.059 -6.51494e-07 1.18459
+FPMW_DET4_STRIPX308 958.234 1.02363 -6.30417e-07 1.07721
+FPMW_DET4_STRIPX309 673.395 1.06393 -1.30994e-06 1.03453
+FPMW_DET4_STRIPX310 960.108 1.02714 -4.92518e-07 0.856987
+FPMW_DET4_STRIPX311 596.335 1.06955 -1.22982e-06 1.14803
+FPMW_DET4_STRIPX312 902.568 1.02357 -4.93263e-07 0.825934
+FPMW_DET4_STRIPX313 677.111 1.05216 -1.0199e-06 1.07064
+FPMW_DET4_STRIPX314 733.826 1.02019 -3.15865e-07 1.04884
+FPMW_DET4_STRIPX315 843.35 1.07174 -9.21301e-07 0.965108
+FPMW_DET4_STRIPX316 829.076 1.02584 -3.55411e-07 1.17157
+FPMW_DET4_STRIPX317 781.938 1.04793 -4.5857e-07 1.00916
+FPMW_DET4_STRIPX318 796.686 0.997264 -7.85846e-08 1.14533
+FPMW_DET4_STRIPX319 866.043 1.03108 2.20188e-08 1.2065
+FPMW_DET4_STRIPX320 813.785 1.10084 -6.86252e-07 1.04212
+FPMW_DET4_STRIPX321 782.297 1.12311 -9.49467e-07 0.994083
+FPMW_DET4_STRIPX322 836.292 1.07778 -3.18125e-07 1.06837
+FPMW_DET4_STRIPX323 906.174 1.10132 -7.1598e-07 0.958848
+FPMW_DET4_STRIPX324 1106.5 1.07479 -2.02006e-07 1.06585
+FPMW_DET4_STRIPX325 671.565 1.11406 -8.14583e-07 1.03236
+FPMW_DET4_STRIPX326 961.005 1.06186 3.15331e-07 1.12378
+FPMW_DET4_STRIPX327 863.019 1.11303 -3.2094e-07 0.957707
+FPMW_DET4_STRIPX328 944.311 1.06249 2.63104e-07 1.16747
+FPMW_DET4_STRIPX329 1111.33 1.10803 -1.54237e-07 0.964781
+FPMW_DET4_STRIPX330 621.391 1.06139 -6.04407e-09 0.934748
+FPMW_DET4_STRIPX331 839.686 1.09721 -8.64278e-08 0.962178
+FPMW_DET4_STRIPX332 783.81 1.05197 3.93502e-07 1.09501
+FPMW_DET4_STRIPX333 735.079 1.08072 4.0767e-07 0.935312
+FPMW_DET4_STRIPX334 793.899 1.02415 9.74141e-07 1.08521
+FPMW_DET4_STRIPX335 929.285 1.06275 6.50216e-07 1.01838
+FPMW_DET4_STRIPX336 580.279 1.00358 -4.6522e-07 0.999078
+FPMW_DET4_STRIPX337 559.418 1.03929 -1.14371e-06 1.02093
+FPMW_DET4_STRIPX338 865.557 0.992237 -1.20069e-07 1.01193
+FPMW_DET4_STRIPX339 668.517 1.04339 -7.39709e-07 1.06824
+FPMW_DET4_STRIPX340 706.618 1.01589 -4.72773e-07 1.03037
+FPMW_DET4_STRIPX341 573.345 1.05479 -9.10339e-07 0.950234
+FPMW_DET4_STRIPX342 886.411 1.02158 -4.83607e-07 1.00147
+FPMW_DET4_STRIPX343 607.096 1.04983 -7.31142e-07 1.78342
+FPMW_DET4_STRIPX344 1055.07 1.01312 -4.20736e-08 1.35253
+FPMW_DET4_STRIPX345 570.021 1.0513 -7.12236e-07 0.985954
+FPMW_DET4_STRIPX346 850.606 1.00374 -1.61165e-07 0.78548
+FPMW_DET4_STRIPX347 498.562 1.02659 -3.61855e-07 1.22665
+FPMW_DET4_STRIPX348 790.498 0.999961 -1.34716e-07 1.06841
+FPMW_DET4_STRIPX349 725.189 1.02749 -2.38497e-07 1.11669
+FPMW_DET4_STRIPX350 606.929 0.972524 2.78197e-07 0.998826
+FPMW_DET4_STRIPX351 829.259 1.01328 7.42724e-08 1.11254
+FPMW_DET4_STRIPX352 775.792 0.99966 -5.45647e-08 1.06233
+FPMW_DET4_STRIPX353 576.041 1.03291 -7.30704e-07 1.12224
+FPMW_DET4_STRIPX354 879.507 0.985835 -2.57411e-07 0.960403
+FPMW_DET4_STRIPX355 784.14 1.03198 -6.14798e-07 0.999422
+FPMW_DET4_STRIPX356 695.37 1.00132 -2.00397e-07 1.06363
+FPMW_DET4_STRIPX357 670.558 1.02702 -4.30116e-07 0.980602
+FPMW_DET4_STRIPX358 588.961 0.986791 -4.14783e-08 0.981935
+FPMW_DET4_STRIPX359 734.636 1.02448 -1.0956e-07 1.01076
+FPMW_DET4_STRIPX360 1069 0.981164 5.58312e-07 1.06856
+FPMW_DET4_STRIPX361 776.962 1.01587 -5.10383e-08 1.1037
+FPMW_DET4_STRIPX362 601.347 0.98212 1.35339e-07 1.22467
+FPMW_DET4_STRIPX363 807.369 0.998402 3.40968e-07 1.00418
+FPMW_DET4_STRIPX364 648.7 0.965591 6.40891e-07 1.0778
+FPMW_DET4_STRIPX365 698.063 0.999395 5.27273e-07 1.00892
+FPMW_DET4_STRIPX366 644.541 0.948074 1.05147e-06 1.13312
+FPMW_DET4_STRIPX367 638.532 0.974615 7.79172e-07 0.986232
+FPMW_DET4_STRIPX368 497.129 1.0355 -9.97371e-07 1.01829
+FPMW_DET4_STRIPX369 562.369 1.07082 -1.29507e-06 0.751761
+FPMW_DET4_STRIPX370 511.53 1.0554 -1.11691e-06 0.981494
+FPMW_DET4_STRIPX371 731.605 1.09062 -1.43224e-06 0.811977
+FPMW_DET4_STRIPX372 571.132 1.04249 -1.04496e-06 1.00192
+FPMW_DET4_STRIPX373 751.67 1.09095 -1.241e-06 0.862657
+FPMW_DET4_STRIPX374 744.159 1.04957 -7.3424e-07 0.958672
+FPMW_DET4_STRIPX375 635.427 1.09272 -1.34151e-06 0.910188
+FPMW_DET4_STRIPX376 677.672 1.04755 -7.73457e-07 1.04978
+FPMW_DET4_STRIPX377 728.446 1.08435 -1.2704e-06 0.90831
+FPMW_DET4_STRIPX378 707.21 1.03514 -7.40854e-07 1.11094
+FPMW_DET4_STRIPX379 840.592 1.08148 -9.93866e-07 1.02942
+FPMW_DET4_STRIPX380 707.591 1.02774 -2.26805e-07 1.06448
+FPMW_DET4_STRIPX381 642.201 1.06853 -9.12282e-07 0.852532
+FPMW_DET4_STRIPX382 843.784 1.01459 -9.68172e-08 0.963556
+FPMW_DET4_STRIPX383 674.607 1.05753 -4.00952e-07 1.01394
+FPMW_DET4_STRIPX384 909.331 1.1122 -1.41819e-06 1.11924
+FPMW_DET4_STRIPX385 1100.66 1.14359 -1.38317e-06 1.04605
+FPMW_DET4_STRIPX386 743.255 1.13933 -1.70369e-06 1.12141
+FPMW_DET4_STRIPX387 951.429 1.18536 -2.05863e-06 1.04686
+FPMW_DET4_STRIPX388 893.939 1.13483 -1.41669e-06 0.999719
+FPMW_DET4_STRIPX389 697.735 1.16061 -1.67591e-06 0.861581
+FPMW_DET4_STRIPX390 773.027 1.13112 -9.31212e-07 0.853727
+FPMW_DET4_STRIPX391 960.489 1.17232 -1.45258e-06 1.02343
+FPMW_DET4_STRIPX392 888.339 1.12818 -1.09644e-06 1.03434
+FPMW_DET4_STRIPX393 821.17 1.18028 -1.63793e-06 0.836169
+FPMW_DET4_STRIPX394 677.234 1.13146 -1.04512e-06 0.979109
+FPMW_DET4_STRIPX395 719.139 1.16928 -1.13154e-06 1.01784
+FPMW_DET4_STRIPX396 850.248 1.12958 -9.37628e-07 1.19912
+FPMW_DET4_STRIPX397 820.081 1.16459 -5.73207e-07 0.932068
+FPMW_DET4_STRIPX398 783.926 1.10469 -3.76698e-07 1.02233
+FPMW_DET4_STRIPX399 884.217 1.1489 -1.01236e-06 1.21796
+FPMW_DET4_STRIPX400 677.261 1.13001 -1.28207e-06 0.936295
+FPMW_DET4_STRIPX401 781.154 1.20376 -2.19573e-06 0.996994
+FPMW_DET4_STRIPX402 868.982 1.16409 -1.60903e-06 0.994533
+FPMW_DET4_STRIPX403 894.052 1.19871 -1.97027e-06 0.975428
+FPMW_DET4_STRIPX404 825.581 1.15618 -1.26098e-06 0.986964
+FPMW_DET4_STRIPX405 807.264 1.20409 -2.27197e-06 0.798449
+FPMW_DET4_STRIPX406 419.992 1.15229 -1.29394e-06 1.05121
+FPMW_DET4_STRIPX407 998.978 1.20189 -1.4595e-06 0.666485
+FPMW_DET4_STRIPX408 761.543 1.15515 -1.24722e-06 1.09188
+FPMW_DET4_STRIPX409 725.78 1.19821 -1.59233e-06 0.910389
+FPMW_DET4_STRIPX410 999.98 1.13094 -6.12854e-07 0.984555
+FPMW_DET4_STRIPX411 730.321 1.18535 -1.4758e-06 1.11079
+FPMW_DET4_STRIPX412 902.765 1.12236 -4.01744e-07 0.947202
+FPMW_DET4_STRIPX413 1030.3 1.16615 -1.02842e-06 1.11922
+FPMW_DET4_STRIPX414 818.703 1.11772 -9.73064e-07 0.96094
+FPMW_DET4_STRIPX415 682.737 1.12531 -8.79872e-07 0.994758
+FPMW_DET4_STRIPX416 543.937 1.01723 -9.09547e-07 0.98002
+FPMW_DET4_STRIPX417 521.428 1.03788 -1.29422e-06 0.846594
+FPMW_DET4_STRIPX418 514.918 0.983503 -2.1111e-07 1.03345
+FPMW_DET4_STRIPX419 775.457 1.02234 -6.48751e-07 1.03084
+FPMW_DET4_STRIPX420 1017.62 0.984989 -1.04476e-07 1.01721
+FPMW_DET4_STRIPX421 745.922 1.02379 -5.68363e-07 1.15319
+FPMW_DET4_STRIPX422 734.528 0.985583 -3.17628e-07 1.03975
+FPMW_DET4_STRIPX423 589.472 1.02783 -8.48757e-07 1.01277
+FPMW_DET4_STRIPX424 741.52 0.974346 -1.67232e-07 0.857221
+FPMW_DET4_STRIPX425 625.742 1.02243 -4.98133e-07 0.825861
+FPMW_DET4_STRIPX426 533.681 0.979444 -2.35709e-07 1.12881
+FPMW_DET4_STRIPX427 922.466 1.00736 9.90167e-10 1.06552
+FPMW_DET4_STRIPX428 802.05 0.953466 4.19563e-07 1.07917
+FPMW_DET4_STRIPX429 597.873 1.00209 -3.43397e-07 1.00925
+FPMW_DET4_STRIPX430 432.598 0.948412 3.16143e-07 0.992595
+FPMW_DET4_STRIPX431 549.156 0.991165 -9.65565e-08 0.798445
+FPMW_DET4_STRIPX432 659.246 0.97725 -1.1346e-07 1.24387
+FPMW_DET4_STRIPX433 818.875 1.00924 -6.30188e-08 1.09015
+FPMW_DET4_STRIPX434 765.286 0.982494 -1.09308e-07 1.17977
+FPMW_DET4_STRIPX435 532.447 1.03442 -5.62283e-07 0.993284
+FPMW_DET4_STRIPX436 657.923 0.994089 1.75207e-07 0.870943
+FPMW_DET4_STRIPX437 596.585 1.04049 -4.66106e-07 0.975123
+FPMW_DET4_STRIPX438 723.58 1.00238 8.77422e-08 1.08438
+FPMW_DET4_STRIPX439 885.882 1.02473 7.55223e-08 0.993759
+FPMW_DET4_STRIPX440 567.505 0.990749 4.83091e-07 1.14735
+FPMW_DET4_STRIPX441 737.106 1.03193 -4.87865e-08 0.82752
+FPMW_DET4_STRIPX442 751.384 0.994724 1.22224e-07 1.02099
+FPMW_DET4_STRIPX443 717.006 1.02527 1.84591e-08 1.05903
+FPMW_DET4_STRIPX444 689.513 0.982409 5.68901e-07 0.959116
+FPMW_DET4_STRIPX445 493.083 1.02109 -9.05289e-08 0.872988
+FPMW_DET4_STRIPX446 607.797 0.960424 8.48792e-07 1.13081
+FPMW_DET4_STRIPX447 454.89 0.998759 5.77078e-07 1.00769
+FPMW_DET4_STRIPX448 809.316 1.01066 -2.87639e-07 1.32211
+FPMW_DET4_STRIPX449 706.98 1.04903 -8.25738e-07 1.01787
+FPMW_DET4_STRIPX450 789.777 1.022 -4.11071e-07 1.08998
+FPMW_DET4_STRIPX451 562.935 1.00912 -5.77844e-07 1.03547
+FPMW_DET4_STRIPX452 568.819 1.0004 -1.78076e-07 0.922297
+FPMW_DET4_STRIPX453 442.761 1.05028 -7.16982e-07 0.863715
+FPMW_DET4_STRIPX454 570.191 1.01473 -5.3829e-07 0.913049
+FPMW_DET4_STRIPX455 719.247 1.05209 -7.60031e-07 1.03901
+FPMW_DET4_STRIPX456 749.824 1.00596 -1.62839e-07 0.927026
+FPMW_DET4_STRIPX457 563.255 1.04769 -4.07709e-07 0.866275
+FPMW_DET4_STRIPX458 668.746 1.0067 1.04214e-07 0.919716
+FPMW_DET4_STRIPX459 606.672 1.04856 -5.99017e-07 0.984377
+FPMW_DET4_STRIPX460 784.064 0.985504 3.13651e-07 0.999203
+FPMW_DET4_STRIPX461 820.527 1.02904 -1.90819e-08 1.09163
+FPMW_DET4_STRIPX462 657.317 0.986522 5.16511e-07 1.10264
+FPMW_DET4_STRIPX463 403.288 1.03522 4.31513e-08 0.979263
+FPMW_DET4_STRIPX464 638.808 1.00324 -7.86057e-07 0.977352
+FPMW_DET4_STRIPX465 422.8 1.02163 -1.0311e-06 0.754234
+FPMW_DET4_STRIPX466 525.116 1.00379 -8.68677e-07 1.03538
+FPMW_DET4_STRIPX467 727.729 1.04154 -1.11316e-06 0.657983
+FPMW_DET4_STRIPX468 494.579 1.01495 -7.49352e-07 1.21287
+FPMW_DET4_STRIPX469 661.006 1.04286 -9.62784e-07 0.822947
+FPMW_DET4_STRIPX470 489.363 1.01483 -9.93391e-07 0.908187
+FPMW_DET4_STRIPX471 560.996 1.05376 -1.32537e-06 0.798588
+FPMW_DET4_STRIPX472 416.845 1.00159 -6.59444e-07 0.853459
+FPMW_DET4_STRIPX473 446.027 1.03597 -8.66188e-07 0.785842
+FPMW_DET4_STRIPX474 563.097 1.00377 -7.74201e-07 0.93406
+FPMW_DET4_STRIPX475 722.219 1.04799 -7.03179e-07 0.836373
+FPMW_DET4_STRIPX476 640.365 1.00317 -4.62149e-07 0.952627
+FPMW_DET4_STRIPX477 563.626 1.03544 -7.16125e-07 0.799381
+FPMW_DET4_STRIPX478 464.081 0.989048 -1.79844e-07 0.945256
+FPMW_DET4_STRIPX479 443.956 1.02684 -4.37145e-07 0.813079
+FPMW_DET4_STRIPX480 734.416 0.921918 3.31408e-07 1.18782
+FPMW_DET4_STRIPX481 726.799 0.929164 1.1079e-07 1.13549
+FPMW_DET4_STRIPX482 687.83 0.936104 2.09064e-07 1.07393
+FPMW_DET4_STRIPX483 799.621 0.979328 -1.88413e-07 1.07685
+FPMW_DET4_STRIPX484 727.172 0.967315 -3.00621e-07 1.00444
+FPMW_DET4_STRIPX485 511.91 1.02092 -7.21823e-07 1.01694
+FPMW_DET4_STRIPX486 738.722 0.99934 -3.62712e-07 1.01369
+FPMW_DET4_STRIPX487 734.566 1.03483 -6.14405e-07 1.06737
+FPMW_DET4_STRIPX488 587.084 0.980388 -2.60123e-07 0.946209
+FPMW_DET4_STRIPX489 678.665 1.03541 -6.28698e-07 0.913311
+FPMW_DET4_STRIPX490 720.886 1.00049 -2.66311e-07 1.0129
+FPMW_DET4_STRIPX491 724.41 1.03709 -4.74653e-07 0.916387
+FPMW_DET4_STRIPX492 772.48 1.00421 -1.35767e-07 1.01788
+FPMW_DET4_STRIPX493 551.108 1.03415 -4.75449e-07 1.06227
+FPMW_DET4_STRIPX494 806.476 0.985408 2.30404e-07 0.949418
+FPMW_DET4_STRIPX495 642.264 1.00582 6.8024e-08 1.03798
+FPMW_DET4_STRIPX496 333.448 0.967578 3.42247e-07 1.03086
+FPMW_DET4_STRIPX497 413.913 1.01477 -2.63257e-07 0.849539
+FPMW_DET4_STRIPX498 428.036 0.992278 -2.40369e-07 1.09369
+FPMW_DET4_STRIPX499 699.673 1.02704 -3.47639e-08 0.812868
+FPMW_DET4_STRIPX500 425.641 1 6.06826e-17 1.03956
+FPMW_DET4_STRIPX501 698.736 1.0386 -5.58862e-08 0.87833
+FPMW_DET4_STRIPX502 567.573 1.00076 4.16891e-07 0.938879
+FPMW_DET4_STRIPX503 515.242 1.04251 -8.66382e-08 1.00405
+FPMW_DET4_STRIPX504 472.825 1.0052 4.22093e-07 1.03346
+FPMW_DET4_STRIPX505 587.922 1.04108 -1.26972e-07 0.867574
+FPMW_DET4_STRIPX506 500.21 1.00719 4.20794e-09 0.879733
+FPMW_DET4_STRIPX507 744.766 1.03694 -4.05842e-08 0.969979
+FPMW_DET4_STRIPX508 431.003 1.00193 4.07364e-07 0.915467
+FPMW_DET4_STRIPX509 659.896 1.03278 2.95294e-07 0.906672
+FPMW_DET4_STRIPX510 603.409 0.980778 6.98008e-07 1.0794
+FPMW_DET4_STRIPX511 734.353 1.0283 6.39106e-07 0.994871
+FPMW_DET4_STRIPX512 510.489 0.993935 -5.10613e-07 0.997296
+FPMW_DET4_STRIPX513 766.395 1.01704 -7.77321e-07 1.08377
+FPMW_DET4_STRIPX514 734.726 0.972693 -4.22669e-07 0.983665
+FPMW_DET4_STRIPX515 514.944 1.0093 -7.12825e-07 0.906049
+FPMW_DET4_STRIPX516 782.888 0.981593 -4.60398e-07 1.04783
+FPMW_DET4_STRIPX517 516.532 1.02205 -1.13483e-06 0.919562
+FPMW_DET4_STRIPX518 553.627 0.989047 -6.42428e-07 0.843764
+FPMW_DET4_STRIPX519 697.825 1.03652 -1.00185e-06 0.983832
+FPMW_DET4_STRIPX520 443.402 1.01167 -8.1936e-07 0.876569
+FPMW_DET4_STRIPX521 822.837 1.04478 -9.24539e-07 0.858623
+FPMW_DET4_STRIPX522 645.505 0.988914 -3.81369e-07 1.21601
+FPMW_DET4_STRIPX523 804.837 1.0043 -3.77087e-07 0.842775
+FPMW_DET4_STRIPX524 532.147 0.95443 -8.66851e-08 1.06856
+FPMW_DET4_STRIPX525 1157.22 0.972962 5.51381e-07 0.98414
+FPMW_DET4_STRIPX526 412.247 0.935621 2.36476e-07 1.05015
+FPMW_DET4_STRIPX527 724.514 0.954093 3.1309e-07 0.841937
+FPMW_DET4_STRIPX528 464.818 0.902697 1.13997e-07 0.956068
+FPMW_DET4_STRIPX529 688.228 0.95705 -4.39549e-07 1.03189
+FPMW_DET4_STRIPX530 857.181 0.940231 -1.8907e-07 1.1504
+FPMW_DET4_STRIPX531 660.711 0.991703 -7.3672e-07 0.834659
+FPMW_DET4_STRIPX532 539.607 0.961282 -4.94986e-07 0.968752
+FPMW_DET4_STRIPX533 593.805 0.994426 -7.34673e-07 1.07893
+FPMW_DET4_STRIPX534 1005.09 0.958574 9.88449e-08 0.642813
+FPMW_DET4_STRIPX535 521.054 1.01421 -9.9939e-07 1.17303
+FPMW_DET4_STRIPX536 803.829 0.972359 -2.58159e-07 0.727717
+FPMW_DET4_STRIPX537 626.945 1.00499 -5.54509e-07 1.17594
+FPMW_DET4_STRIPX538 877.891 0.968332 -6.89413e-08 1.09479
+FPMW_DET4_STRIPX539 599.51 1.00641 -7.31953e-07 0.862184
+FPMW_DET4_STRIPX540 415.252 0.963535 -2.96093e-07 1.11836
+FPMW_DET4_STRIPX541 797.992 0.995674 -4.74053e-07 0.823286
+FPMW_DET4_STRIPX542 374.077 0.951571 -3.34087e-08 1.06671
+FPMW_DET4_STRIPX543 718.157 0.993865 -1.23225e-07 0.871162
+FPMW_DET4_STRIPX544 578.328 0.991662 -6.00801e-07 1.14704
+FPMW_DET4_STRIPX545 493.924 1.03219 -1.03119e-06 0.989741
+FPMW_DET4_STRIPX546 570.081 0.999146 -5.64447e-07 0.946108
+FPMW_DET4_STRIPX547 504.579 1.03504 -1.2722e-06 1.05536
+FPMW_DET4_STRIPX548 656.131 0.99787 -4.50187e-07 0.862289
+FPMW_DET4_STRIPX549 635.998 1.03485 -9.57892e-07 0.850468
+FPMW_DET4_STRIPX550 639.448 0.994238 -5.03065e-07 0.937691
+FPMW_DET4_STRIPX551 511.028 1.0311 -1.02304e-06 0.837075
+FPMW_DET4_STRIPX552 700.756 0.990822 -3.92397e-07 1.02385
+FPMW_DET4_STRIPX553 732.47 1.03594 -7.59051e-07 0.877586
+FPMW_DET4_STRIPX554 607.067 0.984683 -2.99602e-07 0.912598
+FPMW_DET4_STRIPX555 505.181 1.02653 -8.88342e-07 1
+FPMW_DET4_STRIPX556 654.715 0.975234 1.03645e-07 0.900663
+FPMW_DET4_STRIPX557 688.362 1.00769 -3.19038e-07 0.863805
+FPMW_DET4_STRIPX558 796.229 0.958031 1.43202e-07 1.09565
+FPMW_DET4_STRIPX559 887.974 0.989708 2.83594e-07 1.024
+FPMW_DET4_STRIPX560 556.8 0.963488 -4.33266e-07 1.22212
+FPMW_DET4_STRIPX561 767.308 0.999222 -5.64384e-07 0.975325
+FPMW_DET4_STRIPX562 547.697 0.97314 -5.58712e-07 0.970186
+FPMW_DET4_STRIPX563 559.13 0.997746 -4.67143e-07 0.957403
+FPMW_DET4_STRIPX564 824.125 0.981887 -2.25086e-07 0.979533
+FPMW_DET4_STRIPX565 707.186 1.01058 -4.21474e-07 0.925606
+FPMW_DET4_STRIPX566 724.262 0.976912 -2.49258e-07 0.940151
+FPMW_DET4_STRIPX567 642.832 1.03923 -8.69648e-07 0.850207
+FPMW_DET4_STRIPX568 622.604 0.990882 -1.4371e-07 0.96788
+FPMW_DET4_STRIPX569 454.221 1.03384 -7.652e-07 0.791536
+FPMW_DET4_STRIPX570 622.194 0.987796 -3.14622e-07 1.05652
+FPMW_DET4_STRIPX571 459.127 1.02113 -6.39339e-07 0.779125
+FPMW_DET4_STRIPX572 547.201 0.990208 -1.46274e-07 1.06685
+FPMW_DET4_STRIPX573 523.546 1.03211 -7.62236e-07 0.792489
+FPMW_DET4_STRIPX574 486.167 0.982369 6.02378e-08 0.733123
+FPMW_DET4_STRIPX575 683.224 1.0031 -1.24391e-07 1.0369
+FPMW_DET4_STRIPX576 731.958 0.949656 3.92079e-07 1.04693
+FPMW_DET4_STRIPX577 685.016 1.00046 -5.80343e-07 1.07284
+FPMW_DET4_STRIPX578 706.433 0.967794 2.2431e-07 1.07093
+FPMW_DET4_STRIPX579 733.057 0.994636 -2.61159e-08 0.892164
+FPMW_DET4_STRIPX580 627.392 0.9627 4.31063e-07 1.08647
+FPMW_DET4_STRIPX581 818.97 0.996914 -1.31673e-07 0.955476
+FPMW_DET4_STRIPX582 826.489 0.961611 6.26022e-07 1.01924
+FPMW_DET4_STRIPX583 789.348 0.99475 1.89281e-07 1.1358
+FPMW_DET4_STRIPX584 913.824 0.95561 9.42566e-07 1.1108
+FPMW_DET4_STRIPX585 762.889 0.991663 6.82387e-07 0.983884
+FPMW_DET4_STRIPX586 694.283 0.94544 9.9818e-07 0.998643
+FPMW_DET4_STRIPX587 598.699 0.98334 7.71614e-07 1.01647
+FPMW_DET4_STRIPX588 768.271 0.940415 1.17216e-06 0.789537
+FPMW_DET4_STRIPX589 419.473 0.979498 8.09324e-07 1.25045
+FPMW_DET4_STRIPX590 777.596 0.926933 1.49133e-06 0.92989
+FPMW_DET4_STRIPX591 900.62 0.970808 1.33668e-06 0.636333
+FPMW_DET4_STRIPX592 429.058 0.963728 -9.23423e-07 1.31161
+FPMW_DET4_STRIPX593 628.671 1.00811 -1.10699e-06 0.864799
+FPMW_DET4_STRIPX594 742.158 0.979128 -8.09118e-07 0.877975
+FPMW_DET4_STRIPX595 346.957 1.02773 -1.55617e-06 0.929337
+FPMW_DET4_STRIPX596 363.778 0.996355 -1.0634e-06 0.961718
+FPMW_DET4_STRIPX597 616.957 1.05378 -1.45961e-06 0.868271
+FPMW_DET4_STRIPX598 564.065 1.01148 -1.08643e-06 0.962901
+FPMW_DET4_STRIPX599 817.399 1.04295 -1.03294e-06 0.907004
+FPMW_DET4_STRIPX600 752.047 1.00658 -4.93584e-07 0.921229
+FPMW_DET4_STRIPX601 577.136 1.04964 -9.6452e-07 0.893367
+FPMW_DET4_STRIPX602 564.729 1.0066 -3.58852e-07 0.803164
+FPMW_DET4_STRIPX603 772.496 1.04546 -5.80582e-07 0.914452
+FPMW_DET4_STRIPX604 561.142 1.013 -1.99579e-07 0.852648
+FPMW_DET4_STRIPX605 405.727 1.04394 -6.77589e-07 0.976557
+FPMW_DET4_STRIPX606 659.585 0.971563 3.98278e-07 0.929467
+FPMW_DET4_STRIPX607 716.415 1.01366 3.47418e-07 1.00487
+FPMW_DET4_STRIPX608 999.25 1.06334 -7.26931e-07 0.962042
+FPMW_DET4_STRIPX609 824.074 1.0999 -1.44036e-06 0.955487
+FPMW_DET4_STRIPX610 967.475 1.05158 -9.29628e-07 0.95277
+FPMW_DET4_STRIPX611 890.707 1.08684 -1.27076e-06 0.930753
+FPMW_DET4_STRIPX612 1075.77 1.04238 -4.77251e-07 0.982019
+FPMW_DET4_STRIPX613 1010.86 1.09249 -9.99666e-07 0.959481
+FPMW_DET4_STRIPX614 835.487 1.04571 -9.56176e-07 1.19826
+FPMW_DET4_STRIPX615 1049.92 1.0764 -7.08717e-07 0.89914
+FPMW_DET4_STRIPX616 661.366 1.04454 -5.52451e-07 0.981804
+FPMW_DET4_STRIPX617 763.007 1.07348 -7.35648e-07 0.863603
+FPMW_DET4_STRIPX618 906.122 1.02411 1.90356e-07 0.932918
+FPMW_DET4_STRIPX619 824.777 1.06643 -5.13058e-08 0.983994
+FPMW_DET4_STRIPX620 717.561 1.0232 2.05976e-08 0.968191
+FPMW_DET4_STRIPX621 509.149 1.05284 -2.08297e-07 0.72302
+FPMW_DET4_STRIPX622 543.971 1.00912 2.57485e-07 0.987624
+FPMW_DET4_STRIPX623 819.283 1.05374 8.4768e-08 1.01508
+FPMW_DET4_STRIPX624 632.23 1.01589 -5.62683e-07 0.95568
+FPMW_DET4_STRIPX625 876.154 1.03809 -5.38742e-07 0.859189
+FPMW_DET4_STRIPX626 618.519 1.00406 -4.06327e-07 1.00116
+FPMW_DET4_STRIPX627 856.747 1.01288 -5.67725e-07 0.845781
+FPMW_DET4_STRIPX628 803.529 0.982037 -3.20934e-08 1.11804
+FPMW_DET4_STRIPX629 946.147 1.04107 -4.20926e-07 1.00875
+FPMW_DET4_STRIPX630 914.325 0.997879 -6.33212e-08 1.28326
+FPMW_DET4_STRIPX631 867.357 1.04039 -3.15632e-07 1.0598
+FPMW_DET4_STRIPX632 660.906 0.981173 2.98715e-08 0.961467
+FPMW_DET4_STRIPX633 601.222 1.01463 -4.10705e-07 0.885598
+FPMW_DET4_STRIPX634 774.696 0.981478 1.86567e-07 1.03746
+FPMW_DET4_STRIPX635 757.953 1.0045 2.82424e-07 0.909861
+FPMW_DET4_STRIPX636 604.954 0.982216 -2.82269e-08 1.05711
+FPMW_DET4_STRIPX637 473.846 0.974922 2.09015e-07 0.927746
+FPMW_DET4_STRIPX638 653.842 0.941839 5.83064e-07 0.893155
+FPMW_DET4_STRIPX639 761.949 0.955084 7.28089e-07 0.929027
+FPMW_DET4_STRIPX640 691.134 0.973419 -2.60102e-07 1.08412
+FPMW_DET4_STRIPX641 916.646 1.0295 -1.04092e-06 0.915077
+FPMW_DET4_STRIPX642 847.285 0.962692 -4.24681e-07 1.0756
+FPMW_DET4_STRIPX643 958.831 0.993148 -4.11699e-07 0.947468
+FPMW_DET4_STRIPX644 879.446 0.998629 -4.66028e-07 1.0141
+FPMW_DET4_STRIPX645 896.708 1.0199 -8.32976e-07 1.05721
+FPMW_DET4_STRIPX646 1003.76 0.970655 -2.09082e-07 1.32026
+FPMW_DET4_STRIPX647 1217.41 1.01204 -1.67375e-07 1.0711
+FPMW_DET4_STRIPX648 869.592 0.998898 -2.0147e-07 1.01314
+FPMW_DET4_STRIPX649 870.042 1.02472 -8.73564e-07 1.07423
+FPMW_DET4_STRIPX650 1238.85 0.977401 2.43474e-07 1.1094
+FPMW_DET4_STRIPX651 931.694 1.03138 -3.10948e-07 0.943278
+FPMW_DET4_STRIPX652 866.192 0.992554 -1.06631e-07 1.12138
+FPMW_DET4_STRIPX653 1181.26 1.01232 -6.32176e-08 0.849322
+FPMW_DET4_STRIPX654 511.349 0.966713 -5.5106e-08 0.985304
+FPMW_DET4_STRIPX655 671.69 1.00776 3.28809e-07 0.927057
+FPMW_DET4_STRIPX656 479.311 0.989849 -5.29202e-07 1.12829
+FPMW_DET4_STRIPX657 726.927 1.02175 -9.52976e-07 0.93096
+FPMW_DET4_STRIPX658 903.379 0.975833 -4.13229e-07 1.00991
+FPMW_DET4_STRIPX659 647.068 1.01537 -9.85626e-07 0.899705
+FPMW_DET4_STRIPX660 776.424 0.997871 -6.59577e-07 0.861174
+FPMW_DET4_STRIPX661 823.705 1.04351 -1.01555e-06 0.881283
+FPMW_DET4_STRIPX662 808.237 1.00167 -4.40583e-07 0.923918
+FPMW_DET4_STRIPX663 758.732 1.03851 -1.07993e-06 0.960807
+FPMW_DET4_STRIPX664 705.101 1.00659 -6.59412e-07 1.05448
+FPMW_DET4_STRIPX665 826.563 1.03897 -6.96439e-07 1.0101
+FPMW_DET4_STRIPX666 743.22 1.0073 -4.76135e-07 0.929615
+FPMW_DET4_STRIPX667 790.219 1.04034 -7.76823e-07 0.83847
+FPMW_DET4_STRIPX668 745.843 1.00257 -5.12929e-07 0.992203
+FPMW_DET4_STRIPX669 847.361 1.03334 -4.49453e-07 0.988859
+FPMW_DET4_STRIPX670 890.013 0.992657 4.05276e-08 1.04779
+FPMW_DET4_STRIPX671 902.579 1.03743 -4.01213e-07 1.13584
+FPMW_DET4_STRIPX672 781.315 0.966453 1.6622e-07 1.09383
+FPMW_DET4_STRIPX673 678.536 1.02711 -5.90029e-07 0.950687
+FPMW_DET4_STRIPX674 879.619 1.00764 -1.36094e-07 1.05598
+FPMW_DET4_STRIPX675 965.115 1.02356 -3.4901e-07 1.21979
+FPMW_DET4_STRIPX676 769.676 1.00073 -1.17549e-07 1.0123
+FPMW_DET4_STRIPX677 566.592 1.03997 -7.70471e-07 0.998985
+FPMW_DET4_STRIPX678 779.625 0.998161 3.26309e-09 1.21731
+FPMW_DET4_STRIPX679 788.654 1.03993 -4.0668e-07 0.86291
+FPMW_DET4_STRIPX680 541.023 1.00046 -1.62818e-07 1.01283
+FPMW_DET4_STRIPX681 900.431 1.0289 -3.98128e-07 1.11059
+FPMW_DET4_STRIPX682 871.663 1.00079 -3.85237e-08 0.932888
+FPMW_DET4_STRIPX683 840.203 1.03126 -3.73708e-07 0.952307
+FPMW_DET4_STRIPX684 733.583 0.972495 3.07903e-07 1.2756
+FPMW_DET4_STRIPX685 827.831 1.00848 1.37995e-08 1.16002
+FPMW_DET4_STRIPX686 980.112 0.963486 4.89302e-07 1.12631
+FPMW_DET4_STRIPX687 707.767 0.994805 3.16489e-07 1.00844
+FPMW_DET4_STRIPX688 542.609 0.974935 2.92712e-08 0.97881
+FPMW_DET4_STRIPX689 830.368 1.00792 -2.17726e-07 1.10278
+FPMW_DET4_STRIPX690 790.504 0.985104 -4.97692e-08 0.979908
+FPMW_DET4_STRIPX691 531.515 1.02396 -5.86293e-07 1.188
+FPMW_DET4_STRIPX692 755.836 0.987115 -7.89546e-08 1.11311
+FPMW_DET4_STRIPX693 563.749 1.02691 -6.55805e-07 0.820802
+FPMW_DET4_STRIPX694 729.511 0.999042 -2.23111e-07 0.945933
+FPMW_DET4_STRIPX695 792.926 1.03296 -4.48641e-07 1.12568
+FPMW_DET4_STRIPX696 796.208 0.987919 3.06004e-08 1.13148
+FPMW_DET4_STRIPX697 1001.21 1.01559 1.07522e-07 1.26994
+FPMW_DET4_STRIPX698 990.895 0.991379 2.99134e-07 1.04319
+FPMW_DET4_STRIPX699 1034.82 1.01856 1.7052e-07 1.22638
+FPMW_DET4_STRIPX700 669.644 0.971632 5.43407e-07 0.947874
+FPMW_DET4_STRIPX701 649.547 1.00543 1.65403e-07 1.04495
+FPMW_DET4_STRIPX702 829.752 0.965117 9.00878e-07 1.0515
+FPMW_DET4_STRIPX703 640.913 0.993305 4.9842e-07 1.13522
+FPMW_DET4_STRIPX704 645.899 1.0019 -4.60106e-07 0.959473
+FPMW_DET4_STRIPX705 875.882 1.00665 -7.3178e-07 1.18359
+FPMW_DET4_STRIPX706 624.684 0.979534 -5.61045e-07 0.903231
+FPMW_DET4_STRIPX707 952.978 1.00235 -5.24226e-07 0.945787
+FPMW_DET4_STRIPX708 836.073 0.973811 -2.63151e-07 1.1131
+FPMW_DET4_STRIPX709 803.537 1.00142 -4.83467e-07 1.05501
+FPMW_DET4_STRIPX710 887.863 0.969468 -3.2603e-07 1.05034
+FPMW_DET4_STRIPX711 927.169 1.00567 -8.15775e-07 0.745003
+FPMW_DET4_STRIPX712 791.882 0.959541 -6.29044e-08 1.25795
+FPMW_DET4_STRIPX713 1186.06 0.998364 -3.17534e-07 1.01205
+FPMW_DET4_STRIPX714 876.614 0.95827 4.02388e-08 1.1744
+FPMW_DET4_STRIPX715 814.758 0.992673 -3.43978e-07 1.12209
+FPMW_DET4_STRIPX716 554.164 0.954878 -3.04919e-07 0.939368
+FPMW_DET4_STRIPX717 550.481 0.980666 -4.25275e-07 0.877549
+FPMW_DET4_STRIPX718 672.428 0.934603 1.59957e-07 0.987057
+FPMW_DET4_STRIPX719 683.198 0.966063 -1.26539e-07 0.955769
+FPMW_DET4_STRIPX720 718.695 0.889911 4.23573e-07 1.25766
+FPMW_DET4_STRIPX721 876.133 0.925892 2.4262e-07 1.10671
+FPMW_DET4_STRIPX722 891.805 0.932704 1.91299e-07 1.40459
+FPMW_DET4_STRIPX723 753.063 0.977962 -3.19578e-07 0.958259
+FPMW_DET4_STRIPX724 777.371 0.974172 -2.80029e-07 1.31703
+FPMW_DET4_STRIPX725 731.709 1.01512 -9.39288e-07 1.05136
+FPMW_DET4_STRIPX726 759.76 0.987043 -7.69193e-07 1.11539
+FPMW_DET4_STRIPX727 846.004 1.01491 -7.2849e-07 1.09466
+FPMW_DET4_STRIPX728 1013.8 0.987131 -1.2367e-08 1.05996
+FPMW_DET4_STRIPX729 894.612 1.02645 -6.85035e-07 0.916125
+FPMW_DET4_STRIPX730 898.375 0.984446 -3.32872e-07 1.13994
+FPMW_DET4_STRIPX731 1015.93 1.00115 6.47356e-08 1.0793
+FPMW_DET4_STRIPX732 606.366 0.971528 5.50257e-08 1.05009
+FPMW_DET4_STRIPX733 467.807 1.00699 -3.87914e-07 0.958572
+FPMW_DET4_STRIPX734 783.985 0.938474 2.83924e-07 1.04484
+FPMW_DET4_STRIPX735 682.702 0.984512 -1.02145e-07 0.921236
+FPMW_DET4_STRIPX736 717.651 0.943875 -3.09606e-09 1.27891
+FPMW_DET4_STRIPX737 895.704 0.990858 -5.57914e-07 1.14306
+FPMW_DET4_STRIPX738 921.869 0.945411 -1.22251e-07 1.14054
+FPMW_DET4_STRIPX739 704.88 0.976586 -5.22638e-07 0.780802
+FPMW_DET4_STRIPX740 828.378 0.984106 -7.74032e-07 0.208046
+FPMW_DET4_STRIPX741 674.336 1.01934 -9.64439e-07 0.905735
+FPMW_DET4_STRIPX742 784.622 0.986409 -6.05613e-07 1.11463
+FPMW_DET4_STRIPX743 666.093 1.01893 -9.9575e-07 1.14858
+FPMW_DET4_STRIPX744 825.761 0.97294 -4.52791e-07 0.937813
+FPMW_DET4_STRIPX745 584.812 1.01715 -8.76012e-07 1.16209
+FPMW_DET4_STRIPX746 975.441 0.977471 -4.20754e-07 1.11541
+FPMW_DET4_STRIPX747 845.188 0.998212 -5.13087e-07 0.96378
+FPMW_DET4_STRIPX748 781.455 0.95913 -1.41636e-07 1.40814
+FPMW_DET4_STRIPX749 1016.53 0.997146 -2.06965e-07 1.04076
+FPMW_DET4_STRIPX750 849.529 0.936271 2.45031e-07 1.23494
+FPMW_DET4_STRIPX751 955.405 0.910282 8.78276e-07 1.35335
+FPMW_DET4_STRIPX752 980.525 0.915814 8.26878e-07 1.13409
+FPMW_DET4_STRIPX753 774.785 0.971241 -3.83627e-09 1.19911
+FPMW_DET4_STRIPX754 905.744 0.968356 1.69228e-07 1.22779
+FPMW_DET4_STRIPX755 838.977 0.998284 -2.0881e-07 1.09549
+FPMW_DET4_STRIPX756 825.075 0.953712 3.19439e-07 1.02453
+FPMW_DET4_STRIPX757 813.494 0.997695 -1.41815e-07 1.27893
+FPMW_DET4_STRIPX758 694.317 0.962952 3.06167e-07 0.991889
+FPMW_DET4_STRIPX759 875.539 1.01444 -2.89601e-07 1.0603
+FPMW_DET4_STRIPX760 982.348 0.976912 3.70962e-07 1.05757
+FPMW_DET4_STRIPX761 885.203 1.00595 7.80113e-08 1.31024
+FPMW_DET4_STRIPX762 853.894 0.962788 5.99329e-07 1.23652
+FPMW_DET4_STRIPX763 803.087 0.995598 -1.39524e-07 0.984513
+FPMW_DET4_STRIPX764 463.555 0.967528 3.69326e-07 1.04449
+FPMW_DET4_STRIPX765 885.416 1.00347 3.07849e-07 1.1646
+FPMW_DET4_STRIPX766 709.987 0.949881 7.72357e-07 0.969812
+FPMW_DET4_STRIPX767 730.37 0.980369 8.4415e-07 0.886755
+FPMW_DET4_STRIPX768 506.413 0.903944 3.58525e-07 1.24059
+FPMW_DET4_STRIPX769 757.835 0.924326 3.95778e-07 0.928361
+FPMW_DET4_STRIPX770 636.668 0.905823 6.02791e-07 1.22261
+FPMW_DET4_STRIPX771 984.974 0.939369 3.62229e-07 1.23928
+FPMW_DET4_STRIPX772 912.204 0.923879 7.89189e-07 1.08119
+FPMW_DET4_STRIPX773 779.694 0.956423 3.53432e-07 0.954964
+FPMW_DET4_STRIPX774 712.005 0.930286 3.21114e-07 0.951915
+FPMW_DET4_STRIPX775 913.983 0.966438 1.15785e-07 1.04239
+FPMW_DET4_STRIPX776 637.407 0.92829 4.027e-07 1.19203
+FPMW_DET4_STRIPX777 809.584 0.939361 5.51589e-07 0.992195
+FPMW_DET4_STRIPX778 845.341 0.914355 9.94447e-07 1.06778
+FPMW_DET4_STRIPX779 717.58 0.959499 3.09631e-07 1.33748
+FPMW_DET4_STRIPX780 754.529 0.915372 8.37942e-07 0.856433
+FPMW_DET4_STRIPX781 776.327 0.944702 6.08461e-07 1.51598
+FPMW_DET4_STRIPX782 880.918 0.899887 1.08215e-06 1.13914
+FPMW_DET4_STRIPX783 619.889 0.931738 5.17258e-07 1.11978
+FPMW_DET4_STRIPX784 727.058 0.909701 5.47329e-08 1.21724
+FPMW_DET4_STRIPX785 811.193 0.95519 -3.24667e-07 1.29749
+FPMW_DET4_STRIPX786 833.383 0.917147 1.91713e-07 1.27517
+FPMW_DET4_STRIPX787 965.811 0.940494 2.10744e-08 0.975178
+FPMW_DET4_STRIPX788 762.662 0.920483 6.32659e-08 1.33627
+FPMW_DET4_STRIPX789 1009.99 0.960883 -8.9765e-08 1.04115
+FPMW_DET4_STRIPX790 546.554 0.941882 -3.32345e-07 0.889958
+FPMW_DET4_STRIPX791 826.124 0.957868 -2.63607e-07 1.11347
+FPMW_DET4_STRIPX792 1042.42 0.933844 2.02133e-07 1.18502
+FPMW_DET4_STRIPX793 842.729 0.962456 -1.00939e-08 0.91384
+FPMW_DET4_STRIPX794 1090.92 0.924114 4.9556e-07 0.850688
+FPMW_DET4_STRIPX795 967.749 0.962398 -1.34399e-07 0.966464
+FPMW_DET4_STRIPX796 885.018 0.916423 3.68249e-07 1.73984
+FPMW_DET4_STRIPX797 981.735 0.944324 1.25345e-07 1.23673
+FPMW_DET4_STRIPX798 918.833 0.908357 6.41951e-07 1.34836
+FPMW_DET4_STRIPX799 1211 0.944501 5.12792e-07 1.34143
+FPMW_DET4_STRIPX800 466.376 0.919066 4.47821e-07 1.13506
+FPMW_DET4_STRIPX801 495.178 0.923998 2.25119e-07 0.999932
+FPMW_DET4_STRIPX802 578.789 0.91318 5.06723e-07 1.12241
+FPMW_DET4_STRIPX803 818.439 0.928473 5.03179e-07 1.20993
+FPMW_DET4_STRIPX804 454.437 0.897583 6.57175e-07 1.46483
+FPMW_DET4_STRIPX805 764.451 0.92535 5.11705e-07 1.09833
+FPMW_DET4_STRIPX806 726.026 0.885606 9.71507e-07 1.37158
+FPMW_DET4_STRIPX807 857.217 0.90725 9.4104e-07 1.10733
+FPMW_DET4_STRIPX808 741.84 0.881528 1.21837e-06 1.38885
+FPMW_DET4_STRIPX809 746.829 0.906608 1.02975e-06 1.08993
+FPMW_DET4_STRIPX810 665.728 0.878976 1.16338e-06 1.33638
+FPMW_DET4_STRIPX811 514.568 0.894177 1.03795e-06 0.995244
+FPMW_DET4_STRIPX812 812.109 0.868426 1.55948e-06 1.16807
+FPMW_DET4_STRIPX813 755.497 0.895208 1.13449e-06 1.3528
+FPMW_DET4_STRIPX814 784.386 0.855419 1.68489e-06 1.41368
+FPMW_DET4_STRIPX815 742.139 0.873006 1.68388e-06 1.28096
+FPMW_DET4_STRIPX816 488.565 0.856215 6.91408e-07 1.73392
+FPMW_DET4_STRIPX817 1086.46 0.892526 5.2195e-07 0.819952
+FPMW_DET4_STRIPX818 694.271 0.858363 8.47678e-07 1.18003
+FPMW_DET4_STRIPX819 636.569 0.884055 5.61239e-07 1.51639
+FPMW_DET4_STRIPX820 1020.1 0.857371 1.12973e-06 1.13355
+FPMW_DET4_STRIPX821 654.307 0.88979 5.25471e-07 1.15189
+FPMW_DET4_STRIPX822 757.097 0.867064 8.00896e-07 1.41557
+FPMW_DET4_STRIPX823 1059.14 0.893948 7.75316e-07 0.912449
+FPMW_DET4_STRIPX824 545.51 0.860207 8.70503e-07 1.56837
+FPMW_DET4_STRIPX825 747.874 0.887797 6.48486e-07 0.995536
+FPMW_DET4_STRIPX826 865.019 0.853401 1.19082e-06 1.49254
+FPMW_DET4_STRIPX827 948.684 0.873907 1.05286e-06 1.56691
+FPMW_DET4_STRIPX828 804.18 0.83449 1.22529e-06 1.07618
+FPMW_DET4_STRIPX829 839.238 0.872527 1.04685e-06 0.99913
+FPMW_DET4_STRIPX830 499.57 0.830937 1.38891e-06 1.36648
+FPMW_DET4_STRIPX831 642.043 0.862457 9.95248e-07 0.90041
+FPMW_DET4_STRIPX832 550.034 0.824436 1.23046e-06 1.10815
+FPMW_DET4_STRIPX833 724.733 0.846487 1.06737e-06 1.0152
+FPMW_DET4_STRIPX834 690.76 0.830865 1.28147e-06 1.32582
+FPMW_DET4_STRIPX835 742.387 0.873954 8.69913e-07 0.918566
+FPMW_DET4_STRIPX836 599.653 0.845383 1.03278e-06 1.14708
+FPMW_DET4_STRIPX837 656.045 0.877416 8.61184e-07 1.27514
+FPMW_DET4_STRIPX838 544.585 0.837878 1.36891e-06 0.959857
+FPMW_DET4_STRIPX839 497.157 0.875292 8.51197e-07 1.30918
+FPMW_DET4_STRIPX840 735.069 0.84917 1.21167e-06 0.891352
+FPMW_DET4_STRIPX841 695.543 0.884463 8.79774e-07 1.33665
+FPMW_DET4_STRIPX842 679.543 0.845286 1.37105e-06 1.17833
+FPMW_DET4_STRIPX843 536.28 0.867578 1.245e-06 0.75591
+FPMW_DET4_STRIPX844 509.897 0.828211 1.44971e-06 1.24153
+FPMW_DET4_STRIPX845 535.6 0.862124 9.65385e-07 1.28138
+FPMW_DET4_STRIPX846 893.633 0.815643 1.9242e-06 1.14731
+FPMW_DET4_STRIPX847 1170.96 0.848114 1.75066e-06 1.62052
+FPMW_DET4_STRIPX848 630.867 0.854734 1.34114e-06 1.58226
+FPMW_DET4_STRIPX849 840.495 0.841456 1.59878e-06 1.30145
+FPMW_DET4_STRIPX850 789.721 0.653793 3.26202e-06 2.62923
+FPMW_DET4_STRIPX851 717.103 24.0843 0.000261271 1
+FPMW_DET4_STRIPX852 681.107 0.65507 3.62226e-06 1.45663
+FPMW_DET4_STRIPX853 906.412 0.865113 1.30717e-06 1.05419
+FPMW_DET4_STRIPX854 632.247 0.856781 1.1109e-06 1.08095
+FPMW_DET4_STRIPX855 624.987 0.876023 1.05345e-06 1.23571
+FPMW_DET4_STRIPX856 847.48 0.85773 1.32872e-06 1.0268
+FPMW_DET4_STRIPX857 794.46 0.874729 1.34867e-06 1.21199
+FPMW_DET4_STRIPX858 687.393 0.84331 1.49565e-06 0.752066
+FPMW_DET4_STRIPX859 541.71 0.884953 1.12487e-06 1.19836
+FPMW_DET4_STRIPX860 611.829 0.840544 1.69745e-06 1.23781
+FPMW_DET4_STRIPX861 568.535 0.880604 1.24511e-06 1.22166
+FPMW_DET4_STRIPX862 810.625 0.840002 1.85785e-06 1.55077
+FPMW_DET4_STRIPX863 597.534 0.870642 1.4629e-06 1.25596
+FPMW_DET4_STRIPX864 781.587 0.854996 1.07689e-06 1.27193
+FPMW_DET4_STRIPX865 761.037 0.884442 6.90264e-07 1.0751
+FPMW_DET4_STRIPX866 763.502 0.855659 1.0167e-06 1.34267
+FPMW_DET4_STRIPX867 561.515 0.884305 6.76367e-07 1.14708
+FPMW_DET4_STRIPX868 815.673 0.86474 1.18305e-06 1.0348
+FPMW_DET4_STRIPX869 638.136 0.888829 7.9504e-07 1.12273
+FPMW_DET4_STRIPX870 746.796 0.860669 1.28124e-06 1.29284
+FPMW_DET4_STRIPX871 816.739 0.880625 1.13685e-06 0.939991
+FPMW_DET4_STRIPX872 589.115 0.854874 1.50161e-06 1.21384
+FPMW_DET4_STRIPX873 904.023 0.887051 1.27566e-06 1.21821
+FPMW_DET4_STRIPX874 857.448 0.858432 1.60545e-06 1.04833
+FPMW_DET4_STRIPX875 489.038 0.880801 1.09756e-06 1.16289
+FPMW_DET4_STRIPX876 700.963 0.847476 1.80863e-06 1.30272
+FPMW_DET4_STRIPX877 820.119 0.878954 1.42767e-06 1.6133
+FPMW_DET4_STRIPX878 839.673 0.841179 1.78442e-06 1.45531
+FPMW_DET4_STRIPX879 822.339 0.865951 1.71734e-06 1.42595
+FPMW_DET4_STRIPX880 606.245 0.852225 5.62729e-07 1.38413
+FPMW_DET4_STRIPX881 918.135 0.876546 5.16823e-07 1.17466
+FPMW_DET4_STRIPX882 653.869 0.859714 5.13412e-07 1.7437
+FPMW_DET4_STRIPX883 933.594 0.892448 6.61842e-08 1.20051
+FPMW_DET4_STRIPX884 864.895 0.86428 5.53646e-07 1.43472
+FPMW_DET4_STRIPX885 927.276 0.90277 1.84542e-07 1.60249
+FPMW_DET4_STRIPX886 786.445 0.861187 5.41344e-07 1.77995
+FPMW_DET4_STRIPX887 859.626 0.892637 3.39876e-07 1.07059
+FPMW_DET4_STRIPX888 657.207 0.866177 4.21345e-07 1.06039
+FPMW_DET4_STRIPX889 709.443 0.907831 -2.59194e-07 1.19908
+FPMW_DET4_STRIPX890 791.066 0.851335 7.49246e-07 0.794437
+FPMW_DET4_STRIPX891 445.7 0.887951 3.0926e-07 1.35809
+FPMW_DET4_STRIPX892 742.745 0.858505 6.23434e-07 1.31814
+FPMW_DET4_STRIPX893 590.961 0.882713 2.57199e-07 1.26717
+FPMW_DET4_STRIPX894 930.355 0.846034 8.35658e-07 1.12548
+FPMW_DET4_STRIPX895 618.234 0.871403 6.32158e-07 2.02631
+FPMW_DET4_STRIPX896 1012.27 0.843825 1.78922e-06 1.54
+FPMW_DET4_STRIPX897 647.525 0.870487 1.27725e-06 1.60693
+FPMW_DET4_STRIPX898 729.122 0.833714 1.64863e-06 1.69339
+FPMW_DET4_STRIPX899 713.446 0.862468 1.24025e-06 1.19881
+FPMW_DET4_STRIPX900 544.029 0.836401 1.35705e-06 1.64199
+FPMW_DET4_STRIPX901 870.885 0.871638 1.32447e-06 0.911237
+FPMW_DET4_STRIPX902 885.745 0.834237 1.65287e-06 1.52026
+FPMW_DET4_STRIPX903 663.9 0.882007 9.21162e-07 1.3984
+FPMW_DET4_STRIPX904 546.954 0.844969 1.4526e-06 1.03502
+FPMW_DET4_STRIPX905 735.052 0.878434 1.29271e-06 1.62564
+FPMW_DET4_STRIPX906 860.657 0.834206 1.84286e-06 0.871303
+FPMW_DET4_STRIPX907 641.453 0.86839 1.45199e-06 1.70211
+FPMW_DET4_STRIPX908 827.166 0.850252 1.6292e-06 1.11434
+FPMW_DET4_STRIPX909 704.099 0.86898 1.34389e-06 1.12246
+FPMW_DET4_STRIPX910 671.141 0.829115 1.86414e-06 1.15653
+FPMW_DET4_STRIPX911 976.171 0.875325 2.07595e-06 1.00931
+FPMW_DET4_STRIPX912 815.681 0.880117 9.60906e-07 1.11378
+FPMW_DET4_STRIPX913 709.573 0.905929 6.94119e-07 1.24729
+FPMW_DET4_STRIPX914 698.616 0.885318 6.37508e-07 1.43625
+FPMW_DET4_STRIPX915 1091.49 0.905371 6.84347e-07 1.17543
+FPMW_DET4_STRIPX916 776.615 0.880711 8.85597e-07 1.39592
+FPMW_DET4_STRIPX917 692.309 0.919654 5.12921e-07 1.32775
+FPMW_DET4_STRIPX918 632.549 0.881008 9.0013e-07 1.07199
+FPMW_DET4_STRIPX919 529.983 0.90589 6.67261e-07 1.09215
+FPMW_DET4_STRIPX920 760.177 0.874435 1.07617e-06 1.20638
+FPMW_DET4_STRIPX921 1003.09 0.903081 9.66143e-07 0.997379
+FPMW_DET4_STRIPX922 814.877 0.879314 1.09736e-06 1.53546
+FPMW_DET4_STRIPX923 619.699 0.893012 8.4931e-07 1.07724
+FPMW_DET4_STRIPX924 852.43 0.865161 1.37216e-06 1.44443
+FPMW_DET4_STRIPX925 833.156 0.899315 8.94867e-07 1.07063
+FPMW_DET4_STRIPX926 817.079 0.841004 1.82867e-06 1.54885
+FPMW_DET4_STRIPX927 1163.58 0.866581 1.72041e-06 0.920283
+FPMW_DET4_STRIPX928 695.182 0.831245 7.85735e-07 2.64956
+FPMW_DET4_STRIPX929 950.913 0.863753 6.56425e-07 0.843589
+FPMW_DET4_STRIPX930 823.385 0.858801 6.17399e-07 1.63418
+FPMW_DET4_STRIPX931 975.881 0.890026 6.43004e-07 0.880204
+FPMW_DET4_STRIPX932 687.327 0.872475 5.20068e-07 1.59678
+FPMW_DET4_STRIPX933 860.558 0.912989 2.83341e-07 1.29209
+FPMW_DET4_STRIPX934 876.055 0.884621 3.47222e-07 1.425
+FPMW_DET4_STRIPX935 908.095 0.913075 4.70105e-07 1.14351
+FPMW_DET4_STRIPX936 836.71 0.89108 8.15906e-07 1.1955
+FPMW_DET4_STRIPX937 570.961 0.928968 2.70802e-07 1.12329
+FPMW_DET4_STRIPX938 761.18 0.895679 7.85015e-07 0.795602
+FPMW_DET4_STRIPX939 566.968 0.92379 6.05293e-07 1.40006
+FPMW_DET4_STRIPX940 812.412 0.901225 1.04955e-06 1.42463
+FPMW_DET4_STRIPX941 761.966 0.924406 5.73351e-07 0.467802
+FPMW_DET4_STRIPX942 734.523 0.887268 1.1944e-06 1.23554
+FPMW_DET4_STRIPX943 504.836 0.913428 1.00715e-06 1.16485
+FPMW_DET4_STRIPX944 704.226 0.894658 7.61368e-07 1.22161
+FPMW_DET4_STRIPX945 918.75 0.939946 3.67679e-07 1.26984
+FPMW_DET4_STRIPX946 699.654 0.910288 6.60147e-07 1.71446
+FPMW_DET4_STRIPX947 804.558 0.943018 1.92808e-07 1.35111
+FPMW_DET4_STRIPX948 781.432 0.921458 5.887e-07 1.32381
+FPMW_DET4_STRIPX949 799.846 0.963403 2.39401e-07 1.39424
+FPMW_DET4_STRIPX950 822.264 0.907658 9.35396e-07 1.03592
+FPMW_DET4_STRIPX951 634.283 0.966257 1.10841e-07 1.62301
+FPMW_DET4_STRIPX952 715.506 0.923917 5.78617e-07 1.06551
+FPMW_DET4_STRIPX953 874.692 0.95843 3.86272e-07 1.09084
+FPMW_DET4_STRIPX954 774.747 0.921406 7.45874e-07 1.30444
+FPMW_DET4_STRIPX955 702.188 0.963497 2.8157e-07 1.17312
+FPMW_DET4_STRIPX956 753.915 0.926101 5.16142e-07 1.15029
+FPMW_DET4_STRIPX957 819.374 0.95992 6.12853e-07 1.05719
+FPMW_DET4_STRIPX958 626.966 0.916625 9.13649e-07 1.09875
+FPMW_DET4_STRIPX959 798.78 0.949925 8.44394e-07 1.03999
+FPMW_DET4_STRIPX960 813.529 0.944932 -1.22952e-07 0.957266
+FPMW_DET4_STRIPX961 665.045 0.990336 -9.05835e-07 1.38866
+FPMW_DET4_STRIPX962 1082.41 0.947904 -4.84326e-08 1.07527
+FPMW_DET4_STRIPX963 832.602 0.987929 -6.92271e-07 1.83841
+FPMW_DET4_STRIPX964 750.362 0.965133 -5.50751e-07 1.55222
+FPMW_DET4_STRIPX965 655.482 1.00649 -9.01324e-07 0.92507
+FPMW_DET4_STRIPX966 970.456 0.970232 2.73804e-08 1.20765
+FPMW_DET4_STRIPX967 919.066 1.00232 -4.96138e-07 1.27874
+FPMW_DET4_STRIPX968 840.099 0.968384 -1.86354e-07 1.17205
+FPMW_DET4_STRIPX969 730.288 1.0029 -6.61389e-07 0.989324
+FPMW_DET4_STRIPX970 748.196 0.982001 -5.90107e-07 0.35617
+FPMW_DET4_STRIPX971 556.369 0.993396 -4.37545e-07 1.81391
+FPMW_DET4_STRIPX972 1090.58 0.960561 4.56719e-08 1.06011
+FPMW_DET4_STRIPX973 722.615 1.00193 -3.17705e-07 1.38599
+FPMW_DET4_STRIPX974 851.125 0.953963 1.99602e-07 1.24769
+FPMW_DET4_STRIPX975 988.828 0.995988 1.86134e-07 1.23723
+FPMW_DET4_STRIPX976 531.08 0.877855 8.17727e-07 1.34296
+FPMW_DET4_STRIPX977 1024.18 0.891467 1.02045e-06 1.14084
+FPMW_DET4_STRIPX978 968.265 0.892086 9.92208e-07 2.00864
+FPMW_DET4_STRIPX979 867.01 0.958123 2.5786e-07 1.31632
+FPMW_DET4_STRIPX980 1058.94 0.942241 7.86479e-07 1.77604
+FPMW_DET4_STRIPX981 1112.83 0.994862 3.11859e-07 0.850512
+FPMW_DET4_STRIPX982 778.715 0.992206 -1.34616e-08 1.29856
+FPMW_DET4_STRIPX983 801.792 0.990729 -1.31879e-07 1.2581
+FPMW_DET4_STRIPX984 1187.16 0.980188 4.65173e-07 1.02292
+FPMW_DET4_STRIPX985 924.464 1.01522 -2.06501e-08 1.72883
+FPMW_DET4_STRIPX986 1276.04 0.982364 7.35577e-07 1.18378
+FPMW_DET4_STRIPX987 1035.02 1.02042 7.56541e-08 1.29653
+FPMW_DET4_STRIPX988 862.651 0.972018 3.86635e-07 1.32991
+FPMW_DET4_STRIPX989 792.652 0.995238 2.20651e-07 0.879293
+FPMW_DET4_STRIPX990 1149.44 0.920867 1.14035e-06 1
+FPMW_DET4_STRIPX991 817.177 0.852841 1.76493e-06 0.82007
diff --git a/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW4_Y.cal b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW4_Y.cal
new file mode 100644
index 0000000000000000000000000000000000000000..5f4af490bf2a5d8d37ee91f8d4d36b83dc27ca5b
--- /dev/null
+++ b/Projects/ana_e850/Calibration/VAMOS/FPMW/npformat/FPMW4_Y.cal
@@ -0,0 +1,160 @@
+FPMW_DET4_STRIPY0 384.836 0.54901 3.61525e-06 2.28379
+FPMW_DET4_STRIPY1 999.741 0.687085 2.02993e-06 1.69814
+FPMW_DET4_STRIPY2 597.18 0.771905 1.06807e-06 1.78382
+FPMW_DET4_STRIPY3 828.008 0.81807 6.9391e-07 1.61411
+FPMW_DET4_STRIPY4 1038.79 0.872193 5.41408e-07 1.52696
+FPMW_DET4_STRIPY5 737.406 0.88355 1.33401e-07 1.51477
+FPMW_DET4_STRIPY6 638.803 0.891163 3.23566e-07 1.58161
+FPMW_DET4_STRIPY7 702.418 0.898025 2.30887e-07 1.534
+FPMW_DET4_STRIPY8 663.695 0.900736 2.72555e-07 1.50218
+FPMW_DET4_STRIPY9 714.789 0.903824 2.41387e-07 1.48621
+FPMW_DET4_STRIPY10 819.413 0.926672 4.08766e-07 1.42284
+FPMW_DET4_STRIPY11 781.577 0.907205 2.4654e-07 1.42076
+FPMW_DET4_STRIPY12 624.636 0.90065 3.05e-07 1.59191
+FPMW_DET4_STRIPY13 564.781 0.898556 4.95696e-07 1.47855
+FPMW_DET4_STRIPY14 626.356 0.934478 1.71768e-07 1.44098
+FPMW_DET4_STRIPY15 928.038 0.916405 5.5835e-07 1.41289
+FPMW_DET4_STRIPY16 534.905 0.980593 3.74508e-07 1.14445
+FPMW_DET4_STRIPY17 623.137 0.946598 3.90966e-07 1.13787
+FPMW_DET4_STRIPY18 917.517 0.945616 9.47856e-07 1.18501
+FPMW_DET4_STRIPY19 826.506 0.961265 6.8374e-07 1.19779
+FPMW_DET4_STRIPY20 816.958 0.950832 7.67175e-07 1.18477
+FPMW_DET4_STRIPY21 774.355 0.968177 6.39218e-07 1.17169
+FPMW_DET4_STRIPY22 634.15 0.946249 8.70175e-07 1.25516
+FPMW_DET4_STRIPY23 770.059 0.936171 9.57177e-07 1.26851
+FPMW_DET4_STRIPY24 673.58 0.944111 9.15574e-07 1.21454
+FPMW_DET4_STRIPY25 675.59 0.938293 1.05499e-06 1.19558
+FPMW_DET4_STRIPY26 714.581 0.914243 1.10609e-06 1.26519
+FPMW_DET4_STRIPY27 455.06 0.946261 8.06013e-07 1.34057
+FPMW_DET4_STRIPY28 728.19 0.955477 8.68238e-07 1.29121
+FPMW_DET4_STRIPY29 627.93 0.92252 1.1802e-06 1.20606
+FPMW_DET4_STRIPY30 487.129 0.944379 1.09358e-06 1.30783
+FPMW_DET4_STRIPY31 757.394 0.936627 1.26685e-06 1.1793
+FPMW_DET4_STRIPY32 447.568 0.97336 -4.09502e-07 1.46053
+FPMW_DET4_STRIPY33 991.229 0.956497 -2.61955e-07 1.35997
+FPMW_DET4_STRIPY34 711.215 0.946338 -3.24325e-07 1.40081
+FPMW_DET4_STRIPY35 945.825 0.947913 -2.91557e-07 1.3228
+FPMW_DET4_STRIPY36 843.8 0.964077 -2.73432e-07 1.38893
+FPMW_DET4_STRIPY37 745.606 0.964598 -3.1983e-07 1.44186
+FPMW_DET4_STRIPY38 743.252 0.959167 -5.72321e-07 1.31453
+FPMW_DET4_STRIPY39 842.126 0.957201 -1.75153e-07 1.46325
+FPMW_DET4_STRIPY40 725.316 0.931799 -3.02727e-07 1.42439
+FPMW_DET4_STRIPY41 656.75 0.947591 -2.00593e-07 1.41283
+FPMW_DET4_STRIPY42 777.346 0.960243 -1.69188e-07 1.41884
+FPMW_DET4_STRIPY43 839.931 0.95263 5.62923e-08 1.38919
+FPMW_DET4_STRIPY44 809.912 0.962666 -6.48867e-09 1.49699
+FPMW_DET4_STRIPY45 692.126 0.913782 2.74506e-07 1.45305
+FPMW_DET4_STRIPY46 640.523 0.929192 3.34519e-07 1.46862
+FPMW_DET4_STRIPY47 816.462 0.997816 9.93672e-08 1.28211
+FPMW_DET4_STRIPY48 467.384 0.999578 -6.04689e-07 1.30163
+FPMW_DET4_STRIPY49 870.315 0.954674 1.05913e-07 1.19527
+FPMW_DET4_STRIPY50 505.949 0.970479 -1.62973e-07 1.36785
+FPMW_DET4_STRIPY51 647.609 0.969348 -1.75179e-07 1.29812
+FPMW_DET4_STRIPY52 458.981 0.994056 -2.44811e-07 1.31413
+FPMW_DET4_STRIPY53 622.549 0.964979 7.41985e-08 1.31614
+FPMW_DET4_STRIPY54 564.253 0.971864 -6.74114e-08 1.34072
+FPMW_DET4_STRIPY55 807.6 0.968898 4.64822e-07 1.21612
+FPMW_DET4_STRIPY56 480.416 0.993783 6.85736e-08 1.34444
+FPMW_DET4_STRIPY57 467.51 0.973593 4.08774e-07 1.25166
+FPMW_DET4_STRIPY58 665.597 0.98354 3.64173e-07 1.26321
+FPMW_DET4_STRIPY59 726.822 0.975762 3.65804e-07 1.24006
+FPMW_DET4_STRIPY60 745.851 0.985035 3.87029e-07 1.30627
+FPMW_DET4_STRIPY61 623.875 0.966541 7.13742e-07 1.27182
+FPMW_DET4_STRIPY62 837.653 0.971011 1.06612e-06 1.29057
+FPMW_DET4_STRIPY63 803.731 0.98633 9.63845e-07 1.24657
+FPMW_DET4_STRIPY64 701.078 1.05207 -2.35413e-07 1.15504
+FPMW_DET4_STRIPY65 805.049 1.01959 -1.61122e-07 1.12176
+FPMW_DET4_STRIPY66 760.991 0.998499 1.44872e-07 1.17776
+FPMW_DET4_STRIPY67 626.477 0.984398 3.36527e-08 1.20107
+FPMW_DET4_STRIPY68 568.028 1.00318 -1.25383e-07 1.25711
+FPMW_DET4_STRIPY69 445.152 1.02314 -3.25247e-07 1.23708
+FPMW_DET4_STRIPY70 603.67 0.979721 -1.99055e-10 1.15164
+FPMW_DET4_STRIPY71 578.94 1.00495 1.37069e-07 1.27508
+FPMW_DET4_STRIPY72 516.69 0.965935 5.41698e-07 1.2602
+FPMW_DET4_STRIPY73 817.678 1.0161 1.42308e-07 1.22438
+FPMW_DET4_STRIPY74 546.742 1.02673 -1.98586e-07 1.20626
+FPMW_DET4_STRIPY75 460.899 1.00077 7.55327e-08 1.29968
+FPMW_DET4_STRIPY76 545.721 1.00972 8.75335e-08 1.24129
+FPMW_DET4_STRIPY77 550.741 0.98597 1.74534e-07 1.24349
+FPMW_DET4_STRIPY78 520.298 0.989823 1.13811e-07 1.23927
+FPMW_DET4_STRIPY79 467.733 1.00267 6.74708e-08 1.26978
+FPMW_DET4_STRIPY80 663.967 1.0415 -2.92299e-07 1
+FPMW_DET4_STRIPY81 569.911 1.01018 -1.05327e-07 1.02412
+FPMW_DET4_STRIPY82 815.671 1.04969 -1.80272e-07 0.977834
+FPMW_DET4_STRIPY83 922.191 1.03845 -1.99377e-07 1.00398
+FPMW_DET4_STRIPY84 893.21 1.0321 1.16548e-08 1.00121
+FPMW_DET4_STRIPY85 884.65 1.02737 1.03138e-08 1.02156
+FPMW_DET4_STRIPY86 830.28 1.03376 1.3945e-07 1.04429
+FPMW_DET4_STRIPY87 578.692 1.04975 -2.98757e-07 1.03335
+FPMW_DET4_STRIPY88 419.416 1.07707 -4.6834e-07 1.05658
+FPMW_DET4_STRIPY89 596.246 1.02615 -1.32726e-07 1.01028
+FPMW_DET4_STRIPY90 527.538 1.02906 2.11084e-07 1.00155
+FPMW_DET4_STRIPY91 749.75 1.04188 1.18775e-07 1.01292
+FPMW_DET4_STRIPY92 545.923 1.0439 1.84079e-07 1.01856
+FPMW_DET4_STRIPY93 630.248 1.03235 3.38361e-07 1.04901
+FPMW_DET4_STRIPY94 737.479 1.08309 3.58524e-07 0.988926
+FPMW_DET4_STRIPY95 633.859 1.07587 2.54492e-07 0.956044
+FPMW_DET4_STRIPY96 748.676 1.0413 -5.7264e-07 1.24936
+FPMW_DET4_STRIPY97 824.119 0.997573 -1.54761e-07 1.18634
+FPMW_DET4_STRIPY98 591.047 1.02219 -7.22743e-07 1.19874
+FPMW_DET4_STRIPY99 727.111 1.02118 -4.5269e-07 1.21156
+FPMW_DET4_STRIPY100 1179.2 1 8.71729e-16 1.23568
+FPMW_DET4_STRIPY101 748.242 0.982637 -4.24758e-07 1.24241
+FPMW_DET4_STRIPY102 655.812 1.01391 -5.05381e-07 1.24639
+FPMW_DET4_STRIPY103 821.562 0.989575 -2.89104e-07 1.29801
+FPMW_DET4_STRIPY104 646.195 0.995015 -2.3865e-07 1.20035
+FPMW_DET4_STRIPY105 670.005 0.989636 -1.55587e-07 1.33642
+FPMW_DET4_STRIPY106 647.459 0.981666 -1.3414e-07 1.2964
+FPMW_DET4_STRIPY107 815.102 0.981629 -9.88989e-09 1.35969
+FPMW_DET4_STRIPY108 637.982 0.959859 1.40995e-08 1.33108
+FPMW_DET4_STRIPY109 735.76 1.03239 8.51061e-08 1.3045
+FPMW_DET4_STRIPY110 809.669 0.975408 4.82561e-07 1.38081
+FPMW_DET4_STRIPY111 1036.6 0.975034 4.58527e-07 1.23712
+FPMW_DET4_STRIPY112 468.744 1.08457 -9.43844e-07 1.12683
+FPMW_DET4_STRIPY113 1045.38 1.04522 6.39163e-08 1.01066
+FPMW_DET4_STRIPY114 850.115 1.10242 -6.64713e-07 1.06237
+FPMW_DET4_STRIPY115 932.101 1.06978 -6.31913e-07 1.09853
+FPMW_DET4_STRIPY116 926.763 1.00792 3.64861e-08 1.05933
+FPMW_DET4_STRIPY117 987.913 1.06655 -2.23881e-07 1.04814
+FPMW_DET4_STRIPY118 997.26 1.03372 -3.61266e-08 1.11798
+FPMW_DET4_STRIPY119 1264.54 1.05152 1.71193e-07 1.08484
+FPMW_DET4_STRIPY120 903.137 1.00763 2.24425e-07 1.07345
+FPMW_DET4_STRIPY121 870.551 1.03019 -4.20252e-08 1.14302
+FPMW_DET4_STRIPY122 863.92 1.05524 -6.16361e-08 1.15146
+FPMW_DET4_STRIPY123 1312.67 1.0452 3.73721e-07 1.07358
+FPMW_DET4_STRIPY124 937.911 1.05295 3.18101e-07 1.08763
+FPMW_DET4_STRIPY125 982.165 1.06424 6.07604e-08 1.09585
+FPMW_DET4_STRIPY126 798.489 1.04962 1.30793e-07 1.10483
+FPMW_DET4_STRIPY127 696.337 1.03813 2.50089e-07 1.15456
+FPMW_DET4_STRIPY128 893.791 1.10672 -5.40462e-07 1.11313
+FPMW_DET4_STRIPY129 887.846 1.05636 -4.07916e-07 1.12439
+FPMW_DET4_STRIPY130 765.114 1.04521 -4.73287e-07 1.16488
+FPMW_DET4_STRIPY131 981.267 1.02585 -2.70107e-07 1.11312
+FPMW_DET4_STRIPY132 885.965 1.02188 -1.67229e-07 1.10436
+FPMW_DET4_STRIPY133 722.928 1.04421 -2.62078e-07 1.14555
+FPMW_DET4_STRIPY134 591.293 1.04959 -6.48258e-07 1.19342
+FPMW_DET4_STRIPY135 536.886 1.06628 -3.94352e-07 1.18214
+FPMW_DET4_STRIPY136 783.212 1.0197 -1.06488e-07 1.14273
+FPMW_DET4_STRIPY137 793.732 1.0031 2.98003e-07 1.16345
+FPMW_DET4_STRIPY138 724.395 1.02773 2.0506e-07 1.22168
+FPMW_DET4_STRIPY139 755.96 1.05118 -1.79296e-07 1.19434
+FPMW_DET4_STRIPY140 688.986 1.05007 -1.89785e-07 1.16511
+FPMW_DET4_STRIPY141 694.86 1.01883 2.08595e-08 1.14284
+FPMW_DET4_STRIPY142 909.209 1.03704 1.58885e-07 1.05232
+FPMW_DET4_STRIPY143 629.772 1.11916 3.61525e-06 1.13562
+FPMW_DET4_STRIPY144 616.61 1.07077 -1.4414e-06 1.31434
+FPMW_DET4_STRIPY145 1120.49 1.02177 -6.04752e-07 1.17891
+FPMW_DET4_STRIPY146 963.122 1.03582 -8.73046e-07 1.24871
+FPMW_DET4_STRIPY147 1139.2 1.03801 -7.28115e-07 1.25354
+FPMW_DET4_STRIPY148 790.808 1.06099 -9.07622e-07 1.26091
+FPMW_DET4_STRIPY149 1254.72 1.07623 -8.11954e-07 1.26061
+FPMW_DET4_STRIPY150 1005.35 1.04179 -6.19668e-07 1.24048
+FPMW_DET4_STRIPY151 845.877 1.00652 -2.8499e-07 1.27766
+FPMW_DET4_STRIPY152 989.075 1.06697 -1.14086e-06 1.33133
+FPMW_DET4_STRIPY153 699.026 0.994465 -5.16103e-07 1.35576
+FPMW_DET4_STRIPY154 595.452 1.03458 -8.64897e-07 1.41965
+FPMW_DET4_STRIPY155 989.884 1.00013 -2.66938e-07 1.41752
+FPMW_DET4_STRIPY156 689.524 0.907034 3.16362e-07 1.53778
+FPMW_DET4_STRIPY157 725.701 0.870474 6.11363e-07 1.49656
+FPMW_DET4_STRIPY158 1185.87 0.774071 1.43957e-06 1.74505
+FPMW_DET4_STRIPY159 1011.45 0.604449 2.61693e-06 2.46279
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA1_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA1_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..448e3e366a3f60186ca9cf328a70d8f5908c0b61
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA1_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T1_STRIP1_DE_ENERGY -1.08913 0.013569
+PISTA_T1_STRIP2_DE_ENERGY -0.885081 0.0135385
+PISTA_T1_STRIP3_DE_ENERGY -1.09015 0.0138108
+PISTA_T1_STRIP4_DE_ENERGY -1.01234 0.0135463
+PISTA_T1_STRIP5_DE_ENERGY -1.17342 0.0135857
+PISTA_T1_STRIP6_DE_ENERGY -0.947377 0.0134727
+PISTA_T1_STRIP7_DE_ENERGY -1.1856 0.013776
+PISTA_T1_STRIP8_DE_ENERGY -1.01401 0.0134185
+PISTA_T1_STRIP9_DE_ENERGY -1.1821 0.0135041
+PISTA_T1_STRIP10_DE_ENERGY -0.967692 0.0136511
+PISTA_T1_STRIP11_DE_ENERGY -1.14679 0.0137656
+PISTA_T1_STRIP12_DE_ENERGY -0.949179 0.0136964
+PISTA_T1_STRIP13_DE_ENERGY -1.10737 0.0135992
+PISTA_T1_STRIP14_DE_ENERGY -0.96337 0.0135815
+PISTA_T1_STRIP15_DE_ENERGY -1.1344 0.0139096
+PISTA_T1_STRIP16_DE_ENERGY -0.990196 0.0136351
+PISTA_T1_STRIP17_DE_ENERGY -1.17289 0.0135513
+PISTA_T1_STRIP18_DE_ENERGY -0.985272 0.0135371
+PISTA_T1_STRIP19_DE_ENERGY -1.1778 0.0137423
+PISTA_T1_STRIP20_DE_ENERGY -1.00183 0.0136772
+PISTA_T1_STRIP21_DE_ENERGY -1.20761 0.0135794
+PISTA_T1_STRIP22_DE_ENERGY -0.986154 0.0136166
+PISTA_T1_STRIP23_DE_ENERGY -1.19685 0.0139476
+PISTA_T1_STRIP24_DE_ENERGY -1.02664 0.0135596
+PISTA_T1_STRIP25_DE_ENERGY -1.21829 0.0136561
+PISTA_T1_STRIP26_DE_ENERGY -1.05295 0.0136987
+PISTA_T1_STRIP27_DE_ENERGY -1.13728 0.0138265
+PISTA_T1_STRIP28_DE_ENERGY -1.04784 0.0137569
+PISTA_T1_STRIP29_DE_ENERGY -1.20238 0.0136125
+PISTA_T1_STRIP30_DE_ENERGY -0.978306 0.0136686
+PISTA_T1_STRIP31_DE_ENERGY -1.16507 0.0140043
+PISTA_T1_STRIP32_DE_ENERGY -0.971067 0.013614
+PISTA_T1_STRIP33_DE_ENERGY -1.09924 0.0137034
+PISTA_T1_STRIP34_DE_ENERGY -1.06256 0.0138082
+PISTA_T1_STRIP35_DE_ENERGY -1.08731 0.0138578
+PISTA_T1_STRIP36_DE_ENERGY -1.05094 0.01376
+PISTA_T1_STRIP37_DE_ENERGY -1.1188 0.0137139
+PISTA_T1_STRIP38_DE_ENERGY -1.07753 0.01386
+PISTA_T1_STRIP39_DE_ENERGY -1.11328 0.0137719
+PISTA_T1_STRIP40_DE_ENERGY -1.1025 0.0136956
+PISTA_T1_STRIP41_DE_ENERGY -1.13342 0.0136464
+PISTA_T1_STRIP42_DE_ENERGY -1.15632 0.0139126
+PISTA_T1_STRIP43_DE_ENERGY -1.12265 0.0138451
+PISTA_T1_STRIP44_DE_ENERGY -1.17091 0.0137769
+PISTA_T1_STRIP45_DE_ENERGY -1.16569 0.0139243
+PISTA_T1_STRIP46_DE_ENERGY -1.06378 0.0138741
+PISTA_T1_STRIP47_DE_ENERGY -1.13077 0.0137829
+PISTA_T1_STRIP48_DE_ENERGY -1.15095 0.0137822
+PISTA_T1_STRIP49_DE_ENERGY -1.08784 0.0138841
+PISTA_T1_STRIP50_DE_ENERGY -1.06739 0.0137807
+PISTA_T1_STRIP51_DE_ENERGY -1.02919 0.0138602
+PISTA_T1_STRIP52_DE_ENERGY -1.13207 0.0137714
+PISTA_T1_STRIP53_DE_ENERGY -1.1386 0.013847
+PISTA_T1_STRIP54_DE_ENERGY -1.04129 0.0138249
+PISTA_T1_STRIP55_DE_ENERGY -1.15012 0.0139521
+PISTA_T1_STRIP56_DE_ENERGY -1.09286 0.0137695
+PISTA_T1_STRIP57_DE_ENERGY -1.16006 0.0136331
+PISTA_T1_STRIP58_DE_ENERGY -1.05667 0.0138879
+PISTA_T1_STRIP59_DE_ENERGY -1.15288 0.0139254
+PISTA_T1_STRIP60_DE_ENERGY -1.137 0.0136996
+PISTA_T1_STRIP61_DE_ENERGY -1.16432 0.0139673
+PISTA_T1_STRIP62_DE_ENERGY -1.11781 0.0140836
+PISTA_T1_STRIP63_DE_ENERGY -1.15449 0.013941
+PISTA_T1_STRIP64_DE_ENERGY -1.1552 0.0136624
+PISTA_T1_STRIP65_DE_ENERGY -1.33934 0.013686
+PISTA_T1_STRIP66_DE_ENERGY -1.11718 0.0138356
+PISTA_T1_STRIP67_DE_ENERGY -1.16255 0.0139775
+PISTA_T1_STRIP68_DE_ENERGY -0.986449 0.0136265
+PISTA_T1_STRIP69_DE_ENERGY -1.31989 0.0136531
+PISTA_T1_STRIP70_DE_ENERGY -1.14984 0.0137231
+PISTA_T1_STRIP71_DE_ENERGY -1.10852 0.0140643
+PISTA_T1_STRIP72_DE_ENERGY -1.04061 0.0136808
+PISTA_T1_STRIP73_DE_ENERGY -1.32476 0.0138833
+PISTA_T1_STRIP74_DE_ENERGY -1.12542 0.0138326
+PISTA_T1_STRIP75_DE_ENERGY -1.19206 0.0139895
+PISTA_T1_STRIP76_DE_ENERGY -1.05744 0.0139126
+PISTA_T1_STRIP77_DE_ENERGY -1.32819 0.0138163
+PISTA_T1_STRIP78_DE_ENERGY -1.08343 0.013752
+PISTA_T1_STRIP79_DE_ENERGY -1.1294 0.0138744
+PISTA_T1_STRIP80_DE_ENERGY -0.991927 0.0137275
+PISTA_T1_STRIP81_DE_ENERGY -1.36374 0.0138202
+PISTA_T1_STRIP82_DE_ENERGY -1.13332 0.0138145
+PISTA_T1_STRIP83_DE_ENERGY -1.20201 0.0139965
+PISTA_T1_STRIP84_DE_ENERGY -1.04182 0.0138216
+PISTA_T1_STRIP85_DE_ENERGY -1.39721 0.0138009
+PISTA_T1_STRIP86_DE_ENERGY -1.16518 0.0138148
+PISTA_T1_STRIP87_DE_ENERGY -1.21698 0.0139628
+PISTA_T1_STRIP88_DE_ENERGY -1.04416 0.0136496
+PISTA_T1_STRIP89_DE_ENERGY -1.36829 0.0138262
+PISTA_T1_STRIP90_DE_ENERGY -1.15551 0.013846
+PISTA_T1_STRIP91_DE_ENERGY -1.18927 0.0140884
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA2_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA2_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..f85f4cbba5eaf255b5eb34ce7faa2396cd6022b2
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA2_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T2_STRIP1_DE_ENERGY -0.929386 0.0135032
+PISTA_T2_STRIP2_DE_ENERGY -1.08102 0.0136376
+PISTA_T2_STRIP3_DE_ENERGY -1.12144 0.0136342
+PISTA_T2_STRIP4_DE_ENERGY -1.06531 0.0135555
+PISTA_T2_STRIP5_DE_ENERGY -0.959826 0.0134798
+PISTA_T2_STRIP6_DE_ENERGY -1.05871 0.0136334
+PISTA_T2_STRIP7_DE_ENERGY -1.23259 0.0137148
+PISTA_T2_STRIP8_DE_ENERGY -1.13215 0.0135869
+PISTA_T2_STRIP9_DE_ENERGY -1.0099 0.0136088
+PISTA_T2_STRIP10_DE_ENERGY -1.0675 0.0136809
+PISTA_T2_STRIP11_DE_ENERGY -1.15692 0.0135739
+PISTA_T2_STRIP12_DE_ENERGY -1.14912 0.0136913
+PISTA_T2_STRIP13_DE_ENERGY -0.960776 0.0136062
+PISTA_T2_STRIP14_DE_ENERGY -1.09533 0.0136275
+PISTA_T2_STRIP15_DE_ENERGY -1.17766 0.0137901
+PISTA_T2_STRIP16_DE_ENERGY -1.12568 0.0135612
+PISTA_T2_STRIP17_DE_ENERGY -0.968753 0.0135332
+PISTA_T2_STRIP18_DE_ENERGY -1.13765 0.0135623
+PISTA_T2_STRIP19_DE_ENERGY -1.13597 0.0136845
+PISTA_T2_STRIP20_DE_ENERGY -1.10244 0.0136673
+PISTA_T2_STRIP21_DE_ENERGY -0.982056 0.0135737
+PISTA_T2_STRIP22_DE_ENERGY -1.09154 0.0137669
+PISTA_T2_STRIP23_DE_ENERGY -1.17517 0.0135797
+PISTA_T2_STRIP24_DE_ENERGY -1.10982 0.0135917
+PISTA_T2_STRIP25_DE_ENERGY -1.00249 0.0135476
+PISTA_T2_STRIP26_DE_ENERGY -1.12192 0.0139227
+PISTA_T2_STRIP27_DE_ENERGY -1.15698 0.0136639
+PISTA_T2_STRIP28_DE_ENERGY -1.19101 0.0136429
+PISTA_T2_STRIP29_DE_ENERGY -0.995775 0.0136122
+PISTA_T2_STRIP30_DE_ENERGY -1.13626 0.0137669
+PISTA_T2_STRIP31_DE_ENERGY -1.22165 0.0137021
+PISTA_T2_STRIP32_DE_ENERGY -1.20477 0.0137367
+PISTA_T2_STRIP33_DE_ENERGY -1.08752 0.0137441
+PISTA_T2_STRIP34_DE_ENERGY -1.01673 0.013814
+PISTA_T2_STRIP35_DE_ENERGY -1.09978 0.0139387
+PISTA_T2_STRIP36_DE_ENERGY -0.920343 0.0136605
+PISTA_T2_STRIP37_DE_ENERGY -1.17098 0.0137482
+PISTA_T2_STRIP38_DE_ENERGY -0.996211 0.0138414
+PISTA_T2_STRIP39_DE_ENERGY -1.20086 0.013863
+PISTA_T2_STRIP40_DE_ENERGY -0.971481 0.0137263
+PISTA_T2_STRIP41_DE_ENERGY -1.10474 0.0135869
+PISTA_T2_STRIP42_DE_ENERGY -0.996208 0.0136592
+PISTA_T2_STRIP43_DE_ENERGY -1.16621 0.0139081
+PISTA_T2_STRIP44_DE_ENERGY -1.02013 0.0136199
+PISTA_T2_STRIP45_DE_ENERGY -1.14205 0.0137708
+PISTA_T2_STRIP46_DE_ENERGY -0.985933 0.0135868
+PISTA_T2_STRIP47_DE_ENERGY -1.14277 0.0138522
+PISTA_T2_STRIP48_DE_ENERGY -0.938571 0.0136979
+PISTA_T2_STRIP49_DE_ENERGY -1.16016 0.0136844
+PISTA_T2_STRIP50_DE_ENERGY -1.03875 0.0136939
+PISTA_T2_STRIP51_DE_ENERGY -1.20024 0.0139685
+PISTA_T2_STRIP52_DE_ENERGY -1.06445 0.0136688
+PISTA_T2_STRIP53_DE_ENERGY -1.15537 0.0138568
+PISTA_T2_STRIP54_DE_ENERGY -1.04478 0.0137594
+PISTA_T2_STRIP55_DE_ENERGY -1.28594 0.0140292
+PISTA_T2_STRIP56_DE_ENERGY -1.02514 0.0136781
+PISTA_T2_STRIP57_DE_ENERGY -1.14319 0.0136654
+PISTA_T2_STRIP58_DE_ENERGY -1.11913 0.0138247
+PISTA_T2_STRIP59_DE_ENERGY -1.16733 0.0140026
+PISTA_T2_STRIP60_DE_ENERGY -1.00073 0.0138846
+PISTA_T2_STRIP61_DE_ENERGY -1.21555 0.0137502
+PISTA_T2_STRIP62_DE_ENERGY -1.01237 0.0137759
+PISTA_T2_STRIP63_DE_ENERGY -1.15293 0.0140793
+PISTA_T2_STRIP64_DE_ENERGY -0.969132 0.0138291
+PISTA_T2_STRIP65_DE_ENERGY -1.02872 0.0138884
+PISTA_T2_STRIP66_DE_ENERGY -1.01218 0.013934
+PISTA_T2_STRIP67_DE_ENERGY -1.06944 0.0139279
+PISTA_T2_STRIP68_DE_ENERGY -1.16574 0.0138344
+PISTA_T2_STRIP69_DE_ENERGY -1.05541 0.0140818
+PISTA_T2_STRIP70_DE_ENERGY -1.05741 0.0138916
+PISTA_T2_STRIP71_DE_ENERGY -1.1479 0.0138648
+PISTA_T2_STRIP72_DE_ENERGY -1.15086 0.0137461
+PISTA_T2_STRIP73_DE_ENERGY -1.14239 0.0139614
+PISTA_T2_STRIP74_DE_ENERGY -1.10401 0.0139896
+PISTA_T2_STRIP75_DE_ENERGY -1.14707 0.013839
+PISTA_T2_STRIP76_DE_ENERGY -1.18639 0.0138244
+PISTA_T2_STRIP77_DE_ENERGY -1.15544 0.0138714
+PISTA_T2_STRIP78_DE_ENERGY -1.12307 0.0140927
+PISTA_T2_STRIP79_DE_ENERGY -1.12985 0.0140136
+PISTA_T2_STRIP80_DE_ENERGY -1.16747 0.0138124
+PISTA_T2_STRIP81_DE_ENERGY -1.09615 0.0138954
+PISTA_T2_STRIP82_DE_ENERGY -1.04172 0.0138853
+PISTA_T2_STRIP83_DE_ENERGY -1.08563 0.0138972
+PISTA_T2_STRIP84_DE_ENERGY -1.14064 0.0138383
+PISTA_T2_STRIP85_DE_ENERGY -1.11727 0.0138557
+PISTA_T2_STRIP86_DE_ENERGY -1.06712 0.0139294
+PISTA_T2_STRIP87_DE_ENERGY -1.18194 0.0140154
+PISTA_T2_STRIP88_DE_ENERGY -1.16781 0.0138134
+PISTA_T2_STRIP89_DE_ENERGY -1.11001 0.0137917
+PISTA_T2_STRIP90_DE_ENERGY -1.0876 0.0139634
+PISTA_T2_STRIP91_DE_ENERGY -1.09698 0.0140657
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA3_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA3_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..fb3de67076f0dfefacb1e5f933769e1079c7ad91
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA3_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T3_STRIP1_DE_ENERGY -0.941457 0.0135082
+PISTA_T3_STRIP2_DE_ENERGY -1.00953 0.0136343
+PISTA_T3_STRIP3_DE_ENERGY -1.20996 0.0138895
+PISTA_T3_STRIP4_DE_ENERGY -0.909849 0.0135361
+PISTA_T3_STRIP5_DE_ENERGY -0.995059 0.0136012
+PISTA_T3_STRIP6_DE_ENERGY -1.06056 0.0135523
+PISTA_T3_STRIP7_DE_ENERGY -1.25367 0.0138155
+PISTA_T3_STRIP8_DE_ENERGY -0.934246 0.0135622
+PISTA_T3_STRIP9_DE_ENERGY -1.04435 0.013655
+PISTA_T3_STRIP10_DE_ENERGY -1.04025 0.0136994
+PISTA_T3_STRIP11_DE_ENERGY -1.2774 0.0138341
+PISTA_T3_STRIP12_DE_ENERGY -0.923157 0.0137545
+PISTA_T3_STRIP13_DE_ENERGY -1.02936 0.0135672
+PISTA_T3_STRIP14_DE_ENERGY -1.05532 0.0136883
+PISTA_T3_STRIP15_DE_ENERGY -1.21225 0.0138761
+PISTA_T3_STRIP16_DE_ENERGY -0.875787 0.013671
+PISTA_T3_STRIP17_DE_ENERGY -1.0698 0.0135419
+PISTA_T3_STRIP18_DE_ENERGY -1.0285 0.0135176
+PISTA_T3_STRIP19_DE_ENERGY -1.25405 0.0138185
+PISTA_T3_STRIP20_DE_ENERGY -0.948607 0.0137732
+PISTA_T3_STRIP21_DE_ENERGY -1.11555 0.0135703
+PISTA_T3_STRIP22_DE_ENERGY -1.09166 0.0136759
+PISTA_T3_STRIP23_DE_ENERGY -1.29113 0.0139098
+PISTA_T3_STRIP24_DE_ENERGY -0.898372 0.0138089
+PISTA_T3_STRIP25_DE_ENERGY -1.02836 0.0135177
+PISTA_T3_STRIP26_DE_ENERGY -1.06497 0.0137106
+PISTA_T3_STRIP27_DE_ENERGY -1.30392 0.0139716
+PISTA_T3_STRIP28_DE_ENERGY -0.964437 0.0139433
+PISTA_T3_STRIP29_DE_ENERGY -1.02072 0.0136555
+PISTA_T3_STRIP30_DE_ENERGY -1.12391 0.0138173
+PISTA_T3_STRIP31_DE_ENERGY -1.25086 0.0139898
+PISTA_T3_STRIP32_DE_ENERGY -0.915448 0.0137773
+PISTA_T3_STRIP33_DE_ENERGY 0 1
+PISTA_T3_STRIP34_DE_ENERGY -1.06535 0.013808
+PISTA_T3_STRIP35_DE_ENERGY -1.25074 0.0137934
+PISTA_T3_STRIP36_DE_ENERGY -1.0431 0.0137581
+PISTA_T3_STRIP37_DE_ENERGY 0 1
+PISTA_T3_STRIP38_DE_ENERGY -1.10446 0.0138557
+PISTA_T3_STRIP39_DE_ENERGY -1.24238 0.0139663
+PISTA_T3_STRIP40_DE_ENERGY -1.08628 0.0137528
+PISTA_T3_STRIP41_DE_ENERGY 0 1
+PISTA_T3_STRIP42_DE_ENERGY -1.13107 0.0138809
+PISTA_T3_STRIP43_DE_ENERGY -1.22519 0.0137309
+PISTA_T3_STRIP44_DE_ENERGY -1.0369 0.0137712
+PISTA_T3_STRIP45_DE_ENERGY 0 1
+PISTA_T3_STRIP46_DE_ENERGY -1.06625 0.013836
+PISTA_T3_STRIP47_DE_ENERGY -1.26857 0.0137633
+PISTA_T3_STRIP48_DE_ENERGY -1.07682 0.013755
+PISTA_T3_STRIP49_DE_ENERGY 0 1
+PISTA_T3_STRIP50_DE_ENERGY -1.08463 0.0139101
+PISTA_T3_STRIP51_DE_ENERGY -1.2245 0.0138112
+PISTA_T3_STRIP52_DE_ENERGY 0 1
+PISTA_T3_STRIP53_DE_ENERGY 0 1
+PISTA_T3_STRIP54_DE_ENERGY -1.11009 0.0138403
+PISTA_T3_STRIP55_DE_ENERGY 0 1
+PISTA_T3_STRIP56_DE_ENERGY 0 1
+PISTA_T3_STRIP57_DE_ENERGY 0 1
+PISTA_T3_STRIP58_DE_ENERGY -1.11972 0.0139127
+PISTA_T3_STRIP59_DE_ENERGY 0 1
+PISTA_T3_STRIP60_DE_ENERGY 0 1
+PISTA_T3_STRIP61_DE_ENERGY -0.954359 0.0137047
+PISTA_T3_STRIP62_DE_ENERGY 0 1
+PISTA_T3_STRIP63_DE_ENERGY 0 1
+PISTA_T3_STRIP64_DE_ENERGY 0 1
+PISTA_T3_STRIP65_DE_ENERGY 0 1
+PISTA_T3_STRIP66_DE_ENERGY -0.921214 0.013752
+PISTA_T3_STRIP67_DE_ENERGY -1.24195 0.0139796
+PISTA_T3_STRIP68_DE_ENERGY -1.00099 0.0138114
+PISTA_T3_STRIP69_DE_ENERGY 0 1
+PISTA_T3_STRIP70_DE_ENERGY -1.00562 0.0138889
+PISTA_T3_STRIP71_DE_ENERGY -1.35169 0.0140613
+PISTA_T3_STRIP72_DE_ENERGY -0.940711 0.0139228
+PISTA_T3_STRIP73_DE_ENERGY -1.06365 0.013777
+PISTA_T3_STRIP74_DE_ENERGY -1.01566 0.0138164
+PISTA_T3_STRIP75_DE_ENERGY -1.26667 0.0139094
+PISTA_T3_STRIP76_DE_ENERGY -0.97331 0.0137979
+PISTA_T3_STRIP77_DE_ENERGY 0 1
+PISTA_T3_STRIP78_DE_ENERGY 0 1
+PISTA_T3_STRIP79_DE_ENERGY -1.32182 0.0140559
+PISTA_T3_STRIP80_DE_ENERGY -0.968395 0.0139532
+PISTA_T3_STRIP81_DE_ENERGY 0 1
+PISTA_T3_STRIP82_DE_ENERGY 0 1
+PISTA_T3_STRIP83_DE_ENERGY 0 1
+PISTA_T3_STRIP84_DE_ENERGY 0 1
+PISTA_T3_STRIP85_DE_ENERGY 0 1
+PISTA_T3_STRIP86_DE_ENERGY 0 1
+PISTA_T3_STRIP87_DE_ENERGY 0 1
+PISTA_T3_STRIP88_DE_ENERGY 0 1
+PISTA_T3_STRIP89_DE_ENERGY 0 1
+PISTA_T3_STRIP90_DE_ENERGY 0 1
+PISTA_T3_STRIP91_DE_ENERGY 0 1
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA4_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA4_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a340ca3291cbd5758806e670573be26dd2ca5470
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA4_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T4_STRIP1_DE_ENERGY -1.05367 0.0134212
+PISTA_T4_STRIP2_DE_ENERGY -1.28634 0.0137641
+PISTA_T4_STRIP3_DE_ENERGY -1.07426 0.0136597
+PISTA_T4_STRIP4_DE_ENERGY -1.12128 0.0134907
+PISTA_T4_STRIP5_DE_ENERGY -1.093 0.0135162
+PISTA_T4_STRIP6_DE_ENERGY -1.21 0.013669
+PISTA_T4_STRIP7_DE_ENERGY -1.10694 0.0136207
+PISTA_T4_STRIP8_DE_ENERGY -1.05578 0.0134292
+PISTA_T4_STRIP9_DE_ENERGY -1.02643 0.0135198
+PISTA_T4_STRIP10_DE_ENERGY -1.26251 0.0137095
+PISTA_T4_STRIP11_DE_ENERGY -1.12981 0.013567
+PISTA_T4_STRIP12_DE_ENERGY -1.11206 0.0134758
+PISTA_T4_STRIP13_DE_ENERGY -1.02497 0.0134686
+PISTA_T4_STRIP14_DE_ENERGY -1.28994 0.0137561
+PISTA_T4_STRIP15_DE_ENERGY -1.1376 0.0137175
+PISTA_T4_STRIP16_DE_ENERGY -1.09122 0.0135479
+PISTA_T4_STRIP17_DE_ENERGY -1.04445 0.0135569
+PISTA_T4_STRIP18_DE_ENERGY -1.27161 0.0137114
+PISTA_T4_STRIP19_DE_ENERGY -1.09047 0.0136153
+PISTA_T4_STRIP20_DE_ENERGY -1.15575 0.0137205
+PISTA_T4_STRIP21_DE_ENERGY -1.10081 0.0135749
+PISTA_T4_STRIP22_DE_ENERGY -1.21648 0.0137565
+PISTA_T4_STRIP23_DE_ENERGY -1.11273 0.0136991
+PISTA_T4_STRIP24_DE_ENERGY -1.15584 0.0138005
+PISTA_T4_STRIP25_DE_ENERGY -1.07757 0.0134376
+PISTA_T4_STRIP26_DE_ENERGY -1.35575 0.0138932
+PISTA_T4_STRIP27_DE_ENERGY -1.0885 0.0137218
+PISTA_T4_STRIP28_DE_ENERGY -1.12735 0.0135277
+PISTA_T4_STRIP29_DE_ENERGY -1.09888 0.0136531
+PISTA_T4_STRIP30_DE_ENERGY -1.3758 0.0139403
+PISTA_T4_STRIP31_DE_ENERGY -1.13986 0.0138187
+PISTA_T4_STRIP32_DE_ENERGY -1.09379 0.0137035
+PISTA_T4_STRIP33_DE_ENERGY -1.20899 0.0136601
+PISTA_T4_STRIP34_DE_ENERGY -1.2002 0.013761
+PISTA_T4_STRIP35_DE_ENERGY -1.08759 0.0138254
+PISTA_T4_STRIP36_DE_ENERGY -1.07288 0.0136565
+PISTA_T4_STRIP37_DE_ENERGY -1.24191 0.0136685
+PISTA_T4_STRIP38_DE_ENERGY -1.17011 0.0135287
+PISTA_T4_STRIP39_DE_ENERGY -1.11384 0.0137746
+PISTA_T4_STRIP40_DE_ENERGY -1.02375 0.0135488
+PISTA_T4_STRIP41_DE_ENERGY -1.30366 0.0136304
+PISTA_T4_STRIP42_DE_ENERGY -1.15549 0.0136034
+PISTA_T4_STRIP43_DE_ENERGY -1.12753 0.0137302
+PISTA_T4_STRIP44_DE_ENERGY -1.07884 0.0137361
+PISTA_T4_STRIP45_DE_ENERGY -1.15425 0.0137406
+PISTA_T4_STRIP46_DE_ENERGY -1.15987 0.0137426
+PISTA_T4_STRIP47_DE_ENERGY -1.15318 0.0137897
+PISTA_T4_STRIP48_DE_ENERGY -1.0061 0.0136726
+PISTA_T4_STRIP49_DE_ENERGY -1.18656 0.0137144
+PISTA_T4_STRIP50_DE_ENERGY -1.18716 0.0136938
+PISTA_T4_STRIP51_DE_ENERGY -1.17631 0.0139009
+PISTA_T4_STRIP52_DE_ENERGY -1.05898 0.013839
+PISTA_T4_STRIP53_DE_ENERGY -1.19926 0.0137549
+PISTA_T4_STRIP54_DE_ENERGY -1.22483 0.0137857
+PISTA_T4_STRIP55_DE_ENERGY -1.20302 0.0139296
+PISTA_T4_STRIP56_DE_ENERGY -1.05162 0.0136791
+PISTA_T4_STRIP57_DE_ENERGY -1.20149 0.0136849
+PISTA_T4_STRIP58_DE_ENERGY -1.23816 0.0138901
+PISTA_T4_STRIP59_DE_ENERGY -1.16876 0.0140654
+PISTA_T4_STRIP60_DE_ENERGY -1.06186 0.0137806
+PISTA_T4_STRIP61_DE_ENERGY -1.25269 0.0137006
+PISTA_T4_STRIP62_DE_ENERGY -1.19355 0.0138691
+PISTA_T4_STRIP63_DE_ENERGY -1.18451 0.0140557
+PISTA_T4_STRIP64_DE_ENERGY -0.945751 0.0139007
+PISTA_T4_STRIP65_DE_ENERGY -1.14477 0.0139205
+PISTA_T4_STRIP66_DE_ENERGY -1.25663 0.0139218
+PISTA_T4_STRIP67_DE_ENERGY -1.05229 0.0139056
+PISTA_T4_STRIP68_DE_ENERGY -1.09758 0.0137441
+PISTA_T4_STRIP69_DE_ENERGY -1.09277 0.0139068
+PISTA_T4_STRIP70_DE_ENERGY -1.29542 0.0139345
+PISTA_T4_STRIP71_DE_ENERGY -1.08253 0.0137616
+PISTA_T4_STRIP72_DE_ENERGY -1.11539 0.0137857
+PISTA_T4_STRIP73_DE_ENERGY -1.12379 0.0138282
+PISTA_T4_STRIP74_DE_ENERGY -1.35503 0.013945
+PISTA_T4_STRIP75_DE_ENERGY -1.1145 0.0138052
+PISTA_T4_STRIP76_DE_ENERGY -1.19768 0.01387
+PISTA_T4_STRIP77_DE_ENERGY -1.10318 0.0138102
+PISTA_T4_STRIP78_DE_ENERGY -1.3245 0.0140037
+PISTA_T4_STRIP79_DE_ENERGY -1.09876 0.0139339
+PISTA_T4_STRIP80_DE_ENERGY -1.15185 0.013719
+PISTA_T4_STRIP81_DE_ENERGY -1.12957 0.013696
+PISTA_T4_STRIP82_DE_ENERGY -1.34592 0.0138315
+PISTA_T4_STRIP83_DE_ENERGY -1.05837 0.0139453
+PISTA_T4_STRIP84_DE_ENERGY -1.1781 0.0137158
+PISTA_T4_STRIP85_DE_ENERGY -1.14433 0.0138746
+PISTA_T4_STRIP86_DE_ENERGY -1.3253 0.0139637
+PISTA_T4_STRIP87_DE_ENERGY -1.09983 0.0138875
+PISTA_T4_STRIP88_DE_ENERGY -1.16422 0.0138663
+PISTA_T4_STRIP89_DE_ENERGY -1.09991 0.0137082
+PISTA_T4_STRIP90_DE_ENERGY -1.34109 0.0138574
+PISTA_T4_STRIP91_DE_ENERGY -1.0974 0.01389
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA5_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA5_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..4c94a99c5bcb1b558a97a704f6c2c855f8122057
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA5_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T5_STRIP1_DE_ENERGY -1.20175 0.0134811
+PISTA_T5_STRIP2_DE_ENERGY -1.00422 0.0136505
+PISTA_T5_STRIP3_DE_ENERGY -1.08576 0.0139259
+PISTA_T5_STRIP4_DE_ENERGY -1.07848 0.0133807
+PISTA_T5_STRIP5_DE_ENERGY -1.23096 0.0135824
+PISTA_T5_STRIP6_DE_ENERGY -1.02269 0.0136745
+PISTA_T5_STRIP7_DE_ENERGY -1.03395 0.0137936
+PISTA_T5_STRIP8_DE_ENERGY -1.16254 0.0136302
+PISTA_T5_STRIP9_DE_ENERGY -1.23494 0.0135014
+PISTA_T5_STRIP10_DE_ENERGY -1.05144 0.0135679
+PISTA_T5_STRIP11_DE_ENERGY -1.04481 0.0136821
+PISTA_T5_STRIP12_DE_ENERGY -1.13856 0.0136613
+PISTA_T5_STRIP13_DE_ENERGY -1.27576 0.0136726
+PISTA_T5_STRIP14_DE_ENERGY -1.02315 0.0135406
+PISTA_T5_STRIP15_DE_ENERGY -0.997474 0.0137871
+PISTA_T5_STRIP16_DE_ENERGY -1.15518 0.0135691
+PISTA_T5_STRIP17_DE_ENERGY -1.16915 0.0135235
+PISTA_T5_STRIP18_DE_ENERGY -1.05798 0.0136082
+PISTA_T5_STRIP19_DE_ENERGY -1.09648 0.0138962
+PISTA_T5_STRIP20_DE_ENERGY -1.19855 0.0136471
+PISTA_T5_STRIP21_DE_ENERGY -1.20279 0.0136232
+PISTA_T5_STRIP22_DE_ENERGY -1.03119 0.0135455
+PISTA_T5_STRIP23_DE_ENERGY -1.04834 0.0138765
+PISTA_T5_STRIP24_DE_ENERGY -1.13691 0.0136888
+PISTA_T5_STRIP25_DE_ENERGY -1.2238 0.0136792
+PISTA_T5_STRIP26_DE_ENERGY -1.05806 0.013644
+PISTA_T5_STRIP27_DE_ENERGY -1.03885 0.013862
+PISTA_T5_STRIP28_DE_ENERGY -1.16285 0.013687
+PISTA_T5_STRIP29_DE_ENERGY -1.27959 0.0136917
+PISTA_T5_STRIP30_DE_ENERGY -1.05197 0.0135674
+PISTA_T5_STRIP31_DE_ENERGY -0.985336 0.0137823
+PISTA_T5_STRIP32_DE_ENERGY -1.15222 0.0136115
+PISTA_T5_STRIP33_DE_ENERGY -1.21268 0.0137146
+PISTA_T5_STRIP34_DE_ENERGY -1.12687 0.0137057
+PISTA_T5_STRIP35_DE_ENERGY -0.99532 0.013822
+PISTA_T5_STRIP36_DE_ENERGY -1.25619 0.0136059
+PISTA_T5_STRIP37_DE_ENERGY -1.16522 0.013586
+PISTA_T5_STRIP38_DE_ENERGY -1.17273 0.0138751
+PISTA_T5_STRIP39_DE_ENERGY -0.922392 0.0138241
+PISTA_T5_STRIP40_DE_ENERGY -1.34341 0.0136911
+PISTA_T5_STRIP41_DE_ENERGY -1.20455 0.0137181
+PISTA_T5_STRIP42_DE_ENERGY -1.13128 0.0137477
+PISTA_T5_STRIP43_DE_ENERGY -1.01303 0.013737
+PISTA_T5_STRIP44_DE_ENERGY -1.32009 0.0137053
+PISTA_T5_STRIP45_DE_ENERGY -1.16008 0.013773
+PISTA_T5_STRIP46_DE_ENERGY -1.17231 0.0138834
+PISTA_T5_STRIP47_DE_ENERGY -0.950523 0.0137748
+PISTA_T5_STRIP48_DE_ENERGY -1.30933 0.0137182
+PISTA_T5_STRIP49_DE_ENERGY -1.11507 0.0137047
+PISTA_T5_STRIP50_DE_ENERGY -1.17365 0.0137824
+PISTA_T5_STRIP51_DE_ENERGY -0.988248 0.0138181
+PISTA_T5_STRIP52_DE_ENERGY -1.35384 0.0138629
+PISTA_T5_STRIP53_DE_ENERGY -1.21726 0.0136863
+PISTA_T5_STRIP54_DE_ENERGY -1.16439 0.013936
+PISTA_T5_STRIP55_DE_ENERGY -0.996805 0.0138361
+PISTA_T5_STRIP56_DE_ENERGY -1.30539 0.0137537
+PISTA_T5_STRIP57_DE_ENERGY -1.20563 0.013733
+PISTA_T5_STRIP58_DE_ENERGY -1.19435 0.0138299
+PISTA_T5_STRIP59_DE_ENERGY -1.00913 0.0137873
+PISTA_T5_STRIP60_DE_ENERGY -1.38263 0.0138165
+PISTA_T5_STRIP61_DE_ENERGY -1.10281 0.0137504
+PISTA_T5_STRIP62_DE_ENERGY -1.19611 0.0138597
+PISTA_T5_STRIP63_DE_ENERGY -0.981426 0.013851
+PISTA_T5_STRIP64_DE_ENERGY -1.34081 0.0137874
+PISTA_T5_STRIP65_DE_ENERGY -1.19321 0.0136563
+PISTA_T5_STRIP66_DE_ENERGY -1.26598 0.0136829
+PISTA_T5_STRIP67_DE_ENERGY -1.14385 0.0139755
+PISTA_T5_STRIP68_DE_ENERGY -1.01229 0.0136465
+PISTA_T5_STRIP69_DE_ENERGY -1.16629 0.0137363
+PISTA_T5_STRIP70_DE_ENERGY -1.22482 0.0137416
+PISTA_T5_STRIP71_DE_ENERGY -1.12679 0.0138823
+PISTA_T5_STRIP72_DE_ENERGY -1.0263 0.013729
+PISTA_T5_STRIP73_DE_ENERGY -1.19332 0.0136823
+PISTA_T5_STRIP74_DE_ENERGY -1.20839 0.0137346
+PISTA_T5_STRIP75_DE_ENERGY -1.09354 0.0138071
+PISTA_T5_STRIP76_DE_ENERGY -0.873678 0.0136079
+PISTA_T5_STRIP77_DE_ENERGY -1.18795 0.0136751
+PISTA_T5_STRIP78_DE_ENERGY -1.2665 0.0136702
+PISTA_T5_STRIP79_DE_ENERGY -1.11067 0.0139572
+PISTA_T5_STRIP80_DE_ENERGY -0.963073 0.0137645
+PISTA_T5_STRIP81_DE_ENERGY -1.24139 0.013825
+PISTA_T5_STRIP82_DE_ENERGY -1.32954 0.0137674
+PISTA_T5_STRIP83_DE_ENERGY -1.12863 0.0139812
+PISTA_T5_STRIP84_DE_ENERGY -1.08764 0.0137278
+PISTA_T5_STRIP85_DE_ENERGY -1.1825 0.0136342
+PISTA_T5_STRIP86_DE_ENERGY -1.35617 0.0138417
+PISTA_T5_STRIP87_DE_ENERGY -1.13973 0.0139892
+PISTA_T5_STRIP88_DE_ENERGY -1.11143 0.0137236
+PISTA_T5_STRIP89_DE_ENERGY -1.23675 0.0137931
+PISTA_T5_STRIP90_DE_ENERGY -1.30754 0.0138039
+PISTA_T5_STRIP91_DE_ENERGY -1.12456 0.0140835
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA6_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA6_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a818ddeecfe6b1b71fe4d83da6e84c86176188e8
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA6_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T6_STRIP1_DE_ENERGY -0.981672 0.0137058
+PISTA_T6_STRIP2_DE_ENERGY -1.03858 0.01365
+PISTA_T6_STRIP3_DE_ENERGY -0.946116 0.0135524
+PISTA_T6_STRIP4_DE_ENERGY -1.07349 0.0135166
+PISTA_T6_STRIP5_DE_ENERGY -1.01638 0.0137548
+PISTA_T6_STRIP6_DE_ENERGY -1.0807 0.0137094
+PISTA_T6_STRIP7_DE_ENERGY -0.995139 0.0135783
+PISTA_T6_STRIP8_DE_ENERGY -1.13832 0.0135235
+PISTA_T6_STRIP9_DE_ENERGY -0.954083 0.0135906
+PISTA_T6_STRIP10_DE_ENERGY -1.01574 0.0137957
+PISTA_T6_STRIP11_DE_ENERGY -1.0437 0.0136077
+PISTA_T6_STRIP12_DE_ENERGY -1.10906 0.0136198
+PISTA_T6_STRIP13_DE_ENERGY -1.09484 0.0137244
+PISTA_T6_STRIP14_DE_ENERGY -1.02018 0.0138443
+PISTA_T6_STRIP15_DE_ENERGY -0.991187 0.0136637
+PISTA_T6_STRIP16_DE_ENERGY -1.14143 0.0137619
+PISTA_T6_STRIP17_DE_ENERGY -0.991233 0.0136853
+PISTA_T6_STRIP18_DE_ENERGY -1.01086 0.0135553
+PISTA_T6_STRIP19_DE_ENERGY -1.02576 0.0135764
+PISTA_T6_STRIP20_DE_ENERGY -1.13971 0.01355
+PISTA_T6_STRIP21_DE_ENERGY -1.00702 0.0136818
+PISTA_T6_STRIP22_DE_ENERGY -1.00448 0.0137596
+PISTA_T6_STRIP23_DE_ENERGY -0.981453 0.0135348
+PISTA_T6_STRIP24_DE_ENERGY -1.13444 0.0137045
+PISTA_T6_STRIP25_DE_ENERGY -0.994103 0.0136714
+PISTA_T6_STRIP26_DE_ENERGY -1.04434 0.0138388
+PISTA_T6_STRIP27_DE_ENERGY -1.02393 0.0135789
+PISTA_T6_STRIP28_DE_ENERGY -1.20178 0.013549
+PISTA_T6_STRIP29_DE_ENERGY -1.01931 0.0136645
+PISTA_T6_STRIP30_DE_ENERGY -1.04543 0.0137191
+PISTA_T6_STRIP31_DE_ENERGY -1.02907 0.0135974
+PISTA_T6_STRIP32_DE_ENERGY -1.085 0.0137267
+PISTA_T6_STRIP33_DE_ENERGY -1.22551 0.0136843
+PISTA_T6_STRIP34_DE_ENERGY -1.10442 0.0135548
+PISTA_T6_STRIP35_DE_ENERGY -1.12171 0.0137044
+PISTA_T6_STRIP36_DE_ENERGY -1.06568 0.0134899
+PISTA_T6_STRIP37_DE_ENERGY -1.29927 0.0136695
+PISTA_T6_STRIP38_DE_ENERGY -1.13041 0.0136699
+PISTA_T6_STRIP39_DE_ENERGY -1.06144 0.0139314
+PISTA_T6_STRIP40_DE_ENERGY -1.1379 0.013606
+PISTA_T6_STRIP41_DE_ENERGY -1.2669 0.0137121
+PISTA_T6_STRIP42_DE_ENERGY -1.13891 0.0136667
+PISTA_T6_STRIP43_DE_ENERGY -1.03947 0.0137783
+PISTA_T6_STRIP44_DE_ENERGY -1.13383 0.0136461
+PISTA_T6_STRIP45_DE_ENERGY -1.29485 0.0136935
+PISTA_T6_STRIP46_DE_ENERGY -1.17813 0.01362
+PISTA_T6_STRIP47_DE_ENERGY -1.03312 0.0139348
+PISTA_T6_STRIP48_DE_ENERGY -1.09297 0.0137059
+PISTA_T6_STRIP49_DE_ENERGY -1.25172 0.0136516
+PISTA_T6_STRIP50_DE_ENERGY -1.14198 0.0136353
+PISTA_T6_STRIP51_DE_ENERGY -1.1088 0.0139053
+PISTA_T6_STRIP52_DE_ENERGY -1.15386 0.0138939
+PISTA_T6_STRIP53_DE_ENERGY -1.2011 0.0136839
+PISTA_T6_STRIP54_DE_ENERGY -1.18809 0.013655
+PISTA_T6_STRIP55_DE_ENERGY -1.07329 0.0138075
+PISTA_T6_STRIP56_DE_ENERGY -1.20565 0.0138403
+PISTA_T6_STRIP57_DE_ENERGY -1.30694 0.0137712
+PISTA_T6_STRIP58_DE_ENERGY -1.15392 0.0138226
+PISTA_T6_STRIP59_DE_ENERGY -1.04979 0.0139715
+PISTA_T6_STRIP60_DE_ENERGY -1.2033 0.0137806
+PISTA_T6_STRIP61_DE_ENERGY -1.30594 0.0138187
+PISTA_T6_STRIP62_DE_ENERGY -1.22093 0.0137988
+PISTA_T6_STRIP63_DE_ENERGY -1.03389 0.0139425
+PISTA_T6_STRIP64_DE_ENERGY -1.17716 0.0137708
+PISTA_T6_STRIP65_DE_ENERGY -1.12713 0.0138375
+PISTA_T6_STRIP66_DE_ENERGY -1.12126 0.0140169
+PISTA_T6_STRIP67_DE_ENERGY -1.00351 0.0138873
+PISTA_T6_STRIP68_DE_ENERGY -1.38579 0.013841
+PISTA_T6_STRIP69_DE_ENERGY -1.17096 0.0138242
+PISTA_T6_STRIP70_DE_ENERGY -1.20351 0.0139785
+PISTA_T6_STRIP71_DE_ENERGY -1.02295 0.0138356
+PISTA_T6_STRIP72_DE_ENERGY -1.27075 0.0138021
+PISTA_T6_STRIP73_DE_ENERGY -1.16147 0.0138911
+PISTA_T6_STRIP74_DE_ENERGY -1.16581 0.014018
+PISTA_T6_STRIP75_DE_ENERGY -1.02995 0.0138259
+PISTA_T6_STRIP76_DE_ENERGY -1.28906 0.0137909
+PISTA_T6_STRIP77_DE_ENERGY -1.14883 0.0136997
+PISTA_T6_STRIP78_DE_ENERGY -1.13962 0.0139351
+PISTA_T6_STRIP79_DE_ENERGY -1.02607 0.0138283
+PISTA_T6_STRIP80_DE_ENERGY -1.3083 0.0137532
+PISTA_T6_STRIP81_DE_ENERGY -1.1621 0.0137271
+PISTA_T6_STRIP82_DE_ENERGY -1.14251 0.0137599
+PISTA_T6_STRIP83_DE_ENERGY -1.0149 0.0137525
+PISTA_T6_STRIP84_DE_ENERGY 0.552758 0.0137525
+PISTA_T6_STRIP85_DE_ENERGY -1.20103 0.0138968
+PISTA_T6_STRIP86_DE_ENERGY -1.20123 0.0140184
+PISTA_T6_STRIP87_DE_ENERGY -1.02099 0.0138538
+PISTA_T6_STRIP88_DE_ENERGY -1.31976 0.0138411
+PISTA_T6_STRIP89_DE_ENERGY -1.19602 0.0139298
+PISTA_T6_STRIP90_DE_ENERGY -1.18044 0.013996
+PISTA_T6_STRIP91_DE_ENERGY -1.03625 0.0138778
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA7_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA7_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..30f8b7a68bf7b38903a6842585dff71dbe1ab3bd
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA7_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T7_STRIP1_DE_ENERGY -1.01157 0.013556
+PISTA_T7_STRIP2_DE_ENERGY -0.911997 0.0135065
+PISTA_T7_STRIP3_DE_ENERGY -1.0307 0.0137876
+PISTA_T7_STRIP4_DE_ENERGY -0.859035 0.0134829
+PISTA_T7_STRIP5_DE_ENERGY -1.01476 0.0136694
+PISTA_T7_STRIP6_DE_ENERGY -0.95463 0.0134534
+PISTA_T7_STRIP7_DE_ENERGY -1.04575 0.0137408
+PISTA_T7_STRIP8_DE_ENERGY -0.870957 0.0134104
+PISTA_T7_STRIP9_DE_ENERGY -1.01419 0.0135694
+PISTA_T7_STRIP10_DE_ENERGY -0.906539 0.0135287
+PISTA_T7_STRIP11_DE_ENERGY -1.03252 0.0136353
+PISTA_T7_STRIP12_DE_ENERGY -0.845459 0.0136334
+PISTA_T7_STRIP13_DE_ENERGY -1.08221 0.0137394
+PISTA_T7_STRIP14_DE_ENERGY -0.93327 0.0136088
+PISTA_T7_STRIP15_DE_ENERGY -1.0462 0.0138214
+PISTA_T7_STRIP16_DE_ENERGY -0.81535 0.0136337
+PISTA_T7_STRIP17_DE_ENERGY -0.988239 0.0135664
+PISTA_T7_STRIP18_DE_ENERGY -0.94665 0.0136525
+PISTA_T7_STRIP19_DE_ENERGY -1.08478 0.0137691
+PISTA_T7_STRIP20_DE_ENERGY -0.894392 0.0136105
+PISTA_T7_STRIP21_DE_ENERGY -1.07608 0.0136512
+PISTA_T7_STRIP22_DE_ENERGY -1.00451 0.013582
+PISTA_T7_STRIP23_DE_ENERGY -1.02086 0.0137254
+PISTA_T7_STRIP24_DE_ENERGY -0.926664 0.0137197
+PISTA_T7_STRIP25_DE_ENERGY -1.0638 0.0136796
+PISTA_T7_STRIP26_DE_ENERGY -0.953546 0.0136202
+PISTA_T7_STRIP27_DE_ENERGY -1.03677 0.013783
+PISTA_T7_STRIP28_DE_ENERGY -0.893485 0.0137094
+PISTA_T7_STRIP29_DE_ENERGY -1.1001 0.0137849
+PISTA_T7_STRIP30_DE_ENERGY -1.03693 0.0136447
+PISTA_T7_STRIP31_DE_ENERGY -1.06084 0.01374
+PISTA_T7_STRIP32_DE_ENERGY -0.90168 0.0134792
+PISTA_T7_STRIP33_DE_ENERGY -0.898797 0.0138072
+PISTA_T7_STRIP34_DE_ENERGY -0.907076 0.0139695
+PISTA_T7_STRIP35_DE_ENERGY -1.05705 0.0137819
+PISTA_T7_STRIP36_DE_ENERGY -1.00005 0.0137402
+PISTA_T7_STRIP37_DE_ENERGY -0.976 0.0138071
+PISTA_T7_STRIP38_DE_ENERGY -1.02524 0.0139606
+PISTA_T7_STRIP39_DE_ENERGY -1.04942 0.0138987
+PISTA_T7_STRIP40_DE_ENERGY -1.08041 0.013763
+PISTA_T7_STRIP41_DE_ENERGY -0.948415 0.013919
+PISTA_T7_STRIP42_DE_ENERGY -0.944774 0.0138513
+PISTA_T7_STRIP43_DE_ENERGY -0.981242 0.013723
+PISTA_T7_STRIP44_DE_ENERGY -1.04138 0.013835
+PISTA_T7_STRIP45_DE_ENERGY -0.903884 0.0138871
+PISTA_T7_STRIP46_DE_ENERGY -0.934282 0.0139796
+PISTA_T7_STRIP47_DE_ENERGY -1.01315 0.0138543
+PISTA_T7_STRIP48_DE_ENERGY -1.03915 0.0138744
+PISTA_T7_STRIP49_DE_ENERGY -0.927592 0.0137884
+PISTA_T7_STRIP50_DE_ENERGY -0.969013 0.0138544
+PISTA_T7_STRIP51_DE_ENERGY -1.01851 0.0136941
+PISTA_T7_STRIP52_DE_ENERGY -1.02147 0.0137719
+PISTA_T7_STRIP53_DE_ENERGY -1.00129 0.013782
+PISTA_T7_STRIP54_DE_ENERGY -0.984658 0.0138579
+PISTA_T7_STRIP55_DE_ENERGY -1.09643 0.0137555
+PISTA_T7_STRIP56_DE_ENERGY -1.0528 0.0136874
+PISTA_T7_STRIP57_DE_ENERGY -0.978875 0.0138294
+PISTA_T7_STRIP58_DE_ENERGY -0.958892 0.01388
+PISTA_T7_STRIP59_DE_ENERGY -1.03181 0.0139483
+PISTA_T7_STRIP60_DE_ENERGY -0.995821 0.0137676
+PISTA_T7_STRIP61_DE_ENERGY -1.02159 0.0138437
+PISTA_T7_STRIP62_DE_ENERGY -1.06808 0.0138952
+PISTA_T7_STRIP63_DE_ENERGY -1.12639 0.0138192
+PISTA_T7_STRIP64_DE_ENERGY -1.03759 0.0137746
+PISTA_T7_STRIP65_DE_ENERGY -1.08767 0.0138948
+PISTA_T7_STRIP66_DE_ENERGY -0.901256 0.0139548
+PISTA_T7_STRIP67_DE_ENERGY -0.939258 0.0139487
+PISTA_T7_STRIP68_DE_ENERGY -0.884656 0.0137341
+PISTA_T7_STRIP69_DE_ENERGY -1.10779 0.0139539
+PISTA_T7_STRIP70_DE_ENERGY -0.939879 0.0138418
+PISTA_T7_STRIP71_DE_ENERGY -1.0505 0.0138922
+PISTA_T7_STRIP72_DE_ENERGY -0.964173 0.0139566
+PISTA_T7_STRIP73_DE_ENERGY -1.13145 0.0139133
+PISTA_T7_STRIP74_DE_ENERGY -0.831764 0.0139232
+PISTA_T7_STRIP75_DE_ENERGY -1.04405 0.0138911
+PISTA_T7_STRIP76_DE_ENERGY -0.927438 0.0137722
+PISTA_T7_STRIP77_DE_ENERGY -1.07534 0.0138558
+PISTA_T7_STRIP78_DE_ENERGY -0.816819 0.0139453
+PISTA_T7_STRIP79_DE_ENERGY -0.977363 0.0140247
+PISTA_T7_STRIP80_DE_ENERGY -0.919973 0.0139971
+PISTA_T7_STRIP81_DE_ENERGY -1.05023 0.0138935
+PISTA_T7_STRIP82_DE_ENERGY -0.878865 0.0138613
+PISTA_T7_STRIP83_DE_ENERGY -1.00107 0.0140212
+PISTA_T7_STRIP84_DE_ENERGY 0 1
+PISTA_T7_STRIP85_DE_ENERGY -1.0878 0.0138704
+PISTA_T7_STRIP86_DE_ENERGY 0 1
+PISTA_T7_STRIP87_DE_ENERGY -1.00081 0.0139905
+PISTA_T7_STRIP88_DE_ENERGY 0 1
+PISTA_T7_STRIP89_DE_ENERGY -1.1129 0.0138482
+PISTA_T7_STRIP90_DE_ENERGY -0.96735 0.0140074
+PISTA_T7_STRIP91_DE_ENERGY -1.03394 0.0140372
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA8_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA8_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a8ada4b0a00fa6bcc7a6399e9166c51a95634a1e
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA8_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T8_STRIP1_DE_ENERGY -1.15569 0.0136372
+PISTA_T8_STRIP2_DE_ENERGY -1.023 0.0137913
+PISTA_T8_STRIP3_DE_ENERGY -1.12642 0.013625
+PISTA_T8_STRIP4_DE_ENERGY -1.13508 0.013593
+PISTA_T8_STRIP5_DE_ENERGY -1.17891 0.0136946
+PISTA_T8_STRIP6_DE_ENERGY -1.0711 0.0136451
+PISTA_T8_STRIP7_DE_ENERGY -1.18294 0.0136934
+PISTA_T8_STRIP8_DE_ENERGY -1.19527 0.0135622
+PISTA_T8_STRIP9_DE_ENERGY -1.1743 0.0136732
+PISTA_T8_STRIP10_DE_ENERGY -1.13768 0.0138015
+PISTA_T8_STRIP11_DE_ENERGY -1.16373 0.0136111
+PISTA_T8_STRIP12_DE_ENERGY -1.26367 0.0137706
+PISTA_T8_STRIP13_DE_ENERGY -1.20625 0.0136061
+PISTA_T8_STRIP14_DE_ENERGY -1.14177 0.0137533
+PISTA_T8_STRIP15_DE_ENERGY -1.19583 0.0136562
+PISTA_T8_STRIP16_DE_ENERGY -1.19134 0.01377
+PISTA_T8_STRIP17_DE_ENERGY -1.11757 0.0136203
+PISTA_T8_STRIP18_DE_ENERGY -1.18652 0.0136925
+PISTA_T8_STRIP19_DE_ENERGY -1.19345 0.0137288
+PISTA_T8_STRIP20_DE_ENERGY -1.23646 0.013637
+PISTA_T8_STRIP21_DE_ENERGY -1.20651 0.0136473
+PISTA_T8_STRIP22_DE_ENERGY -1.1685 0.0138105
+PISTA_T8_STRIP23_DE_ENERGY -1.17143 0.0135532
+PISTA_T8_STRIP24_DE_ENERGY -1.28064 0.0137411
+PISTA_T8_STRIP25_DE_ENERGY -1.28505 0.0137132
+PISTA_T8_STRIP26_DE_ENERGY -1.15674 0.0136882
+PISTA_T8_STRIP27_DE_ENERGY -1.23883 0.0137433
+PISTA_T8_STRIP28_DE_ENERGY -1.19966 0.013775
+PISTA_T8_STRIP29_DE_ENERGY -1.22575 0.013666
+PISTA_T8_STRIP30_DE_ENERGY -1.13143 0.0138298
+PISTA_T8_STRIP31_DE_ENERGY -1.17791 0.0137858
+PISTA_T8_STRIP32_DE_ENERGY -1.28343 0.0136765
+PISTA_T8_STRIP33_DE_ENERGY -1.29415 0.0137434
+PISTA_T8_STRIP34_DE_ENERGY -0.946386 0.0136608
+PISTA_T8_STRIP35_DE_ENERGY -1.1975 0.0139659
+PISTA_T8_STRIP36_DE_ENERGY -0.994194 0.0136443
+PISTA_T8_STRIP37_DE_ENERGY -1.31313 0.0139487
+PISTA_T8_STRIP38_DE_ENERGY -1.01894 0.0137251
+PISTA_T8_STRIP39_DE_ENERGY -1.26005 0.0138469
+PISTA_T8_STRIP40_DE_ENERGY -1.01224 0.0137668
+PISTA_T8_STRIP41_DE_ENERGY -1.36319 0.0138422
+PISTA_T8_STRIP42_DE_ENERGY -0.986008 0.0135814
+PISTA_T8_STRIP43_DE_ENERGY -1.18381 0.0137986
+PISTA_T8_STRIP44_DE_ENERGY -1.04475 0.013655
+PISTA_T8_STRIP45_DE_ENERGY -1.35434 0.0137439
+PISTA_T8_STRIP46_DE_ENERGY -0.996954 0.0136155
+PISTA_T8_STRIP47_DE_ENERGY -1.17296 0.0140156
+PISTA_T8_STRIP48_DE_ENERGY -1.01614 0.0135968
+PISTA_T8_STRIP49_DE_ENERGY -1.30849 0.0137479
+PISTA_T8_STRIP50_DE_ENERGY -0.990134 0.0136972
+PISTA_T8_STRIP51_DE_ENERGY -1.16957 0.0138294
+PISTA_T8_STRIP52_DE_ENERGY 0 1
+PISTA_T8_STRIP53_DE_ENERGY -1.40753 0.013862
+PISTA_T8_STRIP54_DE_ENERGY 0 1
+PISTA_T8_STRIP55_DE_ENERGY -1.20955 0.013931
+PISTA_T8_STRIP56_DE_ENERGY 0 1
+PISTA_T8_STRIP57_DE_ENERGY -1.45333 0.0138471
+PISTA_T8_STRIP58_DE_ENERGY 0 1
+PISTA_T8_STRIP59_DE_ENERGY -1.25485 0.0139926
+PISTA_T8_STRIP60_DE_ENERGY 0 1
+PISTA_T8_STRIP61_DE_ENERGY -1.39142 0.0138574
+PISTA_T8_STRIP62_DE_ENERGY 0 1
+PISTA_T8_STRIP63_DE_ENERGY -1.19855 0.0139054
+PISTA_T8_STRIP64_DE_ENERGY 0 1
+PISTA_T8_STRIP65_DE_ENERGY -1.27799 0.0139006
+PISTA_T8_STRIP66_DE_ENERGY -1.06175 0.014125
+PISTA_T8_STRIP67_DE_ENERGY -1.12145 0.0139325
+PISTA_T8_STRIP68_DE_ENERGY -1.22951 0.0137451
+PISTA_T8_STRIP69_DE_ENERGY -1.28027 0.0139241
+PISTA_T8_STRIP70_DE_ENERGY -1.14701 0.0140531
+PISTA_T8_STRIP71_DE_ENERGY -1.14422 0.0138365
+PISTA_T8_STRIP72_DE_ENERGY -1.18496 0.0139034
+PISTA_T8_STRIP73_DE_ENERGY -1.33472 0.0140413
+PISTA_T8_STRIP74_DE_ENERGY -1.12847 0.0140801
+PISTA_T8_STRIP75_DE_ENERGY -1.19522 0.0139605
+PISTA_T8_STRIP76_DE_ENERGY -1.23273 0.0139858
+PISTA_T8_STRIP77_DE_ENERGY -1.29281 0.0140874
+PISTA_T8_STRIP78_DE_ENERGY -1.10002 0.0138927
+PISTA_T8_STRIP79_DE_ENERGY -1.17625 0.0139718
+PISTA_T8_STRIP80_DE_ENERGY -1.27546 0.0139855
+PISTA_T8_STRIP81_DE_ENERGY -1.22946 0.01398
+PISTA_T8_STRIP82_DE_ENERGY -1.08458 0.0138301
+PISTA_T8_STRIP83_DE_ENERGY -1.15341 0.0138434
+PISTA_T8_STRIP84_DE_ENERGY -1.29829 0.0139355
+PISTA_T8_STRIP85_DE_ENERGY -1.2814 0.0138373
+PISTA_T8_STRIP86_DE_ENERGY -1.0912 0.0138958
+PISTA_T8_STRIP87_DE_ENERGY -1.21871 0.0138856
+PISTA_T8_STRIP88_DE_ENERGY -1.26828 0.0140088
+PISTA_T8_STRIP89_DE_ENERGY -1.32129 0.0138347
+PISTA_T8_STRIP90_DE_ENERGY -1.1041 0.0140656
+PISTA_T8_STRIP91_DE_ENERGY -1.22519 0.0139399
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA_BACK_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA_BACK_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..bf9c8775162a79c6cd481fc37a44e67c4028b46d
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA_BACK_DE.cal
@@ -0,0 +1,8 @@
+PISTA_T1_BACK_DE 0.05 1.60e-3
+PISTA_T2_BACK_DE 0.05 1.60e-3
+PISTA_T3_BACK_DE 0.05 1.60e-3
+PISTA_T4_BACK_DE 0.05 1.60e-3
+PISTA_T5_BACK_DE 0.05 1.60e-3
+PISTA_T6_BACK_DE 0.05 1.60e-3
+PISTA_T7_BACK_DE 0.05 1.60e-3
+PISTA_T8_BACK_DE 0.05 1.60e-3
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA_BACK_E.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA_BACK_E.cal
new file mode 100644
index 0000000000000000000000000000000000000000..eb6c8af5a2eedfef235f47a93a0255b787692596
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA_BACK_E.cal
@@ -0,0 +1,8 @@
+PISTA_T1_BACK_E 1.44467 0.0029105
+PISTA_T2_BACK_E 0.503368 0.00289778
+PISTA_T3_BACK_E 0.383209 0.00288656
+PISTA_T4_BACK_E 0.869997 0.00282768
+PISTA_T5_BACK_E -0.48793 0.00288161
+PISTA_T6_BACK_E 0.348161 0.00282886
+PISTA_T7_BACK_E -0.399274 0.00288107
+PISTA_T8_BACK_E 0.0999609 0.00289432
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA_BACK_E_min.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA_BACK_E_min.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a15f916bda6f2e221a495b3ecd953d3d84ea8a10
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA_BACK_E_min.cal
@@ -0,0 +1,8 @@
+PISTA_T1_BACK_E 0.068122 0.00281301 2.62701e-12
+PISTA_T2_BACK_E -1.99969 0.00281302 1.55233e-17
+PISTA_T3_BACK_E -1.99881 0.00281326 6.03344e-12
+PISTA_T4_BACK_E -1.3088 0.00281303 2.16306e-14
+PISTA_T5_BACK_E 0.135632 0.00281302 2.65148e-12
+PISTA_T6_BACK_E -1.86917 0.002813 1.59026e-12
+PISTA_T7_BACK_E -1.9938 0.00281302 3.28966e-12
+PISTA_T8_BACK_E -0.563544 0.002813 7.82783e-13
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA_BACK_E_pol1.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA_BACK_E_pol1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..cb0335ab99089575582f405c75bd52088de2f264
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA_BACK_E_pol1.cal
@@ -0,0 +1,8 @@
+PISTA_T1_BACK_E 0.901236 0.00276794
+PISTA_T2_BACK_E -1.76937 0.00277796
+PISTA_T3_BACK_E -1.2378 0.00276009
+PISTA_T4_BACK_E -0.361126 0.0027485
+PISTA_T5_BACK_E 1.08795 0.00275125
+PISTA_T6_BACK_E -1.37965 0.00277353
+PISTA_T7_BACK_E -0.127026 0.00273521
+PISTA_T8_BACK_E -1.1093 0.00281038
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA_BACK_E_pol2.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA_BACK_E_pol2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..664188224de3c5bcfcdfad36f45400971a57fd68
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/PISTA_BACK_E_pol2.cal
@@ -0,0 +1,8 @@
+PISTA_T1_BACK_E 3.56386 0.00256714 3.12321e-09
+PISTA_T2_BACK_E 0.595366 0.00260276 2.69911e-09
+PISTA_T3_BACK_E 0.55239 0.00262993 1.98806e-09
+PISTA_T4_BACK_E 0.755744 0.00266317 1.3344e-09
+PISTA_T5_BACK_E 2.34113 0.00264764 1.68973e-09
+PISTA_T6_BACK_E 0.630718 0.00262166 2.36161e-09
+PISTA_T7_BACK_E 2.86633 0.00251437 3.3975e-09
+PISTA_T8_BACK_E 0.956408 0.00265723 2.3653e-09
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA1_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA1_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..8f56be4c4c5321fa9765e3693ca205d80c480906
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA1_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T1_STRIP1_DE_ENERGY -0.915594 0.0133359
+PISTA_T1_STRIP2_DE_ENERGY -0.717248 0.0133224
+PISTA_T1_STRIP3_DE_ENERGY -1.53775 0.0149135
+PISTA_T1_STRIP4_DE_ENERGY -1.55913 0.0148609
+PISTA_T1_STRIP5_DE_ENERGY -1.7546 0.0149214
+PISTA_T1_STRIP6_DE_ENERGY -1.54761 0.0148929
+PISTA_T1_STRIP7_DE_ENERGY -1.7501 0.0151117
+PISTA_T1_STRIP8_DE_ENERGY -1.68548 0.0149752
+PISTA_T1_STRIP9_DE_ENERGY -1.8827 0.0150736
+PISTA_T1_STRIP10_DE_ENERGY -1.66148 0.0152857
+PISTA_T1_STRIP11_DE_ENERGY -1.79846 0.0152935
+PISTA_T1_STRIP12_DE_ENERGY -1.66679 0.0154035
+PISTA_T1_STRIP13_DE_ENERGY -1.80848 0.0152103
+PISTA_T1_STRIP14_DE_ENERGY -1.64516 0.0151793
+PISTA_T1_STRIP15_DE_ENERGY -1.78255 0.0154453
+PISTA_T1_STRIP16_DE_ENERGY -1.68669 0.0152755
+PISTA_T1_STRIP17_DE_ENERGY -1.86864 0.0151202
+PISTA_T1_STRIP18_DE_ENERGY -1.64864 0.0150884
+PISTA_T1_STRIP19_DE_ENERGY -1.816 0.0152313
+PISTA_T1_STRIP20_DE_ENERGY -1.6302 0.0151709
+PISTA_T1_STRIP21_DE_ENERGY -1.87337 0.0150821
+PISTA_T1_STRIP22_DE_ENERGY -1.57413 0.0150101
+PISTA_T1_STRIP23_DE_ENERGY -1.79274 0.0153553
+PISTA_T1_STRIP24_DE_ENERGY -1.65046 0.015025
+PISTA_T1_STRIP25_DE_ENERGY -1.86239 0.0151158
+PISTA_T1_STRIP26_DE_ENERGY -1.64497 0.0150915
+PISTA_T1_STRIP27_DE_ENERGY -1.70754 0.0151847
+PISTA_T1_STRIP28_DE_ENERGY -1.63405 0.0151566
+PISTA_T1_STRIP29_DE_ENERGY -1.83046 0.015036
+PISTA_T1_STRIP30_DE_ENERGY -1.58207 0.0151062
+PISTA_T1_STRIP31_DE_ENERGY -1.75433 0.0153781
+PISTA_T1_STRIP32_DE_ENERGY -1.54977 0.0149975
+PISTA_T1_STRIP33_DE_ENERGY -1.67965 0.0150698
+PISTA_T1_STRIP34_DE_ENERGY -1.64448 0.0151969
+PISTA_T1_STRIP35_DE_ENERGY -1.65145 0.0152224
+PISTA_T1_STRIP36_DE_ENERGY -1.62488 0.0151273
+PISTA_T1_STRIP37_DE_ENERGY -1.70007 0.0150803
+PISTA_T1_STRIP38_DE_ENERGY -1.64347 0.0152174
+PISTA_T1_STRIP39_DE_ENERGY -1.7003 0.0151666
+PISTA_T1_STRIP40_DE_ENERGY -1.65607 0.0150142
+PISTA_T1_STRIP41_DE_ENERGY -1.71653 0.015003
+PISTA_T1_STRIP42_DE_ENERGY -1.71997 0.0152475
+PISTA_T1_STRIP43_DE_ENERGY -1.64083 0.0150998
+PISTA_T1_STRIP44_DE_ENERGY -1.70767 0.0150535
+PISTA_T1_STRIP45_DE_ENERGY -1.6462 0.0150864
+PISTA_T1_STRIP46_DE_ENERGY -1.50466 0.0149684
+PISTA_T1_STRIP47_DE_ENERGY -1.56513 0.0148578
+PISTA_T1_STRIP48_DE_ENERGY -1.59219 0.014855
+PISTA_T1_STRIP49_DE_ENERGY -1.52289 0.0149613
+PISTA_T1_STRIP50_DE_ENERGY -1.52385 0.0148985
+PISTA_T1_STRIP51_DE_ENERGY -1.50247 0.0150483
+PISTA_T1_STRIP52_DE_ENERGY -1.57967 0.0148653
+PISTA_T1_STRIP53_DE_ENERGY -1.57514 0.0149128
+PISTA_T1_STRIP54_DE_ENERGY -1.46736 0.0148803
+PISTA_T1_STRIP55_DE_ENERGY -1.57424 0.0150144
+PISTA_T1_STRIP56_DE_ENERGY -1.48162 0.0147366
+PISTA_T1_STRIP57_DE_ENERGY -1.5575 0.0145949
+PISTA_T1_STRIP58_DE_ENERGY -1.40756 0.0147829
+PISTA_T1_STRIP59_DE_ENERGY -1.49261 0.014804
+PISTA_T1_STRIP60_DE_ENERGY -1.47281 0.0145518
+PISTA_T1_STRIP61_DE_ENERGY -1.41488 0.0146432
+PISTA_T1_STRIP62_DE_ENERGY -1.37191 0.0147742
+PISTA_T1_STRIP63_DE_ENERGY -1.41508 0.0146482
+PISTA_T1_STRIP64_DE_ENERGY -1.43433 0.0143844
+PISTA_T1_STRIP65_DE_ENERGY -1.6029 0.014366
+PISTA_T1_STRIP66_DE_ENERGY -1.32725 0.0144387
+PISTA_T1_STRIP67_DE_ENERGY -1.33125 0.0144854
+PISTA_T1_STRIP68_DE_ENERGY -1.13937 0.014126
+PISTA_T1_STRIP69_DE_ENERGY -1.442 0.01404
+PISTA_T1_STRIP70_DE_ENERGY -1.20121 0.013988
+PISTA_T1_STRIP71_DE_ENERGY -1.11099 0.0142214
+PISTA_T1_STRIP72_DE_ENERGY -1.1387 0.0140608
+PISTA_T1_STRIP73_DE_ENERGY -1.44017 0.0142625
+PISTA_T1_STRIP74_DE_ENERGY -1.3981 0.0145697
+PISTA_T1_STRIP75_DE_ENERGY -1.46956 0.0147301
+PISTA_T1_STRIP76_DE_ENERGY -0.892707 0.0137255
+PISTA_T1_STRIP77_DE_ENERGY -1.16147 0.0136134
+PISTA_T1_STRIP78_DE_ENERGY -0.973545 0.0136819
+PISTA_T1_STRIP79_DE_ENERGY -0.96255 0.0136675
+PISTA_T1_STRIP80_DE_ENERGY -0.82541 0.0135352
+PISTA_T1_STRIP81_DE_ENERGY -1.20702 0.0136412
+PISTA_T1_STRIP82_DE_ENERGY -0.984463 0.0136542
+PISTA_T1_STRIP83_DE_ENERGY -1.06422 0.013858
+PISTA_T1_STRIP84_DE_ENERGY -0.878101 0.0136351
+PISTA_T1_STRIP85_DE_ENERGY -1.22597 0.013595
+PISTA_T1_STRIP86_DE_ENERGY -1.0176 0.0136586
+PISTA_T1_STRIP87_DE_ENERGY -1.06022 0.013782
+PISTA_T1_STRIP88_DE_ENERGY -0.909556 0.0135257
+PISTA_T1_STRIP89_DE_ENERGY -1.20837 0.0136388
+PISTA_T1_STRIP90_DE_ENERGY -0.995802 0.0136597
+PISTA_T1_STRIP91_DE_ENERGY -1.02299 0.0138804
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA1_E.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA1_E.cal
new file mode 100644
index 0000000000000000000000000000000000000000..3b37f8e27f3f426e494d9ef3f1cfe4f9fb82950c
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA1_E.cal
@@ -0,0 +1,57 @@
+PISTA_T1_STRIP1_E_ENERGY 0 0 0
+PISTA_T1_STRIP2_E_ENERGY 0 0 0
+PISTA_T1_STRIP3_E_ENERGY 0 0 0
+PISTA_T1_STRIP4_E_ENERGY -8.09992 0.0043049 -4.90915e-08
+PISTA_T1_STRIP5_E_ENERGY -3.68599 0.00369767 -3.86793e-08
+PISTA_T1_STRIP6_E_ENERGY 0 0 0
+PISTA_T1_STRIP7_E_ENERGY 0 0 0
+PISTA_T1_STRIP8_E_ENERGY 2.73286 0.00262875 1.59671e-09
+PISTA_T1_STRIP9_E_ENERGY 3.66743 0.00254603 3.47942e-09
+PISTA_T1_STRIP10_E_ENERGY 3.5172 0.00254466 3.80733e-09
+PISTA_T1_STRIP11_E_ENERGY 3.30133 0.00256844 3.3949e-09
+PISTA_T1_STRIP12_E_ENERGY 3.1514 0.00261252 2.68808e-09
+PISTA_T1_STRIP13_E_ENERGY 0 0 0
+PISTA_T1_STRIP14_E_ENERGY 0 0 0
+PISTA_T1_STRIP15_E_ENERGY 0 0 0
+PISTA_T1_STRIP16_E_ENERGY 0 0 0
+PISTA_T1_STRIP17_E_ENERGY 0 0 0
+PISTA_T1_STRIP18_E_ENERGY 0 0 0
+PISTA_T1_STRIP19_E_ENERGY 0 0 0
+PISTA_T1_STRIP20_E_ENERGY 2.80136 0.00270114 1.19711e-09
+PISTA_T1_STRIP21_E_ENERGY 2.60564 0.00270665 1.16752e-09
+PISTA_T1_STRIP22_E_ENERGY 0 0 0
+PISTA_T1_STRIP23_E_ENERGY 7.18309 0.00223518 6.41996e-08
+PISTA_T1_STRIP24_E_ENERGY 4.72202 0.00258008 2.70796e-09
+PISTA_T1_STRIP25_E_ENERGY 4.94116 0.00255972 2.94972e-09
+PISTA_T1_STRIP26_E_ENERGY 3.63435 0.00262782 2.1135e-09
+PISTA_T1_STRIP27_E_ENERGY 3.51132 0.00264392 1.88348e-09
+PISTA_T1_STRIP28_E_ENERGY 3.3763 0.00267141 1.42492e-09
+PISTA_T1_STRIP29_E_ENERGY 3.29166 0.00267473 1.46286e-09
+PISTA_T1_STRIP30_E_ENERGY 3.25662 0.00267193 1.46174e-09
+PISTA_T1_STRIP31_E_ENERGY 3.30787 0.00266232 1.65244e-09
+PISTA_T1_STRIP32_E_ENERGY 3.23759 0.00266781 1.59983e-09
+PISTA_T1_STRIP33_E_ENERGY 3.38757 0.0026621 1.6482e-09
+PISTA_T1_STRIP34_E_ENERGY 3.47082 0.00265669 1.70987e-09
+PISTA_T1_STRIP35_E_ENERGY 3.52458 0.00264874 1.87469e-09
+PISTA_T1_STRIP36_E_ENERGY 3.46735 0.00265858 1.66324e-09
+PISTA_T1_STRIP37_E_ENERGY 4.49406 0.00260726 2.27097e-09
+PISTA_T1_STRIP38_E_ENERGY 4.47429 0.0026021 2.44408e-09
+PISTA_T1_STRIP39_E_ENERGY 4.46165 0.00260108 2.47659e-09
+PISTA_T1_STRIP40_E_ENERGY 4.00094 0.00264328 1.74302e-09
+PISTA_T1_STRIP41_E_ENERGY 4.43288 0.00260675 2.40205e-09
+PISTA_T1_STRIP42_E_ENERGY 4.39739 0.00261556 2.18335e-09
+PISTA_T1_STRIP43_E_ENERGY 4.5747 0.00259878 2.50804e-09
+PISTA_T1_STRIP44_E_ENERGY 4.43092 0.00260981 2.30992e-09
+PISTA_T1_STRIP45_E_ENERGY 4.72533 0.00259902 2.57743e-09
+PISTA_T1_STRIP46_E_ENERGY 5.23116 0.00255462 3.31877e-09
+PISTA_T1_STRIP47_E_ENERGY 5.14152 0.00254498 3.57022e-09
+PISTA_T1_STRIP48_E_ENERGY 3.08029 0.00269306 1.14159e-09
+PISTA_T1_STRIP49_E_ENERGY 6.06348 0.00246013 5.24215e-09
+PISTA_T1_STRIP50_E_ENERGY 5.87193 0.00246392 5.26925e-09
+PISTA_T1_STRIP51_E_ENERGY 6.54449 0.00239415 6.91326e-09
+PISTA_T1_STRIP52_E_ENERGY 6.89327 0.00223832 6.2376e-08
+PISTA_T1_STRIP53_E_ENERGY -8.47186 0.00457671 -6.94779e-08
+PISTA_T1_STRIP54_E_ENERGY 0 0 0
+PISTA_T1_STRIP55_E_ENERGY 0 0 0
+PISTA_T1_STRIP56_E_ENERGY 0 0 0
+PISTA_T1_STRIP57_E_ENERGY 0 0 0
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA2_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA2_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..8f74305f5945b264b622b66bbb6d0781d7547e2a
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA2_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T2_STRIP1_DE_ENERGY -0.74579 0.013271
+PISTA_T2_STRIP2_DE_ENERGY -0.893959 0.0133974
+PISTA_T2_STRIP3_DE_ENERGY -1.65456 0.0149237
+PISTA_T2_STRIP4_DE_ENERGY -1.64389 0.0149039
+PISTA_T2_STRIP5_DE_ENERGY -1.5591 0.0149237
+PISTA_T2_STRIP6_DE_ENERGY -1.65102 0.0150427
+PISTA_T2_STRIP7_DE_ENERGY -1.80463 0.0150734
+PISTA_T2_STRIP8_DE_ENERGY -1.74947 0.0150058
+PISTA_T2_STRIP9_DE_ENERGY -1.65413 0.0151499
+PISTA_T2_STRIP10_DE_ENERGY -1.68472 0.0151495
+PISTA_T2_STRIP11_DE_ENERGY -1.80358 0.0150878
+PISTA_T2_STRIP12_DE_ENERGY -1.82481 0.0152437
+PISTA_T2_STRIP13_DE_ENERGY -1.64075 0.0151922
+PISTA_T2_STRIP14_DE_ENERGY -1.74915 0.0151664
+PISTA_T2_STRIP15_DE_ENERGY -1.81023 0.0152967
+PISTA_T2_STRIP16_DE_ENERGY -1.80707 0.015111
+PISTA_T2_STRIP17_DE_ENERGY -1.62055 0.0150978
+PISTA_T2_STRIP18_DE_ENERGY -1.80156 0.0150948
+PISTA_T2_STRIP19_DE_ENERGY -1.77842 0.0152167
+PISTA_T2_STRIP20_DE_ENERGY -1.74789 0.0151674
+PISTA_T2_STRIP21_DE_ENERGY -1.64697 0.0151591
+PISTA_T2_STRIP22_DE_ENERGY -1.73231 0.0152876
+PISTA_T2_STRIP23_DE_ENERGY -1.86137 0.0151705
+PISTA_T2_STRIP24_DE_ENERGY -1.81036 0.0151881
+PISTA_T2_STRIP25_DE_ENERGY -1.692 0.015175
+PISTA_T2_STRIP26_DE_ENERGY -1.80075 0.0155228
+PISTA_T2_STRIP27_DE_ENERGY -1.86058 0.0153029
+PISTA_T2_STRIP28_DE_ENERGY -1.92116 0.0152841
+PISTA_T2_STRIP29_DE_ENERGY -1.73806 0.0153675
+PISTA_T2_STRIP30_DE_ENERGY -1.87233 0.015474
+PISTA_T2_STRIP31_DE_ENERGY -1.98236 0.0154495
+PISTA_T2_STRIP32_DE_ENERGY -1.98125 0.015479
+PISTA_T2_STRIP33_DE_ENERGY -1.86325 0.0154837
+PISTA_T2_STRIP34_DE_ENERGY -1.79201 0.0156238
+PISTA_T2_STRIP35_DE_ENERGY -1.84852 0.0156928
+PISTA_T2_STRIP36_DE_ENERGY -1.69507 0.0154898
+PISTA_T2_STRIP37_DE_ENERGY -1.98802 0.0155946
+PISTA_T2_STRIP38_DE_ENERGY -1.82239 0.01572
+PISTA_T2_STRIP39_DE_ENERGY -2.00396 0.0157037
+PISTA_T2_STRIP40_DE_ENERGY -1.77022 0.0156079
+PISTA_T2_STRIP41_DE_ENERGY -1.91071 0.0154098
+PISTA_T2_STRIP42_DE_ENERGY -1.82844 0.0155229
+PISTA_T2_STRIP43_DE_ENERGY -1.92513 0.0156653
+PISTA_T2_STRIP44_DE_ENERGY -1.79132 0.0154058
+PISTA_T2_STRIP45_DE_ENERGY -1.88261 0.0154715
+PISTA_T2_STRIP46_DE_ENERGY -1.69497 0.0152333
+PISTA_T2_STRIP47_DE_ENERGY -1.83026 0.0154661
+PISTA_T2_STRIP48_DE_ENERGY -1.61853 0.015323
+PISTA_T2_STRIP49_DE_ENERGY -1.93293 0.015425
+PISTA_T2_STRIP50_DE_ENERGY -1.81673 0.0154742
+PISTA_T2_STRIP51_DE_ENERGY -1.9449 0.0156868
+PISTA_T2_STRIP52_DE_ENERGY -1.8114 0.0153849
+PISTA_T2_STRIP53_DE_ENERGY -1.88835 0.0155426
+PISTA_T2_STRIP54_DE_ENERGY -1.78154 0.0154592
+PISTA_T2_STRIP55_DE_ENERGY -1.99287 0.01565
+PISTA_T2_STRIP56_DE_ENERGY -1.74027 0.0153267
+PISTA_T2_STRIP57_DE_ENERGY -1.82366 0.0152139
+PISTA_T2_STRIP58_DE_ENERGY -1.80414 0.0153911
+PISTA_T2_STRIP59_DE_ENERGY -1.82426 0.0155429
+PISTA_T2_STRIP60_DE_ENERGY -1.63217 0.0153999
+PISTA_T2_STRIP61_DE_ENERGY -1.86698 0.0152265
+PISTA_T2_STRIP62_DE_ENERGY -1.6522 0.015274
+PISTA_T2_STRIP63_DE_ENERGY -1.7298 0.015465
+PISTA_T2_STRIP64_DE_ENERGY -1.55233 0.0152277
+PISTA_T2_STRIP65_DE_ENERGY -1.54863 0.0151447
+PISTA_T2_STRIP66_DE_ENERGY -1.48537 0.015099
+PISTA_T2_STRIP67_DE_ENERGY -1.53221 0.0150736
+PISTA_T2_STRIP68_DE_ENERGY -1.60103 0.0148941
+PISTA_T2_STRIP69_DE_ENERGY -1.44172 0.0150628
+PISTA_T2_STRIP70_DE_ENERGY -1.4526 0.0148807
+PISTA_T2_STRIP71_DE_ENERGY -1.50171 0.0147589
+PISTA_T2_STRIP72_DE_ENERGY -1.52002 0.0146625
+PISTA_T2_STRIP73_DE_ENERGY -1.4784 0.0148088
+PISTA_T2_STRIP74_DE_ENERGY -1.56761 0.0151255
+PISTA_T2_STRIP75_DE_ENERGY -1.86651 0.0155049
+PISTA_T2_STRIP76_DE_ENERGY -1.01726 0.0136082
+PISTA_T2_STRIP77_DE_ENERGY -0.982369 0.013639
+PISTA_T2_STRIP78_DE_ENERGY -0.952664 0.0138596
+PISTA_T2_STRIP79_DE_ENERGY -0.963548 0.0138004
+PISTA_T2_STRIP80_DE_ENERGY -0.999356 0.0135995
+PISTA_T2_STRIP81_DE_ENERGY -0.947706 0.0137158
+PISTA_T2_STRIP82_DE_ENERGY -0.876941 0.0136661
+PISTA_T2_STRIP83_DE_ENERGY -0.910728 0.0136724
+PISTA_T2_STRIP84_DE_ENERGY -0.986443 0.0136529
+PISTA_T2_STRIP85_DE_ENERGY -0.943979 0.0136254
+PISTA_T2_STRIP86_DE_ENERGY -0.896563 0.0136964
+PISTA_T2_STRIP87_DE_ENERGY -1.01768 0.0138068
+PISTA_T2_STRIP88_DE_ENERGY -1.00268 0.0136023
+PISTA_T2_STRIP89_DE_ENERGY -0.954232 0.013597
+PISTA_T2_STRIP90_DE_ENERGY -0.931805 0.0137609
+PISTA_T2_STRIP91_DE_ENERGY -0.925844 0.013841
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA2_E.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA2_E.cal
new file mode 100644
index 0000000000000000000000000000000000000000..0474185a9b83ca786ecd33e63e53ebe80c32dba6
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA2_E.cal
@@ -0,0 +1,57 @@
+PISTA_T2_STRIP1_E_ENERGY 0 0 0
+PISTA_T2_STRIP2_E_ENERGY 0 0 0
+PISTA_T2_STRIP3_E_ENERGY 0 0 0
+PISTA_T2_STRIP4_E_ENERGY 3.114 0.00218234 1.11867e-07
+PISTA_T2_STRIP5_E_ENERGY -1.87637 0.00150848 1.10835e-07
+PISTA_T2_STRIP6_E_ENERGY -0.0135049 0.00277064 -3.04263e-09
+PISTA_T2_STRIP7_E_ENERGY -0.281122 0.00276246 -1.77297e-09
+PISTA_T2_STRIP8_E_ENERGY 1.98158 0.00253219 3.8951e-09
+PISTA_T2_STRIP9_E_ENERGY 1.36926 0.00258648 2.92347e-09
+PISTA_T2_STRIP10_E_ENERGY 2.11849 0.00252522 4.16475e-09
+PISTA_T2_STRIP11_E_ENERGY 1.81021 0.0025688 3.2379e-09
+PISTA_T2_STRIP12_E_ENERGY 1.02442 0.00262278 2.45105e-09
+PISTA_T2_STRIP13_E_ENERGY 1.60667 0.00258786 2.98603e-09
+PISTA_T2_STRIP14_E_ENERGY 1.29911 0.00263039 2.14655e-09
+PISTA_T2_STRIP15_E_ENERGY 1.07041 0.00263853 2.18161e-09
+PISTA_T2_STRIP16_E_ENERGY 1.22995 0.0026361 2.10107e-09
+PISTA_T2_STRIP17_E_ENERGY 2.28874 0.00257641 2.95154e-09
+PISTA_T2_STRIP18_E_ENERGY 1.94399 0.00260769 2.36988e-09
+PISTA_T2_STRIP19_E_ENERGY 2.06249 0.00258752 2.86511e-09
+PISTA_T2_STRIP20_E_ENERGY 1.58842 0.00262244 2.32046e-09
+PISTA_T2_STRIP21_E_ENERGY 2.22473 0.0026022 2.42473e-09
+PISTA_T2_STRIP22_E_ENERGY 3.10748 0.00254075 3.40084e-09
+PISTA_T2_STRIP23_E_ENERGY 3.01738 0.00255434 3.15447e-09
+PISTA_T2_STRIP24_E_ENERGY 2.73229 0.00258211 2.6776e-09
+PISTA_T2_STRIP25_E_ENERGY 2.45493 0.00259575 2.45325e-09
+PISTA_T2_STRIP26_E_ENERGY 2.62325 0.00258889 2.6011e-09
+PISTA_T2_STRIP27_E_ENERGY 2.81928 0.00258902 2.63656e-09
+PISTA_T2_STRIP28_E_ENERGY 2.72882 0.00260121 2.47528e-09
+PISTA_T2_STRIP29_E_ENERGY 2.57497 0.00259785 2.56235e-09
+PISTA_T2_STRIP30_E_ENERGY 2.49088 0.00259766 2.56595e-09
+PISTA_T2_STRIP31_E_ENERGY 2.60018 0.00258852 2.74136e-09
+PISTA_T2_STRIP32_E_ENERGY 2.70806 0.00258425 2.74575e-09
+PISTA_T2_STRIP33_E_ENERGY 2.54111 0.00259899 2.45203e-09
+PISTA_T2_STRIP34_E_ENERGY 2.70621 0.00258921 2.55921e-09
+PISTA_T2_STRIP35_E_ENERGY 2.87382 0.00257946 2.77614e-09
+PISTA_T2_STRIP36_E_ENERGY 2.89117 0.00257925 2.80266e-09
+PISTA_T2_STRIP37_E_ENERGY 3.19136 0.00255258 3.23044e-09
+PISTA_T2_STRIP38_E_ENERGY 2.50652 0.00261076 2.22383e-09
+PISTA_T2_STRIP39_E_ENERGY 1.77123 0.0026429 1.97898e-09
+PISTA_T2_STRIP40_E_ENERGY 1.90824 0.002629 2.2021e-09
+PISTA_T2_STRIP41_E_ENERGY 2.00212 0.00263732 1.93481e-09
+PISTA_T2_STRIP42_E_ENERGY 2.38694 0.00259762 2.6877e-09
+PISTA_T2_STRIP43_E_ENERGY 0 0 0
+PISTA_T2_STRIP44_E_ENERGY 1.31473 0.00265971 1.86143e-09
+PISTA_T2_STRIP45_E_ENERGY 1.43412 0.00266937 1.73181e-09
+PISTA_T2_STRIP46_E_ENERGY 2.31768 0.00258644 3.02283e-09
+PISTA_T2_STRIP47_E_ENERGY 1.65763 0.00262291 2.54933e-09
+PISTA_T2_STRIP48_E_ENERGY 2.01775 0.00259656 3.0136e-09
+PISTA_T2_STRIP49_E_ENERGY 2.88036 0.00252561 4.27949e-09
+PISTA_T2_STRIP50_E_ENERGY 1.02228 0.00268782 8.36565e-10
+PISTA_T2_STRIP51_E_ENERGY 1.87472 0.00263236 1.41972e-09
+PISTA_T2_STRIP52_E_ENERGY 1.07548 0.0027048 -5.60734e-10
+PISTA_T2_STRIP53_E_ENERGY -4.63383 0.0036227 -3.51949e-08
+PISTA_T2_STRIP54_E_ENERGY 3.44734 0.00221435 1.09817e-07
+PISTA_T2_STRIP55_E_ENERGY 0 0 0
+PISTA_T2_STRIP56_E_ENERGY 0 0 0
+PISTA_T2_STRIP57_E_ENERGY 0 0 0
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA3_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA3_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d529f6fc81f2a3d6e4cae7fc468401f3281b7041
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA3_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T3_STRIP1_DE_ENERGY -0.783877 0.013331
+PISTA_T3_STRIP2_DE_ENERGY -0.831393 0.0133985
+PISTA_T3_STRIP3_DE_ENERGY -1.81099 0.0153251
+PISTA_T3_STRIP4_DE_ENERGY -1.60166 0.0151584
+PISTA_T3_STRIP5_DE_ENERGY -1.73357 0.0153406
+PISTA_T3_STRIP6_DE_ENERGY -1.82913 0.0153193
+PISTA_T3_STRIP7_DE_ENERGY -1.97971 0.0154913
+PISTA_T3_STRIP8_DE_ENERGY -1.70586 0.015359
+PISTA_T3_STRIP9_DE_ENERGY -1.86749 0.0155699
+PISTA_T3_STRIP10_DE_ENERGY -1.87356 0.0156204
+PISTA_T3_STRIP11_DE_ENERGY -2.09794 0.015715
+PISTA_T3_STRIP12_DE_ENERGY -1.72016 0.0156244
+PISTA_T3_STRIP13_DE_ENERGY -1.88113 0.0155396
+PISTA_T3_STRIP14_DE_ENERGY -1.86153 0.0155482
+PISTA_T3_STRIP15_DE_ENERGY -2.01375 0.015731
+PISTA_T3_STRIP16_DE_ENERGY -1.6672 0.0155343
+PISTA_T3_STRIP17_DE_ENERGY -1.87271 0.0153909
+PISTA_T3_STRIP18_DE_ENERGY -1.84802 0.0153831
+PISTA_T3_STRIP19_DE_ENERGY -1.98209 0.0155027
+PISTA_T3_STRIP20_DE_ENERGY -1.65606 0.0154355
+PISTA_T3_STRIP21_DE_ENERGY -1.88869 0.0153468
+PISTA_T3_STRIP22_DE_ENERGY -1.82146 0.0153455
+PISTA_T3_STRIP23_DE_ENERGY -1.98972 0.0155265
+PISTA_T3_STRIP24_DE_ENERGY -1.57215 0.0154213
+PISTA_T3_STRIP25_DE_ENERGY -1.73982 0.0151737
+PISTA_T3_STRIP26_DE_ENERGY -1.79586 0.0153977
+PISTA_T3_STRIP27_DE_ENERGY -1.99737 0.0155821
+PISTA_T3_STRIP28_DE_ENERGY -1.62783 0.0155329
+PISTA_T3_STRIP29_DE_ENERGY -1.75146 0.015371
+PISTA_T3_STRIP30_DE_ENERGY -1.85511 0.0155021
+PISTA_T3_STRIP31_DE_ENERGY -1.96131 0.0156531
+PISTA_T3_STRIP32_DE_ENERGY -1.63339 0.0154718
+PISTA_T3_STRIP33_DE_ENERGY -0.756316 0.0135594
+PISTA_T3_STRIP34_DE_ENERGY -1.80245 0.0155411
+PISTA_T3_STRIP35_DE_ENERGY -2.00128 0.0155162
+PISTA_T3_STRIP36_DE_ENERGY -1.75691 0.0154183
+PISTA_T3_STRIP37_DE_ENERGY 4.55624 0.0024101
+PISTA_T3_STRIP38_DE_ENERGY -1.86479 0.0155804
+PISTA_T3_STRIP39_DE_ENERGY -1.98165 0.0156932
+PISTA_T3_STRIP40_DE_ENERGY -1.82438 0.0154574
+PISTA_T3_STRIP41_DE_ENERGY -0.911593 0.013513
+PISTA_T3_STRIP42_DE_ENERGY -1.86711 0.0155998
+PISTA_T3_STRIP43_DE_ENERGY -1.98794 0.0154285
+PISTA_T3_STRIP44_DE_ENERGY -1.7586 0.015451
+PISTA_T3_STRIP45_DE_ENERGY -0.842897 0.0134896
+PISTA_T3_STRIP46_DE_ENERGY -1.707 0.0153624
+PISTA_T3_STRIP47_DE_ENERGY -1.95174 0.0153407
+PISTA_T3_STRIP48_DE_ENERGY -1.77066 0.0153696
+PISTA_T3_STRIP49_DE_ENERGY -0.896647 0.0135074
+PISTA_T3_STRIP50_DE_ENERGY -1.79604 0.0155881
+PISTA_T3_STRIP51_DE_ENERGY -1.97602 0.0155149
+PISTA_T3_STRIP52_DE_ENERGY -1.04583 0.0135711
+PISTA_T3_STRIP53_DE_ENERGY -1.04583 0.0135711
+PISTA_T3_STRIP54_DE_ENERGY -1.81468 0.015492
+PISTA_T3_STRIP55_DE_ENERGY -0.947633 0.0136441
+PISTA_T3_STRIP56_DE_ENERGY -0.947633 0.0136441
+PISTA_T3_STRIP57_DE_ENERGY -0.947633 0.0136441
+PISTA_T3_STRIP58_DE_ENERGY -1.77735 0.0154629
+PISTA_T3_STRIP59_DE_ENERGY -0.953372 0.0137024
+PISTA_T3_STRIP60_DE_ENERGY -0.953372 0.0137024
+PISTA_T3_STRIP61_DE_ENERGY -0.772312 0.0134748
+PISTA_T3_STRIP62_DE_ENERGY -0.772312 0.0134748
+PISTA_T3_STRIP63_DE_ENERGY -0.772312 0.0134748
+PISTA_T3_STRIP64_DE_ENERGY -0.772312 0.0134748
+PISTA_T3_STRIP65_DE_ENERGY -0.772312 0.0134748
+PISTA_T3_STRIP66_DE_ENERGY -1.46418 0.015094
+PISTA_T3_STRIP67_DE_ENERGY -1.73481 0.0151855
+PISTA_T3_STRIP68_DE_ENERGY -1.48412 0.014979
+PISTA_T3_STRIP69_DE_ENERGY -0.830304 0.0135673
+PISTA_T3_STRIP70_DE_ENERGY -1.45533 0.0150252
+PISTA_T3_STRIP71_DE_ENERGY -1.76391 0.0150891
+PISTA_T3_STRIP72_DE_ENERGY -1.30282 0.0148665
+PISTA_T3_STRIP73_DE_ENERGY -1.44003 0.0147539
+PISTA_T3_STRIP74_DE_ENERGY -1.43898 0.0148904
+PISTA_T3_STRIP75_DE_ENERGY -1.5691 0.0151504
+PISTA_T3_STRIP76_DE_ENERGY -1.60119 0.0152957
+PISTA_T3_STRIP77_DE_ENERGY -0.797912 0.0135536
+PISTA_T3_STRIP78_DE_ENERGY -0.797912 0.0135536
+PISTA_T3_STRIP79_DE_ENERGY -1.1348 0.0138324
+PISTA_T3_STRIP80_DE_ENERGY -0.78905 0.0136996
+PISTA_T3_STRIP81_DE_ENERGY -0.78905 0.0136996
+PISTA_T3_STRIP82_DE_ENERGY -0.78905 0.0136996
+PISTA_T3_STRIP83_DE_ENERGY -0.78905 0.0136996
+PISTA_T3_STRIP84_DE_ENERGY -0.78905 0.0136996
+PISTA_T3_STRIP85_DE_ENERGY -0.78905 0.0136996
+PISTA_T3_STRIP86_DE_ENERGY -0.78905 0.0136996
+PISTA_T3_STRIP87_DE_ENERGY -0.78905 0.0136996
+PISTA_T3_STRIP88_DE_ENERGY -0.78905 0.0136996
+PISTA_T3_STRIP89_DE_ENERGY -0.78905 0.0136996
+PISTA_T3_STRIP90_DE_ENERGY -0.78905 0.0136996
+PISTA_T3_STRIP91_DE_ENERGY -0.78905 0.0136996
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA3_E.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA3_E.cal
new file mode 100644
index 0000000000000000000000000000000000000000..cee85b8d96509bfa636a34044a66754623482f8c
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA3_E.cal
@@ -0,0 +1,57 @@
+PISTA_T3_STRIP1_E_ENERGY 0 0 0
+PISTA_T3_STRIP2_E_ENERGY 0 0 0
+PISTA_T3_STRIP3_E_ENERGY 0 0 0
+PISTA_T3_STRIP4_E_ENERGY -5.48636 0.00169745 1.6602e-07
+PISTA_T3_STRIP5_E_ENERGY -9.79693 0.00435807 -6.47741e-08
+PISTA_T3_STRIP6_E_ENERGY 0.501219 0.00259176 3.72284e-09
+PISTA_T3_STRIP7_E_ENERGY 1.54807 0.00258939 2.55534e-09
+PISTA_T3_STRIP8_E_ENERGY 1.20344 0.00251568 5.0128e-09
+PISTA_T3_STRIP9_E_ENERGY 1.83717 0.00257258 2.66816e-09
+PISTA_T3_STRIP10_E_ENERGY 1.23451 0.00263377 1.68753e-09
+PISTA_T3_STRIP11_E_ENERGY 0.977746 0.00262611 1.97828e-09
+PISTA_T3_STRIP12_E_ENERGY 1.65697 0.00257728 2.71441e-09
+PISTA_T3_STRIP13_E_ENERGY 1.07538 0.00268287 6.2286e-10
+PISTA_T3_STRIP14_E_ENERGY 0.54067 0.00268942 9.01922e-10
+PISTA_T3_STRIP15_E_ENERGY 1.31349 0.00264953 1.31735e-09
+PISTA_T3_STRIP16_E_ENERGY 1.55922 0.00261368 2.03415e-09
+PISTA_T3_STRIP17_E_ENERGY 0.856792 0.00271011 3.2278e-10
+PISTA_T3_STRIP18_E_ENERGY 0.868423 0.00269007 8.73413e-10
+PISTA_T3_STRIP19_E_ENERGY 1.93291 0.00264497 1.26189e-09
+PISTA_T3_STRIP20_E_ENERGY 1.89783 0.00262773 1.71167e-09
+PISTA_T3_STRIP21_E_ENERGY 1.44246 0.00264306 1.66021e-09
+PISTA_T3_STRIP22_E_ENERGY 1.2269 0.00266284 1.25072e-09
+PISTA_T3_STRIP23_E_ENERGY 1.08001 0.00269788 6.53533e-10
+PISTA_T3_STRIP24_E_ENERGY 1.36192 0.00267514 1.11102e-09
+PISTA_T3_STRIP25_E_ENERGY 1.90431 0.00265647 1.26329e-09
+PISTA_T3_STRIP26_E_ENERGY 2.23611 0.00265085 1.25754e-09
+PISTA_T3_STRIP27_E_ENERGY 2.67069 0.00263831 1.31516e-09
+PISTA_T3_STRIP28_E_ENERGY 2.7478 0.00265594 9.45371e-10
+PISTA_T3_STRIP29_E_ENERGY 2.84782 0.00265443 1.00489e-09
+PISTA_T3_STRIP30_E_ENERGY 2.81735 0.00264268 1.23291e-09
+PISTA_T3_STRIP31_E_ENERGY 2.84901 0.00263937 1.26939e-09
+PISTA_T3_STRIP32_E_ENERGY 2.6603 0.00263718 1.44111e-09
+PISTA_T3_STRIP33_E_ENERGY 2.5329 0.00264577 1.36796e-09
+PISTA_T3_STRIP34_E_ENERGY 2.42625 0.00264567 1.42011e-09
+PISTA_T3_STRIP35_E_ENERGY 1.9574 0.00267158 1.09843e-09
+PISTA_T3_STRIP36_E_ENERGY 1.89264 0.00268317 8.56226e-10
+PISTA_T3_STRIP37_E_ENERGY 1.99941 0.00264992 1.49102e-09
+PISTA_T3_STRIP38_E_ENERGY 2.07057 0.00264157 1.6938e-09
+PISTA_T3_STRIP39_E_ENERGY 2.45552 0.0026414 1.50032e-09
+PISTA_T3_STRIP40_E_ENERGY 2.62129 0.00264928 1.28797e-09
+PISTA_T3_STRIP41_E_ENERGY 1.98011 0.00268465 8.77736e-10
+PISTA_T3_STRIP42_E_ENERGY 1.71999 0.00269972 6.21883e-10
+PISTA_T3_STRIP43_E_ENERGY 2.33707 0.00262675 1.97866e-09
+PISTA_T3_STRIP44_E_ENERGY 2.28835 0.00265234 1.37704e-09
+PISTA_T3_STRIP45_E_ENERGY 2.21683 0.00266969 1.1908e-09
+PISTA_T3_STRIP46_E_ENERGY 2.37745 0.00267357 9.27082e-10
+PISTA_T3_STRIP47_E_ENERGY 3.4536 0.00252685 3.83576e-09
+PISTA_T3_STRIP48_E_ENERGY 3.19067 0.0025434 3.62514e-09
+PISTA_T3_STRIP49_E_ENERGY 2.58757 0.0026285 1.80232e-09
+PISTA_T3_STRIP50_E_ENERGY 3.04729 0.00262228 1.49523e-09
+PISTA_T3_STRIP51_E_ENERGY 4.67012 0.0023078 1.03907e-08
+PISTA_T3_STRIP52_E_ENERGY -0.74222 0.00315482 -1.54452e-08
+PISTA_T3_STRIP53_E_ENERGY -10.8827 0.00466428 -6.75529e-08
+PISTA_T3_STRIP54_E_ENERGY -68.425 0.0171641 -7.33656e-07
+PISTA_T3_STRIP55_E_ENERGY 0 0 0
+PISTA_T3_STRIP56_E_ENERGY 0 0 0
+PISTA_T3_STRIP57_E_ENERGY 0 0 0
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA4_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA4_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..4819cc91269ce16cbabefcba0b33be995a8241bb
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA4_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T4_STRIP1_DE_ENERGY -0.922214 0.0132801
+PISTA_T4_STRIP2_DE_ENERGY -1.17541 0.0136067
+PISTA_T4_STRIP3_DE_ENERGY -1.67698 0.0150528
+PISTA_T4_STRIP4_DE_ENERGY -1.77322 0.0149203
+PISTA_T4_STRIP5_DE_ENERGY -1.72188 0.0149615
+PISTA_T4_STRIP6_DE_ENERGY -1.86003 0.01511
+PISTA_T4_STRIP7_DE_ENERGY -1.71703 0.0150491
+PISTA_T4_STRIP8_DE_ENERGY -1.75743 0.0149895
+PISTA_T4_STRIP9_DE_ENERGY -1.70555 0.0150971
+PISTA_T4_STRIP10_DE_ENERGY -1.98443 0.0152787
+PISTA_T4_STRIP11_DE_ENERGY -1.85329 0.0151512
+PISTA_T4_STRIP12_DE_ENERGY -1.85059 0.0151179
+PISTA_T4_STRIP13_DE_ENERGY -1.7122 0.0150614
+PISTA_T4_STRIP14_DE_ENERGY -2.00085 0.0152884
+PISTA_T4_STRIP15_DE_ENERGY -1.79525 0.0151901
+PISTA_T4_STRIP16_DE_ENERGY -1.79835 0.0151213
+PISTA_T4_STRIP17_DE_ENERGY -1.67827 0.0150363
+PISTA_T4_STRIP18_DE_ENERGY -1.91559 0.0151276
+PISTA_T4_STRIP19_DE_ENERGY -1.73432 0.015083
+PISTA_T4_STRIP20_DE_ENERGY -1.74291 0.0150514
+PISTA_T4_STRIP21_DE_ENERGY -1.69866 0.0149675
+PISTA_T4_STRIP22_DE_ENERGY -1.81212 0.0150978
+PISTA_T4_STRIP23_DE_ENERGY -1.67558 0.015022
+PISTA_T4_STRIP24_DE_ENERGY -1.76268 0.0151605
+PISTA_T4_STRIP25_DE_ENERGY -1.69722 0.0148642
+PISTA_T4_STRIP26_DE_ENERGY -1.94682 0.0151815
+PISTA_T4_STRIP27_DE_ENERGY -1.69644 0.015132
+PISTA_T4_STRIP28_DE_ENERGY -1.76434 0.0149414
+PISTA_T4_STRIP29_DE_ENERGY -1.72145 0.0150972
+PISTA_T4_STRIP30_DE_ENERGY -2.02075 0.0153363
+PISTA_T4_STRIP31_DE_ENERGY -1.7814 0.0152947
+PISTA_T4_STRIP32_DE_ENERGY -1.74264 0.0151493
+PISTA_T4_STRIP33_DE_ENERGY -1.86031 0.0150988
+PISTA_T4_STRIP34_DE_ENERGY -1.8529 0.0151963
+PISTA_T4_STRIP35_DE_ENERGY -1.76051 0.0153155
+PISTA_T4_STRIP36_DE_ENERGY -1.72521 0.0151104
+PISTA_T4_STRIP37_DE_ENERGY -1.92182 0.0151434
+PISTA_T4_STRIP38_DE_ENERGY -1.83729 0.0150052
+PISTA_T4_STRIP39_DE_ENERGY -1.78069 0.0153018
+PISTA_T4_STRIP40_DE_ENERGY -1.68021 0.0150331
+PISTA_T4_STRIP41_DE_ENERGY -1.90357 0.0149729
+PISTA_T4_STRIP42_DE_ENERGY -1.80739 0.0150559
+PISTA_T4_STRIP43_DE_ENERGY -1.8144 0.0152202
+PISTA_T4_STRIP44_DE_ENERGY -1.69684 0.0151282
+PISTA_T4_STRIP45_DE_ENERGY -1.73223 0.0150745
+PISTA_T4_STRIP46_DE_ENERGY -1.75388 0.0150969
+PISTA_T4_STRIP47_DE_ENERGY -1.78211 0.0152038
+PISTA_T4_STRIP48_DE_ENERGY -1.67635 0.0151733
+PISTA_T4_STRIP49_DE_ENERGY -1.86351 0.0152502
+PISTA_T4_STRIP50_DE_ENERGY -1.86567 0.0152098
+PISTA_T4_STRIP51_DE_ENERGY -1.86741 0.0154569
+PISTA_T4_STRIP52_DE_ENERGY -1.71398 0.015333
+PISTA_T4_STRIP53_DE_ENERGY -1.85386 0.0152312
+PISTA_T4_STRIP54_DE_ENERGY -1.89218 0.0152624
+PISTA_T4_STRIP55_DE_ENERGY -1.84462 0.0153735
+PISTA_T4_STRIP56_DE_ENERGY -1.67928 0.0151054
+PISTA_T4_STRIP57_DE_ENERGY -1.85215 0.0151252
+PISTA_T4_STRIP58_DE_ENERGY -1.88596 0.015306
+PISTA_T4_STRIP59_DE_ENERGY -1.78072 0.0154609
+PISTA_T4_STRIP60_DE_ENERGY -1.65765 0.0151206
+PISTA_T4_STRIP61_DE_ENERGY -1.84062 0.0149918
+PISTA_T4_STRIP62_DE_ENERGY -1.72804 0.0150854
+PISTA_T4_STRIP63_DE_ENERGY -1.72907 0.0152857
+PISTA_T4_STRIP64_DE_ENERGY -1.38666 0.0149843
+PISTA_T4_STRIP65_DE_ENERGY -1.56487 0.0149202
+PISTA_T4_STRIP66_DE_ENERGY -1.70786 0.0149367
+PISTA_T4_STRIP67_DE_ENERGY -1.51375 0.0149717
+PISTA_T4_STRIP68_DE_ENERGY -1.52451 0.0146981
+PISTA_T4_STRIP69_DE_ENERGY -1.40308 0.0147019
+PISTA_T4_STRIP70_DE_ENERGY -1.64462 0.0147134
+PISTA_T4_STRIP71_DE_ENERGY -1.40993 0.0145357
+PISTA_T4_STRIP72_DE_ENERGY -1.43546 0.0145114
+PISTA_T4_STRIP73_DE_ENERGY -1.49163 0.014722
+PISTA_T4_STRIP74_DE_ENERGY -1.86936 0.0150521
+PISTA_T4_STRIP75_DE_ENERGY -0.978937 0.0136264
+PISTA_T4_STRIP76_DE_ENERGY -1.10004 0.0137166
+PISTA_T4_STRIP77_DE_ENERGY -0.946589 0.0136033
+PISTA_T4_STRIP78_DE_ENERGY -1.19891 0.0138205
+PISTA_T4_STRIP79_DE_ENERGY -0.956296 0.0137383
+PISTA_T4_STRIP80_DE_ENERGY -1.0556 0.0135922
+PISTA_T4_STRIP81_DE_ENERGY -0.982063 0.0134999
+PISTA_T4_STRIP82_DE_ENERGY -1.21541 0.0136451
+PISTA_T4_STRIP83_DE_ENERGY -0.919829 0.0137444
+PISTA_T4_STRIP84_DE_ENERGY -1.13709 0.0136996
+PISTA_T4_STRIP85_DE_ENERGY -0.987479 0.0136577
+PISTA_T4_STRIP86_DE_ENERGY -1.19541 0.0137635
+PISTA_T4_STRIP87_DE_ENERGY -0.961566 0.0136921
+PISTA_T4_STRIP88_DE_ENERGY -1.065 0.0137058
+PISTA_T4_STRIP89_DE_ENERGY -0.974765 0.0135377
+PISTA_T4_STRIP90_DE_ENERGY -1.25314 0.0137226
+PISTA_T4_STRIP91_DE_ENERGY -0.955611 0.0136898
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA4_E.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA4_E.cal
new file mode 100644
index 0000000000000000000000000000000000000000..1bee23bc372c23a21db9b4b7f47562023e3834a1
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA4_E.cal
@@ -0,0 +1,57 @@
+PISTA_T4_STRIP1_E_ENERGY 0 0 0
+PISTA_T4_STRIP2_E_ENERGY 0 0 0
+PISTA_T4_STRIP3_E_ENERGY 0 0 0
+PISTA_T4_STRIP4_E_ENERGY 3.50122 0.00221154 1.10159e-07
+PISTA_T4_STRIP5_E_ENERGY -13.2303 0.00473108 -7.2952e-08
+PISTA_T4_STRIP6_E_ENERGY -1.25121 0.00292295 -8.12782e-09
+PISTA_T4_STRIP7_E_ENERGY 0.199079 0.00272163 -1.20059e-09
+PISTA_T4_STRIP8_E_ENERGY 0.447215 0.00267356 5.92613e-10
+PISTA_T4_STRIP9_E_ENERGY 1.83358 0.00255109 3.36586e-09
+PISTA_T4_STRIP10_E_ENERGY 0.871482 0.00264146 1.69953e-09
+PISTA_T4_STRIP11_E_ENERGY 0.928916 0.00265456 1.32618e-09
+PISTA_T4_STRIP12_E_ENERGY 1.16257 0.00264671 1.39779e-09
+PISTA_T4_STRIP13_E_ENERGY 0.42751 0.00269749 7.07309e-10
+PISTA_T4_STRIP14_E_ENERGY 0.380303 0.00270652 5.43213e-10
+PISTA_T4_STRIP15_E_ENERGY 1.00313 0.00266961 1.07248e-09
+PISTA_T4_STRIP16_E_ENERGY 0.691187 0.00269625 6.26853e-10
+PISTA_T4_STRIP17_E_ENERGY 0.450375 0.002709 5.50876e-10
+PISTA_T4_STRIP18_E_ENERGY 0.738782 0.00269398 7.52521e-10
+PISTA_T4_STRIP19_E_ENERGY 1.06809 0.00268104 8.54055e-10
+PISTA_T4_STRIP20_E_ENERGY 1.24583 0.00266475 1.15842e-09
+PISTA_T4_STRIP21_E_ENERGY 0.918306 0.00269326 7.49776e-10
+PISTA_T4_STRIP22_E_ENERGY 0.835848 0.00269417 7.27829e-10
+PISTA_T4_STRIP23_E_ENERGY 0.817022 0.00269362 7.91444e-10
+PISTA_T4_STRIP24_E_ENERGY 0.943836 0.00268512 9.73998e-10
+PISTA_T4_STRIP25_E_ENERGY 1.02747 0.00268127 1.01404e-09
+PISTA_T4_STRIP26_E_ENERGY 1.44917 0.0026549 1.40097e-09
+PISTA_T4_STRIP27_E_ENERGY 1.66356 0.00264865 1.44983e-09
+PISTA_T4_STRIP28_E_ENERGY 1.69915 0.00266093 1.22156e-09
+PISTA_T4_STRIP29_E_ENERGY 1.86504 0.0026559 1.28307e-09
+PISTA_T4_STRIP30_E_ENERGY 1.82136 0.00264284 1.50649e-09
+PISTA_T4_STRIP31_E_ENERGY 1.62482 0.00265046 1.42037e-09
+PISTA_T4_STRIP32_E_ENERGY 1.87196 0.00262437 1.93324e-09
+PISTA_T4_STRIP33_E_ENERGY 1.55997 0.00264817 1.55238e-09
+PISTA_T4_STRIP34_E_ENERGY 1.4342 0.00265413 1.48231e-09
+PISTA_T4_STRIP35_E_ENERGY 1.40714 0.00265488 1.47261e-09
+PISTA_T4_STRIP36_E_ENERGY 1.57905 0.00264675 1.59817e-09
+PISTA_T4_STRIP37_E_ENERGY 1.75747 0.00263295 1.80125e-09
+PISTA_T4_STRIP38_E_ENERGY 1.88406 0.00262561 1.88622e-09
+PISTA_T4_STRIP39_E_ENERGY 1.90237 0.00262636 1.85116e-09
+PISTA_T4_STRIP40_E_ENERGY 1.70944 0.00263278 1.83709e-09
+PISTA_T4_STRIP41_E_ENERGY 1.34806 0.00265674 1.43157e-09
+PISTA_T4_STRIP42_E_ENERGY 1.65916 0.00263029 1.89792e-09
+PISTA_T4_STRIP43_E_ENERGY 1.89596 0.00261504 2.11012e-09
+PISTA_T4_STRIP44_E_ENERGY 1.66989 0.00262875 1.92464e-09
+PISTA_T4_STRIP45_E_ENERGY 1.52221 0.00263378 1.88484e-09
+PISTA_T4_STRIP46_E_ENERGY 2.02848 0.00259607 2.48106e-09
+PISTA_T4_STRIP47_E_ENERGY 2.18611 0.00257325 2.95045e-09
+PISTA_T4_STRIP48_E_ENERGY 2.05582 0.00257031 3.08311e-09
+PISTA_T4_STRIP49_E_ENERGY 2.1806 0.00256523 2.97264e-09
+PISTA_T4_STRIP50_E_ENERGY 1.36246 0.00264789 9.1832e-10
+PISTA_T4_STRIP51_E_ENERGY -0.381231 0.00286088 -5.116e-09
+PISTA_T4_STRIP52_E_ENERGY -3.07182 0.00326396 -1.89045e-08
+PISTA_T4_STRIP53_E_ENERGY -15.5874 0.00525032 -9.33566e-08
+PISTA_T4_STRIP54_E_ENERGY -45.5892 0.0117114 -4.21558e-07
+PISTA_T4_STRIP55_E_ENERGY 0 0 0
+PISTA_T4_STRIP56_E_ENERGY 0 0 0
+PISTA_T4_STRIP57_E_ENERGY 0 0 0
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA5_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA5_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..12abd3d080d8bfee2c68d8e8343479b2381d3348
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA5_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T5_STRIP1_DE_ENERGY -1.07704 0.013377
+PISTA_T5_STRIP2_DE_ENERGY -0.881376 0.013554
+PISTA_T5_STRIP3_DE_ENERGY -1.39457 0.0147021
+PISTA_T5_STRIP4_DE_ENERGY -1.55365 0.0145017
+PISTA_T5_STRIP5_DE_ENERGY -1.69826 0.0147036
+PISTA_T5_STRIP6_DE_ENERGY -1.39225 0.014643
+PISTA_T5_STRIP7_DE_ENERGY -1.44074 0.0147843
+PISTA_T5_STRIP8_DE_ENERGY -1.65988 0.0148075
+PISTA_T5_STRIP9_DE_ENERGY -1.76351 0.0147343
+PISTA_T5_STRIP10_DE_ENERGY -1.56003 0.0148153
+PISTA_T5_STRIP11_DE_ENERGY -1.51812 0.0148164
+PISTA_T5_STRIP12_DE_ENERGY -1.70296 0.0149378
+PISTA_T5_STRIP13_DE_ENERGY -1.78683 0.0148735
+PISTA_T5_STRIP14_DE_ENERGY -1.54465 0.0148115
+PISTA_T5_STRIP15_DE_ENERGY -1.47649 0.0149476
+PISTA_T5_STRIP16_DE_ENERGY -1.73987 0.0148937
+PISTA_T5_STRIP17_DE_ENERGY -1.72336 0.0148258
+PISTA_T5_STRIP18_DE_ENERGY -1.5819 0.0148993
+PISTA_T5_STRIP19_DE_ENERGY -1.60453 0.0151064
+PISTA_T5_STRIP20_DE_ENERGY -1.76021 0.0149479
+PISTA_T5_STRIP21_DE_ENERGY -1.78961 0.0149791
+PISTA_T5_STRIP22_DE_ENERGY -1.60375 0.0149434
+PISTA_T5_STRIP23_DE_ENERGY -1.59739 0.0151739
+PISTA_T5_STRIP24_DE_ENERGY -1.75215 0.0151147
+PISTA_T5_STRIP25_DE_ENERGY -1.86012 0.0151598
+PISTA_T5_STRIP26_DE_ENERGY -1.69185 0.01514
+PISTA_T5_STRIP27_DE_ENERGY -1.6449 0.0152808
+PISTA_T5_STRIP28_DE_ENERGY -1.87352 0.0152795
+PISTA_T5_STRIP29_DE_ENERGY -1.9982 0.0153108
+PISTA_T5_STRIP30_DE_ENERGY -1.76017 0.0152169
+PISTA_T5_STRIP31_DE_ENERGY -1.66171 0.0153633
+PISTA_T5_STRIP32_DE_ENERGY -1.88384 0.0152516
+PISTA_T5_STRIP33_DE_ENERGY -1.93174 0.0153095
+PISTA_T5_STRIP34_DE_ENERGY -1.82089 0.0152862
+PISTA_T5_STRIP35_DE_ENERGY -1.63528 0.0153167
+PISTA_T5_STRIP36_DE_ENERGY -1.93121 0.0150832
+PISTA_T5_STRIP37_DE_ENERGY -1.80721 0.0150672
+PISTA_T5_STRIP38_DE_ENERGY -1.76641 0.0152671
+PISTA_T5_STRIP39_DE_ENERGY -1.47152 0.0151541
+PISTA_T5_STRIP40_DE_ENERGY -1.93636 0.0149928
+PISTA_T5_STRIP41_DE_ENERGY -1.74048 0.0149831
+PISTA_T5_STRIP42_DE_ENERGY -1.69651 0.0150871
+PISTA_T5_STRIP43_DE_ENERGY -1.54327 0.0149845
+PISTA_T5_STRIP44_DE_ENERGY -1.83061 0.0148594
+PISTA_T5_STRIP45_DE_ENERGY -1.63136 0.0149146
+PISTA_T5_STRIP46_DE_ENERGY -1.56126 0.0148586
+PISTA_T5_STRIP47_DE_ENERGY -1.35247 0.0147732
+PISTA_T5_STRIP48_DE_ENERGY -1.80654 0.0148283
+PISTA_T5_STRIP49_DE_ENERGY -1.58702 0.0148593
+PISTA_T5_STRIP50_DE_ENERGY -1.65913 0.0149497
+PISTA_T5_STRIP51_DE_ENERGY -1.43563 0.0149193
+PISTA_T5_STRIP52_DE_ENERGY -1.82018 0.0149167
+PISTA_T5_STRIP53_DE_ENERGY -1.65388 0.0147429
+PISTA_T5_STRIP54_DE_ENERGY -1.52163 0.0148484
+PISTA_T5_STRIP55_DE_ENERGY -1.39867 0.0148489
+PISTA_T5_STRIP56_DE_ENERGY -1.72452 0.014714
+PISTA_T5_STRIP57_DE_ENERGY -1.60748 0.0147062
+PISTA_T5_STRIP58_DE_ENERGY -1.56807 0.0147464
+PISTA_T5_STRIP59_DE_ENERGY -1.31969 0.0145911
+PISTA_T5_STRIP60_DE_ENERGY -1.66667 0.0144932
+PISTA_T5_STRIP61_DE_ENERGY -1.36737 0.0144716
+PISTA_T5_STRIP62_DE_ENERGY -1.43198 0.0144993
+PISTA_T5_STRIP63_DE_ENERGY -1.17133 0.0143828
+PISTA_T5_STRIP64_DE_ENERGY -1.54705 0.0143021
+PISTA_T5_STRIP65_DE_ENERGY -1.35799 0.0141666
+PISTA_T5_STRIP66_DE_ENERGY -1.44177 0.014169
+PISTA_T5_STRIP67_DE_ENERGY -1.21043 0.0142739
+PISTA_T5_STRIP68_DE_ENERGY -1.09982 0.0139747
+PISTA_T5_STRIP69_DE_ENERGY -1.18332 0.0139458
+PISTA_T5_STRIP70_DE_ENERGY -1.25385 0.0139475
+PISTA_T5_STRIP71_DE_ENERGY -1.10114 0.0139926
+PISTA_T5_STRIP72_DE_ENERGY -1.03371 0.0138896
+PISTA_T5_STRIP73_DE_ENERGY -1.34645 0.0141417
+PISTA_T5_STRIP74_DE_ENERGY -1.47738 0.0144435
+PISTA_T5_STRIP75_DE_ENERGY -0.945066 0.0136616
+PISTA_T5_STRIP76_DE_ENERGY -0.744443 0.0134928
+PISTA_T5_STRIP77_DE_ENERGY -1.03858 0.0135147
+PISTA_T5_STRIP78_DE_ENERGY -1.1703 0.013588
+PISTA_T5_STRIP79_DE_ENERGY -0.964496 0.0138237
+PISTA_T5_STRIP80_DE_ENERGY -0.827326 0.0136231
+PISTA_T5_STRIP81_DE_ENERGY -1.09847 0.0136923
+PISTA_T5_STRIP82_DE_ENERGY -1.21812 0.0136682
+PISTA_T5_STRIP83_DE_ENERGY -0.984816 0.0138466
+PISTA_T5_STRIP84_DE_ENERGY -0.979762 0.0136352
+PISTA_T5_STRIP85_DE_ENERGY -1.02453 0.0134687
+PISTA_T5_STRIP86_DE_ENERGY -1.27632 0.0137889
+PISTA_T5_STRIP87_DE_ENERGY -0.978662 0.013807
+PISTA_T5_STRIP88_DE_ENERGY -0.982422 0.0135781
+PISTA_T5_STRIP89_DE_ENERGY -1.07557 0.0136124
+PISTA_T5_STRIP90_DE_ENERGY -1.2067 0.0137174
+PISTA_T5_STRIP91_DE_ENERGY -0.952376 0.0138711
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA5_E.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA5_E.cal
new file mode 100644
index 0000000000000000000000000000000000000000..30a2f05f18c237113a7e581344e50bfd7f0984f1
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA5_E.cal
@@ -0,0 +1,57 @@
+PISTA_T5_STRIP1_E_ENERGY 0 0 0
+PISTA_T5_STRIP2_E_ENERGY 0 0 0
+PISTA_T5_STRIP3_E_ENERGY 0 0 0
+PISTA_T5_STRIP4_E_ENERGY -45.4887 0.0115338 -4.05663e-07
+PISTA_T5_STRIP5_E_ENERGY 4.89269 0.00221131 7.75179e-08
+PISTA_T5_STRIP6_E_ENERGY -0.206641 0.00295716 -8.95732e-09
+PISTA_T5_STRIP7_E_ENERGY 2.66257 0.00261397 8.62233e-10
+PISTA_T5_STRIP8_E_ENERGY 2.31382 0.00264283 3.40782e-10
+PISTA_T5_STRIP9_E_ENERGY 3.27129 0.00255154 2.48745e-09
+PISTA_T5_STRIP10_E_ENERGY 1.86031 0.00265066 1.05118e-09
+PISTA_T5_STRIP11_E_ENERGY 2.00196 0.00263212 1.6875e-09
+PISTA_T5_STRIP12_E_ENERGY 4.56134 0.00246392 4.28213e-09
+PISTA_T5_STRIP13_E_ENERGY 4.47408 0.00247573 4.10761e-09
+PISTA_T5_STRIP14_E_ENERGY 2.24408 0.00261596 2.13069e-09
+PISTA_T5_STRIP15_E_ENERGY 4.21834 0.00249898 3.73228e-09
+PISTA_T5_STRIP16_E_ENERGY 4.47601 0.00248843 3.81045e-09
+PISTA_T5_STRIP17_E_ENERGY 4.41705 0.00249226 3.81524e-09
+PISTA_T5_STRIP18_E_ENERGY 4.43072 0.0024927 3.81073e-09
+PISTA_T5_STRIP19_E_ENERGY 4.31143 0.00250334 3.67373e-09
+PISTA_T5_STRIP20_E_ENERGY 4.35375 0.00250275 3.68977e-09
+PISTA_T5_STRIP21_E_ENERGY 4.57055 0.00249663 3.73131e-09
+PISTA_T5_STRIP22_E_ENERGY 4.57058 0.00249966 3.66316e-09
+PISTA_T5_STRIP23_E_ENERGY 4.63125 0.00249077 3.87861e-09
+PISTA_T5_STRIP24_E_ENERGY 4.57537 0.00249077 3.92411e-09
+PISTA_T5_STRIP25_E_ENERGY 2.39949 0.00262517 2.07496e-09
+PISTA_T5_STRIP26_E_ENERGY 4.34735 0.00251116 3.5984e-09
+PISTA_T5_STRIP27_E_ENERGY 4.11984 0.00253308 3.21577e-09
+PISTA_T5_STRIP28_E_ENERGY 4.31011 0.00253335 3.13704e-09
+PISTA_T5_STRIP29_E_ENERGY 4.42774 0.00253499 3.1151e-09
+PISTA_T5_STRIP30_E_ENERGY 4.47791 0.00251902 3.47918e-09
+PISTA_T5_STRIP31_E_ENERGY 2.41086 0.00263285 1.93876e-09
+PISTA_T5_STRIP32_E_ENERGY 4.33767 0.00252191 3.40528e-09
+PISTA_T5_STRIP33_E_ENERGY 4.7036 0.00249003 3.97232e-09
+PISTA_T5_STRIP34_E_ENERGY 4.72458 0.00248895 3.945e-09
+PISTA_T5_STRIP35_E_ENERGY 4.57054 0.00250514 3.61946e-09
+PISTA_T5_STRIP36_E_ENERGY 4.58382 0.00250112 3.71202e-09
+PISTA_T5_STRIP37_E_ENERGY 4.59596 0.00249683 3.82516e-09
+PISTA_T5_STRIP38_E_ENERGY 4.17265 0.00252658 3.34651e-09
+PISTA_T5_STRIP39_E_ENERGY 4.42943 0.00250911 3.59774e-09
+PISTA_T5_STRIP40_E_ENERGY 4.80897 0.00247847 4.09697e-09
+PISTA_T5_STRIP41_E_ENERGY 4.68735 0.00248803 3.88976e-09
+PISTA_T5_STRIP42_E_ENERGY 4.18904 0.00251704 3.53039e-09
+PISTA_T5_STRIP43_E_ENERGY 2.18454 0.00263997 1.75963e-09
+PISTA_T5_STRIP44_E_ENERGY 4.6014 0.00249276 3.81166e-09
+PISTA_T5_STRIP45_E_ENERGY 4.32265 0.00251611 3.35972e-09
+PISTA_T5_STRIP46_E_ENERGY 2.37817 0.00262524 1.91122e-09
+PISTA_T5_STRIP47_E_ENERGY 1.95789 0.00266956 9.38907e-10
+PISTA_T5_STRIP48_E_ENERGY 3.6271 0.00255478 2.63804e-09
+PISTA_T5_STRIP49_E_ENERGY 2.64682 0.00263937 8.43068e-10
+PISTA_T5_STRIP50_E_ENERGY 2.5931 0.0026522 2.20467e-10
+PISTA_T5_STRIP51_E_ENERGY 1.45016 0.00276903 -2.72879e-09
+PISTA_T5_STRIP52_E_ENERGY 5.59141 0.00220502 6.10605e-08
+PISTA_T5_STRIP53_E_ENERGY 5.19987 0.00222256 8.45828e-08
+PISTA_T5_STRIP54_E_ENERGY 31.4397 -0.00440544 4.18423e-07
+PISTA_T5_STRIP55_E_ENERGY 0 0 0
+PISTA_T5_STRIP56_E_ENERGY 0 0 0
+PISTA_T5_STRIP57_E_ENERGY 0 0 0
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA6_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA6_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..54f2a6e2fce23b73e7348796ac65434237e0d370
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA6_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T6_STRIP1_DE_ENERGY -0.87218 0.0135087
+PISTA_T6_STRIP2_DE_ENERGY -0.965379 0.0135107
+PISTA_T6_STRIP3_DE_ENERGY -1.68929 0.0151744
+PISTA_T6_STRIP4_DE_ENERGY -1.8262 0.0151354
+PISTA_T6_STRIP5_DE_ENERGY -1.75368 0.0153705
+PISTA_T6_STRIP6_DE_ENERGY -1.85658 0.0153633
+PISTA_T6_STRIP7_DE_ENERGY -1.75167 0.0152789
+PISTA_T6_STRIP8_DE_ENERGY -1.95211 0.0152476
+PISTA_T6_STRIP9_DE_ENERGY -1.78317 0.0154196
+PISTA_T6_STRIP10_DE_ENERGY -1.87517 0.015656
+PISTA_T6_STRIP11_DE_ENERGY -1.89724 0.0154541
+PISTA_T6_STRIP12_DE_ENERGY -2.01973 0.0155136
+PISTA_T6_STRIP13_DE_ENERGY -1.94224 0.0155606
+PISTA_T6_STRIP14_DE_ENERGY -1.87487 0.0157049
+PISTA_T6_STRIP15_DE_ENERGY -1.83534 0.0155778
+PISTA_T6_STRIP16_DE_ENERGY -2.04803 0.015711
+PISTA_T6_STRIP17_DE_ENERGY -1.83495 0.0155521
+PISTA_T6_STRIP18_DE_ENERGY -1.9045 0.0154584
+PISTA_T6_STRIP19_DE_ENERGY -1.85423 0.0154284
+PISTA_T6_STRIP20_DE_ENERGY -2.04456 0.0154683
+PISTA_T6_STRIP21_DE_ENERGY -1.864 0.0155774
+PISTA_T6_STRIP22_DE_ENERGY -1.87524 0.015591
+PISTA_T6_STRIP23_DE_ENERGY -1.84834 0.0154845
+PISTA_T6_STRIP24_DE_ENERGY -2.02184 0.0156083
+PISTA_T6_STRIP25_DE_ENERGY -1.87127 0.0155992
+PISTA_T6_STRIP26_DE_ENERGY -1.92949 0.0157445
+PISTA_T6_STRIP27_DE_ENERGY -1.92576 0.0155769
+PISTA_T6_STRIP28_DE_ENERGY -2.19407 0.0156205
+PISTA_T6_STRIP29_DE_ENERGY -1.91781 0.0156378
+PISTA_T6_STRIP30_DE_ENERGY -1.97202 0.0157064
+PISTA_T6_STRIP31_DE_ENERGY -1.92647 0.0155957
+PISTA_T6_STRIP32_DE_ENERGY -2.00683 0.015707
+PISTA_T6_STRIP33_DE_ENERGY -2.11682 0.0156967
+PISTA_T6_STRIP34_DE_ENERGY -2.00327 0.0155664
+PISTA_T6_STRIP35_DE_ENERGY -2.03807 0.0156867
+PISTA_T6_STRIP36_DE_ENERGY -1.97305 0.0155282
+PISTA_T6_STRIP37_DE_ENERGY -2.21668 0.015685
+PISTA_T6_STRIP38_DE_ENERGY -2.03293 0.0157175
+PISTA_T6_STRIP39_DE_ENERGY -1.95014 0.0159559
+PISTA_T6_STRIP40_DE_ENERGY -2.06272 0.0156541
+PISTA_T6_STRIP41_DE_ENERGY -2.20242 0.0157873
+PISTA_T6_STRIP42_DE_ENERGY -2.06443 0.0157401
+PISTA_T6_STRIP43_DE_ENERGY -1.91078 0.0157579
+PISTA_T6_STRIP44_DE_ENERGY -2.0124 0.015619
+PISTA_T6_STRIP45_DE_ENERGY -2.14527 0.0156021
+PISTA_T6_STRIP46_DE_ENERGY -2.00753 0.0154913
+PISTA_T6_STRIP47_DE_ENERGY -1.84459 0.0158236
+PISTA_T6_STRIP48_DE_ENERGY -1.98913 0.0157013
+PISTA_T6_STRIP49_DE_ENERGY -2.16644 0.015664
+PISTA_T6_STRIP50_DE_ENERGY -2.07248 0.0157262
+PISTA_T6_STRIP51_DE_ENERGY -1.97292 0.01586
+PISTA_T6_STRIP52_DE_ENERGY -2.00653 0.0158309
+PISTA_T6_STRIP53_DE_ENERGY -2.08381 0.015667
+PISTA_T6_STRIP54_DE_ENERGY -2.07308 0.0156224
+PISTA_T6_STRIP55_DE_ENERGY -1.90061 0.0156717
+PISTA_T6_STRIP56_DE_ENERGY -2.04737 0.0157078
+PISTA_T6_STRIP57_DE_ENERGY -2.1295 0.015586
+PISTA_T6_STRIP58_DE_ENERGY -1.96673 0.0156604
+PISTA_T6_STRIP59_DE_ENERGY -1.79149 0.0156719
+PISTA_T6_STRIP60_DE_ENERGY -2.00441 0.015556
+PISTA_T6_STRIP61_DE_ENERGY -2.10437 0.0156167
+PISTA_T6_STRIP62_DE_ENERGY -2.00331 0.0155689
+PISTA_T6_STRIP63_DE_ENERGY -1.74873 0.0155884
+PISTA_T6_STRIP64_DE_ENERGY -1.92978 0.0154505
+PISTA_T6_STRIP65_DE_ENERGY -1.77603 0.0153734
+PISTA_T6_STRIP66_DE_ENERGY -1.69727 0.0154004
+PISTA_T6_STRIP67_DE_ENERGY -1.57514 0.0152442
+PISTA_T6_STRIP68_DE_ENERGY -1.92653 0.0150354
+PISTA_T6_STRIP69_DE_ENERGY -1.63731 0.0149917
+PISTA_T6_STRIP70_DE_ENERGY -1.63837 0.0150357
+PISTA_T6_STRIP71_DE_ENERGY -1.45045 0.0148756
+PISTA_T6_STRIP72_DE_ENERGY -1.80537 0.0150209
+PISTA_T6_STRIP73_DE_ENERGY -1.74843 0.0153205
+PISTA_T6_STRIP74_DE_ENERGY -1.75763 0.0154564
+PISTA_T6_STRIP75_DE_ENERGY -0.925897 0.0137159
+PISTA_T6_STRIP76_DE_ENERGY -1.18438 0.0136876
+PISTA_T6_STRIP77_DE_ENERGY -0.977286 0.0135102
+PISTA_T6_STRIP78_DE_ENERGY -0.987087 0.0137635
+PISTA_T6_STRIP79_DE_ENERGY -0.91081 0.0137119
+PISTA_T6_STRIP80_DE_ENERGY -1.19436 0.0136352
+PISTA_T6_STRIP81_DE_ENERGY -1.01595 0.0135783
+PISTA_T6_STRIP82_DE_ENERGY -0.991608 0.0136039
+PISTA_T6_STRIP83_DE_ENERGY -0.879869 0.0136059
+PISTA_T6_STRIP84_DE_ENERGY 0.597231 0.0135766
+PISTA_T6_STRIP85_DE_ENERGY -1.05557 0.013741
+PISTA_T6_STRIP86_DE_ENERGY -1.05016 0.013819
+PISTA_T6_STRIP87_DE_ENERGY -0.887123 0.0136957
+PISTA_T6_STRIP88_DE_ENERGY -1.2412 0.0137759
+PISTA_T6_STRIP89_DE_ENERGY -1.06219 0.0138024
+PISTA_T6_STRIP90_DE_ENERGY -1.02065 0.0138085
+PISTA_T6_STRIP91_DE_ENERGY -0.886668 0.0136894
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA6_E.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA6_E.cal
new file mode 100644
index 0000000000000000000000000000000000000000..83a43dccd044458aa12f8200ae3e7f1f691a9181
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA6_E.cal
@@ -0,0 +1,57 @@
+PISTA_T6_STRIP1_E_ENERGY 0 0 0
+PISTA_T6_STRIP2_E_ENERGY 0 0 0
+PISTA_T6_STRIP3_E_ENERGY 0 0 0
+PISTA_T6_STRIP4_E_ENERGY -114.482 0.0262078 -1.20359e-06
+PISTA_T6_STRIP5_E_ENERGY -6.45929 0.00356185 -3.32585e-08
+PISTA_T6_STRIP6_E_ENERGY -1.7922 0.00274178 -6.29814e-10
+PISTA_T6_STRIP7_E_ENERGY 0.0417307 0.00254785 4.46886e-09
+PISTA_T6_STRIP8_E_ENERGY -1.57841 0.00269009 1.45785e-09
+PISTA_T6_STRIP9_E_ENERGY 0.250404 0.00253113 4.65223e-09
+PISTA_T6_STRIP10_E_ENERGY 0.0845084 0.00256415 3.75005e-09
+PISTA_T6_STRIP11_E_ENERGY -1.11521 0.00266436 1.92501e-09
+PISTA_T6_STRIP12_E_ENERGY -0.00920534 0.00260681 2.64876e-09
+PISTA_T6_STRIP13_E_ENERGY -0.197796 0.00262636 2.35668e-09
+PISTA_T6_STRIP14_E_ENERGY -0.79463 0.00266425 1.75203e-09
+PISTA_T6_STRIP15_E_ENERGY -0.843054 0.00266313 1.8453e-09
+PISTA_T6_STRIP16_E_ENERGY 0.541256 0.00257499 3.12816e-09
+PISTA_T6_STRIP17_E_ENERGY 0.447588 0.00258322 3.0013e-09
+PISTA_T6_STRIP18_E_ENERGY -0.137698 0.0026284 2.29687e-09
+PISTA_T6_STRIP19_E_ENERGY -0.574157 0.0026497 2.04513e-09
+PISTA_T6_STRIP20_E_ENERGY -0.611929 0.00264721 2.19232e-09
+PISTA_T6_STRIP21_E_ENERGY 0.21627 0.00260652 2.65912e-09
+PISTA_T6_STRIP22_E_ENERGY 0.618268 0.00257801 3.08802e-09
+PISTA_T6_STRIP23_E_ENERGY 0.852097 0.00255866 3.44478e-09
+PISTA_T6_STRIP24_E_ENERGY 0.659304 0.00257525 3.1549e-09
+PISTA_T6_STRIP25_E_ENERGY 0.705411 0.00257596 3.0974e-09
+PISTA_T6_STRIP26_E_ENERGY 0.630955 0.00258514 2.97009e-09
+PISTA_T6_STRIP27_E_ENERGY 0.843225 0.00257922 3.00346e-09
+PISTA_T6_STRIP28_E_ENERGY 0.809124 0.00259702 2.63578e-09
+PISTA_T6_STRIP29_E_ENERGY 0.463777 0.00261143 2.47212e-09
+PISTA_T6_STRIP30_E_ENERGY 0.593428 0.002589 2.86039e-09
+PISTA_T6_STRIP31_E_ENERGY 0.509546 0.0025939 2.76959e-09
+PISTA_T6_STRIP32_E_ENERGY 0.724717 0.00257448 3.06235e-09
+PISTA_T6_STRIP33_E_ENERGY 0.646401 0.00257709 3.00025e-09
+PISTA_T6_STRIP34_E_ENERGY 0.544262 0.00258612 2.81109e-09
+PISTA_T6_STRIP35_E_ENERGY 0.473789 0.00257809 3.09669e-09
+PISTA_T6_STRIP36_E_ENERGY -0.567646 0.00264121 2.16206e-09
+PISTA_T6_STRIP37_E_ENERGY -0.526526 0.00264569 1.9723e-09
+PISTA_T6_STRIP38_E_ENERGY -0.0484383 0.00261755 2.37558e-09
+PISTA_T6_STRIP39_E_ENERGY 0.418652 0.00258395 2.86003e-09
+PISTA_T6_STRIP40_E_ENERGY 0.304756 0.00259465 2.61439e-09
+PISTA_T6_STRIP41_E_ENERGY -0.806985 0.00265323 1.92444e-09
+PISTA_T6_STRIP42_E_ENERGY -0.980587 0.00267265 1.40731e-09
+PISTA_T6_STRIP43_E_ENERGY -0.306667 0.0026271 2.19067e-09
+PISTA_T6_STRIP44_E_ENERGY -0.488649 0.00264799 1.66027e-09
+PISTA_T6_STRIP45_E_ENERGY -1.22456 0.00266718 1.72261e-09
+PISTA_T6_STRIP46_E_ENERGY -0.577239 0.00262921 2.16959e-09
+PISTA_T6_STRIP47_E_ENERGY -0.203348 0.00259778 2.75379e-09
+PISTA_T6_STRIP48_E_ENERGY -1.75673 0.00269243 1.34473e-09
+PISTA_T6_STRIP49_E_ENERGY -0.347312 0.00257819 3.38917e-09
+PISTA_T6_STRIP50_E_ENERGY -1.49324 0.0026794 1.2528e-09
+PISTA_T6_STRIP51_E_ENERGY -0.202646 0.00253534 4.8168e-09
+PISTA_T6_STRIP52_E_ENERGY 2.42415 0.00221076 1.40711e-08
+PISTA_T6_STRIP53_E_ENERGY -13.576 0.004671 -7.74806e-08
+PISTA_T6_STRIP54_E_ENERGY -87.1391 0.0204294 -8.99906e-07
+PISTA_T6_STRIP55_E_ENERGY 0 0 0
+PISTA_T6_STRIP56_E_ENERGY 0 0 0
+PISTA_T6_STRIP57_E_ENERGY 0 0 0
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA7_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA7_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d2608b4fe7ea9f8a7542058759f5cde794bc6dfd
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA7_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T7_STRIP1_DE_ENERGY -0.910429 0.0134075
+PISTA_T7_STRIP2_DE_ENERGY -0.833842 0.0133679
+PISTA_T7_STRIP3_DE_ENERGY -1.69215 0.0152831
+PISTA_T7_STRIP4_DE_ENERGY -1.61012 0.015178
+PISTA_T7_STRIP5_DE_ENERGY -1.7813 0.0153474
+PISTA_T7_STRIP6_DE_ENERGY -1.79566 0.015257
+PISTA_T7_STRIP7_DE_ENERGY -1.8284 0.0155007
+PISTA_T7_STRIP8_DE_ENERGY -1.70568 0.015279
+PISTA_T7_STRIP9_DE_ENERGY -1.84185 0.0153978
+PISTA_T7_STRIP10_DE_ENERGY -1.77453 0.0154344
+PISTA_T7_STRIP11_DE_ENERGY -1.87171 0.0155019
+PISTA_T7_STRIP12_DE_ENERGY -1.6998 0.0155878
+PISTA_T7_STRIP13_DE_ENERGY -1.96074 0.0156448
+PISTA_T7_STRIP14_DE_ENERGY -1.83656 0.0155832
+PISTA_T7_STRIP15_DE_ENERGY -1.90303 0.0157519
+PISTA_T7_STRIP16_DE_ENERGY -1.65777 0.0155705
+PISTA_T7_STRIP17_DE_ENERGY -1.87958 0.0155122
+PISTA_T7_STRIP18_DE_ENERGY -1.83561 0.0155893
+PISTA_T7_STRIP19_DE_ENERGY -1.9909 0.0157407
+PISTA_T7_STRIP20_DE_ENERGY -1.80564 0.0156523
+PISTA_T7_STRIP21_DE_ENERGY -1.99269 0.0156304
+PISTA_T7_STRIP22_DE_ENERGY -2.00206 0.0156783
+PISTA_T7_STRIP23_DE_ENERGY -1.93779 0.0157759
+PISTA_T7_STRIP24_DE_ENERGY -1.86317 0.0158024
+PISTA_T7_STRIP25_DE_ENERGY -2.03364 0.0157666
+PISTA_T7_STRIP26_DE_ENERGY -1.97865 0.015825
+PISTA_T7_STRIP27_DE_ENERGY -2.01295 0.0159536
+PISTA_T7_STRIP28_DE_ENERGY -1.87746 0.015901
+PISTA_T7_STRIP29_DE_ENERGY -2.08833 0.0159086
+PISTA_T7_STRIP30_DE_ENERGY -2.08572 0.0158487
+PISTA_T7_STRIP31_DE_ENERGY -2.116 0.01603
+PISTA_T7_STRIP32_DE_ENERGY -1.88484 0.0156439
+PISTA_T7_STRIP33_DE_ENERGY -1.84636 0.0159154
+PISTA_T7_STRIP34_DE_ENERGY -1.82787 0.0160419
+PISTA_T7_STRIP35_DE_ENERGY -2.01446 0.0159
+PISTA_T7_STRIP36_DE_ENERGY -1.9276 0.015786
+PISTA_T7_STRIP37_DE_ENERGY -1.9141 0.0158755
+PISTA_T7_STRIP38_DE_ENERGY -1.9706 0.0160416
+PISTA_T7_STRIP39_DE_ENERGY -2.00968 0.0160383
+PISTA_T7_STRIP40_DE_ENERGY -1.996 0.0157635
+PISTA_T7_STRIP41_DE_ENERGY -1.84172 0.0159579
+PISTA_T7_STRIP42_DE_ENERGY -1.83447 0.0158165
+PISTA_T7_STRIP43_DE_ENERGY -1.86156 0.0157189
+PISTA_T7_STRIP44_DE_ENERGY -1.8885 0.015719
+PISTA_T7_STRIP45_DE_ENERGY -1.68233 0.0156763
+PISTA_T7_STRIP46_DE_ENERGY -1.63989 0.0156136
+PISTA_T7_STRIP47_DE_ENERGY -1.77021 0.0155906
+PISTA_T7_STRIP48_DE_ENERGY -1.81649 0.015621
+PISTA_T7_STRIP49_DE_ENERGY -1.69532 0.0155359
+PISTA_T7_STRIP50_DE_ENERGY -1.74099 0.0155892
+PISTA_T7_STRIP51_DE_ENERGY -1.81514 0.0155076
+PISTA_T7_STRIP52_DE_ENERGY -1.78676 0.015511
+PISTA_T7_STRIP53_DE_ENERGY -1.74196 0.0154433
+PISTA_T7_STRIP54_DE_ENERGY -1.69307 0.0154457
+PISTA_T7_STRIP55_DE_ENERGY -1.83865 0.0154059
+PISTA_T7_STRIP56_DE_ENERGY -1.77606 0.0152645
+PISTA_T7_STRIP57_DE_ENERGY -1.6353 0.0153162
+PISTA_T7_STRIP58_DE_ENERGY -1.56664 0.0152768
+PISTA_T7_STRIP59_DE_ENERGY -1.62441 0.0153444
+PISTA_T7_STRIP60_DE_ENERGY -1.58897 0.0151191
+PISTA_T7_STRIP61_DE_ENERGY -1.59361 0.0151511
+PISTA_T7_STRIP62_DE_ENERGY -1.62205 0.0151255
+PISTA_T7_STRIP63_DE_ENERGY -1.64944 0.0150067
+PISTA_T7_STRIP64_DE_ENERGY -1.53533 0.0149056
+PISTA_T7_STRIP65_DE_ENERGY -1.5648 0.0149407
+PISTA_T7_STRIP66_DE_ENERGY -1.30858 0.0148954
+PISTA_T7_STRIP67_DE_ENERGY -1.35275 0.014934
+PISTA_T7_STRIP68_DE_ENERGY -1.2886 0.01466
+PISTA_T7_STRIP69_DE_ENERGY -1.44268 0.0147297
+PISTA_T7_STRIP70_DE_ENERGY -1.2522 0.0145847
+PISTA_T7_STRIP71_DE_ENERGY -1.41211 0.0147778
+PISTA_T7_STRIP72_DE_ENERGY -1.34339 0.0148683
+PISTA_T7_STRIP73_DE_ENERGY -1.69853 0.0151455
+PISTA_T7_STRIP74_DE_ENERGY -0.734373 0.0137698
+PISTA_T7_STRIP75_DE_ENERGY -0.921392 0.0137281
+PISTA_T7_STRIP76_DE_ENERGY -0.81575 0.0136135
+PISTA_T7_STRIP77_DE_ENERGY -0.969911 0.0137101
+PISTA_T7_STRIP78_DE_ENERGY -0.727631 0.0138148
+PISTA_T7_STRIP79_DE_ENERGY -0.85375 0.0138441
+PISTA_T7_STRIP80_DE_ENERGY -0.802891 0.0138033
+PISTA_T7_STRIP81_DE_ENERGY -0.924174 0.0136853
+PISTA_T7_STRIP82_DE_ENERGY -0.770559 0.0136964
+PISTA_T7_STRIP83_DE_ENERGY -0.878547 0.0138513
+PISTA_T7_STRIP84_DE_ENERGY 3.93113 0.0117755
+PISTA_T7_STRIP85_DE_ENERGY -0.97277 0.0136848
+PISTA_T7_STRIP86_DE_ENERGY -0.97277 0.0136848
+PISTA_T7_STRIP87_DE_ENERGY -0.875592 0.0138223
+PISTA_T7_STRIP88_DE_ENERGY 4.97271 0.00171698
+PISTA_T7_STRIP89_DE_ENERGY -1.02003 0.013695
+PISTA_T7_STRIP90_DE_ENERGY -0.849986 0.0137891
+PISTA_T7_STRIP91_DE_ENERGY -0.905976 0.0138439
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA7_E.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA7_E.cal
new file mode 100644
index 0000000000000000000000000000000000000000..bc33a993a2b3f03f6f413a5607a85c14e1abc238
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA7_E.cal
@@ -0,0 +1,57 @@
+PISTA_T7_STRIP1_E_ENERGY 0 0 0
+PISTA_T7_STRIP2_E_ENERGY 0 0 0
+PISTA_T7_STRIP3_E_ENERGY 0 0 0
+PISTA_T7_STRIP4_E_ENERGY -3.7062 0.00212211 9.67934e-08
+PISTA_T7_STRIP5_E_ENERGY 2.97547 0.00220937 1.69987e-08
+PISTA_T7_STRIP6_E_ENERGY -0.267672 0.00272582 -2.44547e-09
+PISTA_T7_STRIP7_E_ENERGY -0.624569 0.00272132 -1.01964e-09
+PISTA_T7_STRIP8_E_ENERGY 0.78281 0.00259325 1.81799e-09
+PISTA_T7_STRIP9_E_ENERGY -0.25783 0.00266876 6.31944e-10
+PISTA_T7_STRIP10_E_ENERGY 1.57984 0.00251165 3.74791e-09
+PISTA_T7_STRIP11_E_ENERGY 1.78679 0.00250259 3.8552e-09
+PISTA_T7_STRIP12_E_ENERGY 1.11828 0.00255068 3.09999e-09
+PISTA_T7_STRIP13_E_ENERGY 1.5397 0.00253741 3.22654e-09
+PISTA_T7_STRIP14_E_ENERGY 1.94792 0.00251842 3.44823e-09
+PISTA_T7_STRIP15_E_ENERGY 1.76748 0.00252581 3.43945e-09
+PISTA_T7_STRIP16_E_ENERGY 1.01785 0.00257969 2.5893e-09
+PISTA_T7_STRIP17_E_ENERGY 2.06986 0.0025155 3.45996e-09
+PISTA_T7_STRIP18_E_ENERGY 2.85728 0.00246364 4.31219e-09
+PISTA_T7_STRIP19_E_ENERGY 2.34416 0.00251038 3.45738e-09
+PISTA_T7_STRIP20_E_ENERGY 2.04757 0.00253011 3.15435e-09
+PISTA_T7_STRIP21_E_ENERGY 1.85542 0.00253337 3.23179e-09
+PISTA_T7_STRIP22_E_ENERGY 1.45005 0.00257022 2.63681e-09
+PISTA_T7_STRIP23_E_ENERGY 2.28714 0.00251363 3.45161e-09
+PISTA_T7_STRIP24_E_ENERGY 2.71169 0.00249143 3.72869e-09
+PISTA_T7_STRIP25_E_ENERGY 2.80578 0.00249062 3.70388e-09
+PISTA_T7_STRIP26_E_ENERGY 2.84042 0.0024946 3.58589e-09
+PISTA_T7_STRIP27_E_ENERGY 3.0534 0.00248274 3.80616e-09
+PISTA_T7_STRIP28_E_ENERGY 3.06973 0.00250295 3.38332e-09
+PISTA_T7_STRIP29_E_ENERGY 3.14926 0.00250011 3.36052e-09
+PISTA_T7_STRIP30_E_ENERGY 3.07624 0.00249399 3.48199e-09
+PISTA_T7_STRIP31_E_ENERGY 2.93616 0.00249655 3.44575e-09
+PISTA_T7_STRIP32_E_ENERGY 2.74061 0.00250631 3.30734e-09
+PISTA_T7_STRIP33_E_ENERGY 2.60386 0.00251198 3.2477e-09
+PISTA_T7_STRIP34_E_ENERGY 2.19776 0.00253929 2.82469e-09
+PISTA_T7_STRIP35_E_ENERGY 1.80803 0.00255898 2.61045e-09
+PISTA_T7_STRIP36_E_ENERGY 1.8257 0.00255711 2.64441e-09
+PISTA_T7_STRIP37_E_ENERGY 1.83831 0.00256619 2.3536e-09
+PISTA_T7_STRIP38_E_ENERGY 2.30811 0.00253425 2.8582e-09
+PISTA_T7_STRIP39_E_ENERGY 2.70285 0.00250349 3.34043e-09
+PISTA_T7_STRIP40_E_ENERGY 2.00463 0.00255094 2.56415e-09
+PISTA_T7_STRIP41_E_ENERGY 1.40757 0.00258651 2.08678e-09
+PISTA_T7_STRIP42_E_ENERGY 1.76007 0.00256932 2.27403e-09
+PISTA_T7_STRIP43_E_ENERGY 2.29774 0.00253356 2.78255e-09
+PISTA_T7_STRIP44_E_ENERGY 1.71106 0.00256871 2.28109e-09
+PISTA_T7_STRIP45_E_ENERGY 1.6075 0.00256998 2.2953e-09
+PISTA_T7_STRIP46_E_ENERGY 1.98218 0.0025508 2.44528e-09
+PISTA_T7_STRIP47_E_ENERGY 1.59575 0.00257146 2.12827e-09
+PISTA_T7_STRIP48_E_ENERGY 0.856494 0.0026193 1.31648e-09
+PISTA_T7_STRIP49_E_ENERGY 1.42634 0.00258609 1.56296e-09
+PISTA_T7_STRIP50_E_ENERGY 0.699239 0.00265274 6.77446e-12
+PISTA_T7_STRIP51_E_ENERGY 1.60537 0.00255602 2.40919e-09
+PISTA_T7_STRIP52_E_ENERGY 1.78912 0.00250215 4.524e-09
+PISTA_T7_STRIP53_E_ENERGY -10.5111 0.00447423 -7.20457e-08
+PISTA_T7_STRIP54_E_ENERGY 4.60034 0.0023004 -3.07908e-09
+PISTA_T7_STRIP55_E_ENERGY 0 0 0
+PISTA_T7_STRIP56_E_ENERGY 0 0 0
+PISTA_T7_STRIP57_E_ENERGY 0 0 0
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA8_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA8_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d25f4338836f4208ca39578d306750927c84b731
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA8_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T8_STRIP1_DE_ENERGY -1.00285 0.0134585
+PISTA_T8_STRIP2_DE_ENERGY -0.861601 0.0135939
+PISTA_T8_STRIP3_DE_ENERGY -1.4355 0.0144178
+PISTA_T8_STRIP4_DE_ENERGY -1.45131 0.0144015
+PISTA_T8_STRIP5_DE_ENERGY -1.48256 0.0144727
+PISTA_T8_STRIP6_DE_ENERGY -1.38363 0.0144479
+PISTA_T8_STRIP7_DE_ENERGY -1.48933 0.0144794
+PISTA_T8_STRIP8_DE_ENERGY -1.56877 0.0144767
+PISTA_T8_STRIP9_DE_ENERGY -1.51525 0.014527
+PISTA_T8_STRIP10_DE_ENERGY -1.46473 0.0146321
+PISTA_T8_STRIP11_DE_ENERGY -1.53865 0.0145393
+PISTA_T8_STRIP12_DE_ENERGY -1.66161 0.0147434
+PISTA_T8_STRIP13_DE_ENERGY -1.57895 0.0145163
+PISTA_T8_STRIP14_DE_ENERGY -1.49183 0.0146345
+PISTA_T8_STRIP15_DE_ENERGY -1.53692 0.0145118
+PISTA_T8_STRIP16_DE_ENERGY -1.51102 0.0145859
+PISTA_T8_STRIP17_DE_ENERGY -1.454 0.0144748
+PISTA_T8_STRIP18_DE_ENERGY -1.5161 0.0145232
+PISTA_T8_STRIP19_DE_ENERGY -1.55175 0.0146289
+PISTA_T8_STRIP20_DE_ENERGY -1.59302 0.014491
+PISTA_T8_STRIP21_DE_ENERGY -1.57004 0.0145448
+PISTA_T8_STRIP22_DE_ENERGY -1.49079 0.0146377
+PISTA_T8_STRIP23_DE_ENERGY -1.57825 0.0145453
+PISTA_T8_STRIP24_DE_ENERGY -1.67955 0.0147098
+PISTA_T8_STRIP25_DE_ENERGY -1.70986 0.0147302
+PISTA_T8_STRIP26_DE_ENERGY -1.55054 0.0146592
+PISTA_T8_STRIP27_DE_ENERGY -1.69809 0.0148462
+PISTA_T8_STRIP28_DE_ENERGY -1.62823 0.0148223
+PISTA_T8_STRIP29_DE_ENERGY -1.69044 0.0147731
+PISTA_T8_STRIP30_DE_ENERGY -1.55818 0.0148799
+PISTA_T8_STRIP31_DE_ENERGY -1.63763 0.0149034
+PISTA_T8_STRIP32_DE_ENERGY -1.75796 0.0148
+PISTA_T8_STRIP33_DE_ENERGY -1.74215 0.0147968
+PISTA_T8_STRIP34_DE_ENERGY -1.38635 0.014743
+PISTA_T8_STRIP35_DE_ENERGY -1.62362 0.0150133
+PISTA_T8_STRIP36_DE_ENERGY -1.46117 0.01481
+PISTA_T8_STRIP37_DE_ENERGY -1.74858 0.0149928
+PISTA_T8_STRIP38_DE_ENERGY -1.48666 0.0148908
+PISTA_T8_STRIP39_DE_ENERGY -1.71557 0.0149373
+PISTA_T8_STRIP40_DE_ENERGY -1.49406 0.0149717
+PISTA_T8_STRIP41_DE_ENERGY -1.85249 0.0149816
+PISTA_T8_STRIP42_DE_ENERGY -1.4862 0.0148098
+PISTA_T8_STRIP43_DE_ENERGY -1.63896 0.0149
+PISTA_T8_STRIP44_DE_ENERGY -1.53802 0.0148717
+PISTA_T8_STRIP45_DE_ENERGY -1.83836 0.0148649
+PISTA_T8_STRIP46_DE_ENERGY -1.4563 0.0147548
+PISTA_T8_STRIP47_DE_ENERGY -1.53786 0.0149471
+PISTA_T8_STRIP48_DE_ENERGY -0.829735 0.0133626
+PISTA_T8_STRIP49_DE_ENERGY -1.77676 0.0148415
+PISTA_T8_STRIP50_DE_ENERGY -1.4771 0.0149056
+PISTA_T8_STRIP51_DE_ENERGY -1.70903 0.015114
+PISTA_T8_STRIP52_DE_ENERGY -0.991461 0.0135984
+PISTA_T8_STRIP53_DE_ENERGY -1.93701 0.0150773
+PISTA_T8_STRIP54_DE_ENERGY -1.20304 0.0135769
+PISTA_T8_STRIP55_DE_ENERGY -1.74188 0.0152015
+PISTA_T8_STRIP56_DE_ENERGY -1.01114 0.0136551
+PISTA_T8_STRIP57_DE_ENERGY -2.00028 0.0150869
+PISTA_T8_STRIP58_DE_ENERGY -1.23245 0.0135299
+PISTA_T8_STRIP59_DE_ENERGY -1.76337 0.0152097
+PISTA_T8_STRIP60_DE_ENERGY -1.0677 0.0137415
+PISTA_T8_STRIP61_DE_ENERGY -1.90463 0.0150401
+PISTA_T8_STRIP62_DE_ENERGY -1.22031 0.0136389
+PISTA_T8_STRIP63_DE_ENERGY -1.67786 0.0150684
+PISTA_T8_STRIP64_DE_ENERGY -1.04613 0.0137307
+PISTA_T8_STRIP65_DE_ENERGY -1.68237 0.0148862
+PISTA_T8_STRIP66_DE_ENERGY -1.4241 0.0150676
+PISTA_T8_STRIP67_DE_ENERGY -1.48943 0.0148715
+PISTA_T8_STRIP68_DE_ENERGY -1.56014 0.0145761
+PISTA_T8_STRIP69_DE_ENERGY -1.56908 0.0146669
+PISTA_T8_STRIP70_DE_ENERGY -1.41895 0.0147812
+PISTA_T8_STRIP71_DE_ENERGY -1.40468 0.0145386
+PISTA_T8_STRIP72_DE_ENERGY -1.41597 0.0145384
+PISTA_T8_STRIP73_DE_ENERGY -1.51907 0.0145666
+PISTA_T8_STRIP74_DE_ENERGY -1.35654 0.0147164
+PISTA_T8_STRIP75_DE_ENERGY -1.63637 0.015051
+PISTA_T8_STRIP76_DE_ENERGY -1.07704 0.013802
+PISTA_T8_STRIP77_DE_ENERGY -1.12065 0.0138661
+PISTA_T8_STRIP78_DE_ENERGY -0.938837 0.0136918
+PISTA_T8_STRIP79_DE_ENERGY -1.00831 0.0137661
+PISTA_T8_STRIP80_DE_ENERGY -1.13005 0.0138238
+PISTA_T8_STRIP81_DE_ENERGY -1.06449 0.0137774
+PISTA_T8_STRIP82_DE_ENERGY -0.903425 0.0135899
+PISTA_T8_STRIP83_DE_ENERGY -1.00048 0.0136712
+PISTA_T8_STRIP84_DE_ENERGY -1.14506 0.0137608
+PISTA_T8_STRIP85_DE_ENERGY -1.10572 0.0136183
+PISTA_T8_STRIP86_DE_ENERGY -0.909719 0.0136552
+PISTA_T8_STRIP87_DE_ENERGY -1.05246 0.0136884
+PISTA_T8_STRIP88_DE_ENERGY -1.08788 0.0137791
+PISTA_T8_STRIP89_DE_ENERGY -1.14932 0.0136232
+PISTA_T8_STRIP90_DE_ENERGY -0.932704 0.0138422
+PISTA_T8_STRIP91_DE_ENERGY -1.05771 0.0137412
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA8_E.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA8_E.cal
new file mode 100644
index 0000000000000000000000000000000000000000..72ca589d841f12c33d8fbfd4403fd7e070cf12e0
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA8_E.cal
@@ -0,0 +1,57 @@
+PISTA_T8_STRIP1_E_ENERGY 0 0 0
+PISTA_T8_STRIP2_E_ENERGY 0 0 0
+PISTA_T8_STRIP3_E_ENERGY 0 0 0
+PISTA_T8_STRIP4_E_ENERGY -240.882 0.0551209 -2.83015e-06
+PISTA_T8_STRIP5_E_ENERGY -7.80995 0.00399962 -4.55367e-08
+PISTA_T8_STRIP6_E_ENERGY -2.91649 0.00314079 -1.30504e-08
+PISTA_T8_STRIP7_E_ENERGY 1.64875 0.00258812 3.42204e-09
+PISTA_T8_STRIP8_E_ENERGY 0.342724 0.00269592 1.31175e-09
+PISTA_T8_STRIP9_E_ENERGY 2.20127 0.00253958 4.40057e-09
+PISTA_T8_STRIP10_E_ENERGY 2.28344 0.00255018 4.08538e-09
+PISTA_T8_STRIP11_E_ENERGY 1.0789 0.00264793 2.41157e-09
+PISTA_T8_STRIP12_E_ENERGY 1.84307 0.00258638 3.45452e-09
+PISTA_T8_STRIP13_E_ENERGY 1.62978 0.00260434 3.13668e-09
+PISTA_T8_STRIP14_E_ENERGY 0.940391 0.00266318 2.17437e-09
+PISTA_T8_STRIP15_E_ENERGY 1.09056 0.00265809 2.25094e-09
+PISTA_T8_STRIP16_E_ENERGY 1.79575 0.00261931 2.73686e-09
+PISTA_T8_STRIP17_E_ENERGY 1.73695 0.00260929 3.0209e-09
+PISTA_T8_STRIP18_E_ENERGY 1.5919 0.00262431 2.77689e-09
+PISTA_T8_STRIP19_E_ENERGY 1.58335 0.00263347 2.56658e-09
+PISTA_T8_STRIP20_E_ENERGY 2.18195 0.00260557 2.91862e-09
+PISTA_T8_STRIP21_E_ENERGY 1.89017 0.00262477 2.58742e-09
+PISTA_T8_STRIP22_E_ENERGY 2.03498 0.00261196 2.8247e-09
+PISTA_T8_STRIP23_E_ENERGY 1.7129 0.00263111 2.56687e-09
+PISTA_T8_STRIP24_E_ENERGY 1.53228 0.00264203 2.46597e-09
+PISTA_T8_STRIP25_E_ENERGY 1.46203 0.00264804 2.37289e-09
+PISTA_T8_STRIP26_E_ENERGY 1.47658 0.00265054 2.29058e-09
+PISTA_T8_STRIP27_E_ENERGY 1.70591 0.00263329 2.55833e-09
+PISTA_T8_STRIP28_E_ENERGY 2.15871 0.00261385 2.8529e-09
+PISTA_T8_STRIP29_E_ENERGY 2.08361 0.0026377 2.38213e-09
+PISTA_T8_STRIP30_E_ENERGY 1.97788 0.00262234 2.71636e-09
+PISTA_T8_STRIP31_E_ENERGY 1.36087 0.00266182 2.02425e-09
+PISTA_T8_STRIP32_E_ENERGY 1.76619 0.00262836 2.68103e-09
+PISTA_T8_STRIP33_E_ENERGY 1.22993 0.00267509 1.84496e-09
+PISTA_T8_STRIP34_E_ENERGY 1.45834 0.00264719 2.42453e-09
+PISTA_T8_STRIP35_E_ENERGY 1.38149 0.00266128 2.09439e-09
+PISTA_T8_STRIP36_E_ENERGY 1.70697 0.00264449 2.2711e-09
+PISTA_T8_STRIP37_E_ENERGY 1.57181 0.00265049 2.20693e-09
+PISTA_T8_STRIP38_E_ENERGY 1.65296 0.00264821 2.2501e-09
+PISTA_T8_STRIP39_E_ENERGY 1.13009 0.00268891 1.56585e-09
+PISTA_T8_STRIP40_E_ENERGY 0.83085 0.0026957 1.54723e-09
+PISTA_T8_STRIP41_E_ENERGY 1.1831 0.00266168 2.16157e-09
+PISTA_T8_STRIP42_E_ENERGY 1.43161 0.00264653 2.35248e-09
+PISTA_T8_STRIP43_E_ENERGY 1.24336 0.00266831 1.94848e-09
+PISTA_T8_STRIP44_E_ENERGY 0.583899 0.0027192 1.12587e-09
+PISTA_T8_STRIP45_E_ENERGY 0.819958 0.00269165 1.64096e-09
+PISTA_T8_STRIP46_E_ENERGY 1.46625 0.00263328 2.68278e-09
+PISTA_T8_STRIP47_E_ENERGY 1.47444 0.00263123 2.72862e-09
+PISTA_T8_STRIP48_E_ENERGY 0.971175 0.00264949 2.67843e-09
+PISTA_T8_STRIP49_E_ENERGY 2.65833 0.00250809 5.42477e-09
+PISTA_T8_STRIP50_E_ENERGY 2.77248 0.00243342 7.74366e-09
+PISTA_T8_STRIP51_E_ENERGY 1.10955 0.00261241 3.71424e-09
+PISTA_T8_STRIP52_E_ENERGY 1.01867 0.00267975 7.84682e-10
+PISTA_T8_STRIP53_E_ENERGY -5.77974 0.00369879 -3.75998e-08
+PISTA_T8_STRIP54_E_ENERGY -0.239104 0.001779 1.11376e-07
+PISTA_T8_STRIP55_E_ENERGY 0 0 0
+PISTA_T8_STRIP56_E_ENERGY 0 0 0
+PISTA_T8_STRIP57_E_ENERGY 0 0 0
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA_BACK_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA_BACK_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..bf9c8775162a79c6cd481fc37a44e67c4028b46d
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA_BACK_DE.cal
@@ -0,0 +1,8 @@
+PISTA_T1_BACK_DE 0.05 1.60e-3
+PISTA_T2_BACK_DE 0.05 1.60e-3
+PISTA_T3_BACK_DE 0.05 1.60e-3
+PISTA_T4_BACK_DE 0.05 1.60e-3
+PISTA_T5_BACK_DE 0.05 1.60e-3
+PISTA_T6_BACK_DE 0.05 1.60e-3
+PISTA_T7_BACK_DE 0.05 1.60e-3
+PISTA_T8_BACK_DE 0.05 1.60e-3
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA_BACK_E.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA_BACK_E.cal
new file mode 100644
index 0000000000000000000000000000000000000000..eb6c8af5a2eedfef235f47a93a0255b787692596
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA_BACK_E.cal
@@ -0,0 +1,8 @@
+PISTA_T1_BACK_E 1.44467 0.0029105
+PISTA_T2_BACK_E 0.503368 0.00289778
+PISTA_T3_BACK_E 0.383209 0.00288656
+PISTA_T4_BACK_E 0.869997 0.00282768
+PISTA_T5_BACK_E -0.48793 0.00288161
+PISTA_T6_BACK_E 0.348161 0.00282886
+PISTA_T7_BACK_E -0.399274 0.00288107
+PISTA_T8_BACK_E 0.0999609 0.00289432
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA_BACK_E_pol1.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA_BACK_E_pol1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..cb0335ab99089575582f405c75bd52088de2f264
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA_BACK_E_pol1.cal
@@ -0,0 +1,8 @@
+PISTA_T1_BACK_E 0.901236 0.00276794
+PISTA_T2_BACK_E -1.76937 0.00277796
+PISTA_T3_BACK_E -1.2378 0.00276009
+PISTA_T4_BACK_E -0.361126 0.0027485
+PISTA_T5_BACK_E 1.08795 0.00275125
+PISTA_T6_BACK_E -1.37965 0.00277353
+PISTA_T7_BACK_E -0.127026 0.00273521
+PISTA_T8_BACK_E -1.1093 0.00281038
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA_BACK_E_pol2.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA_BACK_E_pol2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..664188224de3c5bcfcdfad36f45400971a57fd68
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part1/lucas/PISTA_BACK_E_pol2.cal
@@ -0,0 +1,8 @@
+PISTA_T1_BACK_E 3.56386 0.00256714 3.12321e-09
+PISTA_T2_BACK_E 0.595366 0.00260276 2.69911e-09
+PISTA_T3_BACK_E 0.55239 0.00262993 1.98806e-09
+PISTA_T4_BACK_E 0.755744 0.00266317 1.3344e-09
+PISTA_T5_BACK_E 2.34113 0.00264764 1.68973e-09
+PISTA_T6_BACK_E 0.630718 0.00262166 2.36161e-09
+PISTA_T7_BACK_E 2.86633 0.00251437 3.3975e-09
+PISTA_T8_BACK_E 0.956408 0.00265723 2.3653e-09
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA1_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA1_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..247b397f63a6538392eb52e337678e302cdc9c13
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA1_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T1_STRIP1_DE_ENERGY -0.976562 0.0132898
+PISTA_T1_STRIP2_DE_ENERGY -0.764712 0.0132549
+PISTA_T1_STRIP3_DE_ENERGY -1.45903 0.0146576
+PISTA_T1_STRIP4_DE_ENERGY -1.45263 0.0145551
+PISTA_T1_STRIP5_DE_ENERGY -1.69843 0.0146324
+PISTA_T1_STRIP6_DE_ENERGY -1.45607 0.0145405
+PISTA_T1_STRIP7_DE_ENERGY -1.59858 0.0147332
+PISTA_T1_STRIP8_DE_ENERGY -1.55585 0.0145891
+PISTA_T1_STRIP9_DE_ENERGY -1.80686 0.0147549
+PISTA_T1_STRIP10_DE_ENERGY -1.46864 0.0147743
+PISTA_T1_STRIP11_DE_ENERGY -1.61439 0.0148317
+PISTA_T1_STRIP12_DE_ENERGY -1.46693 0.0148739
+PISTA_T1_STRIP13_DE_ENERGY -1.6715 0.0147507
+PISTA_T1_STRIP14_DE_ENERGY -1.48877 0.0146766
+PISTA_T1_STRIP15_DE_ENERGY -1.55027 0.0149018
+PISTA_T1_STRIP16_DE_ENERGY -1.42361 0.0146706
+PISTA_T1_STRIP17_DE_ENERGY -1.72733 0.0146371
+PISTA_T1_STRIP18_DE_ENERGY -1.46126 0.0145281
+PISTA_T1_STRIP19_DE_ENERGY -1.59231 0.0146899
+PISTA_T1_STRIP20_DE_ENERGY -1.46877 0.0147256
+PISTA_T1_STRIP21_DE_ENERGY -1.72273 0.0146206
+PISTA_T1_STRIP22_DE_ENERGY -1.47834 0.0146673
+PISTA_T1_STRIP23_DE_ENERGY -1.67422 0.0150152
+PISTA_T1_STRIP24_DE_ENERGY -1.53488 0.0146607
+PISTA_T1_STRIP25_DE_ENERGY -1.80292 0.0148047
+PISTA_T1_STRIP26_DE_ENERGY -1.63319 0.0148587
+PISTA_T1_STRIP27_DE_ENERGY -1.61873 0.0149275
+PISTA_T1_STRIP28_DE_ENERGY -1.55195 0.0148989
+PISTA_T1_STRIP29_DE_ENERGY -1.80834 0.0147994
+PISTA_T1_STRIP30_DE_ENERGY -1.55856 0.0149014
+PISTA_T1_STRIP31_DE_ENERGY -1.66889 0.015165
+PISTA_T1_STRIP32_DE_ENERGY -1.50929 0.0147974
+PISTA_T1_STRIP33_DE_ENERGY -1.65739 0.0148364
+PISTA_T1_STRIP34_DE_ENERGY -1.60563 0.0149522
+PISTA_T1_STRIP35_DE_ENERGY -1.59645 0.0149765
+PISTA_T1_STRIP36_DE_ENERGY -1.59748 0.0148871
+PISTA_T1_STRIP37_DE_ENERGY -1.68103 0.014849
+PISTA_T1_STRIP38_DE_ENERGY -1.61691 0.0149806
+PISTA_T1_STRIP39_DE_ENERGY -1.65745 0.0149293
+PISTA_T1_STRIP40_DE_ENERGY -1.60208 0.014781
+PISTA_T1_STRIP41_DE_ENERGY -1.69185 0.0147559
+PISTA_T1_STRIP42_DE_ENERGY -1.71426 0.0150457
+PISTA_T1_STRIP43_DE_ENERGY -1.58977 0.0148779
+PISTA_T1_STRIP44_DE_ENERGY -1.65174 0.0147866
+PISTA_T1_STRIP45_DE_ENERGY -1.60506 0.0148117
+PISTA_T1_STRIP46_DE_ENERGY -1.49406 0.0147717
+PISTA_T1_STRIP47_DE_ENERGY -1.54981 0.0147606
+PISTA_T1_STRIP48_DE_ENERGY -1.62692 0.0148113
+PISTA_T1_STRIP49_DE_ENERGY -0.956648 0.0135822
+PISTA_T1_STRIP50_DE_ENERGY -0.946762 0.0135132
+PISTA_T1_STRIP51_DE_ENERGY -0.879417 0.01361
+PISTA_T1_STRIP52_DE_ENERGY -1.02455 0.0135457
+PISTA_T1_STRIP53_DE_ENERGY -0.996197 0.0135217
+PISTA_T1_STRIP54_DE_ENERGY -0.957269 0.0135953
+PISTA_T1_STRIP55_DE_ENERGY -0.994236 0.0136506
+PISTA_T1_STRIP56_DE_ENERGY -0.951739 0.013462
+PISTA_T1_STRIP57_DE_ENERGY -1.05325 0.0133631
+PISTA_T1_STRIP58_DE_ENERGY -0.943538 0.0135911
+PISTA_T1_STRIP59_DE_ENERGY -0.994939 0.013611
+PISTA_T1_STRIP60_DE_ENERGY -1.0099 0.0134381
+PISTA_T1_STRIP61_DE_ENERGY -1.01051 0.0136031
+PISTA_T1_STRIP62_DE_ENERGY -0.961923 0.0136914
+PISTA_T1_STRIP63_DE_ENERGY -1.03493 0.0136725
+PISTA_T1_STRIP64_DE_ENERGY -1.05532 0.0134173
+PISTA_T1_STRIP65_DE_ENERGY -1.20015 0.0134427
+PISTA_T1_STRIP66_DE_ENERGY -1.03123 0.0136478
+PISTA_T1_STRIP67_DE_ENERGY -0.983475 0.0137255
+PISTA_T1_STRIP68_DE_ENERGY -0.79804 0.0133483
+PISTA_T1_STRIP69_DE_ENERGY -1.17219 0.0133678
+PISTA_T1_STRIP70_DE_ENERGY -1.01481 0.0135171
+PISTA_T1_STRIP71_DE_ENERGY -0.910978 0.0137732
+PISTA_T1_STRIP72_DE_ENERGY -0.878813 0.0134658
+PISTA_T1_STRIP73_DE_ENERGY -1.14885 0.0135597
+PISTA_T1_STRIP74_DE_ENERGY -1.00542 0.0136256
+PISTA_T1_STRIP75_DE_ENERGY -1.02126 0.0137149
+PISTA_T1_STRIP76_DE_ENERGY -0.90434 0.0136566
+PISTA_T1_STRIP77_DE_ENERGY -1.17322 0.0135491
+PISTA_T1_STRIP78_DE_ENERGY -0.954029 0.0135422
+PISTA_T1_STRIP79_DE_ENERGY -0.906899 0.013529
+PISTA_T1_STRIP80_DE_ENERGY -0.829348 0.0134882
+PISTA_T1_STRIP81_DE_ENERGY -1.18328 0.0135281
+PISTA_T1_STRIP82_DE_ENERGY -1.02243 0.0136294
+PISTA_T1_STRIP83_DE_ENERGY -0.968293 0.0136517
+PISTA_T1_STRIP84_DE_ENERGY -0.860597 0.0135459
+PISTA_T1_STRIP85_DE_ENERGY -1.22537 0.0134953
+PISTA_T1_STRIP86_DE_ENERGY -1.04966 0.0136197
+PISTA_T1_STRIP87_DE_ENERGY -1.01833 0.0136801
+PISTA_T1_STRIP88_DE_ENERGY -0.89279 0.0134326
+PISTA_T1_STRIP89_DE_ENERGY -1.15799 0.0134242
+PISTA_T1_STRIP90_DE_ENERGY -1.01684 0.0135716
+PISTA_T1_STRIP91_DE_ENERGY -1.01383 0.0137945
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA2_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA2_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..be1b6901e063bf46b6022d9b51043fade803cc36
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA2_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T2_STRIP1_DE_ENERGY -0.823012 0.0133704
+PISTA_T2_STRIP2_DE_ENERGY -0.955698 0.01342
+PISTA_T2_STRIP3_DE_ENERGY -1.64372 0.014856
+PISTA_T2_STRIP4_DE_ENERGY -1.76465 0.0149049
+PISTA_T2_STRIP5_DE_ENERGY -1.56591 0.014867
+PISTA_T2_STRIP6_DE_ENERGY -1.70343 0.0150163
+PISTA_T2_STRIP7_DE_ENERGY -1.83887 0.0150804
+PISTA_T2_STRIP8_DE_ENERGY -1.92242 0.0150837
+PISTA_T2_STRIP9_DE_ENERGY -1.67777 0.0151653
+PISTA_T2_STRIP10_DE_ENERGY -1.76054 0.0151951
+PISTA_T2_STRIP11_DE_ENERGY -1.8244 0.0151246
+PISTA_T2_STRIP12_DE_ENERGY -1.96304 0.0153135
+PISTA_T2_STRIP13_DE_ENERGY -1.66954 0.015243
+PISTA_T2_STRIP14_DE_ENERGY -1.82556 0.0152037
+PISTA_T2_STRIP15_DE_ENERGY -1.84823 0.0153194
+PISTA_T2_STRIP16_DE_ENERGY -2.00316 0.0152224
+PISTA_T2_STRIP17_DE_ENERGY -1.69645 0.0152104
+PISTA_T2_STRIP18_DE_ENERGY -1.88091 0.0151385
+PISTA_T2_STRIP19_DE_ENERGY -1.78784 0.0152223
+PISTA_T2_STRIP20_DE_ENERGY -1.88428 0.015238
+PISTA_T2_STRIP21_DE_ENERGY -1.68595 0.0151889
+PISTA_T2_STRIP22_DE_ENERGY -1.79779 0.0153195
+PISTA_T2_STRIP23_DE_ENERGY -1.88467 0.0151565
+PISTA_T2_STRIP24_DE_ENERGY -1.95733 0.0152466
+PISTA_T2_STRIP25_DE_ENERGY -1.73962 0.0151928
+PISTA_T2_STRIP26_DE_ENERGY -1.91396 0.0156004
+PISTA_T2_STRIP27_DE_ENERGY -1.87649 0.0153012
+PISTA_T2_STRIP28_DE_ENERGY -2.06058 0.0153278
+PISTA_T2_STRIP29_DE_ENERGY -1.74713 0.015356
+PISTA_T2_STRIP30_DE_ENERGY -1.92981 0.0154679
+PISTA_T2_STRIP31_DE_ENERGY -1.95612 0.0153972
+PISTA_T2_STRIP32_DE_ENERGY -2.09102 0.0154596
+PISTA_T2_STRIP33_DE_ENERGY -1.88052 0.0154242
+PISTA_T2_STRIP34_DE_ENERGY -1.86057 0.0155784
+PISTA_T2_STRIP35_DE_ENERGY -1.83679 0.0156292
+PISTA_T2_STRIP36_DE_ENERGY -1.68813 0.0153768
+PISTA_T2_STRIP37_DE_ENERGY -2.00578 0.0154664
+PISTA_T2_STRIP38_DE_ENERGY -1.81745 0.0155932
+PISTA_T2_STRIP39_DE_ENERGY -1.90266 0.015483
+PISTA_T2_STRIP40_DE_ENERGY -1.67681 0.0153816
+PISTA_T2_STRIP41_DE_ENERGY -1.88441 0.0152291
+PISTA_T2_STRIP42_DE_ENERGY -1.78958 0.0153559
+PISTA_T2_STRIP43_DE_ENERGY -1.8346 0.0154536
+PISTA_T2_STRIP44_DE_ENERGY -1.69168 0.0150998
+PISTA_T2_STRIP45_DE_ENERGY -1.78617 0.0151387
+PISTA_T2_STRIP46_DE_ENERGY -1.64393 0.0149818
+PISTA_T2_STRIP47_DE_ENERGY -1.72684 0.0152676
+PISTA_T2_STRIP48_DE_ENERGY -1.64469 0.015293
+PISTA_T2_STRIP49_DE_ENERGY -1.0402 0.0134456
+PISTA_T2_STRIP50_DE_ENERGY -0.995958 0.0135712
+PISTA_T2_STRIP51_DE_ENERGY -0.964837 0.0135936
+PISTA_T2_STRIP52_DE_ENERGY -0.918671 0.0134289
+PISTA_T2_STRIP53_DE_ENERGY -1.03681 0.0136101
+PISTA_T2_STRIP54_DE_ENERGY -1.02157 0.0136522
+PISTA_T2_STRIP55_DE_ENERGY -1.07712 0.0136733
+PISTA_T2_STRIP56_DE_ENERGY -0.908803 0.0134607
+PISTA_T2_STRIP57_DE_ENERGY -0.999826 0.0133746
+PISTA_T2_STRIP58_DE_ENERGY -1.05942 0.0136028
+PISTA_T2_STRIP59_DE_ENERGY -0.97832 0.0136785
+PISTA_T2_STRIP60_DE_ENERGY -0.820618 0.0135447
+PISTA_T2_STRIP61_DE_ENERGY -1.1129 0.0135259
+PISTA_T2_STRIP62_DE_ENERGY 6.12118 -0.000776836
+PISTA_T2_STRIP63_DE_ENERGY -0.90999 0.0136481
+PISTA_T2_STRIP64_DE_ENERGY -0.825417 0.0135305
+PISTA_T2_STRIP65_DE_ENERGY -0.913307 0.0135909
+PISTA_T2_STRIP66_DE_ENERGY -0.874228 0.0136006
+PISTA_T2_STRIP67_DE_ENERGY -0.850493 0.0135458
+PISTA_T2_STRIP68_DE_ENERGY -0.999466 0.0135421
+PISTA_T2_STRIP69_DE_ENERGY -0.929718 0.0137837
+PISTA_T2_STRIP70_DE_ENERGY -0.924117 0.0135997
+PISTA_T2_STRIP71_DE_ENERGY -0.970086 0.0135456
+PISTA_T2_STRIP72_DE_ENERGY -1.01605 0.0135194
+PISTA_T2_STRIP73_DE_ENERGY -0.99837 0.0136076
+PISTA_T2_STRIP74_DE_ENERGY -0.954463 0.0136663
+PISTA_T2_STRIP75_DE_ENERGY -0.955029 0.0134726
+PISTA_T2_STRIP76_DE_ENERGY -0.992386 0.0134884
+PISTA_T2_STRIP77_DE_ENERGY -0.985788 0.0135079
+PISTA_T2_STRIP78_DE_ENERGY -0.970517 0.0137378
+PISTA_T2_STRIP79_DE_ENERGY -0.978495 0.0137381
+PISTA_T2_STRIP80_DE_ENERGY -0.989971 0.0135172
+PISTA_T2_STRIP81_DE_ENERGY -0.936411 0.0135467
+PISTA_T2_STRIP82_DE_ENERGY -0.883682 0.0135384
+PISTA_T2_STRIP83_DE_ENERGY -0.886092 0.0135586
+PISTA_T2_STRIP84_DE_ENERGY -0.970353 0.0135188
+PISTA_T2_STRIP85_DE_ENERGY -0.935651 0.0134602
+PISTA_T2_STRIP86_DE_ENERGY -0.893386 0.0135471
+PISTA_T2_STRIP87_DE_ENERGY -1.00926 0.0136652
+PISTA_T2_STRIP88_DE_ENERGY -0.957896 0.0134296
+PISTA_T2_STRIP89_DE_ENERGY -0.939738 0.0134245
+PISTA_T2_STRIP90_DE_ENERGY -0.92605 0.0135897
+PISTA_T2_STRIP91_DE_ENERGY -0.896891 0.0137005
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA3_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA3_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..fe0880915c5e6859d0068f2023a24b0baf8c1146
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA3_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T3_STRIP1_DE_ENERGY -0.724177 0.0131832
+PISTA_T3_STRIP2_DE_ENERGY -0.872058 0.0133493
+PISTA_T3_STRIP3_DE_ENERGY -1.8327 0.0153327
+PISTA_T3_STRIP4_DE_ENERGY -1.67471 0.0150864
+PISTA_T3_STRIP5_DE_ENERGY -1.71103 0.0152481
+PISTA_T3_STRIP6_DE_ENERGY -1.8458 0.015228
+PISTA_T3_STRIP7_DE_ENERGY -1.92803 0.015373
+PISTA_T3_STRIP8_DE_ENERGY -1.75709 0.0152995
+PISTA_T3_STRIP9_DE_ENERGY -1.83971 0.0154448
+PISTA_T3_STRIP10_DE_ENERGY -1.93636 0.0155755
+PISTA_T3_STRIP11_DE_ENERGY -2.00296 0.0155459
+PISTA_T3_STRIP12_DE_ENERGY -1.77117 0.0155432
+PISTA_T3_STRIP13_DE_ENERGY -1.81666 0.0153929
+PISTA_T3_STRIP14_DE_ENERGY -1.91161 0.0155023
+PISTA_T3_STRIP15_DE_ENERGY -1.96797 0.0156181
+PISTA_T3_STRIP16_DE_ENERGY -1.70935 0.0154555
+PISTA_T3_STRIP17_DE_ENERGY -1.79773 0.0152074
+PISTA_T3_STRIP18_DE_ENERGY -1.83342 0.0152227
+PISTA_T3_STRIP19_DE_ENERGY -1.92603 0.015397
+PISTA_T3_STRIP20_DE_ENERGY -1.7142 0.0153194
+PISTA_T3_STRIP21_DE_ENERGY -1.79047 0.0151271
+PISTA_T3_STRIP22_DE_ENERGY -1.86582 0.0152672
+PISTA_T3_STRIP23_DE_ENERGY -1.9 0.0153228
+PISTA_T3_STRIP24_DE_ENERGY -1.58573 0.0152861
+PISTA_T3_STRIP25_DE_ENERGY -1.66241 0.0149699
+PISTA_T3_STRIP26_DE_ENERGY -1.79363 0.0152628
+PISTA_T3_STRIP27_DE_ENERGY -1.92044 0.0153939
+PISTA_T3_STRIP28_DE_ENERGY -1.6634 0.0154126
+PISTA_T3_STRIP29_DE_ENERGY -1.70436 0.0151959
+PISTA_T3_STRIP30_DE_ENERGY -1.87825 0.0153806
+PISTA_T3_STRIP31_DE_ENERGY -1.87754 0.0154783
+PISTA_T3_STRIP32_DE_ENERGY -1.64581 0.0153393
+PISTA_T3_STRIP33_DE_ENERGY -0.75603 0.013419
+PISTA_T3_STRIP34_DE_ENERGY -1.71289 0.0153262
+PISTA_T3_STRIP35_DE_ENERGY -1.88546 0.0152756
+PISTA_T3_STRIP36_DE_ENERGY -1.7448 0.0152384
+PISTA_T3_STRIP37_DE_ENERGY -0.858651 0.013363
+PISTA_T3_STRIP38_DE_ENERGY -1.81288 0.0154038
+PISTA_T3_STRIP39_DE_ENERGY -1.86978 0.0154939
+PISTA_T3_STRIP40_DE_ENERGY -1.78331 0.0152408
+PISTA_T3_STRIP41_DE_ENERGY -0.941868 0.0134683
+PISTA_T3_STRIP42_DE_ENERGY -1.80554 0.0153642
+PISTA_T3_STRIP43_DE_ENERGY -1.81075 0.0151262
+PISTA_T3_STRIP44_DE_ENERGY -1.6525 0.0151115
+PISTA_T3_STRIP45_DE_ENERGY -0.910433 0.0135317
+PISTA_T3_STRIP46_DE_ENERGY -1.66346 0.0151978
+PISTA_T3_STRIP47_DE_ENERGY -1.86786 0.0151489
+PISTA_T3_STRIP48_DE_ENERGY -1.76927 0.0152455
+PISTA_T3_STRIP49_DE_ENERGY -0.970749 0.0135615
+PISTA_T3_STRIP50_DE_ENERGY -1.77377 0.0154608
+PISTA_T3_STRIP51_DE_ENERGY -1.03554 0.0135634
+PISTA_T3_STRIP52_DE_ENERGY -1.03554 0.0135634
+PISTA_T3_STRIP53_DE_ENERGY -1.03554 0.0135634
+PISTA_T3_STRIP54_DE_ENERGY -0.964176 0.0136096
+PISTA_T3_STRIP55_DE_ENERGY -0.964176 0.0136096
+PISTA_T3_STRIP56_DE_ENERGY -0.964176 0.0136096
+PISTA_T3_STRIP57_DE_ENERGY -0.964176 0.0136096
+PISTA_T3_STRIP58_DE_ENERGY -0.989635 0.0137097
+PISTA_T3_STRIP59_DE_ENERGY -0.989635 0.0137097
+PISTA_T3_STRIP60_DE_ENERGY -0.989635 0.0137097
+PISTA_T3_STRIP61_DE_ENERGY -0.76005 0.0136789
+PISTA_T3_STRIP62_DE_ENERGY -0.76005 0.0136789
+PISTA_T3_STRIP63_DE_ENERGY -0.76005 0.0136789
+PISTA_T3_STRIP64_DE_ENERGY -0.76005 0.0136789
+PISTA_T3_STRIP65_DE_ENERGY -0.76005 0.0136789
+PISTA_T3_STRIP66_DE_ENERGY -0.781088 0.013532
+PISTA_T3_STRIP67_DE_ENERGY -0.958033 0.0135256
+PISTA_T3_STRIP68_DE_ENERGY -0.857443 0.0134298
+PISTA_T3_STRIP69_DE_ENERGY -0.857443 0.0134298
+PISTA_T3_STRIP70_DE_ENERGY -0.854097 0.0136809
+PISTA_T3_STRIP71_DE_ENERGY -1.06358 0.0136436
+PISTA_T3_STRIP72_DE_ENERGY -0.74448 0.0135376
+PISTA_T3_STRIP73_DE_ENERGY -0.862014 0.0135231
+PISTA_T3_STRIP74_DE_ENERGY -0.844024 0.0135535
+PISTA_T3_STRIP75_DE_ENERGY -1.02822 0.0136086
+PISTA_T3_STRIP76_DE_ENERGY -0.796196 0.0134172
+PISTA_T3_STRIP77_DE_ENERGY -0.796196 0.0134172
+PISTA_T3_STRIP78_DE_ENERGY -0.796196 0.0134172
+PISTA_T3_STRIP79_DE_ENERGY -1.07989 0.0137686
+PISTA_T3_STRIP80_DE_ENERGY -0.783426 0.013578
+PISTA_T3_STRIP81_DE_ENERGY -0.783426 0.013578
+PISTA_T3_STRIP82_DE_ENERGY -0.783426 0.013578
+PISTA_T3_STRIP83_DE_ENERGY -0.783426 0.013578
+PISTA_T3_STRIP84_DE_ENERGY -0.783426 0.013578
+PISTA_T3_STRIP85_DE_ENERGY -0.783426 0.013578
+PISTA_T3_STRIP86_DE_ENERGY -0.783426 0.013578
+PISTA_T3_STRIP87_DE_ENERGY -0.783426 0.013578
+PISTA_T3_STRIP88_DE_ENERGY -0.783426 0.013578
+PISTA_T3_STRIP89_DE_ENERGY -0.783426 0.013578
+PISTA_T3_STRIP90_DE_ENERGY -0.783426 0.013578
+PISTA_T3_STRIP91_DE_ENERGY -0.783426 0.013578
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA4_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA4_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..19f7512af080cdd67b01c46789a0a3429798f9e9
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA4_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T4_STRIP1_DE_ENERGY -0.844596 0.0131586
+PISTA_T4_STRIP2_DE_ENERGY -1.11922 0.0135241
+PISTA_T4_STRIP3_DE_ENERGY -1.64671 0.0150243
+PISTA_T4_STRIP4_DE_ENERGY -1.78909 0.0149711
+PISTA_T4_STRIP5_DE_ENERGY -1.7315 0.0149858
+PISTA_T4_STRIP6_DE_ENERGY -1.87606 0.015146
+PISTA_T4_STRIP7_DE_ENERGY -1.71499 0.0150458
+PISTA_T4_STRIP8_DE_ENERGY -1.73498 0.0149478
+PISTA_T4_STRIP9_DE_ENERGY -1.69605 0.0150799
+PISTA_T4_STRIP10_DE_ENERGY -1.93881 0.0151947
+PISTA_T4_STRIP11_DE_ENERGY -1.76282 0.0150278
+PISTA_T4_STRIP12_DE_ENERGY -1.748 0.0149049
+PISTA_T4_STRIP13_DE_ENERGY -1.63285 0.0148938
+PISTA_T4_STRIP14_DE_ENERGY -1.88681 0.0150646
+PISTA_T4_STRIP15_DE_ENERGY -1.68621 0.0149817
+PISTA_T4_STRIP16_DE_ENERGY -1.63729 0.0147843
+PISTA_T4_STRIP17_DE_ENERGY -1.58421 0.0148123
+PISTA_T4_STRIP18_DE_ENERGY -1.76213 0.0147828
+PISTA_T4_STRIP19_DE_ENERGY -1.58446 0.014751
+PISTA_T4_STRIP20_DE_ENERGY -1.66091 0.0148279
+PISTA_T4_STRIP21_DE_ENERGY -1.55119 0.0146297
+PISTA_T4_STRIP22_DE_ENERGY -1.67735 0.0147901
+PISTA_T4_STRIP23_DE_ENERGY -1.5601 0.0147695
+PISTA_T4_STRIP24_DE_ENERGY -1.636 0.0148842
+PISTA_T4_STRIP25_DE_ENERGY -1.56408 0.0145293
+PISTA_T4_STRIP26_DE_ENERGY -1.85479 0.014962
+PISTA_T4_STRIP27_DE_ENERGY -1.58964 0.014901
+PISTA_T4_STRIP28_DE_ENERGY -1.61956 0.0146481
+PISTA_T4_STRIP29_DE_ENERGY -1.5789 0.0148267
+PISTA_T4_STRIP30_DE_ENERGY -0.879535 0.0133538
+PISTA_T4_STRIP31_DE_ENERGY -1.6514 0.0150001
+PISTA_T4_STRIP32_DE_ENERGY -1.57329 0.0147422
+PISTA_T4_STRIP33_DE_ENERGY -1.69535 0.0147709
+PISTA_T4_STRIP34_DE_ENERGY -1.6703 0.0148191
+PISTA_T4_STRIP35_DE_ENERGY -1.49419 0.0148181
+PISTA_T4_STRIP36_DE_ENERGY -1.48233 0.0146179
+PISTA_T4_STRIP37_DE_ENERGY -1.63799 0.0145679
+PISTA_T4_STRIP38_DE_ENERGY -1.54068 0.0143862
+PISTA_T4_STRIP39_DE_ENERGY -1.44027 0.0146067
+PISTA_T4_STRIP40_DE_ENERGY -1.32273 0.0142983
+PISTA_T4_STRIP41_DE_ENERGY -1.50237 0.0141747
+PISTA_T4_STRIP42_DE_ENERGY -1.37925 0.0141817
+PISTA_T4_STRIP43_DE_ENERGY -1.31896 0.0142441
+PISTA_T4_STRIP44_DE_ENERGY -1.2555 0.0141972
+PISTA_T4_STRIP45_DE_ENERGY -1.34429 0.0142333
+PISTA_T4_STRIP46_DE_ENERGY -1.38354 0.0142995
+PISTA_T4_STRIP47_DE_ENERGY -1.3765 0.014347
+PISTA_T4_STRIP48_DE_ENERGY -1.21096 0.0141841
+PISTA_T4_STRIP49_DE_ENERGY -1.39468 0.0142447
+PISTA_T4_STRIP50_DE_ENERGY -1.36314 0.0141511
+PISTA_T4_STRIP51_DE_ENERGY -1.36463 0.01439
+PISTA_T4_STRIP52_DE_ENERGY -1.23848 0.0142995
+PISTA_T4_STRIP53_DE_ENERGY -1.40662 0.0142539
+PISTA_T4_STRIP54_DE_ENERGY -1.03016 0.0134442
+PISTA_T4_STRIP55_DE_ENERGY -1.00051 0.0135685
+PISTA_T4_STRIP56_DE_ENERGY -0.870835 0.0133706
+PISTA_T4_STRIP57_DE_ENERGY -1.06432 0.0134579
+PISTA_T4_STRIP58_DE_ENERGY -1.09492 0.0136247
+PISTA_T4_STRIP59_DE_ENERGY -0.989488 0.013757
+PISTA_T4_STRIP60_DE_ENERGY -0.879321 0.0134489
+PISTA_T4_STRIP61_DE_ENERGY -1.12481 0.0134937
+PISTA_T4_STRIP62_DE_ENERGY -1.00368 0.01353
+PISTA_T4_STRIP63_DE_ENERGY -0.982283 0.0136504
+PISTA_T4_STRIP64_DE_ENERGY -0.760442 0.0135334
+PISTA_T4_STRIP65_DE_ENERGY -0.95984 0.0136076
+PISTA_T4_STRIP66_DE_ENERGY -1.08383 0.0136022
+PISTA_T4_STRIP67_DE_ENERGY -0.857156 0.0135614
+PISTA_T4_STRIP68_DE_ENERGY -0.969259 0.0134876
+PISTA_T4_STRIP69_DE_ENERGY -0.897008 0.013607
+PISTA_T4_STRIP70_DE_ENERGY -1.1291 0.0136513
+PISTA_T4_STRIP71_DE_ENERGY -0.906598 0.0134446
+PISTA_T4_STRIP72_DE_ENERGY -0.963415 0.01349
+PISTA_T4_STRIP73_DE_ENERGY -0.954285 0.0135397
+PISTA_T4_STRIP74_DE_ENERGY -1.21552 0.0136878
+PISTA_T4_STRIP75_DE_ENERGY -0.946418 0.0135072
+PISTA_T4_STRIP76_DE_ENERGY -1.04472 0.0135577
+PISTA_T4_STRIP77_DE_ENERGY -0.904402 0.0134809
+PISTA_T4_STRIP78_DE_ENERGY -1.15196 0.0137048
+PISTA_T4_STRIP79_DE_ENERGY -0.946449 0.0136526
+PISTA_T4_STRIP80_DE_ENERGY -0.997828 0.0134089
+PISTA_T4_STRIP81_DE_ENERGY -0.948681 0.0133854
+PISTA_T4_STRIP82_DE_ENERGY -1.1794 0.0135432
+PISTA_T4_STRIP83_DE_ENERGY -0.903988 0.013646
+PISTA_T4_STRIP84_DE_ENERGY -1.01389 0.013402
+PISTA_T4_STRIP85_DE_ENERGY -0.947584 0.0135281
+PISTA_T4_STRIP86_DE_ENERGY -1.15234 0.0136332
+PISTA_T4_STRIP87_DE_ENERGY -0.946094 0.0136162
+PISTA_T4_STRIP88_DE_ENERGY -0.99609 0.0135433
+PISTA_T4_STRIP89_DE_ENERGY -0.949474 0.0134639
+PISTA_T4_STRIP90_DE_ENERGY -1.22068 0.0136408
+PISTA_T4_STRIP91_DE_ENERGY -0.95179 0.0136418
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA5_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA5_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..7bbda49090d3f3a667347c6f52e8246ae599fd12
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA5_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T5_STRIP1_DE_ENERGY -1.02336 0.0132417
+PISTA_T5_STRIP2_DE_ENERGY -0.832808 0.0134138
+PISTA_T5_STRIP3_DE_ENERGY -1.52577 0.0149566
+PISTA_T5_STRIP4_DE_ENERGY -1.59836 0.0145657
+PISTA_T5_STRIP5_DE_ENERGY -1.73619 0.0147512
+PISTA_T5_STRIP6_DE_ENERGY -1.46487 0.0147762
+PISTA_T5_STRIP7_DE_ENERGY -1.50733 0.0148995
+PISTA_T5_STRIP8_DE_ENERGY -1.71064 0.0148784
+PISTA_T5_STRIP9_DE_ENERGY -1.74212 0.014671
+PISTA_T5_STRIP10_DE_ENERGY -1.56871 0.0147968
+PISTA_T5_STRIP11_DE_ENERGY -1.52063 0.0147995
+PISTA_T5_STRIP12_DE_ENERGY -1.64965 0.0148476
+PISTA_T5_STRIP13_DE_ENERGY -1.73974 0.0147499
+PISTA_T5_STRIP14_DE_ENERGY -1.50117 0.0147029
+PISTA_T5_STRIP15_DE_ENERGY -1.39809 0.0147694
+PISTA_T5_STRIP16_DE_ENERGY -1.61873 0.0146382
+PISTA_T5_STRIP17_DE_ENERGY -1.65592 0.0146294
+PISTA_T5_STRIP18_DE_ENERGY -1.47707 0.0146186
+PISTA_T5_STRIP19_DE_ENERGY -1.48681 0.0148294
+PISTA_T5_STRIP20_DE_ENERGY -1.59876 0.0145957
+PISTA_T5_STRIP21_DE_ENERGY -1.63753 0.0146001
+PISTA_T5_STRIP22_DE_ENERGY -1.44927 0.0145588
+PISTA_T5_STRIP23_DE_ENERGY -1.46697 0.0148615
+PISTA_T5_STRIP24_DE_ENERGY -1.56648 0.0146926
+PISTA_T5_STRIP25_DE_ENERGY -1.66882 0.0147008
+PISTA_T5_STRIP26_DE_ENERGY -1.50981 0.0147064
+PISTA_T5_STRIP27_DE_ENERGY -1.44359 0.0148329
+PISTA_T5_STRIP28_DE_ENERGY -1.62878 0.0147312
+PISTA_T5_STRIP29_DE_ENERGY -1.73317 0.0147232
+PISTA_T5_STRIP30_DE_ENERGY -1.48777 0.0146142
+PISTA_T5_STRIP31_DE_ENERGY -1.44104 0.0148439
+PISTA_T5_STRIP32_DE_ENERGY -1.62659 0.0146677
+PISTA_T5_STRIP33_DE_ENERGY -1.66987 0.0147608
+PISTA_T5_STRIP34_DE_ENERGY -1.59901 0.0147838
+PISTA_T5_STRIP35_DE_ENERGY -1.45691 0.0148999
+PISTA_T5_STRIP36_DE_ENERGY -1.70011 0.0145666
+PISTA_T5_STRIP37_DE_ENERGY -1.61998 0.0146237
+PISTA_T5_STRIP38_DE_ENERGY -1.64225 0.0149731
+PISTA_T5_STRIP39_DE_ENERGY -1.36739 0.0148982
+PISTA_T5_STRIP40_DE_ENERGY -1.80208 0.0146974
+PISTA_T5_STRIP41_DE_ENERGY -1.65627 0.0147684
+PISTA_T5_STRIP42_DE_ENERGY -1.55405 0.0147704
+PISTA_T5_STRIP43_DE_ENERGY -1.37169 0.0145809
+PISTA_T5_STRIP44_DE_ENERGY -1.66186 0.0145012
+PISTA_T5_STRIP45_DE_ENERGY -1.57311 0.0147542
+PISTA_T5_STRIP46_DE_ENERGY -1.55984 0.014823
+PISTA_T5_STRIP47_DE_ENERGY -1.39043 0.0148196
+PISTA_T5_STRIP48_DE_ENERGY -1.80551 0.014785
+PISTA_T5_STRIP49_DE_ENERGY -1.19346 0.0135409
+PISTA_T5_STRIP50_DE_ENERGY -1.64371 0.0148805
+PISTA_T5_STRIP51_DE_ENERGY -1.0038 0.0135406
+PISTA_T5_STRIP52_DE_ENERGY -1.77614 0.0147991
+PISTA_T5_STRIP53_DE_ENERGY -1.63059 0.0146633
+PISTA_T5_STRIP54_DE_ENERGY -1.49528 0.0147569
+PISTA_T5_STRIP55_DE_ENERGY -1.37741 0.0147295
+PISTA_T5_STRIP56_DE_ENERGY -1.17011 0.0135228
+PISTA_T5_STRIP57_DE_ENERGY -1.01817 0.0134647
+PISTA_T5_STRIP58_DE_ENERGY -0.980024 0.0135086
+PISTA_T5_STRIP59_DE_ENERGY -0.863753 0.0135582
+PISTA_T5_STRIP60_DE_ENERGY -1.22714 0.0135611
+PISTA_T5_STRIP61_DE_ENERGY -0.894558 0.0134747
+PISTA_T5_STRIP62_DE_ENERGY -0.894558 0.0134747
+PISTA_T5_STRIP63_DE_ENERGY -0.843635 0.0136213
+PISTA_T5_STRIP64_DE_ENERGY -1.22163 0.0135709
+PISTA_T5_STRIP65_DE_ENERGY -0.967791 0.0133384
+PISTA_T5_STRIP66_DE_ENERGY -1.07649 0.01342
+PISTA_T5_STRIP67_DE_ENERGY -0.912696 0.0136372
+PISTA_T5_STRIP68_DE_ENERGY -0.827015 0.0133903
+PISTA_T5_STRIP69_DE_ENERGY -0.962614 0.0134489
+PISTA_T5_STRIP70_DE_ENERGY -0.962614 0.0134489
+PISTA_T5_STRIP71_DE_ENERGY -0.898085 0.0135767
+PISTA_T5_STRIP72_DE_ENERGY -0.832669 0.0134528
+PISTA_T5_STRIP73_DE_ENERGY -0.990237 0.0133834
+PISTA_T5_STRIP74_DE_ENERGY -0.968338 0.0133844
+PISTA_T5_STRIP75_DE_ENERGY -0.885505 0.0135195
+PISTA_T5_STRIP76_DE_ENERGY -0.683021 0.0133554
+PISTA_T5_STRIP77_DE_ENERGY -0.979763 0.0133891
+PISTA_T5_STRIP78_DE_ENERGY -0.979763 0.0133891
+PISTA_T5_STRIP79_DE_ENERGY -0.893999 0.0136703
+PISTA_T5_STRIP80_DE_ENERGY -0.740623 0.0134376
+PISTA_T5_STRIP81_DE_ENERGY -1.04613 0.0135496
+PISTA_T5_STRIP82_DE_ENERGY -1.16503 0.0135471
+PISTA_T5_STRIP83_DE_ENERGY -0.920385 0.0136905
+PISTA_T5_STRIP84_DE_ENERGY -0.891603 0.0134373
+PISTA_T5_STRIP85_DE_ENERGY -0.9969 0.0133745
+PISTA_T5_STRIP86_DE_ENERGY -1.20385 0.0136294
+PISTA_T5_STRIP87_DE_ENERGY -0.944543 0.0137118
+PISTA_T5_STRIP88_DE_ENERGY -0.881446 0.0133605
+PISTA_T5_STRIP89_DE_ENERGY -1.02265 0.0134823
+PISTA_T5_STRIP90_DE_ENERGY -1.12538 0.0135236
+PISTA_T5_STRIP91_DE_ENERGY -0.920107 0.0137741
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA6_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA6_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a0a9b57a77bf4e5ddc955cb8cec7c0422c3560f3
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA6_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T6_STRIP1_DE_ENERGY -0.897049 0.0135176
+PISTA_T6_STRIP2_DE_ENERGY -0.937941 0.0134161
+PISTA_T6_STRIP3_DE_ENERGY -1.73279 0.0152632
+PISTA_T6_STRIP4_DE_ENERGY -1.91036 0.015267
+PISTA_T6_STRIP5_DE_ENERGY -1.8537 0.0155291
+PISTA_T6_STRIP6_DE_ENERGY -1.93742 0.0155031
+PISTA_T6_STRIP7_DE_ENERGY -1.84841 0.0154222
+PISTA_T6_STRIP8_DE_ENERGY -2.04058 0.0153713
+PISTA_T6_STRIP9_DE_ENERGY -1.84915 0.0154882
+PISTA_T6_STRIP10_DE_ENERGY -1.89383 0.0156625
+PISTA_T6_STRIP11_DE_ENERGY -1.90004 0.0154381
+PISTA_T6_STRIP12_DE_ENERGY -1.98403 0.0154268
+PISTA_T6_STRIP13_DE_ENERGY -1.90722 0.0154192
+PISTA_T6_STRIP14_DE_ENERGY -1.82839 0.0155647
+PISTA_T6_STRIP15_DE_ENERGY -1.79173 0.0154016
+PISTA_T6_STRIP16_DE_ENERGY -1.98626 0.0155091
+PISTA_T6_STRIP17_DE_ENERGY -1.77177 0.0153425
+PISTA_T6_STRIP18_DE_ENERGY -1.79442 0.0151823
+PISTA_T6_STRIP19_DE_ENERGY -1.81199 0.0152446
+PISTA_T6_STRIP20_DE_ENERGY -1.92191 0.0151837
+PISTA_T6_STRIP21_DE_ENERGY -1.00578 0.0132992
+PISTA_T6_STRIP22_DE_ENERGY -1.80055 0.015467
+PISTA_T6_STRIP23_DE_ENERGY -1.79673 0.0152811
+PISTA_T6_STRIP24_DE_ENERGY -1.96225 0.0154056
+PISTA_T6_STRIP25_DE_ENERGY -1.80761 0.0153942
+PISTA_T6_STRIP26_DE_ENERGY -1.87096 0.0155833
+PISTA_T6_STRIP27_DE_ENERGY -1.85799 0.0153512
+PISTA_T6_STRIP28_DE_ENERGY -2.06903 0.0153071
+PISTA_T6_STRIP29_DE_ENERGY -1.84865 0.0154497
+PISTA_T6_STRIP30_DE_ENERGY -1.8959 0.0155034
+PISTA_T6_STRIP31_DE_ENERGY -1.89332 0.0154025
+PISTA_T6_STRIP32_DE_ENERGY -1.95622 0.0155149
+PISTA_T6_STRIP33_DE_ENERGY -2.02115 0.0154809
+PISTA_T6_STRIP34_DE_ENERGY -1.89467 0.0153319
+PISTA_T6_STRIP35_DE_ENERGY -1.90651 0.0154527
+PISTA_T6_STRIP36_DE_ENERGY -1.82224 0.0152597
+PISTA_T6_STRIP37_DE_ENERGY -2.08331 0.0154111
+PISTA_T6_STRIP38_DE_ENERGY -1.89278 0.0154335
+PISTA_T6_STRIP39_DE_ENERGY -1.79978 0.0156783
+PISTA_T6_STRIP40_DE_ENERGY -1.8906 0.0153131
+PISTA_T6_STRIP41_DE_ENERGY -2.05502 0.015469
+PISTA_T6_STRIP42_DE_ENERGY -1.89022 0.01537
+PISTA_T6_STRIP43_DE_ENERGY -1.6869 0.0152784
+PISTA_T6_STRIP44_DE_ENERGY -1.75854 0.015099
+PISTA_T6_STRIP45_DE_ENERGY -1.92072 0.0151604
+PISTA_T6_STRIP46_DE_ENERGY -1.07294 0.0134183
+PISTA_T6_STRIP47_DE_ENERGY -1.67293 0.0154779
+PISTA_T6_STRIP48_DE_ENERGY -1.79505 0.0153286
+PISTA_T6_STRIP49_DE_ENERGY -0.881484 0.0133952
+PISTA_T6_STRIP50_DE_ENERGY -1.85816 0.015271
+PISTA_T6_STRIP51_DE_ENERGY -1.77627 0.015439
+PISTA_T6_STRIP52_DE_ENERGY -0.922565 0.0136189
+PISTA_T6_STRIP53_DE_ENERGY -0.922565 0.0136189
+PISTA_T6_STRIP54_DE_ENERGY -1.78939 0.0150727
+PISTA_T6_STRIP55_DE_ENERGY -1.00814 0.0134504
+PISTA_T6_STRIP56_DE_ENERGY -1.04866 0.0136298
+PISTA_T6_STRIP57_DE_ENERGY -1.04866 0.0136298
+PISTA_T6_STRIP58_DE_ENERGY -0.986234 0.0135727
+PISTA_T6_STRIP59_DE_ENERGY -0.866036 0.0136438
+PISTA_T6_STRIP60_DE_ENERGY -1.0152 0.0134509
+PISTA_T6_STRIP61_DE_ENERGY -1.0152 0.0134509
+PISTA_T6_STRIP62_DE_ENERGY -1.0152 0.0134509
+PISTA_T6_STRIP63_DE_ENERGY -1.0152 0.0134509
+PISTA_T6_STRIP64_DE_ENERGY -0.998492 0.0134573
+PISTA_T6_STRIP65_DE_ENERGY -0.89931 0.0135009
+PISTA_T6_STRIP66_DE_ENERGY -0.902726 0.0136997
+PISTA_T6_STRIP67_DE_ENERGY -0.815139 0.0135988
+PISTA_T6_STRIP68_DE_ENERGY -1.17014 0.0135009
+PISTA_T6_STRIP69_DE_ENERGY -0.935177 0.0134841
+PISTA_T6_STRIP70_DE_ENERGY -0.958626 0.0135905
+PISTA_T6_STRIP71_DE_ENERGY -0.857492 0.0135665
+PISTA_T6_STRIP72_DE_ENERGY -1.07171 0.0134798
+PISTA_T6_STRIP73_DE_ENERGY -0.946176 0.0135731
+PISTA_T6_STRIP74_DE_ENERGY -0.978342 0.0137426
+PISTA_T6_STRIP75_DE_ENERGY -0.875729 0.0135784
+PISTA_T6_STRIP76_DE_ENERGY -1.17193 0.0136272
+PISTA_T6_STRIP77_DE_ENERGY -0.911835 0.0133607
+PISTA_T6_STRIP78_DE_ENERGY -0.922977 0.0136152
+PISTA_T6_STRIP79_DE_ENERGY -0.859073 0.0135538
+PISTA_T6_STRIP80_DE_ENERGY -1.12378 0.0134614
+PISTA_T6_STRIP81_DE_ENERGY -0.933485 0.0133873
+PISTA_T6_STRIP82_DE_ENERGY -0.92955 0.0134487
+PISTA_T6_STRIP83_DE_ENERGY -0.816535 0.0134434
+PISTA_T6_STRIP84_DE_ENERGY 0.528785 0.0136473
+PISTA_T6_STRIP85_DE_ENERGY -0.99275 0.0135783
+PISTA_T6_STRIP86_DE_ENERGY -0.961834 0.0136109
+PISTA_T6_STRIP87_DE_ENERGY -0.822144 0.0135458
+PISTA_T6_STRIP88_DE_ENERGY -1.1596 0.0135931
+PISTA_T6_STRIP89_DE_ENERGY -0.993467 0.0136411
+PISTA_T6_STRIP90_DE_ENERGY -0.948849 0.0136387
+PISTA_T6_STRIP91_DE_ENERGY -0.850749 0.0135982
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA7_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA7_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..a1aff145638054c67706c15887a6170666cbb292
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA7_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T7_STRIP1_DE_ENERGY -0.892082 0.0132906
+PISTA_T7_STRIP2_DE_ENERGY -0.8403 0.0133097
+PISTA_T7_STRIP3_DE_ENERGY -1.73768 0.0153255
+PISTA_T7_STRIP4_DE_ENERGY -1.60963 0.0151247
+PISTA_T7_STRIP5_DE_ENERGY -1.78078 0.0152687
+PISTA_T7_STRIP6_DE_ENERGY -1.77859 0.0151475
+PISTA_T7_STRIP7_DE_ENERGY -1.80427 0.0153947
+PISTA_T7_STRIP8_DE_ENERGY -1.65211 0.0151141
+PISTA_T7_STRIP9_DE_ENERGY -1.8316 0.0152588
+PISTA_T7_STRIP10_DE_ENERGY -1.73971 0.0152639
+PISTA_T7_STRIP11_DE_ENERGY -1.80886 0.0152935
+PISTA_T7_STRIP12_DE_ENERGY -1.60254 0.0152988
+PISTA_T7_STRIP13_DE_ENERGY -1.84605 0.0153119
+PISTA_T7_STRIP14_DE_ENERGY -1.73463 0.0152743
+PISTA_T7_STRIP15_DE_ENERGY -1.77426 0.0153958
+PISTA_T7_STRIP16_DE_ENERGY -1.51047 0.0151763
+PISTA_T7_STRIP17_DE_ENERGY -1.68264 0.0150414
+PISTA_T7_STRIP18_DE_ENERGY -1.63106 0.0151081
+PISTA_T7_STRIP19_DE_ENERGY -1.79645 0.0152428
+PISTA_T7_STRIP20_DE_ENERGY -1.60037 0.0151288
+PISTA_T7_STRIP21_DE_ENERGY -1.73529 0.0150575
+PISTA_T7_STRIP22_DE_ENERGY -1.73597 0.0150881
+PISTA_T7_STRIP23_DE_ENERGY -1.70678 0.0151782
+PISTA_T7_STRIP24_DE_ENERGY -1.6321 0.0152293
+PISTA_T7_STRIP25_DE_ENERGY -1.7632 0.0151434
+PISTA_T7_STRIP26_DE_ENERGY -1.69774 0.015178
+PISTA_T7_STRIP27_DE_ENERGY -1.7533 0.0153114
+PISTA_T7_STRIP28_DE_ENERGY -1.59469 0.0152384
+PISTA_T7_STRIP29_DE_ENERGY -1.78753 0.0152242
+PISTA_T7_STRIP30_DE_ENERGY -1.80451 0.0151949
+PISTA_T7_STRIP31_DE_ENERGY -1.80846 0.015315
+PISTA_T7_STRIP32_DE_ENERGY -1.60849 0.0149763
+PISTA_T7_STRIP33_DE_ENERGY -1.5807 0.0152773
+PISTA_T7_STRIP34_DE_ENERGY -1.53348 0.0153311
+PISTA_T7_STRIP35_DE_ENERGY -1.73671 0.0152021
+PISTA_T7_STRIP36_DE_ENERGY -1.63662 0.0150989
+PISTA_T7_STRIP37_DE_ENERGY -1.6412 0.0151704
+PISTA_T7_STRIP38_DE_ENERGY -1.68371 0.0153302
+PISTA_T7_STRIP39_DE_ENERGY -1.70838 0.0153009
+PISTA_T7_STRIP40_DE_ENERGY -1.69646 0.0150131
+PISTA_T7_STRIP41_DE_ENERGY -1.50771 0.015109
+PISTA_T7_STRIP42_DE_ENERGY -1.46564 0.0149373
+PISTA_T7_STRIP43_DE_ENERGY -1.53454 0.0149503
+PISTA_T7_STRIP44_DE_ENERGY -1.61582 0.0150765
+PISTA_T7_STRIP45_DE_ENERGY -1.52652 0.0152627
+PISTA_T7_STRIP46_DE_ENERGY -1.50328 0.0152413
+PISTA_T7_STRIP47_DE_ENERGY -1.64388 0.0152004
+PISTA_T7_STRIP48_DE_ENERGY -1.63257 0.0151178
+PISTA_T7_STRIP49_DE_ENERGY -1.48424 0.0150192
+PISTA_T7_STRIP50_DE_ENERGY -1.52572 0.0150724
+PISTA_T7_STRIP51_DE_ENERGY -1.60864 0.0149852
+PISTA_T7_STRIP52_DE_ENERGY -1.59219 0.0150159
+PISTA_T7_STRIP53_DE_ENERGY -1.61228 0.0150812
+PISTA_T7_STRIP54_DE_ENERGY -1.58272 0.0151537
+PISTA_T7_STRIP55_DE_ENERGY -0.989927 0.0135181
+PISTA_T7_STRIP56_DE_ENERGY -0.991073 0.0135223
+PISTA_T7_STRIP57_DE_ENERGY -0.90215 0.013635
+PISTA_T7_STRIP58_DE_ENERGY -0.835291 0.0136128
+PISTA_T7_STRIP59_DE_ENERGY -0.87185 0.0136501
+PISTA_T7_STRIP60_DE_ENERGY -0.881137 0.0135528
+PISTA_T7_STRIP61_DE_ENERGY -0.93952 0.0136519
+PISTA_T7_STRIP62_DE_ENERGY -0.97184 0.013644
+PISTA_T7_STRIP63_DE_ENERGY -1.02063 0.0136249
+PISTA_T7_STRIP64_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP65_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP66_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP67_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP68_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP69_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP70_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP71_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP72_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP73_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP74_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP75_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP76_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP77_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP78_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP79_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP80_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP81_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP82_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP83_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP84_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP85_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP86_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP87_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP88_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP89_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP90_DE_ENERGY -0.880049 0.0134858
+PISTA_T7_STRIP91_DE_ENERGY -0.880049 0.0134858
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA8_DE.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA8_DE.cal
new file mode 100644
index 0000000000000000000000000000000000000000..64e2bb34078d202c100fd56c9059c6e4a716dd1d
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA8_DE.cal
@@ -0,0 +1,91 @@
+PISTA_T8_STRIP1_DE_ENERGY -1.04005 0.0134607
+PISTA_T8_STRIP2_DE_ENERGY -0.848302 0.0135797
+PISTA_T8_STRIP3_DE_ENERGY -1.53147 0.0145408
+PISTA_T8_STRIP4_DE_ENERGY -1.56331 0.0145773
+PISTA_T8_STRIP5_DE_ENERGY -1.63021 0.014653
+PISTA_T8_STRIP6_DE_ENERGY -1.454 0.0145837
+PISTA_T8_STRIP7_DE_ENERGY -1.57793 0.0146331
+PISTA_T8_STRIP8_DE_ENERGY -1.65646 0.0146101
+PISTA_T8_STRIP9_DE_ENERGY -1.64148 0.0147045
+PISTA_T8_STRIP10_DE_ENERGY -1.56554 0.0147822
+PISTA_T8_STRIP11_DE_ENERGY -1.63681 0.0146839
+PISTA_T8_STRIP12_DE_ENERGY -1.73065 0.014836
+PISTA_T8_STRIP13_DE_ENERGY -1.70436 0.014676
+PISTA_T8_STRIP14_DE_ENERGY -1.5388 0.0147264
+PISTA_T8_STRIP15_DE_ENERGY -1.64387 0.0146783
+PISTA_T8_STRIP16_DE_ENERGY -1.60384 0.0147386
+PISTA_T8_STRIP17_DE_ENERGY -1.55025 0.0146434
+PISTA_T8_STRIP18_DE_ENERGY -1.59219 0.0146435
+PISTA_T8_STRIP19_DE_ENERGY -1.62283 0.0147483
+PISTA_T8_STRIP20_DE_ENERGY -1.67374 0.0146517
+PISTA_T8_STRIP21_DE_ENERGY -1.68453 0.0146948
+PISTA_T8_STRIP22_DE_ENERGY -1.58342 0.0148121
+PISTA_T8_STRIP23_DE_ENERGY -1.71798 0.0147294
+PISTA_T8_STRIP24_DE_ENERGY -1.81649 0.0149067
+PISTA_T8_STRIP25_DE_ENERGY -1.88685 0.014933
+PISTA_T8_STRIP26_DE_ENERGY -1.69823 0.0148936
+PISTA_T8_STRIP27_DE_ENERGY -1.82373 0.015068
+PISTA_T8_STRIP28_DE_ENERGY -1.7633 0.0150538
+PISTA_T8_STRIP29_DE_ENERGY -1.87969 0.0150182
+PISTA_T8_STRIP30_DE_ENERGY -1.75688 0.0152331
+PISTA_T8_STRIP31_DE_ENERGY -1.80249 0.0152049
+PISTA_T8_STRIP32_DE_ENERGY -1.90517 0.01508
+PISTA_T8_STRIP33_DE_ENERGY -1.98202 0.0151671
+PISTA_T8_STRIP34_DE_ENERGY -1.56181 0.0151072
+PISTA_T8_STRIP35_DE_ENERGY -1.85805 0.0154277
+PISTA_T8_STRIP36_DE_ENERGY -1.6855 0.015216
+PISTA_T8_STRIP37_DE_ENERGY -2.01645 0.015431
+PISTA_T8_STRIP38_DE_ENERGY -1.72581 0.0153121
+PISTA_T8_STRIP39_DE_ENERGY -1.94665 0.0153924
+PISTA_T8_STRIP40_DE_ENERGY -1.68187 0.0153934
+PISTA_T8_STRIP41_DE_ENERGY -2.11179 0.0153951
+PISTA_T8_STRIP42_DE_ENERGY -1.67844 0.0151878
+PISTA_T8_STRIP43_DE_ENERGY -1.84018 0.0152832
+PISTA_T8_STRIP44_DE_ENERGY -1.73649 0.0152349
+PISTA_T8_STRIP45_DE_ENERGY -2.06822 0.0151966
+PISTA_T8_STRIP46_DE_ENERGY -1.62705 0.0150168
+PISTA_T8_STRIP47_DE_ENERGY -1.7525 0.0153349
+PISTA_T8_STRIP48_DE_ENERGY -1.00446 0.0137458
+PISTA_T8_STRIP49_DE_ENERGY -1.99096 0.0151863
+PISTA_T8_STRIP50_DE_ENERGY -1.63241 0.0151924
+PISTA_T8_STRIP51_DE_ENERGY -1.84862 0.0153379
+PISTA_T8_STRIP52_DE_ENERGY -0.990184 0.0135372
+PISTA_T8_STRIP53_DE_ENERGY -1.25212 0.0135864
+PISTA_T8_STRIP54_DE_ENERGY -1.25212 0.0135864
+PISTA_T8_STRIP55_DE_ENERGY -1.051 0.0136729
+PISTA_T8_STRIP56_DE_ENERGY -1.051 0.0136729
+PISTA_T8_STRIP57_DE_ENERGY -1.34631 0.0135708
+PISTA_T8_STRIP58_DE_ENERGY -1.34631 0.0135708
+PISTA_T8_STRIP59_DE_ENERGY -1.05235 0.0136476
+PISTA_T8_STRIP60_DE_ENERGY -1.05235 0.0136476
+PISTA_T8_STRIP61_DE_ENERGY -1.24473 0.0135387
+PISTA_T8_STRIP62_DE_ENERGY -1.24473 0.0135387
+PISTA_T8_STRIP63_DE_ENERGY -1.01424 0.0135865
+PISTA_T8_STRIP64_DE_ENERGY -1.01424 0.0135865
+PISTA_T8_STRIP65_DE_ENERGY -1.15273 0.0136081
+PISTA_T8_STRIP66_DE_ENERGY -1.15273 0.0136081
+PISTA_T8_STRIP67_DE_ENERGY -0.956351 0.0136181
+PISTA_T8_STRIP68_DE_ENERGY -0.956351 0.0136181
+PISTA_T8_STRIP69_DE_ENERGY -1.1543 0.0136825
+PISTA_T8_STRIP70_DE_ENERGY -1.1543 0.0136825
+PISTA_T8_STRIP71_DE_ENERGY -1.01035 0.013596
+PISTA_T8_STRIP72_DE_ENERGY -1.01035 0.013596
+PISTA_T8_STRIP73_DE_ENERGY -1.23316 0.0137759
+PISTA_T8_STRIP74_DE_ENERGY -1.23316 0.0137759
+PISTA_T8_STRIP75_DE_ENERGY -1.01184 0.0136308
+PISTA_T8_STRIP76_DE_ENERGY -1.13212 0.0137995
+PISTA_T8_STRIP77_DE_ENERGY -1.15431 0.0137946
+PISTA_T8_STRIP78_DE_ENERGY -0.976352 0.013665
+PISTA_T8_STRIP79_DE_ENERGY -1.03859 0.0137239
+PISTA_T8_STRIP80_DE_ENERGY -1.03859 0.0137239
+PISTA_T8_STRIP81_DE_ENERGY -1.09436 0.0137276
+PISTA_T8_STRIP82_DE_ENERGY -0.912369 0.0135481
+PISTA_T8_STRIP83_DE_ENERGY -1.01923 0.0135935
+PISTA_T8_STRIP84_DE_ENERGY -1.01923 0.0135935
+PISTA_T8_STRIP85_DE_ENERGY -1.158 0.0135701
+PISTA_T8_STRIP86_DE_ENERGY -1.158 0.0135701
+PISTA_T8_STRIP87_DE_ENERGY -1.10738 0.0136939
+PISTA_T8_STRIP88_DE_ENERGY -1.10738 0.0136939
+PISTA_T8_STRIP89_DE_ENERGY -1.19483 0.013565
+PISTA_T8_STRIP90_DE_ENERGY -1.19483 0.013565
+PISTA_T8_STRIP91_DE_ENERGY -1.08061 0.0136943
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA_BACK_E_pol1.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA_BACK_E_pol1.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d1970a34db03a4c9777ed745f12721f0202ed3a6
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA_BACK_E_pol1.cal
@@ -0,0 +1,8 @@
+PISTA_T1_BACK_E 0.724339 0.00283923
+PISTA_T2_BACK_E -0.947787 0.00281543
+PISTA_T3_BACK_E 0.613317 0.00277
+PISTA_T4_BACK_E 3.54698 0.00270628
+PISTA_T5_BACK_E 1.19786 0.00278962
+PISTA_T6_BACK_E -0.097195 0.00276631
+PISTA_T7_BACK_E 0.944995 0.00276341
+PISTA_T8_BACK_E -1.68212 0.00285744
diff --git a/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA_BACK_E_pol2.cal b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA_BACK_E_pol2.cal
new file mode 100644
index 0000000000000000000000000000000000000000..b4004563037538752e06429d0b812d73f321743f
--- /dev/null
+++ b/Projects/ana_e850/Calibration/pista/e850_2023/part2/lucas/PISTA_BACK_E_pol2.cal
@@ -0,0 +1,8 @@
+PISTA_T1_BACK_E -1.88372 0.00297945 -1.77883e-09
+PISTA_T2_BACK_E -3.68984 0.00296001 -1.80814e-09
+PISTA_T3_BACK_E -2.73524 0.0029521 -2.34007e-09
+PISTA_T4_BACK_E 3.1403 0.00272956 -3.09438e-10
+PISTA_T5_BACK_E -0.0841368 0.0028652 -1.02129e-09
+PISTA_T6_BACK_E 0.207806 0.00274848 2.40209e-10
+PISTA_T7_BACK_E -2.59367 0.00297191 -2.82746e-09
+PISTA_T8_BACK_E -5.11096 0.00304725 -2.46456e-09
diff --git a/Projects/ana_e850/Calibration_part1.txt b/Projects/ana_e850/Calibration_part1.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b401a7be76c9e1cfe21acf1cfb08fd8cf484f6fa
--- /dev/null
+++ b/Projects/ana_e850/Calibration_part1.txt
@@ -0,0 +1,37 @@
+CalibrationFilePath
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA1_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA2_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA3_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA4_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA5_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA6_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA7_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA8_DE.cal
+ ./Calibration/pista/e850_2023/part1/lucas/PISTA_BACK_E_pol1.cal
+
+ ./Calibration/VAMOS/CHIO/Chio_E_sec4.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec5.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec6.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec7.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec8.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec9.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec10.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec11.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec12.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec13.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec14.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec15.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec16.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec17.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec18.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec19.cal
+
+ ./Calibration/VAMOS/FPMW/npformat/FPMW1_X.cal
+ ./Calibration/VAMOS/FPMW/npformat/FPMW1_Y.cal
+ ./Calibration/VAMOS/FPMW/npformat/FPMW2_X.cal
+ ./Calibration/VAMOS/FPMW/npformat/FPMW2_Y.cal
+ ./Calibration/VAMOS/FPMW/npformat/FPMW3_X.cal
+ ./Calibration/VAMOS/FPMW/npformat/FPMW3_Y.cal
+ ./Calibration/VAMOS/FPMW/npformat/FPMW4_X.cal
+ ./Calibration/VAMOS/FPMW/npformat/FPMW4_Y.cal
+
diff --git a/Projects/ana_e850/Calibration_part2.txt b/Projects/ana_e850/Calibration_part2.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7fac8ba6e9811bee4185408f6b4539b7ad1c7db1
--- /dev/null
+++ b/Projects/ana_e850/Calibration_part2.txt
@@ -0,0 +1,37 @@
+CalibrationFilePath
+ ./Calibration/pista/e850_2023/part2/lucas/PISTA1_DE.cal
+ ./Calibration/pista/e850_2023/part2/lucas/PISTA2_DE.cal
+ ./Calibration/pista/e850_2023/part2/lucas/PISTA3_DE.cal
+ ./Calibration/pista/e850_2023/part2/lucas/PISTA4_DE.cal
+ ./Calibration/pista/e850_2023/part2/lucas/PISTA5_DE.cal
+ ./Calibration/pista/e850_2023/part2/lucas/PISTA6_DE.cal
+ ./Calibration/pista/e850_2023/part2/lucas/PISTA7_DE.cal
+ ./Calibration/pista/e850_2023/part2/lucas/PISTA8_DE.cal
+ ./Calibration/pista/e850_2023/part2/lucas/PISTA_BACK_E_pol1.cal
+
+ ./Calibration/VAMOS/CHIO/Chio_E_sec4.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec5.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec6.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec7.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec8.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec9.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec10.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec11.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec12.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec13.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec14.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec15.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec16.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec17.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec18.cal
+ ./Calibration/VAMOS/CHIO/Chio_E_sec19.cal
+
+ ./Calibration/VAMOS/FPMW/npformat/FPMW1_X.cal
+ ./Calibration/VAMOS/FPMW/npformat/FPMW1_Y.cal
+ ./Calibration/VAMOS/FPMW/npformat/FPMW2_X.cal
+ ./Calibration/VAMOS/FPMW/npformat/FPMW2_Y.cal
+ ./Calibration/VAMOS/FPMW/npformat/FPMW3_X.cal
+ ./Calibration/VAMOS/FPMW/npformat/FPMW3_Y.cal
+ ./Calibration/VAMOS/FPMW/npformat/FPMW4_X.cal
+ ./Calibration/VAMOS/FPMW/npformat/FPMW4_Y.cal
+
diff --git a/Projects/ana_e850/RunToTreat.txt b/Projects/ana_e850/RunToTreat.txt
index 60adb349ac9adbea0ade2cd59ee90c4fcc1a69f3..389dc92b31c6ab307264f46e80b15a091ff40901 100644
--- a/Projects/ana_e850/RunToTreat.txt
+++ b/Projects/ana_e850/RunToTreat.txt
@@ -1,4 +1,4 @@
 TTreeName
   RawTree
 RootFileName 
-  /home/morfouacep/Physics/ganil/pista/analysisenv-e850-2023/np_raw/run_raw_49.root
+  /home/morfouacep/Physics/ganil/pista/analysisenv-e850-2023/np_raw/run_raw_48.root
diff --git a/Projects/ana_e850/Snakefile b/Projects/ana_e850/Snakefile
new file mode 100644
index 0000000000000000000000000000000000000000..a1a243cabd58e015661ad742531664bd57749fab
--- /dev/null
+++ b/Projects/ana_e850/Snakefile
@@ -0,0 +1,38 @@
+import os
+import subprocess
+
+# Lire le répertoire d'entrée depuis les arguments de configuration
+#input_directory = config["folder"]
+input_directory = "/home/morfouacep/Physics/ganil/pista/analysisenv-e850-2023/np_raw/part1"
+origin = [] 
+# Iterate over files in input_directory
+for filename in os.listdir(input_directory):
+  f = os.path.join(input_directory, filename)
+  if f.endswith(".root"):
+    origin.append(filename)
+
+# Définir le répertoire de sortie pour les fichiers convertis
+phy_directory = "/home/morfouacep/Physics/NPTool/nptool/Projects/ana_e850/root/analysis"
+#phy_directory = "./"
+
+# define target files directory
+analysedfile = []
+for inputfile in origin:
+  #analysedfile.append("/home/morfouacep/Physics/NPTool/nptool/Projects/ana_e850/root/analysis/"+inputfile.replace("_raw_","_"))
+  analysedfile.append("/home/morfouacep/Physics/NPTool/nptool/Projects/ana_e850/root/analysis/"+inputfile)
+
+## batch rules
+rule all:
+  input:
+    expand("{file}",file=analysedfile)
+
+# Règle pour convertir les fichiers .fast dans le dossier .cat en .root
+rule npanalysis:
+    input:
+       f"{input_directory}/{{name}}.root"
+    output:
+        f"{phy_directory}/{{name}}.root"
+    shell:
+        "npanalysis -T {input} RawTree -C Calibration_part1.txt -D pista_e850_part1.detector -O {output}"
+
+
diff --git a/Projects/ana_e850/configs/ConfigExogam.dat b/Projects/ana_e850/configs/ConfigExogam.dat
new file mode 100644
index 0000000000000000000000000000000000000000..c8d65f2c6448892bbec17b183b19929751576646
--- /dev/null
+++ b/Projects/ana_e850/configs/ConfigExogam.dat
@@ -0,0 +1,14 @@
+ConfigExogam
+TDC_THRESHOLDS 0 500000
+MAP_EXO 12 3 0
+MAP_EXO 13 3 1
+MAP_EXO 14 3 2
+MAP_EXO 15 3 3
+MAP_EXO 16 4 0
+MAP_EXO 17 4 1
+MAP_EXO 18 4 2
+MAP_EXO 19 4 3
+MAP_EXO 20 5 0
+MAP_EXO 21 5 1
+MAP_EXO 22 5 2
+MAP_EXO 23 5 3
diff --git a/Projects/ana_e850/configs/ConfigIC.dat b/Projects/ana_e850/configs/ConfigIC.dat
new file mode 100644
index 0000000000000000000000000000000000000000..a35e36594622aebf44514a2f5a76345460c3ada8
--- /dev/null
+++ b/Projects/ana_e850/configs/ConfigIC.dat
@@ -0,0 +1,2 @@
+ConfigIC
+  LOAD_Z_SPLINE ./Calibration/VAMOS/CHIO/Z_spline.root
diff --git a/Projects/ana_e850/configs/ConfigPISTA.dat b/Projects/ana_e850/configs/ConfigPISTA.dat
index 4fa0eba3612b52609c6bf5e4212e5e393554731b..ca6843cf2827190fdee74c7e04d31339e094004d 100644
--- a/Projects/ana_e850/configs/ConfigPISTA.dat
+++ b/Projects/ana_e850/configs/ConfigPISTA.dat
@@ -1,4 +1,5 @@
 ConfigPISTA
+ E_THRESHOLD 1.5
  CALIB_BACK_E_PER_STRIP 0
  BACK_E_TIME_MIN 0
  BACK_E_TIME_MAX 1700
diff --git a/Projects/ana_e850/conversion/convert.C b/Projects/ana_e850/conversion/convert.C
index 9f2ea3a3b549b34e34e0b56dd0f9db1cc4871804..6869b92ba10b643eb4200b58c17d585ea6ddb44e 100644
--- a/Projects/ana_e850/conversion/convert.C
+++ b/Projects/ana_e850/conversion/convert.C
@@ -1,10 +1,11 @@
 #include "convert.h"
 
 ///////////////////////////////////////////////////
-void convert(int run=29){
+void convert(int run=43){
   m_pista = new TPISTAData();
   m_fpmw = new TFPMWData();
   m_ic = new TICData();
+  m_exogam = new TExogamData();
 
   // input tree //
   input_tree = new TChain("AD");
@@ -13,14 +14,20 @@ void convert(int run=29){
 
 
   // output tree //
-  TString output_path = "/home/morfouacep/Physics/ganil/pista/analysisenv-e850-2023/np_raw/";
-  TString filename = output_path+Form("run_raw_%i.root",run);
+  TString output_path;
+  if(run<54)
+    output_path = "/home/morfouacep/Physics/ganil/pista/analysisenv-e850-2023/np_raw/part1/";
+  else 
+    output_path = "/home/morfouacep/Physics/ganil/pista/analysisenv-e850-2023/np_raw/part2/";
+  
+  TString filename = output_path+Form("run_%i.root",run);
   TFile* ofile = TFile::Open(filename,"recreate");
   TTree* output_tree = new TTree("RawTree","RawTree");
   //InitOutputTree();
   output_tree->Branch("PISTA","TPISTAData",&m_pista);
   output_tree->Branch("FPMW","TFPMWData",&m_fpmw);
   output_tree->Branch("IC","TICData",&m_ic);
+  output_tree->Branch("Exogam","TExogamData",&m_exogam);
   output_tree->Branch("T_TMW0_FPMW0",&T_TMW0_FPMW0,"T_TMW0_FPMW0/F");
   output_tree->Branch("T_TMW0_FPMW1",&T_TMW0_FPMW1,"T_TMW0_FPMW1/F");
   output_tree->Branch("T_TMW1_FPMW0",&T_TMW1_FPMW0,"T_TMW1_FPMW0/F");
@@ -30,9 +37,6 @@ void convert(int run=29){
   //output_tree->Branch("TMWPat_0TS",&TMWPat_0TS);
   output_tree->Branch("fVAMOS_TS_sec",&fVAMOS_TS_sec);
   output_tree->Branch("fPISTA_TS_sec",&fPISTA_TS_sec);
-  output_tree->Branch("Exo_Mult",&Exo_Mult,"Exo_Mult/I");
-  output_tree->Branch("Exo_Energy",&Exo_Energy);
-  output_tree->Branch("Exo_Crystal",&Exo_Crystal);
 
 
   int nentries = input_tree->GetEntries();
@@ -97,14 +101,29 @@ void convert(int run=29){
       m_fpmw->SetFPMW_Y(4,strip,charge);
     }
 
-    if(FPMW0_XRawM>0 && FPMW1_XRawM>2 ){
-      for(int p=0;p<Inner6MVM; p++){
-        Exo_Mult = Inner6MVM;
-        Exo_Energy.push_back(Inner6MV[p]);
-        Exo_Crystal.push_back(Inner6MVN[p]);;
+    if(fVAMOS_TS_sec>0 || fPISTA_TS_sec>0){
+      if(Inner6MVM==1){
+        int crystal = Inner6MVN[0];
+        double E = Inner6MV[0];
+        double EHG = Inner20MV[0];
+        double TDC = DeltaTV[0];
+        unsigned long long TS = Inner6MVTS[0];
+        int seg = -1;
+        double outers1 = -1000;
+        double outers2 = -1000;
+        double outers3 = -1000;
+        double outers4 = -1000;
+        for(int i=0; i<OutersVM; i++){
+          seg = OutersVN[i] - 4*crystal;
+          if(seg==0) outers1 = OutersV[i];
+          else if(seg==1) outers2 = OutersV[i];
+          else if(seg==2) outers3 = OutersV[i];
+          else if(seg==3) outers4 = OutersV[i];
+        }
+        m_exogam->SetExo(crystal,E,EHG,TS,TDC,0,0,outers1,outers2,outers3,outers4);
       }
     }
- 
+
     if(fPISTA_TS_sec>0 || fVAMOS_TS_sec>0)
       output_tree->Fill();
   }
@@ -121,9 +140,7 @@ void Clear(){
   m_fpmw->Clear();
   m_ic->Clear();
   m_pista->Clear();
-  Exo_Mult=0;
-  Exo_Energy.clear();
-  Exo_Crystal.clear();
+  m_exogam->Clear();
 }
 
 
@@ -221,9 +238,18 @@ void InitInputTree(){
   input_tree->SetBranchStatus("Inner6MVTS","true");
   input_tree->SetBranchAddress("Inner6MVTS",Inner6MVTS);
 
+  input_tree->SetBranchStatus("OutersVM","true");
+  input_tree->SetBranchAddress("OutersVM",&OutersVM);
+  input_tree->SetBranchStatus("OutersV","true");
+  input_tree->SetBranchAddress("OutersV",OutersV);
+  input_tree->SetBranchStatus("OutersVN","true");
+  input_tree->SetBranchAddress("OutersVN",OutersVN);
 
+  input_tree->SetBranchStatus("Inner20MV","true");
+  input_tree->SetBranchAddress("Inner20MV",Inner20MV);
 
-
+  input_tree->SetBranchStatus("DeltaTV","true");
+  input_tree->SetBranchAddress("DeltaTV",DeltaTV);
 
 }
 
diff --git a/Projects/ana_e850/conversion/convert.h b/Projects/ana_e850/conversion/convert.h
index bbd56ece3e839acecbe257504aa9d547e5cb2e62..dd78a286dd19177efa8486cfa878d69988096cad 100644
--- a/Projects/ana_e850/conversion/convert.h
+++ b/Projects/ana_e850/conversion/convert.h
@@ -1,6 +1,7 @@
 TPISTAData* m_pista;
 TFPMWData* m_fpmw;
 TICData* m_ic;
+TExogamData* m_exogam;
 //TFile* ofile;
 TChain* input_tree;
 //TTree* output_tree;
@@ -11,11 +12,6 @@ float T_TMW0_FPMW1;
 float T_TMW1_FPMW0;
 float T_TMW1_FPMW1;
 
-// Exogam //
-int Exo_Mult;
-vector<float> Exo_Energy;
-vector<int> Exo_Crystal;
-
 // Pat
 UShort_t fFPMWPat_0RawNr[20];
 Int_t fFPMWPat_0RawM;
@@ -64,6 +60,11 @@ Int_t Inner6MVM;
 Float_t Inner6MV[12];
 UShort_t Inner6MVN[12];
 ULong64_t Inner6MVTS[12];
+Float_t Inner20MV[12];
+Float_t DeltaTV[12];
+Float_t OutersV[12];
+UShort_t OutersVN[12];
+Int_t OutersVM;
 
 void InitInputTree();
 void InitOutputTree();
diff --git a/Projects/ana_e850/convert_snakemake.sh b/Projects/ana_e850/convert_snakemake.sh
new file mode 100755
index 0000000000000000000000000000000000000000..b81c889af59bd286a9c701bab259f655ed4f475c
--- /dev/null
+++ b/Projects/ana_e850/convert_snakemake.sh
@@ -0,0 +1,4 @@
+#!/bin/bash
+echo "- executing snakemake file for npanalysis..."
+snakemake --cores 8 --forceall --keep-incomplete --keep-going --rerun-incomplete
+echo "- snakemake executed successfully!"
diff --git a/Projects/ana_e850/macro/AoQ/DrawAoQ.C b/Projects/ana_e850/macro/AoQ/DrawAoQ.C
new file mode 100644
index 0000000000000000000000000000000000000000..c9215a320566e3a391df8783819c6ed0218b6727
--- /dev/null
+++ b/Projects/ana_e850/macro/AoQ/DrawAoQ.C
@@ -0,0 +1,30 @@
+TChain* chain;
+void DrawAoQ(int sec=8, float time_offset=0){
+  chain = new TChain("PhysicsTree");
+  //chain->Add("../../root/analysis/run_48_calib.root");
+  //chain->Add("../../root/analysis/run_48.root");
+  chain->Add("../../root/analysis/run_55.root");
+
+  // T13 //
+  TString to_draw = Form("FF_Brho/3.10761* (FF_T13+%f)/FF_D13*29.9792*sqrt(1-pow(FF_D13,2)/(pow((FF_T13+%f)*29.9792,2)))>>h(1000,2.5,4.5)",time_offset,time_offset) ;
+  TString to_draw2 = Form("FF_Q13:FF_Brho/3.10761* (FF_T13+%f)/FF_D13*29.9792*sqrt(1-pow(FF_D13,2)/(pow((FF_T13+%f)*29.9792,2)))>>h2(500,2.9,3.1,600,30,50)",time_offset,time_offset) ;
+ 
+  // T14 //
+  /*TString to_draw = Form("FF_Brho/3.10761* (FF_T14+%f)/FF_D14*29.9792*sqrt(1-pow(FF_D14,2)/(pow((FF_T14+%f)*29.9792,2)))>>h(1000,2.5,4.5)",time_offset,time_offset) ;
+  TString to_draw2 = Form("FF_Q14:FF_Brho/3.10761* (FF_T14+%f)/FF_D14*29.9792*sqrt(1-pow(FF_D14,2)/(pow((FF_T14+%f)*29.9792,2)))>>h2(500,2.9,3.1,600,30,50)",time_offset,time_offset) ;*/
+  
+  TString cond = Form("FPMW_Section==%i",sec);
+
+  TCanvas * c1 = new TCanvas("c1","c1",1600,1600);
+  c1->Divide(1,2);
+  c1->cd(1)->SetGridx();
+  chain->Draw(to_draw2,cond,"colz",1e7);
+  c1->cd(2);
+  c1->cd(2)->SetGridx();
+  chain->Draw(to_draw,cond,"",1e7);
+
+  //chain->Draw("FF_AoQ13>>haoq(1000,2.5,4.5)",cond,"same",1e7);
+  //TH1F* haoq = (TH1F*)gDirectory->FindObjectAny("haoq");
+  //haoq->SetLineColor(2);
+  //haoq->Draw("same");
+}
diff --git a/Projects/ana_e850/macro/AoQ/T13_offset.cal b/Projects/ana_e850/macro/AoQ/T13_offset.cal
new file mode 100644
index 0000000000000000000000000000000000000000..d653312787c7b388daa0614a062cd78d8bc241cb
--- /dev/null
+++ b/Projects/ana_e850/macro/AoQ/T13_offset.cal
@@ -0,0 +1,20 @@
+T13_SECTION0_OFFSET -0.2 
+T13_SECTION1_OFFSET 1.5 
+T13_SECTION2_OFFSET 1.5 
+T13_SECTION3_OFFSET 0.2 
+T13_SECTION4_OFFSET -1.6 
+T13_SECTION5_OFFSET -0.9 
+T13_SECTION6_OFFSET -1.1 
+T13_SECTION7_OFFSET -1.55 
+T13_SECTION8_OFFSET -1.55
+T13_SECTION9_OFFSET 0.55 
+T13_SECTION10_OFFSET 0.2 
+T13_SECTION11_OFFSET -0.85 
+T13_SECTION12_OFFSET -0.7 
+T13_SECTION13_OFFSET -0.1 
+T13_SECTION14_OFFSET -0.6 
+T13_SECTION15_OFFSET -0.65 
+T13_SECTION16_OFFSET 1.1 
+T13_SECTION17_OFFSET 1.1 
+T13_SECTION18_OFFSET 1.5 
+T13_SECTION19_OFFSET 0.7 
diff --git a/Projects/ana_e850/macro/AoQ/T14_offset.cal b/Projects/ana_e850/macro/AoQ/T14_offset.cal
new file mode 100644
index 0000000000000000000000000000000000000000..f6ff58ac61952339f258c7d50fc3647a4b8e9d63
--- /dev/null
+++ b/Projects/ana_e850/macro/AoQ/T14_offset.cal
@@ -0,0 +1,20 @@
+T14_SECTION0_OFFSET 0.4
+T14_SECTION1_OFFSET 0.8
+T14_SECTION2_OFFSET 0.9 
+T14_SECTION3_OFFSET 0.7 
+T14_SECTION4_OFFSET 1.4 
+T14_SECTION5_OFFSET -0.1
+T14_SECTION6_OFFSET 0.25
+T14_SECTION7_OFFSET 0.0 
+T14_SECTION8_OFFSET -2.1  
+T14_SECTION9_OFFSET -1.8 
+T14_SECTION10_OFFSET -0.9 
+T14_SECTION11_OFFSET -1.5 
+T14_SECTION12_OFFSET -0.55 
+T14_SECTION13_OFFSET 0.15 
+T14_SECTION14_OFFSET 0.0 
+T14_SECTION15_OFFSET 0.3 
+T14_SECTION16_OFFSET -0.9 
+T14_SECTION17_OFFSET 0.8 
+T14_SECTION18_OFFSET -0.7 
+T14_SECTION19_OFFSET 0.1 
diff --git a/Projects/ana_e850/macro/Mass/FillHistoMass.C b/Projects/ana_e850/macro/Mass/FillHistoMass.C
index f2d303d66caffbf8dfc021b1751535aaa93d5758..ab8e9d206da2f9e4a97e95b0e0752cdad86db888 100644
--- a/Projects/ana_e850/macro/Mass/FillHistoMass.C
+++ b/Projects/ana_e850/macro/Mass/FillHistoMass.C
@@ -11,7 +11,7 @@ void LoadCut(string part){
 }
 
 /////////////////////////////////////////////////////////////////
-void FillHistoMass(string part="part2"){
+void FillHistoMass(string part="part1"){
 
   LoadCut(part);
 
@@ -25,7 +25,6 @@ void FillHistoMass(string part="part2"){
     chain->Add("../../root/analysis/run_36.root");
     chain->Add("../../root/analysis/run_37.root");
     chain->Add("../../root/analysis/run_39.root");
-    chain->Add("../../root/analysis/run_40.root");
     chain->Add("../../root/analysis/run_41.root");
     chain->Add("../../root/analysis/run_42.root");
     chain->Add("../../root/analysis/run_43.root");
@@ -60,23 +59,24 @@ void FillHistoMass(string part="part2"){
   double Elab;
   double Mass;
   double Ex240Pu;
-  double fTS_TMW;
+  double VAMOS_TS_hour;
   int Telescope;
+  int m_2alpha;
 
   chain->SetBranchStatus("DeltaEcorr","true");
   chain->SetBranchAddress("DeltaEcorr",&DeltaEcorr);
   chain->SetBranchStatus("Elab","true");
   chain->SetBranchAddress("Elab",&Elab);
-  chain->SetBranchStatus("Mass","true");
-  chain->SetBranchAddress("Mass",&Mass);
+  chain->SetBranchStatus("FF_Mass13","true");
+  chain->SetBranchAddress("FF_Mass13",&Mass);
   chain->SetBranchStatus("Ex240Pu","true");
   chain->SetBranchAddress("Ex240Pu",&Ex240Pu);
-  chain->SetBranchStatus("fTS_TMW","true");
-  chain->SetBranchAddress("fTS_TMW",&fTS_TMW);
+  chain->SetBranchStatus("VAMOS_TS_hour","true");
+  chain->SetBranchAddress("VAMOS_TS_hour",&VAMOS_TS_hour);
   chain->SetBranchStatus("Telescope","true");
   chain->SetBranchAddress("Telescope",&Telescope);
-
-
+  chain->SetBranchStatus("m_2alpha","true");
+  chain->SetBranchAddress("m_2alpha",&m_2alpha);
 
   TH1F *hmass[11];
   TH2F *hPID[8];
@@ -101,24 +101,26 @@ void FillHistoMass(string part="part2"){
       cout << "\033[34m\r Processing tree..." << (double)i/nentries*100 << "\% done" << flush;
     }
 
-    if(fTS_TMW>0){
-
-      if(Telescope>0) hPID[Telescope-1]->Fill(Elab,DeltaEcorr);
-
-      if(cut10Be[Telescope-1]->IsInside(Elab,DeltaEcorr)){
-        hEx->Fill(Ex240Pu);
-        hMassAll->Fill(Mass);
-        if(Ex240Pu>5.5 && Ex240Pu<6.5) hmass[0]->Fill(Mass);
-        else if(Ex240Pu>6.5 && Ex240Pu<7.5) hmass[1]->Fill(Mass);
-        else if(Ex240Pu>7.5 && Ex240Pu<8.5) hmass[2]->Fill(Mass);
-        else if(Ex240Pu>8.5 && Ex240Pu<9.5) hmass[3]->Fill(Mass);
-        else if(Ex240Pu>9.5 && Ex240Pu<10.5) hmass[4]->Fill(Mass);
-        else if(Ex240Pu>10.5 && Ex240Pu<11.5) hmass[5]->Fill(Mass);
-        else if(Ex240Pu>11.5 && Ex240Pu<12.5) hmass[6]->Fill(Mass);
-        else if(Ex240Pu>12.5 && Ex240Pu<13.5) hmass[7]->Fill(Mass);
-        else if(Ex240Pu>13.5 && Ex240Pu<14.5) hmass[8]->Fill(Mass);
-        else if(Ex240Pu>14.5 && Ex240Pu<15.5) hmass[9]->Fill(Mass);
-        else if(Ex240Pu>15.5 && Ex240Pu<16.5) hmass[10]->Fill(Mass);
+    if(VAMOS_TS_hour>0){
+
+      if(Telescope>0) {
+        if(m_2alpha==0) hPID[Telescope-1]->Fill(Elab,DeltaEcorr);
+
+        if(cut10Be[Telescope-1]->IsInside(Elab,DeltaEcorr)){
+          hEx->Fill(Ex240Pu);
+          hMassAll->Fill(Mass);
+          if(Ex240Pu>5.5 && Ex240Pu<6.5) hmass[0]->Fill(Mass);
+          else if(Ex240Pu>6.5 && Ex240Pu<7.5) hmass[1]->Fill(Mass);
+          else if(Ex240Pu>7.5 && Ex240Pu<8.5) hmass[2]->Fill(Mass);
+          else if(Ex240Pu>8.5 && Ex240Pu<9.5) hmass[3]->Fill(Mass);
+          else if(Ex240Pu>9.5 && Ex240Pu<10.5) hmass[4]->Fill(Mass);
+          else if(Ex240Pu>10.5 && Ex240Pu<11.5) hmass[5]->Fill(Mass);
+          else if(Ex240Pu>11.5 && Ex240Pu<12.5) hmass[6]->Fill(Mass);
+          else if(Ex240Pu>12.5 && Ex240Pu<13.5) hmass[7]->Fill(Mass);
+          else if(Ex240Pu>13.5 && Ex240Pu<14.5) hmass[8]->Fill(Mass);
+          else if(Ex240Pu>14.5 && Ex240Pu<15.5) hmass[9]->Fill(Mass);
+          else if(Ex240Pu>15.5 && Ex240Pu<16.5) hmass[10]->Fill(Mass);
+        }
       }
     }
   }
diff --git a/Projects/ana_e850/macro/Mass/FitMass.C b/Projects/ana_e850/macro/Mass/FitMass.C
index f4f4b2978ba82adc88fe688996ecf5e1ab7f87bf..62513072da61b7a46eeccfcf64de85a8ebe1a238 100644
--- a/Projects/ana_e850/macro/Mass/FitMass.C
+++ b/Projects/ana_e850/macro/Mass/FitMass.C
@@ -5,10 +5,13 @@ TFile* ofile;
 void FitMass(){
 
   TFile* ifile = new TFile("histo_mass_all.root","read");
+  //TFile* ifile = new TFile("histo_mass_orig.root","read");
+  //TFile* ifile = new TFile("histo_mass_part2.root","read");
 
   ofile = new TFile("histo_mass_fitted.root","recreate");
 
   for(int i=0; i<10; i++){
+  //for(int i=2; i<3; i++){
     int Ex = i+6;
     string Energy = to_string(Ex) + "MeV";
     TString histo_name = Form("hmass_%iMeV",i+6);
@@ -41,17 +44,28 @@ void Fit(TH1F* hmass,string Energy){
 
   for(int i=0; i<NumberOfA; i++){
     g[i] = new TF1(Form("g%i",i),"gaus",A-0.4,A+0.4);   
-    g[i]->SetParLimits(0,0.1,20000);
-    g[i]->SetParLimits(1,A-0.1,A+0.1);
-    g[i]->SetParLimits(2,0.1,0.45);
-  
+    if(i==0){
+      g[i]->SetParLimits(0,0.1,20000);
+      g[i]->SetParLimits(1,A-0.2,A+0.2);
+      g[i]->SetParLimits(2,0.1,0.4);
+    }
+    else if(i>0){
+      g[i]->SetParameter(0,g[i-1]->GetParameter(0));
+      g[i]->SetParameter(1,g[i-1]->GetParameter(1));
+      g[i]->SetParameter(2,g[i-1]->GetParameter(2));
+    
+      g[i]->SetParLimits(1,A-0.2,A+0.2);
+      g[i]->SetParLimits(2,0.1,0.3);
+
+    }
+    
     hmass->Fit(g[i],"qR");
 
     g[i]->Draw("lsame");
     g[i]->GetParameters(&para[3*i]);
 
     A++;
-
+    
   }
 
 
@@ -65,8 +79,12 @@ void Fit(TH1F* hmass,string Energy){
 
   A = Amin;
   for(int i=0; i<NumberOfA; i++){
-    total->SetParLimits(3*i+1,A-0.05,A+0.05);
-    total->SetParLimits(3*i+2,0.25,0.35);
+    total->SetParameter(3*i,g[i]->GetParameter(0));
+    total->SetParameter(3*i+1,g[i]->GetParameter(1));
+    total->SetParameter(3*i+2,g[i]->GetParameter(2));
+    total->SetParLimits(3*i+1,A-0.2,A+0.2);
+    total->SetParLimits(3*i+2,0.1,0.4);
+    //cout << A << " " << g[i]->GetParameter(2) << endl;
     A++;
   }
   total->SetParameters(para);
@@ -86,8 +104,8 @@ void Fit(TH1F* hmass,string Energy){
     /*cout << "A=  " << A << endl;
     cout << "Amplitude= " << Amplitude << endl;
     cout << "Mean= " << mean << endl;
-    cout << "Sigma= " << sigma << endl;*/
-
+    cout << "Sigma= " << sigma << endl;
+*/
     Integral[i] = Amplitude*sigma*sqrt(2*TMath::Pi());
     Integral_err[i] = sqrt(2*TMath::Pi()*(pow(sigma*Amplitude_err,2) + pow(Amplitude*sigma_err,2)));
     //Integral_err[i] = sqrt(Integral[i]);
diff --git a/Projects/ana_e850/macro/Mass/check_gamma.C b/Projects/ana_e850/macro/Mass/check_gamma.C
new file mode 100644
index 0000000000000000000000000000000000000000..aa2a61426cec5d9514aa930659557267911df233
--- /dev/null
+++ b/Projects/ana_e850/macro/Mass/check_gamma.C
@@ -0,0 +1,171 @@
+TChain* chain;
+void LoadRootFiles();
+void LoadCuts();
+
+TCutG* cut44;
+TCutG* cut40;
+TCutG* cut10Be[8];
+
+double Exo_EDC_vamos;
+double Exo_EDC_pista;
+int FPMW_Section;
+int Telescope;
+double FF_Mass;
+double FF_DE;
+double FF_Eres;
+int m_2alpha;
+double DeltaEcorr;
+double Elab;
+
+
+///////////////////////////////////////////
+void LoadRootFiles(string part="part1")
+{
+  chain = new TChain("PhysicsTree");
+  if(part=="part1"){
+    chain->Add("../../root/analysis/run_28.root");
+    chain->Add("../../root/analysis/run_29.root");
+    chain->Add("../../root/analysis/run_30.root");
+    chain->Add("../../root/analysis/run_31.root");
+    chain->Add("../../root/analysis/run_32.root");
+    chain->Add("../../root/analysis/run_36.root");
+    chain->Add("../../root/analysis/run_37.root");
+    chain->Add("../../root/analysis/run_39.root");
+    chain->Add("../../root/analysis/run_41.root");
+    chain->Add("../../root/analysis/run_42.root");
+    chain->Add("../../root/analysis/run_43.root");
+    chain->Add("../../root/analysis/run_44.root");
+    chain->Add("../../root/analysis/run_45.root");
+    chain->Add("../../root/analysis/run_46.root");
+    chain->Add("../../root/analysis/run_48.root");
+    chain->Add("../../root/analysis/run_49.root");
+    chain->Add("../../root/analysis/run_50.root");
+    chain->Add("../../root/analysis/run_51.root");
+    chain->Add("../../root/analysis/run_52.root");
+    chain->Add("../../root/analysis/run_53.root");
+  }
+  else if(part=="part2"){
+    chain->Add("../../root/analysis/run_55.root");
+    chain->Add("../../root/analysis/run_56.root");
+    chain->Add("../../root/analysis/run_57.root");
+    chain->Add("../../root/analysis/run_58.root");
+    chain->Add("../../root/analysis/run_59.root");
+    chain->Add("../../root/analysis/run_60.root");
+    chain->Add("../../root/analysis/run_61.root");
+    chain->Add("../../root/analysis/run_62.root");
+    chain->Add("../../root/analysis/run_63.root");
+    chain->Add("../../root/analysis/run_64.root");
+    chain->Add("../../root/analysis/run_65.root");
+    chain->Add("../../root/analysis/run_66.root");
+    chain->Add("../../root/analysis/run_67.root");
+    chain->Add("../../root/analysis/run_68.root");
+    chain->Add("../../root/analysis/run_69.root");
+  }
+}
+
+///////////////////////////////////////////
+void LoadCuts(string part)
+{
+  TFile* ifile = new TFile("cut44.root");
+  cut44 = (TCutG*) ifile->FindObjectAny("cut44");
+  ifile->Close();
+
+  ifile = new TFile("cut40.root");
+  cut40 = (TCutG*) ifile->FindObjectAny("cut40");
+  ifile->Close();
+
+  string path = "cut/" + part + "/cut10Be.root";
+  TFile* fcut = new TFile(path.c_str());
+  for(int i=0; i<8; i++){
+    cut10Be[i]= (TCutG*) fcut->Get(Form("cut10Be_det%i",i+1));
+  }
+}
+
+///////////////////////////////////////////
+void check_gamma(string part="part1")
+{
+  LoadCuts(part);
+  LoadRootFiles(part);
+
+  TString ofile_name = Form("mass_check_%s.root",part.c_str());
+  TFile* ofile  = new TFile(ofile_name,"recreate");
+  TH2F* hmass44 = new TH2F("hmass44","hmass44",20,0,20,1000,60,160);
+  TH2F* h108    = new TH2F("h108","h108",20,0,20,500,0,2000);
+  TH2F* h106    = new TH2F("h106","h106",20,0,20,500,0,2000);
+  TH2F* h100    = new TH2F("h100","h100",20,0,20,500,0,2000);
+  TH2F* h98     = new TH2F("h98","h98",20,0,20,500,0,2000);
+
+  TH1F* hg108   = new TH1F("hg108","hg108",500,0,2000);
+  TH1F* hg106   = new TH1F("hg106","hg106",500,0,2000);
+  TH1F* hg100   = new TH1F("hg100","hg100",500,0,2000);
+  TH1F* hg98    = new TH1F("hg98","hg98",500,0,2000);
+  TH1F* hg10Be  = new TH1F("hg10Be","hg10Be",1000,0,4000);
+
+  chain->SetBranchStatus("Exo_EDC_vamos",true);
+  chain->SetBranchAddress("Exo_EDC_vamos",&Exo_EDC_vamos);
+  chain->SetBranchStatus("Exo_EDC_pista",true);
+  chain->SetBranchAddress("Exo_EDC_pista",&Exo_EDC_pista);
+  chain->SetBranchStatus("FPMW_Section",true);
+  chain->SetBranchAddress("FPMW_Section",&FPMW_Section);
+  chain->SetBranchStatus("FF_Mass13",true);
+  chain->SetBranchAddress("FF_Mass13",&FF_Mass);
+  chain->SetBranchStatus("FF_DE",true);
+  chain->SetBranchAddress("FF_DE",&FF_DE);
+  chain->SetBranchStatus("FF_Eres",true);
+  chain->SetBranchAddress("FF_Eres",&FF_Eres);
+  chain->SetBranchStatus("Telescope",true);
+  chain->SetBranchAddress("Telescope",&Telescope);
+  chain->SetBranchStatus("m_2alpha",true);
+  chain->SetBranchAddress("m_2alpha",&m_2alpha);
+  chain->SetBranchStatus("DeltaEcorr",true);
+  chain->SetBranchAddress("DeltaEcorr",&DeltaEcorr);
+  chain->SetBranchStatus("Elab",true);
+  chain->SetBranchAddress("Elab",&Elab);
+
+  int nentries = chain->GetEntries();
+
+  for(int i=0; i<nentries; i++){
+    if(i%100000==0) cout << i*100./nentries << "% \r" << flush;
+    chain->GetEntry(i);
+
+    if(m_2alpha==0 && cut10Be[Telescope-1]->IsInside(Elab,DeltaEcorr)){
+      hg10Be->Fill(Exo_EDC_pista);
+    }
+
+    if(cut44->IsInside(FF_Eres,FF_DE)){
+      hmass44->Fill(FPMW_Section,FF_Mass);
+      if(abs(FF_Mass-108)<0.5){
+        h108->Fill(FPMW_Section,Exo_EDC_vamos);
+        hg108->Fill(Exo_EDC_vamos);
+      }
+      else if(abs(FF_Mass-106)<0.5){
+        h106->Fill(FPMW_Section,Exo_EDC_vamos);
+        hg106->Fill(Exo_EDC_vamos);
+      }
+    }
+
+    else if(cut40->IsInside(FF_Eres,FF_DE)){
+      if(abs(FF_Mass-100)<0.5){
+        h100->Fill(FPMW_Section,Exo_EDC_vamos);
+        hg100->Fill(Exo_EDC_vamos);
+      }
+      else if(abs(FF_Mass-98)<0.5){
+        h98->Fill(FPMW_Section,Exo_EDC_vamos);
+        hg98->Fill(Exo_EDC_vamos);
+      }
+    }
+  }
+
+  hmass44->Write();
+  h108->Write();
+  h106->Write();
+  h100->Write();
+  h98->Write();
+
+  hg108->Write();
+  hg106->Write();
+  hg100->Write();
+  hg98->Write();
+
+  ofile->Close();
+}
diff --git a/Projects/ana_e850/macro/Mass/cut/part1/cut10Be.root b/Projects/ana_e850/macro/Mass/cut/part1/cut10Be.root
new file mode 100644
index 0000000000000000000000000000000000000000..dfcc27b9a0366db93444f3cc40d0db54dca2a19c
Binary files /dev/null and b/Projects/ana_e850/macro/Mass/cut/part1/cut10Be.root differ
diff --git a/Projects/ana_e850/macro/Mass/cut/part2/cut10Be.root b/Projects/ana_e850/macro/Mass/cut/part2/cut10Be.root
new file mode 100644
index 0000000000000000000000000000000000000000..aec1a32eae0542cd3ba897703c78e163a32e15a8
Binary files /dev/null and b/Projects/ana_e850/macro/Mass/cut/part2/cut10Be.root differ
diff --git a/Projects/ana_e850/macro/Mass/cut40.root b/Projects/ana_e850/macro/Mass/cut40.root
new file mode 100644
index 0000000000000000000000000000000000000000..3904161f53b56bf6740b01b63eab793fabe3bbe3
Binary files /dev/null and b/Projects/ana_e850/macro/Mass/cut40.root differ
diff --git a/Projects/ana_e850/macro/Mass/cut44.root b/Projects/ana_e850/macro/Mass/cut44.root
new file mode 100644
index 0000000000000000000000000000000000000000..4ef995696fe4ab323ea9d9796593c661ab6b3760
Binary files /dev/null and b/Projects/ana_e850/macro/Mass/cut44.root differ
diff --git a/Projects/ana_e850/macro/chio/FillSelectTree.C b/Projects/ana_e850/macro/chio/FillSelectTree.C
index c6102a73ff0680c8fcd6ecb1ac000cddcb870eba..8bdd2c3399d6959050dec885af48352098baa093 100644
--- a/Projects/ana_e850/macro/chio/FillSelectTree.C
+++ b/Projects/ana_e850/macro/chio/FillSelectTree.C
@@ -8,6 +8,7 @@ int FPMW_Section;
 TICPhysics* IC;
 
 TCutG* cut[20];
+TCutG* cut1;
 
 /////////////////////////////////////////////////////////
 void LoadCuts(){
@@ -25,14 +26,14 @@ void LoadRootFile(){
 
   IC = new TICPhysics();
 
-  chain->SetBranchStatus("FF_Q","true");
-  chain->SetBranchAddress("FF_Q",&FF_Q);
+  chain->SetBranchStatus("FF_Q13","true");
+  chain->SetBranchAddress("FF_Q13",&FF_Q);
 
-  chain->SetBranchStatus("FF_Gamma","true");
-  chain->SetBranchAddress("FF_Gamma",&FF_Gamma);
+  chain->SetBranchStatus("FF_Gamma13","true");
+  chain->SetBranchAddress("FF_Gamma13",&FF_Gamma);
 
-  chain->SetBranchStatus("FF_AoQ","true");
-  chain->SetBranchAddress("FF_AoQ",&FF_AoQ);
+  chain->SetBranchStatus("FF_AoQ13","true");
+  chain->SetBranchAddress("FF_AoQ13",&FF_AoQ);
   
   chain->SetBranchStatus("FPMW_Section","true");
   chain->SetBranchAddress("FPMW_Section",&FPMW_Section);
diff --git a/Projects/ana_e850/macro/chio/Minimization.C b/Projects/ana_e850/macro/chio/Minimization.C
index 91f3bd0aa9e8aecbb60ac4df70e324c222341642..7dd6412251c5393b8a0b3fb1d572373202a6ef9a 100644
--- a/Projects/ana_e850/macro/chio/Minimization.C
+++ b/Projects/ana_e850/macro/chio/Minimization.C
@@ -1,24 +1,31 @@
 TChain *chain;
 double* parameter;
-const int nb_parameter = 10;
+const int nb_parameter = 11;
 int iteration = 0;
 int m_section = 9;
 
 int NumericalMinimization(const char* minName = "Minuit", const char* algoName = "");
 double ConstantFactor(const double* parameter);
 
+TH2F* h2 = new TH2F("h2","h2",1000,2.5,4.5,500,30,40);
+
 ///////////////////////////////////////////////////
-void Minimization(int section=9){
+void Minimization(int section=8){
   m_section = section;
   chain = new TChain("tree"); 
   chain->Add("SelectTree.root");
 
-  double buffer[nb_parameter] = {1,1,1,1,1,1,1,1,1,1};
+  //double buffer[nb_parameter] = {1,1,1,1,1,1,1,1,1,1,1};
+  double buffer[nb_parameter] = {0.02411,0.8686,0.7199,0.6233,0.4697,0.9787,0.9892,2.1038,1.9429,1.754,2.5};
   parameter = new double[nb_parameter];
   parameter = buffer;
 
   ConstantFactor(parameter);
   NumericalMinimization("Minuit","Migrad");
+
+  TCanvas* c1 = new TCanvas("c1","c1",800,800);
+  c1->cd();
+  h2->Draw("colz");
 }
 
 
@@ -38,9 +45,10 @@ int NumericalMinimization(const char* minName, const char* algoName){
 
   min->SetFunction(f);
 
-  for(int i=0; i<nb_parameter; i++){
-    string seg_name = "seg"+to_string(i+1);
-    min->SetLimitedVariable(i,seg_name,parameter[i],0.01,parameter[i]-0.5,parameter[i]+0.5);
+  min->SetLimitedVariable(0,"scalor",parameter[0],0.01,parameter[0]*0.8,parameter[0]*1.2);
+  for(int i=1; i<nb_parameter; i++){
+    string seg_name = "seg"+to_string(i);
+    min->SetLimitedVariable(i,seg_name,parameter[i],0.01,parameter[i]*0.8,parameter[i]*1.2);
   }
   //min->SetLimitedVariable(nb_parameter-1,"scalor",parameter[nb_parameter-1],0.01,0,2);
 
@@ -51,14 +59,15 @@ int NumericalMinimization(const char* minName, const char* algoName){
   ofstream ofile;
   string filename = "Chio_E_sec" + to_string(m_section) + ".cal";
   ofile.open(filename.c_str());
-  double init_par[nb_parameter] = {0.8686,0.7199,0.6233,0.4697,0.9787,0.9892,2.1038,1.9429,1.754,2.5};
+  double init_par[nb_parameter] = {0.02411,0.8686,0.7199,0.6233,0.4697,0.9787,0.9892,2.1038,1.9429,1.754,2.5};
   cout << "**********************" << endl;
   cout << "Minimum : " << endl;
-  for(int i=0; i<nb_parameter; i++){ 
-    cout << "par" << i+1 << " = " << xs[i] << " -> " << xs[i]*init_par[i] << endl;
-    string parname;
-    parname = "IC_SEC"+to_string(m_section)+"_SEG"+to_string(i+1)+"_ALIGN";
-    ofile << parname << " " << xs[i]*init_par[i] << endl;
+  string parname = "IC_ETOT_SCALING_SEC" + to_string(m_section);
+  ofile << parname << " "  << xs[0] << endl;
+  for(int i=1; i<nb_parameter; i++){ 
+    cout << "par" << i << " = " << xs[i] << " -> " << xs[i] << endl;
+    parname = "IC_SEC"+to_string(m_section)+"_SEG"+to_string(i)+"_ALIGN";
+    ofile << parname << " " << xs[i] << endl;
   }
   ofile.close();
   cout << "MinValue = " << min->MinValue() << endl;
@@ -77,7 +86,6 @@ double ConstantFactor(const double* parameter){
   double FF_Gamma;
   double FF_AoQ;
   double FF_Q;
-  double FF_Etot;
   int FPMW_Section;
 
 
@@ -89,22 +97,19 @@ double ConstantFactor(const double* parameter){
   chain->SetBranchStatus("FF_AoQ","true");
   chain->SetBranchAddress("FF_AoQ",&FF_AoQ);
 
-  chain->SetBranchStatus("FF_Etot","true");
-  chain->SetBranchAddress("FF_Etot",&FF_Etot);
-
   chain->SetBranchStatus("FF_Q","true");
   chain->SetBranchAddress("FF_Q",&FF_Q);
 
   chain->SetBranchStatus("FPMW_Section","true");
   chain->SetBranchAddress("FPMW_Section",&FPMW_Section);
 
-
   chain->SetBranchStatus("fIC","true");
   chain->SetBranchAddress("IC",&IC);
 
 
   int nentries = chain->GetEntries();
 
+  h2->Reset();
   double Etot=0;
   double M1;
   double Q;
@@ -114,15 +119,16 @@ double ConstantFactor(const double* parameter){
     M1 = 0;
     Q = 0;
     if(FPMW_Section==m_section && FF_AoQ>2){
-      for(int j=0; j<nb_parameter-1; j++){
-        Etot += parameter[j]*IC->fIC[j];
-
+      for(int j=1; j<nb_parameter; j++){
+        Etot += parameter[j]*IC->fIC[j-1];
       }
-      Etot = parameter[nb_parameter-1]*Etot;
+      Etot = parameter[0]*Etot;
       M1 = Etot/931.5016/(FF_Gamma-1);
       Q = M1/FF_AoQ;
 
-      distance += pow((Q - 1540),2);
+      distance += pow((Q - 36),2);
+
+      h2->Fill(FF_AoQ,Q);
       /*if(cut1->IsInside(FF_AoQ,FF_Q)){
         if(Q>0) distance += pow((Q - 1410),2);
       }
diff --git a/Projects/ana_e850/macro/mwpc/HistoPosFiller.cxx b/Projects/ana_e850/macro/mwpc/HistoPosFiller.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..2a3958f462f6d1d775a0ba1a9c9d7e96366d0dde
--- /dev/null
+++ b/Projects/ana_e850/macro/mwpc/HistoPosFiller.cxx
@@ -0,0 +1,139 @@
+#include <vector> // Needed to store histograms.
+
+void HistoPosFiller(int RunStart, int RunStop) {
+  // **************************************************************************
+  // This macro simply fill an histogram per FPMW and store them in a root file.
+  // It is needed for the input of the LinearisationYaml.cxx macro.
+  //
+  // Input :
+  //    linea_%d : A root file containing the reconstructed position of the
+  //    FPMW. l24
+  //
+  //    RunStart/Stop : Number of the starting/stop run
+  //
+  //
+  // Output:
+  //    HistUnlinea.root : The histograms of reconstructed position l116
+  // **************************************************************************
+
+  //========================================================================
+  //-------------------Open tree and define Hist----------------------------
+  //========================================================================
+
+  // Import the chain
+  TChain *ch = new TChain("PhysicsTree");
+  for (int run = RunStart; run <= RunStop; run++) {
+    ch->Add(Form("../../root/analysis/linea_%d.root", run));
+  } // End of run loop
+
+  // Declaration of the histograms storing the reconstructed position
+  vector<TH1F *> Position;
+  for (int i = 1; i <= 4; i++) {
+    std::string PosXName = "hPositionXDet" + std::to_string(i);
+    std::string PosXTitle = "PositionXDet" + std::to_string(i);
+    std::string PosYName = "hPositionYDet" + std::to_string(i);
+    std::string PosYTitle = "PositionYDet" + std::to_string(i);
+    TH1F *PosX;
+    TH1F *PosY;
+
+    // Be wary here, the code is very sensible to the number of bin
+    // and to the span of the histograms. One must be sure that when
+    // executiong the LinearisationYaml.cxx there is no error.
+
+    int LowBin = -90, Highbin = 90;
+    int Nbin = (Highbin - LowBin) * 10;
+    int LowBin2 = -1000, Highbin2 = 1000;
+    int Nbin2 = (Highbin2 - LowBin2) * 10;
+
+    if (i == 1) {
+      PosX =
+          new TH1F(PosXName.c_str(), PosXTitle.c_str(), Nbin, LowBin, Highbin);
+      PosY =
+          new TH1F(PosYName.c_str(), PosYTitle.c_str(), Nbin, LowBin, Highbin);
+    } // End if det 1
+
+    if (i == 2) {
+      PosX =
+          new TH1F(PosXName.c_str(), PosXTitle.c_str(), Nbin, LowBin, Highbin);
+      PosY =
+          new TH1F(PosYName.c_str(), PosYTitle.c_str(), Nbin, LowBin, Highbin);
+
+    } // End if det 2
+
+    if (i == 3 || i == 4) {
+      PosX = new TH1F(PosXName.c_str(), PosXTitle.c_str(), Nbin2, LowBin2,
+                      Highbin2);
+      PosY =
+          new TH1F(PosYName.c_str(), PosYTitle.c_str(), Nbin, LowBin, Highbin);
+    } // End if det 3 or 4
+
+    Position.push_back(PosX);
+    Position.push_back(PosY);
+  } // End of i loop
+
+  //========================================================================
+  //-----------------------Importing FPMW-----------------------------------
+  //========================================================================
+
+  TFPMWPhysics *FPMW = new TFPMWPhysics();
+  ch->SetBranchAddress("FPMW", &FPMW);
+
+  //========================================================================
+  //---------------------------Treat Event----------------------------------
+  //========================================================================
+  int Nentries = ch->GetEntries();
+  int GoodEntries = 0;
+
+  for (int entries = 0; entries < Nentries; entries++) {
+    ch->GetEntry(entries);
+    if (entries % 100000 == 0) {
+      cout << "\033[92m\r Processing tree..."
+           << (double)entries / Nentries * 100 << "\% done" << flush;
+    } // End cout loading
+
+    // Verification that we are not on a empty event for the FPMW
+    if (FPMW->DetectorNbr.size() > 0) {
+      GoodEntries += 1;
+
+      // Parsing through the different FPMW
+      for (int DetectorNbr = 0; DetectorNbr < FPMW->DetectorNbr.size();
+           DetectorNbr++) {
+
+        double X = FPMW->PositionX[DetectorNbr];
+        double Y = FPMW->PositionY[DetectorNbr];
+
+        if (DetectorNbr >= 0 && DetectorNbr < 4) {
+          Position[DetectorNbr * 2]->Fill(X);
+          Position[DetectorNbr * 2 + 1]->Fill(Y);
+        } // end fill histo
+      }   // Loop detnbr
+    }     // Non empty event
+  }       // End loop on entries
+
+  cout << endl << "Good entries" << GoodEntries << endl;
+
+  //========================================================================
+  //---------------------Output histogram-----------------------------------
+  //========================================================================
+  TFile *OutputHist = new TFile("HistUnlinea.root", "RECREATE");
+  std::vector<TCanvas *> canvas, cLinea;
+
+  for (int i = 0; i < Position.size(); i++) {
+
+    // Histo name
+    std::string CanvasName = "c" + std::to_string(i);
+    std::string CanvasNameLinea = "Linearised" + std::to_string(i);
+
+    TCanvas *c = new TCanvas(CanvasName.c_str(), CanvasName.c_str(), 960, 540);
+    canvas.push_back(c);
+
+    canvas[i]->cd(1);
+    if (true) {
+      Position[i]->Draw("logY");
+    }
+    Position[i]->Write();
+    gPad->SetLogy();
+    gStyle->SetOptStat(11111111);
+  }
+  OutputHist->Close();
+} // end macro
diff --git a/Projects/ana_e850/macro/mwpc/LinearisationTransfo.cxx b/Projects/ana_e850/macro/mwpc/LinearisationTransfo.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..f001b6a236e779f014c7a04c92cc144f01beb201
--- /dev/null
+++ b/Projects/ana_e850/macro/mwpc/LinearisationTransfo.cxx
@@ -0,0 +1,362 @@
+#include <TChain.h>
+#include <TFile.h>
+#include <TH1.h>
+#include <vector>
+#include <yaml-cpp/yaml.h> // yaml-cpp-dev neededi
+
+using namespace std ;
+
+double TransfoPos(double X, vector<double> &EdgeBin,
+                  vector<double> &NewEdgeBin);
+
+void readVectorsFromFile(vector<vector<vector<double>>>& vec1, vector<vector<vector<double>>>& vec2, const string& filename) ;
+
+void LinearisationTransfo(int RunStart, int RunStop) {
+  // **************************************************************************
+  // This macro linearize the reconstructed position for each event on each FPMW
+  //
+  // It will load a YAML file containing the old and new bin edges of each FPMW
+  // 
+  // Then it will check if the event is stored in the range of a old bin and
+  // transform it in the corresponding new bin.
+  //
+  // Input :
+  //    Run.root : Run to be treated
+  //    
+  //    Linearisation.yaml : yaml file containing the old and new bin edges for
+  //    each of the detector.
+  //
+  //
+  // Output:
+  //    RunLinearised.root : Same as run but with a new branch of linearised
+  //    position
+  // **************************************************************************
+
+  //========================================================================
+  //-------------------Open tree and define Hist----------------------------
+  //========================================================================
+
+  // Import the chain
+  TChain *ch = new TChain("PhysicsTree");
+  for (int run = RunStart; run <= RunStop; run++) {
+    ch->Add(Form("../../root/analysis/linea_%d.root", run));
+  } // End of run loop
+
+  // HERE PUT THE RIGHT BIN EDGES !!!! to automatize
+  vector<TH1F *> VarBin, DetUnmod, DetLinea;
+  for (int i = 1; i <= 4; i++) {
+    std::string DetUnmodXName = "hDetXUnmod" + std::to_string(i);
+    std::string DetLineaXName = "hDetXLinea" + std::to_string(i);
+    std::string DetUnmodYName = "hDetYUnmod" + std::to_string(i);
+    std::string DetLineaYName = "hDetYLinea" + std::to_string(i);
+
+    TH1F *DetUnmodXTemp;
+    TH1F *DetLineaXTemp;
+    TH1F *DetUnmodYTemp;
+    TH1F *DetLineaYTemp;
+
+    if (i == 1) {
+      DetUnmodXTemp =
+          new TH1F(DetUnmodXName.c_str(), DetUnmodXName.c_str(), 400, -40, 40);
+      DetLineaXTemp =
+          new TH1F(DetLineaXName.c_str(), DetLineaXName.c_str(), 400, -40, 40);
+      DetUnmodYTemp =
+          new TH1F(DetUnmodYName.c_str(), DetUnmodYName.c_str(), 600, -40, 40);
+      DetLineaYTemp =
+          new TH1F(DetLineaYName.c_str(), DetLineaYName.c_str(), 600, -40, 40);
+    } // End if det 1
+
+    if (i == 2) {
+      DetUnmodXTemp =
+          new TH1F(DetUnmodXName.c_str(), DetUnmodXName.c_str(), 630, -33, 33);
+      DetLineaXTemp =
+          new TH1F(DetLineaXName.c_str(), DetLineaXName.c_str(), 630, -33, 33);
+      DetUnmodYTemp =
+          new TH1F(DetUnmodYName.c_str(), DetUnmodYName.c_str(), 920, -46, 46);
+      DetLineaYTemp =
+          new TH1F(DetLineaYName.c_str(), DetLineaYName.c_str(), 920, -46, 46);
+
+    } // End if det 2
+
+    if (i == 3 || i == 4) {
+      DetUnmodXTemp = new TH1F(DetUnmodXName.c_str(), DetUnmodXName.c_str(),
+                               10000, -500, 500);
+      DetLineaXTemp = new TH1F(DetLineaXName.c_str(), DetLineaXName.c_str(),
+                               10000, -500, 500);
+      DetUnmodYTemp =
+          new TH1F(DetUnmodYName.c_str(), DetUnmodYName.c_str(), 1600, -80, 80);
+      DetLineaYTemp =
+          new TH1F(DetLineaYName.c_str(), DetLineaYName.c_str(), 1600, -80, 80);
+    } // End if det 3 or 4
+    DetUnmod.push_back(DetUnmodXTemp);
+    DetUnmod.push_back(DetUnmodYTemp);
+    DetLinea.push_back(DetLineaXTemp);
+    DetLinea.push_back(DetLineaYTemp);
+  } // End of i loop
+  
+  //========================================================================
+  //-----------------------Importing conditional var------------------------
+  //========================================================================
+  TFPMWPhysics *FPMW = new TFPMWPhysics();
+  ch->SetBranchAddress("FPMW", &FPMW);
+
+  // ************************************************************************
+  //                                Load YAML  
+  // ************************************************************************
+  vector<vector<vector<double>>> EdgeBinDet, NewEdgeBinDet;
+  //  LoadFromYaml(EdgeBinDet, NewEdgeBinDet, "Linearisation.yaml");
+  readVectorsFromFile(EdgeBinDet,NewEdgeBinDet,"Linearisation.txt");
+  for (int det = 0 ; det<NewEdgeBinDet.size() ; det++){
+    vector <double> VarBinHolder;
+    for(int mm = 0 ; mm< NewEdgeBinDet[det].size() ; mm ++){
+      for (int elem =0 ; elem < NewEdgeBinDet[det][mm].size()-1     ; elem++){
+        VarBinHolder.push_back(NewEdgeBinDet[det][mm][elem]);
+      }
+    }
+    std :: string VarBinName = "hVarbin" + std::to_string(det);
+    VarBin.push_back(new TH1F(VarBinName.c_str(),VarBinName.c_str(),VarBinHolder.size()-1, & VarBinHolder[0]));     
+  }
+  bool Verbose = false;
+  //========================================================================
+  //---------------------------Treat Event----------------------------------
+  //========================================================================
+  int Nentries = ch->GetEntries();
+  int GoodEntries = 0;
+
+  for (int entries = 0; entries < Nentries; entries++) {
+    ch->GetEntry(entries);
+    if (entries % 100000 == 0) {
+      cout << "\033[92m\r Processing tree..."
+           << (double)entries / Nentries * 100 << "\% done" << flush;
+    } // End cout loading
+
+    // Verification that we are not on a empty event for the FPMW
+    if (FPMW->DetectorNbr.size() > 0) {
+      GoodEntries += 1;
+
+      // Parsing through the different FPMW
+      for (int DetectorNbr = 0; DetectorNbr < FPMW->DetectorNbr.size();
+           DetectorNbr++) {
+
+        double X = FPMW->PositionX[DetectorNbr];
+        double Y = FPMW->PositionY[DetectorNbr];
+
+        // ***************************************************************
+        //                      Linearise X detector
+        // ***************************************************************
+
+        int IndexX = DetectorNbr * 2;
+        for (int binX = 0; binX < EdgeBinDet[IndexX].size() - 1; binX++) {
+          // If X is in the correct range
+          if (EdgeBinDet[IndexX][binX].size() != 0) {
+            if (X >= EdgeBinDet[IndexX][binX][0] &&
+                X < EdgeBinDet[IndexX][binX]
+                [EdgeBinDet[IndexX][binX].size() - 1]) {
+              // Apply the coorect transformation to X
+              double XNew = TransfoPos(X, EdgeBinDet[IndexX][binX],
+                  NewEdgeBinDet[IndexX][binX]);
+              // Fill of histogram for testing
+              VarBin[IndexX]->Fill(XNew);
+              DetUnmod[IndexX]->Fill(X);
+              DetLinea[IndexX]->Fill(XNew);
+
+              // Some cout
+              if (Verbose == true) {
+                cout << X << " " << XNew << "  " << endl;
+                cout << "************************" << endl;
+              }
+            } // end check in range
+          }   // end check empty
+        }     // end loop mmX
+
+        // ***************************************************************
+        //                      Linearise Y detector
+        // ***************************************************************
+
+
+        int IndexY = DetectorNbr * 2 + 1;
+        for (int binY = 0; binY < EdgeBinDet[IndexY].size() - 1;
+            binY++) {
+          if (EdgeBinDet[IndexY][binY].size() != 0) {
+            if (Y >= EdgeBinDet[IndexY][binY][0] &&
+                Y < EdgeBinDet[IndexY][binY]
+                [EdgeBinDet[IndexY][binY].size() - 1]) {
+              double YNew = TransfoPos(Y, EdgeBinDet[IndexY][binY],
+                  NewEdgeBinDet[IndexY][binY]);
+
+              VarBin[IndexY]->Fill(YNew);
+              DetUnmod[IndexY]->Fill(Y);
+              DetLinea[IndexY]->Fill(YNew);
+              if (Verbose == true) {
+                cout << Y << " " << YNew << "  " << endl;
+                cout << "************************" << endl;
+              }
+            } // end check in range
+          }   // End non empty
+        }     // End loop BINY
+      }       // Loop detnbr
+    }         // Non empty event
+  }           // End loop on entries
+
+  cout << endl << "Good entries" << GoodEntries << endl;
+
+  //========================================================================
+  //---------------------Output histogram-----------------------------------
+  //========================================================================
+  TFile *OutputHist = new TFile("AfterLinea.root", "RECREATE");
+  std::vector<TCanvas *> canvas, cLinea;
+  for (int i = 0; i < DetUnmod.size(); i++) {
+    std::string CanvasNameLinea = "Linearised" + std::to_string(i);
+    TCanvas *Clin = new TCanvas(CanvasNameLinea.c_str(),
+        CanvasNameLinea.c_str(), 2500, 400);
+    Clin->Divide(3, 1);
+    cLinea.push_back(Clin);
+
+    cLinea[i]->cd(1);
+    DetUnmod[i]->SetXTitle("Reconstructed X");
+    DetUnmod[i]->SetYTitle("Number of events");
+    DetUnmod[i]->Draw();
+    DetUnmod[i]->Write();
+
+    cLinea[i]->cd(2);
+    DetLinea[i]->SetXTitle("Reconstructed X");
+    DetLinea[i]->SetYTitle("Number of events");
+    DetLinea[i]->Draw("");
+    DetLinea[i]->Write();
+
+    cLinea[i]->cd(3);
+    VarBin[i]->SetXTitle("Reconstructed X");
+    VarBin[i]->SetYTitle("Number of events");
+    VarBin[i]->Draw("");
+    VarBin[i]->Write();
+    gStyle->SetOptStat(1111);
+  }
+  OutputHist->Close();
+} // end macro
+
+//========================================================================
+//--------------------------TransfoX--------------------------------------
+//========================================================================
+
+double TransfoPos(double X, vector<double> &EdgeBin,
+    vector<double> &NewEdgeBin) {
+  // ************************************************************************
+  // Transform an inputed reconstructed position in order to linearise the
+  // distribution of event in a FPMW.
+  //
+  // Input :
+  //    EdgeBin : The range of the bin of the FPMW to treat, this vector is
+  //    generated by LinearisationYaml.cxx
+  //
+  //    NewEdgeBin : The corresponding vector of new bin associated to each old
+  //    bin of the FPMW. Those bins have a size made to linearise the
+  //    distribution. They are also generated by LinearisationYaml.cxx
+  //
+  //    X : The reconstructed position before linearisation
+  // Output :
+  //    Xnew : The reconstructed position after linearisation.
+  // ************************************************************************
+  double XNew = -1000;
+  bool TransfoDone = false;
+  for (int i = 0; i < EdgeBin.size() - 1; i++) {
+    if (X >= EdgeBin[i] && X < EdgeBin[i + 1]) {
+      if (TransfoDone == 1 ) {
+        continue;
+      }
+      double Xold = X;
+      double Scale2 = (X - EdgeBin[i]) / (EdgeBin[i + 1] - EdgeBin[i]);
+      XNew = Scale2 * (NewEdgeBin[i + 1] - NewEdgeBin[i]) + NewEdgeBin[i];
+      TransfoDone = true;
+      // Sanity check print
+      if ((XNew < NewEdgeBin[i] || XNew > NewEdgeBin[i + 1]) && false) {
+        cout << " FUNCTION  " << endl;
+        cout << i << endl;
+        cout << "MinX " << EdgeBin[i] << " MaxX " << EdgeBin[i + 1] << endl;
+        cout << "Xold " << Xold << endl;
+        cout << "NewMinX " << NewEdgeBin[i] << " NewMaxX " << NewEdgeBin[i + 1]
+          << endl;
+        cout << "Xnew  " << XNew << endl;
+        cout << endl << endl;
+      }
+    }
+  }
+  return XNew;
+} // end transfo x
+
+void readVectorsFromFile(vector<vector<vector<double>>>& vec1, vector<vector<vector<double>>>& vec2, const string& filename) {
+    ifstream inFile(filename);
+    if (!inFile.is_open()) {
+        cerr << "Unable to open file for reading: " << filename << endl;
+        return;
+    }
+
+    vec1.clear();
+    vec2.clear();
+    vector<vector<vector<double>>>* currentVec = &vec1;
+    string line;
+    vector<vector<double>> det;
+    vector<double> bin;
+
+    while (getline(inFile, line)) {
+        if (line.find("Vector 2:") != string::npos) {
+            if (!bin.empty()) {
+                det.push_back(bin);
+                bin.clear();
+            }
+            if (!det.empty()) {
+                vec1.push_back(det);
+                det.clear();
+            }
+            currentVec = &vec2;
+            continue;
+        }
+
+        if (line.find("Det") != string::npos) {
+            if (!bin.empty()) {
+                det.push_back(bin);
+                bin.clear();
+            }
+            if (!det.empty()) {
+                currentVec->push_back(det);
+                det.clear();
+            }
+            continue;
+        }
+
+        if (line.find("Bin") != string::npos) {
+            if (!bin.empty()) {
+                det.push_back(bin);
+                bin.clear();
+            }
+            istringstream iss(line.substr(line.find(":") + 1));
+            double value;
+            while (iss >> value) {
+                bin.push_back(value);
+            }
+            det.push_back(bin);
+            bin.clear();
+            continue;
+        }
+
+        if (line.empty()) {
+            if (!bin.empty()) {
+                det.push_back(bin);
+                bin.clear();
+            }
+            if (!det.empty()) {
+                currentVec->push_back(det);
+                det.clear();
+            }
+        }
+    }
+
+    if (!bin.empty()) {
+        det.push_back(bin);
+    }
+    if (!det.empty()) {
+        currentVec->push_back(det);
+    }
+
+    inFile.close();
+}
+
diff --git a/Projects/ana_e850/macro/mwpc/LinearisationTxt.cxx b/Projects/ana_e850/macro/mwpc/LinearisationTxt.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..cbb8a15f2a7406895dc38af04b3106b1b6754e17
--- /dev/null
+++ b/Projects/ana_e850/macro/mwpc/LinearisationTxt.cxx
@@ -0,0 +1,458 @@
+#include <vector>
+#include <yaml-cpp/yaml.h> // yaml-cpp-dev needed
+
+void GetBin(vector<double> &NBin, TH1F *&Hist, int StartBin, int EndBin);
+
+void CalculateNewBin(vector<double> &EdgeBin, vector<double> &NewEdgeBin,
+                     vector<double> &NewBinWidth, vector<double> &ScalingBin,
+                     vector<double> &Scale, vector<double> &NBin, TGraph *&Func,
+                     int BinPerMM, double BinLowEdge, double Step);
+
+void LinkBinsWithLines(TH1F *&h, TGraph *&GraphLine);
+
+void saveVectorsToFile(const vector<vector<vector<double>>>& vec1, const vector<vector<vector<double>>>& vec2, const string& filename) ;
+
+void LinearisationTxt() {
+  // **************************************************************************
+  // This macro linearize the reconstructed position in X and Y for each FPMW.
+  //
+  // It will parse through the histogram inputed and store in a vector
+  // new edges of bin needed to smooth the distribution according to a
+  // predefined graph.
+  //
+  // Then the old and new bin edges are stored in a YAML file which is to be
+  // used for the event per event treatment in the LinearisationTransfo.cxx
+  // macro.
+  //
+  // Input :
+  //    HistoUnlinea.root : The reconstructed position histogram generated using
+  //    
+  //    HistoPosFiller.cxx
+  //
+  //
+  // Output:
+  //    Linearisation.yaml : A yaml file containing the old and new bin edges
+  //    for each detector.
+  // **************************************************************************
+
+  //========================================================================
+  //-------------------Open tree and define Hist----------------------------
+  //========================================================================
+
+  vector<TH1F *> OldPos, VarBin;
+  vector<TGraph *> LineaGraph;
+  bool Verbose = true; // Just for some cout
+
+  // Loading the OldPosX and OldPosY histogram
+  TFile *InputHist =
+      TFile::Open("HistUnlinea.root"); // If it doesnt work import backup
+
+  if (!InputHist || InputHist->IsZombie()) {
+    cerr << "Error opening file !" << endl;
+    return;
+  }
+
+  for (int i = 1; i <= 4; i++) {
+    std::string PosXName = "hPositionXDet" + std::to_string(i);
+    std::string PosXTitle = "PositionXDet" + std::to_string(i);
+    std::string PosYName = "hPositionYDet" + std::to_string(i);
+    std::string PosYTitle = "PositionYDet" + std::to_string(i);
+
+    OldPos.push_back((TH1F *)InputHist->Get(PosXName.c_str()));
+    OldPos.push_back((TH1F *)InputHist->Get(PosYName.c_str()));
+
+    OldPos[2 * (i - 1)]->SetDirectory(nullptr);
+    OldPos[2 * (i - 1) + 1]->SetDirectory(nullptr);
+  } // End of i loop
+  InputHist->Close();
+
+  //========================================================================
+  //---------------------Calculate New Bin----------------------------------
+  //========================================================================
+
+  // Initialising the output vector
+  vector<vector<vector<double>>> EdgeBinDet, NewEdgeBinDet, NewBinWidthDet,
+      ScalingBinDet, ScaleDet, NBinDet;
+
+  // Parsing though each detector.
+  for (int DetNbr = 0; DetNbr < OldPos.size(); DetNbr++) {
+
+    // ************************************************************************
+    //                          Initialisation
+    // ************************************************************************
+
+    // Initialasing output vector for this det
+    vector<vector<double>> EdgeBinAll, NewEdgeBinAll, NewBinWidthAll,
+        ScalingBinAll, ScaleAll, NBinAll;
+    vector<double> VarBinHolder;
+
+    // Defining some useful parameter for later.
+    int NumberBins = OldPos[DetNbr]->GetNbinsX();
+    double WidthHist = OldPos[DetNbr]->GetBinLowEdge(NumberBins) +
+                       OldPos[DetNbr]->GetBinWidth(NumberBins) -
+                       OldPos[DetNbr]->GetBinLowEdge(1);
+    int CurrentBin = 1;
+
+    // ************************************************************************
+    //                          Generate Graph
+    // ************************************************************************
+
+    TGraph *GraphlineTemp = new TGraph();
+    // We can rebin the histogram of input but it makes no difference. Here we
+    // do it for testing purposes.
+    std::string HistBigBinName = "HistBigBinDet" + std::to_string(DetNbr);
+    
+    TH1F *HistBigBin = (TH1F *)OldPos[DetNbr]->Rebin(NumberBins/40, HistBigBinName.c_str());
+    LinkBinsWithLines(HistBigBin, GraphlineTemp);
+
+    //copy hist
+    TGraph *Graphline = new TGraph(*GraphlineTemp);
+
+    // We renormalize the graph so that the eval make sense.
+    double normalisation =
+        double(HistBigBin->GetNbinsX()) / (double(OldPos[DetNbr]->GetNbinsX()));
+    double integrale = Graphline->Integral();
+    for (int i = 0; i < Graphline->GetN(); i++) {
+      double xi, yi;
+      Graphline->GetPoint(i, xi, yi);
+      Graphline->SetPoint(i, xi, yi * normalisation);
+    }
+    integrale = Graphline->Integral();
+    LineaGraph.push_back(Graphline);
+
+    // ************************************************************************
+    //                          Calculate New Bin in a step
+    // ************************************************************************
+
+    // We will now parse through all the histogram.
+    double Step = 1;
+    int BinPerStep = NumberBins / WidthHist * Step;
+
+    for (double mm = OldPos[DetNbr]->GetBinLowEdge(1);
+         mm < OldPos[DetNbr]->GetBinLowEdge(NumberBins); mm += Step) {
+
+      // We define vector for this step
+      size_t N = BinPerStep;
+      vector<double> EdgeBin, NewEdgeBin, NewBinWidth, ScalingBin, Scale, NBin;
+
+      // We fill Nbin with the value stored in each bin of the current range.
+      GetBin(NBin, OldPos[DetNbr], CurrentBin, CurrentBin + BinPerStep);
+      CalculateNewBin(EdgeBin, NewEdgeBin, NewBinWidth, ScalingBin, Scale, NBin,
+                      Graphline, BinPerStep, mm, Step);
+
+      // We push this in the mother vector only if the bin is not empty.
+      if (EdgeBin.size() != 0) {
+        EdgeBinAll.push_back(EdgeBin);
+        NewEdgeBinAll.push_back(NewEdgeBin);
+        NewBinWidthAll.push_back(NewBinWidth);
+        ScalingBinAll.push_back(ScalingBin);
+        ScaleAll.push_back(Scale);
+        NBinAll.push_back(NBin);
+      }
+
+      // Just fill the VarBinHolder it serves for debugging purpose.
+      for (int i = 0; i < NewEdgeBin.size(); i++) {
+        if (NewEdgeBin.size() != 0) {
+          VarBinHolder.push_back(NewEdgeBin[i]);
+        }
+        if (Verbose == false) {
+          cout << "EdgeBin[i]   " << EdgeBin[i];
+          cout << "  NewEdgeBin[i]  " << NewEdgeBin[i] << endl;
+          cout << " NBIN " << NBin[i] << endl;
+        }                       // end verbose
+      }                         // end loop on bin
+      CurrentBin += BinPerStep; // Changing Current Bin
+    }                           // Loop on mm of the FPMW
+
+    // ************************************************************************
+    //                          Sanity check print
+    // ************************************************************************
+
+    if (Verbose == false && DetNbr == 0) {
+      for (int i = 0; i < VarBinHolder.size(); i++) {
+        cout << " Var holder " << VarBinHolder[i] << " " << endl;
+        ;
+      } // end loop varbin
+    }   // end cout
+    // Filling the VarBin Hist
+
+    // ************************************************************************
+    //                          Push vector of detector
+    // ************************************************************************
+
+    std::string VarBinName = "hVarbin" + std::to_string(DetNbr);
+    VarBin.push_back(new TH1F(VarBinName.c_str(), VarBinName.c_str(),
+                              VarBinHolder.size() - 1, &VarBinHolder[0]));
+
+    if (EdgeBinAll.size() != 0) {
+      EdgeBinDet.push_back(EdgeBinAll);
+      NewEdgeBinDet.push_back(NewEdgeBinAll);
+      NewBinWidthDet.push_back(NewBinWidthAll);
+      ScalingBinDet.push_back(ScalingBinAll);
+      ScaleDet.push_back(ScaleAll);
+      NBinDet.push_back(NBinAll);
+    }
+    VarBinHolder.clear();
+  } // end loop on det
+
+  // ************************************************************************
+  //                          Write in YAML
+  // ********************************************* ***************************
+
+	saveVectorsToFile(EdgeBinDet,NewEdgeBinDet,"Linearisation.txt");
+
+} // end macro
+
+//========================================================================
+//--------------------------CalculateNewBin-------------------------------
+//========================================================================
+
+void CalculateNewBin(vector<double> &EdgeBin, vector<double> &NewEdgeBin,
+                     vector<double> &NewBinWidth, vector<double> &ScalingBin,
+                     vector<double> &Scale, vector<double> &NBin, TGraph *&Func,
+                     int BinPerMM, double BinLowEdge, double Step) {
+  // ************************************************************************
+  // Calculate the new edges of bin in the range to linearize the histogram.
+  //
+  // Input :
+  //    NBin : contain the number of event in each bin
+  //
+  //    BinLowEdge : Starting point in the histogram
+  //
+  //    BinPerMM : Number of bin we want to generate the new bin for, also the
+  //    number of bin per step.
+  //
+  //    Func : A Tgraph containing a sample of point from the distribution you
+  //    want to go to.
+  //
+  // Output :
+  //    EdgeBin : The edges of the bin of the original histogram. NB : this
+  //    function doesn't take as input the original histogram, therefore those
+  //    bin are generated by a simple iterative method. Thus the code is a
+  //    bit flimsy to change in the histogram binning. This can be improved by
+  //    taking the edges directly from the histogram.
+  //
+  //    NewEdgeBin : The edges of the new bin calculated to make the histogram
+  //    look like func.
+  //
+  // Other :
+  //    All the other parameter are for testing purpose. Most of them have self
+  //    explanatory name.
+  // ************************************************************************
+
+  // ************************************************************************
+  //                          Initialise variable
+  // ************************************************************************
+
+  bool MemorySave = true;
+  double SumBin = 0, TotWidth = 0., NewTotWidth = 0., SumEval = 0,
+         IndexLastBin = BinPerMM, Temp = 0;
+  vector<double> MaxX, NewMaxX, BinWidth, NewBinWidthTheoretical, NBinNonEmpty,
+      ScalingBinTemp;
+  double BinUpperEdge = BinLowEdge + Step;
+
+  // ************************************************************************
+  //                          Fill unlinearised vector
+  // ************************************************************************
+  for (int i = 0; i < NBin.size(); i++) {
+
+    // If the bin is empty do not fill the vector
+    if (NBin[i] <= 0 && MemorySave == true) {
+      continue;
+    }
+    // For now EdgeBin only contain the lower edge and is of the same size as
+    // the other vector. We will make it 1 item bigger by adding the final
+    // edge of the bin.
+    else {
+      double d = i;
+      NBinNonEmpty.push_back(NBin[i]);
+      EdgeBin.push_back(BinLowEdge + (d / (NBin.size())) * Step);
+      MaxX.push_back(BinLowEdge + ((d + 1) / (NBin.size())) * Step);
+
+      // Control variable
+      SumBin += NBin[i];
+      TotWidth += BinWidth[i];
+    } // end if non empty
+  }   // end loop on bin
+
+  // ************************************************************************
+  //                    Initialisation of the scaling
+  // ************************************************************************
+  // Here we fill ScalinBinTemp which will hold the evaluation of our input
+  // function for the maximum of the current bin. It is the basis for the
+  // transformation of the bin.
+
+  for (int i = 0; i < NBinNonEmpty.size(); i++) {
+
+    // This will be the basis for the construction of the new bin
+    // It is the number of event that should be in the bin.
+    ScalingBinTemp.push_back(Func->Eval((MaxX[i])));
+
+    // We fill some control vector useful for debugging
+    BinWidth.push_back(MaxX[i] - EdgeBin[i]);
+    SumEval += ScalingBinTemp[i];
+
+    // And add the final element of the EdgeBin vector
+    if (i == MaxX.size() - 1) {
+      EdgeBin.push_back(MaxX[i]);
+    } // End if last element
+  }   // End loop on non empty bin
+
+  // ************************************************************************
+  //                   Normalisation of Scaling Bin Temp
+  // ************************************************************************
+  // Scaling bin temp come from a function that has not the same integral as our
+  // distribution on the current range. We need to normalise the function to
+  // conserve the integral.
+  double dilatation = SumBin / SumEval;
+  SumEval = SumEval * dilatation;
+
+  for (int i = 0; i < NBinNonEmpty.size(); i++) {
+    ScalingBinTemp[i] = ScalingBinTemp[i] * dilatation;
+  }
+
+  // ************************************************************************
+  //                        Calculate the new bin
+  // ************************************************************************
+
+  int FirstIter = 1;
+  for (int i = 0; i < NBinNonEmpty.size(); i++) {
+    // We want to keep the edges of the bin as the original histogram
+    // Therefore we must enforce 1st and last iteration value.
+    if (FirstIter == 1) {
+      NewEdgeBin.push_back(EdgeBin[i]);
+      FirstIter = 0;
+    }
+
+    else if (i != 0) {
+      NewEdgeBin.push_back(NewMaxX[i - 1]);
+    }
+
+    // Dilatation to apply to the bin width is defined here.
+    ScalingBin.push_back(NBinNonEmpty[i] /
+                         (ScalingBinTemp[i] * (SumBin / SumEval)));
+    NewBinWidthTheoretical.push_back(ScalingBin[i] * BinWidth[i]);
+
+    // Max unlinearised
+    double MaxXTemp = NewEdgeBin[i] + BinWidth[i];
+
+    // Calculate the transformation to apply to the upper edge of the bin.
+    Scale.push_back((NewEdgeBin[i] + BinWidth[i] * ScalingBin[i]) / MaxXTemp);
+    NewMaxX.push_back((NewEdgeBin[i] + BinWidth[i]) * Scale[i]);
+
+    // Enforce value of last bin.
+    if (i == NBinNonEmpty.size() - 1) {
+      NewMaxX[i] = MaxX[i];
+      NewEdgeBin.push_back(MaxX[i]);
+    }
+
+    // Some control vector filling
+    NewBinWidth.push_back(NewMaxX[i] - NewEdgeBin[i]);
+    NewTotWidth += NewBinWidth[i];
+
+    // Cout
+    if (false && (NewEdgeBin[i] >= -2 && NewEdgeBin[i] <= -1)) {
+      // Those are sanity check cout. To be turned on as needed.
+      cout << " itération " << i << endl;
+      cout << " BinLowEdge " << BinLowEdge << " step " << Step
+           << " IndexLastBin " << IndexLastBin << endl;
+      cout << " MinX " << EdgeBin[i] << " MaxX " << MaxX[i] << endl;
+      cout << " NewMin " << NewEdgeBin[i] << "  NewMax " << NewMaxX[i] << endl;
+      cout << " ScalingBinTemp  " << ScalingBinTemp[i] << " NewBinWidth "
+           << NewBinWidth[i] << endl;
+      cout << " Width of bin " << NewBinWidth[i] << "  expected width  "
+           << NewBinWidthTheoretical[i] << endl;
+      cout << " Func Eval MaxX " << Func->Eval(MaxX[i]) << endl;
+      cout << " NBin " << NBinNonEmpty[i] << " NBinOpt " << ScalingBinTemp[i]
+           << endl;
+      cout << "Sum Eval " << SumEval << " SumBin " << SumBin << endl;
+      cout << endl << endl;
+    } // End cout
+  }   // End loop bin
+} // End CalculateNewBin
+
+//========================================================================
+//--------------------------GetBin----------------------------------------
+//========================================================================
+void GetBin(vector<double> &NBin, TH1F *&Hist, int StartBin, int EndBin) {
+  // **************************************************************************
+  // Fetch the number of event of the bin of a histogram in a certain range and
+  // store them in a vector.
+  // **************************************************************************
+
+  for (int bin = StartBin; bin < EndBin; bin++) {
+    NBin.push_back(Hist->GetBinContent(bin));
+  } // End loop range
+} // End GetBin
+
+void LinkBinsWithLines(TH1F *&h, TGraph *&GraphLine) {
+  // **************************************************************************
+  // Generate a graph of point centered on each bin of an histogram.
+  // **************************************************************************
+
+  int nBins = h->GetNbinsX();
+
+  for (int i = 1; i < nBins; ++i) {
+    // Get the centers of the current bin and the next bin
+    double x1 = h->GetBinLowEdge(i);
+    double y1 = h->GetBinContent(i);
+    double x2 = h->GetBinLowEdge(i + 1);
+    double y2 = h->GetBinContent(i + 1);
+
+    // Add point to graph
+    GraphLine->SetPoint(GraphLine->GetN(), (x1+x2)/2, y1);
+    if (i == nBins - 1) {
+      GraphLine->SetPoint(GraphLine->GetN(), x2, y2);
+    }
+  }
+  if (true) {
+    std::string CanvasNameLinea = "Linearised" + std::to_string(nBins);
+    TCanvas *cline = new TCanvas(h->GetName(), h->GetName(), 800, 600);
+    h->Draw();
+    GraphLine->SetMarkerStyle(21);
+    GraphLine->SetLineStyle(1);
+    GraphLine->SetMarkerColor(kRed);
+    GraphLine->SetLineColor(kRed);
+    GraphLine->Draw("LP same");
+  } // end print
+} // End LinkBinsWithLines
+
+
+void saveVectorsToFile(const vector<vector<vector<double>>>& vec1, const vector<vector<vector<double>>>& vec2, const string& filename) {
+    ofstream outFile(filename);
+    if (!outFile.is_open()) {
+        cerr << "Unable to open file for writing: " << filename << endl;
+        return;
+    }
+
+    // Save first vector
+    outFile << "Vector 1:\n";
+    for (size_t detIdx = 0; detIdx < vec1.size(); ++detIdx) {
+        outFile << "Det " << detIdx + 1 << ":\n";
+        for (size_t binIdx = 0; binIdx < vec1[detIdx].size(); ++binIdx) {
+            outFile << "  Bin " << binIdx << ": ";
+            for (double edge : vec1[detIdx][binIdx]) {
+                outFile << edge << " ";
+            }
+            outFile << "\n";
+        }
+        outFile << "\n";
+    }
+    outFile << "\n";  // Separate the two vectors
+
+    // Save second vector
+    outFile << "Vector 2:\n";
+    for (size_t detIdx = 0; detIdx < vec2.size(); ++detIdx) {
+        outFile << "Det " << detIdx + 1 << ":\n";
+        for (size_t binIdx = 0; binIdx < vec2[detIdx].size(); ++binIdx) {
+            outFile << "  Bin " << binIdx << ": ";
+            for (double edge : vec2[detIdx][binIdx]) {
+                outFile << edge << " ";
+            }
+            outFile << "\n";
+        }
+        outFile << "\n";
+    }
+
+    outFile.close();
+}
diff --git a/Projects/ana_e850/macro/mwpc/LinearisationTxtV2.cxx b/Projects/ana_e850/macro/mwpc/LinearisationTxtV2.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..899540c3b99e151fdf914f87cb7bb4d0cdd4ebe9
--- /dev/null
+++ b/Projects/ana_e850/macro/mwpc/LinearisationTxtV2.cxx
@@ -0,0 +1,453 @@
+#include <vector>
+#include <yaml-cpp/yaml.h> // yaml-cpp-dev needed
+
+void GetBin(vector<double> &NBin, TH1F *&Hist, int StartBin, int EndBin);
+
+void CalculateNewBin(vector<double> &EdgeBin, vector<double> &NewEdgeBin,
+                     vector<double> &NewBinWidth, vector<double> &ScalingBin,
+                     vector<double> &Scale, vector<double> &NBin, TGraph *&Func,
+                     int BinPerMM, double BinLowEdge, double Step);
+
+void LinkBinsWithLines(TH1F *&h, TGraph *&GraphLine);
+
+void saveVectorsToFile(const vector<vector<vector<double>>>& vec1, const vector<vector<vector<double>>>& vec2, const string& filename) ;
+
+void LinearisationTxt() {
+  // **************************************************************************
+  // This macro linearize the reconstructed position in X and Y for each FPMW.
+  //
+  // It will parse through the histogram inputed and store in a vector
+  // new edges of bin needed to smooth the distribution according to a
+  // predefined graph.
+  //
+  // Then the old and new bin edges are stored in a YAML file which is to be
+  // used for the event per event treatment in the LinearisationTransfo.cxx
+  // macro.
+  //
+  // Input :
+  //    HistoUnlinea.root : The reconstructed position histogram generated using
+  //    
+  //    HistoPosFiller.cxx
+  //
+  //
+  // Output:
+  //    Linearisation.yaml : A yaml file containing the old and new bin edges
+  //    for each detector.
+  // **************************************************************************
+
+  //========================================================================
+  //-------------------Open tree and define Hist----------------------------
+  //========================================================================
+
+  vector<TH1F *> OldPos, VarBin;
+  vector<TGraph *> LineaGraph;
+  bool Verbose = true; // Just for some cout
+
+  // Loading the OldPosX and OldPosY histogram
+  TFile *InputHist =
+      TFile::Open("HistUnlinea.root"); // If it doesnt work import backup
+
+  if (!InputHist || InputHist->IsZombie()) {
+    cerr << "Error opening file !" << endl;
+    return;
+  }
+
+  for (int i = 1; i <= 4; i++) {
+    std::string PosXName = "hPositionXDet" + std::to_string(i);
+    std::string PosXTitle = "PositionXDet" + std::to_string(i);
+    std::string PosYName = "hPositionYDet" + std::to_string(i);
+    std::string PosYTitle = "PositionYDet" + std::to_string(i);
+
+    OldPos.push_back((TH1F *)InputHist->Get(PosXName.c_str()));
+    OldPos.push_back((TH1F *)InputHist->Get(PosYName.c_str()));
+
+    OldPos[2 * (i - 1)]->SetDirectory(nullptr);
+    OldPos[2 * (i - 1) + 1]->SetDirectory(nullptr);
+  } // End of i loop
+  InputHist->Close();
+
+  //========================================================================
+  //---------------------Calculate New Bin----------------------------------
+  //========================================================================
+
+  // Initialising the output vector
+  vector<vector<vector<double>>> EdgeBinDet, NewEdgeBinDet, NewBinWidthDet,
+      ScalingBinDet, ScaleDet, NBinDet;
+
+  // Parsing though each detector.
+  for (int DetNbr = 0; DetNbr < OldPos.size(); DetNbr++) {
+
+    // ************************************************************************
+    //                          Initialisation
+    // ************************************************************************
+
+    // Initialasing output vector for this det
+    vector<vector<double>> EdgeBinAll, NewEdgeBinAll, NewBinWidthAll,
+        ScalingBinAll, ScaleAll, NBinAll;
+    vector<double> VarBinHolder;
+
+    // Defining some useful parameter for later.
+    int NumberBins = OldPos[DetNbr]->GetNbinsX();
+    double WidthHist = OldPos[DetNbr]->GetBinLowEdge(NumberBins) +
+                       OldPos[DetNbr]->GetBinWidth(NumberBins) -
+                       OldPos[DetNbr]->GetBinLowEdge(1);
+    int CurrentBin = 1;
+
+    // ************************************************************************
+    //                          Generate Graph
+    // ************************************************************************
+
+    TGraph *Graphline = new TGraph();
+    // We can rebin the histogram of input but it makes no difference. Here we
+    // do it for testing purposes.
+    std::string HistBigBinName = "HistBigBinDet" + std::to_string(DetNbr);
+    TH1F *HistBigBin = (TH1F *)OldPos[DetNbr]->Rebin(20, HistBigBinName.c_str());
+
+    LinkBinsWithLines(HistBigBin, Graphline);
+
+    // We renormalize the graph so that the eval make sense.
+    double normalisation =
+        double(HistBigBin->GetNbinsX()) / (double(OldPos[DetNbr]->GetNbinsX()));
+    double integrale = Graphline->Integral();
+    for (int i = 0; i < Graphline->GetN(); i++) {
+      double xi, yi;
+      Graphline->GetPoint(i, xi, yi);
+      Graphline->SetPoint(i, xi, yi * normalisation);
+    }
+    integrale = Graphline->Integral();
+    LineaGraph.push_back(Graphline);
+
+    // ************************************************************************
+    //                          Calculate New Bin in a step
+    // ************************************************************************
+
+    // We will now parse through all the histogram.
+    double Step = 1;
+    int BinPerStep = NumberBins / WidthHist * Step;
+
+    for (double mm = OldPos[DetNbr]->GetBinLowEdge(1);
+         mm < OldPos[DetNbr]->GetBinLowEdge(NumberBins); mm += Step) {
+
+      // We define vector for this step
+      size_t N = BinPerStep;
+      vector<double> EdgeBin, NewEdgeBin, NewBinWidth, ScalingBin, Scale, NBin;
+
+      // We fill Nbin with the value stored in each bin of the current range.
+      GetBin(NBin, OldPos[DetNbr], CurrentBin, CurrentBin + BinPerStep);
+      CalculateNewBin(EdgeBin, NewEdgeBin, NewBinWidth, ScalingBin, Scale, NBin,
+                      Graphline, BinPerStep, mm, Step);
+
+      // We push this in the mother vector only if the bin is not empty.
+      if (EdgeBin.size() != 0) {
+        EdgeBinAll.push_back(EdgeBin);
+        NewEdgeBinAll.push_back(NewEdgeBin);
+        NewBinWidthAll.push_back(NewBinWidth);
+        ScalingBinAll.push_back(ScalingBin);
+        ScaleAll.push_back(Scale);
+        NBinAll.push_back(NBin);
+      }
+
+      // Just fill the VarBinHolder it serves for debugging purpose.
+      for (int i = 0; i < NewEdgeBin.size(); i++) {
+        if (NewEdgeBin.size() != 0) {
+          VarBinHolder.push_back(NewEdgeBin[i]);
+        }
+        if (Verbose == false) {
+          cout << "EdgeBin[i]   " << EdgeBin[i];
+          cout << "  NewEdgeBin[i]  " << NewEdgeBin[i] << endl;
+          cout << " NBIN " << NBin[i] << endl;
+        }                       // end verbose
+      }                         // end loop on bin
+      CurrentBin += BinPerStep; // Changing Current Bin
+    }                           // Loop on mm of the FPMW
+
+    // ************************************************************************
+    //                          Sanity check print
+    // ************************************************************************
+
+    if (Verbose == false && DetNbr == 0) {
+      for (int i = 0; i < VarBinHolder.size(); i++) {
+        cout << " Var holder " << VarBinHolder[i] << " " << endl;
+        ;
+      } // end loop varbin
+    }   // end cout
+    // Filling the VarBin Hist
+
+    // ************************************************************************
+    //                          Push vector of detector
+    // ************************************************************************
+
+    std::string VarBinName = "hVarbin" + std::to_string(DetNbr);
+    VarBin.push_back(new TH1F(VarBinName.c_str(), VarBinName.c_str(),
+                              VarBinHolder.size() - 1, &VarBinHolder[0]));
+
+    if (EdgeBinAll.size() != 0) {
+      EdgeBinDet.push_back(EdgeBinAll);
+      NewEdgeBinDet.push_back(NewEdgeBinAll);
+      NewBinWidthDet.push_back(NewBinWidthAll);
+      ScalingBinDet.push_back(ScalingBinAll);
+      ScaleDet.push_back(ScaleAll);
+      NBinDet.push_back(NBinAll);
+    }
+    VarBinHolder.clear();
+  } // end loop on det
+
+  // ************************************************************************
+  //                          Write in YAML
+  // ********************************************* ***************************
+
+	saveVectorsToFile(EdgeBinDet,NewEdgeBinDet,"Linearisation.txt");
+
+} // end macro
+
+//========================================================================
+//--------------------------CalculateNewBin-------------------------------
+//========================================================================
+
+void CalculateNewBin(vector<double> &EdgeBin, vector<double> &NewEdgeBin,
+                     vector<double> &NewBinWidth, vector<double> &ScalingBin,
+                     vector<double> &Scale, vector<double> &NBin, TGraph *&Func,
+                     int BinPerMM, double BinLowEdge, double Step) {
+  // ************************************************************************
+  // Calculate the new edges of bin in the range to linearize the histogram.
+  //
+  // Input :
+  //    NBin : contain the number of event in each bin
+  //
+  //    BinLowEdge : Starting point in the histogram
+  //
+  //    BinPerMM : Number of bin we want to generate the new bin for, also the
+  //    number of bin per step.
+  //
+  //    Func : A Tgraph containing a sample of point from the distribution you
+  //    want to go to.
+  //
+  // Output :
+  //    EdgeBin : The edges of the bin of the original histogram. NB : this
+  //    function doesn't take as input the original histogram, therefore those
+  //    bin are generated by a simple iterative method. Thus the code is a
+  //    bit flimsy to change in the histogram binning. This can be improved by
+  //    taking the edges directly from the histogram.
+  //
+  //    NewEdgeBin : The edges of the new bin calculated to make the histogram
+  //    look like func.
+  //
+  // Other :
+  //    All the other parameter are for testing purpose. Most of them have self
+  //    explanatory name.
+  // ************************************************************************
+
+  // ************************************************************************
+  //                          Initialise variable
+  // ************************************************************************
+
+  bool MemorySave = true;
+  double SumBin = 0, TotWidth = 0., NewTotWidth = 0., SumEval = 0,
+         IndexLastBin = BinPerMM, Temp = 0;
+  vector<double> MaxX, NewMaxX, BinWidth, NewBinWidthTheoretical, NBinNonEmpty,
+      ScalingBinTemp;
+  double BinUpperEdge = BinLowEdge + Step;
+
+  // ************************************************************************
+  //                          Fill unlinearised vector
+  // ************************************************************************
+  for (int i = 0; i < NBin.size(); i++) {
+
+    // If the bin is empty do not fill the vector
+    if (NBin[i] <= 0 && MemorySave == true) {
+      continue;
+    }
+    // For now EdgeBin only contain the lower edge and is of the same size as
+    // the other vector. We will make it 1 item bigger by adding the final
+    // edge of the bin.
+    else {
+      double d = i;
+      NBinNonEmpty.push_back(NBin[i]);
+      EdgeBin.push_back(BinLowEdge + (d / (NBin.size())) * Step);
+      MaxX.push_back(BinLowEdge + ((d + 1) / (NBin.size())) * Step);
+
+      // Control variable
+      SumBin += NBin[i];
+      TotWidth += BinWidth[i];
+    } // end if non empty
+  }   // end loop on bin
+
+  // ************************************************************************
+  //                    Initialisation of the scaling
+  // ************************************************************************
+  // Here we fill ScalinBinTemp which will hold the evaluation of our input
+  // function for the maximum of the current bin. It is the basis for the
+  // transformation of the bin.
+
+  for (int i = 0; i < NBinNonEmpty.size(); i++) {
+
+    // This will be the basis for the construction of the new bin
+    // It is the number of event that should be in the bin.
+    ScalingBinTemp.push_back(Func->Eval((MaxX[i])));
+
+    // We fill some control vector useful for debugging
+    BinWidth.push_back(MaxX[i] - EdgeBin[i]);
+    SumEval += ScalingBinTemp[i];
+
+    // And add the final element of the EdgeBin vector
+    if (i == MaxX.size() - 1) {
+      EdgeBin.push_back(MaxX[i]);
+    } // End if last element
+  }   // End loop on non empty bin
+
+  // ************************************************************************
+  //                   Normalisation of Scaling Bin Temp
+  // ************************************************************************
+  // Scaling bin temp come from a function that has not the same integral as our
+  // distribution on the current range. We need to normalise the function to
+  // conserve the integral.
+  double dilatation = SumBin / SumEval;
+  SumEval = SumEval * dilatation;
+
+  for (int i = 0; i < NBinNonEmpty.size(); i++) {
+    ScalingBinTemp[i] = ScalingBinTemp[i] * dilatation;
+  }
+
+  // ************************************************************************
+  //                        Calculate the new bin
+  // ************************************************************************
+
+  int FirstIter = 1;
+  for (int i = 0; i < NBinNonEmpty.size(); i++) {
+    // We want to keep the edges of the bin as the original histogram
+    // Therefore we must enforce 1st and last iteration value.
+    if (FirstIter == 1) {
+      NewEdgeBin.push_back(EdgeBin[i]);
+      FirstIter = 0;
+    }
+
+    else if (i != 0) {
+      NewEdgeBin.push_back(NewMaxX[i - 1]);
+    }
+
+    // Dilatation to apply to the bin width is defined here.
+    ScalingBin.push_back(NBinNonEmpty[i] /
+                         (ScalingBinTemp[i] * (SumBin / SumEval)));
+    NewBinWidthTheoretical.push_back(ScalingBin[i] * BinWidth[i]);
+
+    // Max unlinearised
+    double MaxXTemp = NewEdgeBin[i] + BinWidth[i];
+
+    // Calculate the transformation to apply to the upper edge of the bin.
+    Scale.push_back((NewEdgeBin[i] + BinWidth[i] * ScalingBin[i]) / MaxXTemp);
+    NewMaxX.push_back((NewEdgeBin[i] + BinWidth[i]) * Scale[i]);
+
+    // Enforce value of last bin.
+    if (i == NBinNonEmpty.size() - 1) {
+      NewMaxX[i] = MaxX[i];
+      NewEdgeBin.push_back(MaxX[i]);
+    }
+
+    // Some control vector filling
+    NewBinWidth.push_back(NewMaxX[i] - NewEdgeBin[i]);
+    NewTotWidth += NewBinWidth[i];
+
+    // Cout
+    if (false && (NewEdgeBin[i] >= -2 && NewEdgeBin[i] <= -1)) {
+      // Those are sanity check cout. To be turned on as needed.
+      cout << " itération " << i << endl;
+      cout << " BinLowEdge " << BinLowEdge << " step " << Step
+           << " IndexLastBin " << IndexLastBin << endl;
+      cout << " MinX " << EdgeBin[i] << " MaxX " << MaxX[i] << endl;
+      cout << " NewMin " << NewEdgeBin[i] << "  NewMax " << NewMaxX[i] << endl;
+      cout << " ScalingBinTemp  " << ScalingBinTemp[i] << " NewBinWidth "
+           << NewBinWidth[i] << endl;
+      cout << " Width of bin " << NewBinWidth[i] << "  expected width  "
+           << NewBinWidthTheoretical[i] << endl;
+      cout << " Func Eval MaxX " << Func->Eval(MaxX[i]) << endl;
+      cout << " NBin " << NBinNonEmpty[i] << " NBinOpt " << ScalingBinTemp[i]
+           << endl;
+      cout << "Sum Eval " << SumEval << " SumBin " << SumBin << endl;
+      cout << endl << endl;
+    } // End cout
+  }   // End loop bin
+} // End CalculateNewBin
+
+//========================================================================
+//--------------------------GetBin----------------------------------------
+//========================================================================
+void GetBin(vector<double> &NBin, TH1F *&Hist, int StartBin, int EndBin) {
+  // **************************************************************************
+  // Fetch the number of event of the bin of a histogram in a certain range and
+  // store them in a vector.
+  // **************************************************************************
+
+  for (int bin = StartBin; bin < EndBin; bin++) {
+    NBin.push_back(Hist->GetBinContent(bin));
+  } // End loop range
+} // End GetBin
+
+void LinkBinsWithLines(TH1F *&h, TGraph *&GraphLine) {
+  // **************************************************************************
+  // Generate a graph of point centered on each bin of an histogram.
+  // **************************************************************************
+
+  int nBins = h->GetNbinsX();
+
+  for (int i = 1; i < nBins; ++i) {
+    // Get the centers of the current bin and the next bin
+    double x1 = h->GetBinLowEdge(i);
+    double y1 = h->GetBinContent(i);
+    double x2 = h->GetBinLowEdge(i + 1);
+    double y2 = h->GetBinContent(i + 1);
+
+    // Add point to graph
+    GraphLine->SetPoint(GraphLine->GetN(), x1, y1);
+    if (i == nBins - 1) {
+      GraphLine->SetPoint(GraphLine->GetN(), x2, y2);
+    }
+  }
+  if (true) {
+    std::string CanvasNameLinea = "Linearised" + std::to_string(nBins);
+    TCanvas *cline = new TCanvas(h->GetName(), h->GetName(), 800, 600);
+    h->Draw();
+    GraphLine->SetMarkerStyle(21);
+    GraphLine->SetMarkerColor(kBlue);
+    GraphLine->Draw("P same");
+  } // end print
+} // End LinkBinsWithLines
+
+
+void saveVectorsToFile(const vector<vector<vector<double>>>& vec1, const vector<vector<vector<double>>>& vec2, const string& filename) {
+    ofstream outFile(filename);
+    if (!outFile.is_open()) {
+        cerr << "Unable to open file for writing: " << filename << endl;
+        return;
+    }
+
+    // Save first vector
+    outFile << "Vector 1:\n";
+    for (size_t detIdx = 0; detIdx < vec1.size(); ++detIdx) {
+        outFile << "Det " << detIdx + 1 << ":\n";
+        for (size_t binIdx = 0; binIdx < vec1[detIdx].size(); ++binIdx) {
+            outFile << "  Bin " << binIdx << ": ";
+            for (double edge : vec1[detIdx][binIdx]) {
+                outFile << edge << " ";
+            }
+            outFile << "\n";
+        }
+        outFile << "\n";
+    }
+    outFile << "\n";  // Separate the two vectors
+
+    // Save second vector
+    outFile << "Vector 2:\n";
+    for (size_t detIdx = 0; detIdx < vec2.size(); ++detIdx) {
+        outFile << "Det " << detIdx + 1 << ":\n";
+        for (size_t binIdx = 0; binIdx < vec2[detIdx].size(); ++binIdx) {
+            outFile << "  Bin " << binIdx << ": ";
+            for (double edge : vec2[detIdx][binIdx]) {
+                outFile << edge << " ";
+            }
+            outFile << "\n";
+        }
+        outFile << "\n";
+    }
+
+    outFile.close();
+}
diff --git a/Projects/ana_e850/macro/mwpc/ReadMe.md b/Projects/ana_e850/macro/mwpc/ReadMe.md
new file mode 100644
index 0000000000000000000000000000000000000000..fef5c6360b8b24e0b22126cd85ec6359a8ade8a2
--- /dev/null
+++ b/Projects/ana_e850/macro/mwpc/ReadMe.md
@@ -0,0 +1,50 @@
+# Linearisation of MWPC
+
+This macro is made to generate the txt file necessary to linearise the MW of
+VAMOS in NPTOOL.
+
+## Step 1 : HistoPosFiller.cxx
+
+First thing first you need a run filled with a good amount of data with the
+position on the FPMW unlinearised. 
+
+Then execute the HistoPosFiller.cxx macro with the following command in terminal
+: root 'HistoPosFiller.cxx(RunStart,RunEnd)'
+
+The run you are using should have a name of the form : linea_$RunNumber$.root
+
+This macro will fill the histogram with the unlinearised FPMW position and store them in the HistUnlinea.root file. It is mandatory to run the following steps.
+
+## Step 2 : LinearisationTxt.cxx
+
+This macro will generate the txt file made to linearise the MWPC.
+Every upgrade to the code should be made in this file, please try to keep track
+of the version and store the previous one in the legacy code folder.
+
+This macro doesn't take any argument and use the data generated in the previous
+step as automatic input. It generate a Linearisation.txt file which hold the
+config data made to linearise the MW.
+
+A common error returned by this macro is "Error in <TAxis::Set>: bins must be in
+increasing order" : this sould be avoided as much as possible and is influenced
+heavily by the definition of the bound of the histogram and the rebinning of the
+histogram to generate the TGraph.
+
+## Step 3 : LinearisationTransfo.cxx
+This macro is here to test the linearisation.txt file.
+It simulate what is implemented in NPTOOL and should be used as a sanity check.
+
+It apply the transfo event per event and draw a variable bin histogram that
+should mimick the shape of the original histogram.
+
+## Step 4 : Implement in project
+execute the following line from the current path :
+
+cp Linearisation.txt ../../config/.
+
+and add a ConfigFPMW.dat file with the following structure :
+
+ConfigFPMW
+LINEA_PATH ./configs/Linearisation.txt
+ 
+execute the analysis some LinPositionX and LinPositionY should be filled
diff --git a/Projects/ana_e850/macro/pista/calibration/FillSelectTree.C b/Projects/ana_e850/macro/pista/calibration/FillSelectTree.C
index 1507c088288017d3b75c98349ac4ba40ebb60941..39b6c9e1f9a7de05bc203a3d16ba2dcc22ebfc6b 100644
--- a/Projects/ana_e850/macro/pista/calibration/FillSelectTree.C
+++ b/Projects/ana_e850/macro/pista/calibration/FillSelectTree.C
@@ -29,10 +29,7 @@ void LoadCuts(){
 /////////////////////////////////////////////////////////
 void LoadRootFile(){
   chain = new TChain("PhysicsTree");
-  //chain->Add("../../../root/analysis/run_29_calib.root");
-  //chain->Add("../../../root/analysis/run_41_calib.root");
-  chain->Add("../../../root/analysis/run_49_calib.root");
-  //chain->Add("../../../root/analysis/run_55_calib.root");
+  chain->Add("../../../root/analysis/run_43_calib.root");
 
   pista = new TPISTAPhysics();
   NPL::InputParser parser("../../../pista_e850_part1.detector");
diff --git a/Projects/ana_e850/macro/pista/calibration/Minimization.C b/Projects/ana_e850/macro/pista/calibration/Minimization.C
index 6badf14307e8f11cd96932c86a499d5744ad53ba..81c25aeda9be76069338a653668b9b861037b241 100644
--- a/Projects/ana_e850/macro/pista/calibration/Minimization.C
+++ b/Projects/ana_e850/macro/pista/calibration/Minimization.C
@@ -98,8 +98,8 @@ int NumericalMinimization(const char* minName, const char* algoName){
     string par1_name = "p1_E" + to_string(i+1);
     string par2_name = "p2_E" + to_string(i+1);
 
-    min->SetLimitedVariable(indice,par0_name,0,0.01,-3,3);
-    min->SetLimitedVariable(indice+1,par1_name,0.0029,0.0001,0.95*0.0029,1.05*0.0029);
+    min->SetLimitedVariable(indice,par0_name,0,0.01,-2,2);
+    min->SetLimitedVariable(indice+1,par1_name,0.0028,0.0001,0.97*0.0029,1.03*0.0029);
     min->SetLimitedVariable(indice+2,par2_name,0.0,0.0001,0,1e-8);
   }
   min->SetLimitedVariable(24,"Xt",0,0.01,-2,2);
@@ -127,6 +127,8 @@ int NumericalMinimization(const char* minName, const char* algoName){
   string filename2 = "AnalysisConfig_min.dat";
   ofile2.open(filename2.c_str());
   ofile2 <<  "AnalysisConfig" << endl;
+  ofile2 <<  " VAMOS_ANGLE 20 " << endl;
+  ofile2 <<  " BRHO_REF 1.1 " << endl;
   ofile2 <<  " XTARGET_OFFSET " << xs[24] << endl;
   ofile2 <<  " YTARGET_OFFSET " << xs[25] << endl;
   ofile2 <<  " ZTARGET_OFFSET " << xs[26] << endl;
@@ -194,7 +196,8 @@ double ConstantFactor(const double* parameter){
     chain->GetEntry(i);
     int indice = 3*(Telescope-1);
     Ecal = parameter[indice] + parameter[indice+1]*Eres + parameter[indice+2]*Eres*Eres;
-    
+   
+    //Elab = DeltaE + Ecal;
     Elab = geloss_C12Al->Eval(Ecal);
     Elab = geloss_C12Al->Eval(Elab);
     Elab += DeltaE;
@@ -213,7 +216,7 @@ double ConstantFactor(const double* parameter){
       ThetaLab = HitDirection.Angle(BeamDirection);
 
       double Ex = elastic->ReconstructRelativistic(Elab,ThetaLab);
-      if(abs(Ex)<10){
+      if(abs(Ex)<5){
         hEx->Fill(iteration,Ex);
         hEx_Theta->Fill(ThetaLab*180./3.1415,Ex);
         hEx_Tel->Fill(Telescope,Ex);
@@ -228,14 +231,14 @@ double ConstantFactor(const double* parameter){
   for(int i=0; i<8; i++){
     hExmean = hEx_Tel->ProjectionY(Form("hExmean_%d",i+1),i+1,i+1);
     Emean[i] = hExmean->GetMean();
-    double Emin = Emean[i]-6;
+    double Emin = Emean[i]-3;
     double Emax = Emean[i]+3;
     hExmean->GetXaxis()->SetRangeUser(Emin,Emax);
 
     Emean[i] = hExmean->GetMean();
     sigma[i] = hExmean->GetRMS();
 
-    distance += pow(Emean[i],2) + pow(sigma[i]-0.3, 2);
+    distance += pow(Emean[i],2) + pow(sigma[i]-0.6, 2);
     AvEmean += Emean[i]; 
   }
 
diff --git a/Projects/ana_e850/pista_e850_part1.detector b/Projects/ana_e850/pista_e850_part1.detector
index a4e58360659f4ea21c38f5a626d628b187ca9384..c01d3f5f1244f47ea6183fcd98bdbecdfb331477 100644
--- a/Projects/ana_e850/pista_e850_part1.detector
+++ b/Projects/ana_e850/pista_e850_part1.detector
@@ -7,6 +7,69 @@ Target
  X= 0 mm
  Y= 0 mm
  Z= 0 mm
+ 
+%%%%%%%%%%%%%%%%%%%%
+% flange3
+Exogam
+  FLANGE= 3
+  POS_CRYSTALA_SEG1= -162.118378 -36.270000 -110.824844
+  POS_CRYSTALA_SEG2= -144.666977 -36.270000 -128.276245
+  POS_CRYSTALA_SEG3= -144.666977 -11.590000 -128.276245
+  POS_CRYSTALA_SEG4= -162.118378 -11.590000 -110.824844
+  POS_CRYSTALB_SEG1= -110.824844 -36.270000 -162.118378
+  POS_CRYSTALB_SEG2= -110.824844 -11.590000 -162.118378
+  POS_CRYSTALB_SEG3= -128.276245 -11.590000 -144.666977
+  POS_CRYSTALB_SEG4= -128.276245 -36.270000 -144.666977
+  POS_CRYSTALC_SEG1= -110.824844 36.270000 -162.118378
+  POS_CRYSTALC_SEG2= -128.276245 36.270000 -144.666977
+  POS_CRYSTALC_SEG3= -128.276245 11.590000 -144.666977
+  POS_CRYSTALC_SEG4= -110.824844 11.590000 -162.118378
+  POS_CRYSTALD_SEG1= -162.118378 36.270000 -110.824844
+  POS_CRYSTALD_SEG2= -162.118378 11.590000 -110.824844
+  POS_CRYSTALD_SEG3= -144.666977 11.590000 -128.276245
+  POS_CRYSTALD_SEG4= -144.666977 36.270000 -128.276245
+  
+%%%%%%%%%%%%%%%%%%%%
+% flange4
+Exogam
+  FLANGE= 4
+  POS_CRYSTALA_SEG1= -36.270000 150.422821 -201.716354 
+  POS_CRYSTALA_SEG2= -11.590000 150.422821 -201.716354
+  POS_CRYSTALA_SEG3= -11.590000 167.874222 -184.264954
+  POS_CRYSTALA_SEG4= -36.270000 167.874222 -184.264954
+  POS_CRYSTALB_SEG1= 36.270000 150.422821 -201.716354
+  POS_CRYSTALB_SEG2= 36.270000 167.874222 -184.264954
+  POS_CRYSTALB_SEG3= 11.590000 167.874222 -184.264954 
+  POS_CRYSTALB_SEG4= 11.590000 150.422821 -201.716354
+  POS_CRYSTALC_SEG1= 36.270000 201.716354 -150.422821
+  POS_CRYSTALC_SEG2= 11.590000 201.716354 -150.422821
+  POS_CRYSTALC_SEG3= 11.590000 184.264954 -167.874222 
+  POS_CRYSTALC_SEG4= 36.270000 184.264954 -167.874222 
+  POS_CRYSTALD_SEG1= -36.270000 201.716354 -150.422821 
+  POS_CRYSTALD_SEG2= -36.270000 184.264954 -167.874222
+  POS_CRYSTALD_SEG3= -11.590000 184.264954 -167.874222 
+  POS_CRYSTALD_SEG4= -11.590000 201.716354 -150.422821 
+
+%%%%%%%%%%%%%%%%%%%%
+% flange5
+Exogam
+  FLANGE= 5
+  POS_CRYSTALA_SEG1= -36.270000 -159.289948 -107.996422 
+  POS_CRYSTALA_SEG2= -11.590000 -159.289948 -107.996422 
+  POS_CRYSTALA_SEG3= -11.590000 -141.838547 -125.447815
+  POS_CRYSTALA_SEG4= -36.270000 -141.838547 -125.447815
+  POS_CRYSTALB_SEG1= 36.270000 -159.289948 -107.996422
+  POS_CRYSTALB_SEG2= 36.270000 -141.838547 -125.447815 
+  POS_CRYSTALB_SEG3= 11.590000 -141.838547 -125.447815 
+  POS_CRYSTALB_SEG4= 11.590000 -159.289948 -107.996422
+  POS_CRYSTALC_SEG1= 36.270000 -107.996422 -159.289948 
+  POS_CRYSTALC_SEG2= 11.590000 -107.996422 -159.289948 
+  POS_CRYSTALC_SEG3= 11.590000 -125.447815 -141.838547 
+  POS_CRYSTALC_SEG4= 36.270000 -125.447815 -141.838547 
+  POS_CRYSTALD_SEG1= -36.270000 -107.996422 -159.289948
+  POS_CRYSTALD_SEG2= -36.270000 -125.447815 -141.838547
+  POS_CRYSTALD_SEG3= -11.590000 -125.447815 -141.838547
+  POS_CRYSTALD_SEG4= -11.590000 -107.996422 -159.289948
 
 %%%%%%%%%%%%%%%%%%%%
 FPMW 
@@ -27,6 +90,7 @@ IC
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= 36.71 96.1 50.7
  POS_B= -35.92 95.8 51.3 
  POS_C= -19.35 56.5 93.4
@@ -34,6 +98,7 @@ PISTA
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= -42.15 93.1 51.1
  POS_B= -93.62 41.8 51.6
  POS_C= -54.12 25.3 93.6
@@ -41,6 +106,7 @@ PISTA
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= -95.98 35.6 51.3
  POS_B= -95.63 -37.1 51.5
  POS_C= -56.22 -20.7 93.7
@@ -48,6 +114,7 @@ PISTA
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= -93.34 -43.5 50.9
  POS_B= -41.88 -94.8 51.3
  POS_C= -25.41 -55.2 93.2
@@ -55,6 +122,7 @@ PISTA
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= -35.66 -97.1 51.3
  POS_B= 36.98 -96.9 51.1
  POS_C= 20.9 -57.4 93.4
@@ -62,6 +130,7 @@ PISTA
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= 43.66 -94.4 50.9
  POS_B= 95.19 -43.3 50.8
  POS_C= 56.03 -26.6 93.1
@@ -69,6 +138,7 @@ PISTA
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= 96.87 -36.8 50.3
  POS_B= 97.41 35.8 50.4
  POS_C= 57.83 20.0 92.6
@@ -76,6 +146,7 @@ PISTA
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= 94.39 42.0 50.8 
  POS_B= 42.94 93.3 50.7
  POS_C= 26.47 54.1 93.0
diff --git a/Projects/ana_e850/pista_e850_part2.detector b/Projects/ana_e850/pista_e850_part2.detector
index c21ce8f046ccb8c6df79d8f22365283a3aeed2d8..6d18eb7e57d186510c2cd01aabd6b0c6316d7ccd 100644
--- a/Projects/ana_e850/pista_e850_part2.detector
+++ b/Projects/ana_e850/pista_e850_part2.detector
@@ -8,6 +8,69 @@ Target
  Y= 0 mm
  Z= 0 mm
  
+%%%%%%%%%%%%%%%%%%%%
+% flange3
+Exogam
+  FLANGE= 3
+  POS_CRYSTALA_SEG1= -162.118378 -36.270000 -110.824844
+  POS_CRYSTALA_SEG2= -144.666977 -36.270000 -128.276245
+  POS_CRYSTALA_SEG3= -144.666977 -11.590000 -128.276245
+  POS_CRYSTALA_SEG4= -162.118378 -11.590000 -110.824844
+  POS_CRYSTALB_SEG1= -110.824844 -36.270000 -162.118378
+  POS_CRYSTALB_SEG2= -110.824844 -11.590000 -162.118378
+  POS_CRYSTALB_SEG3= -128.276245 -11.590000 -144.666977
+  POS_CRYSTALB_SEG4= -128.276245 -36.270000 -144.666977
+  POS_CRYSTALC_SEG1= -110.824844 36.270000 -162.118378
+  POS_CRYSTALC_SEG2= -128.276245 36.270000 -144.666977
+  POS_CRYSTALC_SEG3= -128.276245 11.590000 -144.666977
+  POS_CRYSTALC_SEG4= -110.824844 11.590000 -162.118378
+  POS_CRYSTALD_SEG1= -162.118378 36.270000 -110.824844
+  POS_CRYSTALD_SEG2= -162.118378 11.590000 -110.824844
+  POS_CRYSTALD_SEG3= -144.666977 11.590000 -128.276245
+  POS_CRYSTALD_SEG4= -144.666977 36.270000 -128.276245
+  
+%%%%%%%%%%%%%%%%%%%%
+% flange4
+Exogam
+  FLANGE= 4
+  POS_CRYSTALA_SEG1= -36.270000 150.422821 -201.716354 
+  POS_CRYSTALA_SEG2= -11.590000 150.422821 -201.716354
+  POS_CRYSTALA_SEG3= -11.590000 167.874222 -184.264954
+  POS_CRYSTALA_SEG4= -36.270000 167.874222 -184.264954
+  POS_CRYSTALB_SEG1= 36.270000 150.422821 -201.716354
+  POS_CRYSTALB_SEG2= 36.270000 167.874222 -184.264954
+  POS_CRYSTALB_SEG3= 11.590000 167.874222 -184.264954 
+  POS_CRYSTALB_SEG4= 11.590000 150.422821 -201.716354
+  POS_CRYSTALC_SEG1= 36.270000 201.716354 -150.422821
+  POS_CRYSTALC_SEG2= 11.590000 201.716354 -150.422821
+  POS_CRYSTALC_SEG3= 11.590000 184.264954 -167.874222 
+  POS_CRYSTALC_SEG4= 36.270000 184.264954 -167.874222 
+  POS_CRYSTALD_SEG1= -36.270000 201.716354 -150.422821 
+  POS_CRYSTALD_SEG2= -36.270000 184.264954 -167.874222
+  POS_CRYSTALD_SEG3= -11.590000 184.264954 -167.874222 
+  POS_CRYSTALD_SEG4= -11.590000 201.716354 -150.422821 
+
+%%%%%%%%%%%%%%%%%%%%
+% flange5
+Exogam
+  FLANGE= 5
+  POS_CRYSTALA_SEG1= -36.270000 -159.289948 -107.996422 
+  POS_CRYSTALA_SEG2= -11.590000 -159.289948 -107.996422 
+  POS_CRYSTALA_SEG3= -11.590000 -141.838547 -125.447815
+  POS_CRYSTALA_SEG4= -36.270000 -141.838547 -125.447815
+  POS_CRYSTALB_SEG1= 36.270000 -159.289948 -107.996422
+  POS_CRYSTALB_SEG2= 36.270000 -141.838547 -125.447815 
+  POS_CRYSTALB_SEG3= 11.590000 -141.838547 -125.447815 
+  POS_CRYSTALB_SEG4= 11.590000 -159.289948 -107.996422
+  POS_CRYSTALC_SEG1= 36.270000 -107.996422 -159.289948 
+  POS_CRYSTALC_SEG2= 11.590000 -107.996422 -159.289948 
+  POS_CRYSTALC_SEG3= 11.590000 -125.447815 -141.838547 
+  POS_CRYSTALC_SEG4= 36.270000 -125.447815 -141.838547 
+  POS_CRYSTALD_SEG1= -36.270000 -107.996422 -159.289948
+  POS_CRYSTALD_SEG2= -36.270000 -125.447815 -141.838547
+  POS_CRYSTALD_SEG3= -11.590000 -125.447815 -141.838547
+  POS_CRYSTALD_SEG4= -11.590000 -107.996422 -159.289948
+
 %%%%%%%%%%%%%%%%%%%%
 FPMW 
  POS= 19.72 31.35 162.7
@@ -27,6 +90,7 @@ IC
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= 36.58 96.2 50.7
  POS_B= -36.06 96.1 51.1 
  POS_C= -19.69 56.8 93.4
@@ -34,6 +98,7 @@ PISTA
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= -42.32 93.5 51.1
  POS_B= -93.68 42.2 51.5
  POS_C= -54.14 25.7 93.5
@@ -41,6 +106,7 @@ PISTA
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= -96.11 35.8 51.3
  POS_B= -95.9 -36.9 51.5
  POS_C= -56.48 -20.6 93.7
@@ -48,6 +114,7 @@ PISTA
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= -93.58 -43.6 51.0
  POS_B= -42.0 -94.7 51.3
  POS_C= -25.55 -55.1 93.2
@@ -55,6 +122,7 @@ PISTA
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= -35.96 -97.3 51.4
  POS_B= 36.67 -97.1 50.9
  POS_C= 20.73 -57.2 92.8
@@ -62,6 +130,7 @@ PISTA
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= 43.74 -94.7 50.8
  POS_B= 95.19 -43.5 50.8
  POS_C= 55.98 -26.8 93.0
@@ -69,6 +138,7 @@ PISTA
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= 97.15 -37.1 50.1
  POS_B= 97.49 35.6 49.9
  POS_C= 57.64 19.8 91.9
@@ -76,6 +146,7 @@ PISTA
 
 %%%%%%%%%%%%%%%%%%%%
 PISTA
+ VERSION= 1
  POS_A= 94.08 42.0 51.0
  POS_B= 42.78 93.4 50.9
  POS_C= 26.27 54.4 93.4
diff --git a/Projects/ana_e850/project.config b/Projects/ana_e850/project.config
index 1ca788e1b4effb4b7754f6a7ac76f69876ee4bc8..e6b9b3000917dac627bebfa4956777ff7244381c 100644
--- a/Projects/ana_e850/project.config
+++ b/Projects/ana_e850/project.config
@@ -1,5 +1,6 @@
 Project e850
- AnalysisOutput= ./root/analysis
+ AnalysisOutput= ../../../../../../../../ 
+ %AnalysisOutput= ./root/analysis
  SimulationOutput= ./root/simulation
  EnergyLoss= ./EnergyLossTable
    
diff --git a/Projects/s455/macro/yields/MapAsymmetry.C b/Projects/s455/macro/yields/MapAsymmetry.C
new file mode 100644
index 0000000000000000000000000000000000000000..cafb495b6101b9e0696de331bf2aad6554d05944
--- /dev/null
+++ b/Projects/s455/macro/yields/MapAsymmetry.C
@@ -0,0 +1,452 @@
+double GetAsymmetry(string, int Zb);
+double GetRMS(string, int Zb);
+double GetAsymmetryMoller(string, int Zb);
+double GetAsymmetrySmooth(string, int Zb);
+
+
+TH2I* h1;
+TH2I* h2;
+TH2I* h3;
+TGraph* gStableNuclei;
+TH2I* hStableNuclei;
+
+vector<int> vZ;
+vector<int> vA;
+vector<int> vN;
+vector<string> yield_file;
+
+int NumberOfZ=0;
+int NumberOfN=0;
+
+////////////////////////////////////////////
+void MapAsymmetry()
+{
+  gROOT->SetStyle("pierre_style");
+  
+  gStyle->SetPalette(kInvertedDarkBodyRadiator);
+  
+  NPL::Particle* npparticle = new NPL::Particle(1,1);
+  gStableNuclei = npparticle->GetStableNuclei();
+  gStableNuclei->SetMarkerStyle(21);
+  gStableNuclei->SetFillColor(1);
+  
+  hStableNuclei = new TH2I("hstable","hstable",150,0,150,100,0,100);
+  int Npoint = gStableNuclei->GetN();
+  double gN, gZ;
+  for(int i=0; i<Npoint; i++){
+     gStableNuclei->GetPoint(i,gN,gZ);
+     hStableNuclei->Fill((int)gN, (int)gZ);
+  }
+  hStableNuclei->SetMarkerStyle(1);
+  hStableNuclei->SetFillColor(1);
+
+  h2 = new TH2I("h2","h2",150,0,150,95,0,95);
+  h2->GetXaxis()->SetTitle("Neutron number N");
+  h2->GetYaxis()->SetTitle("Proton number Z");
+  h2->GetXaxis()->CenterTitle();
+  h2->GetYaxis()->CenterTitle();
+  h2->SetMarkerStyle(1);
+  h2->SetMarkerColor(0);
+  
+  h3 = new TH2I("h3","h3",150,0,150,100,0,100);
+  h3->GetXaxis()->SetTitle("Neutrons, N");
+  h3->GetYaxis()->SetTitle("Protons, Z");
+  h3->GetZaxis()->SetTitle("Asymmetry");
+  h3->GetXaxis()->CenterTitle();
+  h3->GetYaxis()->CenterTitle();
+  h3->GetZaxis()->CenterTitle();
+  
+  h1 = new TH2I("h1","h1",150,0,150,100,0,100);
+  h1->GetXaxis()->SetTitle("N");
+  h1->GetYaxis()->SetTitle("Z");
+  h1->GetXaxis()->CenterTitle();
+  h1->GetYaxis()->CenterTitle();
+
+
+  string filename = "list_all.dat";
+  //string filename = "list_s455.dat";
+  ifstream ifile;
+  ifile.open(filename.c_str());
+
+  ofstream ofile;
+  string output_filename = "asymmetry_file.dat";
+  ofile.open(output_filename.c_str());
+
+  int Z=0;
+  int Zprev=0;
+  int A;
+  int N;
+  NPL::Particle* iso;
+  while(ifile>>Z>>A){
+    N = A-Z;
+    //ifile >> Z >> A;
+    iso = new NPL::Particle(Z,A);
+    string isoname = iso->GetName();
+    if(Z==92)
+      isoname.resize(4);
+    else
+      isoname.resize(5);
+    string yield_filename = "dat/yield_" + isoname + ".dat";
+    yield_file.push_back(yield_filename);
+    //cout << yield_filename << endl;
+    vZ.push_back(Z);
+    vA.push_back(A);
+    vN.push_back(A-Z);
+  
+    double asy = GetAsymmetry(yield_filename, Z)*100;
+    double asy_moller = GetAsymmetryMoller(yield_filename, Z)*100;
+    double asy_smooth = GetAsymmetrySmooth(yield_filename, Z);
+    //double asy = GetRMS(yield_filename, Z)/Z*100;
+  
+    ofile << Z << " " << A-Z << " " << 102 - asy_smooth*100 << endl;
+
+    h1->Fill(N,Z,asy);
+    //h2->Fill(N,Z,asy_moller);
+    h2->Fill(N,Z,102-asy_smooth*100);
+    //h3->Fill(N,Z,110-GetAsymmetryMoller(yield_filename, Z)*100);
+    h3->Fill(N,Z,101-GetAsymmetrySmooth(yield_filename, Z)*100);
+  }
+ 
+  TExec* ex1 = new TExec("ex1","gStyle->SetPalette(kBird)");
+  TExec* ex2 = new TExec("ex2","gStyle->SetPalette(kDarkBodyRadiator)");
+
+
+  h2->GetXaxis()->SetRangeUser(90,150);
+  h2->GetYaxis()->SetRangeUser(70,95);
+  TCanvas* c1 = new TCanvas("c1","c1",1000,800);
+  c1->cd(1);
+  //hStableNuclei->Draw("a");
+  h2->Draw("colz");
+  ex2->Draw();
+  hStableNuclei->Draw("colzsame");
+  ex1->Draw();
+  //h2->Draw("surf2");
+  h2->Draw("colzsame");
+  //hStableNuclei->Draw("colsame");
+ 
+  TGraph* gX[200];
+  TGraph* gY[200];
+  for(int i=0; i<200; i++){
+    gX[i] = new TGraph();
+    gX[i]->SetPoint(0,i,0);
+    gX[i]->SetPoint(1,i,150);
+
+    gY[i] = new TGraph();
+    gY[i]->SetPoint(0,0,i);
+    gY[i]->SetPoint(1,150,i);
+   
+    gX[i]->SetLineStyle(1);
+    gX[i]->SetLineWidth(1);
+    gY[i]->SetLineStyle(1);
+    gY[i]->SetLineWidth(1);
+    
+    gX[i]->Draw("lsame");
+    gY[i]->Draw("lsame");
+  }
+
+  int magic[6] = {4,20,28,50,82,126};
+  TGraph* gXmagic_down[6];
+  TGraph* gXmagic_up[6];
+  TGraph* gYmagic_down[6];
+  TGraph* gYmagic_up[6];
+  for(int i=0; i<6; i++){
+    gXmagic_down[i] = new TGraph();
+    gXmagic_down[i]->SetPoint(0,magic[i],0);
+    gXmagic_down[i]->SetPoint(1,magic[i],150);
+
+    gXmagic_up[i] = new TGraph();
+    gXmagic_up[i]->SetPoint(0,magic[i]+1,0);
+    gXmagic_up[i]->SetPoint(1,magic[i]+1,150);
+
+    gYmagic_down[i] = new TGraph();
+    gYmagic_down[i]->SetPoint(0,0,magic[i]);
+    gYmagic_down[i]->SetPoint(1,150,magic[i]);
+  
+    gYmagic_up[i] = new TGraph();
+    gYmagic_up[i]->SetPoint(0,0,magic[i]+1);
+    gYmagic_up[i]->SetPoint(1,150,magic[i]+1);
+  
+    gXmagic_down[i]->SetLineStyle(1);
+    gXmagic_down[i]->SetLineWidth(3);
+    gXmagic_down[i]->SetLineColor(2);
+    gYmagic_down[i]->SetLineStyle(1);
+    gYmagic_down[i]->SetLineWidth(3);
+    gYmagic_down[i]->SetLineColor(2);
+ 
+    gXmagic_up[i]->SetLineStyle(1);
+    gXmagic_up[i]->SetLineWidth(3);
+    gXmagic_up[i]->SetLineColor(2);
+    gYmagic_up[i]->SetLineStyle(1);
+    gYmagic_up[i]->SetLineWidth(3);
+    gYmagic_up[i]->SetLineColor(2);
+  
+    gXmagic_down[i]->Draw("lsame");
+    gYmagic_down[i]->Draw("lsame");
+    
+    gXmagic_up[i]->Draw("lsame");
+    gYmagic_up[i]->Draw("lsame");
+  }
+ 
+
+  h3->GetXaxis()->SetTitle("Neutrons, N");
+  h3->GetYaxis()->SetTitle("Protons, Z");
+  h3->GetZaxis()->SetTitle("Asymmetry");
+  h3->GetXaxis()->CenterTitle();
+  h3->GetYaxis()->CenterTitle();
+  h3->GetZaxis()->CenterTitle();
+  h3->GetXaxis()->SetTitleOffset(1.9);
+  h3->GetYaxis()->SetTitleOffset(1.9);
+
+  hStableNuclei->GetXaxis()->SetRangeUser(90,150);
+  hStableNuclei->GetYaxis()->SetRangeUser(70,100);
+
+  h3->SetFillColor(1);
+  h3->SetLineColor(1);
+  hStableNuclei->SetLineColor(0);
+  //h3->Add(hStableNuclei);
+ 
+  h3->GetXaxis()->SetRangeUser(90,150);
+  h3->GetYaxis()->SetRangeUser(70,100);
+
+  // X axis //
+  h3->GetXaxis()->SetAxisColor(0);
+  h3->GetXaxis()->SetTickSize(0);
+  h3->GetXaxis()->SetLabelOffset(0.03);
+  h3->GetXaxis()->SetLabelSize(0);
+  h3->GetXaxis()->SetTitle("");
+  
+  // Y axis //
+  h3->GetYaxis()->SetAxisColor(0);
+  h3->GetYaxis()->SetTickSize(0);
+  h3->GetYaxis()->SetLabelOffset(0.03);
+  h3->GetYaxis()->SetLabelSize(0);
+  h3->GetYaxis()->SetTitle("");
+  
+  // Z axis //
+  h3->GetZaxis()->SetAxisColor(0);
+  h3->GetZaxis()->SetTickSize(0);
+  h3->GetZaxis()->SetLabelColor(0);
+  h3->GetZaxis()->SetTitle("");
+
+ TCanvas* c2 = new TCanvas("c2","c2",1600,1000);
+  c2->cd();
+  
+  h3->Draw("0lego2fbbb");
+  double x[2] = {85,130};
+  double y[2] = {80.5,80.5};
+  double z[2] = {0,0};
+
+  TPolyLine3D* line = new TPolyLine3D(2,x,y,z);
+  line->SetLineStyle(2);
+  line->Draw();
+
+  x[0] = 110;
+  x[1] = 145;
+  y[0] = 90.5;
+  y[1] = 90.5;
+  line = new TPolyLine3D(2,x,y,z);
+  line->SetLineStyle(2);
+  line->Draw();
+
+  x[0] = 100.5;
+  x[1] = 100.5;
+  y[0] = 69;
+  y[1] = 87;
+  line = new TPolyLine3D(2,x,y,z);
+  line->SetLineStyle(2);
+  line->Draw();
+
+  x[0] = 120.5;
+  x[1] = 120.5;
+  y[0] = 69;
+  y[1] = 92;
+  line = new TPolyLine3D(2,x,y,z);
+  line->SetLineStyle(2);
+  line->Draw();
+
+  x[0] = 140.5;
+  x[1] = 140.5;
+  y[0] = 69;
+  y[1] = 95;
+  line = new TPolyLine3D(2,x,y,z);
+  line->SetLineStyle(2);
+  line->Draw();
+
+  h3->Draw("0lego2fbbbsame");
+
+  TExec* ex3 = new TExec("ex3","gStyle->SetPalette(kAvocado)");
+  ex3->Draw();
+ 
+  hStableNuclei->Draw("0lego2fbbbsame");
+
+  ex1->Draw();
+}
+
+////////////////////////////////////////////
+double GetAsymmetry(string filename, int Zb)
+{
+  double asymmetry;
+  ifstream ifile;
+
+  cout << "*** opening " << filename << endl;
+  ifile.open(filename.c_str());
+
+  vector<int> v_Z;
+  vector<double> v_yield;
+  vector<double> v_yield_err;
+
+  int Z;
+  double yield;
+  double yield_err;
+  while(!ifile.eof()){
+    ifile >> Z >> yield >> yield_err;
+    //cout << Z << " " << yield << " " << yield_err << endl;
+    if(yield>0 && yield_err>0){
+      v_Z.push_back(Z);
+      v_yield.push_back(yield);
+      v_yield_err.push_back(yield_err);
+    }
+  }
+  ifile.close();
+ 
+  unsigned int size = v_Z.size();
+  double norm=0;
+  double denum=0;
+  for(unsigned int i=0; i<size; i++){
+    norm += pow(v_yield[i],2)*pow(v_Z[i]-(double)Zb/2,2);
+    denum += pow(v_yield[i],2);
+  }
+
+  asymmetry = sqrt(norm/denum);
+
+  return asymmetry;
+}
+
+////////////////////////////////////////////
+double GetAsymmetryMoller(string filename, int Zb)
+{
+  double asymmetry;
+  ifstream ifile;
+
+  ifile.open(filename.c_str());
+
+  vector<int> v_Z;
+  vector<double> v_yield;
+  vector<double> v_yield_err;
+  double yield_max=0;
+  double yield_sym=0;
+  int Zmax;
+
+  int Z;
+  double yield;
+  double yield_err;
+  while(!ifile.eof()){
+    ifile >> Z >> yield >> yield_err;
+    //cout << Z << " " << yield << " " << yield_err << endl;
+    if(yield>0 && yield_err>0){
+      v_Z.push_back(Z);
+      v_yield.push_back(yield);
+      v_yield_err.push_back(yield_err);
+      if(yield>yield_max){
+        yield_max = yield;
+        Zmax = Z;
+      }
+      if(Z==int(Zb/2.)){
+        yield_sym = yield;
+      }
+    }
+  }
+  ifile.close();
+
+  asymmetry = yield_sym/yield_max;
+
+  return asymmetry;
+}
+
+////////////////////////////////////////////
+double GetAsymmetrySmooth(string filename, int Zb)
+{
+  double asymmetry;
+  ifstream ifile;
+
+  ifile.open(filename.c_str());
+
+  vector<int> v_Z;
+  vector<double> v_yield;
+  vector<double> v_yield_err;
+  double yield_max=0;
+  double yield_sym=0;
+  int Zmax;
+
+  int Z;
+  double yield;
+  double yield_err;
+  int i=0;
+  int i_max=0;
+  int i_sym=0;
+  while(!ifile.eof()){
+    ifile >> Z >> yield >> yield_err;
+    //cout << Z << " " << yield << " " << yield_err << endl;
+    if(yield>0 && yield_err>0){
+      v_Z.push_back(Z);
+      v_yield.push_back(yield);
+      v_yield_err.push_back(yield_err);
+      if(yield>yield_max){
+        yield_max = yield;
+        Zmax = Z;
+        i_max = i;
+      }
+      if(Z==round(Zb/2)){
+        yield_sym = yield;
+        i_sym = i;
+      }
+      i++;
+    }
+  }
+  ifile.close();
+
+  yield_sym = v_yield[i_sym] + 0.5*(v_yield[i_sym-1] + v_yield[i_sym+1]);
+  yield_max = v_yield[i_max] + 0.5*(v_yield[i_max-1] + v_yield[i_max+1]);
+
+
+  asymmetry = yield_sym/yield_max;
+  if(asymmetry>1)
+    asymmetry=1.;
+
+  cout << Zb << " " << asymmetry << endl;
+  return asymmetry;
+}
+
+
+
+////////////////////////////////////////////
+double GetRMS(string filename, int Zb)
+{
+  double rms;
+  ifstream ifile;
+
+  ifile.open(filename.c_str());
+
+  TGraphErrors* gerr = new TGraphErrors();
+
+  int Z;
+  double yield;
+  double yield_err;
+  int i=0;
+  while(!ifile.eof()){
+    ifile >> Z >> yield >> yield_err;
+    if(yield>0 && yield_err>0){
+      gerr->SetPoint(i,Z,yield);
+      gerr->SetPointError(i,0,yield_err);
+      i++;
+    }
+  }
+  ifile.close();
+ 
+  rms = gerr->GetRMS();
+
+
+  return rms;
+}
+
+
diff --git a/Projects/s455/macro/yields/asymmetry_file.dat b/Projects/s455/macro/yields/asymmetry_file.dat
new file mode 100644
index 0000000000000000000000000000000000000000..395fafcc87363582d5d0e8d92c58fd0e576cb04c
--- /dev/null
+++ b/Projects/s455/macro/yields/asymmetry_file.dat
@@ -0,0 +1,117 @@
+77 95 27.5901
+77 96 2
+77 97 2
+77 98 8.05876
+78 96 39.4121
+78 97 12.7227
+78 98 14.6431
+78 99 29.3682
+78 100 5.41142
+79 97 33.1098
+79 98 35.7432
+79 99 32.7443
+79 100 23.3638
+79 101 23.0197
+79 102 2
+79 103 9.1768
+80 99 76.6616
+80 100 56.2088
+80 101 50.0469
+80 102 44.4312
+80 103 33.6179
+80 104 28.5165
+80 105 12.1036
+80 106 31.8884
+81 102 63.6252
+81 103 37.1221
+81 104 30.8692
+81 105 24.9899
+81 106 12.3406
+81 107 6.35808
+82 104 25.634
+82 105 15.954
+82 106 17.4312
+82 107 10.1358
+82 108 2
+82 109 2
+82 110 2
+82 111 2
+83 106 2
+83 107 2
+83 108 2
+83 109 2
+83 110 2
+83 111 2
+83 112 2
+83 113 2
+83 114 2
+84 108 7.16565
+84 109 4.29144
+84 110 2
+84 111 2
+84 112 2
+84 113 2
+84 114 2
+84 115 4.63402
+84 116 2
+84 117 2
+85 111 22.2306
+85 112 2
+85 113 2
+85 114 2
+85 115 2
+85 116 2
+85 117 2.68491
+85 118 2
+86 114 2
+86 115 2
+86 116 2
+86 117 2
+86 118 2
+86 119 2.01963
+86 120 7.96152
+87 116 14.4873
+87 117 2
+87 118 2
+87 119 2
+87 120 2
+87 121 2
+87 122 2
+87 123 2
+87 124 2
+88 121 2
+88 122 2
+88 123 2
+88 124 2
+88 125 2
+88 126 2
+89 123 2
+89 124 2
+89 125 2
+89 126 2
+89 127 2
+89 128 2
+89 129 3.81067
+90 126 2
+90 127 2
+90 129 2
+90 130 2
+89 130 2
+89 131 3.30119
+89 134 2
+89 138 2
+90 131 2
+90 132 2
+90 133 2
+90 135 2
+90 136 7.7225
+90 139 72.2939
+90 140 81.2252
+91 137 57.9722
+91 138 71.6338
+91 140 82.1061
+91 141 93.1166
+92 142 90.428
+92 143 88.9814
+93 144 88.8437
+93 145 87.6857
diff --git a/Projects/s455/macro/yields/list_Hg.dat b/Projects/s455/macro/yields/list_Hg.dat
new file mode 100644
index 0000000000000000000000000000000000000000..9315d5b33680ac3e17d799d169ceb9cbf28a3c4b
--- /dev/null
+++ b/Projects/s455/macro/yields/list_Hg.dat
@@ -0,0 +1,2 @@
+80 180
+80 182
diff --git a/Projects/s455/macro/yields/list_all.dat b/Projects/s455/macro/yields/list_all.dat
new file mode 100644
index 0000000000000000000000000000000000000000..9aa355444ce2b18ca1077e67c1ecde333e36d4d7
--- /dev/null
+++ b/Projects/s455/macro/yields/list_all.dat
@@ -0,0 +1,118 @@
+77 172
+77 173
+77 174
+77 175
+78 174
+78 175
+78 176
+78 177
+78 178
+79 176
+79 177
+79 178
+79 179
+79 180
+79 181
+79 182
+80 179
+80 180
+80 181
+80 182
+80 183
+80 184
+80 185
+80 186
+81 183
+81 184
+81 185
+81 186
+81 187
+81 188
+82 186
+82 187
+82 188
+82 189
+82 190
+82 191
+82 192
+82 193
+83 189
+83 190
+83 191
+83 192
+83 193
+83 194
+83 195
+83 196
+83 197
+84 192
+84 193
+84 194
+84 195
+84 196
+84 197
+84 198
+84 199
+84 200
+84 201
+85 196
+85 197
+85 198
+85 199
+85 200
+85 201
+85 202
+85 203
+86 200
+86 201
+86 202
+86 203
+86 204
+86 205
+86 206
+87 203
+87 204
+87 205
+87 206
+87 207
+87 208
+87 209
+87 210
+87 211
+88 209
+88 210
+88 211
+88 212
+88 213
+88 214
+89 212
+89 213
+89 214
+89 215
+89 216
+89 217
+89 218
+90 216
+90 217
+90 219
+90 220
+
+89 219
+89 220
+89 223
+89 227
+90 221
+90 222
+90 223
+90 225
+90 226
+90 229
+90 230
+91 228
+91 229
+91 231
+91 232
+92 234
+92 235
+93 237
+93 238
diff --git a/Projects/s455/macro/yields/list_asy.dat b/Projects/s455/macro/yields/list_asy.dat
new file mode 100644
index 0000000000000000000000000000000000000000..9ee1ec8c747d81d98efc8b87088d0a09d68723fc
--- /dev/null
+++ b/Projects/s455/macro/yields/list_asy.dat
@@ -0,0 +1,58 @@
+77 175
+78 174
+78 175
+78 176
+78 177
+78 178
+79 176
+79 177
+79 178
+79 179
+79 180
+79 182
+80 179
+80 180
+80 181
+80 182
+80 183
+80 184
+80 185
+80 186
+81 183
+81 184
+81 185
+81 186
+81 187
+81 188
+82 186
+82 187
+82 188
+82 189
+82 190
+82 191
+82 192
+82 193
+90 216
+90 217
+90 219
+90 220
+
+89 219
+89 220
+89 223
+89 227
+90 221
+90 222
+90 223
+90 225
+90 226
+90 229
+90 230
+91 228
+91 229
+91 231
+91 232
+92 234
+92 235
+93 237
+93 238
diff --git a/Projects/s455/macro/yields/list_divers.dat b/Projects/s455/macro/yields/list_divers.dat
new file mode 100644
index 0000000000000000000000000000000000000000..1b009089ce7fcb311558fbdc30ae4ddbec199d32
--- /dev/null
+++ b/Projects/s455/macro/yields/list_divers.dat
@@ -0,0 +1,5 @@
+82 189
+81 185
+80 182
+79 177
+78 175
diff --git a/Projects/s455/macro/yields/list_nature.dat b/Projects/s455/macro/yields/list_nature.dat
new file mode 100644
index 0000000000000000000000000000000000000000..3d9ec8c01c4b54c8eda419521612ded9e622afca
--- /dev/null
+++ b/Projects/s455/macro/yields/list_nature.dat
@@ -0,0 +1,33 @@
+83 190
+83 191 
+83 192
+83 193
+83 194
+83 195
+83 196
+82 186 
+82 187 
+82 188 
+82 189 
+82 190
+82 191
+82 192
+81 183
+81 184
+81 185
+81 186
+81 187
+81 188
+80 180
+80 181
+80 182
+80 183
+80 184
+80 185
+80 186
+79 177
+79 178
+79 179
+79 180
+79 181
+79 182
diff --git a/Projects/s455/macro/yields/list_s455.dat b/Projects/s455/macro/yields/list_s455.dat
new file mode 100644
index 0000000000000000000000000000000000000000..5af7d4cdafedb47ddf888ab64c6089c993253daf
--- /dev/null
+++ b/Projects/s455/macro/yields/list_s455.dat
@@ -0,0 +1,100 @@
+77 172
+77 173
+77 174
+77 175
+78 174
+78 175
+78 176
+78 177
+78 178
+79 176
+79 177
+79 178
+79 179
+79 180
+79 181
+79 182
+80 179
+80 180
+80 181
+80 182
+80 183
+80 184
+80 185
+80 186
+81 183
+81 184
+81 185
+81 186
+81 187
+81 188
+82 186
+82 187
+82 188
+82 189
+82 190
+82 191
+82 192
+82 193
+82 194
+83 189
+83 190
+83 191
+83 192
+83 193
+83 194
+83 195
+83 196
+83 197
+84 192
+84 193
+84 194
+84 195
+84 196
+84 197
+84 198
+84 199
+84 200
+84 201
+85 196
+85 197
+85 198
+85 199
+85 200
+85 201
+85 202
+85 203
+86 200
+86 201
+86 202
+86 203
+86 204
+86 205
+86 206
+87 203
+87 204
+87 205
+87 206
+87 207
+87 208
+87 209
+87 210
+87 211
+88 209
+88 210
+88 211
+88 212
+88 213
+88 214
+89 212
+89 213
+89 214
+89 215
+89 216
+89 217
+89 218
+90 216
+90 217
+90 219
+90 220
+
diff --git a/Projects/s455/macro/yields/list_s455_deformation.dat b/Projects/s455/macro/yields/list_s455_deformation.dat
new file mode 100644
index 0000000000000000000000000000000000000000..af0bd572886abe6f30bd0e788aac76fe88d012a6
--- /dev/null
+++ b/Projects/s455/macro/yields/list_s455_deformation.dat
@@ -0,0 +1,101 @@
+# deformation taken from https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm
+# Z A beta
+77 172 0.28
+77 173 0.29
+77 174 0.30
+77 175 0.31
+78 174 0.3
+78 175 0.3
+78 176 0.3
+78 177 0.35
+78 178 0.35
+79 176 0.30
+79 177 0.30
+79 178 0.35
+79 179 0.35
+79 180 0.35
+79 181 0.35
+79 182 0.35
+80 180 0.30
+80 181 0.35
+80 182 0.35
+80 183 0.35
+80 184 0.30
+80 185 0.30
+80 186 -0.15
+81 183 0.30
+81 184 0.30
+81 185 -0.15
+81 186 0.30
+81 187 -0.15
+81 188 -0.15
+82 186 0
+82 187 0
+82 188 0
+82 189 0
+82 190 0
+82 191 0
+82 192 0
+82 193 0
+82 194 0
+83 189 0
+83 190 -0.2
+83 191 -0.2
+83 192 -0.2
+83 193 -0.1
+83 194 -0.1
+83 195 -0.1
+83 196 -0.1
+83 197 -0.1
+84 192 -0.2
+84 193 -0.2
+84 194 -0.2
+84 195 -0.2
+84 196 0.1
+84 197 0.1
+84 198 0.1
+84 199 0.1
+84 200 0.05
+84 201 0.01
+85 196 0.1
+85 197 0.1
+85 198 0.1
+85 199 0.1
+85 200 0.1
+85 201 0.1
+85 202 0.1
+85 203 0.1
+86 200 0.1
+86 201 0.1
+86 202 0.1
+86 203 0.1
+86 204 0.05
+86 205 0.05
+86 206 0.05
+87 203 0.15
+87 204 0.15
+87 205 0.1
+87 206 0.1
+87 207 0.05
+87 208 0.05
+87 209 0
+87 210 0
+87 211 0
+88 209 0.05
+88 210 0
+88 211 0
+88 212 0
+88 213 0
+88 214 0
+89 212 0
+89 213 0
+89 214 0
+89 215 0
+89 216 0
+89 217 0 
+89 218 0
+90 216 0
+90 217 0
+90 219 0
+90 220 0.1
+
diff --git a/Projects/s455/macro/yields/list_sofia.dat b/Projects/s455/macro/yields/list_sofia.dat
new file mode 100644
index 0000000000000000000000000000000000000000..5af7d4cdafedb47ddf888ab64c6089c993253daf
--- /dev/null
+++ b/Projects/s455/macro/yields/list_sofia.dat
@@ -0,0 +1,100 @@
+77 172
+77 173
+77 174
+77 175
+78 174
+78 175
+78 176
+78 177
+78 178
+79 176
+79 177
+79 178
+79 179
+79 180
+79 181
+79 182
+80 179
+80 180
+80 181
+80 182
+80 183
+80 184
+80 185
+80 186
+81 183
+81 184
+81 185
+81 186
+81 187
+81 188
+82 186
+82 187
+82 188
+82 189
+82 190
+82 191
+82 192
+82 193
+82 194
+83 189
+83 190
+83 191
+83 192
+83 193
+83 194
+83 195
+83 196
+83 197
+84 192
+84 193
+84 194
+84 195
+84 196
+84 197
+84 198
+84 199
+84 200
+84 201
+85 196
+85 197
+85 198
+85 199
+85 200
+85 201
+85 202
+85 203
+86 200
+86 201
+86 202
+86 203
+86 204
+86 205
+86 206
+87 203
+87 204
+87 205
+87 206
+87 207
+87 208
+87 209
+87 210
+87 211
+88 209
+88 210
+88 211
+88 212
+88 213
+88 214
+89 212
+89 213
+89 214
+89 215
+89 216
+89 217
+89 218
+90 216
+90 217
+90 219
+90 220
+